diff --git a/.gitignore b/.gitignore index 32e8945..fd98134 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +/projects/ + + # =================================== # Node.js # =================================== diff --git a/README.md b/README.md index 1361840..52405c6 100644 --- a/README.md +++ b/README.md @@ -1,775 +1,192 @@ -# CloudFest USA 2025 - Hackathon Development Environment - -**FAIR Package Manager + AspireCloud + CVE Labeller + PatchStack Integration** - -This is a complete local development environment for the CloudFest USA 2025 Hackathon, featuring: -- **WordPress** with wp-env -- **FAIR Plugin** for federated package management (editable local copy) -- **AspireCloud** local API instance (editable local copy) -- **CVE Labeller** Laravel application for vulnerability labeling -- **PatchStack** vulnerability API integration -- **Traefik** reverse proxy with SSL -- **Development tools** (Redis, Mailhog, Adminer) - -## 📋 Table of Contents - -- [Prerequisites](#prerequisites) -- [Quick Start](#quick-start) -- [Services & Access](#services--access) -- [Architecture](#architecture) -- [Local Development Setup](#local-development-setup) -- [Hackathon Resources](#hackathon-resources) -- [Available Commands](#available-commands) -- [Configuration](#configuration) -- [Development Workflow](#development-workflow) -- [Troubleshooting](#troubleshooting) +# start-here -## Prerequisites - -### Required Software - -- **Docker Desktop** - Running and configured with at least 4GB RAM -- **Node.js** v18 or later -- **npm** or yarn -- **Git** -- **Composer** (PHP dependency manager) -- **zstd** (for database decompression) - - macOS: `brew install zstd` - - Linux: `sudo apt-get install zstd` - -### System Requirements - -- 8GB RAM minimum (16GB recommended) -- 20GB free disk space -- macOS or Linux (WSL2 on Windows) - -## Quick Start - -### 1. Clone and Install - -```bash -# Clone the environment repository -git clone -cd cloudfest-usa-2025-local-env - -# Install Node dependencies -npm install -``` - -### 2. Clone Application Repositories - -```bash -# Clone AspireCloud (required) -git clone https://github.com/aspirepress/AspireCloud.git aspirecloud - -# Clone CVE Labeller (required) -git clone cve-labeller - -# Clone FAIR Plugin (optional - for local plugin development) -git clone https://github.com/fairpm/fair-plugin.git fair-plugin -``` - -### 3. Install Dependencies - -```bash -# Install AspireCloud dependencies -cd aspirecloud -composer install -yarn install -cd .. - -# Install CVE Labeller dependencies -cd cve-labeller -composer install -cd .. - -# Install FAIR Plugin dependencies (if cloned) -cd fair-plugin -composer install -cd .. -``` - -### 4. One-Command Setup - -```bash -# This will: -# - Generate SSL certificates -# - Start all services (AspireCloud, CVE Labeller, Traefik, Redis, etc.) -# - Import the AspireCloud database -# - Build frontend assets -# - Start WordPress with FAIR plugin -# - Connect everything to the network -npm run dev:start -``` - -The setup script will automatically: -- Start all Docker services -- Import the AspireCloud database -- Build AspireCloud frontend assets -- Initialize CVE Labeller database -- Automatically clone FAIR plugin from GitHub if not present -- Launch WordPress with FAIR plugin pre-installed -- Configure FAIR to use the local AspireCloud instance - -### 5. Access Your Environment - -Once started, you can access: - -- **WordPress**: http://localhost:8888 - - Admin: http://localhost:8888/wp-admin - - Username: `admin` / Password: `password` -- **AspireCloud API**: http://localhost:8099 -- **CVE Labeller**: http://localhost:8199 -- **Mailhog**: http://localhost:8025 -- **Adminer (Database)**: http://localhost:8080 -- **Traefik Dashboard**: http://localhost:8090 - -## Services & Access - -### Core Services - -| Service | Browser URL | Docker Network URL | Purpose | -|--------------|-----------------------|---------------------------|----------------------------------------| -| WordPress | http://localhost:8888 | N/A | Main development site with FAIR plugin | -| AspireCloud | http://localhost:8099 | http://aspirecloud:80 | Local WordPress package API | -| CVE Labeller | http://localhost:8199 | http://cve-labeller:80 | Vulnerability labeling application | -| Mailhog UI | http://localhost:8025 | http://mailhog:8025 | Email testing interface | -| Adminer | http://localhost:8080 | N/A | Database management | -| Traefik | http://localhost:8090 | N/A | Reverse proxy dashboard | -| Redis | localhost:6379 | redis:6379 | Cache service (shared) | -| PostgreSQL | localhost:5432 | aspirecloud-db:5432 | AspireCloud database | -| PostgreSQL | localhost:5433 | cve-labeller-db:5432 | CVE Labeller database | - -**Note:** WordPress accesses services via Docker network (e.g., `http://aspirecloud:80`), while your browser uses `http://localhost:8099`. - -### Default Credentials - -**WordPress:** -- Username: `admin` -- Password: `password` - -**PostgreSQL (AspireCloud):** -- Host: `localhost` or `aspirecloud-db` -- Port: `5432` -- Database: `aspirecloud` -- Username: `postgres` -- Password: `password` - -**PostgreSQL (CVE Labeller):** -- Host: `localhost` or `cve-labeller-db` -- Port: `5433` -- Database: `cve_labeller` -- Username: `postgres` -- Password: `password` - -**MySQL (WordPress via wp-env):** -- Host: `localhost` -- Database: `wordpress` -- Username: `root` -- Password: `password` - -## Architecture - -### Docker Network Architecture - -``` -┌────────────────────────────────────────────────────────────────┐ -│ cloudfest-network │ -│ │ -│ ┌──────────┐ ┌────────────┐ ┌────────────┐ ┌──────────┐ │ -│ │ Traefik │ │ AspireCloud│ │CVE Labeller│ │WordPress │ │ -│ │ (SSL) │─▶│ (API) │◀─│ (API) │◀─│ (wp-env) │ │ -│ └────┬─────┘ └─────┬──────┘ └─────┬──────┘ └────┬─────┘ │ -│ │ │ │ │ │ -│ │ ┌────▼─────┐ ┌────▼─────┐ ┌───▼────┐ │ -│ │ │PostgreSQL│ │PostgreSQL│ │ MySQL │ │ -│ │ │(AspireC) │ │(CVE Lab) │ └────────┘ │ -│ │ └──────────┘ └──────────┘ │ -│ │ │ │ │ -│ │ ┌────▼───────────────▼────┐ │ -│ │ │ Redis (Shared) │ │ -│ │ └─────────────────────────┘ │ -│ │ │ -│ │ ┌─────────┐ ┌─────────┐ │ -│ └────────▶│ Mailhog │ │ Adminer │ │ -│ └─────────┘ └─────────┘ │ -└────────────────────────────────────────────────────────────────┘ -``` - -### Data Flow - -1. **FAIR Plugin** → Queries local **AspireCloud** API via Docker network (`http://aspirecloud:80`) -2. **AspireCloud** → Serves WordPress packages from **PostgreSQL** -3. **CVE Labeller** → Manages vulnerability data in its own **PostgreSQL** database -4. **Both Laravel apps** → Use shared **Redis** for caching and sessions -5. **WordPress** → Uses **Redis** for object caching -6. **Browser** → Accesses services via port-based URLs (`http://localhost:*`) - -### File Structure - -``` -. -├── .wp-env.json # WordPress environment config -├── docker-compose.yml # Infrastructure services -├── package.json # Node scripts and dependencies -├── .env.example # Environment variables template -├── aspirecloud/ # AspireCloud Laravel app (git cloned) -│ ├── app/ -│ ├── resources/ -│ ├── vendor/ # Composer dependencies -│ └── node_modules/ # Yarn dependencies -├── cve-labeller/ # CVE Labeller Laravel app (git cloned) -│ ├── app/ -│ ├── resources/ -│ └── vendor/ # Composer dependencies -├── fair-plugin/ # FAIR Plugin (optional, git cloned) -│ └── vendor/ # Composer dependencies -├── config/ -│ └── fair-config.php # FAIR plugin auto-configuration -├── docs/ -│ ├── fair-pm-hackathon-guide.md -│ └── patchstack-hackathon-guide.md -├── scripts/ -│ ├── setup-ssl.sh # SSL certificate setup -│ ├── start-all.sh # Start everything -│ ├── stop-all.sh # Stop everything -│ ├── reset-all.sh # Reset environment -│ ├── init-aspirecloud.sh # Initialize AspireCloud -│ ├── init-cve-labeller.sh # Initialize CVE Labeller -│ ├── init-fair-plugin.sh # Initialize FAIR Plugin -│ └── import-database.sh # Import AspireCloud DB -├── snapshots/ -│ └── aspirecloud_mini_*.sql # AspireCloud database snapshot -└── traefik/ - ├── certs/ # SSL certificates (generated) - └── dynamic/ - └── tls.yml # Traefik TLS config -``` - -## Local Development Setup - -### Editable Applications - -All three applications are mounted as editable directories: - -**AspireCloud** (`./aspirecloud/`): -- Edit PHP code in `app/`, `routes/`, etc. -- Edit Blade templates in `resources/views/` -- Edit Vue components in `resources/js/` -- Run `yarn build` to rebuild assets after JS changes -- Changes are immediately reflected (clear Laravel cache if needed) - -**CVE Labeller** (`./cve-labeller/`): -- Edit PHP code in `app/`, `routes/`, etc. -- Edit views in `resources/views/` -- Changes are immediately reflected - -**FAIR Plugin** (`./fair-plugin/`): -- Edit plugin PHP code directly -- Changes are immediately reflected in WordPress -- No need to reinstall or reactivate - -### Building Assets - -After making changes to frontend code: - -```bash -# Rebuild AspireCloud assets -docker exec -w /app cloudfest-aspirecloud yarn build - -# Or from your host (if you have Node/Yarn installed) -cd aspirecloud -yarn build -cd .. -``` - -### Clearing Caches - -```bash -# Clear AspireCloud cache -docker exec -w /app cloudfest-aspirecloud php artisan optimize:clear +A development environment bootstrapper for the FAIR ecosystem. -# Clear CVE Labeller cache -docker exec -w /app cloudfest-cve-labeller php artisan optimize:clear +## Overview -# Or use npm scripts -npm run aspirecloud:clear -npm run cve-labeller:clear -``` - -## Hackathon Resources - -### Documentation +This repo provides a simple way to clone and initialize most of the FAIR projects with a single command. Rather than attempting to provide a monolithic "FAIR In A Box" Docker Compose setup, it works with each project's own build system and compose stacks. -All hackathon documentation is available in the `docs/` directory: +**What this does:** +- Clones FAIR project repositories into `projects/` +- Runs each project's initialization (make, composer, etc.) +- Installs git commit hooks for automatic sign-off (required for FAIR contributions) +- Provides a Traefik reverse proxy with SSL and HTTP/3 support -- **docs/fair-pm-hackathon-guide.md** - FAIR Protocol, DIDs, Package metadata -- **docs/patchstack-hackathon-guide.md** - Vulnerability API integration +**What this doesn't do:** +- Replace individual project Justfiles or Makefiles +- Provide a single unified Docker Compose for all services +- Handle every edge case of local development -### PatchStack API - -The environment includes the PatchStack API token for vulnerability testing: +## Prerequisites -**Endpoint:** `https://vdp-api.patchstack.com/api/sysadmin/v2/reports/vuln/hackathon` +- **[Just](https://github.com/casey/just)** - Command runner + - macOS: `brew install just` + - Linux: See [installation docs](https://github.com/casey/just#packages) +- **Git** with SSH key configured for GitHub +- **Docker** and Docker Compose +- **mkcert** - For local SSL certificates + - macOS: `brew install mkcert` + - Linux: See [installation docs](https://github.com/FiloSottile/mkcert#installation) +- **Composer** - PHP dependency manager (for some projects) -**Example Request:** -```bash -curl -X POST https://vdp-api.patchstack.com/api/sysadmin/v2/reports/vuln/hackathon \ - -H "Content-Type: application/json" \ - -H "Authorization: Bearer aapi_CN2ZAQdQBC72RXBKqpO5BnAscEGuDyBqxrd0icqlO3NkWfENSlkk1sGv4xq9kbBv" \ - -d '[{"type":"plugin","name":"woocommerce","version":"1.0.0","exists":false}]' -``` - -### Testing AspireCloud +## Quick Start ```bash -# Test the local AspireCloud API -curl http://localhost:8099/plugins/info/1.1/ +# Clone this repository +git clone git@github.com:fairpm/start-here.git +cd start-here -# Query for specific plugins -curl "http://localhost:8099/plugins/info/1.1/?action=query_plugins&request[per_page]=5" +# Checkout and bootstrap all FAIR projects +just start here ``` -### Testing CVE Labeller +That's it. The `just start here` command will: -```bash -# Test the CVE Labeller API -curl http://localhost:8199/ - -# Access via Traefik (after SSL setup) -curl https://api.cve-labeller.local/ -``` +1. Clone all FAIR project repositories into `projects/` +2. Run each project's initialization script +3. Install git sign-off hooks -### Testing FAIR Plugin +## What Gets Cloned -The FAIR plugin is pre-installed and configured to use your local AspireCloud instance. Check the configuration: +The following repositories are cloned into `projects/`. The "Bootstrap" column shows what `just start` runs automatically for each project: -1. Log into WordPress admin: http://localhost:8888/wp-admin -2. Navigate to Plugins - you should see "FAIR" plugin active -3. Check debug logs: `npm run wp:logs` +| Project | Repository | Bootstrap | +|---------|------------|-----------| +| aspirecloud | `fairpm/aspirecloud` | `make init` | +| aspiresync | `aspirepress/aspiresync` | `make init` | +| cve-labeller | `fairpm/cve-labeller` | (needs own compose stack) | +| fair-policy-engine | `fairpm/fair-policy-engine` | (no setup required) | +| fair-plugin | `fairpm/fair-plugin` | (no setup required) | +| fair-beacon | `fairpm/fair-beacon` | `composer install` | ## Available Commands -### Quick Commands (Recommended) - ```bash -npm run dev:start # Start everything (SSL setup + all services) -npm run dev:stop # Stop all services -npm run dev:reset # Complete reset (deletes all data!) -npm run dev:logs # Follow all service logs +just # List all available commands +just checkout # Clone all FAIR repositories (without bootstrapping) +just start # Clone and bootstrap all FAIR projects +just start here # Same as 'just start' (but looks neat) ``` -### Application-Specific Commands +Use `just checkout` if you only want the source code without running init/build steps. Use `just start` or `just start here` for the full setup. -```bash -# AspireCloud -npm run aspirecloud:init # Initialize AspireCloud -npm run aspirecloud:clear # Clear Laravel cache -npm run aspirecloud:update # Pull latest image and reinitialize +## Traefik Reverse Proxy -# CVE Labeller -npm run cve-labeller:init # Initialize CVE Labeller -npm run cve-labeller:clear # Clear Laravel cache - -# FAIR Plugin -npm run fair-plugin:init # Initialize FAIR Plugin -``` +This repo includes a Traefik setup from the AspirePress infrastructure, updated to the latest version with HTTP/3 support. -### Setup & Maintenance +### Starting Traefik ```bash -npm run setup # Run SSL certificate setup only -npm run db:import # Import AspireCloud database +cd traefik +bin/bootstrap # First time: creates network, generates certs, configures Traefik +bin/up # Start Traefik +bin/down # Stop Traefik ``` -### WordPress Commands +### What Traefik Provides -```bash -npm run wp:start # Start WordPress only -npm run wp:stop # Stop WordPress only -npm run wp:destroy # Destroy WordPress environment -npm run wp:clean # Clean WordPress (reset to fresh install) -npm run wp:logs # View WordPress logs -npm run wp:cli # Run WP-CLI commands -``` - -**WP-CLI Examples:** -```bash -# List plugins -npm run wp:cli -- plugin list - -# Activate FAIR plugin -npm run wp:cli -- plugin activate fair-plugin - -# Create test posts -npm run wp:cli -- post generate --count=10 -``` - -### Docker Commands - -```bash -npm run docker:up # Start infrastructure services only -npm run docker:down # Stop infrastructure services -npm run docker:logs # Follow infrastructure logs -``` +- Reverse proxy for local development services +- Automatic SSL certificates via mkcert +- HTTP/3 support +- Wildcard certificates for `*.local.fair.pm` and `*.aspiredev.org` -## Configuration +### Integrating Your Services -### Environment Variables +Add these labels to any Docker Compose service to expose it through Traefik: -Copy `.env.example` to `.env` and customize: +```yaml +services: + myapp: + labels: + - "traefik.enable=true" + - "traefik.http.routers.myapp.rule=Host(`myapp.local.fair.pm`)" + - "traefik.http.routers.myapp-https.rule=Host(`myapp.local.fair.pm`)" + - "traefik.http.routers.myapp-https.tls=true" + networks: + - ${TRAEFIK_PROXY_NETWORK:-traefik} -```bash -cp .env.example .env -``` - -Key variables: -- `PATCHSTACK_API_TOKEN` - Your PatchStack API token -- `ASPIRECLOUD_API_URL` - Local AspireCloud API URL (default: http://aspirecloud:80 for Docker network) - -### Customizing WordPress - -Edit `.wp-env.json`: - -```json -{ - "plugins": [ - "./fair-plugin", // Local editable plugin - "https://downloads.wordpress.org/plugin/redis-cache.latest-stable.zip" - ], - "themes": [ - "https://downloads.wordpress.org/theme/twentytwentyfour.zip" - ] -} +networks: + traefik: + name: ${TRAEFIK_PROXY_NETWORK:-traefik} + external: true ``` -### Customizing Infrastructure - -Edit `docker-compose.yml` to: -- Add new services -- Change resource limits -- Modify environment variables -- Adjust port mappings - -## Development Workflow - -### Typical Hackathon Workflow - -1. **Start Environment** - ```bash - npm run dev:start - ``` - -2. **Develop Your Integration** - - Edit AspireCloud code in `./aspirecloud/` - - Edit CVE Labeller code in `./cve-labeller/` - - Edit FAIR Plugin code in `./fair-plugin/` - - Create WordPress plugins for hackathon features +## Git Sign-Off Hooks -3. **Test Changes** - - WordPress: http://localhost:8888 - - AspireCloud API: http://localhost:8099 - - CVE Labeller: http://localhost:8199 - - Check emails: http://localhost:8025 +FAIR requires all commits to include a `Signed-off-by` line. When you run `just checkout` (or `just start here`) from the start-here root directory, a git hook is automatically installed in each cloned repository. This hook adds the sign-off line to your commits automatically - no need to use `git commit -s`. -4. **Monitor Logs** - ```bash - # All services - npm run dev:logs +**Important:** Always run `just` commands from the start-here root directory. Running from inside a project directory will use that project's Justfile instead, and start-here's scripts won't work correctly. - # WordPress only - npm run wp:logs +## Project Structure - # AspireCloud only - docker logs -f cloudfest-aspirecloud - - # CVE Labeller only - docker logs -f cloudfest-cve-labeller - ``` - -5**Reset When Needed** - ```bash - npm run dev:reset - npm run dev:start - ``` - -### Working with FAIR - -The FAIR plugin is automatically configured via `config/fair-config.php`. This file: -- Points FAIR to local AspireCloud (`http://aspirecloud:80` via Docker network) -- Enables debug logging -- Shows admin notices about the configuration - -**Important:** WordPress accesses AspireCloud using the Docker container name `aspirecloud`, not `localhost`. This allows container-to-container communication on the `cloudfest-network`. - -### Working with AspireCloud - -**Edit Code:** -- PHP: `./aspirecloud/app/`, `./aspirecloud/routes/` -- Views: `./aspirecloud/resources/views/` -- Frontend: `./aspirecloud/resources/js/` - -**Rebuild Assets:** -```bash -cd aspirecloud -yarn build -# or -docker exec -w /app cloudfest-aspirecloud yarn build ``` - -**Database Access:** -```bash -# Via Adminer: http://localhost:8080 -# Select: PostgreSQL, Server: aspirecloud-db, User: postgres, Password: password - -# Via command line: -docker exec -it cloudfest-aspirecloud-db psql -U postgres -d aspirecloud +start-here/ +├── justfile # Main command runner +├── meta/ +│ └── bin/ +│ ├── checkout-fair-project # Clones a FAIR repo +│ ├── bootstrap-fair-project # Initializes a cloned repo +│ ├── git-signoff-hook # Auto sign-off hook +│ └── prelude.bash # Shared utilities +├── traefik/ # Traefik reverse proxy +│ ├── bin/ # Traefik management scripts +│ ├── docker-compose.yml +│ └── traefik.template.yaml +└── projects/ # Cloned FAIR repositories (gitignored) + ├── aspirecloud/ + ├── aspiresync/ + ├── cve-labeller/ + ├── fair-beacon/ + ├── fair-plugin/ + └── fair-policy-engine/ ``` -**Re-import Database:** -```bash -npm run db:import -``` - -### Working with CVE Labeller +## Working with Individual Projects -**Edit Code:** -- PHP: `./cve-labeller/app/`, `./cve-labeller/routes/` -- Views: `./cve-labeller/resources/views/` - -**Run Migrations:** -```bash -docker exec -w /app cloudfest-cve-labeller php artisan migrate -``` +After bootstrapping, each project lives in `projects//`. Most projects have their own build systems: -**Database Access:** ```bash -# Via Adminer: http://localhost:8080 -# Select: PostgreSQL, Server: cve-labeller-db, User: postgres, Password: password +# AspireCloud +cd projects/aspirecloud +make start # or whatever commands the project supports -# Via command line: -docker exec -it cloudfest-cve-labeller-db psql -U postgres -d cve_labeller +# FAIR Beacon +cd projects/fair-beacon +# Run with PHP's built-in server or your preferred method ``` -### Working with FAIR Plugin - -**Edit Code:** -- PHP: `./fair-plugin/` - -**Configuration:** -- Auto-configured via `config/fair-config.php` (mu-plugin) -- Points to local AspireCloud at `http://aspirecloud:80` +The goal is for each project to eventually have its own Justfile and/or compose stack. ## Troubleshooting -### WordPress Can't Connect to AspireCloud - -1. Check if WordPress is on the cloudfest-network: - ```bash - docker network inspect cloudfest-network | grep wordpress - ``` - -2. If not connected, manually connect: - ```bash - docker network connect cloudfest-network $(docker ps -qf 'name=.*-wordpress-1' | head -1) - ``` - -3. Restart WordPress: - ```bash - npm run wp:stop && npm run wp:start - ``` - -### AspireCloud Shows "Class Not Found" Error - -The Composer dependencies need to be installed: - -```bash -cd aspirecloud -composer install -cd .. - -# Then restart -docker-compose restart aspirecloud -``` - -### CVE Labeller Not Responding - -```bash -# Check logs -docker logs cloudfest-cve-labeller - -# Restart -docker-compose restart cve-labeller -``` - -### Assets Not Building - -```bash -# Ensure Yarn dependencies are installed -cd aspirecloud -yarn install -yarn build -cd .. -``` - -### Can't Access Services - -All services are accessible via port-based URLs: - -- **AspireCloud**: http://localhost:8099 -- **CVE Labeller**: http://localhost:8199 -- **Mailhog**: http://localhost:8025 -- **Adminer**: http://localhost:8080 -- **Traefik Dashboard**: http://localhost:8090 -- **WordPress**: http://localhost:8888 - -If you can't access a service, check if the container is running: -```bash -docker ps | grep cloudfest -``` - -### Port Conflicts - -If ports are already in use: +### SSH key issues +If you get permission denied errors or are prompted for your passphrase repeatedly: ```bash -# Check what's using ports -lsof -i :80 -lsof -i :443 -lsof -i :8888 - -# Stop conflicting services or change ports in: -# - docker-compose.yml (for 80, 443, etc.) -# - .wp-env.json (for 8888, 8889) -``` +# Add your SSH key to the agent (avoids repeated passphrase prompts) +ssh-add ~/.ssh/id_ed25519 # or your key file -### WordPress Won't Start - -```bash -# Clean restart -npm run wp:destroy -npm run dev:start +# Test your GitHub SSH connection +ssh -T git@github.com ``` -### Database Import Fails +### mkcert not installed +Traefik requires mkcert for SSL certificates: ```bash -# Ensure services are running -docker ps - -# Check database is ready -docker exec cloudfest-aspirecloud-db pg_isready -U postgres +# macOS +brew install mkcert -# Manually import -docker exec -i cloudfest-aspirecloud-db psql -U postgres -d aspirecloud < snapshots/aspirecloud_mini_20251029.sql +# Then install the local CA +mkcert -install ``` -### Docker Network Issues +### Project-specific issues -```bash -# Reset Docker networks -docker network prune -docker-compose down -docker-compose up -d -npm run wp:start -``` - -### Complete Reset +Each project has its own dependencies and requirements. Check the README in each project's directory under `projects/`. -When all else fails: - -```bash -npm run dev:reset -# This will delete EVERYTHING and start fresh -``` - -## Advanced Topics - -### Custom Plugin Development - -Create a new plugin in the WordPress environment: - -```bash -# Access WordPress container -docker exec -it $(docker ps -qf 'name=.*-wordpress-1') bash - -# Navigate to plugins -cd /var/www/html/wp-content/plugins - -# Create your plugin directory -mkdir my-hackathon-plugin -``` - -### Using Redis with WordPress - -Install Redis Object Cache plugin: - -```json -// In .wp-env.json, add to plugins array: -"https://downloads.wordpress.org/plugin/redis-cache.latest-stable.zip" -``` - -Configure in `wp-config.php` (via mu-plugin or wp-cli): -```php -define('WP_REDIS_HOST', 'redis'); -define('WP_REDIS_PORT', 6379); -``` - -### Email Testing with Mailhog - -Configure SMTP in WordPress: -- SMTP Host: `mailhog` -- SMTP Port: `1025` -- No authentication required - -All emails sent from WordPress will be captured in Mailhog UI: http://localhost:8025 - -### Accessing Service Logs - -```bash -# All services -docker-compose logs -f - -# Specific service -docker-compose logs -f aspirecloud -docker-compose logs -f cve-labeller -docker-compose logs -f traefik - -# WordPress -npm run wp:logs -``` - -## Support & Resources - -### Hackathon Support - -- **FAIR Slack**: [chat.fair.pm](https://chat.fair.pm) - - `#cloudfest-hackathon` - - `#wg-aspirecloud` - -### Documentation Links +## Resources - [FAIR Protocol](https://github.com/fairpm/fair-protocol) -- [FAIR Plugin](https://github.com/fairpm/fair-plugin) -- [AspireCloud](https://github.com/aspirepress/AspireCloud) -- [AspireCloud Docs](https://docs.aspirepress.org/aspirecloud/) -- [PatchStack](https://patchstack.com) -- [wp-env Documentation](https://developer.wordpress.org/block-editor/reference-guides/packages/packages-env/) - -### Common Issues - -Check the [Troubleshooting](#troubleshooting) section above or: -- Review service logs: `npm run dev:logs` -- Check Docker: `docker ps -a` -- Verify network: `docker network inspect cloudfest-network` -- Reset everything: `npm run dev:reset` - -## License - -MIT - See LICENSE file for details - ---- - -**Built for CloudFest USA 2025 Hackathon** -📍 Miami Marriott Biscayne Bay | November 4, 2025 -Sponsored by PatchStack +- [FAIR Slack](https://chat.fair.pm) +- [AspireCloud Documentation](https://docs.aspirepress.org/aspirecloud/) diff --git a/justfile b/justfile new file mode 100644 index 0000000..05062e6 --- /dev/null +++ b/justfile @@ -0,0 +1,42 @@ +_default: + @just --list + + +prereqs: + @# many services assume the traefik network exists even if you're not running traefik + -docker network create fair-net >/dev/null 2>&1 + -docker network create traefik >/dev/null 2>&1 + +start: prereqs checkout \ + (_start 'aspirecloud') \ + (_start 'aspiresync') \ + (_start 'cve-labeller') \ + (_start 'fair-policy-engine') \ + (_start 'fair-plugin') \ + (_start 'fair-beacon') \ + (_start 'fair-explorer') + +# this would be ideal, but we're not there yet +# start repo: +# cd projects/{{repo}} && just start + +_start repo: + meta/bin/bootstrap-fair-project {{repo}} + +checkout: \ + (_checkout 'aspirecloud') \ + (_checkout 'aspirepress/aspiresync') \ + (_checkout 'cve-labeller') \ + (_checkout 'fair-policy-engine') \ + (_checkout 'fair-plugin') \ + (_checkout 'fair-beacon') \ + (_checkout 'fair-explorer') + +_checkout repo: + meta/bin/checkout-fair-project {{repo}} + +# So you can type `just start here` :) +# Later I might make this print status information or something.... +[private] +@here: + true diff --git a/meta/bin/bootstrap-fair-project b/meta/bin/bootstrap-fair-project new file mode 100755 index 0000000..68e0bb0 --- /dev/null +++ b/meta/bin/bootstrap-fair-project @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +here=$(dirname "$0") && source "$here"/prelude.bash + +# Eventually all projects should have a justfile that understands 'just start' and this script will go away. + +project=${1:-} +[[ -n $project ]] || die "Usage: $0 " +shift + +cd projects/"$project" + +if [[ -f justfile ]]; then + just start + exit 0 +fi + +# no justfile found, so do any special handling here + +case $project in + cve-labeller) + # TODO: cve-labeller needs a docker-compose.yml of its own that integrates into AC's services + ;; + fair-beacon) + composer install + ;; +esac diff --git a/meta/bin/checkout-fair-project b/meta/bin/checkout-fair-project new file mode 100755 index 0000000..8af9e99 --- /dev/null +++ b/meta/bin/checkout-fair-project @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +here=$(dirname "$0") && source "$here"/prelude.bash + +repo=$(repo_url "${1:-}") || die "Usage: $0 " +shift + +base=$(basename "$repo") + +mkdir -p projects +cd projects + +dest=$(pwd)/$base + +if [[ -d $base ]]; then + cd "$base" + git pull + echo "Successfully updated $repo in $dest" +else + git clone "$repo" "$@" + echo "Successfully cloned $repo to $dest" +fi + +if [[ -n ${NO_INSTALL_HOOK:-} ]] && ! [[ -e "$dest"/.git/hooks/prepare-commit-msg ]]; then + cp -v ../meta/bin/git-signoff-hook "$dest"/.git/hooks/prepare-commit-msg +fi + diff --git a/meta/bin/git-signoff-hook b/meta/bin/git-signoff-hook new file mode 100755 index 0000000..b8e9059 --- /dev/null +++ b/meta/bin/git-signoff-hook @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +function die () { + echo "$@" >&2 + exit 1 +} + +name=$(git config user.name) +email=$(git config user.email) + +[[ -n "$name" ]] || die "empty git config user.name" +[[ -n "$email" ]] || die "empty git config user.email" + +git interpret-trailers \ + --if-exists doNothing \ + --trailer "Signed-off-by: $name <$email>" \ + --in-place \ + "$1" diff --git a/meta/bin/prelude.bash b/meta/bin/prelude.bash new file mode 100644 index 0000000..6d36965 --- /dev/null +++ b/meta/bin/prelude.bash @@ -0,0 +1,17 @@ +# This file should be sourced, not run + +set -euo pipefail + +# These are not exported, but will be visible in the tool's script if they need them +__ORIG_PWD=$PWD +__HERE=$(dirname "$0") + +function warn { echo "$@" >&2; } +function die { warn "$@"; exit 1; } + +for file in "$__HERE"/prelude.d/*.bash; do + # shellcheck source=/dev/null + [[ -f $file ]] && source "$file" +done + +cd "$__HERE"/../.. diff --git a/meta/bin/prelude.d/fair_github.bash b/meta/bin/prelude.d/fair_github.bash new file mode 100644 index 0000000..90503cb --- /dev/null +++ b/meta/bin/prelude.d/fair_github.bash @@ -0,0 +1,10 @@ +# This file should be sourced, not run + +function repo_url() { + repo=${1:-} + [[ -n $repo ]] || return 1 + + [[ $repo =~ / ]] || repo="fairpm/$repo" + [[ $repo =~ : ]] || repo="git@github.com:$repo" + echo "$repo" +} \ No newline at end of file diff --git a/site/.dockerignore b/site/.dockerignore new file mode 100644 index 0000000..f5936a6 --- /dev/null +++ b/site/.dockerignore @@ -0,0 +1,13 @@ +# ignore everything by default +* + +# copy these directories +!bin/ +!docker/fairpm-wordpress + +# copy these files +!.env +!README.md +!composer.json +!composer.lock + diff --git a/site/.editorconfig b/site/.editorconfig new file mode 100644 index 0000000..7cb0253 --- /dev/null +++ b/site/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{js,json,yml}] +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/site/.env.example b/site/.env.example new file mode 100644 index 0000000..18417a3 --- /dev/null +++ b/site/.env.example @@ -0,0 +1,18 @@ +DATABASE_URL='mysql://wp:password@fairpm-db:3306/wordpress' +DB_PREFIX='wp_' + +WP_ENV='development' +WP_HOME='https://local.fair.pm' +WP_SITEURL="${WP_HOME}/wp" + +# WP_DEBUG_LOG='/path/to/debug.log' + +###> Do not remove this comment, and do not add anything under it, as it will be replaced on install <### +AUTH_KEY='generateme' +SECURE_AUTH_KEY='generateme' +LOGGED_IN_KEY='generateme' +NONCE_KEY='generateme' +AUTH_SALT='generateme' +SECURE_AUTH_SALT='generateme' +LOGGED_IN_SALT='generateme' +NONCE_SALT='generateme' diff --git a/site/.gitignore b/site/.gitignore new file mode 100644 index 0000000..ec88264 --- /dev/null +++ b/site/.gitignore @@ -0,0 +1,32 @@ +#### ignore all dotfiles and dot-dirs, with exceptions +.* +!.config/ +!.distignore +!.dockerignore +!.editorconfig +!.env.example +!.gitattributes +!.gitignore + +#### ignore these patterns +*.bak +*.log +*.tmp +*.local +*.local.* +*.secret +*.secret.* + +!php.local.ini + +#### ignore these specific directories +/gp-data/ +/vendor/ + +#### ignore these specific files + +auth.json +docker-compose.override.yml + +# many dependencies in composer.json are symlinks, so the lockfile is meaningless +composer.lock diff --git a/site/bin/_prelude.bash b/site/bin/_prelude.bash new file mode 100644 index 0000000..680bb7a --- /dev/null +++ b/site/bin/_prelude.bash @@ -0,0 +1,17 @@ +# This file should be sourced, not run + +set -euo pipefail + +# These are not exported, but will be visible in the tool's script if they need them +__ORIG_PWD=$PWD +__HERE=$(dirname "$0") + +function warn { echo "$@" >&2; } +function die { warn "$@"; exit 1; } + +for file in "$__HERE"/_prelude.d/*.bash; do + # shellcheck source=/dev/null + [[ -f $file ]] && source "$file" +done + +cd "$__HERE"/.. diff --git a/site/bin/_prelude.d/100-base.bash b/site/bin/_prelude.d/100-base.bash new file mode 100644 index 0000000..b349090 --- /dev/null +++ b/site/bin/_prelude.d/100-base.bash @@ -0,0 +1,11 @@ + # shellcheck disable=SC2089 + +function require_command() { + local command="$1" + local package="${2:-}" + + local not_found_msg="Command '$command' not found." + [[ -n $package ]] && not_found_msg=" Install the '$package' package with brew|apt|dnf|scoop" + + command -v "$command" >/dev/null 2>&1 || die "$not_found_msg" +} diff --git a/site/bin/down b/site/bin/down new file mode 100755 index 0000000..a3f2c1b --- /dev/null +++ b/site/bin/down @@ -0,0 +1,4 @@ +#!/bin/bash +here=$(dirname "$0") && source "$here"/_prelude.bash + +exec docker compose down --remove-orphans "$@" diff --git a/site/bin/up b/site/bin/up new file mode 100755 index 0000000..82a4117 --- /dev/null +++ b/site/bin/up @@ -0,0 +1,12 @@ +#!/bin/bash +here=$(dirname "$0") && source "$here"/_prelude.bash + +if [[ -z "${NO_BUILD:-}" ]] +then + docker network create traefik >/dev/null 2>&1 || true + docker network create fair-net >/dev/null 2>&1 || true + docker compose build + [[ -e composer.lock ]] || composer update +fi + +docker compose up -d "$@" diff --git a/site/composer.json b/site/composer.json new file mode 100644 index 0000000..c01ce57 --- /dev/null +++ b/site/composer.json @@ -0,0 +1,98 @@ +{ + "name": "fairpm/start-here-site", + "type": "project", + "license": "GPL-2.0-or-later", + "repositories": [ + { + "type": "composer", + "url": "https://wpackagist.org", + "only": [ + "wpackagist-plugin/*", + "wpackagist-theme/*" + ] + }, + { + "type": "path", + "url": "../projects/fair-plugin", + "options": { + "symlink": true + }, + "only": [ + "fairpm/fair-plugin" + ] + }, + { + "type": "path", + "url": "../projects/fair-beacon", + "options": { + "symlink": true + }, + "only": [ + "fairpm/fair-beacon" + ] + }, + { + "type": "path", + "url": "../projects/fair-explorer", + "options": { + "symlink": true + }, + "only": [ + "fairpm/fair-explorer" + ] + } + ], + "require": { + "php": ">=8.4", + "ext-apcu": "*", + "ext-sqlite3": "*", + "afragen/git-updater": "dev-master", + "composer/installers": "~2", + "fairpm/fair-beacon": ">=0.1", + "fairpm/fair-explorer": "*", + "fairpm/fair-plugin": "*", + "johnbillion/query-monitor": "^3.20.2", + "mcaskill/composer-exclude-files": "^4.0.1", + "oscarotero/env": "^2.1.1", + "roots/bedrock-autoloader": "^1.0.4", + "roots/wordpress": "^6.9.1", + "roots/wp-config": "^1.0", + "vlucas/phpdotenv": "^5.6.3", + "wpackagist-theme/twentytwentyfive": "^1.4" + }, + "require-dev": { + "roave/security-advisories": "dev-latest" + }, + "suggest": {}, + "minimum-stability": "dev", + "prefer-stable": true, + "extra": { + "installer-paths": { + "web/app/mu-plugins/{$name}/": [ + "type:wordpress-muplugin" + ], + "web/app/plugins/{$name}/": [ + "type:wordpress-plugin" + ], + "web/app/themes/{$name}/": [ + "type:wordpress-theme" + ] + }, + "wordpress-install-dir": "web/wp", + "exclude-from-files": [ + "freemius/wordpress-sdk/start.php" + ] + }, + "config": { + "allow-plugins": { + "composer/installers": true, + "mcaskill/composer-exclude-files": true, + "roots/wordpress-core-installer": true + }, + "bump-after-update": true, + "notify-on-install": false, + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true + } +} diff --git a/site/config/application.php b/site/config/application.php new file mode 100644 index 0000000..72cb449 --- /dev/null +++ b/site/config/application.php @@ -0,0 +1,180 @@ +addAdapter(Dotenv\Repository\Adapter\EnvConstAdapter::class) + ->addAdapter(Dotenv\Repository\Adapter\PutenvAdapter::class) + ->immutable() + ->make(); + + $dotenv = Dotenv\Dotenv::create($repository, $root_dir, $env_files, false); + $dotenv->load(); + + $dotenv->required(['WP_HOME', 'WP_SITEURL']); + if (!env('DATABASE_URL')) { + $dotenv->required(['DB_NAME', 'DB_USER', 'DB_PASSWORD']); + } +} + +/** + * Set up our global environment constant and load its config first + * Default: production + */ +define('WP_ENV', env('WP_ENV') ?: 'production'); + +/** + * Infer WP_ENVIRONMENT_TYPE based on WP_ENV + */ +if (!env('WP_ENVIRONMENT_TYPE') && in_array(WP_ENV, ['production', 'staging', 'development', 'local'])) { + Config::define('WP_ENVIRONMENT_TYPE', WP_ENV); +} + +/** + * URLs + */ +Config::define('WP_HOME', env('WP_HOME')); +Config::define('WP_SITEURL', env('WP_SITEURL')); + +/** + * Custom Content Directory + */ +Config::define('CONTENT_DIR', '/app'); +Config::define('WP_CONTENT_DIR', $webroot_dir . Config::get('CONTENT_DIR')); +Config::define('WP_CONTENT_URL', Config::get('WP_HOME') . Config::get('CONTENT_DIR')); + +/** + * DB settings + */ +if (env('DB_SSL')) { + Config::define('MYSQL_CLIENT_FLAGS', MYSQLI_CLIENT_SSL); +} + +Config::define('DB_NAME', env('DB_NAME')); +Config::define('DB_USER', env('DB_USER')); +Config::define('DB_PASSWORD', env('DB_PASSWORD')); +Config::define('DB_HOST', env('DB_HOST') ?: 'localhost'); +Config::define('DB_CHARSET', 'utf8mb4'); +Config::define('DB_COLLATE', ''); +$table_prefix = env('DB_PREFIX') ?: 'wp_'; + +if (env('DATABASE_URL')) { + $dsn = (object) parse_url(env('DATABASE_URL')); + + Config::define('DB_NAME', substr($dsn->path, 1)); + Config::define('DB_USER', $dsn->user); + Config::define('DB_PASSWORD', isset($dsn->pass) ? $dsn->pass : null); + Config::define('DB_HOST', isset($dsn->port) ? "{$dsn->host}:{$dsn->port}" : $dsn->host); +} + +/** + * Authentication Unique Keys and Salts + */ +Config::define('AUTH_KEY', env('AUTH_KEY')); +Config::define('SECURE_AUTH_KEY', env('SECURE_AUTH_KEY')); +Config::define('LOGGED_IN_KEY', env('LOGGED_IN_KEY')); +Config::define('NONCE_KEY', env('NONCE_KEY')); +Config::define('AUTH_SALT', env('AUTH_SALT')); +Config::define('SECURE_AUTH_SALT', env('SECURE_AUTH_SALT')); +Config::define('LOGGED_IN_SALT', env('LOGGED_IN_SALT')); +Config::define('NONCE_SALT', env('NONCE_SALT')); + +/** + * Custom Settings + */ +Config::define('AUTOMATIC_UPDATER_DISABLED', true); +Config::define('DISABLE_WP_CRON', env('DISABLE_WP_CRON') ?: false); + +// Disable the plugin and theme file editor in the admin +Config::define('DISALLOW_FILE_EDIT', true); + +// Disable plugin and theme updates and installation from the admin +Config::define('DISALLOW_FILE_MODS', true); + +// Limit the number of post revisions +Config::define('WP_POST_REVISIONS', env('WP_POST_REVISIONS') ?? true); + +// Disable script concatenation +Config::define('CONCATENATE_SCRIPTS', false); + +/** + * Debugging Settings + */ +Config::define('WP_DEBUG_DISPLAY', false); +Config::define('WP_DEBUG_LOG', false); +Config::define('SCRIPT_DEBUG', false); +ini_set('display_errors', '0'); + +/** + * Settings specific to fairpm/server + */ +// all sites are multisite by default. note that MULTISITE must not be true during install. +if (!defined('WP_INITIAL_INSTALL') || !WP_INITIAL_INSTALL) { + Config::define('MULTISITE', true); +} + +/** + * Allow WordPress to detect HTTPS when used behind a reverse proxy or a load balancer + * See https://codex.wordpress.org/Function_Reference/is_ssl#Notes + */ +if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { + $_SERVER['HTTPS'] = 'on'; +} + +$env_config = __DIR__ . '/environments/' . WP_ENV . '.php'; + +if (file_exists($env_config)) { + require_once $env_config; +} + +Config::apply(); + +/** + * Bootstrap WordPress + */ +if (!defined('ABSPATH')) { + define('ABSPATH', $webroot_dir . '/wp/'); +} diff --git a/site/config/environments/development.php b/site/config/environments/development.php new file mode 100644 index 0000000..94026ac --- /dev/null +++ b/site/config/environments/development.php @@ -0,0 +1,22 @@ +> /etc/sudoers + +USER app + +################ +FROM base AS prod + +COPY . /app +RUN chown -R app:app /app + +USER app +RUN composer install --no-dev --no-interaction --no-progress --optimize-autoloader --working-dir=/app + diff --git a/site/docker/fairpm-wordpress/php.local.ini b/site/docker/fairpm-wordpress/php.local.ini new file mode 100644 index 0000000..e782b44 --- /dev/null +++ b/site/docker/fairpm-wordpress/php.local.ini @@ -0,0 +1,18 @@ +date.timezone="UTC" +expose_php=Off +error_reporting = E_ALL & ~E_DEPRECATED +display_errors = Off +display_startup_errors = Off +log_errors = On +error_log = /dev/stderr +log_errors_max_len = 1024 +ignore_repeated_errors = On +ignore_repeated_source = Off +html_errors = Off + + + +# xdebug.mode = develop,debug +# xdebug.start_with_request = yes +# xdeug.start_upon_error = yes +# xdebug.client_host = host.docker.internal diff --git a/site/docker/fairpm-wordpress/xdebug.ini b/site/docker/fairpm-wordpress/xdebug.ini new file mode 100644 index 0000000..85ada9d --- /dev/null +++ b/site/docker/fairpm-wordpress/xdebug.ini @@ -0,0 +1,8 @@ +; Note this file is not copied into the container by default. +; To enable in your dev stack, uncomment the line in docker-compose.override.yml, then run `docker compose restart` + +xdebug.mode = develop,debug +xdebug.start_with_request = yes +xdeug.start_upon_error = yes +xdebug.client_host = host.docker.internal ; for docker desktop hosts +; xdebug.client_host = 172.17.0.1 ; for linux hosts diff --git a/site/index.php b/site/index.php new file mode 100644 index 0000000..744e42d --- /dev/null +++ b/site/index.php @@ -0,0 +1,21 @@ +&2; } +function die { warn "$@"; exit 1; } + +cd "$__HERE"/../.. diff --git a/site/meta/bin/scrape b/site/meta/bin/scrape new file mode 100755 index 0000000..b29af94 --- /dev/null +++ b/site/meta/bin/scrape @@ -0,0 +1,26 @@ +#!/bin/bash + +here=$(dirname "$0") +source "$here"/prelude.bash + +[[ ${DANGEROUSLY_ALLOW_SCRAPE:-} = fair-site ]] || die "DANGEROUSLY_ALLOW_SCRAPE not set or not equal to 'fair-site' -- aborted" + +SLEEP=${SLEEP:-10} + +function dcexec() { docker compose exec fairpm-wordpress "$@"; } + +function main() { + database=${1:-} + [[ -n $database ]] || die "Usage: $0 path/to/database.sql" + + docker compose down --remove-orphans --volumes + docker compose up --build -d + + echo "Sleeping for $SLEEP seconds..." + sleep "$SLEEP" + + dcexec wp db import "$database" + dcexec meta/bin/fixup-db-snapshot +} + +main "$@" diff --git a/site/web/.gitignore b/site/web/.gitignore new file mode 100644 index 0000000..cc7a6af --- /dev/null +++ b/site/web/.gitignore @@ -0,0 +1 @@ +/wp/ diff --git a/site/web/app/mu-plugins/.gitignore b/site/web/app/mu-plugins/.gitignore new file mode 100644 index 0000000..c5c549c --- /dev/null +++ b/site/web/app/mu-plugins/.gitignore @@ -0,0 +1,4 @@ +* +!.gitignore +!bedrock-autoloader.php +!disallow-indexing.php diff --git a/site/web/app/mu-plugins/bedrock-autoloader.php b/site/web/app/mu-plugins/bedrock-autoloader.php new file mode 100644 index 0000000..023c5c9 --- /dev/null +++ b/site/web/app/mu-plugins/bedrock-autoloader.php @@ -0,0 +1,16 @@ +enabled() ) { + + // Allows locally defined JETPACK_DEV_DEBUG constant to override filter. + if ( ! defined( 'JETPACK_DEV_DEBUG' ) ) { + // Keep jetpack from attempting external requests. + add_filter( 'jetpack_development_mode', '__return_true', 9999 ); + } + + // Prevent BuddyPress from falling back to Gravatar avatars. + add_filter( 'bp_core_fetch_avatar_no_grav', '__return_true' ); + + // Disable automatic updater updates. + add_filter( 'automatic_updater_disabled', '__return_true' ); + + // Tell WordPress we are on a version control system to add additional blocks. + add_filter( 'automatic_updates_is_vcs_checkout', '__return_true' ); + + // Disable translation updates. + add_filter( 'auto_update_translation', '__return_false' ); + + // Disable minor core updates. + add_filter( 'allow_minor_auto_core_updates', '__return_false' ); + + // Disable major core updates. + add_filter( 'allow_major_auto_core_updates', '__return_false' ); + + // Disable dev core updates. + add_filter( 'allow_dev_auto_core_updates', '__return_false' ); + + // Disable overall core updates. + add_filter( 'auto_update_core', '__return_false' ); + add_filter( 'wp_auto_update_core', '__return_false' ); + + // Disable automatic plugin and theme updates (used by WP to force push security fixes). + add_filter( 'auto_update_plugin', '__return_false' ); + add_filter( 'auto_update_theme', '__return_false' ); + + // Disable debug emails (used by core for rollback alerts in automatic update deployment). + add_filter( 'automatic_updates_send_debug_email', '__return_false' ); + + // Disable update emails (for when we push the new WordPress versions manually) as well + // as the notification there is a new version emails. + add_filter( 'auto_core_update_send_email', '__return_false' ); + add_filter( 'send_core_update_notification_email', '__return_false' ); + add_filter( 'automatic_updates_send_debug_email ', '__return_false', 1 ); + + // Get rid of the version number in the footer. + add_filter( 'update_footer', '__return_empty_string', 11 ); + + // Filter out the pre core option. + add_filter( 'pre_option_update_core', '__return_null' ); + + // Remove some actions. + remove_action( 'admin_init', 'wp_plugin_update_rows' ); + remove_action( 'admin_init', 'wp_theme_update_rows' ); + remove_action( 'admin_notices', 'maintenance_nag' ); + remove_action( 'init', 'wp_schedule_update_checks' ); + + // Add back the upload tab. + add_action( 'install_themes_upload', 'install_themes_upload', 10, 0 ); + + // Define core contants for more protection. + if ( ! defined( 'AUTOMATIC_UPDATER_DISABLED' ) ) { + define( 'AUTOMATIC_UPDATER_DISABLED', true ); + } + if ( ! defined( 'WP_AUTO_UPDATE_CORE' ) ) { + define( 'WP_AUTO_UPDATE_CORE', false ); + } + } + } + + /** + * If an instance exists, this returns it. If not, it creates one and + * returns it. + * + * @return $instance + */ + public static function getInstance() { + if ( ! self::$instance ) { + self::$instance = new self; + } + + return self::$instance; + } + + /** + * Load our textdomain for localization. + * + * @return void + */ + public function textdomain() { + load_plugin_textdomain( 'airplane-mode', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); + } + + /** + * Set our initial airplane mode setting to 'on' on activation. + */ + public function create_setting() { + add_site_option( 'airplane-mode', 'on' ); + set_transient( 'wporg_theme_feature_list', array(), 999999999999 ); + } + + /** + * Remove our setting on plugin deactivation. + */ + public function remove_setting() { + delete_option( 'airplane-mode' ); + delete_site_option( 'airplane-mode' ); + delete_transient( 'wporg_theme_feature_list' ); + } + + /** + * Helper function to check the current status. + * + * @return bool True if status is 'on'; false if not. + */ + public function enabled() { + + // Bail if CLI. + if ( defined( 'WP_CLI' ) and WP_CLI ) { + return false; + } + + // Pull our status from the options table. + $option = get_site_option( 'airplane-mode' ); + + // Backup check for regular options table. + if ( false === $option ) { + $option = get_option( 'airplane-mode' ); + } + + // Return the option flag. + return 'on' === $option; + } + + /** + * Check the URL of a stylesheet and remove any that are not on the local URL. + * + * @param string $source The source URL of the CSS sheet. + * + * @return string $source The same URL, or null. + */ + public function block_style_load( $source ) { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return $source; + } + + // Parse the URL being passed to pull out the host. + $parsed = parse_url( $source, PHP_URL_HOST ); + + // First run the filter to allow a source host to get through. + if ( false === apply_filters( 'airplane_mode_parse_style', true, $parsed ) ) { + return $source; + } + + // If we don't share the same URL as the site itself, return null. Otherwise return the URL. + return isset( $parsed ) && false === strpos( home_url(), $parsed ) + ? new Airplane_Mode_WP_Error( 'airplane_mode_enabled', __( 'Airplane Mode blocked style', 'airplane-mode' ), array( + 'return' => '', + 'src' => $source, + ) ) + : $source; + } + + /** + * Check the URL of a JS file and remove any that are not on the local URL. + * + * @param string $source The source URL of the JS file. + * + * @return string $source The same URL, or null. + */ + public function block_script_load( $source ) { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return $source; + } + + // Parse the URL being passed to pull out the host. + $parsed = parse_url( $source, PHP_URL_HOST ); + + // First run the filter to allow a source host to get through. + if ( false === apply_filters( 'airplane_mode_parse_script', true, $parsed ) ) { + return $source; + } + + // If we don't share the same URL as the site itself, return null. Otherwise return the URL. + return isset( $parsed ) && false === strpos( home_url(), $parsed ) + ? new Airplane_Mode_WP_Error( 'airplane_mode_enabled', __( 'Airplane Mode blocked script', 'airplane-mode' ), array( + 'return' => '', + 'src' => $source, + ) ) + : $source; + } + + /** + * Use our existing filter to check for local assets. + * + * @param boolean $block Whether to block the specific asset. Defaults to 'true'. + * @param array $parsed The URL of the asset, parsed. + * + * @return boolean + */ + public function bypass_asset_block( $block, $parsed ) { + + // Create an array of the approved local domains. + $local = apply_filters( 'airplane_mode_local_hosts', array( 'localhost', '127.0.0.1' ) ); + + // If our parsed URL host is in that array, return false. Otherwise, return our blocking choice. + return ! empty( $local ) && in_array( $parsed, $local ) ? false : $block; + } + + /** + * Block oEmbeds from displaying. + * + * @param string $html The embed HTML. + * @param string $url The attempted embed URL. + * @param array $attr An array of shortcode attributes. + * @param int $post_ID Post ID. + * + * @return string + */ + public function block_oembed_html( $html, $url, $attr, $post_ID ) { + return $this->enabled() ? sprintf( '

%s

', sprintf( __( 'Airplane Mode is enabled. oEmbed blocked for %1$s.', 'airplane-mode' ), esc_url( $url ) ) ) : $html; + } + + /** + * Add body class to front-end pages and login based on plugin status. + * + * @param array $classes The existing array of body classes. + * + * @return array $classes The updated array of body classes. + */ + public function body_class( $classes ) { + + // Add the class based on the current status. + $classes[] = $this->enabled() ? 'airplane-mode-enabled' : 'airplane-mode-disabled'; + + // Also add in the margin setup for Query Monitor because I'm a perfectionist. + if ( ! class_exists( 'QueryMonitor' ) || defined( 'QM_DISABLED' ) && QM_DISABLED ) { + $classes[] = 'airplane-mode-no-qm'; + } + + // Return our array of classes. + return $classes; + } + + /** + * Add body class to admin pages based on plugin status. + * + * @param string $classes The existing space-separated list of CSS classes. + * + * @return string $classes The updated space-separated list of CSS classes. + */ + public function admin_body_class( $classes ) { + + // First add the standard set of classes based on status. + $classes .= $this->enabled() ? ' airplane-mode-enabled' : ' airplane-mode-disabled'; + + // Also add in the margin setup for Query Monitor because I'm a perfectionist. + if ( ! class_exists( 'QueryMonitor' ) || defined( 'QM_DISABLED' ) && QM_DISABLED ) { + $classes .= ' airplane-mode-no-qm'; + } + + // Return our string of classes. + return $classes; + } + + /** + * Remove menu items for updates from a standard WP install. + * + * @return null + */ + public function admin_menu_items() { + + // Bail if disabled, or on a multisite. + if ( ! $this->enabled() || is_multisite() ) { + return; + } + + // Remove our items. + remove_submenu_page( 'index.php', 'update-core.php' ); + } + + /** + * Remove menu items for updates from a multisite instance. + * + * @return null + */ + public function ms_admin_menu_items() { + + // Bail if disabled or not on our network admin. + if ( ! $this->enabled() || ! is_network_admin() ) { + return; + } + + // Remove the items. + remove_submenu_page( 'index.php', 'upgrade.php' ); + } + + /** + * Replace all instances of gravatar with a local image file + * to remove the call to remote service. + * + * @param string $avatar Image tag for the user's avatar. + * @param int|object|string $id_or_email A user ID, email address, or comment object. + * @param int $size Square avatar width and height in pixels to retrieve. + * @param string $default URL to a default image to use if no avatar is available. + * @param string $alt Alternative text to use in the avatar image tag. + * + * @return string `` tag for the user's avatar. + */ + public function replace_gravatar( $avatar, $id_or_email, $size, $default, $alt ) { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return $avatar; + } + + // Swap out the file for a base64 encoded image. + $image = 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=='; + $avatar = "{$alt}"; + + // Return the avatar. + return $avatar; + } + + /** + * Remove avatar images from the default avatar list. + * + * @param string $avatar_list List of default avatars. + * + * @return string Updated list with images removed. + */ + public function default_avatar( $avatar_list ) { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return $avatar_list; + } + + // Remove images. + $avatar_list = preg_replace( '|]+)> |i', '', $avatar_list ); + + // Send back the list. + return $avatar_list; + } + + /** + * Disable all the HTTP requests being made with the action + * happening before the status check so others can allow certain + * items as desired. + * + * @param bool|array|WP_Error $status Whether to preempt an HTTP request return. Default false. + * @param array $args HTTP request arguments. + * @param string $url The request URL. + * + * @return bool|array|WP_Error A WP_Error object if Airplane Mode is enabled. Original $status if not. + */ + public function disable_http_reqs( $status = false, $args = array(), $url = '' ) { + + // Pass our data to the action to allow a bypass. + do_action( 'airplane_mode_http_args', $status, $args, $url ); + + if ( ! $this->enabled() ) { + return $status; + } + + $url_host = parse_url( $url, PHP_URL_HOST ); + + // Allow the request to pass through if the URL host matches the site's host. + if ( $url_host && parse_url( home_url(), PHP_URL_HOST ) === $url_host ) { + + // But allow this to be disabled via a filter. + if ( apply_filters( 'airplane_mode_allow_local_bypass', true, $url, $args ) ) { + return $status; + } + } + + // Allow certain HTTP API requests to pass through via a filter. + if ( apply_filters( 'airplane_mode_allow_http_api_request', false, $url, $args, $url_host ) ) { + return $status; + } + + // Disable the http requests if enabled. + return new WP_Error( 'airplane_mode_enabled', __( 'Airplane Mode is enabled', 'airplane-mode' ) ); + } + + /** + * Load our small CSS file for the toggle switch. + */ + public function toggle_css() { + + // Don't display CSS on the front-end if the admin bar is not loading. + if ( ! is_admin() && ! is_admin_bar_showing() ) { + return; + } + + // Set a suffix for loading the minified or normal. + $file = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? 'airplane-mode.css' : 'airplane-mode.min.css'; + + // Set a version for browser caching. + $vers = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? time() : AIRMDE_VER; + + // Load the CSS file itself. + wp_enqueue_style( 'airplane-mode', plugins_url( '/lib/css/' . $file, __FILE__ ), array(), $vers, 'all' ); + } + + /** + * Sets the mode. + * + * @param string $mode Desired mode ('on' or 'off'). + * + * @return bool Whether the setting changed. + */ + public function set_mode( $mode = 'on' ) { + + // Check what mode we're currently in, with "on" as a fallback. + if ( ! in_array( $mode, array( 'on', 'off' ) ) ) { + $mode = 'on'; + } + + // Update the setting. + $return = update_site_option( 'airplane-mode', $mode ); + + // Fire action to allow for functions to run on status change. + do_action( 'airplane_mode_status_change', $mode ); + + // And return the status we just set. + return $return; + } + + /** + * Enables airplane mode. + * + * @return bool Whether the setting changed. + */ + public function enable() { + return self::set_mode( 'on' ); + } + + /** + * Disables airplane mode. + * + * @return bool Whether the setting changed. + */ + public function disable() { + return self::set_mode( 'off' ); + } + + /** + * Check the user action from the toggle switch to set the option + * to 'on' or 'off'. + * + * @return void If any of the sanity checks fail and we bail early. + */ + public function toggle_check() { + + // Bail if current user doesn't have cap. + if ( ! current_user_can( 'manage_options' ) ) { + return; + } + + // Set a sanitized variable of our potential nonce and request. + $nonce = isset( $_GET['airmde_nonce'] ) ? sanitize_key( $_GET['airmde_nonce'] ) : ''; + $switch = isset( $_REQUEST['airplane-mode'] ) ? sanitize_key( $_REQUEST['airplane-mode'] ) : ''; + + // Check for our nonce. + if ( empty( $nonce ) || ! wp_verify_nonce( $nonce, 'airmde_nonce' ) ) { + return; + } + + // Now check for our query string. + if ( empty( $switch ) || ! in_array( $switch, array( 'on', 'off' ) ) ) { + return; + } + + // Delete old per-site option. + delete_option( 'airplane-mode' ); + + // Set our mode based on the toggle action. + self::set_mode( $switch ); + + // And go about our business. + wp_redirect( self::get_redirect() ); + exit; + } + + /** + * Fetch the URL to redirect to after toggling Airplane Mode. + * + * @return string The URL to redirect to. + */ + protected static function get_redirect() { + + // Return the args for the actual redirect. + $redirect = remove_query_arg( array( + 'airplane-mode', + 'airmde_nonce', + 'user_switched', + 'switched_off', + 'switched_back', + 'message', + 'update', + 'updated', + 'settings-updated', + 'saved', + 'activated', + 'activate', + 'deactivate', + 'enabled', + 'disabled', + 'locked', + 'skipped', + 'deleted', + 'trashed', + 'untrashed', + 'force-check', + ) ); + + // Redirect away from the update core page. + $redirect = str_replace( 'update-core.php', '', $redirect ); + + // And return the redirect. + return apply_filters( 'airplane_mode_redirect_url', $redirect ); + } + + /** + * Add our quick toggle to the admin bar to enable / disable. + * + * @param WP_Admin_Bar $wp_admin_bar The admin bar object. + * + * @return void if current user can't manage options and we bail early. + */ + public function admin_bar_toggle( WP_Admin_Bar $wp_admin_bar ) { + + // Bail if current user doesn't have cap. + if ( ! current_user_can( 'manage_options' ) ) { + return; + } + + // Get the current status. + $status = $this->enabled(); + + // Set a title message (translatable). + $title = $status ? __( 'Airplane Mode is enabled.', 'airplane-mode' ) : __( 'Airplane Mode is disabled.', 'airplane-mode' ); + + // Set our toggle variable parameter (in reverse since we want the opposite action). + $toggle = $status ? 'off' : 'on'; + + // Set my HTTP request count label to a blank string for now. + $label = ''; + + // Get and display the HTTP count when Query Monitor isn't active. + if ( ! class_exists( 'QueryMonitor' ) || defined( 'QM_DISABLED' ) && QM_DISABLED ) { + + // Pull my HTTP count. + $count = ! empty( $this->http_count ) ? number_format_i18n( $this->http_count ) : 0; + + $count_label = sprintf( _n( 'There was %s HTTP request.', 'There were %s HTTP requests.', $count, 'airplane-mode' ), $count ); + + // Build the markup for my label. + $label = ''; + $label .= '' . esc_html( $count_label ) . ''; + + // Amend the tooltip title with the count. + $title .= ' ' . $count_label; + } + + // Get our link with the status parameter. + $link = wp_nonce_url( add_query_arg( 'airplane-mode', $toggle ), 'airmde_nonce', 'airmde_nonce' ); + + // Now add the admin bar link. + $wp_admin_bar->add_node( + array( + 'id' => 'airplane-mode-toggle', + 'title' => '' . $label, + 'href' => esc_url( $link ), + 'position' => 0, + 'meta' => array( + 'title' => $title, + ), + ) + ); + } + + /** + * Filter a user's meta capabilities to prevent auto-updates from being attempted. + * + * @param array $caps Returns the user's actual capabilities. + * @param string $cap Capability name. + * + * @return array The user's filtered capabilities. + */ + public function prevent_auto_updates( $caps, $cap ) { + + // Check for being enabled and look for specific cap requirements. + if ( $this->enabled() && in_array( $cap, array( 'update_plugins', 'update_themes', 'update_core' ) ) ) { + $caps[] = 'do_not_allow'; + } + + // Send back the data array. + return $caps; + } + + /** + * Check the new status after airplane mode has been enabled or + * disabled and purge related transients. + * + * @param boolean $force Whether to force the purge. + * + * @return void + */ + public function purge_transients( $force = false ) { + + // First check for the filter to avoid this action overall. + if ( empty( $force ) && false === $clear = apply_filters( 'airplane_mode_purge_transients', true ) ) { + return; + } + + // Purge the transients related to updates when disabled or the force is called. + if ( ! $this->enabled() || ! empty( $force ) ) { + delete_site_transient( 'update_core' ); + delete_site_transient( 'update_plugins' ); + delete_site_transient( 'update_themes' ); + delete_site_transient( 'wporg_theme_feature_list' ); + } + } + + /** + * Remove all the various places WP does the update checks. As you can see there are a lot of them. + * + * @return null + */ + public function remove_update_crons() { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return; + } + + // Do a quick check to make sure we can remove things. + if ( ! function_exists( 'remove_action' ) ) { + return; + } + + // Disable Theme Updates. + remove_action( 'load-update-core.php', 'wp_update_themes' ); + remove_action( 'load-themes.php', 'wp_update_themes' ); + remove_action( 'load-update.php', 'wp_update_themes' ); + remove_action( 'wp_update_themes', 'wp_update_themes' ); + remove_action( 'admin_init', '_maybe_update_themes' ); + + // Disable Plugin Updates. + remove_action( 'load-update-core.php', 'wp_update_plugins' ); + remove_action( 'load-plugins.php', 'wp_update_plugins' ); + remove_action( 'load-update.php', 'wp_update_plugins' ); + remove_action( 'wp_update_plugins', 'wp_update_plugins' ); + remove_action( 'admin_init', '_maybe_update_plugins' ); + + // Disable Core updates + + // Don't look for WordPress updates. Seriously! + remove_action( 'wp_version_check', 'wp_version_check' ); + remove_action( 'admin_init', '_maybe_update_core' ); + + // Not even maybe. + remove_action( 'wp_maybe_auto_update', 'wp_maybe_auto_update' ); + remove_action( 'admin_init', 'wp_maybe_auto_update' ); + remove_action( 'admin_init', 'wp_auto_update_core' ); + + // Don't forget when the language packs do it. + remove_action( 'upgrader_process_complete', array( 'Language_Pack_Upgrader', 'async_upgrade' ), 20 ); + remove_action( 'upgrader_process_complete', 'wp_version_check' ); + remove_action( 'upgrader_process_complete', 'wp_update_plugins' ); + remove_action( 'upgrader_process_complete', 'wp_update_themes' ); + } + + /** + * Remove all the various schedule hooks for themes, plugins, etc. + * + * @return null + */ + public function remove_schedule_hook() { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return; + } + + // Clear all my hooks. + wp_clear_scheduled_hook( 'wp_update_themes' ); + wp_clear_scheduled_hook( 'wp_update_plugins' ); + wp_clear_scheduled_hook( 'wp_version_check' ); + wp_clear_scheduled_hook( 'wp_maybe_auto_update' ); + } + + /** + * Override the API call made for pulling themes from the .org repo. + * + * @param false|object|array $override Whether to override the WordPress.org Themes API. Default false. + * @param string $action Requested action. Likely values are 'theme_information', + * 'feature_list', or 'query_themes'. + * @param object $args Arguments used to query for installer pages from the Themes API. + * + * @return bool True if enabled, otherwise the existng value. + */ + public function bypass_theme_api_call( $override, $action, $args ) { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return $override; + } + + // Return false on feature list to avoid the API call. + return ! empty( $action ) && 'feature_list' === $action ? true : $override; + } + + /** + * Hijack the expected themes API result. + * + * @param array|object|WP_Error $res WordPress.org Themes API response. + * @param string $action Requested action. Likely values are 'theme_information', + * 'feature_list', or 'query_themes'. + * @param object $args Arguments used to query for installer pages from the WordPress.org Themes API. + * + * @return bool An empty array if enabled, otherwise the existng result. + */ + public function bypass_theme_api_result( $res, $action, $args ) { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return $res; + } + + // Return false on feature list to avoid the API call. + return ! empty( $action ) && in_array( $action, array( 'feature_list', 'query_themes' ) ) ? array() : $res; + } + + /** + * Always send back that the latest version of WordPress is the one we're running + * + * @return object the modified output with our information + */ + public function last_checked_core() { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return false; + } + + // Call the global WP version. + global $wp_version; + + // Return our object. + return (object) array( + 'last_checked' => time(), + 'updates' => array(), + 'version_checked' => $wp_version, + ); + } + + /** + * Always send back that the latest version of our theme is the one we're running + * + * @return object the modified output with our information + */ + public function last_checked_themes() { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return false; + } + + // Call the global WP version. + global $wp_version; + + // Set a blank data array. + $data = array(); + + // Build my theme data array. + foreach ( wp_get_themes() as $theme ) { + $data[ $theme->get_stylesheet() ] = $theme->get( 'Version' ); + } + + // Return our object. + return (object) array( + 'last_checked' => time(), + 'updates' => array(), + 'version_checked' => $wp_version, + 'checked' => $data, + ); + } + + /** + * Always send back that the latest version of our plugins are the one we're running + * + * @return object the modified output with our information + */ + public function last_checked_plugins() { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return false; + } + + // Call the global WP version. + global $wp_version; + + // Set a blank data array. + $data = array(); + + // Add our plugin file if we don't have it. + if ( ! function_exists( 'get_plugins' ) ) { + require_once ABSPATH . 'wp-admin/includes/plugin.php'; + } + + // Build my plugin data array. + foreach ( get_plugins() as $file => $pl ) { + $data[ $file ] = $pl['Version']; + } + + // Return our object. + return (object) array( + 'last_checked' => time(), + 'updates' => array(), + 'version_checked' => $wp_version, + 'checked' => $data, + ); + } + + /** + * Filter for languages list transient. Returns locally available translations + * to avoid request into wp.org translation API. + * + * @param mixed $translations Translation data returned from transient API. + * + * @return array List of available languages. + */ + public function available_translations( $translations ) { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return $translations; + } + + /** + * If transient still contains list of languages just use those. + * Otherwise fallback to mimicked data which we create here. + */ + if ( $translations && ! empty( $translations ) ) { + return $translations; + } else { + $installed_languages = get_available_languages(); + return $this->get_offline_languages( $installed_languages ); + } + } + + /** + * Returns list of languages installed locally with full mimicked meta data. + * + * @param array $installed_languages List of locally available languages. + * + * @return array List of available languages in offline mode. + */ + private function get_offline_languages( $installed_languages ) { + + // This is list of languages which are available from translations API. + $offline_languages = $this->get_offline_translation_information(); + + // Call the global WP version. + global $wp_version; + + // Tell WordPress that all translations are recent even though they can be old. + $date = date_i18n( 'Y-m-d H:is' , time() ); + + // Set an empty array of the available languages. + $available_languages = array(); + + // Loop through our installed languages. + foreach ( $installed_languages as $lang ) { + + // Try to mimick the data that WordPress puts into 'available_translations' transient. + $settings = array( + 'language' => $lang, + 'iso' => array( $lang ), + 'version' => $wp_version, + 'updated' => $date, + 'strings' => array( + 'continue' => __( 'Continue' ), + ), + 'package' => "https://downloads.wordpress.org/translation/core/{$wp_version}/{$lang}.zip", + ); + + // Combine the mimicked data with data we have stored in $offline_languages to give realistic output. + if ( isset( $offline_languages[ $lang ] ) ) { + $available_languages[ $lang ] = array_merge( $settings, $offline_languages[ $lang ] ); + } + } + + // And return our language sets. + return $available_languages; + } + + /** + * We can't use wp_get_available_translations() offine. + * This function tries to return something similiar. + * + * @return array List of wordpress language meta data. + */ + private function get_offline_translation_information() { + + // Build out the list of languages to use. + $languages = array( + 'af' => array( 'english_name' => 'Afrikaans', 'native_name' => 'Afrikaans' ), + 'ar' => array( 'english_name' => 'Arabic', 'native_name' => 'العربية' ), + 'ary' => array( 'english_name' => 'Moroccan Arabic', 'native_name' => 'العربية المغربية' ), + 'as' => array( 'english_name' => 'Assamese', 'native_name' => 'অসমীয়া' ), + 'az' => array( 'english_name' => 'Azerbaijani', 'native_name' => 'Azərbaycan dili' ), + 'azb' => array( 'english_name' => 'South Azerbaijani', 'native_name' => 'گؤنئی آذربایجان' ), + 'bel' => array( 'english_name' => 'Belarusian', 'native_name' => 'Беларуская мова' ), + 'bg_BG' => array( 'english_name' => 'Bulgarian', 'native_name' => 'Български' ), + 'bn_BD' => array( 'english_name' => 'Bengali', 'native_name' => 'বাংলা' ), + 'bo' => array( 'english_name' => 'Tibetan', 'native_name' => 'བོད་ཡིག' ), + 'bs_BA' => array( 'english_name' => 'Bosnian', 'native_name' => 'Bosanski' ), + 'ca' => array( 'english_name' => 'Catalan', 'native_name' => 'Català' ), + 'ceb' => array( 'english_name' => 'Cebuano', 'native_name' => 'Cebuano' ), + 'ckb' => array( 'english_name' => 'Kurdish (Sorani)', 'native_name' => 'كوردی‎' ), + 'cs_CZ' => array( 'english_name' => 'Czech', 'native_name' => 'Čeština‎' ), + 'cy' => array( 'english_name' => 'Welsh', 'native_name' => 'Cymraeg' ), + 'da_DK' => array( 'english_name' => 'Danish', 'native_name' => 'Dansk' ), + 'de_DE_formal' => array( 'english_name' => 'German (Formal)', 'native_name' => 'Deutsch (Sie)' ), + 'de_DE' => array( 'english_name' => 'German', 'native_name' => 'Deutsch' ), + 'de_CH_informal' => array( 'english_name' => 'German (Switzerland, Informal)', 'native_name' => 'Deutsch (Schweiz, Du)' ), + 'de_CH' => array( 'english_name' => 'German (Switzerland)', 'native_name' => 'Deutsch (Schweiz)' ), + 'dzo' => array( 'english_name' => 'Dzongkha', 'native_name' => 'རྫོང་ཁ' ), + 'el' => array( 'english_name' => 'Greek', 'native_name' => 'Ελληνικά' ), + 'en_CA' => array( 'english_name' => 'English (Canada)', 'native_name' => 'English (Canada)' ), + 'en_ZA' => array( 'english_name' => 'English (South Africa)', 'native_name' => 'English (South Africa)' ), + 'en_AU' => array( 'english_name' => 'English (Australia)', 'native_name' => 'English (Australia)' ), + 'en_NZ' => array( 'english_name' => 'English (New Zealand)', 'native_name' => 'English (New Zealand)' ), + 'en_GB' => array( 'english_name' => 'English (UK)', 'native_name' => 'English (UK)' ), + 'eo' => array( 'english_name' => 'Esperanto', 'native_name' => 'Esperanto' ), + 'es_CL' => array( 'english_name' => 'Spanish (Chile)', 'native_name' => 'Español de Chile' ), + 'es_AR' => array( 'english_name' => 'Spanish (Argentina)', 'native_name' => 'Español de Argentina' ), + 'es_PE' => array( 'english_name' => 'Spanish (Peru)', 'native_name' => 'Español de Perú' ), + 'es_MX' => array( 'english_name' => 'Spanish (Mexico)', 'native_name' => 'Español de México' ), + 'es_CO' => array( 'english_name' => 'Spanish (Colombia)', 'native_name' => 'Español de Colombia' ), + 'es_ES' => array( 'english_name' => 'Spanish (Spain)', 'native_name' => 'Español' ), + 'es_VE' => array( 'english_name' => 'Spanish (Venezuela)', 'native_name' => 'Español de Venezuela' ), + 'es_GT' => array( 'english_name' => 'Spanish (Guatemala)', 'native_name' => 'Español de Guatemala' ), + 'et' => array( 'english_name' => 'Estonian', 'native_name' => 'Eesti' ), + 'eu' => array( 'english_name' => 'Basque', 'native_name' => 'Euskara' ), + 'fa_IR' => array( 'english_name' => 'Persian', 'native_name' => 'فارسی' ), + 'fi' => array( 'english_name' => 'Finnish', 'native_name' => 'Suomi' ), + 'fr_BE' => array( 'english_name' => 'French (Belgium)', 'native_name' => 'Français de Belgique' ), + 'fr_FR' => array( 'english_name' => 'French (France)', 'native_name' => 'Français' ), + 'fr_CA' => array( 'english_name' => 'French (Canada)', 'native_name' => 'Français du Canada' ), + 'gd' => array( 'english_name' => 'Scottish Gaelic', 'native_name' => 'Gàidhlig' ), + 'gl_ES' => array( 'english_name' => 'Galician', 'native_name' => 'Galego' ), + 'gu' => array( 'english_name' => 'Gujarati', 'native_name' => 'ગુજરાતી' ), + 'haz' => array( 'english_name' => 'Hazaragi', 'native_name' => 'هزاره گی' ), + 'he_IL' => array( 'english_name' => 'Hebrew', 'native_name' => 'עִבְרִית' ), + 'hi_IN' => array( 'english_name' => 'Hindi', 'native_name' => 'हिन्दी' ), + 'hr' => array( 'english_name' => 'Croatian', 'native_name' => 'Hrvatski' ), + 'hu_HU' => array( 'english_name' => 'Hungarian', 'native_name' => 'Magyar' ), + 'hy' => array( 'english_name' => 'Armenian', 'native_name' => 'Հայերեն' ), + 'id_ID' => array( 'english_name' => 'Indonesian', 'native_name' => 'Bahasa Indonesia' ), + 'is_IS' => array( 'english_name' => 'Icelandic', 'native_name' => 'Íslenska' ), + 'it_IT' => array( 'english_name' => 'Italian', 'native_name' => 'Italiano' ), + 'ja' => array( 'english_name' => 'Japanese', 'native_name' => '日本語' ), + 'ka_GE' => array( 'english_name' => 'Georgian', 'native_name' => 'ქართული' ), + 'kab' => array( 'english_name' => 'Kabyle', 'native_name' => 'Taqbaylit' ), + 'km' => array( 'english_name' => 'Khmer', 'native_name' => 'ភាសាខ្មែរ' ), + 'ko_KR' => array( 'english_name' => 'Korean', 'native_name' => '한국어' ), + 'lo' => array( 'english_name' => 'Lao', 'native_name' => 'ພາສາລາວ' ), + 'lt_LT' => array( 'english_name' => 'Lithuanian', 'native_name' => 'Lietuvių kalba' ), + 'lv' => array( 'english_name' => 'Latvian', 'native_name' => 'Latviešu valoda' ), + 'mk_MK' => array( 'english_name' => 'Macedonian', 'native_name' => 'Македонски јазик' ), + 'ml_IN' => array( 'english_name' => 'Malayalam', 'native_name' => 'മലയാളം' ), + 'mn' => array( 'english_name' => 'Mongolian', 'native_name' => 'Монгол' ), + 'mr' => array( 'english_name' => 'Marathi', 'native_name' => 'मराठी' ), + 'ms_MY' => array( 'english_name' => 'Malay', 'native_name' => 'Bahasa Melayu' ), + 'my_MM' => array( 'english_name' => 'Myanmar (Burmese)', 'native_name' => 'ဗမာစာ' ), + 'nb_NO' => array( 'english_name' => 'Norwegian (Bokmål)', 'native_name' => 'Norsk bokmål' ), + 'ne_NP' => array( 'english_name' => 'Nepali', 'native_name' => 'नेपाली' ), + 'nl_BE' => array( 'english_name' => 'Dutch (Belgium)', 'native_name' => 'Nederlands (België)' ), + 'nl_NL' => array( 'english_name' => 'Dutch', 'native_name' => 'Nederlands' ), + 'nl_NL_formal' => array( 'english_name' => 'Dutch (Formal)', 'native_name' => 'Nederlands (Formeel)' ), + 'nn_NO' => array( 'english_name' => 'Norwegian (Nynorsk)', 'native_name' => 'Norsk nynorsk' ), + 'oci' => array( 'english_name' => 'Occitan', 'native_name' => 'Occitan' ), + 'pa_IN' => array( 'english_name' => 'Punjabi', 'native_name' => 'ਪੰਜਾਬੀ' ), + 'pl_PL' => array( 'english_name' => 'Polish', 'native_name' => 'Polski' ), + 'ps' => array( 'english_name' => 'Pashto', 'native_name' => 'پښتو' ), + 'pt_BR' => array( 'english_name' => 'Portuguese (Brazil)', 'native_name' => 'Português do Brasil' ), + 'pt_PT' => array( 'english_name' => 'Portuguese (Portugal)', 'native_name' => 'Português' ), + 'rhg' => array( 'english_name' => 'Rohingya', 'native_name' => 'Ruáinga' ), + 'ro_RO' => array( 'english_name' => 'Romanian', 'native_name' => 'Română' ), + 'ru_RU' => array( 'english_name' => 'Russian', 'native_name' => 'Русский' ), + 'sah' => array( 'english_name' => 'Sakha', 'native_name' => 'Сахалыы' ), + 'si_LK' => array( 'english_name' => 'Sinhala', 'native_name' => 'සිංහල' ), + 'sk_SK' => array( 'english_name' => 'Slovak', 'native_name' => 'Slovenčina' ), + 'sl_SI' => array( 'english_name' => 'Slovenian', 'native_name' => 'Slovenščina' ), + 'sq' => array( 'english_name' => 'Albanian', 'native_name' => 'Shqip' ), + 'sr_RS' => array( 'english_name' => 'Serbian', 'native_name' => 'Српски језик' ), + 'sv_SE' => array( 'english_name' => 'Swedish', 'native_name' => 'Svenska' ), + 'szl' => array( 'english_name' => 'Silesian', 'native_name' => 'Ślōnskŏ gŏdka' ), + 'ta_IN' => array( 'english_name' => 'Tamil', 'native_name' => 'தமிழ்' ), + 'tah' => array( 'english_name' => 'Tahitian', 'native_name' => 'Reo Tahiti' ), + 'te' => array( 'english_name' => 'Telugu', 'native_name' => 'తెలుగు' ), + 'th' => array( 'english_name' => 'Thai', 'native_name' => 'ไทย' ), + 'tl' => array( 'english_name' => 'Tagalog', 'native_name' => 'Tagalog' ), + 'tr_TR' => array( 'english_name' => 'Turkish', 'native_name' => 'Türkçe' ), + 'tt_RU' => array( 'english_name' => 'Tatar', 'native_name' => 'Татар теле' ), + 'ug_CN' => array( 'english_name' => 'Uighur', 'native_name' => 'Uyƣurqə' ), + 'uk' => array( 'english_name' => 'Ukrainian', 'native_name' => 'Українська' ), + 'ur' => array( 'english_name' => 'Urdu', 'native_name' => 'اردو' ), + 'uz_UZ' => array( 'english_name' => 'Uzbek', 'native_name' => 'O‘zbekcha' ), + 'vi' => array( 'english_name' => 'Vietnamese', 'native_name' => 'Tiếng Việt' ), + 'zh_CN' => array( 'english_name' => 'Chinese (China)', 'native_name' => '简体中文' ), + 'zh_HK' => array( 'english_name' => 'Chinese (Hong Kong)', 'native_name' => '香港中文版' ), + 'zh_TW' => array( 'english_name' => 'Chinese (Taiwan)', 'native_name' => '繁體中文' ), + ); + + // Allow adding or removing languages. + return apply_filters( 'airplane_mode_offline_languages', $languages ); + } + + /** + * Return an empty array of items requiring update for both themes and plugins + * + * @param array $items All the items being passed for update. + * + * @return array An empty array, or the original items if not enabled. + */ + public function remove_update_array( $items ) { + return ! $this->enabled() ? $items : array(); + } + + /** + * Remove the ability to update plugins/themes from single + * site and multisite bulk actions + * + * @param array $actions All the bulk actions. + * + * @return array $actions The remaining actions + */ + public function remove_bulk_actions( $actions ) { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return $actions; + } + + // Set an array of items to be removed with optional filter. + if ( false === $remove = apply_filters( 'airplane_mode_bulk_items', array( 'update-selected', 'update', 'upgrade' ) ) ) { + return $actions; + } + + // Loop the item array and unset each. + foreach ( $remove as $key ) { + unset( $actions[ $key ] ); + } + + // Return the remaining. + return $actions; + } + + /** + * Remove the tabs on the plugin page to add new items + * since they require the WP connection and will fail. + * + * @param array $nonmenu_tabs All the tabs displayed. + * @return array $nonmenu_tabs The remaining tabs. + */ + public function plugin_add_tabs( $nonmenu_tabs ) { + + // Bail if disabled. + if ( ! $this->enabled() ) { + return $nonmenu_tabs; + } + + // Set an array of tabs to be removed with optional filter. + if ( false === $remove = apply_filters( 'airplane_mode_bulk_items', array( 'featured', 'popular', 'recommended', 'favorites', 'beta' ) ) ) { + return $nonmenu_tabs; + } + + // Loop the item array and unset each. + foreach ( $remove as $key ) { + unset( $nonmenu_tabs[ $key ] ); + } + + // Return the tabs. + return $nonmenu_tabs; + } + + /** + * Increase HTTP request counter by one. + * + * @return void + */ + public function count_http_requests() { + $this->http_count++; + } + + // End class. + } + +} // End class_exists. + +if ( ! class_exists( 'Airplane_Mode_WP_Error' ) ) { + + /** + * Extend the WP_Error class to include our own. + */ + class Airplane_Mode_WP_Error extends WP_Error { + + /** + * Get our error data and return it. + * + * @return string + */ + public function __tostring() { + $data = $this->get_error_data(); + return $data['return']; + } + + // End class. + } + +} + +// Instantiate our class. +$Airplane_Mode_Core = Airplane_Mode_Core::getInstance(); diff --git a/site/web/app/plugins/airplane-mode/inc/wp-cli.php b/site/web/app/plugins/airplane-mode/inc/wp-cli.php new file mode 100644 index 0000000..a1962b4 --- /dev/null +++ b/site/web/app/plugins/airplane-mode/inc/wp-cli.php @@ -0,0 +1,66 @@ +enable(); + WP_CLI::success( __( 'Airplane mode was enabled', 'airplane-mode' ) ); + } + + /** + * Disables airplane mode. + * + * ## EXAMPLES + * + * wp airplane-mode disable + * + * @when after_wp_load + * @subcommand off + * @alias disable + */ + function disable() { + Airplane_Mode_Core::getInstance()->disable(); + WP_CLI::success( __( 'Airplane mode was disabled', 'airplane-mode' ) ); + } + + /** + * Provides the status of airplane mode. + * + * ## EXAMPLES + * + * wp airplane-mode status + * + * @when after_wp_load + */ + function status() { + $on = 'on' === get_site_option( 'airplane-mode' ); + WP_CLI::success( $on ? __( 'Airplane mode is enabled', 'airplane-mode' ) : __( 'Airplane mode is disabled', 'airplane-mode' ) ); + } + + /** + * Purge the transients set from airplane mode. + * + * ## EXAMPLES + * + * wp airplane-mode clean + * + * @when after_wp_load + */ + function clean() { + Airplane_Mode_Core::getInstance()->purge_transients( true ); + WP_CLI::success( __( 'Transients have been cleared', 'airplane-mode' ) ); + } +} + +WP_CLI::add_command( 'airplane-mode', 'Airplane_Mode_Command' ); diff --git a/site/web/app/plugins/airplane-mode/languages/default.mo b/site/web/app/plugins/airplane-mode/languages/default.mo new file mode 100644 index 0000000..e9b7271 Binary files /dev/null and b/site/web/app/plugins/airplane-mode/languages/default.mo differ diff --git a/site/web/app/plugins/airplane-mode/languages/default.po b/site/web/app/plugins/airplane-mode/languages/default.po new file mode 100644 index 0000000..a8f37ed --- /dev/null +++ b/site/web/app/plugins/airplane-mode/languages/default.po @@ -0,0 +1,47 @@ +msgid "" +msgstr "" +"Project-Id-Version: Airplane Mode\n" +"POT-Creation-Date: 2015-12-07 17:24-0500\n" +"PO-Revision-Date: 2015-12-07 17:25-0500\n" +"Last-Translator: Andrew Norcross \n" +"Language-Team: \n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.6\n" +"X-Poedit-Basepath: ..\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: _;__;_e;_n\n" +"X-Poedit-SearchPath-0: .\n" + +#: airplane-mode.php:365 +#, php-format +msgid "Airplane Mode is enabled. oEmbed blocked for %1$s." +msgstr "Airplane Mode is enabled. oEmbed blocked for %1$s." + +#: airplane-mode.php:475 +msgid "Airplane Mode is enabled" +msgstr "Airplane Mode is enabled" + +#: airplane-mode.php:583 +msgid "Airplane Mode is enabled." +msgstr "Airplane Mode is enabled." + +#: airplane-mode.php:583 +msgid "Airplane Mode is disabled." +msgstr "Airplane Mode is disabled." + +#: airplane-mode.php:592 +msgid "Active" +msgstr "Active" + +#: airplane-mode.php:592 +msgid "Inactive" +msgstr "Inactive" + +#: airplane-mode.php:609 +#, php-format +msgid "There was %s HTTP request." +msgstr "There was %s HTTP request." diff --git a/site/web/app/plugins/airplane-mode/lib/css/airplane-mode.css b/site/web/app/plugins/airplane-mode/lib/css/airplane-mode.css new file mode 100644 index 0000000..34d53ff --- /dev/null +++ b/site/web/app/plugins/airplane-mode/lib/css/airplane-mode.css @@ -0,0 +1,59 @@ +@font-face { + font-family: "airplanemodeicons"; + src:url("../fonts/airplanemodeicons.eot"); + src:url("../fonts/airplanemodeicons.eot?#iefix") format("embedded-opentype"), + url("../fonts/airplanemodeicons.woff") format("woff"), + url("../fonts/airplanemodeicons.ttf") format("truetype"), + url("../fonts/airplanemodeicons.svg#airplanemodeicons") format("svg"); + font-weight: normal; + font-style: normal; +} + +#wp-admin-bar-airplane-mode-toggle .ab-icon { + top: 1px; +} + +#wp-admin-bar-airplane-mode-toggle .ab-icon:before { + content: "\e000"; + font: normal 18px/1 airplanemodeicons; +} + +.airplane-mode-disabled #wp-admin-bar-airplane-mode-toggle .ab-icon:before { + content: "\e001"; +} + +#wpadminbar > #wp-toolbar > #wp-admin-bar-root-default > #wp-admin-bar-airplane-mode-toggle .ab-icon, +#wpadminbar #wp-admin-bar-airplane-mode-toggle .ab-icon, +#wpadminbar #wp-admin-bar-airplane-mode-toggle .ab-item::before { + margin-right: 0; +} + +.airplane-mode-no-qm #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default > #wp-admin-bar-airplane-mode-toggle .ab-icon, +.airplane-mode-no-qm #wpadminbar #wp-admin-bar-airplane-mode-toggle .ab-icon, +.airplane-mode-no-qm #wpadminbar #wp-admin-bar-airplane-mode-toggle .ab-item::before { + margin-right: 6px; +} + + /* Set the opacity to mimic comment moderation queue. */ +.airplane-mode-disabled #wp-admin-bar-airplane-mode-toggle .ab-label { + /* Theoretically for IE 8 & 9 (more valid) */ + /* ...but not required as filter works too */ + /* should come BEFORE filter */ + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + + /* This works in IE 8 & 9 too */ + /* ... but also 5, 6, 7 */ + filter: alpha(opacity=50); /* IE 5-7 */ + + /* Modern Browsers */ + opacity: 0.5; +} + +.airplane-mode-enabled.plugin-install-php.branch-4-6 h1 a.upload-view-toggle, +.airplane-mode-enabled.plugin-install-php h1 a.upload, +.airplane-mode-enabled.plugin-install-php .wp-filter, +.airplane-mode-enabled.theme-install-php .wp-filter, +.airplane-mode-enabled .theme-browser.content-filterable.rendered, +.airplane-mode-enabled.theme-install-php a.browse-themes { + display: none !important; +} diff --git a/site/web/app/plugins/airplane-mode/lib/css/airplane-mode.min.css b/site/web/app/plugins/airplane-mode/lib/css/airplane-mode.min.css new file mode 100644 index 0000000..9cbe92d --- /dev/null +++ b/site/web/app/plugins/airplane-mode/lib/css/airplane-mode.min.css @@ -0,0 +1 @@ +@font-face{font-family:airplanemodeicons;src:url(../fonts/airplanemodeicons.eot);src:url(../fonts/airplanemodeicons.eot?#iefix) format("embedded-opentype"),url(../fonts/airplanemodeicons.woff) format("woff"),url(../fonts/airplanemodeicons.ttf) format("truetype"),url(../fonts/airplanemodeicons.svg#airplanemodeicons) format("svg");font-weight:400;font-style:normal}#wp-admin-bar-airplane-mode-toggle .ab-icon{top:1px}#wp-admin-bar-airplane-mode-toggle .ab-icon:before{content:"\e000";font:400 18px/1 airplanemodeicons}.airplane-mode-disabled #wp-admin-bar-airplane-mode-toggle .ab-icon:before{content:"\e001"}#wpadminbar #wp-admin-bar-airplane-mode-toggle .ab-icon,#wpadminbar #wp-admin-bar-airplane-mode-toggle .ab-item::before,#wpadminbar>#wp-toolbar>#wp-admin-bar-root-default>#wp-admin-bar-airplane-mode-toggle .ab-icon{margin-right:0}.airplane-mode-no-qm #wpadminbar #wp-admin-bar-airplane-mode-toggle .ab-icon,.airplane-mode-no-qm #wpadminbar #wp-admin-bar-airplane-mode-toggle .ab-item::before,.airplane-mode-no-qm #wpadminbar>#wp-toolbar>#wp-admin-bar-root-default>#wp-admin-bar-airplane-mode-toggle .ab-icon{margin-right:6px}.airplane-mode-disabled #wp-admin-bar-airplane-mode-toggle .ab-label{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";filter:alpha(opacity=50);opacity:.5}.airplane-mode-enabled .theme-browser.content-filterable.rendered,.airplane-mode-enabled.plugin-install-php .wp-filter,.airplane-mode-enabled.plugin-install-php h1 a.upload,.airplane-mode-enabled.plugin-install-php.branch-4-6 h1 a.upload-view-toggle,.airplane-mode-enabled.theme-install-php .wp-filter,.airplane-mode-enabled.theme-install-php a.browse-themes{display:none!important} \ No newline at end of file diff --git a/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.eot b/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.eot new file mode 100644 index 0000000..a412182 Binary files /dev/null and b/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.eot differ diff --git a/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.svg b/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.svg new file mode 100644 index 0000000..93cbad2 --- /dev/null +++ b/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.svg @@ -0,0 +1,12 @@ + + + +Generated by Fontastic.me + + + + + + + + diff --git a/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.ttf b/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.ttf new file mode 100644 index 0000000..f519817 Binary files /dev/null and b/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.ttf differ diff --git a/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.woff b/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.woff new file mode 100644 index 0000000..268417e Binary files /dev/null and b/site/web/app/plugins/airplane-mode/lib/fonts/airplanemodeicons.woff differ diff --git a/site/web/app/plugins/airplane-mode/readme.txt b/site/web/app/plugins/airplane-mode/readme.txt new file mode 100644 index 0000000..d9e1875 --- /dev/null +++ b/site/web/app/plugins/airplane-mode/readme.txt @@ -0,0 +1,151 @@ +=== Airplane Mode === +Contributors: norcross, johnbillion, afragen, szepeviktor, chriscct7, markjaquith +Website Link: https://github.com/norcross/airplane-mode +Donate link: https://andrewnorcross.com/donate +Tags: external calls, HTTP +Requires at least: 4.4 +Tested up to: 5.3 +Stable tag: 0.2.5 +License: MIT +License URI: http://norcross.mit-license.org/ + +Control loading of external files when developing locally + +== Description == + +Control loading of external files when developing locally. WP loads certain external files (fonts, gravatar, etc) and makes external HTTP calls. This isn't usually an issue, unless you're working in an evironment without a web connection. This plugin removes / unhooks those actions to reduce load time and avoid errors due to missing files. + +Features + +* removes external JS and CSS files from loading +* replaces all instances of Gravatar with a local image to remove external call +* removes all HTTP requests +* disables all WP update checks for core, themes, and plugins +* includes toggle in admin bar for quick enable / disable + +== Installation == + +This section describes how to install the plugin and get it working. + +1. Upload `airplane-mode` to the `/wp-content/plugins/` directory. +1. Activate the plugin through the 'Plugins' menu in WordPress. +1. Toggle users as needed + +If you need offline activation, see [this script](https://gist.github.com/solepixel/e1d03f4dcd1b9e86552b3cc6937325bf) written by [Brian DiChiara](https://github.com/solepixel) + +== Frequently Asked Questions == + += Why do I need this? = + +Because you are a jet set developer who needs to work without internet. + + +== Screenshots == + + +== Changelog == + += 0.2.5 - 2019/11/15 +* Remove usage of method that's been deprecated in WordPress trunk. props @johnbillion + += 0.2.4 - 2017/12/13 +* Added localhost bypass for loading CSS and JS files when hot reloading. props @shadyvb +* Added additional hook removals for new automated updates and language packs. +* Removed outdated `create_function` call for PHP 7.2 compatibility. props @geminorum +* General cleanup + += 0.2.3 - 2017/03/05 +* Adding option to force transient purge +* Adding `clean` action to WP-CLI functions + += 0.2.2 - 2016/12/07 +* Adding WP-CLI support. props @markjaquith + += 0.2.1 - 2016/10/19 +* Fix settings page language drowdown when used offline. props @onnimonni + += 0.2.0 - 2016/08/26 +* modify CSS loading for front-end, removed loading for login page. props @barryceelen +* fixed WP.org theme API call request to avoid `WP_Error` return. props @onnimonni + += 0.1.9 - 2016/07/25 +* Prevent BuddyPress from falling back to Gravatar. props @johnbillion + += 0.1.8 - 2016/07/12 +* allow `JETPACK_DEV_DEBUG` constant to take priority over filter. props @kopepasah +* added additional CSS for upcoming 4.6. change to upload tab. + += 0.1.7 - 2016/05/18 +* allow local HTTP calls with optional filter. props @johnbillion +* add back index.php link to main dashboard menu item +* bumped minimum WP version requirement to 4.4 + += 0.1.6 - 2016/04/25 +* minor tweak to include CSS for new icon font + += 0.1.5 - 2016/04/24 +* adding custom icon font for display and removing label. props @barryceelen + += 0.1.4 - 2016/02/26 +* better setup for blocked external assets. props @johnbillion + += 0.1.3 - 2016/02/22 +* modified CSS rules to fix media bulk actions bar from disappearing +* moved `airplane_mode_status_change` action to run before redirect, and now includes the status being run. + += 0.1.2 - 2016/01/09 +* added back HTTP count when inactive +* removed HTTP count completely when Query Monitor is active + += 0.1.1 - 2016/01/06 +* fixed incorrect nonce check that was breaking toggle +* changed CSS and JS checks to include all themes and plugins as well as core + += 0.1.0 - 2015/12/30 +* added `airplane_mode_purge_transients` filter to bypass transient purge + += 0.0.9 - 2015/12/07 +* changed from colored circle to actual airplane icon for usability +* fixed dashboard link icon for multisite +* changed to exclude all external stylesheets, not just Open Sans +* added language files for translateable goodness +* general cleanup for WP coding standards + += 0.0.8 - 2015/05/18 +* added `class_exists` as now included in DesktopServer and collisions could result +* fixed `if ( ! defined ...` for `AIRMDE_BASE` constant + += 0.0.7 - 2015/04/21 = +* fixed some CSS from hiding plugins page bar +* moved changelog to it's own file +* added `composer.json` +* added contributors to readme +* clarified license (MIT) + += 0.0.6 - 2015/04/02 = +* version bump for GitHub updater + += 0.0.5 - 2015/04/02 = +* fixed bug in update logic that was preventing checks when disabled (but activated). props @johnbillion + += 0.0.4 - 2015/04/02 = +* added multiple checks for all the various theme and plugin update calls. props @chriscct7 +* added HTTP counter on a per-page basis. props @szepeviktor + += 0.0.3 - 2015/01/23 = +* added `airplane_mode_status_change` hook for functions to fire on status change +* purge update related transients on disable +* added WordPress formatted readme file + += 0.0.2 - 2015/01/21 = +* added GitHub Updater support +* fixed update capabilities when status is disabled + += 0.0.1 - 2014/06/01 = +* lots of stuff. I wasn't keeping a changelog. I apologize. + + +== Upgrade Notice == + += 0.0.1 = +Initial release diff --git a/site/web/app/plugins/f-api/inc/events/namespace.php b/site/web/app/plugins/f-api/inc/events/namespace.php new file mode 100644 index 0000000..80258fa --- /dev/null +++ b/site/web/app/plugins/f-api/inc/events/namespace.php @@ -0,0 +1,121 @@ + WP_REST_Server::READABLE, + 'callback' => __NAMESPACE__ . '\get_events', + 'permission_callback' => '__return_true', + ] ); +} + +/** + * Refresh events data from thewp.world. + * + * This is refreshed hourly, so we always refresh before the cache expires. + */ +function refresh_events() : void { + $response = wp_remote_get( SOURCE_URL, [ + 'user-agent' => 'FAIR Server/1.0', + ] ); + if ( is_wp_error( $response ) ) { + trigger_error( + 'Failed to fetch events from thewp.world: ' . $response->get_error_message(), + E_USER_WARNING + ); + return; + } + + $body = wp_remote_retrieve_body( $response ); + if ( empty( $body ) ) { + trigger_error( + 'Failed to fetch events from thewp.world: Empty response body', + E_USER_WARNING + ); + return; + } + $events = json_decode( $body, true ); + if ( json_last_error() !== JSON_ERROR_NONE ) { + trigger_error( + 'Failed to decode events from thewp.world: ' . json_last_error_msg(), + E_USER_WARNING + ); + return; + } + + wp_cache_set( CACHE_KEY, $events, CACHE_GROUP, CACHE_LIFETIME ); +} + +/** + * Get the latest community events. + * + * @param WP_REST_Request $request The request object. + * @return WP_REST_Response|WP_Error Response object on success or error. + */ +function get_events( WP_REST_Request $request ) { + $data = wp_cache_get( CACHE_KEY, CACHE_GROUP ); + if ( ! $data ) { + return new WP_Error( + 'fairserver.events.not_found', + 'Unable to fetch events.', + [ 'status' => WP_Http::INTERNAL_SERVER_ERROR ] + ); + } + + $response = rest_ensure_response( $data ); + $response->header( + 'Cache-Control', + sprintf( + 'max-age=%d, stale-while-revalidate=%d', + HTTP_CACHE_MAXAGE, + HTTP_CACHE_SWR + ) + ); + return $response; +} diff --git a/site/web/app/plugins/f-api/inc/namespace.php b/site/web/app/plugins/f-api/inc/namespace.php new file mode 100644 index 0000000..dfc4dc9 --- /dev/null +++ b/site/web/app/plugins/f-api/inc/namespace.php @@ -0,0 +1,58 @@ + 5 * MINUTE_IN_SECONDS, + 'display' => __( 'FAIR Server - GD Cron', 'fairserver' ), + ]; + + return $schedules; +} + +/** + * Run the cron job on all sites. + * + * GD only runs wp-cron on the main site, so we need to force-spawn it on all + * sites. + */ +function run_cron() : void { + $sites = get_sites( [ + 'number' => MAX_SITES, + 'fields' => 'ids', + ] ); + + foreach ( $sites as $site_id ) { + switch_to_blog( $site_id ); + run_site_cron(); + restore_current_blog(); + } +} + +/** + * Spawn cron for the current site. + * + * @internal Copy of spawn_cron() to allow recursive spawning. + */ +function run_site_cron() : bool { + $gmt_time = microtime( true ); + + /* + * Get the cron lock, which is a Unix timestamp of when the last cron was spawned + * and has not finished running. + * + * Multiple processes on multiple web servers can run this code concurrently, + * this lock attempts to make spawning as atomic as possible. + */ + $lock = (float) get_transient( 'doing_cron' ); + + if ( $lock > $gmt_time + 10 * MINUTE_IN_SECONDS ) { + $lock = 0; + } + + // Don't run if another process is currently running it or more than once every 60 sec. + if ( $lock + WP_CRON_LOCK_TIMEOUT > $gmt_time ) { + return false; + } + + // Confidence check. + $crons = wp_get_ready_cron_jobs(); + if ( empty( $crons ) ) { + return false; + } + + $keys = array_keys( $crons ); + if ( isset( $keys[0] ) && $keys[0] > $gmt_time ) { + return false; + } + + // Set the cron lock with the current unix timestamp, when the cron is being spawned. + $doing_wp_cron = sprintf( '%.22F', $gmt_time ); + set_transient( 'doing_cron', $doing_wp_cron ); + + $cron_request = apply_filters( + 'cron_request', + array( + 'url' => add_query_arg( 'doing_wp_cron', $doing_wp_cron, site_url( 'wp-cron.php' ) ), + 'key' => $doing_wp_cron, + 'args' => array( + 'timeout' => 0.01, + 'blocking' => false, + /** This filter is documented in wp-includes/class-wp-http-streams.php */ + 'sslverify' => apply_filters( 'https_local_ssl_verify', false ), + ), + ), + $doing_wp_cron + ); + + $result = wp_remote_post( $cron_request['url'], $cron_request['args'] ); + return ! is_wp_error( $result ); +} diff --git a/site/web/app/plugins/f-gd-cron/plugin.php b/site/web/app/plugins/f-gd-cron/plugin.php new file mode 100644 index 0000000..0e849b6 --- /dev/null +++ b/site/web/app/plugins/f-gd-cron/plugin.php @@ -0,0 +1,12 @@ + + * : The path to the projects.json file (use glotpress-dump to generate) + * + * @subcommand import + */ + public function import( $args ) { + if ( $args[0] !== '-' ) { + $path = realpath( $args[0] ); + $data = file_get_contents( $path ); + } else { + $data = file_get_contents( 'php://stdin' ); + } + + $items = json_decode( $data ); + + foreach ( $items as $item ) { + // Does this project already exist? + $existing = GP::$project->get( $item->id ); + if ( $existing ) { + // Update the existing project. + $project = $this->sync_project( $item ); + } else { + // Manually create, to ensure the ID matches. + $project = $this->import_project( $item ); + } + } + // var_dump( $projects ); + } + + protected function import_project( object $data ) : GP_Project { + global $wpdb; + + $args = [ + 'name' => $data->name, + 'slug' => $data->slug, + 'description' => $data->description, + 'parent_project_id' => $data->parent_project_id ?? 0, + 'source_url_template' => $data->source_url_template, + 'active' => $data->active, + ]; + $args = GP::$project->prepare_fields_for_save( $args ); + $args = GP::$project->prepare_fields_for_create( $args ); + + // Manually set the ID, to ensure it matches. + // This would otherwise be stripped in prepare_fields_for_save + $args['id'] = $data->id; + + $field_formats = GP::$project->get_db_field_formats( $args ); + + // Let it rip. + $res = $wpdb->insert( GP::$project->table, $args, $field_formats ); + if ( false === $res ) { + throw new Exception( + sprintf( + 'Failed to create project: %s', + $wpdb->last_error + ) + ); + } + + $inserted = new GP_Project( $args ); + $inserted->id = $wpdb->insert_id; + $inserted->after_create(); + + return $inserted; + } + + protected function sync_project( object $data ) : GP_Project { + $project = GP::$project->get( $data->id ); + if ( ! $project ) { + throw new Exception( 'Project not found' ); + } + + $needs_update = false; + $fields = GP::$project->field_names; + foreach ( $fields as $field ) { + if ( in_array( $field, GP::$project->non_updatable_attributes, true ) ) { + continue; + } + + if ( $project->$field !== $data->$field ) { + $needs_update = true; + $project->$field = $data->$field; + } + } + + // Needs update. + if ( $needs_update ) { + WP_CLI::line( sprintf( 'Updating project %d (%s)', $project->id, $project->slug ) ); + // $project->update(); + } + + return $project; + } +} diff --git a/site/web/app/plugins/f-translate/inc/class-translationsetcommand.php b/site/web/app/plugins/f-translate/inc/class-translationsetcommand.php new file mode 100644 index 0000000..f7f3c1b --- /dev/null +++ b/site/web/app/plugins/f-translate/inc/class-translationsetcommand.php @@ -0,0 +1,63 @@ + + * : Project slug. + * + * + * : Locale slug. + * + * [--set=] + * : Translation set slug; default is "default" + * + * [--verbose] + * : Output additional information during execution. + * + * @subcommand ensure + */ + public function ensure_translation_set( $args, $assoc_args ) { + $project = $args[0]; + $locale = $args[1]; + $set = $assoc_args['set'] ?? 'default'; + + $project = GP::$project->by_path( $project ); + if ( ! $project ) { + WP_CLI::error( 'Project not found!', 'glotpress' ); + return; + } + + $gp_locale = GP_Locales::by_slug( $locale ); + if ( ! $gp_locale ) { + WP_CLI::error( 'Locale not found!', 'glotpress' ); + return; + } + + $translation_set = GP::$translation_set->by_project_id_slug_and_locale( $project->id, $set, $gp_locale->slug ); + if ( $translation_set ) { + // Silently exit, unless verbose. + if ( $assoc_args['verbose'] ?? false ) { + WP_CLI::success( 'Already exists.' ); + } + + return; + } + + // Create the translation set. + GP::$translation_set->create( [ + 'name' => $gp_locale->english_name, + 'slug' => $set, + 'project_id' => $project->id, + 'locale' => $gp_locale->slug, + ] ); + WP_CLI::success( 'Translation set created.' ); + } +} diff --git a/site/web/app/plugins/f-translate/inc/namespace.php b/site/web/app/plugins/f-translate/inc/namespace.php new file mode 100644 index 0000000..77737db --- /dev/null +++ b/site/web/app/plugins/f-translate/inc/namespace.php @@ -0,0 +1,24 @@ + $project_id, + 'translation_set' => $translation_set, + 'translation' => $translation, + 'warning' => $warning, + 'user' => $user, + 'timestamp' => gmdate( 'Y-m-d H:i:s' ), + 'status' => 'needs-review' + ); + $format = array( '%d', '%d', '%d', '%s', '%d', '%s', '%s' ); + $wpdb->insert( + $this->table_name, + $warning, + $format + ); + } + + public static function get_schema() : string { + global $gp_table_prefix; + return <<<"END" + CREATE TABLE `{$gp_table_prefix}dotorg_warnings` ( + `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `project_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `translation_set` bigint(20) unsigned NOT NULL DEFAULT '0', + `translation` bigint(20) unsigned NOT NULL DEFAULT '0', + `warning` varchar(20) NOT NULL DEFAULT '', + `user` bigint(20) unsigned NOT NULL DEFAULT '0', + `timestamp` datetime NOT NULL default '0000-00-00 00:00:00', + `status` varchar(20) NOT NULL DEFAULT '', + PRIMARY KEY (`ID`) + ) ENGINE=InnoDB DEFAULT CHARSET=latin1; + END; + } +} diff --git a/site/web/app/plugins/f-translate/inc/stats/class-projectstats.php b/site/web/app/plugins/f-translate/inc/stats/class-projectstats.php new file mode 100644 index 0000000..a87cf32 --- /dev/null +++ b/site/web/app/plugins/f-translate/inc/stats/class-projectstats.php @@ -0,0 +1,235 @@ +project_translation_status = $gp_table_prefix . 'project_translation_status'; + } + + function translation_edited( $translation ) { + /** @var \GP_Translation_Set */ + $set = GP::$translation_set->get( $translation->translation_set_id ); + $this->projects_to_update[ $set->project_id ][ $set->locale . '/' . $set->slug ] = true; + } + + function originals_imported( $project_id, $originals_added, $originals_existing, $originals_obsoleted, $originals_fuzzied ) { + if ( $originals_added || $originals_existing || $originals_obsoleted || $originals_fuzzied ) { + $this->projects_to_update[ $project_id ] = true; + } + } + + // Count up all the strings + function get_project_translation_counts( $project_id, $locale, $locale_slug, &$counts = array() ) { + if ( ! $counts ) { + $counts = array( 'all' => 0, 'current' => 0, 'waiting' => 0, 'fuzzy' => 0, 'warnings' => 0, 'untranslated' => 0 ); + } + + // Not all projects have translation sets + /** @var \GP_Translation_Set */ + $set = GP::$translation_set->by_project_id_slug_and_locale( $project_id, $locale_slug, $locale ); + if ( $set ) { + // Force a refresh of the translation set counts + wp_cache_delete( $set->id, 'translation_set_status_breakdown' ); + + $counts['all'] += $set->all_count(); + $counts['current'] += $set->current_count(); + $counts['waiting'] += $set->waiting_count(); + $counts['fuzzy'] += $set->fuzzy_count(); + $counts['warnings'] += $set->warnings_count(); + $counts['untranslated'] += $set->untranslated_count(); + } + + // Fetch the strings from the sub projects too + /** @var \GP_Project */ + foreach ( GP::$project->get( $project_id )->sub_projects() as $project ) { + if ( ! $project->active ) { + continue; + } + $this->get_project_translation_counts( $project->id, $locale, $locale_slug, $counts ); + } + + return $counts; + } + + /** + * Cron task to cache the string counts for the wp-themes and wp-plugins parent categories. + * + * These don't have any translation sets, but we need to be able to query the waiting strings for them. + */ + public function cache_wp_themes_wp_plugins_strings() { + global $wpdb; + + $cached_projects = [ + GP::$project->by_path( 'wp-plugins' ), + GP::$project->by_path( 'wp-themes' ), + ]; + + // Store the counts for these parent projects as the sum of their children. + $sql = "INSERT INTO {$wpdb->project_translation_status} ( `project_id`, `locale`, `locale_slug`, `all`, `current`, `waiting`, `fuzzy`, `warnings`, `untranslated`, `date_added`, `date_modified`) + SELECT + p.parent_project_id as project_id, + locale, locale_slug, + SUM( stats.all ) as `all`, SUM( stats.current ) as `current`, SUM( stats.waiting ) as `waiting`, + SUM( stats.fuzzy ) as `fuzzy`, SUM( stats.warnings ) as `warnings`, SUM( stats.untranslated ) as `untranslated`, + NOW() as `date_added`, NOW() as `date_modified` + FROM {$wpdb->project_translation_status} stats + LEFT JOIN {$wpdb->gp_projects} p ON stats.project_id = p.id + WHERE + p.parent_project_id = %d + AND p.active = 1 + GROUP BY locale, locale_slug + ON DUPLICATE KEY UPDATE + `all` = VALUES(`all`), `current` = VALUES(`current`), + `waiting` = VALUES(`waiting`), `fuzzy` = VALUES(`fuzzy`), + `warnings` = VALUES(`warnings`), `untranslated` = VALUES(`untranslated`), + `date_modified` = VALUES(`date_modified`); + "; + + foreach ( $cached_projects as $project ) { + $wpdb->query( $wpdb->prepare( $sql, $project->id ) ); + } + + } + + function shutdown() { + global $wpdb; + $values = array(); + + // If a project is `true` then we need to fetch all translation sets for it. + foreach ( $this->projects_to_update as $project_id => $set_data ) { + if ( true === $set_data ) { + $this->projects_to_update[ $project_id ] = array(); + /** @var \GP_Translation_Set */ + foreach ( GP::$translation_set->by_project_id( $project_id ) as $set ) { + $this->projects_to_update[ $project_id ][ $set->locale . '/' . $set->slug ] = true; + } + } + + } + + // Update all parent projects as well. + // This does NOT update a root parent (ie. ! $parent_project_id) as we use those as grouping categories. + $projects = $this->projects_to_update; + foreach ( $projects as $project_id => $data ) { + // Do all parents + /** @var \GP_Project */ + $project = GP::$project->get( $project_id ); + while ( $project ) { + /** @var \GP_Project */ + $project = GP::$project->get( $project->parent_project_id ); + if ( $project->parent_project_id ) { + $projects[ $project->id ] = $data; + } else { + break; + } + } + } + $this->projects_to_update += $projects; + unset( $projects ); + + $now = current_time( 'mysql', 1 ); + + foreach ( $this->projects_to_update as $project_id => $locale_sets ) { + $locale_sets = array_keys( $locale_sets ); + $locale_sets = array_map( function( $set ) { return explode( '/', $set ); }, $locale_sets ); + + foreach ( $locale_sets as $locale_set ) { + list( $locale, $locale_slug ) = $locale_set; + $counts = $this->get_project_translation_counts( $project_id, $locale, $locale_slug ); + + $values[] = $wpdb->prepare( '(%d, %s, %s, %d, %d, %d, %d, %d, %d, %s, %s)', + $project_id, + $locale, + $locale_slug, + $counts['all'], + $counts['current'], + $counts['waiting'], + $counts['fuzzy'], + $counts['warnings'], + $counts['untranslated'], + $now, + $now + ); + } + + // If we're processing a large batch, add them as we go to avoid query lengths & memory limits + if ( count( $values ) > 50 ) { + $wpdb->query( "INSERT INTO {$wpdb->project_translation_status} (`project_id`, `locale`, `locale_slug`, `all`, `current`, `waiting`, `fuzzy`, `warnings`, `untranslated`, `date_added`, `date_modified` ) VALUES " . implode( ', ', $values ) . " ON DUPLICATE KEY UPDATE `all`=VALUES(`all`), `current`=VALUES(`current`), `waiting`=VAlUES(`waiting`), `fuzzy`=VALUES(`fuzzy`), `warnings`=VALUES(`warnings`), `untranslated`=VALUES(`untranslated`), `date_modified`=VALUES(`date_modified`)" ); + $values = array(); + } + } + $this->projects_to_update = array(); + + if ( $values ) { + $wpdb->query( "INSERT INTO {$wpdb->project_translation_status} (`project_id`, `locale`, `locale_slug`, `all`, `current`, `waiting`, `fuzzy`, `warnings`, `untranslated`, `date_added`, `date_modified` ) VALUES " . implode( ', ', $values ) . " ON DUPLICATE KEY UPDATE `all`=VALUES(`all`), `current`=VALUES(`current`), `waiting`=VALUES(`waiting`), `fuzzy`=VALUES(`fuzzy`), `warnings`=VALUES(`warnings`), `untranslated`=VALUES(`untranslated`), `date_modified`=VALUES(`date_modified`)" ); + } + } + + public static function get_schema() : string { + global $gp_table_prefix; + return <<<"END" + CREATE TABLE `{$gp_table_prefix}project_translation_status` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `project_id` int(10) unsigned NOT NULL, + `locale` varchar(10) NOT NULL, + `locale_slug` varchar(255) NOT NULL, + `all` int(10) unsigned NOT NULL DEFAULT '0', + `current` int(10) unsigned NOT NULL DEFAULT '0', + `waiting` int(10) unsigned NOT NULL DEFAULT '0', + `fuzzy` int(10) unsigned NOT NULL DEFAULT '0', + `warnings` int(10) unsigned NOT NULL DEFAULT '0', + `untranslated` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `project_locale` (`project_id`,`locale`,`locale_slug`), + KEY `all` (`all`), + KEY `current` (`current`), + KEY `waiting` (`waiting`), + KEY `fuzzy` (`fuzzy`), + KEY `warnings` (`warnings`), + KEY `untranslated` (`untranslated`) + ) ENGINE=InnoDB DEFAULT CHARSET=latin1; + END; + } +} diff --git a/site/web/app/plugins/f-translate/inc/stats/class-userstats.php b/site/web/app/plugins/f-translate/inc/stats/class-userstats.php new file mode 100644 index 0000000..1ac76d6 --- /dev/null +++ b/site/web/app/plugins/f-translate/inc/stats/class-userstats.php @@ -0,0 +1,241 @@ +user_translations_count = $gp_table_prefix . 'user_translations_count'; + $wpdb->user_projects = $gp_table_prefix . 'user_projects'; + } + + public function translation_updated( $translation ) { + if ( ! $translation->user_id ) { + return; + } + + /** @var \GP_Translation_Set */ + $translation_set = GP::$translation_set->get( $translation->translation_set_id ); + + if ( 'waiting' === $translation->status ) { + // New translation suggested + $this->bump_user_stat( $translation->user_id, $translation_set->locale, $translation_set->slug, 1, 0 ); + + } elseif ( 'current' === $translation->status && 'gp_translation_created' === current_filter() ) { + // New translation suggested & approved + $this->bump_user_stat( $translation->user_id, $translation_set->locale, $translation_set->slug, 1, 1 ); + + } elseif ( 'current' === $translation->status ) { + // Translation approved + $this->bump_user_stat( $translation->user_id, $translation_set->locale, $translation_set->slug, 0, 1 ); + + } + + // Record the last time the user submitted a translation for a project/locale. + if ( 'gp_translation_created' == current_filter() ) { + $project = GP::$project->get( $translation_set->project_id ); + + // Find the "root" project ID. + // For projects with sub-projects, we only want to store the "parent" project. + // ie. wp-plugins/plugin-name, wp/dev, or apps/android + $project_path_we_want = implode( '/', array_slice( explode( '/', $project->path ), 0, 2 ) ); + if ( $project_path_we_want != $project->path ) { + $project = GP::$project->by_path( $project_path_we_want ); + } + + $key = "{$translation->user_id},{$project->id},{$translation_set->locale},{$translation_set->slug}"; + if ( ! isset( $this->user_project_stats[ $key ] ) ) { + $this->user_project_stats[ $key ] = 0; + } + $this->user_project_stats[ $key ]++; + } + } + + private function bump_user_stat( $user_id, $locale, $locale_slug, $suggested = 0, $accepted = 0 ) { + $key = "$user_id,$locale,$locale_slug"; + + if ( isset( $this->user_stats[ $key ] ) ) { + $this->user_stats[ $key ]->suggested += $suggested; + $this->user_stats[ $key ]->accepted += $accepted; + } else { + $this->user_stats[ $key ] = (object) array( + 'suggested' => $suggested, + 'accepted' => $accepted, + ); + } + } + + public function write_stats_to_database() { + global $wpdb; + + $now = current_time( 'mysql', 1 ); + + $values = []; + foreach ( $this->user_stats as $key => $stats ) { + list( $user_id, $locale, $locale_slug ) = explode( ',', $key ); + + $values[] = $wpdb->prepare( '(%d, %s, %s, %d, %d, %s, %s)', + $user_id, + $locale, + $locale_slug, + $stats->suggested, + $stats->accepted, + $now, + $now + ); + + // If we're processing a large batch, add them as we go to avoid query lengths & memory limits. + if ( count( $values ) > 50 ) { + $wpdb->query( + "INSERT INTO {$wpdb->user_translations_count} (`user_id`, `locale`, `locale_slug`, `suggested`, `accepted`, `date_added`, `date_modified`) + VALUES " . implode( ', ', $values ) . " + ON DUPLICATE KEY UPDATE `suggested`=`suggested` + VALUES(`suggested`), `accepted`=`accepted` + VALUES(`accepted`), `date_modified`=VALUES(`date_modified`)" + ); + $values = []; + } + } + + if ( $values ) { + $wpdb->query( + "INSERT INTO {$wpdb->user_translations_count} (`user_id`, `locale`, `locale_slug`, `suggested`, `accepted`, `date_added`, `date_modified`) + VALUES " . implode( ', ', $values ) . " + ON DUPLICATE KEY UPDATE `suggested`=`suggested` + VALUES(`suggested`), `accepted`=`accepted` + VALUES(`accepted`), `date_modified`=VALUES(`date_modified`)" + ); + $values = []; + } + + // Process the user project stats too. + $values = []; + foreach ( $this->user_project_stats as $key => $string_count ) { + list( $user_id, $project_id, $locale, $locale_slug ) = explode( ',', $key ); + + // Step 1 - Does this user already have the project listed? Just Bump the date. + if ( $id = $wpdb->get_var( $wpdb->prepare( + "SELECT id FROM {$wpdb->user_projects} + WHERE user_id = %d AND project_id = %d AND locale = %s AND locale_slug = %s", + $user_id, $project_id, $locale, $locale_slug + ) ) ) { + $wpdb->update( + $wpdb->user_projects, + [ 'last_modified' => $now ], + [ 'id' => $id ] + ); + continue; + } + + // Step 2 - More than 5 strings? Import Maybe? Just insert. + if ( $string_count >= 5 ) { + $wpdb->insert( + $wpdb->user_projects, + [ + 'user_id' => $user_id, + 'project_id' => $project_id, + 'locale' => $locale, + 'locale_slug' => $locale_slug, + 'last_modified' => $now + ] + ); + continue; + } + + // Step 3 - If not, find all the sub-project IDs, then all the translation sets, count strings by user. + $this_project = GP::$project->get( $project_id ); + $translation_set_ids = []; + + if ( ! $this_project->active ) { + continue; + } + + if ( $set = GP::$translation_set->by_project_id_slug_and_locale( $project_id, $locale_slug, $locale ) ) { + $translation_set_ids[] = (int) $set->id; + } + + // Fetch the strings from the sub projects too + foreach ( $this_project->sub_projects() as $project ) { + if ( ! $project->active ) { + continue; + } + if ( $set = GP::$translation_set->by_project_id_slug_and_locale( $project->id, $locale_slug, $locale ) ) { + $translation_set_ids[] = (int) $set->id; + } + } + + $user_translations = GP::$translation->find_many_no_map( [ + 'user_id' => $user_id, + 'translation_set_id' => $translation_set_ids + ] ); + + if ( $user_translations && count( $user_translations ) >= 5 ) { + $wpdb->insert( + $wpdb->user_projects, + [ + 'user_id' => $user_id, + 'project_id' => $project_id, + 'locale' => $locale, + 'locale_slug' => $locale_slug, + 'last_modified' => $now + ] + ); + continue; + } + } + } + + public static function get_schema() : string { + global $gp_table_prefix; + // Note: WordPress uses BIGINT(20) for user_id; GlotPress uses int(10) + return <<<"END" + CREATE TABLE `{$gp_table_prefix}user_translations_count` ( + `id` int(10) NOT NULL AUTO_INCREMENT, + `user_id` int(10) unsigned NOT NULL, + `locale` varchar(255) NOT NULL DEFAULT '', + `locale_slug` varchar(255) NOT NULL DEFAULT '', + `suggested` int(10) unsigned NOT NULL DEFAULT '0', + `accepted` int(10) unsigned NOT NULL DEFAULT '0', + `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`,`locale`,`locale_slug`), + KEY `locale` (`locale`,`locale_slug`) + ) ENGINE=InnoDB DEFAULT CHARSET=latin1; + + CREATE TABLE `{$gp_table_prefix}user_projects` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `user_id` int(10) unsigned NOT NULL, + `project_id` int(11) unsigned NOT NULL, + `locale` varchar(255) NOT NULL, + `locale_slug` varchar(255) NOT NULL DEFAULT 'default', + `last_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`), + UNIQUE KEY `user_project_locale` (`user_id`,`project_id`,`locale`,`locale_slug`) + ) ENGINE=InnoDB DEFAULT CHARSET=latin1; + END; + } +} diff --git a/site/web/app/plugins/f-translate/inc/stats/class-warningstats.php b/site/web/app/plugins/f-translate/inc/stats/class-warningstats.php new file mode 100644 index 0000000..ddbd8fa --- /dev/null +++ b/site/web/app/plugins/f-translate/inc/stats/class-warningstats.php @@ -0,0 +1,114 @@ +dotorg_translation_warnings = $gp_table_prefix . 'dotorg_translation_warnings'; + } + + public function translation_updated( $translation ) { + if ( ! $translation->warnings ) { + return; + } + + // We only want to trigger for strings which are live, or are for consideration. + if ( ! in_array( $translation->status, array( 'current', 'waiting' ) ) ) { + return; + } + + /** @var \GP_Original */ + $original = GP::$original->get( $translation->original_id ); + /** @var \GP_Project */ + $project = GP::$project->get( $original->project_id ); + /** @var \GP_Translation_Set */ + $translation_set = GP::$translation_set->get( $translation->translation_set_id ); + + foreach( $translation->warnings as $index => $warnings ) { + foreach ( $warnings as $warning_key => $warning ) { + $key = "{$translation->user_id},{$translation_set->locale},{$translation_set->slug},{$project->path},{$translation->id},{$warning_key}"; + + $this->warning_stats[ $key ] = $warning; + } + } + } + + + public function write_stats_to_database() { + global $wpdb; + + $now = current_time( 'mysql', 1 ); + + $values = array(); + foreach ( $this->warning_stats as $key => $message ) { + list( $user_id, $locale, $locale_slug, $project_path, $translation_id, $warning ) = explode( ',', $key ); + + $values[] = $wpdb->prepare( '(%d, %s, %s, %s, %d, %s, %s, %s)', + $user_id, + $locale, + $locale_slug, + $project_path, + $translation_id, + $warning, + $now, + $message + ); + + // If we're processing a large batch, add them as we go to avoid query lengths & memory limits. + if ( count( $values ) > 50 ) { + $wpdb->query( + "INSERT INTO {$wpdb->dotorg_translation_warnings} (`user_id`, `locale`, `locale_slug`, `project_path`, `translation_id`, `warning`, `timestamp`, `message`) + VALUES " . implode( ', ', $values ) + ); + $values = array(); + } + } + + if ( $values ) { + $wpdb->query( + "INSERT INTO {$wpdb->dotorg_translation_warnings} (`user_id`, `locale`, `locale_slug`, `project_path`, `translation_id`, `warning`, `timestamp`, `message`) + VALUES " . implode( ', ', $values ) + ); + } + } + + public static function get_schema() : string { + global $gp_table_prefix; + return <<<"END" + CREATE TABLE `{$gp_table_prefix}dotorg_translation_warnings` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `locale` varchar(255) NOT NULL DEFAULT '', + `locale_slug` varchar(255) NOT NULL DEFAULT '', + `project_path` varchar(255) NOT NULL DEFAULT '', + `translation_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `warning` varchar(20) NOT NULL DEFAULT '', + `timestamp` datetime NOT NULL default '0000-00-00 00:00:00', + `message` longtext, + PRIMARY KEY (`id`) + ) ENGINE=InnoDB DEFAULT CHARSET=latin1; + END; + } +} diff --git a/site/web/app/plugins/f-translate/inc/stats/namespace.php b/site/web/app/plugins/f-translate/inc/stats/namespace.php new file mode 100644 index 0000000..5fcf448 --- /dev/null +++ b/site/web/app/plugins/f-translate/inc/stats/namespace.php @@ -0,0 +1,54 @@ + new UserStats(), + 'project' => new ProjectStats(), + 'warnings' => new WarningStats(), + 'discarded_warning' => new DiscardedWarningStats(), + ]; +} + +/** + * Initialize the stats system, including database tables. + */ +function init_command( $args, $assoc_args ) { + $schemas = [ + 'user' => UserStats::get_schema(), + 'project' => ProjectStats::get_schema(), + 'warnings' => WarningStats::get_schema(), + 'discarded_warning' => DiscardedWarningStats::get_schema(), + ]; + + if ( ! function_exists( 'dbDelta' ) ) { + require_once ABSPATH . 'wp-admin/includes/upgrade.php'; + } + + foreach ( $schemas as $name => $schema ) { + $res = dbDelta( $schema ); + foreach ( $res as $result ) { + WP_CLI::line( $result ); + } + } + + // Output a success message. + WP_CLI::success( 'Stats tables initialized.' ); +} diff --git a/site/web/app/plugins/f-translate/plugin.php b/site/web/app/plugins/f-translate/plugin.php new file mode 100644 index 0000000..241c3e9 --- /dev/null +++ b/site/web/app/plugins/f-translate/plugin.php @@ -0,0 +1,24 @@ + + +

Page not found

+ +

The page you were looking for could not be found. I’m sorry, it’s not your fault… probably. Return to the homepage

+ + + +

Analyze translation consistency across projects. The result is limited to 500 translations.

+ + +
+

+ + + + + + + + 'Select a locale', + ]; + $sets_to_hide = array( + 'ca/valencia', + 'nl/formal/default', + 'en/formal', + 'en/default', + 'fr/formal', + 'de/formal/default', + 'de-ch/info/default', + 'pt/ao90/default', + 'sr/latin', + 'sr/latin/latin', + ); + $sets = array_diff_key( $sets, array_flip( $sets_to_hide ) ); + $locale_options = array_merge( $locale_options, $sets ); + echo gp_select( + 'set', + $locale_options, + $set, + [ + 'class' => 'consistency-form-locale', + 'required' => 'required', + ] + ); + ?> + + + + + 'All Projects', + ]; + $project_options = $project_options + $projects; + echo gp_select( + 'project', + $project_options, + $project, + [ + 'class' => 'consistency-form-project', + ] + ); + ?> + +

+ +

+ +

+ +

+ +

+
+ +

No results were found.

'; + +} elseif ( $performed_search && $results ) { + $translations_unique_count = count( $translations_unique ); + $has_different_translations = $translations_unique_count > 1; + if ( ! $has_different_translations ) { + echo '

All originals have the same translations.

'; + } else { + echo '

There are ' . $translations_unique_count . ' different translations. View

'; + echo ''; + echo '
'; + } + + ?> + + + + + + + $translation ) { + $prev_arrow = ''; + $next_arrow = ''; + + $prev_translation = $translations[ $translation_index - 1 ] ?? false; + $next_translation = $translations[ $translation_index + 1 ] ?? false; + + if ( ! $prev_translation ) { + $next_arrow = ''; + } elseif ( ! $next_translation ) { + $prev_arrow = ''; + } else { + $prev_arrow = ''; + $next_arrow = ''; + } + + printf( + '', + esc_attr( 't-' . md5( $translation ) ), + esc_translation( $translation ), + $next_arrow, + $prev_arrow + ); + + foreach ( $results as $result ) { + if ( $result->translation != $translation ) { + continue; + } + + $project_name = $result->project_name; + $parent_project_id = $result->project_parent_id; + $is_active = $result->active; + while ( $parent_project_id ) { + $parent_project = GP::$project->get( $parent_project_id ); + $parent_project_id = $parent_project->parent_project_id; + $project_name = "{$parent_project->name} - {$project_name}"; + $is_active = $is_active && $parent_project->active; + } + + $original_context = ''; + if ( $result->original_context ) { + $original_context = sprintf( + ' %s', + esc_translation( $result->original_context ) + ); + } + + if( $is_active ) { + $active_text = ''; + } else { + $active_text = sprintf( + ' %s', + esc_translation( '(inactive)' ) + ); + } + + printf( + '', + isset( $parent_project->name ) ? sanitize_title( 'project-' . $parent_project->name ) : '', + sprintf( + '
%s%s
+
Project: %s%s
', + esc_translation( $result->original_singular ), + $original_context, + $result->project_path, + $set, + $project_name, + $active_text + ), + sprintf( + '
%s
+
+ Source | + Added: %s +
', + $locale_is_rtl ? ' rtl' : '', + esc_translation( $result->translation ), + $result->project_path, + $set, + $result->original_id, + $result->translation_id, + $result->translation_added + ) + ); + } + } + ?> + +
OriginalTranslation
%s %s %s
%s%s
+ + + + +svg{display:block;position:absolute;top:0;left:0}.ct-minor-second{display:block;position:relative;width:100%}.ct-minor-second:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:93.75%}.ct-minor-second:after{display:table}.ct-minor-second>svg{display:block;position:absolute;top:0;left:0}.ct-major-second{display:block;position:relative;width:100%}.ct-major-second:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:88.8888888889%}.ct-major-second:after{display:table}.ct-major-second>svg{display:block;position:absolute;top:0;left:0}.ct-minor-third{display:block;position:relative;width:100%}.ct-minor-third:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:83.3333333333%}.ct-minor-third:after{display:table}.ct-minor-third>svg{display:block;position:absolute;top:0;left:0}.ct-major-third{display:block;position:relative;width:100%}.ct-major-third:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:80%}.ct-major-third:after{display:table}.ct-major-third>svg{display:block;position:absolute;top:0;left:0}.ct-perfect-fourth{display:block;position:relative;width:100%}.ct-perfect-fourth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:75%}.ct-perfect-fourth:after{display:table}.ct-perfect-fourth>svg{display:block;position:absolute;top:0;left:0}.ct-perfect-fifth{display:block;position:relative;width:100%}.ct-perfect-fifth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:66.6666666667%}.ct-perfect-fifth:after{display:table}.ct-perfect-fifth>svg{display:block;position:absolute;top:0;left:0}.ct-minor-sixth{display:block;position:relative;width:100%}.ct-minor-sixth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:62.5%}.ct-minor-sixth:after{display:table}.ct-minor-sixth>svg{display:block;position:absolute;top:0;left:0}.ct-golden-section{display:block;position:relative;width:100%}.ct-golden-section:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:61.804697157%}.ct-golden-section:after{content:"";display:table;clear:both}.ct-golden-section>svg{display:block;position:absolute;top:0;left:0}.ct-major-sixth{display:block;position:relative;width:100%}.ct-major-sixth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:60%}.ct-major-sixth:after{display:table}.ct-major-sixth>svg{display:block;position:absolute;top:0;left:0}.ct-minor-seventh{display:block;position:relative;width:100%}.ct-minor-seventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:56.25%}.ct-minor-seventh:after{display:table}.ct-minor-seventh>svg{display:block;position:absolute;top:0;left:0}.ct-major-seventh{display:block;position:relative;width:100%}.ct-major-seventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:53.3333333333%}.ct-major-seventh:after{display:table}.ct-major-seventh>svg{display:block;position:absolute;top:0;left:0}.ct-octave{display:block;position:relative;width:100%}.ct-octave:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:50%}.ct-octave:after{display:table}.ct-octave>svg{display:block;position:absolute;top:0;left:0}.ct-major-tenth{display:block;position:relative;width:100%}.ct-major-tenth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:40%}.ct-major-tenth:after{display:table}.ct-major-tenth>svg{display:block;position:absolute;top:0;left:0}.ct-major-eleventh{display:block;position:relative;width:100%}.ct-major-eleventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:37.5%}.ct-major-eleventh:after{display:table}.ct-major-eleventh>svg{display:block;position:absolute;top:0;left:0}.ct-major-twelfth{display:block;position:relative;width:100%}.ct-major-twelfth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:33.3333333333%}.ct-major-twelfth:after{display:table}.ct-major-twelfth>svg{display:block;position:absolute;top:0;left:0}.ct-double-octave{display:block;position:relative;width:100%}.ct-double-octave:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:25%}.ct-double-octave:after{display:table}.ct-double-octave>svg{display:block;position:absolute;top:0;left:0} diff --git a/site/web/app/plugins/f-translate/templates/footer.php b/site/web/app/plugins/f-translate/templates/footer.php new file mode 100644 index 0000000..1ec10a9 --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/footer.php @@ -0,0 +1,5 @@ + + +' ); + +?> + + +
+ +
+
+

Fair Translations

+

+ Contribute to translation WordPress core, themes, and plugins by translating them into your language. +

+
+ +
+ + +
+ +
+ +
+ +
+ wp_create_nonce( 'wporg-editor-settings' ), + ) +); + +wp_register_style( + 'chartist', + plugins_url( 'css/chartist.min.css', __FILE__ ), + [], + '0.9.5' +); +wp_register_script( + 'chartist', + plugins_url( 'js/chartist.min.js', __FILE__ ), + [], + '0.9.5' +); + +if ( isset( $template ) && 'translations' === $template ) { + gp_enqueue_script( 'wporg-translate-editor' ); +} + +// Remove Emoji fallback support +remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); +remove_action( 'wp_print_styles', 'print_emoji_styles' ); + +// Remove output of hreflang tags. +add_action( 'wp_head', function () { + remove_action( 'wp_head', 'WordPressdotorg\Theme\hreflang_link_attributes' ); +}, 1 ); + +/** + * Set the document title to that of GlotPress. + * + * @see https://github.com/GlotPress/GlotPress-WP/issues/8 + */ +add_filter( 'document_title_parts', static function() { + return [ + 'title' => gp_title(), + ]; +}, 1 ); + +/** + * Prints markup for translations help modal in footer. + */ +add_action( 'gp_footer', static function() use ( $template, $args ) { + if ( 'translations' === $template && ! empty( $args['locale_slug'] ) ) { + $locale = GP_Locales::by_slug( $args['locale_slug'] ); + wporg_translation_help_modal( $locale ); + } +} ); + +/** + * Prints markup for the translation help dialog. + * + * @param \GP_Locale $locale Locale of the current translation set. + */ +function wporg_translation_help_modal( $locale ) { + $locale_resources = wporg_get_locale_resources( $locale ) + ?> +
+
+ +
+
+ description ) { + $item_output = str_replace( + $args->link_after . '', + $args->link_after . ': ' . $item->description . '', + $item_output + ); + } + + return $item_output; +} + +/** + * Retrieves the navigation menu from the assigned Rosetta site. + * + * Output is cached for an hour. + * + * @param \GP_Locale $locale + * @return string The HTML markup of the navigation menu. + */ +function wporg_get_locale_resources( $locale ) { + if ( empty( $locale->wp_locale ) ) { + return ''; + } + + $transient_key = 'locale-resources-' . $locale->wp_locale; + $cache = get_transient( $transient_key ); + + if ( false !== $cache ) { + return $cache; + } + + $result = get_sites( [ + 'locale' => $locale->wp_locale, + 'network_id' => WPORG_GLOBAL_NETWORK_ID, + 'path' => '/', + 'fields' => 'ids', + 'number' => '1', + ] ); + $site_id = array_shift( $result ); + if ( ! $site_id ) { + set_transient( $transient_key, '', HOUR_IN_SECONDS ); + return ''; + } + + switch_to_blog( $site_id ); + + add_filter( 'walker_nav_menu_start_el', 'wporg_add_nav_description', 10, 4 ); + + $menu = wp_nav_menu( [ + 'theme_location' => 'rosetta_translation_contributor_resources', + 'fallback_cb' => false, + 'container' => false, + 'menu_id' => 'locale-resources', + 'depth' => 2, + 'echo' => false, + ] ); + + remove_filter( 'walker_nav_menu_start_el', 'wporg_add_nav_description' ); + + restore_current_blog(); + + set_transient( $transient_key, $menu, HOUR_IN_SECONDS ); + + return $menu; +} + +/** + * Adds custom classes to the array of body classes. + * + * @param array $classes An array of body classes. + * @return array Filtered body classes. + */ +function wporg_gp_template_body_classes( $classes ) { + $classes[] = 'no-js'; + return $classes; +} +add_filter( 'body_class', 'wporg_gp_template_body_classes' ); + +add_action( 'gp_tmpl_load_locations', function( $locations, $template, $args, $template_path ) { + $core_templates = GP_PATH . 'gp-templates/'; + require_once $core_templates . 'helper-functions.php'; + $locations[] = $core_templates; + return $locations; +}, 50, 4 ); + +function wporg_gp_is_index() { + return GP::$current_route instanceof \WordPressdotorg\GlotPress\Routes\Routes\Index; +} + +/** + * Prints JavaScript helper for menu toggle. + */ +add_action( 'gp_footer', function() { + ?> + + +
+ warnings[ $index ] ) ) : + $warnings = $entry->warnings[ $index ]; + foreach ( $warnings as $key => $value ) : + ?> +
+ + + + + +
+ + +
+ warnings ) ) { + return $count; + } + + foreach ( $entry->warnings as $warnings ) { + $count += count( $warnings ); + } + + return $count; +} + +/** + * Lists file references for a translation. + * + * @param \GP_Project $project Current project. + * @param object $entry Current translation entry. + */ +function wporg_references( $project, $entry ) { + ?> +
    + references as $reference ) : + [ $file, $line ] = array_pad( explode( ':', $reference ), 2, 0 ); + if ( $source_url = $project->source_url( $file, $line ) ) : + ?> +
  • + +
  • + $file:$line"; + endif; + endforeach; + ?> +
+ path ) { + // wporg-mu-plugins is mu-plugins/ based, but NOT those in mu-plugins/pub + if ( str_starts_with( $file, 'mu-plugins/' ) && ! str_starts_with( $file, 'mu-plugins/pub/' ) ) { + $source_url = "https://github.com/WordPress/wporg-mu-plugins/blob/trunk/{$file}#L{$line}"; + + // wporg-gutenberg theme is pretty unique path.. + } elseif ( str_contains( $file, '/themes/wporg-gutenberg/' ) ) { + $source_url = "https://github.com/WordPress/wporg-gutenberg/blob/trunk/{$file}#L{$line}"; + } + + } elseif ( 'meta/rosetta' === $project->path ) { + + // For Rosetta plugins, they're stored in the WordPress.org svn path. + if ( str_starts_with( $file, 'plugins/' ) && str_contains( $source_url, 'meta.trac.wordpress.org' ) ) { + $source_url = str_replace( '/global.wordpress.org/', '/wordpress.org/', $source_url ); + + // Not all Rosetta mu-plugins are public, don't attempt to link to them. + } elseif( + str_starts_with( $file, 'mu-plugins/' ) && + ! ( + str_starts_with( $file, 'mu-plugins/downloads/' ) || + str_starts_with( $file, 'mu-plugins/roles/' ) || + str_starts_with( $file, 'mu-plugins/showcase/' ) + ) + ) { + $source_url = false; + } + } + + return $source_url; +} +add_filter( 'gp_reference_source_url', 'wporg_references_wordpress_org_github', 10, 4 ); + +/** + * Whether to show the context or not. + * + * Prevents displaying the context if it doesn't provide any new information + * to the translator. + * Especially for mobile projects the context is mostly a duplicate of the singular string. + * + * @param \Translation_Entry $translation Current translation entry. + * @return bool Whether to show the context or not. + */ +function wporg_gp_should_display_original_context( $translation ) { + // No context available. + if ( ! $translation->context ) { + return false; + } + + // Context is the same as the singular. + if ( $translation->singular === $translation->context ) { + return false; + } + + // Context was cut-off due to VARCHAR(255) in the database schema. + if ( 255 === mb_strlen( $translation->context ) && 0 === strpos( $translation->singular, $translation->context ) ) { + return false; + } + + return true; +} diff --git a/site/web/app/plugins/f-translate/templates/images/browsehappy.png b/site/web/app/plugins/f-translate/templates/images/browsehappy.png new file mode 100644 index 0000000..853b91e Binary files /dev/null and b/site/web/app/plugins/f-translate/templates/images/browsehappy.png differ diff --git a/site/web/app/plugins/f-translate/templates/images/glotpress.png b/site/web/app/plugins/f-translate/templates/images/glotpress.png new file mode 100644 index 0000000..6967017 Binary files /dev/null and b/site/web/app/plugins/f-translate/templates/images/glotpress.png differ diff --git a/site/web/app/plugins/f-translate/templates/images/openverse.png b/site/web/app/plugins/f-translate/templates/images/openverse.png new file mode 100644 index 0000000..f10717a Binary files /dev/null and b/site/web/app/plugins/f-translate/templates/images/openverse.png differ diff --git a/site/web/app/plugins/f-translate/templates/index-locales.php b/site/web/app/plugins/f-translate/templates/index-locales.php new file mode 100644 index 0000000..a38e578 --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/index-locales.php @@ -0,0 +1,80 @@ + + +
+ +
+ + +
+
+ +

If your locale isn’t below, follow the steps in the Translator Handbook to contribute a new locale.

+ +
+ slug ] ) ) { + $status = $translation_status[ $locale->slug ]; + $percent_complete = floor( $status->current_count / $status->all_count * 100 ); + } + + $wp_locale = ( isset( $locale->wp_locale ) ) ? $locale->wp_locale : $locale->slug; + ?> +
+
    +
  • slug ), $locale->english_name ) ?>
  • +
  • slug ), $locale->native_name ) ?>
  • +
  • slug ), $wp_locale ) ?>
  • +
+
+
%s', + isset( $contributors_count[ $locale->slug ] ) ? $contributors_count[ $locale->slug ] : 0 + ); + echo gp_link_get( 'https://make.wordpress.org/polyglots/teams/?locale=' . $locale->wp_locale, $contributors ); + ?> +
+
+
+
+
+ slug ), 'Contribute Translation', [ 'class' => 'button contribute-button' ] ); ?> +
+
+ +
+ + + +":">",'"':""","'":"'"},c.serialize=function(a){return null===a||void 0===a?a:("number"==typeof a?a=""+a:"object"==typeof a&&(a=JSON.stringify({data:a})),Object.keys(c.escapingMap).reduce(function(a,b){return c.replaceAll(a,b,c.escapingMap[b])},a))},c.deserialize=function(a){if("string"!=typeof a)return a;a=Object.keys(c.escapingMap).reduce(function(a,b){return c.replaceAll(a,c.escapingMap[b],b)},a);try{a=JSON.parse(a),a=void 0!==a.data?a.data:a}catch(b){}return a},c.createSvg=function(a,b,d,e){var f;return b=b||"100%",d=d||"100%",Array.prototype.slice.call(a.querySelectorAll("svg")).filter(function(a){return a.getAttributeNS("http://www.w3.org/2000/xmlns/",c.xmlNs.prefix)}).forEach(function(b){a.removeChild(b)}),f=new c.Svg("svg").attr({width:b,height:d}).addClass(e).attr({style:"width: "+b+"; height: "+d+";"}),a.appendChild(f._node),f},c.reverseData=function(a){a.labels.reverse(),a.series.reverse();for(var b=0;bf.high&&(f.high=c),h&&ck,m=e?c.rho(j.range):0;if(e&&c.projectLength(a,1,j)>=d)j.step=1;else if(e&&m=d)j.step=m;else for(;;){if(l&&c.projectLength(a,j.step,j)<=d)j.step*=2;else{if(l||!(c.projectLength(a,j.step/2,j)>=d))break;if(j.step/=2,e&&j.step%1!==0){j.step*=2;break}}if(i++>1e3)throw new Error("Exceeded maximum number of iterations while optimizing scale step!")}for(g=j.min,h=j.max;g+j.step<=j.low;)g+=j.step;for(;h-j.step>=j.high;)h-=j.step;for(j.min=g,j.max=h,j.range=j.max-j.min,j.values=[],f=j.min;f<=j.max;f+=j.step)j.values.push(c.roundWithPrecision(f));return j},c.polarToCartesian=function(a,b,c,d){var e=(d-90)*Math.PI/180;return{x:a+c*Math.cos(e),y:b+c*Math.sin(e)}},c.createChartRect=function(a,b,d){var e=!(!b.axisX&&!b.axisY),f=e?b.axisY.offset:0,g=e?b.axisX.offset:0,h=a.width()||c.quantity(b.width).value||0,i=a.height()||c.quantity(b.height).value||0,j=c.normalizePadding(b.chartPadding,d);h=Math.max(h,f+j.left+j.right),i=Math.max(i,g+j.top+j.bottom);var k={padding:j,width:function(){return this.x2-this.x1},height:function(){return this.y1-this.y2}};return e?("start"===b.axisX.position?(k.y2=j.top+g,k.y1=Math.max(i-j.bottom,k.y2+1)):(k.y2=j.top,k.y1=Math.max(i-j.bottom-g,k.y2+1)),"start"===b.axisY.position?(k.x1=j.left+f,k.x2=Math.max(h-j.right,k.x1+1)):(k.x1=j.left,k.x2=Math.max(h-j.right-f,k.x1+1))):(k.x1=j.left,k.x2=Math.max(h-j.right,k.x1+1),k.y2=j.top,k.y1=Math.max(i-j.bottom,k.y2+1)),k},c.createGrid=function(a,b,d,e,f,g,h,i){var j={};j[d.units.pos+"1"]=a,j[d.units.pos+"2"]=a,j[d.counterUnits.pos+"1"]=e,j[d.counterUnits.pos+"2"]=e+f;var k=g.elem("line",j,h.join(" "));i.emit("draw",c.extend({type:"grid",axis:d,index:b,group:g,element:k},j))},c.createLabel=function(a,b,d,e,f,g,h,i,j,k,l){var m,n={};if(n[f.units.pos]=a+h[f.units.pos],n[f.counterUnits.pos]=h[f.counterUnits.pos],n[f.units.len]=b,n[f.counterUnits.len]=g-10,k){var o=''+e[d]+"";m=i.foreignObject(o,c.extend({style:"overflow: visible;"},n))}else m=i.elem("text",n,j.join(" ")).text(e[d]);l.emit("draw",c.extend({type:"label",axis:f,index:d,group:i,element:m,text:e[d]},n))},c.getSeriesOption=function(a,b,c){if(a.name&&b.series&&b.series[a.name]){var d=b.series[a.name];return d.hasOwnProperty(c)?d[c]:b[c]}return b[c]},c.optionsProvider=function(b,d,e){function f(b){var f=h;if(h=c.extend({},j),d)for(i=0;i1){var i=[];return h.forEach(function(a){i.push(g(a.pathCoordinates,a.valueData))}),c.Svg.Path.join(i)}if(a=h[0].pathCoordinates,d=h[0].valueData,a.length<=4)return c.Interpolation.none()(a,d);for(var j,k=(new c.Svg.Path).move(a[0],a[1],!1,d[0]),l=0,m=a.length;m-2*!j>l;l+=2){var n=[{x:+a[l-2],y:+a[l-1]},{x:+a[l],y:+a[l+1]},{x:+a[l+2],y:+a[l+3]},{x:+a[l+4],y:+a[l+5]}];j?l?m-4===l?n[3]={x:+a[0],y:+a[1]}:m-2===l&&(n[2]={x:+a[0],y:+a[1]},n[3]={x:+a[2],y:+a[3]}):n[0]={x:+a[m-2],y:+a[m-1]}:m-4===l?n[3]=n[2]:l||(n[0]={x:+a[l],y:+a[l+1]}),k.curve(e*(-n[0].x+6*n[1].x+n[2].x)/6+f*n[2].x,e*(-n[0].y+6*n[1].y+n[2].y)/6+f*n[2].y,e*(n[1].x+6*n[2].x-n[3].x)/6+f*n[2].x,e*(n[1].y+6*n[2].y-n[3].y)/6+f*n[2].y,n[2].x,n[2].y,!1,d[(l+2)/2])}return k}},c.Interpolation.step=function(a){var b={postpone:!0,fillHoles:!1};return a=c.extend({},b,a),function(b,d){for(var e,f,g,h=new c.Svg.Path,i=0;i1}).map(function(a){var b=a.pathElements[0],c=a.pathElements[a.pathElements.length-1];return a.clone(!0).position(0).remove(1).move(b.x,r).line(b.x,b.y).position(a.pathElements.length+1).line(c.x,r)}).forEach(function(h){var k=i.elem("path",{d:h.stringify()},a.classNames.area,!0).attr({values:b.normalized[g]},c.xmlNs.uri);this.eventEmitter.emit("draw",{type:"area",values:b.normalized[g],path:h.clone(),series:f,seriesIndex:g,axisX:d,axisY:e,chartRect:j,index:g,group:i,element:k})}.bind(this))}}.bind(this)),this.eventEmitter.emit("created",{bounds:e.bounds,chartRect:j,axisX:d,axisY:e,svg:this.svg,options:a})}function e(a,b,d,e){c.Line["super"].constructor.call(this,a,b,f,c.extend({},f,d),e)}var f={axisX:{offset:30,position:"end",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:c.noop,type:void 0},axisY:{offset:40,position:"start",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:c.noop,type:void 0,scaleMinSpace:20,onlyInteger:!1},width:void 0,height:void 0,showLine:!0,showPoint:!0,showArea:!1,areaBase:0,lineSmooth:!0,low:void 0,high:void 0,chartPadding:{top:15,right:15,bottom:5,left:10},fullWidth:!1,reverseData:!1,classNames:{chart:"ct-chart-line",label:"ct-label",labelGroup:"ct-labels",series:"ct-series",line:"ct-line",point:"ct-point",area:"ct-area",grid:"ct-grid",gridGroup:"ct-grids",vertical:"ct-vertical",horizontal:"ct-horizontal",start:"ct-start",end:"ct-end"}};c.Line=c.Base.extend({constructor:e,createChart:d})}(window,document,a),function(a,b,c){"use strict";function d(a){var b,d={raw:this.data,normalized:a.distributeSeries?c.getDataArray(this.data,a.reverseData,a.horizontalBars?"x":"y").map(function(a){return[a]}):c.getDataArray(this.data,a.reverseData,a.horizontalBars?"x":"y")};this.svg=c.createSvg(this.container,a.width,a.height,a.classNames.chart+(a.horizontalBars?" "+a.classNames.horizontalBars:""));var e=this.svg.elem("g").addClass(a.classNames.gridGroup),g=this.svg.elem("g"),h=this.svg.elem("g").addClass(a.classNames.labelGroup);if(a.stackBars){var i=c.serialMap(d.normalized,function(){return Array.prototype.slice.call(arguments).map(function(a){return a}).reduce(function(a,b){return{x:a.x+b.x||0,y:a.y+b.y||0}},{x:0,y:0})});b=c.getHighLow([i],c.extend({},a,{referenceValue:0}),a.horizontalBars?"x":"y")}else b=c.getHighLow(d.normalized,c.extend({},a,{referenceValue:0}),a.horizontalBars?"x":"y");b.high=+a.high||(0===a.high?0:b.high),b.low=+a.low||(0===a.low?0:b.low);var j,k,l,m,n,o=c.createChartRect(this.svg,a,f.padding);k=a.distributeSeries&&a.stackBars?d.raw.labels.slice(0,1):d.raw.labels,a.horizontalBars?(j=m=void 0===a.axisX.type?new c.AutoScaleAxis(c.Axis.units.x,d,o,c.extend({},a.axisX,{highLow:b,referenceValue:0})):a.axisX.type.call(c,c.Axis.units.x,d,o,c.extend({},a.axisX,{highLow:b,referenceValue:0})),l=n=void 0===a.axisY.type?new c.StepAxis(c.Axis.units.y,d,o,{ticks:k}):a.axisY.type.call(c,c.Axis.units.y,d,o,a.axisY)):(l=m=void 0===a.axisX.type?new c.StepAxis(c.Axis.units.x,d,o,{ticks:k}):a.axisX.type.call(c,c.Axis.units.x,d,o,a.axisX),j=n=void 0===a.axisY.type?new c.AutoScaleAxis(c.Axis.units.y,d,o,c.extend({},a.axisY,{highLow:b,referenceValue:0})):a.axisY.type.call(c,c.Axis.units.y,d,o,c.extend({},a.axisY,{highLow:b,referenceValue:0})));var p=a.horizontalBars?o.x1+j.projectValue(0):o.y1-j.projectValue(0),q=[];l.createGridAndLabels(e,h,this.supportsForeignObject,a,this.eventEmitter),j.createGridAndLabels(e,h,this.supportsForeignObject,a,this.eventEmitter),d.raw.series.forEach(function(b,e){var f,h,i=e-(d.raw.series.length-1)/2;f=a.distributeSeries&&!a.stackBars?l.axisLength/d.normalized.length/2:a.distributeSeries&&a.stackBars?l.axisLength/2:l.axisLength/d.normalized[e].length/2,h=g.elem("g"),h.attr({"series-name":b.name,meta:c.serialize(b.meta)},c.xmlNs.uri),h.addClass([a.classNames.series,b.className||a.classNames.series+"-"+c.alphaNumerate(e)].join(" ")),d.normalized[e].forEach(function(g,k){var r,s,t,u;if(u=a.distributeSeries&&!a.stackBars?e:a.distributeSeries&&a.stackBars?0:k,r=a.horizontalBars?{x:o.x1+j.projectValue(g&&g.x?g.x:0,k,d.normalized[e]),y:o.y1-l.projectValue(g&&g.y?g.y:0,u,d.normalized[e])}:{x:o.x1+l.projectValue(g&&g.x?g.x:0,u,d.normalized[e]),y:o.y1-j.projectValue(g&&g.y?g.y:0,k,d.normalized[e])},l instanceof c.StepAxis&&(l.options.stretch||(r[l.units.pos]+=f*(a.horizontalBars?-1:1)),r[l.units.pos]+=a.stackBars||a.distributeSeries?0:i*a.seriesBarDistance*(a.horizontalBars?-1:1)),t=q[k]||p,q[k]=t-(p-r[l.counterUnits.pos]),void 0!==g){var v={};v[l.units.pos+"1"]=r[l.units.pos],v[l.units.pos+"2"]=r[l.units.pos],!a.stackBars||"accumulate"!==a.stackMode&&a.stackMode?(v[l.counterUnits.pos+"1"]=p,v[l.counterUnits.pos+"2"]=r[l.counterUnits.pos]):(v[l.counterUnits.pos+"1"]=t,v[l.counterUnits.pos+"2"]=q[k]),v.x1=Math.min(Math.max(v.x1,o.x1),o.x2), +v.x2=Math.min(Math.max(v.x2,o.x1),o.x2),v.y1=Math.min(Math.max(v.y1,o.y2),o.y1),v.y2=Math.min(Math.max(v.y2,o.y2),o.y1),s=h.elem("line",v,a.classNames.bar).attr({value:[g.x,g.y].filter(function(a){return a}).join(","),meta:c.getMetaData(b,k)},c.xmlNs.uri),this.eventEmitter.emit("draw",c.extend({type:"bar",value:g,index:k,meta:c.getMetaData(b,k),series:b,seriesIndex:e,axisX:m,axisY:n,chartRect:o,group:h,element:s},v))}}.bind(this))}.bind(this)),this.eventEmitter.emit("created",{bounds:j.bounds,chartRect:o,axisX:m,axisY:n,svg:this.svg,options:a})}function e(a,b,d,e){c.Bar["super"].constructor.call(this,a,b,f,c.extend({},f,d),e)}var f={axisX:{offset:30,position:"end",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:c.noop,scaleMinSpace:30,onlyInteger:!1},axisY:{offset:40,position:"start",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:c.noop,scaleMinSpace:20,onlyInteger:!1},width:void 0,height:void 0,high:void 0,low:void 0,onlyInteger:!1,chartPadding:{top:15,right:15,bottom:5,left:10},seriesBarDistance:15,stackBars:!1,stackMode:"accumulate",horizontalBars:!1,distributeSeries:!1,reverseData:!1,classNames:{chart:"ct-chart-bar",horizontalBars:"ct-horizontal-bars",label:"ct-label",labelGroup:"ct-labels",series:"ct-series",bar:"ct-bar",grid:"ct-grid",gridGroup:"ct-grids",vertical:"ct-vertical",horizontal:"ct-horizontal",start:"ct-start",end:"ct-end"}};c.Bar=c.Base.extend({constructor:e,createChart:d})}(window,document,a),function(a,b,c){"use strict";function d(a,b,c){var d=b.x>a.x;return d&&"explode"===c||!d&&"implode"===c?"start":d&&"implode"===c||!d&&"explode"===c?"end":"middle"}function e(a){var b,e,f,h,i,j=[],k=a.startAngle,l=c.getDataArray(this.data,a.reverseData);this.svg=c.createSvg(this.container,a.width,a.height,a.donut?a.classNames.chartDonut:a.classNames.chartPie),e=c.createChartRect(this.svg,a,g.padding),f=Math.min(e.width()/2,e.height()/2),i=a.total||l.reduce(function(a,b){return a+b},0);var m=c.quantity(a.donutWidth);"%"===m.unit&&(m.value*=f/100),f-=a.donut?m.value/2:0,h="outside"===a.labelPosition||a.donut?f:"center"===a.labelPosition?0:f/2,h+=a.labelOffset;var n={x:e.x1+e.width()/2,y:e.y2+e.height()/2},o=1===this.data.series.filter(function(a){return a.hasOwnProperty("value")?0!==a.value:0!==a}).length;a.showLabel&&(b=this.svg.elem("g",null,null,!0));for(var p=0;p180,0,s.x,s.y);a.donut||u.line(n.x,n.y);var v=j[p].elem("path",{d:u.stringify()},a.donut?a.classNames.sliceDonut:a.classNames.slicePie);if(v.attr({value:l[p],meta:c.serialize(q.meta)},c.xmlNs.uri),a.donut&&v.attr({style:"stroke-width: "+m.value+"px"}),this.eventEmitter.emit("draw",{type:"slice",value:l[p],totalDataSum:i,index:p,meta:q.meta,series:q,group:j[p],element:v,path:u.clone(),center:n,radius:f,startAngle:k,endAngle:r}),a.showLabel){var w=c.polarToCartesian(n.x,n.y,h,k+(r-k)/2),x=a.labelInterpolationFnc(this.data.labels?this.data.labels[p]:l[p],p);if(x||0===x){var y=b.elem("text",{dx:w.x,dy:w.y,"text-anchor":d(n,w,a.labelDirection)},a.classNames.label).text(""+x);this.eventEmitter.emit("draw",{type:"label",index:p,group:b,element:y,text:""+x,x:w.x,y:w.y})}}k=r}this.eventEmitter.emit("created",{chartRect:e,svg:this.svg,options:a})}function f(a,b,d,e){c.Pie["super"].constructor.call(this,a,b,g,c.extend({},g,d),e)}var g={width:void 0,height:void 0,chartPadding:5,classNames:{chartPie:"ct-chart-pie",chartDonut:"ct-chart-donut",series:"ct-series",slicePie:"ct-slice-pie",sliceDonut:"ct-slice-donut",label:"ct-label"},startAngle:0,total:void 0,donut:!1,donutWidth:60,showLabel:!0,labelOffset:0,labelPosition:"inside",labelInterpolationFnc:c.noop,labelDirection:"neutral",reverseData:!1};c.Pie=c.Base.extend({constructor:f,createChart:e,determineAnchorPosition:d})}(window,document,a),a}); + +/* + * Legend plugin for Chartist.js + * https://github.com/CodeYellowBV/chartist-plugin-legend + */ +(function(a,b){if(typeof define==="function"&&define.amd){define(["chartist"],function(c){return(a.returnExportsGlobal=b(c));});}else{if(typeof exports==="object"){module.exports=b(require("chartist"));}else{a["Chartist.plugins.legend"]=b(a.Chartist);}}}(this,function(b){var a={className:"",legendNames:false,clickable:true};b.plugins=b.plugins||{};b.plugins.legend=function(c){c=b.extend({},a,c);return function d(g){var h=g.container.querySelector(".ct-legend");if(h){h.remove();}if(c.clickable){g.data.series.forEach(function(l,k){if(typeof l!=="object"){l={data:l};}l.className=l.className||g.options.classNames.series+"-"+b.alphaNumerate(k);});}var f=document.createElement("ul");f.className="ct-legend";if(g instanceof b.Pie){f.classList.add("ct-legend-inside");}if(typeof c.className==="string"&&c.className.length>0){f.classList.add(c.className);}var j=[],e=g.data.series.slice(0);var i=g.data.series;if(g instanceof b.Pie){i=g.data.labels;}i=c.legendNames||i;i.forEach(function(m,l){var k=document.createElement("li");k.className="ct-series-"+l;k.setAttribute("data-legend",l);k.textContent=m.name||m;f.appendChild(k);});g.container.appendChild(f);if(c.clickable){f.addEventListener("click",function(n){var k=n.target;if(k.parentNode!==f||!k.hasAttribute("data-legend")){return;}n.preventDefault();var l=parseInt(k.getAttribute("data-legend")),o=j.indexOf(l);if(o>-1){j.splice(o,1);k.classList.remove("inactive");}else{if(g.data.series.length>1){j.push(l);k.classList.add("inactive");}}var m=e.slice(0);j.sort().reverse();j.forEach(function(p){m.splice(p,1);});g.data.series=m;g.update();});}};};return b.plugins.legend;})); diff --git a/site/web/app/plugins/f-translate/templates/js/details-element-polyfill.min.js b/site/web/app/plugins/f-translate/templates/js/details-element-polyfill.min.js new file mode 100644 index 0000000..5e6ad86 --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/js/details-element-polyfill.min.js @@ -0,0 +1,5 @@ +/* +Details Element Polyfill 2.3.1 +Copyright © 2019 Javan Makhmali +*/ +!function(){"use strict";var t=document.createElement("details");t.innerHTML="ab",t.setAttribute("style","position: absolute; left: -9999px");var e="open"in t&&function(){(document.body||document.documentElement).appendChild(t);var e=t.offsetHeight;t.open=!0;var n=t.offsetHeight;return t.parentNode.removeChild(t),e!=n}(),n="ontoggle"in t;var r,i,o,a,u='\ndetails, summary {\n display: block;\n}\ndetails:not([open]) > *:not(summary) {\n display: none;\n}\nsummary::before {\n content: "►";\n padding-right: 0.3rem;\n font-size: 0.6rem;\n cursor: default;\n}\n[open] > summary::before {\n content: "▼";\n}\n',s=[],c=s.forEach,d=s.slice;function m(t){(function(t,e){return(t.tagName==e?[t]:[]).concat("function"==typeof t.getElementsByTagName?d.call(t.getElementsByTagName(e)):[])})(t,"SUMMARY").forEach(function(t){var e=b(t,"DETAILS");t.setAttribute("aria-expanded",e.hasAttribute("open")),t.hasAttribute("tabindex")||t.setAttribute("tabindex","0"),t.hasAttribute("role")||t.setAttribute("role","button")})}function l(t){return!(t.defaultPrevented||t.ctrlKey||t.metaKey||t.shiftKey||t.target.isContentEditable)}function f(t){addEventListener("click",function(e){if(l(e)&&e.which<=1){var n=b(e.target,"SUMMARY");n&&n.parentNode&&"DETAILS"==n.parentNode.tagName&&t(n.parentNode)}},!1),addEventListener("keydown",function(e){if(l(e)&&(13==e.keyCode||32==e.keyCode)){var n=b(e.target,"SUMMARY");n&&n.parentNode&&"DETAILS"==n.parentNode.tagName&&(t(n.parentNode),e.preventDefault())}},!1)}function p(t){var e=document.createEvent("Event");e.initEvent("toggle",!1,!1),t.dispatchEvent(e)}function b(t,e){if("function"==typeof t.closest)return t.closest(e);for(;t;){if(t.tagName==e)return t;t=t.parentNode}}e||(document.head.insertAdjacentHTML("afterbegin",""),r=document.createElement("details").constructor.prototype,i=r.setAttribute,o=r.removeAttribute,a=Object.getOwnPropertyDescriptor(r,"open"),Object.defineProperties(r,{open:{get:function(){return"DETAILS"==this.tagName?this.hasAttribute("open"):a&&a.get?a.get.call(this):void 0},set:function(t){return"DETAILS"==this.tagName?t?this.setAttribute("open",""):this.removeAttribute("open"):a&&a.set?a.set.call(this,t):void 0}},setAttribute:{value:function(t,e){var n=this,r=function(){return i.call(n,t,e)};if("open"==t&&"DETAILS"==this.tagName){var o=this.hasAttribute("open"),a=r();if(!o){var u=this.querySelector("summary");u&&u.setAttribute("aria-expanded",!0),p(this)}return a}return r()}},removeAttribute:{value:function(t){var e=this,n=function(){return o.call(e,t)};if("open"==t&&"DETAILS"==this.tagName){var r=this.hasAttribute("open"),i=n();if(r){var a=this.querySelector("summary");a&&a.setAttribute("aria-expanded",!1),p(this)}return i}return n()}}}),f(function(t){t.hasAttribute("open")?t.removeAttribute("open"):t.setAttribute("open","")}),m(document),window.MutationObserver?new MutationObserver(function(t){c.call(t,function(t){c.call(t.addedNodes,m)})}).observe(document.documentElement,{subtree:!0,childList:!0}):document.addEventListener("DOMNodeInserted",function(t){m(t.target)})),e&&!n&&(window.MutationObserver?new MutationObserver(function(t){c.call(t,function(t){var e=t.target,n=t.attributeName;"DETAILS"==e.tagName&&"open"==n&&p(e)})}).observe(document.documentElement,{attributes:!0,subtree:!0}):f(function(t){var e=t.getAttribute("open");setTimeout(function(){var n=t.getAttribute("open");e!=n&&p(t)},1)}))}(); diff --git a/site/web/app/plugins/f-translate/templates/js/editor.js b/site/web/app/plugins/f-translate/templates/js/editor.js new file mode 100644 index 0000000..46274ee --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/js/editor.js @@ -0,0 +1,345 @@ +/* global $gp */ +( function( $ ){ + var $html = $( 'html' ); + var $document = $( document ); + + function checkStorage() { + var test = 'test', + result = false; + + try { + window.localStorage.setItem( 'test', test ); + result = window.localStorage.getItem( 'test' ) === test; + window.localStorage.removeItem( 'test' ); + } catch(e) {} + + hasStorage = result; + return result; + } + + var hasStorage = checkStorage(); + + // Handle tab view for plural forms. + function switchPluralTabs() { + var $tab = $( this ); + if ( $tab.hasClass( 'translation-form-list__tab--active' ) ) { + return; + } + + var $translationWrapper = $gp.editor.current.find( '.translation-wrapper' ); + var $formWrapper = $translationWrapper.find( '.translation-form-wrapper' ); + var $tabList = $formWrapper.find( '.translation-form-list' ); + var $tabs = $translationWrapper.find( '.textareas' ); + + $tabList.find( '.translation-form-list__tab--active' ).removeClass( 'translation-form-list__tab--active' ); + $tab.addClass( 'translation-form-list__tab--active' ); + + $tabs.removeClass( 'active' ); + + var index = $tab.data( 'plural-index' ); + $tabs.filter( '[data-plural-index="' + index + '"]').addClass( 'active' ); + } + + // Open menu for contextual links. + function toggleLinkMenu() { + var $toggle = $( this ); + var $menu = $toggle.parent( '.button-menu' ); + + $menu.toggleClass( 'active' ); + $document.off( 'click.menu-toggle' ); + + if ( $menu.hasClass( 'active' ) ) { + $document.on( 'click.menu-toggle', function( event ) { + if ( ! $menu.is( event.target ) && 0 === $menu.has( event.target ).length ) { + $menu.removeClass( 'active' ); + $document.off( 'click.menu-toggle' ); + } + } ); + } + } + + // Automatically adjust textarea height to fit text. + function textareaAutosize() { + var $textarea = $( this ); + if ( $textarea.hasClass( 'autosize' ) ) { + return; + } + + $textarea.addClass( 'autosize' ); + + autosize( $textarea ); + } + + + //Prefilter ajax requests to add translation_source to the request. + $.ajaxPrefilter( function ( options ) { + let data = Object.fromEntries( new URLSearchParams( options.data ) ); + + if ( 'POST' === options.type && $gp_editor_options.url === options.url ) { + options.data += '&translation_source=frontend'; + + } + }); + + // Override functions to adopt custom markup. + $gp.editor.copy = function() { + var $activeTextarea = $gp.editor.current.find( '.textareas.active textarea' ); + if ( ! $activeTextarea.length ) { + return; + } + + var chunks = $activeTextarea.attr( 'id' ).split( '_' ); + var originalIndex = parseInt( chunks[ chunks.length - 1 ], 10 ); + + var $original; + if ( 0 === originalIndex ) { + $original = $gp.editor.current.find( '.source-string__singular .original-raw' ); + } else { + $original = $gp.editor.current.find( '.source-string__plural .original-raw' ); + } + + if ( ! $original.length ) { + return; + } + + var originalText = $original.text(); + if ( ! originalText ) { + return; + } + + $activeTextarea.val( originalText ).focus(); + + // Trigger input event for autosize(). + var event = new Event( 'input' ); + $activeTextarea[0].dispatchEvent( event ); + }; + $gp.editor.tab = function() { + var text_area = $gp.editor.current.find( '.textareas.active textarea' ); + if ( ! text_area.length ) { + return; + } + + var cursorPos = text_area.prop( 'selectionStart' ); + var v = text_area.val(); + var textBefore = v.substring( 0, cursorPos ); + var textAfter = v.substring( cursorPos, v.length ); + + text_area.val( textBefore + '\t' + textAfter ); + + text_area.focus(); + text_area[0].selectionEnd = cursorPos + 1; + }, + $gp.editor.newline = function() { + var text_area = $gp.editor.current.find( '.textareas.active textarea' ); + if ( ! text_area.length ) { + return; + } + + var cursorPos = text_area.prop( 'selectionStart' ); + var v = text_area.val(); + var textBefore = v.substring( 0, cursorPos ); + var textAfter = v.substring( cursorPos, v.length ); + + text_area.val( textBefore + '\n' + textAfter ); + + text_area.focus(); + text_area[0].selectionEnd = cursorPos + 1; + }; + + function switchTextDirection() { + var direction = $( this ).is( '.translation-actions__ltr') ? 'ltr' : 'rtl'; + + var $wrapper = $gp.editor.current.find( '.translation-wrapper' ); + if ( ! $wrapper.length ) { + return; + } + + $wrapper.removeClass( 'textarea-direction-rtl textarea-direction-ltr' ); + $wrapper.addClass( 'textarea-direction-' + direction ); + } + + // Open the modal for translation help. + function openHelpModal() { + var $modal = $( '#wporg-translation-help-modal' ); + var $closeButton = $modal.find( '.wporg-translate-modal__close' ); + + $html.addClass( 'modal-open' ); + $modal.addClass( 'wporg-translate-modal--open' ); + $closeButton.focus(); + + $document.on( 'keydown.modal', function( event ) { + if ( 27 !== event.which ) { // ESC key. + return; + } + + $modal.removeClass( 'wporg-translate-modal--open' ); + $html.removeClass( 'modal-open' ); + $document.off( 'keydown.modal' ); + } ); + + $closeButton.one( 'click', function() { + $modal.removeClass( 'wporg-translate-modal--open' ); + $html.removeClass( 'modal-open' ); + $document.off( 'keydown.modal' ); + } ); + } + + $gp.editor.keydown = ( function( original ) { + return function( event ) { + // Shift-Enter = Save. + if ( 13 === event.keyCode && event.shiftKey ) { + var $textarea = $( event.target ); + + if ( ! $textarea.val().trim() ) { + $gp.notices.error( 'Translation is empty.' ); + return false; + } + + // Check plural forms. + var $textareas = $gp.editor.current.find( '.textareas:not(.active) textarea' ); + var isValid = true; + $textareas.each( function() { + if ( ! this.value.trim() ) { + isValid = false; + } + } ); + + if ( ! isValid ) { + $gp.notices.error( 'Translation is empty.' ); + return false; + } + + $gp.editor.save( $gp.editor.current.find( 'button.translation-actions__save' ) ); + + // Ctrl-Enter or Ctrl-Shift-B = Copy original. + } else if ( + ( 13 === event.keyCode && event.ctrlKey ) || + ( 66 === event.keyCode && event.shiftKey && event.ctrlKey ) ) + { + var $button = $gp.editor.current.find( 'button.translation-actions__copy' ); + + $button.trigger( 'click' ); + } else { + return original.apply( $gp.editor, arguments ); + } + + return false; + } + })( $gp.editor.keydown ); + + // Store the open/close state of
element in locale storage and apply state when editor is shown. + var DETAILS_STORE_KEY = 'translate-details-state'; + function updateDetailsState( type, state ) { + if ( ! hasStorage ) { + return; + } + + var store = window.localStorage.getItem( DETAILS_STORE_KEY ); + var states = store ? JSON.parse( store ) : {}; + + states[ type ] = state; + + window.localStorage.setItem( DETAILS_STORE_KEY, JSON.stringify( states ) ); + } + + function toggleDetails( event ) { + var $el = $( event.target ).closest( 'details' ); + var isClosed = $el.attr( 'open' ) === 'open'; // Gets closed when open attribute was previously set. + var className = $el.attr( 'class' ).replace( /^(\S*).*/, '$1' ); + + updateDetailsState( className, isClosed ? 'close' : 'open' ); + } + + function applyDetailsState() { + if ( ! hasStorage || ! $gp.editor.current.length ) { + return; + } + + var store = window.localStorage.getItem( DETAILS_STORE_KEY ); + var states = store ? JSON.parse( store ) : {}; + + for ( var type in states ) { + var state = states[ type ]; + + if ( 'open' === state ) { + $gp.editor.current.find( '.' + type ).attr( 'open', 'open' ); + } else { + $gp.editor.current.find( '.' + type ).removeAttr( 'open' ); + } + } + // Click on the last tab opened in the previous row, to show the same tab in the current row. + $gp.editor.current.find( '.' + states['last-tab-type-open'] ).first().click(); + } + + function changeRightTab( event ) { + var tab = $( this ); + var tabType = tab.attr( 'class' ).split(' ')[0]; + var tabId = tab.attr( 'data-tab' ); + var divId = tabId.replace( 'tab', 'div' ); + var originalId = tabId.replace( /[^\d-]/g, '' ).replace( /^-+/g, '' ); + changeVisibleTab( tab ); + changeVisibleDiv( divId, originalId ); + updateDetailsState( 'last-tab-type-open', tabType ); + // Avoid to execute the code from the gp-translation-helpers plugin. + event.stopImmediatePropagation(); + } + + /** + * Hides all tabs and show one of them, the last clicked. + * + * @param {Object} tab The selected tab. + */ + function changeVisibleTab( tab ) { + var tabId = tab.attr( 'data-tab' ); + tab.siblings().removeClass( 'current' ); + tab.parents( '.sidebar-tabs ' ).find( '.helper' ).removeClass( 'current' ); + tab.addClass( 'current' ); + + $( '#' + tabId ).addClass( 'current' ); + } + + + /** + * Hides all divs and show one of them, the last clicked. + * + * @param {string} tabId The select tab id. + * @param {number} originalId The id of the original string to translate. + */ + function changeVisibleDiv( tabId, originalId ) { + $( '#sidebar-div-meta-' + originalId ).hide(); + $( '#sidebar-div-discussion-' + originalId ).hide(); + $( '#sidebar-div-others-' + originalId ).hide(); + $( '#' + tabId ).show(); + } + + $gp.editor.show = ( function( original ) { + return function() { + original.apply( $gp.editor, arguments ); + + applyDetailsState(); + } + })( $gp.editor.show ); + + $gp.editor.install_hooks = ( function( original ) { + return function() { + original.apply( $gp.editor, arguments ); + + $( $gp.editor.table ) + .on( 'click', 'button.translation-form-list__tab', switchPluralTabs ) + .on( 'click', 'button.panel-header-actions__previous', $gp.editor.prev ) + .on( 'click', 'button.panel-header-actions__next', $gp.editor.next ) + .on( 'click', 'button.panel-header-actions__cancel', $gp.editor.hooks.cancel ) + .on( 'click', 'button.translation-actions__copy', $gp.editor.hooks.copy ) + .on( 'click', 'button.translation-actions__insert-tab', $gp.editor.hooks.tab ) + .on( 'click', 'button.translation-actions__save', $gp.editor.hooks.ok ) + .on( 'click', 'button.translation-actions__help', openHelpModal ) + .on( 'click', 'button.translation-actions__ltr', switchTextDirection ) + .on( 'click', 'button.translation-actions__rtl', switchTextDirection ) + .on( 'focus', 'textarea', textareaAutosize ) + .on( 'click', 'summary', toggleDetails ) + .on( 'click', 'button.button-menu__toggle', toggleLinkMenu ) + .on( 'click', '.sidebar-tabs li', changeRightTab ); + } + })( $gp.editor.install_hooks ); + +})( jQuery ); diff --git a/site/web/app/plugins/f-translate/templates/locale-project.php b/site/web/app/plugins/f-translate/templates/locale-project.php new file mode 100644 index 0000000..bd7396a --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/locale-project.php @@ -0,0 +1,486 @@ +english_name ) ) ); + +$breadcrumb = array(); +$breadcrumb[] = gp_link_get( '/', __( 'Locales' ) ); +$breadcrumb[] = gp_link_get( gp_url_join( '/locale', $locale_slug, $set_slug ), esc_html( $locale->english_name ) ); +$breadcrumb[] = gp_link_get( gp_url_join( '/locale', $locale_slug, $set_slug, $project->path ), esc_html( $project->name ) ); +$breadcrumb[] = $sub_project->name; +gp_breadcrumb( $breadcrumb ); +gp_tmpl_header(); +?> + +
+

description, $sub_project ); + + // Localize the links to the currently viewed locale. + $description = WordPressdotorg\GlotPress\Customizations\Plugin::get_instance()->localize_links( $description, $locale->wp_locale ); + + echo $description; + ?>

+ +
+
+
+ +
+ +
    +
  • name; ?>
  • +
  • english_name; ?>
  • + english_name !== $locale->native_name ) : ?> +
  • native_name; ?>
  • + +
  • + wp_locale; + + if ( count( $variants ) > 1 ) { + ?> + + +
  • + +
  • + +
  • + +
  • + +
  • + +
+ +
+ percent_complete . '%'; ?> +
+
+ +
+
+
+ + +
+
+ +active ) : ?> +
+

This project is no longer actively used. Translations remain for archiving purposes.

+
+ + +path ) { + if ( ! in_array( 'dev', $sub_project_slugs ) && ! in_array( 'stable', $sub_project_slugs ) ) { + ?> +
+

This plugin is not properly prepared for localization. If you would like to translate this plugin, please contact the author.

+

Import results are logged on Slack in the #meta-language-packs channel. Please see the handbook for more information about Slack and possible errors.

+
+ +
+

Translations for the readme are published almost immediately. + The initial language pack for the plugin will be generated when 90% of the sub-project strings have been translated (currently percent_complete . '%'; ?>).

+
+ path ) { + ?> +
+

The initial language pack for the theme will be generated when 90% of the project strings have been translated (currently percent_complete . '%'; ?>).

+
+ + +
+ + + + + + + + + + + + + all_count ) { + ?> + + + + + + + + + + + + path ) { + // Ensure consistent order of development and stable projects. + usort( $sub_projects, function( $a, $b ) { + $a_is_dev = ( substr( $a->slug, 0, 3 ) == 'dev' ); + $b_is_dev = ( substr( $b->slug, 0, 3 ) == 'dev' ); + + // Sort same-type projects alphabetically + if ( $a_is_dev === $b_is_dev ) { + return strnatcasecmp( $a->name, $b->name ); + } + + // Sort Stable before Dev. + return $a_is_dev <=> $b_is_dev; + } ); + } + + foreach ( $sub_projects as $sub_project ) { + $status = $sub_project_statuses[ $sub_project->slug ]; + ?> + + + + + + + + + + +
+ path, gp_url_join( $locale->slug, $set_slug ) ), $sub_project->name ); ?> + percent_complete > 90 ) : ?> + percent_complete; ?>% + + percent_complete; ?>% + + + path, gp_url_join( $locale->slug, $set_slug ), array( 'filters[translated]' => 'yes', 'filters[status]' => 'current') ), number_format_i18n( $sub_project_status->current_count ) ); ?> + + path, gp_url_join( $locale->slug, $set_slug ), array( 'filters[translated]' => 'yes', 'filters[status]' => 'fuzzy' ) ), number_format_i18n( $sub_project_status->fuzzy_count ) ); ?> + + path, gp_url_join( $locale->slug, $set_slug ), array( 'filters[status]' => 'untranslated' ) ), number_format_i18n( $sub_project_status->untranslated_count ) ); ?> + + path, gp_url_join( $locale->slug, $set_slug ), array( 'filters[translated]' => 'yes', 'filters[status]' => 'waiting' ) ), number_format_i18n( $sub_project_status->waiting_count ) ); ?> + + path, gp_url_join( $locale->slug, $set_slug ), array( 'filters[changesrequested]' => 'yes', 'filters[status]' => 'changesrequested' ) ), number_format_i18n( $sub_project_status->changesrequested_count ) ); ?> +
+ path, gp_url_join( $locale->slug, $set_slug ) ), $sub_project->name ); ?> + percent_complete > 90 ) : ?> + percent_complete; ?>% + + percent_complete; ?>% + + + path, gp_url_join( $locale->slug, $set_slug ), array( 'filters[translated]' => 'yes', 'filters[status]' => 'current') ), number_format_i18n( $status->current_count ) ); ?> + + path, gp_url_join( $locale->slug, $set_slug ), array( 'filters[translated]' => 'yes', 'filters[status]' => 'fuzzy' ) ), number_format_i18n( $status->fuzzy_count ) ); ?> + + path, gp_url_join( $locale->slug, $set_slug ), array( 'filters[status]' => 'untranslated' ) ), number_format_i18n( $status->untranslated_count ) ); ?> + + path, gp_url_join( $locale->slug, $set_slug ), array( 'filters[translated]' => 'yes', 'filters[status]' => 'waiting' ) ), number_format_i18n( $status->waiting_count ) ); ?> + + path, gp_url_join( $locale->slug, $set_slug ), array( 'filters[changesrequested]' => 'yes', 'filters[status]' => 'changesrequested' ) ), number_format_i18n( $status->changesrequested_count ) ); ?> +
+
+ +
+
+

Translation Contributors

+ + + + + + + + + + path ) { + // Ensure consistent order of development and stable projects. + usort( $contributor->detailed, function( $a, $b ) { + return strnatcasecmp( $a->project->name, $b->project->name ); + } ); + } + + foreach ( $contributor->detailed as $detail_project_id => $detail_data ) { + $detailed .= '' . $detail_data->project->name . ':'; + + if ( $detail_data->total_count > 0 ) { + $total_count = gp_link_get( + gp_url_project( + $detail_data->project->path, + gp_url_join( $locale->slug, $set_slug ), + [ + 'filters[translated]' => 'yes', + 'filters[status]' => 'current_or_waiting_or_fuzzy_or_untranslated', + 'filters[user_login]' => $contributor->login, + ] + ), + number_format_i18n( $detail_data->total_count ) + ); + } else { + $total_count = number_format_i18n( $detail_data->total_count ); + } + + if ( $detail_data->current_count > 0 ) { + $current_count = gp_link_get( + gp_url_project( + $detail_data->project->path, + gp_url_join( $locale->slug, $set_slug ), + [ + 'filters[translated]' => 'yes', + 'filters[status]' => 'current', + 'filters[user_login]' => $contributor->login, + ] + ), + number_format_i18n( $detail_data->current_count ) + ); + } else { + $current_count = number_format_i18n( $detail_data->current_count ); + } + + if ( $detail_data->waiting_count > 0 ) { + $waiting_count = gp_link_get( + gp_url_project( + $detail_data->project->path, + gp_url_join( $locale->slug, $set_slug ), + [ + 'filters[translated]' => 'yes', + 'filters[status]' => 'waiting', + 'filters[user_login]' => $contributor->login, + ] + ), + number_format_i18n( $detail_data->waiting_count ) + ); + } else { + $waiting_count = number_format_i18n( $detail_data->waiting_count ); + } + + if ( $detail_data->fuzzy_count > 0 ) { + $fuzzy_count = gp_link_get( + gp_url_project( + $detail_data->project->path, + gp_url_join( $locale->slug, $set_slug ), + [ + 'filters[translated]' => 'yes', + 'filters[status]' => 'fuzzy', + 'filters[user_login]' => $contributor->login, + ] + ), + number_format_i18n( $detail_data->fuzzy_count ) + ); + } else { + $fuzzy_count = number_format_i18n( $detail_data->fuzzy_count ); + } + + $detailed .= sprintf( + ' +
+

%s

+
+
+

%s

+
+
+

%s

+
+
+

%s

+
+ ', + $total_count, + $current_count, + $waiting_count, + $fuzzy_count + ); + } + + printf( + ' + + + ', + $contributor->nicename, + get_avatar( $contributor->email, 40 ), + $contributor->is_editor ? 'Editor' : '', + $contributor->nicename, + $contributor->display_name ?: $contributor->nicename, + human_time_diff( strtotime( $contributor->last_update ) ), + number_format_i18n( $contributor->total_count ), + number_format_i18n( $contributor->current_count ), + number_format_i18n( $contributor->waiting_count ), + number_format_i18n( $contributor->fuzzy_count ), + $detailed + ); + } + ?> + +
ContributorTranslations
+
+ %s + %s +
+
+ %s + Latest translation: %s ago +
+
+
+ Total +

%s

+
+
+ Translated +

%s

+
+
+ Suggested +

%s

+
+
+ Fuzzy +

%s

+
+
+
+ Per project + %s +
+
+
+ +

None, be the first?

+ +
+ +
+

Translation Editors

+ +

These users can validate and approve your translations for this specific project.

+
    + %s %s', + $editor->nicename, + get_avatar( $editor->email, 40 ), + $editor->nicename, + $editor->display_name ?: $editor->nicename + ); + } + ?> +
+ +

There are no editors for this specific project, yet. Become an editor.

+ +
+

The following users can edit translations for either a parent project or all projects.

+
    + %s %s', + $editor->nicename, + get_avatar( $editor->email, 15 ), + $editor->display_name ? $editor->display_name : $editor->nicename + ); + } + ?> +
+ +
+
+ + + +english_name ) ) ); + +$breadcrumb = array(); +$breadcrumb[] = gp_link_get( '/', __( 'Locales' ) ); +$breadcrumb[] = gp_link_get( gp_url_join( '/locale', $locale_slug, $set_slug ), esc_html( $locale->english_name ) ); +$breadcrumb[] = esc_html( $project->name ); +gp_breadcrumb( $breadcrumb ); +gp_tmpl_header(); +?> + +
+

Translate WordPress, core projects, plugins, and themes into your language. Select your project below to get started.

+ +
+
    +
  • english_name; ?>
  • +
  • native_name; ?>
  • +
  • + wp_locale; + + if ( count( $variants ) > 1 ) { + ?> + + +
  • + +
  • + +
  • + +
  • + +
  • + +
+
+
%s', + isset( $contributors_count[ $locale->slug ] ) ? $contributors_count[ $locale->slug ] : 0 + ); + echo gp_link_get( 'https://make.wordpress.org/polyglots/teams/?locale=' . $locale->wp_locale, $contributors ); + ?> +
+
+
+ +
+ +
+
+ + + + + +
+
+
+
+
+ + + + slug && is_user_logged_in() ) { + $filter_count++; + ?> + > + + + + + + + + + +
+
+ + 1 ) { + echo '
'; + echo gp_pagination( $pages['page'], $pages['per_page'], $pages['results'] ); + echo '
'; +} + +?> +
+ id ] ) ) { + $status = $project_status[ $sub_project->id ]; + $percent_complete = $status->percent_complete; + $waiting = $status->waiting_count; + $fuzzy = $status->fuzzy_count; + $remaining = $status->all_count - $status->current_count; + $sub_projects_count = $status->sub_projects_count; + } + + // Link directly to the Waiting strings if we're in the Waiting view, otherwise link to the project overview + if ( 'waiting' == $project->slug ) { + // TODO: Since we're matching parent projects, we can't link to them as they have no direct translation sets. + //$project_url = gp_url_join( '/projects', $sub_project->path, $locale_slug, $set_slug ) . '?filters[status]=waiting_or_fuzzy'; + $project_url = gp_url_join( '/locale', $locale_slug, $set_slug, $sub_project->path ); + + $project_name = $sub_project->name; + $parent_project_id = $sub_project->parent_project_id; + while ( $parent_project_id ) { + $parent_project = GP::$project->get( $parent_project_id ); + $parent_project_id = $parent_project->parent_project_id; + $project_name = "{$parent_project->name} - {$project_name}"; + } + } elseif ( 'Patterns' == $project->name ) { + $prefix = 'https://translate.wordpress.org/projects/patterns/core'; + if ( 'patterns' == $sub_project->slug ) { + // Remove the URL from the filter for the main Patterns project so that it shows all strings. + $suffix = '?filters%5Bterm%5D=&filters%5Bterm_scope%5D=scope_any&filters%5Bstatus%5D=current_or_waiting_or_fuzzy_or_untranslated_or_rejected_or_changesrequested_or_old&filters%5Buser_login%5D=&filter=Apply+Filters&sort%5Bby%5D=priority&sort%5Bhow%5D=desc'; + } else { + $suffix = '?filters%5Bterm%5D=https%3A%2F%2Fwordpress.org%2Fpatterns%2Fpattern%2F' . $sub_project->slug . '%2F&filters%5Bterm_scope%5D=scope_any&filters%5Bstatus%5D=current_or_waiting_or_fuzzy_or_untranslated_or_rejected_or_changesrequested_or_old&filters%5Buser_login%5D=&filter=Apply+Filters&sort%5Bby%5D=priority&sort%5Bhow%5D=desc'; + } + $project_url = $prefix . '/' . $locale_slug . '/' . $set_slug . '/' . $suffix; + $project_name = $sub_project->name; + } else { + $project_url = gp_url_join( '/locale', $locale_slug, $set_slug, $sub_project->path ); + $project_name = $sub_project->name; + } + + $project_icon = ''; + if ( isset( $project_icons[ $sub_project->id ] ) ) { + $project_icon = $project_icons[ $sub_project->id ]; + } + + $classes = 'project-' . sanitize_title_with_dashes( str_replace( '/', '-', $project->path ) ); + $classes .= ' project-' . sanitize_title_with_dashes( str_replace( '/', '-', $sub_project->path ) ); + $classes .= ' percent-' . $percent_complete; + ?> +
+
+
+ +
+ +
+

+ +

+
+
+

description ); + $description = str_replace( array( 'WordPress.org Plugin Page', 'WordPress.org Theme Page' ), '', $description ); + echo wp_trim_words( $description, 15 ); + ?>

+
+
+ +
+
+ Projects + +
+
+ Waiting/Fuzzy + +
+
+ Remaining + +
+
+ Progress + % +
+
+ +
+
+
+ +
+ 'button contribute-button' ] ); ?> +
+
+ slug ) { + echo '
No projects with strings awaiting approval!
'; + } else { + echo '
No projects found.
'; + } + } + ?> +
+ + 1 ) { + echo '
'; + echo gp_pagination( $pages['page'], $pages['per_page'], $pages['results'] ); + echo '
'; +} +?> + + + + +
+
+ + +
+
+ + +
+ +
+
+ +
+
+ + %file%', + '%line%', + 'https://trac.example.org/browser/%file%#L%line%' + ); ?> +
+ +
+
+ +
active ); ?> />
+ + + diff --git a/site/web/app/plugins/f-translate/templates/project-mass-create-sets.php b/site/web/app/plugins/f-translate/templates/project-mass-create-sets.php new file mode 100644 index 0000000..03a1b49 --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/project-mass-create-sets.php @@ -0,0 +1,19 @@ +name ) ); +gp_breadcrumb_project( $project ); +gp_tmpl_header(); +?> +

+

+
+
+
+
+
+
+

+ id ); ?> +
+name ) ) ); +gp_breadcrumb( array( + gp_project_links_from_root( $project ), + 'Editors & Contributors', +) ); + + +gp_enqueue_script( 'common' ); +gp_enqueue_style( 'chartist' ); +gp_enqueue_script( 'chartist' ); + +gp_tmpl_header(); +?> +
+

description, $project ); ?>

+ +
+
+
+ icon; ?> +
+ +
    +
  • name; ?>
  • +
+
+ + +
+
+ +
+ +

Activity

+

The graph shows the recent activity of your contributors. It’s updated once per day.

+ +
+ +

Teams

+

For each locale a plugin can have translation editors and contributors. If a locale has no editor yet then you should probably make a request.

+ +
+ | + | + + + +
+ '; + foreach ( $contributors_by_locale as $locale_slug => $data ) { + $locale = GP_Locales::by_slug( $locale_slug ); + $has_editors = ! empty ( $data['editors'] ); + + $editors_list = array(); + foreach ( $data['editors'] as $editor ) { + $editors_list[] = sprintf( + '%s', + $editor->nicename, + $editor->display_name ? $editor->display_name : $editor->nicename + ); + } + + if ( ! $editors_list ) { + $editors_list[] = 'None'; + } + + $contributor_list = array(); + foreach ( $data['contributors'] as $contributor ) { + $contributor_list[] = sprintf( + '%s', + $contributor->nicename, + $contributor->display_name ? $contributor->display_name : $contributor->nicename + ); + } + + if ( ! $contributor_list ) { + $contributor_list[] = 'None'; + } + + printf( + '
+

%s %s #%s

+

Editors: %s

+

Contributors: %s

+
', + $has_editors ? ' has-editors' : ' no-editors', + $locale->english_name, + sprintf( _n( '%s person', '%s persons', $data['count'] ), number_format_i18n( $data['count'] ) ), + esc_url( gp_url_join( '/locale', $locale->slug, 'default', $project->path ) ), + $locale->wp_locale, + wp_sprintf( '%l', $editors_list ), + wp_sprintf( '%l', $contributor_list ) + ); + } + echo '
'; + } else { + echo '

The plugin has no contributors, yet.

'; + } + ?> + + + + +name ) ) ); +gp_breadcrumb( array( + gp_project_links_from_root( $project ), + 'Language Packs', +) ); + + +gp_enqueue_script( 'common' ); + +gp_tmpl_header(); +?> + +
+

description, $project ); ?>

+ +
+
+
+ icon; ?> +
+ +
    +
  • name; ?>
  • +
+
+ + +
+
+ +
+

Language Packs

+ +

Language packs are installed automatically if they are available. Once a locale has reached the threshold for a package build it will be listed here. It also means that you don’t have to include this language in your plugin anymore.

+ + translations ) && $language_packs->translations ) { + echo '
    '; + foreach ( $language_packs->translations as $language_pack ) { + printf( + '
  • %s (%s): Last updated %s for version %s (zip)
  • ', + $language_pack->english_name, + $language_pack->language, + $language_pack->updated, + $language_pack->version, + $language_pack->package + ); + } + echo '
'; + } else { + echo '

There are no language packs yet.

'; + } + ?> +
+ + + + 'Locale', + 'dev' => 'Development', + 'dev-readme' => 'Development Readme', + 'stable' => 'Stable', + 'stable-readme' => 'Stable Readme', + 'waiting' => 'Waiting/Fuzzy', +]; + +gp_title( sprintf( __( '%s < GlotPress' ), esc_html( $project->name ) ) ); +gp_breadcrumb_project( $project ); + +gp_enqueue_script( 'common' ); +gp_enqueue_script( 'tablesorter' ); + +gp_tmpl_header(); +?> + +
+

description, $project ); ?>

+ +
+
+
+ icon; ?> +
+ +
    +
  • name; ?>
  • +
+
+ + +
+
+ +active ) : ?> +
+

This plugin is no longer listed in the plugin directory. Translations remain for archiving purposes.

+
+ + + +
+

This plugin is not properly prepared for localization. If you would like to translate this plugin, please contact the author.

+

Import results are logged on Slack in the #meta-language-packs channel. Please see the handbook for details about Slack and possible errors.

+
+ + +
+ + + + $heading ) : ?> + + + + + + $total_complete ) : + $gp_locale = GP_Locales::by_slug( $locale_slug ); + + if ( ! $gp_locale || ! $gp_locale->wp_locale ) { + continue; + } + + list( $locale, $set_slug ) = array_merge( explode( '/', $locale_slug ), [ 'default' ] ); + ?> + + + path ) ); + $link_text = number_format( $percent ); + else : + $percent_class = (int) ( $percent / 10 ) * 10; + $link_url = gp_url_project( $project->path, gp_url_join( $subproject_slug, $locale, $set_slug ) ); + $link_text = "$percent%"; + + endif; + + echo ''; + else : + echo ''; + endif; + endforeach; + else : + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + endif; + ?> + + + +
+ + english_name ); ?> + + '. gp_link_get( $link_url, $link_text ) . '
+
+ + + +name ) ) ); +gp_breadcrumb( array( + gp_project_links_from_root( $project ), + 'Editors & Contributors', +) ); + + +gp_enqueue_script( 'common' ); +gp_enqueue_style( 'chartist' ); +gp_enqueue_script( 'chartist' ); + +gp_tmpl_header(); +?> +
+

description, $project ); ?>

+ +
+
+
+ icon; ?> +
+ +
    +
  • name; ?>
  • +
+
+ + +
+
+ +
+ +

Activity

+

The graph shows the recent activity of your contributors. It’s updated once per day.

+ +
+ +

Teams

+

For each locale a theme can have translation editors and contributors. If a locale has no editor yet then you should probably make a request.

+ +
+ | + | + + + +
+ '; + foreach ( $contributors_by_locale as $locale_slug => $data ) { + $locale = GP_Locales::by_slug( $locale_slug ); + $has_editors = ! empty ( $data['editors'] ); + + $editors_list = array(); + foreach ( $data['editors'] as $editor ) { + $editors_list[] = sprintf( + '%s', + $editor->nicename, + $editor->display_name ? $editor->display_name : $editor->nicename + ); + } + + if ( ! $editors_list ) { + $editors_list[] = 'None'; + } + + $contributor_list = array(); + foreach ( $data['contributors'] as $contributor ) { + $contributor_list[] = sprintf( + '%s', + $contributor->nicename, + $contributor->display_name ? $contributor->display_name : $contributor->nicename + ); + } + + if ( ! $contributor_list ) { + $contributor_list[] = 'None'; + } + + printf( + '
+

%s %s #%s

+

Editors: %s

+

Contributors: %s

+
', + $has_editors ? ' has-editors' : ' no-editors', + $locale->english_name, + sprintf( _n( '%s person', '%s persons', $data['count'] ), number_format_i18n( $data['count'] ) ), + $locale->wp_locale, + wp_sprintf( '%l', $editors_list ), + wp_sprintf( '%l', $contributor_list ) + ); + } + echo '
'; + } else { + echo '

The plugin has no contributors, yet.

'; + } + ?> + + + + +name ) ) ); +gp_breadcrumb( array( + gp_project_links_from_root( $project ), + 'Language Packs', +) ); + + +gp_enqueue_script( 'common' ); + +gp_tmpl_header(); +?> + +
+

description, $project ); ?>

+ +
+
+
+ icon; ?> +
+ +
    +
  • name; ?>
  • +
+
+ + +
+
+ +
+

Language Packs

+ +

Language packs are installed automatically if they are available. Once a locale has reached the threshold for a package build it will be listed here. It also means that you don’t have to include this language in your theme anymore.

+ + translations ) && $language_packs->translations ) { + echo '
    '; + foreach ( $language_packs->translations as $language_pack ) { + printf( + '
  • %s (%s): Last updated %s for version %s (zip)
  • ', + $language_pack->english_name, + $language_pack->language, + $language_pack->updated, + $language_pack->version, + $language_pack->package + ); + } + echo '
'; + } else { + echo '

There are no language packs yet.

'; + } + ?> +
+ + + + 'Locale', + 'stable' => 'Stable', + 'waiting' => 'Waiting/Fuzzy', +]; + +gp_title( sprintf( __( '%s < GlotPress' ), esc_html( $project->name ) ) ); +gp_breadcrumb_project( $project ); + +gp_enqueue_script( 'common' ); +gp_enqueue_script( 'tablesorter' ); + +gp_tmpl_header(); +?> + +
+

description, $project ); ?>

+ +
+
+
+ icon; ?> +
+ +
    +
  • name; ?>
  • +
+
+ + +
+
+ +active ) : ?> +
+

This theme is no longer listed in the theme directory. Translations remain for archiving purposes.

+
+ + +
+ + + + $heading ) : ?> + + + + + + $total_complete ) : + $gp_locale = GP_Locales::by_slug( $locale_slug ); + + if ( ! $gp_locale || ! $gp_locale->wp_locale ) { + continue; + } + + list( $locale, $set_slug ) = array_merge( explode( '/', $locale_slug ), [ 'default' ] ); + ?> + + + path ) ); + $link_text = number_format( $percent ); + else : + $percent_class = (int) ( $percent / 10 ) * 10; + $link_url = gp_url_project( $project->path, gp_url_join( $locale, $set_slug ) ); + $link_text = "$percent%"; + + endif; + + echo ''; + else : + echo ''; + endif; + endforeach; + else : + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + endif; + ?> + + + +
+ + english_name ); ?> + + '. gp_link_get( $link_url, $link_text ) . '
+
+ + + + 'priority', + 'how' => 'desc', + ); +} + +$gp_external_translations = get_user_option( 'gp_external_translations' ); + +$openai_key = trim( gp_array_get( $gp_default_sort, 'openai_api_key' ) ); +$openai_response = null; +if ( $openai_key ) { + $openai_response = wp_remote_get( + 'https://api.openai.com/v1/usage?date=' . gmdate( 'Y-m-d' ), + array( + 'timeout' => 8, + 'headers' => array( + 'Content-Type' => 'application/json', + 'Authorization' => 'Bearer ' . $openai_key, + ), + ) + ); +} +$openai_response_code = wp_remote_retrieve_response_code( $openai_response ); + +$deepl_key = trim( gp_array_get( $gp_default_sort, 'deepl_api_key' ) ); +$deepl_response = null; +$deepl_url_free = 'https://api-free.deepl.com/v2/usage'; +$deepl_url_pro = 'https://api.deepl.com/v2/usage'; +$deepl_url = gp_array_get( $gp_default_sort, 'deepl_use_api_pro', false ) ? $deepl_url_pro : $deepl_url_free; + +if ( $deepl_key ) { + $deepl_response = wp_remote_get( + $deepl_url, + array( + 'timeout' => 4, + 'headers' => array( + 'Content-Type' => 'application/json', + 'Authorization' => 'DeepL-Auth-Key ' . $deepl_key, + ), + ) + ); + $deepl_response_code = wp_remote_retrieve_response_code( $deepl_response ); +} + +?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ __( 'Ascending', 'glotpress' ), + 'desc' => __( 'Descending', 'glotpress' ), + ), + gp_array_get( $gp_default_sort, 'how', 'desc' ) + ); + ?> +
/>
+

+
/>
+

+
+ +
+ 0 ) { + echo '
'; + echo ''; + /* translators: Number of OpenAI translations used. */ + echo esc_html( sprintf( _n( '%s OpenAI translation used:', '%s OpenAI translations used:', 'glotpress' ), number_format_i18n( gp_array_get( $gp_external_translations, 'openai_translations_used', 0 ) ) ) ); + if ( gp_array_get( $gp_external_translations, 'openai_same_translations_used', 0 ) > 0 ) { + echo ' ' . esc_html( + sprintf( + /* translators: 1: Number of OpenAI translations used with modifications. 2: Number of OpenAI translations used without modifications. */ + __( '%1$s with modifications and %2$s without modifications.', 'glotpress' ), + number_format_i18n( gp_array_get( $gp_external_translations, 'openai_translations_used', 0 ) - gp_array_get( $gp_external_translations, 'openai_same_translations_used', 0 ) ), + number_format_i18n( gp_array_get( $gp_external_translations, 'openai_same_translations_used', 0 ) ), + ) + ); + } + echo ''; + } + ?> +
+ + 0 ) { + /* translators: Number of OpenAI tokens used. */ + echo esc_html( sprintf( __( 'OpenAI tokens used: %s', 'glotpress' ), number_format_i18n( $openai_tokens_used ) ) ); + } + ?> + +
+
+
+ + '; + if ( 401 == $openai_response_code ) { + echo ''; + esc_html_e( 'Your OpenAI API Key is not correct.', 'glotpress' ); + } elseif ( 200 != $openai_response_code ) { + echo ''; + esc_html_e( 'We have had a problem with the OpenAI API.', 'glotpress' ); + } else { + echo ''; + esc_html_e( 'Your OpenAI API Key is correct.', 'glotpress' ); + } + echo ''; + } + ?> +
+

+
/>
+ 0 ) { + echo '
'; + echo ''; + /* translators: Number of DeepL translations used. */ + echo esc_html( sprintf( _n( '%s DeepL translation used:', '%s DeepL translations used:', 'glotpress' ), number_format_i18n( gp_array_get( $gp_external_translations, 'deepl_translations_used', 0 ) ) ) ); + if ( gp_array_get( $gp_external_translations, 'deepl_same_translations_used', 0 ) > 0 ) { + echo ' ' . esc_html( + sprintf( + /* translators: 1: Number of DeepL translations used with modifications. 2: Number of DeepL translations used without modifications. */ + __( '%1$s with modifications and %2$s without modifications.', 'glotpress' ), + number_format_i18n( gp_array_get( $gp_external_translations, 'deepl_translations_used', 0 ) - gp_array_get( $gp_external_translations, 'deepl_same_translations_used', 0 ) ), + number_format_i18n( gp_array_get( $gp_external_translations, 'deepl_same_translations_used', 0 ) ), + ) + ); + } + echo ''; + } + ?> +
+ + 0 ) { + /* translators: Number of chars translated with DeepL. */ + echo esc_html( sprintf( __( 'Chars translated with DeepL: %s', 'glotpress' ), number_format_i18n( $deepl_chars_used ) ) ); + } + ?> + +
+ + '; + if ( 200 != $deepl_response_code ) { + echo ''; + esc_html_e( 'Your DeepL API Key is not correct.', 'glotpress' ); + } else { + echo ''; + esc_html_e( 'Your DeepL API Key is correct.', 'glotpress' ); + } + echo ''; + } + ?> +
diff --git a/site/web/app/plugins/f-translate/templates/settings.php b/site/web/app/plugins/f-translate/templates/settings.php new file mode 100644 index 0000000..70d17ba --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/settings.php @@ -0,0 +1,39 @@ + 'priority', + 'how' => 'desc', + ); +} +?> +

+
+ +
+ + +
+ + +
+ + + + + + $project ) : + $name = str_replace( array( 'WordPress.org ', 'WordPress for ', 'WordPress ', 'ectory', ' - Development' ), '', $project->name ); + if ( $slug == 'wp-plugins' || $slug == 'wp-themes' ) { + $name = "Waiting $name"; + } + ?> + + + + + + $total_complete ) : + $gp_locale = GP_Locales::by_slug( $locale_slug ); + + if ( ! $gp_locale || ! $gp_locale->wp_locale ) { + continue; + } + + list( $locale, $set_slug ) = array_merge( explode( '/', $locale_slug ), [ 'default' ] ); + ?> + + + $project ) { + $projecturl = gp_url( gp_url_join( 'locale', $locale, $set_slug, $project->path ) ); + $project_name = str_replace( array( 'WordPress.org ', 'WordPress for ', 'WordPress ', 'ectory' ), '', $project->name ); + + if ( isset( $translation_locale_statuses[ $locale_slug ][ $project->path ] ) ) { + $percent = $translation_locale_statuses[ $locale_slug ][ $project->path ]; + + if ( 'waiting' === $project->path || 'wp-plugins' === $project->path || 'wp-themes' === $project->path ) { + $project_link_title = ''; + if ( 'wp-plugins' === $project->path || 'wp-themes' === $project->path ) { + $project_link_title = "Last Updated {$project->cache_last_updated}"; + + // Filter Plugins/Themes to Waiting (Most first) - Relying upon these being the last items. + $projecturl = add_query_arg( 'filter', 'strings-waiting-and-fuzzy', $projecturl ); + } + + // Color code it on -0~500 waiting strings + $percent_class = 100-min( (int) ( $percent / 50 ) * 10, 100 ); + // It's only 100 if it has 0 strings. + if ( 100 == $percent_class && $percent ) { + $percent_class = 90; + } + $percent_class = 'percent' . $percent_class; + echo ''; + } else { + $percent_class = 'percent' . (int) ( $percent / 10 ) * 10; + echo ''; + } + + } else { + echo ''; + } + } + ?> + + + +
+ + wp_locale ); ?> + + ' . number_format( $percent ) . '' . $percent . '%
+
+ + +english_name ) ); +$breadcrumb[] = trim( ucwords( $view ), 's' ) . ' translation status overview'; +gp_breadcrumb( $breadcrumb ); +gp_tmpl_header(); + +$columns = array( + 'all' => __( 'Translated Percent' ), + 'current' => __( 'Translated' ), + 'untranslated' => __( 'Untranslated' ), + 'fuzzy' => __( 'Fuzzy' ), + 'waiting' => __( 'Waiting' ), +); +$main_column_title = trim( ucwords( $view ), 's' ); + +?> +
+ + + + + %s", $title ); + } + + ?> + + + + $details ) { + $project_link = gp_url( gp_url_join( 'locale', $locale_path, $details->project->path ) ); + // Themes get a shortcut.. + if ( 'themes' == $view ) { + $project_link = gp_url( gp_url_join( 'projects', $details->project->path, $locale_path ) ); + } + + $project_overview_link = gp_url( gp_url_join( 'projects', $details->project->path ) ); + + echo ''; + printf( + '', + esc_attr( sprintf( __( "%s+ Active Installations" ), number_format_i18n( $details->installs ) ) ), + esc_attr( $main_column_title ), + $details->installs, + $project_overview_link, + $details->project->name + ); + + foreach ( $columns as $field => $title ) { + $sort_value = $stat_value = ( $details->stats->{$field} ?? 0 ); + $percent = $stat_value / $details->stats->all * 100; + $link = $project_link; + $cell_text = number_format_i18n( $stat_value ); + + if ( in_array( $field, [ 'fuzzy', 'untranslated', 'waiting' ] ) ) { + $percent = 100 - $percent; + $link = add_query_arg( 'filters[status]', $field, $project_link ); + } elseif ( 'all' == $field ) { + $percent = ($details->stats->current ?? 0) / $details->stats->all * 100; + $sort_value = $percent; + $cell_text = ( $percent > 50 ? floor( $percent ) : ceil( $percent ) ) . '%'; + } + + $percent_class = 'percent' . (int) ( $percent / 10 ) * 10; + + printf( '', + $percent_class, + $title, + $sort_value, + $link, + $cell_text + ); + } + echo ''; + } + ?> + +
%s%s
+
+ + +a, +p a { + text-decoration: underline; + text-decoration-thickness: max(1px,0.063rem); +} + +li>a:hover, +p a:hover { + color: var( --gp-color-accent-fg ); +} + +.gp-content a:active, +.gp-content a:focus, +.gp-content a:hover, +.gp-content .button.is-link:focus, +.gp-content .button.is-link:hover { + text-decoration: underline; + text-decoration-thickness: max(2px,0.125rem); +} + + +.gp-content .button-group > .button { + border-radius: 2px !important; + margin: 0; + display: inline-flex; +} + +.gp-content .button:visited { + color: var( --gp-color-btn-text ); + border: 1px solid var( --gp-color-btn-border ); + box-shadow: none; + background: var( --gp-color-btn-bg ); +} + +.gp-content .openai_api_key, .gp-content .deepl_api_key { + width: auto; +} + +.gp-content .openai_custom_prompt { + width: auto; + border: #7e7e7e thin solid !important; + border-radius: 3px; + height: 8rem; +} + +@media screen and (min-width: 750px) { + .gp-content .openai_api_key, .gp-content .deepl_api_key { + width: 30rem; + } + + .gp-content .openai_custom_prompt { + width: 30rem; + } +} + +select.is-small { + padding-top: 3px; + padding-bottom: 3px; + font-size: 12px; + min-height: 28px; +} + +/** + * GlotPress overrides. + */ + +:root { + --gp-color-fg-default: #000000; + --gp-color-accent-fg: #2271b1; + --gp-color-accent-emphasis: #135e96; + + --gp-color-border-default: #72777c; + --gp-color-border-muted: #b1b8c1; + + --gp-color-btn-text: #2271b1; + --gp-color-btn-border: #2271b1; + --gp-color-btn-hover-text: #135e96; + --gp-color-btn-hover-border: #135e96; + + --gp-color-btn-primary-text: #fff; + --gp-color-btn-primary-bg: #2271b1; + --gp-color-btn-primary-border: #2271b1; + --gp-color-btn-primary-hover-text: #fff; + --gp-color-btn-primary-hover-bg: #135e96; + --gp-color-btn-primary-hover-border: #135e96; + + --gp-color-status-fuzzy-subtle: #f6a983; + --gp-color-status-current-subtle: #b5e1b9; + --gp-color-status-old-subtle: #cdc5e1; + --gp-color-status-waiting-subtle: #ffe399; + --gp-color-status-rejected-subtle: #eb9090; + + --gp-color-tour: #d54e21; +} + +.locale-sub-projects .stats, +.translation-sets .stats { + text-align: left; +} + +table.glossary tr.editor, +table.translations tr.editor, +table.glossary tr.editor:hover, +table.translations tr.editor:hover { + border-left: 0; + box-shadow: none; +} + +.gp-content textarea { + max-width: 100%; +} + +.gp-content summary { + display: list-item; +} + +#gp-js-message { + top: 50px; + left: auto !important; + right: 20px; + font-size: 100%; + padding: 1em 1.5em; + border-radius: 5px; + max-width: 300px; +} + +#gp-js-message:empty { + display: none; +} + +@media screen and (max-width: 500px) { + div#gp-js-message { + top: 5px; + right: 5px; + left: 5px !important; + max-width: 100%; + z-index: 99999; + } +} + +@media screen and (min-width: 1025px) { + div#gp-js-message { + right: 50px; + } +} + +.gp-js-error { + color: #fff; + background-color: #dc3232; +} + +.gp-js-notice { + color: #333; + background-color: #ffb900; +} + +.gp-js-success { + color: #fff; + background-color: #46b450; +} + +.gp-content { + margin: 20px auto; + max-width: 1600px; + padding: 0 20px; +} + +.gp-content h2 { + font-size: 1.5rem; +} + +.gp-content h3 { + font-size: 1.25rem; + margin: 2px 0 .6em; +} + +.gp-content .breadcrumb { + background: none; + border: 0; + padding: 0; + margin: 0 0 1rem; +} + +p.description { + margin: 1em; +} + +a.project-actions { + display: inline-block; + margin-bottom: 1rem; +} + +a.project-actions:not(:hover):not(:focus) { + text-decoration: none; +} + +a.project-actions.open { + display: inline-block; + margin-bottom: .5rem; +} + +small code { + font-size: 1em; +} + +p.actionlist, +div.actionlist, +h2 + .glossary-description, +h2 + .project-description { + margin-top: 1em; + margin-bottom: 1em; +} + +.glossary-description { + font-size: 16px; +} + +.with-sub-projects #translation-sets { + width: auto; +} + +@media screen and (max-width: 960px) { + .with-sub-projects { + margin-left: 0; + } + + #sub-projects, + .with-sub-projects #translation-sets { + float: none; + margin: 0; + } + + #translation-sets { + overflow-x: auto; + } +} + +/* Change some colors (http://codepen.io/hugobaeta/full/RNOzoV/) */ +span.morethan90 { + background: none; + font-size: 90%; + color: #509040; +} + +span.context, +span.priority { + display: inline-block; + color: #1e1e1e; + font-size: 12px; + font-weight: 400; + padding: .1em 0; + margin-left: .2em; + background-color: #a0a5aa; + -webkit-box-decoration-break: clone; + box-decoration-break: clone; + box-shadow: .3em 0 0 #a0a5aa, -.3em 0 0 #a0a5aa; + border-radius: 0; +} + +span.context + span.priority { + margin-left: 1em; +} + +.priority-high span.priority { + color: #fff; + background-color: rgba( 154, 35, 35, 0.65 ); + box-shadow: 0.3em 0 0 rgba( 154, 35, 35, 0.65 ), -0.3em 0 0 rgba( 154, 35, 35, 0.65 ); +} + +.priority-low span.priority { + background-color: rgba( 213, 213, 213, 0.65 ); + box-shadow: 0.3em 0 0 rgba( 213, 213, 213, 0.65 ), -0.3em 0 0 rgba( 213, 213, 213, 0.65 ); +} + + +table.translations td.original ul { + margin: 0; + padding: 0; + list-style-type: none; +} + +table.translations td.original ul li, +table.translations td.translation ul li { + padding-bottom: .2em; + border-bottom: 1px dotted #72777c; +} + +table.translations td.original li:last-child, +table.translations td.translation li:last-child { + padding-bottom: 0; + border-bottom: none; +} + +table.translations td.original small, +table.translations td.translation small { + color: #293139; + font-size: 12px; +} + +.original-tags { + margin-top: .2em; +} + +.original-tags > * { + max-width: 100%; +} + +ul a.edit, +dt a.edit { + background: none; + color: inherit; +} + +/* Glossary editor */ +table.glossary .editor .strings { + width: 100%; + float: none; +} + +table.glossary .editor .strings input[type="text"] { + width: 100%; +} + +table.glossary .editor .meta { + width: 100%; + float: none; + margin: 30px 0 0; + font-size: 14px; +} + +table.glossary .editor .meta h3 { + font-size: 22px; +} + +@media screen and (min-width: 1024px) { + table.glossary .editor .strings { + width: 60%; + float: left; + } + + table.glossary .editor .meta { + width: calc( 40% - 20px ); + float: right; + margin: 0; + } +} + +table.glossary .editor .meta dl { + margin: 5px 0 0; +} + +table.glossary .editor .meta dd { + font-weight: 400; +} + +table.glossary .editor .meta dl:first-child { + margin-top: 0; +} + +table.glossary .editor textarea { + width: 100%; + height: 80px; + resize: vertical; +} + +.invisibles { + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +span.translation-text, +span.original-text { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; + white-space: pre-wrap; +} + +.ui-tooltip { + background: #fff; + border: 1px solid #ccc; + box-shadow: 0 2px 10px rgba(0,0,0,.1); + border-radius: 0; + z-index: 20; +} + +.ui-tooltip:after { + border-color: #fff transparent; + top: -9px; +} + +.ui-tooltip:before { + display: block; + content: ""; + border-color: #ccc transparent; + border-style: solid; + border-width: 0 10px 10px; + width: 0; + position: absolute; + top: -10px; + left: 1em; +} + +.ui-tooltip ul { + padding: 0; + margin: 5px; +} + +.ui-tooltip ul li { + font-size: 15px; +} + +.ui-tooltip ul li + li { + margin-top: 5px; +} + +/* custom markup */ +#headline .menu-link { + padding-right: 20px; +} + +/* overrides the global stylesheet: */ +.gp-content blockquote { + border: 0; + background: none; + padding: 0; + margin: 0; +} + +/*.gp-content ul { + padding-left: 0; +}*/ + +/*.gp-content #submit { + font-size: 1em; + margin: 0.4em 0.1em 0 0; +}*/ + +.notice { + background: #e5f5fa; + border-left: 3px solid #00a0d2; + margin-bottom: 10px; +} + +.notice a { + color: #006799; +} + +.notice p { + font-size: 15px; +} + +p.intro { + width: 75%; + margin-bottom: 20px; + font-size: 1.1em; + line-height: 1.5em; +} + +.filter-header { + display: inline-block; + position: relative; + margin: 30px 0; + padding: 0 20px; + width: 100%; + box-shadow: 0 1px 1px rgba(0,0,0,0.04); + border: 1px solid #dfdfdf; + background: #efefef; + color: #555; +} + +ul.filter-header-links { + display: inline-block; + margin: 0; + padding: 0; +} + +.filter-header-links li { + display: inline-block; + margin: 0; +} + +.filter-header-links li > a, +.filter-header-links li > span { + display: inline-block; + margin: 0 10px; + padding: 15px 0; + border-bottom: 4px solid #efefef; + color: #666; + cursor: pointer; + text-decoration: none !important; +} + +.filter-header-links li:hover > a, +.filter-header-links li:hover > span { + border-bottom-color: #666; +} + +.filter-header-links .current { + box-shadow: none; + border-bottom: 4px solid #666; + color: #222; +} + +.filter-header-links li.has-children { + position: relative; +} + +.filter-header-links li.has-children li a { + margin: 0 9px; + padding: 5px 0; +} + +.filter-header-links li.has-children ul { + display: none; +} + +.filter-header-links li.has-children:hover ul { + display: block; + position:absolute; + background: #efefef; + padding: 0; + box-shadow: 0 1px 1px rgba(0,0,0,0.04); + border: 1px solid #dfdfdf; + border-top: 0; + z-index: 1; + margin: 0; +} + +.filter-header-link__sep { + color: #ccc; +} + + +.filter-header .search-form { + float: right; + margin: 12px 0 11px; +} + +.filter-header .filter-search { + margin: 0; + padding: 3px 5px; + width: 280px; + font-size: 16px; + font-weight: 300; + line-height: 1.5; + border: 1px solid #ddd; + box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 ); + background-color: #fff; + color: #333; + outline: none; + border-radius: 0; + -webkit-appearance: textfield; +} + +@supports (display: flex) and (not (display: grid)) { + .locales { + display: flex; + flex-wrap: wrap; + margin: 0 -15px; + } + + .locales .locale { + flex-grow: 1; + margin: 0 15px 30px; + width: calc( 33% - 30px ); + } +} + +@supports (display: grid) { + .locales { + display: -ms-grid; + display: grid; + -ms-grid-columns: 1fr; + grid-template-columns: 1fr; + grid-gap: 30px; + } + + @media screen and (min-width: 500px) { + .locales { + -ms-grid-columns: 1fr 30px 1fr; + grid-template-columns: repeat(2, 1fr); + } + } + + @media screen and (min-width: 1024px) { + .locales { + -ms-grid-columns: 1fr 30px 1fr 30px 1fr; + grid-template-columns: repeat(3, 1fr); + } + } + + @media screen and (min-width: 1300px) { + .locales { + -ms-grid-columns: 1fr 30px 1fr 30px 1fr; + grid-template-columns: repeat(4, 1fr); + } + } +} + +/* Clearfix */ +.locale-header:before, +.locale-header:after, +.project-box-header:before, +.project-box-header:after, +.project-status:before, +.project-status:after, +.locale-project-contributors:before, +.locale-project-contributors:after { + content: ""; + display: table; +} + +.locale-header:after, +.project-box-header:after, +.project-status:after, +.locale-project-contributors:after { + clear: both; +} + +.locale { + border: 1px solid #72777c; + box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); + background: #fff; +} + +.locale a { + text-decoration: none; +} + +.locale .contributors a, +.locale-box .contributors a { + text-decoration: none !important +} + +.locale.percent-100 { + border-color: #509040; +} + +.locale-button { + background: #f9f9f9; + text-align: center; + padding: 20px 0; +} + +.locale .name, +.locale-box .name { + display: inline-block; + margin: 0; + padding: 20px 10px 20px 20px; +} + +.locale .name { + max-width: calc( 100% - 100px ); +} + +.locale .name .english { + font-size: 18px; +} + +.locale .name li, +.locale-box .name li { + display: block; +} + +.locale .name li.english a, +.locale-box .name li.english { + font-weight: 600; +} + +.locale-box.project .name li.english { + font-weight: normal; +} + +.locale .name li.code a, +.locale-box .name li.code { + color: #999; +} + +.locale .contributors, +.locale-box .contributors, +.locale-box .project-status { + float: right; + margin-top: 20px; + padding: 10px 20px; + color: #006799; + border-left: 1px solid #72777c; + text-align: center; +} + +.locale-box .project-status { + color: #509040; + font-weight: 600; +} + +.locale .contributors .dashicons, +.locale-box .contributors .dashicons { + font-size: 2em; + padding-bottom: 10px; + display: inline; +} + +.locale-box .contributors .dashicons { + font-size: 1.5em; +} + +.locale .percent, +.project-box .percent, +.project .percent { + width: 100%; + height: 4px; + background-color: #d6d6d6; +} + +.locale .percent-complete, +.project-box .percent-complete, +.project .percent-complete { + height: 4px; + background-color: #509040; +} + +.locale-intro { + float: left; + width: 100%; + max-width: 600px; + margin-top: 20px; + font-family: Georgia, Times, "Times New Roman", serif; + font-size: 16px; + line-height: 1.6em; +} + +.locale-box { + float: right; + width: 250px; + border: 1px solid #72777c; + box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); + background: #fff; +} + +.projects-paging { + clear: both; + display: flex; + justify-content: flex-end; + margin: 1rem 0; +} + +.projects { + clear: both; + display: grid; + grid-gap: 1rem; + grid-template-columns: minmax( 0, 1fr ); + margin: 1rem 0; +} + +@media screen and (min-width: 799px) { + .projects { + grid-template-columns: repeat( 2, minmax( 0, 1fr ) ); + } +} + +@media screen and (min-width: 1219px) { + .projects { + grid-template-columns: repeat( 3, minmax( 0, 1fr ) ); + } +} + +@media screen and (min-width: 1500px) { + .projects { + grid-template-columns: repeat( 4, minmax( 0, 1fr ) ); + } +} + +.projects .project { + display: flex; + flex-direction: column; + justify-content: flex-end; + border: 1px solid #72777c; + box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); + background: #fff; +} + +.projects .project.percent-100 { + border-color: #509040; +} + +.projects .project-top { + position: relative; + padding: 20px; + min-height: 140px; + margin-bottom: auto; +} + +.projects .project-name, +.projects .project-description { + margin-left: 120px; + overflow-wrap: break-word; +} + +.projects .project-name h4 { + border: 0; + margin: 0 0 8px; + font-size: 18px; + font-weight: 600; +} + +.projects .project-description { + border-left: 0; + margin-top: 0; + padding: 0; + font-size: .875rem; +} + +.projects .project-description p { + margin: 0; +} + +.projects .project-icon { + position: absolute; + top: 20px; + left: 20px; + width: 100px; + height: 100px; + margin: 0 20px 20px 0; +} + +.projects .project-icon .plugin-icon { + margin: 0 !important; +} + +.projects .project-icon .default-icon, +.projects .project-icon .wordpress-icon { + width: 100px; + height: 100px; + background: #dedede; +} + +.projects .project-icon .plugin-icon { + width: 100px; + height: 100px; + background-size: contain; +} + +.projects .project-icon .default-icon span, +.projects .project-icon .wordpress-icon span { + height: 100px; + width: 100px; + font-size: 85px; + line-height: 100px; + color: #a0a5aa; +} + +.projects .project-icon .wordpress-icon { + background: #464646; +} + +.projects .project-icon .wordpress-icon span { + color: #fff; +} + +.projects .project-icon .icon img { + width: 100px; + height: auto; +} + +.projects .project-status { + font-size: 13px; +} + +.projects .project-status > div { + width: 25%; + float: left; + margin: 0 0 20px; + text-align: center; +} + +.projects .project-status > div:not(:first-child) { + border-left: 1px solid #72777c; +} + +@media screen and (max-width: 500px) { + .projects .project-status > div { + width: 50%; + } + + .projects .project-status > div:nth-child(3) { + border-left: 0; + } +} + +.projects .project-status-title { + display: inline-block; + margin-bottom: 6px; + color: #82878c; +} + +.projects .project-status-value { + display: block; + font-size: 16px; + font-weight: 600; +} + +.projects .project-status-progress .project-status-value { + color: #509040; +} + +.projects .project-bottom { + background: #f9f9f9; + text-align: center; + padding: 20px 0; +} + +/* Project */ +.project-header { + margin-bottom: 30px; + display: flex; +} + +.project-header .project-description { + flex: 1; + margin-top: 20px; + margin-left: 0; + max-width: 100%; + padding: 0; + border: 0; +} + +.project-header .project-box { + position: relative; + width: 350px; + height: 100%; + margin-left: 20px; + border: 1px solid #72777c; + box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1); + background: #fff; + font-size: 14px; +} + +.project-box.percent-100 { + border-color: #509040; +} + +.project-box .project-box-header { + position: relative; + padding: 15px; +} + +.project-box .project-icon { + float: left; + width: 64px; + height: 64px; + margin: 0 20px 20px 0; +} + +.project-box .project-icon .plugin-icon { + width: 64px; + height: 64px; + background-size: contain; +} + +.project-box .project-icon .default-icon, +.project-box .project-icon .wordpress-icon { + width: 64px; + height: 64px; + background: #dedede; +} + +.project-box .project-icon .default-icon span, +.project-box .project-icon .wordpress-icon span { + height: 64px; + width: 64px; + font-size: 42px; + line-height: 64px; + color: #a0a5aa; +} + +.project-box .project-icon .wordpress-icon { + background: #464646; +} + +.project-box .project-icon .wordpress-icon span { + color: #fff; +} + +.project-box .project-icon .icon img { + width: 64px; + height: auto; +} + +.project-box .project-meta { + float: left; + width: 165px; + list-style: none; + margin: 0; + padding: 0; +} + +.project-meta .project-name { + font-weight: 600; +} + +.project-meta .locale-code { + color: #999; +} + +.project-box .project-status { + position: absolute; + top: 50%; + right: 15px; + transform: translateY(-50%); + font-size: 20px; + font-weight: 600; + color: #509040; + padding: 10px 0 10px 15px; + border-left: 1px solid #72777c; +} + +.project-box .project-box-footer { + background: #f9f9f9; +} + +ul.projects-dropdown { + border-top: 1px solid #72777c; +} + +.project-status-progress + .project-box-footer > ul.projects-dropdown { + border-top: 0; +} + +ul.projects-dropdown, +ul.projects-dropdown ul { + margin: 0; + padding: 0; +} + +.projects-dropdown li { + list-style: none; +} + +.projects-dropdown a, +.projects-dropdown a:hover, +.projects-dropdown a:focus { + color: #333; + text-decoration: none; +} + +.projects-dropdown a:hover, +.projects-dropdown a:focus { + background: #ddd; +} + +ul.projects-dropdown ul { + position: absolute; + left: -1px; + right: -1px; + width: inherit; + background: #f9f9f9; + border: 1px solid #72777c; + border-top: 0; + box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.04); + display: none; + z-index: 10; +} + +ul.projects-dropdown.open ul { + display: block; +} + +ul.projects-dropdown li > span, +ul.projects-dropdown li > a { + position: relative; + display: block; + padding: 10px 50px 10px 15px; + cursor: pointer; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +/* Dropdown arrow */ +ul.projects-dropdown > li > span:after { + position: absolute; + top: 5px; + right: 25px; + content: "\f140"; + width: 20px; + height: 30px; + font: 20px/1 "dashicons"; + border-left: 1px solid #72777c; + padding: 5px 0 5px 12px; + box-shadow: inset 1px 0 0 #fff; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +ul.projects-dropdown.open > li > span:after { + content: "\f142"; +} + +/* Percentage */ +ul.projects-dropdown li > a > span { + position: absolute; + right: 15px; +} + +/* Sub Projects table */ +.locale-sub-projects .sub-project-status { + font-size: 90%; + color: #a0a5aa; + padding-left: .5em; +} + +.locale-sub-projects .sub-project-status.percent-90 { + color: #509040; +} + +@media screen and (max-width: 675px) { + .locale-sub-projects th, + .locale-sub-projects td { + display: block; + } + + .locale-sub-projects thead th { + display: none; + } + + .locale-sub-projects thead th:nth-child(1) { + display: block; + width: 97%; + } + + table.locale-sub-projects th:first-child, + table.locale-sub-projects td:first-child { + border-left: none; + border-right: none; + width: 100% !important; + } + + table.locale-sub-projects td.stats { + padding-left: 15px; + border-right :none; + } + + .locale-sub-projects td.stats.translated:before { + content: "Translated:"; + } + + .locale-sub-projects td.stats.fuzzy:before { + content: "Fuzzy:"; + } + + .locale-sub-projects td.stats.untranslated:before { + content: "Untranslated:"; + } + + .locale-sub-projects td.stats.waiting:before { + content: "Waiting:"; + } + + .locale-sub-projects td.stats.changesrequested:before { + content: "Changes requested:"; + } +} + +.projects .no-projects-found { + width: 100%; + float: none; + text-align: center; + margin: 30px 0; + font-size: 1.5em; + color: #999; + min-height: 5em; +} + +.wporg-notice { + background: #fff; + border-left: 4px solid #fff; + margin: 5px 0 15px 0; + padding: 1px 12px; +} + +.wporg-notice p { + margin: 0.5em 0; + padding: 2px; +} + +.wporg-notice-error { + background: #fbeaea; + border-left-color:#dc3232; +} + +.wporg-notice-warning { + background: #fff8e5; + border-left-color:#ffb900; +} + +.wporg-notice-info { + background: #e5f5fa; + border-left-color:#00a0d2; +} + +/* Responsive styles */ +@media screen and (max-width: 1024px) { + #hello { + margin: 25px 10px 15px; + } + + #hello a { + white-space: nowrap; + } + + p.intro { + width: 100%; + } + + .locale-intro { + float: none; + } + + .locale-box { + float: none; + width: 100%; + margin-top: 20px; + } + + .filter-header .search-form { + float: none; + width: 100%; + } + + .filter-header .filter-search { + width: 100%; + } + + .project-header { + display: block; + } + + .project-header .project-box { + margin-top: 20px; + margin-left: 0; + width: 100%; + } + .stats-table table thead th { + display: none; + } + .stats-table table tbody th, + .stats-table table tbody tr, + .stats-table table tbody td { + display: block; + text-align: left; + } + .stats-table table tbody tr { + margin-top: 20px; + } + + .stats-table table tbody td { + padding: 3px 10px; + position: relative; + padding-left: 50%; + } + .stats-table table tbody td:before { + position: absolute; + top: 0; + left: 10px; + width: 45%; + } + + .stats-table td:before { + content: attr(data-column-title); + } +} + +.stats-table table.table { + width: 100%; + text-align: center; + border-collapse: collapse; + table-layout: fixed; +} + +.stats-table table thead { + color: #32373C; + background: white; +} +.stats-table table td, table th { + text-align: unset; /* Override wporg-main. */ +} +.stats-table table thead th { + cursor: pointer; + margin: 0; + margin-right: 0px; + font-weight: bold; + text-align: center; + vertical-align: middle; + padding: 10px 15px 10px 10px; + font-size: .8em; + line-height: 1.2; + border-right: 1px solid #72777C; + border-bottom: 1px solid #72777C; +} + +.stats-table table thead th:last-child { + border-right: none; +} + +.stats-table table th { + overflow-wrap: break-word; +} + +.stats-table table th.col-locale-code { + width: 110px; +} + +.stats-table table th.col-wordpress-org { + width: 60px; +} + +.stats-table table th.col-locale { + width: 180px; +} + +.stats-table .none { + color: #ccc; +} + +.stats-table tbody th { + text-align: left; + padding: 10px; + background: #f9f9f9; + box-shadow: inset 0 1px 0 rgba(0,0,0,.05); +} + +.stats-table tbody tr:hover { + opacity: 0.8; + outline: 1px solid #191E23; + outline-offset: 0; +} + +.stats-table tbody tr th a:link, +.stats-table tbody tr th a:hover, +.stats-table tbody tr th a:visited { + color: #191E23; +} + +.stats-table tbody td { + padding: 10px 0; + box-shadow: inset 0 1px 0 rgba(255,255,255,.15); +} + +.stats-table tbody td.percent100 {background: #46B450; color: white;} +.stats-table tbody td.percent90 {background: #6BC373;} +.stats-table tbody td.percent80 {background: #90D296;} +.stats-table tbody td.percent70 {background: #B5E1B9;} +.stats-table tbody td.percent60 {background: #C7E8CA;} +.stats-table tbody td.percent50 {background: #FFE399;} +.stats-table tbody td.percent40 {background: #FBC5A9;} +.stats-table tbody td.percent30 {background: #F1ADAD;} +.stats-table tbody td.percent20 {background: #EA8484;} +.stats-table tbody td.percent10 {background: #E35B5B;} +.stats-table tbody td.percent0 {background: #DC3232; color: white;} + +.stats-table tbody td a:link, +.stats-table tbody td a:hover, +.stats-table tbody td a:visited { + color: #191E23; + display: inline-block; + width: 100%; + height: 100%; +} + +.stats-table tbody td.percent100 a:link, +.stats-table tbody td.percent0 a:link, +.stats-table tbody td.percent100 a:hover, +.stats-table tbody td.percent0 a:hover, +.stats-table tbody td.percent100 a:visited, +.stats-table tbody td.percent0 a:visited { + color: white; +} + +.stats-table tbody tr td { + vertical-align: middle; +} + +.stats-table th.headerSortUp:after, +.stats-table th.headerSortDown:after { + font-family: "dashicons"; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.stats-table th.headerSortUp:after { + content: "\f140"; +} + +.stats-table th.headerSortDown:after { + content: "\f142"; +} + +.sort-bar { + float: right; + margin: -30px 0 1rem 5px; + background-color: #e2e4e7; + padding: 5px; + border: 1px solid #dfdfdf; + border-top: none; +} + +.sort-bar label { + font-size: 12px; + line-height: 14px; +} + +.sort-bar .filter-sep { + color: #ccc; +} + +.project-sub-page h3 { + margin: 30px 0 10px; + font-size: 1.2em; +} + +.project-sub-page p { + margin-bottom: 1em; +} + +ul.contributors-list, +ul.language-packs-list { + margin: 30px 0; + padding: 0; + list-style: none; +} + +.contributors-list li, +.language-packs-list li { + margin: 10px 0 10px 30px; +} + +.contributors-list li strong, +.language-packs-list li strong { + display: block; + margin-left: -30px; +} + +.language-packs-list li strong .locale-code { + font-size: 11px; + color: #555d66; +} + +.ct-chart-contributors { + position: relative; +} + +.ct-chart-contributors .ct-series-a .ct-area { /* current */ + fill: #b5e1b9; + fill-opacity: .5; +} + +.ct-chart-contributors .ct-series-b .ct-area { /* waiting */ + fill: #ffe399; + fill-opacity: .5; +} + +.ct-chart-contributors .ct-series-c .ct-area { /* rejected */ + fill: #eb9090; + fill-opacity: .5; +} + +ul.ct-legend { + position: absolute; + right: 0; + top: -15px; + padding: 0; + list-style: none; + z-index: 5; + margin: 0; + font-size: 12px; +} + +.ct-legend li { + position: relative; + display: inline-block; + padding-left: 16px; + margin-right: 3px; + cursor: pointer; +} + +.ct-legend li:before { + content: ''; + position: absolute; + top: 4px; + left: 0; + width: 12px; + height: 12px; + border: 3px solid transparent; + border-radius: 2px; +} + +.ct-legend li.inactive:before { + background: transparent; +} + +.ct-legend .ct-series-0:before { /* current */ + background-color: #b5e1b9; + border-color: #b5e1b9; +} + +.ct-legend .ct-series-1:before { /* waiting */ + background-color: #ffe399; + border-color: #ffe399; +} + +.ct-legend .ct-series-2:before { /* rejected */ + background-color: #eb9090; + border-color: #eb9090; +} + +@media screen and (min-width: 600px) { + .contributors-list { + -webkit-column-count: 2; + -webkit-column-gap: 3%; + -moz-column-count: 2; + -moz-column-gap: 3%; + column-count: 2; + column-gap: 3%; + } +} + +.contributors-list-box { + display: inline-block; + width: 100%; + margin-bottom: 20px; + padding-bottom: 10px; + border: 1px solid #ccc; + background: #fff; + page-break-inside: avoid; + break-inside: avoid; +} + +.contributors-list-box h4 { + position: relative; + display: block; + padding: 5px 8px; + margin: 0 0 10px; + background: #f9f9f9; + border-bottom: 1px solid #ccc; + font-size: 14px; +} + +.contributors-list-box .contributors-count { + font-size: 11px; + color: #82878c; + padding-left: 3px; +} + +.contributors-list-box .locale-code { + position: absolute; + top: 1px; + right: 5px; + font-size: 10px; + color: #b4b9be; +} + +.contributors-list-box p { + margin-bottom: .5em; + padding: 0 8px; +} + +.contributors-list-box p:last-child { + margin-bottom: 0; +} + +.contributors-list-filter { + margin: 15px 0 10px; + text-align: right; +} + +.contributors-list-filter .search { + margin: 0 0 0 10px; + padding: 2px 4px; + width: 280px; + font-size: 13px; + font-weight: 300; + border: 1px solid #ddd; + box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 ); + background-color: #fff; + color: #333; + outline: none; + border-radius: 0; + -webkit-appearance: textfield; +} + +@media screen and (max-width: 600px) { + .contributors-list-filter { + text-align: center; + } + + .contributors-list-filter .search { + display: block; + width: 100%; + margin: 10px 0; + } +} + +/* Buttons that look like links, for a cross of good semantics with the visual */ +.button-link { + margin: 0; + padding: 0; + box-shadow: none; + border: 0; + border-radius: 0; + background: none; + outline: none; + cursor: pointer; + font: inherit; + color: #0073aa; +} + +.button-link:hover { + color: #00a0d2; +} + +.contributors-list-filter .filter.active { + border-bottom: 1px solid #dfdfdf; +} + +.contributors-list[data-current-filter="has-editors"] .no-editors, +.contributors-list[data-current-filter="no-editors"] .has-editors { + display: none !important; +} + +@media screen and (min-width: 600px) { + .locale-project-contributors-group { + float: left; + } + + .locale-project-contributors-contributors { + width: 65%; + margin-right: 5%; + } + + .locale-project-contributors-editors { + width: 30%; + } +} + +.locale-project-contributors-group hr { + margin: 30px 0; + border-color: #72777c; +} + +.locale-project-contributors-group ul { + padding: 0; + margin: 10px 0; + list-style: none; +} + +.locale-project-contributors-group li { + margin: 0 0 10px; +} + +.locale-project-contributors-group.locale-project-contributors-editors .avatar { + vertical-align: middle; + margin-right: 5px; +} + +.locale-project-contributors-group ul.compressed li { + display: inline-block; + margin-right: 8px; + font-size: small; +} + +.locale-project-contributors-group ul.compressed li:not(:last-child):after { + content: ', '; +} + +.locale-project-contributors-group ul.compressed .avatar { + margin-right: 3px; +} + +.locale-project-contributors-table { + width: 100%; +} + +.locale-project-contributors-table .contributor-details { + width: 40%; + overflow: hidden; +} + +.locale-project-contributors-table .contributor-avatar { + float: left; + width: 40px; + display: flex; + flex-direction: column; +} + +.locale-project-contributors-table .contributor-name { + margin-left: 50px; + display: flex; + flex-direction: column; +} + +.locale-project-contributors-table .translation-editor { + width: 40px; + color: #fff; + font-weight: 200; + font-size: 12px; + line-height: 16px; + text-align: center; + background-color: #826eb4; +} + +.locale-project-contributors-table tr { + vertical-align: top; +} + +.locale-project-contributors-table th { + font-weight: bold; +} + +.locale-project-contributors-table th, +.locale-project-contributors-table td { + padding: 10px; + font-size: 14px; + border-bottom: 1px solid #72777c; +} + +.locale-project-contributors-table tr:last-child td { + border-bottom: 0; +} + +.locale-project-contributors-table th.contributor-stats { + text-align: center; +} + +.locale-project-contributors-table td.contributor-stats div { + text-align: center; + width: 25%; + float: left; +} + +.locale-project-contributors-table td.contributor-stats div span { + text-transform: uppercase; + font-size: 12px; +} + +.locale-project-contributors-table td.contributor-stats div.current span { + color: #6bc373; +} + +.locale-project-contributors-table td.contributor-stats div.waiting span { + color: #ffc733; +} + +.locale-project-contributors-table td.contributor-stats div.fuzzy span { + color: #f78b53; +} + +.locale-project-contributors-table td.contributor-stats .detailed { + width: 100%; + clear: left; + float: none; +} + +.detailed summary { + text-align: right; + font-size: 12px; + outline: none; + cursor: pointer; +} + +.detailed__project-name { + display: block; + clear: left; + text-align: left; + font-size: 12px; + padding-top: 5px; +} + +.locale-project-contributors-contributors .stats-hint { + text-align: right; + font-size: 12px; +} + +@media screen and (max-width: 500px) { + .locale-project-contributors-table thead { + display: none; + } + + .locale-project-contributors-table tbody td { + width: 100%; + display: block; + } + + .locale-project-contributors-table .contributor-details, + .locale-project-contributors-table .contributor-stats { + width: 100%; + border-bottom: 0; + } + + .locale-project-contributors-table .contributor-details span { + float: none; + } + + .locale-project-contributors-table .contributor-stats:before, + .locale-project-contributors-table .contributor-stats:after { + content: ""; + display: table; + } + + .locale-project-contributors-table .contributor-stats:after { + clear: both; + } +} + +.consistency-form { + margin: 30px 0; + text-align: center; +} + +.consistency-form p { + margin-bottom: 1em; +} + +.gp-content .consistency-form-search, +.consistency-form-locale, +.consistency-form-project { + vertical-align: middle; +} + +.consistency-form-search { + width: 300px; +} + +.consistency-form-locale { + width: 150px; +} + +.consistency-form-project { + width: 120px; +} + +.consistency-field { + display: inline-block; +} + +.consistency-field label { + display: block; + margin: 0 3px; + font-size: 13px; + text-align: left; +} + +.consistency-table { + width: 100%; + border-collapse: collapse; + table-layout: fixed; + margin: 30px 0; + border: 0; +} + +.consistency-table thead th { + width: 50%; + text-align: center; +} + +.consistency-table td { + vertical-align: top; +} + +.consistency-table tr.new-translation th { + position: -webkit-sticky; + position: sticky; + top: 0; + padding: 10px 7.5px; + background-color: var(--gp-color-canvas-subtle); + border-top-width: 3px; +} + +.consistency-table tbody > tr.new-translation:first-child th { + border-top-width: 0; +} + +/* This is when the admin bar start to stick. */ +@media screen and (min-width: 601px) { + .consistency-table tr.new-translation th { + top: var(--wp-admin--admin-bar--height); + } +} + +/* This is when the global header start to stick. */ +@media screen and (min-width: 890px) { + .consistency-table tr.new-translation th { + top: calc(var(--wp-global-header-height) + var(--wp-admin--admin-bar--height)); + } +} + +.anchor-jumper { + padding: 0 5px; + font-weight: 600; +} + +.consistency-table tr.new-translation th .anchor-jumper { + float: right; +} + +.consistency-table .string.rtl { + direction: rtl; +} + +.consistency-table .meta { + margin-top: 10px; + color: #818181; +} + +.consistency-table .project-wordpress { + background: #E5F5FA !important; +} + +.translations-unique { + margin: 5px; +} + +.translations-unique .space { + background: #cbcdce; + white-space: pre; + opacity: .5; +} + +.paging a { + text-decoration: none !important; +} + +/* Word wraps and fixed table layout for translations */ +.editor .original, +.editor .translation, +span.context, +table.translations td.original, +table.translations td.translation { + word-break: normal; + word-wrap: break-word; + overflow-wrap: break-word; +} + +table.translations th.gp-column-priority, +table.translations td.priority { + display: none; +} + +table.translations tr.preview:not(.has-warnings) > td.priority + td.original { + border-left: none; +} + +table.translations { + table-layout: fixed; +} + +table.translations th.gp-column-original, +table.translations th.gp-column-translation { + width: 50%; +} + +table.translations th.gp-column-actions { + width: 5em; + text-align: center; +} + +table.translations td.translation span.missing { + color: #666; +} + +/* NEW EDITOR */ + +.editor-panel .strings { + float: none; + width: 100%; + min-width: 100%; +} + +.editor-panel .textareas textarea { + width: 100%; + border: 0; + background: #fff !important; + color: #1e1e1e !important; + outline: none; + padding: 15px 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; + font-size: 16px; + resize: vertical; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.editor-panel .textareas p, +.editor-panel .textareas blockquote.translation { + display: none; +} + +.editor-panel .original { + max-width: 100%; + font-weight: normal; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; +} + +.editor-panel .original-raw { + display: none; +} + +.editor-panel .meta dt { + margin-right: .25em; +} + +.editor-panel .meta dd { + font-weight: 400; +} + +.editor-panel .meta { + float: none; + width: 100%; + margin: 0; + padding: 0 10px 20px 10px; +} + +.editor-panel .meta .status-actions { + margin-bottom: 15px; +} + +.editor-panel .meta .status-actions button strong { + margin-right: .4em; +} + +/*button.approve strong { + color: #46b450; +}*/ + +button.button.is-primary.approve, +button.button.reject, +button.button.changesrequested, +button.button.fuzzy +{ + margin-bottom: 0.5rem; +} + +button.reject strong { + color: #dc3232; +} + +button.fuzzy strong { + color: #f56e28; +} + +.editor-panel .meta dl { + font-size: 14px; + margin: 5px 0 0; +} + +.editor-panel .meta dl:first-child { + margin-top: 0; +} + +table.translations tr.editor td { + padding: 0; + border-bottom-width: 2px; + border-top: 1px solid #72777c; +} + +@media screen and (min-width: 1024px) { + .editor-panel { + display: flex; + align-items: flex-start; + } +} + +.editor-panel__left { + flex: 1; + border-bottom: 1px solid #72777c; + min-width: 1%; +} + +@media screen and (min-width: 1024px) { + .editor-panel__left { + border-bottom: 0; + border-right: 1px solid #72777c; + } +} + +.editor-panel__right { + flex: 0 0 21rem; + min-width: 1%; +} + +@media screen and (min-width: 1024px) { + .editor-panel__right { + min-width: 40%; + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 10; + } +} + +.panel-header { + display: flex; + align-items: center; + justify-content: flex-end; + border-bottom: 1px solid #72777c; + background-color: #f3f4f5; + min-height: 40px; +} + +@media screen and (max-width: 1023px) { + .editor-panel__left { + width: 100%; + } + .editor-panel__right { + width: 100%; + } +} + +@media screen and (min-width: 1024px) { + .panel-header { + height: 40px; + } +} + +.editor-panel__left .panel-header, .editor-panel__right { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 10; +} + +.admin-bar .editor-panel__left .panel-header, +.admin-bar .editor-panel__right { + top: 32px; +} + +@media screen and (min-width: 890px) { + .admin-bar .editor-panel__left .panel-header, + .admin-bar .editor-panel__right { + top: calc( var(--wp-admin--admin-bar--height) ); + } +} + +@media screen and (max-width: 782px) { + .admin-bar .editor-panel__left .panel-header, + .admin-bar .editor-panel__right { + top: 46px; + } +} + +@media screen and (max-width: 600px) { + .admin-bar .editor-panel__left .panel-header { + top: 0; + } +} + +.panel-header h3 { + flex: 1; + margin: 0 0 0 10px; + font-size: 13px; + line-height: 20px; + font-weight: 400; + letter-spacing: 1px; + text-transform: uppercase; + color: #1e1e1e; +} + +.panel-header__bubble { + display: inline-block; + padding: 2px 4px; + margin: 2px 0; + white-space: nowrap; + font-size: 12px; + font-weight: 600; + text-transform: none; + border: 1px solid #666; +} + +.panel-header__bubble--warning { + color: var(--gp-color-danger-fg); + border-color: var(--gp-color-danger-fg); +} + +.panel-header__bubble--waiting { + color: #FFB900; + border-color: #FFB900; +} + +.panel-header__bubble--fuzzy { + color: #F56E28; + border-color: #F56E28; +} + +.panel-header__bubble--current { + color: #46B450; + border-color: #46B450; +} + +.panel-header__bubble--old { + color: #826EB4; + border-color: #826EB4; +} + +.panel-header-actions { + align-self: flex-start; +} + +.panel-header-actions button { + background: none; + border: none; + height: 40px; + width: 40px; + padding: 0; + margin: 0; + vertical-align: middle; + box-shadow: none; + border-radius: 0; + display: inline-flex; + align-items: center; + justify-content: center; +} + +.panel-header-actions button:hover { + background: #bdbdbd; +} + +table.translations tbody > tr:first-child + tr .panel-header-actions__previous, +table.translations tbody > tr:last-child .panel-header-actions__next { + display: none; +} + +.button-menu { + position: relative; + display: inline-block; +} + +.button-menu__dropdown { + display: none; + list-style: none; + position: absolute; + top: 100%; + right: 0; + z-index: 1000; + min-width: 150px; + background-color: #fff; + white-space: nowrap; + border: 1px solid #ccc; + padding: 6px 12px !important; + box-shadow: 0 2px 10px rgba(0,0,0,.1); +} + +.button-menu.active .button-menu__dropdown { + display: block; +} + +.button-menu__dropdown li a { + padding: 6px 0; + display: inline-block; +} + +.panel-content summary { + cursor: pointer; + outline: 0; +} + +.panel-content summary:focus { + color: #1e1e1e; +} + +.panel-content details[open] summary { + margin-bottom: 5px; +} + +.source-string { + padding: 20px 10px; +} + +.source-string__singular small, +.source-string__plural small { + display: block; + color: #666; + font-size: 12px; +} + +.source-string__plural { + margin-top: 15px; +} + +.source-details { + padding: 0 10px; + font-size: 14px; +} + +.source-details summary { + color: #666; +} + +.source-details details[open] summary { + margin: 0; +} + +.source-details details + details { + margin-top: 5px; +} + +.source-details__references { + word-wrap: break-word; + overflow-wrap: break-word; +} + +.source-details__context .context { + font-size: 100%; + background: transparent; + box-shadow: none; + margin: 0; + padding: 0; +} + +.translation-wrapper { + padding: 0 10px; + margin: 15px -1px; + border: 1px solid; + border-color: #72777c; + background: #fff; +} + +.translation-wrapper:focus-within { + box-shadow: 0 0 2px 1px #33b3db; + border-color: #5b9dd9; +} + +.translation-wrapper .warning { + margin: 15px 0 0; +} + +.translation-wrapper .textareas { + display: none; +} + +.translation-wrapper .textareas.active { + display: block; +} + +.translation-form-wrapper { + border-bottom: 1px solid #72777c; + margin-left: -10px; + margin-right: -10px; + padding: 0 10px; + line-height: 40px; + display: flex; +} + +.translation-form-wrapper span { + font-weight: 400; + letter-spacing: 1px; + text-transform: uppercase; + color: #666; + font-size: 13px; +} + +ul.translation-form-list { + padding: 0; + list-style: none; + flex: 1; + margin: 0 0 0 10px; +} + +ul.translation-form-list li { + display: inline-block; + margin-right: 5px; + cursor: pointer; +} + + +ul.translation-form-list button { + background: none; + border: 0; + box-shadow: none; + vertical-align: top; + height: auto; + font-size: 13px; + color: #333; + line-height: 40px; + margin: 0; + padding: 0 5px; + border-radius: 0; +} + +ul.translation-form-list button:focus, +ul.translation-form-list button:hover { + box-shadow: inset 0 -2px 0 0 #0085ba; + background: none; + border: 0; +} + +ul.translation-form-list button.translation-form-list__tab--active { + font-weight: 600; + box-shadow: inset 0 -2px 0 0 #0085ba; +} + +.translation-actions { + display: flex; + padding: 7px 0; + flex-direction: row-reverse; + align-items: flex-end; +} + +.translation-actions .info { + font-style: italic; +} + +.translation-actions__secondary { + flex: 1; +} + +button.translation-actions__save { + padding: 10px 18px !important; + font-size: 16px !important; + min-height: 45px !important +} + +/*.translation-actions__secondary button { + height: 35px; +} + +button.translation-actions__save { + font-size: 15px; + height: 35px; + line-height: 1; + background: #0085ba; + border-color: #0073aa #006799 #006799; + box-shadow: 0 1px 0 #006799; + color: #fff; + text-decoration: none; + text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799; +} + +button.translation-actions__save:hover { + background: #008ec2; + border-color: #006799; + color: #fff; +} + +button.translation-actions__save:focus { + background: #008ec2; + border-color: #006799; + box-shadow: 0 1px 0 #0073aa, 0 0 2px 1px #33b3db; + color: #fff; +}*/ + +.suggestions-wrapper { + padding: 0 10px; + margin-bottom: 15px; +} + +.suggestions-wrapper details { + margin-bottom: 15px; + color: #666; +} + +.suggestions-wrapper details:last-child { + margin-bottom: 0; +} + +.with-tooltip { + position: relative; +} + +@keyframes show { + 0% { + opacity: 0 + } + + 100% { + opacity: 1 + } +} + +.with-tooltip:active:after, +.with-tooltip:active:before, +.with-tooltip:focus:after, +.with-tooltip:focus:before, +.with-tooltip:hover:after, +.with-tooltip:hover:before { + animation-delay: .3s; + animation-duration: .1s; + animation-fill-mode: forwards; + animation-name: show; + animation-timing-function: ease-in; + display: inline-block; +} + +.with-tooltip:after { + transform: translateX(50%); + bottom: 100%; + margin-bottom: 6px; + right: 50%; + -webkit-font-smoothing: subpixel-antialiased; + background: #23282d; + border-radius: 3px; + color: #fff; + content: attr(aria-label); + display: none; + font: normal normal 11px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; + letter-spacing: normal; + opacity: 0; + padding: .5em .75em; + pointer-events: none; + position: absolute; + text-align: center; + text-decoration: none; + text-shadow: none; + text-transform: none; + white-space: pre; + word-wrap: break-word; + z-index: 100; +} + +.with-tooltip:before { + border: 6px solid transparent; + border-top-color: #23282d; + bottom: auto; + margin-right: -6px; + right: 50%; + top: -7px; + color: #23282d; + content: ""; + display: none; + height: 0; + opacity: 0; + pointer-events: none; + position: absolute; + width: 0; + z-index: 101; +} + +@keyframes loading-indicator { + 0%, 80%, 100% { + opacity: 0; + } + 40% { + opacity: 1; + } +} + +.suggestions__loading-indicator__icon { + font-size: 4px; + margin-left: .5rem; + line-height: 1; + display: inline-block; + vertical-align: middle; +} + +.suggestions__loading-indicator__icon span { + animation-duration: 1s; + animation-delay: 0ms; + animation-iteration-count: infinite; + animation-name: loading-indicator; + animation-timing-function: ease-in-out; + background-color: #666; + border-radius: 50%; + display: inline-block; + width: 1em; + vertical-align: top; + height: 1em; +} + +.suggestions__loading-indicator__icon span:nth-child(2) { + animation-delay: 160ms; + margin-left: 1em; +} + +.suggestions__loading-indicator__icon span:nth-child(3) { + animation-delay: 320ms; + margin-left: 1em; +} + +html.modal-open { + overflow: hidden; +} + +.wporg-translate-modal { + display: none; +} + +.wporg-translate-modal--open { + display: block; +} + +.wporg-translate-modal__overlay { + animation: edit-post__fade-in-animation .2s ease-out 0s; + animation-fill-mode: forwards; + background-color: hsla(0,0%,100%,.4); + bottom: 0; + left: 0; + position: fixed; + right: 0; + top: 0; + z-index: 100000; +} + +.wporg-translate-modal__frame { + background: #fff; + border: 1px solid #ccc; + box-shadow: 0 2px 10px rgba(0,0,0,.1); + margin: 0; + overflow: auto; + position: absolute; + right: 0; + left: 0; + top: 0; + bottom: 0; + z-index: 1000; + font-family: "Open Sans", sans-serif; + padding: 15px; +} + +@media screen and (min-width: 600px) { + .wporg-translate-modal__frame { + bottom: auto; + left: 10%; + right: 10%; + top: 50%; + max-height: calc(100% - 100px); + max-width: 960px; + min-width: 360px; + transform: translate(0,-50%); + margin: 0 auto; + } +} + +.wporg-translate-modal__header { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; + margin-bottom: 15px; + position: -webkit-sticky; + position: sticky; + top: -15px; + background: #fff; + box-shadow: 0 10px 10px #fff; +} + +.wporg-translate-modal__headline { + line-height: 1; + font-weight: 300; + font-size: 22px; + margin: 0; +} + +.wporg-translate-modal__close { + background: none; + height: 40px; + width: 40px; + font-size: 20px; + padding: 0; + line-height: 20px; + color: #555; + border: 1px solid transparent; + cursor: pointer; + border-radius: 3px; +} + +.wporg-translate-modal__close:focus, +.wporg-translate-modal__close:hover { + background: #fafafa; + border-color: #999; + color: #23282d; +} + +.wporg-translate-modal__close:focus { + border-color: #5b9dd9; + box-shadow: 0 0 3px rgba(0, 115, 170, 0.8); + outline: 0; +} + +.wporg-translate-modal__content h2 { + line-height: 1; + font-weight: 300; + font-size: 18px; + margin: 30px 0 10px; + font-family: "Open Sans", sans-serif; +} + +.wporg-translate-modal__content h2:first-child { + margin-top: 0; +} + +.wporg-translate-modal__content ul { + margin-left: 25px; + padding-left: 0; +} + +.wporg-translate-modal__content li > ul, +.wporg-translate-modal__content li + li { + margin-top: 3px; +} + +.wporg-translate-modal__content a { + color: #0073aa; +} + +.wporg-translate-modal__content a:hover, +.wporg-translate-modal__content a:focus { + color: #00a0d2; + text-decoration: underline; +} + +.wporg-translate-modal__content .no-list { + list-style: none; + margin: 0; +} + +.wporg-translate-modal__content_primary { + margin-bottom: 30px; +} + +@media screen and (min-width: 600px) { + .wporg-translate-modal__content { + display: flex; + } + + .wporg-translate-modal__content_primary { + flex: 50%; + margin-right: 15px; + margin-bottom: 0; + } + + .wporg-translate-modal__content_secondary { + flex: 50%; + margin-left: 15px; + } +} + +.textarea-direction-ltr button.translation-actions__rtl, +.translation-sets-rtl button.translation-actions__ltr { + display: inline-flex !important; +} + +.textarea-direction-ltr button.translation-actions__ltr, +button.translation-actions__ltr, +button.translation-actions__rtl { + display: none !important; +} + +table.translations.translation-sets-rtl .textarea-direction-ltr .foreign-text { + direction: ltr; +} + +.tablesorter-wporg-translate .header, +.tablesorter-wporg-translate .tablesorter-header { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9'%3E%3Cg fill='%2332373C' fill-rule='evenodd'%3E%3Cpath d='M5.5 9L9 5H2zM5.5 0L9 4H2z'/%3E%3C/g%3E%3C/svg%3E"); + background-position: right center; + background-repeat: no-repeat; + background-size: 15px 9px; + cursor: pointer; + white-space: normal; +} + +.tablesorter-wporg-translate thead .headerSortUp, +.tablesorter-wporg-translate thead .tablesorter-headerSortUp, +.tablesorter-wporg-translate thead .tablesorter-headerAsc { + background-color: #f9f9f9; + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 4'%3E%3Cpath fill='%2332373C' fill-rule='evenodd' d='M5.5 0L9 4H2z'/%3E%3C/svg%3E"); + background-size: 15px 4px; +} + +.tablesorter-wporg-translate thead .headerSortDown, +.tablesorter-wporg-translate thead .tablesorter-headerSortDown, +.tablesorter-wporg-translate thead .tablesorter-headerDesc { + background-color: #f9f9f9; + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 4'%3E%3Cpath fill='%2332373C' fill-rule='evenodd' d='M5.5 4L9 0H2z'/%3E%3C/svg%3E"); + background-size: 15px 4px; +} + +/* translate.w.org CSS. Class: .wporg-make */ +ul.sidebar-tabs { + display: inherit; +} + +.editor .nav-sidebar { + width: 100%; + overflow: auto; +} + +.sidebar-tabs > li { + padding: 8px 15px 7px 15px; +} + +.editor .nav-sidebar .meta { + border: 0; + border-top: 1px solid #72777C; +} + +.sidebar-tabs li.current { + border: 1px solid #72777C; + border-bottom: 1px solid #fff; + margin-top: -1px; +} + +.meta, +.meta.discussion, +.meta.others { + padding: 12px; +} + +.meta.discussion .comment-respond:not(.hide-textarea) { + padding: 0; +} + +.meta.discussion .optin-message-for-each-discussion :not(.hide-textarea) { + padding: 1rem 0; +} + +.meta.others .summary-translation-memory { + font-weight: bold; + padding: 1rem 0 0.5rem 0; +} + +.meta.others td:nth-child(1), +.meta.others td:nth-child(3), +.meta.others td:nth-child(4) { + text-align: center; + vertical-align: middle; + overflow: hidden; +} + +.meta.others th, +.meta.others td { + padding: 4px !important; + border: 1px solid #72777C !important; +} + +.meta.others th:nth-child(1) { + width: 20%; + vertical-align: middle; +} + +.meta.others th:nth-child(2) { + width: 50%; + vertical-align: middle; +} + +.meta.others th:nth-child(3), +.meta.others th:nth-child(4) { + width: 15%; + vertical-align: middle; +} + +.meta.others ul { + margin: 0; + padding: 0; +} + +.meta.others ul.suggestions-list, +.meta.others summary { + margin-left: 0; +} + +.meta.others div.translation-suggestion { + margin: 1rem 0; +} + +.meta.others .locale.unique, .meta.others .other-locales .locale { + width: 6rem; + background: #0073aa; + margin-right: 10px !important; +} + +.meta.other-locales ul { + margin: 1rem 0.5rem; +} + +.meta.other-locales .sidebar-other-locales.button.is-small.copy-suggestion { + margin-left: auto; +} + +.meta.other-locales span.locale.unique { + margin-right: 14px; +} + +.meta.other-locales .other-locales .locale { + min-width: 4em; + width: 4em; +} + +.meta.history { + padding-top: 0.5rem; +} + +.meta.history .translations { + border-top: #32373C 1px double; +} + +.meta.translation-memory { + padding-top: 1rem; +} + +.meta.translation-memory ul.suggestions-list:first-of-type { + margin-top: 1rem; +} + +.meta.translation-memory ul.suggestions-list { + margin-bottom: 0; +} + +.meta.translation-memory ul.suggestions-list li { + list-style: none; + margin-left: -1.2rem; +} + +.meta.translation-memory div.translation-suggestion.with-tooltip.translation { + margin-bottom: 0; +} + +.sidebar-div-others-translation-memory-content > summary { + list-style-type: none; +} + +/* GlotPress Tour Overrides */ +a.tour-button { + text-shadow: none; + padding-top: 0; + text-decoration: none; +} +.pulse-wrapper { + margin: 0; +} + +@media screen and (max-width: 530px), (min-width: 1024px) and (max-width: 1450px) { + .editor-panel__right .tab-meta, + .editor-panel__right .tab-discussion, + .editor-panel__right .tab-history, + .editor-panel__right .tab-other-locales, + .editor-panel__right .tab-translation-memory { + white-space: nowrap; + width: 73px; + overflow: hidden; + text-overflow: ellipsis; + vertical-align: top; + } +} + +ul.other-locales li { + display: flex; + margin-bottom: 0.2rem; +} + +.sidebar-div-others-other-locales-content > ul.other-locales > li > span { + min-width: 6rem; +} + +.sidebar-div-others-other-locales-content > ul.other-locales > li > a { + display: flex; + flex: auto; +} + +.sidebar-div-others-other-locales-content > ul.other-locales > li > ul { + display: flex; + flex-direction: column; + flex: auto; +} + +.sidebar-div-others-history-content #translation-history-table > tbody > tr > td { + overflow: hidden; +} + +#translations.table-virtual-pattern { + float: left; + width: 60%; +} + +.preview-virtual-pattern { + max-width: 39%; + float: right; + padding: 1rem 1rem 0 1rem; + margin-top: 0.5rem; + margin-bottom: 0.5rem; + border: 1px solid rgb(114, 119, 124); +} + +.preview-virtual-pattern h2 { + text-align: center; + margin: 0.5rem 0; +} +.preview-virtual-pattern p.link-to-pattern { + text-align: center; + padding: 0 0 1rem 0; + margin: 0 -1rem; + border-bottom: 1px solid rgb(114, 119, 124); +} + +@media screen and (max-width: 1280px) { + #translations.table-virtual-pattern { + float: none; + width: 100%; + } + + .preview-virtual-pattern { + max-width: 100%; + float: none; + } +} \ No newline at end of file diff --git a/site/web/app/plugins/f-translate/templates/translation-row-editor.php b/site/web/app/plugins/f-translate/templates/translation-row-editor.php new file mode 100644 index 0000000..46b88b8 --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/translation-row-editor.php @@ -0,0 +1,398 @@ +translation_status ) { + $translation_permalink = gp_url_project_locale( + $project, + $locale->slug, + $translation_set->slug, + array( + 'filters[status]' => 'either', + 'filters[original_id]' => $translation->original_id, + 'filters[translation_id]' => $translation->id, + ) + ); + $more_links['translation-permalink'] = 'Permalink to translation'; +} else { + $original_permalink = gp_url_project_locale( $project, $locale->slug, $translation_set->slug, array( 'filters[original_id]' => $translation->original_id ) ); + $more_links['original-permalink'] = 'Permalink to original'; +} + +$original_history = gp_url_project_locale( + $project, + $locale->slug, + $translation_set->slug, + array( + 'filters[status]' => 'either', + 'filters[original_id]' => $translation->original_id, + 'sort[by]' => 'translation_date_added', + 'sort[how]' => 'asc', + ) +); +$more_links['history'] = 'Translation History'; + +/** + * Allows to modify the more links in the translation editor. + * + * @since 2.3.0 + * + * @param array $more_links The links to be output. + * @param GP_Project $project Project object. + * @param GP_Locale $locale Locale object. + * @param GP_Translation_Set $translation_set Translation Set object. + * @param GP_Translation $translation Translation object. + */ +$more_links = apply_filters( 'gp_translation_row_template_more_links', $more_links, $project, $locale, $translation_set, $translation ); +?> + + +
+
+
+ %s', + $translation->translation_status ? ' panel-header__bubble--' . $translation->translation_status : '', + display_status( $translation->translation_status ) + ); + + $warnings_count = wporg_gp_count_warnings( $translation ); + $warnings_info = ''; + if ( $warnings_count ) { + $warnings_info = ' ' . sprintf( + _n( '%s warning', '%s warnings', $warnings_count ), + number_format_i18n( $warnings_count ) + ) . ''; + } + ?> +

Original

+
+ + + +
+ +
    + +
  • + +
+
+
+
+
+
+ singular_glossary_markup ?? esc_translation( $translation->singular ); + $plural = $translation->plural_glossary_markup ?? esc_translation( $translation->plural ); + + if ( ! $translation->plural ) : + ?> +
+ + +
+ +
+ Singular: + + +
+
+ Plural: + + +
+ +
+ +
+ +
+ Context + context ); ?> +
+ + extracted_comments ) : + ?> +
+ +

+ extracted_comments, $translation ); + ?> +

+
+ + references ) : ?> +
+ References + +
+ +
+ +
+ plural && $locale->nplurals > 1 ) : ?> +
+ Form: +
    + nplurals && 'n != 1' === $locale->plural_expression ) : ?> +
  • + +
  • +
  • + +
  • + + nplurals - 1 ) as $plural_index ) : + $plural_string = implode( ', ', $locale->numbers_for_index( $plural_index ) ); + ?> +
  • + +
  • + + +
+
+ + + plural ) : ?> + + + nplurals - 1 ) as $plural_index ) : ?> + + + + +
+ +
+ +
+
+ + + + + + +
+ + Sorry, you are not allowed to edit this translation.

', $translation ); ?> + +

+ have to log in to edit this translation.', + esc_url( wp_login_url( gp_url_current() ) ) + ); + ?> +

+ +
+
+ + +
+ +
+ +
+
+ +
+ +
+ + + '; + $sidebar_tabs .= ''; + $sidebar_tabs .= $meta_sidebar; + $sidebar_tabs .= ''; + $sidebar_tabs .= ''; /* meta others */ + $sidebar_tabs .= ''; + + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo $sidebar_tabs; + ?> + + +
+
+
+ + diff --git a/site/web/app/plugins/f-translate/templates/translation-row-preview.php b/site/web/app/plugins/f-translate/templates/translation-row-preview.php new file mode 100644 index 0000000..972a394 --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/translation-row-preview.php @@ -0,0 +1,137 @@ + '×', + '-1' => '↓', + '0' => '', + '1' => '↑', +); + +?> + + + + + + + + + + priority ]; + ?> + + + plural ) : + ?> + + plural_glossary_markup ) ? $translation->plural_glossary_markup : esc_translation( $translation->plural ); + ?> +
    +
  • Singular:
  • +
  • Plural:
  • +
+ + + + priority || '-1' === $translation->priority; + if ( $show_context || $show_priority ) : + ?> +
+ + context ); ?> + + get_static( 'priorities' ), $translation->priority ) ) ); ?> + +
+ + + + have to log in to add a translation.', 'glotpress' ), esc_url( wp_login_url( gp_url_current() ) ) ); + } + + $missing_text = "$edit_text"; + if ( ! count( array_filter( $translation->translations, 'gp_is_not_null' ) ) ) : + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo $missing_text; + elseif ( ! $translation->plural || 1 === $locale->nplurals ) : + echo '' . esc_translation( $translation->translations[0] ) . ''; + elseif ( $translation->plural && 2 === $locale->nplurals && 'n != 1' === $locale->plural_expression ) : + ?> +
    +
  • + Singular:
    + translations[0] ) || gp_is_empty_string( $translation->translations[0] ) ) { + echo $missing_text; + } else { + echo '' . esc_translation( $translation->translations[0] ) . ''; + } + ?> +
  • +
  • + Plural:
    + translations[1] ) || gp_is_empty_string( $translation->translations[1] ) ) { + echo $missing_text; + } else { + echo '' . esc_translation( $translation->translations[1] ) . ''; + } + ?> +
  • +
+ '; + foreach( range( 0, $locale->nplurals - 1 ) as $plural_index ): + $plural_string = implode(', ', $locale->numbers_for_index( $plural_index ) ); + ?> +
  • + + : +
    + translations[ $plural_index ] ) || gp_is_empty_string( $translation->translations[ $plural_index ] ) ) { + echo $missing_text; + } else { + echo '' . esc_translation( $translation->translations[ $plural_index ] ) . ''; + } + ?> +
  • + '; + endif; ?> + + + + + diff --git a/site/web/app/plugins/f-translate/templates/translation-set-form.php b/site/web/app/plugins/f-translate/templates/translation-set-form.php new file mode 100644 index 0000000..c5f6504 --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/translation-set-form.php @@ -0,0 +1,25 @@ +
    +
    +
    + locale ); ?> + +
    + +
    +
    + + +
    +
    + +
    +
    +
    + + diff --git a/site/web/app/plugins/f-translate/templates/translations.api.php b/site/web/app/plugins/f-translate/templates/translations.api.php new file mode 100644 index 0000000..55433f1 --- /dev/null +++ b/site/web/app/plugins/f-translate/templates/translations.api.php @@ -0,0 +1,12 @@ + $translation ) { + foreach ( (array) $translation as $key => $value ) { + if ( $value instanceof WP_User ) { + $translations[ $index ]->$key = (object) array_intersect_key( (array) $value->data, array_flip( array( + 'user_login', + 'display_name', + ) ) ); + } + } +} +echo wp_json_encode( $translations ); diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/inc/class-plugin.php b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/class-plugin.php new file mode 100644 index 0000000..9a7d340 --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/class-plugin.php @@ -0,0 +1,271 @@ +request_uri(); + $path = '(.+?)'; + $dir = '([^_/][^/]*)'; + $project = '([^/]*)/?'; + + $locale = '(' . implode( '|', array_map( function( $locale ) { return $locale->slug; }, GP_Locales::locales() ) ) . ')'; + $sets = '(default|formal|informal|ao90|valencia|latin)'; + + if ( gp_startswith( $request_uri, '/' . GP::$router->api_prefix . '/' ) ) { // API requests. + // Delete default routes. + GP::$router->remove( '/languages' ); + GP::$router->remove( "/languages/$locale" ); + GP::$router->remove( '/profile' ); + } else { + // Delete default routes. + GP::$router->remove( "/languages/$locale" ); + GP::$router->remove( "/languages/$locale/$path" ); + GP::$router->remove( "(/languages)/$locale/$dir/glossary" ); + GP::$router->remove( "(/languages)/$locale/$dir/glossary", 'post' ); + GP::$router->remove( "(/languages)/$locale/$dir/glossary/-new", 'post' ); + GP::$router->remove( "(/languages)/$locale/$dir/glossary/-delete", 'post' ); + GP::$router->remove( "(/languages)/$locale/$dir/glossary/-export" ); + GP::$router->remove( "(/languages)/$locale/$dir/glossary/-import" ); + GP::$router->remove( "(/languages)/$locale/$dir/glossary/-import", 'post' ); + + GP::$router->remove( '/profile' ); + GP::$router->remove( "/profile/$path" ); + + // Redirect routes. + GP::$router->prepend( '/languages', array( __NAMESPACE__ . '\Routes\Redirector', 'redirect_languages' ) ); + GP::$router->prepend( "/languages/$path", array( __NAMESPACE__ . '\Routes\Redirector', 'redirect_languages' ) ); + GP::$router->prepend( '/projects/wp-plugins/?', array( __NAMESPACE__ . '\Routes\Redirector', 'redirect_index' ) ); + GP::$router->prepend( '/projects/wp-themes/?', array( __NAMESPACE__ . '\Routes\Redirector', 'redirect_index' ) ); + GP::$router->prepend( "/projects/wp/$path/$locale/$dir/glossary", array( __NAMESPACE__ . '\Routes\Redirector', 'redirect_old_glossary' ) ); + + // Register custom routes. + GP::$router->prepend( '/', array( __NAMESPACE__ . '\Routes\Index', 'get_locales' ) ); + GP::$router->prepend( "/locale/$locale", array( __NAMESPACE__ . '\Routes\Locale', 'get_locale_projects' ) ); + GP::$router->prepend( "/locale/$locale/$sets", array( __NAMESPACE__ . '\Routes\Locale', 'get_locale_projects' ) ); + GP::$router->prepend( "/locale/$locale/$sets/$path", array( __NAMESPACE__ . '\Routes\Locale', 'get_locale_projects' ) ); + GP::$router->prepend( "/locale/$locale/$sets/$path/$path", array( __NAMESPACE__ . '\Routes\Locale', 'get_locale_project' ) ); + GP::$router->prepend( "(/locale)/$locale/$sets/glossary", array( 'GP_Route_Glossary_Entry', 'glossary_entries_get' ) ); + GP::$router->prepend( "(/locale)/$locale/$sets/glossary", array( 'GP_Route_Glossary_Entry', 'glossary_entries_post' ), 'post' ); + GP::$router->prepend( "(/locale)/$locale/$sets/glossary/-new", array( 'GP_Route_Glossary_Entry', 'glossary_entry_add_post' ), 'post' ); + GP::$router->prepend( "(/locale)/$locale/$sets/glossary/-delete", array( 'GP_Route_Glossary_Entry', 'glossary_entry_delete_post' ), 'post' ); + GP::$router->prepend( "(/locale)/$locale/$sets/glossary/-export", array( 'GP_Route_Glossary_Entry', 'export_glossary_entries_get' ) ); + GP::$router->prepend( "(/locale)/$locale/$sets/glossary/-import", array( 'GP_Route_Glossary_Entry', 'import_glossary_entries_get' ) ); + GP::$router->prepend( "(/locale)/$locale/$sets/glossary/-import", array( 'GP_Route_Glossary_Entry', 'import_glossary_entries_post' ), 'post' ); + GP::$router->prepend( "/locale/$locale/$sets/stats(?:/(plugins|themes))?", array( __NAMESPACE__ . '\Routes\Stats', 'get_stats_plugin_theme_overview' ) ); + GP::$router->prepend( '/stats', array( __NAMESPACE__ . '\Routes\Stats', 'get_stats_overview' ) ); + GP::$router->prepend( '/consistency', array( __NAMESPACE__ . '\Routes\Consistency', 'get_search_form' ) ); + + // Project routes. + GP::$router->prepend( "/projects/wp-plugins/$project", array( __NAMESPACE__ . '\Routes\WP_Plugins', 'get_plugin_projects' ) ); + GP::$router->prepend( "/projects/wp-plugins/$project/contributors", array( __NAMESPACE__ . '\Routes\WP_Plugins', 'get_plugin_contributors' ) ); + GP::$router->prepend( "/projects/wp-plugins/$project/language-packs", array( __NAMESPACE__ . '\Routes\WP_Plugins', 'get_plugin_language_packs' ) ); + GP::$router->prepend( "/projects/wp-themes/$project", array( __NAMESPACE__ . '\Routes\WP_Themes', 'get_theme_projects' ) ); + GP::$router->prepend( "/projects/wp-themes/$project/contributors", array( __NAMESPACE__ . '\Routes\WP_Themes', 'get_theme_contributors' ) ); + GP::$router->prepend( "/projects/wp-themes/$project/language-packs", array( __NAMESPACE__ . '\Routes\WP_Themes', 'get_theme_language_packs' ) ); + + // Add Robots.txt support + GP::$router->prepend( '/robots\.txt', 'do_robots' ); + + if ( defined( 'TRANSLATE_MAINTENANCE_ACTIVE' ) ) { + GP::$router->prepend( '.*', array( __NAMESPACE__ . '\Routes\Maintenance', 'show_maintenance_message' ) ); + } + } + } + + /** + * Calculates the translation status of the WordPress project per locale. + */ + public static function get_translation_status() { + global $wpdb; + + if ( ! isset( $wpdb->project_translation_status ) ) { + return; + } + + $cached = wp_cache_get( 'translation-status', self::CACHE_GROUP ); + if ( false !== $cached ) { + return $cached; + } + + $translation_status = $wpdb->get_results( $wpdb->prepare( + "SELECT `locale`, `all` AS `all_count`, `waiting` AS `waiting_count`, `current` AS `current_count`, `fuzzy` AS `fuzzy_count` + FROM {$wpdb->project_translation_status} + WHERE `project_id` = %d AND `locale_slug` = %s", + 2, // 2 = wp/dev + 'default' + ), OBJECT_K ); + + wp_cache_set( 'translation-status', $translation_status, 'wporg-translate', 15 * MINUTE_IN_SECONDS ); + + return $translation_status; + } + + /** + * Updates contributors count per locale. + */ + public static function get_contributors_count() { + global $wpdb; + + $cached = wp_cache_get( 'contributors-count', self::CACHE_GROUP ); + if ( false !== $cached ) { + return $cached; + } + + if ( ! isset( $wpdb->user_translations_count ) ) { + return []; + } + + $locales = self::get_existing_locales(); + $db_counts = $wpdb->get_results( + "SELECT `locale`, COUNT( DISTINCT user_id ) as `count` FROM {$wpdb->user_translations_count} WHERE `accepted` > 0 GROUP BY `locale`", + OBJECT_K + ); + + $counts = array(); + foreach ( $locales as $locale ) { + if ( isset( $db_counts[ $locale ] ) ) { + $counts[ $locale ] = (int) $db_counts[ $locale ]->count; + } else { + $counts[ $locale ] = 0; + } + } + + wp_cache_set( 'contributors-count', $counts, self::CACHE_GROUP, 15 * MINUTE_IN_SECONDS ); + + return $counts; + } + + /** + * Retrieves existing locales of the main wp/dev project. + * + * Much faster alternative to `GP::$translation_set->existing_locales();` since it avoids + * the expensive DISTINCT. + * + * @return array List of GlotPress locales. + */ + public static function get_existing_locales() { + global $wpdb; + + $cached = wp_cache_get( 'existing-locales', self::CACHE_GROUP ); + if ( false !== $cached ) { + return $cached; + } + + $existing_locales = $wpdb->get_col( + $wpdb->prepare( + "SELECT locale FROM {$wpdb->gp_translation_sets} WHERE `project_id` = %d and slug = %s", + 2, // 2 = wp/dev + 'default' + ) + ); + + wp_cache_set( 'existing-locales', $existing_locales, self::CACHE_GROUP, HOUR_IN_SECONDS ); + + return $existing_locales; + } +} diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-consistency.php b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-consistency.php new file mode 100644 index 0000000..3a0a39c --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-consistency.php @@ -0,0 +1,187 @@ + 'WordPress', + 523 => 'Themes', + 17 => 'Plugins', + 487 => 'Meta', + 281 => 'Apps', + 473698 => 'Patterns', + ); + + /** + * Prints a search form and the search results for a consistency view. + */ + public function get_search_form() { + $sets = $this->get_translation_sets(); + + $search = $set = $project = ''; + $search_case_sensitive = false; + + if ( isset( $_REQUEST['search'] ) && strlen( $_REQUEST['search'] ) ) { + $search = wp_unslash( $_REQUEST['search'] ); + } + + if ( ! empty( $_REQUEST['set'] ) ) { + $set = wp_unslash( $_REQUEST['set'] ); + if ( ! isset( $sets[ $set ] ) ) { + $set = ''; + } + } + + if ( ! empty( $_REQUEST['search_case_sensitive'] ) ) { + $search_case_sensitive = true; + } + + if ( ! empty( $_REQUEST['project'] ) && isset( self::PROJECTS[ $_REQUEST['project'] ] ) ) { + $project = $_REQUEST['project']; + } + + $locale = ''; + $set_slug = ''; + $locale_is_rtl = false; + + if ( $set ) { + list( $locale, $set_slug ) = explode( '/', $set ); + $locale_is_rtl = 'rtl' === GP_Locales::by_slug( $locale )->text_direction; + } + + $results = []; + $performed_search = false; + if ( strlen( $search ) && $locale && $set_slug ) { + $performed_search = true; + $results = $this->query( [ + 'search' => $search, + 'locale' => $locale, + 'set_slug' => $set_slug, + 'case_sensitive' => $search_case_sensitive, + 'project' => $project, + ] ); + + $translations = wp_list_pluck( $results, 'translation', 'translation_id' ); + $translations_unique = array_values( array_unique( $translations ) ); + $translations_unique_counts = array_count_values( $translations ); + + // Sort the unique translations by highest count first. + arsort( $translations_unique_counts ); + } + + $projects = self::PROJECTS; + + $this->tmpl( 'consistency', get_defined_vars() ); + } + + /** + * Retrieves a list of unique translation sets. + * + * @return array Array of sets. + */ + private function get_translation_sets() { + global $wpdb; + + $sets = wp_cache_get( 'translation-sets', $this->cache_group ); + + if ( empty( $sets ) ) { + $_sets = $wpdb->get_results( "SELECT name, locale, slug FROM {$wpdb->gp_translation_sets} GROUP BY locale, slug ORDER BY name" ); + + $sets = array(); + foreach ( $_sets as $set ) { + $sets[ "{$set->locale}/$set->slug" ] = $set->name; + } + + wp_cache_set( 'translation-sets', $sets, $this->cache_group, DAY_IN_SECONDS ); + } + + return $sets; + } + + /** + * Performs the search query. + * + * @param array $args Query arguments. + * + * @return array The search results. + */ + private function query( $args ) { + global $wpdb; + + if ( $args['case_sensitive'] ) { + $collation = 'BINARY'; + } else { + $collation = ''; + } + + $search = $wpdb->prepare( "= {$collation} %s", $args['search'] ); + $locale = $wpdb->prepare( '%s', $args['locale'] ); + $set_slug = $wpdb->prepare( '%s', $args['set_slug'] ); + + $project_where = ''; + if ( $args['project'] ) { + $project = GP::$project->get( $args['project'] ); + $project_where = $wpdb->prepare( 'AND p.path LIKE %s', $wpdb->esc_like( $project->path ) . '/%' ); + } + + $results = $wpdb->get_results( " + SELECT + p.name AS project_name, + p.id AS project_id, + p.path AS project_path, + p.parent_project_id AS project_parent_id, + p.active AS active, + o.singular AS original_singular, + o.plural AS original_plural, + o.context AS original_context, + o.id AS original_id, + t.translation_0 AS translation, + t.date_added AS translation_added, + t.id AS translation_id + FROM {$wpdb->gp_originals} AS o + JOIN + {$wpdb->gp_projects} AS p ON p.id = o.project_id + JOIN + {$wpdb->gp_translations} AS t ON o.id = t.original_id + JOIN + {$wpdb->gp_translation_sets} as ts on ts.id = t.translation_set_id + WHERE + p.active = 1 + AND t.status = 'current' + AND o.status = '+active' AND o.singular {$search} + AND ts.locale = {$locale} AND ts.slug = {$set_slug} + {$project_where} + LIMIT 0, 500 + " ); + + if ( ! $results ) { + return []; + } + + // Group by translation and project path. Done in PHP because it's faster as in MySQL. + usort( $results, [ $this, '_sort_callback' ] ); + + return $results; + } + + public function _sort_callback( $a, $b ) { + $sort = strnatcmp( $a->translation . $a->original_context, $b->translation . $b->original_context ); + if ( 0 === $sort ) { + $sort = strnatcmp( $a->project_path, $b->project_path ); + } + + return $sort; + } +} diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-index.php b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-index.php new file mode 100644 index 0000000..32e8e3d --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-index.php @@ -0,0 +1,38 @@ +tmpl( 'index-locales', get_defined_vars() ); + } + + private function _sort_english_name_callback( $a, $b ) { + return $a->english_name <=> $b->english_name; + } +} diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-locale.php b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-locale.php new file mode 100644 index 0000000..11d9e82 --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-locale.php @@ -0,0 +1,1006 @@ +roles_adapter = Rosetta_Roles::get_instance(); + } + } + + /** + * Prints projects/translation sets of a top level project. + * + * @param string $locale_slug Slug of the locale. + * @param string $set_slug Slug of the translation set. + * @param bool|string $project_path Path of a project. + */ + public function get_locale_projects( $locale_slug, $set_slug = 'default', $project_path = false ) { + global $wpdb; + + $per_page = 24; + $page = (int) gp_get( 'page', 1 ); + $search = gp_get( 's', '' ); + $filter = gp_get( 'filter', false ); + $without_editors = (bool) gp_get( 'without-editors', false ); + + if ( $search && ! is_string( $search ) ) { + $search = ''; + } + if ( $filter && ! is_string( $filter ) ) { + $filter = false; + } + + $locale = GP_Locales::by_slug( $locale_slug ); + if ( ! $locale ) { + return $this->die_with_404(); + } + + if ( ! $this->translation_set_slug_exists( $locale, $set_slug ) ) { + return $this->die_with_404(); + } + + // Grab the top level projects to show in the menu first, so as to be able to handle the default Waiting / WP tab selection + $top_level_projects = $this->get_active_top_level_projects(); + + // Default to the Waiting or WordPress tabs + $default_project_tab = 'waiting'; + $user_id = get_current_user_id(); + if ( + ! is_user_logged_in() || + ! $this->roles_adapter || // Rosetta Roles plugin is not enabled + ! ( + $this->roles_adapter->is_global_administrator( $user_id ) || // Not a global admin + $this->roles_adapter->is_approver_for_locale( $user_id, $locale_slug ) // Doesn't have project-level access either + ) + // Add check to see if there are any waiting translations for this locale? + ) { + $default_project_tab = 'wp'; + } + + // Filter out the Waiting Tab if the current user cannot validate strings + if ( 'waiting' != $default_project_tab ) { + foreach ( $top_level_projects as $i => $project ) { + if ( 'waiting' == $project->slug ) { + unset( $top_level_projects[ $i ] ); + break; + } + } + } + + $project_path = $project_path ?: $default_project_tab; + + $project = GP::$project->by_path( $project_path ); + if ( ! $project ) { + return $this->die_with_404(); + } + + $paged_sub_projects = $this->get_paged_active_sub_projects( + $project, + array( + 'page' => $page, + 'per_page' => $per_page, + 'search' => $search, + 'filter' => $filter, + 'without_editors' => $without_editors, + 'set_slug' => $set_slug, + 'locale' => $locale_slug, + ) + ); + + $data['project'] = $project; + $data['sub_projects'] = $paged_sub_projects['projects']; + $data['pages'] = $paged_sub_projects['pages']; + $data = apply_filters( 'gp_subprojects', $data ); + $paged_sub_projects['projects'] = $data['sub_projects']; + $paged_sub_projects['pages'] = $data['pages']; + + if ( ! $paged_sub_projects ) { + return $this->die_with_404(); + } + + $sub_projects = $paged_sub_projects['projects']; + $pages = $paged_sub_projects['pages']; + $filter = $paged_sub_projects['filter']; + unset( $paged_sub_projects ); + + $project_status = $project_icons = array(); + foreach ( $sub_projects as $key => $sub_project ) { + $project_status[ $sub_project->id ] = $this->get_project_status( $sub_project, $locale_slug, $set_slug ); + $project_icons[ $sub_project->id ] = $this->get_project_icon( $project, $sub_project ); + } + + $project_ids = array_keys( $project_status ); + $project_ids[] = $project->id; + $project_ids = array_merge( + $project_ids, + $wpdb->get_col( "SELECT id FROM {$wpdb->gp_projects} WHERE parent_project_id IN( " . implode( ', ', $project_ids ) . ')' ) + ); + + $contributors_count = Plugin::get_contributors_count(); + + $variants = $this->get_locale_variants( $locale_slug ); + // If there were no results for the current variant in the current project branch, it should still show it. + if ( ! in_array( $set_slug, $variants, true ) ) { + $variants[] = $set_slug; + } + + $can_create_locale_glossary = GP::$permission->current_user_can( 'admin' ); + $locale_glossary_translation_set = GP::$translation_set->by_project_id_slug_and_locale( 0, $set_slug, $locale_slug ); + $locale_glossary = false; + if ( $locale_glossary_translation_set ) { + $locale_glossary = GP::$glossary->by_set_id( $locale_glossary_translation_set->id ); + } + + $this->tmpl( 'locale-projects', get_defined_vars() ); + } + + /** + * Prints projects/translation sets of a sub project. + * + * @param string $locale_slug Slug of the locale. + * @param string $set_slug Slug of the translation set. + * @param string $project_path Path of a project. + * @param string $sub_project_path Path of a sub project. + */ + public function get_locale_project( $locale_slug, $set_slug, $project_path, $sub_project_path ) { + $locale = GP_Locales::by_slug( $locale_slug ); + if ( ! $locale ) { + return $this->die_with_404(); + } + + if ( ! $this->translation_set_slug_exists( $locale, $set_slug ) ) { + return $this->die_with_404(); + } + + $project = GP::$project->by_path( $project_path ); + if ( ! $project ) { + return $this->die_with_404(); + } + + $sub_project = GP::$project->by_path( $project_path . '/' . $sub_project_path ); + if ( ! $sub_project ) { + return $this->die_with_404(); + } + + $project_status = $this->get_project_status( $sub_project, $locale_slug, $set_slug ); + $sub_project_status = $this->get_project_status( $sub_project, $locale_slug, $set_slug, null, false ); + + $project_icon = $this->get_project_icon( $project, $sub_project, 64 ); + + $contributors_count = Plugin::get_contributors_count(); + + $sub_project_statuses = array(); + $sub_projects = $this->get_active_sub_projects( $sub_project, true ); + if ( $sub_projects ) { + foreach ( $sub_projects as $key => $_sub_project ) { + $sub_project_statuses[ $_sub_project->slug ] = $this->get_project_status( + $_sub_project, + $locale_slug, + $set_slug, + null, + false + ); + } + } + + $sub_project_slugs = array_keys( $sub_project_statuses ); + + $variants = $this->get_locale_variants( $locale_slug ); + + $locale_contributors = $this->get_locale_contributors( $sub_project, $locale_slug, $set_slug ); + + $can_create_locale_glossary = GP::$permission->current_user_can( 'admin' ); + $locale_glossary_translation_set = GP::$translation_set->by_project_id_slug_and_locale( 0, $set_slug, $locale_slug ); + $locale_glossary = GP::$glossary->by_set_id( $locale_glossary_translation_set->id ); + + $this->tmpl( 'locale-project', get_defined_vars() ); + } + + /** + * Whether a translation set slug exists for a locale. + * + * For performance reasons, this checks the wp/dev project which is the canonical + * source for all available and active locales. + * + * @param \GP_Locale $locale The locale. + * @param string $slug The slug of a translation set. + * @return bool True if slug exists, false if not. + */ + private function translation_set_slug_exists( $locale, $slug ) { + global $wpdb; + + $id = $wpdb->get_var( $wpdb->prepare( + "SELECT id FROM {$wpdb->gp_translation_sets} WHERE locale = %s AND slug = %s AND project_id = %d", + $locale->slug, + $slug, + 2 // wp/dev + ) ); + + return null !== $id; + } + + /** + * Returns markup for project icons. + * + * @param GP_Project $project A GlotPress project. + * @param GP_Project $sub_project A sub project of a GlotPress project. + * @param int $size Size of icon. + * @return string HTML markup of an icon. + */ + private function get_project_icon( $project, $sub_project, $size = 128 ) { + // The Waiting tab will have $sub_project's which are not sub-projects of $project + if ( $sub_project->parent_project_id && $sub_project->parent_project_id !== $project->id ) { + $project = GP::$project->get( $sub_project->parent_project_id ); + // In the case of Plugins, we may need to go up another level yet + if ( $project->parent_project_id ) { + $sub_project = $project; + $project = GP::$project->get( $sub_project->parent_project_id ); + } + } + + switch ( $project->slug ) { + case 'wp': + return '
    '; + case 'meta': + switch ( $sub_project->slug ) { + case 'forums': + return '
    '; + case 'rosetta': + return '
    '; + case 'plugins': + case 'plugins-v3': + return '
    '; + case 'themes': + return '
    '; + case 'wordcamp': + return '
    '; + case 'pattern-directory': + return '
    '; + case 'browsehappy': + return '
    '; + case 'openverse': + return '
    '; + default: + return '
    '; + } + case 'wp-themes': + $screenshot = gp_get_meta( 'wp-themes', $sub_project->id, 'screenshot' ); + if ( $screenshot ) { + return '
    '; + } else { + return '
    '; + } + case 'wp-plugins': + $icon = ''; + + if ( class_exists( 'WordPressdotorg\Plugin_Directory\Template' ) ) { + $directory_post_id = gp_get_meta( 'wp-plugins', $sub_project->id, 'directory-post-id' ); + if ( $directory_post_id ) { + switch_to_blog( WPORG_PLUGIN_DIRECTORY_BLOGID ); + $icon = \WordPressdotorg\Plugin_Directory\Template::get_plugin_icon( $directory_post_id, 'html' ); + restore_current_blog(); + } + } + + if ( $icon ) { + return $icon; + } + + return '
    '; + case 'apps': + return '
    '; + case 'patterns': + return '
    '; + default: + return '
    '; + } + } + + /** + * Retrieves all slugs of translation sets for a locale. + * + * For performance reasons, this checks the wp/dev project which is the canonical + * source for all available and active locales. + * + * @param string $locale Slug of a GlotPress locale. + * @return array List of translation set slugs. + */ + private function get_locale_variants( $locale ) { + global $wpdb; + + return $wpdb->get_col( $wpdb->prepare( + "SELECT slug FROM {$wpdb->gp_translation_sets} WHERE locale = %s AND project_id = %d", + $locale, + 2 // wp/dev + ) ); + } + + /** + * Retrieves translation editors of a project. + * + * Also includes cross-locale editors and editors of parent projects. + * + * @param GP_Project $project A GlotPress project. + * @param string $locale_slug Slug of the locale. + * @return array List of user IDs. + */ + private function get_translation_editors( $project, $locale_slug ) { + global $wpdb; + + $editors = [ + 'project' => [], + 'inherited' => [], + ]; + + // Get the translation editors of the project. + $editors['project'] = (array) $wpdb->get_col( $wpdb->prepare( " + SELECT + `user_id` + FROM {$wpdb->wporg_translation_editors} + WHERE + `project_id` = %d + AND `locale` IN (%s, 'all-locales') + ", $project->id, $locale_slug ) ); + + // Get the translation editors of parent projects. + if ( $project->parent_project_id ) { + $parent_project_id = $project->parent_project_id; + $parent_project = GP::$project->get( $parent_project_id ); + while ( $parent_project_id ) { + $editors['inherited'] = array_merge( $editors['inherited'], (array) $wpdb->get_col( $wpdb->prepare( " + SELECT + `user_id` + FROM {$wpdb->wporg_translation_editors} + WHERE + `project_id` = %d + AND `locale` IN (%s, 'all-locales') + ", $parent_project->id, $locale_slug ) ) ); + + $parent_project = GP::$project->get( $parent_project_id ); + $parent_project_id = $parent_project->parent_project_id; + } + } + + // Get the translation editors for all projects. + $editors['inherited'] = array_merge( $editors['inherited'], (array) $wpdb->get_col( $wpdb->prepare( " + SELECT + `user_id` + FROM {$wpdb->wporg_translation_editors} + WHERE + `project_id` = '0' + AND `locale` = %s + ", $locale_slug ) ) ); + + return $editors; + } + + /** + * Retrieves contributors of a project. + * + * @param GP_Project $project A GlotPress project. + * @param string $locale_slug Slug of the locale. + * @param string $set_slug Slug of the translation set. + * @return array Contributors. + */ + private function get_locale_contributors( $project, $locale_slug, $set_slug ) { + global $wpdb; + + $locale_contributors = [ + 'editors' => [ + 'project' => [], + 'inherited' => [], + ], + 'contributors' => [], + ]; + + // Get the translation editors of the project. + $editors = $this->get_translation_editors( $project, $locale_slug ); + + $editor_ids = []; + + // Get the names of the translation editors. + foreach ( [ 'project', 'inherited'] as $editor_source ) { + foreach ( $editors[ $editor_source ] as $editor_id ) { + $user = get_user_by( 'id', $editor_id ); + if ( ! $user ) { + continue; + } + + $locale_contributors['editors'][ $editor_source ][ $editor_id ] = (object) array( + 'nicename' => $user->user_nicename, + 'display_name' => $this->_encode( $user->display_name ), + 'email' => $user->user_email, + ); + + $editor_ids[] = $editor_id; + } + + uasort( $locale_contributors['editors'][ $editor_source ], function( $a, $b ) { + return strcasecmp( $a->display_name, $b->display_name ); + } ); + } + + unset( $editors ); + + // Get the contributors of the project. + $contributors = array(); + + // In case the project has a translation set, like /wp-themes/twentysixteen. + $translation_set = GP::$translation_set->by_project_id_slug_and_locale( $project->id, $set_slug, $locale_slug ); + if ( $translation_set ) { + $contributors = array_merge( + $contributors, + $this->get_locale_contributors_by_translation_set( $translation_set ) + ); + } + + // Check if the project has sub-projects, like /wp-plugins/wordpress-importer. + $sub_projects = $wpdb->get_col( $wpdb->prepare( " + SELECT id + FROM {$wpdb->gp_projects} + WHERE + parent_project_id = %d + AND active = 1 + ", $project->id ) ); + + foreach ( $sub_projects as $sub_project ) { + $translation_set = GP::$translation_set->by_project_id_slug_and_locale( $sub_project, $set_slug, $locale_slug ); + if ( ! $translation_set ) { + continue; + } + + $contributors = array_merge( + $contributors, + $this->get_locale_contributors_by_translation_set( $translation_set ) + ); + } + + $projects = []; + + // Get the names of the contributors. + foreach ( $contributors as $contributor ) { + if ( isset( $locale_contributors['contributors'][ $contributor->user_id ] ) ) { + // Update last updated and counts per status. + $locale_contributors['contributors'][ $contributor->user_id ]->last_update = max( + $locale_contributors['contributors'][ $contributor->user_id ]->last_update, + $contributor->last_update + ); + + $locale_contributors['contributors'][ $contributor->user_id ]->total_count += $contributor->total_count; + $locale_contributors['contributors'][ $contributor->user_id ]->current_count += $contributor->current_count; + $locale_contributors['contributors'][ $contributor->user_id ]->waiting_count += $contributor->waiting_count; + $locale_contributors['contributors'][ $contributor->user_id ]->fuzzy_count += $contributor->fuzzy_count; + + if ( ! isset( $projects[ $contributor->project_id ] ) ) { + $projects[ $contributor->project_id ] = GP::$project->get( $contributor->project_id ); + } + + $locale_contributors['contributors'][ $contributor->user_id ]->detailed[ $contributor->project_id ] = (object) [ + 'total_count' => $contributor->total_count, + 'current_count' => $contributor->current_count, + 'waiting_count' => $contributor->waiting_count, + 'fuzzy_count' => $contributor->fuzzy_count, + 'project' => $projects[ $contributor->project_id ], + ]; + + continue; + } + + $user = get_user_by( 'id', $contributor->user_id ); + if ( ! $user ) { + continue; + } + + if ( ! isset( $projects[ $contributor->project_id ] ) ) { + $projects[ $contributor->project_id ] = GP::$project->get( $contributor->project_id ); + } + + $locale_contributors['contributors'][ $contributor->user_id ] = (object) array( + 'login' => $user->user_login, + 'nicename' => $user->user_nicename, + 'display_name' => $this->_encode( $user->display_name ), + 'email' => $user->user_email, + 'last_update' => $contributor->last_update, + 'total_count' => $contributor->total_count, + 'current_count' => $contributor->current_count, + 'waiting_count' => $contributor->waiting_count, + 'fuzzy_count' => $contributor->fuzzy_count, + 'detailed' => [ + $contributor->project_id => (object) [ + 'total_count' => $contributor->total_count, + 'current_count' => $contributor->current_count, + 'waiting_count' => $contributor->waiting_count, + 'fuzzy_count' => $contributor->fuzzy_count, + 'project' => $projects[ $contributor->project_id ], + ], + ], + 'is_editor' => in_array( $user->ID, $editor_ids ), + ); + } + unset( $contributors, $editor_ids ); + + uasort( $locale_contributors['contributors'], function( $a, $b ) { + return $a->total_count < $b->total_count; + } ); + + return $locale_contributors; + } + + /** + * Retrieves contributors of a translation set. + * + * @param GP_Translation_Set $translation_set A translation set. + * @return array List of user IDs. + */ + private function get_locale_contributors_by_translation_set( $translation_set ) { + global $wpdb; + + $contributors = $wpdb->get_results( $wpdb->prepare( " + SELECT + `t`.`user_id` as `user_id`, + `o`.`project_id` as `project_id`, + MAX( `t`.`date_added` ) AS `last_update`, + COUNT( * ) as `total_count`, + COUNT( CASE WHEN `t`.`status` = 'current' THEN `t`.`status` END ) AS `current_count`, + COUNT( CASE WHEN `t`.`status` = 'waiting' THEN `t`.`status` END ) AS `waiting_count`, + COUNT( CASE WHEN `t`.`status` = 'fuzzy' THEN `t`.`status` END ) AS `fuzzy_count` + FROM `{$wpdb->gp_translations}` as `t` + JOIN `{$wpdb->gp_originals}` as `o` + ON `t`.`original_id` = `o`.`id` AND `o`.`status` = '+active' + WHERE + `t`.`translation_set_id` = %d + AND `t`.`user_id` IS NOT NULL AND `t`.`user_id` != 0 + AND `t`.`status` IN( 'current', 'waiting', 'fuzzy' ) + GROUP BY `t`.`user_id` + ", $translation_set->id ) ); + + return $contributors; + } + + /** + * Calculates the status of a project. + * + * @param GP_Project $project The GlotPress project. + * @param string $locale Slug of GlotPress locale. + * @param string $set_slug Slug of the translation set. + * @param object $status The status object. + * @param bool $calc_sub_projects Whether sub projects should be calculated too. + * Default true. + * @return object The status of a project. + */ + private function get_project_status( $project, $locale, $set_slug, $status = null, $calc_sub_projects = true ) { + if ( null === $status ) { + $status = new stdClass; + $status->sub_projects_count = 0; + $status->waiting_count = 0; + $status->current_count = 0; + $status->fuzzy_count = 0; + $status->untranslated_count = 0; + $status->changesrequested_count = 0; + $status->all_count = 0; + $status->percent_complete = 0; + } + + $status = apply_filters( 'gp_get_project_status', $status, $project, $locale, $set_slug ); + if ( isset( $status->is_pattern ) && $status->is_pattern ) { + return $status; + } + + $set = GP::$translation_set->by_project_id_slug_and_locale( + $project->id, + $set_slug, + $locale + ); + + if ( $set ) { + $status->sub_projects_count += 1; + $status->waiting_count += (int) $set->waiting_count(); + $status->current_count += (int) $set->current_count(); + $status->fuzzy_count += (int) $set->fuzzy_count(); + $status->untranslated_count += (int) $set->untranslated_count(); + $status->changesrequested_count += (int) $set->changesrequested_count(); + $status->all_count += (int) $set->all_count(); + + if ( $status->all_count ) { + /* + * > 50% round down, so that a project with all strings except 1 translated shows 99%, instead of 100%. + * < 50% round up, so that a project with just a few strings shows 1%, instead of 0%. + */ + $percent_complete = ( $status->current_count / $status->all_count * 100 ); + $status->percent_complete = ( $percent_complete > 50 ) ? floor( $percent_complete ) : ceil( $percent_complete ); + } + } + + if ( $calc_sub_projects ) { + $sub_projects = $this->get_active_sub_projects( $project, true ); + if ( $sub_projects ) { + foreach ( $sub_projects as $sub_project ) { + $this->get_project_status( $sub_project, $locale, $set_slug, $status, false ); + } + } + } + + return $status; + } + + /** + * Retrieves active sub projects. + * + * @param GP_Project $project The parent project + * @param bool $with_sub_projects Whether sub projects should be fetched too. + * Default false. + * @return array List of sub projects. + */ + private function get_active_sub_projects( $project, $with_sub_projects = false ) { + global $wpdb; + + $_projects = $project->many( " + SELECT * + FROM {$wpdb->gp_projects} + WHERE + parent_project_id = %d + AND active = 1 + ORDER BY id ASC + ", $project->id ); + + $projects = array(); + foreach ( $_projects as $project ) { + $projects[ $project->id ] = $project; + + if ( $with_sub_projects ) { + // e.g. wp/dev/admin/network + $sub_projects = $project->many( " + SELECT * + FROM {$wpdb->gp_projects} + WHERE + parent_project_id = %d + AND active = 1 + ORDER BY id ASC + ", $project->id ); + + foreach ( $sub_projects as $sub_project ) { + $projects[ $sub_project->id ] = $sub_project; + } + unset( $sub_projects); + } + } + unset( $_projects ); + + return $projects; + } + + /** + * Retrieves active sub projects with paging. + * + * This method is horribly inefficient when there exists many sub-projects, as it can't use SQL. + * + * @param GP_Project $project The parent project + * @param array $args { + * @type int $per_page Number of items per page. Default 20 + * @type int $page The page of results to view. Default 1. + * @type string $orderby The field to order by, id or name. Default id. + * @type string $order The sorting order, ASC or DESC. Default ASC. + * @type string $search The search string + * @type string $set_slug The translation set to view. + * @type string $locale The locale of the translation set to view. + * } + * @return array List of sub projects. + */ + private function get_paged_active_sub_projects( $project, $args = array() ) { + global $wpdb; + + $defaults = array( + 'per_page' => 20, + 'page' => 1, + 'search' => false, + 'set_slug' => '', + 'locale' => '', + 'filter' => false, + 'without_editors' => false, + ); + $r = wp_parse_args( $args, $defaults ); + extract( $r, EXTR_SKIP ); + + $limit_sql = ''; + if ( $per_page ) { + $limit_sql = $wpdb->prepare( 'LIMIT %d, %d', ( $page - 1 ) * $per_page, $per_page ); + } + + $parent_project_sql = $wpdb->prepare( 'AND tp.parent_project_id = %d', $project->id ); + + $search_sql = ''; + if ( $search ) { + $esc_search = '%%' . $wpdb->esc_like( $search ) . '%%'; + $search_sql = $wpdb->prepare( 'AND ( tp.name LIKE %s OR tp.slug LIKE %s )', $esc_search, $esc_search ); + } + + // Special Waiting Project Tab + // This removes the parent_project_id restriction and replaces it with all-translation-editer-projects + if ( 'waiting' == $project->slug && is_user_logged_in() && $this->roles_adapter ) { + + if ( ! $filter ) { + $filter = 'strings-waiting-and-fuzzy'; + } + + $user_id = get_current_user_id(); + + // Global Admin or Locale-specific admin + $can_approve_for_all = $this->roles_adapter->is_global_administrator( $user_id ); + + // Limit to only showing base-level projects. + $base_level_project_sql = ''; + $base_level_project_ids = $wpdb->get_col( "SELECT id FROM {$wpdb->gp_projects} WHERE parent_project_id IS NULL AND active = 1" ); + if ( $base_level_project_ids ) { + $ids = implode( ', ', array_map( 'intval', $base_level_project_ids ) ); + $base_level_project_sql = " AND tp.parent_project_id IN( $ids )"; + } + + // Check to see if they have any special approval permissions. + $allowed_projects = array(); + $allowed_base_level_projects = array(); + if ( ! $can_approve_for_all && $role = $this->roles_adapter->is_approver_for_locale( $user_id, $locale ) ) { + $allowed_projects = $this->roles_adapter->get_project_id_access_list( $user_id, $locale ); + + $allowed_base_level_projects = array_intersect( $allowed_projects, $base_level_project_ids ); + $allowed_projects = array_diff( $allowed_projects, $base_level_project_ids ); + + // Check to see if they can approve for all projects in this locale. + if ( Rosetta_Roles::LOCALE_MANAGER_ROLE === $role || in_array( 'all', $allowed_projects ) ) { + $can_approve_for_all = true; + $allowed_projects = array(); + } + } + + if ( $can_approve_for_all ) { + // The current user can approve for all projects, so just grab all with any waiting strings. + $parent_project_sql = 'AND ( stats.waiting > 0 OR stats.fuzzy > 0 )'; + $parent_project_sql .= $base_level_project_sql; + } elseif ( $allowed_projects || $allowed_base_level_projects ) { + $parent_project_sql = 'AND ( stats.waiting > 0 OR stats.fuzzy > 0 ) AND ( ('; + + if ( $allowed_projects ) { + /* + * The current user can approve for a small set of projects. + * We only need to check against tp.id and not tp_sub.id in this case as we've overriding the parent_project_id check. + */ + $ids = implode( ', ', array_map( 'intval', $allowed_projects ) ); + $parent_project_sql .= "tp.id IN( $ids )"; + $parent_project_sql .= $base_level_project_sql; + } else { + $parent_project_sql .= '0=1'; + } + + $parent_project_sql .= ") OR ("; + + if ( $allowed_base_level_projects ) { + /* + * The current user can approve all sub-projects of a base level project. + */ + $ids = implode( ', ', array_map( 'intval', $allowed_base_level_projects ) ); + $parent_project_sql .= "tp.parent_project_id IN( $ids )"; + } else { + $parent_project_sql .= '0=1'; + } + + $parent_project_sql .= ") )"; + + } else { + // The current user can't approve for any locale projects, or is logged out. + $parent_project_sql = 'AND 0=1'; + + } + + // Exclude projects which have an assigned editor. + if ( $without_editors ) { + $project_ids_with_editor = $wpdb->get_col( $wpdb->prepare( + "SELECT DISTINCT(project_id) FROM `translate_translation_editors` WHERE (locale = %s OR locale = 'all-locales') AND project_id != 0 AND user_id != %d", + $locale, + $user_id + ) ); + if ( $project_ids_with_editor ) { + $project_ids_with_editor = implode( ', ', array_map( 'intval', $project_ids_with_editor ) ); + $parent_project_sql .= " AND tp.id NOT IN( $project_ids_with_editor )"; + } + } + } + + $filter_order_by = $filter_where = ''; + $sort_order = 'DESC'; + $filter_name = $filter; + if ( $filter && '-asc' == substr( $filter, -4 ) ) { + $sort_order = 'ASC'; + $filter_name = substr( $filter, 0, -4 ); + } + switch ( $filter_name ) { + default: + if ( ! is_user_logged_in() || ! in_array( $project->slug, array( 'waiting', 'wp-themes', 'wp-plugins' ) ) ) { + if ( 'wp' === $project->slug ) { + $filter_order_by = 'stats.untranslated > 0 DESC, stats.untranslated DESC, tp.name DESC'; + } else { + $filter_order_by = 'stats.untranslated > 0 DESC, stats.untranslated DESC, tp.name ASC'; + } + break; + } + case 'special': + // Float favorites to the start, but only if they have untranslated strings + $user_fav_projects = array_map( 'esc_sql', $this->get_user_favorites( $project->slug ) ); + + // Float Favorites to the start, float fully translated to the bottom, order the rest by name + if ( $user_fav_projects ) { + $filter_order_by = 'FIELD( tp.path, "' . implode( '", "', $user_fav_projects ) . '" ) > 0 AND stats.untranslated > 0 DESC, stats.untranslated > 0 DESC, stats.untranslated DESC, tp.name ASC'; + } else { + $filter_order_by = 'stats.untranslated > 0 DESC, stats.untranslated DESC, tp.name ASC'; + } + break; + + case 'favorites': + // Only list favorites + $user_fav_projects = array_map( 'esc_sql', $this->get_user_favorites( $project->slug ) ); + + if ( $user_fav_projects ) { + $filter_where = 'AND tp.path IN( "' . implode( '", "', $user_fav_projects ) . '" )'; + } else { + $filter_where = 'AND 0=1'; + } + $filter_order_by = 'stats.untranslated > 0 DESC, tp.name ASC'; + + break; + + case 'strings-remaining': + $filter_where = 'AND stats.untranslated > 0'; + $filter_order_by = "stats.untranslated $sort_order, tp.name ASC"; + break; + + case 'strings-waiting-and-fuzzy': + $filter_where = 'AND (stats.waiting > 0 OR stats.fuzzy > 0 )'; + $filter_order_by = "tp.path LIKE 'wp/%%' AND (stats.fuzzy + stats.waiting) > 0 DESC, (stats.fuzzy + stats.waiting) $sort_order, tp.name ASC"; + break; + + case 'strings-waiting-and-fuzzy-by-modified-date': + $filter_where = 'AND (stats.waiting > 0 OR stats.fuzzy > 0 ) AND stats.date_modified > "0000-00-00 00:00:00"'; + $filter_order_by = "stats.date_modified $sort_order, tp.name ASC"; + break; + + case 'percent-completed': + $filter_where = 'AND stats.untranslated > 0'; + $filter_order_by = "( stats.current / stats.all ) $sort_order, tp.name ASC"; + break; + + case 'completed': + $filter_where = 'AND stats.all > 0 AND stats.current = stats.all'; + $filter_order_by = "tp.name $sort_order"; + break; + + } + + /* + * Find all child projects with translation sets that match the current locale/slug. + * + * 1. We need to fetch all sub-projects of the current project (so, if we're at wp-plugins, we want akismet, debug bar, importers, etc) + * 2. Next, we fetch the sub-projects of those sub-projects, that gets us things like Development, Readme, etc. + * 3. Next, we fetch the translation sets of both the sub-projects(1), and any sub-sub-projects(2). + * Once we have the sets in 3, we can then check to see if there exists any translation sets for the current (locale, slug) (ie. en-au/default) + * If not, we can simply filter them out, so that paging only has items returned that actually exist. + */ + $_projects = $project->many( " + SELECT SQL_CALC_FOUND_ROWS tp.* + FROM {$wpdb->gp_projects} tp + LEFT JOIN {$wpdb->project_translation_status} stats ON stats.project_id = tp.id AND stats.locale = %s AND stats.locale_slug = %s + WHERE + tp.active = 1 + $parent_project_sql + $search_sql + $filter_where + GROUP BY tp.id + ORDER BY $filter_order_by + $limit_sql + ", $locale, $set_slug ); + + $results = (int) $project->found_rows(); + $pages = (int) ceil( $results / $per_page ); + + $projects = array(); + foreach ( $_projects as $project ) { + $projects[ $project->id ] = $project; + } + + return array( + 'pages' => compact( 'pages', 'page', 'per_page', 'results' ), + 'projects' => $projects, + 'filter' => $filter, + ); + } + + /** + * Retrieves a list of projects which the current user has favorited. + * + * @return array List of favorited items, eg [ 'wp-themes/twentyten', 'wp-themes/twentyeleven' ] + */ + function get_user_favorites( $project_slug = false ) { + global $wpdb; + + if ( ! is_user_logged_in() ) { + return array(); + } + + $user_id = get_current_user_id(); + + switch ( $project_slug ) { + default: + // Fall through to include both Themes and Plugins + case 'wp-themes': + // Theme favorites are stored as theme slugs, these map 1:1 to GlotPress projects. + $theme_favorites = array_map( function( $slug ) { + return "wp-themes/$slug"; + }, (array) get_user_meta( $user_id, 'theme_favorites', true ) ); + + if ( 'wp-themes' === $project_slug ) { + return $theme_favorites; + } + + case 'wp-plugins': + // Plugin favorites are stored as plugin slugs, these map 1:1 to GlotPress projects. + $plugin_favorites = array_map( function( $slug ) { + return "wp-plugins/$slug"; + }, (array) get_user_meta( $user_id, 'plugin_favorites', true ) ); + + if ( 'wp-plugins' === $project_slug ) { + return $plugin_favorites; + } + } + + // Return all favorites, for uses in things like the Waiting tab + return array_merge( $theme_favorites, $plugin_favorites ); + } + + /** + * Retrieves active top level projects. + * + * @return array List of top level projects. + */ + public function get_active_top_level_projects() { + global $wpdb; + + return GP::$project->many( " + SELECT * + FROM {$wpdb->gp_projects} + WHERE + parent_project_id IS NULL + AND active = 1 + ORDER BY FIELD( slug, 'waiting', 'wp', 'wp-themes', 'wp-plugins', 'patterns', 'meta', 'apps' ) + " ); + } + + private function _encode( $raw ) { + if ( 'UTF-8' !== mb_detect_encoding( $raw, 'UTF-8', true ) ) { + $raw = mb_convert_encoding( $raw, 'UTF-8', 'ASCII, JIS, Windows-1252, ISO-8859-1' ); + } + return ent2ncr( htmlspecialchars_decode( htmlentities( $raw, ENT_NOQUOTES, 'UTF-8' ), ENT_NOQUOTES ) ); + } +} diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-maintenance.php b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-maintenance.php new file mode 100644 index 0000000..c8ad8aa --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-maintenance.php @@ -0,0 +1,15 @@ + 503 ] ); + } +} diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-redirector.php b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-redirector.php new file mode 100644 index 0000000..49639cd --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-redirector.php @@ -0,0 +1,63 @@ +redirect( '/' ); + } else { + $this->redirect( "/locale/$path" ); + } + } + + public function redirect_index() { + $this->redirect( '/' ); + } + + /** + * Redirects previous glossary paths from `/projects/wp/dev/$locale/$slug/glossary` + * to `/locale/$locale/$slug/glossary`. + * + * @param string $project_path Path of a project. + * @param string $locale Locale slug. + * @param string $slug Slug if a translation set. + */ + public function redirect_old_glossary( $project_path = '', $locale = '', $slug = '' ) { + $project_path = "wp/$project_path"; + + $project = GP::$project->by_path( $project_path ); + if ( ! $project ) { + $route_glossary_entry = new GP_Route_Glossary_Entry(); + return $route_glossary_entry->glossary_entries_get( $project_path, $locale, $slug ); + } + + $translation_set = GP::$translation_set->by_project_id_slug_and_locale( $project->id, $slug, $locale ); + if ( ! $translation_set ) { + $route_glossary_entry = new GP_Route_Glossary_Entry(); + return $route_glossary_entry->glossary_entries_get( $project_path, $locale, $slug ); + } + + // If the current project has a glossary stop here and load it. + $glossary = GP::$glossary->by_set_id( $translation_set->id ); + if ( $glossary ) { + $route_glossary_entry = new GP_Route_Glossary_Entry(); + return $route_glossary_entry->glossary_entries_get( $project_path, $locale, $slug ); + } + + // Otherwise redirect to the locale glossary. + $locale_glossary_translation_set = GP::$translation_set->by_project_id_slug_and_locale( 0, $slug, $locale ); + $locale_glossary = GP::$glossary->by_set_id( $locale_glossary_translation_set->id ); + $this->redirect( $locale_glossary->path() ); + } +} diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-stats.php b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-stats.php new file mode 100644 index 0000000..3cb42f2 --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-stats.php @@ -0,0 +1,247 @@ + false, + 'meta/wordpress-org' => false, + 'meta/rosetta' => false, + 'meta/browsehappy' => false, + 'meta/themes' => false, + 'meta/plugins-v3' => false, + 'meta/forums' => false, + 'apps/android' => false, + 'apps/ios' => false, + 'waiting' => false, + 'wp-themes' => false, + 'wp-plugins' => false, + ); + + // I'm sure there's somewhere to fetch these from statically defined + $wp_project = GP::$project->by_path( 'wp' ); + $previous_wp_version = WP_CORE_STABLE_BRANCH - 0.1; + foreach ( GP::$project->find_many( array( 'parent_project_id' => $wp_project->id, 'active' => 1 ), 'name ASC' ) as $wp_sub_project ) { + if ( 'dev' === $wp_sub_project->slug || version_compare( $previous_wp_version, (float) $wp_sub_project->name, '<=' ) ) { + // Prefix the WordPress projects... + $wp_sub_project->name = $wp_project->name . ' ' . $wp_sub_project->name; + $projects = array_merge( array( $wp_sub_project->path => $wp_sub_project ), $projects ); + } + } + + // Load the projects for each display item + array_walk( $projects, function( &$project, $project_slug ) { + if ( ! $project ) { + $project = GP::$project->by_path( $project_slug ); + } + } ); + + $all_project_paths_sql = '"' . implode( '", "', array_keys( $projects ) ) . '"'; + $sql = "SELECT + path, locale, locale_slug, + (100 * stats.current/stats.all) as percent_complete, + stats.waiting+stats.fuzzy as waiting_strings, + stats.date_modified as last_modified + FROM {$wpdb->project_translation_status} stats + LEFT JOIN {$wpdb->gp_projects} p ON stats.project_id = p.id + WHERE + p.path IN ( $all_project_paths_sql ) + AND p.active = 1"; + + $rows = $wpdb->get_results( $sql ); + + // Split out into $[Locale][Project] = % + $translation_locale_statuses = array(); + foreach ( $rows as $set ) { + $locale_key = $set->locale; + if ( 'default' !== $set->locale_slug ) { + $locale_key = $set->locale . '/' . $set->locale_slug; + } + + $gp_locale = GP_Locales::by_slug( $locale_key ); + if ( ! $gp_locale || ! $gp_locale->wp_locale ) { + continue; + } + + /* + * > 50% round down, so that a project with all strings except 1 translated shows 99%, instead of 100%. + * < 50% round up, so that a project with just a few strings shows 1%, instead of 0%. + */ + $percent_complete = (float) $set->percent_complete; + $percent_complete = ( $percent_complete > 50 ) ? floor( $percent_complete ) : ceil( $percent_complete ); + $translation_locale_statuses[ $locale_key ][ $set->path ] = $percent_complete; + + // Don't include these in the 'waiting' section, override the value to be waiting strings w/ Date Modified. + if ( 'wp-plugins' === $set->path || 'wp-themes' === $set->path ) { + $translation_locale_statuses[ $locale_key ][ $set->path ] = $set->waiting_strings; + $projects[ $set->path ]->cache_last_updated = $set->last_modified; + continue; + } + + if ( ! isset( $translation_locale_statuses[ $locale_key ]['waiting'] ) ) { + $translation_locale_statuses[ $locale_key ]['waiting'] = 0; + } + $translation_locale_statuses[ $locale_key ]['waiting'] += (int) $set->waiting_strings; + } + unset( $rows, $locale_key, $set ); + + // Calculate a list of [Locale] = % subtotals + $translation_locale_complete = array(); + foreach ( $translation_locale_statuses as $locale => $sets ) { + unset( $sets['waiting'], $sets['wp-plugins'], $sets['wp-themes'] ); + $sets_count = count( $sets ); + if ( $sets_count ) { + $translation_locale_complete[ $locale ] = round( array_sum( $sets ) / $sets_count, 3 ); + } else { + $translation_locale_complete[ $locale ] = 0; + } + } + unset( $locale, $sets ); + + // Sort by translation completeness, least number of waiting strings, and locale slug. + uksort( $translation_locale_complete, function ( $a, $b ) use ( $translation_locale_complete, $translation_locale_statuses ) { + if ( $translation_locale_complete[ $a ] < $translation_locale_complete[ $b ] ) { + return 1; + } elseif ( $translation_locale_complete[ $a ] == $translation_locale_complete[ $b ] ) { + if ( $translation_locale_statuses[ $a ]['waiting'] != $translation_locale_statuses[ $b ]['waiting'] ) { + return strnatcmp( $translation_locale_statuses[ $a ]['waiting'], $translation_locale_statuses[ $b ]['waiting'] ); + } else { + return strnatcmp( $a, $b ); + } + } else { + return -1; + } + } ); + + $this->tmpl( 'stats-overview', get_defined_vars() ); + } + + public function get_stats_plugin_theme_overview( $locale, $locale_slug, $view = false ) { + global $wpdb; + if ( ! $locale || ! $locale_slug || ! $view ) { + wp_redirect( '/stats', 301 ); + exit; + } + + if ( 'default' !== $locale_slug ) { + $gp_locale = GP_Locales::by_slug( $locale . '/' . $locale_slug ); + } else { + $gp_locale = GP_Locales::by_slug( $locale ); + } + + if ( ! $gp_locale ) { + wp_redirect( '/stats', 301 ); + exit; + } + + $locale_path = $locale . '/' . $locale_slug; + + $items = array(); + if ( 'plugins' == $view ) { + // Fetch top ~500 plugins.. + $items = get_transient( __METHOD__ . '_plugin_items' ); + if ( false === $items ) { + $items = array(); + foreach ( range( 1, 2 ) as $page ) { // 2 pages x 250 items per page. + $api = wp_safe_remote_get( 'https://api.wordpress.org/plugins/info/1.2/?action=query_plugins&request[per_page]=250&request[page]=' . $page ); + foreach ( json_decode( wp_remote_retrieve_body( $api ) )->plugins as $plugin ) { + $items[ $plugin->slug ] = (object) [ + 'installs' => $plugin->active_installs, + ]; + } + } + set_transient( __METHOD__ . '_plugin_items', $items, $items ? DAY_IN_SECONDS : 5 * MINUTE_IN_SECONDS ); + } + } elseif ( 'themes' == $view && defined( 'WPORG_THEME_DIRECTORY_BLOGID' ) ) { + $items = get_transient( __METHOD__ . '_theme_items' ); + if ( false === $items ) { + // The Themes API API isn't playing nice.. Easiest way.. + switch_to_blog( WPORG_THEME_DIRECTORY_BLOGID ); + $items = $wpdb->get_results( + "SELECT p.post_name as slug, pm.meta_value as installs + FROM {$wpdb->posts} p + LEFT JOIN {$wpdb->postmeta} pm ON p.ID = pm.post_id AND pm.meta_key = '_active_installs' + WHERE p.post_type = 'repopackage' AND p.post_status = 'publish' + ORDER BY pm.meta_value+0 DESC, p.post_date + LIMIT 500", + OBJECT_K + ); + restore_current_blog(); + foreach ( $items as $slug => $details ) { + unset( $items[$slug]->slug ); + } + set_transient( __METHOD__ . '_theme_items', $items, $items ? DAY_IN_SECONDS : 5 * MINUTE_IN_SECONDS ); + } + } else { + wp_safe_redirect( '/stats' ); + die(); + } + + $project_ids = []; + foreach ( $items as $slug => $details ) { + $items[$slug]->project = GP::$project->by_path( 'wp-' . $view . '/' . $slug ); + if ( ! $items[$slug]->project || ! $items[$slug]->project->active ) { + // Not all top-all-time plugins/themes have translation projects. + unset( $items[ $slug ] ); + continue; + } + + if ( 'plugins' == $view ) { + // For plugins, we're ignoring the Readme projects as they're not immediately useful. + // The display will use the "Code Stable" if present, else "Code Development" + $code_project = + GP::$project->by_path( 'wp-' . $view . '/' . $slug . '/stable' ) ?: + GP::$project->by_path( 'wp-' . $view . '/' . $slug . '/dev' ); + + // No code project? This happens when the plugin isn't translatable. The readme projects still exist though. + if ( ! $code_project ) { + unset( $items[ $slug ] ); + continue; + } + + $project_ids[ $code_project->id ] = $slug; + } else { + $project_ids[ $items[$slug]->project->id ] = $slug; + } + } + + $sql_project_ids = implode( ', ', array_map( 'intval', array_keys( $project_ids ) ) ); + $stats = $wpdb->get_results( $wpdb->prepare( + "SELECT `project_id`, `all`, `current`, `waiting`, `fuzzy`, `untranslated` + FROM {$wpdb->project_translation_status} + WHERE project_id IN ($sql_project_ids) + AND locale = %s AND locale_slug = %s", + $locale, $locale_slug + ) ); + + // Link Projects & Stats + foreach ( $stats as $row ) { + $items[ $project_ids[ $row->project_id ] ]->stats = $row; + } + + // Final sanity check that we have data to display. + foreach ( $items as $slug => $details ) { + if ( + ! isset( $details->stats ) || // Didn't find any cached data for a project + ! $details->stats->all // Project has no strings, not useful for this interface + ) { + unset( $items[ $slug ] ); + } + } + + $this->tmpl( 'stats-plugin-themes-overview', compact( 'locale_path', 'view', 'gp_locale', 'items' ) ); + } +} diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-directory.php b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-directory.php new file mode 100644 index 0000000..63bece9 --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-directory.php @@ -0,0 +1,248 @@ + 0, + 'editors' => array(), + 'contributors' => array(), + ); + + $translation_editors = $wpdb->get_results( $wpdb->prepare( " + SELECT + `user_id`, `locale` + FROM {$wpdb->wporg_translation_editors} + WHERE `project_id` = %d AND `locale` != 'all-locales' + ", $project->id ), OBJECT ); + + foreach ( $translation_editors as $translation_editor ) { + if ( ! isset( $contributors_by_locale[ $translation_editor->locale ] ) ) { + $contributors_by_locale[ $translation_editor->locale ] = $default_value; + } + + $user = get_user_by( 'id', $translation_editor->user_id ); + if ( ! $user ) { + continue; + } + + $contributors_by_locale[ $translation_editor->locale ]['editors'][ $translation_editor->user_id ] = (object) array( + 'nicename' => $user->user_nicename, + 'display_name' => $this->_encode( $user->display_name ), + ); + + $contributors_by_locale[ $translation_editor->locale ]['count']++; + } + + unset( $translation_editors ); + + foreach ( $this->get_translation_contributors_by_locale( $project->id ) as $row ) { + if ( ! isset( $contributors_by_locale[ $row->locale ] ) ) { + $contributors_by_locale[ $row->locale ] = $default_value; + } + + if ( isset( $contributors_by_locale[ $row->locale ]['editors'][ $row->user_id ] ) ) { + continue; + } + + if ( isset( $contributors_by_locale[ $row->locale ]['contributors'][ $row->user_id ] ) ) { + continue; + } + + $user = get_user_by( 'id', $row->user_id ); + if ( ! $user ) { + continue; + } + + $contributors_by_locale[ $row->locale ]['contributors'][ $row->user_id ] = (object) array( + 'nicename' => $user->user_nicename, + 'display_name' => $this->_encode( $user->display_name ), + ); + + $contributors_by_locale[ $row->locale ]['count']++; + } + + $sub_projects = $wpdb->get_col( $wpdb->prepare( " + SELECT id + FROM {$wpdb->gp_projects} + WHERE parent_project_id = %d + ", $project->id ) ); + + foreach ( $sub_projects as $sub_project ) { + foreach ( $this->get_translation_contributors_by_locale( $sub_project ) as $row ) { + if ( ! isset( $contributors_by_locale[ $row->locale ] ) ) { + $contributors_by_locale[ $row->locale ] = $default_value; + } + + if ( isset( $contributors_by_locale[ $row->locale ]['editors'][ $row->user_id ] ) ) { + continue; + } + + if ( isset( $contributors_by_locale[ $row->locale ]['contributors'][ $row->user_id ] ) ) { + continue; + } + + $user = get_user_by( 'id', $row->user_id ); + if ( ! $user ) { + continue; + } + + $contributors_by_locale[ $row->locale ]['contributors'][ $row->user_id ] = (object) array( + 'nicename' => $user->user_nicename, + 'display_name' => $this->_encode( $user->display_name ), + ); + + $contributors_by_locale[ $row->locale ]['count']++; + } + } + + return $contributors_by_locale; + } + + /** + * Generates the chart data for contributors activity. + * + * @param \GP_Project $project The project. + * @return array The data to build a chart via Chartist.js. + */ + protected function get_contributors_chart_data( $project ) { + global $wpdb; + + $sub_projects = $wpdb->get_col( $wpdb->prepare( " + SELECT id + FROM {$wpdb->gp_projects} + WHERE parent_project_id = %d + ", $project->id ) ); + + $project_ids = array_merge( array( $project->id ), $sub_projects ); + $translation_set_ids = $wpdb->get_col( " + SELECT `id` FROM {$wpdb->gp_translation_sets} WHERE `project_id` IN ( " . implode( ',', $project_ids ) . ") + " ); + + if ( ! $translation_set_ids ) { + return array(); + } + + $date_begin = new DateTime( '-6 day' ); + $date_end = new DateTime( 'NOW' ); + $date_interval = new DateInterval( 'P1D' ); + $date_range = new DatePeriod( $date_begin, $date_interval, $date_end ); + + $days = array(); + foreach ( $date_range as $date ) { + $days[] = $date->format( 'Y-m-d' ); + } + $days[] = $date_end->format( 'Y-m-d' ); + + $counts = $wpdb->get_results( " + SELECT + DATE(date_modified) AS `day`, COUNT(*) AS `count`, `status` + FROM {$wpdb->gp_translations} + WHERE + `translation_set_id` IN (" . implode( ',', $translation_set_ids ) . ") + AND date_modified >= ( CURDATE() - INTERVAL 7 DAY ) + GROUP BY `status`, `day` + ORDER BY `day` DESC + " ); + + $status = array( 'current', 'waiting', 'rejected' ); + $data = []; + foreach ( $days as $day ) { + $data[ $day ] = array_fill_keys( $status, 0 ); + foreach ( $counts as $count ) { + if ( $count->day !== $day || ! in_array( $count->status, $status ) ) { + continue; + } + + $data[ $day ][ $count->status ] = (int) $count->count; + } + } + + $labels = array_keys( $data ); + array_pop( $labels ); + $labels[] = ''; // Don't show a label for today + + $series = array(); + $series_data = array_values( $data ); + foreach ( $status as $stati ) { + $series[] = (object) array( + 'name' => $stati, + 'data' => wp_list_pluck( $series_data, $stati ), + ); + } + + $chart_data = compact( 'labels', 'series' ); + + return $chart_data; + } + + /** + * Prints stats about language packs of a specific project. + * + * @param string $type Type of the language pack, plugin or theme. + * @param string $slug Slug of a project. + */ + public function get_language_packs( $type, $slug ) { + if ( 'plugin' === $type ) { + $type = 'plugins'; + } else { + $type = 'themes'; + } + + $json = wp_remote_retrieve_body( + wp_safe_remote_get( + "https://api.wordpress.org/translations/$type/1.0/?slug={$slug}", + array( + 'user-agent' => 'WordPress.org Translate', + ) + ) + ); + $language_packs = $json && '{' == $json[0] ? json_decode( $json ) : null; + + return $language_packs; + } + + /** + * Retrieves translators of a specific project. + * + * @param int $project_id Project ID. + * @return object Translators of the project. + */ + private function get_translation_contributors_by_locale( $project_id ) { + global $wpdb; + + $sql = $wpdb->prepare( " + SELECT ts.`locale`, ts.`slug` AS `locale_slug`, t.`user_id` + FROM `{$wpdb->gp_translations}` t, `{$wpdb->gp_translation_sets}` ts + WHERE t.`translation_set_id` = ts.`id` + AND t.`user_id` IS NOT NULL AND t.`user_id` != 0 + AND t.`date_modified` > %s + AND ts.`project_id` = %d + AND t.`status` <> 'rejected' + GROUP BY ts.`locale`, ts.`slug`, t.`user_id` + ", date( 'Y-m-d', time() - YEAR_IN_SECONDS ), $project_id ); + + return $wpdb->get_results( $sql ); + } + + private function _encode( $raw ) { + $raw = mb_convert_encoding( $raw, 'UTF-8', 'ASCII, JIS, UTF-8, Windows-1252, ISO-8859-1' ); + return ent2ncr( htmlspecialchars_decode( htmlentities( $raw, ENT_NOQUOTES, 'UTF-8' ), ENT_NOQUOTES ) ); + } +} diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-plugins.php b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-plugins.php new file mode 100644 index 0000000..89c5529 --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-plugins.php @@ -0,0 +1,192 @@ +by_path( $project_path ); + if ( ! $project ) { + return $this->die_with_404(); + } + + $rows = $wpdb->get_results( " + SELECT + path, locale, locale_slug, + (100 * stats.current/stats.all) as percent_complete, + stats.waiting+stats.fuzzy as waiting_strings, + stats.untranslated as untranslated + FROM {$wpdb->project_translation_status} stats + LEFT JOIN {$wpdb->gp_projects} p ON stats.project_id = p.id + WHERE + p.parent_project_id = '{$project->id}' + " ); + + // Split out into $[Locale][Project] = % + $translation_locale_statuses = array(); + $sub_projects = array(); + foreach ( $rows as $set ) { + + // Find unique locale key. + $locale_key = $set->locale; + if ( 'default' != $set->locale_slug ) { + $locale_key = $set->locale . '/' . $set->locale_slug; + } + $sub_project = str_replace( "$project_path/", '', $set->path ); + $sub_projects[ $sub_project ] = true; + + /* + * > 50% round down, so that a project with all strings except 1 translated shows 99%, instead of 100%. + * < 50% round up, so that a project with just a few strings shows 1%, instead of 0%. + */ + $percent_complete = (float) $set->percent_complete; + $translation_locale_statuses[ $locale_key ][ $sub_project ] = ( $percent_complete > 50 ) ? floor( $percent_complete ) : ceil( $percent_complete ); + + // Increment the amount of waiting and untranslated strings. + if ( ! isset( $translation_locale_statuses[ $locale_key ]['waiting'] ) ) { + $translation_locale_statuses[ $locale_key ]['waiting'] = 0; + } + if ( ! isset( $translation_locale_statuses[ $locale_key ]['untranslated'] ) ) { + $translation_locale_statuses[ $locale_key ]['untranslated'] = 0; + } + $translation_locale_statuses[ $locale_key ]['waiting'] += (int) $set->waiting_strings; + $translation_locale_statuses[ $locale_key ]['untranslated'] += (int) $set->untranslated; + + + ksort( $translation_locale_statuses[ $locale_key ], SORT_NATURAL ); + } + + // Check if the plugin has at least one code project. These won't be created if a plugin + // has no text domain defined. + $sub_projects = array_keys( $sub_projects ); + $has_error = ( ! in_array( 'dev', $sub_projects ) && ! in_array( 'stable', $sub_projects ) ); + + unset( $project_path, $locale_key, $rows, $set, $sub_project, $sub_projects ); + + // Calculate a list of [Locale] = % subtotals + $translation_locale_complete = array(); + foreach ( $translation_locale_statuses as $locale => $sets ) { + unset( $sets['waiting'], $sets['untranslated'] ); + $translation_locale_complete[ $locale ] = round( array_sum( $sets ) / count( $sets ), 3 ); + } + unset( $locale, $sets ); + + + // Sort by translation completeness, least number of waiting strings, and locale slug. + uksort( $translation_locale_complete, function ( $a, $b ) use ( $translation_locale_complete, $translation_locale_statuses ) { + if ( $translation_locale_complete[ $a ] < $translation_locale_complete[ $b ] ) { + return 1; + } elseif ( $translation_locale_complete[ $a ] == $translation_locale_complete[ $b ] ) { + if ( $translation_locale_statuses[ $a ]['waiting'] != $translation_locale_statuses[ $b ]['waiting'] ) { + return strnatcmp( $translation_locale_statuses[ $a ]['waiting'], $translation_locale_statuses[ $b ]['waiting'] ); + } else { + return strnatcmp( $a, $b ); + } + } else { + return -1; + } + } ); + + $project->icon = $this->get_plugin_icon( $project, 64 ); + + $this->tmpl( 'projects-wp-plugins', get_defined_vars() ); + } + + /** + * Prints stats about contributors of a specific project. + * + * @param string $project_slug Slug of a project. + */ + public function get_plugin_contributors( $project_slug ) { + $project_path = 'wp-plugins/' . $project_slug; + $project = GP::$project->by_path( $project_path ); + if ( ! $project ) { + return $this->die_with_404(); + } + + $project->icon = $this->get_plugin_icon( $project, 64 ); + + $contributors_by_locale = gp_get_meta( 'wp-plugins', $project->id, 'contributors-by-locale' ); + if ( ! $contributors_by_locale || $contributors_by_locale['last_updated'] + HOUR_IN_SECONDS < time() ) { + $contributors_by_locale = $this->get_contributors( $project ); + $contributors_by_locale['last_updated'] = time(); + gp_update_meta( $project->id, 'contributors-by-locale', $contributors_by_locale, 'wp-plugins' ); + } + + $chart_data = gp_get_meta( 'wp-plugins', $project->id, 'contributors-chart-data' ); + if ( ! $chart_data || $chart_data['last_updated'] + DAY_IN_SECONDS < time() ) { + $chart_data = $this->get_contributors_chart_data( $project ); + $chart_data['last_updated'] = time(); + gp_update_meta( $project->id, 'contributors-chart-data', $chart_data, 'wp-plugins' ); + } + + unset( $contributors_by_locale['last_updated'], $chart_data['last_updated'] ); + + $this->tmpl( 'projects-wp-plugins-contributors', get_defined_vars() ); + } + + /** + * Prints stats about language packs of a specific project. + * + * @param string $project_slug Slug of a project. + */ + public function get_plugin_language_packs( $project_slug ) { + $project_path = 'wp-plugins/' . $project_slug; + $project = GP::$project->by_path( $project_path ); + if ( ! $project ) { + return $this->die_with_404(); + } + + $project->icon = $this->get_plugin_icon( $project, 64 ); + + $json = wp_remote_retrieve_body( + wp_safe_remote_get( + "https://api.wordpress.org/translations/plugins/1.0/?slug={$project_slug}", + array( + 'user-agent' => 'WordPress.org Translate', + ) + ) + ); + $language_packs = $json && '{' == $json[0] ? json_decode( $json ) : null; + + $this->tmpl( 'projects-wp-plugins-language-packs', get_defined_vars() ); + } + + /** + * Retrieves the icon of a plugin. + * + * @param GP_Project $project The plugin project. + * @param int $size Optional. The size of the icon. Default 64. + * @return string HTML markup for the icon. + */ + private function get_plugin_icon( $project, $size = 64 ) { + $default = '
    '; + + $icon = ''; + + if ( class_exists( 'WordPressdotorg\Plugin_Directory\Template' ) ) { + $directory_post_id = gp_get_meta( 'wp-plugins', $project->id, 'directory-post-id' ); + if ( $directory_post_id ) { + switch_to_blog( WPORG_PLUGIN_DIRECTORY_BLOGID ); + $icon = \WordPressdotorg\Plugin_Directory\Template::get_plugin_icon( $directory_post_id, 'html' ); + restore_current_blog(); + } + } + + if ( $icon ) { + return $icon; + } + + return $default; + } +} diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-themes.php b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-themes.php new file mode 100644 index 0000000..2f66114 --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-themes.php @@ -0,0 +1,174 @@ +by_path( $project_path ); + if ( ! $project ) { + return $this->die_with_404(); + } + + $rows = $wpdb->get_results( " + SELECT + path, locale, locale_slug, + (100 * stats.current/stats.all) as percent_complete, + stats.waiting+stats.fuzzy as waiting_strings, + stats.untranslated as untranslated + FROM {$wpdb->project_translation_status} stats + LEFT JOIN {$wpdb->gp_projects} p ON stats.project_id = p.id + WHERE + p.id = '{$project->id}' + " ); + + // Split out into $[Locale][Project] = % + $translation_locale_statuses = array(); + $sub_projects = array(); + foreach ( $rows as $set ) { + + // Find unique locale key. + $locale_key = $set->locale; + if ( 'default' != $set->locale_slug ) { + $locale_key = $set->locale . '/' . $set->locale_slug; + } + + /* + * > 50% round down, so that a project with all strings except 1 translated shows 99%, instead of 100%. + * < 50% round up, so that a project with just a few strings shows 1%, instead of 0%. + */ + $percent_complete = (float) $set->percent_complete; + $translation_locale_statuses[ $locale_key ]['stable'] = ( $percent_complete > 50 ) ? floor( $percent_complete ) : ceil( $percent_complete ); + + // Increment the amount of waiting and untranslated strings. + if ( ! isset( $translation_locale_statuses[ $locale_key ]['waiting'] ) ) { + $translation_locale_statuses[ $locale_key ]['waiting'] = 0; + } + if ( ! isset( $translation_locale_statuses[ $locale_key ]['untranslated'] ) ) { + $translation_locale_statuses[ $locale_key ]['untranslated'] = 0; + } + $translation_locale_statuses[ $locale_key ]['waiting'] += (int) $set->waiting_strings; + $translation_locale_statuses[ $locale_key ]['untranslated'] += (int) $set->untranslated; + + + ksort( $translation_locale_statuses[ $locale_key ], SORT_NATURAL ); + } + + unset( $project_path, $locale_key, $rows, $set, $sub_project, $sub_projects ); + + // Calculate a list of [Locale] = % subtotals + $translation_locale_complete = array(); + foreach ( $translation_locale_statuses as $locale => $sets ) { + unset( $sets['waiting'], $sets['untranslated'] ); + $translation_locale_complete[ $locale ] = round( array_sum( $sets ) / count( $sets ), 3 ); + } + unset( $locale, $sets ); + + + // Sort by translation completeness, least number of waiting strings, and locale slug. + uksort( $translation_locale_complete, function ( $a, $b ) use ( $translation_locale_complete, $translation_locale_statuses ) { + if ( $translation_locale_complete[ $a ] < $translation_locale_complete[ $b ] ) { + return 1; + } elseif ( $translation_locale_complete[ $a ] == $translation_locale_complete[ $b ] ) { + if ( $translation_locale_statuses[ $a ]['waiting'] != $translation_locale_statuses[ $b ]['waiting'] ) { + return strnatcmp( $translation_locale_statuses[ $a ]['waiting'], $translation_locale_statuses[ $b ]['waiting'] ); + } else { + return strnatcmp( $a, $b ); + } + } else { + return -1; + } + } ); + + $project->icon = $this->get_theme_icon( $project, 64 ); + + $this->tmpl( 'projects-wp-themes', get_defined_vars() ); + } + + /** + * Prints stats about contributors of a specific project. + * + * @param string $project_slug Slug of a project. + */ + public function get_theme_contributors( $project_slug ) { + global $wpdb; + + $project_path = 'wp-themes/' . $project_slug; + $project = GP::$project->by_path( $project_path ); + if ( ! $project ) { + return $this->die_with_404(); + } + + $project->icon = $this->get_theme_icon( $project, 64 ); + + $contributors_by_locale = gp_get_meta( 'wp-themes', $project->id, 'contributors-by-locale' ); + if ( ! $contributors_by_locale || $contributors_by_locale['last_updated'] + HOUR_IN_SECONDS < time() ) { + $contributors_by_locale = $this->get_contributors( $project ); + $contributors_by_locale['last_updated'] = time(); + gp_update_meta( $project->id, 'contributors-by-locale', $contributors_by_locale, 'wp-themes' ); + } + + $chart_data = gp_get_meta( 'wp-themes', $project->id, 'contributors-chart-data' ); + if ( ! $chart_data || $chart_data['last_updated'] + DAY_IN_SECONDS < time() ) { + $chart_data = $this->get_contributors_chart_data( $project ); + $chart_data['last_updated'] = time(); + gp_update_meta( $project->id, 'contributors-chart-data', $chart_data, 'wp-themes' ); + } + + unset( $contributors_by_locale['last_updated'], $chart_data['last_updated'] ); + + $this->tmpl( 'projects-wp-themes-contributors', get_defined_vars() ); + } + + /** + * Prints stats about language packs of a specific project. + * + * @param string $project_slug Slug of a project. + */ + public function get_theme_language_packs( $project_slug ) { + $project_path = 'wp-themes/' . $project_slug; + $project = GP::$project->by_path( $project_path ); + if ( ! $project ) { + return $this->die_with_404(); + } + + $project->icon = $this->get_theme_icon( $project, 64 ); + + $language_packs = $this->get_language_packs( 'theme', $project_slug ); + + $this->tmpl( 'projects-wp-themes-language-packs', get_defined_vars() ); + } + + /** + * Retrieves the icon of a theme. + * + * @param GP_Project $project The theme project. + * @param int $size Optional. The size of the icon. Default 64. + * @return string HTML markup for the icon. + */ + private function get_theme_icon( $project, $size = 64 ) { + $default = '
    '; + + $screenshot = gp_get_meta( 'wp-themes', $project->id, 'screenshot' ); + if ( $screenshot ) { + return sprintf( + '
    ', + esc_url( 'https://i0.wp.com/' . $screenshot . '?w=' . $size * 2 . '&strip=all' ), + $size, + $size + ); + } + + return $default; + } +} diff --git a/site/web/app/plugins/f-translate/wporg-gp-routes/wporg-gp-routes.php b/site/web/app/plugins/f-translate/wporg-gp-routes/wporg-gp-routes.php new file mode 100644 index 0000000..d9bf044 --- /dev/null +++ b/site/web/app/plugins/f-translate/wporg-gp-routes/wporg-gp-routes.php @@ -0,0 +1,26 @@ +/locale or /stats for translate.wordpress.org. + * Version: 2.0 + * Author: WordPress.org + * Author URI: http://wordpress.org/ + * License: GPLv2 or later + */ + +namespace WordPressdotorg\GlotPress\Routes; + +use WordPressdotorg\Autoload; + +// Store the root plugin file for usage with functions which use the plugin basename. +define( __NAMESPACE__ . '\PLUGIN_FILE', __FILE__ ); + +if ( ! class_exists( '\WordPressdotorg\Autoload\Autoloader', false ) ) { + include __DIR__ . '/vendor/wordpressdotorg/autoload/class-autoloader.php'; +} + +// Register an Autoloader for all files. +Autoload\register_class_path( __NAMESPACE__, __DIR__ . '/inc'); + +// Instantiate the Plugin. +Plugin::get_instance(); diff --git a/site/web/app/themes/.gitignore b/site/web/app/themes/.gitignore new file mode 100644 index 0000000..63ea916 --- /dev/null +++ b/site/web/app/themes/.gitignore @@ -0,0 +1 @@ +/*/ diff --git a/site/web/app/uploads/.gitignore b/site/web/app/uploads/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/site/web/app/uploads/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/site/web/index.php b/site/web/index.php new file mode 100644 index 0000000..8aabe93 --- /dev/null +++ b/site/web/index.php @@ -0,0 +1,7 @@ +A question that someone might have<\/h4>\\n

    An answer to that question.<\/p>\\n

    What about foo bar?<\/h4>\\n

    Answer to foo bar dilemma.<\/p>\\n","changelog":"

    [unreleased]<\/p>\\n

    1.0<\/h4>\\n

    \n

    \n

    Make sure you’re not running other HTML, CSS or JS minification plugins (BWP minify, WP minify, …) simultaneously with Autoptimize or disable that functionality your page caching plugin (W3 Total Cache, WP Fastest Cache, …). Try enabling only CSS or only JS optimization to see which one causes the server error and follow the generic troubleshooting steps to find a workaround.

    \n

    \n
    \nBut I still have blank autoptimized CSS or JS-files!\n\n

    \n

    If you are running Apache, the .htaccess file written by Autoptimize can in some cases conflict with the AllowOverrides settings of your Apache configuration (as is the case with the default configuration of some Ubuntu installations), which results in “internal server errors” on the autoptimize CSS- and JS-files. This can be solved by setting AllowOverrides to All.

    \n

    \n
    \nCan’t log in on domain mapped multisites\n\n

    \n

    Domain mapped multisites require Autoptimize to be initialized at a different WordPress action, add this line of code to your wp-config.php to make it so to hook into setup_theme for example:

    \n
    define( ''AUTOPTIMIZE_SETUP_INITHOOK'', ''setup_theme'' );\n
    \n

    \n
    \nI get no error, but my pages are not optimized at all?\n\n

    \n

    Autoptimize does a number of checks before actually optimizing. When one of the following is true, your pages won’t be optimized:

    \n
      \n
    • when in the customizer
    • \n
    • if there is no opening <html tag
    • \n
    • if there is <xsl:stylesheet in the response (indicating the output is not HTML but XML)
    • \n
    • if there is <html amp in the response (as AMP-pages are optimized already)
    • \n
    • if the output is an RSS-feed (is_feed() function)
    • \n
    • if the output is a WordPress administration page (is_admin() function)
    • \n
    • if the page is requested with ?ao_noptimize=1 appended to the URL
    • \n
    • if code hooks into Autoptimize to disable optimization (see topic on Visual Composer)
    • \n
    • if other plugins use the output buffer in an incompatible manner (disable other plugins selectively to identify the culprit)
    • \n
    \n

    \n
    \nVisual Composer, Beaver Builder and similar page builder solutions are broken!!\n\n

    \n

    Disable the option to have Autoptimize active for logged on users and go crazy dragging and dropping 😉

    \n

    \n
    \nHelp, my shop checkout/ payment don’t work!!\n\n

    \n

    Disable the option to optimize cart/ checkout pages (works for WooCommerce, Easy Digital Downloads and WP eCommerce).

    \n

    \n
    \nRevolution Slider is broken!\n\n

    \n

    Make sure js/jquery/jquery.min.js is in the comma-separated list of JS optimization exclusions (this is excluded in the default configuration).

    \n

    \n
    \nI’m getting “jQuery is not defined” errors\n\n

    \n

    In that case you have un-aggregated JavaScript that requires jQuery to be loaded, so you’ll have to add js/jquery/jquery.min.js to the comma-separated list of JS optimization exclusions.

    \n

    \n
    \nI use NextGen Galleries and a lot of JS is not aggregated/ minified?\n\n

    \n

    NextGen Galleries does some nifty stuff to add JavaScript. In order for Autoptimize to be able to aggregate that, you can either disable Nextgen Gallery’s resourced manage with this code snippet add_filter( ''run_ngg_resource_manager'', ''__return_false'' ); or you can tell Autoptimize to initialize earlier, by adding this to your wp-config.php: define(\"AUTOPTIMIZE_INIT_EARLIER\",\"true\");

    \n

    \n
    \nWhat is noptimize?\n\n

    \n

    Starting with version 1.6.6 Autoptimize excludes everything inside noptimize tags, e.g.:
    \n <!--noptimize--><script>alert(‘this will not get autoptimized’);</script><!--/noptimize-->

    \n

    You can do this in your page/ post content, in widgets and in your theme files (consider creating a child theme to avoid your work being overwritten by theme updates).

    \n

    \n
    \nCan I change the directory & filename of cached autoptimize files?\n\n

    \n

    Yes, if you want to serve files from e.g. /wp-content/resources/aggregated_12345.css instead of the default /wp-content/cache/autoptimize/autoptimize_12345.css, then add this to wp-config.php:

    \n
    define(''AUTOPTIMIZE_CACHE_CHILD_DIR'',''/resources/'');\ndefine(''AUTOPTIMIZE_CACHEFILE_PREFIX'',''aggregated_'');\n
    \n

    \n
    \nDoes this work with non-default WP_CONTENT_URL ?\n\n

    \n

    No, Autoptimize does not support a non-default WP_CONTENT_URL out-of-the-box, but this can be accomplished with a couple of lines of code hooking into Autoptimize’s API.

    \n

    \n
    \nCan the generated JS/ CSS be pre-gzipped?\n\n

    \n

    Yes, but this is off by default. You can enable this by passing ´true´ to ´autoptimize_filter_cache_create_static_gzip´. You’ll obviously still have to configure your webserver to use these files instead of the non-gzipped ones to avoid the overhead of on-the-fly compression.

    \n

    \n
    \nWhat does “remove emojis” do?\n\n

    \n

    This new option in Autoptimize 2.3 removes the inline CSS, inline JS and linked JS-file added by WordPress core. As such is can have a small positive impact on your site’s performance.

    \n

    \n
    \nIs “remove query strings” useful?\n\n

    \n

    Although some online performance assessment tools will single out “query strings for static files” as an issue for performance, in general the impact of these is almost non-existant. As such Autoptimize, since version 2.3, allows you to have the query string (or more precisely the “ver”-parameter) removed, but ticking “remove query strings from static resources” will have little or no impact of on your site’s performance as measured in (milli-)seconds.

    \n

    \n
    \n(How) should I optimize Google Fonts?\n\n

    \n

    Google Fonts are typically loaded by a “render blocking” linked CSS-file. If you have a theme and plugins that use Google Fonts, you might end up with multiple such CSS-files. Autoptimize (since version 2.3) now let’s you lessen the impact of Google Fonts by either removing them alltogether or by optimizing the way they are loaded. There are two optimization-flavors; the first one is “combine and link”, which replaces all requests for Google Fonts into one request, which will still be render-blocking but will allow the fonts to be loaded immediately (meaning you won’t see fonts change while the page is loading). The alternative is “combine and load async” which uses JavaScript to load the fonts in a non-render blocking manner but which might cause a “flash of unstyled text”.

    \n

    \n
    \nShould I use “preconnect”\n\n

    \n

    Preconnect is a somewhat advanced feature to instruct browsers (if they support it) to make a connection to specific domains even if the connection is not immediately needed. This can be used e.g. to lessen the impact of 3rd party resources on HTTPS (as DNS-request, TCP-connection and SSL/TLS negotiation are executed early). Use with care, as preconnecting to too many domains can be counter-productive.

    \n

    \n
    \nWhen can(‘t) I async JS?\n\n

    \n

    JavaScript files that are not autoptimized (because they were excluded or because they are hosted elsewhere) are typically render-blocking. By adding them in the comma-separated “async JS” field, Autoptimize will add the async flag causing the browser to load those files asynchronously (i.e. non-render blocking). This can however break your site (page), e.g. if you async “js/jquery/jquery.min.js” you will very likely get “jQuery is not defined”-errors. Use with care.

    \n

    \n
    \nHow does image optimization work?\n\n

    \n

    When image optimization is on, Autoptimize will look for png, gif, jpeg (.jpg) files in image tags and in your CSS files that are loaded from your own domain and change the src (source) to the ShortPixel CDN for those. Important: this can only work for publicly available images, otherwise the image optimization proxy will not be able to get the image to optimize it, so firewalls or proxies or password protection or even hotlinking-prevention might break image optimization.

    \n

    \n
    \nCan I use image optimization for my intranet/ protected site?\n\n

    \n

    No; Image optimization depends on the ability of the external image optimization service to fetch the original image from your site, optimize it and save it on the CDN. If you images cannot be downloaded by anonymous visitors (due to firewall/ proxy/ password protection/ hotlinking-protection), image optimization will not work.

    \n

    \n
    \nWhere can I get more info on image optimization?\n\n

    \n

    Have a look at Shortpixel’s FAQ.

    \n

    \n
    \nCan I disable AO listening to page cache purges?\n\n

    \n

    As from AO 2.4 AO “listens” to page cache purges to clear its own cache. You can disable this behavior with this filter;

    \n
    add_filter(''autoptimize_filter_main_hookpagecachepurge'',''__return_false'');\n
    \n

    \n
    \nSome of the non-ASCII characters get lost after optimization\n\n

    \n

    By default AO uses non multibyte-safe string methods, but if your PHP has the mbstring extension you can enable multibyte-safe string functions with this filter;

    \n
    add_filter(''autoptimize_filter_main_use_mbstring'', ''__return_true'');\n
    \n

    \n
    \nI can’t get Critical CSS working\n\n

    \n

    Check the FAQ on the (legacy) “power-up” here, this info will be integrated in this FAQ at a later date.

    \n

    \n
    \nDo I still need the Critical CSS power-up when I have Autoptimize 2.7 or higher?\n\n

    \n

    No, the Critical CSS power-up is not needed any more, all functionality (and many fixes/ improvements) are now part of Autoptimize.

    \n

    \n
    \nWhat does “enable 404 fallbacks” do? Why would I need this?\n\n

    \n

    Autoptimize caches aggregated & optimized CSS/ JS and links to those cached files are stored in the HTML, which will be stored in a page cache (which can be a plugin, can be at host level, can be at 3rd party, in the Google cache, in a browser). If there is HTML in a page cache that links to Autoptimized CSS/ JS that has been removed in the mean time (when the cache was cleared) then the page from cache will not look/ work as expected as the CSS or JS were not found (a 404 error).

    \n

    This setting aims to prevent things from breaking by serving “fallback” CSS or JS. The fallback-files are copies of the first Autoptimized CSS & JS files created after the cache was emptied and as such will based on the homepage. This means that the CSS/ JS migth not apply 100% on other pages, but at least the impact of missing CSS/ JS will be lessened (often significantly).

    \n

    When the option is enabled, Autoptimize adds an ErrorDocument 404 to the .htaccess (as used by Apache) and will also hook into WordPress core template_redirect to capture 404’s handled by WordPress. When using NGINX something like below should work (I’m not an NGINX specialist, but it does work for me);

    \n
    location ~* /wp-content/cache/autoptimize/.*\\.(js|css)$ {\n    try_files $uri $uri/ /wp-content/autoptimize_404_handler.php;\n}\n
    \n

    And this a nice alternative approach (provided by fboylovesyou);

    \n
    location ~* /wp-content/cache/autoptimize/.*\\.(css)$ {\n    try_files $uri $uri/ /wp-content/cache/autoptimize/css/autoptimize_fallback.css;\n}\nlocation ~* /wp-content/cache/autoptimize/.*\\.(js)$ {\n    try_files $uri $uri/ /wp-content/cache/autoptimize/js/autoptimize_fallback.js;\n}\n
    \n

    \n
    \nWhat open source software/ projects are used in Autoptimize?\n\n

    \n

    The following great open source projects are used in Autoptimize in some form or another:

    \n\n

    \n
    \nWhere can I get help?\n\n

    \n

    You can get help on the wordpress.org support forum. If you are 100% sure this your problem cannot be solved using Autoptimize configuration and that you in fact discovered a bug in the code, you can create an issue on GitHub. If you’re looking for premium support, check out our Autoptimize Pro Support and Web Performance Optimization services.

    \n

    \n
    \nI want out, how should I remove Autoptimize?\n\n

    \n

      \n
    • Disable the plugin (this will remove options and cache)
    • \n
    • Remove the plugin
    • \n
    • Clear any cache that might still have pages which reference Autoptimized CSS/JS (e.g. of a page caching plugin such as WP Super Cache)
    • \n
    \n

    \n
    \nHow can I help/ contribute?\n\n

    \n

    Just fork Autoptimize on Github and code away!

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect, fast Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Peter Kinny (peterkinny) on June 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank yo u for your perfect an fast support with my Issue.

    \n\n\n\n

    Kind regards, Peter

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic plugin for optimizing CSS and JS!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy juanmag on May 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Fantastic plugin for optimizing CSS and JS! I reduced my load time by almost 30%. The async and defer options are well-documented and effective. Thanks for making such a solid tool!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    elementor css problem

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy webdud (ehexn) on April 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    kills my stylesheet with elementor

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Responsive support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy thefitrv on April 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We''ve been using this plugin for literally about a decade now, over multiple WP versions and different themes. Support is prompt, personal, and amazing. Both times when I''ve had an issue, I''ve never been left to flounder.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useful plugin and great free support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy MarcGuay on March 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Useful plugin and great free support

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazing

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Mittsforcode (jorgegl) on January 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just a few clicks and the site goes to 90% and B at GTMetrix :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I love this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy duccoldany on January 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I love how this plugin generates critical CSS automatically! It improved my website''s performance on PageSpeed Insights. However, the initial setup was a bit tricky as I had to tweak a few settings to avoid layout shifts.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    AWESOME PLUGIN+ EXCELLENT SUPPORT

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anm (ahuk) on December 16, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Autoptimize is an excellent plugin for website optimization. It’s user-friendly and immediately boosts website performance scores once activated.

    \n\n\n\n

    On top of that, Frank, the plugin’s creator, is incredibly helpful! He’s quick to respond to forum questions and provides clear, patient guidance to resolve any issues.

    \n\n\n\n

    I highly recommend this plugin for improving website performance. The exceptional support is definitely a standout feature! :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy and powerfull !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alex586 on December 15, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Your blog (and your visitors) will thank you. Top-notch technical support.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    How to disable caching

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy xu wu (wuxu) on November 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I only want to optimize the CSS and JS code for shrinking the front end, I don''t want the cache files because when I delete the Autoptimize cache and rebuild it, the previous CSS and JS paths will be lost. I want these file paths to stay the same forever, so I don''t want cached files, any solutions please? Thanks!
    Also the plugin creates some PHP files under the cache and their names are randomized.

    \n\n\n\n

    \n
    \n
    \n", "changelog": "

    3.1.13

    \n\n

    3.1.12

    \n
      \n
    • image optimization: improvements to the favicon regex
    • \n
    • javascript optimization: integrate most recent version of jsmin.php
    • \n
    • critical CSS: improve blocklist (url/ paths that should not be added to the job queue)
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.11

    \n\n

    3.1.10

    \n
      \n
    • improvement: with “don’t aggregate but defer” and “also defer inline JS” on, also defer JS that had the async flag to avoid the (previously) asynced JS from executing before the inline JS has ran.
    • \n
    • improvement: show option to disable the default on “compatibility logic”.
    • \n
    • fix for regression in 3.1.9 which caused JetPack Image optimization not working even if image optimization was off in AO.
    • \n
    • API: some extra hooks in critical CSS to enable others (and AOPro) to act on changes in critical CSS rules
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.9

    \n
      \n
    • improvement: activate JS, CSS & HTML optimization upon plugin activation (hat tip to Adam Silverstein (developer relations engineer at Google))
    • \n
    • improvement: also defer asynced JS (to ensure execution order remains intact; asynced JS should not execute before deferred inline JS which it might depend upon)
    • \n
    • improvement: exclude images from being lazyloaded if they have fetchpriority attribute set to high (as done by WordPress core since 6.3)
    • \n
    • bugfix: disable spellcheck on CSS textarea’s (above the fold CSS/ critical CSS) which in some cases caused browser issues
    • \n
    • add tab to explain Autoptimize Pro.
    • \n
    • confirmed working with WordPress 6.4 (beta 3)
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.8.1

    \n
      \n
    • urgent fix for PHP error, sorry about that!
    • \n
    \n

    3.1.8

    \n
      \n
    • Images: improve optmization logic for background images
    • \n
    • Critical CSS: don’t trigger custom_post rule if not is_singular + adding debug logging for rule selection
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.7

    \n
      \n
    • security: improve validation (import) and sanitization (output) of critical CSS rules, to fix a medium severity Admin+ Stored Cross-Site Scripting vulnerability as reported by WP Scan Security.
    • \n
    \n

    3.1.6

    \n
      \n
    • CSS: removing trailing slashes in <link tags for more W3 HTML validation love
    • \n
    • Extra: also dequeue WooCommerce block CSS if “remove WordPress block CSS” option is active
    • \n
    • imgopt: also act on non-aggregated inline CSS
    • \n
    • imgopt: added logic to warn users if Shortpixel can’t reach their site
    • \n
    • backend: AO toolbar JS/ CSS is finally minified as well.
    • \n
    • explicitly disable optimization of login pages
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.5

    \n

    \n
      \n
    • improvements to JSMin by Robert Ehrenleitner (big thanks Robert!).
    • \n
    • do not consider jquery.js as minified any more (WordPress now uses jquery.min.js by default and jquery.js is the unminified version).
    • \n
    • fix for “undefined array key” PHP errors in autoptimizeCriticalCSSCron.php
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.4

    \n

    \n
      \n
    • Improvement: when all CSS is inlined, try doing so after SEO meta-tags (just before ld+json script tag which most SEO plugins add as last item on their list).
    • \n
    • Img opt: also optimize images set in data-background and data-retina attributes (+ filter to easily add other attributes)
    • \n
    • CSS opt: filter to enable AO to skip minification of calc formulas in CSS (as the CSS minifier on rare occasions breaks those)
    • \n
    • Multiple other filters added
    • \n
    • Some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.3

    \n

    \n
      \n
    • Multiple fixes for metabox LCP image preloads (thanks Kishorchand for notifying & providing a staging environment to debug on).
    • \n
    • Fix in revslider compatibility (hat tip Waqar Ahmed for reporting & helping out ).
    • \n
    • No image optimization or criticalcss attempts on localhost installations any more + notification of that fact if localhost detected.
    • \n
    • Some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.2

    \n

    \n
      \n
    • Google Fonts: some more removal logic
    • \n
    • fix for 404 fallback bug (hat tip to Asif for finding & reporting)
    • \n
    • Some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.1.1

    \n

    \n
      \n
    • Quick workaround for an autoload conflict with JetFormBuilder (and maybe other Crocoblock plugins?) that causes a critical error on the AO settings page.
    • \n
    \n

    3.1.1

    \n

    \n
      \n
    • images: when optimizing images and lazyloading is on, then by default do not set an LQIP (low quality image placeholder) any more (reason: it might look nice but it comes with a small-ish perf. penalty). This can be re-enabled by returning true to the autoptimize_filter_imgopt_lazyload_dolqip filter.
    • \n
    • security: further improvements to critical CSS settings page (again with the great assistance of WPScan Security).
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.0

    \n

    \n
      \n
    • new HTML sub-option: “minify inline CSS/ JS” (off by default).
    • \n
    • new Misc option: permanently allow the “do not run compatibility logic” flag to be removed (which was set for users upgrading from AO 2.9.* to AO 3.0.* as the assumption was things were working anyway).
    • \n
    • security: improvements to the critical CSS settings page to fix authenticated cross site scripting issues as reported by WPScan Security.
    • \n
    • bugfix: “defer inline JS” of very large chunks of inline JS could cause server errors (PCRE crash actually) so not deferring if string is more then 200000 characters (filter available).
    • \n
    • some other minor changes/ improvements/ hooks, see the GitHub commit log
    • \n
    \n

    3.0.4

    \n

    \n
      \n
    • fix for “undefined array key ao_post_preload” on post/ page edit screens
    • \n
    • fix for image optimization altering inline JS that contains an <img tag if lazyload is not active
    • \n
    • improvements to exit survey
    • \n
    • confirmed working with WordPress 6.0
    • \n
    \n

    3.0.3

    \n

    \n
      \n
    • fix for images being preloaded without this being configured when lazyload is on and per page/post settings are off.
    • \n
    • ensure critical CSS schedule is always known.
    • \n
    • when deferring non-aggregated JS, make the optimatization exclusions take the full script-tag into account instead of just the src URL.
    • \n
    \n

    3.0.2

    \n

    \n
      \n
    • rollback automatic “minify inline CSS/ JS” which broke more then expected, this will come back as a separate default off option later and can now be enabled with a simple filter: add_filter( ''autoptimize_html_minify_inline_js_css'', ''__return_true''); .
    • \n
    • fix for “Call to undefined method autoptimizeOptionWrapper::delete_option()” in autoptimizeVersionUpdatesHandler.php
    • \n
    \n

    3.0.1

    \n

    \n
      \n
    • fix for minification of inline script with type text/template breaking the template (e.g. ninja forms), hat tip to @bobsled.
    • \n
    • fix for regression in import of CSS-files where e.g. fontawesome CSS was broken due to being escaped again with help of @bobsled, thanks man!
    • \n
    \n

    3.0.0

    \n

    \n
      \n
    • fundamental change for new installations: by default Autoptimize will not aggregate JS/ CSS any more (HTTP/2 is ubiquitous and there are other advantages to not aggregating esp. re. inline JS/ CSS and dependancies)
    • \n
    • new: no API needed any more to create manual critical CSS rules.
    • \n
    • new: “Remove WordPress blocks CSS” option on the “Extra” tab to remove block- and global styles (and SVG).
    • \n
    • new: compatibility logic for “edit with elementor”, “revolution slider”, for non-aggregated inline JS requiring jQuery even if not excluded (= auto-exclude of jQuery) and JS-heavy WordPress blocks (Gutenberg)
    • \n
    • new: configure an image to be preloaded on a per page/ post basis for better LCP.
    • \n
    • improvement: defer inline now also allowed if inline JS contains nonce or post_id.
    • \n
    • improvement: settings export/ import on critical CSS tab now takes into account all Autoptimize settings, not just the critical CSS ones.
    • \n
    • technical improvement: all criticalCSS classes were refactored, removing use of global variables.
    • \n
    • technical improvement: automated unit tests on Travis-CI for PHP versions 7.2 to 8.1.
    • \n
    • fix: stop Divi from clearing Autoptimize’s cache which is pretty counter-productive.
    • \n
    • misc smaller fixes/ improvements, see the GitHub commit log
    • \n
    \n

    older

    \n

    \n\n", "description": "

    Autoptimize makes optimizing your site really easy. It can aggregate, minify and cache scripts and styles, injects CSS in the page head by default but can also inline critical CSS and defer the aggregated full CSS, moves and defers scripts to the footer and minifies HTML. You can optimize and lazy-load images (with support for WebP and AVIF formats), optimize Google Fonts, async non-aggregated JavaScript, remove WordPress core emoji cruft and more. As such it can improve your site’s performance even when already on HTTP/2! There is extensive API available to enable you to tailor Autoptimize to each and every site’s specific needs.
    \nIf you think performance indeed is important, you should at least consider one of the many free page caching plugins (e.g. Speed Booster pack or KeyCDN’s Cache Enabler) to complement Autoptimize or even consider Autoptimize Pro which not only has page caching but also image optimization, CDN, critical CSS and more!

    \n
    \n

    Autoptimize Pro
    \n Autoptimize Pro is a premium Power-Up, adding image optimization, CDN, page caching, automatic critical CSS rules and extra “booster” options, all in one handy subscription to make your site even faster!!

    \n

    Premium Support
    \n We provide great Premium Support and Web Performance Optimization services with Accelera, check out our offering on https://accelerawp.com/!

    \n
    \n

    (Speed-surfing image under creative commons by LL Twistiti)

    \n", "installation": "

    Just install from your WordPress “Plugins > Add New” screen and all will be well. Manual installation is very straightforward as well:

    \n
      \n
    1. Upload the zip file and unzip it in the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to Settings > Autoptimize and enable the options you want. Generally this means “Optimize HTML/ CSS/ JavaScript”.
    6. \n
    \n"}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/autoptimize.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/autoptimize.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/autoptimize.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/autoptimize.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/autoptimize.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/autoptimize.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/autoptimize.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/autoptimize.0.8.zip", "0.9": "https://downloads.wordpress.org/plugin/autoptimize.0.9.zip", "1.1": "https://downloads.wordpress.org/plugin/autoptimize.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/autoptimize.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/autoptimize.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/autoptimize.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/autoptimize.1.5.zip", "1.5.1": "https://downloads.wordpress.org/plugin/autoptimize.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/plugin/autoptimize.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/autoptimize.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/autoptimize.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/autoptimize.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/autoptimize.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/autoptimize.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/autoptimize.1.6.6.zip", "1.7.0": "https://downloads.wordpress.org/plugin/autoptimize.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/autoptimize.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/autoptimize.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/autoptimize.1.7.3.zip", "1.8.0": "https://downloads.wordpress.org/plugin/autoptimize.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/autoptimize.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/autoptimize.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/autoptimize.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/autoptimize.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/autoptimize.1.8.5.zip", "1.9.0": "https://downloads.wordpress.org/plugin/autoptimize.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/autoptimize.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/autoptimize.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/autoptimize.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/autoptimize.1.9.4.zip", "2.0.0": "https://downloads.wordpress.org/plugin/autoptimize.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/autoptimize.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/autoptimize.2.0.2.zip", "2.1.0": "https://downloads.wordpress.org/plugin/autoptimize.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/autoptimize.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/autoptimize.2.1.2.zip", "2.2.0": "https://downloads.wordpress.org/plugin/autoptimize.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/autoptimize.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/autoptimize.2.2.2.zip", "2.3.0": "https://downloads.wordpress.org/plugin/autoptimize.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/autoptimize.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/autoptimize.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/autoptimize.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/autoptimize.2.3.4.zip", "2.4.0": "https://downloads.wordpress.org/plugin/autoptimize.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/autoptimize.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/autoptimize.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/autoptimize.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/autoptimize.2.4.4.zip", "2.5.0": "https://downloads.wordpress.org/plugin/autoptimize.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/autoptimize.2.5.1.zip", "2.6.0": "https://downloads.wordpress.org/plugin/autoptimize.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/autoptimize.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/autoptimize.2.6.2.zip", "2.7.0": "https://downloads.wordpress.org/plugin/autoptimize.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/autoptimize.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/autoptimize.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/autoptimize.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/autoptimize.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/autoptimize.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/autoptimize.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/autoptimize.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/plugin/autoptimize.2.7.8.zip", "2.8.0": "https://downloads.wordpress.org/plugin/autoptimize.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/autoptimize.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/autoptimize.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/autoptimize.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/autoptimize.2.8.4.zip", "2.9.0": "https://downloads.wordpress.org/plugin/autoptimize.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/autoptimize.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/autoptimize.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/autoptimize.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/autoptimize.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/autoptimize.2.9.5.zip", "3.0.0": "https://downloads.wordpress.org/plugin/autoptimize.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/autoptimize.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/autoptimize.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/autoptimize.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/autoptimize.3.0.4.zip", "3.1.0": "https://downloads.wordpress.org/plugin/autoptimize.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/autoptimize.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/autoptimize.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/autoptimize.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/autoptimize.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/autoptimize.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/autoptimize.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/autoptimize.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/autoptimize.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/autoptimize.3.1.9.zip", "trunk": "https://downloads.wordpress.org/plugin/autoptimize.zip", "3.1.10": "https://downloads.wordpress.org/plugin/autoptimize.3.1.10.zip", "3.1.11": "https://downloads.wordpress.org/plugin/autoptimize.3.1.11.zip", "3.1.12": "https://downloads.wordpress.org/plugin/autoptimize.3.1.12.zip", "3.1.13": "https://downloads.wordpress.org/plugin/autoptimize.3.1.13.zip", "2.9.5.1": "https://downloads.wordpress.org/plugin/autoptimize.2.9.5.1.zip", "3.1.1.1": "https://downloads.wordpress.org/plugin/autoptimize.3.1.1.1.zip", "3.1.8.1": "https://downloads.wordpress.org/plugin/autoptimize.3.1.8.1.zip"}, "downloaded": 41794803, "description": "

    Autoptimize makes optimizing your site really easy. It can aggregate, minify and cache scripts and styles, injects CSS in the page head by default but can also inline critical CSS and defer the aggregated full CSS, moves and defers scripts to the footer and minifies HTML. You can optimize and lazy-load images (with support for WebP and AVIF formats), optimize Google Fonts, async non-aggregated JavaScript, remove WordPress core emoji cruft and more. As such it can improve your site’s performance even when already on HTTP/2! There is extensive API available to enable you to tailor Autoptimize to each and every site’s specific needs.
    \nIf you think performance indeed is important, you should at least consider one of the many free page caching plugins (e.g. Speed Booster pack or KeyCDN’s Cache Enabler) to complement Autoptimize or even consider Autoptimize Pro which not only has page caching but also image optimization, CDN, critical CSS and more!

    \n
    \n

    Autoptimize Pro
    \n Autoptimize Pro is a premium Power-Up, adding image optimization, CDN, page caching, automatic critical CSS rules and extra “booster” options, all in one handy subscription to make your site even faster!!

    \n

    Premium Support
    \n We provide great Premium Support and Web Performance Optimization services with Accelera, check out our offering on https://accelerawp.com/!

    \n
    \n

    (Speed-surfing image under creative commons by LL Twistiti)

    \n", "donate_link": "http://blog.futtta.be/2013/10/21/do-not-donate-to-me/", "num_ratings": 1420, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/autoptimize/", "contributors": {"turl": {"avatar": "https://secure.gravatar.com/avatar/6c1c0d1d263fecc8654e64a84f93aa43be5b7c3c9a81f306bacf504a95356fd1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/turl/", "display_name": "turl"}, "futtta": {"avatar": "https://secure.gravatar.com/avatar/3275396eef337662b28262cb871106b35d540aad0fd0ad1cef0b5ebe7f176ea9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/futtta/", "display_name": "Frank Goossens"}, "zytzagoo": {"avatar": "https://secure.gravatar.com/avatar/91e1ac1f1c41dc15012e491499616351ff561678c9639a63232f224fa272fa94?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/zytzagoo/", "display_name": "zytzagoo"}, "optimizingmatters": {"avatar": "https://secure.gravatar.com/avatar/b5eead27f4527765234ddbf731744eca14d9d5d41c22433e667da6a75667e33d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/optimizingmatters/", "display_name": "Optimizing Matters"}}, "last_updated": "2025-05-22 11:56am GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/autoptimize.3.1.13.zip", "author_profile": "https://profiles.wordpress.org/optimizingmatters/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-ef2a-7321-b192-c62d9bf58060", "name": "Autoptimize", "slug": "autoptimize", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1747914960, "version": "3.1.13"}, "support_threads": 11, "requires_plugins": [], "short_description": "Autoptimize speeds up your website by optimizing JS, CSS, images (incl. lazy-load), HTML and Google Fonts, asyncing JS, removing emoji cruft and more.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 7}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1a0d-724d-b9d0-f70f1303a819', 'did:web:api.aspiredev.org:packages:wp-plugin:better-search-replace', 'better-search-replace', 'Better Search Replace', '

    When moving your WordPress site to a new domain or server, you will likely run into a need to run a search/replace on the database for everything to work correctly. Fortunately, there are several plugins available for this task, however, all have a different approach to a few key features. This plugin consolidates the best features from these plugins, incorporating the following features in one simple plugin:

    -
      -
    • Serialization support for all tables
    • -
    • The ability to select specific tables
    • -
    • The ability to run a “dry run” to see how many fields will be updated
    • -
    • No server requirements aside from a running installation of WordPress
    • -
    • WordPress Multisite support
    • -
    -
    -

    Time-saving features available in the Pro version:

    -
      -
    • View exactly what changed during a search/replace
    • -
    • Backup and import the database while running a search/replace
    • -
    • Priority email support from the developer of the plugin
    • -
    • Save or load custom profiles for quickly repeating a search/replace in the future
    • -
    • Support and updates for 1 year
    • -
    -

    Learn more about Better Search Replace Pro

    -
    -

    The search and replace functionality is heavily based on interconnect/it’s great and open-source Search Replace DB script, modified to use WordPress native database functions to ensure compatibility.

    -

    Supported Languages

    -
      -
    • English
    • -
    • French
    • -
    • German
    • -
    • Spanish
    • -
    -

    Want to contribute?

    -

    Feel free to open an issue or submit a pull request on GitHub.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Better Search Replace", "slug": "better-search-replace", "tags": {"search-replace": "search replace", "update-live-url": "update live url", "search-and-replace": "search and replace", "update-database-urls": "update database urls", "search-replace-database": "search replace database"}, "added": "2015-01-06", "icons": {"1x": "https://ps.w.org/better-search-replace/assets/icon-128x128.png?rev=2706527", "2x": "https://ps.w.org/better-search-replace/assets/icon-256x256.png?rev=2706527"}, "author": "WP Engine", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/better-search-replace/assets/banner-772x250.jpg?rev=2706527", "high": "https://ps.w.org/better-search-replace/assets/banner-1544x500.png?rev=2706527"}, "ratings": {"1": 67, "2": 17, "3": 10, "4": 14, "5": 429}, "version": "1.4.10", "homepage": "https://bettersearchreplace.com", "requires": "3.0.1", "sections": {"faq": "\n
    \nUsing Better Search Replace\n\n

    \n

    Once activated, Better Search Replace will add a page under the “Tools” menu page in your WordPress admin.

    \n

    \n
    \nIs my host supported?\n\n

    \n

    Yes! This plugin should be compatible with any host.

    \n

    \n
    \nCan I damage my site with this plugin?\n\n

    \n

    Yes! Entering a wrong search or replace string could damage your database. Because of this, it is always advisable to have a backup of your database before using this plugin.

    \n

    \n
    \nHow does this work on WordPress Multisite?\n\n

    \n

    When this plugin is installed on a WordPress multisite network:

    \n
      \n
    • Subsite administrators can only search and replace within tables that belong to that subsite by visiting Dashboard > Tools > Better Search Replace from WP Admin of the subsite.
    • \n
    • Network administrators (i.e. Super Admins) and administrators of the primary site can search and replace across all tables in the multisite network by visiting Dashboard > Tools > Better Search Replace from WP Admin of the primary site.
    • \n
    \n

    To change which users have access to the plugin, the user capability can be modified via code using the bsr_capability filter.

    \n

    \n
    \nHow can I use this plugin when changing URLs?\n\n

    \n

    If you’re moving your site from one server to another and changing the URL of your WordPress installation, the approach below allows you to do so easily without affecting the old site:

    \n
      \n
    1. Backup the database on your current site
    2. \n
    3. Install the database on your new host
    4. \n
    5. On the new host, define the new site URL in the wp-config.php file, as shown here
    6. \n
    7. Log in at your new admin URL and run Better Search Replace on the old site URL for the new site URL
    8. \n
    9. Delete the site_url constant you added to wp-config.php. You may also need to regenerate your .htaccess by going to Settings -> Permalinks and saving the settings.
    10. \n
    \n

    More information on moving WordPress can be found here.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and efficient

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Oliver Junior (webde5igner) on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple and efficient, ways working good thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So helpfull

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Behrouz (nwm2006) on September 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin helped me a lot after migrating my website from staging to live.

    \n\n\n\n

    5 Stars for sure

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent !!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nhowarth on July 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Following a change of server and security certificates, I used the plugin to change the URLs of my website to remove the ''www.''

    \n\n\n\n

    I had to do this as new security certificates were not generated for www. URLs.

    \n\n\n\n

    The plugin worked flawlessly!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Title title title (title)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ArtZ91 on June 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice plugin… if you want to replace ALL database values to the same string.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    worked great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy joshmacd on May 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    super simple - worked first try

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Best Find and Replace for WP

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy brandedpixel on April 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is the standard for Find-and-Replace functions on your WordPress site.

    The ''Dry Run'' setting is awesome, allowing you to see how many items will be updated prior to replacing ''Live''.

    If you know of a more developer friendly and robust plugin, we want to know!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Doesn't work with links and bad support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy migueltic on March 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It doesn''t find some or all URLs apparently (doesn''t work for me and there are many open issues about that).

    \n\n\n\n

    I''ve posted about this in a support thread opened by someone with the same problem, but they decided to remove my post (apparently it''s a problem if 2 people with the same issue post in the same thread), so I would have to write again from scratch all the explanation of my problem to open another thread. I''m going to use another plugin instead.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Functional and stays in its lane

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kpolljonker on March 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does what it says it does (5 stars)

    \n\n\n\n

    A rare occasion where a good plugin stays good and doesn''t clutter its own pages or worse; the entire site with upsells and advertisements.

    \n\n\n\n

    Oh right, and it refrains from opting you in for the frequent, unsollicited bulk spam that so many freemium plugins waste your time with these days

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy readysite on February 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice plugin always helps out

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential for Migrations and Database Adjustments

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy MCD Diseño Web (tmacarreras) on February 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is a must-have for any WordPress user who needs to make bulk database changes without hassle. Its interface is simple yet powerful, allowing you to search and replace across tables safely and efficiently.

    \n\n\n\n

    I''ve used it multiple times to update URLs after migrations and fix database entries, and it has always worked flawlessly. Plus, the dry-run option before executing changes is a great feature.

    \n\n\n\n

    Highly recommended! A must-have in my WordPress toolkit!

    \n\n\n\n

    ----------------------------------------------------------------------------------

    \n\n\n\n

    Spanish

    \n\n\n\n

    Este plugin es una herramienta esencial para cualquier usuario de WordPress que necesite realizar cambios masivos en la base de datos sin complicaciones. Su interfaz es sencilla, pero potente, permitiendo buscar y reemplazar en tablas de forma segura y eficiente.

    \n\n\n\n

    Lo he utilizado en varias ocasiones para actualizar URLs tras migraciones y corregir datos en la base de datos, y siempre ha funcionado a la perfección. Además, la opción de prueba antes de ejecutar los cambios es un gran acierto.

    \n\n\n\n

    Totalmente recomendado. ¡Un imprescindible en mi caja de herramientas de WordPress!

    \n
    \n
    \n", "changelog": "

    1.4.10 – January 14, 2025

    \n
      \n
    • Fix: Improved security and stability
    • \n
    \n

    1.4.9 – October 4, 2024

    \n
      \n
    • Security: The plugin now uses its own update mechanism from WP Engine servers
    • \n
    • New: Dependencies have been updated
    • \n
    \n

    1.4.8 – September 3, 2024

    \n
      \n
    • No changes as this was a pro-only release for Better Search Replace Pro
    • \n
    \n

    1.4.7 – May 30, 2024

    \n
      \n
    • Fix: The case-insensitive setting once again allows case-insensitive strings to be matched within serialized data, fixing a regression introduced in version 1.4.6
    • \n
    \n

    1.4.6 – April 17, 2024

    \n
      \n
    • Changed: Serialized text strings are now only deserialized when containing a match, resulting in faster performance
    • \n
    • Security: Table names are now escaped when displaying search results
    • \n
    \n

    1.4.5 – January 18, 2024

    \n
      \n
    • Security: Unserializing an object during search and replace operations now passes ''allowed_classes'' => false to avoid instantiating the object and potentially running malicious code stored in the database (thanks to Wordfence for responsible disclosure on December 18, 2023 followed by development and testing of the fix by WP Engine)
    • \n
    • Fix: A regression in version 1.4.4 which caused some search results to be skipped has been fixed to ensure only numeric keyed objects are skipped
    • \n
    \n

    1.4.4 – December 14, 2023

    \n
      \n
    • Fix: Objects with numerical properties are now skipped to avoid causing errors
    • \n
    \n

    1.4.3 – September 5, 2023

    \n
      \n
    • New: Links to plugin documentation, support, feedback, and changelog are now available in the footer of WP Admin
    • \n
    • Improvement: PHP 8.2 and Better Search Replace are now compatible
    • \n
    \n

    1.4.2 – January 11, 2023

    \n
      \n
    • Security: Arbitrary tab templates in the templates directory can no longer be loaded using a query parameter.
    • \n
    \n

    1.4.1 – July 25, 2022

    \n
      \n
    • Security: Selected tables are now confirmed to exist before processing the request
    • \n
    \n

    1.4 – April 7, 2022

    \n
      \n
    • New: Better Search Replace has a brand new user interface
    • \n
    • Improvement: Default capability required to use the plugin has changed from “install_plugins” to “manage_options” for compatibility with DISALLOW_FILE_MODS
    • \n
    \n

    1.3.4 – December 7, 2020

    \n
      \n
    • Improvement: WordPress 5.6 and PHP 8 compatible
    • \n
    • Fix: Strings that have been serialized twice showing up as false-positives
    • \n
    \n

    1.3.3 – February 26, 2019

    \n
      \n
    • Fix: Some special characters interfering with search/replace
    • \n
    • Security: Pass template filenames through sanitize_file_name()
    • \n
    • Security: Verify nonce when downloading diagnostic info
    • \n
    \n

    1.3.2 – January 3, 2018

    \n
      \n
    • Fix: Only one table searched on some environments (props @Ov3rfly)
    • \n
    • Tweak: Update text in sidebar
    • \n
    \n

    1.3.1 – September 14, 2017

    \n
      \n
    • Security: Check if data is serialized before unserializing it
    • \n
    • Improvement: Increased size of table select
    • \n
    \n

    1.3 – November 10, 2016

    \n
      \n
    • Improvement: Updated sidebar and added pro version discount
    • \n
    • Fix: Outdated links to old website
    • \n
    • Fix: Prevent requests to invalid tabs
    • \n
    \n

    1.2.10 – June 2, 2016

    \n
      \n
    • Fix: CSS not loaded on details page
    • \n
    \n

    1.2.9 – December 8, 2015

    \n
      \n
    • Fix: Bug with case-insensitive searches in serialized objects
    • \n
    • Fix: Bug with early skip due to lack of primary key
    • \n
    \n

    1.2.8 – November 25, 2015

    \n
      \n
    • Fix: Bug with report details
    • \n
    \n

    1.2.7 – November 24, 2015

    \n
      \n
    • Fix: Untranslateable string
    • \n
    • Tweak: Check BSR_PATH instead of ABSPATH to be consistent
    • \n
    • Tested with 4.4
    • \n
    \n

    1.2.6

    \n
      \n
    • Removed unused code/small cleanup
    • \n
    \n

    1.2.5

    \n
      \n
    • Improved progress bar info and styles
    • \n
    • Small cleanup
    • \n
    \n

    1.2.4

    \n
      \n
    • Added “Settings saved” notice when saving settings
    • \n
    • Fixed bug with wp_magic_quotes interfering with some search strings
    • \n
    \n

    1.2.3

    \n
      \n
    • Fixed bug with searching for backslashes
    • \n
    • Fixed potential bug with getting tables in large multisites
    • \n
    • Fixed potential notice in append_report
    • \n
    • Improved handling of missing primary keys
    • \n
    \n

    1.2.2

    \n
      \n
    • Fixed AJAX conflict with WooCommerce
    • \n
    • Fixed a few issues with translations
    • \n
    • Tweaked “System Info” to use get_locale() instead of WP_LANG constant
    • \n
    • Updated German translation (props @Linus Ziegenhagen)
    • \n
    \n

    1.2.1

    \n
      \n
    • Fixed minor issue with display of progress bar
    • \n
    • Updated translation file
    • \n
    \n

    1.2

    \n
      \n
    • Switched to AJAX bulk processing for search/replaces
    • \n
    • Decreased minimum “Max Page Size” to 1000
    • \n
    • Added “Help” tab with system info for easier troubleshooting
    • \n
    \n

    1.1.1

    \n
      \n
    • Added ability to change max page size
    • \n
    • Decreased default page size to prevent white screen issue on some environments
    • \n
    \n

    1.1

    \n
      \n
    • Added ability to change capability required to use plugin
    • \n
    • Small bugfixes and translation fixes
    • \n
    \n

    1.0.6

    \n
      \n
    • Added table sizes to the database table listing
    • \n
    • Added French translation (props @Jean Philippe)
    • \n
    \n

    1.0.5

    \n
      \n
    • Added support for case-insensitive searches
    • \n
    • Added German translation (props @Linus Ziegenhagen)
    • \n
    \n

    1.0.4

    \n
      \n
    • Potential security fixes
    • \n
    \n

    1.0.3

    \n
      \n
    • Fixed issue with searching for special characters like ‘\\’
    • \n
    • Fixed bug with replacing some objects
    • \n
    \n

    1.0.2

    \n
      \n
    • Fixed untranslateable strings on submit button and submenu page.
    • \n
    \n

    1.0.1

    \n
      \n
    • Fixed issue with loading translations and added Spanish translation (props Eduardo Larequi)
    • \n
    • Fixed bug with reporting timing
    • \n
    • Updated to use “Dry Run” as default
    • \n
    • Added support for WordPress Multisite (see FAQs for more info)
    • \n
    \n

    1.0

    \n
      \n
    • Initial release
    • \n
    \n", "description": "

    When moving your WordPress site to a new domain or server, you will likely run into a need to run a search/replace on the database for everything to work correctly. Fortunately, there are several plugins available for this task, however, all have a different approach to a few key features. This plugin consolidates the best features from these plugins, incorporating the following features in one simple plugin:

    \n
      \n
    • Serialization support for all tables
    • \n
    • The ability to select specific tables
    • \n
    • The ability to run a “dry run” to see how many fields will be updated
    • \n
    • No server requirements aside from a running installation of WordPress
    • \n
    • WordPress Multisite support
    • \n
    \n
    \n

    Time-saving features available in the Pro version:

    \n
      \n
    • View exactly what changed during a search/replace
    • \n
    • Backup and import the database while running a search/replace
    • \n
    • Priority email support from the developer of the plugin
    • \n
    • Save or load custom profiles for quickly repeating a search/replace in the future
    • \n
    • Support and updates for 1 year
    • \n
    \n

    Learn more about Better Search Replace Pro

    \n
    \n

    The search and replace functionality is heavily based on interconnect/it’s great and open-source Search Replace DB script, modified to use WordPress native database functions to ensure compatibility.

    \n

    Supported Languages

    \n
      \n
    • English
    • \n
    • French
    • \n
    • German
    • \n
    • Spanish
    • \n
    \n

    Want to contribute?

    \n

    Feel free to open an issue or submit a pull request on GitHub.

    \n", "screenshots": "
    1. \"The

      The Better Search Replace page added to the \"Tools\" menu

    2. \"After

      After running a search/replace dry-run.

    ", "installation": "

    Install Better Search Replace like you would install any other WordPress plugin.

    \n

    Dashboard Method:

    \n
      \n
    1. Login to your WordPress admin and go to Plugins -> Add New
    2. \n
    3. Type “Better Search Replace” in the search bar and select this plugin
    4. \n
    5. Click “Install”, and then “Activate Plugin”
    6. \n
    \n

    Upload Method:

    \n
      \n
    1. Unzip the plugin and upload the “better-search-replace” folder to your ‘wp-content/plugins’ directory
    2. \n
    3. Activate the plugin through the Plugins menu in WordPress
    4. \n
    \n"}, "versions": {"1.4": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.zip", "1.3.4": "https://downloads.wordpress.org/plugin/better-search-replace.1.3.4.zip", "1.4.1": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.7.zip", "trunk": "https://downloads.wordpress.org/plugin/better-search-replace.zip", "1.4.10": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.10.zip"}, "downloaded": 16856998, "description": "

    When moving your WordPress site to a new domain or server, you will likely run into a need to run a search/replace on the database for everything to work correctly. Fortunately, there are several plugins available for this task, however, all have a different approach to a few key features. This plugin consolidates the best features from these plugins, incorporating the following features in one simple plugin:

    \n
      \n
    • Serialization support for all tables
    • \n
    • The ability to select specific tables
    • \n
    • The ability to run a “dry run” to see how many fields will be updated
    • \n
    • No server requirements aside from a running installation of WordPress
    • \n
    • WordPress Multisite support
    • \n
    \n
    \n

    Time-saving features available in the Pro version:

    \n
      \n
    • View exactly what changed during a search/replace
    • \n
    • Backup and import the database while running a search/replace
    • \n
    • Priority email support from the developer of the plugin
    • \n
    • Save or load custom profiles for quickly repeating a search/replace in the future
    • \n
    • Support and updates for 1 year
    • \n
    \n

    Learn more about Better Search Replace Pro

    \n
    \n

    The search and replace functionality is heavily based on interconnect/it’s great and open-source Search Replace DB script, modified to use WordPress native database functions to ensure compatibility.

    \n

    Supported Languages

    \n
      \n
    • English
    • \n
    • French
    • \n
    • German
    • \n
    • Spanish
    • \n
    \n

    Want to contribute?

    \n

    Feel free to open an issue or submit a pull request on GitHub.

    \n", "donate_link": "", "num_ratings": 537, "screenshots": {"1": {"src": "https://ps.w.org/better-search-replace/assets/screenshot-1.png?rev=2706527", "caption": "The Better Search Replace page added to the \"Tools\" menu"}, "2": {"src": "https://ps.w.org/better-search-replace/assets/screenshot-2.png?rev=2706527", "caption": "After running a search/replace dry-run."}}, "support_url": "https://wordpress.org/support/plugin/better-search-replace/", "contributors": {"mattshaw": {"avatar": "https://secure.gravatar.com/avatar/fcf2297ad2f2973d3b75404db6afe40d1dbad53db835fa9cd4e3d07c9ad2819c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mattshaw/", "display_name": "Matt Shaw"}, "wpengine": {"avatar": "https://secure.gravatar.com/avatar/4c1bb9eb4685e7604768fc46ead733aff774fc4cf9e732ded27325d4e6d5ca13?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpengine/", "display_name": "WP Engine"}, "deliciousbrains": {"avatar": "https://secure.gravatar.com/avatar/3d8222a6b777fd716d18eb7454144c91e7bfbae1381aa2cd95b21c7207209351?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/deliciousbrains/", "display_name": "Delicious Brains"}}, "last_updated": "2025-04-14 4:39pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.10.zip", "author_profile": "https://profiles.wordpress.org/wpengine/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-eed3-73c3-aafc-5822bc7e452d", "name": "Better Search Replace", "slug": "better-search-replace", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1744648740, "version": "1.4.10"}, "support_threads": 5, "requires_plugins": [], "short_description": "A simple plugin to update URLs or other text in a database.", "author_block_count": 0, "author_block_rating": 86, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1a1c-7109-9a1a-77afb19630f2', 'did:web:api.aspiredev.org:packages:wp-plugin:better-wp-security', 'better-wp-security', 'Solid Security – Password, Two Factor Authentication, and Brute Force Protection', '

    Reduce your WordPress website’s risk to nearly zero with Solid Security

    -

    Formerly iThemes Security. Looking for iThemes? Learn more here.

    -

    On average, 30,000 websites are hacked every day.* Cyberattacks in the US increased by 57% in 2022.** Bad actors who want to hack your site, steal your data, and cripple your business are a 24/7/365 threat.

    -

    You need a proactive, strategic approach to WordPress website security that protects your site from brute force attacks, malware infections, and other cyber threats.

    -

    Solid Security shields your site from cyberattacks and prevents security vulnerabilities. It automatically locks out bad users identified by our Brute Force Protection Network that is nearly 1 million sites strong and leverages your own blacklist. It secures and protects your most commonly attacked part of your WordPress website – user login authentication.

    -

    With Patchstack integration (Pro) protects your site before you even have a chance to address vulnerabilities and before a plugin or theme vendor or developer can even issue a patch.

    -

    That’s 24/7/365 always-on truly Solid Security.

    -

    -

    🌐 Secure your Website in Minutes

    -

    The Solid Security setup and onboarding experience allows anyone to secure their WordPress website in under 10 minutes, regardless of technical acumen. Knowing that you have enabled all the right security settings for your website will leave you feeling like your site has never been more secure.

    -

    📚 Security Site Templates to Fit Your Type of Site

    -

    Enabling the correct security settings based on the type of website you are building or maintaining is essential for proper security. An eCommerce site requires a different level of security than a basic blog. Solid Security Site Templates make it quick and easy to apply the right security settings for your website.

    -

    Choose from six different site templates to apply the type of security your site needs:

    -
      -
    1. Ecommerce – websites that sell products or services
    2. -
    3. Network – websites that connect people or communities
    4. -
    5. Non-Profit – websites that promote your cause and collect donations
    6. -
    7. Blog – websites that share your thoughts or start a conversation
    8. -
    9. Portfolio – websites that showcase your craft
    10. -
    11. Brochure – simple websites that promote your business
    12. -
    -

    ⌚ Real-Time Website Security Dashboard

    -

    Every day, lots of activity is happening on your website that you can’t see. Many of these activities can be related to your site’s security, so monitoring these events is vital to keeping your site secure.

    -

    The Solid Security Pro plugin provides a real-time WordPress security dashboard that monitors security-related events on your site around the clock. The Solid Security Dashboard is a dynamic dashboard with all your WordPress website’s security activity stats in one place, including brute force attacks, banned users, active lockouts, site scan results, and user security stats (Pro).

    -

    🗝️ WordPress Login Security

    -

    Setting up and maintaining proper WordPress configurations and managing user account access are essential aspects of hardening your site against threats and vulnerabilities. Basic and Pro include features that address both of these factors.

    -
      -
    • -

      Two Factor Authentication (2FA) – Make your WordPress login nearly impenetrable to attack by requiring users to enter a security code along with a password to login. The Solid Security plugin allows you to add two-factor authentication to your WordPress login with several authentication methods, including mobile apps like Authy and Google Authenticator, email, and backup codes.

      -
    • -
    • -

      Password Requirements – Create and enforce a password policy for your users in less than a minute.

      -
    • -
    • -

      reCAPTCHA (Pro) – Stop bad bots from engaging in abusive activities on your website, such as attempting to break into your website using compromised passwords, posting spam, or even scraping your content.

      -
    • -
    • -

      Passwordless Logins (Pro) – WordPress security made easy. Secure your user accounts with 2fa & strong passwords while allowing real users login with a click of a mouse.

      -
    • -
    • -

      Trusted Devices (Pro) – Identify the devices you and other users use to block session hijacking attacks and limit Administrator privileges to Trusted Devices.

      -
    • -
    • -

      Automated Vulnerability Patching (Pro) – Solid Security Pro includes Patchstack which patches vulnerabilities before you have a chance to and applies fixes even before a plugin developer or vendor has issued a patch.

      -
    • -
    -

    Learn more about how passwordless login is the future and how Solid Security can help you implement it today.

    -

    👨‍👩‍👧‍👦 The Right Amount of Security for Every User Level

    -

    Different types of user levels require different levels of security. During the Solid Security setup process, you can identify your website’s key user groups. Once the different types of users are identified, you can apply the level of security that is just right for each user group.

    -

    Here are a couple of examples of how User Groups are useful for securing your site:

    -
      -
    • -

      For Clients – Let’s say you are configuring Solid Security on a client’s website. You will decide whether or not they are required to use two-factor authentication and if they should have access to the Solid Security settings.

      -
    • -
    • -

      For Customers – If you have an eCommerce website, you will decide whether or not you want to protect customer accounts with a password policy.

      -
    • -
    -

    Privilege Escalation (Pro) also adds a safe, secure way to grant temporary admin-level access to your website.

    -

    🤖 Block Bad Bots & Ban User Agents with Lockouts

    -
      -
    • -

      Ban Users (Basic and Pro) – Permanently block repeat offenders from accessing your site.
      -Local Brute Force Protection – Automatically identify and stop the most common method of attack on WordPress sites.

      -
    • -
    • -

      Local Brute Force Protection (Basic and Pro) – Automatically identify and stop the most common method of attack on WordPress sites.

      -
    • -
    • -

      Network Brute Force Protection (Basic and Pro) – The network is the Solid Security community and is nearly one million websites strong. If someone tries to break into websites in the Solid Security community, Solid Security will block them across the network.

      -
    • -
    • -

      Magic Links (Pro) – Security shouldn’t get in your way. Magic Links allow you to log in to your WordPress site while your username is locked out by the Solid Security Local Brute Force Protection feature.

      -
    • -
    -

    🔍 Monitor Your Site’s Security Health

    -
      -
    • -

      File Change Detection (Basic and Pro) – Solid Security logs changes made to your website that can help detect malicious activity on your website.

      -
    • -
    • -

      Site Scanner (Basic and Pro) – Schedule checks to run four times per day (Basic) or hourly (Pro) for known vulnerabilities of WordPress core file, plugins and themes. Using the Google Safe Browsing API, the Site Scan also checks your Google’s blocklist status and will alert you if Google has found any malware on your website.

      -
    • -
    • -

      Patchstack integration (Pro) – Automated virtual patching of some vulnerabilities before you even have a chance to address them yourself, and before a plugin or theme vendor or developer can even issue a patch.

      -
    • -
    • -

      Site Scanner (Pro) – Unlock Version Management to automatically apply a patch to vulnerable software detected by the Site Scan when one is available.

      -
    • -
    • -

      User Logging (Pro) – Keep a record of user activity in your WordPress security logs, including login/logout, user registration, adding/removing plugins, switching themes, changes to posts and pages, and more.

      -
    • -
    • -

      Version Management (Pro) – The Version Management feature in Solid Security Pro allows you to auto-update WordPress, plugins, and themes. Beyond that, Version Management also has options to harden your website when you are running outdated software and scan for old websites.

      -
    • -
    -

    🧠 Smarter, More Actionable Vulnerability Prioritization

    -

    Not all vulnerabilities pose the same level of risk, and the traditional Common Vulnerability Scoring System (CVSS) score doesn’t always reflect the realities of running a WordPress site.

    -

    Solid Security now uses the Patchstack Priority score, which goes beyond CVSS to provide a real-world risk assessment tailored to WordPress. It factors in how likely a vulnerability is to be exploited and its actual impact on your site.

    -

    With Patchstack Priority, you get a clearer picture of what really matters, helping you focus on the vulnerabilities that pose the greatest risk, and worry less about noise from low-impact issues.

    -

    🛠️ Website Security Utilities

    -
      -
    • -

      Enforce SSL – Force all connections to the website to be made over SSL/TLS.

      -
    • -
    • -

      Database Backups – Create backups of your WordPress database. (Not a complete backup.)

      -
    • -
    • -

      Geolocation (Pro) – Improve Trusted Devices by connecting to an external location or mapping API.

      -
    • -
    -

    🚀 Advanced Security Tools

    -
      -
    • Identify Server IPs – Prevent issues caused by inadvertently locking out your server IPs.
    • -
    • Change User ID 1 – Change the user ID for the first WordPress user, potentially preventing attacks that assume the user with ID1 exists and is an administrator.
    • -
    • Change Database Prefix – Change the database prefix that WordPress uses, potentially preventing attacks that assume the database prefix is “wp_”.
    • -
    • Check File Permission – See the file and directory permissions of key areas of your site.
    • -
    • Server Config Rules – View or flush the server security rules generated by Solid Security.
    • -
    • wp-config.php Rules – View or flush the wp-config.php security rules generated by Solid Security.
    • -
    • Change WordPress Salts – Secure your site after a successful attack by changing the WordPress salts used to secure cookies and security tokens.
    • -
    • Hide Login URL – change the login URL of your site, making it harder for bots to find your login page and attack it.
    • -
    -

    🛟 Need Help?

    -

    Free support may be available with the community’s help in the WordPress.org support forums. Our Solid Security support team provides top-notch technical support to all our Solid Security Basic users there.

    -

    Our Help Center will help you become an iThemes Security expert.

    -

    Get additional peace of mind with professional support from our expert team and pro features to take your site’s security to the next level with Solid Security Pro.

    -

    Recover From a Hacked Site

    -

    Solid Security makes regular backups of your WordPress database, allowing you to get back online quickly in the event of a hack or security breach. Use Solid Security to create and email database backups on a customizable schedule.

    -

    For complete site backups and the ability to restore or move WordPress to a new host or domain, check out Solid Backups.

    -

    Solid Central Integration

    -

    Manage more than one WordPress site? Release lockouts and keep your themes, plugins, and WordPress core up to date from one dashboard with Solid Central.

    -

    *Zippia. “30 Crucial Cybersecurity Statistics [2023]: Data, Trends And More” Zippia.com. Jun. 15, 2023, https://www.zippia.com/advice/cybersecurity-statistics/

    -

    **https://blog.checkpoint.com/2023/01/05/38-increase-in-2022-global-cyberattacks/

    -

    License

    -

    Released under the terms of the GNU General Public License.

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Solid Security – Password, Two Factor Authentication, and Brute Force Protection", "slug": "better-wp-security", "tags": {"malware": "malware", "security": "security", "password-protection": "password protection", "brute-force-protection": "brute force protection", "two-factor-authentication": "two factor authentication"}, "added": "2010-10-23", "icons": {"1x": "https://ps.w.org/better-wp-security/assets/icon.svg?rev=2980272", "svg": "https://ps.w.org/better-wp-security/assets/icon.svg?rev=2980272"}, "author": "StellarWP", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/better-wp-security/assets/banner-772x250.png?rev=2980272", "high": "https://ps.w.org/better-wp-security/assets/banner-1544x500.png?rev=2980272"}, "ratings": {"1": 280, "2": 62, "3": 45, "4": 176, "5": 3417}, "version": "9.4.1", "homepage": "https://solidwp.com/products/security", "requires": "6.5", "sections": {"faq": "\n
    \nWhy does Solid Security require the latest WordPress version? Can’t I use a slightly older version?\n\n

    \n

      \n
    • One of the best security practices for a WordPress site owner is keeping software up to date. Because of this, we only test this plugin on the latest stable version of WordPress and will only guarantee it works in the latest version.
    • \n
    \n

    \n
    \nWill this plugin completely stop all attacks on my site?\n\n

    \n

      \n
    • No. Solid Security is designed to help improve the security of your WordPress installation from many common attack methods, but it cannot prevent every possible attack. Nothing replaces diligence and good practice. This plugin makes it a little easier for you to apply both.
    • \n
    \n

    \n
    \nIs this plugin only for new WordPress installs or can I use it on existing sites, too?\n\n

    \n

      \n
    • While Solid Security can be installed on either a new or existing site, we strongly recommend making a complete backup of your existing site before applying any features included in this plugin.
    • \n
    \n

    \n
    \nWill this plugin work on all servers and hosts?\n\n

    \n

      \n
    • Solid Security requires Apache or LiteSpeed and mod_rewrite or NGINX to work.
    • \n
    \n

    \n
    \nWhat changes does this plugin make that can break my site?\n\n

    \n

      \n
    • Solid Security makes significant changes to your database and other site files which can be problematic for existing WordPress sites. Again, we strongly recommended making a complete backup of your site before using this plugin. While problems are rare, most support requests involve the failure to make a proper backup before installation. DISCLAIMER: Under no circumstances do we release this plugin with any warranty, implied or otherwise. We cannot be held responsible for any damage that might arise from the use of this plugin.
    • \n
    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    CSS problem

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ilya (sarbash) on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    By using next CSS rules

    \n\n\n\n
    .auto-fold #wpcontent {
    padding-left: 0;
    }

    #wpcontent {
    padding-left: 0;
    }

    \n\n\n\n

    you break original Wordpress CSS

    \n\n\n\n
    #wpcontent {
    height: 100%;
    padding-left: 20px;
    }
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    from happy to VERY disappointed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jongveronique on October 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used to be very happy with the plugin. It did exactly what it needed to do, even if setup was a bit of a challenge.
    Now it broke one of my sites 3 weeks in a row. First an empty wp-config file, then an error in the .htaccess (with 2 sites) and this week only the homepage of the site was live and all others were nowhere to be found (404). I deactivated this plugin and all of a sudden the pages had returned.
    I am afraid I''ll have to look for another security app.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable Security You Can Count On

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Asif Hossain (asifhossain1) on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin makes website protection simple with real-time monitoring and automatic blocking that works quietly in the background. I feel more confident knowing threats are stopped before they cause damage. The cost of the premium plan could be a hurdle for smaller projects but the features are impressive.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Bad plugin, no support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pierre236 (Pierreto) on July 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin weighs down the database, which if not cleaned every day, can quickly put your site out of action.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice addition to your WP SIte

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy georgewp24 on July 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have to be honest — at the beginning, it was a bit challenging for me to set everything up. It wasn’t working at first, and I felt pretty desperate. However, the support team didn’t leave me on my own, and I really appreciated that. Once you get it up and running, the plugins are a great option.

    \n\n\n\n

    That said, I think there’s definitely room for improvement in the documentation and onboarding for new clients. Sometimes the support material can be a bit confusing — a few steps or clicks are missing, which can lead to frustration. It would be really helpful to have short, step-by-step videos that guide users through the process.

    \n\n\n\n

    You do need to make some small edits to the server (nothing too technical like database manipulation), but it can feel intimidating if you’re not used to dealing with servers.

    \n\n\n\n

    In the end, it mostly comes down to copying a few links, but it’s easy to get stuck along the way without the right guidance.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin good support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy chris@designwave.co.za on July 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good security plugin with nice features. Haven''t had any security breaches in years of using it. Support team is good and helpful too.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin crashes the website under PHP8.4

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy h360 on July 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin crashes the website under PHP8.4

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Paul (emailsbrowsing) on May 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin and great customer service

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A nightmare

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rostichep on May 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    An admin has entered the wrong password, he''s blocked and I can''t unblock him. Even by deactivating and deleting this plugin and cleaning up the database. I can''t find an explanation anywhere. I''m banning this plugin forever, which makes my site unusable in the event of a password error. Grrrr

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Service and Plugins

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy makmacmc on April 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using SolidWP (since iThemes) for the past 10 years or so, and they have served me greatly.

    \n\n\n\n

    I run all my clients through Solid Sync and use Solid Backups and Solid Security for all my client sites.

    \n\n\n\n

    Highly recommend!

    \n
    \n
    \n", "changelog": "

    9.4.1

    \n
      \n
    • Bug Fix: Missing assets in release 9.4.0.
    • \n
    \n

    9.4.0

    \n
      \n
    • Important: Solid Security now requires PHP 7.4 or later.
    • \n
    • New: Patchstack Priority tells you how quickly you should address a vulnerability so you can focus on the most critical issues.
    • \n
    • New: The Security Digest email includes a complete list of vulnerabilities affecting your site.
    • \n
    • Enhancement: The Site Scan email now only includes newly found vulnerabilities to prevent notification fatigue.
    • \n
    • Enhancement: Site Scans now run four times daily to detect new vulnerabilities.
    • \n
    • Tweak: Make frontend JS code compatible with React 18.
    • \n
    \n

    9.3.10

    \n
      \n
    • Tweak: Update SolidWP Logo
    • \n
    \n

    9.3.9

    \n
      \n
    • Tweak: Reduce number of steps in the onboarding sequence.
    • \n
    • Bug Fix: Notification Center settings could not be properly saved.
    • \n
    \n

    9.3.8

    \n
      \n
    • Tweak: Delete older JS files that were causing false-positives on scans. They have not been used since the UI was rewritten in React.
    • \n
    • Security: Update StellarWP Telemetry library to improve authorization checks.
    • \n
    \n

    9.3.7

    \n
      \n
    • Enhancement: Use block API Version 3 for the Security Profile block.
    • \n
    • Bug Fix: PHP warning when HTTP_HOST not set.
    • \n
    \n

    9.3.6

    \n
      \n
    • Enhancement: Better surface Login Security features during onboarding.
    • \n
    \n

    9.3.5

    \n
      \n
    • Bug Fix: PHP warning about translations being loaded too early.
    • \n
    \n

    9.3.4

    \n
      \n
    • Important: Solid Security now requires WordPress 6.5 or later.
    • \n
    • Tweak: Add a new solid_security_mail_site_logo filter to modify the Site Logo used in email notifications.
    • \n
    • Bug Fix: PHP fatal error on shutdown due to missing Event class on some sites.
    • \n
    • Bug Fix: PHP warning on Site Health page.
    • \n
    • Bug Fix: PHP warning in the SSL module on some server setups.
    • \n
    \n

    9.3.3

    \n
      \n
    • Enhancement: Improve highlighting settings search results.
    • \n
    • Bug Fix: Crash during the onboarding process when starting over in some paths.
    • \n
    • Bug Fix: Checkbox styling issue on WordPress 6.6.
    • \n
    • Bug Fix: Fire an action when a vulnerability is unresolved due to plugin activation.
    • \n
    \n

    9.3.2

    \n
      \n
    • Important: “Automatic (Insecure)” IP detection has been removed. Read more: https://go.solidwp.com/firewall-features-not-available
    • \n
    • Enhancement: Allow generating a new Two-Factor TOTP secret from the WP-Login UI.
    • \n
    • Bug Fix: The SolidWP logo appeared too large in some email clients.
    • \n
    • Bug Fix: An error would occur if we could not determine the length of database columns while saving log items.
    • \n
    \n

    9.3.1

    \n
      \n
    • Tweak: Add a notice when a user’s role is demoted from the Site Scans page.
    • \n
    • Tweak: Update Privacy Policy generator text.
    • \n
    • Bug Fix: Could not proceed through onboarding when BuddyPress or BuddyBoss was active.
    • \n
    • Bug Fix: Some firewall rules could not be deactivated.
    • \n
    • Bug Fix: Allow opting in to Telemetry via the Settings Page.
    • \n
    • Bug Fix: PHP 8.2 deprecation warnings.
    • \n
    \n

    9.3.0

    \n
      \n
    • New: The Firewall page has a new IP Management tab to provide easy access to blocking or authorizing IP addresses.
    • \n
    • New: Usage Data Sharing (opt-in only) allows users to share non-personal and non-sensitive information with StellarWP to inform decisions about how to improve Solid Security in the future.
    • \n
    • Enhancement: Add a snackbar notice when making changes on the Firewall Configure page.
    • \n
    • Tweak: Remove some straggling references and links to iThemes.
    • \n
    • Tweak: Consistently refer to 2FA as Two-Factor Authentication on the Profile page.
    • \n
    • Tweak: Allow performing more Site Scan actions when the issue is muted.
    • \n
    • Bug Fix: Truncate log item columns that are too long before inserting into the database.
    • \n
    • Bug Fix: Consistently order the Security Profile tabs.
    • \n
    • Bug Fix: Add missing text domain to new Solid Security Admin Menu items.
    • \n
    • Bug Fix: Reset filters on the Vulnerabilities page when starting a Site Scan.
    • \n
    • Bug Fix: PHP warning on the logs page when the File Change module logs unexpected data.
    • \n
    \n

    9.2.0

    \n
      \n
    • New: Refreshed UI for manging per-user security settings like Two-Factor. The previous Two-Factor UI can be enabled using the SOLID_SECURITY_LEGACY_2FA_UI constant.
    • \n
    • New: A new block “Solid Security User Security Settings” let’s you display this UI on the front-end of your website. The [solid_security_user_profile_settings] shortcode can be used if you’re not yet using the Block Editor.
    • \n
    • Important: Solid Security now requires WordPress 6.3 or later.
    • \n
    • Enhancement: Display a snackbar notice when sending a 2FA reminder from the Site Scan page.
    • \n
    • Enhancement: Include a link directly to the Patchstack database in the Site Scanner alert email.
    • \n
    • Tweak: Remove iThemes Security is now Solid Security banners from the admin.
    • \n
    • Bug Fix: Trying to enable Network Brute Force from the Security messages center linked to the wrong place.
    • \n
    • Bug Fix: During onboarding, a double scrollbar was displayed on some screen sizes.
    • \n
    \n

    9.1.0

    \n
      \n
    • New: Add support for creating custom firewall rules.
    • \n
    • Enhancement: Add support for configuring firewall settings from the Firewall page.
    • \n
    • Bug Fix: The firewall page would appear empty when geolocation could not retrieve a country code.
    • \n
    \n

    9.0.3

    \n
      \n
    • Bug Fix: Remove an extra folder containing duplicate plugin files
    • \n
    \n

    9.0.2

    \n
      \n
    • Bug Fix: Adding missing dist files to SVN
    • \n
    \n

    9.0.1

    \n
      \n
    • Security: Don’t disclose the login URL when using Hide Backend on a site with comments enabled and comment registration required. Thanks to Naveen Muthusamy for disclosing this issue.
    • \n
    • Hardening: Check for the promote_user capability when using Privilege Escalation in addition to edit_user.
    • \n
    • Tweak: Remove the iThemes Security is now Solid Security banner from admin-facing email notifications.
    • \n
    • Bug Fix: Prevent the User Security page from crashing when “Show Avatars” is disabled in the WordPress discussion settings.
    • \n
    • Bug Fix: Fix some filters on the User Security page not working as expected.
    • \n
    • Bug Fix: Fix spacing on the Two-Factor form when backup methods are enabled.
    • \n
    • Bug Fix: Fix fatal error when there is an error retrieving Patchstack license information.
    • \n
    • Bug Fix: Styling issues on WordPress 6.4.
    • \n
    \n

    9.0.0

    \n
      \n
    • New: iThemes Security is now Solid Security! Learn More: https://go.solidwp.com/security-welcome-to-solidwp
    • \n
    • Important: Solid Security now requires WordPress 6.2 or later.
    • \n
    • New: The Firewall screen brings together the Firewall functionality Solid Security provides into one easy to use screen. More Firewall features are coming soon!
    • \n
    • New: The Vulnerabilities screen identifies what vulnerable software you have on your site and guides you through next steps.
    • \n
    • New: Identify risks in your site’s security with the the expanded Site Scan functionality.
    • \n
    • New: The User Security screen keeps you appraised of the security practices your site’s users are following. Easily apply actions to multiple users in one-click like resetting passwords or logging out active sessions.
    • \n
    • Enhancement: The dashboard and settings screens have been redesigned to make it easier to find what you’re looking for.
    • \n
    • Enhancement: The Security Summary dashboard card gives you a snapshot of the most important security issues affecting your site.
    • \n
    • Enhancement: Add support for loading Solid Security via an MU-Plugin for improved performance when blocking attackers.
    • \n
    • Tweak: Remove the IP Tracker Online link from the logs page.
    • \n
    • Bug Fix: PHP 8.2 compatibility.
    • \n
    • Bug Fix: Resolved PHP warnings when unexpected data is encountered during software updates.
    • \n
    \n

    8.1.8

    \n
      \n
    • News: iThemes Security is becoming Solid Security soon. Learn More: https://go.solidwp.com/security-free-notice-ithemes-becoming-solidwp
    • \n
    \n

    8.1.7

    \n
      \n
    • Important: Enforce encryption for Two-Factor secrets.
    • \n
    • Tweak: Add Stellar and Solid banners.
    • \n
    • Bug Fix: Don’t require “Write to Files” to be enabled to use the “Rotate Encryption Key” tool.
    • \n
    \n

    8.1.6

    \n
      \n
    • Bug Fix: Fallback to the homepage when Enforce SSL encounters a non-safelisted redirect destination.
    • \n
    • Bug Fix: IP Detection on sites behind Load Balancers that appended their IP address to X-Forwarded-For and did not provide a Real IP header.
    • \n
    \n

    8.1.5

    \n
      \n
    • Security Hardening: Prevent open redirects attacks against the Enforce SSL module. This attack requires spoofing the Host header which requires additional conditions to exploit. Thanks to nlpro for reporting the issue. Read More: https://ithemes.com/?p=84309
    • \n
    • Bug Fix: Update Password Strength library to the latest version. This fixes discrepancies between the realtime password strength estimation and the enforced password strength.
    • \n
    \n

    8.1.4

    \n
      \n
    • Tweak: Add “All” tab to the Features page.
    • \n
    • Tweak: Don’t show “Ban” buttons in Security Dashboard if the user won’t be able to create a ban.
    • \n
    • Bug Fix: Prevent Headers Already Sent warning when a lockout occurs during a WP Cron request on some server setups.
    • \n
    • Bug Fix: Manually load Sodium Polyfill for servers that have an older version of libsodium installed.
    • \n
    • Bug Fix: Error when saving the File Change settings when the “notify_admin” setting was set.
    • \n
    • Bug Fix: Prevent a redirect loop when logging in on sites that take more than 5 seconds to load the Dashboard.
    • \n
    \n

    8.1.3

    \n
      \n
    • Important: iThemes Security now requires PHP 7.3 and WordPress 5.9 or later.
    • \n
    • Security: Add support for encrypting Two-Factor Mobile App secrets. Enable via Tools -> Set Encryption Key.
    • \n
    • Security: Deprecate Automatic Proxy Detection. Instead, manually configure Proxy Detection or use Security Check. Fix IP spoofing attacks.
    • \n
    • Enhancement: Add “Ban Lockout” button to the Active Lockouts card.
    • \n
    • Bug Fix: File Logs not rotating.
    • \n
    • Bug Fix: PHP warning when loading Icon Fonts in certain configurations.
    • \n
    • Bug Fix: Don’t attempt to Hide Backend when a Cron request is being processed.
    • \n
    • Bug Fix: Prevent entering invalid date values when selecting a custom date range in the Security Dashboard.
    • \n
    • Bug Fix: Preliminary PHP 8.1 compatibility.
    • \n
    • Bug Fix: File Change “notify_admin” settings validation error.
    • \n
    • Thanks to Calvin Alkan for reporting the security issues fixed in this release.
    • \n
    \n

    8.1.2

    \n
      \n
    • Tweak: Require a Title when creating a new Dashboard.
    • \n
    • Bug Fix: Don’t attempt to send a Site Scan notification for Clean scans preventing a fatal error after scheduled site scans.
    • \n
    \n

    8.1.1

    \n
      \n
    • Bug Fix: Error when visiting the Notifications page after activating a module with notifications for the first time.
    • \n
    • Bug Fix: Update deprecated withState usages to useState.
    • \n
    \n

    8.1.0

    \n
      \n
    • Important: iThemes Security now requires WordPress 5.8 or later.
    • \n
    • New Feature: Include the full iThemes Security Site Scanner in iThemes Security Free. Scheduled scans are disabled by default.
    • \n
    • Tweak: Add new “Go Pro” page that includes an overview of features in iThemes Security Pro.
    • \n
    • Bug Fix: Scroll to top of window when navigating.
    • \n
    • Bug Fix: Allow searching for Password Requirements.
    • \n
    • Bug Fix: Don’t load WordPress and System Tweaks modules when the ITSEC_DISABLE_MODULES constant is enabled.
    • \n
    • Bug Fix: Prevent incidentally loading the Two-Factor module when it is unregistered.
    • \n
    • Bug Fix: Conditionally display the NGINX File Path setting.
    • \n
    • Bug Fix: Allow saving Notifications when “default recipients must contain at least 1 item” error is present.
    • \n
    • Bug Fix: Help styling on WordPress 5.9.
    • \n
    • Bug Fix: Compatibility with plugins that expected a logged-in user during lockouts.
    • \n
    \n

    8.0.2

    \n
      \n
    • Enhancement: Reintroduce Feature Flags management UI.
    • \n
    • Tweak: Reposition “Advanced” and “Tools” menu items to be more readable on lengthy screens.
    • \n
    • Bug Fix: When the Change Admin User tool is run, update any User Groups referencing the old user id.
    • \n
    • Bug Fix: WordPress footer would appear in the middle of the logs page.
    • \n
    • Bug Fix: Add missing translation strings file.
    • \n
    \n

    8.0.1

    \n
      \n
    • Bug Fix: Sites that did not support HTTPS, but had the SSL module active, but not configured, on upgrade would get redirected to the HTTPS version of the site.
    • \n
    • Bug Fix: Unregister the iThemes Security Two-Factor module when the Two-Factor Feature Plugin is enabled.
    • \n
    • Bug Fix: Allow activation on WordPress 5.7.0.
    • \n
    • Bug Fix: Add missing textdomains.
    • \n
    \n

    8.0.0

    \n
      \n
    • Important: iThemes Security now requires WordPress 5.7 and PHP 7.0 or later.
    • \n
    • New: iThemes Security gets a redesigned interface focused on making it easier to configure and find what you’re looking for. Read More: https://ithemes.com/?p=65086.
    • \n
    • New: Instantly search over everything in iThemes Security with a new instant search feature.
    • \n
    • New: Security Tools have been grouped into their own page. “Identify Server IPs” and “Security Check Pro” can be run manually without using Debug Mode.
    • \n
    • New: Relevant content from the Help Center, iThemes Blog, and iThemes YouTube channel is surfaced in a new Help area based on the current page. Click the “Help” button in the toolbar or the “Info” icon next to the page title to access it.
    • \n
    • New: The settings UI is now fully responsive and works great across mobile, tablet, and desktop devices.
    • \n
    • New: Two-Factor is now part of the core iThemes Security plugin.
    • \n
    • Enhancement: Improved keyboard and screen reader support.
    • \n
    • Enhancement: The Banned Users Card can add multiple bans at once.
    • \n
    • Tweak: Add a new Global setting to control “Automatically Temporarily Authorize Hosts”.
    • \n
    • Tweak: When the Global setting “Hide Security Menu in Admin Bar” is enabled, notices will no longer be printed on non-iThemes Security pages. Instead, you can access the Message Center from the Settings or Dashbaord toolbars.
    • \n
    • Tweak: The Database Backups module is no longer available if you have BackupBuddy installed. If this behavior isn’t desired, enable the “ITSEC_ENABLE_BACKUPS” constant.
    • \n
    • Tweak: The Geolocation API configuration used by Trusted Devices has been moved into it’s own dedicated “Geolocation” module.
    • \n
    • Tweak: Move “Have I Been Pwned” integration to the Core plugin.
    • \n
    • Tweak: Reduce filename length and complexity for built CSS and JS files.
    • \n
    • Removed: The following modules have been removed: 404 Detection, Away Mode, Change Content Directory, and Multisite Tweaks.
    • \n
    • Removed: The following WordPress and System Tweaks have been removed: Remove Windows Live Writer Header, EditURI Header, Comment Spam, Mitigate Attachment File Traversal Attack, Protect Against Tabnapping, Filter Long URL Strings, Filter Non-English Characters, Filter Request Methods, Remove File Writing Permissions.
    • \n
    • Removed: The “Backup Full Database” setting has been removed from the Backups module.
    • \n
    • Removed: The “Require SSL”, “Front End SSL Mode”, and “SSL for Dashboard” settings have been removed from the SSL module.
    • \n
    • Bug Fix: Fix fatal errors when using PHP 8.
    • \n
    • Bug Fix: Fix infinite loop when restricting who can use App Passwords on multisite installs.
    • \n
    • Bug Fix: Ensure the ITSEC_Setup class does not exist before trying to load it. Display schema errors on multisite in the Network Admin.
    • \n
    • Bug Fix: Labels for Disable PHP Execution in Plugins and Themes were reversed.
    • \n
    • Bug Fix: Add missing constants to the debug page.
    • \n
    • Bug Fix: Remove deleted recipients when saving notifications.
    • \n
    • Bug Fix: Correct Site Scan statuses for scans with no issues.
    • \n
    • Dev Note: Modules are now based on a module.json configuration file. If you are registering custom iThemes Security module, you should update it to include a module.json file that adheres to the core/module-schema.json JSON Schema.
    • \n
    • Dev Note: The Network Brute Force module had it’s folder updated to “network-brute-force” from “ipcheck”.
    • \n
    • Dev Note: New Object Oriented API for creating Password Requirements.
    • \n
    • Dev Note: New Settings and Modules REST API endpoints.
    • \n
    • Dev Note: New RPC REST API namespace. There is no backward compatibility promise for these API endpoints.
    • \n
    \n", "description": "

    Reduce your WordPress website’s risk to nearly zero with Solid Security

    \n

    Formerly iThemes Security. Looking for iThemes? Learn more here.

    \n

    On average, 30,000 websites are hacked every day.* Cyberattacks in the US increased by 57% in 2022.** Bad actors who want to hack your site, steal your data, and cripple your business are a 24/7/365 threat.

    \n

    You need a proactive, strategic approach to WordPress website security that protects your site from brute force attacks, malware infections, and other cyber threats.

    \n

    Solid Security shields your site from cyberattacks and prevents security vulnerabilities. It automatically locks out bad users identified by our Brute Force Protection Network that is nearly 1 million sites strong and leverages your own blacklist. It secures and protects your most commonly attacked part of your WordPress website – user login authentication.

    \n

    With Patchstack integration (Pro) protects your site before you even have a chance to address vulnerabilities and before a plugin or theme vendor or developer can even issue a patch.

    \n

    That’s 24/7/365 always-on truly Solid Security.

    \n

    \n

    🌐 Secure your Website in Minutes

    \n

    The Solid Security setup and onboarding experience allows anyone to secure their WordPress website in under 10 minutes, regardless of technical acumen. Knowing that you have enabled all the right security settings for your website will leave you feeling like your site has never been more secure.

    \n

    📚 Security Site Templates to Fit Your Type of Site

    \n

    Enabling the correct security settings based on the type of website you are building or maintaining is essential for proper security. An eCommerce site requires a different level of security than a basic blog. Solid Security Site Templates make it quick and easy to apply the right security settings for your website.

    \n

    Choose from six different site templates to apply the type of security your site needs:

    \n
      \n
    1. Ecommerce – websites that sell products or services
    2. \n
    3. Network – websites that connect people or communities
    4. \n
    5. Non-Profit – websites that promote your cause and collect donations
    6. \n
    7. Blog – websites that share your thoughts or start a conversation
    8. \n
    9. Portfolio – websites that showcase your craft
    10. \n
    11. Brochure – simple websites that promote your business
    12. \n
    \n

    ⌚ Real-Time Website Security Dashboard

    \n

    Every day, lots of activity is happening on your website that you can’t see. Many of these activities can be related to your site’s security, so monitoring these events is vital to keeping your site secure.

    \n

    The Solid Security Pro plugin provides a real-time WordPress security dashboard that monitors security-related events on your site around the clock. The Solid Security Dashboard is a dynamic dashboard with all your WordPress website’s security activity stats in one place, including brute force attacks, banned users, active lockouts, site scan results, and user security stats (Pro).

    \n

    🗝️ WordPress Login Security

    \n

    Setting up and maintaining proper WordPress configurations and managing user account access are essential aspects of hardening your site against threats and vulnerabilities. Basic and Pro include features that address both of these factors.

    \n
      \n
    • \n

      Two Factor Authentication (2FA) – Make your WordPress login nearly impenetrable to attack by requiring users to enter a security code along with a password to login. The Solid Security plugin allows you to add two-factor authentication to your WordPress login with several authentication methods, including mobile apps like Authy and Google Authenticator, email, and backup codes.

      \n
    • \n
    • \n

      Password Requirements – Create and enforce a password policy for your users in less than a minute.

      \n
    • \n
    • \n

      reCAPTCHA (Pro) – Stop bad bots from engaging in abusive activities on your website, such as attempting to break into your website using compromised passwords, posting spam, or even scraping your content.

      \n
    • \n
    • \n

      Passwordless Logins (Pro) – WordPress security made easy. Secure your user accounts with 2fa & strong passwords while allowing real users login with a click of a mouse.

      \n
    • \n
    • \n

      Trusted Devices (Pro) – Identify the devices you and other users use to block session hijacking attacks and limit Administrator privileges to Trusted Devices.

      \n
    • \n
    • \n

      Automated Vulnerability Patching (Pro) – Solid Security Pro includes Patchstack which patches vulnerabilities before you have a chance to and applies fixes even before a plugin developer or vendor has issued a patch.

      \n
    • \n
    \n

    Learn more about how passwordless login is the future and how Solid Security can help you implement it today.

    \n

    👨‍👩‍👧‍👦 The Right Amount of Security for Every User Level

    \n

    Different types of user levels require different levels of security. During the Solid Security setup process, you can identify your website’s key user groups. Once the different types of users are identified, you can apply the level of security that is just right for each user group.

    \n

    Here are a couple of examples of how User Groups are useful for securing your site:

    \n
      \n
    • \n

      For Clients – Let’s say you are configuring Solid Security on a client’s website. You will decide whether or not they are required to use two-factor authentication and if they should have access to the Solid Security settings.

      \n
    • \n
    • \n

      For Customers – If you have an eCommerce website, you will decide whether or not you want to protect customer accounts with a password policy.

      \n
    • \n
    \n

    Privilege Escalation (Pro) also adds a safe, secure way to grant temporary admin-level access to your website.

    \n

    🤖 Block Bad Bots & Ban User Agents with Lockouts

    \n
      \n
    • \n

      Ban Users (Basic and Pro) – Permanently block repeat offenders from accessing your site.
      \nLocal Brute Force Protection – Automatically identify and stop the most common method of attack on WordPress sites.

      \n
    • \n
    • \n

      Local Brute Force Protection (Basic and Pro) – Automatically identify and stop the most common method of attack on WordPress sites.

      \n
    • \n
    • \n

      Network Brute Force Protection (Basic and Pro) – The network is the Solid Security community and is nearly one million websites strong. If someone tries to break into websites in the Solid Security community, Solid Security will block them across the network.

      \n
    • \n
    • \n

      Magic Links (Pro) – Security shouldn’t get in your way. Magic Links allow you to log in to your WordPress site while your username is locked out by the Solid Security Local Brute Force Protection feature.

      \n
    • \n
    \n

    🔍 Monitor Your Site’s Security Health

    \n
      \n
    • \n

      File Change Detection (Basic and Pro) – Solid Security logs changes made to your website that can help detect malicious activity on your website.

      \n
    • \n
    • \n

      Site Scanner (Basic and Pro) – Schedule checks to run four times per day (Basic) or hourly (Pro) for known vulnerabilities of WordPress core file, plugins and themes. Using the Google Safe Browsing API, the Site Scan also checks your Google’s blocklist status and will alert you if Google has found any malware on your website.

      \n
    • \n
    • \n

      Patchstack integration (Pro) – Automated virtual patching of some vulnerabilities before you even have a chance to address them yourself, and before a plugin or theme vendor or developer can even issue a patch.

      \n
    • \n
    • \n

      Site Scanner (Pro) – Unlock Version Management to automatically apply a patch to vulnerable software detected by the Site Scan when one is available.

      \n
    • \n
    • \n

      User Logging (Pro) – Keep a record of user activity in your WordPress security logs, including login/logout, user registration, adding/removing plugins, switching themes, changes to posts and pages, and more.

      \n
    • \n
    • \n

      Version Management (Pro) – The Version Management feature in Solid Security Pro allows you to auto-update WordPress, plugins, and themes. Beyond that, Version Management also has options to harden your website when you are running outdated software and scan for old websites.

      \n
    • \n
    \n

    🧠 Smarter, More Actionable Vulnerability Prioritization

    \n

    Not all vulnerabilities pose the same level of risk, and the traditional Common Vulnerability Scoring System (CVSS) score doesn’t always reflect the realities of running a WordPress site.

    \n

    Solid Security now uses the Patchstack Priority score, which goes beyond CVSS to provide a real-world risk assessment tailored to WordPress. It factors in how likely a vulnerability is to be exploited and its actual impact on your site.

    \n

    With Patchstack Priority, you get a clearer picture of what really matters, helping you focus on the vulnerabilities that pose the greatest risk, and worry less about noise from low-impact issues.

    \n

    🛠️ Website Security Utilities

    \n
      \n
    • \n

      Enforce SSL – Force all connections to the website to be made over SSL/TLS.

      \n
    • \n
    • \n

      Database Backups – Create backups of your WordPress database. (Not a complete backup.)

      \n
    • \n
    • \n

      Geolocation (Pro) – Improve Trusted Devices by connecting to an external location or mapping API.

      \n
    • \n
    \n

    🚀 Advanced Security Tools

    \n
      \n
    • Identify Server IPs – Prevent issues caused by inadvertently locking out your server IPs.
    • \n
    • Change User ID 1 – Change the user ID for the first WordPress user, potentially preventing attacks that assume the user with ID1 exists and is an administrator.
    • \n
    • Change Database Prefix – Change the database prefix that WordPress uses, potentially preventing attacks that assume the database prefix is “wp_”.
    • \n
    • Check File Permission – See the file and directory permissions of key areas of your site.
    • \n
    • Server Config Rules – View or flush the server security rules generated by Solid Security.
    • \n
    • wp-config.php Rules – View or flush the wp-config.php security rules generated by Solid Security.
    • \n
    • Change WordPress Salts – Secure your site after a successful attack by changing the WordPress salts used to secure cookies and security tokens.
    • \n
    • Hide Login URL – change the login URL of your site, making it harder for bots to find your login page and attack it.
    • \n
    \n

    🛟 Need Help?

    \n

    Free support may be available with the community’s help in the WordPress.org support forums. Our Solid Security support team provides top-notch technical support to all our Solid Security Basic users there.

    \n

    Our Help Center will help you become an iThemes Security expert.

    \n

    Get additional peace of mind with professional support from our expert team and pro features to take your site’s security to the next level with Solid Security Pro.

    \n

    Recover From a Hacked Site

    \n

    Solid Security makes regular backups of your WordPress database, allowing you to get back online quickly in the event of a hack or security breach. Use Solid Security to create and email database backups on a customizable schedule.

    \n

    For complete site backups and the ability to restore or move WordPress to a new host or domain, check out Solid Backups.

    \n

    Solid Central Integration

    \n

    Manage more than one WordPress site? Release lockouts and keep your themes, plugins, and WordPress core up to date from one dashboard with Solid Central.

    \n

    *Zippia. “30 Crucial Cybersecurity Statistics [2023]: Data, Trends And More” Zippia.com. Jun. 15, 2023, https://www.zippia.com/advice/cybersecurity-statistics/

    \n

    **https://blog.checkpoint.com/2023/01/05/38-increase-in-2022-global-cyberattacks/

    \n

    License

    \n

    Released under the terms of the GNU General Public License.

    \n", "screenshots": "
    1. \"Customized

      Customized onboarding configures your security settings to your needs

    2. \"Real-Time

      Real-Time Security Dashboard

    3. \"WordPress

      WordPress Login Security with Two Factor Authentication

    4. \"Firewall

      Firewall rules, Block Bad Bots, and Ban User Agents with Lockouts

    5. \"Monitor

      Monitor Your Site''s Security Health

    6. \"Database

      Database backups help you get up and running again when the worst happens

    7. \"Advanced

      Advanced Security Settings for power users

    8. \"Automated

      Automated vulnerability patching with Patchstack (Pro)

    "}, "versions": {"5.0.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.0.1.zip", "5.1.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.1.1.zip", "5.2.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.2.1.zip", "5.3.7": "https://downloads.wordpress.org/plugin/better-wp-security.5.3.7.zip", "5.4.5": "https://downloads.wordpress.org/plugin/better-wp-security.5.4.5.zip", "5.5.0": "https://downloads.wordpress.org/plugin/better-wp-security.5.5.0.zip", "5.6.0": "https://downloads.wordpress.org/plugin/better-wp-security.5.6.0.zip", "5.6.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.6.1.zip", "5.6.2": "https://downloads.wordpress.org/plugin/better-wp-security.5.6.2.zip", "5.6.3": "https://downloads.wordpress.org/plugin/better-wp-security.5.6.3.zip", "5.6.4": "https://downloads.wordpress.org/plugin/better-wp-security.5.6.4.zip", "5.7.0": "https://downloads.wordpress.org/plugin/better-wp-security.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.7.1.zip", "5.8.0": "https://downloads.wordpress.org/plugin/better-wp-security.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.8.1.zip", "5.9.0": "https://downloads.wordpress.org/plugin/better-wp-security.5.9.0.zip", "6.0.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.0.0.zip", "6.1.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.1.1.zip", "6.2.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.2.1.zip", "6.3.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.3.0.zip", "6.4.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.4.0.zip", "6.5.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.5.1.zip", "6.6.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.6.1.zip", "6.7.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.7.0.zip", "6.8.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.8.0.zip", "6.8.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.8.1.zip", "6.9.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/better-wp-security.6.9.2.zip", "7.0.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/better-wp-security.7.0.2.zip", "7.0.3": "https://downloads.wordpress.org/plugin/better-wp-security.7.0.3.zip", "7.0.4": "https://downloads.wordpress.org/plugin/better-wp-security.7.0.4.zip", "7.1.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.1.0.zip", "7.2.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.2.0.zip", "7.3.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.3.0.zip", "7.3.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.3.1.zip", "7.3.2": "https://downloads.wordpress.org/plugin/better-wp-security.7.3.2.zip", "7.3.3": "https://downloads.wordpress.org/plugin/better-wp-security.7.3.3.zip", "7.4.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.4.1.zip", "7.5.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.5.0.zip", "7.6.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.6.0.zip", "7.6.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.6.1.zip", "7.7.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.7.0.zip", "7.7.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.7.1.zip", "7.8.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.8.0.zip", "7.9.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.9.1.zip", "8.0.0": "https://downloads.wordpress.org/plugin/better-wp-security.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/plugin/better-wp-security.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/plugin/better-wp-security.8.0.2.zip", "8.1.0": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.0.zip", "8.1.1": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.1.zip", "8.1.2": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.2.zip", "8.1.3": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.3.zip", "8.1.4": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.4.zip", "8.1.5": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.5.zip", "8.1.6": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.6.zip", "8.1.7": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.7.zip", "8.1.8": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.8.zip", "9.0.0": "https://downloads.wordpress.org/plugin/better-wp-security.9.0.0.zip", "9.0.1": "https://downloads.wordpress.org/plugin/better-wp-security.9.0.1.zip", "9.0.2": "https://downloads.wordpress.org/plugin/better-wp-security.9.0.2.zip", "9.0.3": "https://downloads.wordpress.org/plugin/better-wp-security.9.0.3.zip", "9.1.0": "https://downloads.wordpress.org/plugin/better-wp-security.9.1.0.zip", "9.2.0": "https://downloads.wordpress.org/plugin/better-wp-security.9.2.0.zip", "9.3.0": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.0.zip", "9.3.1": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.1.zip", "9.3.2": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.2.zip", "9.3.3": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.3.zip", "9.3.4": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.4.zip", "9.3.5": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.5.zip", "9.3.6": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.6.zip", "9.3.7": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.7.zip", "9.3.8": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.8.zip", "9.3.9": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.9.zip", "9.4.0": "https://downloads.wordpress.org/plugin/better-wp-security.9.4.0.zip", "9.4.1": "https://downloads.wordpress.org/plugin/better-wp-security.9.4.1.zip", "trunk": "https://downloads.wordpress.org/plugin/better-wp-security.zip", "9.3.10": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.10.zip"}, "downloaded": 35360702, "description": "

    Reduce your WordPress website’s risk to nearly zero with Solid Security

    \n

    Formerly iThemes Security. Looking for iThemes? Learn more here.

    \n

    On average, 30,000 websites are hacked every day.* Cyberattacks in the US increased by 57% in 2022.** Bad actors who want to hack your site, steal your data, and cripple your business are a 24/7/365 threat.

    \n

    You need a proactive, strategic approach to WordPress website security that protects your site from brute force attacks, malware infections, and other cyber threats.

    \n

    Solid Security shields your site from cyberattacks and prevents security vulnerabilities. It automatically locks out bad users identified by our Brute Force Protection Network that is nearly 1 million sites strong and leverages your own blacklist. It secures and protects your most commonly attacked part of your WordPress website – user login authentication.

    \n

    With Patchstack integration (Pro) protects your site before you even have a chance to address vulnerabilities and before a plugin or theme vendor or developer can even issue a patch.

    \n

    That’s 24/7/365 always-on truly Solid Security.

    \n

    \n

    🌐 Secure your Website in Minutes

    \n

    The Solid Security setup and onboarding experience allows anyone to secure their WordPress website in under 10 minutes, regardless of technical acumen. Knowing that you have enabled all the right security settings for your website will leave you feeling like your site has never been more secure.

    \n

    📚 Security Site Templates to Fit Your Type of Site

    \n

    Enabling the correct security settings based on the type of website you are building or maintaining is essential for proper security. An eCommerce site requires a different level of security than a basic blog. Solid Security Site Templates make it quick and easy to apply the right security settings for your website.

    \n

    Choose from six different site templates to apply the type of security your site needs:

    \n
      \n
    1. Ecommerce – websites that sell products or services
    2. \n
    3. Network – websites that connect people or communities
    4. \n
    5. Non-Profit – websites that promote your cause and collect donations
    6. \n
    7. Blog – websites that share your thoughts or start a conversation
    8. \n
    9. Portfolio – websites that showcase your craft
    10. \n
    11. Brochure – simple websites that promote your business
    12. \n
    \n

    ⌚ Real-Time Website Security Dashboard

    \n

    Every day, lots of activity is happening on your website that you can’t see. Many of these activities can be related to your site’s security, so monitoring these events is vital to keeping your site secure.

    \n

    The Solid Security Pro plugin provides a real-time WordPress security dashboard that monitors security-related events on your site around the clock. The Solid Security Dashboard is a dynamic dashboard with all your WordPress website’s security activity stats in one place, including brute force attacks, banned users, active lockouts, site scan results, and user security stats (Pro).

    \n

    🗝️ WordPress Login Security

    \n

    Setting up and maintaining proper WordPress configurations and managing user account access are essential aspects of hardening your site against threats and vulnerabilities. Basic and Pro include features that address both of these factors.

    \n
      \n
    • \n

      Two Factor Authentication (2FA) – Make your WordPress login nearly impenetrable to attack by requiring users to enter a security code along with a password to login. The Solid Security plugin allows you to add two-factor authentication to your WordPress login with several authentication methods, including mobile apps like Authy and Google Authenticator, email, and backup codes.

      \n
    • \n
    • \n

      Password Requirements – Create and enforce a password policy for your users in less than a minute.

      \n
    • \n
    • \n

      reCAPTCHA (Pro) – Stop bad bots from engaging in abusive activities on your website, such as attempting to break into your website using compromised passwords, posting spam, or even scraping your content.

      \n
    • \n
    • \n

      Passwordless Logins (Pro) – WordPress security made easy. Secure your user accounts with 2fa & strong passwords while allowing real users login with a click of a mouse.

      \n
    • \n
    • \n

      Trusted Devices (Pro) – Identify the devices you and other users use to block session hijacking attacks and limit Administrator privileges to Trusted Devices.

      \n
    • \n
    • \n

      Automated Vulnerability Patching (Pro) – Solid Security Pro includes Patchstack which patches vulnerabilities before you have a chance to and applies fixes even before a plugin developer or vendor has issued a patch.

      \n
    • \n
    \n

    Learn more about how passwordless login is the future and how Solid Security can help you implement it today.

    \n

    👨‍👩‍👧‍👦 The Right Amount of Security for Every User Level

    \n

    Different types of user levels require different levels of security. During the Solid Security setup process, you can identify your website’s key user groups. Once the different types of users are identified, you can apply the level of security that is just right for each user group.

    \n

    Here are a couple of examples of how User Groups are useful for securing your site:

    \n
      \n
    • \n

      For Clients – Let’s say you are configuring Solid Security on a client’s website. You will decide whether or not they are required to use two-factor authentication and if they should have access to the Solid Security settings.

      \n
    • \n
    • \n

      For Customers – If you have an eCommerce website, you will decide whether or not you want to protect customer accounts with a password policy.

      \n
    • \n
    \n

    Privilege Escalation (Pro) also adds a safe, secure way to grant temporary admin-level access to your website.

    \n

    🤖 Block Bad Bots & Ban User Agents with Lockouts

    \n
      \n
    • \n

      Ban Users (Basic and Pro) – Permanently block repeat offenders from accessing your site.
      \nLocal Brute Force Protection – Automatically identify and stop the most common method of attack on WordPress sites.

      \n
    • \n
    • \n

      Local Brute Force Protection (Basic and Pro) – Automatically identify and stop the most common method of attack on WordPress sites.

      \n
    • \n
    • \n

      Network Brute Force Protection (Basic and Pro) – The network is the Solid Security community and is nearly one million websites strong. If someone tries to break into websites in the Solid Security community, Solid Security will block them across the network.

      \n
    • \n
    • \n

      Magic Links (Pro) – Security shouldn’t get in your way. Magic Links allow you to log in to your WordPress site while your username is locked out by the Solid Security Local Brute Force Protection feature.

      \n
    • \n
    \n

    🔍 Monitor Your Site’s Security Health

    \n
      \n
    • \n

      File Change Detection (Basic and Pro) – Solid Security logs changes made to your website that can help detect malicious activity on your website.

      \n
    • \n
    • \n

      Site Scanner (Basic and Pro) – Schedule checks to run four times per day (Basic) or hourly (Pro) for known vulnerabilities of WordPress core file, plugins and themes. Using the Google Safe Browsing API, the Site Scan also checks your Google’s blocklist status and will alert you if Google has found any malware on your website.

      \n
    • \n
    • \n

      Patchstack integration (Pro) – Automated virtual patching of some vulnerabilities before you even have a chance to address them yourself, and before a plugin or theme vendor or developer can even issue a patch.

      \n
    • \n
    • \n

      Site Scanner (Pro) – Unlock Version Management to automatically apply a patch to vulnerable software detected by the Site Scan when one is available.

      \n
    • \n
    • \n

      User Logging (Pro) – Keep a record of user activity in your WordPress security logs, including login/logout, user registration, adding/removing plugins, switching themes, changes to posts and pages, and more.

      \n
    • \n
    • \n

      Version Management (Pro) – The Version Management feature in Solid Security Pro allows you to auto-update WordPress, plugins, and themes. Beyond that, Version Management also has options to harden your website when you are running outdated software and scan for old websites.

      \n
    • \n
    \n

    🧠 Smarter, More Actionable Vulnerability Prioritization

    \n

    Not all vulnerabilities pose the same level of risk, and the traditional Common Vulnerability Scoring System (CVSS) score doesn’t always reflect the realities of running a WordPress site.

    \n

    Solid Security now uses the Patchstack Priority score, which goes beyond CVSS to provide a real-world risk assessment tailored to WordPress. It factors in how likely a vulnerability is to be exploited and its actual impact on your site.

    \n

    With Patchstack Priority, you get a clearer picture of what really matters, helping you focus on the vulnerabilities that pose the greatest risk, and worry less about noise from low-impact issues.

    \n

    🛠️ Website Security Utilities

    \n
      \n
    • \n

      Enforce SSL – Force all connections to the website to be made over SSL/TLS.

      \n
    • \n
    • \n

      Database Backups – Create backups of your WordPress database. (Not a complete backup.)

      \n
    • \n
    • \n

      Geolocation (Pro) – Improve Trusted Devices by connecting to an external location or mapping API.

      \n
    • \n
    \n

    🚀 Advanced Security Tools

    \n
      \n
    • Identify Server IPs – Prevent issues caused by inadvertently locking out your server IPs.
    • \n
    • Change User ID 1 – Change the user ID for the first WordPress user, potentially preventing attacks that assume the user with ID1 exists and is an administrator.
    • \n
    • Change Database Prefix – Change the database prefix that WordPress uses, potentially preventing attacks that assume the database prefix is “wp_”.
    • \n
    • Check File Permission – See the file and directory permissions of key areas of your site.
    • \n
    • Server Config Rules – View or flush the server security rules generated by Solid Security.
    • \n
    • wp-config.php Rules – View or flush the wp-config.php security rules generated by Solid Security.
    • \n
    • Change WordPress Salts – Secure your site after a successful attack by changing the WordPress salts used to secure cookies and security tokens.
    • \n
    • Hide Login URL – change the login URL of your site, making it harder for bots to find your login page and attack it.
    • \n
    \n

    🛟 Need Help?

    \n

    Free support may be available with the community’s help in the WordPress.org support forums. Our Solid Security support team provides top-notch technical support to all our Solid Security Basic users there.

    \n

    Our Help Center will help you become an iThemes Security expert.

    \n

    Get additional peace of mind with professional support from our expert team and pro features to take your site’s security to the next level with Solid Security Pro.

    \n

    Recover From a Hacked Site

    \n

    Solid Security makes regular backups of your WordPress database, allowing you to get back online quickly in the event of a hack or security breach. Use Solid Security to create and email database backups on a customizable schedule.

    \n

    For complete site backups and the ability to restore or move WordPress to a new host or domain, check out Solid Backups.

    \n

    Solid Central Integration

    \n

    Manage more than one WordPress site? Release lockouts and keep your themes, plugins, and WordPress core up to date from one dashboard with Solid Central.

    \n

    *Zippia. “30 Crucial Cybersecurity Statistics [2023]: Data, Trends And More” Zippia.com. Jun. 15, 2023, https://www.zippia.com/advice/cybersecurity-statistics/

    \n

    **https://blog.checkpoint.com/2023/01/05/38-increase-in-2022-global-cyberattacks/

    \n

    License

    \n

    Released under the terms of the GNU General Public License.

    \n", "donate_link": "", "num_ratings": 3980, "screenshots": {"1": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-1.png?rev=2980272", "caption": "Customized onboarding configures your security settings to your needs"}, "2": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-2.png?rev=2980272", "caption": "Real-Time Security Dashboard"}, "3": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-3.png?rev=2980272", "caption": "WordPress Login Security with Two Factor Authentication"}, "4": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-4.png?rev=2980272", "caption": "Firewall rules, Block Bad Bots, and Ban User Agents with Lockouts"}, "5": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-5.png?rev=2980272", "caption": "Monitor Your Site''s Security Health"}, "6": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-6.png?rev=2980272", "caption": "Database backups help you get up and running again when the worst happens"}, "7": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-7.png?rev=2980272", "caption": "Advanced Security Settings for power users"}, "8": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-8.png?rev=3362729", "caption": "Automated vulnerability patching with Patchstack (Pro)"}}, "support_url": "https://wordpress.org/support/plugin/better-wp-security/", "contributors": {"ithemes": {"avatar": "https://secure.gravatar.com/avatar/8ea053fd51b78be032966cf16ccc9ea659b212fc5e0849a52cc911e225ec2f69?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ithemes/", "display_name": "iThemes"}, "lisacee": {"avatar": "https://secure.gravatar.com/avatar/f368debb99731c38cb2aed8e125e660b20da026628e2e16f4f7f6e7de146dc5c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lisacee/", "display_name": "Lisa Canini"}, "solidwp": {"avatar": "https://secure.gravatar.com/avatar/27d4f868474fb5a320b772927679f5de8a00357340c98e1cd413dfe640e36e31?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/solidwp/", "display_name": "SolidWP"}, "timothyblynjacobs": {"avatar": "https://secure.gravatar.com/avatar/c348d8c0ee55f04ab227c1084486ec12037713b2919f91f16c774625a33391b9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/timothyblynjacobs/", "display_name": "Timothy Jacobs"}}, "last_updated": "2025-09-16 6:43pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/better-wp-security.9.4.1.zip", "author_profile": "https://profiles.wordpress.org/stellarwp/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-ef30-7176-9dd0-ace810d14de5", "name": "Solid Security – Password, Two Factor Authentication, and Brute Force Protection", "slug": "better-wp-security", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1758048180, "version": "9.4.1"}, "support_threads": 16, "requires_plugins": [], "short_description": "Harden your site security with Login Security, Two-Factor Authentication (2FA), Vulnerability Scanner, Firewall, and more. Formerly iThemes Security.", "author_block_count": 1, "author_block_rating": 92, "commercial_support_url": "https://solidwp.com/security/why-go-pro/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=support-link", "support_threads_resolved": 5}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ab4-7232-8a9c-e0c8cf220355', 'did:web:api.aspiredev.org:packages:wp-plugin:cookie-law-info', 'cookie-law-info', 'CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice)', '

    CookieYes is the leading WordPress plugin for cookie consent and privacy compliance. It supports GDPR (DSGVO), CCPA/CPRA, ePrivacy, UK GDPR & PECR, LGPD (Brazil), PIPEDA (Canada), POPIA (South Africa) and other global laws.

    -

    The plugin offers a customizable cookie banner that blocks non-essential scripts until consent is given and generates a tailored Cookie Policy page.

    -

    Features

    -

    Consent Management

    -
      -
    • -

      Cookie Consent Banner: Show banner with Accept/Reject options for GDPR and CCPA cookie consent.

      -
    • -
    • -

      Automatic Cookie Blocking: Block non-essential cookies until users give explicit consent for cookie compliance in WordPress.

      -
    • -
    • -

      Preference Center: Let users manage cookie preferences by category (analytics, marketing, etc.).

      -
    • -
    • -

      Revisit Consent Button: Floating button for updating consent choices anytime.

      -
    • -
    • -

      CCPA/CPRA Opt-Out: Add “Do Not Sell or Share My Personal Information” link for California residents to meet CCPA cookie requirements.

      -
    • -
    • -

      Consent Logging: Record and export user consent in CSV for audits.

      -
    • -
    • -

      Google Consent Mode v2: Integrate with Google Consent Mode for ad tracking and compliance.

      -
    • -
    • -

      Microsoft UET Consent Mode: Activate UET Consent Mode to ensure tag behavior complies with Microsoft’s EU consent requirements in a Microsoft consent plugin setup.

      -
    • -
    • -

      GDPR Compliant Data Storage: Store data in EU-based, GDPR-compliant data centers per Data Processing Agreement.

      -
    • -
    -

    Banner Customization

    -
      -
    • -

      Layout Options: Choose top/bottom bar, box, or popup layouts for your WordPress cookie banner.

      -
    • -
    • -

      Reload page on consent action: Automatically reload the page when users click “Accept All” or “Reject All”.

      -
    • -
    -

    Cookie Scanner & Management

    -
      -
    • -

      Automatic Scanning: One-click scan to detect and categorize cookies on your site.

      -
    • -
    • -

      Manual Cookie Management: Add, edit, or delete cookies and define categories/descriptions with the WordPress cookie manager.

      -
    • -
    -

    Multilingual & Accessibility

    -
      -
    • -

      Auto-Translation: Translate the banner into 40+ languages based on browser settings.

      -
    • -
    • -

      Multilingual Compatibility: Works with WPML and Polylang for multilingual sites.

      -
    • -
    • -

      Accessibility: The banner is WCAG/ADA compliant for accessibility.

      -
    • -
    -

    Legal Policy Tools

    -
      -
    • Policy Generators: Create WordPress Cookie Policy and Privacy Policy pages tailored to your data practices.
    • -
    -

    Web App Integration

    -
      -
    • Centralized Management: Connect to the CookieYes Web App for advanced features, remote management, and centralized control of scans, policies, and settings.
    • -
    -

    Here’s how you can integrate CookieYes WordPress cookie plugin with our web app for enhanced features:

    -

    -

    Premium Features

    -

    Access the following features by subscribing to a premium plan (Basic, Pro, or Ultimate) on the CookieYes web app account. See all features and compare plans

    -

    Advanced Consent Management

    -

    Geo-Targeting: Show region-specific banners (e.g., GDPR banner for EU, CCPA banner for California).
    -✅ IAB TCF v2.2 framework: Full support for the Transparency and Consent Framework for publishers and advertisers.
    -✅ Google’s Additional Consent Mode: Manage consent for Google’s Ad Tech Providers outside the IAB GVL.

    -

    Enhanced Banner Customization

    -

    Customizable Styles: Adjust banner colors, fonts, and position to match your website design.
    -✅ Page-Specific Controls: Disable the banner on specific pages (e.g., login, checkout).
    -✅ Custom CSS: Custom CSS for advanced design customization.
    -✅ Custom Logo: Add your brand’s logo to the cookie banner.
    -✅ Remove Branding: Remove the “Powered by CookieYes” branding for a white-label experience.

    -

    Extended Cookie Management

    -

    Increased pageviews limit: Extend pageviews from 5,000 up to unlimited.
    -✅ Increased Scan Limits: Scan up to 8,000 pages for a full cookie audit.
    -✅ Scheduled Scans: Automate recurring scans to keep cookie data updated.
    -✅ Scan Behind Login: Detect cookies on protected, login-only pages.

    -

    Subdomain & Multi-User Support

    -

    Subdomain Consent Sharing: Apply consent settings across multiple subdomains.
    -✅ Multi-User Management: Control roles and permissions within the CookieYes Web App.

    -

    Enhanced Security & Compliance

    -

    Two-Factor Authentication (2FA): Add an extra security layer to your CookieYes account.
    -✅ Global Privacy Control (GPC): Respect GPC signals automatically for global compliance.

    -

    Connection to app.cookieyes.com & feedback.cookieyes.com

    -

    This plugin connects your site to app.cookieyes.com to enable features such as cookie scanning, syncing settings with your CookieYes account, and showing scan results and consent data in the dashboard. It also connects to feedback.cookieyes.com for collecting feedback when the plugin is deactivated. See our Privacy Policy and Terms & Conditions for details on data collection and usage.

    -

    The CookieYes GDPR Cookie Consent Plugin Uses The Following Cookie Only

    -
      -
    • “cookieyes-consent” – CookieYes sets this cookie to remember users’ consent preferences so that their preferences are respected on their subsequent visits to this site. It does not collect or store any personal information of the site visitors.
    • -
    -

    Setup Guide

    -

    Our WordPress cookie plugin user guide will help you set up the plugin on your website.

    -

    Useful links

    -

    CookieYes support
    -Plugin FAQ

    -

    Additional Resources

    -

    CookieYes Knowledge base
    -GDPR cookie consent
    -Cookie Law
    -Cookie banner guide
    -Translate CookieYes

    -

    Legal & Compliance

    -

    Privacy Policy
    -Data Processing Agreement

    -

    NOTE: INSTALLING THIS PLUGIN ALONE DOES NOT MAKE YOUR SITE GDPR AND CCPA COMPLIANT. SINCE EACH SITE USES DIFFERENT COOKIES, YOU NEED TO ENSURE YOU HAVE THE NECESSARY CONFIGURATIONS IN PLACE WITH A SUPPORTING COOKIE NOTICE.

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice)", "slug": "cookie-law-info", "tags": {"gdpr": "GDPR", "cookie": "cookie", "cookie-banner": "cookie banner", "cookie-notice": "cookie notice", "cookie-consent": "cookie consent"}, "added": "2012-05-21", "icons": {"1x": "https://ps.w.org/cookie-law-info/assets/icon.svg?rev=3007243", "svg": "https://ps.w.org/cookie-law-info/assets/icon.svg?rev=3007243"}, "author": "CookieYes", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/cookie-law-info/assets/banner-772x250.png?rev=3341409", "high": "https://ps.w.org/cookie-law-info/assets/banner-1544x500.png?rev=3341409"}, "ratings": {"1": 76, "2": 29, "3": 27, "4": 102, "5": 2896}, "version": "3.3.6", "homepage": "https://www.cookieyes.com/", "requires": "5.0.0", "sections": {"faq": "\n
    \nWhat is GDPR?\n\n

    \n

    GDPR (General Data Protection Regulation) is the EU privacy law that protects personal data and regulates how organizations handle it. It is also referred to as DSGVO (DatenSchutz-Grundverordnung) in German.

    \n

    \n
    \nWhat is CCPA?\n\n

    \n

    CCPA (California Consumer Privacy Act). It gives residents more control over personal data, requiring transparency, opt-out options, and secure handling.

    \n

    \n
    \nWhat is GDPR cookie consent?\n\n

    \n

    Under GDPR, sites must get explicit consent before storing or accessing non-essential cookies (analytics, ads). This is called GDPR cookie consent.

    \n

    \n
    \nWhat is CCPA compliance?\n\n

    \n

    CCPA compliance means meeting the law’s privacy requirements, including informing users about data collection, offering opt-out mechanisms like “Do Not Sell or Share My Personal Information,” and ensuring secure processing of user data for CCPA cookie compliance.

    \n

    \n
    \nWhat is a GDPR plugin and why do I need one for WordPress?\n\n

    \n

    A GDPR plugin manages cookie consent, blocks cookies until consent, and generates cookie/privacy policies. CookieYes’s GDPR WordPress plugin automates these tasks for WordPress.

    \n

    \n
    \nWhat does this plugin do?\n\n

    \n

    CookieYes adds a cookie banner to your site, informs visitors about your cookie policy, and helps you log and manage consent. It also lets you list cookies on your policy page using a shortcode (or HTML if connected to the Web App).

    \n

    \n
    \nCan I use CookieYes for both GDPR and CCPA compliance?\n\n

    \n

    Yes. CookieYes supports both GDPR and CCPA/CPRA compliance, including GDPR cookie consent and CCPA cookie consent features. You can add banners and CCPA opt-out links.

    \n

    \n
    \nWhat is a cookie notice?\n\n

    \n

    A cookie notice (or cookie banner) tells visitors a site uses cookies, why they’re used, and how they impact privacy. It gives options to accept or manage preferences, ensuring GDPR and CCPA compliance.

    \n

    \n
    \nCan I customize the cookie notice using CookieYes?\n\n

    \n

    Yes. Adjust banner text, layout, style, and position. Premium plans allow logo upload and branding removal.

    \n

    \n
    \nDoes the plugin block cookies before consent?\n\n

    \n

    Yes. Non-essential cookies are blocked until explicit consent; essential cookies run by default.

    \n

    \n
    \nDo visitors have to accept or refuse cookies to use a website?\n\n

    \n

    No. Only essential cookies load by default. Users may accept or reject other cookie categories.

    \n

    \n
    \nDoes this plugin stop all cookies from being stored?\n\n

    \n

    It blocks cookies based on category consent. However, if another plugin places cookies outside of CookieYes, we cannot control or guarantee those behaviors. Blocking everything forcefully could break your site, so this plugin aims to balance compliance with usability.

    \n

    \n
    \nHow does CookieYes help with cookie compliance?\n\n

    \n

    It scans and categorizes cookies, provides banners and preference centers, and logs/export consent data for audits.

    \n

    \n
    \nIs CookieYes a reliable cookie consent tool for GDPR compliance?\n\n

    \n

    Yes. Used by 1.5M+ sites, CookieYes supports GDPR cookie compliance, automatic blocking, policy generation, and consent logging.

    \n

    \n
    \nCan I export or log user consent as per GDPR requirements?\n\n

    \n

    Yes. You can export logs of user consent and cookie preferences in CSV format. This helps with audits and fulfilling compliance obligations.

    \n

    \n
    \nCan the plugin help me generate a GDPR-compliant cookie policy?\n\n

    \n

    Yes. Built-in generator creates Cookie Policy and Privacy Policy pages from scan results.

    \n

    \n
    \nDoes CookieYes support multilingual websites?\n\n

    \n

    Yes. CookieYes automatically translates the banner into over 30 languages based on the visitor’s browser. It also supports WPML and Polylang for multilingual WordPress setups.

    \n

    \n
    \nDo I still need a privacy policy if I use CookieYes?\n\n

    \n

    Yes. A privacy policy is legally required. CookieYes helps you generate one, but you must ensure that it accurately reflects your site’s data practices.

    \n

    \n
    \nIs CookieYes suitable for large websites or agencies?\n\n

    \n

    Yes. CookieYes includes features like subdomain consent sharing, multi-user management, and scheduled cookie scans. It also supports login-protected page scanning, which makes it a good fit for large and enterprise-level sites.

    \n

    \n
    \nDoes CookieYes integrate with WP Consent API?\n\n

    \n

    Yes, CookieYes integrates with WP Consent API, allowing it to share user consent states with compatible plugins and improve compliance consistency.

    \n

    \n
    \nThe cookie notice header does not work on my browser. What should I do?\n\n

    \n

    Please report the issue on the support forum. Include:
    \n* Your website URL
    \n* WordPress version (bottom right corner of your dashboard)
    \n* The browser where the issue occurs (e.g., Chrome, Firefox)
    \n* A brief description of the problem
    \nThe more details you share, the faster we can help.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy naomispirit on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    So easy to use! I enable it on almost all of my clients sites, and they keep making it more and more streamlied to use. Its my goto.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lamango on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The review requests that freeze on the backend are my only complaint. Otherwise all is well.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy vixent on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been using the CookieYes plugin for several of my websites. It''s very simple and efficient.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Sublime work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gillmour on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    seamless and elegant

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tharushi2024 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this plugin works well.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect Plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Self Care Hustler (selfcarehustler) on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just what I was looking for. Easy set up and customize design options. Plus it''s free :).

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    STOP ASKING FOR REVIEWS IN THE WORDPRESS DASHBOARD

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gnode (gallivantingnomad) on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I would have given 5 stars but the asking for reviews message are getting really annoying and old and it seems like in the last 7 years every developer is doing it. Meaning endless asking for reviews messages in everyones dashboard. STOP IT. Wordpress admins want messages for things that are important not asking for reviews. If people want to review they will, it is off putting being endlessly asked for them.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useful plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bjacobs25 on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy enough to customize and useful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This plugin went from useful to useless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy zhazhy on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    CookieYes plugin unfortunately went from being a very useful plugin to useless. A basic functionality such as translation is a must, so if you have a multilingual website and you are not willing to pay $10 per month just to have an option of translation then this is not the plugin for you. If you have an older version do not update on multilingual sites, because they have made it uncompatible with Polylang, WPML, etc. with latest update and you can''t even translate with pot files (they have included only pot file for their setting - why, is beyond my understanding - I can''t translate the frontend and I will be translating CookieYes backend settings [a slap on the head emoji] :) I understand, you have to make money somehow but this is just to basic functionality that you moved from free to premium. Will be uninstalling this extension in the future from all of my websites because I''m not paying for translation. Based on the attitude to slowly move (basic) options from free version to paid version is also a big NO NO for me. Maybe you would get more paying customers in the future if you would offer something of value. Sorry but your extension does not offer $120 of value per year.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cma783 on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this is an excellent plugin. thank you

    \n
    \n
    \n", "changelog": "

    3.3.6

    \n

    [Fix] – Revisit icon text’s french translation.
    \n[Enhancement] – GCM – Update consent based on cookie’s value.
    \n[Enhancement] – Banner dark theme accessibility.
    \n[Fix] – Admin screen translation not working.

    \n

    3.3.5

    \n

    [Fix] – Fixed minor security vulnerabilities.
    \n[Enhancement] – UI/UX improvements.
    \n[Fix] – Mismatch in consent chart data.

    \n

    Earlier versions

    \n

    For the changelog of earlier versions, please refer to the changelog.txt.

    \n", "description": "

    CookieYes is the leading WordPress plugin for cookie consent and privacy compliance. It supports GDPR (DSGVO), CCPA/CPRA, ePrivacy, UK GDPR & PECR, LGPD (Brazil), PIPEDA (Canada), POPIA (South Africa) and other global laws.

    \n

    The plugin offers a customizable cookie banner that blocks non-essential scripts until consent is given and generates a tailored Cookie Policy page.

    \n

    Features

    \n

    Consent Management

    \n
      \n
    • \n

      Cookie Consent Banner: Show banner with Accept/Reject options for GDPR and CCPA cookie consent.

      \n
    • \n
    • \n

      Automatic Cookie Blocking: Block non-essential cookies until users give explicit consent for cookie compliance in WordPress.

      \n
    • \n
    • \n

      Preference Center: Let users manage cookie preferences by category (analytics, marketing, etc.).

      \n
    • \n
    • \n

      Revisit Consent Button: Floating button for updating consent choices anytime.

      \n
    • \n
    • \n

      CCPA/CPRA Opt-Out: Add “Do Not Sell or Share My Personal Information” link for California residents to meet CCPA cookie requirements.

      \n
    • \n
    • \n

      Consent Logging: Record and export user consent in CSV for audits.

      \n
    • \n
    • \n

      Google Consent Mode v2: Integrate with Google Consent Mode for ad tracking and compliance.

      \n
    • \n
    • \n

      Microsoft UET Consent Mode: Activate UET Consent Mode to ensure tag behavior complies with Microsoft’s EU consent requirements in a Microsoft consent plugin setup.

      \n
    • \n
    • \n

      GDPR Compliant Data Storage: Store data in EU-based, GDPR-compliant data centers per Data Processing Agreement.

      \n
    • \n
    \n

    Banner Customization

    \n
      \n
    • \n

      Layout Options: Choose top/bottom bar, box, or popup layouts for your WordPress cookie banner.

      \n
    • \n
    • \n

      Reload page on consent action: Automatically reload the page when users click “Accept All” or “Reject All”.

      \n
    • \n
    \n

    Cookie Scanner & Management

    \n
      \n
    • \n

      Automatic Scanning: One-click scan to detect and categorize cookies on your site.

      \n
    • \n
    • \n

      Manual Cookie Management: Add, edit, or delete cookies and define categories/descriptions with the WordPress cookie manager.

      \n
    • \n
    \n

    Multilingual & Accessibility

    \n
      \n
    • \n

      Auto-Translation: Translate the banner into 40+ languages based on browser settings.

      \n
    • \n
    • \n

      Multilingual Compatibility: Works with WPML and Polylang for multilingual sites.

      \n
    • \n
    • \n

      Accessibility: The banner is WCAG/ADA compliant for accessibility.

      \n
    • \n
    \n

    Legal Policy Tools

    \n
      \n
    • Policy Generators: Create WordPress Cookie Policy and Privacy Policy pages tailored to your data practices.
    • \n
    \n

    Web App Integration

    \n
      \n
    • Centralized Management: Connect to the CookieYes Web App for advanced features, remote management, and centralized control of scans, policies, and settings.
    • \n
    \n

    Here’s how you can integrate CookieYes WordPress cookie plugin with our web app for enhanced features:

    \n

    \n

    Premium Features

    \n

    Access the following features by subscribing to a premium plan (Basic, Pro, or Ultimate) on the CookieYes web app account. See all features and compare plans

    \n

    Advanced Consent Management

    \n

    Geo-Targeting: Show region-specific banners (e.g., GDPR banner for EU, CCPA banner for California).
    \n✅ IAB TCF v2.2 framework: Full support for the Transparency and Consent Framework for publishers and advertisers.
    \n✅ Google’s Additional Consent Mode: Manage consent for Google’s Ad Tech Providers outside the IAB GVL.

    \n

    Enhanced Banner Customization

    \n

    Customizable Styles: Adjust banner colors, fonts, and position to match your website design.
    \n✅ Page-Specific Controls: Disable the banner on specific pages (e.g., login, checkout).
    \n✅ Custom CSS: Custom CSS for advanced design customization.
    \n✅ Custom Logo: Add your brand’s logo to the cookie banner.
    \n✅ Remove Branding: Remove the “Powered by CookieYes” branding for a white-label experience.

    \n

    Extended Cookie Management

    \n

    Increased pageviews limit: Extend pageviews from 5,000 up to unlimited.
    \n✅ Increased Scan Limits: Scan up to 8,000 pages for a full cookie audit.
    \n✅ Scheduled Scans: Automate recurring scans to keep cookie data updated.
    \n✅ Scan Behind Login: Detect cookies on protected, login-only pages.

    \n

    Subdomain & Multi-User Support

    \n

    Subdomain Consent Sharing: Apply consent settings across multiple subdomains.
    \n✅ Multi-User Management: Control roles and permissions within the CookieYes Web App.

    \n

    Enhanced Security & Compliance

    \n

    Two-Factor Authentication (2FA): Add an extra security layer to your CookieYes account.
    \n✅ Global Privacy Control (GPC): Respect GPC signals automatically for global compliance.

    \n

    Connection to app.cookieyes.com & feedback.cookieyes.com

    \n

    This plugin connects your site to app.cookieyes.com to enable features such as cookie scanning, syncing settings with your CookieYes account, and showing scan results and consent data in the dashboard. It also connects to feedback.cookieyes.com for collecting feedback when the plugin is deactivated. See our Privacy Policy and Terms & Conditions for details on data collection and usage.

    \n

    The CookieYes GDPR Cookie Consent Plugin Uses The Following Cookie Only

    \n
      \n
    • “cookieyes-consent” – CookieYes sets this cookie to remember users’ consent preferences so that their preferences are respected on their subsequent visits to this site. It does not collect or store any personal information of the site visitors.
    • \n
    \n

    Setup Guide

    \n

    Our WordPress cookie plugin user guide will help you set up the plugin on your website.

    \n

    Useful links

    \n

    CookieYes support
    \nPlugin FAQ

    \n

    Additional Resources

    \n

    CookieYes Knowledge base
    \nGDPR cookie consent
    \nCookie Law
    \nCookie banner guide
    \nTranslate CookieYes

    \n

    Legal & Compliance

    \n

    Privacy Policy
    \nData Processing Agreement

    \n

    NOTE: INSTALLING THIS PLUGIN ALONE DOES NOT MAKE YOUR SITE GDPR AND CCPA COMPLIANT. SINCE EACH SITE USES DIFFERENT COOKIES, YOU NEED TO ENSURE YOU HAVE THE NECESSARY CONFIGURATIONS IN PLACE WITH A SUPPORTING COOKIE NOTICE.

    \n", "screenshots": "
    1. \"Cookie

      Cookie consent banner on the user-end

    2. \"Cookie

      Cookie preference center on the user-end

    3. \"CookieYes

      CookieYes GDPR cookie consent WordPress plugin - Admin panel

    4. \"Cookie

      Cookie banner settings for cookie compliance

    5. \"Manage

      Manage cookies for cookie compliance

    6. \"Add

      Add new cookie

    7. \"Languages

      Languages for cookie banner auto-translation

    8. \"Edit

      Edit cookie banner content in multiple languages

    9. \"Privacy

      Privacy policy generator and cookie policy generator

    ", "installation": "

    Automatic installation

    \n
      \n
    • \n

      Go to Plugins from your WordPress dashboard and select Add New Plugin.

      \n
    • \n
    • \n

      Search for “CookieYes” and Install Now.

      \n
    • \n
    • \n

      Click Activate to enable the plugin.

      \n
    • \n
    \n

    Manual installation

    \n
      \n
    • \n

      Download the CookieYes plugin zip file from the WordPress.org page.

      \n
    • \n
    • \n

      Go to Plugins from your WordPress dashboard and select Add New Plugin.

      \n
    • \n
    • \n

      Click Upload Plugin and choose the downloaded zip file.

      \n
    • \n
    • \n

      Click Install Now and after installation, click Activate Plugin.

      \n
    • \n
    \n

    Alternatively, you can upload the zip using the FTP application. Extract the zip file and upload the folder to your /wp-content/plugins/ directory. Once uploaded, activate the plugin from your WordPress dashboard.

    \n

    To connect the plugin to the CookieYes web app:

    \n

    (Please note that the Web App integration is optional. You can still use the plugin without connecting it to the app.)

    \n
      \n
    • \n

      After activating the plugin, click CookieYes on your WordPress dashboard menu.

      \n
    • \n
    • \n

      Click Connect to a new account. You will be prompted to sign up for a new account after you choose the required plan. Or, if you already have an existing account, click Connect to an existing account to log in.

      \n
    • \n
    \n

    Plugin updates

    \n

    Every time we update the plugin, you will see a notification on the installed plugins page. You can directly update the plugin from the WordPress dashboard. We recommend keeping the plugin updated to avail new functionalities and security features.

    \n"}, "versions": {"1.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.zip", "1.0.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.0.1.zip", "1.0.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.0.3.zip", "1.2.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.2.2.zip", "1.3.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.3.2.zip", "1.4.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.4.3.zip", "1.5.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.9.zip", "1.9.0": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.5.zip", "2.0.0": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/cookie-law-info.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/cookie-law-info.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/cookie-law-info.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/cookie-law-info.2.1.3.zip", "3.0.0": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.8.zip", "3.2.0": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.6.zip", "trunk": "https://downloads.wordpress.org/plugin/cookie-law-info.zip", "1.6.10": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.10.zip", "3.2.10": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.10.zip"}, "downloaded": 41147748, "description": "

    CookieYes is the leading WordPress plugin for cookie consent and privacy compliance. It supports GDPR (DSGVO), CCPA/CPRA, ePrivacy, UK GDPR & PECR, LGPD (Brazil), PIPEDA (Canada), POPIA (South Africa) and other global laws.

    \n

    The plugin offers a customizable cookie banner that blocks non-essential scripts until consent is given and generates a tailored Cookie Policy page.

    \n

    Features

    \n

    Consent Management

    \n
      \n
    • \n

      Cookie Consent Banner: Show banner with Accept/Reject options for GDPR and CCPA cookie consent.

      \n
    • \n
    • \n

      Automatic Cookie Blocking: Block non-essential cookies until users give explicit consent for cookie compliance in WordPress.

      \n
    • \n
    • \n

      Preference Center: Let users manage cookie preferences by category (analytics, marketing, etc.).

      \n
    • \n
    • \n

      Revisit Consent Button: Floating button for updating consent choices anytime.

      \n
    • \n
    • \n

      CCPA/CPRA Opt-Out: Add “Do Not Sell or Share My Personal Information” link for California residents to meet CCPA cookie requirements.

      \n
    • \n
    • \n

      Consent Logging: Record and export user consent in CSV for audits.

      \n
    • \n
    • \n

      Google Consent Mode v2: Integrate with Google Consent Mode for ad tracking and compliance.

      \n
    • \n
    • \n

      Microsoft UET Consent Mode: Activate UET Consent Mode to ensure tag behavior complies with Microsoft’s EU consent requirements in a Microsoft consent plugin setup.

      \n
    • \n
    • \n

      GDPR Compliant Data Storage: Store data in EU-based, GDPR-compliant data centers per Data Processing Agreement.

      \n
    • \n
    \n

    Banner Customization

    \n
      \n
    • \n

      Layout Options: Choose top/bottom bar, box, or popup layouts for your WordPress cookie banner.

      \n
    • \n
    • \n

      Reload page on consent action: Automatically reload the page when users click “Accept All” or “Reject All”.

      \n
    • \n
    \n

    Cookie Scanner & Management

    \n
      \n
    • \n

      Automatic Scanning: One-click scan to detect and categorize cookies on your site.

      \n
    • \n
    • \n

      Manual Cookie Management: Add, edit, or delete cookies and define categories/descriptions with the WordPress cookie manager.

      \n
    • \n
    \n

    Multilingual & Accessibility

    \n
      \n
    • \n

      Auto-Translation: Translate the banner into 40+ languages based on browser settings.

      \n
    • \n
    • \n

      Multilingual Compatibility: Works with WPML and Polylang for multilingual sites.

      \n
    • \n
    • \n

      Accessibility: The banner is WCAG/ADA compliant for accessibility.

      \n
    • \n
    \n

    Legal Policy Tools

    \n
      \n
    • Policy Generators: Create WordPress Cookie Policy and Privacy Policy pages tailored to your data practices.
    • \n
    \n

    Web App Integration

    \n
      \n
    • Centralized Management: Connect to the CookieYes Web App for advanced features, remote management, and centralized control of scans, policies, and settings.
    • \n
    \n

    Here’s how you can integrate CookieYes WordPress cookie plugin with our web app for enhanced features:

    \n

    \n

    Premium Features

    \n

    Access the following features by subscribing to a premium plan (Basic, Pro, or Ultimate) on the CookieYes web app account. See all features and compare plans

    \n

    Advanced Consent Management

    \n

    Geo-Targeting: Show region-specific banners (e.g., GDPR banner for EU, CCPA banner for California).
    \n✅ IAB TCF v2.2 framework: Full support for the Transparency and Consent Framework for publishers and advertisers.
    \n✅ Google’s Additional Consent Mode: Manage consent for Google’s Ad Tech Providers outside the IAB GVL.

    \n

    Enhanced Banner Customization

    \n

    Customizable Styles: Adjust banner colors, fonts, and position to match your website design.
    \n✅ Page-Specific Controls: Disable the banner on specific pages (e.g., login, checkout).
    \n✅ Custom CSS: Custom CSS for advanced design customization.
    \n✅ Custom Logo: Add your brand’s logo to the cookie banner.
    \n✅ Remove Branding: Remove the “Powered by CookieYes” branding for a white-label experience.

    \n

    Extended Cookie Management

    \n

    Increased pageviews limit: Extend pageviews from 5,000 up to unlimited.
    \n✅ Increased Scan Limits: Scan up to 8,000 pages for a full cookie audit.
    \n✅ Scheduled Scans: Automate recurring scans to keep cookie data updated.
    \n✅ Scan Behind Login: Detect cookies on protected, login-only pages.

    \n

    Subdomain & Multi-User Support

    \n

    Subdomain Consent Sharing: Apply consent settings across multiple subdomains.
    \n✅ Multi-User Management: Control roles and permissions within the CookieYes Web App.

    \n

    Enhanced Security & Compliance

    \n

    Two-Factor Authentication (2FA): Add an extra security layer to your CookieYes account.
    \n✅ Global Privacy Control (GPC): Respect GPC signals automatically for global compliance.

    \n

    Connection to app.cookieyes.com & feedback.cookieyes.com

    \n

    This plugin connects your site to app.cookieyes.com to enable features such as cookie scanning, syncing settings with your CookieYes account, and showing scan results and consent data in the dashboard. It also connects to feedback.cookieyes.com for collecting feedback when the plugin is deactivated. See our Privacy Policy and Terms & Conditions for details on data collection and usage.

    \n

    The CookieYes GDPR Cookie Consent Plugin Uses The Following Cookie Only

    \n
      \n
    • “cookieyes-consent” – CookieYes sets this cookie to remember users’ consent preferences so that their preferences are respected on their subsequent visits to this site. It does not collect or store any personal information of the site visitors.
    • \n
    \n

    Setup Guide

    \n

    Our WordPress cookie plugin user guide will help you set up the plugin on your website.

    \n

    Useful links

    \n

    CookieYes support
    \nPlugin FAQ

    \n

    Additional Resources

    \n

    CookieYes Knowledge base
    \nGDPR cookie consent
    \nCookie Law
    \nCookie banner guide
    \nTranslate CookieYes

    \n

    Legal & Compliance

    \n

    Privacy Policy
    \nData Processing Agreement

    \n

    NOTE: INSTALLING THIS PLUGIN ALONE DOES NOT MAKE YOUR SITE GDPR AND CCPA COMPLIANT. SINCE EACH SITE USES DIFFERENT COOKIES, YOU NEED TO ENSURE YOU HAVE THE NECESSARY CONFIGURATIONS IN PLACE WITH A SUPPORTING COOKIE NOTICE.

    \n", "donate_link": "https://www.cookieyes.com/", "num_ratings": 3130, "screenshots": {"1": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-1.png?rev=2790027", "caption": "Cookie consent banner on the user-end"}, "2": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-2.png?rev=2790027", "caption": "Cookie preference center on the user-end"}, "3": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-3.png?rev=3359724", "caption": "CookieYes GDPR cookie consent WordPress plugin - Admin panel"}, "4": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-4.png?rev=3275761", "caption": "Cookie banner settings for cookie compliance"}, "5": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-5.png?rev=3275761", "caption": "Manage cookies for cookie compliance"}, "6": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-6.png?rev=2790027", "caption": "Add new cookie"}, "7": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-7.png?rev=3275761", "caption": "Languages for cookie banner auto-translation"}, "8": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-8.png?rev=2790027", "caption": "Edit cookie banner content in multiple languages"}, "9": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-9.png?rev=3275761", "caption": "Privacy policy generator and cookie policy generator"}}, "support_url": "https://wordpress.org/support/plugin/cookie-law-info/", "contributors": {"webtoffee": {"avatar": "https://secure.gravatar.com/avatar/9731506308a6982c4681139e19a122d0adf580418ed1f715e623f9bf09058cef?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/webtoffee/", "display_name": "WebToffee"}, "cookieyesdev": {"avatar": "https://secure.gravatar.com/avatar/cf4db5280877afd4a40b1cc3879705de09125f351958ae3ce8fc5cfa9890345b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cookieyesdev/", "display_name": "CookieYes"}}, "last_updated": "2025-10-23 11:14am GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.6.zip", "author_profile": "https://profiles.wordpress.org/cookieyesdev/", "business_model": "commercial", "repository_url": "", "upgrade_notice": {"3.3.6": "

    [Fix] - Revisit icon text's french translation.\n[Enhancement] - GCM - Update consent based on cookie's value.\n[Enhancement] - Banner dark theme accessibility.\n[Fix] - Admin screen translation not working.

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f15e-73f1-8b57-6162bfc5399e", "name": "CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice)", "slug": "cookie-law-info", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761218040, "version": "3.3.6"}, "support_threads": 10, "requires_plugins": [], "short_description": "Easily set up cookie banner or notice in WordPress, and policy pages for compliance with global cookie laws (GDPR, DSGVO, RGPD, CCPA/CPRA, etc).", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "https://www.cookieyes.com/support/", "support_threads_resolved": 8}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1a2d-7309-aa90-c34510ae717e', 'did:web:api.aspiredev.org:packages:wp-plugin:breadcrumb-navxt', 'breadcrumb-navxt', 'Breadcrumb NavXT', '

    Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress powered blog or website. These breadcrumb trails are highly customizable to suit the needs of just about any website running WordPress. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users.

    -

    PHP Requirements

    -

    Breadcrumb NavXT 7.0 and newer require PHP7.0
    -Breadcrumb NavXT 5.2 and newer require PHP5.3
    -Breadcrumb NavXT 5.1.1 and older require PHP5.2

    -

    Features (non-exhaustive)

    -
      -
    • RDFa format Schema.org BreadcrumbList compatible breadcrumb generation.
    • -
    • Extensive breadcrumb customization control via a settings page with appropriate default values for most use cases.
    • -
    • Network admin settings page for managing breadcrumb settings for all subsites with configurable global priority.
    • -
    • Built in WordPress Widget.
    • -
    • Extensible via OOP and provided actions and filters.
    • -
    • WPML compatible (enhanced compatibility with WPML extensions plugin).
    • -
    • Polylang compatible (enhanced compatibility with Polylang extensions plugin).
    • -
    • bbPress compatible (enhanced compatibility with bbPress extensions plugin).
    • -
    • BuddyPress compatible (enhanced compatibility with BuddyPress extensions plugin).
    • -
    -

    Translations

    -

    Breadcrumb NavXT now supports WordPress.org language packs. Want to translate Breadcrumb NavXT? Visit Breadcrumb NavXT’s WordPress.org translation project.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Breadcrumb NavXT", "slug": "breadcrumb-navxt", "tags": {"block": "block", "trail": "trail", "breadcrumb": "breadcrumb", "navigation": "navigation", "breadcrumbs": "breadcrumbs"}, "added": "2007-12-01", "icons": {"1x": "https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103", "svg": "https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103"}, "author": "John Havlik", "rating": 92, "status": "open", "tested": "6.7.4", "banners": {"low": "https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.png?rev=1927103", "high": "https://ps.w.org/breadcrumb-navxt/assets/banner-1544x500.png?rev=1927103"}, "ratings": {"1": 8, "2": 2, "3": 5, "4": 8, "5": 109}, "version": "7.4.1", "homepage": "http://mtekk.us/code/breadcrumb-navxt/", "requires": "5.8", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Breadcrumbs improved navigation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy juanmag on October 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Now users can easily see where they are in the site. It''s SEO-friendly too.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Exactly what I wanted

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bleyjo on February 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ideal for my use, quick & custom breadcrumb navigation

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    HUGE drawback

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy skscomp on August 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    not a bad plugin
    but a HUGE drawback is that it does not support shortcodes
    this is really inconvenient when you need to add breadcrumbs only to some pages

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    doesn't work after activation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy warmy on July 7, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I couldn''t find a shortcode to install in the theme.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect solution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy delrod on October 17, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is a perfect solution and works so well! Please keep it up!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    breadcrumb navxt polylang does not work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy readysite on April 5, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    breadcrumb navxt polylang does not work for Homepage, this is a big problem, where, for example, it was solved in other plugins, I found this one!

    \n\n\n\n

    But I want to evaluate rationally if a site in one language plugin is an excellent solution. In any case, thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin! Great Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Turk (turk) on November 12, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    This is a great plugin. Has to be the absolute best for Breadcrumbs in your blog.\n\n@mtekk is helping me with my issue with Categories displaying as Tags. I was pretty nervous about bringing a website that was offline since 2016 back online and he handled me with professionalism that I guess I wasn''t expecting. I''m slowly trying to catch up with all the changes to Wordpress and having Him handle things like this makes it a lot easier.\n\n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    simple yet very convenient and useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy echodev (echoyo) on August 18, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    A straightforward plugin to add breadcrumbs with thoughtful options for posts, pages, and even custom content types. Highly recommend this.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Need common template for all post types.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy egromspam0002 on July 3, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    1. It would be nice if it was possible edit common template for all post types at once.\n\n2. It would be nice if it was possible to export/import settings.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Do not work in multisite

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy PashkaRu on November 29, 2021\t\t\t

    \n\t\t
    \n\t
    \n\t
    incorrectly identifies the position, no item names are visible\n\nit is sad!
    \n
    \n", "changelog": "

    7.4.1

    \n

    Release date: January, 9th 2025

    \n
      \n
    • Bug fix: Fixed issue where the legacy widget was not available due to changes introduced in 7.4.0.
    • \n
    \n

    7.4.0

    \n

    Release date: December, 30th 2024

    \n
      \n
    • New feature: Added bcn_admin_post_root_args filter.
    • \n
    • Bug fix: Fixed issue where the ignore the breadcrumb cache option within the Breadcrumb Trail block resulted in the breadcrumb trail not getting generated on the home page.
    • \n
    • Bug fix: Fixed issue where breadcrumb trails generated within the loop were improperly missing the home breadcrumb when on the home page.
    • \n
    • Bug fix: Fixed issue breadcrumb-navxt textdomain is loaded too early (improved WordPress 6.7 support).
    • \n
    • Bug fix: Improved bcn_breadcrumb_trail::post_hierarchy() resiliency to unexpected returns from get_post().
    • \n
    • Bug fix: Fixed translation text typos in Breadcrumb Trail block.
    • \n
    \n

    7.3.1

    \n

    Release date: June, 27th 2024

    \n
      \n
    • Bug fix: Fixed issue where $force parameter wasn’t passed into bcn_breadcrumb_trail::fill() within bcn_display*() functions.
    • \n
    • Bug fix: Fixed improper textdomain existing within adminKit.
    • \n
    • Bug fix: Fixed issue with $force parameter where when it is not set the homepage breadcrumb would use the wrong template when calling the breadcrumb trail within the loop.
    • \n
    \n

    7.3.0

    \n

    Release date: February, 9th 2024

    \n
      \n
    • Behavior change: bcn_display_json_ld() now returns unescaped Unicode characters.
    • \n
    • Behavior change: $force parameter in bcn_display*() functions is now passed to bcn_breadcrumb_trail::fill() allowing generation of trails within the loop for the current loop item instead of the parent page/resource.
    • \n
    • New feature: Breadcrumb Trail block rewritten to have feature parity with Breadcrumb NavXT Widget.
    • \n
    • New feature: Breadcrumb Trail block supports basic styling within block editor.
    • \n
    • Bug fix: Fixed error where $outer_template argument was dropped within breadcrumb_navxt::display().
    • \n
    • Bug fix: Fixed issue where boolean settings were not exported/imported properly.
    • \n
    • Bug fix: Fixed cause of PHP error in bcn_breadcrumb_trail::maybe_add_post_type_arg() when 3rd party code breaks the WP API.
    • \n
    • Bug fix: Added check for proper queried object type for author archives.
    • \n
    \n

    7.2.0

    \n

    Release date: February, 9th 2023

    \n
      \n
    • Behavior change: Settings reset sets option entry to blank array, consistent with the change to only storing non-default values in the database.
    • \n
    • New feature: Added bcn_display_separator filter.
    • \n
    • New feature: Add per setting indication if Network wide settings are overriding the local setting.
    • \n
    • Bug fix: Improved compatibility with PHP8.1.
    • \n
    • Bug fix: Fixed PHP errors caused by unexpected entries in WP Post Types array.
    • \n
    • Bug fix: Settings help menu now shows up in the network settings page.
    • \n
    • Bug fix: Fixed cause of “file not found” error on the import/export/reset form in the network settings page.
    • \n
    \n

    7.1.0

    \n

    Release date: July, 17th 2022

    \n
      \n
    • Behavior change: BCN_SETTINGS_FAVOR_* constant behavior changed to take advantage of settings changes in 7.0.
    • \n
    • Behavior change: Settings page now warns if it detected CPTs that were added too late.
    • \n
    • New feature: Added bcn_before_loop filter which runs at the top of bcn_breadcrumb_trail::display_loop().
    • \n
    • New feature: Added JSON formatted settings import and export (successor to the old XML settings import/export format).
    • \n
    • Bug fix: Fixed PHP error caused by term archives that don’t know the active term.
    • \n
    • Bug fix: Fixed PHP error caused by introduction of namespacing in the legacy XML settings importer and exporter.
    • \n
    • Bug fix: Explicitly set option autoload values, avoiding inappropriate default autoload values being used.
    • \n
    \n

    7.0.2

    \n

    Release date: January, 4th 2022

    \n
      \n
    • Behavior change: Allow value of Hhome_template, Hhome_template_unlinked, hseparator, and hseparator_higher_dim to be overridden via bcn_settings_init.
    • \n
    • Bug fix: Fixed cause of “Sorry, you are not allowed to access this page.” message when attempting to visit the settings page.
    • \n
    \n

    7.0.1

    \n

    Release date: December, 27th 2021

    \n
      \n
    • Behavior change: Moved bcn_settings_init filter to before establishing default setting values. This filter is no longer capable of changing the default values of settings.
    • \n
    • Behavior change: Moved setup of defaults to 9000 priority, intending to cover the majority of plugins that add CPTs.
    • \n
    • Bug fix: Fixed compatibility issues with PHP5.6.
    • \n
    • Bug fix: Fixed PHP error caused by some return value of page_ settings.
    • \n
    • Bug fix: Fixed PHP error caused by non settings settings in array passed into adminKit::settings_to_opts.
    • \n
    • Bug fix: Fixed issue with bcn_allowed_html not covering admin interface elements (mapped bcn_allowed_html to mtekk_adminkit_allowed_html).
    • \n
    \n

    7.0.0

    \n

    Release date: December, 17th 2021

    \n
      \n
    • Behavior change: Within the bcn_breadcrumb_trail object instead of passing term id and taxonomy, a WP_Term object is passed instead.
    • \n
    • Behavior change: Attachments now use parent post type for post type argument.
    • \n
    • New feature: Moved to adminKit 3.0
    • \n
    • New feature: Core bcn_breadcrumb_trail object now supports multi dimensional trails.
    • \n
    • New feature: Added bcn_opts_update_to_save filter.
    • \n
    • Bug fix: Fixed parameter order issue in REST controller that resulted in PHP Deprecated message in PHP8.
    • \n
    • Bug fix: Updated REST controller endpoint registration for better WordPress 5.5+ compatibility.
    • \n
    • Bug fix: Fixed compatibility issue with Widget settings not saving properly in WordPress 5.8.
    • \n
    • Bug fix: Fixed issue with the position count parameter within bcn_display when outputting a trail in reverse order.
    • \n
    \n

    6.6.0

    \n

    Release date: October, 31st 2020

    \n
      \n
    • Behavior change: Moved to using the post type of the parent post for the type archive rather than that of the current item.
    • \n
    • Bug fix: Fixed error thrown when a site does not have an administrator role.
    • \n
    \n

    6.5.0

    \n

    Release date: June, 12th 2020

    \n
      \n
    • Behavior change: Moved to using the taxonomy of the term rather than passed in taxonomy in various functions. As a consequence, this allows bcn_pick_post_term to override the taxonomy selection.
    • \n
    • Behavior change: Default template for unlinked breadcrumbs now includes breadcrumbList markup.
    • \n
    • New feature: Added new filter bcn_breadcrumb_linked.
    • \n
    • New feature: Introduced new WordPress capability: bnc_manage_options.
    • \n
    • Bug fix: Fixed XML settings exporter so that it no longer creates malformed files that cannot be imported when settings contain special HTML entities.
    • \n
    \n

    6.4.0

    \n

    Release date: December, 31st 2019

    \n
      \n
    • Behavior change: Attachment post type settings moved to Media, additional post type options made available.
    • \n
    • Behavior change: Privately published parent posts are now, by default, skipped over in breadcrumb trails.
    • \n
    • Behavior change: On single post breadcrumb trails, the hierarchical term code path is now used in cases where only a single term from a non-hierarchical taxonomy is present for the current post.
    • \n
    • New feature: Allow %link% tag in unlinked breadcrumb templates.
    • \n
    • New feature: Added bcn_show_post_private filter.
    • \n
    • New feature: Added bcn_show_type_term_archive filter.
    • \n
    \n

    6.3.0

    \n

    Release date: May, 3rd 2019

    \n
      \n
    • New feature: Added Gutenberg block for displaying breadcrumb trails.
    • \n
    • New feature: Added bcn_display_attribute_array filter.
    • \n
    • New feature: Added bcn-aria-current template tag to facilitate WAI-ARIA Breadcrumb support.
    • \n
    • Bug Fix: Updated settings page to follow WP core standards for header structure.
    • \n
    • Bug Fix: Updated checkbox in adminKit to eliminate multiple labels to follow WCAG 2.0.
    • \n
    • Bug Fix: Fixed PHP error in circumstances of bcn_breadcrumb_trail::fill() falling back on treating an unknown item as a taxonomy.
    • \n
    \n

    6.2.1

    \n

    Release date: October, 26th 2018

    \n
      \n
    • Behavior change: Added span element wrapping the breadcrumb title in the default unlinked breadcrumb template.
    • \n
    • Bug fix: Fixed issue that caused PHP warnings and “the following settings were not saved” messages for hierarchical CPTs.
    • \n
    \n

    6.2.0

    \n

    Release date: September, 24th 2018

    \n
      \n
    • Behavior change: Cleaned up translations for default templates, simplifying and clarifying the translatable content.
    • \n
    • Behavior change: Default unlinked breadcrumb templates no longer contain Schema.org BreadcrumbList markup.
    • \n
    • Behavior change: Breadcrumb NavXT REST API endpoints are no longer enabled by default.
    • \n
    • New feature: Added bcn_register_rest_endpoint filter.
    • \n
    • New feature: Added bcn_breadcrumb_assembled_json_ld_array filter.
    • \n
    • New feature: Added support for following the post parent hierarchy first then falling back to a secondary hierarchy.
    • \n
    • Bug fix: Fixed issue where on loading the settings page immediately after migrating settings causes PHP warnings on CPT and custom taxonomy settings.
    • \n
    • Bug fix: Fixed issue that caused the settings reset option under the help drop down to not work.
    • \n
    \n

    6.1.0

    \n

    Release date: June, 1st 2018

    \n
      \n
    • Behavior change: Links to generate support requests migrated to the WordPress.org forums.
    • \n
    • New feature: Added support for Schema.org BreadcrumbList (microdata format) in the included widget.
    • \n
    • New feature: Added new Root Page support for author archives.
    • \n
    • New feature: Added REST API endpoint for posts, terms, and author archives.
    • \n
    • Bug fix: Corrected label for the Schema.org BreadcrumbList (RDFa format) option in the included widget.
    • \n
    • Bug fix: Fixed issue where a PHP warning would be thrown due to get_term() returning something other than an instance of WP_Term.
    • \n
    \n

    6.0.4

    \n

    Release date: January, 26th 2018

    \n
      \n
    • Behavior change: Added auto migration of post type hierarchy settings to bcn_display*() functions.
    • \n
    • Bug fix: Fixed issue where a PHP notice would be generated on the page for posts when the blog breadcrumb display option is set to false.
    • \n
    • Bug fix: Fixed issue where a PHP notice would be generated on archive pages where attachments were included in the wp_query results.
    • \n
    \n

    6.0.3

    \n

    Release date: January, 1st 2018

    \n
      \n
    • Bug fix: Fixed issue where an improper breadcrumb would be generated in the trail for pages under some circumstances.
    • \n
    • Bug fix: Fixed issue where the post and page roots were not updating to track user changes in Settings > Reading.
    • \n
    \n

    6.0.2

    \n

    Release date: December, 30th 2017

    \n
      \n
    • Behavior change: Added warning alerting that bcn_breadcrumb::type must be an array.
    • \n
    • Bug fix: Changed Breadcrumb Separator and Paged Template from an input field to a textbox to reduce confusion caused by HTML entities.
    • \n
    • Bug fix: Fixed issue where the parents of a page may not show up in the breadcrumb trail.
    • \n
    • Bug fix: Fixed issue where the $reverse parameter for bcn_display and bcn_display_list did not work properly.
    • \n
    • Bug fix: Fixed issue where the bcn_display_list function did not include the li elements.
    • \n
    \n

    6.0.1

    \n

    Release date: December, 28th 2017

    \n
      \n
    • Behavior change: Removed unused Blog Template and Blog Template (Unlinked) from settings page.
    • \n
    • Bug fix: Fixed issue where changes to the hierarchy type for any post type would not save.
    • \n
    • Bug fix: Fixed issue where the blog display setting was ignored.
    • \n
    \n

    6.0.0

    \n

    Release date: December, 26th 2017

    \n
      \n
    • Behavior change: bcn_breadcrumb_trail::display_list() deprecated in favor of using the $template parameter in bcn_breadcrumb_trail::display().
    • \n
    • Behavior change: bcn_breadcrumb_trail::do_attachment() deprecated in favor of calling bcn_breadcrumb_trail::do_post().
    • \n
    • Behavior change: bcn_breadcrumb_trail::do_front_page() deprecated in favor of calling bcn_breadcrumb_trail::do_home().
    • \n
    • Behavior change: bcn_li_attributes filter was deprecated in favor of bcn_display_attributes.
    • \n
    • Behavior change: bcn_breadcrumb_trail::do_archive_by_date() deprecated in favor of calling bcn_breadcrumb_trail::do_day(),bcn_breadcrumb_trail::do_month(), and/orbcn_breadcrumb_trail::do_year()`.
    • \n
    • Behavior change: bcn_breadcrumb_trail::find_type() deprecated and removed from bcn_breadcrumb_trail.
    • \n
    • Behavior change: Breadcrumb for 404 error pages changed to be a child of the front page.
    • \n
    • New feature: Added support for various HTML tags in the widget’s pretext field.
    • \n
    • New feature: Added bcn_default_hierarchy_display filter.
    • \n
    • New feature: Added bcn_default_hierarchy_type filter.
    • \n
    • New feature: Added $posttype_name as the third parameter to bcn_show_tax_private.
    • \n
    • Bug fix: Fixed UI/UX issue in the settings screen where enabling/disabling settings groups for the Home, Blog, and Mainsite breadcrumb settings did not work.
    • \n
    • Bug fix: Fixed UI/UX issue in the settings screen where not including the paged breadcrumb still allowed the paged breadcrumb template to be edited.
    • \n
    • Bug fix: Removed use of create_function in registering the widget as it was deprecated in PHP 7.2.
    • \n
    \n", "description": "

    Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress powered blog or website. These breadcrumb trails are highly customizable to suit the needs of just about any website running WordPress. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users.

    \n

    PHP Requirements

    \n

    Breadcrumb NavXT 7.0 and newer require PHP7.0
    \nBreadcrumb NavXT 5.2 and newer require PHP5.3
    \nBreadcrumb NavXT 5.1.1 and older require PHP5.2

    \n

    Features (non-exhaustive)

    \n
      \n
    • RDFa format Schema.org BreadcrumbList compatible breadcrumb generation.
    • \n
    • Extensive breadcrumb customization control via a settings page with appropriate default values for most use cases.
    • \n
    • Network admin settings page for managing breadcrumb settings for all subsites with configurable global priority.
    • \n
    • Built in WordPress Widget.
    • \n
    • Extensible via OOP and provided actions and filters.
    • \n
    • WPML compatible (enhanced compatibility with WPML extensions plugin).
    • \n
    • Polylang compatible (enhanced compatibility with Polylang extensions plugin).
    • \n
    • bbPress compatible (enhanced compatibility with bbPress extensions plugin).
    • \n
    • BuddyPress compatible (enhanced compatibility with BuddyPress extensions plugin).
    • \n
    \n

    Translations

    \n

    Breadcrumb NavXT now supports WordPress.org language packs. Want to translate Breadcrumb NavXT? Visit Breadcrumb NavXT’s WordPress.org translation project.

    \n", "screenshots": "
    1. \"This

      This screenshot shows 5 different examples of breadcrumbs generated by Breadcrumb NavXT

    2. \"A

      A screenshot of the General tab of the settings page

    3. \"A

      A screenshot of the Post Types tab of the settings page

    4. \"A

      A screenshot of the Taxonomies tab of the settings page

    5. \"A

      A screenshot of the Miscellaneous tab of the settings page

    6. \"A

      A screenshot of the Settings Import/Export/Reset form under the Help menu

    ", "installation": "

    Breadcrumb NavXT can be installed from within WordPress’ administration panel. After installing and activating the plugin, to get breadcrumb trails to display either use the included widget, or call the breadcrumb trail in your theme (or child theme). See the Calling the Breadcrumb Trail article for more information on calling the breadcrumb trail.

    \n

    To customize the breadcrumb trail you may edit the default values for the options in the administrative interface. This is located in your administration panel under Settings > Breadcrumb NavXT.

    \n

    Please visit Breadcrumb NavXT’s Documentation page for more information.

    \n"}, "versions": {"2.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.0.4.zip", "2.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.1.4.zip", "3.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.0.2.zip", "3.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.1.0.zip", "3.2.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.2.1.zip", "3.3.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.4.1.zip", "3.5.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.5.1.zip", "3.6.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.6.0.zip", "3.7.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.7.0.zip", "3.8.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.8.1.zip", "3.9.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.9.0.zip", "4.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.0.2.zip", "4.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.1.0.zip", "4.2.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.2.0.zip", "4.3.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.3.0.zip", "4.4.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.4.0.zip", "5.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.0.1.zip", "5.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.1.1.zip", "5.2.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.2.2.zip", "5.3.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.3.1.zip", "5.4.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.4.0.zip", "5.5.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.5.2.zip", "5.6.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.6.0.zip", "5.7.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.7.1.zip", "6.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.4.zip", "6.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.1.0.zip", "6.2.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.2.1.zip", "6.3.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.3.0.zip", "6.4.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.4.0.zip", "6.5.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.5.0.zip", "6.6.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.6.0.zip", "7.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.0.0.zip", "7.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.0.2.zip", "7.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.1.0.zip", "7.2.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.2.0.zip", "7.3.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.3.0.zip", "7.3.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.3.1.zip", "7.4.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.4.1.zip", "trunk": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.zip", "2.2.0-Beta1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.2.0-Beta1.zip", "2.2.0-Beta2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.2.0-Beta2.zip", "4.0.0-Beta1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.0.0-Beta1.zip"}, "downloaded": 16139912, "description": "

    Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress powered blog or website. These breadcrumb trails are highly customizable to suit the needs of just about any website running WordPress. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users.

    \n

    PHP Requirements

    \n

    Breadcrumb NavXT 7.0 and newer require PHP7.0
    \nBreadcrumb NavXT 5.2 and newer require PHP5.3
    \nBreadcrumb NavXT 5.1.1 and older require PHP5.2

    \n

    Features (non-exhaustive)

    \n
      \n
    • RDFa format Schema.org BreadcrumbList compatible breadcrumb generation.
    • \n
    • Extensive breadcrumb customization control via a settings page with appropriate default values for most use cases.
    • \n
    • Network admin settings page for managing breadcrumb settings for all subsites with configurable global priority.
    • \n
    • Built in WordPress Widget.
    • \n
    • Extensible via OOP and provided actions and filters.
    • \n
    • WPML compatible (enhanced compatibility with WPML extensions plugin).
    • \n
    • Polylang compatible (enhanced compatibility with Polylang extensions plugin).
    • \n
    • bbPress compatible (enhanced compatibility with bbPress extensions plugin).
    • \n
    • BuddyPress compatible (enhanced compatibility with BuddyPress extensions plugin).
    • \n
    \n

    Translations

    \n

    Breadcrumb NavXT now supports WordPress.org language packs. Want to translate Breadcrumb NavXT? Visit Breadcrumb NavXT’s WordPress.org translation project.

    \n", "donate_link": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted", "num_ratings": 132, "screenshots": {"1": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-1.png?rev=1058520", "caption": "This screenshot shows 5 different examples of breadcrumbs generated by Breadcrumb NavXT"}, "2": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-2.png?rev=1058103", "caption": "A screenshot of the General tab of the settings page"}, "3": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-3.png?rev=1058103", "caption": "A screenshot of the Post Types tab of the settings page"}, "4": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-4.png?rev=1058103", "caption": "A screenshot of the Taxonomies tab of the settings page"}, "5": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-5.png?rev=1058103", "caption": "A screenshot of the Miscellaneous tab of the settings page"}, "6": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-6.png?rev=1058520", "caption": "A screenshot of the Settings Import/Export/Reset form under the Help menu"}}, "support_url": "https://wordpress.org/support/plugin/breadcrumb-navxt/", "contributors": {"hakre": {"avatar": "https://secure.gravatar.com/avatar/6d074b8cfcdf17947f205adf3402ed75dea44cebba0b2526d8b4e66a51d4cfdc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hakre/", "display_name": "hakre"}, "mtekk": {"avatar": "https://secure.gravatar.com/avatar/0ee5825c42d35a209d971b1557c1bee24f4aed25df48b5e5a856fea7916788be?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mtekk/", "display_name": "John Havlik"}}, "last_updated": "2025-01-10 1:39am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.4.1.zip", "author_profile": "https://profiles.wordpress.org/mtekk/", "business_model": false, "repository_url": "", "upgrade_notice": {"7.1.0": "

    This version requires PHP7.0 or newer. This version introduces a new JSON settings import/export feature.

    "}, "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-f0bf-7008-8104-86a15ee455ba", "name": "Breadcrumb NavXT", "slug": "breadcrumb-navxt", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1736473140, "version": "7.4.1"}, "support_threads": 3, "requires_plugins": [], "short_description": "Adds breadcrumb navigation showing the visitor's path to their current location.", "author_block_count": 1, "author_block_rating": 92, "commercial_support_url": "", "support_threads_resolved": 1}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1a3e-7027-b7dd-2898c4a04875', 'did:web:api.aspiredev.org:packages:wp-plugin:classic-editor', 'classic-editor', 'Classic Editor', '

    Classic Editor is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress editor and the “Edit Post” screen. It makes it possible to use plugins that extend that screen, add old-style meta boxes, or otherwise depend on the previous editor.

    -

    Classic Editor is an official WordPress plugin, and will be fully supported and maintained until 2024, or as long as is necessary.

    -

    At a glance, this plugin adds the following:

    -
      -
    • Administrators can select the default editor for all users.
    • -
    • Administrators can allow users to change their default editor.
    • -
    • When allowed, the users can choose which editor to use for each post.
    • -
    • Each post opens in the last editor used regardless of who edited it last. This is important for maintaining a consistent experience when editing content.
    • -
    -

    In addition, the Classic Editor plugin includes several filters that let other plugins control the settings, and the editor choice per post and per post type.

    -

    By default, this plugin hides all functionality available in the new block editor (“Gutenberg”).

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Classic Editor", "slug": "classic-editor", "tags": {"editor": "editor", "gutenberg": "gutenberg", "block-editor": "block-editor", "classic-editor": "classic editor"}, "added": "2017-10-24", "icons": {"1x": "https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671", "2x": "https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671"}, "author": "WordPress.org", "rating": 98, "status": "open", "tested": "6.7.4", "banners": {"low": "https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676", "high": "https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671"}, "ratings": {"1": 16, "2": 3, "3": 11, "4": 22, "5": 1160}, "version": "1.6.7", "homepage": "https://wordpress.org/plugins/classic-editor/", "requires": "4.9", "sections": {"faq": "\n
    \nDefault settings\n\n

    \n

    When activated and when using a classic (non-block) theme, this plugin will restore the previous (“classic”) WordPress editor and hide the new block editor (“Gutenberg”).
    \nThese settings can be changed at the Settings => Writing screen.

    \n

    \n
    \nDefault settings for network installation\n\n

    \n

    There are two options:

    \n
      \n
    • When network-activated and when using a classic (non-block) theme, this plugin will set the classic editor as default and prevent site administrators and users from changing editors.
      \nThe settings can be changed and default network-wide editor can be selected on the Network Settings screen.
    • \n
    • When not network-activated each site administrator will be able to activate the plugin and choose options for their users.
    • \n
    \n

    \n
    \nCannot find the “Switch to classic editor” link\n\n

    \n

    It is in the main block editor menu, see this screenshot.

    \n

    \n
    \nDoes this work with full site editing and block themes?\n\n

    \n

    No, as block themes rely on blocks. See Block themes article for more information.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simplicity, Ease of Use & Intuitive - Bring Back classic editor...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Arachnoid (arachnoid2486) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    - The Classic Editor uses a simple, single text field with TinyMCE, users can write and format text without dealing with blocks or drag-and-drop features.\n- Most ideal features for writers, bloggers, and businesses who prioritize speed and efficiency over advanced design.\n- We are comfortable with classic workflows, switching to Gutenberg can slow productivity and force a relearning process.\n- Gutenberg interface block features is unintuitive & overcomplicated for basic writing tasks.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Still the Most Reliable Editor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy amanstacker on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Classic Editor is simple, fast, and reliable. It keeps the editing experience clean without unnecessary distractions. I appreciate how stable it is even with the latest WordPress versions. A must-have plugin for those who prefer the traditional way of editing content.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    9 million + downloads, WordPress, Take a hint!!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy SP4C3M0NK3Y (spac3monk3y) on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Gutenberg: 300k installs 2* overall.

    Classic Editor: 9million+ installs 5* overall!

    Take a ffing hint!! By far the majority hate the block editior and garbage like Gutenberg, take a hint!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable Way to Keep the Old WordPress Editing Experience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mpeng7 on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple, stable, and exactly what many users still rely on.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Life saving

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy PoliteShrimp (terminator_5505) on August 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Life saving plugin to get rid of the annoying blocks system.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best plugin on this site

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy itziko on July 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best plugin on this site

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and Familiar Editor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hopkinarona3 on June 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does the job without complications. If you''re used to the classic WordPress feel, this plugin brings it back nicely. Not perfect, but reliable enough.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best solution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy diogopetermann on June 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I install it on all websites. It''s easier to use and direct to the point.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It does exactly what I need it to do with minimal fuss.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Elizabeth Beeton (esb10) on May 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    Please never never never never never change this plugin unless you have security problems. I need this like I need air.\n\nI don''t need anything fancy. I don''t need to have bells and whistles to give it 5 stars. It just has to do what I need done, and I''m happy.\n\nFYI: I''m not a bot. I''m giving 5 stars and leaving a variation of this same review on every plugin I use daily and that makes my life easier.\n\nThis plugin has saved my sanity and has kept my blood pressure from spiking with using the bullshit Gutenberg.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice to have but some problem

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jelleruben on May 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    If I want to add a post on my website on my Tablet(Samsung S10 Ultra), I cant add a title or edit the publish date of the post. The focus jumps to the post it self. If I deacivated the plug pin, I can add the title and edit the publish date.

    \n\n\n\n

    I haven''t the issue on my laptop or smartphone

    \n\n\n\n

    \n
    \n
    \n", "changelog": "

    1.6.7

    \n
      \n
    • Fixed loading of script translations when post.js is replaced in WordPress 6.7.1.
    • \n
    \n

    1.6.6

    \n
      \n
    • Added fix for selecting/deselecting multiple unwanted categories in WordPress 6.7.1 when clicking on a category checkbox on the old Edit Post screen.
    • \n
    \n

    1.6.5

    \n
      \n
    • Added fix for Safari 18 negative horizontal margin on floats.
    • \n
    \n

    1.6.4

    \n
      \n
    • Added support for administrators to choose the default editor for other users.
    • \n
    \n

    1.6.3

    \n
      \n
    • Added some WPCS fixes, props NicktheGeek on GitHub.
    • \n
    • Updated “Tested up to” in the readme and removed it from classic-editor.php. This should fix false positive errors in security plugins in the future.
    • \n
    \n

    1.6.2

    \n
      \n
    • Fixed bug that was preventing saving of the last used editor.
    • \n
    \n

    1.6.1

    \n
      \n
    • Fixed a warning on the block editor based widgets screen.
    • \n
    • Fixed use of a deprecated filter.
    • \n
    \n

    1.6

    \n
      \n
    • Updated for WordPress 5.5.
    • \n
    • Fixed minor issues with calling deprecated functions, needlessly registering uninstall hook, and capitalization of some strings.
    • \n
    \n

    1.5

    \n
      \n
    • Updated for WordPress 5.2 and Gutenberg 5.3.
    • \n
    • Enhanced and fixed the “open posts in the last editor used to edit them” logic.
    • \n
    • Fixed adding post state so it can easily be accessed from other plugins.
    • \n
    \n

    1.4

    \n
      \n
    • On network installations removed the restriction for only network activation.
    • \n
    • Added support for network administrators to choose the default network-wide editor.
    • \n
    • Fixed the settings link in the warning on network About screen.
    • \n
    • Properly added the “Switch to classic editor” menu item to the block editor menu.
    • \n
    \n

    1.3

    \n
      \n
    • Fixed removal of the “Try Gutenberg” dashboard widget.
    • \n
    • Fixed condition for displaying of the after upgrade notice on the “What’s New” screen. Shown when the classic editor is selected and users cannot switch editors.
    • \n
    \n

    1.2

    \n
      \n
    • Fixed switching editors from the Add New (post) screen before a draft post is saved.
    • \n
    • Fixed typo that was appending the edit URL to the classic-editor query var.
    • \n
    • Changed detecting of WordPress 5.0 to not use version check. Fixes a bug when testing 5.1-alpha.
    • \n
    • Changed the default value of the option to allow users to switch editors to false.
    • \n
    • Added disabling of the Gutenberg plugin and lowered the required WordPress version to 4.9.
    • \n
    • Added classic_editor_network_default_settings filter.
    • \n
    \n

    1.1

    \n

    Fixed a bug where it may attempt to load the block editor for post types that do not support editor when users are allowed to switch editors.

    \n

    1.0

    \n
      \n
    • Updated for WordPress 5.0.
    • \n
    • Changed all “Gutenberg” names/references to “block editor”.
    • \n
    • Refreshed the settings UI.
    • \n
    • Removed disabling of the Gutenberg plugin. This was added for testing in WordPress 4.9. Users who want to continue following the development of Gutenberg in WordPress 5.0 and beyond will not need another plugin to disable it.
    • \n
    • Added support for per-user settings of default editor.
    • \n
    • Added support for admins to set the default editor for the site.
    • \n
    • Added support for admins to allow users to change their default editor.
    • \n
    • Added support for network admins to prevent site admins from changing the default settings.
    • \n
    • Added support to store the last editor used for each post and open it next time. Enabled when users can choose default editor.
    • \n
    • Added “post editor state” in the listing of posts on the Posts screen. Shows the editor that will be opened for the post. Enabled when users can choose default editor.
    • \n
    • Added classic_editor_enabled_editors_for_post and classic_editor_enabled_editors_for_post_type filters. Can be used by other plugins to control or override the editor used for a particular post of post type.
    • \n
    • Added classic_editor_plugin_settings filter. Can be used by other plugins to override the settings and disable the settings UI.
    • \n
    \n

    0.5

    \n
      \n
    • Updated for Gutenberg 4.1 and WordPress 5.0-beta1.
    • \n
    • Removed some functionality that now exists in Gutenberg.
    • \n
    • Fixed redirecting back to the classic editor after looking at post revisions.
    • \n
    \n

    0.4

    \n
      \n
    • Fixed removing of the “Try Gutenberg” call-out when the Gutenberg plugin is not activated.
    • \n
    • Fixed to always show the settings and the settings link in the plugins list table.
    • \n
    • Updated the readme text.
    • \n
    \n

    0.3

    \n
      \n
    • Updated the option from a checkbox to couple of radio buttons, seems clearer. Thanks to @designsimply for the label text suggestions.
    • \n
    • Some general updates and cleanup.
    • \n
    \n

    0.2

    \n
      \n
    • Update for Gutenberg 1.9.
    • \n
    • Remove warning and automatic deactivation when Gutenberg is not active.
    • \n
    \n

    0.1

    \n

    Initial release.

    \n", "description": "

    Classic Editor is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress editor and the “Edit Post” screen. It makes it possible to use plugins that extend that screen, add old-style meta boxes, or otherwise depend on the previous editor.

    \n

    Classic Editor is an official WordPress plugin, and will be fully supported and maintained until 2024, or as long as is necessary.

    \n

    At a glance, this plugin adds the following:

    \n
      \n
    • Administrators can select the default editor for all users.
    • \n
    • Administrators can allow users to change their default editor.
    • \n
    • When allowed, the users can choose which editor to use for each post.
    • \n
    • Each post opens in the last editor used regardless of who edited it last. This is important for maintaining a consistent experience when editing content.
    • \n
    \n

    In addition, the Classic Editor plugin includes several filters that let other plugins control the settings, and the editor choice per post and per post type.

    \n

    By default, this plugin hides all functionality available in the new block editor (“Gutenberg”).

    \n", "screenshots": "
    1. \"Admin

      Admin settings on the Settings -> Writing screen.

    2. \"User

      User settings on the Profile screen. Visible when the users are allowed to switch editors.

    3. \""Action

      \"Action links\" to choose alternative editor. Visible when the users are allowed to switch editors.

    4. \"Link

      Link to switch to the block editor while editing a post in the classic editor. Visible when the users are allowed to switch editors.

    5. \"Link

      Link to switch to the classic editor while editing a post in the block editor. Visible when the users are allowed to switch editors.

    6. \"Network

      Network settings to select the default editor for the network and allow site admins to change it.

    7. \"The

      The \"Switch to classic editor\" link.

    "}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/classic-editor.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/classic-editor.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/classic-editor.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/classic-editor.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/classic-editor.0.5.zip", "1.0": "https://downloads.wordpress.org/plugin/classic-editor.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/classic-editor.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/classic-editor.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/classic-editor.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/classic-editor.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/classic-editor.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/classic-editor.1.6.zip", "1.6.1": "https://downloads.wordpress.org/plugin/classic-editor.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/classic-editor.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/classic-editor.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/classic-editor.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/classic-editor.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip", "trunk": "https://downloads.wordpress.org/plugin/classic-editor.zip"}, "downloaded": 83766347, "description": "

    Classic Editor is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress editor and the “Edit Post” screen. It makes it possible to use plugins that extend that screen, add old-style meta boxes, or otherwise depend on the previous editor.

    \n

    Classic Editor is an official WordPress plugin, and will be fully supported and maintained until 2024, or as long as is necessary.

    \n

    At a glance, this plugin adds the following:

    \n
      \n
    • Administrators can select the default editor for all users.
    • \n
    • Administrators can allow users to change their default editor.
    • \n
    • When allowed, the users can choose which editor to use for each post.
    • \n
    • Each post opens in the last editor used regardless of who edited it last. This is important for maintaining a consistent experience when editing content.
    • \n
    \n

    In addition, the Classic Editor plugin includes several filters that let other plugins control the settings, and the editor choice per post and per post type.

    \n

    By default, this plugin hides all functionality available in the new block editor (“Gutenberg”).

    \n", "donate_link": "", "num_ratings": 1212, "screenshots": {"1": {"src": "https://ps.w.org/classic-editor/assets/screenshot-1.png?rev=1998671", "caption": "Admin settings on the Settings -> Writing screen."}, "2": {"src": "https://ps.w.org/classic-editor/assets/screenshot-2.png?rev=1998671", "caption": "User settings on the Profile screen. Visible when the users are allowed to switch editors."}, "3": {"src": "https://ps.w.org/classic-editor/assets/screenshot-3.png?rev=1998671", "caption": "\"Action links\" to choose alternative editor. Visible when the users are allowed to switch editors."}, "4": {"src": "https://ps.w.org/classic-editor/assets/screenshot-4.png?rev=1998671", "caption": "Link to switch to the block editor while editing a post in the classic editor. Visible when the users are allowed to switch editors."}, "5": {"src": "https://ps.w.org/classic-editor/assets/screenshot-5.png?rev=1998671", "caption": "Link to switch to the classic editor while editing a post in the block editor. Visible when the users are allowed to switch editors."}, "6": {"src": "https://ps.w.org/classic-editor/assets/screenshot-6.png?rev=1998671", "caption": "Network settings to select the default editor for the network and allow site admins to change it."}, "7": {"src": "https://ps.w.org/classic-editor/assets/screenshot-7.png?rev=2023480", "caption": "The \"Switch to classic editor\" link."}}, "support_url": "https://wordpress.org/support/plugin/classic-editor/", "contributors": {"pento": {"avatar": "https://secure.gravatar.com/avatar/e522019adbe7cb4145f9e01c344c036baaa8bf76cd5d76e6b737b60be9af88cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pento/", "display_name": "Gary Pendergast"}, "azaozz": {"avatar": "https://secure.gravatar.com/avatar/73c1045212929211deda7262005831319397c68d340a8c41d53633b3f7e7f129?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/azaozz/", "display_name": "Andrew Ozz"}, "desrosj": {"avatar": "https://secure.gravatar.com/avatar/18f4f7ebdcd48383951a52a88f401bd6460ae74b626016010b1f0604cac90826?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/desrosj/", "display_name": "Jonathan Desrosiers"}, "melchoyce": {"avatar": "https://secure.gravatar.com/avatar/5437f5b6124c08e8d9ab5f8a4b6a97cf3f6966aee694ef98417db8bdcc13b937?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/melchoyce/", "display_name": "Mel Choyce-Dwan"}, "alexislloyd": {"avatar": "https://secure.gravatar.com/avatar/775894c99a8fbeea86f893222b51abf0fe6da4a938b20eb1e608d4d0958fe816?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alexislloyd/", "display_name": "Alexis Lloyd"}, "youknowriad": {"avatar": "https://secure.gravatar.com/avatar/4358d28c1e85f9015cb3363e024e2b238bccb44d05c4b84e9a38aafef0d83ac9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/youknowriad/", "display_name": "Riad Benguella"}, "chanthaboune": {"avatar": "https://secure.gravatar.com/avatar/b98cc60e2f12d4573ab0dca7442b45137144bac0ffb28dac83fe6a72bd6ba007?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/chanthaboune/", "display_name": "Josepha"}, "luciano-croce": {"avatar": "https://secure.gravatar.com/avatar/eb8304a2f2a2560b6e404cd343dbcd73ec3ebd3ec44d8538bbedf6cc5a8f8572?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/luciano-croce/", "display_name": "luciano-croce"}, "ironprogrammer": {"avatar": "https://secure.gravatar.com/avatar/24b68e30c5aca1c18ea836405ba1d723ab26ee96ef0ebf83a0c2d212d8cd58d9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ironprogrammer/", "display_name": "Brian Alexander"}, "wordpressdotorg": {"avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "display_name": "WordPress.org"}}, "last_updated": "2024-12-03 9:03pm GMT", "preview_link": "https://wordpress.org/plugins/classic-editor/?preview=1", "requires_php": "5.2.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip", "author_profile": "https://profiles.wordpress.org/wordpressdotorg/", "business_model": "community", "repository_url": "https://github.com/wordpress/classic-editor", "upgrade_notice": [], "active_installs": 9000000, "aspiresync_meta": {"id": "019a30bf-f0b4-7378-8065-0814bfb93332", "name": "Classic Editor", "slug": "classic-editor", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1733259780, "version": "1.6.7"}, "support_threads": 5, "requires_plugins": [], "short_description": "Enables the previous "classic" editor and the old-style Edit Post screen with TinyMCE, Meta Boxes, etc. Supports all plugins that extend this screen.", "author_block_count": "1", "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1a4d-7126-8deb-9ac06fac4a75', 'did:web:api.aspiredev.org:packages:wp-plugin:classic-widgets', 'classic-widgets', 'Classic Widgets', '

    Classic Widgets is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress widgets settings screens. It will be supported and maintained to 2024, or as long as is necessary.

    -

    Once activated and when using a classic (non-block) theme, this plugin restores the previous widgets settings screens and disables the block editor from managing widgets. There is no other configuration, the classic widgets settings screens are enabled or disabled by either enabling or disabling this plugin.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Classic Widgets", "slug": "classic-widgets", "tags": {"editor": "editor", "disable": "disable", "gutenberg": "gutenberg", "classic-widgets": "classic widgets", "disable-gutenberg": "disable gutenberg"}, "added": "2021-05-05", "icons": {"default": "https://s.w.org/plugins/geopattern-icon/classic-widgets.svg"}, "author": "Tonya Mork", "rating": 98, "status": "open", "tested": "6.7.4", "banners": [], "ratings": {"1": 5, "2": 0, "3": 3, "4": 3, "5": 249}, "version": "0.3", "homepage": "https://wordpress.org/plugins/classic-widgets/", "requires": "4.9", "sections": {"faq": "\n
    \nAre there any settings?\n\n

    \n

    No, there are no settings. Once activated, this plugin restores the previous (“classic”) WordPress widgets screen and disables the block editor from managing widgets.

    \n

    \n
    \nDoes this work with full site editing and block themes?\n\n

    \n

    No, as block themes rely on blocks. See Block themes article for more information.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy (happyandyk) on April 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Useful, but needs an update now, as the Classic bar does not remain sticky now with the latest WP 6.8 update.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect, easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Sepi (sepicompanywork) on April 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks to this plugin, I no longer get a headache from looking at the widgets page.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best Plugin Ever

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Helison S. Cruz (detonasaurus) on April 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello, guys from WordPress Team.

    \n\n\n\n

    I want to thank you for keeping this plugin active until today.

    \n\n\n\n

    I started to really like the block scheme within the posts (especially for those who like to develop their own blocks like me), but here in the widgets I think the application of the blocks didn''t work very well.

    \n\n\n\n

    You could create something similar to the old widget system, but without blocks. The cool thing about widgets was that they were easy to manipulate and allowed for faster customization within limits. The blocks in this part of the widgets became confusing and difficult to manage.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Classic Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Quotes Ninja (quotesninja) on March 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m using this plugin because of simplicity and for classic experience.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This plugin totally saved me

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Erez Speiser (erezspeiser) on February 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I experience from time to time glitches with the widgets block system and never got to like it.

    \n\n\n\n

    Lately, it got worse to the point that I could not add/edit my widgets, getting all kinds of errors and strange behavior. I must say I was panicked because it was a huge issue for me.

    \n\n\n\n

    After some research I found out the plugin that rolls us back to sanity.

    \n\n\n\n

    The fact that it has 2M installations and a 5-star rating clearly means that WP made a lousy move with introducing the blocks into the widgets.

    \n\n\n\n

    I hope they will take this seriously.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mattmx on February 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    thanks for providing such a tool

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very easy to understand!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nealumphred on November 30, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin!

    \n\n\n\n

    Very easy to understand, set up, and use.

    \n\n\n\n

    \n\n\n\n

    Keep on keepin'' on ...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great this solution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Oliver Junior (webde5igner) on November 27, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great solution, thanks

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy haydenashly on November 25, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A good plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Must Have!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shadowheezy on November 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Makes my life easy.

    \n
    \n
    \n", "changelog": "

    0.3

    \n

    Update for 5.9.

    \n

    0.2

    \n

    Update filter name.

    \n

    0.1

    \n

    Initial release.

    \n", "description": "

    Classic Widgets is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress widgets settings screens. It will be supported and maintained to 2024, or as long as is necessary.

    \n

    Once activated and when using a classic (non-block) theme, this plugin restores the previous widgets settings screens and disables the block editor from managing widgets. There is no other configuration, the classic widgets settings screens are enabled or disabled by either enabling or disabling this plugin.

    \n"}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/classic-widgets.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/classic-widgets.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/classic-widgets.0.3.zip", "trunk": "https://downloads.wordpress.org/plugin/classic-widgets.zip"}, "downloaded": 6917426, "description": "

    Classic Widgets is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress widgets settings screens. It will be supported and maintained to 2024, or as long as is necessary.

    \n

    Once activated and when using a classic (non-block) theme, this plugin restores the previous widgets settings screens and disables the block editor from managing widgets. There is no other configuration, the classic widgets settings screens are enabled or disabled by either enabling or disabling this plugin.

    \n", "donate_link": "", "num_ratings": 260, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/classic-widgets/", "contributors": {"azaozz": {"avatar": "https://secure.gravatar.com/avatar/73c1045212929211deda7262005831319397c68d340a8c41d53633b3f7e7f129?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/azaozz/", "display_name": "Andrew Ozz"}, "hellofromtonya": {"avatar": "https://secure.gravatar.com/avatar/700febabf646717b35cab3a3bbc42e405237922fccda8b01ad07cde219de62bd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hellofromtonya/", "display_name": "Tonya Mork"}, "ironprogrammer": {"avatar": "https://secure.gravatar.com/avatar/24b68e30c5aca1c18ea836405ba1d723ab26ee96ef0ebf83a0c2d212d8cd58d9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ironprogrammer/", "display_name": "Brian Alexander"}, "wordpressdotorg": {"avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "display_name": "WordPress.org"}}, "last_updated": "2024-11-12 10:34pm GMT", "preview_link": "https://wordpress.org/plugins/classic-widgets/?preview=1", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/classic-widgets.0.3.zip", "author_profile": "https://profiles.wordpress.org/hellofromtonya/", "business_model": "community", "repository_url": "https://github.com/wordpress/classic-widgets", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f0a2-73b8-b1fe-391f3e537e9c", "name": "Classic Widgets", "slug": "classic-widgets", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1731450840, "version": "0.3"}, "support_threads": 1, "requires_plugins": [], "short_description": "Enables the previous "classic" widgets settings screens in Appearance - Widgets and the Customizer. Disables the block editor from managing widgets.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1a5d-7346-a50b-9ee16bd18263', 'did:web:api.aspiredev.org:packages:wp-plugin:click-to-chat-for-whatsapp', 'click-to-chat-for-whatsapp', 'Click to Chat – HoliThemes', '

    WhatsApp Chat. Let’s make your Web page visitors contact you through “WhatsApp” or “WhatsApp Business” with a single click (WhatsApp Chat, Group).

    -

    Demo | Documentation | Support | PRO

    -

    WhatsApp Chat

    -

    Add ‘WhatsApp’ or ‘WhatsApp Business’ Number and let your website visitors contact you with a single click.

    -

    📱 Mobile: Open the WhatsApp Mobile App for a seamless connection.

    -

    💻 Desktop: Direct visitors to the WhatsApp Desktop App or Web WhatsApp page (web.whatsapp.com)

    -

    -

    💎 Styles

    -

    Select a style that complements the design of your website.

    -
      -
    • 8 pre-defined customizable styles/designs
    • -
    • Add your own Image/GIF
    • -
    • Custom Element/Design (convert any element to a WhatsApp Chat element)
    • -
    • Shortcodes (Add WhatsApp button/icon with inline the content)
    • -
    • Different Styles, Positions for Mobile, Desktop
    • -
    • Choose a style and customize it to match the website’s design
    • -
    -

    list of Styles | 🎨Customize Styles

    -

    💡 Add Own Image

    -

    Instead of selecting a pre-defined style, add any Image/Animated-image/GIF.

    -

    🌈 Custom Element

    -

    Convert any Element as a WhatsApp Chat Element by adding

    -
      -
    • Class/ID name: ‘ctc_chat’ (or)
    • -
    • Href/link: ‘#ctc_chat’
    • -
    -

    The custom design element will navigate to WhatsApp based on plugin settings (WhatsApp Number, pre-filled message, Analytics, …. ).
    -(e.g. menu item, button, image, link – just add ctc_chat as a class name)

    -

    Custom Element

    -

    🎉 Greetings Dialog

    -

    Add customizable greeting dialogs for boosting user attention and increasing interaction. Seamlessly integrate these greetings into your website for better engagement.

    -
      -
    • Greetings-1 – Customizable Design: Personalize the design to match your branding with full control over fonts, colors, images, and more.
    • -
    • Greetings-2 – Content Specific: Deliver focused messages that resonate effectively with your users.
    • -
    -

    📝 Form Filling

    -

    Get the necessary information from the website visitors before initiating the chat.

    -
      -
    • Get an email notification when the user fills out the form.
    • -
    • Call a webhook with the form data to integrate with other applications. Using integrations tools add data in Google Sheet, CRM and many more applications.
    • -
    • Form data can be prefilled in the WhatsApp chat window.
    • -
    -

    PRO: Greetings-Form

    -

    👥 Multi-Agent

    -

    Add multiple WhatsApp chat accounts within a single Greetings dialog.

    -
      -
    • We can set different time ranges for each agent. (24×7 or multiple time ranges for each day of the week).
    • -
    • Offline Agents -
        -
      • Chat when offline (display agent with next available time).
      • -
      • Disable chat (display agent with next available time).
      • -
      • Hide offline agents
      • -
      -
    • -
    -

    PRO: Multi-Agent

    -

    ⌛ Greetings Actions

    -
      -
    • Click Action: Displays greeting dialog when a user clicks on any element with the class name: ‘ctc_greetings’.
    • -
    • ViewPort Action: Displays Greetings When an element is in/reached viewport(25% margin) with the Class name: ‘ctc_greetings_now’ [PRO]
    • -
    • Time, Scroll Actions: Display Greetings based on time, scroll [PRO]
    • -
    -

    These actions enhance user interaction by triggering greetings at the right moments, improving engagement and support efficiency.

    -

    Actions

    -

    🔴 Notification Badge

    -

    Get user attention by displaying a notification badge on the WhatsApp Chat element.

    -

    Customize the notification badge with the notification count, text color, background color, border color, and time delay to display the notification badge.

    -

    Notification Badge

    -

    ✳️ Position to Place

    -
      -
    • Add WhatsApp at any position of the screen
      -(not limited to fixed positions).
    • -
    • Different positions for Mobile and Desktop.
    • -
    -

    ⏩ Pre-filled Message

    -

    Text that appears in the WhatsApp chat window when the user clicks on the WhatsApp.

    -

    Users can easily start the conversation.

    -

    Variables to change values dynamically

    -
      -
    • {site} -> Website Title
    • -
    • {title} -> Page Title
    • -
    • {url} -> Web page URL
    • -
    • [url] -> Web page full URL including query parameters
    • -
    -

    With these variables, we can understand from which page the user started WhatsApp chat.

    -

    Pre-filled Message

    -

    🛍️ WooCommerce

    -

    WooCommerce product pages

    -

    For WooCommerce, single product pages can overwrite the main setings to add a product specific message using dynamic variables.

    -
      -
    • Pre-filled Message
    • -
    • Call to Action
    • -
    • Greetings Template, Content [PRO]
    • -
    -

    Additional variables, specific to WooCommerce single product page to change values dynamically

    -
      -
    • {product} -> Product Name
    • -
    • {price} -> Product Price (current price)
    • -
    • {regular_price} -> Regular product price (without any sale)
    • -
    • {sku} -> Stock keeping unit
    • -
    -

    For Shop, Cart, Checkout, and Account pages we can overwrite at page level settings

    -

    Add WhatsApp – Single Product Pages

    -

    Add WhatsApp button or icon at WooCommerce single product pages.

    -
      -
    • Before Main Content
    • -
    • Before Product
    • -
    • Before Product Summary
    • -
    • Product Summary
    • -
    • Before Add to Cart Form
    • -
    • Before Cart Button
    • -
    • After Cart Button
    • -
    • After Add to Cart Form
    • -
    • After Product
    • -
    • After product summary
    • -
    -

    We can add dynamic variables for the Call to Action.
    -E.g. Buy {product}
    -{product} will be replaced with the product name for all product pages.

    -

    Add WhatsApp Icon/Button in WooCommerce Product pages

    -

    Add WhatsApp – Shop Page

    -

    Add WhatsApp to WooCommerce Products list (shop page, related products list)

    -

    Shop page

    -

    📒 Page Level Settings

    -

    At the page level, we can overwrite the settings for each post. We can add a different Whatsapp Number, Prefilled Message, Call to Action for each post
    -(while editing the post, in the right sidebar ‘Click to Chat’ meta box)

    -
      -
    • WhatsApp Number
    • -
    • Call to Action
    • -
    • Pre-filled Message
    • -
    • Display Settings
    • -
    -

    PRO:

    -
      -
    • Change Styles
    • -
    • Time Delay
    • -
    • Scroll Delay
    • -
    • Greetings Template
    • -
    • Greetings Header, Main, Bottom Content
    • -
    -

    Page-level settings

    -

    📈 Analytics

    -

    Creates an Event when the user clicks on the WhatsApp Icon/button.

    -

    Google Analytics

    -

    Meta Pixel

    -

    Google Ads Conversations

    -

    Webhooks

    -

    Connect other applications using Integrate, Automation tools like Zapier, IFTTT, Pipedream, etc.

    -

    Webhooks

    -

    ⭐ PRO

    -
      -
    • Multi-Agent: Displays multiple WhatsApp chat accounts -
        -
      • Set multiple time ranges for each agent’s availability
      • -
      • Hide offline agents or display agent when offline with next available time
      • -
      -
    • -
    • Random Numbers: Navigates to a random WhatsApp number from the predefined list
    • -
    • Form: Get the necessary information from the website visitors, before initiating the chat -
        -
      • Get an email notification when the user fills out the form.
      • -
      • Use webhooks to send form data to external apps in real-time for seamless integration.
      • -
      • Prefill WhatsApp messages with user-provided form data to streamline conversations
      • -
      -
    • -
    • Business hours: Offline/Online Settings -
        -
      • Set business hours for a specific time range within a day, specific days in a week.
      • -
      • Hide the widget during offline hours or automatically change the WhatsApp numbers and call to action.
      • -
      -
    • -
    • Display based on website visitor’s country
    • -
    • Webhooks – Dynamic variables -
        -
      • {url} – Current page URL.
      • -
      • {time} – Time user interacted with the WhatsApp Button/Icon.
      • -
      • {number} – WhatsApp Number associated with the icon/button.
      • -
      • Get values from url parameters by adding name with in single square brackets E.g. [gclid], [utm_source]
      • -
      • Get values from cookies by adding the name with in double square brackets. E.g. [[cookie_name]]
      • -
      -
    • -
    • Get additional values at Google Analytics, Meta Pixel -
        -
      • Get values from url parameters. E.g. [gclid], [utm_source]
      • -
      • Get values from cookies. E.g. [[cookie_name]]
      • -
      -
    • -
    • Greetings Actions: (for all greeting dialogs: Greetings-1, Greetings-2, Form, Multi-agent) -
        -
      • Display greetings dynamically based on user actions such as -
          -
        • Time: Time spent on the page,
        • -
        • Scroll: Page scroll percentage,
        • -
        • Click: specific button clicks
        • -
        • ViewPort: when an element becomes visible in the viewport.
        • -
        -
      • -
      -
    • -
    • Position to place -
        -
      • Fixed: Fixed position on the screen (default position)
      • -
      • Absolute: Fixed position to the body content. (Moves when the user scrolls the page)
      • -
      -
    • -
    • Time Delay & Scroll Delay: Display WhatsApp widget after a specified time delay or once the user scrolls a certain percentage of the page.
    • -
    • Display based on Website visitor’s login status
    • -
    • Page-level settings: Fine-tune WhatsApp button behavior for individual pages. Change styles, time delays, scroll delay, Greetings Template, and Greetings Content
    • -
    • WooCommerce: Customize WhatsApp widget behavior specifically for WooCommerce pages -
        -
      • Overwrite greetings template, Content for Single product pages.
      • -
      • Overwrite settings for Shop, Checkout, and Account pages at page-level settings
      • -
      -
    • -
    -

    🔆 PRO

    -

    🎯 Localization

    -

    Click to Chat is Compatible with translation plugins. WPML, Polylang.

    -

    It is easy to set up different values for each language

    -
      -
    • WhatsApp Number
    • -
    • Call to Action
    • -
    • Pre-filled Message
    • -
    • Greetings Content
    • -
    • Group ID
    • -
    • Share Text
    • -
    -

    Setup for WPML, Polylang

    -

    🚀 Performance

    -
      -
    • Rich in features, but the site’s front end is very lightweight.
    • -
    -

    We highly concentrate on speed and performance.

    -

    👓 Display Settings

    -

    Customize the visibility of the widget by showing or hiding styles based on specific settings, such as:

    -
      -
    • Post type
    • -
    • Post Id
    • -
    • Category name
    • -
    • Device Type(Mobile, Desktop)
    • -
    • WooCommerce single product pages
    • -
    -

    PRO:

    -
      -
    • Time delay
    • -
    • Scroll delay
    • -
    • Selected time range in a day
    • -
    • Selected Days in a week
    • -
    • Website visitor login status
    • -
    • Website visitor country
    • -
    -

    ✅ Opt-in

    -

    Make the website users opt-in / accept consent before initiating the chat.

    -

    Opt-in

    -

    ⛳ Shortcodes

    -

    Use shortcodes to instead a WhatsApp icon or button with inline the Post content, widget area.

    -

    change the default setting values using shortcode attributes – WhatsApp Number, Style, Pre-filled message, Call to Action.

    -

    Chat Shortcodes

    -

    [ht-ctc-chat]

    -

    To change the WhatsApp number use the ‘number’ attribute

    -

    [ht-ctc-chat number=915123456789]

    -

    Shortcodes for Chat

    -

    Group

    -

    Enable the Group chat feature and add WhatsApp Group id in the plugin settings.

    -

    Make it easy for your customers to join Whatsapp Group.

    -

    Group

    -

    Share

    -

    Let users share your website with their WhatsApp contacts and get more leads.

    -

    Share

    -

    🌏 Help Translate The Plugin

    -

    Help by Translating the plugin to be available in more languages

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Click to Chat – HoliThemes", "slug": "click-to-chat-for-whatsapp", "tags": {"whatsapp": "whatsapp", "click-to-chat": "click to chat", "whatsapp-chat": "whatsapp chat", "whatsapp-business": "whatsapp business", "woocommerce-whatsapp": "woocommerce whatsapp"}, "added": "2017-10-23", "icons": {"1x": "https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-128x128.gif?rev=2892731", "2x": "https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-256x256.gif?rev=2892731"}, "author": "holithemes", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/click-to-chat-for-whatsapp/assets/banner-772x250.png?rev=2896528", "high": false}, "ratings": {"1": 3, "2": 2, "3": 2, "4": 2, "5": 123}, "version": "4.30", "homepage": "https://wordpress.org/plugins/click-to-chat-for-whatsapp/", "requires": "4.7", "sections": {"faq": "\n
    \nWhatsApp Number\n\n

    \n

    Enter the WhatsApp number with country code

    \n

    E.g.
    \ncountry code +1
    \nnumber: 6123456789
    \n** WhatsApp number: 16123456789 **

    \n

    (WhatsApp Number)[https://holithemes.com/plugins/click-to-chat/whatsapp-number/]

    \n

    \n
    \nPre-filled Message\n\n

    \n

    Text that appears in the WhatsApp chat window when the user clicks on the WhatsApp.

    \n

    Add variables to change values dynamically

    \n
    {url} -> Web page URL\n{title} -> Page Title\n{site} -> Website Title\n
    \n

    E.g.

    \n
    Hi {site}!!\nI like to know more information about this {title}, {url}.\n
    \n

    Variables for WooCommerce single product pages

    \n
    {product} -> Product Name\n{price} -> Product Price (current price might be the sale price/regular price)\n{regular_price} -> Regular product price (with out any sale)\n{sku} ->Stock keeping unit\n
    \n

    E.g.

    \n
    Hi {site}!!\nName: \nI like to buy this {product}, {url}\n
    \n

    With this prefilled text, we can know from which page the user started the conversation, the purpose of the contact, and their details

    \n

    Pre-filled Message
    \nPre-filled Message for WooCommerce

    \n

    \n
    \nSelect Styles\n\n

    \n

    Select Styles/widget that matches the design
    \n* customize the style to match the website design.
    \n* Add your own Image/GIF
    \n* Custom Element/Design (convert any element to a WhatsApp Chat element)
    \n* Select differnt Styles for mobile, desktop to match the website design.

    \n

    \n
    \nPosition to place the styles\n\n

    \n

    Add Styles at any position of the screen (not just fixed to selected positions).

    \n

    Position to place settings

    \n

    E.g.

    \n
    \n

    bottom-right corner:
    \n bottom: 10px
    \n right: 10px

    \n

    Center of the Screen (bottom-center)
    \n bottom: 10px
    \n right: 50%

    \n

    Center of the Screen (left-center)
    \n bottom: 50%
    \n right: 10px

    \n
    \n

    Plugin supports all CSS units as the suffix. (px, %, rem,…)

    \n

    position to place

    \n

    \n
    \nGDPR\n\n

    \n

    “Click to Chat” don’t collect any of the user data and don’t use cookies.

    \n

    User consent before starting the chat.

    \n

    Opt-in

    \n

    \n
    \nDisplay only on selected countries\n\n

    \n

    Display based on country

    \n

    \n
    \nShow/Hide on Selected pages/devices\n\n

    \n

    Show only on selected pages

    \n

    Hide only on selected pages

    \n

    Show/Hide on Mobile/Desktop

    \n

    \n
    \nLocalization: Change number, content for each language / page\n\n

    \n

    We can change values for each language if using WPML, Polylang for translation.

    \n

    Multilingual

    \n

    From WPML / Polylang Settings -> ‘String Translations’ and filter strings to ‘Click to chat for WhatsApp’ and change value based on language.

    \n
      \n
    • User Input (Plugin Settings values): – ‘Click to chat for WhatsApp’
    • \n
    • Admin strings (Plugin Settings) – text domain: ‘click-to-chat-for-whatsapp’
    • \n
    \n

    Page-level settings

    \n

    \n
    \nWhatsApp Group Invite/chat\n\n

    \n

    Enable Group Feature Add WhatsApp group id at plugin settings page. and let user join in WhatsApp Group.

    \n

    \n
    \nWhatsApp Share\n\n

    \n

    Enable Share feature and let users share your website easily.

    \n

    Add variables to change values dynamically
    \n {url} -> Web page URL
    \n {title} -> Page Title
    \n {site} -> Website Title

    \n

    Share Text – E.g.

    \n
    \n

    Checkout this Awesome page {title}, {url}

    \n
    \n

    \n
    \nAMP Compatibility\n\n

    \n

    Click to Chat is Compatible with (AMP)[https://wordpress.org/plugins/amp/] plugin. AMP won’t load plugins JavaScript files so limited functionality available.

    \n

    \n
    \n🔧 Basic Troubleshooting\n\n

    \n

      \n
    • Clear cache\n
        \n
      • from Cache plugins
      • \n
      • Server side cache (some hosting providers adds cache functionality by default)
      • \n
      • CDN cache (Cache invalidation)
      • \n
      \n
    • \n
    • Check Display settings
    • \n
    • (page level settings)[https://holithemes.com/plugins/click-to-chat/change-values-at-page-level/]
    • \n
    \n

    ✍️ For any queries, please contact us.

    \n

    \n
    \n❤️ Support / Contact\n\n

    \n

    For any issues with the plugin / suggestions:

    \n\n

    \n
    \n⭐️ Give Support\n\n

    \n

    If you like the plugin, support the developers by giving 5 star rating

    \n

    Thank you so much in advance from “Click to Chat” Team

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin – Easy and Effective!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy steffbd on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Click to Chat is super easy to set up and works flawlessly. It makes it simple for my customers to contact me directly via WhatsApp, which has improved my support and response times. Highly recommended for anyone who wants to connect with their website visitors quickly!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very nice the plugin Click to Chat

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy arthurflantan on July 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very nice Click to Chat

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin and support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy redfieldcf on May 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin is brilliant. It allows you to have whatsapp on the web in a simple, visual and beautiful way. The technical support is incredible, I recommend it 100%.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Site hacked

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anthonyaxford on March 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Website hacked, tested over the weekend and as soon as we turn the plugin on hacked again showing some Indonesia lotto website, disabled all plugins left the site for 2 days it stayed on, turned click to chat back on first site down, it only started after i updated to 4.19 please fix this

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The latest version of the plugin is causing WordPress to crash.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aversus on January 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello, when I update the plugin to the latest version, WordPress crashes and a virus infects the site. I restored my WordPress from a backup once and waited a week without updating the plugin, updating other plugins without any issues. Today, I updated this plugin again, and the result was the same: the website crashed again, and I had to restore it from yesterday''s backup. I kindly request the plugin to be checked. I am almost certain that the issue is caused by the WhatsApp plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Problem with the phone number displayed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cleophasoj on July 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin displays a phone number I used a few months ago despite updating it to a new WhatsApp number. I have tried clearing the cache on both of my devices and for WordPress.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It's good.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Khurram Shafique Mir (mirkhurram) on April 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    it''s good for me, I have used and then will again come back to new and updated to my reviewed at this site again.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazing Plug-in and Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy funkyt on October 23, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Super clean look and easy to use plug-in, with great customization options.

    \n\n\n\n

    The tech support was SIMPLY AMAZING. I wanted the floating button to trigger a ''Lead'' event in FB Pixel, so I started a WhatsApp chat with the developers and asked them about this feature. They were super polite and informed me that they are looking into adding this feature in their future update by end of next month, and they THANKED ME for my suggestion.

    \n\n\n\n

    I asked them if I could implement the Lead event myself in the meantime, and they provided javascript code snippet which I added to my header and it instantly worked! Amazing!

    \n\n\n\n

    Thank you HoliThemes for such an amazing plug-in and even more amazing & prompt tech support!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best WordPress plugin ever.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Salih Gül (sarish2020) on August 29, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The most useful plugin for me in WordPress \" Click to Chat - HoliThemes\"

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support given in 5 min through WhatsApp chat

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy babu98765 on June 16, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We got on time support in 5 min through WhatsApp.

    \n\n\n\n

    They took responsibility of things and guided correctly.

    \n\n\n\n

    Thank you very much.

    \n
    \n
    \n", "changelog": "

    4.30

    \n
      \n
    • Enchancement: Google Analytics feature.
    • \n
    \n

    4.29

    \n
      \n
    • Settings to load JavaScript files as Normal, Async, or Defer for improved performance.
    • \n
    \n

    4.28

    \n
      \n
    • Fix: The Custom Element feature now works correctly even when the ‘ctc_chat’ class is added dynamically.
    • \n
    \n

    4.27

    \n
      \n
    • app.js file now loads asynchronously and deferred to improve page load performance.
    • \n
    \n

    4.26

    \n
      \n
    • Custom URL feature is now available in this main plugin. We can add WhatsApp Chanel URL in the plugin settings to open WhatsApp Channel.
    • \n
    • Enhancement: Page level settings design.
    • \n
    \n

    4.25

    \n
      \n
    • Fix: Greeting dialog modal not displaying correctly due to z-index issues when certain background elements were present.
    • \n
    \n

    4.24

    \n
      \n
    • Fixed: Page-level settings now work correctly on the WooCommerce Shop page.
    • \n
    • Improved: Better visual styling for the base widget.
    • \n
    \n

    4.23

    \n

    🚨 Important Update
    \n* ✨ New Feature: Greetings Dialog can now appear as a modal for better visibility and UX.
    \n* 🛠️ Fix: Resolved an issue where the Greetings Dialog was not displaying correctly when the base widget was positioned at the top.
    \n* 🛠️ Fix: On iPhone Chrome, the Share feature now opens WhatsApp correctly without opening a new tab.
    \n* 🔧 Improvement: When a WhatsApp number is not set, the admin notice is now displayed using a more reliable and secure method — instead of using JS .html().

    \n

    4.22

    \n
      \n
    • The Custom Image widget now automatically uses the image file name as the alt attribute
    • \n
    • Settings to disable page-level settings.
    • \n
    \n

    4.21

    \n
      \n
    • Fix: Resolved issue where phone numbers with +1888 prefix were not being saved in settings.
    • \n
    \n

    4.20

    \n
      \n
    • New: Added {{price}} variable for WooCommerce product pages to display price with currency symbol, thousand separator, and decimal separator.
    • \n
    • Fix: Resolved conflict with some themes caused by animation class name.
    • \n
    \n

    4.19

    \n
      \n
    • Fix: PHP Error. Thanks, Malae, for reporting it!
    • \n
    \n

    4.18

    \n
      \n
    • Fix: Resolved an issue where the Style-5 profile image was displaying above the greetings dialog on mobile devices.
    • \n
    • Fix: Corrected the border alignment in Style-5.
    • \n
    • Enhancement: Admin Demo for better usability
    • \n
    \n

    4.17

    \n
      \n
    • Fix: Display Widget as an Add to Cart like button is not working on the WooCommerce single product page, Archive list.
    • \n
    \n

    4.16

    \n
      \n
    • Added ‘Alt’ attribute value for greetings header image
    • \n
    • Fix: Style-7, Style-7 Extend hover effects not working.
    • \n
    \n

    4.15

    \n
      \n
    • Fix: Page-level settings not working properly.
    • \n
    • Fix: Alignment issues at admin setting pages
    • \n
    \n

    4.14

    \n
      \n
    • Enhancement: Show or hide the admin demo.
    • \n
    \n

    4.13

    \n
      \n
    • Fix: Alignment issues at admin setting pages
    • \n
    \n

    4.12.1

    \n
      \n
    • Fix: Hover effects for Style-7 Extend
    • \n
    • Fix: Dual lines issue for Style-8 with large call to action text
    • \n
    \n

    4.12

    \n
      \n
    • Fix: Custom CSS Code block not allowing quotes at front end
    • \n
    \n

    4.11

    \n
      \n
    • New: Custom CSS Code block.
    • \n
    \n

    4.10

    \n
      \n
    • Fix: Page level display settings for WooCommerce single product page
    • \n
    \n

    4.9

    \n
      \n
    • Fix: Display based on device not working as expected on iPad Pro
    • \n
    \n

    Changelog

    \n", "description": "

    WhatsApp Chat. Let’s make your Web page visitors contact you through “WhatsApp” or “WhatsApp Business” with a single click (WhatsApp Chat, Group).

    \n

    Demo | Documentation | Support | PRO

    \n

    WhatsApp Chat

    \n

    Add ‘WhatsApp’ or ‘WhatsApp Business’ Number and let your website visitors contact you with a single click.

    \n

    📱 Mobile: Open the WhatsApp Mobile App for a seamless connection.

    \n

    💻 Desktop: Direct visitors to the WhatsApp Desktop App or Web WhatsApp page (web.whatsapp.com)

    \n

    \n

    💎 Styles

    \n

    Select a style that complements the design of your website.

    \n
      \n
    • 8 pre-defined customizable styles/designs
    • \n
    • Add your own Image/GIF
    • \n
    • Custom Element/Design (convert any element to a WhatsApp Chat element)
    • \n
    • Shortcodes (Add WhatsApp button/icon with inline the content)
    • \n
    • Different Styles, Positions for Mobile, Desktop
    • \n
    • Choose a style and customize it to match the website’s design
    • \n
    \n

    list of Styles | 🎨Customize Styles

    \n

    💡 Add Own Image

    \n

    Instead of selecting a pre-defined style, add any Image/Animated-image/GIF.

    \n

    🌈 Custom Element

    \n

    Convert any Element as a WhatsApp Chat Element by adding

    \n
      \n
    • Class/ID name: ‘ctc_chat’ (or)
    • \n
    • Href/link: ‘#ctc_chat’
    • \n
    \n

    The custom design element will navigate to WhatsApp based on plugin settings (WhatsApp Number, pre-filled message, Analytics, …. ).
    \n(e.g. menu item, button, image, link – just add ctc_chat as a class name)

    \n

    Custom Element

    \n

    🎉 Greetings Dialog

    \n

    Add customizable greeting dialogs for boosting user attention and increasing interaction. Seamlessly integrate these greetings into your website for better engagement.

    \n
      \n
    • Greetings-1 – Customizable Design: Personalize the design to match your branding with full control over fonts, colors, images, and more.
    • \n
    • Greetings-2 – Content Specific: Deliver focused messages that resonate effectively with your users.
    • \n
    \n

    📝 Form Filling

    \n

    Get the necessary information from the website visitors before initiating the chat.

    \n
      \n
    • Get an email notification when the user fills out the form.
    • \n
    • Call a webhook with the form data to integrate with other applications. Using integrations tools add data in Google Sheet, CRM and many more applications.
    • \n
    • Form data can be prefilled in the WhatsApp chat window.
    • \n
    \n

    PRO: Greetings-Form

    \n

    👥 Multi-Agent

    \n

    Add multiple WhatsApp chat accounts within a single Greetings dialog.

    \n
      \n
    • We can set different time ranges for each agent. (24×7 or multiple time ranges for each day of the week).
    • \n
    • Offline Agents\n
        \n
      • Chat when offline (display agent with next available time).
      • \n
      • Disable chat (display agent with next available time).
      • \n
      • Hide offline agents
      • \n
      \n
    • \n
    \n

    PRO: Multi-Agent

    \n

    ⌛ Greetings Actions

    \n
      \n
    • Click Action: Displays greeting dialog when a user clicks on any element with the class name: ‘ctc_greetings’.
    • \n
    • ViewPort Action: Displays Greetings When an element is in/reached viewport(25% margin) with the Class name: ‘ctc_greetings_now’ [PRO]
    • \n
    • Time, Scroll Actions: Display Greetings based on time, scroll [PRO]
    • \n
    \n

    These actions enhance user interaction by triggering greetings at the right moments, improving engagement and support efficiency.

    \n

    Actions

    \n

    🔴 Notification Badge

    \n

    Get user attention by displaying a notification badge on the WhatsApp Chat element.

    \n

    Customize the notification badge with the notification count, text color, background color, border color, and time delay to display the notification badge.

    \n

    Notification Badge

    \n

    ✳️ Position to Place

    \n
      \n
    • Add WhatsApp at any position of the screen
      \n(not limited to fixed positions).
    • \n
    • Different positions for Mobile and Desktop.
    • \n
    \n

    ⏩ Pre-filled Message

    \n

    Text that appears in the WhatsApp chat window when the user clicks on the WhatsApp.

    \n

    Users can easily start the conversation.

    \n

    Variables to change values dynamically

    \n
      \n
    • {site} -> Website Title
    • \n
    • {title} -> Page Title
    • \n
    • {url} -> Web page URL
    • \n
    • [url] -> Web page full URL including query parameters
    • \n
    \n

    With these variables, we can understand from which page the user started WhatsApp chat.

    \n

    Pre-filled Message

    \n

    🛍️ WooCommerce

    \n

    WooCommerce product pages

    \n

    For WooCommerce, single product pages can overwrite the main setings to add a product specific message using dynamic variables.

    \n
      \n
    • Pre-filled Message
    • \n
    • Call to Action
    • \n
    • Greetings Template, Content [PRO]
    • \n
    \n

    Additional variables, specific to WooCommerce single product page to change values dynamically

    \n
      \n
    • {product} -> Product Name
    • \n
    • {price} -> Product Price (current price)
    • \n
    • {regular_price} -> Regular product price (without any sale)
    • \n
    • {sku} -> Stock keeping unit
    • \n
    \n

    For Shop, Cart, Checkout, and Account pages we can overwrite at page level settings

    \n

    Add WhatsApp – Single Product Pages

    \n

    Add WhatsApp button or icon at WooCommerce single product pages.

    \n
      \n
    • Before Main Content
    • \n
    • Before Product
    • \n
    • Before Product Summary
    • \n
    • Product Summary
    • \n
    • Before Add to Cart Form
    • \n
    • Before Cart Button
    • \n
    • After Cart Button
    • \n
    • After Add to Cart Form
    • \n
    • After Product
    • \n
    • After product summary
    • \n
    \n

    We can add dynamic variables for the Call to Action.
    \nE.g. Buy {product}
    \n{product} will be replaced with the product name for all product pages.

    \n

    Add WhatsApp Icon/Button in WooCommerce Product pages

    \n

    Add WhatsApp – Shop Page

    \n

    Add WhatsApp to WooCommerce Products list (shop page, related products list)

    \n

    Shop page

    \n

    📒 Page Level Settings

    \n

    At the page level, we can overwrite the settings for each post. We can add a different Whatsapp Number, Prefilled Message, Call to Action for each post
    \n(while editing the post, in the right sidebar ‘Click to Chat’ meta box)

    \n
      \n
    • WhatsApp Number
    • \n
    • Call to Action
    • \n
    • Pre-filled Message
    • \n
    • Display Settings
    • \n
    \n

    PRO:

    \n
      \n
    • Change Styles
    • \n
    • Time Delay
    • \n
    • Scroll Delay
    • \n
    • Greetings Template
    • \n
    • Greetings Header, Main, Bottom Content
    • \n
    \n

    Page-level settings

    \n

    📈 Analytics

    \n

    Creates an Event when the user clicks on the WhatsApp Icon/button.

    \n

    Google Analytics

    \n

    Meta Pixel

    \n

    Google Ads Conversations

    \n

    Webhooks

    \n

    Connect other applications using Integrate, Automation tools like Zapier, IFTTT, Pipedream, etc.

    \n

    Webhooks

    \n

    ⭐ PRO

    \n
      \n
    • Multi-Agent: Displays multiple WhatsApp chat accounts\n
        \n
      • Set multiple time ranges for each agent’s availability
      • \n
      • Hide offline agents or display agent when offline with next available time
      • \n
      \n
    • \n
    • Random Numbers: Navigates to a random WhatsApp number from the predefined list
    • \n
    • Form: Get the necessary information from the website visitors, before initiating the chat\n
        \n
      • Get an email notification when the user fills out the form.
      • \n
      • Use webhooks to send form data to external apps in real-time for seamless integration.
      • \n
      • Prefill WhatsApp messages with user-provided form data to streamline conversations
      • \n
      \n
    • \n
    • Business hours: Offline/Online Settings\n
        \n
      • Set business hours for a specific time range within a day, specific days in a week.
      • \n
      • Hide the widget during offline hours or automatically change the WhatsApp numbers and call to action.
      • \n
      \n
    • \n
    • Display based on website visitor’s country
    • \n
    • Webhooks – Dynamic variables\n
        \n
      • {url} – Current page URL.
      • \n
      • {time} – Time user interacted with the WhatsApp Button/Icon.
      • \n
      • {number} – WhatsApp Number associated with the icon/button.
      • \n
      • Get values from url parameters by adding name with in single square brackets E.g. [gclid], [utm_source]
      • \n
      • Get values from cookies by adding the name with in double square brackets. E.g. [[cookie_name]]
      • \n
      \n
    • \n
    • Get additional values at Google Analytics, Meta Pixel\n
        \n
      • Get values from url parameters. E.g. [gclid], [utm_source]
      • \n
      • Get values from cookies. E.g. [[cookie_name]]
      • \n
      \n
    • \n
    • Greetings Actions: (for all greeting dialogs: Greetings-1, Greetings-2, Form, Multi-agent)\n
        \n
      • Display greetings dynamically based on user actions such as\n
          \n
        • Time: Time spent on the page,
        • \n
        • Scroll: Page scroll percentage,
        • \n
        • Click: specific button clicks
        • \n
        • ViewPort: when an element becomes visible in the viewport.
        • \n
        \n
      • \n
      \n
    • \n
    • Position to place\n
        \n
      • Fixed: Fixed position on the screen (default position)
      • \n
      • Absolute: Fixed position to the body content. (Moves when the user scrolls the page)
      • \n
      \n
    • \n
    • Time Delay & Scroll Delay: Display WhatsApp widget after a specified time delay or once the user scrolls a certain percentage of the page.
    • \n
    • Display based on Website visitor’s login status
    • \n
    • Page-level settings: Fine-tune WhatsApp button behavior for individual pages. Change styles, time delays, scroll delay, Greetings Template, and Greetings Content
    • \n
    • WooCommerce: Customize WhatsApp widget behavior specifically for WooCommerce pages\n
        \n
      • Overwrite greetings template, Content for Single product pages.
      • \n
      • Overwrite settings for Shop, Checkout, and Account pages at page-level settings
      • \n
      \n
    • \n
    \n

    🔆 PRO

    \n

    🎯 Localization

    \n

    Click to Chat is Compatible with translation plugins. WPML, Polylang.

    \n

    It is easy to set up different values for each language

    \n
      \n
    • WhatsApp Number
    • \n
    • Call to Action
    • \n
    • Pre-filled Message
    • \n
    • Greetings Content
    • \n
    • Group ID
    • \n
    • Share Text
    • \n
    \n

    Setup for WPML, Polylang

    \n

    🚀 Performance

    \n
      \n
    • Rich in features, but the site’s front end is very lightweight.
    • \n
    \n

    We highly concentrate on speed and performance.

    \n

    👓 Display Settings

    \n

    Customize the visibility of the widget by showing or hiding styles based on specific settings, such as:

    \n
      \n
    • Post type
    • \n
    • Post Id
    • \n
    • Category name
    • \n
    • Device Type(Mobile, Desktop)
    • \n
    • WooCommerce single product pages
    • \n
    \n

    PRO:

    \n
      \n
    • Time delay
    • \n
    • Scroll delay
    • \n
    • Selected time range in a day
    • \n
    • Selected Days in a week
    • \n
    • Website visitor login status
    • \n
    • Website visitor country
    • \n
    \n

    ✅ Opt-in

    \n

    Make the website users opt-in / accept consent before initiating the chat.

    \n

    Opt-in

    \n

    ⛳ Shortcodes

    \n

    Use shortcodes to instead a WhatsApp icon or button with inline the Post content, widget area.

    \n

    change the default setting values using shortcode attributes – WhatsApp Number, Style, Pre-filled message, Call to Action.

    \n

    Chat Shortcodes

    \n

    [ht-ctc-chat]

    \n

    To change the WhatsApp number use the ‘number’ attribute

    \n

    [ht-ctc-chat number=915123456789]

    \n

    Shortcodes for Chat

    \n

    Group

    \n

    Enable the Group chat feature and add WhatsApp Group id in the plugin settings.

    \n

    Make it easy for your customers to join Whatsapp Group.

    \n

    Group

    \n

    Share

    \n

    Let users share your website with their WhatsApp contacts and get more leads.

    \n

    Share

    \n

    🌏 Help Translate The Plugin

    \n

    Help by Translating the plugin to be available in more languages

    \n", "screenshots": "
    1. \"8

      8 Styles, 1 Add your own image or GIF. Add at any position to the screen (Desktop, Mobile: can set different styles, positions)

    2. \"Select

      Select a style and customize it to match your website design.

    3. \"Chat

      Chat Settings - Enter WhatsApp Number, prefilled message, call to action, desktop: web view / desktop app view

    4. \"Style,

      Style, position to place (at any position of the screen) - Desktop, Mobile

    5. \"Add

      Add WhatsApp Menu item (Custom Element)

    6. \"Change

      Change Values at the page level: ''WhatsApp Number'', ''Call to action'', ''Group ID''

    7. \"Style

      Style - 5 - Image with content box

    8. \"Style

      Style - 8 - Materialize button

    9. \"Style

      Style - 99 - Add your own Image / GIF(Animated Image)

    10. \"Customize

      Customize Styles

    11. \"Enable

      Enable Group, Share Settings

    12. \"Group

      Group settings page

    13. \"Share

      Share settings page

    14. \"Display

      Display settings

    15. \"Webhooks\"

      Webhooks

    16. \"prefilled,

      prefilled, call to action for WooCommerce single product pages

    17. \"Animations\"

      Animations

    18. \"Analytics

      Analytics - Google Analytics, Meta Pixel, Google Ads Conversations

    ", "installation": "

    From Dashboard ( WordPress admin )

    \n
      \n
    • plugins -> Add New
    • \n
    • search for ‘click to chat’
    • \n
    • click on Install Now and then Activate.
    • \n
    \n

    using FTP or similar

    \n
      \n
    • Unzip “Click-to-Chat” file and
    • \n
    • Upload “Click-to-Chat” folder to the “/wp-content/plugins/” directory.
    • \n
    • Activate the plugin through the “Plugins” menu in WordPress.
    • \n
    \n"}, "versions": {"4.0": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.0.zip", "3.35": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.3.35.zip", "4.12": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.12.zip", "4.19": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.19.zip", "4.20": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.20.zip", "4.21": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.21.zip", "4.22": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.22.zip", "4.23": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.23.zip", "4.24": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.24.zip", "4.25": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.25.zip", "4.26": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.26.zip", "4.27": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.27.zip", "4.28": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.28.zip", "4.29": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.29.zip", "4.30": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.30.zip", "1.7.2": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.1.7.2.zip", "trunk": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.zip"}, "downloaded": 17594938, "description": "

    WhatsApp Chat. Let’s make your Web page visitors contact you through “WhatsApp” or “WhatsApp Business” with a single click (WhatsApp Chat, Group).

    \n

    Demo | Documentation | Support | PRO

    \n

    WhatsApp Chat

    \n

    Add ‘WhatsApp’ or ‘WhatsApp Business’ Number and let your website visitors contact you with a single click.

    \n

    📱 Mobile: Open the WhatsApp Mobile App for a seamless connection.

    \n

    💻 Desktop: Direct visitors to the WhatsApp Desktop App or Web WhatsApp page (web.whatsapp.com)

    \n

    \n

    💎 Styles

    \n

    Select a style that complements the design of your website.

    \n
      \n
    • 8 pre-defined customizable styles/designs
    • \n
    • Add your own Image/GIF
    • \n
    • Custom Element/Design (convert any element to a WhatsApp Chat element)
    • \n
    • Shortcodes (Add WhatsApp button/icon with inline the content)
    • \n
    • Different Styles, Positions for Mobile, Desktop
    • \n
    • Choose a style and customize it to match the website’s design
    • \n
    \n

    list of Styles | 🎨Customize Styles

    \n

    💡 Add Own Image

    \n

    Instead of selecting a pre-defined style, add any Image/Animated-image/GIF.

    \n

    🌈 Custom Element

    \n

    Convert any Element as a WhatsApp Chat Element by adding

    \n
      \n
    • Class/ID name: ‘ctc_chat’ (or)
    • \n
    • Href/link: ‘#ctc_chat’
    • \n
    \n

    The custom design element will navigate to WhatsApp based on plugin settings (WhatsApp Number, pre-filled message, Analytics, …. ).
    \n(e.g. menu item, button, image, link – just add ctc_chat as a class name)

    \n

    Custom Element

    \n

    🎉 Greetings Dialog

    \n

    Add customizable greeting dialogs for boosting user attention and increasing interaction. Seamlessly integrate these greetings into your website for better engagement.

    \n
      \n
    • Greetings-1 – Customizable Design: Personalize the design to match your branding with full control over fonts, colors, images, and more.
    • \n
    • Greetings-2 – Content Specific: Deliver focused messages that resonate effectively with your users.
    • \n
    \n

    📝 Form Filling

    \n

    Get the necessary information from the website visitors before initiating the chat.

    \n
      \n
    • Get an email notification when the user fills out the form.
    • \n
    • Call a webhook with the form data to integrate with other applications. Using integrations tools add data in Google Sheet, CRM and many more applications.
    • \n
    • Form data can be prefilled in the WhatsApp chat window.
    • \n
    \n

    PRO: Greetings-Form

    \n

    👥 Multi-Agent

    \n

    Add multiple WhatsApp chat accounts within a single Greetings dialog.

    \n
      \n
    • We can set different time ranges for each agent. (24×7 or multiple time ranges for each day of the week).
    • \n
    • Offline Agents\n
        \n
      • Chat when offline (display agent with next available time).
      • \n
      • Disable chat (display agent with next available time).
      • \n
      • Hide offline agents
      • \n
      \n
    • \n
    \n

    PRO: Multi-Agent

    \n

    ⌛ Greetings Actions

    \n
      \n
    • Click Action: Displays greeting dialog when a user clicks on any element with the class name: ‘ctc_greetings’.
    • \n
    • ViewPort Action: Displays Greetings When an element is in/reached viewport(25% margin) with the Class name: ‘ctc_greetings_now’ [PRO]
    • \n
    • Time, Scroll Actions: Display Greetings based on time, scroll [PRO]
    • \n
    \n

    These actions enhance user interaction by triggering greetings at the right moments, improving engagement and support efficiency.

    \n

    Actions

    \n

    🔴 Notification Badge

    \n

    Get user attention by displaying a notification badge on the WhatsApp Chat element.

    \n

    Customize the notification badge with the notification count, text color, background color, border color, and time delay to display the notification badge.

    \n

    Notification Badge

    \n

    ✳️ Position to Place

    \n
      \n
    • Add WhatsApp at any position of the screen
      \n(not limited to fixed positions).
    • \n
    • Different positions for Mobile and Desktop.
    • \n
    \n

    ⏩ Pre-filled Message

    \n

    Text that appears in the WhatsApp chat window when the user clicks on the WhatsApp.

    \n

    Users can easily start the conversation.

    \n

    Variables to change values dynamically

    \n
      \n
    • {site} -> Website Title
    • \n
    • {title} -> Page Title
    • \n
    • {url} -> Web page URL
    • \n
    • [url] -> Web page full URL including query parameters
    • \n
    \n

    With these variables, we can understand from which page the user started WhatsApp chat.

    \n

    Pre-filled Message

    \n

    🛍️ WooCommerce

    \n

    WooCommerce product pages

    \n

    For WooCommerce, single product pages can overwrite the main setings to add a product specific message using dynamic variables.

    \n
      \n
    • Pre-filled Message
    • \n
    • Call to Action
    • \n
    • Greetings Template, Content [PRO]
    • \n
    \n

    Additional variables, specific to WooCommerce single product page to change values dynamically

    \n
      \n
    • {product} -> Product Name
    • \n
    • {price} -> Product Price (current price)
    • \n
    • {regular_price} -> Regular product price (without any sale)
    • \n
    • {sku} -> Stock keeping unit
    • \n
    \n

    For Shop, Cart, Checkout, and Account pages we can overwrite at page level settings

    \n

    Add WhatsApp – Single Product Pages

    \n

    Add WhatsApp button or icon at WooCommerce single product pages.

    \n
      \n
    • Before Main Content
    • \n
    • Before Product
    • \n
    • Before Product Summary
    • \n
    • Product Summary
    • \n
    • Before Add to Cart Form
    • \n
    • Before Cart Button
    • \n
    • After Cart Button
    • \n
    • After Add to Cart Form
    • \n
    • After Product
    • \n
    • After product summary
    • \n
    \n

    We can add dynamic variables for the Call to Action.
    \nE.g. Buy {product}
    \n{product} will be replaced with the product name for all product pages.

    \n

    Add WhatsApp Icon/Button in WooCommerce Product pages

    \n

    Add WhatsApp – Shop Page

    \n

    Add WhatsApp to WooCommerce Products list (shop page, related products list)

    \n

    Shop page

    \n

    📒 Page Level Settings

    \n

    At the page level, we can overwrite the settings for each post. We can add a different Whatsapp Number, Prefilled Message, Call to Action for each post
    \n(while editing the post, in the right sidebar ‘Click to Chat’ meta box)

    \n
      \n
    • WhatsApp Number
    • \n
    • Call to Action
    • \n
    • Pre-filled Message
    • \n
    • Display Settings
    • \n
    \n

    PRO:

    \n
      \n
    • Change Styles
    • \n
    • Time Delay
    • \n
    • Scroll Delay
    • \n
    • Greetings Template
    • \n
    • Greetings Header, Main, Bottom Content
    • \n
    \n

    Page-level settings

    \n

    📈 Analytics

    \n

    Creates an Event when the user clicks on the WhatsApp Icon/button.

    \n

    Google Analytics

    \n

    Meta Pixel

    \n

    Google Ads Conversations

    \n

    Webhooks

    \n

    Connect other applications using Integrate, Automation tools like Zapier, IFTTT, Pipedream, etc.

    \n

    Webhooks

    \n

    ⭐ PRO

    \n
      \n
    • Multi-Agent: Displays multiple WhatsApp chat accounts\n
        \n
      • Set multiple time ranges for each agent’s availability
      • \n
      • Hide offline agents or display agent when offline with next available time
      • \n
      \n
    • \n
    • Random Numbers: Navigates to a random WhatsApp number from the predefined list
    • \n
    • Form: Get the necessary information from the website visitors, before initiating the chat\n
        \n
      • Get an email notification when the user fills out the form.
      • \n
      • Use webhooks to send form data to external apps in real-time for seamless integration.
      • \n
      • Prefill WhatsApp messages with user-provided form data to streamline conversations
      • \n
      \n
    • \n
    • Business hours: Offline/Online Settings\n
        \n
      • Set business hours for a specific time range within a day, specific days in a week.
      • \n
      • Hide the widget during offline hours or automatically change the WhatsApp numbers and call to action.
      • \n
      \n
    • \n
    • Display based on website visitor’s country
    • \n
    • Webhooks – Dynamic variables\n
        \n
      • {url} – Current page URL.
      • \n
      • {time} – Time user interacted with the WhatsApp Button/Icon.
      • \n
      • {number} – WhatsApp Number associated with the icon/button.
      • \n
      • Get values from url parameters by adding name with in single square brackets E.g. [gclid], [utm_source]
      • \n
      • Get values from cookies by adding the name with in double square brackets. E.g. [[cookie_name]]
      • \n
      \n
    • \n
    • Get additional values at Google Analytics, Meta Pixel\n
        \n
      • Get values from url parameters. E.g. [gclid], [utm_source]
      • \n
      • Get values from cookies. E.g. [[cookie_name]]
      • \n
      \n
    • \n
    • Greetings Actions: (for all greeting dialogs: Greetings-1, Greetings-2, Form, Multi-agent)\n
        \n
      • Display greetings dynamically based on user actions such as\n
          \n
        • Time: Time spent on the page,
        • \n
        • Scroll: Page scroll percentage,
        • \n
        • Click: specific button clicks
        • \n
        • ViewPort: when an element becomes visible in the viewport.
        • \n
        \n
      • \n
      \n
    • \n
    • Position to place\n
        \n
      • Fixed: Fixed position on the screen (default position)
      • \n
      • Absolute: Fixed position to the body content. (Moves when the user scrolls the page)
      • \n
      \n
    • \n
    • Time Delay & Scroll Delay: Display WhatsApp widget after a specified time delay or once the user scrolls a certain percentage of the page.
    • \n
    • Display based on Website visitor’s login status
    • \n
    • Page-level settings: Fine-tune WhatsApp button behavior for individual pages. Change styles, time delays, scroll delay, Greetings Template, and Greetings Content
    • \n
    • WooCommerce: Customize WhatsApp widget behavior specifically for WooCommerce pages\n
        \n
      • Overwrite greetings template, Content for Single product pages.
      • \n
      • Overwrite settings for Shop, Checkout, and Account pages at page-level settings
      • \n
      \n
    • \n
    \n

    🔆 PRO

    \n

    🎯 Localization

    \n

    Click to Chat is Compatible with translation plugins. WPML, Polylang.

    \n

    It is easy to set up different values for each language

    \n
      \n
    • WhatsApp Number
    • \n
    • Call to Action
    • \n
    • Pre-filled Message
    • \n
    • Greetings Content
    • \n
    • Group ID
    • \n
    • Share Text
    • \n
    \n

    Setup for WPML, Polylang

    \n

    🚀 Performance

    \n
      \n
    • Rich in features, but the site’s front end is very lightweight.
    • \n
    \n

    We highly concentrate on speed and performance.

    \n

    👓 Display Settings

    \n

    Customize the visibility of the widget by showing or hiding styles based on specific settings, such as:

    \n
      \n
    • Post type
    • \n
    • Post Id
    • \n
    • Category name
    • \n
    • Device Type(Mobile, Desktop)
    • \n
    • WooCommerce single product pages
    • \n
    \n

    PRO:

    \n
      \n
    • Time delay
    • \n
    • Scroll delay
    • \n
    • Selected time range in a day
    • \n
    • Selected Days in a week
    • \n
    • Website visitor login status
    • \n
    • Website visitor country
    • \n
    \n

    ✅ Opt-in

    \n

    Make the website users opt-in / accept consent before initiating the chat.

    \n

    Opt-in

    \n

    ⛳ Shortcodes

    \n

    Use shortcodes to instead a WhatsApp icon or button with inline the Post content, widget area.

    \n

    change the default setting values using shortcode attributes – WhatsApp Number, Style, Pre-filled message, Call to Action.

    \n

    Chat Shortcodes

    \n

    [ht-ctc-chat]

    \n

    To change the WhatsApp number use the ‘number’ attribute

    \n

    [ht-ctc-chat number=915123456789]

    \n

    Shortcodes for Chat

    \n

    Group

    \n

    Enable the Group chat feature and add WhatsApp Group id in the plugin settings.

    \n

    Make it easy for your customers to join Whatsapp Group.

    \n

    Group

    \n

    Share

    \n

    Let users share your website with their WhatsApp contacts and get more leads.

    \n

    Share

    \n

    🌏 Help Translate The Plugin

    \n

    Help by Translating the plugin to be available in more languages

    \n", "donate_link": "", "num_ratings": 132, "screenshots": {"1": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-1.gif?rev=2902255", "caption": "8 Styles, 1 Add your own image or GIF. Add at any position to the screen (Desktop, Mobile: can set different styles, positions)"}, "2": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-2.gif?rev=2902255", "caption": "Select a style and customize it to match your website design."}, "3": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-3.png?rev=2902255", "caption": "Chat Settings - Enter WhatsApp Number, prefilled message, call to action, desktop: web view / desktop app view"}, "4": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-4.png?rev=2902255", "caption": "Style, position to place (at any position of the screen) - Desktop, Mobile"}, "5": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-5.png?rev=2902255", "caption": "Add WhatsApp Menu item (Custom Element)"}, "6": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-6.png?rev=2902255", "caption": "Change Values at the page level: ''WhatsApp Number'', ''Call to action'', ''Group ID''"}, "7": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-7.png?rev=2344071", "caption": "Style - 5 - Image with content box"}, "8": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-8.png?rev=2344071", "caption": "Style - 8 - Materialize button"}, "9": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-9.png?rev=2344071", "caption": "Style - 99 - Add your own Image / GIF(Animated Image)"}, "10": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-10.png?rev=2344071", "caption": "Customize Styles"}, "11": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-11.png?rev=2506390", "caption": "Enable Group, Share Settings"}, "12": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-12.png?rev=2536897", "caption": "Group settings page"}, "13": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-13.png?rev=2536897", "caption": "Share settings page"}, "14": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-14.png?rev=2536897", "caption": "Display settings"}, "15": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-15.png?rev=2536897", "caption": "Webhooks"}, "16": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-16.png?rev=2395899", "caption": "prefilled, call to action for WooCommerce single product pages"}, "17": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-17.png?rev=2506390", "caption": "Animations"}, "18": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-18.png?rev=2506390", "caption": "Analytics - Google Analytics, Meta Pixel, Google Ads Conversations"}}, "support_url": "https://wordpress.org/support/plugin/click-to-chat-for-whatsapp/", "contributors": {"holithemes": {"avatar": "https://secure.gravatar.com/avatar/582831487ba652d47cce84bc0019779ca75018e4b8eeab320f0cfb454a169f89?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/holithemes/", "display_name": "holithemes"}}, "last_updated": "2025-10-29 1:38pm GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.30.zip", "author_profile": "https://profiles.wordpress.org/holithemes/", "business_model": false, "repository_url": "", "upgrade_notice": {"using FTP or similar": "
      \n
    • Delete Click-to-Chat folder - your setting will not lost.
    • \n
    • unzip Click-to-Chat file and
    • \n
    • Upload "Click-to-Chat" folder to the "/wp-content/plugins/" directory.
    • \n
    • Activate the plugin through the "Plugins" menu in WordPress.
    • \n
    ", "From WordPress Dashboard": "
      \n
    • From wp-admin -> plugins
    • \n
    • Click Update now when a new version is available
    • \n
    • Or enable Auto-updates to update automatically
    • \n
    "}, "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-f0d8-7125-ac25-d21b0a0d639c", "name": "Click to Chat – HoliThemes", "slug": "click-to-chat-for-whatsapp", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761745080, "version": "4.30"}, "support_threads": 5, "requires_plugins": [], "short_description": "WhatsApp Chat🔥. Let's make your Web page visitors contact you through 'WhatsApp', 'WhatsApp Business'. Add matching Widget✅", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 4}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1a73-701c-8233-88c19af62379', 'did:web:api.aspiredev.org:packages:wp-plugin:code-snippets', 'code-snippets', 'Code Snippets', '

    ✂ Code Snippets provides an effortless way to enhance your WordPress site.

    -

    🚀 Upgrade to Code Snippets Pro for complete CSS, JavaScript, Gutenberg, Elementor and cloud synchronisation integrations. Elevate your snippets experience now!

    -

    Say goodbye to the hassle of tweaking your theme’s functions.php file and downloading endless plugins – Code Snippets simplifies the process!

    -

    A snippet is like a mini-plugin for your WordPress site, providing added functionality without the clutter.

    -

    Unlike other solutions that involve dumping code into your functions.php file, Code Snippets offers an intuitive graphical interface for seamless integration and real-time execution. Managing snippets is as easy as activating and deactivating plugins, only without the bloat and overhead.

    -

    🎥 Watch a quick overview by Imran Siddiq:

    -

    -

    ☁️ Each copy of Code Snippets includes full integration with the community-powered Code Snippets Cloud platform, providing easy access to hundreds of tweaks and enhancements ready to power-up any WordPress site.

    -

    🌐 Connect with us:

    - -

    🌟 Like our plugin? Find it useful? Please consider sharing your experience by leaving a review on WordPress.org. Your feedback is instrumental to shaping our future growth!

    -

    🌍 We’d like to thank the wonderful people who have helped contribute translations to allow Code Snippets to be used in different languages. You can find a full list here.

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Code Snippets", "slug": "code-snippets", "tags": {"css": "css", "php": "php", "code": "code", "snippets": "snippets", "multisite": "multisite"}, "added": "2012-06-13", "icons": {"1x": "https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878", "svg": "https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878"}, "author": "Code Snippets Pro", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/code-snippets/assets/banner-772x250.png?rev=3147867", "high": "https://ps.w.org/code-snippets/assets/banner-1544x500.png?rev=3147867"}, "ratings": {"1": 29, "2": 7, "3": 6, "4": 12, "5": 433}, "version": "3.8.1", "homepage": "https://codesnippets.pro", "requires": "5.0", "sections": {"faq": "

    A full list of our Frequently Asked Questions can be found at help.codesnippets.pro.

    \n\n
    \nHow can I recover my site if it is crashed by a buggy snippet?\n\n

    \n

    You can recover your site by enabling the Code Snippets safe mode feature. Instructions for how to turn it on are available here: https://help.codesnippets.pro/article/12-safe-mode.

    \n

    \n
    \nWill I lose my snippets if I change the theme or upgrade WordPress?\n\n

    \n

    No, the snippets are stored in the WordPress database, independent of the theme and unaffected by WordPress upgrades.

    \n

    \n
    \nCan the plugin be completely uninstalled?\n\n

    \n

    If you enable the ‘Complete Uninstall’ option on the plugin settings page, Code Snippets will clean up all of its data when deleted through the WordPress ‘Plugins’ menu. This includes all stored snippets. If you would like to preserve the snippets, ensure they are exported first.

    \n

    \n
    \nCan I copy snippets that I have created to another WordPress site?\n\n

    \n

    Yes! You can individually export a single snippet using the link below the snippet name on the ‘Manage Snippets’ page or bulk export multiple snippets using the ‘Bulk Actions’ feature. Snippets can later be imported using the ‘Import Snippets’ page by uploading the export file.

    \n

    \n
    \nCan I export my snippets to PHP for a site where I’m not using the Code Snippets plugin?\n\n

    \n

    Yes. Click the checkboxes next to the snippets you want to export, and then choose Export to PHP from the Bulk Actions menu and click Apply. The generated PHP file will contain the exported snippets’ code, as well as their name and description in comments.

    \n

    \n
    \nCan I run network-wide snippets on a multisite installation?\n\n

    \n

    You can run snippets across an entire multisite network by Network Activating Code Snippets through the Network Dashboard. You can also activate Code Snippets just on the main site, and then individually on other sites of your choice.

    \n

    \n
    \nWhere are the snippets stored in my WordPress database?\n\n

    \n

    Snippets are stored in the wp_snippets table in the WordPress database. The table name may differ depending on what your table prefix is set to.

    \n

    \n
    \nWhere can I go for help or suggest new features?\n\n

    \n

    You can get help with Code Snippets, report bugs or errors, and suggest new features and improvements either on the WordPress Support Forums or on GitHub.

    \n

    \n
    \nHow can I help contribute to the development of the Code Snippets plugin?\n\n

    \n

    The best way to do this is to fork the repository on GitHub and send a pull request.

    \n

    \n
    \nHow can I report security bugs found in this plugin?\n\n

    \n

    You can report security bugs found in the source code of this plugin through the Patchstack Vulnerability Disclosure Program. The Patchstack team will assist with verification, triage, and notification of security vulnerabilities.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The free plan is very limited

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy moyela on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin only allowed me add custom HTML and PHP. So I tried WPCode instead and I can add custom HTML, CSS, JS, and PHP for free.

    \n\n\n\n

    With that perspective this tool is limited unless you pay for the pro plan.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Discounts can not be applied as promised

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy downtownck on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It is a great plugin except for that although they promise discounts for lifetime packs with email messages but when you want to buy it , they apply original price.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential Plugin for Inserting and Controlling Snippets

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy soswordpress on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    There''s no other plugin that does what Code Snippets does. You don''t even need to look.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    muy buen plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Javier Burgos Arratibel (javiburg2) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Muy buen plugin, el código se refleja en la página web

    \n\n\n\n

    Very good plugin, the code is reflected on the website.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential Plugin for Keeping Custom Code Organized

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Paul Filkin on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using Code Snippets to manage various customizations on my WordPress site, and it''s been a game-changer. Previously, I was adding everything to my main custom CSS file, which was getting messy and hard to manage.

    \n\n\n\n

    With Code Snippets, I can now organize my customizations into separate, well-documented snippets with clear descriptions and tags. This makes it incredibly easy to find, edit, enable, or disable specific features without hunting through thousands of lines of code.

    \n\n\n\n

    I recently used it to customize my WooCommerce shop page - removing default elements, adding custom widgets to the sidebar, and styling everything to match my site''s design. Being able to separate PHP snippets (for functionality) from CSS snippets (for styling) and clearly label each one has made my workflow so much cleaner.

    \n\n\n\n

    The ability to easily activate/deactivate snippets for testing is brilliant - no more commenting out blocks of code or risking syntax errors. The plugin is intuitive, well-designed, and has saved me countless hours of frustration.

    \n\n\n\n

    Highly recommended for anyone who needs to add custom code to WordPress without cluttering their theme files!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A must-have tool in our daily workflow

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Robbert - ROS WEB (robbert444) on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We’ve been using Code Snippet for quite some time now and recently upgraded to the PRO license. The additional features and reliability make it absolutely worth it. Highly recommended for anyone working with WordPress and custom development!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Exactly what I wanted todo

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy csdsubscriber on October 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I needed to create a custom form that would send emails to different recipients based on query string parameter. I was able to create a shortcode to do just that. Really slick!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useful plugin and excellent customer care!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy roccoiannalfo on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Code Snippets is easy and efficient.

    \n\n\n\n

    If you need help, the customer service is fast and very kind!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Causing trouble on Divi sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rosenborg on September 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin can cause problems on Divi websites by preventing the CSS animations enabled in Divi modules from running.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support doesn't exist

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy painlessseo on July 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I asked a straightforward question 5 WEEKS ago, never got a single reply. I even followed up on my own thread and tagged one of the developers. NOTHING! NOT A SINGLE RESPONSE.

    Edit: After I left a review, their team gave a clear response and answered my question in the Support forum. I updated the rating to reflect that they did follow up and help.

    \n
    \n
    \n", "changelog": "

    3.8.1 (2025-10-28)

    \n

    Fixed

    \n
      \n
    • Improved file-based snippet handling for multisite installations.
    • \n
    \n

    3.8.0 (2025-10-24)

    \n

    Added

    \n
      \n
    • @CarolinaOP and @louiswol94 join the team as plugin contributors.
    • \n
    • File-based execution mode for snippets (Optional in Plugin Settings).
    • \n
    • Version switch option, to help easily rollback the plugin to an earlier release.
    • \n
    • Minor UI improvements to the editor and sidebar.
    • \n
    \n

    Changed

    \n
      \n
    • Prefixed Composer packages to reduce collisions with other plugins.
    • \n
    • Snippets REST API now supports pagination via page and per_page query parameters.
    • \n
    • Improved editor preview behavior.
    • \n
    \n

    Fixed

    \n
      \n
    • Fixed issues with snippet evaluation and front-end initialization in edge cases.
    • \n
    • Improved reliability of snippet evaluation.
    • \n
    • JavaScript and CSS snippets loading twice due to a conditions bug. (PRO)
    • \n
    • Fixed issue where some conditions didn’t work due to loading before the loop. (PRO)
    • \n
    \n

    3.7.0 (2025-08-29)

    \n

    Added

    \n
      \n
    • New ‘conditions’ feature: control where and when snippets execute with a powerful logic builder. (PRO)
    • \n
    \n

    Changed

    \n
      \n
    • Redesigned edit menu with refreshed look and functionality.
    • \n
    • Updated snippet type badges to be more visually distinct.
    • \n
    • Redesigned tooltips used throughout the plugin.
    • \n
    • Moved content snippet shortcode options into separate modal window.
    • \n
    • Updated snippet tag editor to use built-in WordPress tag editor.
    • \n
    • Created proper form for sharing beta feedback.
    • \n
    • Improved UX of snippet activation toggle.
    • \n
    \n

    Fixed

    \n
      \n
    • Fetching active snippets on a multisite network now respects the ‘priority’ field above all else when ordering snippets.
    • \n
    • Cloud search appears correctly and allows downloading snippets in the free version of Code Snippets.
    • \n
    • Improved performance of loading admin menu icon.
    • \n
    \n

    3.6.9 (2025-02-17)

    \n

    Changed

    \n
      \n
    • Updated Cloud_API::get_bundles() to properly check bundle data and return an empty array if no valid bundles are present.
    • \n
    • Refactored Cloud_List_Table::fetch_snippets() to always return a valid Cloud_Snippets instance.
    • \n
    • Cleaned up bundle iteration code and improved translation handling in the bundles view.
    • \n
    \n

    Fixed

    \n
      \n
    • Fixed errors in bundle iteration by adding a check for the bundles array before iterating.
    • \n
    \n

    3.6.8 (2025-02-14)

    \n

    Added

    \n
      \n
    • code_snippets/hide_welcome_banner filter hook for hiding welcome banner in dashboard.
    • \n
    \n

    Changed

    \n
      \n
    • Updated Freemius SDK to the latest version. (PRO)
    • \n
    \n

    Removed

    \n
      \n
    • Functionality allowing [code_snippet] shortcodes to be embedded recursively – it will be re-added in a future version.
    • \n
    \n

    Fixed

    \n
      \n
    • Shortcodes embedded within [code_snippet] shortcodes not evaluating correctly.
    • \n
    • Translation functions being called too early in some instances when loading plugin settings.
    • \n
    • ‘Generate’ button not appearing on some sites. (PRO)
    • \n
    • Incorrect arrow entity used in cloud list table (props to [brandonjp]).
    • \n
    • Removed reference to missing plugins.css file in core plugin version.
    • \n
    \n

    3.6.7 (2025-01-24)

    \n

    Added

    \n
      \n
    • Generated snippet shortcode tags will include the snippet name, for easier identification.
    • \n
    • Admin notices will dismiss automatically after five seconds. (#208)
    • \n
    \n

    Changed

    \n
      \n
    • Updated CSS to use latest Sass features.
    • \n
    • Moved theme selector to just above editor preview on settings page (thanks to brandonjp). (#206)
    • \n
    • [code_snippet] shortcodes can now be nested within each other. (#198)
    • \n
    \n

    Fixed

    \n
      \n
    • Save buttons above editor did not follow usual validation process in Pro. (PRO) (#197)
    • \n
    • Minor inconsistencies in consistent UI elements between Core and Pro.
    • \n
    • Tags input not allowing input. (#211)
    • \n
    • Issue with Elementor source code widget. (PRO) (#205)
    • \n
    • Snippet descriptions not visible when viewing cloud search results.
    • \n
    • Snippet import page not displaying number of successfully imported snippets.
    • \n
    • Use UTC time when deciding when to display campaign notices.
    • \n
    \n

    3.6.6.1 (2024-11-27)

    \n

    Fixed

    \n
      \n
    • Redeployment of v3.6.6 to overcome issue with initial build.
    • \n
    • Type issue when caching cloud links. (PRO)
    • \n
    \n

    3.6.6 (2024-11-27)

    \n

    Changed

    \n
      \n
    • Improved compatability with modern versions of PHP.
    • \n
    • Extended welcome API to include admin notices.
    • \n
    \n

    Fixed

    \n
      \n
    • Memory issue from checking aggregate posts while loading front-end syntax highlighter.
    • \n
    • Translation functions being called too early on upgrade, resulting in localisation loading errors.
    • \n
    • Bug preventing the ‘share on network’ status of network snippets from correctly updating.
    • \n
    • Incorrect logic controlling when to display ‘Save Changes’ or ‘Save Changes and Activate’ buttons.
    • \n
    • Old notices persisting when switching between editing and creating snippets.
    • \n
    \n

    3.6.5.1 (2024-05-24)

    \n
      \n
    • Redeployment of v3.6.5 to overcome issue with initial build.
    • \n
    \n

    3.6.5 (2024-05-24)

    \n

    Added

    \n
      \n
    • New admin menu providing useful resources and updates on the Code Snippets plugin and community.
    • \n
    \n

    3.6.4 (2024-03-15)

    \n

    Added

    \n
      \n
    • AI generation for all snippet types: HTML, CSS, JS. (PRO)
    • \n
    • Button to create a cloud connection directly from the Snippets menu when disconnected. (PRO)
    • \n
    \n

    Changed

    \n
      \n
    • Increment the revision number of CSS and JS snippet when using the ‘Reset Caches’ debug action. (PRO)
    • \n
    • UX in generate dialog, such as allowing ‘Enter’ to submit the form. (PRO)
    • \n
    \n

    Fixed

    \n
      \n
    • Minor type compatability issue with newer versions of PHP.
    • \n
    • Undefined array key issue when initiating cloud sync. (PRO)
    • \n
    • Bug preventing downloading a single snippet from a bundle. (PRO)
    • \n
    • Translations not loading for strings in JavaScript files.
    • \n
    \n

    3.6.3 (2023-11-13)

    \n

    Added

    \n
      \n
    • Added debug action for resetting snippets caches.
    • \n
    \n

    Fixed

    \n
      \n
    • Import error when initialising cloud sync configuration. (PRO)
    • \n
    \n

    3.6.2 (2023-11-11)

    \n

    Removed

    \n
      \n
    • Removed automatic encoding of code content.
    • \n
    \n

    Fixed

    \n
      \n
    • Error when attempting to save shared network snippets marked as active.
    • \n
    • Type error when rendering checkbox fields without a stored or default value.
    • \n
    • Label for snippet sharing input incorrectly linked to input field.
    • \n
    • Error when attempting to download export files from Edit menu.
    • \n
    • Issue loading Freemius string overrides too early. (PRO)
    • \n
    • Fix redirect URL when connecting with OAuth on subdirectory or HTTPS sites. (PRO)
    • \n
    • Import error when attempting to completely uninstall the plugin.
    • \n
    \n

    3.6.1 (2023-11-07)

    \n

    Fixed

    \n
      \n
    • Issue accessing fields on Snippets class.
    • \n
    \n

    3.6.0 (2023-11-07)

    \n

    Added

    \n
      \n
    • Ability to authenticate with Code Snippets Cloud using OAuth. (PRO)
    • \n
    • Integration with GPT AI for generating snippets. (PRO)
    • \n
    • Ability to generate line-by-line descriptions of snippet code with GPT AI. (PRO)
    • \n
    • Ability to generate tags and description text from existing snippet code with GPT AI. (PRO)
    • \n
    • Added debug settings menu for manually performing problem-solving actions.
    • \n
    • Filter to disable scroll-into-view functionality for edit page notices.
    • \n
    \n

    Changed

    \n
      \n
    • Updated minimum PHP requirement to 7.4.
    • \n
    • Ensure that the URL of the edit snippet page changes when adding a new snippet.
    • \n
    • Snippet tags will automatically be added when focus is lost on the tags field.
    • \n
    \n

    Fixed

    \n
      \n
    • Moved active status border on edit name field to left-hand side.
    • \n
    • New notices will not scroll if already at top of page.
    • \n
    • Potential CSRF vulnerability allowing an authenticated user to reset settings.
    • \n
    \n

    3.5.1 (2023-09-15)

    \n

    Fixed

    \n
      \n
    • Undefined array key error when accessing plugin settings page. (PRO)
    • \n
    • Issue registering API endpoints affecting edit post screen. (PRO)
    • \n
    • Snippet ID instead of snippet object being passed to code_snippets/update_snippet action hook.
    • \n
    \n

    3.5.0 (2023-09-13)

    \n

    Added

    \n
      \n
    • Support for the Code Snippets Cloud API.
    • \n
    • Search and download public snippets.
    • \n
    • Codevault back-up and synchronisation. (PRO)
    • \n
    • Synchronised local snippets are automatically updated in Cloud. (PRO)
    • \n
    • Bulk actions – ‘update’ and ‘download’.
    • \n
    • Download snippets from public and private codevaults. (PRO)
    • \n
    • Search and download any publicly viewable snippet in Code Snippet Cloud by keyword or name of codevault. (PRO)
    • \n
    • Deploy snippets to plugin from Code Snippets Cloud app. (PRO)
    • \n
    • Bundles of Joy! Search and download Snippet Bundles in one go direct from Code Snippets Cloud. (PRO)
    • \n
    \n

    Changed

    \n
      \n
    • Redirect to snippets table when deleting snippet from the edit menu.
    • \n
    • Scroll new notices into view on edit menu.
    • \n
    \n

    Fixed

    \n
      \n
    • Error when attempting to update network shared snippets after saving. [#]
    • \n
    \n

    The full changelog is available on GitHub

    \n", "description": "

    ✂ Code Snippets provides an effortless way to enhance your WordPress site.

    \n

    🚀 Upgrade to Code Snippets Pro for complete CSS, JavaScript, Gutenberg, Elementor and cloud synchronisation integrations. Elevate your snippets experience now!

    \n

    Say goodbye to the hassle of tweaking your theme’s functions.php file and downloading endless plugins – Code Snippets simplifies the process!

    \n

    A snippet is like a mini-plugin for your WordPress site, providing added functionality without the clutter.

    \n

    Unlike other solutions that involve dumping code into your functions.php file, Code Snippets offers an intuitive graphical interface for seamless integration and real-time execution. Managing snippets is as easy as activating and deactivating plugins, only without the bloat and overhead.

    \n

    🎥 Watch a quick overview by Imran Siddiq:

    \n

    \n

    ☁️ Each copy of Code Snippets includes full integration with the community-powered Code Snippets Cloud platform, providing easy access to hundreds of tweaks and enhancements ready to power-up any WordPress site.

    \n

    🌐 Connect with us:

    \n\n

    🌟 Like our plugin? Find it useful? Please consider sharing your experience by leaving a review on WordPress.org. Your feedback is instrumental to shaping our future growth!

    \n

    🌍 We’d like to thank the wonderful people who have helped contribute translations to allow Code Snippets to be used in different languages. You can find a full list here.

    \n", "screenshots": "
    1. \"Managing

      Managing existing snippets

    2. \"Adding

      Adding a new snippet

    3. \"Editing

      Editing a snippet

    4. \"Importing

      Importing snippets from an export file

    ", "installation": "

    Automatic installation

    \n
      \n
    1. Log into your WordPress admin
    2. \n
    3. \n

      Click Plugins

      \n
    4. \n
    5. \n

      Click Add New

      \n
    6. \n
    7. \n

      Search for Code Snippets

      \n
    8. \n
    9. \n

      Click Install Now under “Code Snippets”

      \n
    10. \n
    11. Activate the plugin
    12. \n
    \n

    Manual installation

    \n
      \n
    1. Download the plugin
    2. \n
    3. Extract the contents of the zip file
    4. \n
    5. Upload the contents of the zip file to the wp-content/plugins/ folder of your WordPress installation
    6. \n
    7. Activate the Code Snippets plugin from ‘Plugins’ page.
    8. \n
    \n

    Network Activating Code Snippets through the Network Dashboard will enable a special interface for running snippets across the entire network.

    \n"}, "versions": {"3.0.0": "https://downloads.wordpress.org/plugin/code-snippets.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/code-snippets.3.0.1.zip", "3.1.0": "https://downloads.wordpress.org/plugin/code-snippets.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/code-snippets.3.1.1.zip", "3.2.1": "https://downloads.wordpress.org/plugin/code-snippets.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/code-snippets.3.2.2.zip", "3.3.0": "https://downloads.wordpress.org/plugin/code-snippets.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/code-snippets.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/code-snippets.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/code-snippets.3.4.2.zip", "3.5.0": "https://downloads.wordpress.org/plugin/code-snippets.3.5.0.zip", "3.6.0": "https://downloads.wordpress.org/plugin/code-snippets.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/code-snippets.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/code-snippets.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/code-snippets.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/code-snippets.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/code-snippets.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/code-snippets.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/code-snippets.3.6.7.zip", "3.6.8": "https://downloads.wordpress.org/plugin/code-snippets.3.6.8.zip", "3.7.0": "https://downloads.wordpress.org/plugin/code-snippets.3.7.0.zip", "3.8.0": "https://downloads.wordpress.org/plugin/code-snippets.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/code-snippets.3.8.1.zip", "trunk": "https://downloads.wordpress.org/plugin/code-snippets.zip", "2.10.0": "https://downloads.wordpress.org/plugin/code-snippets.2.10.0.zip", "2.10.1": "https://downloads.wordpress.org/plugin/code-snippets.2.10.1.zip", "2.12.0": "https://downloads.wordpress.org/plugin/code-snippets.2.12.0.zip", "2.12.1": "https://downloads.wordpress.org/plugin/code-snippets.2.12.1.zip", "2.13.0": "https://downloads.wordpress.org/plugin/code-snippets.2.13.0.zip", "2.13.1": "https://downloads.wordpress.org/plugin/code-snippets.2.13.1.zip", "2.13.2": "https://downloads.wordpress.org/plugin/code-snippets.2.13.2.zip", "2.13.3": "https://downloads.wordpress.org/plugin/code-snippets.2.13.3.zip", "2.14.0": "https://downloads.wordpress.org/plugin/code-snippets.2.14.0.zip", "2.14.1": "https://downloads.wordpress.org/plugin/code-snippets.2.14.1.zip", "2.14.2": "https://downloads.wordpress.org/plugin/code-snippets.2.14.2.zip", "2.14.3": "https://downloads.wordpress.org/plugin/code-snippets.2.14.3.zip", "2.14.4": "https://downloads.wordpress.org/plugin/code-snippets.2.14.4.zip", "2.14.5": "https://downloads.wordpress.org/plugin/code-snippets.2.14.5.zip", "2.14.6": "https://downloads.wordpress.org/plugin/code-snippets.2.14.6.zip", "3.6.5.1": "https://downloads.wordpress.org/plugin/code-snippets.3.6.5.1.zip", "3.6.6.1": "https://downloads.wordpress.org/plugin/code-snippets.3.6.6.1.zip", "3.7.0-beta": "https://downloads.wordpress.org/plugin/code-snippets.3.7.0-beta.zip", "3.5.0-beta.1": "https://downloads.wordpress.org/plugin/code-snippets.3.5.0-beta.1.zip", "3.7.0-beta.5": "https://downloads.wordpress.org/plugin/code-snippets.3.7.0-beta.5.zip", "3.7.0-beta.7": "https://downloads.wordpress.org/plugin/code-snippets.3.7.0-beta.7.zip", "3.7.1-beta.1": "https://downloads.wordpress.org/plugin/code-snippets.3.7.1-beta.1.zip", "3.7.1-beta.2": "https://downloads.wordpress.org/plugin/code-snippets.3.7.1-beta.2.zip", "3.7.1-beta.3": "https://downloads.wordpress.org/plugin/code-snippets.3.7.1-beta.3.zip"}, "downloaded": 15589153, "description": "

    ✂ Code Snippets provides an effortless way to enhance your WordPress site.

    \n

    🚀 Upgrade to Code Snippets Pro for complete CSS, JavaScript, Gutenberg, Elementor and cloud synchronisation integrations. Elevate your snippets experience now!

    \n

    Say goodbye to the hassle of tweaking your theme’s functions.php file and downloading endless plugins – Code Snippets simplifies the process!

    \n

    A snippet is like a mini-plugin for your WordPress site, providing added functionality without the clutter.

    \n

    Unlike other solutions that involve dumping code into your functions.php file, Code Snippets offers an intuitive graphical interface for seamless integration and real-time execution. Managing snippets is as easy as activating and deactivating plugins, only without the bloat and overhead.

    \n

    🎥 Watch a quick overview by Imran Siddiq:

    \n

    \n

    ☁️ Each copy of Code Snippets includes full integration with the community-powered Code Snippets Cloud platform, providing easy access to hundreds of tweaks and enhancements ready to power-up any WordPress site.

    \n

    🌐 Connect with us:

    \n\n

    🌟 Like our plugin? Find it useful? Please consider sharing your experience by leaving a review on WordPress.org. Your feedback is instrumental to shaping our future growth!

    \n

    🌍 We’d like to thank the wonderful people who have helped contribute translations to allow Code Snippets to be used in different languages. You can find a full list here.

    \n", "donate_link": "https://codesnippets.pro", "num_ratings": 487, "screenshots": {"1": {"src": "https://ps.w.org/code-snippets/assets/screenshot-1.png?rev=2256244", "caption": "Managing existing snippets"}, "2": {"src": "https://ps.w.org/code-snippets/assets/screenshot-2.png?rev=2256244", "caption": "Adding a new snippet"}, "3": {"src": "https://ps.w.org/code-snippets/assets/screenshot-3.png?rev=2256244", "caption": "Editing a snippet"}, "4": {"src": "https://ps.w.org/code-snippets/assets/screenshot-4.png?rev=2256244", "caption": "Importing snippets from an export file"}}, "support_url": "https://wordpress.org/support/plugin/code-snippets/", "contributors": {"ver3": {"avatar": "https://secure.gravatar.com/avatar/88ea286f4d2cc41f8cdd070c9fd4f3e14dfd9446d400e93e00c838f744612e52?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ver3/", "display_name": "Verdi Heinz"}, "0aksmith": {"avatar": "https://secure.gravatar.com/avatar/738d034ed8e847261a3e8fc7d772a80e4c04b8ec409043f244d32ca51bf58733?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/0aksmith/", "display_name": "Imants"}, "bungeshea": {"avatar": "https://secure.gravatar.com/avatar/8b10e43934caf7d83dd7e26516e49e6b7edb8b328c556619abcb29240251ce87?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bungeshea/", "display_name": "Shea Bunge"}, "johnpixle": {"avatar": "https://secure.gravatar.com/avatar/46434e9639cea795703706251ec0bd0e74661b911f7d16274bacd8babf958b18?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/johnpixle/", "display_name": "JohnPixle"}, "carolinaop": {"avatar": "https://secure.gravatar.com/avatar/d51267523c373e61a651df164e20b46556a2a36164ec87b9bac7de7beb92b80f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/carolinaop/", "display_name": "Carolina"}, "louiswol94": {"avatar": "https://secure.gravatar.com/avatar/fca3b179b12c98374e782c51a47273d4233fd8176109349656b3ed69024f4cfb?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/louiswol94/", "display_name": "Louis Wolmarans"}, "lightbulbman": {"avatar": "https://secure.gravatar.com/avatar/fe6d824c0d5c8056032b78c260422449f6fcbb6fc7e4802eebfdf4b86fd438e6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lightbulbman/", "display_name": "Atif Riaz"}}, "last_updated": "2025-10-28 9:50am GMT", "preview_link": "https://wordpress.org/plugins/code-snippets/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/code-snippets.3.8.1.zip", "author_profile": "https://profiles.wordpress.org/codesnippetspro/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f0d3-72ca-ac8b-722187ca9b96", "name": "Code Snippets", "slug": "code-snippets", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761645000, "version": "3.8.1"}, "support_threads": 19, "requires_plugins": [], "short_description": "An easy, clean and simple way to enhance your site with code snippets.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "https://codesnippets.pro/support/", "support_threads_resolved": 12}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1a85-7025-b831-36b6dcbc6ca8', 'did:web:api.aspiredev.org:packages:wp-plugin:coming-soon', 'coming-soon', 'Website Builder by SeedProd — Theme Builder, Landing Page Builder, Coming Soon Page, Maintenance Mode', '

    SeedProd – Drag & Drop WordPress Website Builder, Landing Page Builder, Coming Soon Page & Maintenance Mode

    -

    SeedProd was originally created in 2011 and allowed you to create a Coming Soon Page or a Maintenance Mode Page. You could work on your website in private while visitors see a “Coming Soon” or “Maintenance Mode” page. It still does this and really well!

    -

    But People loved SeedProd’s easy-to-use page builder so much and wanted to create their entire website with it. So, due to popular demand, you can do just that! Yes, you can now use SeedProd as a WordPress Website Builder.

    -

    This means you can build every part of your WordPress custom theme. WordPress Headers, Footers, Single Page Templates, Archives, Global Parts, WooCommerce Product Pages, WooCommerce Carts, and more. The best part is SeedProd is a No-Code Website Builder. No coding knowledge or experience is needed. Full Site Editing made easy.

    -

    In addition, SeedProd is still the best Landing Page Builder. Create a variety of landing pages that include but are not limited to: Sales Pages, Coming Soon Pages, Maintenance Mode Pages, 404 Pages, Login Pages, Webinar Pages, and Thank You Pages.

    -

    Sites and Pages built with SeedProd’s Drag and Drop Page builder are lightweight, super fast, and it’s so easy to use anyone can create a WordPress Website or Landing Page.

    -
    -

    SeedProd Pro
    - This plugin is the lite version of the SeedProd Website Builder and Landing Page plugin that comes with all the features you will ever need to create great-looking landing pages, coming soon pages, and maintenance modes pages within your WordPress website with no code. Click here to purchase SeedProd, the best premium WordPress Website Builder and Landing Page plugin now!

    -
    -

    Watch John Turner, the Co-Founder of SeedProd, build the SeedProd.com website with the SeedProd WordPress Website Builder

    -

    -

    Using SeedProd as a WordPress Website Builder

    -

    SeedProd is a WordPress Website Theme Builder, which allows you to create custom theme and template parts like: Headers, Footers, Front Pages, Content Pages, Blog Posts, Blog Pages, Archives, Search Results, Category Pages, Tag Pages, Sidebars, WooCommerce Product Pages. WooCommerce Checkout Pages, WooCommerce Cart Pages, WooCommerce Shop Pages all using our no-code Theme Builder.

    -

    Typically you would need a traditional WordPress theme to accomplish this. With SeedProd no theme is needed. No more conflicts between your theme and page builder. SeedProd is a complete turnkey solution that gets you a website fast.

    -

    Themes created with SeedProd can use any builder. Of course, SeedProd is the best page builder in our opinion, but you can use: Gutenberg Page Builder, Elementor Page Builder, Beaver Builder Page Builder, Divi Page Builder, Visual Composer Page Builder, Brizy Page Builder, Thrive Architect Page Builder, Beaver Builder, and the list goes on…

    -

    SeedProd also has a growing library of 200+ beautiful pre-built WordPress themes, templates, blocks, sections and complete websites to help you get started. Did I mention, no coding is required 🙂

    -

    Creating WordPress Landing Pages with SeedProd

    -

    What are landing pages? A landing page is a standalone web page that a person “lands” on after clicking through from an email, ad, or other digital location. Most of the time, these landing pages have a different design from the rest of your site and do not show your website’s standard header and footer.

    -

    Landing Pages have a particular purpose and desired user action; therefore, you want them to be distraction-free as possible. With SeedProd, it is super easy to create high-converting landing pages for any purpose, that are entirely separate from your website’s design.

    -

    You can use our Domain Mapping feature to put landings page on their own domain, our Dynamic Text feature to add personalization, or our WooCommerce Blocks to build one-off product pages. These are just a few of the many powerful features SeedProd provides.

    -

    Building Coming Soon Pages and Maintenance Mode Pages with SeedProd

    -

    SeedProd allows you to build a coming soon or maintenance mode page that will hide your site from visitors and search engines like Google. You can work on your website in private. When the website uses coming soon mode, the page will be indexed by Google as long as your site is not set to be private in WordPress.

    -

    In Maintenance Mode, we return a 503 header status that lets Google know your site is down for maintenance.

    -

    Both of these modes are essential for any WordPress Website to have.

    -

    The Free Version of SeedProd comes with a variety of Coming Soon Page and Maintenance Mode templates.

    -

    Full Page Builder Feature List:

    -
      -
    • WordPress Theme Builder – Create Headers, Footers, Pages, Posts, Archives, Sidebars, WooCommerce Pages or any part of a WordPress theme with our no-code Theme Builder.
    • -
    • Fast Drag & Drop Page Builder – Our page builder is super fast, lightweight and responsive.
    • -
    • WordPress Themes created with SeedProd work with any page builder.
    • -
    • Landing Pages work with any WordPress Theme.
    • -
    • 200+ Professionally Designed WordPress Themes, Landing Page Templates & Layout Sections
    • -
    • 80+ Pro Page Blocks – We have created a variety of blocks to display static and dynamic content.
    • -
    • Landing Page Templates – Sale Pages, Coming Soon Pages, Maintenance Mode Pages, Webinar Pages, Giveaway Pages, Thank You Pages, 404 Pages, and Login Pages
    • -
    • Responsive and Mobile Ready – Pages created with SeedProd look great on any device.
    • -
    • Premium Integrations – Collect emails with your favorite 3rd party email marketing service providers, including MailChimp, ActiveCampaign, ConvertKit, Constant Contact, and more…
    • -
    • Subscriber Management – Track every subscriber with or without a 3rd party email provider.
    • -
    • Stock Images – Get In-Plugin Access to over 2 Million Stock Images. Searchable, Resized, and Optimized for the Web.
    • -
    • Live Previews – We allow you to see live previews of the page while it’s in any state, draft, live, or just testing.
    • -
    • Layout Navigation – Use our layout navigation, which is a mini-map of your page, to easily rearrange sections, rows, columns, blocks, or access your page settings
    • -
    • Revision History, Undo & Redo – With one click reverts, you can go back to any previously saved point on your page and even see who made those particular changes.
    • -
    • Draft Mode – Work on your page in private without revealing its construction to the public.
    • -
    • Mobile Device Preview – See what your pages will look like on desktop and mobile devices before you go live.
    • -
    • Bloat Free Code – The code our builder produces, unlike other builders, is bloat-free and minimal to load your page quickly.
    • -
    • Color Schemes – Choose from over 20 built-in color schemes or create your own custom color palette to use throughout your landing page design.
    • -
    • Font Combinations – SeedProd integrates with Google Fonts to provide unlimited font combinations.
    • -
    • Custom CSS – Need to tweak the style of an element on your page? No problem!
    • -
    • Domain Mapping – Domain Mapping lets you create landing pages and point them to any domain name instead of your main website domain.
    • -
    • Dynamic Text – Dynamic Text lets you dynamically insert dates or values from a query parameter to personalize your landing pages.
    • -
    • Custom Scripts – Need to add a tracking script or widget from another website? Use the built-in header and footer scripts area to implement more technical tweaks.
    • -
    • Spam Protection – Protect your landing pages from spam, bots, and fraudulent submissions with Google ReCaptcha
    • -
    -

    WordPress Blocks:

    -
      -
    • Standard Blocks – Headline, Text, List, Button, Image, Video, Divider, Spacer, Column
    • -
    • Advanced Blocks – Giveaway, Contact Form, Optin Form, Countdown, Social Profiles, Social Sharing, Animated Headlines, Progress Bar, Icon, Testimonials, Image Carousel, Image Box, Icon Box, Nav Menu, Pricing Tables, Page Anchor, Star Rating, Accordion, Shortcode, Login Form, Google Maps, Seach Form, Custom HTML
    • -
    • Social Media Blocks – Facebook Page, Facebook Embed, Facebook Like, Facebook Comments, Twitter Embed Tweet, Twitter Embed Timeline, Twitter Tweet Button, Twitter Follow Button
    • -
    • WooCommerce Blocks – Add To Cart, Checkout, Cart, Product Grid, Recent Products, Sale Products, Best Selling Products, Featured Products, Top Rated Products, Menu Cart, Product Title, Product Featured Image, Product Price, Short Description, Additional Information, Products Related, Upsells, Product Rating, Product Stock, Archive Products, Product Data Tabs
    • -
    • Theme Template Tag Blocks: Posts, Post Title, Post Content, Post Excerpt, Featured Image, Author Box, Post Comments, Post Navigation: Post Info, Archive Title, Site Logo, Global Template Parts
    • -
    -

    WordPress Email Marketing Integrations:

    -
      -
    • ActiveCampaign
    • -
    • AWeber
    • -
    • Campaign Monitor
    • -
    • Constant Contact
    • -
    • ConvertKit
    • -
    • Drip
    • -
    • Facebook
    • -
    • GetResponse
    • -
    • Google Recaptcha
    • -
    • iContact
    • -
    • Mad Mimi
    • -
    • Mailchimp
    • -
    • MailerLite
    • -
    • Sendy
    • -
    • Sendinblue
    • -
    • Twitter
    • -
    • YouTube
    • -
    • Zapier
    • -
    -

    After reading this feature list, you can probably imagine why SeedProd is the best Drag & Drop WordPress Website Builder and Landing Page Builder in the market.

    -

    Give SeedProd a try.

    -

    Want to unlock more blocks and page builder features? Upgrade to SeedProd Pro.

    -

    Credits

    -

    This plugin is created by John Turner and Syed Balkhi.

    -

    Branding Guideline

    -

    SeedProd® is a registered trademark of SeedProd LLC. When writing about the Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder plugin by SeedProd, please use the following format.

    -
      -
    • SeedProd (correct)
    • -
    • Seedprod (incorrect)
    • -
    • Seed Prod (incorrect)
    • -
    • seedprod (incorrect)
    • -
    -

    What’s Next

    -

    If you like our WordPress Website Builder and Landing Page Builder plugin, then consider checking out our other projects:

    -
      -
    • OptinMonster – Get More Email Subscribers with the most popular conversion optimization plugin for WordPress.
    • -
    • WPForms – #1 drag & drop online form builder for WordPress.
    • -
    • MonsterInsights – See the Stats that Matter and Grow Your Business with Confidence. Best Google Analytics Plugin for WordPress.
    • -
    • WP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    • -
    • RafflePress – Best WordPress giveaway and contest plugin.
    • -
    • Smash Balloon – #1 social feeds plugin for WordPress.
    • -
    • SearchWP – Advanced WordPress search plugin.
    • -
    • PushEngage – Best web push notification plugin.
    • -
    • TrustPulse – Social Proof Notification to Boost Conversions.
    • -
    • All In One SEO – Best WordPress SEO plugin to help you improve your search engine rankings.
    • -
    • Easy Digital Downloads – From eBooks, to WordPress plugins, to PDF files and more, we make selling digital products a breeze.
    • -
    • AffiliateWP – An easy-to-use, reliable WordPress plugin that gives you the affiliate marketing tools you need to grow your business and make more money.
    • -
    • WP Simple Pay – Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required.
    • -
    • Sugar Calendar – Simple, light-weight, and provide just the major features you need for event management.
    • -
    -

    Visit WPBeginner to learn from our WordPress Tutorials and find out about other best WordPress plugins.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Website Builder by SeedProd — Theme Builder, Landing Page Builder, Coming Soon Page, Maintenance Mode", "slug": "coming-soon", "tags": {"landing-page": "landing page", "page-builder": "page builder", "website-builder": "website builder", "coming-soon-page": "coming soon page", "maintenance-mode": "maintenance mode"}, "added": "2014-01-21", "icons": {"1x": "https://ps.w.org/coming-soon/assets/icon-128x128.png?rev=2402575", "2x": "https://ps.w.org/coming-soon/assets/icon-256x256.png?rev=2402574"}, "author": "SeedProd", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/coming-soon/assets/banner-772x250.png?rev=2683809", "high": "https://ps.w.org/coming-soon/assets/banner-1544x500.png?rev=2683810"}, "ratings": {"1": 81, "2": 15, "3": 12, "4": 53, "5": 4532}, "version": "6.19.4", "homepage": "https://www.seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugin-uri-link", "requires": "5.0", "sections": {"faq": "\n
    \nCan I build my entire WordPress website with this page builder?\n\n

    \n

    With our WordPress Website Builder, you can now create your entire website and WordPress theme with SeedProd in the Pro version.

    \n

    You can build landing pages, coming soon pages, maintenance mode pages in the free version. In addition, in the Pro version, you can create 404 pages and login pages.

    \n

    \n
    \nWill the SeedProd Page Builder work with my Theme\n\n

    \n

    Coming soon pages, maintenance mode pages, and landing pages are standalone pages and are separate from your theme’s design. If you use the SeedProd WordPress Website Builder to build your website then a theme is not needed. SeedProd has its own theme built-in theme which can be customized. You can also use the Gutenberg, Elementor, Divi, Beaver Builder, Visual Composer, Thrive Architect, Brizy, or any other page builder on websites built with SeedProd. More Info »

    \n

    \n
    \nDoes it work with WooCommerce?\n\n

    \n

    Yes, you can build an entire WooCommerce Store with our WordPress Website Builder. Note: WooCommerce & eCommerce Integration are only available in the Pro version.

    \n

    \n
    \nDo I have to be a developer to use SeedProd’s Page Builder?\n\n

    \n

    No, SeedProd is an easy-to-use drag and drop page builder which requires no code or coding experience.

    \n

    \n
    \nWhat kind of landing pages can I create?\n\n

    \n

    You can create a variety of landing pages, including but are not limited to:
    \n* Coming Soon Pages
    \n* Maintenance Mode Pages
    \n* Sales Pages
    \n* Opt-In Pages
    \n* Webinar Pages
    \n* Thank You Pages
    \n* 404 Pages
    \n* Login Pages
    \n* Any type of landing page you can imagine.

    \n

    \n
    \nWhat’s the difference between Coming Soon Page Mode and Maintenance Mode?\n\n

    \n

    Coming Soon Page Mode returns an http status 200 and allows your site to be indexed by Google and other search engines while under construction. You should always use Coming Soon Page mode when your site is under construction.

    \n

    Maintenance Mode returns an http status code 503 and should be used when doing short-term maintenance on an existing site. This will let search engines know your site is undergoing maintenance and should return in 1 day when maintenance mode is finished.

    \n

    \n
    \nWho can see the website while it’s under construction?\n\n

    \n

    Only logged in visitors can see the website while your website is under construction. Logged out visitors will see the under construction page or maintenance mode page depending on which mode you have selected.

    \n

    \n
    \nDisabled the Coming Soon Plugin and it still shows\n\n

    \n

    This is always a WordPress caching issue. Go to the caching plugin’s settings page and clear the cache.
    \nMore Info »

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Annoying and useless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sirbalmore on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The ai site builder was horrid and useless. But even using it for ''maintenance mode'' has a constant and ever present notification at the top of EVERY other plugin you use saying, \"Are you enjoying SeedProd? (I love it) or (No really)\" and it won''t go away even when you close the notification. Yeah, you really want a review?? You''re annoying and invasive. You can ask when I open the SeedProd plugin but nonstop at the top of every plugin? No thank you. Have some self respect.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy macdad96 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I use this on all of our WordPress sites.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome Plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tkrowisz6 on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Perfect for when I am changing the website, or just have it temporarily down for maintenance. The templates are simple, and do not take a lot of work to use. Saves a lot of time.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plug in!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy corpporthis on September 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just what we needed! Awesome plugin, great features, easy to use and understand. Love it!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Well Deserved 5 Stars

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy axnfell on August 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    All you want these days is a simple to use plugin that does what it states on the tin! Its easy to use and does a great job, would not leave home without it. James

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Semplice ed intuitivo

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy michelangelotrbi on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Finalmente sono riuscito a trovare un plugin che mi permette di impostare una pagina di cortesia con dei modelli preimpostati e personalizzabili quando metto il sito in manutenzione per gli aggiornamenti delle sue funzionalità.

    \n\n\n\n

    Isola completamente il front-end di WordPress in modo che, per tutti gli utenti registrati e non, sia impossibile accedere alle pagine, l''unico utente che può accedervi e visualizzarle è l''utente di amministrazione.

    \n\n\n\n

    Perfetto e semplice da configurare...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No Problems

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alb614 on August 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    So far I''ve had no issues.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I've been way overdue to write a review for SeedProd. Love it.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dgsfny on August 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The SeedProd plugin is super easy to use and for free, offers a lot of different features and great design. I often use the Maintenance page options to spin up something super fast. The team is always adding new features, it''s a plug that has an active team behind it so I also appreciate it as a plugin that is safe to use. I''ve been using SeedProd for at least several years and highly recommend the plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    it works flawless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lalezar on August 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its my first Website with wordpress. And I use Seedprod to generate a coming soon page. The plugin was easy to download, install (all in Wordpress) and also to configure for a coming soon page. And so far, it works flawless. thanks for providing it free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Ottimo plug-in anche in versione free

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy La Ziviani (mymeitai) on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ho scaricato la versione gratuita per poter creare alcune pagine del mio sito con una grafica diversa da quella del tema principale. Lo trovo davvero completo e facile da usare. Peccato per i limiti della versione gratuita... io che lo utilizzo solo per il mio sito per una piccola attività di promozione artistica, avrei apprezzato che si potesse salvare almeno un template!
    Se un giorno dovessi cambiare il tema del mio sito sceglierei di acquistare questo plug-in anziché investire in un nuovo tema.
    Grazie!

    \n
    \n
    \n", "changelog": "

    6.12.2

    \n

    Changelog »

    \n

    6.9.0

    \n
      \n
    • Added – Flexbox Alignment on Rows and Columns
    • \n
    • Added – Textblock Updates: Simple Bullets and Lists, Superscript and Subscript.
    • \n
    • Added – Fixed Pinned Layout Panel
    • \n
    • Added – Advanced Margin Controls
    • \n
    • Added – Advanced Shadow Controls
    • \n
    • Added – Advanced CSS Classes and ID
    • \n
    • Added – Fixed and Sticky Position Rows and Cols
    • \n
    • Added – Overflow Control Rows and Columns
    • \n
    • Added – PRO NEW WordPress Website Builder Functionality.
    • \n
    • Added – PRO Ability to create themes with SeedProd.
    • \n
    • Added – PRO Ability to create theme parts: header, footer, pages.
    • \n
    • Added – PRO Ability to create global parts that are updated across the site.
    • \n
    • Added – PRO Advanced conditions to determine where theme parts are displayed.
    • \n
    • Added – PRO Global CSS to create a sitewide design system, with global color palettes.
    • \n
    • Added – PRO Template tags to display dynamic WordPress content.
    • \n
    • Added – PRO Posts
    • \n
    • Added – PRO Post Title
    • \n
    • Added – PRO Post Content
    • \n
    • Added – PRO Post Excerpt
    • \n
    • Added – PRO Featured Image
    • \n
    • Added – PRO Author Box
    • \n
    • Added – PRO Comments
    • \n
    • Added – PRO Post Navigation
    • \n
    • Added – PRO Post Info
    • \n
    • Added – PRO Archive Title
    • \n
    • Added – PRO Site Logo
    • \n
    • Added – PRO Template Parts
    • \n
    • Added – PRO Ability to Add WordPress widgets
    • \n
    • Added – PRO Social Profile Updates: Medium, Discord, Telegram, Slack, Weibo, Vimeo, Facebook Messenger, Whatsapp
    • \n
    \n

    6.6.0

    \n
      \n
    • Added – Column Alignment Controls
    • \n
    • Added – Divice Visibility Controls
    • \n
    • Added – Full Length Template Previews
    • \n
    • Tweak – Version Sync with Pro
    • \n
    \n

    6.2.1

    \n
      \n
    • Tweak – Clarify External Service is used for license upgrades.
    • \n
    • Tweak – Removed helper function that was set for pre-release.
    • \n
    \n

    6.2.0

    \n
      \n
    • Added – WooCommerce Blocks Pro Version
    • \n
    • Added – Accordion Block Pro Version
    • \n
    • Added – Testimonial Block Version
    • \n
    • Added – Ability to Edit WordPress pages with SeedProd, this can be disabled in the SeedProd settings page.
    • \n
    • Fixed – IOS cover image bug
    • \n
    • Fixed – Yoast and AllinOne SEO Pro edit page links
    • \n
    • Fixed – WP Version filter not returning default value
    • \n
    • Tweak – Added filter to top level menu position ‘seedprod_top_level_menu_postion’
    • \n
    • Tweak – Added imprint and privacy to default excluded pages
    • \n
    \n

    6.0.11.2

    \n
      \n
    • Tweak – Redirect Default Login Page Behavior and added inline explanation
    • \n
    \n

    6.0.11.1

    \n
      \n
    • Fixed – Some SEO plugins not adding title tag to landing pages
    • \n
    • Tweak – Made settings more accessible
    • \n
    • Fixed – Background Slideshow Bug – PRO
    • \n
    • Fixed – Tweet Share Bug – PRO
    • \n
    \n

    6.0.11.0

    \n
      \n
    • Added – Login Block
    • \n
    \n

    6.0.10.1

    \n
      \n
    • Added – 10 New Templates
    • \n
    • Added – Undo and Redo Functionality
    • \n
    • Added = Permissions Filters
    • \n
    • Added – Easier Upgrade Path
    • \n
    • Fixed – WPRocket Compatability
    • \n
    • Fixed – BGSlideshow timeout issue
    • \n
    • Fixed – Highlight left menu when page is selected
    • \n
    • Fixed – Mobile Fonts Settings
    • \n
    • Tweak – Animate Optin Button
    • \n
    • Tweak – Moved Preview Button
    • \n
    • Tweak – Made Sections Clickable In Free Verson
    • \n
    • Tweak – Attribution Fix
    • \n
    \n

    6.0.9.0

    \n
      \n
    • Added – Ability to link an image
    • \n
    • Tweak – HTML 5 Email Validation
    • \n
    • Tweak – css fix in admin
    • \n
    \n

    6.0.8.5

    \n
      \n
    • Added – debug tools
    • \n
    • Tweak – make sure wp-mediaelement gets loaded in the builder
    • \n
    • Tweak – feedback request
    • \n
    \n

    6.0.8.4

    \n
      \n
    • Fixed – Landing page preview link
    • \n
    • Fixed – Duplicate Page
    • \n
    • Tweak – removed deprecated function
    • \n
    \n

    6.0.8.3

    \n
      \n
    • Tweak – menus require manage_options capability
    • \n
    \n

    6.0.8.2

    \n
      \n
    • Reverted – Preview link ad added flush permalink
    • \n
    \n

    6.0.8.1

    \n
      \n
    • Tweak – Added preview_nonce to preview link
    • \n
    \n

    6.0.8

    \n
      \n
    • Fixed – PHP warning in admin to undefined database table
    • \n
    • Tweak – How Preview links are constructed
    • \n
    \n

    6.0.7

    \n
      \n
    • Tweak – Flush Permalinks Programmatically so Previews Work
    • \n
    \n

    6.0.0

    \n
      \n
    • New – Complete rebuild of the plugin.
    • \n
    • New – Drag and Drop Page Builder
    • \n
    • New – Page Blocks
    • \n
    • New – Coming Soon Pages
    • \n
    • New – Maintenance Pages
    • \n
    • New – Landing Pages
    • \n
    • New – Custom 404 Pages
    • \n
    \n", "description": "

    SeedProd – Drag & Drop WordPress Website Builder, Landing Page Builder, Coming Soon Page & Maintenance Mode

    \n

    SeedProd was originally created in 2011 and allowed you to create a Coming Soon Page or a Maintenance Mode Page. You could work on your website in private while visitors see a “Coming Soon” or “Maintenance Mode” page. It still does this and really well!

    \n

    But People loved SeedProd’s easy-to-use page builder so much and wanted to create their entire website with it. So, due to popular demand, you can do just that! Yes, you can now use SeedProd as a WordPress Website Builder.

    \n

    This means you can build every part of your WordPress custom theme. WordPress Headers, Footers, Single Page Templates, Archives, Global Parts, WooCommerce Product Pages, WooCommerce Carts, and more. The best part is SeedProd is a No-Code Website Builder. No coding knowledge or experience is needed. Full Site Editing made easy.

    \n

    In addition, SeedProd is still the best Landing Page Builder. Create a variety of landing pages that include but are not limited to: Sales Pages, Coming Soon Pages, Maintenance Mode Pages, 404 Pages, Login Pages, Webinar Pages, and Thank You Pages.

    \n

    Sites and Pages built with SeedProd’s Drag and Drop Page builder are lightweight, super fast, and it’s so easy to use anyone can create a WordPress Website or Landing Page.

    \n
    \n

    SeedProd Pro
    \n This plugin is the lite version of the SeedProd Website Builder and Landing Page plugin that comes with all the features you will ever need to create great-looking landing pages, coming soon pages, and maintenance modes pages within your WordPress website with no code. Click here to purchase SeedProd, the best premium WordPress Website Builder and Landing Page plugin now!

    \n
    \n

    Watch John Turner, the Co-Founder of SeedProd, build the SeedProd.com website with the SeedProd WordPress Website Builder

    \n

    \n

    Using SeedProd as a WordPress Website Builder

    \n

    SeedProd is a WordPress Website Theme Builder, which allows you to create custom theme and template parts like: Headers, Footers, Front Pages, Content Pages, Blog Posts, Blog Pages, Archives, Search Results, Category Pages, Tag Pages, Sidebars, WooCommerce Product Pages. WooCommerce Checkout Pages, WooCommerce Cart Pages, WooCommerce Shop Pages all using our no-code Theme Builder.

    \n

    Typically you would need a traditional WordPress theme to accomplish this. With SeedProd no theme is needed. No more conflicts between your theme and page builder. SeedProd is a complete turnkey solution that gets you a website fast.

    \n

    Themes created with SeedProd can use any builder. Of course, SeedProd is the best page builder in our opinion, but you can use: Gutenberg Page Builder, Elementor Page Builder, Beaver Builder Page Builder, Divi Page Builder, Visual Composer Page Builder, Brizy Page Builder, Thrive Architect Page Builder, Beaver Builder, and the list goes on…

    \n

    SeedProd also has a growing library of 200+ beautiful pre-built WordPress themes, templates, blocks, sections and complete websites to help you get started. Did I mention, no coding is required 🙂

    \n

    Creating WordPress Landing Pages with SeedProd

    \n

    What are landing pages? A landing page is a standalone web page that a person “lands” on after clicking through from an email, ad, or other digital location. Most of the time, these landing pages have a different design from the rest of your site and do not show your website’s standard header and footer.

    \n

    Landing Pages have a particular purpose and desired user action; therefore, you want them to be distraction-free as possible. With SeedProd, it is super easy to create high-converting landing pages for any purpose, that are entirely separate from your website’s design.

    \n

    You can use our Domain Mapping feature to put landings page on their own domain, our Dynamic Text feature to add personalization, or our WooCommerce Blocks to build one-off product pages. These are just a few of the many powerful features SeedProd provides.

    \n

    Building Coming Soon Pages and Maintenance Mode Pages with SeedProd

    \n

    SeedProd allows you to build a coming soon or maintenance mode page that will hide your site from visitors and search engines like Google. You can work on your website in private. When the website uses coming soon mode, the page will be indexed by Google as long as your site is not set to be private in WordPress.

    \n

    In Maintenance Mode, we return a 503 header status that lets Google know your site is down for maintenance.

    \n

    Both of these modes are essential for any WordPress Website to have.

    \n

    The Free Version of SeedProd comes with a variety of Coming Soon Page and Maintenance Mode templates.

    \n

    Full Page Builder Feature List:

    \n
      \n
    • WordPress Theme Builder – Create Headers, Footers, Pages, Posts, Archives, Sidebars, WooCommerce Pages or any part of a WordPress theme with our no-code Theme Builder.
    • \n
    • Fast Drag & Drop Page Builder – Our page builder is super fast, lightweight and responsive.
    • \n
    • WordPress Themes created with SeedProd work with any page builder.
    • \n
    • Landing Pages work with any WordPress Theme.
    • \n
    • 200+ Professionally Designed WordPress Themes, Landing Page Templates & Layout Sections
    • \n
    • 80+ Pro Page Blocks – We have created a variety of blocks to display static and dynamic content.
    • \n
    • Landing Page Templates – Sale Pages, Coming Soon Pages, Maintenance Mode Pages, Webinar Pages, Giveaway Pages, Thank You Pages, 404 Pages, and Login Pages
    • \n
    • Responsive and Mobile Ready – Pages created with SeedProd look great on any device.
    • \n
    • Premium Integrations – Collect emails with your favorite 3rd party email marketing service providers, including MailChimp, ActiveCampaign, ConvertKit, Constant Contact, and more…
    • \n
    • Subscriber Management – Track every subscriber with or without a 3rd party email provider.
    • \n
    • Stock Images – Get In-Plugin Access to over 2 Million Stock Images. Searchable, Resized, and Optimized for the Web.
    • \n
    • Live Previews – We allow you to see live previews of the page while it’s in any state, draft, live, or just testing.
    • \n
    • Layout Navigation – Use our layout navigation, which is a mini-map of your page, to easily rearrange sections, rows, columns, blocks, or access your page settings
    • \n
    • Revision History, Undo & Redo – With one click reverts, you can go back to any previously saved point on your page and even see who made those particular changes.
    • \n
    • Draft Mode – Work on your page in private without revealing its construction to the public.
    • \n
    • Mobile Device Preview – See what your pages will look like on desktop and mobile devices before you go live.
    • \n
    • Bloat Free Code – The code our builder produces, unlike other builders, is bloat-free and minimal to load your page quickly.
    • \n
    • Color Schemes – Choose from over 20 built-in color schemes or create your own custom color palette to use throughout your landing page design.
    • \n
    • Font Combinations – SeedProd integrates with Google Fonts to provide unlimited font combinations.
    • \n
    • Custom CSS – Need to tweak the style of an element on your page? No problem!
    • \n
    • Domain Mapping – Domain Mapping lets you create landing pages and point them to any domain name instead of your main website domain.
    • \n
    • Dynamic Text – Dynamic Text lets you dynamically insert dates or values from a query parameter to personalize your landing pages.
    • \n
    • Custom Scripts – Need to add a tracking script or widget from another website? Use the built-in header and footer scripts area to implement more technical tweaks.
    • \n
    • Spam Protection – Protect your landing pages from spam, bots, and fraudulent submissions with Google ReCaptcha
    • \n
    \n

    WordPress Blocks:

    \n
      \n
    • Standard Blocks – Headline, Text, List, Button, Image, Video, Divider, Spacer, Column
    • \n
    • Advanced Blocks – Giveaway, Contact Form, Optin Form, Countdown, Social Profiles, Social Sharing, Animated Headlines, Progress Bar, Icon, Testimonials, Image Carousel, Image Box, Icon Box, Nav Menu, Pricing Tables, Page Anchor, Star Rating, Accordion, Shortcode, Login Form, Google Maps, Seach Form, Custom HTML
    • \n
    • Social Media Blocks – Facebook Page, Facebook Embed, Facebook Like, Facebook Comments, Twitter Embed Tweet, Twitter Embed Timeline, Twitter Tweet Button, Twitter Follow Button
    • \n
    • WooCommerce Blocks – Add To Cart, Checkout, Cart, Product Grid, Recent Products, Sale Products, Best Selling Products, Featured Products, Top Rated Products, Menu Cart, Product Title, Product Featured Image, Product Price, Short Description, Additional Information, Products Related, Upsells, Product Rating, Product Stock, Archive Products, Product Data Tabs
    • \n
    • Theme Template Tag Blocks: Posts, Post Title, Post Content, Post Excerpt, Featured Image, Author Box, Post Comments, Post Navigation: Post Info, Archive Title, Site Logo, Global Template Parts
    • \n
    \n

    WordPress Email Marketing Integrations:

    \n
      \n
    • ActiveCampaign
    • \n
    • AWeber
    • \n
    • Campaign Monitor
    • \n
    • Constant Contact
    • \n
    • ConvertKit
    • \n
    • Drip
    • \n
    • Facebook
    • \n
    • GetResponse
    • \n
    • Google Recaptcha
    • \n
    • iContact
    • \n
    • Mad Mimi
    • \n
    • Mailchimp
    • \n
    • MailerLite
    • \n
    • Sendy
    • \n
    • Sendinblue
    • \n
    • Twitter
    • \n
    • YouTube
    • \n
    • Zapier
    • \n
    \n

    After reading this feature list, you can probably imagine why SeedProd is the best Drag & Drop WordPress Website Builder and Landing Page Builder in the market.

    \n

    Give SeedProd a try.

    \n

    Want to unlock more blocks and page builder features? Upgrade to SeedProd Pro.

    \n

    Credits

    \n

    This plugin is created by John Turner and Syed Balkhi.

    \n

    Branding Guideline

    \n

    SeedProd® is a registered trademark of SeedProd LLC. When writing about the Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder plugin by SeedProd, please use the following format.

    \n
      \n
    • SeedProd (correct)
    • \n
    • Seedprod (incorrect)
    • \n
    • Seed Prod (incorrect)
    • \n
    • seedprod (incorrect)
    • \n
    \n

    What’s Next

    \n

    If you like our WordPress Website Builder and Landing Page Builder plugin, then consider checking out our other projects:

    \n
      \n
    • OptinMonster – Get More Email Subscribers with the most popular conversion optimization plugin for WordPress.
    • \n
    • WPForms – #1 drag & drop online form builder for WordPress.
    • \n
    • MonsterInsights – See the Stats that Matter and Grow Your Business with Confidence. Best Google Analytics Plugin for WordPress.
    • \n
    • WP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    • \n
    • RafflePress – Best WordPress giveaway and contest plugin.
    • \n
    • Smash Balloon – #1 social feeds plugin for WordPress.
    • \n
    • SearchWP – Advanced WordPress search plugin.
    • \n
    • PushEngage – Best web push notification plugin.
    • \n
    • TrustPulse – Social Proof Notification to Boost Conversions.
    • \n
    • All In One SEO – Best WordPress SEO plugin to help you improve your search engine rankings.
    • \n
    • Easy Digital Downloads – From eBooks, to WordPress plugins, to PDF files and more, we make selling digital products a breeze.
    • \n
    • AffiliateWP – An easy-to-use, reliable WordPress plugin that gives you the affiliate marketing tools you need to grow your business and make more money.
    • \n
    • WP Simple Pay – Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required.
    • \n
    • Sugar Calendar – Simple, light-weight, and provide just the major features you need for event management.
    • \n
    \n

    Visit WPBeginner to learn from our WordPress Tutorials and find out about other best WordPress plugins.

    \n", "screenshots": "
    1. \"WordPress

      WordPress Website Builder

    2. \"WordPress

      WordPress Theme Example

    3. \"Page

      Page Builder Example

    4. \"Coming

      Coming Soon Page Example

    5. \"Maintenance

      Maintenance Mode Example

    6. \"Sales

      Sales Landing Page Example

    7. \"Optin

      Optin Lead Squeeze Landing Page Example

    8. \"Webinar

      Webinar Landing Page Example

    9. \"Thank

      Thank You Page Example

    "}, "versions": {"4.0.0": "https://downloads.wordpress.org/plugin/coming-soon.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/coming-soon.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/coming-soon.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/coming-soon.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/coming-soon.4.0.4.zip", "4.1.0": "https://downloads.wordpress.org/plugin/coming-soon.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/coming-soon.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/coming-soon.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/coming-soon.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/coming-soon.4.1.4.zip", "4.2.0": "https://downloads.wordpress.org/plugin/coming-soon.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/coming-soon.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/coming-soon.4.2.2.zip", "5.0.0": "https://downloads.wordpress.org/plugin/coming-soon.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/coming-soon.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/coming-soon.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/coming-soon.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/coming-soon.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/coming-soon.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/coming-soon.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/plugin/coming-soon.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/plugin/coming-soon.5.0.8.zip", "5.0.9": "https://downloads.wordpress.org/plugin/coming-soon.5.0.9.zip", "5.1.0": "https://downloads.wordpress.org/plugin/coming-soon.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/coming-soon.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/coming-soon.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/coming-soon.5.1.3.zip", "6.0.5": "https://downloads.wordpress.org/plugin/coming-soon.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/coming-soon.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/coming-soon.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.zip", "6.2.0": "https://downloads.wordpress.org/plugin/coming-soon.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/coming-soon.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/coming-soon.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/coming-soon.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/coming-soon.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/coming-soon.6.2.5.zip", "6.6.0": "https://downloads.wordpress.org/plugin/coming-soon.6.6.0.zip", "trunk": "https://downloads.wordpress.org/plugin/coming-soon.zip", "5.0.10": "https://downloads.wordpress.org/plugin/coming-soon.5.0.10.zip", "5.0.11": "https://downloads.wordpress.org/plugin/coming-soon.5.0.11.zip", "5.0.12": "https://downloads.wordpress.org/plugin/coming-soon.5.0.12.zip", "5.0.13": "https://downloads.wordpress.org/plugin/coming-soon.5.0.13.zip", "5.0.14": "https://downloads.wordpress.org/plugin/coming-soon.5.0.14.zip", "5.0.15": "https://downloads.wordpress.org/plugin/coming-soon.5.0.15.zip", "5.0.16": "https://downloads.wordpress.org/plugin/coming-soon.5.0.16.zip", "5.0.17": "https://downloads.wordpress.org/plugin/coming-soon.5.0.17.zip", "5.0.18": "https://downloads.wordpress.org/plugin/coming-soon.5.0.18.zip", "5.0.19": "https://downloads.wordpress.org/plugin/coming-soon.5.0.19.zip", "5.0.20": "https://downloads.wordpress.org/plugin/coming-soon.5.0.20.zip", "5.0.21": "https://downloads.wordpress.org/plugin/coming-soon.5.0.21.zip", "5.0.22": "https://downloads.wordpress.org/plugin/coming-soon.5.0.22.zip", "5.0.23": "https://downloads.wordpress.org/plugin/coming-soon.5.0.23.zip", "5.0.24": "https://downloads.wordpress.org/plugin/coming-soon.5.0.24.zip", "5.0.25": "https://downloads.wordpress.org/plugin/coming-soon.5.0.25.zip", "5.0.26": "https://downloads.wordpress.org/plugin/coming-soon.5.0.26.zip", "6.10.0": "https://downloads.wordpress.org/plugin/coming-soon.6.10.0.zip", "6.12.0": "https://downloads.wordpress.org/plugin/coming-soon.6.12.0.zip", "6.12.2": "https://downloads.wordpress.org/plugin/coming-soon.6.12.2.zip", "6.13.0": "https://downloads.wordpress.org/plugin/coming-soon.6.13.0.zip", "6.13.1": "https://downloads.wordpress.org/plugin/coming-soon.6.13.1.zip", "6.15.3": "https://downloads.wordpress.org/plugin/coming-soon.6.15.3.zip", "6.15.4": "https://downloads.wordpress.org/plugin/coming-soon.6.15.4.zip", "6.15.6": "https://downloads.wordpress.org/plugin/coming-soon.6.15.6.zip", "6.15.7": "https://downloads.wordpress.org/plugin/coming-soon.6.15.7.zip", "6.17.4": "https://downloads.wordpress.org/plugin/coming-soon.6.17.4.zip", "6.18.4": "https://downloads.wordpress.org/plugin/coming-soon.6.18.4.zip", "6.18.5": "https://downloads.wordpress.org/plugin/coming-soon.6.18.5.zip", "6.18.9": "https://downloads.wordpress.org/plugin/coming-soon.6.18.9.zip", "6.19.0": "https://downloads.wordpress.org/plugin/coming-soon.6.19.0.zip", "6.19.1": "https://downloads.wordpress.org/plugin/coming-soon.6.19.1.zip", "6.19.3": "https://downloads.wordpress.org/plugin/coming-soon.6.19.3.zip", "6.19.4": "https://downloads.wordpress.org/plugin/coming-soon.6.19.4.zip", "6.0.8.1": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.1.zip", "6.0.8.2": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.2.zip", "6.0.8.3": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.3.zip", "6.0.8.4": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.4.zip", "6.0.8.5": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.5.zip", "6.0.9.0": "https://downloads.wordpress.org/plugin/coming-soon.6.0.9.0.zip", "6.15.18": "https://downloads.wordpress.org/plugin/coming-soon.6.15.18.zip", "6.15.19": "https://downloads.wordpress.org/plugin/coming-soon.6.15.19.zip", "6.15.20": "https://downloads.wordpress.org/plugin/coming-soon.6.15.20.zip", "6.15.21": "https://downloads.wordpress.org/plugin/coming-soon.6.15.21.zip", "6.15.22": "https://downloads.wordpress.org/plugin/coming-soon.6.15.22.zip", "6.15.23": "https://downloads.wordpress.org/plugin/coming-soon.6.15.23.zip", "6.18.10": "https://downloads.wordpress.org/plugin/coming-soon.6.18.10.zip", "6.18.11": "https://downloads.wordpress.org/plugin/coming-soon.6.18.11.zip", "6.18.12": "https://downloads.wordpress.org/plugin/coming-soon.6.18.12.zip", "6.18.14": "https://downloads.wordpress.org/plugin/coming-soon.6.18.14.zip", "6.18.15": "https://downloads.wordpress.org/plugin/coming-soon.6.18.15.zip", "6.18.16": "https://downloads.wordpress.org/plugin/coming-soon.6.18.16.zip", "6.18.17": "https://downloads.wordpress.org/plugin/coming-soon.6.18.17.zip", "6.18.18": "https://downloads.wordpress.org/plugin/coming-soon.6.18.18.zip", "6.9.0.8": "https://downloads.wordpress.org/plugin/coming-soon.6.9.0.8.zip", "6.0.10.1": "https://downloads.wordpress.org/plugin/coming-soon.6.0.10.1.zip", "6.0.11.1": "https://downloads.wordpress.org/plugin/coming-soon.6.0.11.1.zip", "6.15.13.1": "https://downloads.wordpress.org/plugin/coming-soon.6.15.13.1.zip", "6.15.15.3": "https://downloads.wordpress.org/plugin/coming-soon.6.15.15.3.zip"}, "downloaded": 30920456, "description": "

    SeedProd – Drag & Drop WordPress Website Builder, Landing Page Builder, Coming Soon Page & Maintenance Mode

    \n

    SeedProd was originally created in 2011 and allowed you to create a Coming Soon Page or a Maintenance Mode Page. You could work on your website in private while visitors see a “Coming Soon” or “Maintenance Mode” page. It still does this and really well!

    \n

    But People loved SeedProd’s easy-to-use page builder so much and wanted to create their entire website with it. So, due to popular demand, you can do just that! Yes, you can now use SeedProd as a WordPress Website Builder.

    \n

    This means you can build every part of your WordPress custom theme. WordPress Headers, Footers, Single Page Templates, Archives, Global Parts, WooCommerce Product Pages, WooCommerce Carts, and more. The best part is SeedProd is a No-Code Website Builder. No coding knowledge or experience is needed. Full Site Editing made easy.

    \n

    In addition, SeedProd is still the best Landing Page Builder. Create a variety of landing pages that include but are not limited to: Sales Pages, Coming Soon Pages, Maintenance Mode Pages, 404 Pages, Login Pages, Webinar Pages, and Thank You Pages.

    \n

    Sites and Pages built with SeedProd’s Drag and Drop Page builder are lightweight, super fast, and it’s so easy to use anyone can create a WordPress Website or Landing Page.

    \n
    \n

    SeedProd Pro
    \n This plugin is the lite version of the SeedProd Website Builder and Landing Page plugin that comes with all the features you will ever need to create great-looking landing pages, coming soon pages, and maintenance modes pages within your WordPress website with no code. Click here to purchase SeedProd, the best premium WordPress Website Builder and Landing Page plugin now!

    \n
    \n

    Watch John Turner, the Co-Founder of SeedProd, build the SeedProd.com website with the SeedProd WordPress Website Builder

    \n

    \n

    Using SeedProd as a WordPress Website Builder

    \n

    SeedProd is a WordPress Website Theme Builder, which allows you to create custom theme and template parts like: Headers, Footers, Front Pages, Content Pages, Blog Posts, Blog Pages, Archives, Search Results, Category Pages, Tag Pages, Sidebars, WooCommerce Product Pages. WooCommerce Checkout Pages, WooCommerce Cart Pages, WooCommerce Shop Pages all using our no-code Theme Builder.

    \n

    Typically you would need a traditional WordPress theme to accomplish this. With SeedProd no theme is needed. No more conflicts between your theme and page builder. SeedProd is a complete turnkey solution that gets you a website fast.

    \n

    Themes created with SeedProd can use any builder. Of course, SeedProd is the best page builder in our opinion, but you can use: Gutenberg Page Builder, Elementor Page Builder, Beaver Builder Page Builder, Divi Page Builder, Visual Composer Page Builder, Brizy Page Builder, Thrive Architect Page Builder, Beaver Builder, and the list goes on…

    \n

    SeedProd also has a growing library of 200+ beautiful pre-built WordPress themes, templates, blocks, sections and complete websites to help you get started. Did I mention, no coding is required 🙂

    \n

    Creating WordPress Landing Pages with SeedProd

    \n

    What are landing pages? A landing page is a standalone web page that a person “lands” on after clicking through from an email, ad, or other digital location. Most of the time, these landing pages have a different design from the rest of your site and do not show your website’s standard header and footer.

    \n

    Landing Pages have a particular purpose and desired user action; therefore, you want them to be distraction-free as possible. With SeedProd, it is super easy to create high-converting landing pages for any purpose, that are entirely separate from your website’s design.

    \n

    You can use our Domain Mapping feature to put landings page on their own domain, our Dynamic Text feature to add personalization, or our WooCommerce Blocks to build one-off product pages. These are just a few of the many powerful features SeedProd provides.

    \n

    Building Coming Soon Pages and Maintenance Mode Pages with SeedProd

    \n

    SeedProd allows you to build a coming soon or maintenance mode page that will hide your site from visitors and search engines like Google. You can work on your website in private. When the website uses coming soon mode, the page will be indexed by Google as long as your site is not set to be private in WordPress.

    \n

    In Maintenance Mode, we return a 503 header status that lets Google know your site is down for maintenance.

    \n

    Both of these modes are essential for any WordPress Website to have.

    \n

    The Free Version of SeedProd comes with a variety of Coming Soon Page and Maintenance Mode templates.

    \n

    Full Page Builder Feature List:

    \n
      \n
    • WordPress Theme Builder – Create Headers, Footers, Pages, Posts, Archives, Sidebars, WooCommerce Pages or any part of a WordPress theme with our no-code Theme Builder.
    • \n
    • Fast Drag & Drop Page Builder – Our page builder is super fast, lightweight and responsive.
    • \n
    • WordPress Themes created with SeedProd work with any page builder.
    • \n
    • Landing Pages work with any WordPress Theme.
    • \n
    • 200+ Professionally Designed WordPress Themes, Landing Page Templates & Layout Sections
    • \n
    • 80+ Pro Page Blocks – We have created a variety of blocks to display static and dynamic content.
    • \n
    • Landing Page Templates – Sale Pages, Coming Soon Pages, Maintenance Mode Pages, Webinar Pages, Giveaway Pages, Thank You Pages, 404 Pages, and Login Pages
    • \n
    • Responsive and Mobile Ready – Pages created with SeedProd look great on any device.
    • \n
    • Premium Integrations – Collect emails with your favorite 3rd party email marketing service providers, including MailChimp, ActiveCampaign, ConvertKit, Constant Contact, and more…
    • \n
    • Subscriber Management – Track every subscriber with or without a 3rd party email provider.
    • \n
    • Stock Images – Get In-Plugin Access to over 2 Million Stock Images. Searchable, Resized, and Optimized for the Web.
    • \n
    • Live Previews – We allow you to see live previews of the page while it’s in any state, draft, live, or just testing.
    • \n
    • Layout Navigation – Use our layout navigation, which is a mini-map of your page, to easily rearrange sections, rows, columns, blocks, or access your page settings
    • \n
    • Revision History, Undo & Redo – With one click reverts, you can go back to any previously saved point on your page and even see who made those particular changes.
    • \n
    • Draft Mode – Work on your page in private without revealing its construction to the public.
    • \n
    • Mobile Device Preview – See what your pages will look like on desktop and mobile devices before you go live.
    • \n
    • Bloat Free Code – The code our builder produces, unlike other builders, is bloat-free and minimal to load your page quickly.
    • \n
    • Color Schemes – Choose from over 20 built-in color schemes or create your own custom color palette to use throughout your landing page design.
    • \n
    • Font Combinations – SeedProd integrates with Google Fonts to provide unlimited font combinations.
    • \n
    • Custom CSS – Need to tweak the style of an element on your page? No problem!
    • \n
    • Domain Mapping – Domain Mapping lets you create landing pages and point them to any domain name instead of your main website domain.
    • \n
    • Dynamic Text – Dynamic Text lets you dynamically insert dates or values from a query parameter to personalize your landing pages.
    • \n
    • Custom Scripts – Need to add a tracking script or widget from another website? Use the built-in header and footer scripts area to implement more technical tweaks.
    • \n
    • Spam Protection – Protect your landing pages from spam, bots, and fraudulent submissions with Google ReCaptcha
    • \n
    \n

    WordPress Blocks:

    \n
      \n
    • Standard Blocks – Headline, Text, List, Button, Image, Video, Divider, Spacer, Column
    • \n
    • Advanced Blocks – Giveaway, Contact Form, Optin Form, Countdown, Social Profiles, Social Sharing, Animated Headlines, Progress Bar, Icon, Testimonials, Image Carousel, Image Box, Icon Box, Nav Menu, Pricing Tables, Page Anchor, Star Rating, Accordion, Shortcode, Login Form, Google Maps, Seach Form, Custom HTML
    • \n
    • Social Media Blocks – Facebook Page, Facebook Embed, Facebook Like, Facebook Comments, Twitter Embed Tweet, Twitter Embed Timeline, Twitter Tweet Button, Twitter Follow Button
    • \n
    • WooCommerce Blocks – Add To Cart, Checkout, Cart, Product Grid, Recent Products, Sale Products, Best Selling Products, Featured Products, Top Rated Products, Menu Cart, Product Title, Product Featured Image, Product Price, Short Description, Additional Information, Products Related, Upsells, Product Rating, Product Stock, Archive Products, Product Data Tabs
    • \n
    • Theme Template Tag Blocks: Posts, Post Title, Post Content, Post Excerpt, Featured Image, Author Box, Post Comments, Post Navigation: Post Info, Archive Title, Site Logo, Global Template Parts
    • \n
    \n

    WordPress Email Marketing Integrations:

    \n
      \n
    • ActiveCampaign
    • \n
    • AWeber
    • \n
    • Campaign Monitor
    • \n
    • Constant Contact
    • \n
    • ConvertKit
    • \n
    • Drip
    • \n
    • Facebook
    • \n
    • GetResponse
    • \n
    • Google Recaptcha
    • \n
    • iContact
    • \n
    • Mad Mimi
    • \n
    • Mailchimp
    • \n
    • MailerLite
    • \n
    • Sendy
    • \n
    • Sendinblue
    • \n
    • Twitter
    • \n
    • YouTube
    • \n
    • Zapier
    • \n
    \n

    After reading this feature list, you can probably imagine why SeedProd is the best Drag & Drop WordPress Website Builder and Landing Page Builder in the market.

    \n

    Give SeedProd a try.

    \n

    Want to unlock more blocks and page builder features? Upgrade to SeedProd Pro.

    \n

    Credits

    \n

    This plugin is created by John Turner and Syed Balkhi.

    \n

    Branding Guideline

    \n

    SeedProd® is a registered trademark of SeedProd LLC. When writing about the Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder plugin by SeedProd, please use the following format.

    \n
      \n
    • SeedProd (correct)
    • \n
    • Seedprod (incorrect)
    • \n
    • Seed Prod (incorrect)
    • \n
    • seedprod (incorrect)
    • \n
    \n

    What’s Next

    \n

    If you like our WordPress Website Builder and Landing Page Builder plugin, then consider checking out our other projects:

    \n
      \n
    • OptinMonster – Get More Email Subscribers with the most popular conversion optimization plugin for WordPress.
    • \n
    • WPForms – #1 drag & drop online form builder for WordPress.
    • \n
    • MonsterInsights – See the Stats that Matter and Grow Your Business with Confidence. Best Google Analytics Plugin for WordPress.
    • \n
    • WP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    • \n
    • RafflePress – Best WordPress giveaway and contest plugin.
    • \n
    • Smash Balloon – #1 social feeds plugin for WordPress.
    • \n
    • SearchWP – Advanced WordPress search plugin.
    • \n
    • PushEngage – Best web push notification plugin.
    • \n
    • TrustPulse – Social Proof Notification to Boost Conversions.
    • \n
    • All In One SEO – Best WordPress SEO plugin to help you improve your search engine rankings.
    • \n
    • Easy Digital Downloads – From eBooks, to WordPress plugins, to PDF files and more, we make selling digital products a breeze.
    • \n
    • AffiliateWP – An easy-to-use, reliable WordPress plugin that gives you the affiliate marketing tools you need to grow your business and make more money.
    • \n
    • WP Simple Pay – Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required.
    • \n
    • Sugar Calendar – Simple, light-weight, and provide just the major features you need for event management.
    • \n
    \n

    Visit WPBeginner to learn from our WordPress Tutorials and find out about other best WordPress plugins.

    \n", "donate_link": "http://www.seedprod.com", "num_ratings": 4693, "screenshots": {"1": {"src": "https://ps.w.org/coming-soon/assets/screenshot-1.png?rev=2402574", "caption": "WordPress Website Builder"}, "2": {"src": "https://ps.w.org/coming-soon/assets/screenshot-2.jpg?rev=2683840", "caption": "WordPress Theme Example"}, "3": {"src": "https://ps.w.org/coming-soon/assets/screenshot-3.png?rev=2683840", "caption": "Page Builder Example"}, "4": {"src": "https://ps.w.org/coming-soon/assets/screenshot-4.png?rev=2683840", "caption": "Coming Soon Page Example"}, "5": {"src": "https://ps.w.org/coming-soon/assets/screenshot-5.png?rev=2683840", "caption": "Maintenance Mode Example"}, "6": {"src": "https://ps.w.org/coming-soon/assets/screenshot-6.png?rev=2683840", "caption": "Sales Landing Page Example"}, "7": {"src": "https://ps.w.org/coming-soon/assets/screenshot-7.png?rev=2683840", "caption": "Optin Lead Squeeze Landing Page Example"}, "8": {"src": "https://ps.w.org/coming-soon/assets/screenshot-8.png?rev=2683840", "caption": "Webinar Landing Page Example"}, "9": {"src": "https://ps.w.org/coming-soon/assets/screenshot-9.png?rev=2683840", "caption": "Thank You Page Example"}}, "support_url": "https://wordpress.org/support/plugin/coming-soon/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "seedprod": {"avatar": "https://secure.gravatar.com/avatar/2d883c95bfb5c6bceaf025d740dd46527d3bf150601d0f2b7d9ddea5051267b5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/seedprod/", "display_name": "SeedProd"}}, "last_updated": "2025-10-26 2:33pm GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/coming-soon.6.19.4.zip", "author_profile": "https://profiles.wordpress.org/seedprod/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f153-714f-809d-4c4175c1e45a", "name": "Website Builder by SeedProd — Theme Builder, Landing Page Builder, Coming Soon Page, Maintenance Mode", "slug": "coming-soon", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761489180, "version": "6.19.4"}, "support_threads": 4, "requires_plugins": [], "short_description": "Easy Drag & Drop Page Builder. A complete solution to create a WordPress Website, Custom Themes, Landing Pages, Coming Soon & Maintenance Mode Pages.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 4}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1a97-7328-ab13-60d8105d2a5e', 'did:web:api.aspiredev.org:packages:wp-plugin:complianz-gdpr', 'complianz-gdpr', 'Complianz – GDPR/CCPA Cookie Consent', '

    Complianz is a GDPR/CCPA Cookie Banner plugin that supports GDPR, ePrivacy, DSGVO, TTDSG, LGPD, POPIA, APA, RGPD, CCPA/CPRA and PIPEDA with a conditional Cookie Consent Banner and customized Cookie Policy based on the results of the built-in Cookie Scan.

    -

    -

    Features

    -

    Cookie Consent Notice

    -
      -
    • Configure a Cookie Notice for your specific region: European Union, United Kingdom, United States, Australia, South Africa, Brazil or Canada. Or use one Cookie Notice worldwide.
    • -
    • Configure specific cookie consent per subregion, for example: European Union + TTDSG/DSGVO/CNIL or USA + specific states for CCPA/CPRA/CTDPA etc
    • -
    • Cookie Consent and Conditional Cookie Notice with Custom CSS and Customizable Templates. WCAG Level AA and ADA Compliant.
    • -
    • Banner Templates include: GDPR-friendly Cookie Wall – Accept/Dismiss – Consent per Category – Consent per Service
    • -
    • Banner Templates also include; Dismiss on scroll, time on page or both based on legislation
    • -
    • We aim to follow WCAG 2.1 AA guidelines and ADA best practices in the design of our cookie banners and legal documents to support accessibility.
    • -
    • No jQuery Dependency
    • -
    -

    Consent Management

    -
      -
    • Automatically configures your website based on wizard questions, WordPress scans and dedicated service and plugin integrations.
    • -
    • Blocks 3rd party cookies like Google Maps, Facebook, Instagram, AdSense, Hubspot, Recaptcha, Twitter, ActiveCampaign, and many more.
    • -
    • Custom integrations for plugins, themes and services are automatically detected.
    • -
    • Blocks iFrames, like YouTube, Vimeo, Dailymotion embedded videos and Social iFrames e.g. Instagram, Facebook et al.
    • -
    • Shows placeholders for blocked iFrames. Stills from videos and individual placeholders per (social) service.
    • -
    • Script Center to control scripts, iFrames and plugins per category or service. With dependency functionality and placeholders.
    • -
    • Proof of Consent: User consent registration that respects the GDPR data minimization guideline.
    • -
    • Periodical Cookie Scan for changes in Cookies, Plugins and 3rd Party services.
    • -
    • Automatically detects if you need a Cookie Notice (also called a Cookie Banner or Pop-Up).
    • -
    • Automatically anonymizes personal data for integrated statistics tools if needed.
    • -
    -

    Privacy Laws & Guidelines

    -
      -
    • Ready for GDPR, ePrivacy AVG, RGPD, LGPD, DSGVO, CNIL, PECR, UK DPA, UK GDPR, CCPA, COPPA, PIPEDA, CASL, POPIA, Privacy Act 1988, Australian Privacy Principles, The “Marco Civil” and the Brazilian General Data Protection Law.
    • -
    • Differentiate between GDPR, ePrivacy and DSGVO/CNIL or between CCPA/DNSMPI and NRS 603A, if needed.
    • -
    • We closely follow the latest developments in the ePrivacy regulation, the proposed Cookie Law for the European Union, and other legislation world-wide.
    • -
    -

    Legal Documents

    -
      -
    • A Cookie Policy; Generated by you with an easy wizard, drafted by an IT Law Firm.
    • -
    • Do Not Sell My Personal Information: DNSMPI Page for CCPA/CPRA – if required. (Now called Opt-out Preferences.)
    • -
    • Terms and Conditions are available in a separate plugin: Complianz – Terms and Conditions
    • -
    -

    Integrations

    -
      -
    • Detected Cookie Data is prefilled from cookiedatabase.org, with clear and transparent cookie descriptions, which are continuously updated.
    • -
    • Integrated with WordPress Privacy features. Export and erase personal data from our dashboard.
    • -
    • Implementation of Google Tag Manager, Google Analytics, Matomo, Matomo Tag Manager, Clicky, Yandex, Jetpack and Burst Statistics
    • -
    • Categorize your Cookies with Tag Manager or our Script Center, if needed.
    • -
    • -

      Integration with the WP Consent API

      -
    • -
    • -

      Integrates seamlessly with Gutenberg, Elementor, Divi, Forminator, WPBakery, Monsterinsights, GADWP, Beehive, WPForms, Gravity Forms, HappyForms, Contact Form 7 <5.4 (CF7), Woocommerce, Easy Digital Downloads, WP Google Maps, Google Maps Widget, Local Google Fonts, CAOS | Host Google Analytics Locally and other popular plugins.

      -
    • -
    • Tested with popular themes en page builders.
    • -
    • Gutenberg Blocks enabled.
      -

      Support

      -

      Complianz offers full support on the WordPress.org Forum. Before starting a new thread, please check available documentation and other support threads. Leave a clear and concise description of your issue, and we will respond as soon as possible.

    • -
    -

    Useful Links

    - -

    Premium Features

    -

    Complianz offers a Full Privacy Suite for WordPress on Complianz.io with even more features:

    -

    Cookie Consent Notice

    -
      -
    • Improve conversion with A/B Testing: which cookie banner has the best consent ratio? Run tests and measure what works best for your site.
    • -
    -

    Consent Management

    -
      -
    • Records of Consent: Keep record of your consent management changes and user’s consent registration. Integrates with Proof of Consent
    • -
    • Respects the Do Not Track settings and Global Privacy Controls in end-users browsers.
    • -
    • Geo IP Cookie Consent: Cookie Consent is different everywhere. Show the correct Cookie Notice based on IP location, but only if a banner is needed.
    • -
    • Google Consent Mode – Use Consent Mode by Google with Google Tag Manager or Google Analytics. No further set-up needed.
    • -
    • Integration with TCF v2.0. An IAB Europe Consent Framework for Publishers. Registered CMP ID: 332
    • -
    • Data Request Forms and Registration
    • -
    -

    Privacy Laws & Guidelines

    -

    Simultaneously select USA, Canada, United Kingdom, Australia, South Africa, Brazil and the EU as targeted regions with conditional Consent and dedicated Cookie Banners.

    -
      -
    • Support for GDPR / ePrivacy – European Union with Extension for Switzerland.
    • -
    • Support for USA / CCPA/CPRA/CPA/CTDPA/NRS 603A/UCPA/CDPA
    • -
    • Support for UK-GDPR / PECR and ICO Guidelines – United Kingdom.
    • -
    • Support for PIPEDA and CASL – Canada.
    • -
    • Support for Privacy Act 1988 & Australian Privacy Principles
    • -
    • Support for POPIA, the South African Protection of Personal Information Act
    • -
    • Supports The “Marco Civil” and the Brazilian General Data Protection Law (LGPD)
    • -
    -

    Legal Documents

    -
      -
    • Privacy statements (EU, CA, UK, AU, ZA, BR & USA).
    • -
    • Cookie policy (EU, UK, CA, AU, ZA, BR & USA).
    • -
    • Impressum (Germany & Austria) & Imprint for world wide use.
    • -
    • Disclaimer
    • -
    • Terms & Conditions Integration
    • -
    • Processing agreements (EU, UK, CA, AU, ZA, BR & USA).
    • -
    • Dataleak reporting tools (EU, UK, CA, AU, ZA, BR & USA).
    • -
    • Supports CCPA Consent and Legal documents.
    • -
    • COPPA ready with Children’s Privacy Policy (USA)
    • -
    • Children’s Privacy Policy (UK,CA & AU)
    • -
    -

    Support & Updates

    -
      -
    • Premium Support from our amazing team.
    • -
    • Premium updates, new languages, features, regions and more to create the Ultimate Privacy Suite for WordPress.
    • -
    -

    About Complianz

    -

    Check out other plugins developed by Really Simple Plugins as well: Really Simple SSL

    -

    Complianz is on GitHub as well!

    -

    IMPORTANT! Complianz | GDPR/CCPA Cookie Consent can help you meet compliance requirements, but the user must ensure that all requirements are met.

    -

    Complianz provides your Cookie Policy with comprehensive cookie descriptions, supplied by cookiedatabase.org, operated by Complianz B.V. The plugin sends the results of Complianz’ local or advanced website scan to Cookiedatabase.org, for the sole purpose of providing you with accurate descriptions and keeping them up-to-date on a regular basis. The advanced website scan can be initialized after authentication and consent for security purposes.

    -

    We collect for research purposes:

    -
      -
    • Cookie names
    • -
    • Domain that provides the cookie names
    • -
    • Plugin list on the domain
    • -
    -

    For more information:

    - -

    For security purposes, we authenticate the advanced website scan with:

    -
      -
    • Email address
    • -
    -

    The advanced website scan collects public data from the user’s site, stores it for one hour, and then discards it without analysis.

    -

    For more information:

    - -

    Contact us if you have any questions, issues, or suggestions. Complianz | GDPR/CCPA Cookie Consent is developed by Complianz B.V..

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Complianz – GDPR/CCPA Cookie Consent", "slug": "complianz-gdpr", "tags": {"gdpr": "GDPR", "cookie": "cookie", "consent": "consent", "privacy": "privacy", "cookie-notice": "cookie notice"}, "added": "2018-06-26", "icons": {"1x": "https://ps.w.org/complianz-gdpr/assets/icon-128x128.png?rev=2881064", "2x": "https://ps.w.org/complianz-gdpr/assets/icon-256x256.png?rev=2881064"}, "author": "Complianz", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/complianz-gdpr/assets/banner-772x250.png?rev=2881064", "high": "https://ps.w.org/complianz-gdpr/assets/banner-1544x500.png?rev=2881064"}, "ratings": {"1": 66, "2": 14, "3": 14, "4": 38, "5": 1433}, "version": "7.4.2", "homepage": "https://www.wordpress.org/plugins/complianz-gdpr", "requires": "5.9", "sections": {"faq": "\n
    \nKnowledgebase\n\n

    \n

    Complianz maintains a continuously growing knowledgebase about GDPR, including subregions e.g. DSGVO and CNIL, CCPA, PIPEDA, COPPA, POPIA & other specific laws on complianz.io

    \n

    \n
    \nIs my website GDPR, COPPA, CCPA, DSGVO, TTDSG, AVG, CNIL, UK-GDPR, PECR, CASL, LGPD, POPIA and/or PIPEDA compliant with this plugin?\n\n

    \n

    We cannot guarantee compliance for your website. A correct configuration of this plugin by a website administrator is always required.

    \n

    \n
    \nWhen do I need a Cookie Notice?\n\n

    \n

    Complianz | GDPR/CCPA Cookie Consent will determine this automatically based on the laws of the region or regions, where most of your visitors come from.
    \nRegarding CCPA/CPRA, you always have to show which cookies you are using but there’s no obligation in asking consent.

    \n

    \n
    \nDo I always need a consent checkbox on contact forms?\n\n

    \n

    Not always. The Complianz Privacy Suite Premium plugin can determine if you need this, based on your answers in the wizard. It mainly depends on the type of information and the reason why your visitor use the contact form.

    \n

    \n
    \nWhat is the GDPR?\n\n

    \n

    The GDPR is a regulation within the EU law on privacy and data protection for any citizen within the EU and European Economic Area. It aims primarily on giving control to individuals over their personal data. The GDPR also addresses the export of personal data outside the EU.

    \n

    \n
    \nWhat is the CCPA?\n\n

    \n

    The CCPA (Californian Privacy Act) is a law set up by the Californian government. The law is adjudged to be one of the toughest and farthest-reaching consumer privacy laws in the US. It is mostly focused on giving insights on what personal data business gather and how to protect and control these personal data.

    \n

    \n
    \nWhat is COPPA?\n\n

    \n

    The Children’s Online Privacy Protection Act (COPPA) is a law designed to protect the online privacy of children under 13. It was set up in the 1990’s and states that website owners have to meet certain requirements regarding visitors with the age under 13.

    \n

    \n
    \nWhat are PECR & UK-GDPR?\n\n

    \n

    PECR (UK) covers the use of cookies and similar technologies for storing information and accessing information stored, on a user’s equipment such as a computer or mobile device.

    \n

    \n
    \nWhat are the Privacy Act 1988 & Australian Privacy Principles\n\n

    \n

    To comply with the Australian privacy laws a website operator should present a cookie policy and/or a privacy notice before or, if that is not practicable, as soon as practicable after, your website collects personal information about an individual.

    \n

    \n
    \nWhat are PIPEDA & CASL?\n\n

    \n

    Canada’s Anti-Spam Legislation (CASL) and Personal Information Protection and Electronic Documents Act (PIPEDA) require a website operator to obtain consent, either implied or express consent with a dedicated cookie statement.

    \n

    \n
    \nWhat POPIA (POPI Act)?\n\n

    \n

    POPIA is the acronym for the South African PROTECTION OF PERSONAL INFORMATION ACT. Similar to the GDPR, the UK-GDPR, and the Brasilian LGPD, it promotes the protection of personal information processed by public and private bodies, regulates the cross-border flow of personal information, and outlines the rights of data subjects.

    \n

    \n
    \nWhat are “Marco Civil” and the Brazilian General Data Protection Law (LGPD)?\n\n

    \n

    The Brazilian General Data Protection Law is similar to the GDPR, the UK-GDPR it promotes the protection of personal information processed by public and private bodies, regulates the cross-border flow of personal information, and outlines the rights of data subjects. The Marco Civil is the Brazilian name of the Brazilian Civil Rights Framework for the Internet a counterpart to European’s “ePrivacy”, although not similar.

    \n

    \n
    \nCan I create a Cookie Wall with this plugin?\n\n

    \n

    With some custom CSS this is possible, but we do not consider a cookie wall to be GDPR compliant, so it’s not actively supported. We do, however, have the option to create a Soft Cookie Wall. Which blocks interaction with the website, but dismissing remains a possibility.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Unwanted software installed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy scoalegil on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My team inadvertently installed \"really simple security\" which caused a bunch of headaches. The way it gets installed is very close to illegal here in Canada.

    If you want to sell me unrelated software, ask for permission to add me to your email list and let me decide if I want to open it, don''t stick it in the middle of another piece of software that I pay for and pretend it is useful.

    I had to jump through a bunch of hoops to restore the security of my client website that was ALWAYS https to get it back to https after this unwanted software changed the site url upon deactivation.

    I don''t care about what is or is not common on software. I bought a Complianz license because it was trusted and easy to setup. I normally pay close attention to avoid this kind of trickery but was fooled by this at the end of a VERY long set of detailed questions.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Best Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rodrigomg13 on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The Best Plugin - Used for 5 websites

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy markiljas on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Probably the best and most thorough plugin for consent banner. I really like the wizard and how it is basically set up and forget. I use it on four websites.

    \n\n\n\n

    I do wish options like consent on scroll/timeout and GTM server-side tacking options are available in GUI instead of being forced to rely on adding code and scripts, but perhaps this will be remedied in future updates.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Complianz | GDPR cookie consent great job

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rmielniczek on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My rating is 5 stars. Thank you a lot guys.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great with my theme.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Karin (beadshint) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Working great so far. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I hate loosing time

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy matteolavaggi on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I really hate plugins that don’t clearly state they’re paid in the main description. Stop wasting users’ time.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bios2000one on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Die Erweiterung ist wirklich super. Ich habe schon andere ausprobiert, aber diese ist absolut einfach zu bedienen und arbeitet perfekt.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin, very useful!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jayjay66 on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good installation, necessary plugin, great product

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy set up!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Nathan Saulter (nsaulter) on September 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really appreciate how easy and fast it is to set this up!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Una forma de cumplir con las normas de forma fácil

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pedromo on September 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Estupendo plugin para estar al día y cumplir las normas europeas, todo perfecto, fácil y sin complicaciones.

    \n
    \n
    \n", "changelog": "

    7.4.2

    \n
      \n
    • July 11th, 2025
    • \n
    • Translations: Updated translations.
    • \n
    • Accessibility: Improved cookie banner for better accessibility.
    • \n
    • Fix: Backend not loading due to missing dependency on WordPress versions lower than 6.6.
    • \n
    \n

    7.4.1

    \n
      \n
    • June 18th, 2025
    • \n
    • New: Notifications system.
    • \n
    • Update: Other plugins suggestion component.
    • \n
    • Improvement: Website Scan, added site creation.
    • \n
    • Improvement: Dailymotion integration.
    • \n
    • Improvement: Google Recaptcha integration.
    • \n
    • Improvement: Clarity integration.
    • \n
    • Security update: Authenticated (Translator+) Stored XSS.
    • \n
    \n

    7.4.0.1

    \n
      \n
    • April 14th, 2025
    • \n
    • Improvement: Tested up to WordPress 6.8
    • \n
    • Fix: Fixed missing “Details Per Purposes” section.
    • \n
    \n

    7.4.0

    \n
      \n
    • March 31th, 2025
    • \n
    • Improvement: refactored translations of Complianz due to Function _load_textdomain_just_in_time notice
    • \n
    • Improvement: updated translations
    • \n
    • Improvement: onboarding to authenticate website scan trigger changed
    • \n
    \n

    7.3.1

    \n
      \n
    • March 5th, 2025
    • \n
    • Fix: removed admin redirect for cmplz_admin redirect solving issues with manageWP and forceful scan onboarding.
    • \n
    • Enhancement: Add support for New Jersey, Iowa, Delaware, New Hampshire, Nebraska state privacy laws.
    • \n
    • Enhancement: Email obfuscation now uses HTML entities and CSS to prevent spam bots from reading the email address.
    • \n
    • Enhancement: Google Tag Manager script placement can now be dynamically set to load in the header or footer based on user preference, addressing Google Diagnostics warnings.
    • \n
    • Enhancement:Small labels and descriptions adjustments.
    • \n
    \n

    7.3.0

    \n
      \n
    • February 12th, 2025
    • \n
    • Enhancement: Website Scan, added services detection.
    • \n
    • Enhancement: Improved Omnisnippet compatibility.
    • \n
    • Enhancement: Removed “BETA” references on Google Consent Mode V2 to reflect its finalized status.
    • \n
    • Enhancement: Removed the soft cookie wall preview functionality and updated its description.
    • \n
    • Enhancement: Added new Tips & Tricks.
    • \n
    • Enhancement: Updated email field validation to allow the use of certain special characters.
    • \n
    • Fix: Resolved issues with vendor links by improving the parsing logic to handle commas in vendor names or URLs correctly.
    • \n
    • Fix: Triggered GeoIP database installation to ensure proper functionality during upgrades.
    • \n
    \n

    7.2.0

    \n
      \n
    • December 16th, 2024
    • \n
    • Feature: Website Scan
    • \n
    • Enhancement: Introduced the cmplz_after_css_generation hook to improve CSS file management
    • \n
    • Enhancement: Language file updated
    • \n
    • Fix: translations https://complianz.io/doing-it-wrong-notice
    • \n
    \n

    7.1.5

    \n
      \n
    • November 13th, 2024
    • \n
    • Fix: update bf dates
    • \n
    \n

    7.1.4

    \n
      \n
    • October 28th, 2024
    • \n
    • Improvement: Add support for Montana, Oregon, and Texas state privacy laws enhancement.
    • \n
    • Improvement: Add support for Microsoft Ads UET consent mode.
    • \n
    • Fix: mPDF custom tempdir cache cleanup.
    • \n
    • Fix: Correct cmplz_transients handling in post save process.
    • \n
    • Fix: Ensure complete data removal on Complianz uninstall.
    • \n
    • Fix: Update email validation for longer TLDs.
    • \n
    • Fix: Label adjustment.
    • \n
    \n

    7.1.0

    \n
      \n
    • May 14th, 2024
    • \n
    • Improvement: Updated Google Site Kit integration
    • \n
    • Improvement: Detection of pages with shortcode query improved for sites with a lot of pages
    • \n
    • Improvement: limit above query to pages only, props @georgestephanis
    • \n
    • Fix: get_required_pages not existing for documents rest_api endpoint, causing a fatal error
    • \n
    • Fix: Data is shared with this service not saving in cookies overview
    • \n
    \n

    7.0.5

    \n
      \n
    • April 29th, 2024
    • \n
    • Fix: compatibility with Meta Slider plugin
    • \n
    • Fix: unexpected behaviour when editing a new, unsaved script block in the script center
    • \n
    • Fix: Detection of Really Simple SSL pro in other plugins section
    • \n
    • Fix: don’t replace style src with #, as this reloads the entire page as style src, props @smerriman
    • \n
    • Fix: prefill administrator email in onboarding email
    • \n
    • Fix: undefined array key placeholderContent in Block Editor block
    • \n
    \n

    7.0.4

    \n
      \n
    • March 9th, 2024
    • \n
    • Fix: Purposes were incorrectly set to ‘disabled’, while there should only be a condition limiting it to the US region only, props @cdhodgdon
    • \n
    • Fix: Pixelyoursite + pinterest function name incorrect, props @theogk
    • \n
    \n

    7.0.3

    \n
      \n
    • March 5th, 2024
    • \n
    • Improvement: clean up MPDF temp directory after pdf generation
    • \n
    • Improvement: set aria label on x close button from banner
    • \n
    • Fix: deleting cookies with disallowed cookie names causing fatal error, props @baffled
    • \n
    • Fix: missing cmplz_deny_all() function for expired cookies with a changed cookie policy id.
    • \n
    • Fix: cmplz_set_category_as_body_class() also iterating over objects instead of just class names, when parsing the body classes, props @tomnoir
    • \n
    • Fix: due to changed setting usage, Complianz assumed TCF active in some situations, causing the banner editor not to function properly, props @vania2008, @jeanfrancois7
    • \n
    \n

    7.0.2

    \n
      \n
    • February 28th, 2024
    • \n
    • Fix: force the ‘wizard_completed_once’ to be true for upgrades to 7.0.2, to prevent issues with banner not showing after upgrade, props @cometto, @riroweb2022, @katynen, @julianulmer, @iviadvagency
    • \n
    \n

    7.0.1

    \n
      \n
    • February 27th, 2024
    • \n
    • Fix: catch COMPLIANZ class not loaded yet in cmplz_get_option, props @sizilianischekueche, @franktomas, @martinellimarco, @boinich
    • \n
    \n

    7.0.0

    \n
      \n
    • February 27th, 2024
    • \n
    • New: Rework codebase to React Framework
    • \n
    • New: Hybrid cookie scan
    • \n
    • New: Menu-item ‘Tools’
    • \n
    • New: Set cookies on root domain
    • \n
    • New: Search for plugins and services
    • \n
    • New: Statistics block on dashboard
    • \n
    • New: Onboarding
    • \n
    • New: consent mode
    • \n
    • New: Greenshift + YouTube integration
    • \n
    • Improvement: INP performance optimisation
    • \n
    • Improvement: catch not isset region
    • \n
    • Improvement: add banner title to css class
    • \n
    • Improvement: extend YoTuWP blocklist
    • \n
    • Improvement: whitelist video lightbox in Beaver Builder
    • \n
    • Improvement: allow text in Clarity ID input field
    • \n
    • Improvement: DNSMPI feedback on form
    • \n
    • Improvement: Dropped temp dir from MPDF generation, props @piccart
    • \n
    • Improvement: use custom transient to lower number of database requests
    • \n
    • Improvement: Added a filter to delete Records of Consent if older than X days
    • \n
    • Improvement: E-mail obfuscation now uses the antispambot() function
    • \n
    • Improvement: Consent area on a Twitter embed no longer links to Twitter
    • \n
    • Improvement: Improvement: Added translatable aria-label
    • \n
    • Fix: Elementor popup blocked content not unlocking on refresh
    • \n
    • Fix: per site activation of single site plugin on multisite
    • \n
    • Fix: include banner id in cache key for page links, to ensure different banner data is respected across banner ids.
    • \n
    • Fix: jQuery exists check in Elementor integration
    • \n
    \n

    6.5.6

    \n
      \n
    • Improvement: prevent administrator from saving javascript in the css editor
    • \n
    \n

    6.5.5

    \n
      \n
    • October 12th, 2023
    • \n
    • Fix: also clear localstorage & sessionstorage with cookie shredder
    • \n
    • Fix: With only Canada in opt out mode selected, the question ‘will you self host Google Fonts’ was not visible
    • \n
    • Improvement: setting a class on the parent div of a placeholder with height inherit resolves css issues on some themes, props @maxineblack
    • \n
    • Fix: compatibility with WP Rocket when some iframes are lazy loaded, but not all.
    • \n
    \n

    6.5.4

    \n
      \n
    • September 20th, 2023
    • \n
    • Improvement: upgrade MPDF version to 8.1.3
    • \n
    • Improvement: prefix ‘request’ to prevent conflicts with weglot
    • \n
    • Fix: bug in Divi Recaptcha integration
    • \n
    • Fix: Block Editor dropping styles when in unsynced mode
    • \n
    • Fix: Consent Mode moved to banner_loaded hook to ensure loading
    • \n
    \n

    6.5.3

    \n
      \n
    • 08-08-2023
    • \n
    • Improvement: Tested up-to WordPress 6.3
    • \n
    \n

    6.5.2

    \n
      \n
    • 11-07-2023
    • \n
    • Fix: catch missing $slug when another plugin drops the slug property
    • \n
    \n

    6.5.1

    \n
      \n
    • 10-07-2023
    • \n
    • Improvement: restore php 7.2 support in burst installer
    • \n
    • Improvement: catch server configurations not supporting webp
    • \n
    • Improvement: catch not existing file when generating webp
    • \n
    • Improvement: catch not existing $slug property in auto updates check
    • \n
    • Improvement: catch not existing ID in wordpress $post when checking for summary divs
    • \n
    \n

    6.5.0

    \n
      \n
    • 04-07-2023
    • \n
    • New: placeholders converted to wepb, loaded with lazyloading, props @james-feaver, @asafm7
    • \n
    • Fix: CAOS host analytics locally integration fixed after constant was dropped
    • \n
    • Fix: DNT caused wp_has_consent to always return false, which should not be the case if consent is given on a service specifically
    • \n
    • Fix: no rt_ prefix on Tag Manager events
    • \n
    • Fix: PHP 8.2 warnings of dynamically created properties
    • \n
    • Fix: When TCF active, in some cases this could cause a cmlz_accept_all not defined error
    • \n
    • Fix: Fatal error in Wizard when using “Falang”, props @chabass
    • \n
    • Fix: cookies can not able to run in some cases due to missing variable declarations, props @sira1967
    • \n
    \n

    6.4.7

    \n
      \n
    • June 14th, 2023
    • \n
    • Fix: WordPress 6.2 version moved the Privacy Policy function to a different file. Added fallback for older versions.
    • \n
    • Fix: The fix for the Classic Editor bug which removes summary/details html elements, caused an issue when the post content is empty.
    • \n
    • Improvement: if configuration by Complianz is set to false, the gtag id was added anyway, but empty.
    • \n
    • Improvement: strings in UK cookie policy translatable, which shouldn’t be the case.
    • \n
    \n

    6.4.6

    \n
      \n
    • Improvement: unhide pagination on data requests page.
    • \n
    • Improvement: Jersey and Guernsey included
    • \n
    • Improvement: move nonce check to earlier in the process
    • \n
    • Improvement: only show notice about duplicate statistics implementation if stats are actually used.
    • \n
    • Improvement: Easy Liveblogs integration
    • \n
    • Fix: Workaround for strange issue where the Classic Tiny MCE editor strips the summary/details tags from the unsynced legal documents html
    • \n
    \n

    6.4.5

    \n
      \n
    • Security: CSRF fixed
    • \n
    • Fix: type=module support for scripts other than inline scripts
    • \n
    • Fix: new shortcode handling for consent area not working for some plugin shortcodes, split in two options: default, the old one, optionally the clientside version.
    • \n
    \n

    6.4.4

    \n
      \n
    • Fix: catch not existing post_data if post structure is not following WordPress standards
    • \n
    • Fix: exclude bricks builder from cookie blocker
    • \n
    • Improvement: AddToAny integration updated, props @micropat
    • \n
    • Improvement: wording and links in Canadian Cookie Policy
    • \n
    • Improvement: mailchimp woocommerce integration feature activation after consent
    • \n
    • Improvement: updated classic consent area to the same new structure as the new Gutenberg consent area
    • \n
    • Improvement: script type module support in cookie blocker
    • \n
    • Improvement: exclude cornerstone builder from cookieblocker
    • \n
    • Improvement: new cmplz_upload_dir and cmplz_upload_url filters, to allow overrides of the plugin folders.
    • \n
    • Dropped: Ultimate Add ons for Elementor integration, due to incompatibility issues
    • \n
    \n

    6.4.3

    \n
      \n
    • Improvement: add exclude cookies filter
    • \n
    • Improvement: add support for parent/child themes, props @dominiccarrington
    • \n
    • Improvement: incorrect bold paragraphs in Privacy Statement for Children
    • \n
    • Improvement: clear blocked scripts cache on ajax save in script center
    • \n
    • Improvement: hubspot integration improved
    • \n
    • fix: cmplz-consent-area shortcode reload loop because of hardcoded marketing category, props @matthiaswagner
    • \n
    \n

    6.4.2.1

    \n
      \n
    • New: branding update
    • \n
    \n

    6.4.2

    \n
      \n
    • Security update: authenticated Stored XSS issue
    • \n
    • Fix: disable cookie banner option in wizard didn’t load the complianz.js scripts, causing placeholders not to work when activated.
    • \n
    • Fix: After switching to unlinked status in a legal document, purpose paragraph got dropped
    • \n
    • Fix: not all categories within services showing in cookie policy overview
    • \n
    • Fix: isset check on get_field_type function, props @moxymore
    • \n
    • Fix: not translatable VAT ID string
    • \n
    • Fix: With Global Privacy Control or Do Not Track enabled, and the user accepting an embedded service, the service was blocked again after a pageload.
    • \n
    • Improvement: allow custom directory for cookie banner css generation
    • \n
    • Improvement: catch open basedir restriction
    • \n
    • Improvement: catch not existing accept button during initial cookie scan (no banner active yet)
    • \n
    • Improvement: function cmplz_has_consent() in ‘other’ region returned false when no cookies present, while it should return true in that case.
    • \n
    • New: Buttonizer integration
    • \n
    • New: hCatpcha for WordPress
    • \n
    \n

    6.4.1

    \n
      \n
    • Improvement: do not copy over async attribute to prevent issues re-initializing scripts in some setups
    • \n
    • Improvement: get_cookie() function performance, props @lucastello
    • \n
    • Improvement: add space behind contact details on policy
    • \n
    • Improvement: add our own ‘manage_privacy’ capability, as the wordpress core manage_privacy_options is not implemented consistently with other capabilities
    • \n
    • Improvement: catch not set array class-document.php 1820
    • \n
    • Improvement: hide blocked iframes until they’re consented to, for better UX
    • \n
    • Improvement: PHP 8.2 compatibility
    • \n
    • Improvement: export datarequests on symlinked folder setups (BASE_PATH -> ABSPATH)
    • \n
    • Fix: links to processing agreement create page broken
    • \n
    • Fix: Divi Recaptcha support
    • \n
    • Fix: WP Go Maps Pro update
    • \n
    • Fix: cosmetic change: cmplz_functional should always be allow, props @jidwictut9
    • \n
    • Fix: when editing consent in unsynced mode in Gutenberg, content went missing because of automatically wrapping with divs by gutenberg and missing key props
    • \n
    • New: Agile Store Locator integration
    • \n
    • New: Omnisend Connect integration
    • \n
    \n

    6.4.0

    \n
      \n
    • Fix: function name error in microsoft ads integrations, props @mustafauysal
    • \n
    • Fix: GPC & DNT in opt out regions not respected, props @ahegyes
    • \n
    • Improvement: conditional scroll into view on consent area shortcode, props @falkemediawy
    • \n
    • Improvement: MPDF update, props @sviluppomania
    • \n
    • Improvement: catch CURL errors because of local SSL issues, add to system status
    • \n
    • Improvement: return # for not existing page id in case of generated docs by complianz, but not actually generated
    • \n
    • Improvement: Fire load event in divi integration after consent
    • \n
    \n

    6.3.9

    \n
      \n
    • Brought version in sync with premium version
    • \n
    • Improvement: Add classes to address details
    • \n
    • Improvement: auto installer for Really Simple SSL multisite compatible
    • \n
    • Improvement: add filter to allow filtering data-request email recipient ‘cmplz_datarequest_email’
    • \n
    • Improvement: translatable URLs in polylang
    • \n
    • New: Microsoft Ads/Microsoft Clarity integration
    • \n
    • Fix: some scripts not executing properly because of copying data-service & data-category attributes props @sophiaknows, @hamil1
    • \n
    • Fix: new added query added to cookie block exclude to ensure Avada live builder works, props @franck_b, @markusand
    • \n
    \n", "description": "

    Complianz is a GDPR/CCPA Cookie Banner plugin that supports GDPR, ePrivacy, DSGVO, TTDSG, LGPD, POPIA, APA, RGPD, CCPA/CPRA and PIPEDA with a conditional Cookie Consent Banner and customized Cookie Policy based on the results of the built-in Cookie Scan.

    \n

    \n

    Features

    \n

    Cookie Consent Notice

    \n
      \n
    • Configure a Cookie Notice for your specific region: European Union, United Kingdom, United States, Australia, South Africa, Brazil or Canada. Or use one Cookie Notice worldwide.
    • \n
    • Configure specific cookie consent per subregion, for example: European Union + TTDSG/DSGVO/CNIL or USA + specific states for CCPA/CPRA/CTDPA etc
    • \n
    • Cookie Consent and Conditional Cookie Notice with Custom CSS and Customizable Templates. WCAG Level AA and ADA Compliant.
    • \n
    • Banner Templates include: GDPR-friendly Cookie Wall – Accept/Dismiss – Consent per Category – Consent per Service
    • \n
    • Banner Templates also include; Dismiss on scroll, time on page or both based on legislation
    • \n
    • We aim to follow WCAG 2.1 AA guidelines and ADA best practices in the design of our cookie banners and legal documents to support accessibility.
    • \n
    • No jQuery Dependency
    • \n
    \n

    Consent Management

    \n
      \n
    • Automatically configures your website based on wizard questions, WordPress scans and dedicated service and plugin integrations.
    • \n
    • Blocks 3rd party cookies like Google Maps, Facebook, Instagram, AdSense, Hubspot, Recaptcha, Twitter, ActiveCampaign, and many more.
    • \n
    • Custom integrations for plugins, themes and services are automatically detected.
    • \n
    • Blocks iFrames, like YouTube, Vimeo, Dailymotion embedded videos and Social iFrames e.g. Instagram, Facebook et al.
    • \n
    • Shows placeholders for blocked iFrames. Stills from videos and individual placeholders per (social) service.
    • \n
    • Script Center to control scripts, iFrames and plugins per category or service. With dependency functionality and placeholders.
    • \n
    • Proof of Consent: User consent registration that respects the GDPR data minimization guideline.
    • \n
    • Periodical Cookie Scan for changes in Cookies, Plugins and 3rd Party services.
    • \n
    • Automatically detects if you need a Cookie Notice (also called a Cookie Banner or Pop-Up).
    • \n
    • Automatically anonymizes personal data for integrated statistics tools if needed.
    • \n
    \n

    Privacy Laws & Guidelines

    \n
      \n
    • Ready for GDPR, ePrivacy AVG, RGPD, LGPD, DSGVO, CNIL, PECR, UK DPA, UK GDPR, CCPA, COPPA, PIPEDA, CASL, POPIA, Privacy Act 1988, Australian Privacy Principles, The “Marco Civil” and the Brazilian General Data Protection Law.
    • \n
    • Differentiate between GDPR, ePrivacy and DSGVO/CNIL or between CCPA/DNSMPI and NRS 603A, if needed.
    • \n
    • We closely follow the latest developments in the ePrivacy regulation, the proposed Cookie Law for the European Union, and other legislation world-wide.
    • \n
    \n

    Legal Documents

    \n
      \n
    • A Cookie Policy; Generated by you with an easy wizard, drafted by an IT Law Firm.
    • \n
    • Do Not Sell My Personal Information: DNSMPI Page for CCPA/CPRA – if required. (Now called Opt-out Preferences.)
    • \n
    • Terms and Conditions are available in a separate plugin: Complianz – Terms and Conditions
    • \n
    \n

    Integrations

    \n
      \n
    • Detected Cookie Data is prefilled from cookiedatabase.org, with clear and transparent cookie descriptions, which are continuously updated.
    • \n
    • Integrated with WordPress Privacy features. Export and erase personal data from our dashboard.
    • \n
    • Implementation of Google Tag Manager, Google Analytics, Matomo, Matomo Tag Manager, Clicky, Yandex, Jetpack and Burst Statistics
    • \n
    • Categorize your Cookies with Tag Manager or our Script Center, if needed.
    • \n
    • \n

      Integration with the WP Consent API

      \n
    • \n
    • \n

      Integrates seamlessly with Gutenberg, Elementor, Divi, Forminator, WPBakery, Monsterinsights, GADWP, Beehive, WPForms, Gravity Forms, HappyForms, Contact Form 7 <5.4 (CF7), Woocommerce, Easy Digital Downloads, WP Google Maps, Google Maps Widget, Local Google Fonts, CAOS | Host Google Analytics Locally and other popular plugins.

      \n
    • \n
    • Tested with popular themes en page builders.
    • \n
    • Gutenberg Blocks enabled.
      \n

      Support

      \n

      Complianz offers full support on the WordPress.org Forum. Before starting a new thread, please check available documentation and other support threads. Leave a clear and concise description of your issue, and we will respond as soon as possible.

    • \n
    \n

    Useful Links

    \n\n

    Premium Features

    \n

    Complianz offers a Full Privacy Suite for WordPress on Complianz.io with even more features:

    \n

    Cookie Consent Notice

    \n
      \n
    • Improve conversion with A/B Testing: which cookie banner has the best consent ratio? Run tests and measure what works best for your site.
    • \n
    \n

    Consent Management

    \n
      \n
    • Records of Consent: Keep record of your consent management changes and user’s consent registration. Integrates with Proof of Consent
    • \n
    • Respects the Do Not Track settings and Global Privacy Controls in end-users browsers.
    • \n
    • Geo IP Cookie Consent: Cookie Consent is different everywhere. Show the correct Cookie Notice based on IP location, but only if a banner is needed.
    • \n
    • Google Consent Mode – Use Consent Mode by Google with Google Tag Manager or Google Analytics. No further set-up needed.
    • \n
    • Integration with TCF v2.0. An IAB Europe Consent Framework for Publishers. Registered CMP ID: 332
    • \n
    • Data Request Forms and Registration
    • \n
    \n

    Privacy Laws & Guidelines

    \n

    Simultaneously select USA, Canada, United Kingdom, Australia, South Africa, Brazil and the EU as targeted regions with conditional Consent and dedicated Cookie Banners.

    \n
      \n
    • Support for GDPR / ePrivacy – European Union with Extension for Switzerland.
    • \n
    • Support for USA / CCPA/CPRA/CPA/CTDPA/NRS 603A/UCPA/CDPA
    • \n
    • Support for UK-GDPR / PECR and ICO Guidelines – United Kingdom.
    • \n
    • Support for PIPEDA and CASL – Canada.
    • \n
    • Support for Privacy Act 1988 & Australian Privacy Principles
    • \n
    • Support for POPIA, the South African Protection of Personal Information Act
    • \n
    • Supports The “Marco Civil” and the Brazilian General Data Protection Law (LGPD)
    • \n
    \n

    Legal Documents

    \n
      \n
    • Privacy statements (EU, CA, UK, AU, ZA, BR & USA).
    • \n
    • Cookie policy (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Impressum (Germany & Austria) & Imprint for world wide use.
    • \n
    • Disclaimer
    • \n
    • Terms & Conditions Integration
    • \n
    • Processing agreements (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Dataleak reporting tools (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Supports CCPA Consent and Legal documents.
    • \n
    • COPPA ready with Children’s Privacy Policy (USA)
    • \n
    • Children’s Privacy Policy (UK,CA & AU)
    • \n
    \n

    Support & Updates

    \n
      \n
    • Premium Support from our amazing team.
    • \n
    • Premium updates, new languages, features, regions and more to create the Ultimate Privacy Suite for WordPress.
    • \n
    \n

    About Complianz

    \n

    Check out other plugins developed by Really Simple Plugins as well: Really Simple SSL

    \n

    Complianz is on GitHub as well!

    \n

    IMPORTANT! Complianz | GDPR/CCPA Cookie Consent can help you meet compliance requirements, but the user must ensure that all requirements are met.

    \n

    Complianz provides your Cookie Policy with comprehensive cookie descriptions, supplied by cookiedatabase.org, operated by Complianz B.V. The plugin sends the results of Complianz’ local or advanced website scan to Cookiedatabase.org, for the sole purpose of providing you with accurate descriptions and keeping them up-to-date on a regular basis. The advanced website scan can be initialized after authentication and consent for security purposes.

    \n

    We collect for research purposes:

    \n
      \n
    • Cookie names
    • \n
    • Domain that provides the cookie names
    • \n
    • Plugin list on the domain
    • \n
    \n

    For more information:

    \n\n

    For security purposes, we authenticate the advanced website scan with:

    \n
      \n
    • Email address
    • \n
    \n

    The advanced website scan collects public data from the user’s site, stores it for one hour, and then discards it without analysis.

    \n

    For more information:

    \n\n

    Contact us if you have any questions, issues, or suggestions. Complianz | GDPR/CCPA Cookie Consent is developed by Complianz B.V..

    \n", "screenshots": "
    1. \"Complianz

      Complianz Dashboard: Your privacy HUB

    2. \"The

      The Wizard: Generate a cookie policy and configure consent management to your specific needs.

    3. \"Automatic

      Automatic Cookie Scan: Weekly scan of your website to keep you up-to-date!

    4. \"Customize

      Customize your Cookie Banner: Including template styles and a range of styling options, WCAG conform. Custom CSS available for full control!

    5. \"Integrations:

      Integrations: Dedicated integrations with the most popular plugins, themes and services. Feature requests are possible!

    6. \"Placeholders:

      Placeholders: Still images for video placeholders and individual placeholders for social media widgets. Fully customizable as well!

    7. \"Legal

      Legal Documents: Dedicated legal documents per region. Generated by you through the wizard, drafted, and updated by our IT Law firm.

    ", "installation": "
      \n
    • Go to “Plugins” in your WordPress Dashboard, and click “Add new”.
    • \n
    • Click “Upload”, and select the downloaded zip file.
    • \n
    • Activate your new plugin.
    • \n
    • Use our tour to get familiar with Complianz.
    • \n
    \n"}, "versions": {"beta": "https://downloads.wordpress.org/plugin/complianz-gdpr.beta.zip", "6.5.6": "https://downloads.wordpress.org/plugin/complianz-gdpr.6.5.6.zip", "7.0.4": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.0.4.zip", "7.0.5": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.0.5.zip", "7.1.0": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.1.0.zip", "7.1.4": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.1.4.zip", "7.1.5": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.1.5.zip", "7.2.0": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.2.0.zip", "7.3.0": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.3.0.zip", "7.3.1": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.3.1.zip", "7.4.0": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.1.zip", "7.4.2": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.2.zip", "trunk": "https://downloads.wordpress.org/plugin/complianz-gdpr.zip", "7.4.0.1": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.0.1.zip"}, "downloaded": 23399610, "description": "

    Complianz is a GDPR/CCPA Cookie Banner plugin that supports GDPR, ePrivacy, DSGVO, TTDSG, LGPD, POPIA, APA, RGPD, CCPA/CPRA and PIPEDA with a conditional Cookie Consent Banner and customized Cookie Policy based on the results of the built-in Cookie Scan.

    \n

    \n

    Features

    \n

    Cookie Consent Notice

    \n
      \n
    • Configure a Cookie Notice for your specific region: European Union, United Kingdom, United States, Australia, South Africa, Brazil or Canada. Or use one Cookie Notice worldwide.
    • \n
    • Configure specific cookie consent per subregion, for example: European Union + TTDSG/DSGVO/CNIL or USA + specific states for CCPA/CPRA/CTDPA etc
    • \n
    • Cookie Consent and Conditional Cookie Notice with Custom CSS and Customizable Templates. WCAG Level AA and ADA Compliant.
    • \n
    • Banner Templates include: GDPR-friendly Cookie Wall – Accept/Dismiss – Consent per Category – Consent per Service
    • \n
    • Banner Templates also include; Dismiss on scroll, time on page or both based on legislation
    • \n
    • We aim to follow WCAG 2.1 AA guidelines and ADA best practices in the design of our cookie banners and legal documents to support accessibility.
    • \n
    • No jQuery Dependency
    • \n
    \n

    Consent Management

    \n
      \n
    • Automatically configures your website based on wizard questions, WordPress scans and dedicated service and plugin integrations.
    • \n
    • Blocks 3rd party cookies like Google Maps, Facebook, Instagram, AdSense, Hubspot, Recaptcha, Twitter, ActiveCampaign, and many more.
    • \n
    • Custom integrations for plugins, themes and services are automatically detected.
    • \n
    • Blocks iFrames, like YouTube, Vimeo, Dailymotion embedded videos and Social iFrames e.g. Instagram, Facebook et al.
    • \n
    • Shows placeholders for blocked iFrames. Stills from videos and individual placeholders per (social) service.
    • \n
    • Script Center to control scripts, iFrames and plugins per category or service. With dependency functionality and placeholders.
    • \n
    • Proof of Consent: User consent registration that respects the GDPR data minimization guideline.
    • \n
    • Periodical Cookie Scan for changes in Cookies, Plugins and 3rd Party services.
    • \n
    • Automatically detects if you need a Cookie Notice (also called a Cookie Banner or Pop-Up).
    • \n
    • Automatically anonymizes personal data for integrated statistics tools if needed.
    • \n
    \n

    Privacy Laws & Guidelines

    \n
      \n
    • Ready for GDPR, ePrivacy AVG, RGPD, LGPD, DSGVO, CNIL, PECR, UK DPA, UK GDPR, CCPA, COPPA, PIPEDA, CASL, POPIA, Privacy Act 1988, Australian Privacy Principles, The “Marco Civil” and the Brazilian General Data Protection Law.
    • \n
    • Differentiate between GDPR, ePrivacy and DSGVO/CNIL or between CCPA/DNSMPI and NRS 603A, if needed.
    • \n
    • We closely follow the latest developments in the ePrivacy regulation, the proposed Cookie Law for the European Union, and other legislation world-wide.
    • \n
    \n

    Legal Documents

    \n
      \n
    • A Cookie Policy; Generated by you with an easy wizard, drafted by an IT Law Firm.
    • \n
    • Do Not Sell My Personal Information: DNSMPI Page for CCPA/CPRA – if required. (Now called Opt-out Preferences.)
    • \n
    • Terms and Conditions are available in a separate plugin: Complianz – Terms and Conditions
    • \n
    \n

    Integrations

    \n
      \n
    • Detected Cookie Data is prefilled from cookiedatabase.org, with clear and transparent cookie descriptions, which are continuously updated.
    • \n
    • Integrated with WordPress Privacy features. Export and erase personal data from our dashboard.
    • \n
    • Implementation of Google Tag Manager, Google Analytics, Matomo, Matomo Tag Manager, Clicky, Yandex, Jetpack and Burst Statistics
    • \n
    • Categorize your Cookies with Tag Manager or our Script Center, if needed.
    • \n
    • \n

      Integration with the WP Consent API

      \n
    • \n
    • \n

      Integrates seamlessly with Gutenberg, Elementor, Divi, Forminator, WPBakery, Monsterinsights, GADWP, Beehive, WPForms, Gravity Forms, HappyForms, Contact Form 7 <5.4 (CF7), Woocommerce, Easy Digital Downloads, WP Google Maps, Google Maps Widget, Local Google Fonts, CAOS | Host Google Analytics Locally and other popular plugins.

      \n
    • \n
    • Tested with popular themes en page builders.
    • \n
    • Gutenberg Blocks enabled.
      \n

      Support

      \n

      Complianz offers full support on the WordPress.org Forum. Before starting a new thread, please check available documentation and other support threads. Leave a clear and concise description of your issue, and we will respond as soon as possible.

    • \n
    \n

    Useful Links

    \n\n

    Premium Features

    \n

    Complianz offers a Full Privacy Suite for WordPress on Complianz.io with even more features:

    \n

    Cookie Consent Notice

    \n
      \n
    • Improve conversion with A/B Testing: which cookie banner has the best consent ratio? Run tests and measure what works best for your site.
    • \n
    \n

    Consent Management

    \n
      \n
    • Records of Consent: Keep record of your consent management changes and user’s consent registration. Integrates with Proof of Consent
    • \n
    • Respects the Do Not Track settings and Global Privacy Controls in end-users browsers.
    • \n
    • Geo IP Cookie Consent: Cookie Consent is different everywhere. Show the correct Cookie Notice based on IP location, but only if a banner is needed.
    • \n
    • Google Consent Mode – Use Consent Mode by Google with Google Tag Manager or Google Analytics. No further set-up needed.
    • \n
    • Integration with TCF v2.0. An IAB Europe Consent Framework for Publishers. Registered CMP ID: 332
    • \n
    • Data Request Forms and Registration
    • \n
    \n

    Privacy Laws & Guidelines

    \n

    Simultaneously select USA, Canada, United Kingdom, Australia, South Africa, Brazil and the EU as targeted regions with conditional Consent and dedicated Cookie Banners.

    \n
      \n
    • Support for GDPR / ePrivacy – European Union with Extension for Switzerland.
    • \n
    • Support for USA / CCPA/CPRA/CPA/CTDPA/NRS 603A/UCPA/CDPA
    • \n
    • Support for UK-GDPR / PECR and ICO Guidelines – United Kingdom.
    • \n
    • Support for PIPEDA and CASL – Canada.
    • \n
    • Support for Privacy Act 1988 & Australian Privacy Principles
    • \n
    • Support for POPIA, the South African Protection of Personal Information Act
    • \n
    • Supports The “Marco Civil” and the Brazilian General Data Protection Law (LGPD)
    • \n
    \n

    Legal Documents

    \n
      \n
    • Privacy statements (EU, CA, UK, AU, ZA, BR & USA).
    • \n
    • Cookie policy (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Impressum (Germany & Austria) & Imprint for world wide use.
    • \n
    • Disclaimer
    • \n
    • Terms & Conditions Integration
    • \n
    • Processing agreements (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Dataleak reporting tools (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Supports CCPA Consent and Legal documents.
    • \n
    • COPPA ready with Children’s Privacy Policy (USA)
    • \n
    • Children’s Privacy Policy (UK,CA & AU)
    • \n
    \n

    Support & Updates

    \n
      \n
    • Premium Support from our amazing team.
    • \n
    • Premium updates, new languages, features, regions and more to create the Ultimate Privacy Suite for WordPress.
    • \n
    \n

    About Complianz

    \n

    Check out other plugins developed by Really Simple Plugins as well: Really Simple SSL

    \n

    Complianz is on GitHub as well!

    \n

    IMPORTANT! Complianz | GDPR/CCPA Cookie Consent can help you meet compliance requirements, but the user must ensure that all requirements are met.

    \n

    Complianz provides your Cookie Policy with comprehensive cookie descriptions, supplied by cookiedatabase.org, operated by Complianz B.V. The plugin sends the results of Complianz’ local or advanced website scan to Cookiedatabase.org, for the sole purpose of providing you with accurate descriptions and keeping them up-to-date on a regular basis. The advanced website scan can be initialized after authentication and consent for security purposes.

    \n

    We collect for research purposes:

    \n
      \n
    • Cookie names
    • \n
    • Domain that provides the cookie names
    • \n
    • Plugin list on the domain
    • \n
    \n

    For more information:

    \n\n

    For security purposes, we authenticate the advanced website scan with:

    \n
      \n
    • Email address
    • \n
    \n

    The advanced website scan collects public data from the user’s site, stores it for one hour, and then discards it without analysis.

    \n

    For more information:

    \n\n

    Contact us if you have any questions, issues, or suggestions. Complianz | GDPR/CCPA Cookie Consent is developed by Complianz B.V..

    \n", "donate_link": "https://paypal.me/complianz", "num_ratings": 1565, "screenshots": {"1": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-1.jpg?rev=2881064", "caption": "Complianz Dashboard: Your privacy HUB"}, "2": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-2.jpg?rev=2881064", "caption": "The Wizard: Generate a cookie policy and configure consent management to your specific needs."}, "3": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-3.jpg?rev=2881064", "caption": "Automatic Cookie Scan: Weekly scan of your website to keep you up-to-date!"}, "4": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-4.jpg?rev=2881064", "caption": "Customize your Cookie Banner: Including template styles and a range of styling options, WCAG conform. Custom CSS available for full control!"}, "5": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-5.jpg?rev=2881064", "caption": "Integrations: Dedicated integrations with the most popular plugins, themes and services. Feature requests are possible!"}, "6": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-6.jpg?rev=2881182", "caption": "Placeholders: Still images for video placeholders and individual placeholders for social media widgets. Fully customizable as well!"}, "7": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-7.jpg?rev=2881064", "caption": "Legal Documents: Dedicated legal documents per region. Generated by you through the wizard, drafted, and updated by our IT Law firm."}}, "support_url": "https://wordpress.org/support/plugin/complianz-gdpr/", "contributors": {"paapst": {"avatar": "https://secure.gravatar.com/avatar/8afa7404247240959b9a36349f5b702e1187125ee7cb418fa48d85c972b31235?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/paapst/", "display_name": "Mathieu Paapst"}, "xantek": {"avatar": "https://secure.gravatar.com/avatar/330e465c847f17589296079315319297e2ef24cf129eb8a5a35a10574e105418?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/xantek/", "display_name": "Ian Carlson"}, "jarnovos": {"avatar": "https://secure.gravatar.com/avatar/c27f26065e2252b8b77b4b7c0171731de172c279478813f74d27a60a432829fc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jarnovos/", "display_name": "Jarno Vos"}, "mujuonly": {"avatar": "https://secure.gravatar.com/avatar/9dfd441771ce6855341932e079bbca5ffd91c69a48ffc114280bb62433ff053c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mujuonly/", "display_name": "mujuonly"}, "aahulsebos": {"avatar": "https://secure.gravatar.com/avatar/dcb9f340fc929b6531b2068c0921e806176c257dea2b8d47dbf44baeb2d9cb73?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aahulsebos/", "display_name": "Aert Hulsebos"}, "markwolters": {"avatar": "https://secure.gravatar.com/avatar/dab3ec58d4eedf545a03eff2ac363eaec029f64c05600d749b3fd923a4fc1432?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/markwolters/", "display_name": "Mark"}, "hesseldejong": {"avatar": "https://secure.gravatar.com/avatar/3dd39dd939945dc1fee0099cabf8a9d12a13ec555e000068bcf4a51a80ab0338?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hesseldejong/", "display_name": "Hessel de Jong"}, "pierrotevrard": {"avatar": "https://secure.gravatar.com/avatar/9c0cead702a8c61983b86c9d61c266fd93a2134b859b1f0fdb43db44d094f24e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pierrotevrard/", "display_name": "pierrotevrard"}, "leonwimmenhoeve": {"avatar": "https://secure.gravatar.com/avatar/8808f3bd519d3e7338685103266889a124168ae9aa9295b7474f537574eee870?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/leonwimmenhoeve/", "display_name": "Leon Wimmenhoeve"}, "rogierlankhorst": {"avatar": "https://secure.gravatar.com/avatar/da7d8197d253a9a792bf908dd77b0d4bcbf2d192f514ed4206903a96fd93f9b9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rogierlankhorst/", "display_name": "Rogier Lankhorst"}, "tomeijkelenkamp": {"avatar": "https://secure.gravatar.com/avatar/8a49b95c91c87f09d5f7cef77ed6db19f6f60c62f3e082afd473dff3b9b3f15c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tomeijkelenkamp/", "display_name": "tomeijkelenkamp"}}, "last_updated": "2025-07-29 1:06pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.2.zip", "author_profile": "https://profiles.wordpress.org/complianz/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "
      \n
    • Please backup before upgrading.
    • \n
    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f159-7244-9226-abe2d1d42936", "name": "Complianz – GDPR/CCPA Cookie Consent", "slug": "complianz-gdpr", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1753794360, "version": "7.4.2"}, "support_threads": 57, "requires_plugins": [], "short_description": "Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookies Scan.", "author_block_count": 1, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 50}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1aa8-7382-8184-3dc994a4f08f', 'did:web:api.aspiredev.org:packages:wp-plugin:contact-form-7', 'contact-form-7', 'Contact Form 7', '

    Contact Form 7 is a plugin designed to be a practical tool for all WordPress users who embrace the philosophy of free and open source software. It employs sophisticatedly modularized architecture and its original Schema-Woven Validation technology.

    -

    Docs and support

    -

    You can find docs, FAQ and more detailed information about Contact Form 7 on contactform7.com. When you cannot find the answer to your question on the FAQ or in any of the documentation, check the support forum on WordPress.org. If you cannot locate any topics that pertain to your particular issue, post a new topic for it.

    -

    Contact Form 7 needs your support

    -

    It is hard to continue to maintain this plugin without support from users like you. There are several ways for you to contribute to the project: testing, coding, translating it into your local languages, helping other users, financial donations, etc, etc. We equally welcome you regardless of the way you contribute.

    -

    Privacy notices

    -

    With the default configuration, this plugin, in itself, does not:

    -
      -
    • track users by stealth;
    • -
    • write any user personal data to the database;
    • -
    • send any data to external servers;
    • -
    • use cookies.
    • -
    -

    If you activate certain features in this plugin, the contact form submitter’s personal data, including their IP address, may be sent to the service provider. Thus, confirming the provider’s privacy policy is recommended. These features include:

    - -', 'wp', 'wp-plugin', 'GPL', '{"name": "Contact Form 7", "slug": "contact-form-7", "tags": {"contact-form": "contact form", "schema-woven-validation": "schema-woven validation"}, "added": "2007-08-02", "icons": {"1x": "https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255", "svg": "https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255"}, "author": "Rock Lobster Inc.", "rating": 80, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427", "high": "https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901"}, "ratings": {"1": 405, "2": 67, "3": 75, "4": 147, "5": 1447}, "version": "6.1.3", "homepage": "https://contactform7.com/", "requires": "6.7", "sections": {"faq": "

    Do you have questions or issues with Contact Form 7? Use these support channels appropriately.

    \n
      \n
    1. Docs
    2. \n
    3. FAQ
    4. \n
    5. Support forum
    6. \n
    \n

    Support

    \n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Quiz (form field) only loads sometimes.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Brad (braads) on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve added a quiz to the contact form to prevent spam.

    \n\n\n\n

    Sometimes the quiz (form field) loads, sometimes (well, most of the time) it doesn''t. Very frustrating.

    \n\n\n\n

    It''s probably time for a new plugin. Contact Form 7 is now outdated.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Hiroshi (hiroshixo) on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a great plugin, which I always use on almost all my websites. It just works. 👍

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nolanrichardson on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It keeps things simple and functional

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    WordPress classic

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Diego Bittencourt (diegobittencourt) on August 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great contribution to community just like Flamingo.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Gets the job done, nothing more

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Wayne Baker (waynebaker) on August 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It’s fine for basic use, but don’t expect advanced features. The plugin feels a bit plain, though it remains dependable for simple contact needs.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best plugin in wp.org

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kateham on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    idk if the author is japanese but this plugin looks like japanese. simple, elegant, strong, reliable, CLEAN!

    \n\n\n\n

    wp should hire this person to direct wp

    \n\n\n\n

    thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple, Reliable, and Perfect for Custom Forms

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rahul Tank (rahultank) on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Contact Form 7 is simple yet powerful. It’s lightweight, works well with most themes, and gives full control over form fields through short codes. Great for basic contact forms without heavy overhead. However, styling requires a bit of custom CSS, and advanced features may need extra plugins. Overall, a reliable choice for anyone who wants a free, no-frills form solution.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Absolutely love the contact form 7

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hurtadodoo on August 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Absolutely love the contact form plugin works perfectly out of the box, easy to customize, and looks good on all devices. The spam protection is also surprisingly effective.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Customizable Forms Generator

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bhanuka (bhanukaw) on August 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is very useful to create customizable forms in the website.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful and easy to set up

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Praagna L Vaishnavi (praagnavaishnavi) on August 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used this plugin for my personal site. Setup was smooth, and it works perfectly. Highly recommended!

    \n
    \n
    \n", "changelog": "

    For more information, see Releases.

    \n

    6.1.3

    \n

    https://contactform7.com/contact-form-7-613/

    \n

    6.1.2

    \n

    https://contactform7.com/contact-form-7-612/

    \n

    6.1.1

    \n

    https://contactform7.com/contact-form-7-611/

    \n

    6.1

    \n

    https://contactform7.com/contact-form-7-61/

    \n

    6.0.5

    \n

    https://contactform7.com/contact-form-7-605/

    \n

    6.0.4

    \n

    https://contactform7.com/contact-form-7-604/

    \n

    6.0.3

    \n
      \n
    • Updates the copyright year to 2025.
    • \n
    • Updates the “Contact Form 7 needs your support” message content.
    • \n
    • Updates the Constant Contact deprecation warning.
    • \n
    \n

    6.0.2

    \n
      \n
    • Removes unnecessary type declaration from nullable arguments to avoid deprecation warnings in PHP 8.4.
    • \n
    \n

    6.0.1

    \n

    https://contactform7.com/contact-form-7-601/

    \n

    6.0

    \n

    https://contactform7.com/contact-form-7-60/

    \n", "description": "

    Contact Form 7 is a plugin designed to be a practical tool for all WordPress users who embrace the philosophy of free and open source software. It employs sophisticatedly modularized architecture and its original Schema-Woven Validation technology.

    \n

    Docs and support

    \n

    You can find docs, FAQ and more detailed information about Contact Form 7 on contactform7.com. When you cannot find the answer to your question on the FAQ or in any of the documentation, check the support forum on WordPress.org. If you cannot locate any topics that pertain to your particular issue, post a new topic for it.

    \n

    Contact Form 7 needs your support

    \n

    It is hard to continue to maintain this plugin without support from users like you. There are several ways for you to contribute to the project: testing, coding, translating it into your local languages, helping other users, financial donations, etc, etc. We equally welcome you regardless of the way you contribute.

    \n

    Privacy notices

    \n

    With the default configuration, this plugin, in itself, does not:

    \n
      \n
    • track users by stealth;
    • \n
    • write any user personal data to the database;
    • \n
    • send any data to external servers;
    • \n
    • use cookies.
    • \n
    \n

    If you activate certain features in this plugin, the contact form submitter’s personal data, including their IP address, may be sent to the service provider. Thus, confirming the provider’s privacy policy is recommended. These features include:

    \n\n", "screenshots": "
    1. \"screenshot-1.png\"

      screenshot-1.png

    ", "installation": "
      \n
    1. Upload the entire contact-form-7 folder to the /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the Plugins screen (Plugins > Installed Plugins).
    4. \n
    \n

    You will find Contact menu in your WordPress admin screen.

    \n

    For basic usage, have a look at the plugin’s website.

    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/contact-form-7.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/contact-form-7.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/contact-form-7.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/contact-form-7.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/contact-form-7.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/contact-form-7.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.zip", "3.0": "https://downloads.wordpress.org/plugin/contact-form-7.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/contact-form-7.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/contact-form-7.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/contact-form-7.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/contact-form-7.3.6.zip", "3.7": "https://downloads.wordpress.org/plugin/contact-form-7.3.7.zip", "3.8": "https://downloads.wordpress.org/plugin/contact-form-7.3.8.zip", "3.9": "https://downloads.wordpress.org/plugin/contact-form-7.3.9.zip", "4.0": "https://downloads.wordpress.org/plugin/contact-form-7.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/contact-form-7.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/contact-form-7.4.4.zip", "4.5": "https://downloads.wordpress.org/plugin/contact-form-7.4.5.zip", "4.6": "https://downloads.wordpress.org/plugin/contact-form-7.4.6.zip", "4.7": "https://downloads.wordpress.org/plugin/contact-form-7.4.7.zip", "4.8": "https://downloads.wordpress.org/plugin/contact-form-7.4.8.zip", "4.9": "https://downloads.wordpress.org/plugin/contact-form-7.4.9.zip", "5.0": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.zip", "5.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.zip", "5.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.2.zip", "5.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.3.zip", "5.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.4.zip", "5.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.zip", "5.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.6.zip", "5.7": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.zip", "5.8": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.zip", "5.9": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.zip", "6.0": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.zip", "6.1": "https://downloads.wordpress.org/plugin/contact-form-7.6.1.zip", "1.10": "https://downloads.wordpress.org/plugin/contact-form-7.1.10.zip", "1.3.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.3.2.zip", "1.4.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/contact-form-7.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/contact-form-7.1.4.4.zip", "1.6.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.6.1.zip", "1.7.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.2.zip", "1.7.4": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.8.zip", "1.8.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.zip", "1.9.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.zip", "2.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.7.zip", "2.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/contact-form-7.2.1.2.zip", "2.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.2.1.zip", "2.3.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.3.1.zip", "2.4.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.6.zip", "3.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.zip", "3.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.1.2.zip", "3.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.2.1.zip", "3.3.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/contact-form-7.3.3.3.zip", "3.4.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.4.2.zip", "3.5.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/contact-form-7.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/contact-form-7.3.5.4.zip", "3.7.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.7.2.zip", "3.8.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.8.1.zip", "3.9.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/contact-form-7.3.9.3.zip", "4.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/contact-form-7.4.0.3.zip", "4.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.1.2.zip", "4.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.2.2.zip", "4.3.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.3.1.zip", "4.4.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.4.2.zip", "4.5.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.5.1.zip", "4.6.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.6.1.zip", "4.8.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.8.1.zip", "4.9.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.9.2.zip", "5.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.5.zip", "5.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.6.zip", "5.1.7": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.7.zip", "5.1.8": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.8.zip", "5.1.9": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.9.zip", "5.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.2.2.zip", "5.3.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.3.2.zip", "5.4.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.4.2.zip", "5.5.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.2.zip", "5.5.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.3.zip", "5.5.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.4.zip", "5.5.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.5.zip", "5.5.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.zip", "5.6.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.6.1.zip", "5.6.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.6.2.zip", "5.6.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.6.3.zip", "5.6.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.6.4.zip", "5.7.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.1.zip", "5.7.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.2.zip", "5.7.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.3.zip", "5.7.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.4.zip", "5.7.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.5.zip", "5.7.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.6.zip", "5.7.7": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.7.zip", "5.8.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.2.zip", "5.8.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.3.zip", "5.8.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.4.zip", "5.8.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.5.zip", "5.8.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.6.zip", "5.8.7": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.7.zip", "5.9.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.2.zip", "5.9.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.3.zip", "5.9.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.4.zip", "5.9.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.5.zip", "5.9.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.6.zip", "5.9.7": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.7.zip", "5.9.8": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.8.zip", "6.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.6.zip", "6.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/contact-form-7.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/contact-form-7.6.1.3.zip", "trunk": "https://downloads.wordpress.org/plugin/contact-form-7.zip", "1.10.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.10.1.zip", "1.7.6.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.1.zip", "1.7.7.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.1.zip", "1.8.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.1.zip", "1.8.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.2.zip", "1.8.0.3": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.3.zip", "1.8.0.4": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.4.zip", "1.8.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.1.zip", "1.9.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.1.zip", "1.9.2.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.2.zip", "1.9.5.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.1.zip", "3.0.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.1.zip", "5.5.6.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.1.zip", "5.7.5.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.5.1.zip", "1.10.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.10.0.1.zip", "2.0-beta": "https://downloads.wordpress.org/plugin/contact-form-7.2.0-beta.zip", "3.0-beta": "https://downloads.wordpress.org/plugin/contact-form-7.3.0-beta.zip", "3.9-beta": "https://downloads.wordpress.org/plugin/contact-form-7.3.9-beta.zip", "4.1-beta": "https://downloads.wordpress.org/plugin/contact-form-7.4.1-beta.zip", "4.2-beta": "https://downloads.wordpress.org/plugin/contact-form-7.4.2-beta.zip"}, "downloaded": 394729740, "description": "

    Contact Form 7 is a plugin designed to be a practical tool for all WordPress users who embrace the philosophy of free and open source software. It employs sophisticatedly modularized architecture and its original Schema-Woven Validation technology.

    \n

    Docs and support

    \n

    You can find docs, FAQ and more detailed information about Contact Form 7 on contactform7.com. When you cannot find the answer to your question on the FAQ or in any of the documentation, check the support forum on WordPress.org. If you cannot locate any topics that pertain to your particular issue, post a new topic for it.

    \n

    Contact Form 7 needs your support

    \n

    It is hard to continue to maintain this plugin without support from users like you. There are several ways for you to contribute to the project: testing, coding, translating it into your local languages, helping other users, financial donations, etc, etc. We equally welcome you regardless of the way you contribute.

    \n

    Privacy notices

    \n

    With the default configuration, this plugin, in itself, does not:

    \n
      \n
    • track users by stealth;
    • \n
    • write any user personal data to the database;
    • \n
    • send any data to external servers;
    • \n
    • use cookies.
    • \n
    \n

    If you activate certain features in this plugin, the contact form submitter’s personal data, including their IP address, may be sent to the service provider. Thus, confirming the provider’s privacy policy is recommended. These features include:

    \n\n", "donate_link": "https://contactform7.com/donate/", "num_ratings": 2141, "screenshots": {"1": {"src": "https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454", "caption": "screenshot-1.png"}}, "support_url": "https://wordpress.org/support/plugin/contact-form-7/", "contributors": {"takayukister": {"avatar": "https://secure.gravatar.com/avatar/538487024e649d43dea84ff38d14582d03119e3e7aaaca3b7692443335999133?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/takayukister/", "display_name": "Takayuki Miyoshi"}, "rocklobsterinc": {"avatar": "https://secure.gravatar.com/avatar/4aa558df1c07e327536d8d0adad6d00fcdca0484c51adf0b867a2aa5ee054bbc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rocklobsterinc/", "display_name": "Rock Lobster Inc."}}, "last_updated": "2025-10-29 9:00am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/contact-form-7.6.1.3.zip", "author_profile": "https://profiles.wordpress.org/rocklobsterinc/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 10000000, "aspiresync_meta": {"id": "019a30bf-f11d-716d-ac6a-5d3577cf9ad9", "name": "Contact Form 7", "slug": "contact-form-7", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761728400, "version": "6.1.3"}, "support_threads": 103, "requires_plugins": [], "short_description": "Just another contact form plugin. Simple but flexible.", "author_block_count": 1, "author_block_rating": 80, "commercial_support_url": "", "support_threads_resolved": 41}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ac3-73f3-b4fd-06818c5bb2e4', 'did:web:api.aspiredev.org:packages:wp-plugin:cookie-notice', 'cookie-notice', 'Cookie Notice & Compliance for GDPR / CCPA', '

    Cookie Notice provides a simple, customizable website banner that can be used to help your website comply with certain cookie consent requirements under the EU GDPR cookie law and CCPA regulations and includes seamless integration with Cookie Compliance to help your site comply with the latest updates to existing consent laws.

    -

    Cookie Compliance is a fully featured Consent Management Platform (CMP) that provides automated compliance features and enhanced design controls in a state-of-the-art web application. Cookie Compliance enables websites to take a proactive approach to data protection and consent laws. It is the first solution to offer Intentional Consent, a new consent framework that incorporates the latest guidelines from over 100+ countries, and emerging standards from leading international organizations like the IEEE and European Center for Digital Rights (noyb.eu). Cookie Compliance provides a beautiful, multi-level experience and includes new choices and controls for site visitors to better understand and engage in data privacy decisions.

    -
    -

    Our Cookie Compliance web application introduces a more ethical, proactive way to capture and manage consent. This early version of the emerging Intentional Consent framework is a result of Hu-manity.co’s ongoing work with top Fortune 500 companies, governments, and standards organizations, who believe that the imbalanced relationship between consumers and corporations is unsustainable when it comes to data privacy and consent online. We are making it available for all website owners and operators who share this belief and support our mission to eliminate the dark patterns in online consent.
    - Matt Sinderbrand – Chief Platform Officer, Hu-manity.co

    -
    -

    Cookie Notice (plugin only)

    -

    Cookie Notice provides a simple, customizable website banner to help your website comply with certain cookie consent requirements.

    -

    Banner features:

    -
      -
    • Customizable notice message
    • -
    • Consent on click, scroll or close
    • -
    • Multiple cookie expiry options
    • -
    • Link to Privacy Policy page
    • -
    • WordPress Privacy Policy page synchronization
    • -
    • WPML and Polylang compatible
    • -
    • SEO friendly
    • -
    -

    Cookie Compliance (plugin + web application)

    -

    Cookie Compliance gives you access to the most up-to-date formatting guidelines and technical compliance requirements for over 100 countries and legal jurisdictions.

    -

    Banner features:

    -
      -
    • Intentional Consent provides 3 equal buttons to give site visitors the ability to accept none, some, or all cookies through packaged choices called Data Access Levels. Data Access Levels improve consent conversion and eliminate the dark pattern of deceptive, non-equal choices in the first layer. Complies with equal choice principle prescribed under GDPR and other data protection laws.
    • -
    • Consent duration selector gives visitor control over how long their consent remains valid for your site. Enables your site to align with recent guidelines from EU Data Protection Authorities, which state that cookie consent should be valid for no longer than a period of 6 months.
    • -
    • Cookie purpose categories make it easy for website visitors to customize their consent by category. Complies with affirmative, opt-in consent requirements prescribed under GDPR and other data protection laws.
    • -
    • Consent metrics displays the visitor’s consent record and a list of blocked / allowed 3rd parties directly in the expanded level of the banner. Complies with latest guidance from EU Data Protection Authorities like CNIL (France) and ICO (UK).
    • -
    • Customizable Privacy Paper provides helpful information to improve visitor comprehension and understanding of the data sharing risks and benefits. Allows you to summarize core components of your sites privacy notice and aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • -
    • Configurable Privacy Contact allows you to provide contact information for a business’ data privacy admin, as well as helpful links to data subject request forms and other data privacy resources. Aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • -
    -

    Web Application features:

    -
      -
    • Consent analytics dashboard shows event data for number of visits and provides a “trust score” to help you track how site visitors are setting their consent. Make adjustments to your banner to improve your cookie acceptance rate and monitor progress via the consent activity graph.
    • -
    • Default configurations for GDPR, CCPA and more help to remove dark patterns and allow for quick and easy deployment of the consent banner without any guesswork. Customize the design of any default configuration to match the look and feel of your site.
    • -
    • Automatic script blocking blocks all non-essential cookie scripts and iFrames by default and complies with valid consent rules under GDPR and other data protection laws; in order to be compliant, your site must record visitor consent before setting or sending cookies.
    • -
    • Google Consent Mode ensures that your website can still gather valuable insights and perform effectively while respecting users’ privacy preferences by dynamically adjusting the behavior of Google services according to user consent.
    • -
    • Facebook Consent Mode allows your website to measure the impact of your ads on Facebook, track website activities and conversions and automatically deliver ads to Facebook if the user has agreed to.
    • -
    • Consent record storage automatically stores a record of each consent and makes these records available for export. Complies with proof-of-consent requirements prescribed under GDPR and other data protection laws.
    • -
    • Multilingual support automatically translates all banner text strings and allows you to provide custom translations for every text field to ensure visitors get a consistent consent experience.
    • -
    • Multidomain management allows you to manage additional Free or Professional domains under a single account and enables you to customize banner configuration and design for each domain independently.
    • -
    -

    Cookie Compliance proactive approach:

    -

    For all businesses, the resources required to stay ahead of the latest regulations increases with the passage of each new law. With enforcement of compliance violations increasing daily, we believe it is critical for us as a trusted consent vendor to do everything in our power to help you stay ahead of these laws and remove the risk to your business

    -

    Cookie Compliance covers all current and upcoming regulations:

    -
      -
    • GDPR (EU)
    • -
    • ePrivacy Directive (EU)
    • -
    • ePrivacy Regulation (EU)
    • -
    • PECR (UK)
    • -
    • LGPD (Brazil)
    • -
    • PIPEDA (Canada)
    • -
    • PDPB (India)
    • -
    • CCPA (California, US)
    • -
    • VCDPA (Virginia, US)
    • -
    • Colorado Privacy Act (US)
    • -
    • CPRA (California, US)
    • -
    -

    Cookie Compliance incorporates all recent formatting guidance:

    -
      -
    • European Data Protection Supervisor (EDPS)
    • -
    • ICO (United Kingdom)
    • -
    • CNIL (France)
    • -
    • GPDP (Italy)
    • -
    • BfDl (Germany)
    • -
    • AEPD (Spain)
    • -
    • European Center for Digital Rights (noyb.eu)
    • -
    -

    Cookie Compliance targets dark patterns

    -

    Dark Patterns are user interface (UI) techniques that push site visitors to make decisions (such as agreeing to the installation of cookies on their devices) that they might not otherwise make. The most common Dark Pattern is the lack of an equal “reject all” button on the first layer of the consent notice. Dark Patterns are explicitly banned under GDPR and other data protection laws.

    -

    As a part of our proactive approach, Cookie Compliance is configured by default to prevent Dark Patterns through our unique Intentional Consent design.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Cookie Notice & Compliance for GDPR / CCPA", "slug": "cookie-notice", "tags": {"ccpa": "CCPA", "gdpr": "GDPR", "consent": "consent", "cookies": "cookies", "privacy": "privacy"}, "added": "2013-07-08", "icons": {"1x": "https://ps.w.org/cookie-notice/assets/icon-128x128.png?rev=2466385", "2x": "https://ps.w.org/cookie-notice/assets/icon-256x256.png?rev=2466385"}, "author": "Humanityco", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/cookie-notice/assets/banner-772x250.png?rev=2466385", "high": false}, "ratings": {"1": 104, "2": 21, "3": 11, "4": 33, "5": 2849}, "version": "2.5.8", "homepage": "https://cookie-compliance.co/", "requires": "4.9.6", "sections": {"faq": "\n
    \nIs Cookie Notice free?\n\n

    \n

    Yes! Cookie Notice is a free software.

    \n

    \n
    \nIs Cookie Compliance free?\n\n

    \n

    Yes, but with limits. Cookie Compliance includes both free and paid plans to choose from depending on your needs and your website traffic.

    \n

    \n
    \nDoes the Cookie Notice make my site fully compliant with GDPR or US Privacy Laws?\n\n

    \n

    No. The plugin-only version DOES NOT include technical compliance features such as automatic script blocking, consent purpose categories, or consent record storage. These features are only available through the Cookie Compliance integration.

    \n

    \n
    \nDoes the Cookie Compiance integration make my site fully compliant with GDPR and US Privacy Laws?\n\n

    \n

    Yes! The plugin + web appliaction version includes technical compliance features to meet requirements for over 100 countries and legal jurisdictions.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does what it says on the tin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Arthur (aahkendall) on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple and quick to install and thus comply. My go-to plugin these days.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Customer cookie settings stay after first view

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cencerrita on September 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use and i like the fact the customer cookie settings stay for them when they return instead of them having to continually set again.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great, easy to use GDPR plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fruitlessnoodle on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a helpful GDPR plugin. It does what is required for the legalities and is easy to setup and use. Easy to customise but not necessary. Best part is that it doesn''t send nagging messages.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    funziona

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy andreatambone1 on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    funziona

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excelente aplicación.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy summunn1 on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    <font _mstmutation=\"1\" _msttexthash=\"333151\" _msthash=\"634\">Estoy muy contento </font>con esta aplicación hasta el momento<font _mstmutation=\"1\"></font>

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Parfait

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tchuss13 on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yop merci

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jbaums on August 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simply works

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy captainrogers on July 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to set up, works. What more could you want?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tudo certo até agora

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nanato777 on July 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Até agora está tudo funcionando certinho

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Cool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Reponse Studio (branddavid) on July 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Elle fait le travail

    \n
    \n
    \n", "changelog": "

    2.5.8

    \n
      \n
    • New: Microsoft Clarity Consent API v2 support
    • \n
    • Fix: Prevent loading banner in Beaver Builder
    • \n
    • Fix: Improved bot detection and object cache compatibility
    • \n
    • Fix: Close icon accessibility by switching to button
    • \n
    \n

    2.5.7

    \n
      \n
    • New: Microsoft Consent Mode support
    • \n
    • Tweak: Convert banner links to buttons (for accessibility)
    • \n
    • Tweak: Improved compatibility with caching plugins
    • \n
    • Fix: Displaying cookie notice in admin
    • \n
    \n

    2.5.6

    \n
      \n
    • New: Added Form and Source columns to Privacy Consents table
    • \n
    • Fix: WooCommerce render block issue
    • \n
    • Tweak: Updated WooCommerce Blocks Checkout handling
    • \n
    • Tweak: Disable Privacy Consent cupport when there are no forms available
    • \n
    • Tweak: Updated Chart.js to 4.4.8
    • \n
    \n

    2.5.5

    \n
      \n
    • New: Added Privacy Consent activity chart
    • \n
    • Fix: Hummingbird caching plugin compatibility
    • \n
    \n

    2.5.4

    \n
      \n
    • New: Option to handle all or selected forms in Privacy Consent
    • \n
    • Fix: Undefined array key “form_type” when switching WooCommerce forms
    • \n
    \n

    2.5.3

    \n
      \n
    • Fix: Undefined huOptions variable
    • \n
    • Fix: Prevent loading Privacy Consent modules without Cookie Compliance
    • \n
    • Tweak: Updated Chart.js to 4.4.6
    • \n
    \n

    2.5.2

    \n
      \n
    • Fix: Fatal error on pages with embedded contact form 7 forms
    • \n
    \n

    2.5.1

    \n
      \n
    • Fix: Missing one of the plugin files
    • \n
    \n

    2.5.0

    \n
      \n
    • New: Introducing Privacy Consent
    • \n
    • Tweak: UI updates for the Consent Logs page
    • \n
    • Tweak: Onboarding screen UI improvements
    • \n
    • Tweak: Switch from local to GMT time for consent logs display
    • \n
    • Tweak: Admin menu reorganization
    • \n
    \n

    2.4.18

    \n
      \n
    • Fix: Potential security issue with escaping textarea fields
    • \n
    • Fix: Saving link target for Privacy Policy page
    • \n
    • Fix: Force protocol for widget URL
    • \n
    \n

    2.4.17

    \n
      \n
    • New: SpeedyCache caching plugin compatibility
    • \n
    • New: Breeze caching plugin compatibility
    • \n
    • Fix: Improved WP Rocket plugin compatibility
    • \n
    • Fix: Improved Speed Optimize plugin compatibility
    • \n
    • Fix: Network settings override switching
    • \n
    • Tweak: Chart.js updated to 4.4.3
    • \n
    \n

    2.4.16

    \n
      \n
    • New: Option to enable/disable bot detection
    • \n
    • Fix: Typo in wp_die() function calls
    • \n
    • Tweak: Improved escaping text strings
    • \n
    \n

    2.4.15

    \n
      \n
    • New: Passing Google Consent default parameters (Cookie Compliance only)
    • \n
    • Fix: Invalid Norwegian language locale code
    • \n
    \n

    2.4.14

    \n
      \n
    • New: Google Consent V2 support (Cookie Compliance only)
    • \n
    • New: Added scripts option to Compliance Settings
    • \n
    \n

    2.4.13

    \n
      \n
    • Fix: Removed unneeded parameter from WP Fastest Cache compatibility fix
    • \n
    \n

    2.4.12

    \n
      \n
    • New: WP Optimize caching plugin compatibility
    • \n
    • Fix: WP Fastest Cache plugin compatibility
    • \n
    \n

    2.4.11

    \n
      \n
    • New: Dedicated Consent Logs page
    • \n
    • New: Google AMP support for Cookie Compliance
    • \n
    • New: Settings navigation through tabs and menu items
    • \n
    • Fix: Saving App ID/Key not working in edge cases
    • \n
    • Tweak: Chart.js updated to 4.4.0
    • \n
    \n

    2.4.10

    \n
      \n
    • New: Option to enable/disable caching compatibility
    • \n
    • New: WP Fastest Cache plugin compatibility
    • \n
    • Fix: Potential security issue with purging cache
    • \n
    • Fix: Improved refreshing Compliance analytics data
    • \n
    • Tweak: Chart.js updated to 4.3.2
    • \n
    \n

    2.4.9

    \n
      \n
    • New: WP Rocket plugin compatibility
    • \n
    • New: LiteSpeed Cache plugin compatibility
    • \n
    • New: Google Consent Mode support (Cookie Compliance only)
    • \n
    • New: Facebook Pixel Consent Mode support (Cookie Compliance only)
    • \n
    \n

    2.4.8

    \n
      \n
    • New: Added Pages to Conditional display
    • \n
    • Fix: Homepage display issue
    • \n
    • Fix: Background color issue
    • \n
    • Tweak: Improved WP Rocket support
    • \n
    • Tweak: Improved SG Optimizer support
    • \n
    \n

    2.4.7

    \n
      \n
    • New: Conditional display of the banner
    • \n
    • Tweak: Improved sanitization and validation of data
    • \n
    • Tweak: PHP 8.1 and 8.2 compatibility
    • \n
    • Tweak: Added async attribute when autoblocking is disabled
    • \n
    \n

    2.4.6

    \n
      \n
    • Fix: Cookie Compliance inactive status issue
    • \n
    \n

    2.4.5

    \n
      \n
    • Tweak: Remove the notice from the Elementor page builder
    • \n
    • Tweak: Remove the notice from widgets screen
    • \n
    • Fix: Improved Contact Form 7 reCaptcha compatibility
    • \n
    \n

    2.4.4

    \n
      \n
    • Fix: Undefined index: status and subscription
    • \n
    \n

    2.4.3

    \n
      \n
    • Fix: Deprecated preg_replace() notice in PHP 8.1
    • \n
    \n

    2.4.2

    \n
      \n
    • New: Compatibility with Autoptimize plugin
    • \n
    • Fix: Improved Contact Form 7 reCaptcha support
    • \n
    • Fix: Fixed non-static method cookies_set()
    • \n
    \n

    2.4.1

    \n
      \n
    • New: Contact Form 7 reCaptcha support
    • \n
    • Tweak: Switched health status from critical to recommended when Cookie Compliance is not integrated
    • \n
    • Tweak: Add SimeSite=Lax for created cookies
    • \n
    \n

    2.4.0

    \n
      \n
    • New: Advanced Multisite support
    • \n
    • Fix: Polylang translation not working for shortcode
    • \n
    • Fix: Parse error: syntax error, unexpected ‘[‘
    • \n
    \n

    2.3.1

    \n
      \n
    • New: Option to run consent banner in debug mode
    • \n
    • Fix: Invalid validation of dismissable notices
    • \n
    \n

    2.3.0

    \n
      \n
    • New: Compliance Multi-license pricing options
    • \n
    • Tweak: WordPress 6.0 compatibility
    • \n
    \n

    2.2.3

    \n
      \n
    • Fix: Undefined notice in WP dashboard
    • \n
    • Fix: Close icon event not firing
    • \n
    • Tweak: Remove aria-label from the close icon
    • \n
    • Tweak: CSS tweaks in the admin
    • \n
    \n

    2.2.2

    \n
      \n
    • Fix: Uncrawlable close notice link
    • \n
    • Tweak: WordPress 5.9 compatibility
    • \n
    • Tweak: Prevent displaying the notice in an iframe
    • \n
    • Tweak: Send site language to a web app on signup
    • \n
    \n

    2.2.1

    \n
      \n
    • Fix: Missing variable definition in frontend
    • \n
    \n

    2.2.0

    \n
      \n
    • New: Option to hide banner for logged in users (Compliance only)
    • \n
    \n

    2.1.5

    \n
      \n
    • Tweak: Additional sanitization applied
    • \n
    \n

    2.1.4

    \n
      \n
    • Fix: WordPress 5.8 widgets compatibility
    • \n
    \n

    2.1.3

    \n
      \n
    • Fix: HTML attributes removed from text strings
    • \n
    • Tweak: Improved sanitization of options
    • \n
    \n

    2.1.2

    \n
      \n
    • Tweak: Improved escaping of button labels
    • \n
    \n

    2.1.1

    \n
      \n
    • Fix: Security bug related to compliance caching
    • \n
    \n

    2.1.0

    \n
      \n
    • New: Introducing Cookie Compliance Free plan
    • \n
    \n

    2.0.4

    \n
      \n
    • Fix: Undefined constant HOURS_IN_SECONDS
    • \n
    • Fix: Button style none adding CSS classes “cn-set-cookie cn-button”
    • \n
    • Tweak: Switched the behavior of close icon from accept to reject
    • \n
    • Tweak: Minified frontend and admin js files
    • \n
    \n

    2.0.3

    \n
      \n
    • Fix: Cookies accepted function issue when Compliance activated
    • \n
    \n

    2.0.2

    \n
      \n
    • Tweak: UI/UX improvements
    • \n
    \n

    2.0.1

    \n
      \n
    • Fix: Pending Compliance update blocking the notice
    • \n
    • Fix: PHP Warning: Cannot modify header information
    • \n
    • Tweak: UI/UX fixes for the settings screen
    • \n
    \n

    2.0.0

    \n
      \n
    • New: Introducing Cookie Compliance for GDPR/CCPA
    • \n
    \n

    1.3.2

    \n
      \n
    • Tweak: Speed up Corona Banner loading by moving JS file to footer with async parameter
    • \n
    • Tweak: Improve buttons CSS padding
    • \n
    • Tweak: Accessibility improvements on links
    • \n
    \n

    1.3.1

    \n
      \n
    • Fix: Unable to select Privacy policy link
    • \n
    • Fix: Blank Cookies policy link in a message
    • \n
    • Fix: Undefined index: on_click
    • \n
    • Tweak: Adjusted default opacity back to 100
    • \n
    \n

    1.3.0

    \n
      \n
    • New: Introducing Corona Banner that displays data about Coronavirus pandemia and five steps recommended by the WHO (World Health Organization)
    • \n
    • New: Option to set bar opacity
    • \n
    • New: Accept the notice with close icon
    • \n
    • Fix: Policy link added to message without policy option enabled
    • \n
    \n

    1.2.51

    \n
      \n
    • Fix: Problems with iOS and OK/Reject button
    • \n
    • Tweak: Added Separate cookie expiry for Reject, props Carlos Buchart
    • \n
    \n

    1.2.50

    \n
      \n
    • Fix: The body css class always set to “cookies-refused”
    • \n
    • Tweak: Improve IE & Safari CustomEvent and ClassList support
    • \n
    • Tweak: Change the plugin js init event
    • \n
    \n

    1.2.49

    \n
      \n
    • New: Option to accept the notice with any page click
    • \n
    • Tweak: Remove jQuery dependency
    • \n
    • Tweak: Swtich from jQuery to CSS3 animations
    • \n
    • Tweak: Improve the CSS and HTML structure
    • \n
    \n

    1.2.48

    \n
      \n
    • Fix: HTML tags stripped from cookie message
    • \n
    • Fix: Link target not accepted in inline privacy link
    • \n
    \n

    1.2.47

    \n
      \n
    • New: Option to select the privacy policy link position
    • \n
    • Tweak: Do not relad the page on refuse button click
    • \n
    • Tweak: Added aria-label attribute to cookie notice container
    • \n
    \n

    1.2.46

    \n
      \n
    • Tweak: Remove WP Super Cache cookie on deactivation
    • \n
    • Tweak: Remove plugin version from the db on deactivation
    • \n
    \n

    1.2.45

    \n
      \n
    • Tweak: Improved WP Super Cache support
    • \n
    • Tweak: CSS container style issue and media query for mobile
    • \n
    \n

    1.2.44

    \n
      \n
    • Fix: The text of the revoke button ignored in shortcode
    • \n
    • Fix: Revoke consent button not displayed automatically in top position
    • \n
    • Tweak: Add shortcode parsing for content of [cookies_accepted], thanks to dsturm
    • \n
    \n

    1.2.43

    \n
      \n
    • New: Option to revoke the user consent
    • \n
    • New: Script blocking extended to header and footer
    • \n
    • New: Synchronization with WordPress 4.9.6 Privacy Policy page
    • \n
    • New: Custom button class option
    • \n
    • Tweak: Added 1 hour cookie expiry option
    • \n
    \n

    1.2.42

    \n
      \n
    • New: Introducing [cookies_accepted][/cookies_accepted] shortcode
    • \n
    • Fix: Infinite cookie expiry issue
    • \n
    \n

    1.2.41

    \n
      \n
    • Fix: Infinite redirection loop with scroll enabled
    • \n
    \n

    1.2.40

    \n
      \n
    • Fix: Div align center on some themes
    • \n
    • Tweak: Extended list of allowed HTML tags in refuse code
    • \n
    • Tweak: Minified CSS and JS
    • \n
    \n

    1.2.39

    \n
      \n
    • New: Option to reload the page after cookies are accepted
    • \n
    \n

    1.2.38

    \n
      \n
    • Tweak: Move frontend cookie js functions before the document ready call, thanks to fgreinus
    • \n
    • Tweak: Adjust functional javascript code handling
    • \n
    • Fix: Chhromium infinity expiration date not valid
    • \n
    • Fix: Remove deprecated screen_icon() function
    • \n
    \n

    1.2.37

    \n
      \n
    • Tweak: Add aria landmark role=”banner”
    • \n
    • Tweak: Extend cn_cookie_notice_args with button class
    • \n
    \n

    1.2.36.1

    \n
      \n
    • Fix: Repository upload issue with 1.2.36
    • \n
    \n

    1.2.36

    \n
      \n
    • Fix: String translation support for WMPL 3.2+
    • \n
    • Fix: Global var possible conflict with other plugins
    • \n
    • Tweak: Add $options array to “cn_cookie_notice_output” filter, thanks to chesio.
    • \n
    • Tweak: Removed local translation files in favor of WP repository translations.
    • \n
    \n

    1.2.35

    \n
      \n
    • Tweak: Use html_entity_decode on non-functional code block
    • \n
    • Tweak: get_pages() function placement optimization
    • \n
    • Tweak: Filterable manage cookie notice capability
    • \n
    \n

    1.2.34

    \n
      \n
    • Fix: Empty href in links HTML validation issue
    • \n
    \n

    1.2.33

    \n
      \n
    • New: Greek translation thanks to Elias Stefanidis
    • \n
    \n

    1.2.32

    \n
      \n
    • Fix: Accept cookie button hidden on acceptance instead of the cookie message container
    • \n
    \n

    1.2.31

    \n
      \n
    • New: Non functional Javascript code field
    • \n
    • Fix: Minified Javascript caching issue
    • \n
    \n

    1.2.30

    \n
      \n
    • Fix: jQuery error after accepting cookies
    • \n
    \n

    1.2.29

    \n
      \n
    • Tweak: Add class to body element when displayed
    • \n
    • Tweak: Italian translation update
    • \n
    \n

    1.2.28

    \n
      \n
    • New: Option to set on scroll offset
    • \n
    \n

    1.2.27

    \n
      \n
    • Tweak: Correctly remove scroll event, limit possible conflicts
    • \n
    • Tweak: Italian translation update
    • \n
    \n

    1.2.26

    \n
      \n
    • Fix: Accept cookies on scroll option working unchecked.
    • \n
    • Fix: call_user_func() warning on lower version of WP
    • \n
    \n

    1.2.25

    \n\n

    1.2.24

    \n
      \n
    • New: Option to refuse to accept cookies
    • \n
    • New: setCookieNotice custom jQuery event
    • \n
    • Tweak: Italian translation updated, thanks to Luca Speranza
    • \n
    \n

    1.2.23

    \n\n

    1.2.22

    \n
      \n
    • Tweak: Swedish translation updated, thx to Ove Kaufeldt
    • \n
    \n

    1.2.21

    \n\n

    1.2.20

    \n
      \n
    • New: Option to select scripts placement, header or footer
    • \n
    \n

    1.2.19

    \n
      \n
    • New: Danish translation, thanks to Lui Wallentin Gottler
    • \n
    \n

    1.2.18.1

    \n
      \n
    • Fix: Quick fix for 1.2.18 print_r in code
    • \n
    \n

    1.2.18

    \n
      \n
    • New: More info link target option
    • \n
    • Tweak: Additional HTML ids, for more flexible customization
    • \n
    \n

    1.2.17

    \n\n

    1.2.16

    \n
      \n
    • Tweak: Dutch translation missing due to a typo
    • \n
    \n

    1.2.15

    \n
      \n
    • New: Danish translation, thanks to Hans C. Jorgensen
    • \n
    • Fix: Notice bar not visible if no animation selected
    • \n
    \n

    1.2.14

    \n
      \n
    • New: Hungarian translation, thanks to Surbma
    • \n
    \n

    1.2.13

    \n
      \n
    • New: Croatian translation, thanks to Marko Beus
    • \n
    \n

    1.2.12

    \n
      \n
    • New: Slovenian translation, thanks to Thomas Cuk
    • \n
    \n

    1.2.11

    \n\n

    1.2.10

    \n
      \n
    • New: Italian translation, thanks to Luca
    • \n
    • Tweak: Confirmed WP 4.0 compatibility
    • \n
    \n

    1.2.9.1

    \n
      \n
    • Tweak: Enable HTML in cookie message text
    • \n
    • New: Option to donate this plugin 🙂
    • \n
    \n

    1.2.8

    \n\n

    1.2.7

    \n
      \n
    • New: French translation, thanks to Laura Orsal
    • \n
    • New: Deleting plugin settings on deactivation as an option
    • \n
    \n

    1.2.6

    \n
      \n
    • New: German translation, thanks to Alex Ernst
    • \n
    \n

    1.2.5

    \n
      \n
    • New: Spanish translation, thanks to Fernando Blasco
    • \n
    \n

    1.2.4

    \n
      \n
    • New: Added filter hooks to customize where and how display the cookie notice
    • \n
    \n

    1.2.3

    \n
      \n
    • New: Portuguese translation, thanks to Luis Maia
    • \n
    \n

    1.2.2

    \n
      \n
    • Fix: Read more linking to default site language in WPML & Polylang
    • \n
    \n

    1.2.1

    \n
      \n
    • Tweak: UI improvements for WP 3.8
    • \n
    \n

    1.2.0

    \n
      \n
    • Fix: Cookie not saving in IE
    • \n
    • Fix: Notice hidden under Admin bar bug
    • \n
    • Tweak: Improved WPML & Polylang compatibility
    • \n
    \n

    1.1.0

    \n
      \n
    • New: Rewritten cookie setting method to pure JS
    • \n
    • Fix: Compatibility with WP Super Cache and other caching plugins
    • \n
    \n

    1.0.2

    \n
      \n
    • New: Dutch translation, thanks to Heleen van den Bos
    • \n
    \n

    1.0.1

    \n
      \n
    • Tweak: Changed setting cookie mode from AJAX to JS driven
    • \n
    \n

    1.0.0

    \n

    Initial release

    \n", "description": "

    Cookie Notice provides a simple, customizable website banner that can be used to help your website comply with certain cookie consent requirements under the EU GDPR cookie law and CCPA regulations and includes seamless integration with Cookie Compliance to help your site comply with the latest updates to existing consent laws.

    \n

    Cookie Compliance is a fully featured Consent Management Platform (CMP) that provides automated compliance features and enhanced design controls in a state-of-the-art web application. Cookie Compliance enables websites to take a proactive approach to data protection and consent laws. It is the first solution to offer Intentional Consent, a new consent framework that incorporates the latest guidelines from over 100+ countries, and emerging standards from leading international organizations like the IEEE and European Center for Digital Rights (noyb.eu). Cookie Compliance provides a beautiful, multi-level experience and includes new choices and controls for site visitors to better understand and engage in data privacy decisions.

    \n
    \n

    Our Cookie Compliance web application introduces a more ethical, proactive way to capture and manage consent. This early version of the emerging Intentional Consent framework is a result of Hu-manity.co’s ongoing work with top Fortune 500 companies, governments, and standards organizations, who believe that the imbalanced relationship between consumers and corporations is unsustainable when it comes to data privacy and consent online. We are making it available for all website owners and operators who share this belief and support our mission to eliminate the dark patterns in online consent.
    \n Matt Sinderbrand – Chief Platform Officer, Hu-manity.co

    \n
    \n

    Cookie Notice (plugin only)

    \n

    Cookie Notice provides a simple, customizable website banner to help your website comply with certain cookie consent requirements.

    \n

    Banner features:

    \n
      \n
    • Customizable notice message
    • \n
    • Consent on click, scroll or close
    • \n
    • Multiple cookie expiry options
    • \n
    • Link to Privacy Policy page
    • \n
    • WordPress Privacy Policy page synchronization
    • \n
    • WPML and Polylang compatible
    • \n
    • SEO friendly
    • \n
    \n

    Cookie Compliance (plugin + web application)

    \n

    Cookie Compliance gives you access to the most up-to-date formatting guidelines and technical compliance requirements for over 100 countries and legal jurisdictions.

    \n

    Banner features:

    \n
      \n
    • Intentional Consent provides 3 equal buttons to give site visitors the ability to accept none, some, or all cookies through packaged choices called Data Access Levels. Data Access Levels improve consent conversion and eliminate the dark pattern of deceptive, non-equal choices in the first layer. Complies with equal choice principle prescribed under GDPR and other data protection laws.
    • \n
    • Consent duration selector gives visitor control over how long their consent remains valid for your site. Enables your site to align with recent guidelines from EU Data Protection Authorities, which state that cookie consent should be valid for no longer than a period of 6 months.
    • \n
    • Cookie purpose categories make it easy for website visitors to customize their consent by category. Complies with affirmative, opt-in consent requirements prescribed under GDPR and other data protection laws.
    • \n
    • Consent metrics displays the visitor’s consent record and a list of blocked / allowed 3rd parties directly in the expanded level of the banner. Complies with latest guidance from EU Data Protection Authorities like CNIL (France) and ICO (UK).
    • \n
    • Customizable Privacy Paper provides helpful information to improve visitor comprehension and understanding of the data sharing risks and benefits. Allows you to summarize core components of your sites privacy notice and aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • \n
    • Configurable Privacy Contact allows you to provide contact information for a business’ data privacy admin, as well as helpful links to data subject request forms and other data privacy resources. Aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • \n
    \n

    Web Application features:

    \n
      \n
    • Consent analytics dashboard shows event data for number of visits and provides a “trust score” to help you track how site visitors are setting their consent. Make adjustments to your banner to improve your cookie acceptance rate and monitor progress via the consent activity graph.
    • \n
    • Default configurations for GDPR, CCPA and more help to remove dark patterns and allow for quick and easy deployment of the consent banner without any guesswork. Customize the design of any default configuration to match the look and feel of your site.
    • \n
    • Automatic script blocking blocks all non-essential cookie scripts and iFrames by default and complies with valid consent rules under GDPR and other data protection laws; in order to be compliant, your site must record visitor consent before setting or sending cookies.
    • \n
    • Google Consent Mode ensures that your website can still gather valuable insights and perform effectively while respecting users’ privacy preferences by dynamically adjusting the behavior of Google services according to user consent.
    • \n
    • Facebook Consent Mode allows your website to measure the impact of your ads on Facebook, track website activities and conversions and automatically deliver ads to Facebook if the user has agreed to.
    • \n
    • Consent record storage automatically stores a record of each consent and makes these records available for export. Complies with proof-of-consent requirements prescribed under GDPR and other data protection laws.
    • \n
    • Multilingual support automatically translates all banner text strings and allows you to provide custom translations for every text field to ensure visitors get a consistent consent experience.
    • \n
    • Multidomain management allows you to manage additional Free or Professional domains under a single account and enables you to customize banner configuration and design for each domain independently.
    • \n
    \n

    Cookie Compliance proactive approach:

    \n

    For all businesses, the resources required to stay ahead of the latest regulations increases with the passage of each new law. With enforcement of compliance violations increasing daily, we believe it is critical for us as a trusted consent vendor to do everything in our power to help you stay ahead of these laws and remove the risk to your business

    \n

    Cookie Compliance covers all current and upcoming regulations:

    \n
      \n
    • GDPR (EU)
    • \n
    • ePrivacy Directive (EU)
    • \n
    • ePrivacy Regulation (EU)
    • \n
    • PECR (UK)
    • \n
    • LGPD (Brazil)
    • \n
    • PIPEDA (Canada)
    • \n
    • PDPB (India)
    • \n
    • CCPA (California, US)
    • \n
    • VCDPA (Virginia, US)
    • \n
    • Colorado Privacy Act (US)
    • \n
    • CPRA (California, US)
    • \n
    \n

    Cookie Compliance incorporates all recent formatting guidance:

    \n
      \n
    • European Data Protection Supervisor (EDPS)
    • \n
    • ICO (United Kingdom)
    • \n
    • CNIL (France)
    • \n
    • GPDP (Italy)
    • \n
    • BfDl (Germany)
    • \n
    • AEPD (Spain)
    • \n
    • European Center for Digital Rights (noyb.eu)
    • \n
    \n

    Cookie Compliance targets dark patterns

    \n

    Dark Patterns are user interface (UI) techniques that push site visitors to make decisions (such as agreeing to the installation of cookies on their devices) that they might not otherwise make. The most common Dark Pattern is the lack of an equal “reject all” button on the first layer of the consent notice. Dark Patterns are explicitly banned under GDPR and other data protection laws.

    \n

    As a part of our proactive approach, Cookie Compliance is configured by default to prevent Dark Patterns through our unique Intentional Consent design.

    \n", "screenshots": "
    1. \"Cookie

      Cookie Notice settings, Compliance itegration inactive

    2. \"Cookie

      Cookie Notice settings, Compliance itegration active

    3. \"Cookie

      Cookie Compliance dashboard overview

    4. \"Cookie

      Cookie Compliance settings

    ", "installation": "
      \n
    1. Install Cookie Notice either via the WordPress.org plugin directory, or by uploading the files to your server
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to the Cookie Notice settings and set your options.
    6. \n
    7. Click “Add Compliance features” button to start Cookie Compliance integration.
    8. \n
    9. Create Cookie Compliance account and select plan.
    10. \n
    11. Log in to Cookie Compliance web application anytime to customize the settings.
    12. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/cookie-notice.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/plugin/cookie-notice.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/plugin/cookie-notice.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/cookie-notice.1.3.2.zip", "2.0.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/cookie-notice.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/cookie-notice.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/cookie-notice.2.0.4.zip", "2.1.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.5.zip", "2.2.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/cookie-notice.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/cookie-notice.2.2.3.zip", "2.3.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.8.zip", "trunk": "https://downloads.wordpress.org/plugin/cookie-notice.zip", "1.2.10": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.15.zip", "1.2.16": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.16.zip", "1.2.17": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.17.zip", "1.2.18": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.18.zip", "1.2.19": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.19.zip", "1.2.20": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.20.zip", "1.2.21": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.21.zip", "1.2.22": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.22.zip", "1.2.23": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.23.zip", "1.2.24": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.24.zip", "1.2.25": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.25.zip", "1.2.26": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.26.zip", "1.2.27": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.27.zip", "1.2.28": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.28.zip", "1.2.29": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.29.zip", "1.2.30": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.30.zip", "1.2.31": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.31.zip", "1.2.32": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.32.zip", "1.2.33": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.33.zip", "1.2.34": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.34.zip", "1.2.35": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.35.zip", "1.2.36": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.36.zip", "1.2.37": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.37.zip", "1.2.38": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.38.zip", "1.2.39": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.39.zip", "1.2.40": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.40.zip", "1.2.41": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.41.zip", "1.2.42": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.42.zip", "1.2.43": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.43.zip", "1.2.44": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.44.zip", "1.2.45": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.45.zip", "1.2.46": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.46.zip", "1.2.47": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.47.zip", "1.2.48": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.48.zip", "1.2.49": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.49.zip", "1.2.50": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.50.zip", "1.2.51": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.51.zip", "1.4.12": "https://downloads.wordpress.org/plugin/cookie-notice.1.4.12.zip", "2.4.10": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.10.zip", "2.4.11": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.11.zip", "2.4.13": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.13.zip", "2.4.14": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.14.zip", "2.4.15": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.15.zip", "2.4.16": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.16.zip", "2.4.17": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.17.zip", "2.4.18": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.18.zip", "1.2.9.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.9.1.zip", "2.5.0.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.0.1.zip", "1.2.18.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.18.1.zip", "1.2.36.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.36.1.zip", "2.4.11.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.11.1.zip", "2.4.17.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.17.1.zip"}, "downloaded": 33439442, "description": "

    Cookie Notice provides a simple, customizable website banner that can be used to help your website comply with certain cookie consent requirements under the EU GDPR cookie law and CCPA regulations and includes seamless integration with Cookie Compliance to help your site comply with the latest updates to existing consent laws.

    \n

    Cookie Compliance is a fully featured Consent Management Platform (CMP) that provides automated compliance features and enhanced design controls in a state-of-the-art web application. Cookie Compliance enables websites to take a proactive approach to data protection and consent laws. It is the first solution to offer Intentional Consent, a new consent framework that incorporates the latest guidelines from over 100+ countries, and emerging standards from leading international organizations like the IEEE and European Center for Digital Rights (noyb.eu). Cookie Compliance provides a beautiful, multi-level experience and includes new choices and controls for site visitors to better understand and engage in data privacy decisions.

    \n
    \n

    Our Cookie Compliance web application introduces a more ethical, proactive way to capture and manage consent. This early version of the emerging Intentional Consent framework is a result of Hu-manity.co’s ongoing work with top Fortune 500 companies, governments, and standards organizations, who believe that the imbalanced relationship between consumers and corporations is unsustainable when it comes to data privacy and consent online. We are making it available for all website owners and operators who share this belief and support our mission to eliminate the dark patterns in online consent.
    \n Matt Sinderbrand – Chief Platform Officer, Hu-manity.co

    \n
    \n

    Cookie Notice (plugin only)

    \n

    Cookie Notice provides a simple, customizable website banner to help your website comply with certain cookie consent requirements.

    \n

    Banner features:

    \n
      \n
    • Customizable notice message
    • \n
    • Consent on click, scroll or close
    • \n
    • Multiple cookie expiry options
    • \n
    • Link to Privacy Policy page
    • \n
    • WordPress Privacy Policy page synchronization
    • \n
    • WPML and Polylang compatible
    • \n
    • SEO friendly
    • \n
    \n

    Cookie Compliance (plugin + web application)

    \n

    Cookie Compliance gives you access to the most up-to-date formatting guidelines and technical compliance requirements for over 100 countries and legal jurisdictions.

    \n

    Banner features:

    \n
      \n
    • Intentional Consent provides 3 equal buttons to give site visitors the ability to accept none, some, or all cookies through packaged choices called Data Access Levels. Data Access Levels improve consent conversion and eliminate the dark pattern of deceptive, non-equal choices in the first layer. Complies with equal choice principle prescribed under GDPR and other data protection laws.
    • \n
    • Consent duration selector gives visitor control over how long their consent remains valid for your site. Enables your site to align with recent guidelines from EU Data Protection Authorities, which state that cookie consent should be valid for no longer than a period of 6 months.
    • \n
    • Cookie purpose categories make it easy for website visitors to customize their consent by category. Complies with affirmative, opt-in consent requirements prescribed under GDPR and other data protection laws.
    • \n
    • Consent metrics displays the visitor’s consent record and a list of blocked / allowed 3rd parties directly in the expanded level of the banner. Complies with latest guidance from EU Data Protection Authorities like CNIL (France) and ICO (UK).
    • \n
    • Customizable Privacy Paper provides helpful information to improve visitor comprehension and understanding of the data sharing risks and benefits. Allows you to summarize core components of your sites privacy notice and aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • \n
    • Configurable Privacy Contact allows you to provide contact information for a business’ data privacy admin, as well as helpful links to data subject request forms and other data privacy resources. Aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • \n
    \n

    Web Application features:

    \n
      \n
    • Consent analytics dashboard shows event data for number of visits and provides a “trust score” to help you track how site visitors are setting their consent. Make adjustments to your banner to improve your cookie acceptance rate and monitor progress via the consent activity graph.
    • \n
    • Default configurations for GDPR, CCPA and more help to remove dark patterns and allow for quick and easy deployment of the consent banner without any guesswork. Customize the design of any default configuration to match the look and feel of your site.
    • \n
    • Automatic script blocking blocks all non-essential cookie scripts and iFrames by default and complies with valid consent rules under GDPR and other data protection laws; in order to be compliant, your site must record visitor consent before setting or sending cookies.
    • \n
    • Google Consent Mode ensures that your website can still gather valuable insights and perform effectively while respecting users’ privacy preferences by dynamically adjusting the behavior of Google services according to user consent.
    • \n
    • Facebook Consent Mode allows your website to measure the impact of your ads on Facebook, track website activities and conversions and automatically deliver ads to Facebook if the user has agreed to.
    • \n
    • Consent record storage automatically stores a record of each consent and makes these records available for export. Complies with proof-of-consent requirements prescribed under GDPR and other data protection laws.
    • \n
    • Multilingual support automatically translates all banner text strings and allows you to provide custom translations for every text field to ensure visitors get a consistent consent experience.
    • \n
    • Multidomain management allows you to manage additional Free or Professional domains under a single account and enables you to customize banner configuration and design for each domain independently.
    • \n
    \n

    Cookie Compliance proactive approach:

    \n

    For all businesses, the resources required to stay ahead of the latest regulations increases with the passage of each new law. With enforcement of compliance violations increasing daily, we believe it is critical for us as a trusted consent vendor to do everything in our power to help you stay ahead of these laws and remove the risk to your business

    \n

    Cookie Compliance covers all current and upcoming regulations:

    \n
      \n
    • GDPR (EU)
    • \n
    • ePrivacy Directive (EU)
    • \n
    • ePrivacy Regulation (EU)
    • \n
    • PECR (UK)
    • \n
    • LGPD (Brazil)
    • \n
    • PIPEDA (Canada)
    • \n
    • PDPB (India)
    • \n
    • CCPA (California, US)
    • \n
    • VCDPA (Virginia, US)
    • \n
    • Colorado Privacy Act (US)
    • \n
    • CPRA (California, US)
    • \n
    \n

    Cookie Compliance incorporates all recent formatting guidance:

    \n
      \n
    • European Data Protection Supervisor (EDPS)
    • \n
    • ICO (United Kingdom)
    • \n
    • CNIL (France)
    • \n
    • GPDP (Italy)
    • \n
    • BfDl (Germany)
    • \n
    • AEPD (Spain)
    • \n
    • European Center for Digital Rights (noyb.eu)
    • \n
    \n

    Cookie Compliance targets dark patterns

    \n

    Dark Patterns are user interface (UI) techniques that push site visitors to make decisions (such as agreeing to the installation of cookies on their devices) that they might not otherwise make. The most common Dark Pattern is the lack of an equal “reject all” button on the first layer of the consent notice. Dark Patterns are explicitly banned under GDPR and other data protection laws.

    \n

    As a part of our proactive approach, Cookie Compliance is configured by default to prevent Dark Patterns through our unique Intentional Consent design.

    \n", "donate_link": "", "num_ratings": 3018, "screenshots": {"1": {"src": "https://ps.w.org/cookie-notice/assets/screenshot-1.png?rev=2599337", "caption": "Cookie Notice settings, Compliance itegration inactive"}, "2": {"src": "https://ps.w.org/cookie-notice/assets/screenshot-2.png?rev=2599337", "caption": "Cookie Notice settings, Compliance itegration active"}, "3": {"src": "https://ps.w.org/cookie-notice/assets/screenshot-3.png?rev=2599337", "caption": "Cookie Compliance dashboard overview"}, "4": {"src": "https://ps.w.org/cookie-notice/assets/screenshot-4.png?rev=2599337", "caption": "Cookie Compliance settings"}}, "support_url": "https://wordpress.org/support/plugin/cookie-notice/", "contributors": {"humanityco": {"avatar": "https://secure.gravatar.com/avatar/c5e1f10a8938fcf2c75147f5c1212da5858e070fe3b162fc52ad53b4def329d7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/humanityco/", "display_name": "Humanityco"}}, "last_updated": "2025-10-28 5:09pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.8.zip", "author_profile": "https://profiles.wordpress.org/humanityco/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    Microsoft Clarity Consent API v2 support

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f162-72c6-b537-cb06dc4b1b37", "name": "Cookie Notice & Compliance for GDPR / CCPA", "slug": "cookie-notice", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761671340, "version": "2.5.8"}, "support_threads": 5, "requires_plugins": [], "short_description": "Cookie Notice allows you to you elegantly inform users that your site uses cookies and helps you comply with GDPR, CCPA and other data privacy laws.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 1}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ad2-72f0-add9-fd4ef7176bd6', 'did:web:api.aspiredev.org:packages:wp-plugin:creame-whatsapp-me', 'creame-whatsapp-me', 'Joinchat', '
    -

    Turn conversations into conversions

    -
    -

    🎉 Chat with your website visitors through their favorite chat applications. Place a floating contact button at the bottom of your site and give the best support to your customers.

    -

    Documentation | Joinchat Premium | Joinchat AI ✨

    -

    ⌁ What you can do with Joinchat ✅

    -

    🛎 Insert a contact button for WhatsApp on your website.

    -

    Set your ‘WhatsApp’ or ‘WhatsApp Business’ number and let your visitors contact you easily:

    -

    🧩 WhatsApp Contact Button Block with optional QR Code

    -

    📱 On mobile, launch WhatsApp mobile app

    -

    💻 On desktop, launch WhatsApp desktop app or WhatsApp Web

    -

    🤳 On desktop, show QR Code to scan from phone

    -

    Customize your logo, profile picture or even an animated gif.

    -

    Define in which pages or zones it should appear, the delay time, if you want it to the right or to the left, only on mobile phones or also on the desktop.

    -

    You can define a tooltip or a call to action to capture the user’s interest, the limit is set by your creativity.

    -

    📢 New on Joinchat 6.0

    -
      -
    • Enhance your CTAs with Rich Chat: multiple chat bubbles, include links or buttons, add images and use random texts.
    • -
    • Improved performance: vanilla JavaScript without any dependency and lazy loading of styles and scripts.
    • -
    • New button icons and allows to keep the alternative image fixed.
    • -
    • Integration with new WooCommerce brands.
    • -
    • Other optimizations: refactor and improved styles, updated phone input (37 translations included), added {HOME} variable, etc.
    • -
    -

    📝 Settings at page or archive level.

    -

    You can change main settings on every Post, Page, Product or CPT and for Tag or Category archive pages.

    -

    Editing your posts in the right side in the Joinchat metabox or editing your tags or categories in the Joinchat section, you can modify Phone, CTA, Start Message and Visibility options.

    -

    🔴 Show a notification.

    -

    Use a balloon on the button to get the visitor’s attention.

    -

    In this way, you ensure that you do not miss any important message you want to give them, surprise them in a less intrusive way.

    -

    📯 Create call-to-action messages.

    -

    To get users to start the chat, use custom CTAs on each page, product or section.

    -

    Welcome them, help them and offer them offers or promotions. Read more

    -

    💬 Customize conversation start messages.

    -

    Set the first message so that the visitor can start the conversation immediately.

    -

    Use our “Dynamic Variables” and you will know what page the visitor is coming from or what product they are looking at when they start the chat.

    -

    ✅ Opt-in text.

    -

    Opt-in is a users’ consent to receive messages from a business.

    -

    Write a text with the conditions under which the visitor contacts you (or other info that you consider important).

    -

    You can make it mandatory and disable contact until the user accepts it.

    -

    🛒 Integration with WooCommerce.

    -

    Define CTAs and Custom Start Messages for shop page, product pages and for products on sale.

    -

    Add a WhatsApp Contact Button directly on your product page next to the “Add to cart” button or choose the best position, even on products without a price.

    -

    🧩 WhatsApp Contact Button Block (min WP 5.9).

    -

    Add beautiful and customizable WhatsApp contact buttons in the Block Editor.

    -

    Ready to use patterns with different styles are also included.

    -

    Enable QR Code on desktop to allow your visitors to scan it and start messaging from their phone.

    -

    You can define phone and initial message of the button or use the post/general Joinchat settings (ideal for Reusable Blocks).

    -

    🃏 Dynamic Variables.

    -

    Use variables in your CTAs and Start Messages that change dynamically for each page:

    -

    {SITE} ➡ Website title
    -{TITLE} ➡ Current page title
    -{HOME} ➡ Website home url
    -{URL} ➡ Current page url
    -{HREF} ➡ Current page url (full with query params)
    -{PRODUCT} ➡ Product name (Woo)
    -{SKU} ➡ Product SKU (Woo)
    -{REGULAR} ➡ Product regular price (Woo)
    -{PRICE} ➡ Product current price (Woo)
    -{DISCOUNT} ➡ Product percent discount when is on sale (Woo)

    -

    📈 Analytics Integration.

    -

    Automatically send events to Google Analytics, Google Tag Manager and Facebook Pixel when the user opens WhatsApp.

    -

    Now can send events to multiple destinations on Google Tag!

    -

    Google Analytics 4 integration with the recommended "generate_lead" event.

    -

    Google Ads conversion, just add your Conversion ID and Conversion Label.

    -

    You can also create your own custom events or add event parameters. View FAQs / Read more

    -

    🍾 Chat Triggers.

    -

    Any element in your page can be a chat trigger, eg: it can launch WhatsApp from a link or show the Joinchat CTA when the user scrolls to the footer.

    -

    On page load (by url):

    -
      -
    • url query param joinchat to show chat window. Can set delay in seconds, default is 0 (e.g. example.com/page/?joinchat=5)
    • -
    • url query hash #joinchat to show chat window (e.g. example.com/page/#joinchat)
    • -
    -

    On click:

    -
      -
    • class "joinchat_app" direct launch WhatsApp
    • -
    • class "joinchat_open" opens Joinchat CTA
    • -
    • link href "#whatsapp" direct launch WhatsApp
    • -
    • link href "#joinchat" opens Joinchat CTA
    • -
    -

    Set custom phone and initial message for direct WhatsApp triggers:

    -
      -
    • data-phone="99999999"
    • -
    • data-message="Only for this trigger message".
    • -
    -

    On scroll (when element appears on screen):

    -
      -
    • class "joinchat_show" opens Joinchat CTA (first time)
    • -
    • class "joinchat_force_show" opens Joinchat CTA (always)
    • -
    -

    💱 Multi-Language & RTL Support.

    -

    To be able to support all your users, wherever they are. Our plugin is compatible with WPML and Polylang and also RTL languages are supported.

    -

    Direct link to edit translations when a translatable field is changed.

    -

    🌈 Theme Colors & 🌚 Dark Mode.

    -

    You choose a color and we customize the entire visual theme of the widget. With Dark Mode display the chat window with dark colors and white text. From settings you can activate it or leave it automatic and detects devices’ configuration.

    -

    ⚡ Fast & Light.

    -

    Only load what need when needed. Joinchat is lightweight and follow best coding practices. See tests report

    -

    Use vanilla JavaScript without dependencies, deferred scripts and lazy load of styles to prevent render-blocking.

    -

    🔕 No distractions.

    -

    Joinchat integrates with all major Visual Editors and Page Builders and will not appear when editing a page.

    -

    Supported editors: Beaver Builder, Brizy Page Builder, Elementor, Oxygen Builder, Page Builder by SiteOrigin, Thrive Architect, Visual Composer and WP Page Builder.

    -

    🍪 Cookies & GDPR.

    -

    Joinchat can be used without any cookies. But to automatically display the CTA, two cookies are necessary. They are first-party cookies and don’t collect personal data.

    -

    Joinchat integrates with WordPress’s Privacy Policy Guide and suggests the necessary text.

    -

    👨‍💻 Developer friendly.

    -

    Fully extensible, with lots of filters and actions to extend its functionality or change behavior.

    -

    === Joinchat Premium 🚀 ===

    -

    Turn your chat into a powerful lead capture and support tool.

    -
      -
    • Create chatbot-like conversation flows to capture leads and automate replies.
    • -
    • Manage multiple agents and schedules to organize support.
    • -
    • Prevent overload by distributing chats across multiple WhatsApp numbers.
    • -
    • Add more channels like Telegram, Messenger, or phone calls.
    • -
    • Boost conversions with videos, surveys, and more right inside the chat window.
    • -
    -

    👉 Get Joinchat Premium and upgrade your support today.

    -

    === Joinchat AI ✨ ===

    -

    Supercharge your chat with AI-powered instant replies and smart support.

    -
      -
    • Answer instantly 24/7 using AI trained on your FAQs and website content.
    • -
    • Guide visitors and solve questions automatically without human intervention.
    • -
    • Reduce workload and boost efficiency by handling repetitive queries.
    • -
    • Keep control with easy knowledge base management and response customization.
    • -
    -

    👉 Get Joinchat AI and let AI handle the hard work.

    -

    🎨 “Business Chat” is our WordPress theme recommended

    -

    Business Chat is a versatile WordPress theme designed for businesses seeking a professional online presence. It offers a fully responsive design, built-in SEO tools, extensive customization options, and a chat integration through Joinchat. It’s compatible with popular page builders and backed by dedicated customer support. Also it’s the ultimate solution for a high-performing, user-friendly business website.

    -

    Business Chat offers both a free and a premium version, catering to businesses with varying budgets and requirements. This flexibility makes it an ideal choice for businesses looking for a comprehensive and versatile solution to establish their online presence.

    -

    ⌁ If you like Joinchat 😍

    -
      -
    1. Please leave us a ★★★★★ rating. We’ll thank you.
    2. -
    3. Help us with the translation in your language
    4. -
    5. Visit our blog and find tips and tricks at join.chat.
    6. -
    7. Follow @joinchatnow on X. Join chat now!
    8. -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Joinchat", "slug": "creame-whatsapp-me", "tags": {"chat": "chat", "telegram": "telegram", "whatsapp": "whatsapp", "floating-button": "floating button", "facebook-messenger": "facebook messenger"}, "added": "2018-02-12", "icons": {"1x": "https://ps.w.org/creame-whatsapp-me/assets/icon-128x128.gif?rev=2699533", "2x": "https://ps.w.org/creame-whatsapp-me/assets/icon-256x256.gif?rev=2699533"}, "author": "Creame", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/creame-whatsapp-me/assets/banner-772x250.png?rev=2936349", "high": "https://ps.w.org/creame-whatsapp-me/assets/banner-1544x500.png?rev=2936349"}, "ratings": {"1": 8, "2": 4, "3": 1, "4": 8, "5": 167}, "version": "6.0.8", "homepage": "https://join.chat", "requires": "4.9.6", "sections": {"faq": "\n
    \nI can’t see the button or it’s over / under another thing\n\n

    \n

    You can change the position of the button so that nothing covers it by adding this CSS in Joinchat Settings > Advanced > Custom CSS:

    \n
    .joinchat { z-index:999999; }\n
    \n

    Higher values of z-index are above, the default value is 9000.

    \n

    If you need to move up:

    \n
    /* always */\n.joinchat { --bottom: 60px; }\n\n/* mobile only */\n@media (max-width: 480px), (orientation: landscape) and (max-height: 480px) {\n  .joinchat { --bottom: 60px; }\n}\n
    \n

    \n
    \nChange button size\n\n

    \n

    You can change the button size by adding this CSS in Joinchat Settings > Advanced > Custom CSS:

    \n
    /* always */\n.joinchat { --s: 50px; }\n\n/* mobile only */\n@media (max-width: 480px), (orientation: landscape) and (max-height: 480px) {\n  .joinchat { --s: 40px; }\n}\n
    \n

    For WooCommerce Product Button you can change size with:

    \n
    .joinchat__woo-btn { --s: 50px; }\n
    \n

    \n
    \nShortcodes / Triggers\n\n

    \n

    Joinchat does not provide any shortcodes, but you can easily link to WhatsApp in two ways:

    \n
      \n
    1. Add an anchor link to #whatsapp (open WhastApp directly) or #joinchat (show chat window).
      e.g.: add in your menu a custom link with the URL #whatsapp
    2. \n
    3. Add a css class to any element, joinchat_app (open WhastApp directly) or joinchat_open (show chat window).
      e.g.: <img src=\"contact.jpg\" class=\"joinchat_open\" alt=\"Contact\">
    4. \n
    \n

    This works with your phone settings and message with dynamic variables, even on pages without Joinchat visible.

    \n

    For custom direct WhatsApp links you can add data-phone and data-message attributes.
    e.g.: <a href=\"#whatsapp\" data-phone=\"99999999\" data-message=\"I want to chat\">Chat now!</a>

    \n

    \n
    \nDisable enhanced telephone input\n\n

    \n

    Joinchat uses International Telephone Input library to facilitate and validate the introduction of the phone number in the format of each country. If you have problems with your phone number or you want to write it directly without any changes you can disable it with this filter (remember follow WhatsApp guidelines):

    \n
    add_filter( ''joinchat_enhanced_phone'', ''__return_false'' );\n
    \n

    \n
    \nAllow other roles to change settings\n\n

    \n

    By default Joinchat settings can only be edited by users with manage_options capability (administrator).
    \nYou can change the required capability with the filter \"joinchat_capability\".

    \n
    // e.g. allow shop managers:\nadd_filter( ''joinchat_capability'', function(){ return ''manage_woocommerce''; } );\n\n// e.g. allow editors:\nadd_filter( ''joinchat_capability'', function(){ return ''edit_pages''; } );\n
    \n

    Since v4.4 Joinchat menu is placed as direct menu in your wp-admin but you can change it with the filter \"joinchat_submenu\":

    \n
    // Show as submenu under Settings (also require \"manage_options\" capability)\nadd_filter( ''joinchat_submenu'', ''__return_true'' );\n
    \n

    \n
    \nDisable Gutenberg sidebar\n\n

    \n

    The block editor evolves quickly and errors can occur that we have not anticipated.

    \n

    If you have any errors with Gutenberg and Joinchat or simply prefer the old Joinchat metabox you can use this filter:

    \n
    add_filter( ''joinchat_gutenberg_sidebar'', ''__return_false'' );\n
    \n

    \n
    \nWPML/Polylang translations\n\n

    \n

    Joinchat settings are saved in your site’s main language. For other languages translation go to WPML/Polylang Settings > String translations, filter strings group by “Joinchat” and update the strings for each language.

    \n

    \n
    \nGoogle Tag with multiple destinations\n\n

    \n

    Joinchat since 5.1 can detect multiple destinations in Google Tag and send events to all of them.

    \n

    \n
    \nGoogle Analytics 4 integration\n\n

    \n

    Joinchat sends a custom event when user launch WhatsApp.

    \n

    If Google Analytics 4 (gtag.js) is detected, use the recommended ''generate_lead'' event:

    \n
    gtag(''event'', ''generate_lead'', {\n    event_category: ''JoinChat'',\n    event_action: ''whatsapp: 99999999999'',\n    event_label: destination_url,\n    chat_channel: ''whatsapp'',\n    chat_id: ''99999999999'',\n    is_mobile: ''yes'' | ''no'',\n});\n
    \n

    If your site don’t have standard names for data layer (‘dataLayer’) you can set your custom names with this PHP filter. Also can set a different event name for GA4:

    \n
    // Rename GA4 event / Rename dataLayer name\nadd_filter( ''joinchat_get_settings'', function( $settings ){\n    $settings[''ga_event''] = ''myGA4Event'';\n    $settings[''data_layer''] = ''dataLayerCustom'';\n    return $settings;\n} );\n\n// Disable GA4 event\nadd_filter( ''joinchat_get_settings'', function( $settings ){\n    $settings[''ga_event''] = false;\n    return $settings;\n} );\n
    \n

    Joinchat is compatible with plugins MonsterInsights – Google Analytics Dashboard for WordPress and Google Tag Manager for WordPress custom names.

    \n

    \n
    \nGoogle Tag Manager integration\n\n

    \n

    Joinchat sends a ''JoinChat'' event if GTM is detected when user launch WhatsApp:

    \n
    dataLayer.push({\n    event: ''JoinChat'',\n    event_action: ''whatsapp: 99999999999'',\n    event_label: destination_url,\n    chat_channel: ''whatsapp'',\n    chat_id: ''99999999999'',\n    is_mobile: ''yes'' | ''no'',\n    page_location: current_url,\n    page_title: page_title,\n});\n
    \n

    \n
    \nFacebook Pixel integration\n\n

    \n

    Joinchat sends a ''JoinChat'' custom event if Facebook Pixel is detected when user launch WhatsApp:

    \n
    fbq(''trackCustom'', ''JoinChat'', {\n    event_action: ''whatsapp: 99999999999'',\n    event_label: destination_url,\n    chat_channel: ''whatsapp'',\n    chat_id: ''99999999999'',\n    is_mobile: ''yes'' | ''no'',\n    page_location: current_url,\n    page_title: page_title,\n});\n
    \n

    \n
    \nCustom Events / add Event Parameters\n\n

    \n

    Joinchat triggers custom events before launch WhatsApp ''joinchat:open'' and before send analytics events ''joinchat:event''.

    \n

    You can use them to extend them to your needs, add extra functions, cancel events or add extra parameters.

    \n
    // e.g.: Send webhook to Zapier\njQuery(document).on(''joinchat:event'', function (event, params) {\n  jQuery.post(''https://hooks.zapier.com/hooks/catch/123456/xxxxxx/'', params );\n});\n\n// e.g.: Add user_is_logged param for GA4/GTM event\njQuery(document).on(''joinchat:event'', function (event, params) {\n  params.user_is_logged = document.body.classList.contains(''logged-in'') ? ''yes'' : ''no'';\n});\n
    \n

    \n
    \nWhat about GDPR?\n\n

    \n

    Joinchat can be used without any cookies.

    \n

    Depending on your Joinchat settings, two cookies may be needed. They are first-party cookies and don’t collect personal data.

    \n
      \n
    • joinchat_views is a visits counter to control when to show chat window.
    • \n
    • joinchat_hashes saves when a user has interacted with a CTA to prevent automatically show that CTA again.
    • \n
    \n

    You can view in your Settings > Privacy > Policy Guide the suggested text by Joinchat.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does what it does well!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy freshan on June 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really clean interface, simple and functional

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect service and very quick!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mobilalonamad on May 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I really appreciate the support of Joinchat team, very professional! And I also have the free verison of the plugin. Very, very professional!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    working well

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shreyasnalla on September 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good plugin working well Thank You So Much

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    why its advertised as messenger chat plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy illiachenvar on September 17, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    its only for whatsapp, no other chats

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very very good Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy silviamancii on May 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I really love the plugin and the support!

    \n\n\n\n

    Thank you so much.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    funciona muy bien

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alexemix on April 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Funciona muy bien y ofrece muchas opciones

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Se actualizo a la version 5,1 con wordpress 6.5

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy amontes10 on April 3, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Se actualizo a la version 5,1 con wordpress 6.5 y no funciona.. abre el icono pero no conecta con whatsaap web y movil

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best in my opinion

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rokinso on March 31, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best in my opinion

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect Plugin with lots of options

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy imtanann on March 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its free and more you can remove power by joint chat text shown on whatsapp icon.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great App

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy minhaz52 on December 19, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Everything is good—easy to set up and helpful

    \n
    \n
    \n", "changelog": "

    6.0.8

    \n
      \n
    • New allow to disable GA4 event with filter ‘joinchat_get_settings’ and set ‘ga_event’ as false
    • \n
    • Fix mask WhastApp phone number for Facebook Pixel events
    • \n
    • Fix add aria-label to Joinchat floating button
    • \n
    \n

    6.0.7

    \n
      \n
    • Fix dark styles for loading and note messages
    • \n
    • Fix admin JS conflict when other plugin use IntTelInput library
    • \n
    • Fix Joinchat settings don’t work with HivePress
    • \n
    \n

    6.0.6

    \n
      \n
    • Aff a filter for Litespeed Cache plugin to ensure Joinchat JS/CSS assets version. Prevent Joinchat break layout if visitor has Joinchat v5 cached assets (thanks to @tendenzeshabbychic and @qtwrk).
    • \n
    \n

    6.0.5

    \n
      \n
    • Fix CSS transparent background color if only floating button without chatbox.
    • \n
    \n

    6.0.4

    \n
      \n
    • Fix some js conflicts in wp-admin if other plugins adds IntTelInput.
    • \n
    \n

    6.0.3

    \n
      \n
    • Fix js error with variable product SKU.
    • \n
    \n

    6.0.2

    \n
      \n
    • Bump min PHP version to 7.0.
    • \n
    • Add fallback to missing functions in older WordPress versions.
    • \n
    • Fix fatal error on old add-ons with missing class JoinchatUtil.
    • \n
    • Fix Woo product button styles.
    • \n
    \n

    6.0.1

    \n
      \n
    • Fix hidden attribute can make button invible with some CSS resets (like Bootstrap).
    • \n
    \n

    6.0.0

    \n
      \n
    • New Rich Chat: multiple chat bubbles with links, buttons, images and random texts.
    • \n
    • Improved performance: vanilla JavaScript without any dependency and lazy loading of styles and scripts.
    • \n
    • New button icons and allows to keep the alternative image fixed.
    • \n
    • Integration with new WooCommerce brands.
    • \n
    • Other optimizations: refactor and improved styles, updated phone input (37 translations included), added {HOME} variable, etc.
    • \n
    \n

    See changelog.txt for older changelog

    \n", "description": "
    \n

    Turn conversations into conversions

    \n
    \n

    🎉 Chat with your website visitors through their favorite chat applications. Place a floating contact button at the bottom of your site and give the best support to your customers.

    \n

    Documentation | Joinchat Premium | Joinchat AI ✨

    \n

    ⌁ What you can do with Joinchat ✅

    \n

    🛎 Insert a contact button for WhatsApp on your website.

    \n

    Set your ‘WhatsApp’ or ‘WhatsApp Business’ number and let your visitors contact you easily:

    \n

    🧩 WhatsApp Contact Button Block with optional QR Code

    \n

    📱 On mobile, launch WhatsApp mobile app

    \n

    💻 On desktop, launch WhatsApp desktop app or WhatsApp Web

    \n

    🤳 On desktop, show QR Code to scan from phone

    \n

    Customize your logo, profile picture or even an animated gif.

    \n

    Define in which pages or zones it should appear, the delay time, if you want it to the right or to the left, only on mobile phones or also on the desktop.

    \n

    You can define a tooltip or a call to action to capture the user’s interest, the limit is set by your creativity.

    \n

    📢 New on Joinchat 6.0

    \n
      \n
    • Enhance your CTAs with Rich Chat: multiple chat bubbles, include links or buttons, add images and use random texts.
    • \n
    • Improved performance: vanilla JavaScript without any dependency and lazy loading of styles and scripts.
    • \n
    • New button icons and allows to keep the alternative image fixed.
    • \n
    • Integration with new WooCommerce brands.
    • \n
    • Other optimizations: refactor and improved styles, updated phone input (37 translations included), added {HOME} variable, etc.
    • \n
    \n

    📝 Settings at page or archive level.

    \n

    You can change main settings on every Post, Page, Product or CPT and for Tag or Category archive pages.

    \n

    Editing your posts in the right side in the Joinchat metabox or editing your tags or categories in the Joinchat section, you can modify Phone, CTA, Start Message and Visibility options.

    \n

    🔴 Show a notification.

    \n

    Use a balloon on the button to get the visitor’s attention.

    \n

    In this way, you ensure that you do not miss any important message you want to give them, surprise them in a less intrusive way.

    \n

    📯 Create call-to-action messages.

    \n

    To get users to start the chat, use custom CTAs on each page, product or section.

    \n

    Welcome them, help them and offer them offers or promotions. Read more

    \n

    💬 Customize conversation start messages.

    \n

    Set the first message so that the visitor can start the conversation immediately.

    \n

    Use our “Dynamic Variables” and you will know what page the visitor is coming from or what product they are looking at when they start the chat.

    \n

    ✅ Opt-in text.

    \n

    Opt-in is a users’ consent to receive messages from a business.

    \n

    Write a text with the conditions under which the visitor contacts you (or other info that you consider important).

    \n

    You can make it mandatory and disable contact until the user accepts it.

    \n

    🛒 Integration with WooCommerce.

    \n

    Define CTAs and Custom Start Messages for shop page, product pages and for products on sale.

    \n

    Add a WhatsApp Contact Button directly on your product page next to the “Add to cart” button or choose the best position, even on products without a price.

    \n

    🧩 WhatsApp Contact Button Block (min WP 5.9).

    \n

    Add beautiful and customizable WhatsApp contact buttons in the Block Editor.

    \n

    Ready to use patterns with different styles are also included.

    \n

    Enable QR Code on desktop to allow your visitors to scan it and start messaging from their phone.

    \n

    You can define phone and initial message of the button or use the post/general Joinchat settings (ideal for Reusable Blocks).

    \n

    🃏 Dynamic Variables.

    \n

    Use variables in your CTAs and Start Messages that change dynamically for each page:

    \n

    {SITE} ➡ Website title
    \n{TITLE} ➡ Current page title
    \n{HOME} ➡ Website home url
    \n{URL} ➡ Current page url
    \n{HREF} ➡ Current page url (full with query params)
    \n{PRODUCT} ➡ Product name (Woo)
    \n{SKU} ➡ Product SKU (Woo)
    \n{REGULAR} ➡ Product regular price (Woo)
    \n{PRICE} ➡ Product current price (Woo)
    \n{DISCOUNT} ➡ Product percent discount when is on sale (Woo)

    \n

    📈 Analytics Integration.

    \n

    Automatically send events to Google Analytics, Google Tag Manager and Facebook Pixel when the user opens WhatsApp.

    \n

    Now can send events to multiple destinations on Google Tag!

    \n

    Google Analytics 4 integration with the recommended \"generate_lead\" event.

    \n

    Google Ads conversion, just add your Conversion ID and Conversion Label.

    \n

    You can also create your own custom events or add event parameters. View FAQs / Read more

    \n

    🍾 Chat Triggers.

    \n

    Any element in your page can be a chat trigger, eg: it can launch WhatsApp from a link or show the Joinchat CTA when the user scrolls to the footer.

    \n

    On page load (by url):

    \n
      \n
    • url query param joinchat to show chat window. Can set delay in seconds, default is 0 (e.g. example.com/page/?joinchat=5)
    • \n
    • url query hash #joinchat to show chat window (e.g. example.com/page/#joinchat)
    • \n
    \n

    On click:

    \n
      \n
    • class \"joinchat_app\" direct launch WhatsApp
    • \n
    • class \"joinchat_open\" opens Joinchat CTA
    • \n
    • link href \"#whatsapp\" direct launch WhatsApp
    • \n
    • link href \"#joinchat\" opens Joinchat CTA
    • \n
    \n

    Set custom phone and initial message for direct WhatsApp triggers:

    \n
      \n
    • data-phone=\"99999999\"
    • \n
    • data-message=\"Only for this trigger message\".
    • \n
    \n

    On scroll (when element appears on screen):

    \n
      \n
    • class \"joinchat_show\" opens Joinchat CTA (first time)
    • \n
    • class \"joinchat_force_show\" opens Joinchat CTA (always)
    • \n
    \n

    💱 Multi-Language & RTL Support.

    \n

    To be able to support all your users, wherever they are. Our plugin is compatible with WPML and Polylang and also RTL languages are supported.

    \n

    Direct link to edit translations when a translatable field is changed.

    \n

    🌈 Theme Colors & 🌚 Dark Mode.

    \n

    You choose a color and we customize the entire visual theme of the widget. With Dark Mode display the chat window with dark colors and white text. From settings you can activate it or leave it automatic and detects devices’ configuration.

    \n

    ⚡ Fast & Light.

    \n

    Only load what need when needed. Joinchat is lightweight and follow best coding practices. See tests report

    \n

    Use vanilla JavaScript without dependencies, deferred scripts and lazy load of styles to prevent render-blocking.

    \n

    🔕 No distractions.

    \n

    Joinchat integrates with all major Visual Editors and Page Builders and will not appear when editing a page.

    \n

    Supported editors: Beaver Builder, Brizy Page Builder, Elementor, Oxygen Builder, Page Builder by SiteOrigin, Thrive Architect, Visual Composer and WP Page Builder.

    \n

    🍪 Cookies & GDPR.

    \n

    Joinchat can be used without any cookies. But to automatically display the CTA, two cookies are necessary. They are first-party cookies and don’t collect personal data.

    \n

    Joinchat integrates with WordPress’s Privacy Policy Guide and suggests the necessary text.

    \n

    👨‍💻 Developer friendly.

    \n

    Fully extensible, with lots of filters and actions to extend its functionality or change behavior.

    \n

    === Joinchat Premium 🚀 ===

    \n

    Turn your chat into a powerful lead capture and support tool.

    \n
      \n
    • Create chatbot-like conversation flows to capture leads and automate replies.
    • \n
    • Manage multiple agents and schedules to organize support.
    • \n
    • Prevent overload by distributing chats across multiple WhatsApp numbers.
    • \n
    • Add more channels like Telegram, Messenger, or phone calls.
    • \n
    • Boost conversions with videos, surveys, and more right inside the chat window.
    • \n
    \n

    👉 Get Joinchat Premium and upgrade your support today.

    \n

    === Joinchat AI ✨ ===

    \n

    Supercharge your chat with AI-powered instant replies and smart support.

    \n
      \n
    • Answer instantly 24/7 using AI trained on your FAQs and website content.
    • \n
    • Guide visitors and solve questions automatically without human intervention.
    • \n
    • Reduce workload and boost efficiency by handling repetitive queries.
    • \n
    • Keep control with easy knowledge base management and response customization.
    • \n
    \n

    👉 Get Joinchat AI and let AI handle the hard work.

    \n

    🎨 “Business Chat” is our WordPress theme recommended

    \n

    Business Chat is a versatile WordPress theme designed for businesses seeking a professional online presence. It offers a fully responsive design, built-in SEO tools, extensive customization options, and a chat integration through Joinchat. It’s compatible with popular page builders and backed by dedicated customer support. Also it’s the ultimate solution for a high-performing, user-friendly business website.

    \n

    Business Chat offers both a free and a premium version, catering to businesses with varying budgets and requirements. This flexibility makes it an ideal choice for businesses looking for a comprehensive and versatile solution to establish their online presence.

    \n

    ⌁ If you like Joinchat 😍

    \n
      \n
    1. Please leave us a ★★★★★ rating. We’ll thank you.
    2. \n
    3. Help us with the translation in your language
    4. \n
    5. Visit our blog and find tips and tricks at join.chat.
    6. \n
    7. Follow @joinchatnow on X. Join chat now!
    8. \n
    \n", "screenshots": "
    1. \"Real

      Real example

    2. \"Real

      Real example

    3. \"Real

      Real example

    4. \"Real

      Real example

    5. \"Real

      Real example

    6. \"Real

      Real example

    7. \"Product

      Product Button example

    8. \"General

      General settings

    9. \"Visibility

      Visibility settings

    10. \"WooCommerce

      WooCommerce settings

    11. \"Advanced

      Advanced settings

    12. \"Page

      Page settings

    ", "installation": "
      \n
    1. Upload the entire creame-whatsapp-me folder to the /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    \n"}, "versions": {"1.4.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.1.4.3.zip", "2.3.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.2.3.3.zip", "3.2.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.3.2.3.zip", "4.1.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.9.zip", "4.2.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.2.0.zip", "4.3.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.3.2.zip", "4.4.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.4.3.zip", "4.5.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.5.zip", "4.5.6": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.6.zip", "4.5.7": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.7.zip", "4.5.8": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.8.zip", "4.5.9": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.9.zip", "5.0.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.2.zip", "5.0.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.8.zip", "5.0.9": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.9.zip", "5.1.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.6.zip", "5.1.7": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.7.zip", "5.1.8": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.8.zip", "5.2.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.2.4.zip", "6.0.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.8.zip", "trunk": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.zip", "4.0.10": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.0.10.zip", "4.1.10": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.10.zip", "4.1.11": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.11.zip", "4.1.12": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.12.zip", "4.1.13": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.13.zip", "4.1.14": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.14.zip", "4.1.15": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.15.zip", "4.5.10": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.10.zip", "4.5.11": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.11.zip", "4.5.12": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.12.zip", "4.5.13": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.13.zip", "4.5.14": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.14.zip", "4.5.15": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.15.zip", "4.5.16": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.16.zip", "4.5.17": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.17.zip", "4.5.18": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.18.zip", "4.5.19": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.19.zip", "4.5.20": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.20.zip", "5.0.10": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.10.zip", "5.0.11": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.11.zip", "5.0.12": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.12.zip", "5.0.13": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.13.zip", "5.0.14": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.14.zip", "5.0.15": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.15.zip", "5.0.16": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.16.zip", "5.0.17": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.17.zip"}, "downloaded": 15213703, "description": "
    \n

    Turn conversations into conversions

    \n
    \n

    🎉 Chat with your website visitors through their favorite chat applications. Place a floating contact button at the bottom of your site and give the best support to your customers.

    \n

    Documentation | Joinchat Premium | Joinchat AI ✨

    \n

    ⌁ What you can do with Joinchat ✅

    \n

    🛎 Insert a contact button for WhatsApp on your website.

    \n

    Set your ‘WhatsApp’ or ‘WhatsApp Business’ number and let your visitors contact you easily:

    \n

    🧩 WhatsApp Contact Button Block with optional QR Code

    \n

    📱 On mobile, launch WhatsApp mobile app

    \n

    💻 On desktop, launch WhatsApp desktop app or WhatsApp Web

    \n

    🤳 On desktop, show QR Code to scan from phone

    \n

    Customize your logo, profile picture or even an animated gif.

    \n

    Define in which pages or zones it should appear, the delay time, if you want it to the right or to the left, only on mobile phones or also on the desktop.

    \n

    You can define a tooltip or a call to action to capture the user’s interest, the limit is set by your creativity.

    \n

    📢 New on Joinchat 6.0

    \n
      \n
    • Enhance your CTAs with Rich Chat: multiple chat bubbles, include links or buttons, add images and use random texts.
    • \n
    • Improved performance: vanilla JavaScript without any dependency and lazy loading of styles and scripts.
    • \n
    • New button icons and allows to keep the alternative image fixed.
    • \n
    • Integration with new WooCommerce brands.
    • \n
    • Other optimizations: refactor and improved styles, updated phone input (37 translations included), added {HOME} variable, etc.
    • \n
    \n

    📝 Settings at page or archive level.

    \n

    You can change main settings on every Post, Page, Product or CPT and for Tag or Category archive pages.

    \n

    Editing your posts in the right side in the Joinchat metabox or editing your tags or categories in the Joinchat section, you can modify Phone, CTA, Start Message and Visibility options.

    \n

    🔴 Show a notification.

    \n

    Use a balloon on the button to get the visitor’s attention.

    \n

    In this way, you ensure that you do not miss any important message you want to give them, surprise them in a less intrusive way.

    \n

    📯 Create call-to-action messages.

    \n

    To get users to start the chat, use custom CTAs on each page, product or section.

    \n

    Welcome them, help them and offer them offers or promotions. Read more

    \n

    💬 Customize conversation start messages.

    \n

    Set the first message so that the visitor can start the conversation immediately.

    \n

    Use our “Dynamic Variables” and you will know what page the visitor is coming from or what product they are looking at when they start the chat.

    \n

    ✅ Opt-in text.

    \n

    Opt-in is a users’ consent to receive messages from a business.

    \n

    Write a text with the conditions under which the visitor contacts you (or other info that you consider important).

    \n

    You can make it mandatory and disable contact until the user accepts it.

    \n

    🛒 Integration with WooCommerce.

    \n

    Define CTAs and Custom Start Messages for shop page, product pages and for products on sale.

    \n

    Add a WhatsApp Contact Button directly on your product page next to the “Add to cart” button or choose the best position, even on products without a price.

    \n

    🧩 WhatsApp Contact Button Block (min WP 5.9).

    \n

    Add beautiful and customizable WhatsApp contact buttons in the Block Editor.

    \n

    Ready to use patterns with different styles are also included.

    \n

    Enable QR Code on desktop to allow your visitors to scan it and start messaging from their phone.

    \n

    You can define phone and initial message of the button or use the post/general Joinchat settings (ideal for Reusable Blocks).

    \n

    🃏 Dynamic Variables.

    \n

    Use variables in your CTAs and Start Messages that change dynamically for each page:

    \n

    {SITE} ➡ Website title
    \n{TITLE} ➡ Current page title
    \n{HOME} ➡ Website home url
    \n{URL} ➡ Current page url
    \n{HREF} ➡ Current page url (full with query params)
    \n{PRODUCT} ➡ Product name (Woo)
    \n{SKU} ➡ Product SKU (Woo)
    \n{REGULAR} ➡ Product regular price (Woo)
    \n{PRICE} ➡ Product current price (Woo)
    \n{DISCOUNT} ➡ Product percent discount when is on sale (Woo)

    \n

    📈 Analytics Integration.

    \n

    Automatically send events to Google Analytics, Google Tag Manager and Facebook Pixel when the user opens WhatsApp.

    \n

    Now can send events to multiple destinations on Google Tag!

    \n

    Google Analytics 4 integration with the recommended \"generate_lead\" event.

    \n

    Google Ads conversion, just add your Conversion ID and Conversion Label.

    \n

    You can also create your own custom events or add event parameters. View FAQs / Read more

    \n

    🍾 Chat Triggers.

    \n

    Any element in your page can be a chat trigger, eg: it can launch WhatsApp from a link or show the Joinchat CTA when the user scrolls to the footer.

    \n

    On page load (by url):

    \n
      \n
    • url query param joinchat to show chat window. Can set delay in seconds, default is 0 (e.g. example.com/page/?joinchat=5)
    • \n
    • url query hash #joinchat to show chat window (e.g. example.com/page/#joinchat)
    • \n
    \n

    On click:

    \n
      \n
    • class \"joinchat_app\" direct launch WhatsApp
    • \n
    • class \"joinchat_open\" opens Joinchat CTA
    • \n
    • link href \"#whatsapp\" direct launch WhatsApp
    • \n
    • link href \"#joinchat\" opens Joinchat CTA
    • \n
    \n

    Set custom phone and initial message for direct WhatsApp triggers:

    \n
      \n
    • data-phone=\"99999999\"
    • \n
    • data-message=\"Only for this trigger message\".
    • \n
    \n

    On scroll (when element appears on screen):

    \n
      \n
    • class \"joinchat_show\" opens Joinchat CTA (first time)
    • \n
    • class \"joinchat_force_show\" opens Joinchat CTA (always)
    • \n
    \n

    💱 Multi-Language & RTL Support.

    \n

    To be able to support all your users, wherever they are. Our plugin is compatible with WPML and Polylang and also RTL languages are supported.

    \n

    Direct link to edit translations when a translatable field is changed.

    \n

    🌈 Theme Colors & 🌚 Dark Mode.

    \n

    You choose a color and we customize the entire visual theme of the widget. With Dark Mode display the chat window with dark colors and white text. From settings you can activate it or leave it automatic and detects devices’ configuration.

    \n

    ⚡ Fast & Light.

    \n

    Only load what need when needed. Joinchat is lightweight and follow best coding practices. See tests report

    \n

    Use vanilla JavaScript without dependencies, deferred scripts and lazy load of styles to prevent render-blocking.

    \n

    🔕 No distractions.

    \n

    Joinchat integrates with all major Visual Editors and Page Builders and will not appear when editing a page.

    \n

    Supported editors: Beaver Builder, Brizy Page Builder, Elementor, Oxygen Builder, Page Builder by SiteOrigin, Thrive Architect, Visual Composer and WP Page Builder.

    \n

    🍪 Cookies & GDPR.

    \n

    Joinchat can be used without any cookies. But to automatically display the CTA, two cookies are necessary. They are first-party cookies and don’t collect personal data.

    \n

    Joinchat integrates with WordPress’s Privacy Policy Guide and suggests the necessary text.

    \n

    👨‍💻 Developer friendly.

    \n

    Fully extensible, with lots of filters and actions to extend its functionality or change behavior.

    \n

    === Joinchat Premium 🚀 ===

    \n

    Turn your chat into a powerful lead capture and support tool.

    \n
      \n
    • Create chatbot-like conversation flows to capture leads and automate replies.
    • \n
    • Manage multiple agents and schedules to organize support.
    • \n
    • Prevent overload by distributing chats across multiple WhatsApp numbers.
    • \n
    • Add more channels like Telegram, Messenger, or phone calls.
    • \n
    • Boost conversions with videos, surveys, and more right inside the chat window.
    • \n
    \n

    👉 Get Joinchat Premium and upgrade your support today.

    \n

    === Joinchat AI ✨ ===

    \n

    Supercharge your chat with AI-powered instant replies and smart support.

    \n
      \n
    • Answer instantly 24/7 using AI trained on your FAQs and website content.
    • \n
    • Guide visitors and solve questions automatically without human intervention.
    • \n
    • Reduce workload and boost efficiency by handling repetitive queries.
    • \n
    • Keep control with easy knowledge base management and response customization.
    • \n
    \n

    👉 Get Joinchat AI and let AI handle the hard work.

    \n

    🎨 “Business Chat” is our WordPress theme recommended

    \n

    Business Chat is a versatile WordPress theme designed for businesses seeking a professional online presence. It offers a fully responsive design, built-in SEO tools, extensive customization options, and a chat integration through Joinchat. It’s compatible with popular page builders and backed by dedicated customer support. Also it’s the ultimate solution for a high-performing, user-friendly business website.

    \n

    Business Chat offers both a free and a premium version, catering to businesses with varying budgets and requirements. This flexibility makes it an ideal choice for businesses looking for a comprehensive and versatile solution to establish their online presence.

    \n

    ⌁ If you like Joinchat 😍

    \n
      \n
    1. Please leave us a ★★★★★ rating. We’ll thank you.
    2. \n
    3. Help us with the translation in your language
    4. \n
    5. Visit our blog and find tips and tricks at join.chat.
    6. \n
    7. Follow @joinchatnow on X. Join chat now!
    8. \n
    \n", "donate_link": "https://join.chat/donate/", "num_ratings": 188, "screenshots": {"1": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-1.jpg?rev=2699533", "caption": "Real example"}, "2": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-2.jpg?rev=2699533", "caption": "Real example"}, "3": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-3.jpg?rev=2699533", "caption": "Real example"}, "4": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-4.jpg?rev=2699533", "caption": "Real example"}, "5": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-5.jpg?rev=2699533", "caption": "Real example"}, "6": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-6.jpg?rev=2699533", "caption": "Real example"}, "7": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-7.png?rev=2699533", "caption": "Product Button example"}, "8": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-8.png?rev=2699533", "caption": "General settings"}, "9": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-9.png?rev=2699533", "caption": "Visibility settings"}, "10": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-10.png?rev=2699533", "caption": "WooCommerce settings"}, "11": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-11.png?rev=2699533", "caption": "Advanced settings"}, "12": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-12.png?rev=2699533", "caption": "Page settings"}}, "support_url": "https://wordpress.org/support/plugin/creame-whatsapp-me/", "contributors": {"monillo": {"avatar": "https://secure.gravatar.com/avatar/bcd62ff5129dc582432809fea0d36641e280a2c4e17c8cdf624277a0e88c2eac?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/monillo/", "display_name": "Monillo"}, "pacotole": {"avatar": "https://secure.gravatar.com/avatar/5cd364ec1aa6f2598d1009511e5722b8226fad9ed20feff0b5fb46aecd334d54?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pacotole/", "display_name": "Pacotole"}, "davidlillo": {"avatar": "https://secure.gravatar.com/avatar/b9dd9994a7b4df5482699fd05808b896c3b81decf16d7d74705472c45aeef89d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/davidlillo/", "display_name": "davidlillo"}, "creapuntome": {"avatar": "https://secure.gravatar.com/avatar/18c1ce296c23ff7f409c7697669b5b462d3b08be0ee129c360b2d3ea9207aa61?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/creapuntome/", "display_name": "Creame"}}, "last_updated": "2025-09-10 3:44pm GMT", "preview_link": "https://wordpress.org/plugins/creame-whatsapp-me/?preview=1", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.8.zip", "author_profile": "https://profiles.wordpress.org/creapuntome/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    Joinchat 6 is a mayor version that includes refactored layout, styles and JavaScript. Please check your site after updating.\nJoinchat Premium users: You need to upgrade to Joinchat Premium 6 for full compatibility.

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f28d-7350-aac1-d59caba45999", "name": "Joinchat", "slug": "creame-whatsapp-me", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1757519040, "version": "6.0.8"}, "support_threads": 1, "requires_plugins": [], "short_description": "WhatsApp, Messenger, Telegram, Phone call… capture users through their favorite Apps and turn into clients", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ae2-7079-9fd7-3d1ea7a4432f', 'did:web:api.aspiredev.org:packages:wp-plugin:custom-css-js', 'custom-css-js', 'Simple Custom CSS and JS', '

    Customize your WordPress site’s appearance by easily adding custom CSS and JS code without even having to modify your theme or plugin files. This is perfect for adding custom CSS tweaks to your site.

    -

    Features

    -
      -
    • Text editor with syntax highlighting
    • -
    • Print the code inline or included into an external file
    • -
    • Print the code in the header or the footer
    • -
    • Add CSS or JS to the frontend or the admin side
    • -
    • Add as many codes as you want
    • -
    • Keep your changes also when you change the theme
    • -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Simple Custom CSS and JS", "slug": "custom-css-js", "tags": {"site-css": "site css", "add-style": "add style", "custom-js": "custom js", "custom-css": "custom css", "customize-theme": "customize theme"}, "added": "2015-12-07", "icons": {"1x": "https://ps.w.org/custom-css-js/assets/icon-128x128.png?rev=1303730"}, "author": "SilkyPress", "rating": 88, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/custom-css-js/assets/banner-772x250.png?rev=1303730", "high": "https://ps.w.org/custom-css-js/assets/banner-1544x500.png?rev=1770945"}, "ratings": {"1": 11, "2": 2, "3": 4, "4": 4, "5": 79}, "version": "3.51.1", "homepage": "https://wordpress.org/plugins/custom-css-js/", "requires": "3.0.1", "sections": {"faq": "\n
    \nWhat if I want to add multiple external CSS codes?\n\n

    \n

    If you write multiple codes of the same type (for example: two external CSS codes), then all of them will be printed one after another

    \n

    \n
    \nWill this plugin affect the loading time?\n\n

    \n

    When you click the Save button the codes will be cached in files, so there are no tedious database queries.

    \n

    \n
    \nDoes the plugin modify the code I write in the editor?\n\n

    \n

    No, the code is printed exactly as in the editor. It is not modified/checked/validated in any way. You take the full responsability for what is written in there.

    \n

    \n
    \nMy code doesn’t show on the website\n\n

    \n

    Try one of the following:
    \n1. If you are using any caching plugin (like “W3 Total Cache” or “WP Fastest Cache”), then don’t forget to delete the cache before seing the code printed on the website.
    \n2. Make sure the code is in Published state (not Draft or in Trash).
    \n3. Check if the wp-content/uploads/custom-css-js folder exists and is writable

    \n

    \n
    \nDoes it work with a Multisite Network?\n\n

    \n

    Yes.

    \n

    \n
    \nWhat if I change the theme?\n\n

    \n

    The CSS and JS are independent of the theme and they will persist through a theme change. This is particularly useful if you apply CSS and JS for modifying a plugin’s output.

    \n

    \n
    \nCan I use a CSS preprocesor like LESS or Sass?\n\n

    \n

    For the moment only plain CSS is supported, but you can check out the Pro version in case you need a CSS preprocessor.

    \n

    \n
    \nCan I upload images for use with my CSS?\n\n

    \n

    Yes. You can upload an image to your Media Library, then refer to it by its direct URL from within the CSS stylesheet. For example:
    \n div#content {
    \n background-image: url(‘http://example.com/wp-content/uploads/2015/12/image.jpg’);
    \n }

    \n

    \n
    \nCan I use CSS rules like @import and @font-face?\n\n

    \n

    Yes.

    \n

    \n
    \nWho can publish/edit/delete Custom Codes?\n\n

    \n

    By default only the Administrator will be able to publish/edit/delete Custom Codes. On the plugin activation there is a role created called Web Designer. You can assign this role to a non-admin user in order to allow to publish/edit/delete Custom Codes. On the plugin’s Settings page there is an option to remove this role.

    \n

    \n
    \nMy website has HTTPS urls, but the codes are linked as HTTP\n\n

    \n

    The URL for the linked Codes is built just like the URL for other media (from Media Library) by using the WordPress Address option found on the WP Admin -> Settings -> General page, as shown in this screenshot. If the WordPress Address has HTTPS in the url, then the Custom Codes and all the other media will have HTTPS in the url.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Just what I was looking for

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Heath Woodward (goldeneye512) on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works perfectly. Great plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Product, Great Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Zayadur (zayadur) on June 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    There is no other plugin that allows you to control settings like WP conditional location rules, stores versioned copies of the files in a directory making local development easier, and is a simple UX to deploy rapid updates cutting down on development time. On top of that, the support team has gone above and beyond to address and fix limitations to allow my business and developers'' workflows to continue without a hitch. I highly recommend this plugin to anyone that''s looking for a definitive solution to deploy HTML, CSS, JS snippets on a per-post basis.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very Simple and Multi-Functional

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy joseeneveu on February 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks to this plugin, I was able to make modifications to parts of my own website that had been eluding me for WEEKS through other CSS plugins that I had been trying to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect plugin, but a few improvements for easier editing would be nice.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy michalrama on January 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is basically a must. When using a free theme, I am quite limited in editing the appearance. And some functions cannot be solved using plugins.

    \n\n\n\n

    There are three things that I have been missing for a long time.

    \n\n\n\n
      \n
    1. Insufficient highlighting of the wrong number of brackets. It does turn red when I click on it, but it would be better if it was red permanently or turned red after saving.
    2. \n\n\n\n
    3. Basic ability to undo changes.
    4. \n\n\n\n
    5. Ability to automatically format code
    6. \n
    \n\n\n\n

    However, this does not change the fact that I give it five stars.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Solid performance and a complete feature set for most use cases.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bjarne Oldrup (oldrup) on January 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple Custom CSS and JS does exactly what it says on the box. I''ve been using it for many years on non-profit websites, and it has proven rock solid. Here''s what I especially appreciated:

    \n\n\n\n
      \n
    • CSS, JS, and HTML syntax highlighting.
    • \n\n\n\n
    • Code can be inline or loaded externally (and thus cached).
    • \n\n\n\n
    • Code can be loaded in the header, body, or footer.
    • \n\n\n\n
    • Code can be loaded on the front end, in the block editor and/or admin pages.
    • \n\n\n\n
    • Code can easily be enabled or disabled with a single click.
    • \n
    \n\n\n\n

    That is a lot of features for a free plugin, and I''m perfectly content with that. There is a reasonably priced premium version with advanced features like CSS preprocessors and code revisions if these are important features to you, but the free version is a great start and enough for many projects.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Impacted the permalinks

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy code2be on December 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin does flush all permalinks settings on install, without confirmation of Admin, which impacted the whole permalinks settings, and required me to deactivate and reactivate multiple plugins to get their permalinks settings setup again, which is loss of time and requires a clear confirmation before doing that on install.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excelente!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Derley Hassen (derleybr) on October 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Prático, funcional e sem a irritante tentativa de fazer você comprar. Uso perfeitamente sem a necessidade de complementá-lo com algum plugin dependente pago.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Нет возможности подключить внешний CSS

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fomenkoandrey on October 5, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Вроде как опція EXTERNAL file есть, но указать адрес этого файла - нету возможности, только в платной версии.

    \n\n\n\n

    ПОтому - безполезный плагин

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really useful tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy linuxhostmaster on September 2, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a relatively small simple plugin but recently I''ve found it invaluable for adding small CSS and JS snippets to the site. It''s been great for adding things RocketChat and Webpushr snippets tiny css quick fix adjustments to cope with UI inconsistencies.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Limited usefulness

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Yiorgos Theo (hellas1) on August 14, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    css is applied to the whole site, can not be applied to specific pages or posts.

    \n
    \n
    \n", "changelog": "

    3.51.1

    \n
      \n
    • 10/14/2025
    • \n
    • Fix: add the drag icon that makes the editor expandable
    • \n
    • Fix: the syntax highlighting was missing for HTML custom codes due to an array id overridding
    • \n
    \n

    3.51

    \n
      \n
    • 09/06/2025
    • \n
    • Tweak: update the CodeMirror library to the 5.65.20 version
    • \n
    • Fix: change the loading method in the Block editor to the recommended “enqueue_block_assets”
    • \n
    \n

    3.50

    \n
      \n
    • 02/17/2025
    • \n
    • Fix: the editor doesn’t show up under certain conditions
    • \n
    • Fix: don’t show the code excerpts in the list table, if the “Extended View” option is enabled for posts or pages
    • \n
    \n

    3.49

    \n
      \n
    • 11/13/2024
    • \n
    • Fix: add nuance for the “in Block editor” option for websites with WP before v6.6 and after
    • \n
    \n

    3.48

    \n
      \n
    • 09/24/2024
    • \n
    • Feature: add JS/CSS custom codes to the Block editor
    • \n
    \n

    3.47

    \n
      \n
    • 05/27/2024
    • \n
    • Fix: use the GMT time for showing when a custom code was published or modified
    • \n
    \n

    3.46

    \n
      \n
    • 01/31/2024
    • \n
    • Tweak: update the Bootstrap and jQuery library links
    • \n
    • Tweak: remove the qTranslate-x warning. The qTranslate-x plugin was removed from wp.org since Aug 2021
    • \n
    \n

    3.45

    \n
      \n
    • 10/17/2023
    • \n
    • Fix: enqueue the jQuery library only if there is a frontend JS custom code that requires it
    • \n
    \n

    3.44

    \n
      \n
    • 06/07/2023
    • \n
    • Compatibility with the WooCommerce “custom order tables” feature
    • \n
    \n

    3.43

    \n
      \n
    • 03/13/2023
    • \n
    • Fix: PHP8.1 deprecation notices
    • \n
    • Fix: after adding a JS/HTML custom code with empty content will show the CSS default message in the editor
    • \n
    \n

    3.42

    \n
      \n
    • 01/17/2023
    • \n
    • Fix: the “LH Archived Post Status” plugin was removing the “Publish” button on the add/edit custom code page
    • \n
    • Feature: multiple values for the “Where in site” option
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    Customize your WordPress site’s appearance by easily adding custom CSS and JS code without even having to modify your theme or plugin files. This is perfect for adding custom CSS tweaks to your site.

    \n

    Features

    \n
      \n
    • Text editor with syntax highlighting
    • \n
    • Print the code inline or included into an external file
    • \n
    • Print the code in the header or the footer
    • \n
    • Add CSS or JS to the frontend or the admin side
    • \n
    • Add as many codes as you want
    • \n
    • Keep your changes also when you change the theme
    • \n
    \n", "screenshots": "
    1. \"<p>Manage

      Manage Custom Codes

    2. \"<p>Add/Edit

      Add/Edit Javascript

    3. \"<p>Add/Edit

      Add/Edit CSS

    4. \"<p>Add/Edit

      Add/Edit HTML

    ", "installation": "
      \n
    • From the WP admin panel, click “Plugins” -> “Add new”.
    • \n
    • In the browser input box, type “Simple Custom CSS and JS”.
    • \n
    • Select the “Simple Custom CSS and JS” plugin and click “Install”.
    • \n
    • Activate the plugin.
    • \n
    \n

    OR…

    \n
      \n
    • Download the plugin from this page.
    • \n
    • Save the .zip file to a location on your computer.
    • \n
    • Open the WP admin panel, and click “Plugins” -> “Add new”.
    • \n
    • Click “upload”.. then browse to the .zip file downloaded from this page.
    • \n
    • Click “Install”.. and then “Activate plugin”.
    • \n
    \n

    OR…

    \n
      \n
    • Download the plugin from this page.
    • \n
    • Extract the .zip file to a location on your computer.
    • \n
    • Use either FTP or your hosts cPanel to gain access to your website file directories.
    • \n
    • Browse to the wp-content/plugins directory.
    • \n
    • Upload the extracted custom-css-js folder to this directory location.
    • \n
    • Open the WP admin panel.. click the “Plugins” page.. and click “Activate” under the newly added “Simple Custom CSS and JS” plugin.
    • \n
    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/custom-css-js.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/custom-css-js.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/custom-css-js.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/custom-css-js.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/custom-css-js.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/custom-css-js.1.6.zip", "2.0": "https://downloads.wordpress.org/plugin/custom-css-js.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/custom-css-js.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/custom-css-js.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/custom-css-js.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/custom-css-js.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/custom-css-js.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/custom-css-js.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/custom-css-js.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/custom-css-js.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/custom-css-js.2.9.zip", "3.0": "https://downloads.wordpress.org/plugin/custom-css-js.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/custom-css-js.3.2.zip", "3.4": "https://downloads.wordpress.org/plugin/custom-css-js.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/custom-css-js.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/custom-css-js.3.6.zip", "3.7": "https://downloads.wordpress.org/plugin/custom-css-js.3.7.zip", "3.8": "https://downloads.wordpress.org/plugin/custom-css-js.3.8.zip", "3.9": "https://downloads.wordpress.org/plugin/custom-css-js.3.9.zip", "2.10": "https://downloads.wordpress.org/plugin/custom-css-js.2.10.zip", "3.10": "https://downloads.wordpress.org/plugin/custom-css-js.3.10.zip", "3.11": "https://downloads.wordpress.org/plugin/custom-css-js.3.11.zip", "3.12": "https://downloads.wordpress.org/plugin/custom-css-js.3.12.zip", "3.13": "https://downloads.wordpress.org/plugin/custom-css-js.3.13.zip", "3.14": "https://downloads.wordpress.org/plugin/custom-css-js.3.14.zip", "3.15": "https://downloads.wordpress.org/plugin/custom-css-js.3.15.zip", "3.16": "https://downloads.wordpress.org/plugin/custom-css-js.3.16.zip", "3.17": "https://downloads.wordpress.org/plugin/custom-css-js.3.17.zip", "3.18": "https://downloads.wordpress.org/plugin/custom-css-js.3.18.zip", "3.19": "https://downloads.wordpress.org/plugin/custom-css-js.3.19.zip", "3.20": "https://downloads.wordpress.org/plugin/custom-css-js.3.20.zip", "3.21": "https://downloads.wordpress.org/plugin/custom-css-js.3.21.zip", "3.22": "https://downloads.wordpress.org/plugin/custom-css-js.3.22.zip", "3.23": "https://downloads.wordpress.org/plugin/custom-css-js.3.23.zip", "3.24": "https://downloads.wordpress.org/plugin/custom-css-js.3.24.zip", "3.25": "https://downloads.wordpress.org/plugin/custom-css-js.3.25.zip", "3.26": "https://downloads.wordpress.org/plugin/custom-css-js.3.26.zip", "3.27": "https://downloads.wordpress.org/plugin/custom-css-js.3.27.zip", "3.28": "https://downloads.wordpress.org/plugin/custom-css-js.3.28.zip", "3.29": "https://downloads.wordpress.org/plugin/custom-css-js.3.29.zip", "3.30": "https://downloads.wordpress.org/plugin/custom-css-js.3.30.zip", "3.31": "https://downloads.wordpress.org/plugin/custom-css-js.3.31.zip", "3.32": "https://downloads.wordpress.org/plugin/custom-css-js.3.32.zip", "3.33": "https://downloads.wordpress.org/plugin/custom-css-js.3.33.zip", "3.34": "https://downloads.wordpress.org/plugin/custom-css-js.3.34.zip", "3.35": "https://downloads.wordpress.org/plugin/custom-css-js.3.35.zip", "3.36": "https://downloads.wordpress.org/plugin/custom-css-js.3.36.zip", "3.37": "https://downloads.wordpress.org/plugin/custom-css-js.3.37.zip", "3.38": "https://downloads.wordpress.org/plugin/custom-css-js.3.38.zip", "3.39": "https://downloads.wordpress.org/plugin/custom-css-js.3.39.zip", "3.40": "https://downloads.wordpress.org/plugin/custom-css-js.3.40.zip", "3.41": "https://downloads.wordpress.org/plugin/custom-css-js.3.41.zip", "3.42": "https://downloads.wordpress.org/plugin/custom-css-js.3.42.zip", "3.43": "https://downloads.wordpress.org/plugin/custom-css-js.3.43.zip", "3.45": "https://downloads.wordpress.org/plugin/custom-css-js.3.45.zip", "3.46": "https://downloads.wordpress.org/plugin/custom-css-js.3.46.zip", "3.47": "https://downloads.wordpress.org/plugin/custom-css-js.3.47.zip", "3.48": "https://downloads.wordpress.org/plugin/custom-css-js.3.48.zip", "3.49": "https://downloads.wordpress.org/plugin/custom-css-js.3.49.zip", "3.50": "https://downloads.wordpress.org/plugin/custom-css-js.3.50.zip", "3.51": "https://downloads.wordpress.org/plugin/custom-css-js.3.51.zip", "trunk": "https://downloads.wordpress.org/plugin/custom-css-js.zip", "3.31.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.31.1.zip", "3.32.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.32.1.zip", "3.32.2": "https://downloads.wordpress.org/plugin/custom-css-js.3.32.2.zip", "3.32.3": "https://downloads.wordpress.org/plugin/custom-css-js.3.32.3.zip", "3.34.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.34.1.zip", "3.38.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.38.1.zip", "3.51.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.51.1.zip"}, "downloaded": 9119827, "description": "

    Customize your WordPress site’s appearance by easily adding custom CSS and JS code without even having to modify your theme or plugin files. This is perfect for adding custom CSS tweaks to your site.

    \n

    Features

    \n
      \n
    • Text editor with syntax highlighting
    • \n
    • Print the code inline or included into an external file
    • \n
    • Print the code in the header or the footer
    • \n
    • Add CSS or JS to the frontend or the admin side
    • \n
    • Add as many codes as you want
    • \n
    • Keep your changes also when you change the theme
    • \n
    \n", "donate_link": "", "num_ratings": 100, "screenshots": {"1": {"src": "https://ps.w.org/custom-css-js/assets/screenshot-1.jpg?rev=1770918", "caption": "

    Manage Custom Codes

    "}, "2": {"src": "https://ps.w.org/custom-css-js/assets/screenshot-2.jpg?rev=1770918", "caption": "

    Add/Edit Javascript

    "}, "3": {"src": "https://ps.w.org/custom-css-js/assets/screenshot-3.jpg?rev=1770918", "caption": "

    Add/Edit CSS

    "}, "4": {"src": "https://ps.w.org/custom-css-js/assets/screenshot-4.jpg?rev=1770918", "caption": "

    Add/Edit HTML

    "}}, "support_url": "https://wordpress.org/support/plugin/custom-css-js/", "contributors": {"diana_burduja": {"avatar": "https://secure.gravatar.com/avatar/326b6ed822562dfd3ee3376e3c82d232e875a27f1ada96c1b330c5715165cca7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/diana_burduja/", "display_name": "SilkyPress"}}, "last_updated": "2025-10-13 7:07pm GMT", "preview_link": "", "requires_php": "5.2.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/custom-css-js.3.51.1.zip", "author_profile": "https://profiles.wordpress.org/diana_burduja/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f293-70df-9c30-281ff855504f", "name": "Simple Custom CSS and JS", "slug": "custom-css-js", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760382420, "version": "3.51.1"}, "support_threads": 3, "requires_plugins": [], "short_description": "Easily add Custom CSS or JS to your website with an awesome editor.", "author_block_count": 0, "author_block_rating": 88, "commercial_support_url": "", "support_threads_resolved": 3}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1af2-7325-bc6e-820517e9f819', 'did:web:api.aspiredev.org:packages:wp-plugin:custom-post-type-ui', 'custom-post-type-ui', 'Custom Post Type UI', '

    Custom Post Type UI provides an easy-to-use interface for registering and managing custom post types and taxonomies for your website.

    -

    Custom Post Type UI Extended

    -

    CPTUI helps create custom content types, but displaying that content can be a whole new challenge. Custom Post Type UI Extended was created to help with displaying your crafted content. View our Layouts page to see available layout examples with Custom Post Type UI Extended.

    -

    Plugin development

    -

    Custom Post Type UI development is managed on GitHub, with official releases published on WordPress.org. The GitHub repo can be found at https://github.com/WebDevStudios/custom-post-type-ui. Please use the WordPress.org support tab for potential bugs, issues, or enhancement ideas.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Custom Post Type UI", "slug": "custom-post-type-ui", "tags": {"types": "types", "taxonomy": "taxonomy", "post-type": "post type", "content-types": "content types", "custom-post-types": "custom post types"}, "added": "2010-02-26", "icons": {"1x": "https://ps.w.org/custom-post-type-ui/assets/icon-128x128.png?rev=2744389", "2x": "https://ps.w.org/custom-post-type-ui/assets/icon-256x256.png?rev=2744389"}, "author": "webdevstudios", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/custom-post-type-ui/assets/banner-772x250.png?rev=2744389", "high": "https://ps.w.org/custom-post-type-ui/assets/banner-1544x500.png?rev=2744389"}, "ratings": {"1": 15, "2": 4, "3": 7, "4": 15, "5": 230}, "version": "1.18.0", "homepage": "https://github.com/WebDevStudios/custom-post-type-ui/", "requires": "6.6", "sections": {"faq": "\n
    \nUser documentation\n\n

    \n

    Please see https://docs.pluginize.com/tutorials/custom-post-type-ui/

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really really really bad

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy antoine44 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Bad, really bad, really bad, WordPress is used by millions of people who have no idea how to program, but with this plugin you have to edit PHP… no, no, useless garbage. You can''t display the types of content you''ve created, you can''t do anything but act like an idiot for a while, until you get tired and delete it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Gets the job done

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy letharaddison on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Clean interface, no bloat! Just gets the job done right.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Love this Plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy crafting4websites on February 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The Custom Post Type UI plugin is a wonderful asset to the web builders wishing to add custom post types to their websites! I highly recommend!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hohumtiddleypom on May 13, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The Custom Post Type UI plugin is reliable and is constantly updated. The User Interface means I do not have to write PHP everytime I need to edit a Post Type.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anmomosae on May 10, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I use this plugin whenever I need to register custom post types or custom taxonomies. It is very easy to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sonofbruce on May 6, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Couldn''t live without it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useless after ACF update

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pavel Leontiev (vertopolkalf) on March 7, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Advanced Custom Fields do the same better and have much prettier design

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Mysterious plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Unwanted Life (unwantedlife) on January 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I did not have any real issues with this plugin until it decided to create an additional and new plugin without my knowledge or consent. When I tried to talk to the developer about this, they simply didn''t care or want to get to the bottom of how and why this happened.

    \n\n\n\n

    Got to the bottom of the mystery, it''s just a shame I had to deal with someone that refuses to be help and was rude about it first

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works like a charm

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gregamer on January 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin works as described, does the work well and support is fast. The team deserves 5 stars!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable plugin, quick and easy to register post types , great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jbslettebak on December 20, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve used this plugin for several years without issue. It''s easy to register and view your custom post types and custom taxonomies, and works exactly as it''s supposed to. Support response is very fast and helpful, too.

    \n\n\n\n

    Great all around, keep up the good work.

    \n
    \n
    \n", "changelog": "

    1.18.0 – 2025-07-29

    \n
      \n
    • Added: “template_name” label support.
    • \n
    • Fixed: Typo in “games” Dashicon classname.
    • \n
    • Updated: CPTUI “ad” graphics. Added ThemeSwitcher Pro.
    • \n
    • Updated: touched up some label usage for post type registration screen.
    • \n
    \n

    1.17.3 – 2025-04-21

    \n
      \n
    • Fixed: PHP notices around foreach loops in cptui_post_thumbnail_theme_support().
    • \n
    • Fixed: PHP notices around empty variable values with get code section.
    • \n
    • Fixed: PHP notices around false values with taxonomy listings with post type registration.
    • \n
    • Updated: Confirmed compatibility with WordPress 6.8
    • \n
    \n

    1.17.2 – 2024-11-19

    \n
      \n
    • Fixed: PHP warnings around empty description variables from tools page.
    • \n
    • Updated: Confirmed compatibility with WordPress 6.7
    • \n
    \n

    1.17.1 – 2024-06-27

    \n
      \n
    • Fixed: Missed re-showing of autolabel fill links for js enabled browsers.
    • \n
    \n

    1.17.0 – 2024-06-17

    \n
      \n
    • Added: “sidebars” as a reserved slug for post types.
    • \n
    • Added: Blueprint for trying Custom Post Type UI on wordpress.org before installation.
    • \n
    • Updated: Reworked javascript files to be more modular with the build process.
    • \n
    \n

    1.16.0 – 2024-04-08

    \n
      \n
    • Added: Added a wpml-config.xml file.
    • \n
    • Updated: Added “search_terms” to disallowed taxonomy list.
    • \n
    • Updated: Began converting our javascript away from jQuery dependency.
    • \n
    • Updated: tested up to WP 6.5
    • \n
    \n

    1.15.1 – 2023-11-08

    \n
      \n
    • Fixed: Fixed up some Right-to-Left language styling issues.
    • \n
    • Fixed: Fixing forgot to update about page and some PHP constants for CPTUI version.
    • \n
    \n

    1.15.0 – 2023-11-06

    \n
      \n
    • Added: Checkbox to indicate you intend to migrate a post type into CPTUI in event of matching slugs. Props @ramsesdelr
    • \n
    • Added: “item_trashed” post type label support from WordPress 6.3
    • \n
    • Updated: confirmed compatibility with WordPress 6.4.
    • \n
    • Updated: PHP8 compatibility.
    • \n
    • Updated: Minimum WordPress version to version 6.3, minimum PHP version to 7.4.
    • \n
    \n

    1.14.0 – 2023-08-07

    \n
      \n
    • Added: “Scroll to top” links in CPTUI pages. Props @aslamatwebdevstudios
    • \n
    • Added: Remembers toggled states for CPTUI settings panels. Props @aslamatwebdevstudios and @ramsesdelr
    • \n
    • Updated: Notes about slugs for both post types and taxonomies.
    • \n
    • Updated: Support/FAQ section with more accurate links.
    • \n
    \n", "description": "

    Custom Post Type UI provides an easy-to-use interface for registering and managing custom post types and taxonomies for your website.

    \n

    Custom Post Type UI Extended

    \n

    CPTUI helps create custom content types, but displaying that content can be a whole new challenge. Custom Post Type UI Extended was created to help with displaying your crafted content. View our Layouts page to see available layout examples with Custom Post Type UI Extended.

    \n

    Plugin development

    \n

    Custom Post Type UI development is managed on GitHub, with official releases published on WordPress.org. The GitHub repo can be found at https://github.com/WebDevStudios/custom-post-type-ui. Please use the WordPress.org support tab for potential bugs, issues, or enhancement ideas.

    \n", "screenshots": "
    1. \"Add

      Add new post type screen and tab.

    2. \"Add

      Add new taxonomy screen and tab.

    3. \"Registered

      Registered post types and taxonomies from CPTUI

    4. \"Tools

      Tools screen.

    5. \"Help/support

      Help/support screen.

    ", "installation": "

    Admin Installer via search

    \n
      \n
    1. Visit the Add New plugin screen and search for “custom post type ui”.
    2. \n
    3. Click the “Install Now” button.
    4. \n
    5. Activate the plugin.
    6. \n
    7. Navigate to the “CPTUI” Menu.
    8. \n
    \n

    Admin Installer via zip

    \n
      \n
    1. Visit the Add New plugin screen and click the “Upload Plugin” button.
    2. \n
    3. Click the “Browse…” button and select zip file from your computer.
    4. \n
    5. Click “Install Now” button.
    6. \n
    7. Once done uploading, activate Custom Post Type UI.
    8. \n
    \n

    Manual

    \n
      \n
    1. Upload the Custom Post Type UI folder to the plugins directory in your WordPress installation.
    2. \n
    3. Activate the plugin.
    4. \n
    5. Navigate to the “CPTUI” Menu.
    6. \n
    \n

    That’s it! Now you can easily start creating custom post types and taxonomies in WordPress.

    \n"}, "versions": {"0.8.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.1.zip", "0.8.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.2.zip", "0.8.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.3.zip", "0.8.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.4.zip", "0.8.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.5.zip", "0.9.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.9.0.zip", "0.9.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.9.5.zip", "1.0.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.8.zip", "1.1.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.1.3.zip", "1.2.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.2.4.zip", "1.3.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.5.zip", "1.4.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.4.3.zip", "1.5.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.8.zip", "1.6.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.6.2.zip", "1.7.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.5.zip", "1.8.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.8.2.zip", "1.9.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/custom-post-type-ui.zip", "1.10.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.10.0.zip", "1.10.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.10.1.zip", "1.10.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.10.2.zip", "1.11.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.11.0.zip", "1.11.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.11.2.zip", "1.12.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.12.1.zip", "1.13.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.1.zip", "1.13.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.2.zip", "1.13.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.3.zip", "1.13.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.4.zip", "1.13.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.5.zip", "1.13.6": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.6.zip", "1.13.7": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.7.zip", "1.14.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.14.0.zip", "1.15.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.15.0.zip", "1.15.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.15.1.zip", "1.16.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.16.0.zip", "1.17.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.17.0.zip", "1.17.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.17.1.zip", "1.17.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.17.2.zip", "1.17.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.17.3.zip", "1.18.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.18.0.zip", "0.7.0.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.7.0.0.zip", "0.7.1.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.7.1.0.zip", "0.7.2.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.7.2.0.zip", "0.8.0.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.0.0.zip"}, "downloaded": 20807196, "description": "

    Custom Post Type UI provides an easy-to-use interface for registering and managing custom post types and taxonomies for your website.

    \n

    Custom Post Type UI Extended

    \n

    CPTUI helps create custom content types, but displaying that content can be a whole new challenge. Custom Post Type UI Extended was created to help with displaying your crafted content. View our Layouts page to see available layout examples with Custom Post Type UI Extended.

    \n

    Plugin development

    \n

    Custom Post Type UI development is managed on GitHub, with official releases published on WordPress.org. The GitHub repo can be found at https://github.com/WebDevStudios/custom-post-type-ui. Please use the WordPress.org support tab for potential bugs, issues, or enhancement ideas.

    \n", "donate_link": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056", "num_ratings": 271, "screenshots": {"1": {"src": "https://ps.w.org/custom-post-type-ui/assets/screenshot-1.png?rev=2948753", "caption": "Add new post type screen and tab."}, "2": {"src": "https://ps.w.org/custom-post-type-ui/assets/screenshot-2.png?rev=2948753", "caption": "Add new taxonomy screen and tab."}, "3": {"src": "https://ps.w.org/custom-post-type-ui/assets/screenshot-3.png?rev=2720851", "caption": "Registered post types and taxonomies from CPTUI"}, "4": {"src": "https://ps.w.org/custom-post-type-ui/assets/screenshot-4.png?rev=2720851", "caption": "Tools screen."}, "5": {"src": "https://ps.w.org/custom-post-type-ui/assets/screenshot-5.png?rev=2948753", "caption": "Help/support screen."}}, "support_url": "https://wordpress.org/support/plugin/custom-post-type-ui/", "contributors": {"tw2113": {"avatar": "https://secure.gravatar.com/avatar/956d6d4d83a9fe6c96ae5af588fa4eccf961e003fc1e58e205a4c1a048510e79?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tw2113/", "display_name": "Michael Beckwith"}, "pluginize": {"avatar": "https://secure.gravatar.com/avatar/4caff6913a10a9a9388f212776c6bd73b3a2c4c13df0163bb0acd693f99c9134?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pluginize/", "display_name": "pluginize"}, "williamsba1": {"avatar": "https://secure.gravatar.com/avatar/d48e0f742e0182e0f377c1087a76c42abff4bf25a55a4f25b66c8ffd7fe869ce?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/williamsba1/", "display_name": "Brad Williams"}, "webdevstudios": {"avatar": "https://secure.gravatar.com/avatar/1871eb9cf5592f9aef06a1a2b2065ad6e24a0e5ddd7908c835a1f6d8ef4fa56e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/webdevstudios/", "display_name": "webdevstudios"}}, "last_updated": "2025-07-29 7:39pm GMT", "preview_link": "https://wordpress.org/plugins/custom-post-type-ui/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.18.0.zip", "author_profile": "https://profiles.wordpress.org/webdevstudios/", "business_model": false, "repository_url": "", "upgrade_notice": {"1.14.0 - 2023-08-07": "
      \n
    • Added: "Scroll to top" links in CPTUI pages. Props @aslamatwebdevstudios
    • \n
    • Added: Remembers toggled states for CPTUI settings panels. Props @aslamatwebdevstudios and @ramsesdelr
    • \n
    • Updated: Notes about slugs for both post types and taxonomies.
    • \n
    • Updated: Support/FAQ section with more accurate links.
    • \n
    ", "1.15.0 - 2023-11-06": "
      \n
    • Added: Checkbox to indicate you intend to migrate a post type into CPTUI in event of matching slugs. Props @ramsesdelr
    • \n
    • Added: "item_trashed" post type label support from WordPress 6.3
    • \n
    • Updated: confirmed compatibility with WordPress 6.4.
    • \n
    • Updated: PHP8 compatibility.
    • \n
    • Updated: Minimum WordPress version to version 6.3, minimum PHP version to 7.4.
    • \n
    ", "1.15.1 - 2023-11-08": "
      \n
    • Fixed: Fixed up some Right-to-Left language styling issues.
    • \n
    • Fixed: Fixing forgot to update about page and some PHP constants for CPTUI version.
    • \n
    ", "1.16.0 - 2024-04-08": "
      \n
    • Added: Added a wpml-config.xml file.
    • \n
    • Updated: Added "search_terms" to disallowed taxonomy list.
    • \n
    • Updated: Began converting our javascript away from jQuery dependency.
    • \n
    • Updated: tested up to WP 6.5
    • \n
    ", "1.17.0 - 2024-06-17": "
      \n
    • Added: "sidebars" as a reserved slug for post types.
    • \n
    • Added: Blueprint for trying Custom Post Type UI on wordpress.org before installation.
    • \n
    • Updated: Reworked javascript files to be more modular with the build process.
    • \n
    ", "1.17.1 - 2024-06-27": "
      \n
    • Fixed: Missed re-showing of autolabel fill links for js enabled browsers.
    • \n
    ", "1.17.2 - 2024-11-19": "
      \n
    • Fixed: PHP warnings around empty description variables from tools page.
    • \n
    • Updated: Confirmed compatibility with WordPress 6.7
    • \n
    ", "1.17.3 - 2025-04-21": "
      \n
    • Fixed: PHP notices around foreach loops in cptui_post_thumbnail_theme_support().
    • \n
    • Fixed: PHP notices around empty variable values with get code section.
    • \n
    • Fixed: PHP notices around false values with taxonomy listings with post type registration.
    • \n
    • Updated: Confirmed compatibility with WordPress 6.8
    • \n
    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f297-7226-81be-8748fc4cead7", "name": "Custom Post Type UI", "slug": "custom-post-type-ui", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1753817940, "version": "1.18.0"}, "support_threads": 4, "requires_plugins": [], "short_description": "Admin UI for creating custom content types like post types and taxonomies", "author_block_count": 0, "author_block_rating": 92, "commercial_support_url": "", "support_threads_resolved": 4}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1b02-70fd-bad8-e4c7d179f006', 'did:web:api.aspiredev.org:packages:wp-plugin:disable-comments', 'disable-comments', 'Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]', '

    Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]

    -

    Enable/Disable comments on any WordPress content (Pages, Posts, or Media) to stop spammers. WP-CLI, XML-RPC & REST-API support to stop spam comments.

    -

    More About Plugin ◼️ Documentation ◼️ Support Forum

    -

    -

    Take Global Control Over Your WordPress Site

    -

    Override all comments-related settings throughout your website & manage your comments just the way you want.

    -

    Disable Comments On Posts, Pages & Media

    -

    Choose which posts, pages or media should allow comments from site visitors & configure Disable Comments accordingly

    -

    Disallow Comments On Multi-Site Network

    -

    Have multiple websites? Get rid of irrelevant comments on the entire network using Disable Comments Plugin

    -

    -

    KEY FEATURES OF DISABLE COMMENTS

    -
      -
    • All “Comments” links are hidden from the Admin Menu and Admin Bar.
    • -
    • All comment-related sections (“Recent Comments”, “Discussion” etc.) are hidden from the WordPress Dashboard.
    • -
    • All comment-related widgets are disabled (so your theme cannot use them).
    • -
    • The “Discussion” settings page is hidden.
    • -
    • All comment RSS/Atom feeds are disabled (and requests for these will be redirected to the parent post).
    • -
    • The X-Pingback HTTP header is removed from all pages.
    • -
    • Outgoing pingbacks are disabled.
    • -
    • Stop spam comments entirely from the site with one click.
    • -
    • [New] Delete comments by type.
    • -
    • [New] Disable comments via XML-RPC & REST-API
    • -
    • [New] Fully Multi-site Network supported.
    • -
    • [New] Manage multiple website network-specific subsites or entire network comments in advance.
    • -
    • [New] Exclude Disable Comments Settings based on user roles.
    • -
    -

    -

    Please delete any existing comments on your site before applying this setting, otherwise (depending on your theme) those comments may still be displayed to visitors. You can use the Delete Comments tool to delete any existing comments on your site.

    -

    🌟 WHAT’S NEW WITH DISABLE COMMENTS 2.0

    -

    AMAZING USER FRIENDLY INTERFACE
    -Easily configure your comment-related settings with an amazing and attractive app-like user interface.

    -

    WP-CLI COMMANDS TO DISABLE COMMENTS
    -Use WP-CLI control for comment-related settings to disable comments on posts, pages, attachments or everywhere on your website.

    -

    -

    GET STARTED WITH QUICK SETUP WIZARD
    -Use the quick setup wizard after activating the plugin to instantly configure comment-related settings for your WordPress website.

    -

    DISABLE COMMENTS ON DOCS
    -Instantly disable comments on your documentation pages or WordPress knowledge base with a single click.

    -

    -

    DELETE CERTAIN COMMENT TYPE(S)
    -Permanently delete certain comment types from your WordPress website including WooCommerce product reviews as well as generic comments.

    -

    -

    DISABLE COMMENTS VIA XML-RPC And REST API
    -Block any comments made on your WordPress website via XML-RPC specification and REST API.

    -

    Important note: Use this plugin if you don’t want comments at all on your site (or on certain post types). Don’t use it if you want to selectively disable comments on individual posts – WordPress lets you do that anyway. If you don’t know how to disable comments on individual posts, there are instructions in the FAQ.

    -

    If you come across any bugs or have suggestions, please use the plugin support forum. I can’t fix it if I don’t know it’s broken! Please check the FAQ for common issues.

    -

    Want to contribute? Here’s the GitHub development repository.

    -

    A must-use version of the plugin is also available.

    -

    Advanced Configuration

    -

    Some of the plugin’s behavior can be modified by site administrators and plugin/theme developers through code:

    -
      -
    • -

      Define DISABLE_COMMENTS_REMOVE_COMMENTS_TEMPLATE and set it to false to prevent the plugin from replacing the theme’s comment template with an empty one.

      -
    • -
    • -

      Define DISABLE_COMMENTS_ALLOW_DISCUSSION_SETTINGS and set it to true to prevent the plugin from hiding the Discussion settings page.

      -
    • -
    -

    These definitions can be made either in your main wp-config.php or in your theme’s functions.php file.

    -

    THIS PLUGIN IS NOW MAINTAINED BY THE TEAM WPDeveloper.

    -

    💙 LOVED DISABLE COMMENTS?

    - -

    🔥 GET FREEBIES FOR YOUR WORDPRESS SITE

    -

    Consider checking out our other WordPress solutions & boost your WordPress website:

    -

    🔝 Essential Addons For Elementor: Most popular Elementor addons with 2 million+ happy users & 95+ widgets & ready blocks

    -

    🔔 NotificationX – Best Social Proof & FOMO Marketing Solution to increase conversion rates.

    -

    🔗 BetterLinks: Latest best WordPress link management plugin for link shortening, tracking & analyzing.

    -

    📄 EmbedPress: EmbedPress lets you embed anything including videos, images, posts, audio, maps and upload PDF, DOC, PPT etc.

    -

    Templately: 6000+ Free templates library for Elementor & Gutenberg along with the cloud collaboration for WordPress.

    -

    📚 BetterDocs: Best Documentation & Knowledge Base Plugin for WordPress reduce manual support tickets & improve user experience.

    -

    SchedulePress: Advanced editorial calendar with WordPress Post Scheduling, Social Sharing, Missed scheduled alerts, and more.

    -

    Flexia: Most lightweight, customizable & multi purpose theme for WordPress.

    -

    Visit WPDeveloper to learn more about how to do better in WordPress with Help Tutorial, Tips & Tricks.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]", "slug": "disable-comments", "tags": {"stop-spam": "stop spam", "delete-comments": "delete comments", "remove-comments": "remove comments", "spam-protection": "spam protection", "disable-comments": "disable comments"}, "added": "2011-05-27", "icons": {"1x": "https://ps.w.org/disable-comments/assets/icon-128x128.png?rev=2509854", "2x": "https://ps.w.org/disable-comments/assets/icon-256x256.png?rev=2509854"}, "author": "WPDeveloper", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/disable-comments/assets/banner-772x250.png?rev=2509854", "high": "https://ps.w.org/disable-comments/assets/banner-1544x500.png?rev=2509854"}, "ratings": {"1": 17, "2": 1, "3": 3, "4": 4, "5": 250}, "version": "2.5.3", "homepage": "https://wordpress.org/plugins/disable-comments/", "requires": "5.0", "sections": {"faq": "\n
    \nNothing happens after I disable comments on all posts – comment forms still appear when I view my posts.\n\n

    \n

    This is because your theme is not checking the comment status of posts in the correct way.

    \n

    You may like to point your theme’s author to this explanation of what they are doing wrong, and how to fix it.

    \n

    \n
    \nHow can I remove the text that says “comments are closed” at the bottom of articles where comments are disabled?\n\n

    \n

    The plugin tries its very best to hide this (and any other comment-related) messages.

    \n

    If you still see the message, then it means your theme is overriding this behaviour, and you will have to edit its files manually to remove it. Two common approaches are to either delete or comment out the relevant lines in wp-content/your-theme/comments.php, or to add a declaration to wp-content/your-theme/style.css that hides the message from your visitors. In either case, make you you know what you are doing!

    \n

    \n
    \nI only want to disable comments on certain posts, not globally. What do I do?\n\n

    \n

    Go to the edit page for the post you want to disable comments on. Scroll down to the “Discussion” box, where you will find the comment options for that post. If you don’t see a “Discussion” box, then click on “Screen Options” at the top of your screen, and make sure the “Discussion” checkbox is checked.

    \n

    You can also bulk-edit the comment status of multiple posts from the posts screen.

    \n

    \n
    \nI want to delete comments from my database. What do I do?\n\n

    \n

    Go to the tools page for the Disable Comments plugin and utlize the Delete Comments tool to delete all comments or according to the specified post types from your database.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Timesaver!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Robert (rwldz) on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    For me it''s more of a one-use-thing, hopefully I''ll avoid homepages with a gazillion spam comments going forward. Very clear and easy to understand plugin. Great choices for what and where to turn off or remove comments. I''ll recommend this plugin to anyone working with wordpress. Also, developer seem to listen to critique as I was reading the previous reviews.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Finally No More Spam!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fengyuan7558 (fengyuandasdsadas) on September 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It completely disables comments across posts, pages, media, or even an entire multisite network.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    * Swiftly resolved! * Added advertising into the post editor.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tumshie on May 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin functions well. But. Added intrusive advertising for another plugin into the post editor. That is a hard no from me - so removing the plugin from my client''s websites.

    \n\n\n\n

    -=-=-=Update=-=-=-

    \n\n\n\n

    Super pleased to say the plugin author has resolved the issue quickly, removing the advertising.

    \n\n\n\n

    Edited to a 5 star from me!

    \n\n\n\n

    Plugin functions well and the developers are friendly and responsive.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    [Corrected]Bloats the admin with ads...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy schwdim on May 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Was using this plugin on pretty much every client''s website

    All of the sudden it started adding ads for another plugin in the admin, as well as the page editor !!

    I''m removing it everywhere. This is not ok.

    EDIT:

    Thank you for sparing me hours of works. :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Lifesaver for managing comments

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy grome32 on October 31, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin has been a lifesaver for managing comments! The spam filter is fantastic, and the threaded comment structure adds great interactivity. However, sometimes legitimate comments get flagged as spam. It would be great if the plugin could learn over time which types of comments are safe.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Disable comments

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy partiturebaroccheclassiche on August 1, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks to Santos for the precious help

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    WORKS PERFECTLY ! Thank you !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy clitopwebsite on February 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WORKS PERFECTLY ! Thank you !

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It works

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anonymous User (anonymized_21100648) on October 2, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It works, very good.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This plugin makes the task of stopping and removing comments SUPER easy!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Website Dude (modernscarface) on August 26, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great job on this plugin! LOVE it! A MUST-HAVE

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin, been using it for years

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Devomo (devfirst) on June 19, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does its job nicely, support is excellent, I reported an issue which was fixed very quickly.

    \n\n\n\n

    I do have to say I would have liked the plugin to stay more minimal, as was the case before v2.0. It looks a bit heavy for what it''s doing right now.

    \n
    \n
    \n", "changelog": "

    The format is based on Keep a Changelog
    \nand this project adheres to Semantic Versioning.
    \nThis will be maintained from August 19, 2020 – @asif2bd

    \n

    [2.5.3] – 2025-09-14

    \n
      \n
    • Enhancement: Introduced a function to retrieve settings details (#f16cee5)
    • \n
    \n

    [2.5.2] – 2025-05-20

    \n
      \n
    • Fixed: Issue where post types were not being selected in the “On Specific Post Types” section of the plugin settings
    • \n
    \n

    [2.5.1] – 2025-05-15

    \n
      \n
    • Few minor bug fixes and improvements
    • \n
    \n

    [2.5.0] – 2025-05-15

    \n
      \n
    • Added: Accessibility support to the plugin settings page
    • \n
    • Various minor improvements and enhancements
    • \n
    \n

    [2.4.7] – 2025-01-27

    \n
      \n
    • Fixed: Errors reported by Plugin Check (PCP)
    • \n
    • Few minor bug fixes and improvements
    • \n
    \n

    [2.4.6] – 2024-03-25

    \n
      \n
    • Added: WordPress 6.5 Compatibility
    • \n
    \n

    [2.4.5] – 2023-08-30

    \n
      \n
    • Minor bug fixes and improvements.
    • \n
    \n

    [2.4.4] – 2023-06-19

    \n
      \n
    • Fixed: PHP 8.2 deprecated issue fixed while using WP-CLI.
    • \n
    • Few minor bug fixes and improvements.
    • \n
    \n

    [2.4.3] – 2023-01-12

    \n
      \n
    • Added: PHP 8.2 Compatibility
    • \n
    \n

    [2.4.2] – 2022-09-18

    \n
      \n
    • Improved sanitization.
    • \n
    \n

    [2.4.1] – 2022-08-10

    \n
      \n
    • Improvement: Localized missing strings in plugin.
    • \n
    • Improvement: Included the fonts in plugin distribution.
    • \n
    \n

    [2.4.0] – 2022-07-27

    \n
      \n
    • New Feature: Exclude Disable Comments settings based on user roles.
    • \n
    • Few minor bug fix and improvement.
    • \n
    \n

    [2.3.6] – 2022-06-05

    \n
      \n
    • Fixed: JavaScript error in Gutenberg editor.
    • \n
    \n

    [2.3.5] – 2022-04-27

    \n
      \n
    • Added: More WP-CLI commands.
    • \n
    • Few minor bug fix and improvement.
    • \n
    \n

    [2.3.4] – 2022-03-28

    \n
      \n
    • Fixed: PHP Warning in Multisite Network.
    • \n
    \n

    [2.3.3] – 2022-01-25

    \n
      \n
    • Added: WordPress 5.9 compatibility added.
    • \n
    \n

    [2.3.2] – 2021-12-20

    \n
      \n
    • Added: Configure Disable Avatar settings from the main network of Multisite Network.
    • \n
    • Fixed: Disable Comments via REST API toggle mismatch issue.
    • \n
    \n

    [2.3.1] – 2021-12-14

    \n
      \n
    • Added: You can enable or disable Avatar from Disable Comments settings.
    • \n
    \n

    [2.3.0] – 2021-12-14

    \n
      \n
    • New Feature: Delete Spam Comments.
    • \n
    • Updated deprecated jQuery library.
    • \n
    • Improvement: Disable Gravatar request.
    • \n
    • Few minor bug fixes and improvement.
    • \n
    \n

    [2.2.4] – 2021-11-09

    \n
      \n
    • Added: Ajax pagination in Subsite area (Multisite network).
    • \n
    • Added: Ajax search in Subsite area (Multisite network).
    • \n
    • Added: “Disable Comments” navigation added inside Comments menu.
    • \n
    • Few minor bug fixes and improvement.
    • \n
    \n

    [2.2.3] – 2021-10-25

    \n
      \n
    • Few minor bug fixes and improvement.
    • \n
    \n

    [2.2.2] – 2021-10-05

    \n
      \n
    • Added: “Select All” checkbox for subsites selection in a multisite network.
    • \n
    • Few minor bug fixes and improvement.
    • \n
    \n

    [2.2.1] – 2021-09-26

    \n
      \n
    • Fixed: 100+ subsites limit issue in multisite network
    • \n
    \n

    [2.2.0] – 2021-09-22

    \n
      \n
    • New Feature: Configure Disable Comments on Subsites from Main Network in Multisite Network.
    • \n
    • Improvement: UX Improvement.
    • \n
    • Few minor bug fix and improvement.
    • \n
    \n

    [2.1.2] – 2021-06-20

    \n
      \n
    • Improvement: Fix for Attempt to read property “post_type” on null
    • \n
    \n

    [2.1.1] – 2021-04-06

    \n
      \n
    • Improvement: Compatible with WordPress 5.7
    • \n
    • Few minor bug fix and improvement
    • \n
    \n

    [2.1.0] – 2021-02-08

    \n
      \n
    • New Feature: Site wise settings in Multisite Network
    • \n
    • Added: Some strings localization
    • \n
    • Fixed: Delete Comments in Multisite
    • \n
    • Few minor bug fix and improvement
    • \n
    \n

    [2.0.2] – 2020-12-01

    \n
      \n
    • Removed: Quick Setup Wizard
    • \n
    • Improved: Redirection settings page after activation.
    • \n
    • Fixed: Text-Domain Issue.
    • \n
    \n

    [2.0.1] – 2020-11-28

    \n
      \n
    • Bug Fix: Settings page URL issue fixed from plugins page.
    • \n
    • Improvement: Quick Setup Wizard instructions.
    • \n
    \n

    [2.0.0] – 2020-11-28

    \n
      \n
    • Improved UI for Settings page
    • \n
    • New feature: Manage Disable Comments settings with WP-CLI
    • \n
    • New feature: Quick Setup Wizard
    • \n
    • New feature: Disable Comments via REST-API
    • \n
    • New feature: Disable Comments via XML-RPC
    • \n
    \n

    [1.11.0] – 2020-08-22

    \n
      \n
    • Introducing Delete Comment by Type – Contribution by garretthyder
    • \n
    • PHP 7.4 Tested
    • \n
    • WordPress 5.5 Compatible Tested
    • \n
    \n

    [1.10.3] – 2020-07-29

    \n
      \n
    • Minor fix – changelog backported.
    • \n
    \n

    1.10.0

    \n
      \n
    • Disable “recent comments” Gutenberg block.
    • \n
    \n

    1.9.0

    \n
      \n
    • Fix compatibility with WordPress 5.0 and above.
    • \n
    • Remove deprecated “persistent mode” feature.
    • \n
    \n

    1.8.0

    \n
      \n
    • Added DISABLE_COMMENTS_ALLOW_DISCUSSION_SETTINGS configuration.
    • \n
    \n

    1.7.1

    \n
      \n
    • Small enhancements to hiding comment-related functionality in the admin.
    • \n
    \n

    1.7

    \n
      \n
    • Dropped logic to try and hide the comments link from the Meta widget. Administrators should manually add styling to hide this link, or replace the Meta widget with an alternative.
    • \n
    • Removed the disable_comments_allow_persistent_mode filter. Define DISABLE_COMMENTS_ALLOW_PERSISTENT_MODE instead.
    • \n
    \n

    1.6

    \n
      \n
    • Added a tool for deleting comments in bulk.
    • \n
    \n

    1.5.2

    \n
      \n
    • Fix Javascript errors when the Meta widget is enabled.
    • \n
    • Hide comments link from the Welcome panel.
    • \n
    \n

    1.5.1

    \n
      \n
    • Hide existing comments if there are any.
    • \n
    • Filter the comments link in the Meta widget if it is enabled.
    • \n
    \n

    1.5

    \n
      \n
    • Remove the comments feed link from the head in WP 4.4 and higher.
    • \n
    \n

    1.4.2

    \n
      \n
    • Delay loading of translation text domain until all plugins are loaded. This allows plugins to modify translations.
    • \n
    \n

    1.4

    \n
      \n
    • Hide the troublesome “persistent mode” option for all sites where it is not in use. This option will be removed in a future release.
    • \n
    \n

    1.3.2

    \n
      \n
    • Compatibility updates and code refactoring for WordPress 4.3
    • \n
    • Adding a few new translations
    • \n
    \n

    1.3.1

    \n
      \n
    • Change the behaviour for comment feed requests. This removes a potential security issue.
    • \n
    \n

    1.3

    \n
      \n
    • Move persistent mode filter into a define.
    • \n
    • Add an advanced option to show the theme’s comment template even when comments are disabled.
    • \n
    \n

    1.2

    \n
      \n
    • Allow network administrators to disable comments on custom post types across the whole network.
    • \n
    \n

    1.1.1

    \n
      \n
    • Fix PHP warning when active_sitewide_plugins option doesn’t contain expected data type.
    • \n
    \n

    1.1

    \n
      \n
    • Attempt to hide the comments template (“Comments are closed”) whenever comments are disabled.
    • \n
    \n

    1.0.4

    \n
      \n
    • Fix CSRF vulnerability in the admin. Thanks to dxw for responsible disclosure.
    • \n
    \n

    1.0.3

    \n
      \n
    • Compatibility fix for WordPress 3.8
    • \n
    \n

    1.0.2

    \n
      \n
    • Disable comment-reply script for themes that don’t check comment status properly.
    • \n
    • Add French translation
    • \n
    \n

    1.0.1

    \n
      \n
    • Fix issue with settings persistence in single-site installations.
    • \n
    \n

    1.0

    \n
      \n
    • Prevent theme comments template from being displayed when comments are disabled everywhere.
    • \n
    • Prevent direct access to comment admin pages when comments are disabled everywhere.
    • \n
    \n

    0.9.2

    \n
      \n
    • Make persistent mode option filter available all the time.
    • \n
    • Fix redirection for feed requests
    • \n
    • Fix admin bar filtering in WP 3.6
    • \n
    \n

    0.9.1

    \n
      \n
    • Short life in the wild.
    • \n
    \n

    0.9

    \n
      \n
    • Added gettext support and German translation.
    • \n
    • Added links to GitHub development repo.
    • \n
    • Allow network administrators to prevent the use of persistent mode.
    • \n
    \n

    0.8

    \n
      \n
    • Remove X-Pingback header when comments are completely disabled.
    • \n
    • Disable comment feeds when comment are completely disabled.
    • \n
    • Simplified settings page.
    • \n
    \n

    0.7

    \n
      \n
    • Now supports Network Activation – disable comments on your entire multi-site network.
    • \n
    • Simplified settings page.
    • \n
    \n

    0.6

    \n
      \n
    • Add “persistent mode” to deal with themes that don’t use filterable comment status checking.
    • \n
    \n

    0.5

    \n
      \n
    • Allow temporary disabling of comments site-wide by ensuring that original comment statuses are not overwritten when a post is edited.
    • \n
    \n

    0.4

    \n
      \n
    • Added the option to disable the Recent Comments template widget.
    • \n
    • Bugfix: don’t show admin messages to users who don’t can’t do anything about them.
    • \n
    \n

    0.3.5

    \n
      \n
    • Bugfix: Other admin menu items could inadvertently be hidden when ‘Remove the “Comments” link from the Admin Menu’ was selected.
    • \n
    \n

    0.3.4

    \n
      \n
    • Bugfix: A typo on the settings page meant that the submit button went missing on some browsers. Thanks to Wojtek for reporting this.
    • \n
    \n

    0.3.3

    \n
      \n
    • Bugfix: Custom post types which don’t support comments shouldn’t appear on the settings page
    • \n
    • Add warning notice to Discussion settings when comments are disabled
    • \n
    \n

    0.3.2

    \n
      \n
    • Bugfix: Some dashboard items were incorrectly hidden in multisite
    • \n
    \n

    0.3.1

    \n
      \n
    • Compatibility fix for WordPress 3.3
    • \n
    \n

    0.3

    \n
      \n
    • Added the ability to remove links to comment admin pages from the Dashboard, Admin Bar and Admin Menu
    • \n
    \n

    0.2.1

    \n
      \n
    • Usability improvements to help first-time users configure the plugin.
    • \n
    \n

    0.2

    \n
      \n
    • Bugfix: Make sure pingbacks are also prevented when comments are disabled.
    • \n
    \n", "description": "

    Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]

    \n

    Enable/Disable comments on any WordPress content (Pages, Posts, or Media) to stop spammers. WP-CLI, XML-RPC & REST-API support to stop spam comments.

    \n

    More About Plugin ◼️ Documentation ◼️ Support Forum

    \n

    \n

    Take Global Control Over Your WordPress Site

    \n

    Override all comments-related settings throughout your website & manage your comments just the way you want.

    \n

    Disable Comments On Posts, Pages & Media

    \n

    Choose which posts, pages or media should allow comments from site visitors & configure Disable Comments accordingly

    \n

    Disallow Comments On Multi-Site Network

    \n

    Have multiple websites? Get rid of irrelevant comments on the entire network using Disable Comments Plugin

    \n

    \n

    KEY FEATURES OF DISABLE COMMENTS

    \n
      \n
    • All “Comments” links are hidden from the Admin Menu and Admin Bar.
    • \n
    • All comment-related sections (“Recent Comments”, “Discussion” etc.) are hidden from the WordPress Dashboard.
    • \n
    • All comment-related widgets are disabled (so your theme cannot use them).
    • \n
    • The “Discussion” settings page is hidden.
    • \n
    • All comment RSS/Atom feeds are disabled (and requests for these will be redirected to the parent post).
    • \n
    • The X-Pingback HTTP header is removed from all pages.
    • \n
    • Outgoing pingbacks are disabled.
    • \n
    • Stop spam comments entirely from the site with one click.
    • \n
    • [New] Delete comments by type.
    • \n
    • [New] Disable comments via XML-RPC & REST-API
    • \n
    • [New] Fully Multi-site Network supported.
    • \n
    • [New] Manage multiple website network-specific subsites or entire network comments in advance.
    • \n
    • [New] Exclude Disable Comments Settings based on user roles.
    • \n
    \n

    \n

    Please delete any existing comments on your site before applying this setting, otherwise (depending on your theme) those comments may still be displayed to visitors. You can use the Delete Comments tool to delete any existing comments on your site.

    \n

    🌟 WHAT’S NEW WITH DISABLE COMMENTS 2.0

    \n

    AMAZING USER FRIENDLY INTERFACE
    \nEasily configure your comment-related settings with an amazing and attractive app-like user interface.

    \n

    WP-CLI COMMANDS TO DISABLE COMMENTS
    \nUse WP-CLI control for comment-related settings to disable comments on posts, pages, attachments or everywhere on your website.

    \n

    \n

    GET STARTED WITH QUICK SETUP WIZARD
    \nUse the quick setup wizard after activating the plugin to instantly configure comment-related settings for your WordPress website.

    \n

    DISABLE COMMENTS ON DOCS
    \nInstantly disable comments on your documentation pages or WordPress knowledge base with a single click.

    \n

    \n

    DELETE CERTAIN COMMENT TYPE(S)
    \nPermanently delete certain comment types from your WordPress website including WooCommerce product reviews as well as generic comments.

    \n

    \n

    DISABLE COMMENTS VIA XML-RPC And REST API
    \nBlock any comments made on your WordPress website via XML-RPC specification and REST API.

    \n

    Important note: Use this plugin if you don’t want comments at all on your site (or on certain post types). Don’t use it if you want to selectively disable comments on individual posts – WordPress lets you do that anyway. If you don’t know how to disable comments on individual posts, there are instructions in the FAQ.

    \n

    If you come across any bugs or have suggestions, please use the plugin support forum. I can’t fix it if I don’t know it’s broken! Please check the FAQ for common issues.

    \n

    Want to contribute? Here’s the GitHub development repository.

    \n

    A must-use version of the plugin is also available.

    \n

    Advanced Configuration

    \n

    Some of the plugin’s behavior can be modified by site administrators and plugin/theme developers through code:

    \n
      \n
    • \n

      Define DISABLE_COMMENTS_REMOVE_COMMENTS_TEMPLATE and set it to false to prevent the plugin from replacing the theme’s comment template with an empty one.

      \n
    • \n
    • \n

      Define DISABLE_COMMENTS_ALLOW_DISCUSSION_SETTINGS and set it to true to prevent the plugin from hiding the Discussion settings page.

      \n
    • \n
    \n

    These definitions can be made either in your main wp-config.php or in your theme’s functions.php file.

    \n

    THIS PLUGIN IS NOW MAINTAINED BY THE TEAM WPDeveloper.

    \n

    💙 LOVED DISABLE COMMENTS?

    \n\n

    🔥 GET FREEBIES FOR YOUR WORDPRESS SITE

    \n

    Consider checking out our other WordPress solutions & boost your WordPress website:

    \n

    🔝 Essential Addons For Elementor: Most popular Elementor addons with 2 million+ happy users & 95+ widgets & ready blocks

    \n

    🔔 NotificationX – Best Social Proof & FOMO Marketing Solution to increase conversion rates.

    \n

    🔗 BetterLinks: Latest best WordPress link management plugin for link shortening, tracking & analyzing.

    \n

    📄 EmbedPress: EmbedPress lets you embed anything including videos, images, posts, audio, maps and upload PDF, DOC, PPT etc.

    \n

    Templately: 6000+ Free templates library for Elementor & Gutenberg along with the cloud collaboration for WordPress.

    \n

    📚 BetterDocs: Best Documentation & Knowledge Base Plugin for WordPress reduce manual support tickets & improve user experience.

    \n

    SchedulePress: Advanced editorial calendar with WordPress Post Scheduling, Social Sharing, Missed scheduled alerts, and more.

    \n

    Flexia: Most lightweight, customizable & multi purpose theme for WordPress.

    \n

    Visit WPDeveloper to learn more about how to do better in WordPress with Help Tutorial, Tips & Tricks.

    \n", "screenshots": "
    1. \"Setting

      Setting Screen for Disable Comments

    2. \"Delete

      Delete Comments under Tools menu.

    3. \"Multisite

      Multisite Network support

    ", "installation": "

    Modern Way:

    \n
      \n
    1. Go to the WordPress Dashboard “Add New Plugin” section.
    2. \n
    3. Search For “Disable Comments”.
    4. \n
    5. Install, then Activate it.
    6. \n
    7. The plugin settings can be accessed via the ‘Settings’ menu in the administration area (either your site administration for single-site installs, or your network administration for network installs).
    8. \n
    \n

    Old Way:

    \n
      \n
    1. Upload the plugin folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. The plugin settings can be accessed via the ‘Settings’ menu in the administration area (either your site administration for single-site installs, or your network administration for network installs).
    6. \n
    \n"}, "versions": {"1.5": "https://downloads.wordpress.org/plugin/disable-comments.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/disable-comments.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/disable-comments.1.7.zip", "1.1.1": "https://downloads.wordpress.org/plugin/disable-comments.1.1.1.zip", "1.5.1": "https://downloads.wordpress.org/plugin/disable-comments.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/disable-comments.1.5.2.zip", "1.7.1": "https://downloads.wordpress.org/plugin/disable-comments.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/disable-comments.1.8.0.zip", "1.9.0": "https://downloads.wordpress.org/plugin/disable-comments.1.9.0.zip", "2.0.0": "https://downloads.wordpress.org/plugin/disable-comments.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/disable-comments.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/disable-comments.2.0.2.zip", "2.1.0": "https://downloads.wordpress.org/plugin/disable-comments.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/disable-comments.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/disable-comments.2.1.2.zip", "2.2.0": "https://downloads.wordpress.org/plugin/disable-comments.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/disable-comments.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/disable-comments.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/disable-comments.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/disable-comments.2.2.4.zip", "2.3.0": "https://downloads.wordpress.org/plugin/disable-comments.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/disable-comments.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/disable-comments.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/disable-comments.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/disable-comments.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/disable-comments.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/disable-comments.2.3.6.zip", "2.4.0": "https://downloads.wordpress.org/plugin/disable-comments.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/disable-comments.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/disable-comments.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/disable-comments.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/disable-comments.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/disable-comments.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/disable-comments.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/plugin/disable-comments.2.4.7.zip", "2.5.0": "https://downloads.wordpress.org/plugin/disable-comments.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/disable-comments.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/disable-comments.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/disable-comments.2.5.3.zip", "trunk": "https://downloads.wordpress.org/plugin/disable-comments.zip", "1.10.0": "https://downloads.wordpress.org/plugin/disable-comments.1.10.0.zip", "1.10.3": "https://downloads.wordpress.org/plugin/disable-comments.1.10.3.zip", "1.11.0": "https://downloads.wordpress.org/plugin/disable-comments.1.11.0.zip"}, "downloaded": 28959756, "description": "

    Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]

    \n

    Enable/Disable comments on any WordPress content (Pages, Posts, or Media) to stop spammers. WP-CLI, XML-RPC & REST-API support to stop spam comments.

    \n

    More About Plugin ◼️ Documentation ◼️ Support Forum

    \n

    \n

    Take Global Control Over Your WordPress Site

    \n

    Override all comments-related settings throughout your website & manage your comments just the way you want.

    \n

    Disable Comments On Posts, Pages & Media

    \n

    Choose which posts, pages or media should allow comments from site visitors & configure Disable Comments accordingly

    \n

    Disallow Comments On Multi-Site Network

    \n

    Have multiple websites? Get rid of irrelevant comments on the entire network using Disable Comments Plugin

    \n

    \n

    KEY FEATURES OF DISABLE COMMENTS

    \n
      \n
    • All “Comments” links are hidden from the Admin Menu and Admin Bar.
    • \n
    • All comment-related sections (“Recent Comments”, “Discussion” etc.) are hidden from the WordPress Dashboard.
    • \n
    • All comment-related widgets are disabled (so your theme cannot use them).
    • \n
    • The “Discussion” settings page is hidden.
    • \n
    • All comment RSS/Atom feeds are disabled (and requests for these will be redirected to the parent post).
    • \n
    • The X-Pingback HTTP header is removed from all pages.
    • \n
    • Outgoing pingbacks are disabled.
    • \n
    • Stop spam comments entirely from the site with one click.
    • \n
    • [New] Delete comments by type.
    • \n
    • [New] Disable comments via XML-RPC & REST-API
    • \n
    • [New] Fully Multi-site Network supported.
    • \n
    • [New] Manage multiple website network-specific subsites or entire network comments in advance.
    • \n
    • [New] Exclude Disable Comments Settings based on user roles.
    • \n
    \n

    \n

    Please delete any existing comments on your site before applying this setting, otherwise (depending on your theme) those comments may still be displayed to visitors. You can use the Delete Comments tool to delete any existing comments on your site.

    \n

    🌟 WHAT’S NEW WITH DISABLE COMMENTS 2.0

    \n

    AMAZING USER FRIENDLY INTERFACE
    \nEasily configure your comment-related settings with an amazing and attractive app-like user interface.

    \n

    WP-CLI COMMANDS TO DISABLE COMMENTS
    \nUse WP-CLI control for comment-related settings to disable comments on posts, pages, attachments or everywhere on your website.

    \n

    \n

    GET STARTED WITH QUICK SETUP WIZARD
    \nUse the quick setup wizard after activating the plugin to instantly configure comment-related settings for your WordPress website.

    \n

    DISABLE COMMENTS ON DOCS
    \nInstantly disable comments on your documentation pages or WordPress knowledge base with a single click.

    \n

    \n

    DELETE CERTAIN COMMENT TYPE(S)
    \nPermanently delete certain comment types from your WordPress website including WooCommerce product reviews as well as generic comments.

    \n

    \n

    DISABLE COMMENTS VIA XML-RPC And REST API
    \nBlock any comments made on your WordPress website via XML-RPC specification and REST API.

    \n

    Important note: Use this plugin if you don’t want comments at all on your site (or on certain post types). Don’t use it if you want to selectively disable comments on individual posts – WordPress lets you do that anyway. If you don’t know how to disable comments on individual posts, there are instructions in the FAQ.

    \n

    If you come across any bugs or have suggestions, please use the plugin support forum. I can’t fix it if I don’t know it’s broken! Please check the FAQ for common issues.

    \n

    Want to contribute? Here’s the GitHub development repository.

    \n

    A must-use version of the plugin is also available.

    \n

    Advanced Configuration

    \n

    Some of the plugin’s behavior can be modified by site administrators and plugin/theme developers through code:

    \n
      \n
    • \n

      Define DISABLE_COMMENTS_REMOVE_COMMENTS_TEMPLATE and set it to false to prevent the plugin from replacing the theme’s comment template with an empty one.

      \n
    • \n
    • \n

      Define DISABLE_COMMENTS_ALLOW_DISCUSSION_SETTINGS and set it to true to prevent the plugin from hiding the Discussion settings page.

      \n
    • \n
    \n

    These definitions can be made either in your main wp-config.php or in your theme’s functions.php file.

    \n

    THIS PLUGIN IS NOW MAINTAINED BY THE TEAM WPDeveloper.

    \n

    💙 LOVED DISABLE COMMENTS?

    \n\n

    🔥 GET FREEBIES FOR YOUR WORDPRESS SITE

    \n

    Consider checking out our other WordPress solutions & boost your WordPress website:

    \n

    🔝 Essential Addons For Elementor: Most popular Elementor addons with 2 million+ happy users & 95+ widgets & ready blocks

    \n

    🔔 NotificationX – Best Social Proof & FOMO Marketing Solution to increase conversion rates.

    \n

    🔗 BetterLinks: Latest best WordPress link management plugin for link shortening, tracking & analyzing.

    \n

    📄 EmbedPress: EmbedPress lets you embed anything including videos, images, posts, audio, maps and upload PDF, DOC, PPT etc.

    \n

    Templately: 6000+ Free templates library for Elementor & Gutenberg along with the cloud collaboration for WordPress.

    \n

    📚 BetterDocs: Best Documentation & Knowledge Base Plugin for WordPress reduce manual support tickets & improve user experience.

    \n

    SchedulePress: Advanced editorial calendar with WordPress Post Scheduling, Social Sharing, Missed scheduled alerts, and more.

    \n

    Flexia: Most lightweight, customizable & multi purpose theme for WordPress.

    \n

    Visit WPDeveloper to learn more about how to do better in WordPress with Help Tutorial, Tips & Tricks.

    \n", "donate_link": "https://wpdeveloper.com/", "num_ratings": 275, "screenshots": {"1": {"src": "https://ps.w.org/disable-comments/assets/screenshot-1.jpg?rev=2509854", "caption": "Setting Screen for Disable Comments"}, "2": {"src": "https://ps.w.org/disable-comments/assets/screenshot-2.jpg?rev=2509854", "caption": "Delete Comments under Tools menu."}, "3": {"src": "https://ps.w.org/disable-comments/assets/screenshot-3.jpg?rev=2700436", "caption": "Multisite Network support"}}, "support_url": "https://wordpress.org/support/plugin/disable-comments/", "contributors": {"asif2bd": {"avatar": "https://secure.gravatar.com/avatar/751c37e897d7e5350a12329d48cb0a166c77f87fe00c47b9289e70417459fb92?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/asif2bd/", "display_name": "M Asif Rahman"}, "wpdevteam": {"avatar": "https://secure.gravatar.com/avatar/78597fc6182399eaab6afcc3ac4324f4c4234266e2ec607a8770c57241301903?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpdevteam/", "display_name": "WPDeveloper"}, "priyomukul": {"avatar": "https://secure.gravatar.com/avatar/fb8f3134e4dbbcb540ce412931c8fe4108927714d7e00cf34332dc48d8bf4389?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/priyomukul/", "display_name": "PriyoMukul"}, "solarissmoke": {"avatar": "https://secure.gravatar.com/avatar/fb6525bdf0b9bc628522d50e4b3dbb0e790500c154b0de255cf133619843efd0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/solarissmoke/", "display_name": "Samir Shah"}, "re_enter_rupok": {"avatar": "https://secure.gravatar.com/avatar/a39cec9005b0dca1bdfd5c6f884f6da77d28f893d60274ca947586b638ab970f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/re_enter_rupok/", "display_name": "Rupok"}, "alimuzzamanalim": {"avatar": "https://secure.gravatar.com/avatar/450ce66f0232ce15aada15b4ebbb8d86a717dfa604eeb18325c8ddbfa814b94b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alimuzzamanalim/", "display_name": "Alimuzzaman Alim"}, "garrett-eclipse": {"avatar": "https://secure.gravatar.com/avatar/e8084b0a02eed1df748f38811d0989e5f345250fb17a61e46b3304e7a85278a7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/garrett-eclipse/", "display_name": "Garrett Hyder"}}, "last_updated": "2025-09-14 12:12pm GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/disable-comments.2.5.3.zip", "author_profile": "https://profiles.wordpress.org/wpdevteam/", "business_model": "community", "repository_url": "https://github.com/WPDevelopers/disable-comments", "upgrade_notice": {"": "

    [Minor Update] Few minor bug fixes and improvement.

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f29b-71d0-8f2a-3e43e971553d", "name": "Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]", "slug": "disable-comments", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1757851920, "version": "2.5.3"}, "support_threads": 2, "requires_plugins": [], "short_description": "Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.", "author_block_count": "21", "author_block_rating": 86.53061224489801, "commercial_support_url": "", "support_threads_resolved": 2}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1b12-7033-b992-42514bca3d9e', 'did:web:api.aspiredev.org:packages:wp-plugin:duplicate-page', 'duplicate-page', 'Duplicate Page', '

    Duplicate Posts, Pages and Custom Posts easily using single click. You can duplicate your pages, posts and custom post by just one click and it will save as your selected options (draft, private, public, pending).

    -

    Key Features in Duplicate Page Pro Editions

    -
      -
    • User Roles: Allow User Roles To access Duplicate Page.
    • -
    • Post Types: Filter to show Duplicate Page link in post types.
    • -
    • Clone Link Location: Option where to show clone link.
    • -
    • Status: Option to select Duplicate Posts Status.
    • -
    • Redirection: Option to Redirect after click on clone link..
    • -
    • Clone Link Title: Option to change Duplicate Post Link Title.
    • -
    • Post Prefix: Option to add Post Prefix.
    • -
    • Post Suffix: Option to add Post Suffix.
    • -
    • Editor: And Many More Filters and Features.
    • -
    -
    -

    Buy Pro Version with various features & support.

    -

    Contact us for Support Only Pro Version Users.

    -
    -

    Upgrade to Pro Version

    -

    -

    How to use

    -
      -
    1. First Activate Plugin.
    2. -
    3. Go Select to Duplicate Page settings Menu from Settings Tab and savings settings.
    4. -
    5. Then Create New Post/Page or Use old.
    6. -
    7. After click on duplicate this link, then duplicate post/ page will be created and saved as draft,publish,pending,private depending upon settings.
    8. -
    -

    Minimum requirements for Duplicate Page

    -
      -
    • WordPress 3.3+
    • -
    • PHP 5.x
    • -
    • MySQL 5.x
    • -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Duplicate Page", "slug": "duplicate-page", "tags": {"duplicate-page": "duplicate page", "duplicate-post": "duplicate post", "page-duplicate": "Page Duplicate", "post-duplicate": "Post duplicate", "duplicate-custom-posts": "duplicate custom posts"}, "added": "2016-05-04", "icons": {"1x": "https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874"}, "author": "mndpsingh287", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328", "high": false}, "ratings": {"1": 13, "2": 3, "3": 5, "4": 7, "5": 400}, "version": "4.5.6", "homepage": "https://duplicatepro.com/", "requires": "3.4", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great and simple to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy importradeeu on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great and simple to use.
    Thank you for this plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jer (jeroenwester) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works as promised. No hastle.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Spot On

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy eossolar on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My Default Duplication Plug In

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tvandanasub on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Useful plugin, helped me a lot.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy 99mario on September 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works OK with SiteOrigin Page Builder

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very nice plugin; unfortunately …

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy knuppi on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    it doesn''t work for Divi 5 Alpha yet. Other than that, it''s a great plugin that I''ve gotten so used to that not being able to use it with my current project seems a major inconvenience … but seeing as Divi 5 is only in Public Alpha right now I guess that''s totally understandable.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great little tool!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy trainingcity on September 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works exactly as advertised, perfect little tool that never seems to cause any issues with my wordpress sites. Highly recommended

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    this plugin works with Brizy and Blocksy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy staedeli on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I tried another post duplicate plugin which didn''t work. This one works with Brizy/Blocksy, so I can recommend it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Saves so much time!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rachit30 on September 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have used this plugin for years. Makes life (and duplicating pages) so easy. Fast, easy and convenient.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Sometimes shortcodes are sanitized and disabled

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sakoryu on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is very useful, but sometimes Fontawsome shortcodes and custom CSS are sanitized and disabled when duplicating a page. In that case, you need to set all the disabled code on the page again. It seems to be interfering with other plugins, but the cause cannot be identified.

    \n
    \n
    \n", "changelog": "

    4.5.6 (16th Oct, 2025)

    \n
      \n
    • Compatible with WordPress 6.8.3
    • \n
    \n

    4.5.5 (9th June, 2025)

    \n
      \n
    • Compatible with WordPress 6.8.1
    • \n
    \n

    4.5.4 (29th July, 2024)

    \n
      \n
    • Compatible with WordPress 6.6.1
    • \n
    \n

    = 4.5.3(11th Sept, 2023)

    \n
      \n
    • Compatible with wordpress 6.3.1
    • \n
    \n

    = 4.5.2(4th May, 2023)

    \n
      \n
    • Compatible with wordpress 6.2
    • \n
    \n

    = 4.5.1(8th Feb, 2023)

    \n
      \n
    • Fixes compatibility issues with event calendar plugin.
    • \n
    • Minor bug fixes
    • \n
    \n

    = 4.5(14th Dec, 2022)

    \n
      \n
    • Checked compatibility with wordpress v6.1.1
    • \n
    • Fixes elementor sections compatibility issue
    • \n
    \n

    = 4.4.9(15th Jul, 2022)

    \n
      \n
    • Checked compatibility with wordpress v6.0.1
    • \n
    \n

    = 4.4.8(27th Jan, 2022)

    \n
      \n
    • Checked compatibility with wordpress v5.9
    • \n
    \n

    = 4.4.7(16th Dec, 2021)

    \n
      \n
    • Added editor role check
    • \n
    \n

    = 4.4.6(7th Dec, 2021)

    \n
      \n
    • Fixed security issues.
    • \n
    \n

    = 4.4.5(29th Sep, 2021)

    \n
      \n
    • Fixed the issue for content HTML displaying in the sidebar.
    • \n
    \n

    = 4.4.4(16th Sep, 2021)

    \n
      \n
    • Fixed sanitization Issues as per wordpress standards.
    • \n
    \n

    = 4.4.3(8th Sep, 2021)

    \n
      \n
    • Updated code sanitization process for secure data submission
    • \n
    \n

    = 4.4.2(6th Sep, 2021)

    \n
      \n
    • Added sanitization as per wordpress standards.
    • \n
    \n

    4.4.1(27th July, 2021)

    \n
      \n
    • Checked compatibility with wordpress v5.8
    • \n
    • Fixed php warnings
    • \n
    \n

    4.4(18th Mar, 2021)

    \n
      \n
    • Tested upto wordpress v5.7
    • \n
    \n

    4.3(28th Aug, 2020)

    \n
      \n
    • Tested with wordpress v5.5
    • \n
    \n

    4.2(26th March, 2020)

    \n
      \n
    • Fixed Translations string issue
    • \n
    \n

    4.1(20th Feb, 2020)

    \n
      \n
    • Fixed Translations issue
    • \n
    \n

    4.0(20th Sep, 2019)

    \n
      \n
    • Fixed slug duplication issue
    • \n
    \n

    3.9 (6th Aug, 2019)

    \n
      \n
    • Fixed some compatibility issues
    • \n
    \n

    3.8 (18th July, 2019)

    \n
      \n
    • Fixed compatibility issues with GT3 editor
    • \n
    \n

    3.7 (18th July, 2019)

    \n
      \n
    • Fixed compatibility issues with other editors
    • \n
    \n

    3.6 (16th July, 2019)

    \n
      \n
    • Security fixes addressed by wordpress
    • \n
    \n

    3.5 (2nd Apr, 2019)

    \n
      \n
    • Gutenberg and advanced custom fields compatibility
    • \n
    \n

    3.4 (1st Apr, 2019)

    \n
      \n
    • Security issues fixes addressed by Securi
    • \n
    \n

    3.3 (14th March, 2019)

    \n
      \n
    • Compatible with WordPress 5.1.1
    • \n
    \n

    3.2 (25th Dec, 2018)

    \n
      \n
    • Gutenberg Compatible
    • \n
    \n

    3.1 (5th Dec, 2018)

    \n
      \n
    • removed nag
    • \n
    \n

    3.0 (3rd Dec, 2018)

    \n
      \n
    • German Formal lang added
    • \n
    \n

    2.9 (16th Nov, 2018)

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    2.8 (20th Oct, 2018)

    \n
      \n
    • Compatible with php 7.3 and wordpress 5.0
    • \n
    \n

    2.7 (28th July, 2018)

    \n
      \n
    • removed useless adsense code
    • \n
    \n

    2.6 (24th March, 2018)

    \n
      \n
    • Added signup popup and minor fixes.
    • \n
    \n

    2.5 (5th Feb, 2018)

    \n
      \n
    • Translations issue resolve.
    • \n
    \n

    2.4 (29th Nov, 2017)

    \n
      \n
    • Duplicate Page appends original post name issue fixed.
    • \n
    \n

    2.3 (27st april, 2017)

    \n
      \n
    • Minor Fixes
    • \n
    \n

    2.2 (28th Jan, 2017)

    \n
      \n
    • Strings Translations
    • \n
    \n

    2.1 (25th Aug, 2016)

    \n
      \n
    • New Text field added in settings page for duplicate post title suffix to remove confusion of currently duplicate page.
    • \n
    \n

    1.4 (18th Jun, 2016)

    \n
      \n
    • New Features added
    • \n
    \n

    1.3 (23th May, 2016)

    \n
      \n
    • New Features added
    • \n
    \n

    1.2 (05th May, 2016)

    \n
      \n
    • Duplicate Page Settings Menu Added.
    • \n
    \n

    1.1 (04th May ,2016)

    \n
      \n
    • fix some Bug in 1.0
    • \n
    \n", "description": "

    Duplicate Posts, Pages and Custom Posts easily using single click. You can duplicate your pages, posts and custom post by just one click and it will save as your selected options (draft, private, public, pending).

    \n

    Key Features in Duplicate Page Pro Editions

    \n
      \n
    • User Roles: Allow User Roles To access Duplicate Page.
    • \n
    • Post Types: Filter to show Duplicate Page link in post types.
    • \n
    • Clone Link Location: Option where to show clone link.
    • \n
    • Status: Option to select Duplicate Posts Status.
    • \n
    • Redirection: Option to Redirect after click on clone link..
    • \n
    • Clone Link Title: Option to change Duplicate Post Link Title.
    • \n
    • Post Prefix: Option to add Post Prefix.
    • \n
    • Post Suffix: Option to add Post Suffix.
    • \n
    • Editor: And Many More Filters and Features.
    • \n
    \n
    \n

    Buy Pro Version with various features & support.

    \n

    Contact us for Support Only Pro Version Users.

    \n
    \n

    Upgrade to Pro Version

    \n

    \n

    How to use

    \n
      \n
    1. First Activate Plugin.
    2. \n
    3. Go Select to Duplicate Page settings Menu from Settings Tab and savings settings.
    4. \n
    5. Then Create New Post/Page or Use old.
    6. \n
    7. After click on duplicate this link, then duplicate post/ page will be created and saved as draft,publish,pending,private depending upon settings.
    8. \n
    \n

    Minimum requirements for Duplicate Page

    \n
      \n
    • WordPress 3.3+
    • \n
    • PHP 5.x
    • \n
    • MySQL 5.x
    • \n
    \n", "screenshots": "
    1. \"Activate

      Activate Screen

    2. \"Duplicate

      Duplicate Page Settings Screen

    3. \"Select

      Select Option from Settings Page.

    4. \"Click

      Click on Duplicate This.

    5. \"Duplicate

      Duplicate Post / Page will Appear.

    ", "installation": "
      \n
    1. Upload the duplicate-page folder to the directory /wp-content/plugins/.
    2. \n
    3. Activate the plugin using the ‘Plugins’ menu in WordPress.
    4. \n
    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/duplicate-page.1.1.zip", "2.5": "https://downloads.wordpress.org/plugin/duplicate-page.2.5.zip", "4.5": "https://downloads.wordpress.org/plugin/duplicate-page.4.5.zip", "4.4.9": "https://downloads.wordpress.org/plugin/duplicate-page.4.4.9.zip"}, "downloaded": 34193540, "description": "

    Duplicate Posts, Pages and Custom Posts easily using single click. You can duplicate your pages, posts and custom post by just one click and it will save as your selected options (draft, private, public, pending).

    \n

    Key Features in Duplicate Page Pro Editions

    \n
      \n
    • User Roles: Allow User Roles To access Duplicate Page.
    • \n
    • Post Types: Filter to show Duplicate Page link in post types.
    • \n
    • Clone Link Location: Option where to show clone link.
    • \n
    • Status: Option to select Duplicate Posts Status.
    • \n
    • Redirection: Option to Redirect after click on clone link..
    • \n
    • Clone Link Title: Option to change Duplicate Post Link Title.
    • \n
    • Post Prefix: Option to add Post Prefix.
    • \n
    • Post Suffix: Option to add Post Suffix.
    • \n
    • Editor: And Many More Filters and Features.
    • \n
    \n
    \n

    Buy Pro Version with various features & support.

    \n

    Contact us for Support Only Pro Version Users.

    \n
    \n

    Upgrade to Pro Version

    \n

    \n

    How to use

    \n
      \n
    1. First Activate Plugin.
    2. \n
    3. Go Select to Duplicate Page settings Menu from Settings Tab and savings settings.
    4. \n
    5. Then Create New Post/Page or Use old.
    6. \n
    7. After click on duplicate this link, then duplicate post/ page will be created and saved as draft,publish,pending,private depending upon settings.
    8. \n
    \n

    Minimum requirements for Duplicate Page

    \n
      \n
    • WordPress 3.3+
    • \n
    • PHP 5.x
    • \n
    • MySQL 5.x
    • \n
    \n", "donate_link": "", "num_ratings": 428, "screenshots": {"1": {"src": "https://ps.w.org/duplicate-page/assets/screenshot-1.png?rev=1410933", "caption": "Activate Screen"}, "2": {"src": "https://ps.w.org/duplicate-page/assets/screenshot-2.png?rev=1779481", "caption": "Duplicate Page Settings Screen"}, "3": {"src": "https://ps.w.org/duplicate-page/assets/screenshot-3.png?rev=1410933", "caption": "Select Option from Settings Page."}, "4": {"src": "https://ps.w.org/duplicate-page/assets/screenshot-4.png?rev=1410933", "caption": "Click on Duplicate This."}, "5": {"src": "https://ps.w.org/duplicate-page/assets/screenshot-5.png?rev=1410933", "caption": "Duplicate Post / Page will Appear."}}, "support_url": "https://wordpress.org/support/plugin/duplicate-page/", "contributors": {"mndpsingh287": {"avatar": "https://secure.gravatar.com/avatar/f45d3518db13edc49526efa590ebce2f3f53a6461ef2000a5d3f7197daf7cf9e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mndpsingh287/", "display_name": "mndpsingh287"}}, "last_updated": "2025-10-16 11:26am GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/duplicate-page.zip", "author_profile": "https://profiles.wordpress.org/mndpsingh287/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 3000000, "aspiresync_meta": {"id": "019a30bf-f2a5-71e7-9838-deb873811766", "name": "Duplicate Page", "slug": "duplicate-page", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760613960, "version": "4.5.6"}, "support_threads": 3, "requires_plugins": [], "short_description": "Duplicate Posts, Pages and Custom Posts easily using single click", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 1}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1b20-706c-96a0-b7587fe658a7', 'did:web:api.aspiredev.org:packages:wp-plugin:duplicate-post', 'duplicate-post', 'Yoast Duplicate Post', '

    This plugin allows users to clone posts of any type, or copy them to new drafts for further editing.

    -

    How it works:

    -
      -
    1. -

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘Clone’ link below the post/page title: this will immediately create a copy and return to the list.

      -
    2. -
    3. -

      In ‘Edit Posts’/’Edit Pages’, you can select one or more items, then choose ‘Clone’ in the ‘Bulk Actions’ dropdown to copy them all at once.

      -
    4. -
    5. -

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘New Draft’ link below the post/page title.

      -
    6. -
    7. -

      On the post edit screen, you can click on ‘Copy to a new draft’ above “Cancel”/”Move to trash” or in the admin bar.

      -
    8. -
    9. -

      While viewing a post as a logged in user, you can click on ‘Copy to a new draft’ in the admin bar.

      -
    10. -
    -

    3, 4 and 5 will lead to the edit page for the new draft: change what you want, click on ‘Publish’ and you’re done.

    -

    There is also a template tag, so you can put it in your templates and clone your posts/pages from the front-end. Clicking on the link will lead you to the edit page for the new draft, just like the admin bar link.

    -

    Duplicate Post has many useful settings to customize its behavior and restrict its use to certain roles or post types. Check out the extensive documentation on yoast.com and our developer docs.

    -

    Contribute

    -

    If you find this useful and if you want to contribute, there are two ways:

    -
      -
    1. Submit your bug reports, suggestions and requests for features on GitHub;
    2. -
    3. If you want to translate it to your language (there are just a few lines of text), you can use the translation project;
    4. -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Yoast Duplicate Post", "slug": "duplicate-post", "tags": {"copy": "copy", "clone": "clone", "duplicate-post": "duplicate post"}, "added": "2007-12-05", "icons": {"1x": "https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666", "2x": "https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666"}, "author": "Yoast", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666", "high": "https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666"}, "ratings": {"1": 24, "2": 12, "3": 7, "4": 13, "5": 467}, "version": "4.5", "homepage": "https://yoast.com/wordpress/plugins/duplicate-post/", "requires": "6.6", "sections": {"faq": "\n
    \nThe plugin doesn’t work, why?\n\n

    \n

    First, check your version of WordPress: the plugin is not supposed to work on old versions anymore. Make sure also to upgrade to the last version of the plugin!

    \n

    Then try to deactivate and re-activate it, some user have reported that this fixes some problems.

    \n

    Pay also attention to the “Permissions” tab in the Settings: make sure the plugin is enabled for the desired roles and post types.

    \n

    If it still doesn’t work, maybe there is some kind of conflict with other plugins: feel free to write in the forum and we’ll try to discover a solution (it will be really helpful if you try to deactivate all your other plugins one by one to see which one conflicts with mine… But do it only if you know what you’re doing, I will not be responsible of any problem you may experience).

    \n

    \n
    \nThe plugin is not translated in my language!\n\n

    \n

    From version 3.0 the plugin’s translations are managed by the WordPress.org platform and the plugin is shipped without language files, so first of all update translations under Dashboard->Updates.

    \n

    If Duplicate Post is still in English, or if there are some untranslated strings, you can help translating to your language: you only need a WordPress.org account.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfectly simple solution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy teamishq2025 on September 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Most other Event-Plug-ins are too heavy for my taste, but this one is quite flexible and has all the important elements. Easy to use, fitting into the theme and event lists can be displayed in multiple ways, if you know what to add to the shortcode. Highly recommended. The only thing I''m missing is recurring events.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Adds bloating undismissable notices

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy FonzieTheDog (delbono72) on September 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Adds a huge and extremely annoying notification at the top of plugin page that forces you to subscribe to their newsletter (which I do not need). Until you submit your email and confirm it, it doesn''t disappear. Wordpress should start BANNING plugins that bloat your admin pages with undismissable notices.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Elementor Page and Template Duplication

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy brandedpixel on April 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We like this plugin for duplicating pages created in a page or site builder, like Elementor.

    Fast and easy to use for most clients, we only wish the ''Republish'' functionality was better explained in the dashboard.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Quotes Ninja (quotesninja) on March 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like this plugin I''ve been using this plugin daily for duplication of post. Must for bloggers.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Seems useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy queviquev on March 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Currently new to WordPress but this seems like a useful tool for the future.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A must-have for content-heavy sites!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy evesp on February 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Bulk editing posts has never been easier. The plugin handles even custom fields efficiently. A must-have for content-heavy sites!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy phoenix36 on January 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works very well and good amount of settings to change

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does not work for portfolio pages

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ron Fredericks (ronf) on January 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My plugin offers portfolio pages in addition to posts and pages. This plugin does not offer duplication option from portfolio pages. Although it appears to work for posts and pages.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy EnergyDome on January 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useful tool to speed up work!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A must have plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy yodastudio on November 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is very easy to use and extremely useful. I can''t understand why it''s not included in the WordPress basic functions.

    \n
    \n
    \n", "changelog": "

    4.5

    \n

    Release Date: June 28th, 2022

    \n

    Enhancements:

    \n
      \n
    • Improves the impact of the plugin on the performance of the site by avoiding useless calls on the gettext filter.
    • \n
    \n

    Bugfixes:

    \n
      \n
    • Fixes a bug where a section in the Classic Editor’s submitbox would be displayed with incorrect margins.
    • \n
    \n

    Other:

    \n
      \n
    • Sets the WordPress tested up to version to 6.0.
    • \n
    \n

    4.4

    \n

    Release Date: January 25th, 2022

    \n

    Enhancements:

    \n
      \n
    • Converts the upgrade notice into a welcome notice for first-time users.
    • \n
    \n

    Bugfixes:

    \n
      \n
    • Fixes a bug where HTML tags in a Custom HTML block would be removed when republishing a scheduled Rewrite & Republish copy.
    • \n
    • Fixes a bug where the button style would be broken in the Classic Editor.
    • \n
    • Fixes a bug where a fatal error would be triggered in the Widgets page in combination with some themes or plugins.
    • \n
    \n

    Other:

    \n
      \n
    • Sets the WordPress tested up to version to 5.9.
    • \n
    \n

    Earlier versions

    \n

    For the changelog of earlier versions, please refer to the changelog on yoast.com.

    \n", "description": "

    This plugin allows users to clone posts of any type, or copy them to new drafts for further editing.

    \n

    How it works:

    \n
      \n
    1. \n

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘Clone’ link below the post/page title: this will immediately create a copy and return to the list.

      \n
    2. \n
    3. \n

      In ‘Edit Posts’/’Edit Pages’, you can select one or more items, then choose ‘Clone’ in the ‘Bulk Actions’ dropdown to copy them all at once.

      \n
    4. \n
    5. \n

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘New Draft’ link below the post/page title.

      \n
    6. \n
    7. \n

      On the post edit screen, you can click on ‘Copy to a new draft’ above “Cancel”/”Move to trash” or in the admin bar.

      \n
    8. \n
    9. \n

      While viewing a post as a logged in user, you can click on ‘Copy to a new draft’ in the admin bar.

      \n
    10. \n
    \n

    3, 4 and 5 will lead to the edit page for the new draft: change what you want, click on ‘Publish’ and you’re done.

    \n

    There is also a template tag, so you can put it in your templates and clone your posts/pages from the front-end. Clicking on the link will lead you to the edit page for the new draft, just like the admin bar link.

    \n

    Duplicate Post has many useful settings to customize its behavior and restrict its use to certain roles or post types. Check out the extensive documentation on yoast.com and our developer docs.

    \n

    Contribute

    \n

    If you find this useful and if you want to contribute, there are two ways:

    \n
      \n
    1. Submit your bug reports, suggestions and requests for features on GitHub;
    2. \n
    3. If you want to translate it to your language (there are just a few lines of text), you can use the translation project;
    4. \n
    \n", "screenshots": "
    1. \"Classic

      Classic editor.

    2. \"Block

      Block editor.

    3. \"Post

      Post list.

    4. \"Admin

      Admin bar menu.

    5. \"Bulk

      Bulk actions.

    6. \"The

      The options page.

    ", "installation": "

    Use WordPress’ Add New Plugin feature, searching “Duplicate Post”, or download the archive and:

    \n
      \n
    1. Unzip the archive on your computer
    2. \n
    3. Upload duplicate-post directory to the /wp-content/plugins/ directory
    4. \n
    5. Activate the plugin through the ‘Plugins’ menu in WordPress
    6. \n
    7. Go to Settings -> Duplicate Post and customize behaviour as needed
    8. \n
    \n"}, "versions": {"0.3": "https://downloads.wordpress.org/plugin/duplicate-post.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/duplicate-post.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/duplicate-post.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/duplicate-post.0.6.zip", "1.0": "https://downloads.wordpress.org/plugin/duplicate-post.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/duplicate-post.1.1.zip", "2.0": "https://downloads.wordpress.org/plugin/duplicate-post.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/duplicate-post.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/duplicate-post.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/duplicate-post.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/duplicate-post.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/duplicate-post.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/duplicate-post.2.6.zip", "3.0": "https://downloads.wordpress.org/plugin/duplicate-post.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/duplicate-post.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.zip", "4.0": "https://downloads.wordpress.org/plugin/duplicate-post.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/duplicate-post.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/duplicate-post.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/duplicate-post.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/duplicate-post.4.4.zip", "4.5": "https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip", "0.6.1": "https://downloads.wordpress.org/plugin/duplicate-post.0.6.1.zip", "1.1.1": "https://downloads.wordpress.org/plugin/duplicate-post.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/duplicate-post.1.1.2.zip", "2.0.1": "https://downloads.wordpress.org/plugin/duplicate-post.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/duplicate-post.2.0.2.zip", "2.1.1": "https://downloads.wordpress.org/plugin/duplicate-post.2.1.1.zip", "2.4.1": "https://downloads.wordpress.org/plugin/duplicate-post.2.4.1.zip", "3.0.1": "https://downloads.wordpress.org/plugin/duplicate-post.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/duplicate-post.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/duplicate-post.3.0.3.zip", "3.1.1": "https://downloads.wordpress.org/plugin/duplicate-post.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/duplicate-post.3.1.2.zip", "3.2.1": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.6.zip", "4.0.1": "https://downloads.wordpress.org/plugin/duplicate-post.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/duplicate-post.4.0.2.zip", "4.1.1": "https://downloads.wordpress.org/plugin/duplicate-post.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/duplicate-post.4.1.2.zip", "trunk": "https://downloads.wordpress.org/plugin/duplicate-post.zip"}, "downloaded": 36625144, "description": "

    This plugin allows users to clone posts of any type, or copy them to new drafts for further editing.

    \n

    How it works:

    \n
      \n
    1. \n

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘Clone’ link below the post/page title: this will immediately create a copy and return to the list.

      \n
    2. \n
    3. \n

      In ‘Edit Posts’/’Edit Pages’, you can select one or more items, then choose ‘Clone’ in the ‘Bulk Actions’ dropdown to copy them all at once.

      \n
    4. \n
    5. \n

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘New Draft’ link below the post/page title.

      \n
    6. \n
    7. \n

      On the post edit screen, you can click on ‘Copy to a new draft’ above “Cancel”/”Move to trash” or in the admin bar.

      \n
    8. \n
    9. \n

      While viewing a post as a logged in user, you can click on ‘Copy to a new draft’ in the admin bar.

      \n
    10. \n
    \n

    3, 4 and 5 will lead to the edit page for the new draft: change what you want, click on ‘Publish’ and you’re done.

    \n

    There is also a template tag, so you can put it in your templates and clone your posts/pages from the front-end. Clicking on the link will lead you to the edit page for the new draft, just like the admin bar link.

    \n

    Duplicate Post has many useful settings to customize its behavior and restrict its use to certain roles or post types. Check out the extensive documentation on yoast.com and our developer docs.

    \n

    Contribute

    \n

    If you find this useful and if you want to contribute, there are two ways:

    \n
      \n
    1. Submit your bug reports, suggestions and requests for features on GitHub;
    2. \n
    3. If you want to translate it to your language (there are just a few lines of text), you can use the translation project;
    4. \n
    \n", "donate_link": "https://yoast.com/wordpress/plugins/duplicate-post/", "num_ratings": 523, "screenshots": {"1": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-1.png?rev=2454492", "caption": "Classic editor."}, "2": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-2.png?rev=2454492", "caption": "Block editor."}, "3": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-3.png?rev=2454492", "caption": "Post list."}, "4": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-4.png?rev=2454492", "caption": "Admin bar menu."}, "5": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-5.png?rev=2454492", "caption": "Bulk actions."}, "6": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-6.png?rev=2454492", "caption": "The options page."}}, "support_url": "https://wordpress.org/support/plugin/duplicate-post/", "contributors": {"lopo": {"avatar": "https://secure.gravatar.com/avatar/7b7f21e1376f7c9b0ca9516488e179d62773db73ce940c3bd7145ff3b87adc56?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lopo/", "display_name": "Enrico Battocchi"}, "yoast": {"avatar": "https://secure.gravatar.com/avatar/be9ad584631c908275babffbc3fd771d5879ace2c1e00305b17fd2d4361fe80d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/yoast/", "display_name": "Yoast"}}, "last_updated": "2025-04-11 1:32pm GMT", "preview_link": "", "requires_php": "5.6.20", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip", "author_profile": "https://profiles.wordpress.org/yoast/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 4000000, "aspiresync_meta": {"id": "019a30bf-f2af-73f9-a819-0af060eec6fc", "name": "Yoast Duplicate Post", "slug": "duplicate-post", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1744378320, "version": "4.5"}, "support_threads": 3, "requires_plugins": [], "short_description": "The go-to tool for cloning posts and pages, including the powerful Rewrite & Republish feature.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1b2c-71d7-bad5-a7d65cc0e1d1', 'did:web:api.aspiredev.org:packages:wp-plugin:duplicator', 'duplicator', 'Duplicator – Backups & Migration Plugin – Cloud Backups, Scheduled Backups, & More', '

    WordPress Backup & Migration Plugin

    -

    Duplicator provides a simple way to move WordPress sites, create reliable backups, or clone a site for staging. With Duplicator, you can easily migrate, transfer, or clone your WordPress site between domains or hosts with no downtime. Create full backups of your website, or package your entire site to download and install elsewhere with only a few steps.

    -

    At Duplicator, reliabilty, security, and ease of use are our top priorities. Our variety of cloud backup integrations and easy migration wizard make Duplicator the most beginner-friendly backup and migration plugin on the market. You don’t have to hire a developer. Create a backup and migrate sites in just a few minutes.

    -
    -

    Duplicator Pro
    - This plugin is the Lite version of Duplicator Pro, which comes with scheduled backups, cloud storage integrations, multisite support, and more. Get Duplicator Pro for the complete migration and backup solution.

    -
    -

    -

    Easy Site Migration, Backup, and Cloning

    -

    Duplicator streamlines site migrations by packaging your website files and database into a single file, known as a “backup”. Download and re-install your “backup” on any new WordPress location or server without dealing with complicated setups. Launch at your new destination without installing WordPress. Duplicator is the only migration and backup plugin that works on an empty site.

    -

    See why experts love Duplicator:

    -
    -

    “Duplicator provides an easy to use tool to make backups of your site, or to transfer it to another location.”
    - Richard McAdams – Expert Web Developer

    -
    -

    Secure WordPress Backups

    -

    Duplicator offers cloud WordPress backups with military-grade encryption. Automatically backup your entire WordPress site to secure cloud storage.

    -

    Recovery Points (1-click Restore)

    -

    Duplicator makes 1-click restores for WordPress backups easy and stress-free. Quickly restore your entire website in minutes just like a time machine.

    -

    Fast WordPress Migrations

    -

    Duplicator makes WordPress website migrations fast and stress-free. Quickly move to a new host, domain, or server. No downtime, no data loss, and no coding required.

    -

    WordPress Multisite Backups

    -

    Duplicator offers automatic WordPress Multisite backups with easy 1-click restore. Safely backup your entire Multisite network to secure cloud storage.

    -

    WooCommerce Backups

    -

    Duplicator offers reliable WooCommerce backups with military-grade encryption. Easily and automatically back up your entire online store to secure cloud storage.

    -

    Pre-configured WordPress Installs

    -

    Never start from scratch with Duplicator’s smart pre-configured WordPress installs. Save time and hassle duplicating ready-made sites with 1-click.

    -

    WordPress Recovery Points with Quick Rollbacks

    -

    Duplicator offers hourly recovery points and 1-click rollbacks for WordPress sites. Quickly and automatically recover from failed WordPress updates or disasters.

    -

    Partial WordPress Backup Plugin

    -

    Duplicator makes partial backups for WordPress quick and easy. Save storage and restore sites faster with database-only, media-only, or completely custom backups.

    -

    Server to Server WordPress Migration Import Tool

    -

    Duplicator makes server-to-server WordPress migrations fast and hassle-free. Quickly import your website to a new server in minutes. No downtime, no data loss.

    -

    Smart WordPress Migration Wizard

    -

    Duplicator’s smart WordPress migration wizard makes transferring your website to a new host or server effortless. No downtime, no data loss, and no code required.

    -

    Drag & Drop Import WordPress Website Tool

    -

    Migrating WordPress sites has never been easier with Duplicator’s drag & drop import tools. Quickly transfer your site to a new host or server in minutes, no code required.

    -

    Clone WordPress Website Plugin

    -

    Duplicator clones your entire WordPress website with 1-click, no code needed. Perfect for staging sites, sandbox, or site migration.

    -

    Duplicator Pro Features

    -

    Duplicator Pro takes Duplicator to the next level with features you’ll love, such as:

    -
      -
    • Drag and Drop installs – just drag the backup file to the destination site!
    • -
    • Scheduled backups
    • -
    • Cloud Storage to Dropbox Backups, Google Drive Backups, Microsoft OneDrive Backups, Amazon S3 Backups and FTP/SFTP Backups
    • -
    • Custom Backups and Cloning: want just plugins, or just themes, just the database? No problem!
    • -
    • A special 2-step streamlined installer mode for mega-fast installs
    • -
    • Recovery Points added for very fast emergency site restores
    • -
    • Support for managed and shared hosts such as WordPress.com, WPEngine, GoDaddy Managed, and more
    • -
    • Multi-threaded to support larger websites & databases
    • -
    • Migrate an entire multisite WordPress network or a sub site as a standalone site
    • -
    • Database and user creation in the installer with cPanel API
    • -
    • Connect to cPanel directly from the installer
    • -
    • Custom plugin hooks for developers
    • -
    • Advanced permissions
    • -
    • Email notifications
    • -
    • Professional support
    • -
    • … and much more!
    • -
    -

    Supported Backup Cloud Storage Integrations

    -

    We support any Amazon S3 compatible storage providers plus these first-party integrations.

    - -

    You can easily see why Duplicator is the best WordPress backup and migration plugin on the market! Want to unlock these features? Upgrade to our Pro version

    -

    Branding Guidelines

    -

    Duplicator® is a registered trademark of Snap Creek LLC. When writing about the backup & migration plugin by Duplicator, please make sure to uppercase the initial first letter.

    -
      -
    • Duplicator (correct)
    • -
    • duplicator (incorrect)
    • -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Duplicator – Backups & Migration Plugin – Cloud Backups, Scheduled Backups, & More", "slug": "duplicator", "tags": {"backup": "backup", "migration": "migration", "cloud-backup": "cloud backup", "database-backup": "database backup", "wordpress-backup": "wordpress backup"}, "added": "2011-06-07", "icons": {"1x": "https://ps.w.org/duplicator/assets/icon-128x128.png?rev=2906985", "2x": "https://ps.w.org/duplicator/assets/icon-256x256.png?rev=2906985"}, "author": "Syed Balkhi", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/duplicator/assets/banner-772x250.png?rev=2906985", "high": "https://ps.w.org/duplicator/assets/banner-1544x500.png?rev=2906985"}, "ratings": {"1": 133, "2": 21, "3": 21, "4": 62, "5": 4568}, "version": "1.5.14", "homepage": "https://duplicator.com/", "requires": "5.3", "sections": {"faq": "\n
    \nWho Should Use Duplicator?\n\n

    \n

    Duplicator is perfect for business owners, bloggers, designers, developers, photographers, and basically everyone else. If you want to create a WordPress Backup or Migration, then you need to use Duplicator.

    \n

    \n
    \nWhat’s required to use Duplicator?\n\n

    \n

    Duplicator is a WordPress Plugin. In order to use Duplicator, you must have a self-hosted WordPress site. That’s all.

    \n

    \n
    \nDo I need coding skills to use Duplicator?\n\n

    \n

    Absolutely not. You can create backups and migrations without any coding knowledge. Duplicator is the most beginner-friendly backup solution in the market.

    \n

    \n
    \nWill Duplicator slow down my website?\n\n

    \n

    Absolutely not. Duplicator is carefully built with performance in mind. We have developed everything with best practices and modern standards to ensure things run smooth and fast.

    \n

    \n
    \nCan I backup WooCommerce sites?\n\n

    \n

    Yes. Duplicator makes backing up WooCommerce sites easy and stress-free.

    \n

    \n
    \nIs this plugin compatible with WordPress multisite (MU)?\n\n

    \n

    Yes, however you will need Duplicator Pro for full multisite network migrations &backups and the ability to install a multisite subsite as a standalone site.

    \n

    \n
    \nWhere can I get more help and support for this plugin?\n\n

    \n

    Purchase a Pro License for quick support Duplicator Pro

    \n

    \n
    \nDoes Duplicator have a knowledge base or FAQ?\n\n

    \n

    Yes. Please see all documents at duplicator.com

    \n

    \n
    \nInstallation Instructions\n\n

    \n

      \n
    1. Upload duplicator folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Click on the Duplicator link from the main menu
    6. \n
    7. Check out the help by clicking the help icon and create your first backup.
    8. \n
    \n

    The Duplicator requires php 5.3 or higher.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Highly reliable since years, thank you!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy David Stingl (berlindave) on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My No. 1 tool for migrating WordPress sites between localhost (for theme development) an servers ans from one server to another. Just flawlessly perfect!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    top

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Arnaud DUMAURE (arnodu24) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this plugin is very correct

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mayordomo on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It does what it says it does well.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable, Efficient, and Essential for WordPress Site Management

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy smoroz on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Duplicator is one of the most dependable plugins I’ve used for managing WordPress migrations and backups. The setup is straightforward, and the interface makes even complex site transfers surprisingly simple. Whether moving a site between hosts or creating a quick backup before a major update, Duplicator handles it without unnecessary complications.

    \n\n\n\n

    Performance is solid—backups are fast and consistent, and the plugin minimizes downtime during migrations. I also appreciate the clear documentation and responsive support, which make troubleshooting nearly effortless.

    \n\n\n\n

    Duplicator is a must-have for anyone serious about maintaining site stability and workflow efficiency. It’s become a permanent part of my WordPress toolkit.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazing

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rickreynolds1 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Amazing plug-in and I''ve used it for years. Thanks so much, all!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Worked great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy johnkyle on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Migrated a client site with this from my dev servers to their hosting. No issues. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great software

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy farawaywtth on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ez to use and packed with functionality. No external help needed.
    Created WP website locally, and put it online in no time :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works perfect for me

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy estachap on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It took a short time to learn how to use it, but after that the tool worked amazingly well even in its free version.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent time saving tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy keeboudi on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent time saving tool

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Prima backup/restore tool!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy beausoftware on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Deze tool al meerdere keren succesvol gebruikt voor het overzetten of dupliceren van een Wordpress site met Woocommerce plugin en data

    \n\n\n\n

    \n
    \n
    \n", "changelog": "

    Please see the following url:
    \nhttps://duplicator.com/knowledge-base/changelog/

    \n", "description": "

    WordPress Backup & Migration Plugin

    \n

    Duplicator provides a simple way to move WordPress sites, create reliable backups, or clone a site for staging. With Duplicator, you can easily migrate, transfer, or clone your WordPress site between domains or hosts with no downtime. Create full backups of your website, or package your entire site to download and install elsewhere with only a few steps.

    \n

    At Duplicator, reliabilty, security, and ease of use are our top priorities. Our variety of cloud backup integrations and easy migration wizard make Duplicator the most beginner-friendly backup and migration plugin on the market. You don’t have to hire a developer. Create a backup and migrate sites in just a few minutes.

    \n
    \n

    Duplicator Pro
    \n This plugin is the Lite version of Duplicator Pro, which comes with scheduled backups, cloud storage integrations, multisite support, and more. Get Duplicator Pro for the complete migration and backup solution.

    \n
    \n

    \n

    Easy Site Migration, Backup, and Cloning

    \n

    Duplicator streamlines site migrations by packaging your website files and database into a single file, known as a “backup”. Download and re-install your “backup” on any new WordPress location or server without dealing with complicated setups. Launch at your new destination without installing WordPress. Duplicator is the only migration and backup plugin that works on an empty site.

    \n

    See why experts love Duplicator:

    \n
    \n

    “Duplicator provides an easy to use tool to make backups of your site, or to transfer it to another location.”
    \n Richard McAdams – Expert Web Developer

    \n
    \n

    Secure WordPress Backups

    \n

    Duplicator offers cloud WordPress backups with military-grade encryption. Automatically backup your entire WordPress site to secure cloud storage.

    \n

    Recovery Points (1-click Restore)

    \n

    Duplicator makes 1-click restores for WordPress backups easy and stress-free. Quickly restore your entire website in minutes just like a time machine.

    \n

    Fast WordPress Migrations

    \n

    Duplicator makes WordPress website migrations fast and stress-free. Quickly move to a new host, domain, or server. No downtime, no data loss, and no coding required.

    \n

    WordPress Multisite Backups

    \n

    Duplicator offers automatic WordPress Multisite backups with easy 1-click restore. Safely backup your entire Multisite network to secure cloud storage.

    \n

    WooCommerce Backups

    \n

    Duplicator offers reliable WooCommerce backups with military-grade encryption. Easily and automatically back up your entire online store to secure cloud storage.

    \n

    Pre-configured WordPress Installs

    \n

    Never start from scratch with Duplicator’s smart pre-configured WordPress installs. Save time and hassle duplicating ready-made sites with 1-click.

    \n

    WordPress Recovery Points with Quick Rollbacks

    \n

    Duplicator offers hourly recovery points and 1-click rollbacks for WordPress sites. Quickly and automatically recover from failed WordPress updates or disasters.

    \n

    Partial WordPress Backup Plugin

    \n

    Duplicator makes partial backups for WordPress quick and easy. Save storage and restore sites faster with database-only, media-only, or completely custom backups.

    \n

    Server to Server WordPress Migration Import Tool

    \n

    Duplicator makes server-to-server WordPress migrations fast and hassle-free. Quickly import your website to a new server in minutes. No downtime, no data loss.

    \n

    Smart WordPress Migration Wizard

    \n

    Duplicator’s smart WordPress migration wizard makes transferring your website to a new host or server effortless. No downtime, no data loss, and no code required.

    \n

    Drag & Drop Import WordPress Website Tool

    \n

    Migrating WordPress sites has never been easier with Duplicator’s drag & drop import tools. Quickly transfer your site to a new host or server in minutes, no code required.

    \n

    Clone WordPress Website Plugin

    \n

    Duplicator clones your entire WordPress website with 1-click, no code needed. Perfect for staging sites, sandbox, or site migration.

    \n

    Duplicator Pro Features

    \n

    Duplicator Pro takes Duplicator to the next level with features you’ll love, such as:

    \n
      \n
    • Drag and Drop installs – just drag the backup file to the destination site!
    • \n
    • Scheduled backups
    • \n
    • Cloud Storage to Dropbox Backups, Google Drive Backups, Microsoft OneDrive Backups, Amazon S3 Backups and FTP/SFTP Backups
    • \n
    • Custom Backups and Cloning: want just plugins, or just themes, just the database? No problem!
    • \n
    • A special 2-step streamlined installer mode for mega-fast installs
    • \n
    • Recovery Points added for very fast emergency site restores
    • \n
    • Support for managed and shared hosts such as WordPress.com, WPEngine, GoDaddy Managed, and more
    • \n
    • Multi-threaded to support larger websites & databases
    • \n
    • Migrate an entire multisite WordPress network or a sub site as a standalone site
    • \n
    • Database and user creation in the installer with cPanel API
    • \n
    • Connect to cPanel directly from the installer
    • \n
    • Custom plugin hooks for developers
    • \n
    • Advanced permissions
    • \n
    • Email notifications
    • \n
    • Professional support
    • \n
    • … and much more!
    • \n
    \n

    Supported Backup Cloud Storage Integrations

    \n

    We support any Amazon S3 compatible storage providers plus these first-party integrations.

    \n\n

    You can easily see why Duplicator is the best WordPress backup and migration plugin on the market! Want to unlock these features? Upgrade to our Pro version

    \n

    Branding Guidelines

    \n

    Duplicator® is a registered trademark of Snap Creek LLC. When writing about the backup & migration plugin by Duplicator, please make sure to uppercase the initial first letter.

    \n
      \n
    • Duplicator (correct)
    • \n
    • duplicator (incorrect)
    • \n
    \n", "screenshots": "
    1. \"Main

      Main Interface for all Backups

    2. \"Create

      Create Backup Step 1

    3. \"Create

      Create Backup Step 2

    4. \"Build

      Build Process

    5. \"Installer

      Installer Screen

    "}, "versions": {"0.4.6": "https://downloads.wordpress.org/plugin/duplicator.0.4.6.zip", "0.5.0": "https://downloads.wordpress.org/plugin/duplicator.0.5.0.zip", "0.5.1": "https://downloads.wordpress.org/plugin/duplicator.0.5.1.zip", "0.5.2": "https://downloads.wordpress.org/plugin/duplicator.0.5.2.zip", "0.5.4": "https://downloads.wordpress.org/plugin/duplicator.0.5.4.zip", "0.5.6": "https://downloads.wordpress.org/plugin/duplicator.0.5.6.zip", "0.5.8": "https://downloads.wordpress.org/plugin/duplicator.0.5.8.zip", "1.1.0": "https://downloads.wordpress.org/plugin/duplicator.1.1.0.zip", "1.1.2": "https://downloads.wordpress.org/plugin/duplicator.1.1.2.zip", "1.1.4": "https://downloads.wordpress.org/plugin/duplicator.1.1.4.zip", "1.1.6": "https://downloads.wordpress.org/plugin/duplicator.1.1.6.zip", "1.1.8": "https://downloads.wordpress.org/plugin/duplicator.1.1.8.zip", "1.2.0": "https://downloads.wordpress.org/plugin/duplicator.1.2.0.zip", "1.2.2": "https://downloads.wordpress.org/plugin/duplicator.1.2.2.zip", "1.2.4": "https://downloads.wordpress.org/plugin/duplicator.1.2.4.zip", "1.2.6": "https://downloads.wordpress.org/plugin/duplicator.1.2.6.zip", "1.2.8": "https://downloads.wordpress.org/plugin/duplicator.1.2.8.zip", "1.3.0": "https://downloads.wordpress.org/plugin/duplicator.1.3.0.zip", "1.3.2": "https://downloads.wordpress.org/plugin/duplicator.1.3.2.zip", "1.3.4": "https://downloads.wordpress.org/plugin/duplicator.1.3.4.zip", "1.3.6": "https://downloads.wordpress.org/plugin/duplicator.1.3.6.zip", "1.3.8": "https://downloads.wordpress.org/plugin/duplicator.1.3.8.zip", "1.4.0": "https://downloads.wordpress.org/plugin/duplicator.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/duplicator.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/duplicator.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/duplicator.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/duplicator.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/duplicator.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/duplicator.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/duplicator.1.4.7.zip", "1.5.0": "https://downloads.wordpress.org/plugin/duplicator.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/duplicator.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/duplicator.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/duplicator.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/duplicator.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/duplicator.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/duplicator.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/duplicator.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/duplicator.1.5.9.zip", "trunk": "https://downloads.wordpress.org/plugin/duplicator.zip", "0.5.10": "https://downloads.wordpress.org/plugin/duplicator.0.5.10.zip", "0.5.12": "https://downloads.wordpress.org/plugin/duplicator.0.5.12.zip", "0.5.14": "https://downloads.wordpress.org/plugin/duplicator.0.5.14.zip", "0.5.16": "https://downloads.wordpress.org/plugin/duplicator.0.5.16.zip", "0.5.18": "https://downloads.wordpress.org/plugin/duplicator.0.5.18.zip", "0.5.20": "https://downloads.wordpress.org/plugin/duplicator.0.5.20.zip", "0.5.22": "https://downloads.wordpress.org/plugin/duplicator.0.5.22.zip", "0.5.24": "https://downloads.wordpress.org/plugin/duplicator.0.5.24.zip", "0.5.26": "https://downloads.wordpress.org/plugin/duplicator.0.5.26.zip", "0.5.28": "https://downloads.wordpress.org/plugin/duplicator.0.5.28.zip", "0.5.30": "https://downloads.wordpress.org/plugin/duplicator.0.5.30.zip", "0.5.32": "https://downloads.wordpress.org/plugin/duplicator.0.5.32.zip", "0.5.34": "https://downloads.wordpress.org/plugin/duplicator.0.5.34.zip", "1.1.10": "https://downloads.wordpress.org/plugin/duplicator.1.1.10.zip", "1.1.12": "https://downloads.wordpress.org/plugin/duplicator.1.1.12.zip", "1.1.14": "https://downloads.wordpress.org/plugin/duplicator.1.1.14.zip", "1.1.16": "https://downloads.wordpress.org/plugin/duplicator.1.1.16.zip", "1.1.18": "https://downloads.wordpress.org/plugin/duplicator.1.1.18.zip", "1.1.20": "https://downloads.wordpress.org/plugin/duplicator.1.1.20.zip", "1.1.22": "https://downloads.wordpress.org/plugin/duplicator.1.1.22.zip", "1.1.24": "https://downloads.wordpress.org/plugin/duplicator.1.1.24.zip", "1.1.26": "https://downloads.wordpress.org/plugin/duplicator.1.1.26.zip", "1.1.28": "https://downloads.wordpress.org/plugin/duplicator.1.1.28.zip", "1.1.30": "https://downloads.wordpress.org/plugin/duplicator.1.1.30.zip", "1.1.32": "https://downloads.wordpress.org/plugin/duplicator.1.1.32.zip", "1.1.34": "https://downloads.wordpress.org/plugin/duplicator.1.1.34.zip", "1.2.10": "https://downloads.wordpress.org/plugin/duplicator.1.2.10.zip", "1.2.12": "https://downloads.wordpress.org/plugin/duplicator.1.2.12.zip", "1.2.14": "https://downloads.wordpress.org/plugin/duplicator.1.2.14.zip", "1.2.16": "https://downloads.wordpress.org/plugin/duplicator.1.2.16.zip", "1.2.18": "https://downloads.wordpress.org/plugin/duplicator.1.2.18.zip", "1.2.20": "https://downloads.wordpress.org/plugin/duplicator.1.2.20.zip", "1.2.22": "https://downloads.wordpress.org/plugin/duplicator.1.2.22.zip", "1.2.24": "https://downloads.wordpress.org/plugin/duplicator.1.2.24.zip", "1.2.26": "https://downloads.wordpress.org/plugin/duplicator.1.2.26.zip", "1.2.28": "https://downloads.wordpress.org/plugin/duplicator.1.2.28.zip", "1.2.30": "https://downloads.wordpress.org/plugin/duplicator.1.2.30.zip", "1.2.32": "https://downloads.wordpress.org/plugin/duplicator.1.2.32.zip", "1.2.34": "https://downloads.wordpress.org/plugin/duplicator.1.2.34.zip", "1.2.36": "https://downloads.wordpress.org/plugin/duplicator.1.2.36.zip", "1.2.38": "https://downloads.wordpress.org/plugin/duplicator.1.2.38.zip", "1.2.40": "https://downloads.wordpress.org/plugin/duplicator.1.2.40.zip", "1.2.42": "https://downloads.wordpress.org/plugin/duplicator.1.2.42.zip", "1.2.44": "https://downloads.wordpress.org/plugin/duplicator.1.2.44.zip", "1.2.46": "https://downloads.wordpress.org/plugin/duplicator.1.2.46.zip", "1.2.48": "https://downloads.wordpress.org/plugin/duplicator.1.2.48.zip", "1.2.50": "https://downloads.wordpress.org/plugin/duplicator.1.2.50.zip", "1.2.52": "https://downloads.wordpress.org/plugin/duplicator.1.2.52.zip", "1.3.10": "https://downloads.wordpress.org/plugin/duplicator.1.3.10.zip", "1.3.12": "https://downloads.wordpress.org/plugin/duplicator.1.3.12.zip", "1.3.14": "https://downloads.wordpress.org/plugin/duplicator.1.3.14.zip", "1.3.16": "https://downloads.wordpress.org/plugin/duplicator.1.3.16.zip", "1.3.18": "https://downloads.wordpress.org/plugin/duplicator.1.3.18.zip", "1.3.20": "https://downloads.wordpress.org/plugin/duplicator.1.3.20.zip", "1.3.22": "https://downloads.wordpress.org/plugin/duplicator.1.3.22.zip", "1.3.24": "https://downloads.wordpress.org/plugin/duplicator.1.3.24.zip", "1.3.26": "https://downloads.wordpress.org/plugin/duplicator.1.3.26.zip", "1.3.28": "https://downloads.wordpress.org/plugin/duplicator.1.3.28.zip", "1.3.30": "https://downloads.wordpress.org/plugin/duplicator.1.3.30.zip", "1.3.32": "https://downloads.wordpress.org/plugin/duplicator.1.3.32.zip", "1.3.34": "https://downloads.wordpress.org/plugin/duplicator.1.3.34.zip", "1.3.36": "https://downloads.wordpress.org/plugin/duplicator.1.3.36.zip", "1.3.38": "https://downloads.wordpress.org/plugin/duplicator.1.3.38.zip", "1.3.40": "https://downloads.wordpress.org/plugin/duplicator.1.3.40.zip", "1.5.10": "https://downloads.wordpress.org/plugin/duplicator.1.5.10.zip", "1.5.11": "https://downloads.wordpress.org/plugin/duplicator.1.5.11.zip", "1.5.12": "https://downloads.wordpress.org/plugin/duplicator.1.5.12.zip", "1.5.13": "https://downloads.wordpress.org/plugin/duplicator.1.5.13.zip", "1.5.14": "https://downloads.wordpress.org/plugin/duplicator.1.5.14.zip", "1.4.7.1": "https://downloads.wordpress.org/plugin/duplicator.1.4.7.1.zip", "1.4.7.2": "https://downloads.wordpress.org/plugin/duplicator.1.4.7.2.zip", "1.5.2.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.2.1.zip", "1.5.3.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.3.1.zip", "1.5.5.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.5.1.zip", "1.5.6.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.6.1.zip", "1.5.7.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.7.1.zip", "1.5.8.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.8.1.zip", "1.3.40.1": "https://downloads.wordpress.org/plugin/duplicator.1.3.40.1.zip", "1.5.10.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.10.1.zip", "1.5.10.2": "https://downloads.wordpress.org/plugin/duplicator.1.5.10.2.zip", "1.5.11.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.11.1.zip", "1.5.11.2": "https://downloads.wordpress.org/plugin/duplicator.1.5.11.2.zip", "1.5.13.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.13.1.zip", "1.5.13.2": "https://downloads.wordpress.org/plugin/duplicator.1.5.13.2.zip", "1.5.13.3": "https://downloads.wordpress.org/plugin/duplicator.1.5.13.3.zip"}, "downloaded": 50781936, "description": "

    WordPress Backup & Migration Plugin

    \n

    Duplicator provides a simple way to move WordPress sites, create reliable backups, or clone a site for staging. With Duplicator, you can easily migrate, transfer, or clone your WordPress site between domains or hosts with no downtime. Create full backups of your website, or package your entire site to download and install elsewhere with only a few steps.

    \n

    At Duplicator, reliabilty, security, and ease of use are our top priorities. Our variety of cloud backup integrations and easy migration wizard make Duplicator the most beginner-friendly backup and migration plugin on the market. You don’t have to hire a developer. Create a backup and migrate sites in just a few minutes.

    \n
    \n

    Duplicator Pro
    \n This plugin is the Lite version of Duplicator Pro, which comes with scheduled backups, cloud storage integrations, multisite support, and more. Get Duplicator Pro for the complete migration and backup solution.

    \n
    \n

    \n

    Easy Site Migration, Backup, and Cloning

    \n

    Duplicator streamlines site migrations by packaging your website files and database into a single file, known as a “backup”. Download and re-install your “backup” on any new WordPress location or server without dealing with complicated setups. Launch at your new destination without installing WordPress. Duplicator is the only migration and backup plugin that works on an empty site.

    \n

    See why experts love Duplicator:

    \n
    \n

    “Duplicator provides an easy to use tool to make backups of your site, or to transfer it to another location.”
    \n Richard McAdams – Expert Web Developer

    \n
    \n

    Secure WordPress Backups

    \n

    Duplicator offers cloud WordPress backups with military-grade encryption. Automatically backup your entire WordPress site to secure cloud storage.

    \n

    Recovery Points (1-click Restore)

    \n

    Duplicator makes 1-click restores for WordPress backups easy and stress-free. Quickly restore your entire website in minutes just like a time machine.

    \n

    Fast WordPress Migrations

    \n

    Duplicator makes WordPress website migrations fast and stress-free. Quickly move to a new host, domain, or server. No downtime, no data loss, and no coding required.

    \n

    WordPress Multisite Backups

    \n

    Duplicator offers automatic WordPress Multisite backups with easy 1-click restore. Safely backup your entire Multisite network to secure cloud storage.

    \n

    WooCommerce Backups

    \n

    Duplicator offers reliable WooCommerce backups with military-grade encryption. Easily and automatically back up your entire online store to secure cloud storage.

    \n

    Pre-configured WordPress Installs

    \n

    Never start from scratch with Duplicator’s smart pre-configured WordPress installs. Save time and hassle duplicating ready-made sites with 1-click.

    \n

    WordPress Recovery Points with Quick Rollbacks

    \n

    Duplicator offers hourly recovery points and 1-click rollbacks for WordPress sites. Quickly and automatically recover from failed WordPress updates or disasters.

    \n

    Partial WordPress Backup Plugin

    \n

    Duplicator makes partial backups for WordPress quick and easy. Save storage and restore sites faster with database-only, media-only, or completely custom backups.

    \n

    Server to Server WordPress Migration Import Tool

    \n

    Duplicator makes server-to-server WordPress migrations fast and hassle-free. Quickly import your website to a new server in minutes. No downtime, no data loss.

    \n

    Smart WordPress Migration Wizard

    \n

    Duplicator’s smart WordPress migration wizard makes transferring your website to a new host or server effortless. No downtime, no data loss, and no code required.

    \n

    Drag & Drop Import WordPress Website Tool

    \n

    Migrating WordPress sites has never been easier with Duplicator’s drag & drop import tools. Quickly transfer your site to a new host or server in minutes, no code required.

    \n

    Clone WordPress Website Plugin

    \n

    Duplicator clones your entire WordPress website with 1-click, no code needed. Perfect for staging sites, sandbox, or site migration.

    \n

    Duplicator Pro Features

    \n

    Duplicator Pro takes Duplicator to the next level with features you’ll love, such as:

    \n
      \n
    • Drag and Drop installs – just drag the backup file to the destination site!
    • \n
    • Scheduled backups
    • \n
    • Cloud Storage to Dropbox Backups, Google Drive Backups, Microsoft OneDrive Backups, Amazon S3 Backups and FTP/SFTP Backups
    • \n
    • Custom Backups and Cloning: want just plugins, or just themes, just the database? No problem!
    • \n
    • A special 2-step streamlined installer mode for mega-fast installs
    • \n
    • Recovery Points added for very fast emergency site restores
    • \n
    • Support for managed and shared hosts such as WordPress.com, WPEngine, GoDaddy Managed, and more
    • \n
    • Multi-threaded to support larger websites & databases
    • \n
    • Migrate an entire multisite WordPress network or a sub site as a standalone site
    • \n
    • Database and user creation in the installer with cPanel API
    • \n
    • Connect to cPanel directly from the installer
    • \n
    • Custom plugin hooks for developers
    • \n
    • Advanced permissions
    • \n
    • Email notifications
    • \n
    • Professional support
    • \n
    • … and much more!
    • \n
    \n

    Supported Backup Cloud Storage Integrations

    \n

    We support any Amazon S3 compatible storage providers plus these first-party integrations.

    \n\n

    You can easily see why Duplicator is the best WordPress backup and migration plugin on the market! Want to unlock these features? Upgrade to our Pro version

    \n

    Branding Guidelines

    \n

    Duplicator® is a registered trademark of Snap Creek LLC. When writing about the backup & migration plugin by Duplicator, please make sure to uppercase the initial first letter.

    \n
      \n
    • Duplicator (correct)
    • \n
    • duplicator (incorrect)
    • \n
    \n", "donate_link": "", "num_ratings": 4805, "screenshots": {"1": {"src": "https://ps.w.org/duplicator/assets/screenshot-1.jpg?rev=1542809", "caption": "Main Interface for all Backups"}, "2": {"src": "https://ps.w.org/duplicator/assets/screenshot-2.jpg?rev=1542809", "caption": "Create Backup Step 1"}, "3": {"src": "https://ps.w.org/duplicator/assets/screenshot-3.jpg?rev=1542809", "caption": "Create Backup Step 2"}, "4": {"src": "https://ps.w.org/duplicator/assets/screenshot-4.jpg?rev=1542809", "caption": "Build Process"}, "5": {"src": "https://ps.w.org/duplicator/assets/screenshot-5.jpg?rev=1542809", "caption": "Installer Screen"}}, "support_url": "https://wordpress.org/support/plugin/duplicator/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "andreamk": {"avatar": "https://secure.gravatar.com/avatar/6a98e39825f4a832783bafc6b9c35306a16c2b39416190d87c063cb23a63c598?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/andreamk/", "display_name": "Andrea"}, "seedprod": {"avatar": "https://secure.gravatar.com/avatar/2d883c95bfb5c6bceaf025d740dd46527d3bf150601d0f2b7d9ddea5051267b5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/seedprod/", "display_name": "SeedProd"}}, "last_updated": "2025-10-14 4:33pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/duplicator.1.5.14.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f312-73d6-8dd2-0232ee3a32ac", "name": "Duplicator – Backups & Migration Plugin – Cloud Backups, Scheduled Backups, & More", "slug": "duplicator", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760459580, "version": "1.5.14"}, "support_threads": 17, "requires_plugins": [], "short_description": "The best WordPress backup and migration plugin. Quickly and easily backup ,migrate, copy, move, or clone your site from one location to another.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 15}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1b3c-728a-a985-0b301a6e65f6', 'did:web:api.aspiredev.org:packages:wp-plugin:duracelltomi-google-tag-manager', 'duracelltomi-google-tag-manager', 'GTM4WP – A Google Tag Manager (GTM) plugin for WordPress', '

    Google Tag Manager (GTM) is Google’s free tool for everyone to manage and deploy analytics and marketing tags as well as other code snippets
    -using an intuitive web UI. To learn more about this tool, visit the official website.

    -

    This plugin places the GTM container code snippets onto your WordPress website so that you do not need to add it manually.
    -Multiple containers are also supported!

    -

    The plugin complements your GTM setup by pushing page meta data and user information into the so called data layer.
    -Google’s official help pages includes more details about the data layer.

    -

    PHP 7.4 is required to use this plugin.

    -

    GTM container code placement

    -

    The original GTM container code is divided into two parts:

    -

    The first part is a javascript code snippet that is added to the <head> section of every page of the website.
    -This part is critical to enable all features of GTM, and this plugin helps to place this part
    -correctly on your site.

    -

    The second part is an iframe snippet that acts as a failsafe/fallback should users’ JavaScript be disabled.
    -Google recommends – for best performance – to place this code snippet directly after the opening <body> tag on each page.

    -

    Albeit not ideal, it will work when placed lower in the code. This plugin provides a code placement option for the second code snippet.

    -

    If your WordPress theme is compatible with the additions of WordPress 5.2 then this plugin will place this second code to the right place.
    -Users of the Genisis theme, GeneratePress theme, Elementor, Oxygen Builder and Beaver Builder Theme will also have this placed correctly.
    -To utilize this, set the compatibility mode in plugin options to off.

    -

    All other users can place this second code snippet using a custom PHP code (“Manually coded” option) or select the so called “Footer” option to
    -add the code lower in the code (it is not the recommended way but will work)

    -

    Basic data included

    -
      -
    • post/page titles
    • -
    • post/page dates
    • -
    • post/page category names
    • -
    • post/page tag names
    • -
    • post/page author ID and name
    • -
    • post/page ID
    • -
    • post types
    • -
    • post format
    • -
    • post count on the current page + in the current category/tag/taxonomy
    • -
    • custom terms associated with any post type
    • -
    • logged in status
    • -
    • logged in user role
    • -
    • logged in user ID (to track cross device behaviour in Google Analytics)
    • -
    • logged in user email address (both unhashed and SHA256 hased values to be used with tracking)
    • -
    • logger in user creation date
    • -
    • site search data
    • -
    • site name and id (for WordPress multisite instances)
    • -
    • IP address of the visitor (please use the explicit consent of the visitor to utilize this)
    • -
    -

    Browser / OS / Device data

    -
      -
    • browser data (name, version, engine)
    • -
    • OS data (name, version)
    • -
    • device data (type, manufacturer, model)
    • -
    -

    Data is provided using the WhichBrowser library: http://whichbrowser.net/

    -

    Weather data

    -

    (beta)

    -

    Push data about users’ current weather conditions into the dataLayer. This can be used to generate weather-related
    -audience/remarketing lists on ad platforms and allows for user segmentation in your web analytics solutions:

    -
      -
    • weather category (clouds, rain, snow, etc.)
    • -
    • weather description: more detailed data
    • -
    • temperature in Celsius or Fahrenheit
    • -
    • air pressure
    • -
    • wind speed and degrees
    • -
    -

    Weather data is queried from Open Weather Map. Depending on your websites traffic, additional fees may apply:
    -http://openweathermap.org/price

    -

    An (free) API key from OpenWeatherMap is required for this feature to work.

    -

    ipstack.com is used to determine the site visitor’s location. A (free) API key from IPStack.com is required for this feature to work:
    -https://ipstack.com/product

    -

    Media player events

    -

    (experimental)

    -

    Track users’ interaction with any embedded media:

    -
      -
    • YouTube
    • -
    • Vimeo
    • -
    • Soundcloud
    • -
    -

    DataLayer events can be chosen to fire upon media player load, media is being played, paused/stopped and optionally when
    -the user reaches 10, 20, 30, …, 90, 100% of the media duration.

    -

    Tracking is supported for embedded media using the built-in oEmbed feature of WordPress as well as most other media plugins
    -and copy/pasted codes. Players injected into the website after page load are not currently supported.

    -

    Scroll tracking

    -

    Fire tags based on how the visitor scrolls from the top to the bottom of a page.
    -An example would be to separate “readers” (who spend a specified amount of time on a page) from “scrollers”
    -(who only scroll through within seconds). You can use these events to fire Analytics tags and/or remarketing/conversion tags
    -(for micro conversions).

    -

    Scroll tracking is based on the solution originally created by

    -
      -
    • Nick Mihailovski
    • -
    • Thomas Baekdal
    • -
    • Avinash Kaushik
    • -
    • Joost de Valk
    • -
    • Eivind Savio
    • -
    • Justin Cutroni
    • -
    -

    Original script:
    -http://cutroni.com/blog/2012/02/21/advanced-content-tracking-with-google-analytics-part-1/

    -

    Blacklist & Whitelist Tag Manager tags, triggers and variables

    -

    To increase website security, you have the option to white- and blacklist tags/triggers/variables.
    -You can prevent specific tags from firing or the use of certain variable types regardless of your GTM setup.

    -

    If the Google account associated with your GTM account is being hacked, an attacker could easily
    -execute malware on your website without accessing its code on your hosting server. By blacklisting custom HTML tags
    -and/or custom JavaScript variables you can secure the Tag Manager container.

    -

    Integration

    -

    Google Tag Manager for WordPress integrates with several popular plugins. More integration to come!

    -
      -
    • Contact Form 7: fire an event when a Contact Form 7 form was submitted with any result (mail sent, mail failed, spam detected, invalid input)
    • -
    • WooCommerce: -
        -
      • Implementation of GA4 E-commerce
      • -
      • Does not support promotions since WooCommerce does not have such a feature (yet)
      • -
      • Does not support refunds
      • -
      • Compatibility with High Performance Order Storage (HPOS)
      • -
      -
    • -
    • AMP: load your AMP container on the AMP version of your pages
    • -
    • Cookiebot: use automatic cookie blocking mode if needed
    • -
    • Google Consent Mode v2: fire the “default” command with specific consent flags to integrat with non-certified Consent Management Platforms (CMPs) and plugins.
    • -
    -

    Server side containers

    -

    If you are using a server side container
    -you can enter your custom domain name and custom path to load gtm.js from your there.

    -

    Exclude specific user roles from being tracked

    -

    You can set which user roles needs to be excluded from tracking when a user with that role visits the frontend. This will completely disable the container code for that user.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "GTM4WP – A Google Tag Manager (GTM) plugin for WordPress", "slug": "duracelltomi-google-tag-manager", "tags": {"gtm": "gtm", "google-ads": "google ads", "tag-manager": "tag manager", "google-analytics": "google analytics", "google-tag-manager": "google tag manager"}, "added": "2013-09-23", "icons": {"1x": "https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-128x128.png?rev=1708451", "2x": "https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-256x256.png?rev=1708451"}, "author": "Thomas Geiger", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-772x250.png?rev=1708451", "high": "https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-1544x500.png?rev=1708451"}, "ratings": {"1": 15, "2": 2, "3": 5, "4": 1, "5": 130}, "version": "1.22.1", "homepage": "https://gtm4wp.com/", "requires": "3.4.0", "sections": {"faq": "\n
    \nHow can I …\n\n

    \n

    Tutorials for various Google Tag Manager settings and implementation are available on the plugin’s website:
    \nhttps://gtm4wp.com/setup-gtm4wp-features

    \n

    \n
    \nPayPal / 3rd party payment gateway transactions in WooCommerce are not being tracked in Google Analytics\n\n

    \n

    PayPal and some other 3rd party payment gateways do not redirect users back to your website upon successful transaction by default.
    \nIt offers the route back for your customer but it can happen that users close the browser before arriving at your thankyou page
    \n(aka. order received page). This means that neither Google Analytics tags or any other tags have the chance to fire.

    \n

    Enable auto-return in your payment gateway settings. This will instruct them to show a quick info page after payment
    \nand redirect the user back to your site. This will improve the accuracy and frequency of tracked transactions.

    \n

    \n
    \nPurchase event is not tracked with WooCommerce\n\n

    \n

    If you are using a 3rd party plugin that alters the default order received page in a way that does not utilize the integration hooks
    \nof WooCommerce then this can happen. Either stop using this 3rd party plugin or ask them to better mimic the behavior of the
    \ndefault order received page by supporting the woocommerce is_order_received_page and the woocommerce_thankyou actions and filters.

    \n

    \n
    \nWhy isn’t there an option to blacklist tag/variable classes\n\n

    \n

    Although Google recommends to blacklist tags and variables using classes, people struggle to know
    \nwhich tags/variables gets affected. Therefore I opted for individual tags and variables rather than classes
    \non the blacklist tabs.

    \n

    Regarding variables; ensure they are not part of any critical tags as blacklisting such variables will render said tags useless.

    \n

    \n
    \nHow can I track scroll events in Google Tag Manager?\n\n

    \n

    Google Tag Manager supports basic scroll depth tracking based on percentage or pixels natively. This plugin adds
    \nadditional scroll tracking events, more focused on capturing the users’ intent and/or engagement.

    \n

    There are five dataLayer events you can use in your rule definitions:

    \n
      \n
    • gtm4wp.reading.articleLoaded: the content has been loaded
    • \n
    • gtm4wp.reading.startReading: the visitor started to scroll. The timeToScroll dataLayer variable stores duration since the article loaded (in seconds)
    • \n
    • gtm4wp.reading.contentBottom: the visitor reached the end of the content (not the page!). timeToScroll dataLayer variable updated
    • \n
    • gtm4wp.reading.pagebottom: the visitor reached the end of the page. timeToScroll dataLayer variable updated
    • \n
    • gtm4wp.reading.readerType: based on time spent since article loaded we determine whether the user is a ‘scanner’ or ‘reader’ and store this in the readerType dataLayer variable
    • \n
    \n

    Example use cases: using these events as triggers, you can fire Google Universal Analytics and/or Google Ads remarketing/conversion tags
    \nto report micro conversions and/or to serve ads only to visitors who spend more time reading your content.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Critical Warning: Failed on All Core Function

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jaurioldm17 on August 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am writing this review to save other developers and site owners the immense amount of time I have just lost. I needed to implement standard GA4 e-commerce tracking on a professional WordPress/WooCommerce site. Based on its popularity and countless recommendations, I chose GTM4WP as the solution to generate the required dataLayer.

    \n\n\n\n

    Unfortunately, after days of intensive, professional-level debugging, I discovered that the plugin was completely non-functional in my specific—yet very common—environment.

    \n\n\n\n

    The plugin failed at its two most essential tasks:

    \n\n\n\n
      \n
    1. GTM Snippet Injection: The plugin''s most basic feature—injecting the GTM container script into the website''s <head> and <body>—did not work at all. The script was simply not present. I had to bypass this functionality entirely and inject the code manually using another method (Code Snippets) just to get our GTM container to load.
    2. \n\n\n\n
    3. E-commerce dataLayer Generation (The Deal-Breaker): This is the primary reason anyone uses this plugin. After successfully loading our GTM container manually, I ran a full test purchase. By analyzing the GTM debug mode and the site''s dataLayer object, I can confirm that GTM4WP completely failed to generate the purchase event and its corresponding ecommerce object on the WooCommerce order confirmation page. It produced absolutely nothing.
    4. \n
    \n\n\n\n

    My Technical Environment (Please read this before you install):
    To help others, here is the stack where the plugin failed. This is likely the source of the conflict:

    \n\n\n\n
      \n
    • CMS: WordPress
    • \n\n\n\n
    • E-commerce: WooCommerce
    • \n\n\n\n
    • Theme: Hello Elementor (using a child theme)
    • \n\n\n\n
    • Page Builder: Elementor Pro
    • \n\n\n\n
    • Key Detail: I am using Elementor Pro to customize the WooCommerce page templates, including the \"Thank You\" / \"Order Received\" page.
    • \n
    \n\n\n\n

    Conclusion:

    \n\n\n\n

    My conclusion is that GTM4WP is fundamentally incompatible with themes or page builders that override default WooCommerce templates—a standard practice for virtually any custom-designed website today. Because it cannot handle this common scenario, the plugin proved to be entirely useless for my project.

    \n\n\n\n

    While it may work on simple sites with basic, unmodified themes, it is not a reliable solution for professional, customized builds. The time and effort wasted diagnosing this incompatibility were substantial. I cannot recommend this plugin and strongly advise users with a similar tech stack to seek a manual implementation from the start.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thought this was beginner friendly. Is not.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wheelchair on August 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thought this was beginner friendly. Is not.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin com problema

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rbneuro on March 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Em vários sites que o plugin está instalado, após alguma atualização, o menu mobile de alguns sites não abre.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Poor Support Experience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Shubham Verma (s4shubhamverma) on December 2, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’m disappointed with the support for this plugin. I submitted a question over a week ago, but I have yet to receive any response from the support team.

    \n\n\n\n

    While the plugin itself may work fine, having reliable support is critical, especially when issues arise. Unfortunately, the lack of responsiveness has made it difficult to trust this plugin for long-term use.

    \n\n\n\n

    I hope the team improves their support response time in the future.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    GTM has stopped pushing data to contact form 7 version 6.0

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy AnDurugkar on November 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hi Thomas , I have noticed that gtm4wp.contactForm7Submitted is not getting the data when I updated the contact form 7 to version 6.0, I reverted the version back to 5.9.7 and it started working again!, will this helpfull?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I was trying to make GTM work with Litespeed cache plugin for hours

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy quentintaran on October 20, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was stuck for hours trying to tweak the litespeed cache plugin so it''d work with Google Tag Manager. The solution was simple: use gtm4wp.

    \n\n\n\n

    For some reason, this plugin avoids the conflicts with litespeed cache (allowing your tags to fire). I''m so happy this works because my site really needs the performance boost from litespeed while being able to track results.

    \n\n\n\n

    A huge thank you to the developper!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works well. Needs UI improvements

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy skylabb on September 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good plugin to integrate GTM. The UI can use some polishing up.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    no support and breaks page

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mcdeth on July 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Support is nonexistent, enabling tracking post pages will break your site if it''s not a post not woocommerce page. Excluding administrator from tracking doesn''t work neither.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Literally a nightmare with no responses from plugin author

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kirstylmarks on March 27, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin Author,... Maybe start responding to the plethora of questions regarding issues with your plugin in terms of the latest updates and i may just improve my rating. Otherwise this has been a nightmare across all our key conversions

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    GTM4WP to the rescue

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jussipv on March 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Since the \"official\" Google Analytics plugin for WooCommerce was broken by the developers and has been for weeks now I had to start looking for alternatives.

    \n\n\n\n

    I''ve used GTM4WP before as well and to be honest I''m not sure why I ever switched.

    \n\n\n\n

    Switching back to GTM4WP I can finally get conversions recorded again in my GA4! This is amazing! Why is this plugin even free? Would easily pay for it

    \n
    \n
    \n", "changelog": "

    1.22.1

    \n
      \n
    • Fixed: yet another fix to the purchase tracking. Thanks Khnaz35
    • \n
    \n

    1.22

    \n
      \n
    • Added: new WooCommerce option to change the event timeout of the select_item event. Could help some UX issues when a user has an ad blocker installed.
    • \n
    • Added: new WordPress filter GTM4WP_WPFILTER_OVERWRITE_COMO_FLAG / gtm4wp_overwrite_consent_mode_flag to overwrite Consent Mode flags in the default command. Can be used by consent banner plugins to mitigate support issues.
    • \n
    • Fixed: Unwanted content on frontend when container placement set to off and gtm4wp_the_gtm_tag() called manually. Thanks Michael Bourne
    • \n
    • Fixed: Add to cart tracking broken with Bricks template and WooCommerce
    • \n
    • Updated: bundled WhichBrowser library updated to the latest version. This is a short term solution to solve PHP erros, on the long term, the plan is to switch to Matomo Device Detector
    • \n
    • Updated: allow the / character in GTM container path to support same tag gateway
    • \n
    • Updated / Fixed: I reverted back the purchase tracking with WooCommerce to the logic present in v1.20- as the new way caused more headache than it resolved. Sorry for everyone who was affected by this.
    • \n
    \n

    1.21.1

    \n
      \n
    • Fix: undefined product_qty variable prevents add_to_cart in some cases. Thanks diegoarda
    • \n
    • Fix: clarified that WebToffee integartion is only needed with the legacy 2.x product line
    • \n
    • Fix: Reflected Cross-Site Scripting (XSS) with site search tracking. Thanks godzeo!
    • \n
    \n

    1.21

    \n

    !!! WARNING !!!
    \nSignificant change in WooCommerce integration!
    \nCheck your template whether it supports must have hook: woocommerce_thankyou

    \n
      \n
    • Added: new WooCommerce option that allows you to fire the view_item event during page load of a variable product using parent product data.
    • \n
    • Added: item_group_id parameter includes the parent ID of a variable product in WooCommerce
    • \n
    • Added: GTM4WP_WPFILTER_GET_CSP_NONCE (PHP constant) / gtm4wp_get_csp_nonce WordPress filter to add nonce to script tags supporting Content Security Policy (CSP) setups
    • \n
    • Updated: purchase event is now fired on the woocommerce_thankyou event. This will move execution time behind consent state checks in most cases making the purchase event working in more cases
    • \n
    • Updated: GTM4WP_WPFILTER_EEC_ORDER_DATA / gtm4wp_eec_order_data WordPress filter now has a second parameter passing the whole WC_Order object to the filter after the $order_data parameter
    • \n
    • Updated: no view_cart or begin_checkout events will be triggered from the backend if there are no products in the cart. This prevents wrong data collection with themes not properly supporting WooCommerce hooks
    • \n
    • Fix: load_plugin_textdomain() related PHP notice on admin page
    • \n
    \n

    1.20.3

    \n
      \n
    • Fix: notice “_load_textdomain_just_in_time was called incorrectly” – WordPress 6.7 compatibility
    • \n
    \n

    1.20.2

    \n
      \n
    • Fix: Wrong ID parameter used tracking product variations (id instead of item_id). Thanks micmaf
    • \n
    • Fix: do not track add_to_cart in product lists when ‘Select options’ or ‘View products’ buttons are clicked
    • \n
    • Fix: JavaScript reference error while updating cart count in WooCommerce. Thanks Sakuk3
    • \n
    • Fix: hash customerBillingEmailHash just like orderData.customer.billing.email_hash (for enhanced conversions, use the value in orderData)
    • \n
    • Added: minimum required WooCommerce version (currently 5.0+) is displayed now on GTM4WP admin
    • \n
    \n

    1.20.1

    \n
      \n
    • Fix: do not load GTM container when OFF and console.log OFF. Thanks morvy
    • \n
    • Fix: reverted a change where item_id in ecommerce data layer was converted to numeric type when the value was a numeric value. It will be kept as a string to preserve compatibility with other integrations.
    • \n
    • Fix: JavaScript error when element ID not set correctly in scroll tracking
    • \n
    • Changed: better normalize and hash user data with WooCommerce + orderData variable for enhanced conventions
    • \n
    • Changed: PHP code optimization by hans2103
    • \n
    • Added: New filter to be able to modify data in the orderData variable on a WooCommerce order received page. Filter can be accessed either using the GTM4WP_WPFILTER_EEC_ORDER_DATA constant or the gtm4wp_eec_order_data string.
    • \n
    \n

    1.20

    \n

    THE BIG CLEANUP RELEASE!

    \n

    Lots of deprecated features removed.
    \nThe code of WooCommerce integration was cleaned and restructured, if you have any custom code that relies on GTM4WP internal data structure,
    \nplease update the plugin on a test version of your website before updating your live site!

    \n
      \n
    • Removed: deprecated Universal Analytics events for WooCommerce
    • \n
    • Removed: deprecated filter GTM4WP_WPFILTER_AFTER_DATALAYER/gtm4wp_after_datalayer
    • \n
    • Removed: deprecated filter GTM4WP_WPFILTER_ADDGLOBALVARS/gtm4wp_add_global_vars
    • \n
    • Removed: deprecated feature that puts the ‘Do not track’ option of the browser into the data layer. It is a deprecated browser feature therefore removed from this plugin.
    • \n
    • Removed: deprecated Google Optimize integration
    • \n
    • Removed: deprecated constants GTM4WP_OPTION_BLACKLIST_MACRO_* and GTM4WP_OPTION_BLACKLIST_
    • \n
    • Removed: deprecated WordPress filter GTM4WP_WPFILTER_GETTHEGTMTAG (deprecated in v1.16)
    • \n
    • Changed: lots of internal function names and variable names changed, although is not recommended to depend on them, if you did, check your code
    • \n
    • Changed: renamed WP filter gtm4wp_datalayer_on_pageload to gtm4wp_woocommerce_datalayer_on_pageload to better reflect when it is called.
    • \n
    • Changed: orderData data layer variable in WooCommerce integration now includes keys to better support enhanced conversions setup:\n
        \n
      • orderData.customer.billing.first_name_hash
      • \n
      • orderData.customer.billing.last_name_hash
      • \n
      • orderData.customer.billing.phone_hash
      • \n
      \n
    • \n
    • Deprecated: orderData.customer.billing.emailhash, please update to use orderData.customer.billing.email_hash (with an underscore)
    • \n
    • Added: stockstatus key into the product array of every ecommerce action. Returns the value of WP_Product->get_stock_status(). Thanks hans2103.
    • \n
    • Added: integration with WebToffee GDPR Cookie Consent plugin. GTM4WP can not fire a GTM event when user consent changes or when a previously stored consent has been loaded.
    • \n
    • Fixed: add_payment_info and add_shipping_info events were not fired during checkout submit when not fired before on the page.
    • \n
    • Fixed: GTM4WP will only look for the user’s IP address in the REMOTE_ADDR server variable. You may enter a custom HTTP header instead in plugin settings.
    • \n
    \n

    1.19.1

    \n
      \n
    • Fixed: run additional checks when determing product category to prevent PHP errors in certain cases
    • \n
    • Fixed: corrected Consent Mode flag names in admin page description texts
    • \n
    \n

    1.19

    \n

    WARNING!
    \nUniversal Analytics / GA3 ecommerce events deprecated!
    \nPlease update your GTM setup so that it does not rely on any of the following GTM4WP events and the old ecommerce data layer:
    \n* gtm4wp.productClickEEC
    \n* gtm4wp.addProductToCartEEC
    \n* gtm4wp.removeFromCartEEC
    \n* gtm4wp.checkoutOptionEEC
    \n* gtm4wp.checkoutStepEEC
    \n* gtm4wp.changeDetailViewEEC
    \n* gtm4wp.orderCompletedEEC

    \n

    Instead of the above events, you can use the new GA4 ecommerce events (add_to_cart, purchase, etc.)
    \nIn the Universal Analytics GTM tag now you have an option to use the GA4 ecommerce data in the data layer.
    \nIf you are on GA360 and still collecting ecommerce data, you need to update your GTM setup to use that option firing on the GA4 ecommerce events.

    \n
      \n
    • Updated: WooCommerce integration now accepts the primary category selection of Yoast SEO and Rank Math SEO
    • \n
    • Updated: use the gtm4wp_admin_page_capability filter to modify the capability needed to use the admin page (thanks emreerkan)
    • \n
    • Fixed: price did not include the .00 postfix for integers in the add_to_cart event
    • \n
    • Added: if needed, you can turn on clearing the ecommerce object before a new GA4 event is being pushed.
    • \n
    • Added: support for Google Consent Mode default command for use cases where the consent management tool does not support it already
    • \n
    \n

    1.18.1

    \n
      \n
    • Fixed: PHP notice about Undefined variable: blocking_cookie
    • \n
    \n

    1.18

    \n
      \n
    • Fixed: error while checking the new customer status in WooCommerce on the order received page (thanks morvy)
    • \n
    • Fixed: Call to a member function get_meta() on null error on WooCommerce order received page (thanks Dekadinious)
    • \n
    • Updated: WordPress and WooCommerce compatibility
    • \n
    • Updated: Deprecated Google Optimize integration as the tool is sunsetting in September 2023
    • \n
    • Added: Create a cookie named block_gtm4wp_geoip after a specific user selected cookie preferences. Set the value to either “yes”, “true”, “on” or “1” and the GeoIP (and weather API) feature will be disabled for that particular user
    • \n
    \n", "description": "

    Google Tag Manager (GTM) is Google’s free tool for everyone to manage and deploy analytics and marketing tags as well as other code snippets
    \nusing an intuitive web UI. To learn more about this tool, visit the official website.

    \n

    This plugin places the GTM container code snippets onto your WordPress website so that you do not need to add it manually.
    \nMultiple containers are also supported!

    \n

    The plugin complements your GTM setup by pushing page meta data and user information into the so called data layer.
    \nGoogle’s official help pages includes more details about the data layer.

    \n

    PHP 7.4 is required to use this plugin.

    \n

    GTM container code placement

    \n

    The original GTM container code is divided into two parts:

    \n

    The first part is a javascript code snippet that is added to the <head> section of every page of the website.
    \nThis part is critical to enable all features of GTM, and this plugin helps to place this part
    \ncorrectly on your site.

    \n

    The second part is an iframe snippet that acts as a failsafe/fallback should users’ JavaScript be disabled.
    \nGoogle recommends – for best performance – to place this code snippet directly after the opening <body> tag on each page.

    \n

    Albeit not ideal, it will work when placed lower in the code. This plugin provides a code placement option for the second code snippet.

    \n

    If your WordPress theme is compatible with the additions of WordPress 5.2 then this plugin will place this second code to the right place.
    \nUsers of the Genisis theme, GeneratePress theme, Elementor, Oxygen Builder and Beaver Builder Theme will also have this placed correctly.
    \nTo utilize this, set the compatibility mode in plugin options to off.

    \n

    All other users can place this second code snippet using a custom PHP code (“Manually coded” option) or select the so called “Footer” option to
    \nadd the code lower in the code (it is not the recommended way but will work)

    \n

    Basic data included

    \n
      \n
    • post/page titles
    • \n
    • post/page dates
    • \n
    • post/page category names
    • \n
    • post/page tag names
    • \n
    • post/page author ID and name
    • \n
    • post/page ID
    • \n
    • post types
    • \n
    • post format
    • \n
    • post count on the current page + in the current category/tag/taxonomy
    • \n
    • custom terms associated with any post type
    • \n
    • logged in status
    • \n
    • logged in user role
    • \n
    • logged in user ID (to track cross device behaviour in Google Analytics)
    • \n
    • logged in user email address (both unhashed and SHA256 hased values to be used with tracking)
    • \n
    • logger in user creation date
    • \n
    • site search data
    • \n
    • site name and id (for WordPress multisite instances)
    • \n
    • IP address of the visitor (please use the explicit consent of the visitor to utilize this)
    • \n
    \n

    Browser / OS / Device data

    \n
      \n
    • browser data (name, version, engine)
    • \n
    • OS data (name, version)
    • \n
    • device data (type, manufacturer, model)
    • \n
    \n

    Data is provided using the WhichBrowser library: http://whichbrowser.net/

    \n

    Weather data

    \n

    (beta)

    \n

    Push data about users’ current weather conditions into the dataLayer. This can be used to generate weather-related
    \naudience/remarketing lists on ad platforms and allows for user segmentation in your web analytics solutions:

    \n
      \n
    • weather category (clouds, rain, snow, etc.)
    • \n
    • weather description: more detailed data
    • \n
    • temperature in Celsius or Fahrenheit
    • \n
    • air pressure
    • \n
    • wind speed and degrees
    • \n
    \n

    Weather data is queried from Open Weather Map. Depending on your websites traffic, additional fees may apply:
    \nhttp://openweathermap.org/price

    \n

    An (free) API key from OpenWeatherMap is required for this feature to work.

    \n

    ipstack.com is used to determine the site visitor’s location. A (free) API key from IPStack.com is required for this feature to work:
    \nhttps://ipstack.com/product

    \n

    Media player events

    \n

    (experimental)

    \n

    Track users’ interaction with any embedded media:

    \n
      \n
    • YouTube
    • \n
    • Vimeo
    • \n
    • Soundcloud
    • \n
    \n

    DataLayer events can be chosen to fire upon media player load, media is being played, paused/stopped and optionally when
    \nthe user reaches 10, 20, 30, …, 90, 100% of the media duration.

    \n

    Tracking is supported for embedded media using the built-in oEmbed feature of WordPress as well as most other media plugins
    \nand copy/pasted codes. Players injected into the website after page load are not currently supported.

    \n

    Scroll tracking

    \n

    Fire tags based on how the visitor scrolls from the top to the bottom of a page.
    \nAn example would be to separate “readers” (who spend a specified amount of time on a page) from “scrollers”
    \n(who only scroll through within seconds). You can use these events to fire Analytics tags and/or remarketing/conversion tags
    \n(for micro conversions).

    \n

    Scroll tracking is based on the solution originally created by

    \n
      \n
    • Nick Mihailovski
    • \n
    • Thomas Baekdal
    • \n
    • Avinash Kaushik
    • \n
    • Joost de Valk
    • \n
    • Eivind Savio
    • \n
    • Justin Cutroni
    • \n
    \n

    Original script:
    \nhttp://cutroni.com/blog/2012/02/21/advanced-content-tracking-with-google-analytics-part-1/

    \n

    Blacklist & Whitelist Tag Manager tags, triggers and variables

    \n

    To increase website security, you have the option to white- and blacklist tags/triggers/variables.
    \nYou can prevent specific tags from firing or the use of certain variable types regardless of your GTM setup.

    \n

    If the Google account associated with your GTM account is being hacked, an attacker could easily
    \nexecute malware on your website without accessing its code on your hosting server. By blacklisting custom HTML tags
    \nand/or custom JavaScript variables you can secure the Tag Manager container.

    \n

    Integration

    \n

    Google Tag Manager for WordPress integrates with several popular plugins. More integration to come!

    \n
      \n
    • Contact Form 7: fire an event when a Contact Form 7 form was submitted with any result (mail sent, mail failed, spam detected, invalid input)
    • \n
    • WooCommerce:\n
        \n
      • Implementation of GA4 E-commerce
      • \n
      • Does not support promotions since WooCommerce does not have such a feature (yet)
      • \n
      • Does not support refunds
      • \n
      • Compatibility with High Performance Order Storage (HPOS)
      • \n
      \n
    • \n
    • AMP: load your AMP container on the AMP version of your pages
    • \n
    • Cookiebot: use automatic cookie blocking mode if needed
    • \n
    • Google Consent Mode v2: fire the “default” command with specific consent flags to integrat with non-certified Consent Management Platforms (CMPs) and plugins.
    • \n
    \n

    Server side containers

    \n

    If you are using a server side container
    \nyou can enter your custom domain name and custom path to load gtm.js from your there.

    \n

    Exclude specific user roles from being tracked

    \n

    You can set which user roles needs to be excluded from tracking when a user with that role visits the frontend. This will completely disable the container code for that user.

    \n", "screenshots": "
    1. \"Admin

      Admin panel

    2. \"Basic

      Basic settings

    3. \"Events\"

      Events

    4. \"Integration

      Integration panel

    5. \"Advanced

      Advanced settings

    6. \"Scroll

      Scroll tracking

    ", "installation": "
      \n
    1. Upload duracelltomi-google-tag-manager-for-wordpress to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to Settings / Google Tag Manager and enter your Google Tag Manager container ID and set additional options
    6. \n
    \n"}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.8.zip", "0.9": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.9.zip", "1.0": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.9.zip", "1.10": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.10.zip", "1.11": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.zip", "1.12": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.12.zip", "1.13": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.13.zip", "1.14": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.14.zip", "1.15": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.15.zip", "1.16": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.16.zip", "1.18": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.18.zip", "1.19": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.19.zip", "1.20": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.20.zip", "1.21": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.21.zip", "1.22": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.22.zip", "0.5.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.5.1.zip", "0.7.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.7.1.zip", "0.8.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.8.1.zip", "0.8.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.8.2.zip", "0.9.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.9.1.zip", "1.1.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.1.1.zip", "1.3.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.3.2.zip", "1.5.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.5.1.zip", "1.6.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.6.1.zip", "1.7.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.7.2.zip", "1.8.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.8.1.zip", "1.9.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.zip", "1.10.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.10.1.zip", "1.11.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.2.zip", "1.11.3": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.3.zip", "1.11.4": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.4.zip", "1.11.5": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.5.zip", "1.11.6": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.6.zip", "1.12.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.12.2.zip", "1.12.3": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.12.3.zip", "1.13.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.13.1.zip", "1.14.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.14.1.zip", "1.14.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.14.2.zip", "1.15.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.15.1.zip", "1.15.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.15.2.zip", "1.16.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.16.1.zip", "1.16.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.16.2.zip", "1.18.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.18.1.zip", "1.19.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.19.1.zip", "1.20.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.20.1.zip", "1.20.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.20.2.zip", "1.20.3": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.20.3.zip", "1.21.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.21.1.zip", "1.22.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.22.1.zip"}, "downloaded": 12883275, "description": "

    Google Tag Manager (GTM) is Google’s free tool for everyone to manage and deploy analytics and marketing tags as well as other code snippets
    \nusing an intuitive web UI. To learn more about this tool, visit the official website.

    \n

    This plugin places the GTM container code snippets onto your WordPress website so that you do not need to add it manually.
    \nMultiple containers are also supported!

    \n

    The plugin complements your GTM setup by pushing page meta data and user information into the so called data layer.
    \nGoogle’s official help pages includes more details about the data layer.

    \n

    PHP 7.4 is required to use this plugin.

    \n

    GTM container code placement

    \n

    The original GTM container code is divided into two parts:

    \n

    The first part is a javascript code snippet that is added to the <head> section of every page of the website.
    \nThis part is critical to enable all features of GTM, and this plugin helps to place this part
    \ncorrectly on your site.

    \n

    The second part is an iframe snippet that acts as a failsafe/fallback should users’ JavaScript be disabled.
    \nGoogle recommends – for best performance – to place this code snippet directly after the opening <body> tag on each page.

    \n

    Albeit not ideal, it will work when placed lower in the code. This plugin provides a code placement option for the second code snippet.

    \n

    If your WordPress theme is compatible with the additions of WordPress 5.2 then this plugin will place this second code to the right place.
    \nUsers of the Genisis theme, GeneratePress theme, Elementor, Oxygen Builder and Beaver Builder Theme will also have this placed correctly.
    \nTo utilize this, set the compatibility mode in plugin options to off.

    \n

    All other users can place this second code snippet using a custom PHP code (“Manually coded” option) or select the so called “Footer” option to
    \nadd the code lower in the code (it is not the recommended way but will work)

    \n

    Basic data included

    \n
      \n
    • post/page titles
    • \n
    • post/page dates
    • \n
    • post/page category names
    • \n
    • post/page tag names
    • \n
    • post/page author ID and name
    • \n
    • post/page ID
    • \n
    • post types
    • \n
    • post format
    • \n
    • post count on the current page + in the current category/tag/taxonomy
    • \n
    • custom terms associated with any post type
    • \n
    • logged in status
    • \n
    • logged in user role
    • \n
    • logged in user ID (to track cross device behaviour in Google Analytics)
    • \n
    • logged in user email address (both unhashed and SHA256 hased values to be used with tracking)
    • \n
    • logger in user creation date
    • \n
    • site search data
    • \n
    • site name and id (for WordPress multisite instances)
    • \n
    • IP address of the visitor (please use the explicit consent of the visitor to utilize this)
    • \n
    \n

    Browser / OS / Device data

    \n
      \n
    • browser data (name, version, engine)
    • \n
    • OS data (name, version)
    • \n
    • device data (type, manufacturer, model)
    • \n
    \n

    Data is provided using the WhichBrowser library: http://whichbrowser.net/

    \n

    Weather data

    \n

    (beta)

    \n

    Push data about users’ current weather conditions into the dataLayer. This can be used to generate weather-related
    \naudience/remarketing lists on ad platforms and allows for user segmentation in your web analytics solutions:

    \n
      \n
    • weather category (clouds, rain, snow, etc.)
    • \n
    • weather description: more detailed data
    • \n
    • temperature in Celsius or Fahrenheit
    • \n
    • air pressure
    • \n
    • wind speed and degrees
    • \n
    \n

    Weather data is queried from Open Weather Map. Depending on your websites traffic, additional fees may apply:
    \nhttp://openweathermap.org/price

    \n

    An (free) API key from OpenWeatherMap is required for this feature to work.

    \n

    ipstack.com is used to determine the site visitor’s location. A (free) API key from IPStack.com is required for this feature to work:
    \nhttps://ipstack.com/product

    \n

    Media player events

    \n

    (experimental)

    \n

    Track users’ interaction with any embedded media:

    \n
      \n
    • YouTube
    • \n
    • Vimeo
    • \n
    • Soundcloud
    • \n
    \n

    DataLayer events can be chosen to fire upon media player load, media is being played, paused/stopped and optionally when
    \nthe user reaches 10, 20, 30, …, 90, 100% of the media duration.

    \n

    Tracking is supported for embedded media using the built-in oEmbed feature of WordPress as well as most other media plugins
    \nand copy/pasted codes. Players injected into the website after page load are not currently supported.

    \n

    Scroll tracking

    \n

    Fire tags based on how the visitor scrolls from the top to the bottom of a page.
    \nAn example would be to separate “readers” (who spend a specified amount of time on a page) from “scrollers”
    \n(who only scroll through within seconds). You can use these events to fire Analytics tags and/or remarketing/conversion tags
    \n(for micro conversions).

    \n

    Scroll tracking is based on the solution originally created by

    \n
      \n
    • Nick Mihailovski
    • \n
    • Thomas Baekdal
    • \n
    • Avinash Kaushik
    • \n
    • Joost de Valk
    • \n
    • Eivind Savio
    • \n
    • Justin Cutroni
    • \n
    \n

    Original script:
    \nhttp://cutroni.com/blog/2012/02/21/advanced-content-tracking-with-google-analytics-part-1/

    \n

    Blacklist & Whitelist Tag Manager tags, triggers and variables

    \n

    To increase website security, you have the option to white- and blacklist tags/triggers/variables.
    \nYou can prevent specific tags from firing or the use of certain variable types regardless of your GTM setup.

    \n

    If the Google account associated with your GTM account is being hacked, an attacker could easily
    \nexecute malware on your website without accessing its code on your hosting server. By blacklisting custom HTML tags
    \nand/or custom JavaScript variables you can secure the Tag Manager container.

    \n

    Integration

    \n

    Google Tag Manager for WordPress integrates with several popular plugins. More integration to come!

    \n
      \n
    • Contact Form 7: fire an event when a Contact Form 7 form was submitted with any result (mail sent, mail failed, spam detected, invalid input)
    • \n
    • WooCommerce:\n
        \n
      • Implementation of GA4 E-commerce
      • \n
      • Does not support promotions since WooCommerce does not have such a feature (yet)
      • \n
      • Does not support refunds
      • \n
      • Compatibility with High Performance Order Storage (HPOS)
      • \n
      \n
    • \n
    • AMP: load your AMP container on the AMP version of your pages
    • \n
    • Cookiebot: use automatic cookie blocking mode if needed
    • \n
    • Google Consent Mode v2: fire the “default” command with specific consent flags to integrat with non-certified Consent Management Platforms (CMPs) and plugins.
    • \n
    \n

    Server side containers

    \n

    If you are using a server side container
    \nyou can enter your custom domain name and custom path to load gtm.js from your there.

    \n

    Exclude specific user roles from being tracked

    \n

    You can set which user roles needs to be excluded from tracking when a user with that role visits the frontend. This will completely disable the container code for that user.

    \n", "donate_link": "https://gtm4wp.com/", "num_ratings": 153, "screenshots": {"1": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-1.jpg?rev=1708455", "caption": "Admin panel"}, "2": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-2.jpg?rev=1708455", "caption": "Basic settings"}, "3": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-3.jpg?rev=1708455", "caption": "Events"}, "4": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-4.jpg?rev=1708455", "caption": "Integration panel"}, "5": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-5.jpg?rev=1708455", "caption": "Advanced settings"}, "6": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-6.jpg?rev=1708455", "caption": "Scroll tracking"}}, "support_url": "https://wordpress.org/support/plugin/duracelltomi-google-tag-manager/", "contributors": {"duracelltomi": {"avatar": "https://secure.gravatar.com/avatar/03ee154361278e764499efcc4ac1682262312ac2f215630c906c2dac6a54c53d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/duracelltomi/", "display_name": "Thomas Geiger"}}, "last_updated": "2025-09-08 12:47pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.22.1.zip", "author_profile": "https://profiles.wordpress.org/duracelltomi/", "business_model": false, "repository_url": "", "upgrade_notice": {"1.18": "

    Bugfixes and new features

    ", "1.19": "

    Added features

    ", "1.20": "
      \n
    • Lots of deprecated features removed, please read announcement post before upgrading!
    • \n
    ", "1.21": "

    Important update for WooCommerce users, please check the full changelog!

    ", "1.22": "

    Updated WhichBrowser library, new WooCommerce option, new filter for Consent Mode flags, fixes

    ", "1.18.1": "

    Bugfix release

    ", "1.19.1": "

    Bugfix release

    ", "1.20.1": "

    Bugfix release

    ", "1.20.2": "

    Bugfix release

    ", "1.20.3": "

    Bugfix release

    ", "1.21.1": "

    Bugfix release with an XSS fix

    ", "1.22.1": "

    Bugfix release

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f323-71d6-8b05-651be317adf2", "name": "GTM4WP – A Google Tag Manager (GTM) plugin for WordPress", "slug": "duracelltomi-google-tag-manager", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1757335620, "version": "1.22.1"}, "support_threads": 26, "requires_plugins": [], "short_description": "Advanced tag management for WordPress with Google Tag Manager", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1b4d-7079-880c-a22b4bfe4217', 'did:web:api.aspiredev.org:packages:wp-plugin:elementor', 'elementor', 'Elementor Website Builder – More Than Just a Page Builder', '

    -

    THE #1 NO CODE DRAG & DROP WORDPRESS WEBSITE BUILDER POWERING OVER 18M WEBSITES WORLDWIDE, NOW WITH AI.

    -

    Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly.

    -

    Unlock all features with Elementor Pro.

    -

    Need fast and secure cloud hosting for your Elementor site? Try out Elementor Hosting Powered by Google Cloud & Cloudflare. 4.9/5 TrustPilot score.

    -

    🌟 Create Professional Stunning Websites

    -
      -
    • Intuitive Drag & Drop Builder: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.
    • -
    • Pixel-Perfect Design Tools: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.
    • -
    • Template Library: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.
    • -
    • Advanced Widgets: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.
    • -
    • AI Capabilities: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.
    • -
    -

    🗝️ Key features:

    -
      -
    • Design System: Use Elementor’s Design System for consistent colors, typography, and design elements, ensuring a cohesive, professional look.
    • -
    • Responsive Design: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.
    • -
    • Mask Shapes: Turning any element, like an image or video, into whatever shape you desire to create standout designs.
    • -
    • CSS Transform: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.
    • -
    • Entrance Animations: Add entrance animations to elements to create engaging and interactive user experiences.
    • -
    • Revision History: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.
    • -
    • Developer-Friendly: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.
    • -
    • Floating Buttons: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.
    • -
    • Theme Builder [Pro]: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.
    • -
    • Popup Builder [Pro]: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.
    • -
    • Forms [Pro]: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.
    • -
    • WooCommerce Builder [Pro]: Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.
    • -
    • Dynamic Content [Pro]: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.
    • -
    • Notes [Pro]: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.
    • -
    • Custom Code [Pro]: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.
    • -
    • Custom CSS [Pro]: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.
    • -
    • Motion Effects [Pro]: Add advanced motion effects to elements for a more dynamic and engaging user experience.
    • -
    • Custom Fonts & Icons [Pro]: Upload and use custom fonts and icons to match your brand’s identity.
    • -
    -

    😍 Elementor FREE widgets

    -

    Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:

    -
      -
    • Heading. Add eye-catching headlines.
    • -
    • Image. Control the size, opacity and more.
    • -
    • Text Editor. Just like the WordPress editor.
    • -
    • Video. Add YouTube, Vimeo, Dailymotion or self-hosted videos.
    • -
    • Button. Create interactive buttons.
    • -
    • Link in Bio. Build link in bio components to promote your business / services.
    • -
    • Image Box. A box with image, headline and text.
    • -
    • Testimonials. Customer testimonials.
    • -
    • Icon. Place one or more of 600+ icons available.
    • -
    • Icon Box. An icon, headline, and text with one widget.
    • -
    • Social Icons. Link to your social pages with the Facebook/X (formerly Twitter) icons.
    • -
    • Image Gallery. Display your images in a grid.
    • -
    • Image Carousel. Create rotating carousels or sliders for chosen images.
    • -
    • Icon List. Use any icon to create a bullet list.
    • -
    • Counter. Show numbers in an escalating manner.
    • -
    • Progress Bar. Include an escalating progress bar.
    • -
    • Nested Tabs. Display content in vertical or horizontal tabs.
    • -
    • Nested Accordion. Display any type of content in collapsible sections.
    • -
    • Toggle. Use the Toggle to hide or display content, like FAQ.
    • -
    • Rating. Display how many stars (or another icon) other visitors gave.
    • -
    • Alert. Include a colored alert box to draw visitor’s attention.
    • -
    • HTML. Insert code into the page.
    • -
    • Shortcode. Insert shortcodes from any plugin into the page.
    • -
    • Menu Anchor. Link any menu to this anchor.
    • -
    • Read More. Set the Read More cut-off for the excerpt in archive pages.
    • -
    • Sidebar. Add sidebars onto the page.
    • -
    • Google Maps. Embed maps into the page.
    • -
    • SoundCloud. Add SoundCloud audio bits.
    • -
    • Divider. Separate content with a designed divider.
    • -
    • Spacer. Add space between elements.
    • -
    • Text Path. Attach your text to a path.
    • -
    • And counting…
    • -
    -

    🚀 Enhance Your Website

    -

    High-Performing Websites: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.

    -

    Key features include:

    -
      -
    • Reduced DOM Output: Streamlined HTML structure for faster rendering.
    • -
    • Improved Media File Loading: Optimized loading of images, videos, and other media assets.
    • -
    • Reduced CSS and JS Files: Minimized and concatenated stylesheets and scripts for quicker loading times.
    • -
    • Lazy Loading: Deferred loading of non-critical resources to improve initial page load speed.
    • -
    • Faster Font Loading: Efficient delivery of web fonts to enhance text rendering speed.
    • -
    • Optimized Front-End Asset Loading: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.
    • -
    • Element Caching: Cache frequently accessed design elements to reduce server response time and enhance overall performance.
    • -
    -

    🔥 Elementor Pro Features

    -

    Create unparalleled websites while saving time, money and resources with Elementor Pro’s full website builder. Get access to 100+ professional widgets, features, and tools.

    -

    Pro Design Widgets:

    -
      -
    1. Posts: Display your blog posts with customizable layouts and styles.
    2. -
    3. Share Buttons: Allow visitors to easily share your content on various social media platforms.
    4. -
    5. Portfolio: Showcase your work or projects with stunning portfolio layouts.
    6. -
    7. Slides: Create dynamic slideshows with custom animations and transitions.
    8. -
    9. Form: Design and customize advanced forms for user interaction and data collection.
    10. -
    11. Login: Add a login form or user registration module to your website.
    12. -
    13. Nav Menu: Customize and style your website’s navigation menu for better user experience.
    14. -
    15. Animated Headline: Create attention-grabbing headlines with animated effects.
    16. -
    17. Price Table: Display pricing plans or packages in a structured and visually appealing format.
    18. -
    19. Price List: Showcase a list of prices or services with customizable styling options.
    20. -
    21. Gallery: Create beautiful image galleries with various layout options and lightbox support.
    22. -
    23. Flip Box: Add interactive flip animations to highlight content or features.
    24. -
    25. Call to Action: Encourage user interaction and conversions with compelling call-to-action sections.
    26. -
    27. Media Carousel: Showcase a carousel of media files such as images or videos.
    28. -
    29. Testimonial Carousel: Display client testimonials in a carousel format for social proof.
    30. -
    31. Nested Carousel: Create nested carousels for more complex content organization.
    32. -
    33. Loop Carousel: Display content in a looped carousel for continuous viewing.
    34. -
    35. Table Of Content: Generate a table of contents for longer articles or guides to improve navigation.
    36. -
    37. Countdown: Add countdown timers to create urgency for promotions or events.
    38. -
    39. Facebook Page: Embed your Facebook page feed or content onto your website.
    40. -
    41. Blockquote: Highlight quotes or testimonials with stylish formatting options.
    42. -
    43. Template: Save and reuse design templates for consistent branding and layout.
    44. -
    45. Reviews: Showcase customer reviews and ratings to build trust and credibility.
    46. -
    47. Facebook Button: Add buttons to promote interactions with your Facebook page or content.
    48. -
    49. Facebook Embed: Embed Facebook posts or content onto your website.
    50. -
    51. Facebook Comments: Enable Facebook comments on your website’s pages or posts.
    52. -
    53. PayPal Button: Integrate PayPal buttons for easy online payments.
    54. -
    55. Stripe Button: Integrate Stripe payment buttons to facilitate secure online transactions.
    56. -
    57. Lottie Widget: Add Lottie animations to enhance visual appeal and engagement.
    58. -
    59. Code Highlight: Display code snippets with syntax highlighting for better readability.
    60. -
    61. Video Playlist: Create and customize playlists for video content on your website.
    62. -
    63. Mega Menu: Customize advanced menus for better navigation and displaying complex content.
    64. -
    65. Off Canvas: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.
    66. -
    -

    Pro Theme Widgets:

    -

    Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more

    -
      -
    1. Post Title: Customize the title of individual blog posts or pages.
    2. -
    3. Post Excerpt: Display a brief summary or teaser of your blog posts.
    4. -
    5. Post Content: Customize the main content area of your blog posts or pages.
    6. -
    7. Featured Image: Set and customize featured images for blog posts or pages.
    8. -
    9. Author Box: Display author information and bios on blog posts.
    10. -
    11. Post Comments: Customize the appearance and functionality of comments sections on your website.
    12. -
    13. Post Navigation: Add navigation links to adjacent posts for easy browsing.
    14. -
    15. Post Info: Display additional information about blog posts, such as author and date.
    16. -
    17. Site Logo: Upload and customize your website’s logo for branding purposes.
    18. -
    19. Site Title: Customize the title of your website.
    20. -
    21. Page Title: Customize the title of individual pages.
    22. -
    23. Search Bar: Add a search bar to allow users to search your website’s content.
    24. -
    25. Breadcrumbs: Display hierarchical navigation paths for better user navigation.
    26. -
    27. Sitemap: Generate a sitemap for better search engine indexing and user navigation.
    28. -
    29. Loop Grid: Design and customize grid layouts for blog post archives or product listings.
    30. -
    -

    Pro WooCommerce Widgets:

    -

    Design and customize a complete online shopping experience across your entire website.

    -
      -
    1. Product: Display individual products with customizable layouts and styles.
    2. -
    3. Breadcrumbs: Display hierarchical navigation paths for better user navigation within your store.
    4. -
    5. Product Title: Customize the title of individual products.
    6. -
    7. Product Images: Set and customize images for product listings.
    8. -
    9. Product Price: Display the price of individual products.
    10. -
    11. Add To Cart: Add customizable add to cart buttons for easy purchasing.
    12. -
    13. Product Rating: Display ratings and reviews for products.
    14. -
    15. Product Stock: Display stock availability for products.
    16. -
    17. Product Meta: Display additional information about products, such as SKU and categories.
    18. -
    19. Product Content: Customize the main content area of product descriptions.
    20. -
    21. Short Description: Display brief summaries or teasers of products.
    22. -
    23. Product Data Tabs: Organize product information into tabbed sections for better organization.
    24. -
    25. Additional Information: Display additional details about products, such as dimensions and weight.
    26. -
    27. Product Related: Showcase related products to encourage additional purchases.
    28. -
    29. Upsells: Promote upsell products to increase average order value.
    30. -
    31. Products: Display a grid or list of products with customizable settings.
    32. -
    33. Custom Add To Cart: Customize the add to cart button for specific products.
    34. -
    35. WooCommerce Pages: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.
    36. -
    37. Product Categories: Display product categories for easy navigation within your store.
    38. -
    39. Menu Cart: Display a cart icon in your navigation menu for easy access to the shopping cart.
    40. -
    41. Cart: Customize the appearance and functionality of the shopping cart page.
    42. -
    43. Checkout: Customize the appearance and functionality of the checkout page.
    44. -
    45. My Account: Customize the appearance and functionality of the customer account area.
    46. -
    47. Purchase Summary: Display a summary of purchases during the checkout process.
    48. -
    49. WooCommerce Notices: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.
    50. -
    -

    Build professional websites with Elementor Pro!

    -

    🔒 SECURITY AND COMPLIANCE

    -

    Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.

    -

    We encourage ethical security research through our Bug Bounty program. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.

    -

    For more information: Trust Center.

    -

    ♿ Accessibility Best Practices

    -

    Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.

    -

    🌐 Translated to 63+ languages, includes RTL support

    -

    Elementor supports multiple languages, typographies, and RTL, with editor translations in over 63 languages.

    -

    It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via translate.wordpress.org. See our guide on how to translate and localize the plugin.

    -

    ⏩ Use of 3rd Party Services

    -

    To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:

    -
      -
    • Google Fonts – are loaded to add additional fonts to your website. Google’s TOS and Privacy Policy
    • -
    • Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly mentioned, requiring your approval and manual opt-in. Learn more in our TOS and Privacy Policy.
    • -
    -

    📧 Related Products by Elementor

    -

    Image Optimizer: Superior image compression for faster, high-quality website performance.

    -

    Site Mailer: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.

    -

    📣 See What Our Users Have to Say

    -
    -

    “Elementor is hands down the best page builder out there” – ★★★★★ Graphicvision1

    -

    “An incredibly user-friendly plugin” – ★★★★★ Hyeyoga

    -

    “Easily, my most used WP plugin” – ★★★★★ Xander Venske

    -

    “I upgraded to the Pro version and just love this plugin!” – ★★★★★ Andybarn56

    -

    “Excellent product with great tech support” – ★★★★★ Martywilsonnj

    -
    -

    More testimonials

    -

    🌍 Join a Global Community

    -

    Join a global community that helps each other achieve their goals.

    -
      -
    • Discord Community – Topic and language-specific channels, plus Ella, an amazing AI helper, ready to assist you.
    • -
    • Facebook Community – Over 150K+ members, offering support, advice, feedback, and tutorials.
    • -
    • GitHub Community – Get information about releases, request features, or report a bug.
    • -
    • Elementor Addons, Themes, and Kits Themes and Kits – created specifically for Elementor.
    • -
    • Learn valuable insights and techniques from our YouTube Channel.
    • -
    • Access our Academy and Help Center – Find guides, tutorials, and resources to answer your questions and boost creativity.
    • -
    • Show your support by rating us on WordPress. Your feedback fuels our growth! 🤗
    • -
    • If you have questions or need support, visit the Plugin’s Forum. Elementor Pro users can get 24/7 premium support, …
    • -
    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Elementor Website Builder – More Than Just a Page Builder", "slug": "elementor", "tags": {"editor": "editor", "elementor": "elementor", "landing-page": "landing page", "page-builder": "page builder", "drag-and-drop": "drag-and-drop"}, "added": "2016-05-30", "icons": {"1x": "https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597", "2x": "https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597"}, "author": "Elementor", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133", "high": "https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133"}, "ratings": {"1": 631, "2": 106, "3": 108, "4": 218, "5": 6066}, "version": "3.32.5", "homepage": "https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash", "requires": "6.6", "sections": {"faq": "\n
    \nHow do I install Elementor?\n\n

    \n

    To install the free version of Elementor, follow the steps below:
    \nFrom your WordPress dashboard -> Go to Plugins -> Click on ‘Add new’-> In the Search field, enter Elementor and choose Elementor website builder.
    \nPress install -> After installation, click Activate.

    \n

    \n
    \nDoes Elementor work with all the themes?\n\n

    \n

    Elementor works all the themes that respect the coding standards of WordPress set by its Codex. It is recommended to use Elementor’s Hello Theme, a lightweight blank canvas, to enjoy full flexibility when using Elementor, and optimize your experience.

    \n

    \n
    \nIs Elementor compatible with Gutenberg?\n\n

    \n

    Elementor and Gutenberg work seamlessly together. As a user, you can easily decide which editor to use at every point while editing your site.

    \n

    \n
    \nCan I create an online store?\n\n

    \n

    Yes, with the Elementor Pro WooCommerce Builder you can customize every page of your store to create an amazing customer experience that drives sales.

    \n

    \n
    \nDoes it work with other WordPress plugins?\n\n

    \n

    It works with almost all the plugins. If you experience an incompatibility issue, please report it to us and to the plugin that conflicts with Elementor.

    \n

    \n
    \nDo I need to know how to code?\n\n

    \n

    No! Elementor provides you with all the widgets and features that you need to build a professional website without using code.

    \n

    \n
    \nDo I need to know how to design?\n\n

    \n

    No, you can choose between professionally designed kits and templates that fit toevery industry and have all you need to create your own professional website.

    \n

    \n
    \nWill Elementor slow down my website?\n\n

    \n

    As Elementor prioritizes speed and performance, you enjoy better and faster performance with each new version of Elementor. When testing the same page layout on older versions you can see a significant performance improvement, from a score of 82 in Google PageSpeed Insight in version 3.1, to a score of 95 i in version 3.5.

    \n

    \n
    \nIs my site secure with Elementor?\n\n

    \n

    The security of your website is extremely important to us and we take proactive measures to assure that your websites are secure. Elementor is ISO 27001 certified, and has a dedicated team of security professionals that implements industry best-practices for maximum security and compliance, 24/7.

    \n

    There is also a managed security Bug Bounty program, utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.

    \n

    \n
    \nCan I buy templates separately?\n\n

    \n

    Of course, you can use any template that supports Elementor.

    \n

    \n
    \nIs Elementor compatible with Post and Custom Post Types?\n\n

    \n

    Of course! You can set which post types will enable Elementor in the settings page.

    \n

    \n
    \nWhat is the difference between Elementor’s free Plugin and Elementor Pro\n\n

    \n

    Elementor’s Free version allows you to explore our revolutionary drag & drop live editor, basic widgets and templates. Elementor Pro (Essential, Advanced, Expert, Studio, and Agency) empowers you with more professional tools that speed up your workflow, give you access to human-powered support, help you build more advanced content, and convert visitors. See full comparison here.

    \n

    \n
    \nHow can I become a Contributor\n\n

    \n

    If you want to contribute, go to our Elementor GitHub Repository and see where you can help.
    \nYou can also add a new language via translate.wordpress.org. We’ve built a short guide explaining how to translate and localize the plugin.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Increíble constructor de paginas web

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jnegrete on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Sea vuelto mi constructor web por defecto, cada vez mejor

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tsvetelina Yankova

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tsvetelina456 on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s very user friendly , although it would be nicer to load things faster

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    O melhor editor para fazer sites profissionais e lojas online

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ZnetGuru (sterrivel) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Na nossa agência usamos o Elementor Website Builder diariamente, tanto em sites profissionais como em projetos institucionais, blogs e lojas com WooCommerce. Aprendemos a dominá-lo rapidamente, é intuitivo, e o editor visual torna tudo mais simples, permitindo-nos desenhar layouts limpos e ajustados sem escrever código. Os modelos de base ajudam-nos a iniciar com estrutura sólida, e o controlo responsivo permite-nos corrigir o mobile com precisão e sem esforço.

    \n\n\n\n

    Valorizamos a interface clara e organizada, a versão gratuita cobre bem sites simples e integra-se de forma estável com temas WordPress, quando avançamos para o Pro o Theme Builder dá-nos cabeçalhos, rodapés e templates completos, o fluxo mantém-se rápido, visual e previsível.

    \n\n\n\n

    Há cuidados essenciais, muitos widgets e add-ons pesam as páginas, por isso aplicamos cache, compressão e imagens otimizadas, fazemos backups e testes antes de grandes updates, a edição mobile é minuciosa, o HTML é denso, mas com boas práticas o desempenho fica sólido.

    \n\n\n\n

    O Elementor é a nossa ferramenta de eleição para criar em WordPress e WooCommerce. Com processo visual leve e controlado, entrega resultados profissionais e consistentes, serve bem páginas empresariais, blogs e marketing, a versão Pro justifica-se quando é preciso controlo total com o Theme Builder.

    \n\n\n\n

    Por exemplo, no blog corporativo, definimos o objetivo de unificar o visual e acelerar o mobile, criámos um template de artigo com campos dinâmicos e sumário com âncoras, adicionámos artigos relacionados e navegação anterior seguinte, otimizámos fontes locais com preload, lazy load e minificação, removemos scripts inúteis, o efeito foi claro, leitura mais confortável e carregamentos mais rápidos no telemóvel.

    \n\n\n\n

    Por exemplo, numa campanha de produto em WooCommerce, focámo-nos em conversão e menor abandono, desenhámos um single product leve com galeria otimizada, benefícios junto ao preço e variações claras, colocámos provas sociais e uma FAQ compacta junto ao botão de compra, usamos WebP, cache e limpeza de scripts, encurtámos o checkout, resultado, percurso mais direto e melhor taxa de compra.

    \n\n\n\n

    Outro exemplo prático no nosso dia a dia, nas páginas institucionais de tráfego orgânico, simplificámos a hierarquia de containers e trocámos widgets pesados por nativos, adotámos SVGs limpos, pré-carregámos fontes essenciais e adiámos scripts não críticos, no fim, LCP melhor no mobile, CLS estável e interação mais rápida, a navegação ficou leve sem perder detalhe.

    \n\n\n\n

    Sim, recomendamos este editor.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Esse é muito top! Recomendadíssimo

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Sandro Barone (sandroacv) on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Desde que conheci o Elementor, não deixei mais de usá-lo, é muito bom e o site não fica pesado, sem mencionar que o wordpress vem recebendo plugins super completos, o que deixa tudo mais leve.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It would be nice if the editing page opened faster.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy didi88 on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It would be nice if the editing page opened faster.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Tools

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy emdad on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Elementor Website Builder is a greatest tools for developer

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Version 3.32.4 causes conflicts with WooCommerce

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy metricainsight on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Version 3.32.4 Causes Conflicts with WooCommerce

    \n\n\n\n

    Be careful when updating to the latest version 3.32.4, as doing so may cause conflicts in the product section. This update causes products to display instead of others, product images to display incorrectly, and even product variations may be affected.

    \n\n\n\n

    I had to revert to version 3.25.10.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Elementor consumes your life

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sermalefico on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Slow, full of bugs everywhere, bugs that generate other bugs, bugs that are never fixed and have been reported for years, half-baked features that are always said to be implemented in future updates, not all CSS options are responsive in the editor, scarce dynamic data, terrible conditionals, horrible query post widget options and loop builder with minimal options, CSS that regenerates and breaks unexpectedly even if you have the caching option disabled, 404 error template condition doesn''t work well, numerous issues with CLS, high CPU usage, multiple incompatibilities with caching and optimization plugins. Moving containers or widgets in the navigator is a surgical task and sometimes impossible to perform. If you have an outdated Elementor or you''re coming from a client''s website, pray that everything doesn''t break.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Frustrating Lack of Support for Critical Developer Issues

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Umer Raza Cheema (umer75) on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m deeply disappointed with the Elementor support experience as a plugin developer. I''ve been trying to get help with critical development issues for 4 consecutive days without any meaningful response from the support team, despite multiple attempts and detailed bug reports.

    \n\n\n\n

    The Issues:
    I''m developing custom Elementor Dynamic Tags and facing major problems that prevent my plugin from functioning properly:

    \n\n\n\n
      \n
    1. Styling controls don''t work in Dynamic Tags (color, typography, border, padding controls generate no CSS)
    2. \n\n\n\n
    3. Icons don''t render properly in Dynamic Tags (Font Awesome/Custom icons load without styles)
    4. \n\n\n\n
    5. No wrapper element for Dynamic Tags, making {{WRAPPER}} placeholder useless
    6. \n\n\n\n
    7. No documentation on proper implementation for these advanced features
    8. \n
    \n\n\n\n

    My Support Requests:
    I''ve created 4 detailed technical topics with complete code examples and reproduction steps:

    \n\n\n\n
      \n
    1. Dynamic Tags: Styling Controls and Icons Not Rendering - Follow-up(3)
    2. \n\n\n\n
    3. Dynamic Tags: Styling Controls and Icons Not Rendering - Follow-up(2)
    4. \n\n\n\n
    5. Dynamic Tags: Styling Controls and Icons Not Rendering - Follow-up
    6. \n\n\n\n
    7. Styling Controls and Icons Not Rendering Properly in Custom Dynamic Tag
    8. \n
    \n\n\n\n

    The Frustrating Part:
    I''ve specifically mentioned @ricav, @miloss84, and @aracelil (plugin support team members) who are actively responding to other users'' topics, but completely ignoring my developer-focused issues. Meanwhile, I see them providing detailed answers to simpler questions from other users.

    \n\n\n\n

    Why This Matters:

    \n\n\n\n
      \n
    • The problems make Dynamic Tags practically unusable for any styled content
    • \n\n\n\n
    • There''s zero documentation on how to properly implement styling in Dynamic Tags
    • \n\n\n\n
    • The lack of response suggests developer tools are not a priority
    • \n
    \n\n\n\n

    What I Expected:

    \n\n\n\n
      \n
    • Guidance on proper implementation approach OR
    • \n\n\n\n
    • At minimum: \"We''re looking into this\" or \"This is a known limitation\"
    • \n
    \n\n\n\n

    The Impact:
    My plugin development is completely blocked. I cannot deliver professional results to my clients because core Elementor features don''t work as expected.

    \n\n\n\n

    To Elementor Team:
    Ignoring advanced development questions while answering basic usage questions creates a terrible experience for your ecosystem partners.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Terrible support and unprofessional treatment of paying customers

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy morphiaz (morphiazz) on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been an Elementor user for many years and manage several large-scale websites with 100,000 – 200,000 pages. Unfortunately, Elementor has been moving in the wrong direction both technically and support-wise.

    \n\n\n\n

    A current example: Since the update on September 15, 2025, Elementor has been randomly deleting the CSS files in the upload directory every 24 hours, even when nothing on the site has changed. As a result, cached pages suddenly point to CSS files that no longer exist — completely breaking the frontend. The only way to “fix” it is to purge the entire cache and force Elementor to regenerate the files - every 24 hours. For large websites, that’s not a quick fix — it’s a massive operational issue.

    \n\n\n\n

    Instead of addressing the root cause, support actually suggested switching to inline CSS — which might work for small projects but is absolutely unrealistic and unsustainable for large, high-traffic sites. Inline CSS at this scale would destroy performance, complicate maintenance, and make proper caching almost impossible.

    \n\n\n\n

    To make matters worse, the official Elementor Facebook support forum — run by Elementor itself — is a complete disaster:

    \n\n\n\n
      \n
    • Critical posts are deleted without explanation,
    • \n\n\n\n
    • Users trying to raise legitimate issues are personally attacked,
    • \n\n\n\n
    • Constructive feedback is ignored or shut down,
    • \n\n\n\n
    • Paying customers are treated like an inconvenience rather than valued clients.
    • \n
    \n\n\n\n

    I’ve rarely experienced a company that handles valid criticism so poorly. For a product aimed at professional developers and agencies, this is simply unacceptable.

    \n\n\n\n

    👉 Bottom line:

    \n\n\n\n
      \n
    • Technically unstable,
    • \n\n\n\n
    • Support quality is shockingly low,
    • \n\n\n\n
    • Zero transparency in communication,
    • \n\n\n\n
    • Disrespectful treatment of paying users.
    • \n
    \n\n\n\n

    At this point, I cannot recommend Elementor anymore. If you’re running serious, large-scale websites, do yourself a favor and look for alternatives before another update brings your site down overnight.

    \n
    \n
    \n", "changelog": "

    3.32.5 – 2025-10-21

    \n
      \n
    • Fix: Create Template dialog doesn’t close in WordPress Templates section
    • \n
    • Fix: Website Template fails to apply when Custom Code or Custom Icons are included
    • \n
    \n

    3.32.4 – 2025-10-05

    \n
      \n
    • Tweak: Added notice for Load Google Fonts Locally feature to clarify behavior and setup
    • \n
    \n

    3.32.3 – 2025-09-29

    \n
      \n
    • Fix: Custom post types are imported even when unselected in Website Templates import
    • \n
    • Fix: Taxonomy queries not connected properly to widgets in Website Templates import
    • \n
    \n

    3.32.2 – 2025-09-18

    \n
      \n
    • Tweak: Improved compatibility for 3rd-party plugins serving templates
    • \n
    • Fix: Structure Panel indicators not visible in RTL layouts
    • \n
    • Fix: Issues with loading Google Fonts when enabling or disabling Load Google Fonts Locally option (#32795)
    • \n
    • Fix: Background videos not displaying correctly on RTL websites
    • \n
    \n

    3.32.1 – 2025-09-16

    \n
      \n
    • Tweak: Disabled Load Google Fonts locally on all sites by default
    • \n
    • Tweak: Moved the Load Google Fonts locally option to the Performance tab as a feature
    • \n
    • Fix: Column editing handles appear outside the editing overlay
    • \n
    • Fix: Full width containers not aligned to the center
    • \n
    • Fix: Editor stuck on loading when using an Image Box widget with a link (#32756)
    • \n
    \n

    3.32.0 – 2025-09-15

    \n
      \n
    • New: Introducing Transform controls to move, scale, rotate, and skew elements with 2D and 3D support – Editor V4
    • \n
    • New: Introducing Transitions to control how elements animate between states – Editor V4
    • \n
    • New: Added filter and sort options in Class Manager – Editor V4
    • \n
    • New: Introducing advanced import and export customization for Website Templates, with selective import of themes, experiments, custom assets, and content
    • \n
    • Tweak: Added option to convert local styles into a reusable Global Class – Editor V4
    • \n
    • Tweak: Variables now update live on the canvas while editing a variable – Editor V4
    • \n
    • Tweak: Updated custom unit UI and improved functionality – Editor V4
    • \n
    • Tweak: Enabled typing negative values in style fields – Editor V4
    • \n
    • Tweak: Added Bottom position option on layout setting in Icon Box widget
    • \n
    • Tweak: Reduced API-Info size for better performance
    • \n
    • Tweak: Added option for connected users to install Elementor Pro via the Connect Account tab
    • \n
    • Tweak: Enabled ZIP download of Website Templates from the library
    • \n
    • Tweak: Merged Cloud Library feature into version
    • \n
    • Tweak: Optimized compiled CSS output for background videos
    • \n
    • Tweak: Merged Element Caching feature and moved to Performance tab
    • \n
    • Fix: Reaching the Global Class limit prevented page saving – Editor V4 (#32277)
    • \n
    • Fix: PHP 8.4 deprecation notices when running with WP_DEBUG enabled
    • \n
    • Fix: Indications popover not displaying correctly in repeaters for Background Overlay – Editor V4
    • \n
    • Fix: Reduced-motion preferences are not applied to entrance and exit animations
    • \n
    • Fix: Added required PHP and WordPress versions to the plugin header
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    \n

    THE #1 NO CODE DRAG & DROP WORDPRESS WEBSITE BUILDER POWERING OVER 18M WEBSITES WORLDWIDE, NOW WITH AI.

    \n

    Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly.

    \n

    Unlock all features with Elementor Pro.

    \n

    Need fast and secure cloud hosting for your Elementor site? Try out Elementor Hosting Powered by Google Cloud & Cloudflare. 4.9/5 TrustPilot score.

    \n

    🌟 Create Professional Stunning Websites

    \n
      \n
    • Intuitive Drag & Drop Builder: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.
    • \n
    • Pixel-Perfect Design Tools: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.
    • \n
    • Template Library: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.
    • \n
    • Advanced Widgets: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.
    • \n
    • AI Capabilities: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.
    • \n
    \n

    🗝️ Key features:

    \n
      \n
    • Design System: Use Elementor’s Design System for consistent colors, typography, and design elements, ensuring a cohesive, professional look.
    • \n
    • Responsive Design: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.
    • \n
    • Mask Shapes: Turning any element, like an image or video, into whatever shape you desire to create standout designs.
    • \n
    • CSS Transform: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.
    • \n
    • Entrance Animations: Add entrance animations to elements to create engaging and interactive user experiences.
    • \n
    • Revision History: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.
    • \n
    • Developer-Friendly: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.
    • \n
    • Floating Buttons: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.
    • \n
    • Theme Builder [Pro]: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.
    • \n
    • Popup Builder [Pro]: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.
    • \n
    • Forms [Pro]: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.
    • \n
    • WooCommerce Builder [Pro]: Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.
    • \n
    • Dynamic Content [Pro]: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.
    • \n
    • Notes [Pro]: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.
    • \n
    • Custom Code [Pro]: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.
    • \n
    • Custom CSS [Pro]: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.
    • \n
    • Motion Effects [Pro]: Add advanced motion effects to elements for a more dynamic and engaging user experience.
    • \n
    • Custom Fonts & Icons [Pro]: Upload and use custom fonts and icons to match your brand’s identity.
    • \n
    \n

    😍 Elementor FREE widgets

    \n

    Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:

    \n
      \n
    • Heading. Add eye-catching headlines.
    • \n
    • Image. Control the size, opacity and more.
    • \n
    • Text Editor. Just like the WordPress editor.
    • \n
    • Video. Add YouTube, Vimeo, Dailymotion or self-hosted videos.
    • \n
    • Button. Create interactive buttons.
    • \n
    • Link in Bio. Build link in bio components to promote your business / services.
    • \n
    • Image Box. A box with image, headline and text.
    • \n
    • Testimonials. Customer testimonials.
    • \n
    • Icon. Place one or more of 600+ icons available.
    • \n
    • Icon Box. An icon, headline, and text with one widget.
    • \n
    • Social Icons. Link to your social pages with the Facebook/X (formerly Twitter) icons.
    • \n
    • Image Gallery. Display your images in a grid.
    • \n
    • Image Carousel. Create rotating carousels or sliders for chosen images.
    • \n
    • Icon List. Use any icon to create a bullet list.
    • \n
    • Counter. Show numbers in an escalating manner.
    • \n
    • Progress Bar. Include an escalating progress bar.
    • \n
    • Nested Tabs. Display content in vertical or horizontal tabs.
    • \n
    • Nested Accordion. Display any type of content in collapsible sections.
    • \n
    • Toggle. Use the Toggle to hide or display content, like FAQ.
    • \n
    • Rating. Display how many stars (or another icon) other visitors gave.
    • \n
    • Alert. Include a colored alert box to draw visitor’s attention.
    • \n
    • HTML. Insert code into the page.
    • \n
    • Shortcode. Insert shortcodes from any plugin into the page.
    • \n
    • Menu Anchor. Link any menu to this anchor.
    • \n
    • Read More. Set the Read More cut-off for the excerpt in archive pages.
    • \n
    • Sidebar. Add sidebars onto the page.
    • \n
    • Google Maps. Embed maps into the page.
    • \n
    • SoundCloud. Add SoundCloud audio bits.
    • \n
    • Divider. Separate content with a designed divider.
    • \n
    • Spacer. Add space between elements.
    • \n
    • Text Path. Attach your text to a path.
    • \n
    • And counting…
    • \n
    \n

    🚀 Enhance Your Website

    \n

    High-Performing Websites: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.

    \n

    Key features include:

    \n
      \n
    • Reduced DOM Output: Streamlined HTML structure for faster rendering.
    • \n
    • Improved Media File Loading: Optimized loading of images, videos, and other media assets.
    • \n
    • Reduced CSS and JS Files: Minimized and concatenated stylesheets and scripts for quicker loading times.
    • \n
    • Lazy Loading: Deferred loading of non-critical resources to improve initial page load speed.
    • \n
    • Faster Font Loading: Efficient delivery of web fonts to enhance text rendering speed.
    • \n
    • Optimized Front-End Asset Loading: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.
    • \n
    • Element Caching: Cache frequently accessed design elements to reduce server response time and enhance overall performance.
    • \n
    \n

    🔥 Elementor Pro Features

    \n

    Create unparalleled websites while saving time, money and resources with Elementor Pro’s full website builder. Get access to 100+ professional widgets, features, and tools.

    \n

    Pro Design Widgets:

    \n
      \n
    1. Posts: Display your blog posts with customizable layouts and styles.
    2. \n
    3. Share Buttons: Allow visitors to easily share your content on various social media platforms.
    4. \n
    5. Portfolio: Showcase your work or projects with stunning portfolio layouts.
    6. \n
    7. Slides: Create dynamic slideshows with custom animations and transitions.
    8. \n
    9. Form: Design and customize advanced forms for user interaction and data collection.
    10. \n
    11. Login: Add a login form or user registration module to your website.
    12. \n
    13. Nav Menu: Customize and style your website’s navigation menu for better user experience.
    14. \n
    15. Animated Headline: Create attention-grabbing headlines with animated effects.
    16. \n
    17. Price Table: Display pricing plans or packages in a structured and visually appealing format.
    18. \n
    19. Price List: Showcase a list of prices or services with customizable styling options.
    20. \n
    21. Gallery: Create beautiful image galleries with various layout options and lightbox support.
    22. \n
    23. Flip Box: Add interactive flip animations to highlight content or features.
    24. \n
    25. Call to Action: Encourage user interaction and conversions with compelling call-to-action sections.
    26. \n
    27. Media Carousel: Showcase a carousel of media files such as images or videos.
    28. \n
    29. Testimonial Carousel: Display client testimonials in a carousel format for social proof.
    30. \n
    31. Nested Carousel: Create nested carousels for more complex content organization.
    32. \n
    33. Loop Carousel: Display content in a looped carousel for continuous viewing.
    34. \n
    35. Table Of Content: Generate a table of contents for longer articles or guides to improve navigation.
    36. \n
    37. Countdown: Add countdown timers to create urgency for promotions or events.
    38. \n
    39. Facebook Page: Embed your Facebook page feed or content onto your website.
    40. \n
    41. Blockquote: Highlight quotes or testimonials with stylish formatting options.
    42. \n
    43. Template: Save and reuse design templates for consistent branding and layout.
    44. \n
    45. Reviews: Showcase customer reviews and ratings to build trust and credibility.
    46. \n
    47. Facebook Button: Add buttons to promote interactions with your Facebook page or content.
    48. \n
    49. Facebook Embed: Embed Facebook posts or content onto your website.
    50. \n
    51. Facebook Comments: Enable Facebook comments on your website’s pages or posts.
    52. \n
    53. PayPal Button: Integrate PayPal buttons for easy online payments.
    54. \n
    55. Stripe Button: Integrate Stripe payment buttons to facilitate secure online transactions.
    56. \n
    57. Lottie Widget: Add Lottie animations to enhance visual appeal and engagement.
    58. \n
    59. Code Highlight: Display code snippets with syntax highlighting for better readability.
    60. \n
    61. Video Playlist: Create and customize playlists for video content on your website.
    62. \n
    63. Mega Menu: Customize advanced menus for better navigation and displaying complex content.
    64. \n
    65. Off Canvas: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.
    66. \n
    \n

    Pro Theme Widgets:

    \n

    Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more

    \n
      \n
    1. Post Title: Customize the title of individual blog posts or pages.
    2. \n
    3. Post Excerpt: Display a brief summary or teaser of your blog posts.
    4. \n
    5. Post Content: Customize the main content area of your blog posts or pages.
    6. \n
    7. Featured Image: Set and customize featured images for blog posts or pages.
    8. \n
    9. Author Box: Display author information and bios on blog posts.
    10. \n
    11. Post Comments: Customize the appearance and functionality of comments sections on your website.
    12. \n
    13. Post Navigation: Add navigation links to adjacent posts for easy browsing.
    14. \n
    15. Post Info: Display additional information about blog posts, such as author and date.
    16. \n
    17. Site Logo: Upload and customize your website’s logo for branding purposes.
    18. \n
    19. Site Title: Customize the title of your website.
    20. \n
    21. Page Title: Customize the title of individual pages.
    22. \n
    23. Search Bar: Add a search bar to allow users to search your website’s content.
    24. \n
    25. Breadcrumbs: Display hierarchical navigation paths for better user navigation.
    26. \n
    27. Sitemap: Generate a sitemap for better search engine indexing and user navigation.
    28. \n
    29. Loop Grid: Design and customize grid layouts for blog post archives or product listings.
    30. \n
    \n

    Pro WooCommerce Widgets:

    \n

    Design and customize a complete online shopping experience across your entire website.

    \n
      \n
    1. Product: Display individual products with customizable layouts and styles.
    2. \n
    3. Breadcrumbs: Display hierarchical navigation paths for better user navigation within your store.
    4. \n
    5. Product Title: Customize the title of individual products.
    6. \n
    7. Product Images: Set and customize images for product listings.
    8. \n
    9. Product Price: Display the price of individual products.
    10. \n
    11. Add To Cart: Add customizable add to cart buttons for easy purchasing.
    12. \n
    13. Product Rating: Display ratings and reviews for products.
    14. \n
    15. Product Stock: Display stock availability for products.
    16. \n
    17. Product Meta: Display additional information about products, such as SKU and categories.
    18. \n
    19. Product Content: Customize the main content area of product descriptions.
    20. \n
    21. Short Description: Display brief summaries or teasers of products.
    22. \n
    23. Product Data Tabs: Organize product information into tabbed sections for better organization.
    24. \n
    25. Additional Information: Display additional details about products, such as dimensions and weight.
    26. \n
    27. Product Related: Showcase related products to encourage additional purchases.
    28. \n
    29. Upsells: Promote upsell products to increase average order value.
    30. \n
    31. Products: Display a grid or list of products with customizable settings.
    32. \n
    33. Custom Add To Cart: Customize the add to cart button for specific products.
    34. \n
    35. WooCommerce Pages: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.
    36. \n
    37. Product Categories: Display product categories for easy navigation within your store.
    38. \n
    39. Menu Cart: Display a cart icon in your navigation menu for easy access to the shopping cart.
    40. \n
    41. Cart: Customize the appearance and functionality of the shopping cart page.
    42. \n
    43. Checkout: Customize the appearance and functionality of the checkout page.
    44. \n
    45. My Account: Customize the appearance and functionality of the customer account area.
    46. \n
    47. Purchase Summary: Display a summary of purchases during the checkout process.
    48. \n
    49. WooCommerce Notices: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.
    50. \n
    \n

    Build professional websites with Elementor Pro!

    \n

    🔒 SECURITY AND COMPLIANCE

    \n

    Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.

    \n

    We encourage ethical security research through our Bug Bounty program. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.

    \n

    For more information: Trust Center.

    \n

    ♿ Accessibility Best Practices

    \n

    Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.

    \n

    🌐 Translated to 63+ languages, includes RTL support

    \n

    Elementor supports multiple languages, typographies, and RTL, with editor translations in over 63 languages.

    \n

    It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via translate.wordpress.org. See our guide on how to translate and localize the plugin.

    \n

    ⏩ Use of 3rd Party Services

    \n

    To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:

    \n
      \n
    • Google Fonts – are loaded to add additional fonts to your website. Google’s TOS and Privacy Policy
    • \n
    • Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly mentioned, requiring your approval and manual opt-in. Learn more in our TOS and Privacy Policy.
    • \n
    \n

    📧 Related Products by Elementor

    \n

    Image Optimizer: Superior image compression for faster, high-quality website performance.

    \n

    Site Mailer: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.

    \n

    📣 See What Our Users Have to Say

    \n
    \n

    “Elementor is hands down the best page builder out there” – ★★★★★ Graphicvision1

    \n

    “An incredibly user-friendly plugin” – ★★★★★ Hyeyoga

    \n

    “Easily, my most used WP plugin” – ★★★★★ Xander Venske

    \n

    “I upgraded to the Pro version and just love this plugin!” – ★★★★★ Andybarn56

    \n

    “Excellent product with great tech support” – ★★★★★ Martywilsonnj

    \n
    \n

    More testimonials

    \n

    🌍 Join a Global Community

    \n

    Join a global community that helps each other achieve their goals.

    \n
      \n
    • Discord Community – Topic and language-specific channels, plus Ella, an amazing AI helper, ready to assist you.
    • \n
    • Facebook Community – Over 150K+ members, offering support, advice, feedback, and tutorials.
    • \n
    • GitHub Community – Get information about releases, request features, or report a bug.
    • \n
    • Elementor Addons, Themes, and Kits Themes and Kits – created specifically for Elementor.
    • \n
    • Learn valuable insights and techniques from our YouTube Channel.
    • \n
    • Access our Academy and Help Center – Find guides, tutorials, and resources to answer your questions and boost creativity.
    • \n
    • Show your support by rating us on WordPress. Your feedback fuels our growth! 🤗
    • \n
    • If you have questions or need support, visit the Plugin’s Forum. Elementor Pro users can get 24/7 premium support, …
    • \n
    \n", "screenshots": "
    1. \"<strong>Visual

      Visual Drag and Drop Editor - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.

    2. \"<strong>Full

      Full Design System - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.

    3. \"<strong>Responsive

      Responsive Design Fully edit your website and customize the behavior on desktop, tablet, & mobile to optimize the visitor experience on every device.

    4. \"<strong>Kits

      Kits and Templates - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.

    5. \"<strong>Nested

      Nested Elements Leverage Elementor''s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.

    6. \"<strong>Motion

      Motion Effects - Add entrance animations and transitions to any element in your website to captivate visitors.

    ", "installation": "

    Minimum Requirements

    \n
      \n
    • WordPress 6.5 or greater
    • \n
    • PHP version 7.4 or greater
    • \n
    • MySQL version 5.0 or greater
    • \n
    \n

    Recommended Requirements

    \n
      \n
    • PHP version 8.1 or greater
    • \n
    • MySQL version 5.6 or greater
    • \n
    • WordPress Memory limit of 64 MB or greater (128 MB or higher is preferred)
    • \n
    \n

    \n

    Installation

    \n
      \n
    1. Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the wp-content/plugins/ directory of your WordPress installation.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    5. Go to Pages > Add New
    6. \n
    7. Press the ‘Edit with Elementor’ button.
    8. \n
    9. Now you can drag and drop widgets from the left panel onto the content area, as well as add new sections and columns that make up the page structure.
    10. \n
    \n

    For documentation and tutorials visit our Knowledge Base.

    \n"}, "versions": {"3.0.0": "https://downloads.wordpress.org/plugin/elementor.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/elementor.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/elementor.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/elementor.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/elementor.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/elementor.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/elementor.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/elementor.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/elementor.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/elementor.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/elementor.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/elementor.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/elementor.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/elementor.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/elementor.3.1.4.zip", "3.2.0": "https://downloads.wordpress.org/plugin/elementor.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/elementor.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/elementor.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/elementor.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/elementor.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/elementor.3.2.5.zip", "3.3.0": "https://downloads.wordpress.org/plugin/elementor.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/elementor.3.3.1.zip", "3.4.0": "https://downloads.wordpress.org/plugin/elementor.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/elementor.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/elementor.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/elementor.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/elementor.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/elementor.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/plugin/elementor.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/plugin/elementor.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/plugin/elementor.3.4.8.zip", "3.5.0": "https://downloads.wordpress.org/plugin/elementor.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/elementor.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/elementor.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/elementor.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/elementor.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/elementor.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/elementor.3.5.6.zip", "3.6.0": "https://downloads.wordpress.org/plugin/elementor.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/elementor.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/elementor.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/elementor.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/elementor.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/elementor.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/elementor.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/elementor.3.6.7.zip", "3.6.8": "https://downloads.wordpress.org/plugin/elementor.3.6.8.zip", "3.7.0": "https://downloads.wordpress.org/plugin/elementor.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/elementor.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/elementor.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/elementor.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/plugin/elementor.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/plugin/elementor.3.7.5.zip", "3.7.6": "https://downloads.wordpress.org/plugin/elementor.3.7.6.zip", "3.7.7": "https://downloads.wordpress.org/plugin/elementor.3.7.7.zip", "3.7.8": "https://downloads.wordpress.org/plugin/elementor.3.7.8.zip", "3.8.0": "https://downloads.wordpress.org/plugin/elementor.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/elementor.3.8.1.zip", "3.9.0": "https://downloads.wordpress.org/plugin/elementor.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/elementor.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/elementor.3.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/elementor.zip", "3.0.10": "https://downloads.wordpress.org/plugin/elementor.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/elementor.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/plugin/elementor.3.0.12.zip", "3.0.13": "https://downloads.wordpress.org/plugin/elementor.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/plugin/elementor.3.0.14.zip", "3.0.15": "https://downloads.wordpress.org/plugin/elementor.3.0.15.zip", "3.0.16": "https://downloads.wordpress.org/plugin/elementor.3.0.16.zip", "3.10.0": "https://downloads.wordpress.org/plugin/elementor.3.10.0.zip", "3.10.1": "https://downloads.wordpress.org/plugin/elementor.3.10.1.zip", "3.10.2": "https://downloads.wordpress.org/plugin/elementor.3.10.2.zip", "3.11.0": "https://downloads.wordpress.org/plugin/elementor.3.11.0.zip", "3.11.1": "https://downloads.wordpress.org/plugin/elementor.3.11.1.zip", "3.11.2": "https://downloads.wordpress.org/plugin/elementor.3.11.2.zip", "3.11.3": "https://downloads.wordpress.org/plugin/elementor.3.11.3.zip", "3.11.4": "https://downloads.wordpress.org/plugin/elementor.3.11.4.zip", "3.11.5": "https://downloads.wordpress.org/plugin/elementor.3.11.5.zip", "3.12.0": "https://downloads.wordpress.org/plugin/elementor.3.12.0.zip", "3.12.1": "https://downloads.wordpress.org/plugin/elementor.3.12.1.zip", "3.12.2": "https://downloads.wordpress.org/plugin/elementor.3.12.2.zip", "3.13.0": "https://downloads.wordpress.org/plugin/elementor.3.13.0.zip", "3.13.1": "https://downloads.wordpress.org/plugin/elementor.3.13.1.zip", "3.13.2": "https://downloads.wordpress.org/plugin/elementor.3.13.2.zip", "3.13.3": "https://downloads.wordpress.org/plugin/elementor.3.13.3.zip", "3.13.4": "https://downloads.wordpress.org/plugin/elementor.3.13.4.zip", "3.14.0": "https://downloads.wordpress.org/plugin/elementor.3.14.0.zip", "3.14.1": "https://downloads.wordpress.org/plugin/elementor.3.14.1.zip", "3.15.0": "https://downloads.wordpress.org/plugin/elementor.3.15.0.zip", "3.15.1": "https://downloads.wordpress.org/plugin/elementor.3.15.1.zip", "3.15.2": "https://downloads.wordpress.org/plugin/elementor.3.15.2.zip", "3.15.3": "https://downloads.wordpress.org/plugin/elementor.3.15.3.zip", "3.16.0": "https://downloads.wordpress.org/plugin/elementor.3.16.0.zip", "3.16.1": "https://downloads.wordpress.org/plugin/elementor.3.16.1.zip", "3.16.2": "https://downloads.wordpress.org/plugin/elementor.3.16.2.zip", "3.16.3": "https://downloads.wordpress.org/plugin/elementor.3.16.3.zip", "3.16.4": "https://downloads.wordpress.org/plugin/elementor.3.16.4.zip", "3.16.5": "https://downloads.wordpress.org/plugin/elementor.3.16.5.zip", "3.16.6": "https://downloads.wordpress.org/plugin/elementor.3.16.6.zip", "3.17.0": "https://downloads.wordpress.org/plugin/elementor.3.17.0.zip", "3.17.1": "https://downloads.wordpress.org/plugin/elementor.3.17.1.zip", "3.17.2": "https://downloads.wordpress.org/plugin/elementor.3.17.2.zip", "3.17.3": "https://downloads.wordpress.org/plugin/elementor.3.17.3.zip", "3.18.0": "https://downloads.wordpress.org/plugin/elementor.3.18.0.zip", "3.18.1": "https://downloads.wordpress.org/plugin/elementor.3.18.1.zip", "3.18.2": "https://downloads.wordpress.org/plugin/elementor.3.18.2.zip", "3.18.3": "https://downloads.wordpress.org/plugin/elementor.3.18.3.zip", "3.19.0": "https://downloads.wordpress.org/plugin/elementor.3.19.0.zip", "3.19.1": "https://downloads.wordpress.org/plugin/elementor.3.19.1.zip", "3.19.2": "https://downloads.wordpress.org/plugin/elementor.3.19.2.zip", "3.19.3": "https://downloads.wordpress.org/plugin/elementor.3.19.3.zip", "3.19.4": "https://downloads.wordpress.org/plugin/elementor.3.19.4.zip", "3.20.0": "https://downloads.wordpress.org/plugin/elementor.3.20.0.zip", "3.20.1": "https://downloads.wordpress.org/plugin/elementor.3.20.1.zip", "3.20.2": "https://downloads.wordpress.org/plugin/elementor.3.20.2.zip", "3.20.3": "https://downloads.wordpress.org/plugin/elementor.3.20.3.zip", "3.20.4": "https://downloads.wordpress.org/plugin/elementor.3.20.4.zip", "3.21.0": "https://downloads.wordpress.org/plugin/elementor.3.21.0.zip", "3.21.1": "https://downloads.wordpress.org/plugin/elementor.3.21.1.zip", "3.21.2": "https://downloads.wordpress.org/plugin/elementor.3.21.2.zip", "3.21.3": "https://downloads.wordpress.org/plugin/elementor.3.21.3.zip", "3.21.4": "https://downloads.wordpress.org/plugin/elementor.3.21.4.zip", "3.21.5": "https://downloads.wordpress.org/plugin/elementor.3.21.5.zip", "3.21.6": "https://downloads.wordpress.org/plugin/elementor.3.21.6.zip", "3.21.7": "https://downloads.wordpress.org/plugin/elementor.3.21.7.zip", "3.21.8": "https://downloads.wordpress.org/plugin/elementor.3.21.8.zip", "3.22.0": "https://downloads.wordpress.org/plugin/elementor.3.22.0.zip", "3.22.1": "https://downloads.wordpress.org/plugin/elementor.3.22.1.zip", "3.22.2": "https://downloads.wordpress.org/plugin/elementor.3.22.2.zip", "3.22.3": "https://downloads.wordpress.org/plugin/elementor.3.22.3.zip", "3.23.0": "https://downloads.wordpress.org/plugin/elementor.3.23.0.zip", "3.23.1": "https://downloads.wordpress.org/plugin/elementor.3.23.1.zip", "3.23.2": "https://downloads.wordpress.org/plugin/elementor.3.23.2.zip", "3.23.3": "https://downloads.wordpress.org/plugin/elementor.3.23.3.zip", "3.23.4": "https://downloads.wordpress.org/plugin/elementor.3.23.4.zip", "3.24.0": "https://downloads.wordpress.org/plugin/elementor.3.24.0.zip", "3.24.1": "https://downloads.wordpress.org/plugin/elementor.3.24.1.zip", "3.24.2": "https://downloads.wordpress.org/plugin/elementor.3.24.2.zip", "3.24.3": "https://downloads.wordpress.org/plugin/elementor.3.24.3.zip", "3.24.4": "https://downloads.wordpress.org/plugin/elementor.3.24.4.zip", "3.24.5": "https://downloads.wordpress.org/plugin/elementor.3.24.5.zip", "3.24.6": "https://downloads.wordpress.org/plugin/elementor.3.24.6.zip", "3.24.7": "https://downloads.wordpress.org/plugin/elementor.3.24.7.zip", "3.24.8": "https://downloads.wordpress.org/plugin/elementor.3.24.8.zip", "3.25.0": "https://downloads.wordpress.org/plugin/elementor.3.25.0.zip", "3.25.1": "https://downloads.wordpress.org/plugin/elementor.3.25.1.zip", "3.25.2": "https://downloads.wordpress.org/plugin/elementor.3.25.2.zip", "3.25.3": "https://downloads.wordpress.org/plugin/elementor.3.25.3.zip", "3.25.4": "https://downloads.wordpress.org/plugin/elementor.3.25.4.zip", "3.25.5": "https://downloads.wordpress.org/plugin/elementor.3.25.5.zip", "3.25.6": "https://downloads.wordpress.org/plugin/elementor.3.25.6.zip", "3.25.7": "https://downloads.wordpress.org/plugin/elementor.3.25.7.zip", "3.25.8": "https://downloads.wordpress.org/plugin/elementor.3.25.8.zip", "3.25.9": "https://downloads.wordpress.org/plugin/elementor.3.25.9.zip", "3.26.0": "https://downloads.wordpress.org/plugin/elementor.3.26.0.zip", "3.26.1": "https://downloads.wordpress.org/plugin/elementor.3.26.1.zip", "3.26.2": "https://downloads.wordpress.org/plugin/elementor.3.26.2.zip", "3.26.3": "https://downloads.wordpress.org/plugin/elementor.3.26.3.zip", "3.26.4": "https://downloads.wordpress.org/plugin/elementor.3.26.4.zip", "3.26.5": "https://downloads.wordpress.org/plugin/elementor.3.26.5.zip", "3.27.0": "https://downloads.wordpress.org/plugin/elementor.3.27.0.zip", "3.27.1": "https://downloads.wordpress.org/plugin/elementor.3.27.1.zip", "3.27.2": "https://downloads.wordpress.org/plugin/elementor.3.27.2.zip", "3.27.3": "https://downloads.wordpress.org/plugin/elementor.3.27.3.zip", "3.27.4": "https://downloads.wordpress.org/plugin/elementor.3.27.4.zip", "3.27.5": "https://downloads.wordpress.org/plugin/elementor.3.27.5.zip", "3.27.6": "https://downloads.wordpress.org/plugin/elementor.3.27.6.zip", "3.27.7": "https://downloads.wordpress.org/plugin/elementor.3.27.7.zip", "3.28.0": "https://downloads.wordpress.org/plugin/elementor.3.28.0.zip", "3.28.1": "https://downloads.wordpress.org/plugin/elementor.3.28.1.zip", "3.28.2": "https://downloads.wordpress.org/plugin/elementor.3.28.2.zip", "3.28.3": "https://downloads.wordpress.org/plugin/elementor.3.28.3.zip", "3.28.4": "https://downloads.wordpress.org/plugin/elementor.3.28.4.zip", "3.29.0": "https://downloads.wordpress.org/plugin/elementor.3.29.0.zip", "3.29.1": "https://downloads.wordpress.org/plugin/elementor.3.29.1.zip", "3.29.2": "https://downloads.wordpress.org/plugin/elementor.3.29.2.zip", "3.30.0": "https://downloads.wordpress.org/plugin/elementor.3.30.0.zip", "3.30.1": "https://downloads.wordpress.org/plugin/elementor.3.30.1.zip", "3.30.2": "https://downloads.wordpress.org/plugin/elementor.3.30.2.zip", "3.30.3": "https://downloads.wordpress.org/plugin/elementor.3.30.3.zip", "3.30.4": "https://downloads.wordpress.org/plugin/elementor.3.30.4.zip", "3.31.0": "https://downloads.wordpress.org/plugin/elementor.3.31.0.zip", "3.31.1": "https://downloads.wordpress.org/plugin/elementor.3.31.1.zip", "3.31.2": "https://downloads.wordpress.org/plugin/elementor.3.31.2.zip", "3.31.3": "https://downloads.wordpress.org/plugin/elementor.3.31.3.zip", "3.31.4": "https://downloads.wordpress.org/plugin/elementor.3.31.4.zip", "3.31.5": "https://downloads.wordpress.org/plugin/elementor.3.31.5.zip", "3.32.0": "https://downloads.wordpress.org/plugin/elementor.3.32.0.zip", "3.32.1": "https://downloads.wordpress.org/plugin/elementor.3.32.1.zip", "3.32.2": "https://downloads.wordpress.org/plugin/elementor.3.32.2.zip", "3.32.3": "https://downloads.wordpress.org/plugin/elementor.3.32.3.zip", "3.32.4": "https://downloads.wordpress.org/plugin/elementor.3.32.4.zip", "3.32.5": "https://downloads.wordpress.org/plugin/elementor.3.32.5.zip", "3.0.8.1": "https://downloads.wordpress.org/plugin/elementor.3.0.8.1.zip", "3.25.10": "https://downloads.wordpress.org/plugin/elementor.3.25.10.zip", "3.25.11": "https://downloads.wordpress.org/plugin/elementor.3.25.11.zip", "3.1.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.1.0-dev1.zip", "3.1.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.1.0-dev2.zip", "3.1.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.1.0-dev3.zip", "3.4.0-dev7": "https://downloads.wordpress.org/plugin/elementor.3.4.0-dev7.zip", "3.4.0-dev8": "https://downloads.wordpress.org/plugin/elementor.3.4.0-dev8.zip", "3.4.0-dev9": "https://downloads.wordpress.org/plugin/elementor.3.4.0-dev9.zip", "3.5.0-dev8": "https://downloads.wordpress.org/plugin/elementor.3.5.0-dev8.zip", "3.5.0-dev9": "https://downloads.wordpress.org/plugin/elementor.3.5.0-dev9.zip", "3.6.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.6.0-dev1.zip", "3.7.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.7.0-dev1.zip", "3.1.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.1.0-beta1.zip", "3.1.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.1.0-beta2.zip", "3.1.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.1.0-beta3.zip", "3.1.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.1.0-beta4.zip", "3.10.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.10.0-dev1.zip", "3.11.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.11.0-dev1.zip", "3.11.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.11.0-dev2.zip", "3.11.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.11.0-dev3.zip", "3.13.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.13.0-dev3.zip", "3.13.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.13.0-dev4.zip", "3.16.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.16.0-dev1.zip", "3.16.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.16.0-dev2.zip", "3.17.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.17.0-dev2.zip", "3.17.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.17.0-dev3.zip", "3.17.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.17.0-dev4.zip", "3.18.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.18.0-dev1.zip", "3.19.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev1.zip", "3.19.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev2.zip", "3.19.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev3.zip", "3.19.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev4.zip", "3.19.0-dev5": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev5.zip", "3.19.0-dev6": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev6.zip", "3.20.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.20.0-dev1.zip", "3.20.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.20.0-dev2.zip", "3.20.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.20.0-dev3.zip", "3.20.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.20.0-dev4.zip", "3.21.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.21.0-dev1.zip", "3.21.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.21.0-dev2.zip", "3.21.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.21.0-dev3.zip", "3.22.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev1.zip", "3.22.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev2.zip", "3.22.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev3.zip", "3.22.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev4.zip", "3.22.0-dev5": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev5.zip", "3.22.0-dev6": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev6.zip", "3.23.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev1.zip", "3.23.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev2.zip", "3.23.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev3.zip", "3.23.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev4.zip", "3.23.0-dev5": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev5.zip", "3.23.0-dev6": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev6.zip", "3.24.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.24.0-dev1.zip", "3.24.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.24.0-dev2.zip", "3.24.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.24.0-dev3.zip", "3.25.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.25.0-dev1.zip", "3.25.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.25.0-dev2.zip", "3.25.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.25.0-dev3.zip", "3.26.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.26.0-dev1.zip", "3.26.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.26.0-dev2.zip", "3.26.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.26.0-dev3.zip", "3.26.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.26.0-dev4.zip", "3.26.0-dev5": "https://downloads.wordpress.org/plugin/elementor.3.26.0-dev5.zip", "3.27.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.27.0-dev1.zip", "3.27.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.27.0-dev2.zip", "3.28.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.28.0-dev1.zip", "3.28.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.28.0-dev2.zip", "3.28.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.28.0-dev3.zip", "3.29.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.29.0-dev1.zip", "3.29.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.29.0-dev2.zip", "3.29.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.29.0-dev3.zip", "3.29.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.29.0-dev4.zip", "3.30.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.30.0-dev1.zip", "3.30.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.30.0-dev2.zip", "3.30.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.30.0-dev3.zip", "3.31.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.31.0-dev1.zip", "3.31.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.31.0-dev2.zip", "3.32.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.32.0-dev1.zip", "3.32.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.32.0-dev2.zip", "3.32.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.32.0-dev3.zip", "3.33.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.33.0-dev1.zip", "3.33.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.33.0-dev2.zip", "3.33.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.33.0-dev3.zip", "3.33.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.33.0-dev4.zip", "3.5.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta1.zip", "3.5.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta2.zip", "3.5.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta3.zip", "3.5.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta4.zip", "3.5.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta5.zip", "3.5.0-beta7": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta7.zip", "3.5.0-beta8": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta8.zip", "3.6.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.6.0-beta1.zip", "3.6.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.6.0-beta2.zip", "3.6.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.6.0-beta3.zip", "3.6.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.6.0-beta4.zip", "3.6.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.6.0-beta5.zip", "3.6.0-dev10": "https://downloads.wordpress.org/plugin/elementor.3.6.0-dev10.zip", "3.7.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.7.0-beta1.zip", "3.7.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.7.0-beta2.zip", "3.7.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.7.0-beta3.zip", "3.7.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.7.0-beta4.zip", "3.8.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.8.0-beta1.zip", "3.8.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.8.0-beta2.zip", "3.8.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.8.0-beta3.zip", "3.11.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.11.0-beta1.zip", "3.11.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.11.0-beta2.zip", "3.11.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.11.0-beta3.zip", "3.13.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.13.0-beta1.zip", "3.13.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.13.0-beta2.zip", "3.13.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.13.0-beta3.zip", "3.14.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.14.0-beta1.zip", "3.14.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.14.0-beta2.zip", "3.14.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.14.0-beta3.zip", "3.14.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.14.0-beta4.zip", "3.14.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.14.0-beta5.zip", "3.16.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.16.0-beta3.zip", "3.16.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.16.0-beta4.zip", "3.18.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.18.0-beta1.zip", "3.18.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.18.0-beta2.zip", "3.18.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.18.0-beta3.zip", "3.18.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.18.0-beta4.zip", "3.19.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta1.zip", "3.19.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta2.zip", "3.19.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta3.zip", "3.19.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta4.zip", "3.19.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta5.zip", "3.19.0-beta6": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta6.zip", "3.20.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.20.0-beta1.zip", "3.20.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.20.0-beta2.zip", "3.20.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.20.0-beta3.zip", "3.20.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.20.0-beta4.zip", "3.21.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.21.0-beta1.zip", "3.21.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.21.0-beta2.zip", "3.21.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.21.0-beta3.zip", "3.22.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta1.zip", "3.22.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta2.zip", "3.22.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta3.zip", "3.22.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta4.zip", "3.22.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta5.zip", "3.22.0-beta6": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta6.zip", "3.23.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta1.zip", "3.23.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta2.zip", "3.23.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta3.zip", "3.23.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta4.zip", "3.23.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta5.zip", "3.23.0-beta6": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta6.zip", "3.24.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.24.0-beta1.zip", "3.24.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.24.0-beta2.zip", "3.24.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.24.0-beta3.zip", "3.25.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.25.0-beta1.zip", "3.25.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.25.0-beta2.zip", "3.25.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.25.0-beta3.zip", "3.26.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.26.0-beta1.zip", "3.26.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.26.0-beta2.zip", "3.26.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.26.0-beta3.zip", "3.26.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.26.0-beta4.zip", "3.26.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.26.0-beta5.zip", "3.27.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.27.0-beta1.zip", "3.27.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.27.0-beta2.zip", "3.28.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.28.0-beta1.zip", "3.28.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.28.0-beta2.zip", "3.28.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.28.0-beta3.zip", "3.29.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.29.0-beta1.zip", "3.29.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.29.0-beta2.zip", "3.29.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.29.0-beta3.zip", "3.29.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.29.0-beta4.zip", "3.30.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.30.0-beta1.zip", "3.30.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.30.0-beta2.zip", "3.30.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.30.0-beta3.zip", "3.31.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.31.0-beta1.zip", "3.31.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.31.0-beta2.zip", "3.32.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.32.0-beta1.zip", "3.32.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.32.0-beta2.zip", "3.32.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.32.0-beta3.zip", "3.33.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.33.0-beta1.zip", "3.33.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.33.0-beta2.zip", "3.33.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.33.0-beta3.zip", "3.33.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.33.0-beta4.zip"}, "downloaded": 714027524, "description": "

    \n

    THE #1 NO CODE DRAG & DROP WORDPRESS WEBSITE BUILDER POWERING OVER 18M WEBSITES WORLDWIDE, NOW WITH AI.

    \n

    Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly.

    \n

    Unlock all features with Elementor Pro.

    \n

    Need fast and secure cloud hosting for your Elementor site? Try out Elementor Hosting Powered by Google Cloud & Cloudflare. 4.9/5 TrustPilot score.

    \n

    🌟 Create Professional Stunning Websites

    \n
      \n
    • Intuitive Drag & Drop Builder: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.
    • \n
    • Pixel-Perfect Design Tools: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.
    • \n
    • Template Library: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.
    • \n
    • Advanced Widgets: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.
    • \n
    • AI Capabilities: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.
    • \n
    \n

    🗝️ Key features:

    \n
      \n
    • Design System: Use Elementor’s Design System for consistent colors, typography, and design elements, ensuring a cohesive, professional look.
    • \n
    • Responsive Design: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.
    • \n
    • Mask Shapes: Turning any element, like an image or video, into whatever shape you desire to create standout designs.
    • \n
    • CSS Transform: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.
    • \n
    • Entrance Animations: Add entrance animations to elements to create engaging and interactive user experiences.
    • \n
    • Revision History: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.
    • \n
    • Developer-Friendly: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.
    • \n
    • Floating Buttons: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.
    • \n
    • Theme Builder [Pro]: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.
    • \n
    • Popup Builder [Pro]: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.
    • \n
    • Forms [Pro]: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.
    • \n
    • WooCommerce Builder [Pro]: Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.
    • \n
    • Dynamic Content [Pro]: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.
    • \n
    • Notes [Pro]: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.
    • \n
    • Custom Code [Pro]: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.
    • \n
    • Custom CSS [Pro]: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.
    • \n
    • Motion Effects [Pro]: Add advanced motion effects to elements for a more dynamic and engaging user experience.
    • \n
    • Custom Fonts & Icons [Pro]: Upload and use custom fonts and icons to match your brand’s identity.
    • \n
    \n

    😍 Elementor FREE widgets

    \n

    Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:

    \n
      \n
    • Heading. Add eye-catching headlines.
    • \n
    • Image. Control the size, opacity and more.
    • \n
    • Text Editor. Just like the WordPress editor.
    • \n
    • Video. Add YouTube, Vimeo, Dailymotion or self-hosted videos.
    • \n
    • Button. Create interactive buttons.
    • \n
    • Link in Bio. Build link in bio components to promote your business / services.
    • \n
    • Image Box. A box with image, headline and text.
    • \n
    • Testimonials. Customer testimonials.
    • \n
    • Icon. Place one or more of 600+ icons available.
    • \n
    • Icon Box. An icon, headline, and text with one widget.
    • \n
    • Social Icons. Link to your social pages with the Facebook/X (formerly Twitter) icons.
    • \n
    • Image Gallery. Display your images in a grid.
    • \n
    • Image Carousel. Create rotating carousels or sliders for chosen images.
    • \n
    • Icon List. Use any icon to create a bullet list.
    • \n
    • Counter. Show numbers in an escalating manner.
    • \n
    • Progress Bar. Include an escalating progress bar.
    • \n
    • Nested Tabs. Display content in vertical or horizontal tabs.
    • \n
    • Nested Accordion. Display any type of content in collapsible sections.
    • \n
    • Toggle. Use the Toggle to hide or display content, like FAQ.
    • \n
    • Rating. Display how many stars (or another icon) other visitors gave.
    • \n
    • Alert. Include a colored alert box to draw visitor’s attention.
    • \n
    • HTML. Insert code into the page.
    • \n
    • Shortcode. Insert shortcodes from any plugin into the page.
    • \n
    • Menu Anchor. Link any menu to this anchor.
    • \n
    • Read More. Set the Read More cut-off for the excerpt in archive pages.
    • \n
    • Sidebar. Add sidebars onto the page.
    • \n
    • Google Maps. Embed maps into the page.
    • \n
    • SoundCloud. Add SoundCloud audio bits.
    • \n
    • Divider. Separate content with a designed divider.
    • \n
    • Spacer. Add space between elements.
    • \n
    • Text Path. Attach your text to a path.
    • \n
    • And counting…
    • \n
    \n

    🚀 Enhance Your Website

    \n

    High-Performing Websites: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.

    \n

    Key features include:

    \n
      \n
    • Reduced DOM Output: Streamlined HTML structure for faster rendering.
    • \n
    • Improved Media File Loading: Optimized loading of images, videos, and other media assets.
    • \n
    • Reduced CSS and JS Files: Minimized and concatenated stylesheets and scripts for quicker loading times.
    • \n
    • Lazy Loading: Deferred loading of non-critical resources to improve initial page load speed.
    • \n
    • Faster Font Loading: Efficient delivery of web fonts to enhance text rendering speed.
    • \n
    • Optimized Front-End Asset Loading: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.
    • \n
    • Element Caching: Cache frequently accessed design elements to reduce server response time and enhance overall performance.
    • \n
    \n

    🔥 Elementor Pro Features

    \n

    Create unparalleled websites while saving time, money and resources with Elementor Pro’s full website builder. Get access to 100+ professional widgets, features, and tools.

    \n

    Pro Design Widgets:

    \n
      \n
    1. Posts: Display your blog posts with customizable layouts and styles.
    2. \n
    3. Share Buttons: Allow visitors to easily share your content on various social media platforms.
    4. \n
    5. Portfolio: Showcase your work or projects with stunning portfolio layouts.
    6. \n
    7. Slides: Create dynamic slideshows with custom animations and transitions.
    8. \n
    9. Form: Design and customize advanced forms for user interaction and data collection.
    10. \n
    11. Login: Add a login form or user registration module to your website.
    12. \n
    13. Nav Menu: Customize and style your website’s navigation menu for better user experience.
    14. \n
    15. Animated Headline: Create attention-grabbing headlines with animated effects.
    16. \n
    17. Price Table: Display pricing plans or packages in a structured and visually appealing format.
    18. \n
    19. Price List: Showcase a list of prices or services with customizable styling options.
    20. \n
    21. Gallery: Create beautiful image galleries with various layout options and lightbox support.
    22. \n
    23. Flip Box: Add interactive flip animations to highlight content or features.
    24. \n
    25. Call to Action: Encourage user interaction and conversions with compelling call-to-action sections.
    26. \n
    27. Media Carousel: Showcase a carousel of media files such as images or videos.
    28. \n
    29. Testimonial Carousel: Display client testimonials in a carousel format for social proof.
    30. \n
    31. Nested Carousel: Create nested carousels for more complex content organization.
    32. \n
    33. Loop Carousel: Display content in a looped carousel for continuous viewing.
    34. \n
    35. Table Of Content: Generate a table of contents for longer articles or guides to improve navigation.
    36. \n
    37. Countdown: Add countdown timers to create urgency for promotions or events.
    38. \n
    39. Facebook Page: Embed your Facebook page feed or content onto your website.
    40. \n
    41. Blockquote: Highlight quotes or testimonials with stylish formatting options.
    42. \n
    43. Template: Save and reuse design templates for consistent branding and layout.
    44. \n
    45. Reviews: Showcase customer reviews and ratings to build trust and credibility.
    46. \n
    47. Facebook Button: Add buttons to promote interactions with your Facebook page or content.
    48. \n
    49. Facebook Embed: Embed Facebook posts or content onto your website.
    50. \n
    51. Facebook Comments: Enable Facebook comments on your website’s pages or posts.
    52. \n
    53. PayPal Button: Integrate PayPal buttons for easy online payments.
    54. \n
    55. Stripe Button: Integrate Stripe payment buttons to facilitate secure online transactions.
    56. \n
    57. Lottie Widget: Add Lottie animations to enhance visual appeal and engagement.
    58. \n
    59. Code Highlight: Display code snippets with syntax highlighting for better readability.
    60. \n
    61. Video Playlist: Create and customize playlists for video content on your website.
    62. \n
    63. Mega Menu: Customize advanced menus for better navigation and displaying complex content.
    64. \n
    65. Off Canvas: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.
    66. \n
    \n

    Pro Theme Widgets:

    \n

    Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more

    \n
      \n
    1. Post Title: Customize the title of individual blog posts or pages.
    2. \n
    3. Post Excerpt: Display a brief summary or teaser of your blog posts.
    4. \n
    5. Post Content: Customize the main content area of your blog posts or pages.
    6. \n
    7. Featured Image: Set and customize featured images for blog posts or pages.
    8. \n
    9. Author Box: Display author information and bios on blog posts.
    10. \n
    11. Post Comments: Customize the appearance and functionality of comments sections on your website.
    12. \n
    13. Post Navigation: Add navigation links to adjacent posts for easy browsing.
    14. \n
    15. Post Info: Display additional information about blog posts, such as author and date.
    16. \n
    17. Site Logo: Upload and customize your website’s logo for branding purposes.
    18. \n
    19. Site Title: Customize the title of your website.
    20. \n
    21. Page Title: Customize the title of individual pages.
    22. \n
    23. Search Bar: Add a search bar to allow users to search your website’s content.
    24. \n
    25. Breadcrumbs: Display hierarchical navigation paths for better user navigation.
    26. \n
    27. Sitemap: Generate a sitemap for better search engine indexing and user navigation.
    28. \n
    29. Loop Grid: Design and customize grid layouts for blog post archives or product listings.
    30. \n
    \n

    Pro WooCommerce Widgets:

    \n

    Design and customize a complete online shopping experience across your entire website.

    \n
      \n
    1. Product: Display individual products with customizable layouts and styles.
    2. \n
    3. Breadcrumbs: Display hierarchical navigation paths for better user navigation within your store.
    4. \n
    5. Product Title: Customize the title of individual products.
    6. \n
    7. Product Images: Set and customize images for product listings.
    8. \n
    9. Product Price: Display the price of individual products.
    10. \n
    11. Add To Cart: Add customizable add to cart buttons for easy purchasing.
    12. \n
    13. Product Rating: Display ratings and reviews for products.
    14. \n
    15. Product Stock: Display stock availability for products.
    16. \n
    17. Product Meta: Display additional information about products, such as SKU and categories.
    18. \n
    19. Product Content: Customize the main content area of product descriptions.
    20. \n
    21. Short Description: Display brief summaries or teasers of products.
    22. \n
    23. Product Data Tabs: Organize product information into tabbed sections for better organization.
    24. \n
    25. Additional Information: Display additional details about products, such as dimensions and weight.
    26. \n
    27. Product Related: Showcase related products to encourage additional purchases.
    28. \n
    29. Upsells: Promote upsell products to increase average order value.
    30. \n
    31. Products: Display a grid or list of products with customizable settings.
    32. \n
    33. Custom Add To Cart: Customize the add to cart button for specific products.
    34. \n
    35. WooCommerce Pages: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.
    36. \n
    37. Product Categories: Display product categories for easy navigation within your store.
    38. \n
    39. Menu Cart: Display a cart icon in your navigation menu for easy access to the shopping cart.
    40. \n
    41. Cart: Customize the appearance and functionality of the shopping cart page.
    42. \n
    43. Checkout: Customize the appearance and functionality of the checkout page.
    44. \n
    45. My Account: Customize the appearance and functionality of the customer account area.
    46. \n
    47. Purchase Summary: Display a summary of purchases during the checkout process.
    48. \n
    49. WooCommerce Notices: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.
    50. \n
    \n

    Build professional websites with Elementor Pro!

    \n

    🔒 SECURITY AND COMPLIANCE

    \n

    Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.

    \n

    We encourage ethical security research through our Bug Bounty program. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.

    \n

    For more information: Trust Center.

    \n

    ♿ Accessibility Best Practices

    \n

    Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.

    \n

    🌐 Translated to 63+ languages, includes RTL support

    \n

    Elementor supports multiple languages, typographies, and RTL, with editor translations in over 63 languages.

    \n

    It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via translate.wordpress.org. See our guide on how to translate and localize the plugin.

    \n

    ⏩ Use of 3rd Party Services

    \n

    To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:

    \n
      \n
    • Google Fonts – are loaded to add additional fonts to your website. Google’s TOS and Privacy Policy
    • \n
    • Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly mentioned, requiring your approval and manual opt-in. Learn more in our TOS and Privacy Policy.
    • \n
    \n

    📧 Related Products by Elementor

    \n

    Image Optimizer: Superior image compression for faster, high-quality website performance.

    \n

    Site Mailer: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.

    \n

    📣 See What Our Users Have to Say

    \n
    \n

    “Elementor is hands down the best page builder out there” – ★★★★★ Graphicvision1

    \n

    “An incredibly user-friendly plugin” – ★★★★★ Hyeyoga

    \n

    “Easily, my most used WP plugin” – ★★★★★ Xander Venske

    \n

    “I upgraded to the Pro version and just love this plugin!” – ★★★★★ Andybarn56

    \n

    “Excellent product with great tech support” – ★★★★★ Martywilsonnj

    \n
    \n

    More testimonials

    \n

    🌍 Join a Global Community

    \n

    Join a global community that helps each other achieve their goals.

    \n
      \n
    • Discord Community – Topic and language-specific channels, plus Ella, an amazing AI helper, ready to assist you.
    • \n
    • Facebook Community – Over 150K+ members, offering support, advice, feedback, and tutorials.
    • \n
    • GitHub Community – Get information about releases, request features, or report a bug.
    • \n
    • Elementor Addons, Themes, and Kits Themes and Kits – created specifically for Elementor.
    • \n
    • Learn valuable insights and techniques from our YouTube Channel.
    • \n
    • Access our Academy and Help Center – Find guides, tutorials, and resources to answer your questions and boost creativity.
    • \n
    • Show your support by rating us on WordPress. Your feedback fuels our growth! 🤗
    • \n
    • If you have questions or need support, visit the Plugin’s Forum. Elementor Pro users can get 24/7 premium support, …
    • \n
    \n", "donate_link": "", "num_ratings": 7129, "screenshots": {"1": {"src": "https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087", "caption": "Visual Drag and Drop Editor - Design your website layouts and place any element anywhere on the page for pixel-perfect designs."}, "2": {"src": "https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087", "caption": "Full Design System - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time."}, "3": {"src": "https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087", "caption": "Responsive Design Fully edit your website and customize the behavior on desktop, tablet, & mobile to optimize the visitor experience on every device."}, "4": {"src": "https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087", "caption": "Kits and Templates - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization."}, "5": {"src": "https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087", "caption": "Nested Elements Leverage Elementor''s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility."}, "6": {"src": "https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087", "caption": "Motion Effects - Add entrance animations and transitions to any element in your website to captivate visitors."}}, "support_url": "https://wordpress.org/support/plugin/elementor/", "contributors": {"elemntor": {"avatar": "https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elemntor/", "display_name": "Elementor"}}, "last_updated": "2025-10-21 1:44pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/elementor.3.32.5.zip", "author_profile": "https://profiles.wordpress.org/elemntor/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 10000000, "aspiresync_meta": {"id": "019a30bf-f366-73bf-ac1f-dba1de893dc5", "name": "Elementor Website Builder – More Than Just a Page Builder", "slug": "elementor", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1761054240, "version": "3.32.5"}, "support_threads": 109, "requires_plugins": [], "short_description": "The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support", "support_threads_resolved": 86}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1b5f-715e-826f-daccbe3964af', 'did:web:api.aspiredev.org:packages:wp-plugin:elementskit-lite', 'elementskit-lite', 'ElementsKit Elementor Addons and Templates', '

    ElementsKit Elementor addons is an ultimate and all-in-one addons for Elementor Page Builder. It brings a nice comprehensive solution with 90+ Elementor widgets, 20+ modules, and 1000+ pre-designed Elementor templates.

    -

    Everything is accessible through an easy drag-and-drop interface, including features like header-footer builder, mega menu, widget builder, and more to expand your Elementor capabilities.

    -

    Besides exclusive features & templates, ElementsKit offers copy-paste across domains and control content visibility with multiple conditions. It’s a versatile design toolkit packed with advanced widgets for content, forms, posts, charts, WooCommerce, etc, dedicated for building any Elementor site.

    -

    🏆 Great Elementor Addon! Check ElementsKit demos for new website-building possibilities.

    -

    -

    | ElementsKit Home Page | ElementsKit Elementor Templates | Blog | Documentation | Need Support? | How to get started with ElementsKit Pro |

    -

    🌟 Check all ElementsKit Elements 🌟
    -🌟 Elementor Mega Menu Builder 🌟
    -🌟 Elementor Header Footer Builder 🌟
    -🌟 Elementor Custom Widget Builder 🌟

    -

    KEY FEATURES

    -

    🔥 All time **downloads of ElementsKit : 41 million+

    -

    ⭐ 90+ Free and Premium Elementor Widgets

    -

    20+ Exclusive Modules for advanced design solution

    -

    45+ Pre-designed Header & Footer Elementor Templates

    -

    98+ Ready Pages to start Elementor website in no time

    -

    ⭐ Versatile Elementor template library of 1000+ Pre-made Sections

    -

    ⭐ No-code Elementor Custom Widget Builder

    -

    ⭐ Drag & Drop Elementor Mega Menu Builder

    -

    ⭐ Beneficial WooCommerce Elementor Templates & Widgets

    -

    ⭐ Cross-domain copy-paste compatibility

    -

    ⭐ Fully Responsive website for mobile, desktop, & tab

    -

    ⭐ No extra loading time for web pages

    -

    ⭐ Expert support team available 24/7

    -

    ⭐ Build with Elementor & has the same interface

    -

    ⭐ Packed with attractive animation effects

    -

    Extensive ElementsKit Templates for Elementor

    -

    ElementsKit is a popular Elementor addon among millions of users that eliminates the need to design from scratch. It ships with over 900+ pre-made section blocks and 40+ ready-made Elementor templates for designing a full website, including Elementor header-footer templates & Elementor mega menu templates. Whatever niche or industry, you’re working with, ElementsKit page builder addon layout library includes unique Elementor templates designed with royalty-free images.

    -

    Modular based and Lightweight

    -

    This modular-based page builder plugin, you only enable widgets or modules you need to create your design to ensure no additional bloat in website performance.

    -

    Completely Customizable & Dynamic Website Builder Functionality

    -

    ElementsKit widgets and modules come with powerful styling controls to customize every pixel of your Elementor sites and support dynamic conditions to show content by role, device, or time and different headers.

    -

    50+ FREE ELEMENTOR WIDGETS

    -

    If you’re looking for a free Elementor addon, ElementsKit offers a complete package in town, with 50+ widgets, 5+ modules, and professionally designed Elementor templates.

    -

    Heading – Design headings with multiple fancy, & custom styles. (Free WordPress Header Footer Builder)

    -

    Button – Add amazing buttons with text, color, CTA, etc.

    -

    Team – Customize team section with members’ names, positions, bios, etc.

    -

    Accordion – Display texts in a foldable & concise way.

    -

    Tab – Show texts divided into horizontal or vertical tabs with titles.

    -

    Social Icons – Displaying social media icons is easy now.

    -

    Client Logo – Showcase your client & sponsor logos with different styles.

    -

    Comparison Table: Easily compare and contrast different products, services, or options.

    -

    Countdown Timer – Comes with various effects, styles, and formats.

    -

    FAQ – Present all Q&As with different designs and unique styles.

    -

    Funfact – Show statistics, achievements, & fun facts.

    -

    Icon Box – Write short brief about services or products within boxes.

    -

    Image Accordion – Display multiple images in a shortened format easily.

    -

    Image Box – Combine images with headlines, texts, and call-to-action buttons.

    -

    Pie Chart – Create and style data pie charts on your web page within a short time.

    -

    Pricing Table – Describe your clear product/service value beautifully.

    -

    Progress Bar – Visualize project’s progress with intuitive graphics.

    -

    Testimonial – Show clients feedback, & recommendations on your sites.

    -

    MailChimp – Create and manage a mailing list, automated mailing, newsletter, etc.

    -

    Image Comparison – Design and compare two images.

    -

    Call To Action – Bring an image, content, and other features under one box.

    -

    Video – Add playable videos to your page and style them nicely.

    -

    Category List – Organize and customize every section of each category in a list.

    -

    Page List – Arrange & customize your list of pages in horizontal or vertical layout.

    -

    Drop Caps – Design content’s starting letter in a stylish, large, and capitalized format.

    -

    Dual Button – Display two buttons side by side with the Elementor dual button widget.

    -

    Business Hours – Inform your opening hours to users clearly and attractively.

    -

    Social Share – Share your content on your social media accounts easily.

    -

    Lottie – Export a JSON file or provide a URL to use amazing animations.

    -

    TablePress – Allows you to create and style nice responsive data tables.

    -

    Back to Top – Add and customize the back-to-top button easily.

    -

    ElementsKit Elementor Addon Featuring Free Header Widgets

    -

    Experience a no-cost WordPress site header navigation functions like dropdown menu, hamburger menu, offcanvas menu. Also, customize header info items like logos, text, address, social icons and display a functional search bar.

    -

    Free Elementor Widgets for Header Styling
    🔶 ElementsKit Nav Menu 🔶 Header Offcanvas 🔶 Header Search 🔶Header Info 🔶

    -

    Blog Post Addon for Elementor

    -

    Display and organize your blog posts in flexible blog layout options like grid, list, tab, etc. ElementsKit covers various blog post widgets that make it easy for visitors to navigate to your popular, related, recent blog posts, or a based on aspecific category through an intuitive blog post structure.

    -

    🔶 Blog Posts 🔶 Post Tab 🔶 Post List 🔶 Post Grid 🔶 Category List🔶

    -

    Free Elementor Addon for Third-Party Form Styling

    -

    If you’re using a popular form builder plugin on your website, chances are the ElementsKit Elementor addon includes a dedicated form style widget for it. With a flexible, Elementor-like interface, you can easily customize various form types, including contact forms, suggestion forms, and newsletters.

    -

    Whether you choose from pre-designed layouts or build a form from scratch, ElementsKit provides extensive customization options to match your design needs effortlessly.

    -

    Free Elementor Widgets for Form Styling
    🔶 Caldera Forms 🔶 Contact Form 7 🔶 Ninja Forms 🔶WP Forms 🔶 weForms 🔶 Fluent Forms 🔶 MailChimp 🔶

    -

    Highly Functional & Free Modules

    -

    This advanced Elementor addon offers some powerful modules in the free version.

    -

    🟢 ElementsKit Header and Footer Builder
    -Build and customize Elementor website header footer with a drag-and-drop interface. Enjoy features like conditional display, sticky menus, off-canvas menus, WooCommerce carts, etc, with Elementor header footer builder. ElementsKit has versatile pre-designed templates for Elementor header footer.

    -

    -

    🟢 Elementor Megamenu builder
    -Design multi-level WordPress mega menus with Elementor widgets, content, and visuals using ElementsKit’s no-code Elementor mega menu builder. Create horizontal or vertical menus effortlessly, ideal for any niche, including free e-commerce mega menu.

    -

    🟢 Elementor Widget Builder
    -ElementsKit gives web designers ultimate creative freedom to build custom widgets without coding. Just drag and drop controls to create fully responsive Elementor widgets.

    -

    🟢 Onepage Scroll
    -ElementsKit’s Onepage Scroll lets you create sleek, scrollable onepage scroll websites with interactive navigation. This Elementor onepage scroll feature also supports pre-designed onepage scroll layouts.

    -

    🟢ElementsKit Icon Pack Module**
    -ElementsKit ships with a collection of meticulously designed, high-quality custom icons (3000+) for WordPress.

    -

    Exclusive PRO Elementor Addons Widgets

    -

    Let’s look at advanced Elementor widgets in ElementsKit Pro version:

    -

    Gallery – Showcase your recent photos, company environment, events, etc.

    -

    Advanced Accordion) – Helps to arrange images, social feed, progress bar, MailChimp subscription form, etc. within the accordion in a nested format.

    -

    Vertical Menu – Easily design & add vertical navigation menus on your site.

    -

    Circle Menu – A creative solution for showing your menu items in a circle.

    -

    Advanced Tab – Style the tabs and display various nested elements.

    -

    Timeline – Create your timeline chart, design and showcase it.

    -

    Chart – Show a graphical representation of data and create charts.

    -

    Data Table – Let you create data tables with advanced styling options and features.

    -

    Creative Button – Customize buttons with hover effects, content, borders, shadows, and more.

    -

    Motion Text – Helps to display your text with various motion animations, with styles.

    -

    Advanced Toggle – Create amazing pricing tables, icon boxes, and packages and decorate them nicely.

    -

    Vertical Mega Menu – Display Mega Menu vertically & customize the content easily with this Elementor mega menu builder addon.

    -

    Hotspot – Identify a specific part of your image with a tooltip and reveal an associated text after user interactions.

    -

    Zoom – Set the meeting hosts, start time and date, time zone, duration, etc.

    -

    Breadcrumb – Customize the breadcrumb of your website by setting the max title word length and showing/hiding the category trail.

    -

    Video Gallery – Add as many videos as you want to your website and design an attractive video gallery.

    -

    Popup Modal – Design amazing popups and place them wherever you want them on your website.

    -

    Google Map – Show your business address to visitors with a Google Map effortlessly.

    -

    Unfold – Folding up certain sections (texts/images) is easy now.

    -

    Image Swap – Interactively swap or switch between different images displayed on a screen.

    -

    Advanced Slider – Mesmerizing sliders will assist you to boost engagement, conversion, and sales.

    -

    Image Hover Effect – Customize interesting hover effects in no time to make catchy images.

    -

    Fancy Animated Text – Create special and engaging animated texts.

    -

    Price Menu – Make an appealing price menu to start and plan a business.

    -

    Stylish List – Add a customized list and improve visitors’ engagement with your Elementor site.

    -

    Team Carousel Slider – Introduce your team members pleasingly on a slider.

    -

    Image Morphing – Control the display of your WordPress images without any hassles.

    -

    Flip Box – Add excellent before and after effects to your messages.

    -

    Audio Player – Make your music or audio files and present them on your website interestingly.

    -

    Content Ticker – Showcase recent posts, latest and trending news, etc. stylishly.

    -

    Coupon Code – Allows to make a small and customizable pop-up to display special offers.

    -

    Protected content – Protect your valuable or premium content with passwords or user roles.

    -

    Interactive Links – Clickable and animated links boosts user interactions.

    -

    Advanced Search – Design powerful live search panel to provide relevant search results.

    -

    WooCommerce Elementor Addon

    -

    Display and design e-commerce products in a list and intuitive sliders, along with their categories and mini cart option, anywhere you want.
    -
    🔶 WooCommerce Product List 🔶WooCommerce Product Carousel 🔶WooCommerce Category List 🔶WooCommerce Mini Cart

    -

    Effortless Integration with Different Social Platforms

    -

    ElementsKit Pro is a complete Elementor social media addon that lets you showcase social media content, sharing options, and other helpful engagement features directly into your WordPress website. Web page visitors can see and connect with dominant social media platforms with the help of widgets like:

    -


    🔶 Facebook Feed 🔶Instagram Feed 🔶 Twitter Feed 🔶Pinterest Feed 🔶

    -

    You can enable chat-head or a click to chat option on your Elementor website to easily integrate Messenger & WhatsApp.
    -
    🔶 Facebook Messenger Module 🔶 WhatsApp 🔶

    -

    Also, creative professionals can use this Elementor addon for building their professional-level portfolio website. It has Elementor widgets:
    -
    🔶 Behance Feed 🔶 Dribbble Feed 🔶

    -

    ElementsKit allows to showcase authentic user feedback from trusted platforms while offering detailed layout custoization to match your website’s design.
    -
    🔶 Yelp 🔶 Facebook Review 🔶

    -

    PRO Modules in Premium Elementor Addon version

    -

    To empower Elementor page builder, ElementsKit has some exclusive premium modules:

    -

    🟢 Conditional Content Module Show or hide a specific part of your webpage or content based on certain conditions.

    -

    🟢 Advanced Sticky Module Always Keep menu header at the top screen.

    -

    🟢 Advanced Parallax Module Design your page and tell stories while users scroll a page.

    -

    🟢 Advanced Tooltip Module – It guides you to arrange information, add any element or media and experiment different tooltips.

    -

    🟢 Cross-Domain Copy Paste Easily reuse any section, column, and widget of a website to another website, with this module.

    -

    🟢 Image Masking Helps you to customize the image shapes and make them more appealing.

    -

    🟢 Particles Grab attention with ElementsKit Particles and decorate backgrounds with dynamic particle effects.

    -

    🟢 Wrapper Link Advanced way to add a link to any section, column, or widget in Elementor.

    -

    🟢 Glass Morphism To apply frosted glass effects on your website backgrounds, this module is a fantastic choice.

    -

    🟢 Mouse Cursor Convert boring cursor to interesting ones with our latest module.

    -

    🟢 Liquid Glass Add trendy Apple liquid glass interface to your Elementor webstie.

    -

    This Elementor Addon supports Elementor Form Plugin:

    -

    🟢 Reset Button for Elementor Form: Add a reset button to Elementor Form and customize it to match your brand.

    -

    🟢 Google Sheet Integration for Elementor Form: Automate the data collection of Elementor Form and store form submission data directly in Google Sheets.

    -

    👉 Learn How to Install & Use ElementsKit

    -

    🤝 BACKED BY A TRUSTED TEAM

    -

    ElementsKit is brought to you by Wpmet, a name trusted by 10,00,000 satisfied users worldwide!

    -

    » DOCUMENTATION AND SUPPORT

    - -

    😍 LOVE ElementsKit Elementor Addon?

    -

    ⭐️ Rate us on WordPress

    -

    ✨ OUR OTHER PLUGINS

    -

    👉 MetForm – Super flexible and easy-to-use form builder.
    -👉 ShopEngine – Your complete WooCommerce solution, built for Elementor.
    -👉 GutenKit – Build websites 10x Faster with ZERO coding in the Gutenberg Block Editor.
    -👉 EmailKit – Effortless way to change your email-building experience.
    -👉 GetGenie Ai – An advanced Ai assistant for SEO-friendly content.
    -👉 Wp Social – Leverage Wp Social to add Social Login, Social Counter, and Social Login to your website.
    -👉 Wp Fundraising – Employ the power of Wp Fundraising to create a crowdfunding & donation sites.
    -👉 Wp Ultimate Review – Manage customer reviews with the Wp Ultimate Review plugin.
    -👉 PopupKit – Build exceptional popup for diverse needs within the WordPress block editor.
    -👉 TableKit – Make fully-customizable multipurpose table & generate data table within Gutenberg block editor.
    -👉 Genie Image – Generate images directly on your WordPress website with the magic of AI.

    -

    Visit wpmet for essential WordPress Tutorials, Tips & Tricks!

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "ElementsKit Elementor Addons and Templates", "slug": "elementskit-lite", "tags": {"elementor-addon": "elementor addon", "elementor-addons": "elementor addons", "elementor-widgets": "elementor widgets", "mega-menu-builder": "mega menu builder", "header-footer-builder": "header footer builder"}, "added": "2019-07-06", "icons": {"1x": "https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175", "2x": "https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175"}, "author": "Roxnor", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/elementskit-lite/assets/banner-772x250.jpg?rev=3250020", "high": "https://ps.w.org/elementskit-lite/assets/banner-1544x500.jpg?rev=3250020"}, "ratings": {"1": 45, "2": 5, "3": 14, "4": 62, "5": 1811}, "version": "3.7.5", "homepage": "https://wpmet.com/plugin/elementskit/", "requires": "6.0", "sections": {"faq": "\n
    \nHow do the ElementsKit Elementor addons reduce the extra loading time of your WordPress website?\n\n

    \n

    This well-coded addons caches API-related widget data to avoid calling directly to the API each time. Also, you can deactivate unused widgets and modules.

    \n

    \n
    \nDoes ElementsKit cause conflicts with other plugins or themes?\n\n

    \n

    No, you can work seamlessly with this Elementor addons.

    \n

    \n
    \nElementor editor fails to load or not working?\n\n

    \n

    It’s due to your servers’ PHP settings. Increase your server PHP memory limit from the wp-config.php file or php.ini file. For help, please contact your hosting provider and ask to increase
    \n* PHP memory_limit = 512M
    \n* max_execution_time = 300

    \n

    \n
    \nHow can I report security bugs for this Elementor addon?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very disappointing experience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mattdev25 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I bought the ElementsKit Pro plugin, but it doesn’t work as expected. The templates don’t insert properly, and I haven’t been able to use the features I paid for. I also tried to cancel my subscription renewal, but the cancellation option gives an error 404. Support hasn’t replied to any of my messages—very disappointing experience.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy guywimpory on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useful and esy to use

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice and Useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ibrahim65 on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice and Useful

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really great product and support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy intermagic on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I love ElementsKit for Elementor, really great and very good looking features and btw a very fast support. It''s worth the small amount of money to get my site looking beautiful ;-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super-charged plugin! Boost your Website!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy francesgandini on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ElementsKit has truly transformed the way I design with Elementor. The widgets are powerful yet lightweight, and the customization options are endless. I especially love how smoothly it integrates with other plugins — everything just works perfectly together.

    \n\n\n\n

    The pre-designed templates save so much time, and the header/footer builder gives me full creative control without needing extra code. Support has been quick and helpful every time I reached out.

    \n\n\n\n

    Highly recommended for anyone who wants to build professional websites faster and with a clean, modern look!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy andsongama on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    If you have Elementor, you need to have it!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome addition to Elementor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ilaos (webstuffguy) on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Elementor lacks so many elements however with ElementKit you now have tons of features to enhance your website. The customer support is also top-notch.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy prozvitok on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I just installed it, but I think it''s a good plugin...)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great technical support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy xenxenvn on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great technical support

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy glennt on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ElementsKit works perfectly for me.

    \n
    \n
    \n", "changelog": "

    ElementsKit Elementor Addons Version: 3.7.5 (2025-10-28)

    \n
      \n
    • Fixed: Mega menu hides after applying WooCommerce filter
    • \n
    • Improved: Dashboard onboard UI
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.7.4 (2025-10-20)

    \n
      \n
    • Fixed: Deprecated Elementor swiper button styles
    • \n
    • Fixed: Width and height not working in pricing table widget
    • \n
    • Improved: Input styling controls for mailchimp widget
    • \n
    • Improved: Admin dashboard page design
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.7.3 (2025-09-24)

    \n
      \n
    • Added: Elementor element manager compatibility
    • \n
    • Fixed: Social icon size not working for SVG in team widget
    • \n
    • Improved: Content retrieval using slugs for the mega menu and advanced widgets
    • \n
    • Improved: Query optimized for the content retrieval of advanced widgets content
    • \n
    • Improved: Slug-based page retrieval and CPT visibility for mega menu, advanced widgets
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.7.2 (2025-09-03)

    \n
      \n
    • Fixed: SVG icon compatibility issue in header search widget
    • \n
    • Fixed: Submenu icons not showing in mobile menu
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.7.1 (2025-09-02)

    \n
      \n
    • Fixed: Drop down icons are not showing in nav menu widget
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.7.0 (2025-09-01)

    \n
      \n
    • Added: Experimental SVG font icon support for ElementsKit icon pack
    • \n
    • Added: Inline video style for video widget
    • \n
    • Added: New glow animation for video widget
    • \n
    • Added: X (Twitter) and TikTok icons
    • \n
    • Fixed: Spinner icon not showing when ajax is enabled for megamenu
    • \n
    • Fixed: Autoplay not working in video widget
    • \n
    • Fixed: Mouse event box click not working in flipbox widget
    • \n
    • Improved: Removed SVG stroke in social icon widget
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.6.1 (2025-08-13)

    \n\n

    ElementsKit Elementor Addons Version: 3.6.0 (2025-08-05)

    \n
      \n
    • Added: Accordion widget title and icon hover color controls
    • \n
    • Added: Button Widget box shadow hover control
    • \n
    • Fixed: Post List widget icon list CSS loading issue
    • \n
    • Fixed: Advanced Tab widget tablet responsiveness issue
    • \n
    • Fixed: Pricing table widget button hover border issue
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.5.6 (2025-07-22)
    \nImproved: Some minor dashboard UI

    \n

    ElementsKit Elementor Addons Version: 3.5.5 (2025-07-13)
    \nAdded: Child submenu indicator icon size control in Nav Menu
    \nFixed: Icon size not working for Funfact widget

    \n

    ElementsKit Elementor Addons Version: 3.5.4 (2025-06-23)
    \nFixed: Submenu indicator font size not working in nav menu widget

    \n

    ElementsKit Elementor Addons Version: 3.5.3 (2025-06-15)
    \nImproved: Escaped countdown timer widget labels in JavaScript
    \nImproved: Attributes escaping in widget builder module
    \nImproved: Data attributes escaping in image comparison widget

    \n

    ElementsKit Elementor Addons Version: 3.5.2 (2025-05-25)
    \nAdded: Skip to content link in header
    \nFixed: Keyboard tab navigation for focusable links was not working
    \nImproved: Overall accessibility experience
    \nImproved: Image comparison widget before after label escaping

    \n

    ElementsKit Elementor Addons Version: 3.5.1 (2025-05-11)
    \nImproved: Widget builder controls escaping

    \n

    ElementsKit Elementor Addons Version: 3.5.0 (2025-04-20)
    \nImproved: Countdown timer widget custom labels escaping
    \nImproved: Removed duplicate CSS for widgets

    \n

    ElementsKit Elementor Addons Version: 3.4.9 (2025-04-15)
    \nAdded: Compatibility with WordPress 6.8
    \nImproved: Update DataTables to v2 for table widget
    \nImproved: Just-in-time translation loading

    \n

    ElementsKit Elementor Addons Version: 3.4.8 (2025-03-27)
    \nFixed: Background gradient color not working in team widget
    \nFixed: Countdown timer widget flip style expiry title escaping

    \n

    ElementsKit Elementor Addons Version: 3.4.7 (2025-03-18)
    \nFixed: Swiper compatibility support for Elementor 3.28.0

    \n

    ElementsKit Elementor Addons Version: 3.4.6 (2025-03-18)
    \nFixed: Date picker issue in DateTime control in widget builder
    \nFixed: Ajax pagination not working in blog posts widget
    \nFixed: Add styles for swiper arrow buttons in image accordion widget

    \n

    ElementsKit Elementor Addons Version: 3.4.4 (2025-02-16)
    \nImproved: Submenu indicators styling controls in nav menu widget
    \nImproved: Countdown timer widget sanitization and escaping

    \n

    ElementsKit Elementor Addons Version: 3.4.3 (2025-02-12)
    \nImproved: Countdown timer widget sanitization and escaping

    \n

    ElementsKit Elementor Addons Version: 3.4.2 (2025-02-10)
    \nFixed: Fatal error cannot redeclare walker class of nav menu widget

    \n

    ElementsKit Elementor Addons Version: 3.4.1 (2025-02-09)
    \nAdded: URL validation method to ensure only valid protocols are used for links
    \nFixed: Megamenu content retrieval to check for published status
    \nFixed: Header search popup not showing correctly when use video widget
    \nFixed: Ensure default value is an array when retrieving options
    \nImproved: Enhance image rendering logic and clean up client logo widget markup
    \nImproved: PCP warnings and errors

    \n

    ElementsKit Elementor Addons Version: 3.4.0 (2025-01-27)
    \nFixed: Submenu broken when mega menu module is deactivate in nav menu widget
    \nFixed: Equal height feature is not working in icon and image box widget
    \nFixed: PHP warning on client image size in testimonial widget style five
    \nFixed: List style icon color not working in category list widget

    \n

    ElementsKit Elementor Addons Version: 3.3.9 (2025-01-22)
    \nAdded: Info icon color control in pricing table widget
    \nFixed: List style issue in category list widget

    \n

    ElementsKit Elementor Addons Version: 3.3.8 (2025-01-20)
    \nFixed: Icon box widget read more button attribute issue

    \n

    ElementsKit Elementor Addons Version: 3.3.7 (2025-01-06)
    \nFixed: Visibility issue with nav menu indicator icon
    \nFixed: Text not centering when use custom width in button widget
    \nFixed: One page navigation issue in nav menu widget

    \n

    ElementsKit Elementor Addons Version: 3.3.6 (2024-12-31)
    \nFixed: WPML compatibility issue with URLs in all widgets
    \nFixed: Fatal error in category list widget

    \n

    ElementsKit Elementor Addons Version: 3.3.5 (2024-12-29)
    \nFixed: Fatal error with Jetpack’s image accelerator
    \nFixed: Inline layout issue in the page list widget
    \nFixed: Title float left control responsive issue
    \nImproved: Responsive styles for the horizontal timeline
    \nImproved: Inline SVG icon compatibility for several widgets

    \n

    ElementsKit Elementor Addons Version: 3.3.4 (2024-12-19)
    \nAdded: Compatibility support for Elementor 3.26 in widgets relying on Swiper
    \nAdded: Compatibility support for Elementor 3.26 in has_widget_inner_wrapper() for certain widgets
    \nFixed: Star rating color is not working in testimonial widget

    \n

    ElementsKit Elementor Addons Version: 3.3.3 (2024-12-07)
    \nAdded: Typography control for header search widget input
    \nAdded: Icon size control for header search widget input
    \nAdded: Icon space controls for left and right alignment in icon box widget
    \nFixed: SVG icon color issue in icon box widget
    \nFixed: Pricing table widget help text SVG icon not showing
    \nFixed: Testimonial widget rating SVG icons issue
    \nImproved: Add inline flex alignment for post meta in blog post widget
    \nImproved: Removed elementor-column-wrap class as Elementor has deleted this deprecated CSS class

    \n

    ElementsKit Elementor Addons Version: 3.3.2 (2024-11-17)
    \nImproved: Countdown timer on expiry title sanitization

    \n

    ElementsKit Elementor Addons Version: 3.3.1 (2024-10-26)
    \nAdded: Interactive link icon
    \nImproved: Use <nav> element instead of <div> in nav menu widget

    \n

    ElementsKit Elementor Addons Version: 3.3.0 (2024-10-20)
    \nFixed: Hover watermark SVG icon not working in the icon box widget
    \nFixed: Percent background not working for tooltip rounded and stripe style in progress bar widget
    \nImproved: Icon alignment for icon box widget
    \nImproved: Sanitize after and before fields in image comparison widget

    \n

    ElementsKit Elementor Addons Version: 3.2.9 (2024-10-16)
    \nFixed: Sticky menu jumping to random sections when hovering over megamenu items
    \nFixed: Conflict between ElementsKit and Zoom In motion effect in SCSS keyframes
    \nFixed: Testimonial style six to correctly display client photos
    \nFixed: Undefined array key warnings in PHP 8.3

    \n

    ElementsKit Elementor Addons Version: 3.2.8 (2024-09-22)
    \nFixed: Addressed the URL vulnerability issue in the video widget
    \nFixed: Responsive click behavior in the nav menu widget
    \nImproved: Support for caption and colspan attributes in table elements

    \n

    ElementsKit Elementor Addons Version: 3.2.7 (2024-09-01)
    \nAdded: Schema tag for faq, accordion, tab widget
    \nAdded: Compatibility for waypoints.js using IntersectionObserver()
    \nFixed: Display different logo on hover not working in testimonial widget
    \nFixed: Undefined array key warning in pie chart widget

    \n

    ElementsKit Elementor Addons Version: 3.2.6 (2024-08-22)
    \nImproved: Data migration conditions
    \nRemoved: Edit with EmailKit button from WooCommerce email settings

    \n

    ElementsKit Elementor Addons Version: 3.2.5 (2024-08-13)
    \nFixed: Element caching compatibility

    \n

    ElementsKit Elementor Addons Version: 3.2.4 (2024-08-12)
    \nFixed: Corrected lottie loop count handling
    \nFixed: Korean language admin page display issue

    \n

    ElementsKit Elementor Addons Version: 3.2.3 (2024-07-27)
    \nAdded: Support for is_dynamic_content()

    \n

    ElementsKit Elementor Addons Version: 3.2.2 (2024-07-24)
    \nFixed: Warning notice on block editor

    \n

    ElementsKit Elementor Addons Version: 3.2.1 (2024-07-15)
    \nImproved: Widget area method ajax security
    \nFixed: Remove unused code for client logo arrow typography and add condition for position popover toggle
    \nFixed: Funfact widget text alignment issue

    \n

    ElementsKit Elementor Addons Version: 3.2.0 (2024-06-09)
    \nImproved: Enhanced security in dynamic content module
    \nImproved: Performance in dynamic content module
    \nFixed: Missing string translation issue
    \nFixed: Compatibility issue between team widget popup and elementor loop carousel
    \nFixed: Template library button compatibility with container
    \nFixed: Minor bugs & improvements

    \n

    ElementsKit Elementor Addons Version: 3.1.4 (2024-05-20)
    \nImproved: Social share widget crawlable for SEO
    \nFixed: Page list widget ‘nofollow’ issue
    \nFixed: Elementor popup not working inside advanced widget

    \n

    ElementsKit Elementor Addons Version: 3.1.3 (2024-04-28)
    \nImproved: Image accordion widget sanitization
    \nFixed: Nav menu widget indicator responsive issue

    \n

    ElementsKit Elementor Addons Version: 3.1.2 (2024-04-22)
    \nFixed: Add new form button compatibility with gravity form
    \nFixed: Template select field not working in protected content widget

    \n

    ElementsKit Elementor Addons Version: 3.1.1 (2024-04-15)
    \nImproved: Onepage scroll module sanitization

    \n

    ElementsKit Elementor Addons Version: 3.1.0 (2024-03-31)
    \nFixed: Contact form 7 widget textarea font size doesn’t work
    \nFixed: AJAX loading issue on advanced tab and accordion
    \nFixed: Nav menu widget sub menu indicator issue
    \nFixed: Conflict between search and video widget
    \nFixed: Minor bug & improvements

    \n

    ElementsKit Elementor Addons Version: 3.0.7 (2024-03-17)
    \nImproved: Button widget sanitization
    \nFixed: Link not working in blog posts widget
    \nFixed: Nav menu widget sub menu indicator issue
    \nFixed: Popup conflict between search and video widget
    \nFixed: AJAX Loading issue on advanced tab and accordion
    \nFixed: Minor bug & improvements

    \n

    ElementsKit Elementor Addons Version: 3.0.6 (2024-03-05)
    \nImproved: Testimonial and image accordion widget sanitization

    \n

    ElementsKit Elementor Addons Version: 3.0.5 (2024-02-27)
    \nFixed: Dynamic tag isn’t working for media in image comparison widget
    \nFixed: Minor bug & improvements

    \n

    ElementsKit Elementor Addons Version: 3.0.4 (2023-12-18)
    \nFixed: Mailchimp integration compatibility
    \nAdded: New zoom data fields due to JWT deprecation
    \nImproved: Removed unnecessary code and enhance security measures

    \n

    ElementsKit Elementor Addons Version: 3.0.3 (2023-11-27)
    \nFixed: Improve accessibility, performance, and security practices with 10up/plugin-check tool
    \nFixed: Optimize testimonial widget markup for improved performance
    \nFixed: Resolve testimonial conditional issue and align control
    \nAdded: Header offcanvas close button text control
    \nFixed: Client logo widget nav SVG support

    \n

    ElementsKit Elementor Addons Version: 3.0.2 (2023-11-08)
    \nFixed: Fix ajax loading icon issue for nav menu widget
    \nFixed: Team widget popup compatibility with elementor loop grid widget
    \nImproved: Pricing table widget control type for custom ordering

    \n

    ElementsKit Elementor Addons Version: 3.0.1 (2023-11-05)
    \nFixed: PHP notice at onepage scroll module

    \n

    ElementsKit Elementor Addons Version: 3.0.0 (2023-10-04)
    \nFixed: Header search accessibility issue
    \nFixed: Post tab click issue
    \nFixed: Adding dynamic width with ekit layout library
    \nFixed: PHPCS issue and resolved the warnings
    \nFixed: Video widget duration control issue
    \nFixed: Icon box widget custom attributes issue
    \nFixed: Piechart widget global color issue
    \nFixed: Nav menu justify align space between issue
    \nFixed: Nav menu widget textdoamin
    \nFixed: Testimonial widget layout breaking when link enable
    \nAdded: Submenu indicator font size control for nav menu widget

    \n

    ElementsKit Elementor Addons Version: 2.9.2 (2023-08-27)
    \nImproved: Access control security

    \n

    ElementsKit Elementor Addons Version: 2.9.0 (2023-06-21)
    \nAdded: Category filter in Post List Widget. Preview
    \nFixed: Pie chart Widget responsive issues
    \nFixed: Full-Width mega menu was showing in the wrong position for Mobile Breakpoint
    \nFixed: Megamenu was not showing when activating Polylang
    \nFixed: Compatibility issue with slick slider
    \nFixed: Custom attributes were not working in the Page List Widget
    \nFixed: The MailChimp Widget was not working inside the Elementor Popup
    \nFixed: Client Logo BG color was not working when the loop was enabled
    \nImproved: Editor template button placement
    \nImproved: Reduced JS and CSS up to 50 KB
    \nImproved: Optimized Testimonial and Client Logo Widget

    \n

    ElementsKit Elementor Addons Version: 2.8.8 (2023-05-03)
    \nFixed: Title HTML escaping in Tab Widget
    \nFixed: Image alt text was missing in the Image Accordion Widget
    \nFixed: Advanced widget popup was not centered in Elementor > 3.12.0
    \nImproved: Admin banner and Notice sanitization

    \n

    ElementsKit Elementor Addons Version: 2.8.7 (2023-04-06)
    \nFixed: Minor bug & improvements

    \n

    ElementsKit Elementor Addons Version: 2.8.6 (2023-04-05)
    \nTweaked: Using Elementor swiper instance to save up to 139KB of asset loading
    \nTweaked: Accessibility name on mobile menu hamburger icon
    \nFixed: ElementsKit Library category dropdown not showing
    \nImproved: Swiper v8.45 compatibility
    \nFixed: WP get_page_by_title() is deprecated

    \n

    ElementsKit Elementor Addons Version: 2.8.5 (2023-02-28)
    \nFixed: Swiper column break on initial load
    \nImproved: Tab Widget layout choose style
    \nImproved: Post Grid Widget title controls
    \nImproved: Accessibility for widgets and modules
    \nImproved: Pricing Table Widget button hover
    \nImproved: Layout Library responsiveness and category filter
    \nTweaked: Video Widget glow effect control

    \n

    ElementsKit Elementor Addons Version: 2.8.1 (2023-01-16)
    \nAdded: Flex container support
    \nImproved: Widgets searching keywords for editor panel
    \nFixed: Icon animation not working for svg in Team Widget
    \nFixed: Header Footer builder module on/off issue
    \nFixed: Video Widget Popup does not Open editor mode
    \nFixed: Swiper slider initial loading breaks columns

    \n

    ElementsKit Elementor Addons Version: 2.8.0 (2022-12-12)
    \nAdded: New animation style odometer in Funfact widget
    \nAdded: Video Widget self hosted video feature
    \nImproved: Funfact widget position controls
    \nImproved: Icon style and border-bottom controls in the Accordion widget
    \nTweaked: Removed Snapchat from Social Share widget due to no longer supported by Goodshare
    \nFixed: Onepage scroll is not working correctly when hiding a section
    \nFixed: Image box widget title and border radius issue
    \nFixed: Focused title font weight and text decoration color not working of Heading widget

    \n

    ElementsKit Elementor Addons Version: 2.7.5 (2022-11-17)
    \nImproved: Compatibility with WP 6.1
    \nFixed: Heading widget color changes issues
    \nFixed: Accordion widget box-shadow issue

    \n

    ElementsKit Elementor Addons Version: 2.7.4 (2022-11-07)
    \nImproved: Coding standard
    \nImproved: Edit Content button for advanced widgets
    \nImproved: Spelling error for Instagram User Data
    \nFixed: Submenu child items is not showing at WP 6.1

    \n

    ElementsKit Elementor Addons Version: 2.7.3 (2022-10-17)
    \nAdded: Widgets Documentation URL
    \nAdded: Title margin control in Post Grid widget
    \nAdded: Arrow icon vertical position in Client Logo widget
    \nAdded: Title styles in the Post Tab widget. Preview
    \nFixed: Label and input style in Caldera Forms widget
    \nFixed: The post item bottom space was not working in the Post Grid widget
    \nFixed: Elementor responsive visibility was not working properly when One Page Scroll was enabled.

    \n

    ElementsKit Elementor Addons Version: 2.7.2 (2022-10-02)
    \nAdded: Controls for Header Search widget and fixed CSS issue
    \nAdded: Control for border opening and closing in Accordion Widget
    \nAdded: Active property for Testimonial widget
    \nAdded: New icons in ElementsKit Icon Pack
    \nAdded: Dynamic content support for Elementor pro
    \nFixed: Testimonial widget alignment issue
    \nFixed: Focused title’s CSS not working after adding a link in the Heading widget

    \n

    ElementsKit Elementor Addons Version: 2.7.0 (2022-08-24)
    \nAdded: Mega menu ajax load for better performance
    \nAdded: Icon for Image box and Image swap widget
    \nAdded: Hover color for Heading Widget
    \nAdded: Spacing control between text and bar in Progress Bar widget
    \nAdded: Hiding percentage number control in the Progress Bar widget
    \nFixed: Image size can’t be changed and no border option for dots in the Testimonial widget
    \nFixed: Background overlay during hamburger flyout menu not open
    \nFixed: Header Offcanvas icon size can’t be changed
    \nFixed: Typography was not working for client description in Testimonial widget
    \nFixed: Margin bottom control didn’t work properly in Accordion widget
    \nFixed: Phone call sending issue in the Team widget
    \nFixed: Apostrophe on the Label Name field of Widget builder causing Fatal Error
    \nFixed: Compatibility with php v8.0 of Widget builder
    \nFixed: Content padding issue in Team widget
    \nTweaked: Dual button transparent hover not working

    \n

    ElementsKit Elementor Addons Version: 2.6.3 (2022-07-17)
    \nAdded: Nav menu widget border controls for menu items
    \nAdded: Control for Header Offcanvas wrapper padding
    \nAdded: Social Icons widget’s demo to Template library
    \nFixed: Code optimized
    \nFixed: Iconbox border issue
    \nFixed: Magnific popup CSS conflict with Essential addon
    \nFixed: Can’t import the Charity Page from Template library
    \nFixed: One Page Scroll conflict with Responsive feature of Elementor
    \nFixed: Widgets and modules active toggle button not working
    \nFixed: Lottie widget not working with twenty twenty-two
    \nFixed: Neve theme compatibility fix for header and footer
    \nFixed: The Black Overlay of Mobile Menu is getting pulled off
    \nFixed: Sticky Functionality of Electro not working when ElementsKit is activated
    \nTweaked: Typo issue

    \n

    ElementsKit Elementor Addons Version: 2.6.2 (2022-06-20)
    \nFixed: Twitter feed widget token not working
    \nFixed: WPML compatibility
    \nFixed: Post tab control
    \nFixed: Console error for image-accordion widget
    \nFixed: Widgets and modules active toggle button not working
    \nTweaked: Php cs security improvement
    \nTweaked: Control and placeholder of the Funfact widget

    \n

    ElementsKit Elementor Addons Version: 2.6.1 (2022-05-24)
    \nAdded: Form signature fields.
    \nAdded: Form conditional fields for Elementor.
    \nAdded: Form reset button.
    \nAdded: Google sheet for Elementor form.
    \nFixed: TablePress JS error in Elementor editor.
    \nFixed: Repeater field error in the Business Hour widget.
    \nFixed: Id attributes were not printing in the Tab widget.
    \nImproved: Added more secure escaping for HTML printing.

    \n

    ElementsKit Elementor Addons Version: 2.6.0 (2022-05-20)
    \nImproved: Added more secure escaping for HTML printing.

    \n

    ElementsKit Elementor Addons Version: 2.5.10 (2022-05-18)
    \nFixed: Minor CSS fix.
    \nFixed: TablePress JS console error.

    \n

    ElementsKit Elementor Addons Version: 2.5.9 (2022-05-10)
    \nFixed: HTML special character issue fix.

    \n

    ElementsKit Elementor Addons Version: 2.5.8 (2022-05-10)
    \nFixed: Missing HTML scape functions.

    \n

    ElementsKit Elementor Addons Version: 2.5.7 (2022-04-25)
    \nFixed: Advance Tab widget issue.
    \nFixed: Advance Accordion widget issue.
    \nFixed: Advance Toggle widget issue.
    \nFixed: Advance Slider widget issue.

    \n

    ElementsKit Elementor Addons Version: 2.5.6 (2022-04-18)
    \nAdded: Language Files.
    \nAdded: WPMI support for ElementsKit template, especially for Header & Footer Builder.
    \nFixed: Escaping issues.
    \nFixed: Theme support issue.
    \nFixed: One-page scroll issue.
    \nTweaked: Change some links.

    \n

    ElementsKit Elementor Addons Version: 2.5.5 (2022-03-24)
    \nAdded: WhatsApp widget.
    \nFixed: Elementor responsive control devices compatibility issue.
    \nFixed: Image accordion active issue on hover.
    \nFixed: One-page scroll not working for mobile with OceanWP theme.
    \nImproved: Added link for heading widget.
    \nFixed: Elementor 3.6.1 conflicts for depreciation.
    \nFixed: Menu dropdown and sticky feature issue.

    \n

    ElementsKit Elementor Addons Version: 2.5.4 (2022-02-15)
    \nImproved: Image_accordion widget for wrapper link, etc.
    \nFixed: Compatibility issues with Elementor Pro’s Latest Version.
    \nFixed: The Nav menu widget was not responding properly when the Elementor PRO is activated.
    \nFixed: Nav menu click issue.
    \nFixed: Nav menu widget issue with a jetpack.
    \nFixed: Video widget issue.
    \nFixed: Post list widget issue.
    \nFixed: Page list vertical alignment does not work for icons.
    \nFixed: WP submenu list isn’t working if Megamenu is activated.

    \n

    ElementsKit Elementor Addons Version: 2.5.3 (2022-01-22)
    \nFixed: Nav menu widget dropdown issue with on click.
    \nFixed: Nav menu links are not clickable if the item has a dropdown.
    \nFixed: The submenu list isn’t working if Megamenu is activated.
    \nTweaked: CSS and JS improved.

    \n

    ElementsKit Elementor Addons Version: 2.5.2 (2022-01-09)
    \nAdded: Nav menu widget dropdown open on click.
    \nAdded: Ajax Loading support for Advanced Tab Widget.
    \nFixed: Ask for rating notice logo not showing.
    \nImproved: HTML tags associated with the table.
    \nTweak: CSS and JS improved.

    \n

    ElementsKit Elementor Addons Version: 2.5.1 (2021-12-02)
    \nFixed: Megamenu Markup validation issue for the Nav Menu Widget.
    \nTweak: CSS and JS improved.

    \n

    ElementsKit Elementor Addons Version: 2.5.0 (2021-11-25)
    \nNew: Links support for Testimonial Widget.
    \nFixed: Mobile menu visual issue (theme compatibility).
    \nFixed: Price Tag hides without duration text for Pricing Widget.
    \nFixed: Minor Spelling for Widget Builder Module.
    \nFixed: Overlay responsive issue in the Editor for Nav Menu Widget.
    \nFixed: Menu Badge arrow styling for the Nav Menu Widget.
    \nFixed: Autoplay issue for Video Widget.
    \nFixed: Video widget short link embed issue.
    \nTweaked: Duration and Symbol Control Labels for Pricing Widget.

    \n

    ElementsKit Elementor Addons Version: 2.4.0 (2021-11-07)
    \nFixed: Mobile Menu Animation is fixed on iOS 15
    \nFixed: ‘Tab’ widget SVG icon visible issues have been fixed
    \nFixed: Notice width issue solved
    \nFixed: The right arrow icon issue
    \nFixed: Some minor code updates/fixes
    \nTweaked: CSS and JS improved
    \nCompatibility: fixed some compatibility issues

    \n

    ElementsKit Elementor Addons Version: 2.3.7 (23-09-2021)
    \nFixed: Image box title typography control does not work.
    \nFixed: Team widget popup issue with OceanWP theme
    \nFixed: Video widget loop and player control functional issue
    \nFixed: Dot Move navigation style for One Page Scroll Module.
    \nFixed: Responsive Slides Per View for Testimonial Widget.
    \nTweaked: Font faces display change for ElementsKit Icon Pack.

    \n

    ElementsKit Elementor Addons Version: 2.3.6 (19-08-2021)
    \nFixed: Sticky feature duplicates WP Forms Widget.
    \nFixed: Responsive controls issue for Post Grid Widget.
    \nFixed: Removed deprecated Elementor PHP Methods from Widgets.
    \nFixed: Alignment Control icons are not visible.

    \n

    ElementsKit Elementor Addons Version: 2.3.5 (02-08-2021)
    \nTweaked: Library Layout button support for Add New Section.
    \nFixed: Double Opt-in support for the Mailchimp Widget.
    \nFixed: Accordion and Tab widgets conflict with the OceanWP theme.
    \nFixed: Minor CSS issue for Nav Menu Widget.

    \n

    ElementsKit Elementor Addons Version: 2.3.4 (19-07-2021)
    \nFixed: Swiper Slider conflict issues are fixed with other themes.

    \n

    ElementsKit Elementor Addons Version: 2.3.3 (15-07-2021)
    \nFixed: In swiperJS slider is not working issue.

    \n

    ElementsKit Elementor Addons Version: 2.3.2 (14-07-2021)
    \nFixed: Multiple placeholder image upload issues when importing widgets.
    \nTweaked: Converted widgets slideshow from slick to swiper.
    \nTweaked: Optimized Images.
    \nTweaked: Improved CSS and JS.

    \n

    ElementsKit Elementor Addons Version: 2.3.1.1 (23-06-2021)
    \nFixed: Email field was required for Onboarding Wizard, changed it to optional.

    \n

    ElementsKit Elementor Addons Version: 2.3.1 (22-06-2021)
    \nNew: Onboarding User Guide to easily start using ElementsKit.
    \nNew: Group Templates count for Layout Library.
    \nFixed: Arabic text issue for Megamenu Badge.
    \nFixed: Minor CSS issue for Layout Library Modal Button.

    \n

    ElementsKit Elementor Addons Version: 2.3.0 (08-06-2021)
    \nNew: Hover trigger option for Tab Widget.
    \nTweaked: Caret placement issue for Tab Widget.
    \nTweaked: Getting access token made easy for Dribbble Widget.
    \nFixed: Icon Search option for Megamenu Popup.
    \nFixed: Image Width when Hovering on Social style for Team Widget.
    \nFixed: Duration control for the Progress bar Widget.
    \nFixed: Minor design issue for the Clients’ Logo Widget.

    \n

    ElementsKit Elementor Addons Version: 2.2.4 (10-05-2021)
    \nNew: Back To Top Widget.
    \nNew: Hover Trigger on Tab Widget.
    \nNew: Back to Top Widget.
    \nNew: Clear Cache button added for Facebook Feed Settings.
    \nTweaked: Dashboard UI Improvement.
    \nFixed: Duration control for the Progress bar Widget.

    \n

    ElementsKit Elementor Addons Version: 2.2.3 (05-05-2021)
    \nNew: Blog Posts Widget Floating Category.
    \nNew: Blog Posts Widget Various Missing Controls.
    \nNew: Client Image Position control for Testimonial Widget.
    \nNew: Background Hover Effect control for Testimonial Widget.
    \nNew: Rating Hover Color control for Testimonial Widget.
    \nTweaked: Replaced deprecated Elementor PHP Methods for Widgets.
    \nTweaked: Animating Pie Chart when in view.
    \nTweaked: Improvements to the Testimonial Widget.
    \nFixed: Border and Padding issues fixed on the ‘Video’ Widget.
    \nFixed: TablePress fatal error after deactivation.
    \nFixed: Submenu icon render issue.
    \nFixed: Minor CSS fixed for Sticky On Scroll Up.
    \nFixed: Minor JS error with OnePage Scroll Module.

    \n

    ElementsKit Elementor Addons Version: 2.2.2 (14-04-2021)
    \nNew: ‘Text’ option for the ‘Header Offcanvas’ widget menu.
    \nNew: ‘Info Text’ tooltip option to ‘Pricing Table’ Widget.
    \nNew: ‘Vertical Alignment’ control added for ‘Icon Box’ Widget.
    \nFixed: Compatibility issues with Elementor 3.2.0.
    \nFixed: Minutes typography options for the ‘Countdown Timer’ Widget.

    \n

    ElementsKit Elementor Addons Version: 2.2.1 (08-03-2021)
    \nNew: Added Responsive Alignment Control for Category List, Page List, and Post List Widgets.
    \nFixed: Missing dependency issue with One-Page Scroll Module.
    \nFixed: Category Query was empty for Woo Product Carousel Widget.

    \n

    ElementsKit Elementor Addons Version: 2.2.0 (02-03-2021)
    \nImprovement: Minor bug fixing and code improvements.
    \nImprovement: Minor escaping and validation improvements.

    \n

    ElementsKit Elementor Addons Version: 2.1.7 (25-02-2021)
    \nNew: Featured Image Size control for Post List Widget.
    \nNew: Option to Show/Hide Facebook Messenger Dialog Box.
    \nFixed: Widget builder limited widget issue.
    \nFixed: Tab Widget arrow not showing when body background was set.
    \nFixed: Nav Menu widget showing empty widget on responsive when the toggle button is visible.

    \n

    ElementsKit Elementor Addons Version: 2.1.6 (07-02-2021)
    \nFixed: basic tags support for text shadow option in Heading Widget.

    \n

    ElementsKit Elementor Addons Version: 2.1.5 (01-02-2021)
    \nNew: CSS Print Method ‘Internal Embedding’ options support for Header and Footer Builder.
    \nTweaked: Coding Standard improvement.
    \nFixed: Text Domain correction.
    \nFixed: Pot File updated.
    \nFixed: TablePress Widget row color ordering consistency in editor and frontend.

    \n

    ElementsKit Elementor Addons Version: 2.1.4 (27-01-2021)
    \nTweaked: Support W3C validation when using Header-Footer Builder.
    \nFixed: Slick Library update support for the Latest update.
    \nFixed: Mailchimp Widget minor CSS flex issue.
    \nFixed: Team Widget popup scroll bar showing inside content.

    \n

    ElementsKit Elementor Addons Version: 2.1.3 (25-01-2021)
    \nFixed: Added support for new Widget Categories hook.
    \nFixed: Team Widget modal close button wasn’t clickable on some edge cases.
    \nFixed: Blog Posts Widgets’ default image size changed to provide clear images.

    \n

    ElementsKit Elementor Addons Version: 2.1.2 (18-01-2021)
    \nNew: Banners consent for showing notices.

    \n

    ElementsKit Elementor Addons Version: 2.1.1 (10-01-2021)
    \nNew: Quickly turn on or off the Widgets and Modules from Dashboard.
    \nNew: Position option for Header Off-Canvas Widget.
    \nFixed: Team Widget minor CSS fix for Position text.
    \nFixed: Header Footer builder popup CSS conflict.
    \nFixed: Widget Builder control’s selector values backward support.
    \nFixed: Removed em tag from Testimonial Style 3.

    \n
      \n
    • Initial release
    • \n
    \n", "description": "

    ElementsKit Elementor addons is an ultimate and all-in-one addons for Elementor Page Builder. It brings a nice comprehensive solution with 90+ Elementor widgets, 20+ modules, and 1000+ pre-designed Elementor templates.

    \n

    Everything is accessible through an easy drag-and-drop interface, including features like header-footer builder, mega menu, widget builder, and more to expand your Elementor capabilities.

    \n

    Besides exclusive features & templates, ElementsKit offers copy-paste across domains and control content visibility with multiple conditions. It’s a versatile design toolkit packed with advanced widgets for content, forms, posts, charts, WooCommerce, etc, dedicated for building any Elementor site.

    \n

    🏆 Great Elementor Addon! Check ElementsKit demos for new website-building possibilities.

    \n

    \n

    | ElementsKit Home Page | ElementsKit Elementor Templates | Blog | Documentation | Need Support? | How to get started with ElementsKit Pro |

    \n

    🌟 Check all ElementsKit Elements 🌟
    \n🌟 Elementor Mega Menu Builder 🌟
    \n🌟 Elementor Header Footer Builder 🌟
    \n🌟 Elementor Custom Widget Builder 🌟

    \n

    KEY FEATURES

    \n

    🔥 All time **downloads of ElementsKit : 41 million+

    \n

    ⭐ 90+ Free and Premium Elementor Widgets

    \n

    20+ Exclusive Modules for advanced design solution

    \n

    45+ Pre-designed Header & Footer Elementor Templates

    \n

    98+ Ready Pages to start Elementor website in no time

    \n

    ⭐ Versatile Elementor template library of 1000+ Pre-made Sections

    \n

    ⭐ No-code Elementor Custom Widget Builder

    \n

    ⭐ Drag & Drop Elementor Mega Menu Builder

    \n

    ⭐ Beneficial WooCommerce Elementor Templates & Widgets

    \n

    ⭐ Cross-domain copy-paste compatibility

    \n

    ⭐ Fully Responsive website for mobile, desktop, & tab

    \n

    ⭐ No extra loading time for web pages

    \n

    ⭐ Expert support team available 24/7

    \n

    ⭐ Build with Elementor & has the same interface

    \n

    ⭐ Packed with attractive animation effects

    \n

    Extensive ElementsKit Templates for Elementor

    \n

    ElementsKit is a popular Elementor addon among millions of users that eliminates the need to design from scratch. It ships with over 900+ pre-made section blocks and 40+ ready-made Elementor templates for designing a full website, including Elementor header-footer templates & Elementor mega menu templates. Whatever niche or industry, you’re working with, ElementsKit page builder addon layout library includes unique Elementor templates designed with royalty-free images.

    \n

    Modular based and Lightweight

    \n

    This modular-based page builder plugin, you only enable widgets or modules you need to create your design to ensure no additional bloat in website performance.

    \n

    Completely Customizable & Dynamic Website Builder Functionality

    \n

    ElementsKit widgets and modules come with powerful styling controls to customize every pixel of your Elementor sites and support dynamic conditions to show content by role, device, or time and different headers.

    \n

    50+ FREE ELEMENTOR WIDGETS

    \n

    If you’re looking for a free Elementor addon, ElementsKit offers a complete package in town, with 50+ widgets, 5+ modules, and professionally designed Elementor templates.

    \n

    Heading – Design headings with multiple fancy, & custom styles. (Free WordPress Header Footer Builder)

    \n

    Button – Add amazing buttons with text, color, CTA, etc.

    \n

    Team – Customize team section with members’ names, positions, bios, etc.

    \n

    Accordion – Display texts in a foldable & concise way.

    \n

    Tab – Show texts divided into horizontal or vertical tabs with titles.

    \n

    Social Icons – Displaying social media icons is easy now.

    \n

    Client Logo – Showcase your client & sponsor logos with different styles.

    \n

    Comparison Table: Easily compare and contrast different products, services, or options.

    \n

    Countdown Timer – Comes with various effects, styles, and formats.

    \n

    FAQ – Present all Q&As with different designs and unique styles.

    \n

    Funfact – Show statistics, achievements, & fun facts.

    \n

    Icon Box – Write short brief about services or products within boxes.

    \n

    Image Accordion – Display multiple images in a shortened format easily.

    \n

    Image Box – Combine images with headlines, texts, and call-to-action buttons.

    \n

    Pie Chart – Create and style data pie charts on your web page within a short time.

    \n

    Pricing Table – Describe your clear product/service value beautifully.

    \n

    Progress Bar – Visualize project’s progress with intuitive graphics.

    \n

    Testimonial – Show clients feedback, & recommendations on your sites.

    \n

    MailChimp – Create and manage a mailing list, automated mailing, newsletter, etc.

    \n

    Image Comparison – Design and compare two images.

    \n

    Call To Action – Bring an image, content, and other features under one box.

    \n

    Video – Add playable videos to your page and style them nicely.

    \n

    Category List – Organize and customize every section of each category in a list.

    \n

    Page List – Arrange & customize your list of pages in horizontal or vertical layout.

    \n

    Drop Caps – Design content’s starting letter in a stylish, large, and capitalized format.

    \n

    Dual Button – Display two buttons side by side with the Elementor dual button widget.

    \n

    Business Hours – Inform your opening hours to users clearly and attractively.

    \n

    Social Share – Share your content on your social media accounts easily.

    \n

    Lottie – Export a JSON file or provide a URL to use amazing animations.

    \n

    TablePress – Allows you to create and style nice responsive data tables.

    \n

    Back to Top – Add and customize the back-to-top button easily.

    \n

    ElementsKit Elementor Addon Featuring Free Header Widgets

    \n

    Experience a no-cost WordPress site header navigation functions like dropdown menu, hamburger menu, offcanvas menu. Also, customize header info items like logos, text, address, social icons and display a functional search bar.

    \n

    Free Elementor Widgets for Header Styling
    🔶 ElementsKit Nav Menu 🔶 Header Offcanvas 🔶 Header Search 🔶Header Info 🔶

    \n

    Blog Post Addon for Elementor

    \n

    Display and organize your blog posts in flexible blog layout options like grid, list, tab, etc. ElementsKit covers various blog post widgets that make it easy for visitors to navigate to your popular, related, recent blog posts, or a based on aspecific category through an intuitive blog post structure.

    \n

    🔶 Blog Posts 🔶 Post Tab 🔶 Post List 🔶 Post Grid 🔶 Category List🔶

    \n

    Free Elementor Addon for Third-Party Form Styling

    \n

    If you’re using a popular form builder plugin on your website, chances are the ElementsKit Elementor addon includes a dedicated form style widget for it. With a flexible, Elementor-like interface, you can easily customize various form types, including contact forms, suggestion forms, and newsletters.

    \n

    Whether you choose from pre-designed layouts or build a form from scratch, ElementsKit provides extensive customization options to match your design needs effortlessly.

    \n

    Free Elementor Widgets for Form Styling
    🔶 Caldera Forms 🔶 Contact Form 7 🔶 Ninja Forms 🔶WP Forms 🔶 weForms 🔶 Fluent Forms 🔶 MailChimp 🔶

    \n

    Highly Functional & Free Modules

    \n

    This advanced Elementor addon offers some powerful modules in the free version.

    \n

    🟢 ElementsKit Header and Footer Builder
    \nBuild and customize Elementor website header footer with a drag-and-drop interface. Enjoy features like conditional display, sticky menus, off-canvas menus, WooCommerce carts, etc, with Elementor header footer builder. ElementsKit has versatile pre-designed templates for Elementor header footer.

    \n

    \n

    🟢 Elementor Megamenu builder
    \nDesign multi-level WordPress mega menus with Elementor widgets, content, and visuals using ElementsKit’s no-code Elementor mega menu builder. Create horizontal or vertical menus effortlessly, ideal for any niche, including free e-commerce mega menu.

    \n

    🟢 Elementor Widget Builder
    \nElementsKit gives web designers ultimate creative freedom to build custom widgets without coding. Just drag and drop controls to create fully responsive Elementor widgets.

    \n

    🟢 Onepage Scroll
    \nElementsKit’s Onepage Scroll lets you create sleek, scrollable onepage scroll websites with interactive navigation. This Elementor onepage scroll feature also supports pre-designed onepage scroll layouts.

    \n

    🟢ElementsKit Icon Pack Module**
    \nElementsKit ships with a collection of meticulously designed, high-quality custom icons (3000+) for WordPress.

    \n

    Exclusive PRO Elementor Addons Widgets

    \n

    Let’s look at advanced Elementor widgets in ElementsKit Pro version:

    \n

    Gallery – Showcase your recent photos, company environment, events, etc.

    \n

    Advanced Accordion) – Helps to arrange images, social feed, progress bar, MailChimp subscription form, etc. within the accordion in a nested format.

    \n

    Vertical Menu – Easily design & add vertical navigation menus on your site.

    \n

    Circle Menu – A creative solution for showing your menu items in a circle.

    \n

    Advanced Tab – Style the tabs and display various nested elements.

    \n

    Timeline – Create your timeline chart, design and showcase it.

    \n

    Chart – Show a graphical representation of data and create charts.

    \n

    Data Table – Let you create data tables with advanced styling options and features.

    \n

    Creative Button – Customize buttons with hover effects, content, borders, shadows, and more.

    \n

    Motion Text – Helps to display your text with various motion animations, with styles.

    \n

    Advanced Toggle – Create amazing pricing tables, icon boxes, and packages and decorate them nicely.

    \n

    Vertical Mega Menu – Display Mega Menu vertically & customize the content easily with this Elementor mega menu builder addon.

    \n

    Hotspot – Identify a specific part of your image with a tooltip and reveal an associated text after user interactions.

    \n

    Zoom – Set the meeting hosts, start time and date, time zone, duration, etc.

    \n

    Breadcrumb – Customize the breadcrumb of your website by setting the max title word length and showing/hiding the category trail.

    \n

    Video Gallery – Add as many videos as you want to your website and design an attractive video gallery.

    \n

    Popup Modal – Design amazing popups and place them wherever you want them on your website.

    \n

    Google Map – Show your business address to visitors with a Google Map effortlessly.

    \n

    Unfold – Folding up certain sections (texts/images) is easy now.

    \n

    Image Swap – Interactively swap or switch between different images displayed on a screen.

    \n

    Advanced Slider – Mesmerizing sliders will assist you to boost engagement, conversion, and sales.

    \n

    Image Hover Effect – Customize interesting hover effects in no time to make catchy images.

    \n

    Fancy Animated Text – Create special and engaging animated texts.

    \n

    Price Menu – Make an appealing price menu to start and plan a business.

    \n

    Stylish List – Add a customized list and improve visitors’ engagement with your Elementor site.

    \n

    Team Carousel Slider – Introduce your team members pleasingly on a slider.

    \n

    Image Morphing – Control the display of your WordPress images without any hassles.

    \n

    Flip Box – Add excellent before and after effects to your messages.

    \n

    Audio Player – Make your music or audio files and present them on your website interestingly.

    \n

    Content Ticker – Showcase recent posts, latest and trending news, etc. stylishly.

    \n

    Coupon Code – Allows to make a small and customizable pop-up to display special offers.

    \n

    Protected content – Protect your valuable or premium content with passwords or user roles.

    \n

    Interactive Links – Clickable and animated links boosts user interactions.

    \n

    Advanced Search – Design powerful live search panel to provide relevant search results.

    \n

    WooCommerce Elementor Addon

    \n

    Display and design e-commerce products in a list and intuitive sliders, along with their categories and mini cart option, anywhere you want.
    \n
    🔶 WooCommerce Product List 🔶WooCommerce Product Carousel 🔶WooCommerce Category List 🔶WooCommerce Mini Cart

    \n

    Effortless Integration with Different Social Platforms

    \n

    ElementsKit Pro is a complete Elementor social media addon that lets you showcase social media content, sharing options, and other helpful engagement features directly into your WordPress website. Web page visitors can see and connect with dominant social media platforms with the help of widgets like:

    \n


    🔶 Facebook Feed 🔶Instagram Feed 🔶 Twitter Feed 🔶Pinterest Feed 🔶

    \n

    You can enable chat-head or a click to chat option on your Elementor website to easily integrate Messenger & WhatsApp.
    \n
    🔶 Facebook Messenger Module 🔶 WhatsApp 🔶

    \n

    Also, creative professionals can use this Elementor addon for building their professional-level portfolio website. It has Elementor widgets:
    \n
    🔶 Behance Feed 🔶 Dribbble Feed 🔶

    \n

    ElementsKit allows to showcase authentic user feedback from trusted platforms while offering detailed layout custoization to match your website’s design.
    \n
    🔶 Yelp 🔶 Facebook Review 🔶

    \n

    PRO Modules in Premium Elementor Addon version

    \n

    To empower Elementor page builder, ElementsKit has some exclusive premium modules:

    \n

    🟢 Conditional Content Module Show or hide a specific part of your webpage or content based on certain conditions.

    \n

    🟢 Advanced Sticky Module Always Keep menu header at the top screen.

    \n

    🟢 Advanced Parallax Module Design your page and tell stories while users scroll a page.

    \n

    🟢 Advanced Tooltip Module – It guides you to arrange information, add any element or media and experiment different tooltips.

    \n

    🟢 Cross-Domain Copy Paste Easily reuse any section, column, and widget of a website to another website, with this module.

    \n

    🟢 Image Masking Helps you to customize the image shapes and make them more appealing.

    \n

    🟢 Particles Grab attention with ElementsKit Particles and decorate backgrounds with dynamic particle effects.

    \n

    🟢 Wrapper Link Advanced way to add a link to any section, column, or widget in Elementor.

    \n

    🟢 Glass Morphism To apply frosted glass effects on your website backgrounds, this module is a fantastic choice.

    \n

    🟢 Mouse Cursor Convert boring cursor to interesting ones with our latest module.

    \n

    🟢 Liquid Glass Add trendy Apple liquid glass interface to your Elementor webstie.

    \n

    This Elementor Addon supports Elementor Form Plugin:

    \n

    🟢 Reset Button for Elementor Form: Add a reset button to Elementor Form and customize it to match your brand.

    \n

    🟢 Google Sheet Integration for Elementor Form: Automate the data collection of Elementor Form and store form submission data directly in Google Sheets.

    \n

    👉 Learn How to Install & Use ElementsKit

    \n

    🤝 BACKED BY A TRUSTED TEAM

    \n

    ElementsKit is brought to you by Wpmet, a name trusted by 10,00,000 satisfied users worldwide!

    \n

    » DOCUMENTATION AND SUPPORT

    \n\n

    😍 LOVE ElementsKit Elementor Addon?

    \n

    ⭐️ Rate us on WordPress

    \n

    ✨ OUR OTHER PLUGINS

    \n

    👉 MetForm – Super flexible and easy-to-use form builder.
    \n👉 ShopEngine – Your complete WooCommerce solution, built for Elementor.
    \n👉 GutenKit – Build websites 10x Faster with ZERO coding in the Gutenberg Block Editor.
    \n👉 EmailKit – Effortless way to change your email-building experience.
    \n👉 GetGenie Ai – An advanced Ai assistant for SEO-friendly content.
    \n👉 Wp Social – Leverage Wp Social to add Social Login, Social Counter, and Social Login to your website.
    \n👉 Wp Fundraising – Employ the power of Wp Fundraising to create a crowdfunding & donation sites.
    \n👉 Wp Ultimate Review – Manage customer reviews with the Wp Ultimate Review plugin.
    \n👉 PopupKit – Build exceptional popup for diverse needs within the WordPress block editor.
    \n👉 TableKit – Make fully-customizable multipurpose table & generate data table within Gutenberg block editor.
    \n👉 Genie Image – Generate images directly on your WordPress website with the magic of AI.

    \n

    Visit wpmet for essential WordPress Tutorials, Tips & Tricks!

    \n", "screenshots": "
    1. \"Powerup

      Powerup WordPress Mega Menu Builder

    2. \"Elementor

      Elementor Header Footer Builder

    3. \"Drag-and-drop

      Drag-and-drop Elementor Mega Menu Builder

    4. \"\"
    5. \"\"
    ", "installation": "

    Prerequisite: This is an Elementor Addon plugin. So, first you need to activate Elementor.

    \n
      \n
    1. Upload the plugin files to the /wp-content/plugins/ directory, or install the plugin through the WordPress plugins screen directly.
    2. \n
    3. Activate the plugin through the ‘Plugins’ screen in WordPress
    4. \n
    5. All Settings will be found in the Admin sidebar -> ElementsKit menu
    6. \n
    7. In Elementor editor, find widgets under ElementsKit category or search “Ekit.”
    8. \n
    \n

    For further queries, contact our support team.

    \n"}, "versions": {"1.2.6": "https://downloads.wordpress.org/plugin/elementskit-lite.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/elementskit-lite.1.2.7.zip", "1.2.9": "https://downloads.wordpress.org/plugin/elementskit-lite.1.2.9.zip", "1.3.1": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.5.zip", "1.3.8": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.5.zip", "1.4.7": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.2.zip", "1.5.4": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.9.zip", "2.0.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.7.zip", "2.2.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.2.4.zip", "2.3.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.7.zip", "2.4.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.6.3.zip", "2.7.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.7.0.zip", "2.7.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.7.5.zip", "2.8.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.1.zip", "2.8.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.7.zip", "2.8.8": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.8.zip", "2.9.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.9.2.zip", "3.0.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.7.zip", "3.1.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.1.4.zip", "3.2.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.7.zip", "3.3.8": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.8.zip", "3.3.9": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.9.zip", "3.4.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.8.zip", "3.4.9": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.9.zip", "3.5.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.6.zip", "3.6.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.6.1.zip", "3.7.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.5.zip", "trunk": "https://downloads.wordpress.org/plugin/elementskit-lite.zip", "1.5.10": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.10.zip", "1.5.11": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.11.zip", "1.5.12": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.12.zip", "2.0.10": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.13.zip", "2.5.10": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.10.zip", "2.0.9.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.9.1.zip", "2.0.9.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.9.2.zip", "2.0.9.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.9.3.zip", "2.3.1.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.1.1.zip"}, "downloaded": 41657865, "description": "

    ElementsKit Elementor addons is an ultimate and all-in-one addons for Elementor Page Builder. It brings a nice comprehensive solution with 90+ Elementor widgets, 20+ modules, and 1000+ pre-designed Elementor templates.

    \n

    Everything is accessible through an easy drag-and-drop interface, including features like header-footer builder, mega menu, widget builder, and more to expand your Elementor capabilities.

    \n

    Besides exclusive features & templates, ElementsKit offers copy-paste across domains and control content visibility with multiple conditions. It’s a versatile design toolkit packed with advanced widgets for content, forms, posts, charts, WooCommerce, etc, dedicated for building any Elementor site.

    \n

    🏆 Great Elementor Addon! Check ElementsKit demos for new website-building possibilities.

    \n

    \n

    | ElementsKit Home Page | ElementsKit Elementor Templates | Blog | Documentation | Need Support? | How to get started with ElementsKit Pro |

    \n

    🌟 Check all ElementsKit Elements 🌟
    \n🌟 Elementor Mega Menu Builder 🌟
    \n🌟 Elementor Header Footer Builder 🌟
    \n🌟 Elementor Custom Widget Builder 🌟

    \n

    KEY FEATURES

    \n

    🔥 All time **downloads of ElementsKit : 41 million+

    \n

    ⭐ 90+ Free and Premium Elementor Widgets

    \n

    20+ Exclusive Modules for advanced design solution

    \n

    45+ Pre-designed Header & Footer Elementor Templates

    \n

    98+ Ready Pages to start Elementor website in no time

    \n

    ⭐ Versatile Elementor template library of 1000+ Pre-made Sections

    \n

    ⭐ No-code Elementor Custom Widget Builder

    \n

    ⭐ Drag & Drop Elementor Mega Menu Builder

    \n

    ⭐ Beneficial WooCommerce Elementor Templates & Widgets

    \n

    ⭐ Cross-domain copy-paste compatibility

    \n

    ⭐ Fully Responsive website for mobile, desktop, & tab

    \n

    ⭐ No extra loading time for web pages

    \n

    ⭐ Expert support team available 24/7

    \n

    ⭐ Build with Elementor & has the same interface

    \n

    ⭐ Packed with attractive animation effects

    \n

    Extensive ElementsKit Templates for Elementor

    \n

    ElementsKit is a popular Elementor addon among millions of users that eliminates the need to design from scratch. It ships with over 900+ pre-made section blocks and 40+ ready-made Elementor templates for designing a full website, including Elementor header-footer templates & Elementor mega menu templates. Whatever niche or industry, you’re working with, ElementsKit page builder addon layout library includes unique Elementor templates designed with royalty-free images.

    \n

    Modular based and Lightweight

    \n

    This modular-based page builder plugin, you only enable widgets or modules you need to create your design to ensure no additional bloat in website performance.

    \n

    Completely Customizable & Dynamic Website Builder Functionality

    \n

    ElementsKit widgets and modules come with powerful styling controls to customize every pixel of your Elementor sites and support dynamic conditions to show content by role, device, or time and different headers.

    \n

    50+ FREE ELEMENTOR WIDGETS

    \n

    If you’re looking for a free Elementor addon, ElementsKit offers a complete package in town, with 50+ widgets, 5+ modules, and professionally designed Elementor templates.

    \n

    Heading – Design headings with multiple fancy, & custom styles. (Free WordPress Header Footer Builder)

    \n

    Button – Add amazing buttons with text, color, CTA, etc.

    \n

    Team – Customize team section with members’ names, positions, bios, etc.

    \n

    Accordion – Display texts in a foldable & concise way.

    \n

    Tab – Show texts divided into horizontal or vertical tabs with titles.

    \n

    Social Icons – Displaying social media icons is easy now.

    \n

    Client Logo – Showcase your client & sponsor logos with different styles.

    \n

    Comparison Table: Easily compare and contrast different products, services, or options.

    \n

    Countdown Timer – Comes with various effects, styles, and formats.

    \n

    FAQ – Present all Q&As with different designs and unique styles.

    \n

    Funfact – Show statistics, achievements, & fun facts.

    \n

    Icon Box – Write short brief about services or products within boxes.

    \n

    Image Accordion – Display multiple images in a shortened format easily.

    \n

    Image Box – Combine images with headlines, texts, and call-to-action buttons.

    \n

    Pie Chart – Create and style data pie charts on your web page within a short time.

    \n

    Pricing Table – Describe your clear product/service value beautifully.

    \n

    Progress Bar – Visualize project’s progress with intuitive graphics.

    \n

    Testimonial – Show clients feedback, & recommendations on your sites.

    \n

    MailChimp – Create and manage a mailing list, automated mailing, newsletter, etc.

    \n

    Image Comparison – Design and compare two images.

    \n

    Call To Action – Bring an image, content, and other features under one box.

    \n

    Video – Add playable videos to your page and style them nicely.

    \n

    Category List – Organize and customize every section of each category in a list.

    \n

    Page List – Arrange & customize your list of pages in horizontal or vertical layout.

    \n

    Drop Caps – Design content’s starting letter in a stylish, large, and capitalized format.

    \n

    Dual Button – Display two buttons side by side with the Elementor dual button widget.

    \n

    Business Hours – Inform your opening hours to users clearly and attractively.

    \n

    Social Share – Share your content on your social media accounts easily.

    \n

    Lottie – Export a JSON file or provide a URL to use amazing animations.

    \n

    TablePress – Allows you to create and style nice responsive data tables.

    \n

    Back to Top – Add and customize the back-to-top button easily.

    \n

    ElementsKit Elementor Addon Featuring Free Header Widgets

    \n

    Experience a no-cost WordPress site header navigation functions like dropdown menu, hamburger menu, offcanvas menu. Also, customize header info items like logos, text, address, social icons and display a functional search bar.

    \n

    Free Elementor Widgets for Header Styling
    🔶 ElementsKit Nav Menu 🔶 Header Offcanvas 🔶 Header Search 🔶Header Info 🔶

    \n

    Blog Post Addon for Elementor

    \n

    Display and organize your blog posts in flexible blog layout options like grid, list, tab, etc. ElementsKit covers various blog post widgets that make it easy for visitors to navigate to your popular, related, recent blog posts, or a based on aspecific category through an intuitive blog post structure.

    \n

    🔶 Blog Posts 🔶 Post Tab 🔶 Post List 🔶 Post Grid 🔶 Category List🔶

    \n

    Free Elementor Addon for Third-Party Form Styling

    \n

    If you’re using a popular form builder plugin on your website, chances are the ElementsKit Elementor addon includes a dedicated form style widget for it. With a flexible, Elementor-like interface, you can easily customize various form types, including contact forms, suggestion forms, and newsletters.

    \n

    Whether you choose from pre-designed layouts or build a form from scratch, ElementsKit provides extensive customization options to match your design needs effortlessly.

    \n

    Free Elementor Widgets for Form Styling
    🔶 Caldera Forms 🔶 Contact Form 7 🔶 Ninja Forms 🔶WP Forms 🔶 weForms 🔶 Fluent Forms 🔶 MailChimp 🔶

    \n

    Highly Functional & Free Modules

    \n

    This advanced Elementor addon offers some powerful modules in the free version.

    \n

    🟢 ElementsKit Header and Footer Builder
    \nBuild and customize Elementor website header footer with a drag-and-drop interface. Enjoy features like conditional display, sticky menus, off-canvas menus, WooCommerce carts, etc, with Elementor header footer builder. ElementsKit has versatile pre-designed templates for Elementor header footer.

    \n

    \n

    🟢 Elementor Megamenu builder
    \nDesign multi-level WordPress mega menus with Elementor widgets, content, and visuals using ElementsKit’s no-code Elementor mega menu builder. Create horizontal or vertical menus effortlessly, ideal for any niche, including free e-commerce mega menu.

    \n

    🟢 Elementor Widget Builder
    \nElementsKit gives web designers ultimate creative freedom to build custom widgets without coding. Just drag and drop controls to create fully responsive Elementor widgets.

    \n

    🟢 Onepage Scroll
    \nElementsKit’s Onepage Scroll lets you create sleek, scrollable onepage scroll websites with interactive navigation. This Elementor onepage scroll feature also supports pre-designed onepage scroll layouts.

    \n

    🟢ElementsKit Icon Pack Module**
    \nElementsKit ships with a collection of meticulously designed, high-quality custom icons (3000+) for WordPress.

    \n

    Exclusive PRO Elementor Addons Widgets

    \n

    Let’s look at advanced Elementor widgets in ElementsKit Pro version:

    \n

    Gallery – Showcase your recent photos, company environment, events, etc.

    \n

    Advanced Accordion) – Helps to arrange images, social feed, progress bar, MailChimp subscription form, etc. within the accordion in a nested format.

    \n

    Vertical Menu – Easily design & add vertical navigation menus on your site.

    \n

    Circle Menu – A creative solution for showing your menu items in a circle.

    \n

    Advanced Tab – Style the tabs and display various nested elements.

    \n

    Timeline – Create your timeline chart, design and showcase it.

    \n

    Chart – Show a graphical representation of data and create charts.

    \n

    Data Table – Let you create data tables with advanced styling options and features.

    \n

    Creative Button – Customize buttons with hover effects, content, borders, shadows, and more.

    \n

    Motion Text – Helps to display your text with various motion animations, with styles.

    \n

    Advanced Toggle – Create amazing pricing tables, icon boxes, and packages and decorate them nicely.

    \n

    Vertical Mega Menu – Display Mega Menu vertically & customize the content easily with this Elementor mega menu builder addon.

    \n

    Hotspot – Identify a specific part of your image with a tooltip and reveal an associated text after user interactions.

    \n

    Zoom – Set the meeting hosts, start time and date, time zone, duration, etc.

    \n

    Breadcrumb – Customize the breadcrumb of your website by setting the max title word length and showing/hiding the category trail.

    \n

    Video Gallery – Add as many videos as you want to your website and design an attractive video gallery.

    \n

    Popup Modal – Design amazing popups and place them wherever you want them on your website.

    \n

    Google Map – Show your business address to visitors with a Google Map effortlessly.

    \n

    Unfold – Folding up certain sections (texts/images) is easy now.

    \n

    Image Swap – Interactively swap or switch between different images displayed on a screen.

    \n

    Advanced Slider – Mesmerizing sliders will assist you to boost engagement, conversion, and sales.

    \n

    Image Hover Effect – Customize interesting hover effects in no time to make catchy images.

    \n

    Fancy Animated Text – Create special and engaging animated texts.

    \n

    Price Menu – Make an appealing price menu to start and plan a business.

    \n

    Stylish List – Add a customized list and improve visitors’ engagement with your Elementor site.

    \n

    Team Carousel Slider – Introduce your team members pleasingly on a slider.

    \n

    Image Morphing – Control the display of your WordPress images without any hassles.

    \n

    Flip Box – Add excellent before and after effects to your messages.

    \n

    Audio Player – Make your music or audio files and present them on your website interestingly.

    \n

    Content Ticker – Showcase recent posts, latest and trending news, etc. stylishly.

    \n

    Coupon Code – Allows to make a small and customizable pop-up to display special offers.

    \n

    Protected content – Protect your valuable or premium content with passwords or user roles.

    \n

    Interactive Links – Clickable and animated links boosts user interactions.

    \n

    Advanced Search – Design powerful live search panel to provide relevant search results.

    \n

    WooCommerce Elementor Addon

    \n

    Display and design e-commerce products in a list and intuitive sliders, along with their categories and mini cart option, anywhere you want.
    \n
    🔶 WooCommerce Product List 🔶WooCommerce Product Carousel 🔶WooCommerce Category List 🔶WooCommerce Mini Cart

    \n

    Effortless Integration with Different Social Platforms

    \n

    ElementsKit Pro is a complete Elementor social media addon that lets you showcase social media content, sharing options, and other helpful engagement features directly into your WordPress website. Web page visitors can see and connect with dominant social media platforms with the help of widgets like:

    \n


    🔶 Facebook Feed 🔶Instagram Feed 🔶 Twitter Feed 🔶Pinterest Feed 🔶

    \n

    You can enable chat-head or a click to chat option on your Elementor website to easily integrate Messenger & WhatsApp.
    \n
    🔶 Facebook Messenger Module 🔶 WhatsApp 🔶

    \n

    Also, creative professionals can use this Elementor addon for building their professional-level portfolio website. It has Elementor widgets:
    \n
    🔶 Behance Feed 🔶 Dribbble Feed 🔶

    \n

    ElementsKit allows to showcase authentic user feedback from trusted platforms while offering detailed layout custoization to match your website’s design.
    \n
    🔶 Yelp 🔶 Facebook Review 🔶

    \n

    PRO Modules in Premium Elementor Addon version

    \n

    To empower Elementor page builder, ElementsKit has some exclusive premium modules:

    \n

    🟢 Conditional Content Module Show or hide a specific part of your webpage or content based on certain conditions.

    \n

    🟢 Advanced Sticky Module Always Keep menu header at the top screen.

    \n

    🟢 Advanced Parallax Module Design your page and tell stories while users scroll a page.

    \n

    🟢 Advanced Tooltip Module – It guides you to arrange information, add any element or media and experiment different tooltips.

    \n

    🟢 Cross-Domain Copy Paste Easily reuse any section, column, and widget of a website to another website, with this module.

    \n

    🟢 Image Masking Helps you to customize the image shapes and make them more appealing.

    \n

    🟢 Particles Grab attention with ElementsKit Particles and decorate backgrounds with dynamic particle effects.

    \n

    🟢 Wrapper Link Advanced way to add a link to any section, column, or widget in Elementor.

    \n

    🟢 Glass Morphism To apply frosted glass effects on your website backgrounds, this module is a fantastic choice.

    \n

    🟢 Mouse Cursor Convert boring cursor to interesting ones with our latest module.

    \n

    🟢 Liquid Glass Add trendy Apple liquid glass interface to your Elementor webstie.

    \n

    This Elementor Addon supports Elementor Form Plugin:

    \n

    🟢 Reset Button for Elementor Form: Add a reset button to Elementor Form and customize it to match your brand.

    \n

    🟢 Google Sheet Integration for Elementor Form: Automate the data collection of Elementor Form and store form submission data directly in Google Sheets.

    \n

    👉 Learn How to Install & Use ElementsKit

    \n

    🤝 BACKED BY A TRUSTED TEAM

    \n

    ElementsKit is brought to you by Wpmet, a name trusted by 10,00,000 satisfied users worldwide!

    \n

    » DOCUMENTATION AND SUPPORT

    \n\n

    😍 LOVE ElementsKit Elementor Addon?

    \n

    ⭐️ Rate us on WordPress

    \n

    ✨ OUR OTHER PLUGINS

    \n

    👉 MetForm – Super flexible and easy-to-use form builder.
    \n👉 ShopEngine – Your complete WooCommerce solution, built for Elementor.
    \n👉 GutenKit – Build websites 10x Faster with ZERO coding in the Gutenberg Block Editor.
    \n👉 EmailKit – Effortless way to change your email-building experience.
    \n👉 GetGenie Ai – An advanced Ai assistant for SEO-friendly content.
    \n👉 Wp Social – Leverage Wp Social to add Social Login, Social Counter, and Social Login to your website.
    \n👉 Wp Fundraising – Employ the power of Wp Fundraising to create a crowdfunding & donation sites.
    \n👉 Wp Ultimate Review – Manage customer reviews with the Wp Ultimate Review plugin.
    \n👉 PopupKit – Build exceptional popup for diverse needs within the WordPress block editor.
    \n👉 TableKit – Make fully-customizable multipurpose table & generate data table within Gutenberg block editor.
    \n👉 Genie Image – Generate images directly on your WordPress website with the magic of AI.

    \n

    Visit wpmet for essential WordPress Tutorials, Tips & Tricks!

    \n", "donate_link": "", "num_ratings": 1937, "screenshots": {"3": {"src": "https://ps.w.org/elementskit-lite/assets/Screenshot-3.gif?rev=3074791", "caption": "Powerup WordPress Mega Menu Builder"}, "4": {"src": "https://ps.w.org/elementskit-lite/assets/screenshot-4.gif?rev=3074791", "caption": "Elementor Header Footer Builder"}, "5": {"src": "https://ps.w.org/elementskit-lite/assets/screenshot-5.png?rev=2122447", "caption": "Drag-and-drop Elementor Mega Menu Builder"}, "6": {"src": "https://ps.w.org/elementskit-lite/assets/screenshot-6.png?rev=3074791", "caption": ""}, "7": {"src": "https://ps.w.org/elementskit-lite/assets/screenshot-7.png?rev=3074791", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/elementskit-lite/", "contributors": {"ataurr": {"avatar": "https://secure.gravatar.com/avatar/f73fad1d10f83bf8d56f91b0a7d6871339c2037406bd05028dabdfa782d078da?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ataurr/", "display_name": "Ataur R"}, "emranio": {"avatar": "https://secure.gravatar.com/avatar/e39465a364456601fee82491b8749d0ee33f1354b445e6043f8f5bef7fc8d8c1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/emranio/", "display_name": "Emran"}, "xpeedstudio": {"avatar": "https://secure.gravatar.com/avatar/fc68de72901b19de3ab443bfa9f8366b4c054cd487ee62bf5e9d4a7361bef3b0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/xpeedstudio/", "display_name": "XpeedStudio"}}, "last_updated": "2025-10-28 4:34pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.5.zip", "author_profile": "https://profiles.wordpress.org/roxnor/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    WordPress 4.9+

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f36d-7252-b2e2-b7a7f531bcb9", "name": "ElementsKit Elementor Addons and Templates", "slug": "elementskit-lite", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1761669240, "version": "3.7.5"}, "support_threads": 11, "requires_plugins": [], "short_description": "Join millions who empower their websites with ElementsKit Elementor Addons. Get templates, & 100+ widgets like header-footer, mega menu, custom widget", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 11}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1b71-71d3-91e0-a0a9fa29791d', 'did:web:api.aspiredev.org:packages:wp-plugin:essential-addons-for-elementor-lite', 'essential-addons-for-elementor-lite', 'Essential Addons for Elementor – Popular Elementor Templates & Widgets', '

    Enhance Elementor page building experience with 100+ creative elements and extensions. Add powers to your website builder using our easy-to-use Elementor widgets and ready Elementor templates, which were designed to make your next WordPress website design easier and prettier than ever before.

    -

    Essential Addons for Elementor offers 110+ advanced Elementor widgets with kits, 6,000+ ready templates & WooCommerce builder, serving 2 million+ active users.

    -

    Check the Demos

    -

    Completely Customizable

    -

    Each widget and extension comes with a bunch of options to customize your website in every possible way. You can achieve nearly any design of your imagination.

    -

    Light Weight & Instant Loading

    -

    No extra resources or messy code to slow down your website. Optimized for super fast loading and instant Live editing.

    -

    Elements Control option

    -

    Enable and disable individual elements adding to make your page load faster and smoother. You can deactivate unnecessary widgets to keep the site light.

    -

    6000+ Ready WordPress Templates & Blocks through Templately

    -

    Grab access to 3,000+ pre-made Elementor templates from Templately (a large templates cloud for WordPress), that come with Essential Addons.Unlock stunning Elementor templates, blocks & sections;and design your website to stand out from the crowd.

    -

    -

    Each of these Elementor templates is completely customizable and responsive, and also seamlessly compatible with Essential Addons. You can personalize them effortlessly by changing font, color, etc.

    -

    Templately also offers advanced features and facilities to save your templates to the cloud. Store all your ready and customized designs with Templately & deploy on hundreds of websites with 1-click. Increase productivity and power up your whole team to build websites faster than ever before.

    -

    Ready Elementor Templates From Templately:

    - -

    Expert Support

    -

    We have an extraordinary support team ready to help you. Ask your questions in the support forum, or contact us directly through live chat and contact form.

    -

    Elementor Website Builder is required for this plugin.

    -

    60+ FREE ELEMENTOR ADDONS AND COUNTING

    -

    We have designed more than 60 useful widgets to enhance your Elementor Page Building experience and allow you to climb the peak of your design capabilities.

    -
      -
    1. Post Grid – Showcase your blog posts in 3 unique styles
    2. -
    3. Post Timeline – Create stunning timeline for your posts & pages
    4. -
    5. Fancy Text – Design pages using animated texts in 8 different styles
    6. -
    7. Creative Buttons – Quickly add modern buttons with hover effects
    8. -
    9. Countdown – Include a countdown timer to boost click-through rates
    10. -
    11. Team Members – Feature your team members with a few clicks
    12. -
    13. Testimonials – Showcase customer reviews & increase credibility
    14. -
    15. WooCommerce Product Grid – Display WooCommerce products in grid layout
    16. -
    17. Contact Form 7 – Customize beautiful forms without any coding
    18. -
    19. Gravity Forms – Design forms with Elementor & Gravity Forms
    20. -
    21. Ninja Forms – Easily create your form style just the way you want
    22. -
    23. Caldera Forms – Design effective mobile-friendly forms
    24. -
    25. WPForms – Create powerful WordPress forms in minutes
    26. -
    27. weForms – Get an incredibly fast form building experience
    28. -
    29. Info Box – Design beautiful info box from predefined styles
    30. -
    31. Flip Box – Use animated Flip Boxes to highlight any content
    32. -
    33. Dual Color Heading – Highlight your headings with dual colors
    34. -
    35. Call to Action – Design call-to-action buttons with a few clicks
    36. -
    37. Pricing Table – Create Pricing Tables within minutes that convert
    38. -
    39. Twitter Feed – Showcase your latest tweets to your visitors
    40. -
    41. Data Table – Insert attractive data table anywhere you want
    42. -
    43. Filterable Gallery – Share images with an interactive gallery
    44. -
    45. Image Accordion – Highlight your images with amazing hover effects
    46. -
    47. Content Ticker – Use slider & ticker effects to display your content
    48. -
    49. Tooltip – Set tooltip for Icon, Image, Text or shortcodes
    50. -
    51. Advanced Tabs – Display information neatly in nested tabs
    52. -
    53. Advanced Accordion – Add beautiful nested accordions anywhere
    54. -
    55. Progress Bar – Display progress bars with 4+ different styles
    56. -
    57. Feature List – Display feature lists with custom icons and styles
    58. -
    59. Fluent Forms – Design your Fluent Forms container, fields and anything you want
    60. -
    61. Facebook Feed – Display Facebook post feed from your page
    62. -
    63. Sticky Video – Add videos that are sticky on scroll while playing
    64. -
    65. BetterDocs Category Grid – Create documentation in grid layout
    66. -
    67. BetterDocs Category Box – Create documentation in box layout
    68. -
    69. BetterDocs Search Form – Add a live search box for documentation
    70. -
    71. Advanced Data Table – Design large data tables without coding
    72. -
    73. Event Calendar – Create customized event pages
    74. -
    75. Formstack – Design your Formstack forms
    76. -
    77. Woo Checkout – Build attractive WooCommerce Checkout pages
      -youtube
    78. -
    79. Typeform – Embed & design your Typeform forms
    80. -
    81. Login | Register Form – Create amazing login/registration forms
    82. -
    83. Woo Product Compare – Design stunning product compare tables
    84. -
    85. Woo Product Carousel – Add Product Carousels for WooCommerce
    86. -
    87. Simple Menu– Design minimalist navigation menus
    88. -
    89. Woo Product Gallery– Show your products in a filterable gallery
    90. -
    91. Woo Cart– Use WooCommerce Cart page to boost online sales
    92. -
    93. Interactive Circle– Display content with engaging circular layouts
    94. -
    95. NFT Gallery– Add and showcase NFT collections effortlessly
    96. -
    97. Business Reviews– Display Google Customer Review to increase your online reputation
    98. -
    99. SVG Draw– Display SVG elements in a visually striking and interactive way on your website
    100. -
    101. Woo Product List– Showcase your store’s products with a stunning listicle format
    102. -
    103. Woo Product Price– Style your product price with custom colors and typography
    104. -
    105. Woo Product Rating– Show ratings to help customers make informed choices
    106. -
    107. Woo Product Images– Display WooCommerce product images with stunning effects
    108. -
    109. Woo Add to Cart– Make shopping easier with an ‘Add to Cart’ button
    110. -
    111. Breadcrumbs– Improve navigation with breadcrumbs for easy exploration
    112. -
    113. Code Snippet– Display beautifully formatted code on your Elementor website
    114. -
    -

    Extensions (Free):

    -
      -
    1. Reading Progress Bar – Add progress bar to show reading position
      -Watch YouTube Tutorial
    2. -
    3. Duplicator – Duplicate any page or post in a single click
    4. -
    5. Table of Contents – Display Table of Contents anywhere you want
      -Watch YouTube Tutorial
    6. -
    7. Custom JS – Add custom JavaScript with a few clicks
    8. -
    9. Scroll to Top – Let visitors quickly navigate to the top of your page
    10. -
    11. Wrapper Link – Add custom links into any section, column, or even flexbox
    12. -
    13. Hover Interactions – Create captivating effects on buttons, images, texts and more
    14. -
    15. Liquid Glass Effects – Give your website a sleek, futuristic feel with stunning glass effects
    16. -
    -

    More elements (50+) on Premium Version

    -
      -
    1. Post Block – Display your blog posts with a variety of styles
    2. -
    3. Lightbox & Modal – Create interactive popups after trigger actions
    4. -
    5. Testimonial Slider – Share customer reviews with animated sliders
    6. -
    7. Image Comparison – Let your viewers compare between two images
    8. -
    9. Interactive Promo – Display content with attractive animations
    10. -
    11. Instagram Feed – Display Instagram posts beautifully
    12. -
    13. Advanced Google Map – Create maps with unlimited themes
      -Watch YouTube Tutorial
    14. -
    15. Static Product – Present your static product just the way you want
    16. -
    17. Flip Carousel – Feature your content using a unique carousel style
    18. -
    19. Interactive Cards – Create fascinating effects for your content
    20. -
    21. Content Timeline – Create memory lane with animated scrolling
    22. -
    23. Advanced Menu – Use advanced navigation menu anywhere
    24. -
    25. Twitter Feed Carousel – Share Twitter posts in interactive styles
    26. -
    27. Dynamic Gallery – Add filterable gallery for any content
    28. -
    29. Smart Post List – Design your blog page with modern post list
    30. -
    31. Mailchimp – Design your Mailchimp form with ease
    32. -
    33. Toggle – Share any content in less space with a toggle
    34. -
    35. One Page Navigation – Create one page websites in Elementor
    36. -
    37. Price Menu – Make a beautiful pricing menu for your brands
    38. -
    39. Image Hotspots – Add hotspot icons with tooltips in an image
    40. -
    41. Divider – Separate your section with fancy divider
    42. -
    43. Counter – Highlight important data using the Counter element
    44. -
    45. Team Member Carousel – Display team members in a carousel
    46. -
    47. Post Carousel – Use a carousel to display multiple posts
    48. -
    49. Logo Carousel – Highlight brands or product logos in a carousel
    50. -
    51. Protected Content – Lock your content with password protection
    52. -
    53. Offcanvas – Display content in offcanvas with one click
    54. -
    55. Image Scroller – Show long height images with image scroller
    56. -
    57. Woo Product Slider – Showcase your products in a stunning slider
    58. -
    59. Woo Product Collections– Show product collections beautifully
    60. -
    61. LearnDash Course List– Share LearnDash course list on website
    62. -
    63. Advanced Search– Add a customizable, dynamic search bar
    64. -
    65. Woo Thank You– Design a personalized thank you message on the WooCommerce order confirmation page
    66. -
    67. Woo Cross Sells– Customize the display of cross-sell products to boost your sales potential
    68. -
    69. Woo Account Dashboard– Design a personalized WooCommerce Customer Account Dashboard
    70. -
    71. Fancy Chart– Visualize important data with interactive charts and graphs on your website
    72. -
    73. Stacked Cards– Showcase your website content in a distinctive and engaging way
    74. -
    75. 360 Degree Photo Viewer– Make your website image visible from every angle with adjustable controls
    76. -
    77. Multicolumn Pricing Table– Display pricing plans in multiple columns to compare features and choose the right option
    78. -
    79. Figma to Elementor Converter– Turn Figma designs into fully customizable Elementor Pages
    80. -
    -

    Extensions (Pro):

    -
      -
    1. Parallax – Add creative parallax effects to your content
    2. -
    3. Particles – Add animated particle effects to your content
    4. -
    5. Advanced Tooltip – Make any widget more informative with tooltip
    6. -
    7. Content Protection – Hide your content with password protection
    8. -
    9. Conditional Display– Display your preferred content based on the logic conditions you have set
    10. -
    11. Dynamic Tags– Display content dynamically on your preferred section of the website
    12. -
    13. Interactive animations– Create stunning animations & build a fully dynamic web page
    14. -
    15. Custom Cursor– Transform the default mouse pointer into a fully personalized design
    16. -
    -

    More features and improvements are coming on regular updates. Want to unlock the advanced elements? Upgrade to our Pro version

    -

    Elementor WooCommerce Widgets From Essential Addons

    -

    With Essential Addons, we bring you seamless compatibility with WooCommerce, enhancing your ability to showcase products, categories, and filters with ease. There are 11+ beautiful WooCommerce widgets for your every need:

    -

    EA Woo Product Carousel: Display your store’s products interactively with this WooCommerce widget and implement various styling options and ready-made layouts to create an interactive product showcase on your WordPress website.

    -

    EA Woo Product Gallery: Captivate visitors and drive immediate purchases on your WooCommerce store using the Product Gallery element from Essential Addons. Explore incredible ready layouts, abundant customization choices, and more.

    -

    EA Woo Product Price: Highlight the price of your WooCommerce product Price and style it using custom colors and typography.

    -

    EA Woo Product Rating: Display WooCommerce product rating to help customers make informed purchasing decisions and increase credibility.

    -

    EA Woo Product Images: Showcase eye-catching WooCommerce product images with advanced customization and effects.

    -

    EA Woo Add to Cart: Simplify the shopping experience by displaying an easy-to-access ‘Add to Cart’ button for all your WooCommerce products.

    -

    EA Woo Product Slider (PRO): Present your WooCommerce products in a stunning slider format with this advanced Elementor addon. You can also easily customize the entire slider appearance with fantastic pre-designed layouts, effects, and other advanced options.

    -

    EA Woo Product Collection (PRO): Exhibit your WooCommerce product collections on any section of your Elementor website to showcase items based on categories, tags, or attributes, and add engaging hover effects.

    -

    -

    EA Woo Product List: Easily add all your WooCommerce products in a listicle format on any Elementor page or post on your website and customize with unique layouts to attract customers instantly.

    -

    EA Woo Product Grid: Display your products in visually appealing grid-layouts on any website section and allow customers to view them based on category, tags, or attributes.

    -

    EA Woo Product Compare: Easily compare your preferred WooCommerce products anywhere on the page with this free Elementor addon. Benefit from numerous pre-designed theme layouts and much more.

    -

    EA Woo Cross Sells:: Effortlessly show related items to your customers with this premium Elementor widget, aiding them in discovering complementary products and enriching their overall shopping experience.

    -

    -

    EA Woo Cart: Elevate customers’ purchasing experience on your WooCommerce store by effortlessly designing an appealing Cart Page with Essential Addons using no coding.

    -

    EA Woo Checkout: Craft visually appealing Checkout pages for your WooCommerce store to customize and style the widget effortlessly to ensure increased sales.

    -

    EA Woo Account Dashboard (PRO): Create a user-friendly and visually appealing dashboard for your WooCommerce store, consolidating all vital tabs into one convenient location.

    -

    -

    EA Woo Thank You (PRO):Resonate with customers and ensure a positive post-purchase experience with this advanced Elementor WooCommerce widget from Essential Addons. It lets you create tailor-made thank-you messages with limitless personalization.

    -

    🏆 FEATURED BY 100+ RENOWNED PUBLICATIONS

    -

    WP Mayor: “If you use Elementor, Essential Addons is a great way to expand your library of available widgets without slowing your site down.”
    -WP Pagebuilders: “With 60+ additional widgets, Essential Addons is a great add-on to enhance your experience in building a website with WordPress+Elementor.”
    -MonsterPost: “Essential Addons for Elementor has a huge number of active users among all third-party extensions on the market. The widgets are tested in all popular web browsers to ensure full browser compatibility for all elements.”
    -WPCrafter: WordPress influencer Adam Preiser did a Speed Test & found Essential Addons for Elementor is the high-performance solution out there 👇

    -

    -

    BACKED BY A TRUSTED TEAM

    -

    Essential Addons is brought to you by WPDeveloper, a dedicated WordPress product company, trusted by 6 million+ happy users.

    -

    Documentation and Support

    -
      -
    • For documentation and tutorials go to our Documentation.
    • -
    • If you have any more questions, visit our support on the Plugin’s Forum.
    • -
    • For more information about features, FAQs and documentation, check out our website at Essential Addons.
    • -
    -

    Happy User of Essential Addons?

    - -

    🔥 WHAT’S NEXT

    -

    If you like Essential Addons, then consider checking out our other WordPress Plugins:

    -

    🔔 NotificationX – Powerful Social Proof & FOMO Marketing Solution to boost conversions & design stunning WordPress notification bars in Elementor

    -

    🗒️ BetterDocs – Advanced Documentation & Knowledge Base Plugin for WordPress, which also comes with ready doc templates for Elementor

    -

    SchedulePress – Complete solution for managing WordPress content scheduling through an editorial calendar & Social Share

    -

    🔗 EmbedPress – Easy WordPress solution for embedding videos, images, posts, audio, maps and PDF, DOC, PPT & all other types of content into your website using Elementor, Gutenberg and more.

    -

    🔎 easy.jobs – Smart and easy recruitment and talent sourcing solution for hiring with AI-powered screening system, question sets, remote interviews, and designing branded career pages with Elementor.

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Essential Addons for Elementor – Popular Elementor Templates & Widgets", "slug": "essential-addons-for-elementor-lite", "tags": {"elementor": "elementor", "elementor-addons": "elementor addons", "elementor-widgets": "elementor widgets", "elementor-templates": "elementor templates", "elementor-woocommerce": "elementor woocommerce"}, "added": "2017-07-20", "icons": {"1x": "https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.gif?rev=3182943", "2x": "https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.gif?rev=3182943"}, "author": "WPDeveloper", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.png?rev=3349213", "high": "https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.png?rev=3349213"}, "ratings": {"1": 70, "2": 18, "3": 22, "4": 77, "5": 3766}, "version": "6.3.3", "homepage": "https://essential-addons.com/", "requires": "5.0", "sections": {"faq": "\n
    \nCan I use the plugin without Elementor Page Builder?\n\n

    \n

    No. You cannot use without Elementor since it’s an addon for Elementor.

    \n

    \n
    \nDoes it work with any theme?\n\n

    \n

    Absolutely! It will work with any theme where Elementor works.

    \n

    \n
    \nWhat if I update to Premium version?\n\n

    \n

    Your existing elements/content will work with premium version. So you won’t lose your developed contents.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy danduffett on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is already fantastic, but what really sets it apart is the super fast support when you need it! Loren was a lifesaver when I had a little styling issue and helped me sort it out in no time! Thanks again for everything!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazing Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gettoknowbig3 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I encountered an internal error within the plugin, which was frustrating. I contacted support, who were incredibly helpful. They fixed the bug in the plugin, which was conflicting with another, in just two days!

    \n\n\n\n

    Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy barryallen666 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plungin, fast customer support!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mussonking on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The little extra needed for the starters. lots of free stuff that help complete elementor free.

    \n\n\n\n

    thankss

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    More useful than Elementor Pro, actually.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dafshar on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I find the plugin to be very convenient and fun to use.

    \n\n\n\n

    When bugs do arise, support is quick to respond and take note for future updates.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rodman38 on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I just discovered a CSS bug in the \"Advanced Tabs\" widget. Support will quickly help find a temporary solution while we wait for a future plugin update.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great utility. Use it often

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy patrickhealy on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I picked this up years ago and use it on every site. So many great widgets that come in handy to extend Elementor. Big fan.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Help From Florence

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy domevisuals on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I just had an amzing experience with Florence, amazing support, went on and beyond what was asked from her

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stephfirst3 on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ryan at EA was super quick to respond to my request and provided some CSS I could use in the customizer to solve my issue. I would definitely give this plugin a try if you are using Elementor. They are responsive and provide solid support. Thanks EA Team!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Gran aporte al desarrollo de los sitios web

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cesarinrio on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excelente aporte para los desarrolladores, y en lo personal de maravilla.

    \n
    \n
    \n", "changelog": "

    6.3.3 – 08/10/2025

    \n
      \n
    • Fixed: EA Content Ticker | Tags not working properly with The Events Calendar
    • \n
    • Fixed: EA Advanced Tabs | Multiple saved templates causing design and responsiveness issues
    • \n
    • Fixed: EA Woo Checkout | Conflict with WooPayments
    • \n
    • Improved: EA Advanced Tab | Added Liquid Glass Effect
    • \n
    • Improved: EA Feature List | Horizontal layout enhancements
    • \n
    • Improved: EA Business Review | New design update
    • \n
    • Improved: EA Dynamic Tags | Enhanced flexibility
    • \n
    • Improved: EA Advanced Tabs | Added scheduling option for “Active as Default” controller
    • \n
    • Improved: EA Event Calendar | Added location field in event popup
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.3.2 – 18/09/2025

    \n
      \n
    • Fixed: EA Image Accordion | Horizontal layout not working on mobile
    • \n
    • Fixed: EA Product Images | Zoom lens size not working
    • \n
    • Fixed: EA Advanced Tabs | Tab title background color not working
    • \n
    • Fixed: EA Add to Cart & Rating | Conflict with Cusrev causing layout issues
    • \n
    • Fixed: EA Woo Product Compare | Header column styling issue
    • \n
    • Fixed: EA Feature List | Icon size rendering incorrectly
    • \n
    • Fixed: EA Woo Checkout | Styling issue with WooCommerce Subscriptions
    • \n
    • Fixed: EA Woo Cart | Body color issue on Safari/iPhone
    • \n
    • Improved: EA Advanced Tabs | Vertical layout offset now starts from content
    • \n
    • Improved: EA Feature List | Layout enhancements
    • \n
    • Improved: EA Pricing Table | Style & functional refinements
    • \n
    • Improved: Woo Product Grid | Show secondary image on hover
    • \n
    • Improved: Woo Product Grid | On Sale badge toggle added
    • \n
    • Improved: EA Content Ticker | “Order By” custom field meta key support
    • \n
    • Improved: EA Business Reviews | Google My Business API support
    • \n
    • Improved: EA Business Reviews | Display selected reviews
    • \n
    • Improved: EA Testimonial | New layout added
    • \n
    • Improved: EA Post Grid | Text placed before image for accessibility
    • \n
    • Improved: EA NFT Gallery | New source: Magic Eden
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.3.1 – 01/09/2025

    \n
      \n
    • Improvement | EA Woo Product Carousel | Add option to exclude “On Sale” and “Out of Stock” products
    • \n
    • Fixed: EA Login/Register Form | Auto login not working properly
    • \n
    • Fixed: EA Advanced Data Table | Header background color doesn’t work on the editor page when we import data from a CSV file
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.3.0 – 24/08/2025

    \n
      \n
    • Added: New Extension | Liquid Glass Effects
    • \n
    • Improved: Security Enhancement
    • \n
    • Fixed: EA Login/Register Form | Password reset URL is always showing expired when MemberPress is used to change Login URL
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.2.4 – 14/08/2025

    \n
      \n
    • Fixed: Fatal error on PHP 7.4 for some multisite setups
    • \n
    \n

    6.2.3 – 13/08/2025

    \n
      \n
    • Fixed: EA Simple Menu | Dropdown not working on iPhone
    • \n
    • Fixed: EA Filterable Gallery | Filters not updating in editor
    • \n
    • Fixed: Homepage not loading after updating from v6.1.8
    • \n
    • Fixed: Post Widgets | “Load More” button stays after full load
    • \n
    • Fixed: EA Woo Checkout | Shipping selection issue
    • \n
    • Fixed: EA Add to Cart | Spacing issue with variable products
    • \n
    • Fixed: Migration error | File integrity check added
    • \n
    • Fixed: EA Gravity Forms | List/File upload field color issue
    • \n
    • Fixed: EA SVG Draw | Not triggering on scroll
    • \n
    • Improved: EA Login/Register | Cloudflare Turnstile support
    • \n
    • Improved: EA Tooltip | WPML Media Translation support
    • \n
    • Improved: EA Flip Box | Auto height for all devices
    • \n
    • Improved: EA Woo Product Image | Custom hook for thumbnail
    • \n
    • Improved: EA Woo Product Image | Enhanced zoom effect
    • \n
    • Improved: EA Breadcrumbs | Home icon now clickable
    • \n
    • Improved: Performance | Reduced unnecessary queries
    • \n
    • Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.2.2 – 28/07/2025

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.2.1 – 20/07/2025

    \n
      \n
    • Improved: EA Call To Action | Added Multi-Color Title support
    • \n
    • Improved: EA Login/Register Form | Added reCAPTCHA support in Password Reset Form
    • \n
    • Fixed: EA Woo Product Carousel | Resolved add to cart button Duplication issue with Blocksy theme
    • \n
    • Fixed: EA Woo Product Carousel | Resolved Badge color styling issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.2.0 – 03/07/2025

    \n
      \n
    • Added: New Widget | EA Code Snippet
    • \n
    • Improved: Security Enhancements
    • \n
    • Improved: EA Event Calendar | Added label to search field for accessibility
    • \n
    • Fixed: EA Woo Product Gallery | Resolved cropping and misalignment issues with custom image sizes
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.20 – 26/06/2025

    \n
      \n
    • Improved: Security Enhancements
    • \n
    • Fixed: EA Woo Product Gallery | Compatibility issue with WPML
    • \n
    • Fixed: EA Filterable Gallery | Resolved layout issues
    • \n
    • Fixed: EA Woo Product Carousel | Addressed accessibility issues
    • \n
    • Fixed: EA Product Grid | Pricing now displays correctly in list layout
    • \n
    • Fixed: Resolved compatibility issue with GiveWP
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.19 – 20/06/2025

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.18 – 04/06/2025

    \n
      \n
    • Fixed: EA Woo Product Gallery | category tab not working
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.17 – 02/06/2025

    \n
      \n
    • Added: EA SVG Draw | New Fill Type (Always) Controller
    • \n
    • Added: EA Filterable Gallery | Added Captions for Videos
    • \n
    • Fixed: EA Advanced Data Table | Sorting Issue for non-English Languages
    • \n
    • Fixed: EA Advanced Data Table | Sorting Icon Shows Console Error
    • \n
    • Fixed: EA Woo Product Gallery | Quick View Popup Styling Issue
    • \n
    • Fixed: EA Woo Product Gallery | “View Cart” Button Line Height Is Incorrect
    • \n
    • Fixed: EA Simple Menu | Undefined Array Key “eael_simple_menu_menu” Warning
    • \n
    • Fixed: EA Woo Product Grid | “View More” Button Visible After Full Load in Elementor Tabs
    • \n
    • Fixed: EA Woo Product Grid | Issues with Missing Products
    • \n
    • Fixed: EA Woo Product Image | Image Scaling Issue
    • \n
    • Fixed: EA Login/Register Form | Validation Message Not Showing
    • \n
    • Fixed: EA Login/Register Form | Issue Submitting Forms With File Uploads
    • \n
    • Fixed: EA SVG Draw | Fill After Draw Issue
    • \n
    • Fixed: EA Post Grid | Excluding Pages Issue
    • \n
    • Fixed: Compatibility Issue with Newer PHP Versions.
    • \n
    • Improved: EA Fancy Text | Animation Delay Until Section Scrolls Into View.
    • \n
    • Improved: EA Filterable Gallery | Revamped Controls & Layouts
    • \n
    • Improved : Removed Unused Class “use” Declaration
    • \n
    • Improved: EA Post Grid, Team Member, Testimonial, Woo Product Grid, Woo Product Gallery | Controls Reorganized in Elementor Panel
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.15 – 25/05/2025

    \n
      \n
    • Improved: EA Filterable Gallery | Revamped Controls & Layouts
    • \n
    • Improved: EA Dual Color Heading | Added Multiple Heading Option
    • \n
    • Fixed: EA Login/Register Form | Google Social Login assigning “Subscriber” instead of “Editor” role after Signup
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.14 – 21/05/2025

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.13 – 19/05/2025

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.12 – 13/05/2025

    \n
      \n
    • Fixed: 404 Page not found page not working when built with Elementor template
    • \n
    • Fixed: EA Flip Box | Height Inconsistency and Scroll Not Working on iPhone
    • \n
    • Fixed: EA Woo Product List | Popup style not working
    • \n
    • Improved: EA Testimonial | Added Image Height Control
    • \n
    • Improved: EA Testimonial | Removed default 10px padding
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.11 – 22/04/2025

    \n
      \n
    • Improved: EA Info Box | Issues & Enhancements – Phase 2
    • \n
    • Fixed: EA Quick Setup Wizard | Basic and Advanced settings not working
    • \n
    • Fixed: EA Event Calendar | Language translation issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.10 – 10/04/2025

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.9 – 24/03/2025

    \n
      \n
    • Improved: EA Testimonial | Controller Mechanism
    • \n
    • Improved: EA Creative Button | Controller Mechanism
    • \n
    • Improved: EA Call To Action | Controller Mechanism
    • \n
    • Fixed: Elementor editor Overlapping issue
    • \n
    • Fixed: EA Filterable Gallery | Load more Button functionality issue
    • \n
    • Fixed: EA Filterable Gallery | Lightbox Slide number discrepancy issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.8 – 21/03/2025

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.7 – 20/03/2025

    \n
      \n
    • Fixed: Compatibility issue causing a critical error with Elementor Pro versions below 3.24.0
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.6 – 19/03/2025

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Improved: EA Facebook Feed | Load More button now functions correctly
    • \n
    • Improved: EA Info Box | Added Subtitle Option
    • \n
    • Improved: EA Sticky Video | Video now plays when clicked
    • \n
    • Improved: EA Woo Account Dashboard | Added additional controls inside tabs
    • \n
    • Fixed: Added support for Elementor 3.28.0 compatibility
    • \n
    • Fixed: EA SVG Draw | “Fill after draw” option now works correctly
    • \n
    • Fixed: EA Woo Product Images | Navigation arrows are now properly aligned
    • \n
    • Fixed: EA Filterable Gallery | Resolved masonry layout error
    • \n
    • Fixed: Resolved conflict with Elementor’s 404 page template
    • \n
    • Fixed: Woo Product Gallery | Now displays more than 4 products correctly
    • \n
    • Fixed: EA Login Register Form | Custom phone number field now appears in both user and admin emails
    • \n
    • Fixed: EA Team Member | Using an empty featured image from dynamic tags no longer causes a fatal error
    • \n
    • Fixed: EA Pricing Table | Icon color issue resolved
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.5 – 13/03/2025

    \n
      \n
    • Improved: Introduced Post Types selection mechanism for Widgets
    • \n
    • Improved: EA Product Grid | Added Stock Out products exclusion option
    • \n
    • Improved: EA Flip Box | Added option to control flip duration
    • \n
    • Fixed: EA Advanced Data Table | Issues with non English Special Characters
    • \n
    • Fixed: EA Woo Add to Cart | Multiple buttons double icon issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.4 – 17/02/2025

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.3 – 17/02/2025

    \n
      \n
    • Fixed: EA Creative Icon | SVG icon color not applying from settings
    • \n
    • Fixed: EA Advanced Data Table | Large CSV file import causes unresponsive page during widget edit
    • \n
    • Fixed: EA Filterable Gallery | Popup redirects to YouTube instead of opening modal
    • \n
    • Fixed: EA Woo Product Images | Images do not change with product variations
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.2 – 10/02/2025

    \n
      \n
    • Fixed: EA Woo Product Carousel | Regular price strikethrough color is not changing
    • \n
    • Fixed: EA Woo Product Carousel | Not able to style the pop-up with the woo product carousel
    • \n
    • Fixed: EA Woo Product Grid | Not able to style the pop-up with the woo product grid
    • \n
    • Fixed: EA Woo Product Gallery | Product Gallery Display Issue on Chrome (Repeating Rows After Navigation)
    • \n
    • Fixed: EA Fancy text | – & character can not be used
    • \n
    • Fixed: EA Advanced Tabs | Editor not loading when Advanced Tabs element is enabled in some cases
    • \n
    • Fixed: EA Fancy Text | Animation Not Working Except for “Typing Text”
    • \n
    • Improved: EA Woo Product Images | Added responsive controls
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.1 – 21/01/2025

    \n
      \n
    • Improved: Added Edit Template support right inside the page itself for the widgets which got Saved Template option
    • \n
    • Fixed: EA Breadcrumbs | When used on the Container, the background image of the container doesn’t show
    • \n
    • Fixed: Compatibility issue | WooCommerce Product Bundles | With bundle product quick view add to cart not working
    • \n
    • Fixed: EA Filterable Gallery | Accessibility issue with Filters
    • \n
    • Fixed: EA Filterable Gallery | Several fields from Filterable Gallery cannot be translated with WPML.
    • \n
    • Fixed: Advanced Data Table | open new tab does not work in link
    • \n
    • Fixed: EA Advanced Accordion | FAQ Schema Issue with Item Count
    • \n
    • Fixed: EA WPForms | Error text color is not being applied
    • \n
    • Fixed: EA Filterable Gallery | Load more is not showing properly in some cases
    • \n
    • Fixed: EA Event Calendar | Events overflowing the container if multiple events available on a day
    • \n
    • Improved: EA Team Member | Change Team Member name tag from H2 to span
    • \n
    • Fixed: EA Post timeline | Title font family can’t be changed
    • \n
    • Fixed: EA Gravity Forms | “Next” Button Issue with Ajax and Toggle Settings
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.0 – 29/12/2024

    \n
      \n
    • Added: EA Woo Product Price
    • \n
    • Added: EA Woo Product Rating
    • \n
    • Added: EA Woo Product Images
    • \n
    • Added: EA Woo Add to Cart
    • \n
    • Added: EA Breadcrumbs
    • \n
    • Fixed: Uncaught Error | Class XD_Copy not found
    • \n
    • Fixed: EA WPForms | Calendar selection not working in Elementor Popup
    • \n
    • Fixed: EA Woo Product Gallery | “Quick View” button custom URL issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.15 – 24/12/2024

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Improved: Added Optimized Markup Support
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.14 – 19/12/2024

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.13 – 15/12/2024

    \n
      \n
    • Fixed: EA Pricing Table | Throwing critical error when Pro version isn’t up-to-date
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.12 – 11/12/2024

    \n
      \n
    • Added: Elementor 3.26 Compatibility
    • \n
    • Fixed: EA Woo Cart | Quantity icons are showing multiple times on the cart page
    • \n
    • Fixed: EA Event Calendar | Multiple Issues with Date Formatting, Time Input, and Language Options
    • \n
    • Fixed: EA Scroll To Top | Not working on Search Result page
    • \n
    • Fixed: PHP Deprecated Warnings during Installation
    • \n
    • Fixed: EA Pricing Table | Trying to access array offset on null
    • \n
    • Fixed: Mismatched Text Domains
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.11 – 01/12/2024

    \n
      \n
    • Fixed: Compatibility issue with FunnelKit
    • \n
    • Fixed: EA Woo Product Carousel | On load carousel first item visibility issue
    • \n
    • Fixed: PHP Notice: Function “_load_textdomain_just_in_time” error in WordPress 6.7
    • \n
    • Fixed: EA Post Grid | Added Nickname support for Author
    • \n
    • Fixed: EA Info Box | Image styling Control issue
    • \n
    • Fixed: EA Sticky Video | Multiple Sticky Video in Same Page UI issue
    • \n
    • Fixed: EA Feature List | PHP undefined array notice : “eael_feature_list_icon_individual_box_bg_color”
    • \n
    • Fixed: EA Woo Product Grid | Product Rating Types issue on Default Preset
    • \n
    • Improved: EA Woo Product Gallery | Added relation between Category and Tags on Query
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.10 – 14/11/2024

    \n
      \n
    • Fixed: EA Advanced Accordion | When click on the accordion it jumps to another section
    • \n
    • Fixed: Woo Product Grid | Pagination Typography Font Weight is not being applied properly
    • \n
    • Fixed: Woo Product Grid | Product pricing isn’t displaying after the recent update, despite “Show Price” being enabled
    • \n
    • Fixed: WPForms Widget | Form Container Alignment Does Not Work properly
    • \n
    • Fixed: EA Dual Color Header | The Gradient color doesn’t work
    • \n
    • Fixed: EA Woo Product Grid | Price is not showing on list layout
    • \n
    • Fixed: EA Sticky Video | Sticky Video Misalignment Issue while scorlling
    • \n
    • Fixed: EA Login/Register Form | {password_reset_link} Shortcode Issue in Registration User Email Template
    • \n
    • Improved: EA Info Box | Width Controller for Image
    • \n
    • Improved: EA Woo Product Carrousel | Added rating count next to stars
    • \n
    • Improved: Select2 Ajax Control : Taxonomy – need to remove limit
    • \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.9 – 06/11/2024

    \n
      \n
    • Improved: Added Edit Template support right inside the page itself
    • \n
    • Improved: EA Post Grid | Added support to show custom post’s field/taxonomy
    • \n
    • Improved: EA Team Member | Added a dynamic tag option for showing ACF images in Team Member image
    • \n
    • Improved: EA Filterable Gallery | Added support for YouTube Shorts
    • \n
    • Fixed: EA Data Table | Using text area Content is visibility issue under < a > tag
    • \n
    • Fixed: EA Gravity Forms | Layout UI issue on the editor page
    • \n
    • Fixed: EA Interactive Circle | Conflicting with Whiskers Theme Pro
    • \n
    • Fixed: EA Post Grid | Author name issue in Style 1 & 2
    • \n
    • Fixed: EA Scroll To Top | Added support on Archive page
    • \n
    • Fixed: EA Woo Checkout | PHP Deprecated issue
    • \n
    • Fixed: EA Product Grid | Image clickable issue
    • \n
    • Fixed: Conflict with Formstack plugin
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.8 – 27/10/2024

    \n
      \n
    • Fixed: EA Pricing Table | Font weight changes while tooltip is used
    • \n
    • Fixed: EA Flip Box | Flip box click Not working on frontend when using more than one flip boxes with saved templates
    • \n
    • Fixed: EA Filterable Gallery | Not working while being used as shortcode from site review plugin
    • \n
    • Fixed: EA Scroll To Top | Global feature isn’t working after editing the page
    • \n
    • Fixed: EA Table of Contents | Undefined array key
    • \n
    • Fixed: EA Pricing Table | Dynamic tag for button is not working
    • \n
    • Fixed: Saved Template design breaks due to an issue with element caching
    • \n
    • Fixed: EA Woo Product Gallery | Show extra cart button on enabling woocommerce loop hooks
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.7 – 09/10/2024

    \n
      \n
    • Fixed: EA Advanced Tabs | While being hovered or active, the tab shows green border
    • \n
    • Fixed: EA Woo Cart | Style 2 – Remove product button size increase or decrease is not working for mobile
    • \n
    • Fixed: EA Contact form 7 | Form width doesn’t change
    • \n
    • Fixed: EA Woo Product Grid | Search results isn’t showing while being used as Search result template
    • \n
    • Fixed: EA Advanced Data Table | Sorting is not working
    • \n
    • Fixed: EA Advanced Tabs | JS compatibility issue
    • \n
    • Fixed: EA Advanced Data Table | Images are not showing
    • \n
    • Fixed: EA Advanced Tabs | Feature List as a saved template is broken
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.6 – 29/09/2024

    \n
      \n
    • Improved: EA Filterable Gallery | Pagination on video gallery
    • \n
    • Improved: EA Woo Product Carousel | Added Marquee support
    • \n
    • Improved: EA Wrapper Link | Add enable and disable option for traditional link
    • \n
    • Improved: EA Woo Product Carousel | Add option to select items count on slide
    • \n
    • Improved: EA Table of Contents | Position & Color
    • \n
    • Improved: Security enhancements
    • \n
    • Improved: EA Woo Checkout | Need an option to change Input field background color
    • \n
    • Improved: EA Interactive Circle | Interactive Circle content icon not displaying.
    • \n
    • Improved: EA Post Grid | Sticky posts visible at first
    • \n
    • Fixed: EA Flip Box | Purple Color Overlay Issue
    • \n
    • Fixed: EA Filterable Gallery | Field link not translatable with WPML
    • \n
    • Fixed: EA Login/Register Form | Absence of message validation
    • \n
    • Fixed: EA Advanced Tabs | Accessibility Issue, Screen Reader Focus Limited to First Tab
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.5 – 18/09/2024

    \n
      \n
    • Improved: EA Flip Box | UI for mobile devices
    • \n
    • Improved: EA Filterable Gallery | Added Overlay for the video gallery
    • \n
    • Improved: EA Woo Product Gallery | Added Archive Product Support for Product Category Page
    • \n
    • Improved: EA Woo Product Gallery | Added support to Turn off secondary image on hover for mobile
    • \n
    • Fixed: Animation conflicting issue with Elementor
    • \n
    • Fixed: EA Advanced Accordion | Conflict with Elementor 3.24.0
    • \n
    • Fixed: EA Woo Product List | HTML Tags Support for Product Excerpts
    • \n
    • Fixed: EA Woo Product Carousel | Added compatibility for Astra theme
    • \n
    • Fixed: EA Checkout | Conflict with USPS Shipping Method for WooCommerce
    • \n
    • Fixed: EA Countdown | Expiration issue with Saved Templates
    • \n
    • Fixed: EA Login Register Form | Warning message on reset password
    • \n
    • Fixed: EA Interactive Circle | UI issue when Scrolling
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.4 – 09/09/2024

    \n
      \n
    • Improved: Security enchancements in EA Fancy Chart & EA Filterably Gallery widgets
    • \n
    • Improved: EA Woo Product widgets | Added manual product selection option
    • \n
    • Added: Compatibility with Element Caching
    • \n
    • Fixed: Scroll position changing on click Elementor Tab when EA is activated
    • \n
    • Fixed: EA Interactive Circle | Link malfunction in interactive items
    • \n
    • Fixed: EA Filterable Gallery | Randomized Gallery option not randomizing the gallery items due to caching issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.3 – 04/09/2024

    \n
      \n
    • Fixed: EA Post Grid | Author related UI issues
    • \n
    • Fixed: EA Login Register Form | T&C Toggle Colour issue
    • \n
    • Fixed: EA Interactive Circle | Custom SVG icon’s Colour issue
    • \n
    • Fixed: EA Wrapper Link conflicts with Elementor Loop Grid
    • \n
    • Fixed: EA Advanced Accordion empty data issue with ACF field
    • \n
    • Fixed: EA Advanced Tabs | Custom ID offset issue
    • \n
    • Fixed: EA Post Grid | Fallback image display issue
    • \n
    • Fixed: EA Post Duplicator | Page Layout styling issue
    • \n
    • Fixed: EA Advanced Tabs compatibility issue with Ad inserter plugin
    • \n
    • Fixed: EA Advanced Data Table | Alphanumeric Sorting issue
    • \n
    • Fixed: EA WPForms | Submit button hover colour issue
    • \n
    • Fixed: Uncaught TypeError: When accessing a string offset on a string variable
    • \n
    • Fixed: EA Woo Product Carousel | Mobile landscape visibility issue
    • \n
    • Fixed: EA Woo Product Grid | Quick view compatibility issue with YITH WooCommerce product filter
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.2 – 29/08/2024

    \n
      \n
    • Fixed: Enabling elements inside Elementor causing blank EA dashboard
    • \n
    • Fixed: EA Filterable Gallery | “Load More” button shows on those filters which doesn’t have any items and less items
    • \n
    • Fixed: EA Interactive Circle | Add URL support for interactive items
    • \n
    • Fixed: EA Hover Interactions | Hover Interactions does not work on the front-end
    • \n
    • Fixed: EA Dashboard | Update CSS Print Method link
    • \n
    • Fixed: EA Post Grid | After Load More the terms are not displayed with Style 3
    • \n
    • Fixed: EA Flip Box | Add overlay for the background image
    • \n
    • Fixed: EA Woo Product Carousel | Carousel disappears when using Botiga theme
    • \n
    • Fixed: EA Post Grid | Child sections ignores ‘Show Meta’ parents
    • \n
    • Fixed: EA Scroll To Top | Scroll To Top icon doesn’t show
    • \n
    • Fixed: EA WPForms | Submit button hover color stays grey
    • \n
    • Fixed: EA Filterable Gallery | Updated label to “Notice” on display content notice
    • \n
    • Fixed: EA NFT Gallery | Not working
    • \n
    • Improved: EA Dual Color Heading | Vulnerable to Cross Site Scripting (XSS)
    • \n
    • Improved: EA Woo Checkout | EA Woo Checkout is missing some styling options
    • \n
    • Improved: EA Wrapper link | Elementor popup doesn’t work on wrapper link
    • \n
    • Improved: EA Table of Contents | Width option for mobile device
    • \n
    • Improved: Optimized Control Loading | EA Feature List, EA Sticky Video, EA Pricing Table, EA Progress Bar, EA Woo Product Compare
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.1 – 19/08/2024

    \n
      \n
    • Fixed: Elementor transform example rotate, skew etc features not working inside Elementor Editor
    • \n
    • Fixed: Custom Template shows broken inside Elementor Editor if EA is activated in some cases
    • \n
    • Fixed: Dashboard UI/UX related issues after EA 6.0 update
    • \n
    • Improved: Added async requests to all the actions inside EA Dashboard
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.0 – 11/08/2024

    \n
      \n
    • Revamped: New EA Dashboard for better UI/UX
    • \n
    • Revamped: New EA Quick Setup for better UI/UX
    • \n
    • Added: New Extension- EA Hover Interactions
    • \n
    • Added: New Skin Presets for different Post, WooCommerce & Other widgets
    • \n
    • Improved: Added proper sanitization inside EA Filterable Gallery widget
    • \n
    • Fixed: EA Pricing Table | Button Not Displaying and Getting Undefined index
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.27 – 11/07/2024

    \n
      \n
    • Updated: Custom Attributes inside EA Event Calendar
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.26 – 11/07/2024

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Fixed: EA Login / Register Form | Password form shows error when hit on “Forgot Password”
    • \n
    • Fixed: Cannot redeclare control with same name “eael_global_warning_text”
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.25 – 02/07/2024

    \n
      \n
    • Fixed: EA Simple Menu | Active menu not showing for archive pages
    • \n
    • Fixed: Missing translatable strings for EA Woo Product List & EA NFT Gallery
    • \n
    • Fixed: EA Call to action | Margin not being applied uniformly
    • \n
    • Updated: WPML Config file in some widgets
    • \n
    • Improved: EA Event Calendar for Security Enhancement
    • \n
    • Improved: EA Post Grid | Added option to show user’s first & last name instead of just username
    • \n
    • Improved: EA Advanced Data Table | CSV Data import/export mechanism
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.24 – 09/06/2024

    \n
      \n
    • Improved: User role permissions to add/edit custom JS
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.23 – 05/06/2024

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Improved: EA Login/Register Form | Added Score Threshold option for reCAPTCHA & option to remove the branding
    • \n
    • Improved: EA Woo product Grid | Added option to filter by tags
    • \n
    • Improved: EA Login/Register Form | Added support for register_form action hook
    • \n
    • Improved: EA Login/Register Form | Added field for honeypot
    • \n
    • Improved: EA Interactive Circle | Added option to rotate the Interactive Circle around the middle and pause on hover
    • \n
    • Improved: EA Feature List | Added Horizontal layout option
    • \n
    • Improved: EA Filterable Gallery | Added support for vertical 9:16 video
    • \n
    • Fixed: EA Simple Menu | Using a hash link (#) on a sub-menu item within a hamburger menu will not open the dropdown item on mobile/tablet view
    • \n
    • Fixed: EA Woo Product Grid | Not working properly with WordPress and WooCommerce Filter
    • \n
    • Fixed: EA Filterable Gallery | Image Tag being changed from tag to tag after Version 5.9.15
    • \n
    • Fixed: EA Advanced Data Table | Header text reverting to Black if the Sort option in the advanced Features is turned off
    • \n
    • Fixed: EA Post Grid | Conflict with Ultimate Member plugin
    • \n
    • Fixed: EA Post Grid | On Style 3 Terms on Hover is not showing after clicking on the Load More button
    • \n
    • Fixed: EA WP Forms | EA WP Forms Widget Width Restriction in Latest Update
    • \n
    • Fixed: EA Woo Product Gallery | Error in code — data-template and data-terms attributes
    • \n
    • Fixed: EA Woo Product Grid | “Out of stock” badge showing on top of “Sale” badge
    • \n
    • Fixed: EA Login/Register Form | Spinner is not visible on the front-end
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.22 – 22/05/2024

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.21 – 13/05/2024

    \n
      \n
    • Revamped: NFT Gallery | OpenSea API version
    • \n
    • Fixed: Filterable Gallery | iframe not working issue
    • \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.20 – 08/05/2024

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.19 – 05/05/2024

    \n
      \n
    • Fixed: EA Sticky Video | Conflicts with the Blocksy theme
    • \n
    • Fixed: EA Login Register Form | Validation message doesn’t show up while using the form in the popup
    • \n
    • Fixed: EA Login Register Form | Showing error message for not required field
    • \n
    • Fixed: EA Simple Menu | Dropdown icon is not showing on the desktop mode
    • \n
    • Fixed: EA Tooltip | Displaying the content after the hover is complete
    • \n
    • Fixed: EA Feature list | Icons don’t show when the shape view is set to Framed
    • \n
    • Fixed: EA Contact Form 7 | Alignment of the container, title & description is not working
    • \n
    • Fixed: EA Advanced Accordion | Conflicts with the Specia Standard theme
    • \n
    • Fixed: EA Advanced Data Table | Checkbox is not showing when using TablePress
    • \n
    • Fixed: EA Advanced Tabs| Switching tabs causes the page to scroll up or down
    • \n
    • Fixed: EA Woo Checkout | ‘User Account’ & ‘Coupon Percentage’ icons are broken on checkout page
    • \n
    • Fixed: EA Advanced Data Table | Data sorting icons’ colors don’t change while using table as a template
    • \n
    • Fixed: EA Simple Menu | Menu item doesn’t activate when scrolling the page
    • \n
    • Fixed: EA Advanced Data Table | Clearing the search values, all table contents appear when the rows per page is left blank
    • \n
    • Fixed: EA Woo Product Carousel | ‘Add to Cart’ button disappears from default shop page if EA Woo Carousel widget is present on the same page
    • \n
    • Improved: EA Event Calendar | Date format change option for week view
    • \n
    • Improved: EA Advanced Accordion | Stop auto-scrolling while anchoring tab
    • \n
    • Improved: EA Login Register Form | File max size description
    • \n
    • Improved: EA Facebook Feed | Graph API Upgrade
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    Enhance Elementor page building experience with 100+ creative elements and extensions. Add powers to your website builder using our easy-to-use Elementor widgets and ready Elementor templates, which were designed to make your next WordPress website design easier and prettier than ever before.

    \n

    Essential Addons for Elementor offers 110+ advanced Elementor widgets with kits, 6,000+ ready templates & WooCommerce builder, serving 2 million+ active users.

    \n

    Check the Demos

    \n

    Completely Customizable

    \n

    Each widget and extension comes with a bunch of options to customize your website in every possible way. You can achieve nearly any design of your imagination.

    \n

    Light Weight & Instant Loading

    \n

    No extra resources or messy code to slow down your website. Optimized for super fast loading and instant Live editing.

    \n

    Elements Control option

    \n

    Enable and disable individual elements adding to make your page load faster and smoother. You can deactivate unnecessary widgets to keep the site light.

    \n

    6000+ Ready WordPress Templates & Blocks through Templately

    \n

    Grab access to 3,000+ pre-made Elementor templates from Templately (a large templates cloud for WordPress), that come with Essential Addons.Unlock stunning Elementor templates, blocks & sections;and design your website to stand out from the crowd.

    \n

    \n

    Each of these Elementor templates is completely customizable and responsive, and also seamlessly compatible with Essential Addons. You can personalize them effortlessly by changing font, color, etc.

    \n

    Templately also offers advanced features and facilities to save your templates to the cloud. Store all your ready and customized designs with Templately & deploy on hundreds of websites with 1-click. Increase productivity and power up your whole team to build websites faster than ever before.

    \n

    Ready Elementor Templates From Templately:

    \n\n

    Expert Support

    \n

    We have an extraordinary support team ready to help you. Ask your questions in the support forum, or contact us directly through live chat and contact form.

    \n

    Elementor Website Builder is required for this plugin.

    \n

    60+ FREE ELEMENTOR ADDONS AND COUNTING

    \n

    We have designed more than 60 useful widgets to enhance your Elementor Page Building experience and allow you to climb the peak of your design capabilities.

    \n
      \n
    1. Post Grid – Showcase your blog posts in 3 unique styles
    2. \n
    3. Post Timeline – Create stunning timeline for your posts & pages
    4. \n
    5. Fancy Text – Design pages using animated texts in 8 different styles
    6. \n
    7. Creative Buttons – Quickly add modern buttons with hover effects
    8. \n
    9. Countdown – Include a countdown timer to boost click-through rates
    10. \n
    11. Team Members – Feature your team members with a few clicks
    12. \n
    13. Testimonials – Showcase customer reviews & increase credibility
    14. \n
    15. WooCommerce Product Grid – Display WooCommerce products in grid layout
    16. \n
    17. Contact Form 7 – Customize beautiful forms without any coding
    18. \n
    19. Gravity Forms – Design forms with Elementor & Gravity Forms
    20. \n
    21. Ninja Forms – Easily create your form style just the way you want
    22. \n
    23. Caldera Forms – Design effective mobile-friendly forms
    24. \n
    25. WPForms – Create powerful WordPress forms in minutes
    26. \n
    27. weForms – Get an incredibly fast form building experience
    28. \n
    29. Info Box – Design beautiful info box from predefined styles
    30. \n
    31. Flip Box – Use animated Flip Boxes to highlight any content
    32. \n
    33. Dual Color Heading – Highlight your headings with dual colors
    34. \n
    35. Call to Action – Design call-to-action buttons with a few clicks
    36. \n
    37. Pricing Table – Create Pricing Tables within minutes that convert
    38. \n
    39. Twitter Feed – Showcase your latest tweets to your visitors
    40. \n
    41. Data Table – Insert attractive data table anywhere you want
    42. \n
    43. Filterable Gallery – Share images with an interactive gallery
    44. \n
    45. Image Accordion – Highlight your images with amazing hover effects
    46. \n
    47. Content Ticker – Use slider & ticker effects to display your content
    48. \n
    49. Tooltip – Set tooltip for Icon, Image, Text or shortcodes
    50. \n
    51. Advanced Tabs – Display information neatly in nested tabs
    52. \n
    53. Advanced Accordion – Add beautiful nested accordions anywhere
    54. \n
    55. Progress Bar – Display progress bars with 4+ different styles
    56. \n
    57. Feature List – Display feature lists with custom icons and styles
    58. \n
    59. Fluent Forms – Design your Fluent Forms container, fields and anything you want
    60. \n
    61. Facebook Feed – Display Facebook post feed from your page
    62. \n
    63. Sticky Video – Add videos that are sticky on scroll while playing
    64. \n
    65. BetterDocs Category Grid – Create documentation in grid layout
    66. \n
    67. BetterDocs Category Box – Create documentation in box layout
    68. \n
    69. BetterDocs Search Form – Add a live search box for documentation
    70. \n
    71. Advanced Data Table – Design large data tables without coding
    72. \n
    73. Event Calendar – Create customized event pages
    74. \n
    75. Formstack – Design your Formstack forms
    76. \n
    77. Woo Checkout – Build attractive WooCommerce Checkout pages
      \nyoutube
    78. \n
    79. Typeform – Embed & design your Typeform forms
    80. \n
    81. Login | Register Form – Create amazing login/registration forms
    82. \n
    83. Woo Product Compare – Design stunning product compare tables
    84. \n
    85. Woo Product Carousel – Add Product Carousels for WooCommerce
    86. \n
    87. Simple Menu– Design minimalist navigation menus
    88. \n
    89. Woo Product Gallery– Show your products in a filterable gallery
    90. \n
    91. Woo Cart– Use WooCommerce Cart page to boost online sales
    92. \n
    93. Interactive Circle– Display content with engaging circular layouts
    94. \n
    95. NFT Gallery– Add and showcase NFT collections effortlessly
    96. \n
    97. Business Reviews– Display Google Customer Review to increase your online reputation
    98. \n
    99. SVG Draw– Display SVG elements in a visually striking and interactive way on your website
    100. \n
    101. Woo Product List– Showcase your store’s products with a stunning listicle format
    102. \n
    103. Woo Product Price– Style your product price with custom colors and typography
    104. \n
    105. Woo Product Rating– Show ratings to help customers make informed choices
    106. \n
    107. Woo Product Images– Display WooCommerce product images with stunning effects
    108. \n
    109. Woo Add to Cart– Make shopping easier with an ‘Add to Cart’ button
    110. \n
    111. Breadcrumbs– Improve navigation with breadcrumbs for easy exploration
    112. \n
    113. Code Snippet– Display beautifully formatted code on your Elementor website
    114. \n
    \n

    Extensions (Free):

    \n
      \n
    1. Reading Progress Bar – Add progress bar to show reading position
      \nWatch YouTube Tutorial
    2. \n
    3. Duplicator – Duplicate any page or post in a single click
    4. \n
    5. Table of Contents – Display Table of Contents anywhere you want
      \nWatch YouTube Tutorial
    6. \n
    7. Custom JS – Add custom JavaScript with a few clicks
    8. \n
    9. Scroll to Top – Let visitors quickly navigate to the top of your page
    10. \n
    11. Wrapper Link – Add custom links into any section, column, or even flexbox
    12. \n
    13. Hover Interactions – Create captivating effects on buttons, images, texts and more
    14. \n
    15. Liquid Glass Effects – Give your website a sleek, futuristic feel with stunning glass effects
    16. \n
    \n

    More elements (50+) on Premium Version

    \n
      \n
    1. Post Block – Display your blog posts with a variety of styles
    2. \n
    3. Lightbox & Modal – Create interactive popups after trigger actions
    4. \n
    5. Testimonial Slider – Share customer reviews with animated sliders
    6. \n
    7. Image Comparison – Let your viewers compare between two images
    8. \n
    9. Interactive Promo – Display content with attractive animations
    10. \n
    11. Instagram Feed – Display Instagram posts beautifully
    12. \n
    13. Advanced Google Map – Create maps with unlimited themes
      \nWatch YouTube Tutorial
    14. \n
    15. Static Product – Present your static product just the way you want
    16. \n
    17. Flip Carousel – Feature your content using a unique carousel style
    18. \n
    19. Interactive Cards – Create fascinating effects for your content
    20. \n
    21. Content Timeline – Create memory lane with animated scrolling
    22. \n
    23. Advanced Menu – Use advanced navigation menu anywhere
    24. \n
    25. Twitter Feed Carousel – Share Twitter posts in interactive styles
    26. \n
    27. Dynamic Gallery – Add filterable gallery for any content
    28. \n
    29. Smart Post List – Design your blog page with modern post list
    30. \n
    31. Mailchimp – Design your Mailchimp form with ease
    32. \n
    33. Toggle – Share any content in less space with a toggle
    34. \n
    35. One Page Navigation – Create one page websites in Elementor
    36. \n
    37. Price Menu – Make a beautiful pricing menu for your brands
    38. \n
    39. Image Hotspots – Add hotspot icons with tooltips in an image
    40. \n
    41. Divider – Separate your section with fancy divider
    42. \n
    43. Counter – Highlight important data using the Counter element
    44. \n
    45. Team Member Carousel – Display team members in a carousel
    46. \n
    47. Post Carousel – Use a carousel to display multiple posts
    48. \n
    49. Logo Carousel – Highlight brands or product logos in a carousel
    50. \n
    51. Protected Content – Lock your content with password protection
    52. \n
    53. Offcanvas – Display content in offcanvas with one click
    54. \n
    55. Image Scroller – Show long height images with image scroller
    56. \n
    57. Woo Product Slider – Showcase your products in a stunning slider
    58. \n
    59. Woo Product Collections– Show product collections beautifully
    60. \n
    61. LearnDash Course List– Share LearnDash course list on website
    62. \n
    63. Advanced Search– Add a customizable, dynamic search bar
    64. \n
    65. Woo Thank You– Design a personalized thank you message on the WooCommerce order confirmation page
    66. \n
    67. Woo Cross Sells– Customize the display of cross-sell products to boost your sales potential
    68. \n
    69. Woo Account Dashboard– Design a personalized WooCommerce Customer Account Dashboard
    70. \n
    71. Fancy Chart– Visualize important data with interactive charts and graphs on your website
    72. \n
    73. Stacked Cards– Showcase your website content in a distinctive and engaging way
    74. \n
    75. 360 Degree Photo Viewer– Make your website image visible from every angle with adjustable controls
    76. \n
    77. Multicolumn Pricing Table– Display pricing plans in multiple columns to compare features and choose the right option
    78. \n
    79. Figma to Elementor Converter– Turn Figma designs into fully customizable Elementor Pages
    80. \n
    \n

    Extensions (Pro):

    \n
      \n
    1. Parallax – Add creative parallax effects to your content
    2. \n
    3. Particles – Add animated particle effects to your content
    4. \n
    5. Advanced Tooltip – Make any widget more informative with tooltip
    6. \n
    7. Content Protection – Hide your content with password protection
    8. \n
    9. Conditional Display– Display your preferred content based on the logic conditions you have set
    10. \n
    11. Dynamic Tags– Display content dynamically on your preferred section of the website
    12. \n
    13. Interactive animations– Create stunning animations & build a fully dynamic web page
    14. \n
    15. Custom Cursor– Transform the default mouse pointer into a fully personalized design
    16. \n
    \n

    More features and improvements are coming on regular updates. Want to unlock the advanced elements? Upgrade to our Pro version

    \n

    Elementor WooCommerce Widgets From Essential Addons

    \n

    With Essential Addons, we bring you seamless compatibility with WooCommerce, enhancing your ability to showcase products, categories, and filters with ease. There are 11+ beautiful WooCommerce widgets for your every need:

    \n

    EA Woo Product Carousel: Display your store’s products interactively with this WooCommerce widget and implement various styling options and ready-made layouts to create an interactive product showcase on your WordPress website.

    \n

    EA Woo Product Gallery: Captivate visitors and drive immediate purchases on your WooCommerce store using the Product Gallery element from Essential Addons. Explore incredible ready layouts, abundant customization choices, and more.

    \n

    EA Woo Product Price: Highlight the price of your WooCommerce product Price and style it using custom colors and typography.

    \n

    EA Woo Product Rating: Display WooCommerce product rating to help customers make informed purchasing decisions and increase credibility.

    \n

    EA Woo Product Images: Showcase eye-catching WooCommerce product images with advanced customization and effects.

    \n

    EA Woo Add to Cart: Simplify the shopping experience by displaying an easy-to-access ‘Add to Cart’ button for all your WooCommerce products.

    \n

    EA Woo Product Slider (PRO): Present your WooCommerce products in a stunning slider format with this advanced Elementor addon. You can also easily customize the entire slider appearance with fantastic pre-designed layouts, effects, and other advanced options.

    \n

    EA Woo Product Collection (PRO): Exhibit your WooCommerce product collections on any section of your Elementor website to showcase items based on categories, tags, or attributes, and add engaging hover effects.

    \n

    \n

    EA Woo Product List: Easily add all your WooCommerce products in a listicle format on any Elementor page or post on your website and customize with unique layouts to attract customers instantly.

    \n

    EA Woo Product Grid: Display your products in visually appealing grid-layouts on any website section and allow customers to view them based on category, tags, or attributes.

    \n

    EA Woo Product Compare: Easily compare your preferred WooCommerce products anywhere on the page with this free Elementor addon. Benefit from numerous pre-designed theme layouts and much more.

    \n

    EA Woo Cross Sells:: Effortlessly show related items to your customers with this premium Elementor widget, aiding them in discovering complementary products and enriching their overall shopping experience.

    \n

    \n

    EA Woo Cart: Elevate customers’ purchasing experience on your WooCommerce store by effortlessly designing an appealing Cart Page with Essential Addons using no coding.

    \n

    EA Woo Checkout: Craft visually appealing Checkout pages for your WooCommerce store to customize and style the widget effortlessly to ensure increased sales.

    \n

    EA Woo Account Dashboard (PRO): Create a user-friendly and visually appealing dashboard for your WooCommerce store, consolidating all vital tabs into one convenient location.

    \n

    \n

    EA Woo Thank You (PRO):Resonate with customers and ensure a positive post-purchase experience with this advanced Elementor WooCommerce widget from Essential Addons. It lets you create tailor-made thank-you messages with limitless personalization.

    \n

    🏆 FEATURED BY 100+ RENOWNED PUBLICATIONS

    \n

    WP Mayor: “If you use Elementor, Essential Addons is a great way to expand your library of available widgets without slowing your site down.”
    \nWP Pagebuilders: “With 60+ additional widgets, Essential Addons is a great add-on to enhance your experience in building a website with WordPress+Elementor.”
    \nMonsterPost: “Essential Addons for Elementor has a huge number of active users among all third-party extensions on the market. The widgets are tested in all popular web browsers to ensure full browser compatibility for all elements.”
    \nWPCrafter: WordPress influencer Adam Preiser did a Speed Test & found Essential Addons for Elementor is the high-performance solution out there 👇

    \n

    \n

    BACKED BY A TRUSTED TEAM

    \n

    Essential Addons is brought to you by WPDeveloper, a dedicated WordPress product company, trusted by 6 million+ happy users.

    \n

    Documentation and Support

    \n
      \n
    • For documentation and tutorials go to our Documentation.
    • \n
    • If you have any more questions, visit our support on the Plugin’s Forum.
    • \n
    • For more information about features, FAQs and documentation, check out our website at Essential Addons.
    • \n
    \n

    Happy User of Essential Addons?

    \n\n

    🔥 WHAT’S NEXT

    \n

    If you like Essential Addons, then consider checking out our other WordPress Plugins:

    \n

    🔔 NotificationX – Powerful Social Proof & FOMO Marketing Solution to boost conversions & design stunning WordPress notification bars in Elementor

    \n

    🗒️ BetterDocs – Advanced Documentation & Knowledge Base Plugin for WordPress, which also comes with ready doc templates for Elementor

    \n

    SchedulePress – Complete solution for managing WordPress content scheduling through an editorial calendar & Social Share

    \n

    🔗 EmbedPress – Easy WordPress solution for embedding videos, images, posts, audio, maps and PDF, DOC, PPT & all other types of content into your website using Elementor, Gutenberg and more.

    \n

    🔎 easy.jobs – Smart and easy recruitment and talent sourcing solution for hiring with AI-powered screening system, question sets, remote interviews, and designing branded career pages with Elementor.

    \n", "screenshots": "
    1. \"Overview

      Overview of few widgets

    2. \"Elements

      Elements control panel

    3. \"Introducing

      Introducing EA 5.0

    4. \"Advanced

      Advanced Google Map Widget

    5. \"Advanced

      Advanced Tooltip Extension

    6. \"Advanced

      Advanced Tabs Widget

    7. \"Fancy

      Fancy Text Widget

    8. \"Filterable

      Filterable Gallery Widget

    9. \"Feature

      Feature List Widget

    10. \"Image

      Image Hotspots Widget

    11. \"Woo

      Woo Product Grid Widget

    12. \"Team

      Team Member Carousel Widget

    13. \"Smart

      Smart Post List Widget

    14. \"One

      One Page Navigation Widget

    15. \"Protected

      Protected Content Widget

    16. \"Flip

      Flip Box Widget

    17. \"Creative

      Creative Buttons Widget

    ", "installation": "

    Note : This plugin works with Elementor. Make sure you have Elementor installed.

    \n
      \n
    1. Upload the plugin folder to the /wp-content/plugins/ directory, or install the plugin through the WordPress plugins screen directly.
    2. \n
    3. Activate the plugin through the ‘Plugins’ screen in WordPress
    4. \n
    5. You can type “EA” on your element tabs within Elementor editor and all the available elements will appear.
    6. \n
    7. Also you can see them under the category “Essential Addons for Elementor” on your element/widget list.
    8. \n
    \n"}, "versions": {"2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.1.zip", "1.0.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.1.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.5.zip", "2.3.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.4.3.zip", "2.5.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.5.0.zip", "2.6.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.6.0.zip", "2.7.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.8.zip", "2.7.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.9.zip", "2.8.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.7.zip", "2.9.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.6.zip", "2.9.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.9.zip", "3.0.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.5.zip", "3.1.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.5.zip", "3.2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.2.0.zip", "3.3.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.3.3.zip", "3.4.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.4.0.zip", "3.5.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.5.2.zip", "3.6.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.6.2.zip", "3.7.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.7.2.zip", "3.8.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.5.zip", "3.9.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.9.4.zip", "4.0.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.4.zip", "4.1.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.1.2.zip", "4.2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.2.4.zip", "4.3.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.4.zip", "4.3.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.5.zip", "4.3.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.6.zip", "4.3.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.7.zip", "4.3.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.8.zip", "4.3.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.9.zip", "4.4.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.4.1.zip", "4.5.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.5.zip", "4.6.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.1.zip", "4.6.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.2.zip", "4.6.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.3.zip", "4.6.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.4.zip", "4.6.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.5.zip", "4.6.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.6.zip", "4.7.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.4.zip", "4.7.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.5.zip", "4.8.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.8.3.zip", "4.8.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.8.4.zip", "4.9.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.2.zip", "4.9.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.3.zip", "4.9.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.4.zip", "4.9.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.5.zip", "4.9.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.6.zip", "4.9.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.7.zip", "5.0.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.8.zip", "5.0.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.9.zip", "5.1.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.6.zip", "5.1.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.7.zip", "5.1.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.8.zip", "5.1.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.9.zip", "5.2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.2.4.zip", "5.3.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.3.2.zip", "5.4.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.4.6.zip", "5.5.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.5.5.zip", "5.6.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.6.5.zip", "5.7.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.7.2.zip", "5.7.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.7.3.zip", "5.7.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.7.4.zip", "5.8.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.2.zip", "5.8.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.3.zip", "5.8.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.4.zip", "5.8.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.5.zip", "5.8.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.6.zip", "5.8.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.7.zip", "5.8.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.8.zip", "5.8.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.9.zip", "5.9.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.2.zip", "5.9.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.3.zip", "5.9.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.4.zip", "5.9.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.5.zip", "5.9.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.6.zip", "5.9.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.7.zip", "5.9.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.8.zip", "5.9.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.9.zip", "6.0.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.8.zip", "6.0.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.9.zip", "6.1.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.5.zip", "6.1.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.6.zip", "6.1.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.7.zip", "6.1.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.8.zip", "6.1.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.9.zip", "6.2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.2.4.zip", "6.3.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.3.zip", "trunk": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.zip", "2.10.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.0.zip", "2.10.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.1.zip", "2.10.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.2.zip", "2.10.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.3.zip", "2.10.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.4.zip", "2.10.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.5.zip", "2.7.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.10.zip", "2.7.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.11.zip", "5.0.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.10.zip", "5.0.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.11.zip", "5.0.12": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.12.zip", "5.0.13": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.13.zip", "5.8.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.10.zip", "5.8.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.11.zip", "5.8.12": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.12.zip", "5.8.13": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.13.zip", "5.8.14": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.14.zip", "5.8.15": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.15.zip", "5.8.16": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.16.zip", "5.8.18": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.18.zip", "5.9.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.10.zip", "5.9.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.11.zip", "5.9.12": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.12.zip", "5.9.13": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.13.zip", "5.9.14": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.14.zip", "5.9.15": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.15.zip", "5.9.16": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.16.zip", "5.9.17": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.17.zip", "5.9.18": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.18.zip", "5.9.19": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.19.zip", "5.9.20": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.20.zip", "5.9.21": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.21.zip", "5.9.22": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.22.zip", "5.9.23": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.23.zip", "5.9.24": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.24.zip", "5.9.25": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.25.zip", "5.9.26": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.26.zip", "5.9.27": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.27.zip", "6.0.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.10.zip", "6.0.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.11.zip", "6.0.12": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.12.zip", "6.0.13": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.13.zip", "6.0.14": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.14.zip", "6.0.15": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.15.zip", "6.1.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.10.zip", "6.1.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.11.zip", "6.1.12": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.12.zip", "6.1.13": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.13.zip", "6.1.14": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.14.zip", "6.1.15": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.15.zip", "6.1.17": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.17.zip", "6.1.18": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.18.zip", "6.1.19": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.19.zip", "6.1.20": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.20.zip", "3.1.4.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.4.1.zip"}, "downloaded": 110487233, "description": "

    Enhance Elementor page building experience with 100+ creative elements and extensions. Add powers to your website builder using our easy-to-use Elementor widgets and ready Elementor templates, which were designed to make your next WordPress website design easier and prettier than ever before.

    \n

    Essential Addons for Elementor offers 110+ advanced Elementor widgets with kits, 6,000+ ready templates & WooCommerce builder, serving 2 million+ active users.

    \n

    Check the Demos

    \n

    Completely Customizable

    \n

    Each widget and extension comes with a bunch of options to customize your website in every possible way. You can achieve nearly any design of your imagination.

    \n

    Light Weight & Instant Loading

    \n

    No extra resources or messy code to slow down your website. Optimized for super fast loading and instant Live editing.

    \n

    Elements Control option

    \n

    Enable and disable individual elements adding to make your page load faster and smoother. You can deactivate unnecessary widgets to keep the site light.

    \n

    6000+ Ready WordPress Templates & Blocks through Templately

    \n

    Grab access to 3,000+ pre-made Elementor templates from Templately (a large templates cloud for WordPress), that come with Essential Addons.Unlock stunning Elementor templates, blocks & sections;and design your website to stand out from the crowd.

    \n

    \n

    Each of these Elementor templates is completely customizable and responsive, and also seamlessly compatible with Essential Addons. You can personalize them effortlessly by changing font, color, etc.

    \n

    Templately also offers advanced features and facilities to save your templates to the cloud. Store all your ready and customized designs with Templately & deploy on hundreds of websites with 1-click. Increase productivity and power up your whole team to build websites faster than ever before.

    \n

    Ready Elementor Templates From Templately:

    \n\n

    Expert Support

    \n

    We have an extraordinary support team ready to help you. Ask your questions in the support forum, or contact us directly through live chat and contact form.

    \n

    Elementor Website Builder is required for this plugin.

    \n

    60+ FREE ELEMENTOR ADDONS AND COUNTING

    \n

    We have designed more than 60 useful widgets to enhance your Elementor Page Building experience and allow you to climb the peak of your design capabilities.

    \n
      \n
    1. Post Grid – Showcase your blog posts in 3 unique styles
    2. \n
    3. Post Timeline – Create stunning timeline for your posts & pages
    4. \n
    5. Fancy Text – Design pages using animated texts in 8 different styles
    6. \n
    7. Creative Buttons – Quickly add modern buttons with hover effects
    8. \n
    9. Countdown – Include a countdown timer to boost click-through rates
    10. \n
    11. Team Members – Feature your team members with a few clicks
    12. \n
    13. Testimonials – Showcase customer reviews & increase credibility
    14. \n
    15. WooCommerce Product Grid – Display WooCommerce products in grid layout
    16. \n
    17. Contact Form 7 – Customize beautiful forms without any coding
    18. \n
    19. Gravity Forms – Design forms with Elementor & Gravity Forms
    20. \n
    21. Ninja Forms – Easily create your form style just the way you want
    22. \n
    23. Caldera Forms – Design effective mobile-friendly forms
    24. \n
    25. WPForms – Create powerful WordPress forms in minutes
    26. \n
    27. weForms – Get an incredibly fast form building experience
    28. \n
    29. Info Box – Design beautiful info box from predefined styles
    30. \n
    31. Flip Box – Use animated Flip Boxes to highlight any content
    32. \n
    33. Dual Color Heading – Highlight your headings with dual colors
    34. \n
    35. Call to Action – Design call-to-action buttons with a few clicks
    36. \n
    37. Pricing Table – Create Pricing Tables within minutes that convert
    38. \n
    39. Twitter Feed – Showcase your latest tweets to your visitors
    40. \n
    41. Data Table – Insert attractive data table anywhere you want
    42. \n
    43. Filterable Gallery – Share images with an interactive gallery
    44. \n
    45. Image Accordion – Highlight your images with amazing hover effects
    46. \n
    47. Content Ticker – Use slider & ticker effects to display your content
    48. \n
    49. Tooltip – Set tooltip for Icon, Image, Text or shortcodes
    50. \n
    51. Advanced Tabs – Display information neatly in nested tabs
    52. \n
    53. Advanced Accordion – Add beautiful nested accordions anywhere
    54. \n
    55. Progress Bar – Display progress bars with 4+ different styles
    56. \n
    57. Feature List – Display feature lists with custom icons and styles
    58. \n
    59. Fluent Forms – Design your Fluent Forms container, fields and anything you want
    60. \n
    61. Facebook Feed – Display Facebook post feed from your page
    62. \n
    63. Sticky Video – Add videos that are sticky on scroll while playing
    64. \n
    65. BetterDocs Category Grid – Create documentation in grid layout
    66. \n
    67. BetterDocs Category Box – Create documentation in box layout
    68. \n
    69. BetterDocs Search Form – Add a live search box for documentation
    70. \n
    71. Advanced Data Table – Design large data tables without coding
    72. \n
    73. Event Calendar – Create customized event pages
    74. \n
    75. Formstack – Design your Formstack forms
    76. \n
    77. Woo Checkout – Build attractive WooCommerce Checkout pages
      \nyoutube
    78. \n
    79. Typeform – Embed & design your Typeform forms
    80. \n
    81. Login | Register Form – Create amazing login/registration forms
    82. \n
    83. Woo Product Compare – Design stunning product compare tables
    84. \n
    85. Woo Product Carousel – Add Product Carousels for WooCommerce
    86. \n
    87. Simple Menu– Design minimalist navigation menus
    88. \n
    89. Woo Product Gallery– Show your products in a filterable gallery
    90. \n
    91. Woo Cart– Use WooCommerce Cart page to boost online sales
    92. \n
    93. Interactive Circle– Display content with engaging circular layouts
    94. \n
    95. NFT Gallery– Add and showcase NFT collections effortlessly
    96. \n
    97. Business Reviews– Display Google Customer Review to increase your online reputation
    98. \n
    99. SVG Draw– Display SVG elements in a visually striking and interactive way on your website
    100. \n
    101. Woo Product List– Showcase your store’s products with a stunning listicle format
    102. \n
    103. Woo Product Price– Style your product price with custom colors and typography
    104. \n
    105. Woo Product Rating– Show ratings to help customers make informed choices
    106. \n
    107. Woo Product Images– Display WooCommerce product images with stunning effects
    108. \n
    109. Woo Add to Cart– Make shopping easier with an ‘Add to Cart’ button
    110. \n
    111. Breadcrumbs– Improve navigation with breadcrumbs for easy exploration
    112. \n
    113. Code Snippet– Display beautifully formatted code on your Elementor website
    114. \n
    \n

    Extensions (Free):

    \n
      \n
    1. Reading Progress Bar – Add progress bar to show reading position
      \nWatch YouTube Tutorial
    2. \n
    3. Duplicator – Duplicate any page or post in a single click
    4. \n
    5. Table of Contents – Display Table of Contents anywhere you want
      \nWatch YouTube Tutorial
    6. \n
    7. Custom JS – Add custom JavaScript with a few clicks
    8. \n
    9. Scroll to Top – Let visitors quickly navigate to the top of your page
    10. \n
    11. Wrapper Link – Add custom links into any section, column, or even flexbox
    12. \n
    13. Hover Interactions – Create captivating effects on buttons, images, texts and more
    14. \n
    15. Liquid Glass Effects – Give your website a sleek, futuristic feel with stunning glass effects
    16. \n
    \n

    More elements (50+) on Premium Version

    \n
      \n
    1. Post Block – Display your blog posts with a variety of styles
    2. \n
    3. Lightbox & Modal – Create interactive popups after trigger actions
    4. \n
    5. Testimonial Slider – Share customer reviews with animated sliders
    6. \n
    7. Image Comparison – Let your viewers compare between two images
    8. \n
    9. Interactive Promo – Display content with attractive animations
    10. \n
    11. Instagram Feed – Display Instagram posts beautifully
    12. \n
    13. Advanced Google Map – Create maps with unlimited themes
      \nWatch YouTube Tutorial
    14. \n
    15. Static Product – Present your static product just the way you want
    16. \n
    17. Flip Carousel – Feature your content using a unique carousel style
    18. \n
    19. Interactive Cards – Create fascinating effects for your content
    20. \n
    21. Content Timeline – Create memory lane with animated scrolling
    22. \n
    23. Advanced Menu – Use advanced navigation menu anywhere
    24. \n
    25. Twitter Feed Carousel – Share Twitter posts in interactive styles
    26. \n
    27. Dynamic Gallery – Add filterable gallery for any content
    28. \n
    29. Smart Post List – Design your blog page with modern post list
    30. \n
    31. Mailchimp – Design your Mailchimp form with ease
    32. \n
    33. Toggle – Share any content in less space with a toggle
    34. \n
    35. One Page Navigation – Create one page websites in Elementor
    36. \n
    37. Price Menu – Make a beautiful pricing menu for your brands
    38. \n
    39. Image Hotspots – Add hotspot icons with tooltips in an image
    40. \n
    41. Divider – Separate your section with fancy divider
    42. \n
    43. Counter – Highlight important data using the Counter element
    44. \n
    45. Team Member Carousel – Display team members in a carousel
    46. \n
    47. Post Carousel – Use a carousel to display multiple posts
    48. \n
    49. Logo Carousel – Highlight brands or product logos in a carousel
    50. \n
    51. Protected Content – Lock your content with password protection
    52. \n
    53. Offcanvas – Display content in offcanvas with one click
    54. \n
    55. Image Scroller – Show long height images with image scroller
    56. \n
    57. Woo Product Slider – Showcase your products in a stunning slider
    58. \n
    59. Woo Product Collections– Show product collections beautifully
    60. \n
    61. LearnDash Course List– Share LearnDash course list on website
    62. \n
    63. Advanced Search– Add a customizable, dynamic search bar
    64. \n
    65. Woo Thank You– Design a personalized thank you message on the WooCommerce order confirmation page
    66. \n
    67. Woo Cross Sells– Customize the display of cross-sell products to boost your sales potential
    68. \n
    69. Woo Account Dashboard– Design a personalized WooCommerce Customer Account Dashboard
    70. \n
    71. Fancy Chart– Visualize important data with interactive charts and graphs on your website
    72. \n
    73. Stacked Cards– Showcase your website content in a distinctive and engaging way
    74. \n
    75. 360 Degree Photo Viewer– Make your website image visible from every angle with adjustable controls
    76. \n
    77. Multicolumn Pricing Table– Display pricing plans in multiple columns to compare features and choose the right option
    78. \n
    79. Figma to Elementor Converter– Turn Figma designs into fully customizable Elementor Pages
    80. \n
    \n

    Extensions (Pro):

    \n
      \n
    1. Parallax – Add creative parallax effects to your content
    2. \n
    3. Particles – Add animated particle effects to your content
    4. \n
    5. Advanced Tooltip – Make any widget more informative with tooltip
    6. \n
    7. Content Protection – Hide your content with password protection
    8. \n
    9. Conditional Display– Display your preferred content based on the logic conditions you have set
    10. \n
    11. Dynamic Tags– Display content dynamically on your preferred section of the website
    12. \n
    13. Interactive animations– Create stunning animations & build a fully dynamic web page
    14. \n
    15. Custom Cursor– Transform the default mouse pointer into a fully personalized design
    16. \n
    \n

    More features and improvements are coming on regular updates. Want to unlock the advanced elements? Upgrade to our Pro version

    \n

    Elementor WooCommerce Widgets From Essential Addons

    \n

    With Essential Addons, we bring you seamless compatibility with WooCommerce, enhancing your ability to showcase products, categories, and filters with ease. There are 11+ beautiful WooCommerce widgets for your every need:

    \n

    EA Woo Product Carousel: Display your store’s products interactively with this WooCommerce widget and implement various styling options and ready-made layouts to create an interactive product showcase on your WordPress website.

    \n

    EA Woo Product Gallery: Captivate visitors and drive immediate purchases on your WooCommerce store using the Product Gallery element from Essential Addons. Explore incredible ready layouts, abundant customization choices, and more.

    \n

    EA Woo Product Price: Highlight the price of your WooCommerce product Price and style it using custom colors and typography.

    \n

    EA Woo Product Rating: Display WooCommerce product rating to help customers make informed purchasing decisions and increase credibility.

    \n

    EA Woo Product Images: Showcase eye-catching WooCommerce product images with advanced customization and effects.

    \n

    EA Woo Add to Cart: Simplify the shopping experience by displaying an easy-to-access ‘Add to Cart’ button for all your WooCommerce products.

    \n

    EA Woo Product Slider (PRO): Present your WooCommerce products in a stunning slider format with this advanced Elementor addon. You can also easily customize the entire slider appearance with fantastic pre-designed layouts, effects, and other advanced options.

    \n

    EA Woo Product Collection (PRO): Exhibit your WooCommerce product collections on any section of your Elementor website to showcase items based on categories, tags, or attributes, and add engaging hover effects.

    \n

    \n

    EA Woo Product List: Easily add all your WooCommerce products in a listicle format on any Elementor page or post on your website and customize with unique layouts to attract customers instantly.

    \n

    EA Woo Product Grid: Display your products in visually appealing grid-layouts on any website section and allow customers to view them based on category, tags, or attributes.

    \n

    EA Woo Product Compare: Easily compare your preferred WooCommerce products anywhere on the page with this free Elementor addon. Benefit from numerous pre-designed theme layouts and much more.

    \n

    EA Woo Cross Sells:: Effortlessly show related items to your customers with this premium Elementor widget, aiding them in discovering complementary products and enriching their overall shopping experience.

    \n

    \n

    EA Woo Cart: Elevate customers’ purchasing experience on your WooCommerce store by effortlessly designing an appealing Cart Page with Essential Addons using no coding.

    \n

    EA Woo Checkout: Craft visually appealing Checkout pages for your WooCommerce store to customize and style the widget effortlessly to ensure increased sales.

    \n

    EA Woo Account Dashboard (PRO): Create a user-friendly and visually appealing dashboard for your WooCommerce store, consolidating all vital tabs into one convenient location.

    \n

    \n

    EA Woo Thank You (PRO):Resonate with customers and ensure a positive post-purchase experience with this advanced Elementor WooCommerce widget from Essential Addons. It lets you create tailor-made thank-you messages with limitless personalization.

    \n

    🏆 FEATURED BY 100+ RENOWNED PUBLICATIONS

    \n

    WP Mayor: “If you use Elementor, Essential Addons is a great way to expand your library of available widgets without slowing your site down.”
    \nWP Pagebuilders: “With 60+ additional widgets, Essential Addons is a great add-on to enhance your experience in building a website with WordPress+Elementor.”
    \nMonsterPost: “Essential Addons for Elementor has a huge number of active users among all third-party extensions on the market. The widgets are tested in all popular web browsers to ensure full browser compatibility for all elements.”
    \nWPCrafter: WordPress influencer Adam Preiser did a Speed Test & found Essential Addons for Elementor is the high-performance solution out there 👇

    \n

    \n

    BACKED BY A TRUSTED TEAM

    \n

    Essential Addons is brought to you by WPDeveloper, a dedicated WordPress product company, trusted by 6 million+ happy users.

    \n

    Documentation and Support

    \n
      \n
    • For documentation and tutorials go to our Documentation.
    • \n
    • If you have any more questions, visit our support on the Plugin’s Forum.
    • \n
    • For more information about features, FAQs and documentation, check out our website at Essential Addons.
    • \n
    \n

    Happy User of Essential Addons?

    \n\n

    🔥 WHAT’S NEXT

    \n

    If you like Essential Addons, then consider checking out our other WordPress Plugins:

    \n

    🔔 NotificationX – Powerful Social Proof & FOMO Marketing Solution to boost conversions & design stunning WordPress notification bars in Elementor

    \n

    🗒️ BetterDocs – Advanced Documentation & Knowledge Base Plugin for WordPress, which also comes with ready doc templates for Elementor

    \n

    SchedulePress – Complete solution for managing WordPress content scheduling through an editorial calendar & Social Share

    \n

    🔗 EmbedPress – Easy WordPress solution for embedding videos, images, posts, audio, maps and PDF, DOC, PPT & all other types of content into your website using Elementor, Gutenberg and more.

    \n

    🔎 easy.jobs – Smart and easy recruitment and talent sourcing solution for hiring with AI-powered screening system, question sets, remote interviews, and designing branded career pages with Elementor.

    \n", "donate_link": "", "num_ratings": 3953, "screenshots": {"1": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-1.png?rev=3133688", "caption": "Overview of few widgets"}, "2": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-2.gif?rev=3133688", "caption": "Elements control panel"}, "3": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-3.gif?rev=2771534", "caption": "Introducing EA 5.0"}, "4": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-4.png?rev=2598498", "caption": "Advanced Google Map Widget"}, "5": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-5.png?rev=2598498", "caption": "Advanced Tooltip Extension"}, "6": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-6.png?rev=2598498", "caption": "Advanced Tabs Widget"}, "7": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-7.gif?rev=3133688", "caption": "Fancy Text Widget"}, "8": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-8.png?rev=2598498", "caption": "Filterable Gallery Widget"}, "9": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-9.png?rev=2598498", "caption": "Feature List Widget"}, "10": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-10.gif?rev=3133688", "caption": "Image Hotspots Widget"}, "11": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-11.png?rev=2598498", "caption": "Woo Product Grid Widget"}, "12": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-12.png?rev=2598498", "caption": "Team Member Carousel Widget"}, "13": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-13.png?rev=2598498", "caption": "Smart Post List Widget"}, "14": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-14.gif?rev=3133688", "caption": "One Page Navigation Widget"}, "15": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-15.png?rev=2598498", "caption": "Protected Content Widget"}, "16": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-16.gif?rev=3133688", "caption": "Flip Box Widget"}, "17": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-17.gif?rev=3133688", "caption": "Creative Buttons Widget"}}, "support_url": "https://wordpress.org/support/plugin/essential-addons-for-elementor-lite/", "contributors": {"nhrrob": {"avatar": "https://secure.gravatar.com/avatar/df1895ff781cb81a3a78b2d6cf070be0c125e1f9fc667644fc3706d1ba0fc5a4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nhrrob/", "display_name": "Nazmul Hasan Robin"}, "asif2bd": {"avatar": "https://secure.gravatar.com/avatar/751c37e897d7e5350a12329d48cb0a166c77f87fe00c47b9289e70417459fb92?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/asif2bd/", "display_name": "M Asif Rahman"}, "codetic": {"avatar": "https://secure.gravatar.com/avatar/abedf47ed327cf2445e9475f8fd558112778d81b2b44f7d0f39b85468ffecc01?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/codetic/", "display_name": "Codetic"}, "rudlinkon": {"avatar": "https://secure.gravatar.com/avatar/fb49a422d3d9363e0eab3001cd16d5d9f4f5d644aa8f32206a7ded9a5d803611?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rudlinkon/", "display_name": "Linkon Miyan"}, "wpdevteam": {"avatar": "https://secure.gravatar.com/avatar/78597fc6182399eaab6afcc3ac4324f4c4234266e2ec607a8770c57241301903?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpdevteam/", "display_name": "WPDeveloper"}, "himadree12": {"avatar": "https://secure.gravatar.com/avatar/e04d369c2031e715eb3b320a5628e40f39b24aa9a00beab79f71d0db11f1d5de?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/himadree12/", "display_name": "Himadree"}, "priyomukul": {"avatar": "https://secure.gravatar.com/avatar/fb8f3134e4dbbcb540ce412931c8fe4108927714d7e00cf34332dc48d8bf4389?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/priyomukul/", "display_name": "PriyoMukul"}, "jakariaistauk": {"avatar": "https://secure.gravatar.com/avatar/b58edec63e3af6d4f2528b35642e6c565ed9290a3f9875f2be5f1a455dd27b75?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jakariaistauk/", "display_name": "Jakaria Istauk"}, "re_enter_rupok": {"avatar": "https://secure.gravatar.com/avatar/a39cec9005b0dca1bdfd5c6f884f6da77d28f893d60274ca947586b638ab970f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/re_enter_rupok/", "display_name": "Rupok"}, "sumaiyasiddika": {"avatar": "https://secure.gravatar.com/avatar/7aab59fa87bcbd811cf375a18f9a892929fd6a6250d3162c45cd5c2c47b21927?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sumaiyasiddika/", "display_name": "Sumaiya Siddika"}}, "last_updated": "2025-10-08 6:11am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.3.zip", "author_profile": "https://profiles.wordpress.org/wpdevteam/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f4d9-7107-aee7-2134cc2aa10b", "name": "Essential Addons for Elementor – Popular Elementor Templates & Widgets", "slug": "essential-addons-for-elementor-lite", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1759903860, "version": "6.3.3"}, "support_threads": 23, "requires_plugins": [], "short_description": "Elementor addon offering 100+ widgets and templates — Elementor Gallery, Slider, Form, Post Grid, Menu, Accordion, WooCommerce & more.", "author_block_count": "21", "author_block_rating": 86.53061224489801, "commercial_support_url": "https://essential-addons.com/support/", "support_threads_resolved": 20}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1b83-70d9-88b9-20acde546883', 'did:web:api.aspiredev.org:packages:wp-plugin:ewww-image-optimizer', 'ewww-image-optimizer', 'EWWW Image Optimizer', '

    Are you frustrated by a slow website? Do over-sized images make you say “ewww”… Let EWWW Image Optimizer help you make your site faster, improve your bounce rate, and boost your SEO. But most importantly, make your visitors happier so they keep coming back for more.

    -

    With EWWW IO you can optimize all your existing images, from any plugin, and then let EWWW IO take care of new image uploads automatically.

    -

    Why use EWWW Image Optimizer?

    -
      -
    1. No Speed Limits and unlimited file size.
    2. -
    3. Smooth Handling with pixel-perfect optimization using industry-leading tools and progressive rendering.
    4. -
    5. High Torque as we bring you the best compression/quality ratio available with our Premium compression for JPG, PNG, SVG, WebP, and PDF files.
    6. -
    7. Adaptive Steering with intelligent conversion options to get the right image format for the job (JPG, PNG, GIF, AVIF, or WebP).
    8. -
    9. Free Parking The core plugin is free and always will be. However, our paid services offer up to 80% compression, and a host of other features!
    10. -
    11. Comprehensive Coverage: no image gets left behind, optimize everything on your site, not just the WordPress Media Library.
    12. -
    13. Safety First: all communications are secured with top SSL encryption.
    14. -
    15. Roadside Assistance: top-notch support is in our DNA. While API customers get top priority, we answer every single support question with care.
    16. -
    17. Pack a Spare: free image backups store your original images for 30 days.
    18. -
    -

    EWWW IO is the only plugin that lets you optimize images using tools on your own server (jpegtran, optipng, pngout, pngquant, gifsicle, cwebp). If you feel the need for more speed, get more compression and offload the CPU-intensive process of optimization to our specialized servers.

    -

    Automatic Everything

    -

    With Easy IO, images are automatically compressed, scaled to fit the page and device size, lazy loaded, and converted to next-gen WebP and AVIF formats.

    -

    Support

    -

    Stuck? Feeling like maybe you DO need that rocket science degree? We provide free one-on-one email support to everyone.
    -Do you have an idea to make EWWW IO even better? Share it and vote on future features!

    -

    Found a bug? Report the issue on GitHub, and we’ll get it fixed!

    -

    You may report security issues through our Patchstack Vulnerability Disclosure Program. The Patchstack team helps validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    -

    Bulk Optimize

    -

    Optimize all your images from a single page. This includes the Media Library, your theme, and a handful of pre-configured folders (see Optimize Everything Else below). GRAND FlaGallery, NextCellent and NextGEN have their own Bulk Optimize pages.

    -

    Optimize Everything Else

    -

    Configure any folder within your WordPress install to be optimized. The Bulk Optimizer will compress theme images, BuddyPress avatars, BuddyPress Activity Plus images, Meta Slider slides, WP Symposium Pro avatars, GD bbPress attachments, Grand Media Galleries, and any user-specified folders. You can also use Scheduled optimization or run the optimizer from WP-CLI if that’s more your thing.

    -

    Plugin Compatibility

    -

    EWWW IO has been tested with hundreds (if not thousands) of plugins and themes, here are just a few of the most common ones: BuddyPress (Activity Plus add-on too), Cloudinary, Easy Watermark, FileBird, FooGallery, GD bbPress Attachments, GRAND FlAGallery, Gmedia Photo Gallery, MediaPress, Meta Slider, Microsoft Azure Storage, MyArcadePlugin, NextGEN Gallery, Regenerate Thumbnails, Weglot, WP Offload Media, WPML, WP Retina 2x, WP RSS Aggregator, WP Symposium. Read more…

    -

    WebP Images

    -

    If you want simple, get automatic WebP conversion with Easy IO, and be done with it! Otherwise, you can generate WebP versions of your images with the Bulk Optimizer, and deliver them to supported browsers. Take your pick between Apache-style rewrite rules, JS WebP Rewriting, and WebP Rewriting. EWWW IO even works with the WebP option in the Cache Enabler plugin from KeyCDN.

    -

    AVIF Images

    -

    AVIF conversion is built into the Easy IO CDN. Once your site is setup with Easy IO, edit the site settings to enable AVIF, and you’re done!

    -

    WP-CLI

    -

    Allows you to run all Bulk Optimization processes from your command line, instead of the web interface. It is much faster, and allows you to do things like run it in ‘screen’ or via regular cron (instead of wp-cron, which can be unpredictable on low-traffic sites). Install WP-CLI from wp-cli.org, and run ‘wp-cli.phar help ewwwio optimize’ for more information or see the Docs.

    -

    CDN Support

    -

    WP Offload Media is the officially supported (and recommended) plugin for uploads to Amazon S3, Digital Ocean Spaces, and Google Cloud Storage. Check our compatibility list for details on other plugins. All pull mode CDNs like Cloudflare, KeyCDN, MaxCDN, and Sucuri CloudProxy work automatically, but will require you to purge the cache after a bulk optimization.

    -

    Translations

    -

    Huge thanks to all our translators, see the full list!

    -

    If you would like to help translate this plugin, join the team.
    -Signup to receive updates when new strings are available for translation.

    -

    Credits

    -

    Written by Shane Bishop with special thanks to my Lord and Savior. Based upon CW Image Optimizer, which was written by Jacob Allred at Corban Works, LLC. CW Image Optimizer was based on WP Smush.it. Jpegtran is the work of the Independent JPEG Group. PEL is the work of Martin Geisler, Lars Olesen, and Erik Oskam. Easy IO and HTML parsing classes based upon the Photon module from Jetpack.

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "EWWW Image Optimizer", "slug": "ewww-image-optimizer", "tags": {"webp": "webp", "resize": "resize", "convert": "convert", "compress": "compress", "lazy-load": "lazy load"}, "added": "2012-06-07", "icons": {"1x": "https://ps.w.org/ewww-image-optimizer/assets/icon-128x128.png?rev=1582276", "2x": "https://ps.w.org/ewww-image-optimizer/assets/icon-256x256.png?rev=1582276"}, "author": "nosilver4u", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/ewww-image-optimizer/assets/banner-772x250.jpg?rev=1582276", "high": "https://ps.w.org/ewww-image-optimizer/assets/banner-1544x500.jpg?rev=1582276"}, "ratings": {"1": 73, "2": 14, "3": 18, "4": 71, "5": 1626}, "version": "8.2.1", "homepage": "https://wordpress.org/plugins/ewww-image-optimizer/", "requires": "6.5", "sections": {"faq": "\n
    \nDoes the plugin remove EXIF and/or IPTC metadata?\n\n

    \n

    EWWW IO will remove metadata by default, but if you need to keep the EXIF/IPTC data for copyright purposes, you can disable the Remove Metadata option.
    \nEXIF data does not impact SEO, and it is recommended by Google (and just about everyone else) to remove EXIF data.

    \n

    \n
    \nGoogle Pagespeed says my images need compressing or resizing, but I already optimized all my images. What do I do?\n\n

    \n

    Try this for starters: https://docs.ewww.io/article/5-pagespeed-says-my-images-need-more-work

    \n

    \n
    \nThe plugin complains that I’m missing something, what do I do?\n\n

    \n

    This article will walk you through installing the required tools (and the alternatives if installation does not work): https://docs.ewww.io/article/6-the-plugin-says-i-m-missing-something

    \n

    \n
    \nDoes the plugin replace existing images?\n\n

    \n

    Yes, but only if the optimized version is smaller. The plugin should NEVER create a larger image.

    \n

    \n
    \nCan I resize my images with this plugin?\n\n

    \n

    Yes, you can, set it up on the Resize tab.

    \n

    \n
    \nCan I lower the compression setting for JPGs to save more space?\n\n

    \n

    Our premium compression can determine the ideal quality setting and give you the best results, but you may also adjust the default quality for conversion and resizing. Read more…

    \n

    \n
    \nThe bulk optimizer doesn’t seem to be working, what can I do?\n\n

    \n

    See https://docs.ewww.io/article/39-bulk-optimizer-failure for full troubleshooting instructions.

    \n

    \n
    \nWhat are the supported operating systems?\n\n

    \n

    Free mode using local server compression is supported on Windows, Linux, MacOS, and FreeBSD. The Compress API and Easy IO CDN will work on any OS.

    \n

    \n
    \nI want to know more about image optimization, and why you chose these options/tools.\n\n

    \n

    That’s not a question, but since I made it up, I’ll answer it. See this resource:
    \nhttps://developers.google.com/web/tools/lighthouse/audits/optimize-images

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Funciona muy bien

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy andayanda on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    HAce un mes que lo instalé y, de momento va bien

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works like a charm

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ferysjournal on October 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use and really helpful in optimizing all images on my blog.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy oftalmolog on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dhrajuwp on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Before installing this plugin I had problems uploading images. It never uploads. But had no issues after installing this plugin. My images are uploading superfast.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    5 stars

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mu55a on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Remove all the pain from image optimizations.
    Even better if you do self hosting.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    80

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sallemibtikrsa on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    good

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good for optimizing images

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy queno1809 on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very good for optimizing images and converting images to webp, it has functions that work very well such as lazy load. Many thanks to the creators.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works well for us

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy klynam on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We''ve been using EWWW IO for quite a while and quite pleased with the results.

    \n\n\n\n

    Two thumbs up :-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I love it

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy abdulkarimpreo on September 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a helpful plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy seanmnlawrence on September 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you

    \n
    \n
    \n", "changelog": "
      \n
    • Feature requests can be viewed and submitted on our feedback portal
    • \n
    • If you would like to help translate this plugin in your language, join the team
    • \n
    \n

    8.2.1

    \n

    Release Date – August 27, 2025

    \n
      \n
    • added: filters for cloud storage plugin integration
    • \n
    • fixed: Easy IO misses some preload links
    • \n
    • fixed: PHP error when API quota is exhausted during single image optimization
    • \n
    \n

    8.2.0

    \n

    Release Date – July 15, 2025

    \n
      \n
    • added: JS WebP support for HTML elements/tags added via eio_allowed_background_image_elements filter
    • \n
    • added: Easy IO support for dynamic cropping (crop=1) on WordPress.com sites
    • \n
    • changed: use native ImageMagick methods to detect, and correct, paletted PNG thumbnails
    • \n
    • changed: use authoritative classmap via composer to speed up autoloader, props @nlemoine
    • \n
    • changed: streamlined admin notices
    • \n
    • fixed: indexed PNG thumbnails with 8-bit alpha are distorted by quantization
    • \n
    • fixed: PHP warnings related to HTML parsing
    • \n
    • fixed: missing ImageMagick information on Site Health screen
    • \n
    • fixed: PHP warnings when link URLs contain special regex characters
    • \n
    \n

    8.1.4

    \n

    Release Date – May 15, 2025

    \n
      \n
    • added: customize lossy PDF compression by defining EWWW_IMAGE_OPTIMIZER_PDF_IMAGE_DPI and/or EWWW_IMAGE_OPTIMIZER_PDF_IMAGE_QUALITY
    • \n
    • fixed: WebP thumbnails have incorrect orientation when created from the original unoptimized image
    • \n
    \n

    8.1.3

    \n

    Release Date – March 26, 2025

    \n
      \n
    • added: exclude private BuddyBoss media from Easy IO with page:buddyboss exclusion
    • \n
    • changed: WebP Only mode no longer requires Force Re-optimize for already optimized images
    • \n
    • fixed: Easy IO rewriting some URLs when full page exclusions are used
    • \n
    • fixed: WebP rewriters alter PNG URLs when PNG to WebP conversion is unavailable
    • \n
    • fixed: regression in compatibility with plugins that recreate images via WP_Image_Editor
    • \n
    • fixed: previous fix to avoid translation notices caused errors with other plugins calling background processes earlier than ‘init’
    • \n
    \n

    8.1.2

    \n

    Release Date – March 6, 2025

    \n
      \n
    • changed: WebP Conversion mode configurable for API users
    • \n
    • changed: combine metadata queries for faster async scanning
    • \n
    • changed: Bulk Optimization no longer requires Force Re-optimization to create WebP images for previously optimized images
    • \n
    • fixed: background processes trigger notice from loading translations too early
    • \n
    • fixed: WooCommerce thumb regen still runs when WC sizes are disabled
    • \n
    • fixed: Easy IO fails to refresh CDN domain when site URL has changed
    • \n
    • fixed: Force and WebP Only options not applied when scanning additional folders in async mode
    • \n
    • fixed: PDF and SVG images queued in WebP Only mode
    • \n
    \n

    8.1.1

    \n

    Release Date – February 26, 2025

    \n
      \n
    • changed: added handling of HTTP errors to processes on Tools page
    • \n
    • changed: added nonce-renewal for long-running processes on Tools page
    • \n
    • changed: improved output for WebP Cleanup tool and Delete Converted Originals tool
    • \n
    • fixed: queue table upgrade fails to add ‘id’ column
    • \n
    \n

    8.1.0

    \n

    Release Date – February 18, 2025

    \n
      \n
    • added: Preserve Originals option to keep pre-scaled images for WebP and thumbnail generation
    • \n
    • added: ability for 3rd party plugins to hook into Lazy Load and WebP HTML parsers
    • \n
    • changed: ImageMagick is default WebP conversion method on supported servers
    • \n
    • changed: improved performance of custom *_option functions on multisite
    • \n
    • changed: Max Image Dimensions always override WP big_image threshold
    • \n
    • changed: local image backups not removed on plugin deactivation
    • \n
    • fixed: Sharpen Images not applied to new WebP Conversion process
    • \n
    • fixed: WebP Quality not applied to ImageMagick WebP Conversion for thumbnails
    • \n
    • fixed: WebP resizing overrides custom crop set by Crop Thumbnails
    • \n
    • fixed: pre-scaled original cannot be found if attachment metadata is incomplete
    • \n
    • fixed: PHP error in bulk image scanner
    • \n
    \n

    8.0.0

    \n

    Release Date – December 11, 2024

    \n
      \n
    • added: WebP Optimization via API, existing customers may enable it on the Local tab in Ludicrous Mode
    • \n
    • added: improved WebP Conversion quality by using full-size/original source for thumbs
    • \n
    • added: Above the Fold setting for Lazy Load (previously EIO_LAZY_FOLD override)
    • \n
    • added: High-DPI option for Easy IO
    • \n
    • changed: gravatar images excluded from Above the Fold/EIO_LAZY_FOLD counts
    • \n
    • fixed: Picture WebP ignores images with skip-lazy when it should not
    • \n
    • fixed: image records not reset after image restore
    • \n
    • fixed: several PHP warnings from bulk processes
    • \n
    • fixed: paths for thumbs were broken on Windows
    • \n
    • fixed: Easy IO adding images to srcset combined with broken WooCommerce gallery thumbnails causes oversized image sizes to be loaded
    • \n
    • fixed: Easy IO srcset filler using incorrect width for calculations
    • \n
    • fixed: PHP warning during bulk scan
    • \n
    \n

    7.9.1

    \n

    Release Date – October 31, 2024

    \n
      \n
    • changed: bulk optimizer links point to async bulk tool, if available
    • \n
    • fixed: Lazy Load for iframes results in empty src attribute
    • \n
    • fixed: debug actions on bulk optimizer missing nonces
    • \n
    • fixed: bulk optimize scanner queries are too long for some hosts
    • \n
    • fixed: Lazy Load breaks –background CSS variable
    • \n
    \n

    7.9.0

    \n

    Release Date – September 12, 2024

    \n
      \n
    • added: conversion of BMP images to JPG format
    • \n
    • changed: allow folders outside of WordPress install to be optimized via Folders to Optimize
    • \n
    • changed: improve performance of ewwwio_is_file(), props @rmpel
    • \n
    • changed: improve exceeded credit messages for sub-keys
    • \n
    • changed: warn when db connection is not using UTF-8
    • \n
    • changed: ensure all db statements are properly prepared/sanitized
    • \n
    • fixed: bulk async shows start optimizing instead of resume when queues are paused
    • \n
    • fixed: bulk async status refresh does not handle errors properly
    • \n
    • fixed: some strings with i18n had incorrect text domain
    • \n
    \n

    7.8.0

    \n

    Release Date – July 25, 2024

    \n
      \n
    • added: agency mode available by defining EWWWIO_WHITELABEL or using the ewwwio_whitelabel filter
    • \n
    • changed: skip lazy load for LCP images based on fetchpriority when auto-scaling is disabled
    • \n
    • fixed: JS WebP alters img srcset when src is non-WebP but srcset is already WebP
    • \n
    • fixed: Lazy Load and Easy IO fail to decode URLs with HTML-encoded characters, which causes esc_url to break the URL
    • \n
    • fixed: Easy IO fails to update CDN domain if site is re-registered while still active
    • \n
    \n

    7.7.0

    \n

    Release Date – June 6, 2024

    \n
      \n
    • added: improved resizing of paletted PNG images in WP_Image_Editor using pngquant or API
    • \n
    • added: warning when hiding query strings with Hide My WP
    • \n
    • changed: apply async loading to lazyload JS using WP core functionality
    • \n
    • fixed: missing srcset when using JS WebP rewriting
    • \n
    • fixed: multisite deactivate for Easy IO fails nonce verification
    • \n
    • fixed: some strings were missing i18n (props @DAnn2012)
    • \n
    \n

    7.6.0

    \n

    Release Date – April 24, 2024

    \n
      \n
    • added: Easy IO delivery for JS/CSS assets from additional domains
    • \n
    • added: Lazy Load can use dominant color placeholders via Easy IO
    • \n
    • added: ability to filter/parse admin-ajax.php requests via eio_filter_admin_ajax_response filter
    • \n
    • added: Easy IO support for Divi Pixel image masks
    • \n
    • changed: improved smoothing of LQIP for Lazy Load when using Easy IO
    • \n
    • changed: after editing an image in WordPress, optimization results for backup sizes will be hidden from Media Library list mode
    • \n
    • changed: Lazy Load checks for auto-scale exclusions on ancestors of lazyloaded element
    • \n
    • fixed: async bulk interface does not show Start Optimizing when image queue is already visible
    • \n
    • fixed: bulk process appears to have completed after clearing queue
    • \n
    • fixed: storing resize/webp results for new images fails with MySQL strict mode
    • \n
    • fixed: database records not cleaned after thumbs are removed by Force Regenerate Thumbnails
    • \n
    • fixed: JPG to PNG conversion on 8-bit PNGs sometimes uses incorrect black background
    • \n
    • fixed: Help links broken in Firefox’s Strict mode
    • \n
    • fixed: async queue status not properly checked on multi-site
    • \n
    \n

    7.5.0

    \n

    Release Date – March 26, 2024

    \n
      \n
    • added: Easy IO support for upcoming Slider Revolution 7 rendering engine
    • \n
    • added: Easy IO updates existing image preload URLs
    • \n
    • added: Lazy Load automatically excludes preloaded images
    • \n
    • changed: async process locking uses unique key on disk to avoid duplicate processes
    • \n
    • fixed: Easy IO skipping Slider Revolution 6 URLs
    • \n
    • fixed: Lazy Load incorrectly auto-scales fixed group background images
    • \n
    • fixed: uncaught errors when attempting svgcleaner install on FreeBSD
    • \n
    • fixed: optimized images list links to WebP thumbnail for all sizes
    • \n
    • fixed: optimized images list shows wrong thumbnail for non-media library images
    • \n
    • fixed: quirks with new bulk interface and optimized images list
    • \n
    • updated: cwebp to version 1.3.2
    • \n
    • updated: gifsicle to version 1.95
    • \n
    • updated: optipng to version 0.7.8
    • \n
    \n

    7.4.0

    \n

    Release Date – March 6, 2024

    \n
      \n
    • added: async bulk optimizer on settings page
    • \n
    • added: store WebP results/errors for display in Media Library, and in optimization table/results
    • \n
    • added: ability to view pending/queued images, remove images from queue, and sort queue by original image size
    • \n
    • fixed: restoring images from optimization table
    • \n
    • fixed: attempting to install x64 binaries on arm64 servers
    • \n
    \n

    Earlier versions

    \n

    Please refer to the separate changelog.txt file.

    \n", "description": "

    Are you frustrated by a slow website? Do over-sized images make you say “ewww”… Let EWWW Image Optimizer help you make your site faster, improve your bounce rate, and boost your SEO. But most importantly, make your visitors happier so they keep coming back for more.

    \n

    With EWWW IO you can optimize all your existing images, from any plugin, and then let EWWW IO take care of new image uploads automatically.

    \n

    Why use EWWW Image Optimizer?

    \n
      \n
    1. No Speed Limits and unlimited file size.
    2. \n
    3. Smooth Handling with pixel-perfect optimization using industry-leading tools and progressive rendering.
    4. \n
    5. High Torque as we bring you the best compression/quality ratio available with our Premium compression for JPG, PNG, SVG, WebP, and PDF files.
    6. \n
    7. Adaptive Steering with intelligent conversion options to get the right image format for the job (JPG, PNG, GIF, AVIF, or WebP).
    8. \n
    9. Free Parking The core plugin is free and always will be. However, our paid services offer up to 80% compression, and a host of other features!
    10. \n
    11. Comprehensive Coverage: no image gets left behind, optimize everything on your site, not just the WordPress Media Library.
    12. \n
    13. Safety First: all communications are secured with top SSL encryption.
    14. \n
    15. Roadside Assistance: top-notch support is in our DNA. While API customers get top priority, we answer every single support question with care.
    16. \n
    17. Pack a Spare: free image backups store your original images for 30 days.
    18. \n
    \n

    EWWW IO is the only plugin that lets you optimize images using tools on your own server (jpegtran, optipng, pngout, pngquant, gifsicle, cwebp). If you feel the need for more speed, get more compression and offload the CPU-intensive process of optimization to our specialized servers.

    \n

    Automatic Everything

    \n

    With Easy IO, images are automatically compressed, scaled to fit the page and device size, lazy loaded, and converted to next-gen WebP and AVIF formats.

    \n

    Support

    \n

    Stuck? Feeling like maybe you DO need that rocket science degree? We provide free one-on-one email support to everyone.
    \nDo you have an idea to make EWWW IO even better? Share it and vote on future features!

    \n

    Found a bug? Report the issue on GitHub, and we’ll get it fixed!

    \n

    You may report security issues through our Patchstack Vulnerability Disclosure Program. The Patchstack team helps validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    Bulk Optimize

    \n

    Optimize all your images from a single page. This includes the Media Library, your theme, and a handful of pre-configured folders (see Optimize Everything Else below). GRAND FlaGallery, NextCellent and NextGEN have their own Bulk Optimize pages.

    \n

    Optimize Everything Else

    \n

    Configure any folder within your WordPress install to be optimized. The Bulk Optimizer will compress theme images, BuddyPress avatars, BuddyPress Activity Plus images, Meta Slider slides, WP Symposium Pro avatars, GD bbPress attachments, Grand Media Galleries, and any user-specified folders. You can also use Scheduled optimization or run the optimizer from WP-CLI if that’s more your thing.

    \n

    Plugin Compatibility

    \n

    EWWW IO has been tested with hundreds (if not thousands) of plugins and themes, here are just a few of the most common ones: BuddyPress (Activity Plus add-on too), Cloudinary, Easy Watermark, FileBird, FooGallery, GD bbPress Attachments, GRAND FlAGallery, Gmedia Photo Gallery, MediaPress, Meta Slider, Microsoft Azure Storage, MyArcadePlugin, NextGEN Gallery, Regenerate Thumbnails, Weglot, WP Offload Media, WPML, WP Retina 2x, WP RSS Aggregator, WP Symposium. Read more…

    \n

    WebP Images

    \n

    If you want simple, get automatic WebP conversion with Easy IO, and be done with it! Otherwise, you can generate WebP versions of your images with the Bulk Optimizer, and deliver them to supported browsers. Take your pick between Apache-style rewrite rules, JS WebP Rewriting, and WebP Rewriting. EWWW IO even works with the WebP option in the Cache Enabler plugin from KeyCDN.

    \n

    AVIF Images

    \n

    AVIF conversion is built into the Easy IO CDN. Once your site is setup with Easy IO, edit the site settings to enable AVIF, and you’re done!

    \n

    WP-CLI

    \n

    Allows you to run all Bulk Optimization processes from your command line, instead of the web interface. It is much faster, and allows you to do things like run it in ‘screen’ or via regular cron (instead of wp-cron, which can be unpredictable on low-traffic sites). Install WP-CLI from wp-cli.org, and run ‘wp-cli.phar help ewwwio optimize’ for more information or see the Docs.

    \n

    CDN Support

    \n

    WP Offload Media is the officially supported (and recommended) plugin for uploads to Amazon S3, Digital Ocean Spaces, and Google Cloud Storage. Check our compatibility list for details on other plugins. All pull mode CDNs like Cloudflare, KeyCDN, MaxCDN, and Sucuri CloudProxy work automatically, but will require you to purge the cache after a bulk optimization.

    \n

    Translations

    \n

    Huge thanks to all our translators, see the full list!

    \n

    If you would like to help translate this plugin, join the team.
    \nSignup to receive updates when new strings are available for translation.

    \n

    Credits

    \n

    Written by Shane Bishop with special thanks to my Lord and Savior. Based upon CW Image Optimizer, which was written by Jacob Allred at Corban Works, LLC. CW Image Optimizer was based on WP Smush.it. Jpegtran is the work of the Independent JPEG Group. PEL is the work of Martin Geisler, Lars Olesen, and Erik Oskam. Easy IO and HTML parsing classes based upon the Photon module from Jetpack.

    \n", "screenshots": "
    1. \"Plugin

      Plugin settings page.

    2. \"Additional

      Additional optimize column added to media listing. You can see your savings, manually optimize individual images, and restore originals (converted only).

    3. \"Bulk

      Bulk optimization page. You can optimize all your images at once and resume a previous bulk optimization. This is very useful for existing blogs that have lots of images.

    ", "installation": "
      \n
    1. Upload the “ewww-image-optimizer” plugin to your /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    5. The plugin will attempt to install jpegtran, optipng, and gifsicle automatically for you. This requires that the wp-content folder is writable by the user running the web server.
    6. \n
    7. If the binaries don’t run locally, you may sign up for cloud-based optimization: https://ewww.io/plans/
    8. \n
    9. Recommended Visit the settings page to enable/disable specific tools and turn on advanced optimization features.
    10. \n
    11. Done!
    12. \n
    \n

    If these steps do not work, see the additional documentation. If you need further assistance using the plugin, please visit our Support Page.

    \n

    Webhosts

    \n

    To find out if your webhost works with the EWWW Image Optimizer, you can check the official list.

    \n"}, "versions": {"5.6.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.5.6.2.zip", "5.7.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.5.7.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.5.8.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.0.3.zip", "6.1.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.5.zip", "6.1.6": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.6.zip", "6.1.7": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.7.zip", "6.1.8": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.8.zip", "6.1.9": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.9.zip", "6.2.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.5.zip", "6.3.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.3.0.zip", "6.4.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.4.2.zip", "6.5.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.5.1.zip", "6.5.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.5.2.zip", "6.6.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.6.0.zip", "6.7.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.7.0.zip", "6.8.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.8.0.zip", "6.9.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.9.2.zip", "6.9.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.9.3.zip", "7.0.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.0.0.zip", "7.0.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.0.2.zip", "7.1.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.1.0.zip", "7.2.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.2.0.zip", "7.2.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.2.1.zip", "7.2.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.2.2.zip", "7.2.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.2.3.zip", "7.3.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.3.0.zip", "7.4.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.4.0.zip", "7.5.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.5.0.zip", "7.6.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.6.0.zip", "7.7.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.7.0.zip", "7.8.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.8.0.zip", "7.9.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.9.1.zip", "8.0.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.0.0.zip", "8.1.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.0.zip", "8.1.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.1.zip", "8.1.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.2.zip", "8.1.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.3.zip", "8.1.4": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.4.zip", "8.2.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.2.0.zip", "8.2.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.2.1.zip", "trunk": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.zip"}, "downloaded": 43168420, "description": "

    Are you frustrated by a slow website? Do over-sized images make you say “ewww”… Let EWWW Image Optimizer help you make your site faster, improve your bounce rate, and boost your SEO. But most importantly, make your visitors happier so they keep coming back for more.

    \n

    With EWWW IO you can optimize all your existing images, from any plugin, and then let EWWW IO take care of new image uploads automatically.

    \n

    Why use EWWW Image Optimizer?

    \n
      \n
    1. No Speed Limits and unlimited file size.
    2. \n
    3. Smooth Handling with pixel-perfect optimization using industry-leading tools and progressive rendering.
    4. \n
    5. High Torque as we bring you the best compression/quality ratio available with our Premium compression for JPG, PNG, SVG, WebP, and PDF files.
    6. \n
    7. Adaptive Steering with intelligent conversion options to get the right image format for the job (JPG, PNG, GIF, AVIF, or WebP).
    8. \n
    9. Free Parking The core plugin is free and always will be. However, our paid services offer up to 80% compression, and a host of other features!
    10. \n
    11. Comprehensive Coverage: no image gets left behind, optimize everything on your site, not just the WordPress Media Library.
    12. \n
    13. Safety First: all communications are secured with top SSL encryption.
    14. \n
    15. Roadside Assistance: top-notch support is in our DNA. While API customers get top priority, we answer every single support question with care.
    16. \n
    17. Pack a Spare: free image backups store your original images for 30 days.
    18. \n
    \n

    EWWW IO is the only plugin that lets you optimize images using tools on your own server (jpegtran, optipng, pngout, pngquant, gifsicle, cwebp). If you feel the need for more speed, get more compression and offload the CPU-intensive process of optimization to our specialized servers.

    \n

    Automatic Everything

    \n

    With Easy IO, images are automatically compressed, scaled to fit the page and device size, lazy loaded, and converted to next-gen WebP and AVIF formats.

    \n

    Support

    \n

    Stuck? Feeling like maybe you DO need that rocket science degree? We provide free one-on-one email support to everyone.
    \nDo you have an idea to make EWWW IO even better? Share it and vote on future features!

    \n

    Found a bug? Report the issue on GitHub, and we’ll get it fixed!

    \n

    You may report security issues through our Patchstack Vulnerability Disclosure Program. The Patchstack team helps validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    Bulk Optimize

    \n

    Optimize all your images from a single page. This includes the Media Library, your theme, and a handful of pre-configured folders (see Optimize Everything Else below). GRAND FlaGallery, NextCellent and NextGEN have their own Bulk Optimize pages.

    \n

    Optimize Everything Else

    \n

    Configure any folder within your WordPress install to be optimized. The Bulk Optimizer will compress theme images, BuddyPress avatars, BuddyPress Activity Plus images, Meta Slider slides, WP Symposium Pro avatars, GD bbPress attachments, Grand Media Galleries, and any user-specified folders. You can also use Scheduled optimization or run the optimizer from WP-CLI if that’s more your thing.

    \n

    Plugin Compatibility

    \n

    EWWW IO has been tested with hundreds (if not thousands) of plugins and themes, here are just a few of the most common ones: BuddyPress (Activity Plus add-on too), Cloudinary, Easy Watermark, FileBird, FooGallery, GD bbPress Attachments, GRAND FlAGallery, Gmedia Photo Gallery, MediaPress, Meta Slider, Microsoft Azure Storage, MyArcadePlugin, NextGEN Gallery, Regenerate Thumbnails, Weglot, WP Offload Media, WPML, WP Retina 2x, WP RSS Aggregator, WP Symposium. Read more…

    \n

    WebP Images

    \n

    If you want simple, get automatic WebP conversion with Easy IO, and be done with it! Otherwise, you can generate WebP versions of your images with the Bulk Optimizer, and deliver them to supported browsers. Take your pick between Apache-style rewrite rules, JS WebP Rewriting, and WebP Rewriting. EWWW IO even works with the WebP option in the Cache Enabler plugin from KeyCDN.

    \n

    AVIF Images

    \n

    AVIF conversion is built into the Easy IO CDN. Once your site is setup with Easy IO, edit the site settings to enable AVIF, and you’re done!

    \n

    WP-CLI

    \n

    Allows you to run all Bulk Optimization processes from your command line, instead of the web interface. It is much faster, and allows you to do things like run it in ‘screen’ or via regular cron (instead of wp-cron, which can be unpredictable on low-traffic sites). Install WP-CLI from wp-cli.org, and run ‘wp-cli.phar help ewwwio optimize’ for more information or see the Docs.

    \n

    CDN Support

    \n

    WP Offload Media is the officially supported (and recommended) plugin for uploads to Amazon S3, Digital Ocean Spaces, and Google Cloud Storage. Check our compatibility list for details on other plugins. All pull mode CDNs like Cloudflare, KeyCDN, MaxCDN, and Sucuri CloudProxy work automatically, but will require you to purge the cache after a bulk optimization.

    \n

    Translations

    \n

    Huge thanks to all our translators, see the full list!

    \n

    If you would like to help translate this plugin, join the team.
    \nSignup to receive updates when new strings are available for translation.

    \n

    Credits

    \n

    Written by Shane Bishop with special thanks to my Lord and Savior. Based upon CW Image Optimizer, which was written by Jacob Allred at Corban Works, LLC. CW Image Optimizer was based on WP Smush.it. Jpegtran is the work of the Independent JPEG Group. PEL is the work of Martin Geisler, Lars Olesen, and Erik Oskam. Easy IO and HTML parsing classes based upon the Photon module from Jetpack.

    \n", "donate_link": "https://ewww.io/donate/", "num_ratings": 1802, "screenshots": {"1": {"src": "https://ps.w.org/ewww-image-optimizer/assets/screenshot-1.png?rev=1557839", "caption": "Plugin settings page."}, "2": {"src": "https://ps.w.org/ewww-image-optimizer/assets/screenshot-2.png?rev=1557839", "caption": "Additional optimize column added to media listing. You can see your savings, manually optimize individual images, and restore originals (converted only)."}, "3": {"src": "https://ps.w.org/ewww-image-optimizer/assets/screenshot-3.png?rev=1557839", "caption": "Bulk optimization page. You can optimize all your images at once and resume a previous bulk optimization. This is very useful for existing blogs that have lots of images."}}, "support_url": "https://wordpress.org/support/plugin/ewww-image-optimizer/", "contributors": {"nosilver4u": {"avatar": "https://secure.gravatar.com/avatar/591c39f8101beaf38f818256c9cac460dd878b11aa6de3a815de1ac04eb60960?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nosilver4u/", "display_name": "nosilver4u"}}, "last_updated": "2025-08-27 5:48pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.2.1.zip", "author_profile": "https://profiles.wordpress.org/nosilver4u/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f47e-703b-a0b5-5520f9b9cc3d", "name": "EWWW Image Optimizer", "slug": "ewww-image-optimizer", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1756316880, "version": "8.2.1"}, "support_threads": 2, "requires_plugins": [], "short_description": "Smaller Images, Faster Sites, Happier Visitors. Comprehensive image optimization that doesn't require a degree in rocket science.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "https://ewww.io/", "support_threads_resolved": 1}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c37-7221-9410-53823df7957f', 'did:web:api.aspiredev.org:packages:wp-plugin:insert-headers-and-footers', 'insert-headers-and-footers', 'WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager', '

    Insert Headers & Footers + Full WordPress Code Snippets Plugin

    -

    WPCode (formerly known as Insert Headers and Footers by WPBeginner) is the most popular code snippets plugin for WordPress used by over 2 million websites.

    -

    We make it easy for you to add code snippets in WordPress without having to edit your theme’s functions.php file.

    -

    Our simple insert headers and footers interface allows you to insert code like Google Analytics, custom CSS, Facebook Pixel, and more to your WordPress site’s header and footer as well other areas of your website. No need to edit your theme files!

    -

    Aside from Header and Footer scripts, you can also use WPCode to insert custom PHP code snippets, JavaScript code snippets, CSS code snippets, HTML code snippets, and text snippets with full conditional logic support.

    -

    We took the pain out of adding custom code snippets in WordPress and made it easy.

    -
    -

    I have been using Insert Headers and Footers and it is such a useful tool. Super helpful and the very best of its kind. Highly recommend
    - The_Gibble – WordPress user

    -
    -

    Quick Overview of WPCode from WPBeginner

    -

    -
    -

    Introducing New WPCode Pro
    - While WPCode Lite offers tons of powerful features for free, we listened to user feedback and created WPCode Pro with even more amazing features to improve your workflow. This includes smart conditional logic, saving code snippets to cloud library, code revisions, page-specific snippets, deeper integration with popular plugins like WooCommerce, Easy Digital Downloads, and so much more. Click here to purchase the best premium WordPress code snippet plugin now!

    -
    -

    Future Proof Code Snippet Management

    -

    Most WordPress tutorial websites ask you to add code snippets to your theme’s functions.php file. This makes managing code snippets messy, and it also prevents you from updating your theme.

    -

    If you ever update your theme or switch to another theme, then you will lose all custom code functions that you added in your functions.php file.

    -

    WPCode solves this by providing you an easy way to insert header and footer scripts along with other code snippets directly from your WordPress dashboard. These code snippets actually run as if they were in your theme’s functions.php file.

    -

    Our smart code snippet validation helps you prevent common code errors to ensure you never break your website when adding code snippets or header and footer scripts.

    -

    New WPCode Cloud Library even allows you to store all your custom code snippets in a cloud library, so you can easily re-use code snippets across multiple website projects and save time. You can keep your code snippets completely private or share it with the community to give back while boosting your social profile.

    -
    -

    This plugin allows me to not only add things to my site whenever needed, but it takes me only seconds to accomplish it.
    - David Weber – WordPress user

    -
    -

    Full Code Snippets Library and Code Generators

    -

    Ever wanted a central place to find all the most popular WordPress code snippets that are tested and proven to work?

    -

    When we started Insert Headers and Footers plugin, we did too. So we built a WordPress code snippets library right inside the WPCode plugin.

    -

    You will find verified PHP code snippets for popular feature requests like disable REST API, disable XML-RPC, disable comments, allow SVG file uploads, disable Gutenberg, add Classic Editor, and more without installing separate plugins for each.

    -
    -

    I was very hesitant to get into any of the code for my website. Your plugin made it easy for me to do.
    - Conbrio75 – WordPress user

    -
    -

    We also built the ability to save your code snippets to WPCode Cloud Library, so you can easily re-use it on your other websites, client projects, or even share it with the larger community.

    -

    WPCode Cloud Library helps you better organize your code snippets in one central location, so you can save more time and speed up your workflow when managing websites. No more wasting time looking for custom notes or Github gists.

    -

    Aside from our growing code snippets library, we also have WordPress code generators to help you quickly get ready-to-use custom code using the latest WordPress coding standards and API’s.

    -

    Conditional Logic for Code Snippets + Code Insertion Priority

    -

    Our goal with WPCode was to create a WordPress code snippets plugin that’s both EASY and POWERFUL.

    -

    That’s why aside from our global header and footer scripts, we added advanced features like conditional logic for code snippets and made it easy.

    -

    Instead of learning WordPress conditional logic queries, you can use our beginner-friendly conditional logic user interface to:

    -
      -
    • Load code snippets for logged in users only
    • -
    • Load PHP code snippets for specific user roles
    • -
    • Load PHP code snippets only on specific page URLs
    • -
    • Insert header and footer pixel scripts on specific pages
    • -
    • Show code snippets based on type of page
    • -
    • Run code snippet only on certain post types
    • -
    • Load header and footer code snippet based on referrer source
    • -
    • and more…
    • -
    -

    We also added both automatic code insertion and manual code output using shortcodes.

    -

    Our Auto Insert feature allows you to run the code snippet everywhere or choose from custom options like:

    -
      -
    • Run code snippet only on frontend
    • -
    • Run code snippet only in WordPress admin area
    • -
    • Add header and footer scripts sitewide
    • -
    • Insert PHP code snippet before or after post content
    • -
    • Insert code snippet before or after specific paragraph
    • -
    • Insert code snippet on specific archive pages
    • -
    • Insert code snippets after specific WooCommerce function (Pro Feature)
    • -
    -

    Aside from that, we also added a visual code snippet priority system, so you can choose the order for your custom functions to avoid code conflict.

    -
    -

    This is such a useful plugin! It makes it so much easier to include things on your website!
    - Understoryliving – WordPress user

    -
    -

    And for even more flexibility and customization, we have added the ability for you to add page-specific code snippets right from the WordPress classic editor as well as the Gutenberg editor. You can even load code snippets based on device type such as mobile only code snippets, desktop only code snippets, etc.

    -

    Import and Export Code Snippets

    -

    Managing multiple websites or developing in a staging environment?

    -

    We offer an easy way to import and export your custom code snippets, functions, and header and footer scripts to help you save time.

    -

    You can also save your code snippets to WPCode Cloud (Pro feature), so you can easily re-use the same code snippets across multiple websites. This also allows you to better organize your code snippets instead of wasting time searching for random Github gists.

    -
    -

    Simple plugin I use in quite every site. Very useful to insert scripts and tags.
    - tommasoperego – WordPress user

    -
    -

    Full WPCode Feature List

    -

    The simple interface of WPCode plugin (formerly known as Insert Headers and Footers) gives you one place where you can insert header and footer scripts as well as custom code snippets rather than dealing with dozens of different plugins.

    -

    Below is a full list of WPCode features:

    -
      -
    • Quick to set up
    • -
    • Unlimited code snippets
    • -
    • Simple to insert header and footer scripts globally
    • -
    • Beginner Friendly Code Editor with Syntax Highlighter for PHP, JavaScript, and HTML
    • -
    • Smart Code Validation to Prevent PHP Errors
    • -
    • Insert header code and/or footer code using Conditional Logic
    • -
    • Add Google Analytics code to header and footer
    • -
    • Add custom CSS code to any theme
    • -
    • Insert Facebook pixel code in header and footer
    • -
    • Insert any code or script, including HTML and Javascript
    • -
    • Insert PHP Code Snippets
    • -
    • Ready-made Code Snippet Library
    • -
    • Custom WordPress Code Snippet Generator
    • -
    • Show or Hide PHP Code Snippets based on conditional logic
    • -
    • Run PHP code and custom code snippets everywhere or in select areas using smart auto-insert rules.
    • -
    • Manually insert PHP code snippets using shortcodes anywhere on website
    • -
    • Add Rich Text Ads and Content Snippets automatically on posts & pages.
    • -
    • Export / Import Code Snippets
    • -
    • New Save snippets to Cloud Library – All your snippets stored in your private code snippet cloud.
    • -
    • New Deep integrations with Gutenberg, WooCommerce, and more.
    • -
    • Device specific code snippets (such as load code snippets on mobile only, desktop only, etc)
    • -
    • and more features coming soon.
    • -
    -

    Credits

    -

    Insert Headers and Footers plugin was first created by Syed Balkhi and the WPBeginner team in 2011.

    -

    It was later rebranded to WPCode in 2022 by Syed Balkhi to add powerful code snippets features that users were requesting for.

    -

    Branding Guideline

    -

    WPCode™ is a trademark of WPCode LLC. When writing about the Insert Headers and Footers – Code Snippets plugin by WPCode, please make sure to uppercase the initial 3 letters.

    -

    WPCode (correct)
    -WP Code (incorrect)
    -wpcode (incorrect)
    -wp code snippets (incorrect)

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager", "slug": "insert-headers-and-footers", "tags": {"css": "css", "php": "php", "code": "code", "header": "header", "code-snippets": "code-snippets"}, "added": "2012-07-12", "icons": {"1x": "https://ps.w.org/insert-headers-and-footers/assets/icon-128x128.png?rev=2758516", "2x": "https://ps.w.org/insert-headers-and-footers/assets/icon-256x256.png?rev=2758516"}, "author": "Syed Balkhi", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/insert-headers-and-footers/assets/banner-772x250.png?rev=2758516", "high": "https://ps.w.org/insert-headers-and-footers/assets/banner-1544x500.png?rev=2758516"}, "ratings": {"1": 43, "2": 9, "3": 3, "4": 9, "5": 1622}, "version": "2.3.0", "homepage": "https://www.wpcode.com/", "requires": "4.6", "sections": {"faq": "\n
    \nCan I use WPCode – Insert Headers and Footers to install Google Analytics?\n\n

    \n

    Yes, you can insert your Google Analytics code in the Scripts in Header field.

    \n

    \n
    \nCan I use WPCode – Insert Headers and Footers for Google AdSense?\n\n

    \n

    Yes, to verify your account or to tag your page for Auto ads, paste the code AdSense gives you, into the Scripts in Header field.

    \n

    \n
    \nWill I lose my snippets if I change my WordPress theme?\n\n

    \n

    No, the idea behind WPCode – Insert Headers, Footers, and Code Snippets plugin is so you can safely add code snippets.

    \n

    All code snippets are stored in the WordPress database, independent of the theme upgrades.

    \n

    \n
    \nCan I switch back to the old version of Insert Headers and Footers?\n\n

    \n

    Yes, if you don’t want the advanced code snippets functionality, then you can switch back to the old Insert Headers and Footers features by simply going to the Settings Menu and clicking on the Headers & Footers mode.

    \n

    \n
    \nWhat Type of Code Snippets can I add?\n\n

    \n

    With WPCode, you can add any type of code snippet that you would otherwise add in your theme’s functions.php file or in a site-specific plugin.

    \n

    This includes custom PHP snippets, JavaScript snippets, HTML snippet, CSS snippets, Text Snippets, Conversion pixels, Tracking scripts, AdSense or other banner ads code, and more.

    \n

    \n
    \nWhat are some example plugins WPCode can replace?\n\n

    \n

    WPCode comes with a ready-made code snippets library that allows you to replace several popular plugins including:

    \n
      \n
    • Disable Comment plugins
    • \n
    • Disable XML-RPC plugins
    • \n
    • Disable Rest API plugins
    • \n
    • Disable Gutenberg plugins
    • \n
    • Classic Editor plugin
    • \n
    • Allow SVG File Upload plugins
    • \n
    • Disable RSS feed plugins
    • \n
    • Disable Search plugins
    • \n
    • Disable Automatic Updates plugins
    • \n
    • Disable Admin Bar plugins
    • \n
    • Disable Widget Blocks plugin
    • \n
    • Classic Widgets plugin
    • \n
    • Remove WordPress Version Number plugins
    • \n
    • Google Analytics plugins
    • \n
    • Facebook Pixel plugins
    • \n
    • Google AdSense plugins
    • \n
    • Custom Post Types UI plugins
    • \n
    • Other WordPress Generator plugins
    • \n
    \n

    … and basically any plugin that adds a functionality which can be added via custom code snippets.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    sehr komfortabel bei Erstinstallation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sebabran on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Wirklich sehr komfortabel bei der Erstinstallation.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bark on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin does what it promises, thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incredibly simple, Incredibly functional

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Verity Cantare (veritycantare) on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    All the custom css was building up in my Gutenberg area. All the custom php was scattered around theme files. All the annotations I made didn''t make anything easier to find.

    \n\n\n\n

    This does.

    \n\n\n\n

    As near as I can tell, it''s fully functional even in the Lite version. Does what I need, doesn''t make me learn a degree to do it.

    \n\n\n\n

    Now the only css left in the Gutenberg area is what is needed by it to do WYSIWYG editing.

    \n\n\n\n

    Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    the best plugin I have found of the repository

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sitarag on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    One of the best plugins I have found. It has been useful for managing CSS, html and PHP, and without needing to alter theme or core files.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Solved the issues

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy salderman on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Needed to change Change ''Ship'' to ''Deliver'' on Checkout and it was a quick and painless fix. Took less than 60 seconds!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Funciona bacana!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Renan Rosa Meneguci (renangeographia) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Tem funcionalidades legais, ainda mais a versão pro.

    \n\n\n\n

    \n\n\n\n

    Grato

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    nice

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy khasmer on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    nice

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Love this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rosalynaustin31 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used this plugin to insert a livechat code into my website, easily

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best there is

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy SRD75 on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Clean, logical, powerful interface for adding custom code.

    \n\n\n\n

    The free version supports 90% of our needs.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect and easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jlesse on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It`s an easy to use and perfectly working plugin.

    \n
    \n
    \n", "changelog": "

    2.3.0

    \n
      \n
    • New: We added a way to 1-click update snippets installed from the WPCode library when new versions are available.
    • \n
    • Tweak: We improved JSON code snippets import validation to show accurate error messages when files are incorrectly formatted.
    • \n
    \n

    2.2.9

    \n
      \n
    • New: Added a new importer for the Post Snippets plugin to make it easier to migrate your code snippets.
    • \n
    • Tweak: We adjusted the way the safe mode works to limit its effects on frontend urls.
    • \n
    \n

    2.2.8

    \n
      \n
    • New: Schema Generators – we added 20 new code generators to make it easier to manage schema code on your website.
    • \n
    • Tweak: We moved the button to update generated snippets to the top so that you can update snippets easier.
    • \n
    • Tweak: We added “suppress_filters” to WP_Query used by WPCode to avoid conflicts with other plugins.
    • \n
    • Fix: We fixed an issue where the generated snippets were not automatically inserted when activated.
    • \n
    \n

    2.2.7

    \n
      \n
    • New: Added support for automatically importing snippets from 2 new plugins.
    • \n
    \n

    2.2.6

    \n
      \n
    • New: Easily find where your snippet is used as a shortcode with our new shortcode finder tool. 1-click search through your site.
    • \n
    • New: Improved editor for snippet notes. You can now add links and format text with a WYSIWYG editor.
    • \n
    • New: Snippet notes column. Display the notes for each snippet in the list of snippets.
    • \n
    • Fix: We improved the code snippets list filtering in the admin to avoid issues when JS errors are encountered on the page from other scripts.
    • \n
    \n

    2.2.5

    \n
      \n
    • New: We added a new way to quickly filter snippets by code type in the list of snippets.
    • \n
    • Tweak: Prevent content_save_pre from modifying snippet code.
    • \n
    \n

    2.2.4.1

    \n
      \n
    • Fix: Shortcode attributes variables were not being set correctly.
    • \n
    \n

    2.2.4

    \n
      \n
    • Tweak: We adjusted the way our plugin adds a version-specific body class to avoid conflicts with other plugins.
    • \n
    • Tweak: We improved the way custom PHP code is executed to avoid conflicts with variables in snippets.
    • \n
    • Fix: When removing the last Conditional Logic group the rule selector was no longer working.
    • \n
    \n

    2.2.3.1

    \n
      \n
    • Tweak: Updated the way we load translatable strings in some components for compatibility with WordPress 6.7.
    • \n
    \n

    2.2.3

    \n
      \n
    • Tweak: We updated the way we validate PHP snippets when making an edit to an active snippet for better feedback when debugging.
    • \n
    • Tweak: We replaced a dependency (SweetAlert2) for a more lightweight alternative to improve performance.
    • \n
    \n

    2.2.2

    \n
      \n
    • New: The Add Snippet screen now makes it easier to get started with more than just our library of snippets, choose from expert-picked snippets, snippet generators or plugin-specific snippets.
    • \n
    • New: We updated the code type picker for more clarity on what each code type is useful for and the last code type you used is now saved for a streamlined experience when adding multiple snippets.
    • \n
    • Tweak: We extended the unfiltered HTML permissions notice when the DISALLOW_UNFILTERED_HTML constant is defined to add more clarity.
    • \n
    \n

    2.2.1

    \n
      \n
    • Fix: We fixed a bug that was causing the selected conditional logic operator to not be displayed correctly for some rules.
    • \n
    • Fix: The auto-insert location picker was not opening again in some situations.
    • \n
    \n

    2.2.0

    \n
      \n
    • New: We updated the conditional logic rules picker for more clarity and ease of use.
    • \n
    • New: We expanded our automatic cache clearing to include the Swift Performance plugin.
    • \n
    • Tweak: The Page URL conditional logic option now supports query params and wp-admin URLs.
    • \n
    \n

    2.1.14

    \n
      \n
    • New: When making changes to the Global Header & Footer WPCode will attempt to automatically clear page cache for popular caching plugins.
    • \n
    • New: Save your snippet with a keyboard shortcut by pressing CTRL+S (Windows) or CMD+S (Mac) in the snippet editor.
    • \n
    • Tweak: Prevent error when TinyMCE is disabled by other plugins.
    • \n
    \n

    2.1.13

    \n
      \n
    • New: We added admin-specific locations for header and footer to streamline customizations in the wp-admin area.
    • \n
    • New: The code editor height can now be adjusted directly from the snippet editor screen. Auto-height is still available as an option on the settings page.
    • \n
    • Fix: When making changes to a snippet, the function to prevent you from navigating away was no longer working.
    • \n
    \n

    2.1.12

    \n
      \n
    • New: We added a new way to execute PHP snippets “On Demand” – look for the “On Demand” location in the Auto Insert settings.
    • \n
    • Tweak: We added checks in place to prevent malicious code patterns from being used in WPCode.
    • \n
    • Fix: We fixed a bug where the conditional logic for logged-in users was not being saved correctly the first time.
    • \n
    \n

    2.1.11

    \n
      \n
    • Tweak: We improved the admin bar menu to fix an JS error in some scenarios and a html validation issue.
    • \n
    • Tweak: We added support for importing snippets from the Code Snippets Pro plugin.
    • \n
    • Fix: We fixed an issue with importing CSS snippets.
    • \n
    \n

    2.1.10

    \n
      \n
    • New: When another user is editing the same snippet, we now show a warning to avoid conflicts.
    • \n
    • Tweak: Improved mobile styles across the plugin admin for better readability.
    • \n
    \n

    2.1.9

    \n
      \n
    • New: Conditional logic rule for Blog home page (posts page)
    • \n
    • Tweak: Improved the connect to library flow to avoid the connect window from getting blocked.
    • \n
    • Fix: Author archive condition was not working as intended.
    • \n
    \n

    2.1.8

    \n
      \n
    • Tweak: We changed the way the code generators are loaded to improve performance overall.
    • \n
    • Tweak: We changed the way translations are loaded for better performance.
    • \n
    \n

    2.1.7

    \n
      \n
    • New: WPCode now has a Dark Mode for those late night coding sessions. Enable it on the settings page.
    • \n
    • Tweak: We improved the way the error messages are displayed in the snippet editor for more clarity.
    • \n
    • Fix: The snippet editor was no longer running syntax checks for PHP snippets upon activation.
    • \n
    • Fix: We fixed a bug where in certain versions of Safari the auto-insert location was being unset when saving a snippet.
    • \n
    \n

    2.1.6

    \n
      \n
    • New: We added the option to delete all the plugin data on uninstall.
    • \n
    • Fix: The code of duplicated snippets was sometimes removing some slashes.
    • \n
    • Fix: Error count was not correctly updated when snippets were trashed or deleted.
    • \n
    \n

    2.1.5

    \n
      \n
    • New: Priority column added to the list of snippets, order by snippet priority.
    • \n
    • Fix: Fixed a notice that was being thrown in new sites when running the installation routines.
    • \n
    • Fix: Filtering by tag or location in the list of snippets was not working correctly.
    • \n
    \n

    2.1.4.1

    \n
      \n
    • Fix: Avoid notices for errors that don’t include the file parameter.
    • \n
    • Fix: Improve compatibility with PHP 8.2 for the snippet cache class.
    • \n
    \n

    2.1.4

    \n
      \n
    • New: Enhanced error tracking: Errors generated by PHP snippets on your website will be displayed within the snippet’s context, simplifying the debugging process.
    • \n
    • New: We’ve refined the snippet auto-deactivation process. Now, only snippets that produce fatal errors in the admin section will be deactivated. All other errors will be reported through the newly implemented error tracker.
    • \n
    • New: We introduced three new columns to the snippet list: ID, Code Type, and Shortcode.
    • \n
    • Tweak: We’ve enhanced our file caching mechanism to prevent redundant requests in scenarios where files aren’t written properly due to certain setups.
    • \n
    • Tweak: We’ve implemented an additional check to ensure that closing PHP tags don’t disrupt the execution of snippets.
    • \n
    • Fix: We’ve corrected the sorting of snippets when arranged by their last updated date.
    • \n
    \n

    2.1.3.1

    \n
      \n
    • Fix: Shortcode attributes were not being correctly parsed in some scenarios.
    • \n
    \n

    2.1.3

    \n
      \n
    • New: We improved how we manage automatic snippet disabling when errors occur. You’ll now get detailed insights into which snippet is responsible for the error and the exact line where the problem occurred.
    • \n
    • Tweak: We adjusted the way snippets are preloaded to improve compatibility with object cache.
    • \n
    • Fix: The snippets added as shortcodes were not correctly displayed in the admin bar.
    • \n
    \n

    2.1.2

    \n
      \n
    • Tweak: We adjusted the way snippets are tracked in the Admin Bar Code Spotter to avoid wrong numbers in certain locations.
    • \n
    • Tweak: We improved the way the Admin Bar Code Spotter menu is loaded for better compatibility with other plugins and older themes.
    • \n
    • Tweak: Changed the way assets used by the admin bar are loaded to avoid errors if the head is loaded multiple times.
    • \n
    \n

    2.1.1

    \n
      \n
    • New: Easily duplicate a snippet with all of its settings with the new Duplicate link in the list of snippets.
    • \n
    • Fix: Taxonomy page conditional logic was not being correctly assigned for category and tags archives.
    • \n
    • Tweak: Adjust admin bar markup to avoid using a heading.
    • \n
    \n

    2.1.0

    \n
      \n
    • New: See exactly which scripts and snippets are loaded on the current page with the WPCode admin bar info menu.
    • \n
    • Tweak: Minor update to connect process.
    • \n
    \n", "description": "

    Insert Headers & Footers + Full WordPress Code Snippets Plugin

    \n

    WPCode (formerly known as Insert Headers and Footers by WPBeginner) is the most popular code snippets plugin for WordPress used by over 2 million websites.

    \n

    We make it easy for you to add code snippets in WordPress without having to edit your theme’s functions.php file.

    \n

    Our simple insert headers and footers interface allows you to insert code like Google Analytics, custom CSS, Facebook Pixel, and more to your WordPress site’s header and footer as well other areas of your website. No need to edit your theme files!

    \n

    Aside from Header and Footer scripts, you can also use WPCode to insert custom PHP code snippets, JavaScript code snippets, CSS code snippets, HTML code snippets, and text snippets with full conditional logic support.

    \n

    We took the pain out of adding custom code snippets in WordPress and made it easy.

    \n
    \n

    I have been using Insert Headers and Footers and it is such a useful tool. Super helpful and the very best of its kind. Highly recommend
    \n The_Gibble – WordPress user

    \n
    \n

    Quick Overview of WPCode from WPBeginner

    \n

    \n
    \n

    Introducing New WPCode Pro
    \n While WPCode Lite offers tons of powerful features for free, we listened to user feedback and created WPCode Pro with even more amazing features to improve your workflow. This includes smart conditional logic, saving code snippets to cloud library, code revisions, page-specific snippets, deeper integration with popular plugins like WooCommerce, Easy Digital Downloads, and so much more. Click here to purchase the best premium WordPress code snippet plugin now!

    \n
    \n

    Future Proof Code Snippet Management

    \n

    Most WordPress tutorial websites ask you to add code snippets to your theme’s functions.php file. This makes managing code snippets messy, and it also prevents you from updating your theme.

    \n

    If you ever update your theme or switch to another theme, then you will lose all custom code functions that you added in your functions.php file.

    \n

    WPCode solves this by providing you an easy way to insert header and footer scripts along with other code snippets directly from your WordPress dashboard. These code snippets actually run as if they were in your theme’s functions.php file.

    \n

    Our smart code snippet validation helps you prevent common code errors to ensure you never break your website when adding code snippets or header and footer scripts.

    \n

    New WPCode Cloud Library even allows you to store all your custom code snippets in a cloud library, so you can easily re-use code snippets across multiple website projects and save time. You can keep your code snippets completely private or share it with the community to give back while boosting your social profile.

    \n
    \n

    This plugin allows me to not only add things to my site whenever needed, but it takes me only seconds to accomplish it.
    \n David Weber – WordPress user

    \n
    \n

    Full Code Snippets Library and Code Generators

    \n

    Ever wanted a central place to find all the most popular WordPress code snippets that are tested and proven to work?

    \n

    When we started Insert Headers and Footers plugin, we did too. So we built a WordPress code snippets library right inside the WPCode plugin.

    \n

    You will find verified PHP code snippets for popular feature requests like disable REST API, disable XML-RPC, disable comments, allow SVG file uploads, disable Gutenberg, add Classic Editor, and more without installing separate plugins for each.

    \n
    \n

    I was very hesitant to get into any of the code for my website. Your plugin made it easy for me to do.
    \n Conbrio75 – WordPress user

    \n
    \n

    We also built the ability to save your code snippets to WPCode Cloud Library, so you can easily re-use it on your other websites, client projects, or even share it with the larger community.

    \n

    WPCode Cloud Library helps you better organize your code snippets in one central location, so you can save more time and speed up your workflow when managing websites. No more wasting time looking for custom notes or Github gists.

    \n

    Aside from our growing code snippets library, we also have WordPress code generators to help you quickly get ready-to-use custom code using the latest WordPress coding standards and API’s.

    \n

    Conditional Logic for Code Snippets + Code Insertion Priority

    \n

    Our goal with WPCode was to create a WordPress code snippets plugin that’s both EASY and POWERFUL.

    \n

    That’s why aside from our global header and footer scripts, we added advanced features like conditional logic for code snippets and made it easy.

    \n

    Instead of learning WordPress conditional logic queries, you can use our beginner-friendly conditional logic user interface to:

    \n
      \n
    • Load code snippets for logged in users only
    • \n
    • Load PHP code snippets for specific user roles
    • \n
    • Load PHP code snippets only on specific page URLs
    • \n
    • Insert header and footer pixel scripts on specific pages
    • \n
    • Show code snippets based on type of page
    • \n
    • Run code snippet only on certain post types
    • \n
    • Load header and footer code snippet based on referrer source
    • \n
    • and more…
    • \n
    \n

    We also added both automatic code insertion and manual code output using shortcodes.

    \n

    Our Auto Insert feature allows you to run the code snippet everywhere or choose from custom options like:

    \n
      \n
    • Run code snippet only on frontend
    • \n
    • Run code snippet only in WordPress admin area
    • \n
    • Add header and footer scripts sitewide
    • \n
    • Insert PHP code snippet before or after post content
    • \n
    • Insert code snippet before or after specific paragraph
    • \n
    • Insert code snippet on specific archive pages
    • \n
    • Insert code snippets after specific WooCommerce function (Pro Feature)
    • \n
    \n

    Aside from that, we also added a visual code snippet priority system, so you can choose the order for your custom functions to avoid code conflict.

    \n
    \n

    This is such a useful plugin! It makes it so much easier to include things on your website!
    \n Understoryliving – WordPress user

    \n
    \n

    And for even more flexibility and customization, we have added the ability for you to add page-specific code snippets right from the WordPress classic editor as well as the Gutenberg editor. You can even load code snippets based on device type such as mobile only code snippets, desktop only code snippets, etc.

    \n

    Import and Export Code Snippets

    \n

    Managing multiple websites or developing in a staging environment?

    \n

    We offer an easy way to import and export your custom code snippets, functions, and header and footer scripts to help you save time.

    \n

    You can also save your code snippets to WPCode Cloud (Pro feature), so you can easily re-use the same code snippets across multiple websites. This also allows you to better organize your code snippets instead of wasting time searching for random Github gists.

    \n
    \n

    Simple plugin I use in quite every site. Very useful to insert scripts and tags.
    \n tommasoperego – WordPress user

    \n
    \n

    Full WPCode Feature List

    \n

    The simple interface of WPCode plugin (formerly known as Insert Headers and Footers) gives you one place where you can insert header and footer scripts as well as custom code snippets rather than dealing with dozens of different plugins.

    \n

    Below is a full list of WPCode features:

    \n
      \n
    • Quick to set up
    • \n
    • Unlimited code snippets
    • \n
    • Simple to insert header and footer scripts globally
    • \n
    • Beginner Friendly Code Editor with Syntax Highlighter for PHP, JavaScript, and HTML
    • \n
    • Smart Code Validation to Prevent PHP Errors
    • \n
    • Insert header code and/or footer code using Conditional Logic
    • \n
    • Add Google Analytics code to header and footer
    • \n
    • Add custom CSS code to any theme
    • \n
    • Insert Facebook pixel code in header and footer
    • \n
    • Insert any code or script, including HTML and Javascript
    • \n
    • Insert PHP Code Snippets
    • \n
    • Ready-made Code Snippet Library
    • \n
    • Custom WordPress Code Snippet Generator
    • \n
    • Show or Hide PHP Code Snippets based on conditional logic
    • \n
    • Run PHP code and custom code snippets everywhere or in select areas using smart auto-insert rules.
    • \n
    • Manually insert PHP code snippets using shortcodes anywhere on website
    • \n
    • Add Rich Text Ads and Content Snippets automatically on posts & pages.
    • \n
    • Export / Import Code Snippets
    • \n
    • New Save snippets to Cloud Library – All your snippets stored in your private code snippet cloud.
    • \n
    • New Deep integrations with Gutenberg, WooCommerce, and more.
    • \n
    • Device specific code snippets (such as load code snippets on mobile only, desktop only, etc)
    • \n
    • and more features coming soon.
    • \n
    \n

    Credits

    \n

    Insert Headers and Footers plugin was first created by Syed Balkhi and the WPBeginner team in 2011.

    \n

    It was later rebranded to WPCode in 2022 by Syed Balkhi to add powerful code snippets features that users were requesting for.

    \n

    Branding Guideline

    \n

    WPCode™ is a trademark of WPCode LLC. When writing about the Insert Headers and Footers – Code Snippets plugin by WPCode, please make sure to uppercase the initial 3 letters.

    \n

    WPCode (correct)
    \nWP Code (incorrect)
    \nwpcode (incorrect)
    \nwp code snippets (incorrect)

    \n", "screenshots": "
    1. \"WordPress

      WordPress Code Snippets Management Screen

    2. \"Ready-Made

      Ready-Made Code Snippets Library

    3. \"Edit

      Edit PHP Snippets with Code Syntax Highlighter

    4. \"Show

      Show / Hide Code Snippets with Smart Conditional Logic

    5. \"Custom

      Custom WordPress Code Generators

    6. \"Example

      Example of Custom Post Type Generator

    7. \"Insert

      Insert Header and Footer Scripts Globally

    8. \"Import

      Import and Export Code Snippets

    9. \"Private

      Private Snippets Library In Plugin

    10. \"Page-Specific

      Page-Specific Scripts Metabox

    ", "installation": "
      \n
    1. Install WPCode – Insert Headers, Footers, and Code Snippets plugin by uploading the insert-headers-and-footers directory to the /wp-content/plugins/ directory. (See instructions on how to install a WordPress plugin.)
    2. \n
    3. Activate WPCode – Insert Headers, Footers, and Code Snippets plugin through the Plugins menu in WordPress.
    4. \n
    5. Insert code in your header and footer or add custom code snippets by going to the Code Snippets menu.
    6. \n
    \n\n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.zip", "1.3.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.3.3.zip", "1.4.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.6.zip", "1.5.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.5.0.zip", "1.6.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.6.2.zip", "2.0.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.3.0.zip", "trunk": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.zip", "2.0.10": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.13.zip", "2.1.10": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.10.zip", "2.1.11": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.11.zip", "2.1.12": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.12.zip", "2.1.13": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.13.zip", "2.1.14": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.14.zip", "2.0.4.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.1.zip", "2.0.4.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.2.zip", "2.0.4.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.3.zip", "2.0.4.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.4.zip", "2.0.8.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.8.1.zip", "2.1.3.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.3.1.zip", "2.1.4.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.4.1.zip", "2.2.3.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.3.1.zip", "2.2.4.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.4.1.zip", "2.0.13.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.13.1.zip"}, "downloaded": 74919469, "description": "

    Insert Headers & Footers + Full WordPress Code Snippets Plugin

    \n

    WPCode (formerly known as Insert Headers and Footers by WPBeginner) is the most popular code snippets plugin for WordPress used by over 2 million websites.

    \n

    We make it easy for you to add code snippets in WordPress without having to edit your theme’s functions.php file.

    \n

    Our simple insert headers and footers interface allows you to insert code like Google Analytics, custom CSS, Facebook Pixel, and more to your WordPress site’s header and footer as well other areas of your website. No need to edit your theme files!

    \n

    Aside from Header and Footer scripts, you can also use WPCode to insert custom PHP code snippets, JavaScript code snippets, CSS code snippets, HTML code snippets, and text snippets with full conditional logic support.

    \n

    We took the pain out of adding custom code snippets in WordPress and made it easy.

    \n
    \n

    I have been using Insert Headers and Footers and it is such a useful tool. Super helpful and the very best of its kind. Highly recommend
    \n The_Gibble – WordPress user

    \n
    \n

    Quick Overview of WPCode from WPBeginner

    \n

    \n
    \n

    Introducing New WPCode Pro
    \n While WPCode Lite offers tons of powerful features for free, we listened to user feedback and created WPCode Pro with even more amazing features to improve your workflow. This includes smart conditional logic, saving code snippets to cloud library, code revisions, page-specific snippets, deeper integration with popular plugins like WooCommerce, Easy Digital Downloads, and so much more. Click here to purchase the best premium WordPress code snippet plugin now!

    \n
    \n

    Future Proof Code Snippet Management

    \n

    Most WordPress tutorial websites ask you to add code snippets to your theme’s functions.php file. This makes managing code snippets messy, and it also prevents you from updating your theme.

    \n

    If you ever update your theme or switch to another theme, then you will lose all custom code functions that you added in your functions.php file.

    \n

    WPCode solves this by providing you an easy way to insert header and footer scripts along with other code snippets directly from your WordPress dashboard. These code snippets actually run as if they were in your theme’s functions.php file.

    \n

    Our smart code snippet validation helps you prevent common code errors to ensure you never break your website when adding code snippets or header and footer scripts.

    \n

    New WPCode Cloud Library even allows you to store all your custom code snippets in a cloud library, so you can easily re-use code snippets across multiple website projects and save time. You can keep your code snippets completely private or share it with the community to give back while boosting your social profile.

    \n
    \n

    This plugin allows me to not only add things to my site whenever needed, but it takes me only seconds to accomplish it.
    \n David Weber – WordPress user

    \n
    \n

    Full Code Snippets Library and Code Generators

    \n

    Ever wanted a central place to find all the most popular WordPress code snippets that are tested and proven to work?

    \n

    When we started Insert Headers and Footers plugin, we did too. So we built a WordPress code snippets library right inside the WPCode plugin.

    \n

    You will find verified PHP code snippets for popular feature requests like disable REST API, disable XML-RPC, disable comments, allow SVG file uploads, disable Gutenberg, add Classic Editor, and more without installing separate plugins for each.

    \n
    \n

    I was very hesitant to get into any of the code for my website. Your plugin made it easy for me to do.
    \n Conbrio75 – WordPress user

    \n
    \n

    We also built the ability to save your code snippets to WPCode Cloud Library, so you can easily re-use it on your other websites, client projects, or even share it with the larger community.

    \n

    WPCode Cloud Library helps you better organize your code snippets in one central location, so you can save more time and speed up your workflow when managing websites. No more wasting time looking for custom notes or Github gists.

    \n

    Aside from our growing code snippets library, we also have WordPress code generators to help you quickly get ready-to-use custom code using the latest WordPress coding standards and API’s.

    \n

    Conditional Logic for Code Snippets + Code Insertion Priority

    \n

    Our goal with WPCode was to create a WordPress code snippets plugin that’s both EASY and POWERFUL.

    \n

    That’s why aside from our global header and footer scripts, we added advanced features like conditional logic for code snippets and made it easy.

    \n

    Instead of learning WordPress conditional logic queries, you can use our beginner-friendly conditional logic user interface to:

    \n
      \n
    • Load code snippets for logged in users only
    • \n
    • Load PHP code snippets for specific user roles
    • \n
    • Load PHP code snippets only on specific page URLs
    • \n
    • Insert header and footer pixel scripts on specific pages
    • \n
    • Show code snippets based on type of page
    • \n
    • Run code snippet only on certain post types
    • \n
    • Load header and footer code snippet based on referrer source
    • \n
    • and more…
    • \n
    \n

    We also added both automatic code insertion and manual code output using shortcodes.

    \n

    Our Auto Insert feature allows you to run the code snippet everywhere or choose from custom options like:

    \n
      \n
    • Run code snippet only on frontend
    • \n
    • Run code snippet only in WordPress admin area
    • \n
    • Add header and footer scripts sitewide
    • \n
    • Insert PHP code snippet before or after post content
    • \n
    • Insert code snippet before or after specific paragraph
    • \n
    • Insert code snippet on specific archive pages
    • \n
    • Insert code snippets after specific WooCommerce function (Pro Feature)
    • \n
    \n

    Aside from that, we also added a visual code snippet priority system, so you can choose the order for your custom functions to avoid code conflict.

    \n
    \n

    This is such a useful plugin! It makes it so much easier to include things on your website!
    \n Understoryliving – WordPress user

    \n
    \n

    And for even more flexibility and customization, we have added the ability for you to add page-specific code snippets right from the WordPress classic editor as well as the Gutenberg editor. You can even load code snippets based on device type such as mobile only code snippets, desktop only code snippets, etc.

    \n

    Import and Export Code Snippets

    \n

    Managing multiple websites or developing in a staging environment?

    \n

    We offer an easy way to import and export your custom code snippets, functions, and header and footer scripts to help you save time.

    \n

    You can also save your code snippets to WPCode Cloud (Pro feature), so you can easily re-use the same code snippets across multiple websites. This also allows you to better organize your code snippets instead of wasting time searching for random Github gists.

    \n
    \n

    Simple plugin I use in quite every site. Very useful to insert scripts and tags.
    \n tommasoperego – WordPress user

    \n
    \n

    Full WPCode Feature List

    \n

    The simple interface of WPCode plugin (formerly known as Insert Headers and Footers) gives you one place where you can insert header and footer scripts as well as custom code snippets rather than dealing with dozens of different plugins.

    \n

    Below is a full list of WPCode features:

    \n
      \n
    • Quick to set up
    • \n
    • Unlimited code snippets
    • \n
    • Simple to insert header and footer scripts globally
    • \n
    • Beginner Friendly Code Editor with Syntax Highlighter for PHP, JavaScript, and HTML
    • \n
    • Smart Code Validation to Prevent PHP Errors
    • \n
    • Insert header code and/or footer code using Conditional Logic
    • \n
    • Add Google Analytics code to header and footer
    • \n
    • Add custom CSS code to any theme
    • \n
    • Insert Facebook pixel code in header and footer
    • \n
    • Insert any code or script, including HTML and Javascript
    • \n
    • Insert PHP Code Snippets
    • \n
    • Ready-made Code Snippet Library
    • \n
    • Custom WordPress Code Snippet Generator
    • \n
    • Show or Hide PHP Code Snippets based on conditional logic
    • \n
    • Run PHP code and custom code snippets everywhere or in select areas using smart auto-insert rules.
    • \n
    • Manually insert PHP code snippets using shortcodes anywhere on website
    • \n
    • Add Rich Text Ads and Content Snippets automatically on posts & pages.
    • \n
    • Export / Import Code Snippets
    • \n
    • New Save snippets to Cloud Library – All your snippets stored in your private code snippet cloud.
    • \n
    • New Deep integrations with Gutenberg, WooCommerce, and more.
    • \n
    • Device specific code snippets (such as load code snippets on mobile only, desktop only, etc)
    • \n
    • and more features coming soon.
    • \n
    \n

    Credits

    \n

    Insert Headers and Footers plugin was first created by Syed Balkhi and the WPBeginner team in 2011.

    \n

    It was later rebranded to WPCode in 2022 by Syed Balkhi to add powerful code snippets features that users were requesting for.

    \n

    Branding Guideline

    \n

    WPCode™ is a trademark of WPCode LLC. When writing about the Insert Headers and Footers – Code Snippets plugin by WPCode, please make sure to uppercase the initial 3 letters.

    \n

    WPCode (correct)
    \nWP Code (incorrect)
    \nwpcode (incorrect)
    \nwp code snippets (incorrect)

    \n", "donate_link": "", "num_ratings": 1686, "screenshots": {"1": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-1.png?rev=2758516", "caption": "WordPress Code Snippets Management Screen"}, "2": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-2.png?rev=2758516", "caption": "Ready-Made Code Snippets Library"}, "3": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-3.png?rev=2821393", "caption": "Edit PHP Snippets with Code Syntax Highlighter"}, "4": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-4.png?rev=2758516", "caption": "Show / Hide Code Snippets with Smart Conditional Logic"}, "5": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-5.png?rev=2758516", "caption": "Custom WordPress Code Generators"}, "6": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-6.png?rev=2758516", "caption": "Example of Custom Post Type Generator"}, "7": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-7.png?rev=2758516", "caption": "Insert Header and Footer Scripts Globally"}, "8": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-8.png?rev=2758516", "caption": "Import and Export Code Snippets"}, "9": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-9.png?rev=2821393", "caption": "Private Snippets Library In Plugin"}, "10": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-10.png?rev=2821393", "caption": "Page-Specific Scripts Metabox"}}, "support_url": "https://wordpress.org/support/plugin/insert-headers-and-footers/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "gripgrip": {"avatar": "https://secure.gravatar.com/avatar/ed53a5eccff446e669341b94f8e1bfbd59f90d0f68b0d96f8487d65476b3e1d3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/gripgrip/", "display_name": "Mircea Sandu"}, "wpbeginner": {"avatar": "https://secure.gravatar.com/avatar/a78776f81d142b747c7fb964cf8f135b17110654250e9bf353869474bca0c00c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpbeginner/", "display_name": "WPBeginner"}, "wpcodeteam": {"avatar": "https://secure.gravatar.com/avatar/2c52decea60a774b68ec646a31481783ab40de767200cad26ce9609ec8d5e871?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpcodeteam/", "display_name": "WPCode"}}, "last_updated": "2025-08-07 12:31pm GMT", "preview_link": "", "requires_php": "5.5", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.3.0.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f647-7349-a357-6ffb27f1f164", "name": "WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager", "slug": "insert-headers-and-footers", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1754569860, "version": "2.3.0"}, "support_threads": 10, "requires_plugins": [], "short_description": "Easily add code snippets in WordPress. Insert header & footer scripts, add PHP code snippets with conditional logic, insert ads pixel code, and more.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 5}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c46-704a-86b1-b5f5fedb599e', 'did:web:api.aspiredev.org:packages:wp-plugin:instagram-feed', 'instagram-feed', 'Smash Balloon Social Photo Feed – Easy Social Feeds Plugin', '

    As the most powerful and easiest to use Instagram plugin for WordPress, Smash Balloon Social Photo Feed helps you create, customize and embed Instagram feeds on your website in just a few clicks! Absolutely no coding needed.

    -

    -

    Designed for both WordPress beginners and advanced users, you can use Social Photo Feed to seamlessly integrate your Instagram widgets and keep your site effortlessly updated.

    -

    Explore the Pro Version | See Pro in Action

    -

    Over 1 million users worldwide trust Social Photo Feed to easily showcase Instagram content on their websites.

    -

    Embed Your Instagram Feed in 3 Steps

    -

    Smash Balloon Instagram Feed makes it a breeze to set up your feeds on your site:

    -
      -
    1. Create your feed and choose an Instagram widget source
    2. -
    3. Customize your feed in a few clicks
    4. -
    5. Add your Instagram feed to your site
    6. -
    -

    Check Out the Pro Version | Try the Pro Demo

    -

    Free Features

    -
      -
    • NEW! Supports local WebP image format for faster loading times
    • -
    • oEmbed Support Automatically powers your Instagram oEmbeds
    • -
    • Setting Up is Simple: Get started in seconds, no hassle, no fuss
    • -
    • Showcase Multiple Accounts: Display photos from various Instagram accounts in one unified feed or separate them into individual feeds
    • -
    • Multiple Feeds Anywhere: Add as many feeds as you want on the same page or spread them across different pages on your site
    • -
    • Responsive & Mobile-Ready: Your feeds will look stunning on any screen size, on any device and in any container width
    • -
    • Fully Customizable Feeds: Adjust the width, height, number of photos, number of columns, image size, background color, image spacing and more
    • -
    • Visual Customizer: Customize your feed layout, color scheme, header style, post settings, lightbox, and much more – in just a few clicks
    • -
    • Photo Display Options: Choose to display thumbnail, medium, or full-size photos directly from your feed
    • -
    • Beautiful Feed Header: Add a striking header to top off your feed beautifully
    • -
    • “Follow on Instagram” Button: Increase followers by adding a “follow on Instagram” button at the bottom of your feed
    • -
    • Flexible Photo Order: Display your Instagram photos in chronological order or mix it up with a random arrangement
    • -
    • Infinite Scroll: Keep your visitors engaged by loading more of your Instagram photos with a handy “Load More” button
    • -
    • Built-in Block: Easily add your feed to posts and pages with our convenient block for the block editor
    • -
    • Instagram Widget: Embed on your site’s widget-ready areas such as sidebar and footer in seconds
    • -
    • GDPR Compliant: Automatically integrates with many of the popular GDPR cookie consent plugins and includes a 1-click easy GDPR setting
    • -
    • Designed for All Users: Perfect for beginners and advanced users alike
    • -
    • Advanced Customization: Add your own custom CSS and JavaScript for advanced customizations
    • -
    • Page Builder Compatible: Fully compatible with Elementor, Divi, Beaver Builder and other popular page builders
    • -
    -

    Get More with Instagram Feed Pro

    -

    Want to truly maximize your Instagram content and make it work harder for your brand?

    -

    While Smash Balloon’s Social Photo Feed offers a free way to get started, our Pro version offers advanced features to help you get complete control over the way you show your Instagram photos and videos to your website visitors.

    -

    The Pro version, known as Instagram Feed Pro, allows you to:

    -
      -
    • -

      Display hashtag feeds – Curate dynamic content around specific Instagram hashtags
      -Check Out Instagram Hashtag Feed Demo

      -
    • -
    • -

      Show stunning lightboxes – View photos, Instagram reels and videos in a popup lightbox directly on your site

      -
    • -
    • -

      Add interactive elements – Display captions and show the number of likes and comments for each post

      -
    • -
    • -

      Embed Instagram carousel – Showcase eye-catching carousels from your posts
      -See Instagram Carousel Feed Demo

      -
    • -
    • -

      Choose from multiple layout options – Use “Masonry” or “Highlight” layouts
      -View “Highlight” Layout in Action

      -
    • -
    • -

      Use advanced feed moderation – Hide or show specific posts in just a few clicks

      -
    • -
    • -

      Filter Instagram posts – Display Instagram content based on hashtags, keywords or specific user posts

      -
    • -
    • -

      Create shoppable feeds – Add customized links to each post, like link in bio, so you can direct your site visitors to the page you’d like

      -
    • -
    • -

      Use professionally-designed themes – No need to start from scratch! Design beautiful feeds in minutes with pre-made feed themes to instantly create beautiful and unique feeds

      -
    • -
    -

    Plus, enjoy these Pro benefits:

    -
      -
    • Priority Support: Get quick and dedicated help from our support team
    • -
    • Regular Updates: Benefit from continuous plugin improvements and new features
    • -
    -

    Check Out the Pro Version | Try the Pro Demo

    -

    Why Over 1 Million Users Love Smash Balloon

    -

    Trusted by over 1 million websites, Smash Balloon is the leading solution for seamlessly integrating Instagram feeds onto your site.

    -

    Our 4.9/5 star average rating from 4,000+ glowing reviews speaks for itself.

    -

    What Our Users Are Saying

    -
    -

    “Awesome plugin and support – Awesome plugin that just works! Contacted support this week and they’ve quickly given a custom solution for a specific query I had! Very happy customer!”
    - – @tomteaweb

    -

    “The best Instagram feed plugin – Whenever I need to display the Instagram feed in a WordPress site, I choose this plugin. It is not only easy to set up, but even in the free version you have enough features to have a nice feed. Do not spend more time looking for another Instagram feed plugin: This is the best!”
    - – @yordansoares

    -

    “Simple and concise – Excellent plugin. Simple and non-bloated. I had a couple small issues with the plugin when I first started using it, but a quick comment on the support forums got a new version pushed out the next day with the fix. Awesome support!”
    - – @joshjones

    -

    “Great plugin, greater support! – I’ve definitely noticed an increase in followers on Instagram since I added this plugin to my sidebar. Thanks for the help in making some adjustments…looks and works great!”
    - – @bnotp

    -
    -

    Fast, Professional and Helpful Support

    -

    At Smash Balloon, we’re dedicated to providing the most customizable, robust, and well-supported Instagram plugin available.

    -

    Have a question, need help with a feature, or want to request a new feature?

    -

    Our dedicated support team is just a quick message away, ready to provide top-notch assistance for both free and premium versions:

    - -

    You can instantly unlock priority support when you upgrade to Instagram Feed Pro now.

    -

    7 Reasons Why You Need Smash Balloon Social Photo Feed

    -
      -
    1. Boost Social Engagement – Increase engagement between you and your Instagram followers
    2. -
    3. Save Time – Automatically display your Instagram photos on your website
    4. -
    5. Display Your Content Your Way – Customize your feeds to blend seamlessly with your site
    6. -
    7. Keep Your Site Looking Fresh – Automatically push new Instagram content to your site
    8. -
    9. Super Simple Setup – Get started in 30 seconds with no Developer account needed
    10. -
    11. Powers Instagram oEmbeds – Maintain working Instagram embeds across your site
    12. -
    13. Professional Feed Themes – Use ready-made themes for quick, beautiful displays
    14. -
    -

    What Can It Do?

    -
      -
    • Display Instagram photos from any account you own
    • -
    • Completely responsive and mobile ready
    • -
    • Display multiple feeds on the same page
    • -
    • Display posts from multiple Instagram User IDs
    • -
    • Built-in customization options
    • -
    • Infinite scroll with ‘Load More’ button
    • -
    • Plus more features added regularly!
    • -
    -

    Completely Customizable Feeds

    -
      -
    • Set number of photos to display
    • -
    • Choose number of columns and photo sizes
    • -
    • Show/hide feed elements (header, buttons)
    • -
    • Control width, height and background color
    • -
    • Set spacing between photos
    • -
    • Display photos in chronological or random order
    • -
    • Customize button text and colors
    • -
    • Add custom CSS or JavaScript
    • -
    • Style multiple feeds differently
    • -
    • Plus more options added regularly!
    • -
    -

    Check Out the Pro Version | Try the Pro Demo

    -

    What’s Next

    -

    If you like our WordPress Instagram plugin, then consider checking out our other projects:

    -

    OptinMonster – Get more email subscribers with the most popular conversion optimization plugin for WordPress.
    -WPForms – #1 drag & drop online form builder for WordPress (trusted by 5 million sites).
    -AIOSEO – The original WordPress SEO plugin to help you rank higher in search results (trusted by over 3 million sites).
    -MonsterInsights – See the stats that matter and grow your business with confidence. Best Google Analytics plugin for WordPress.
    -SeedProd – Create beautiful landing pages with our powerful drag & drop landing page builder.
    -WP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    -WPCode – must have WordPress code snippet management plugin to help you future-proof website customization (trusted by 1.5 million sites).
    -Duplicator – popular WordPress backup and migration plugin used by over 1 million websites.
    -WP Simple Pay – #1 Stripe payments plugin for WordPress. Start accepting one-time or recurring payments without a shopping cart.
    -PushEngage – Connect with visitors after they leave your website with the leading web push notification plugin.
    -RafflePress – Best WordPress giveaway and contest plugin to grow traffic and social followers.
    -TrustPulse – Add real-time social proof notifications to boost your store conversions by up to 15%.
    -SearchWP – The most advanced custom WordPress search plugin to improve WordPress search quality.
    -AffiliateWP – #1 affiliate management plugin for WordPress. Add a referral program to your online store.
    -Easy Digital Downloads – The best WordPress eCommerce plugin to sell digital products (eBooks, software, music, and more).
    -WPCharitable – Top-rated WordPress donation and fundraising plugin for WordPress.

    -

    Visit WPBeginner to learn from our WordPress Tutorials and about the best WordPress plugins.

    -

    Privacy Policy

    -

    =Data Collection=

    -

    Instagram Feed does not collect any personal data from your Meta accounts (Instagram, Facebook). All data retrieved from the Meta API is used solely for the purpose of displaying your feed on your WordPress site.

    -

    =External Connections=

    -

    This plugin connects to three external sites:

    -
      -
    • -

      Smashballoon.com: Used for connecting and authenticating your sources. Occasionally, it sends dynamic notices to users. These notices can include information about major API changes, critical updates, and marketing messages.

      -
    • -
    • -

      Instagram.com and Facebook.com: Used to fetch posts so your visitors can view them directly on your site without needing to leave.

      -
    • -
    -

    =Data Usage=

    -

    All data retrieved from the Meta API is used solely for displaying your Instagram feed on your WordPress site. No personal data is collected, stored, or shared beyond this purpose.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Smash Balloon Social Photo Feed – Easy Social Feeds Plugin", "slug": "instagram-feed", "tags": {"instagram": "Instagram", "instagram-feed": "instagram feed", "instagram-photos": "instagram photos", "instagram-widget": "Instagram widget", "instagram-gallery": "instagram gallery"}, "added": "2014-07-23", "icons": {"1x": "https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=2700807", "2x": "https://ps.w.org/instagram-feed/assets/icon-256x256.png?rev=2700807"}, "author": "Syed Balkhi", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=2679382", "high": "https://ps.w.org/instagram-feed/assets/banner-1544x500.png?rev=2679382"}, "ratings": {"1": 56, "2": 26, "3": 22, "4": 89, "5": 4109}, "version": "6.9.1", "homepage": "https://smashballoon.com/instagram-feed", "requires": "4.1", "sections": {"faq": "\n
    \nCan I display multiple Instagram feeds on my site or on the same page?\n\n

    \n

    Yep. You can display multiple Instagram feeds by using our built-in feed creation tool, for example: [instagram-feed feed=2].

    \n

    \n
    \nCan I display photos from more than one Instagram account in one single feed?\n\n

    \n

    Yep. You can connect multiple accounts and include them as sources when creating a feed.

    \n

    \n
    \nDoes the plugin work with Instagram oEmbeds?\n\n

    \n

    Yes. In version 2.5, support was added to allow the plugin to power your Instagram oEmbeds as official support for these is no longer available in WordPress core. Just connect your account on the oEmbeds settings page inside the plugin and we’ll do the rest. No developer app or account required.

    \n

    \n
    \nCan I display a feed with in a widget or with a block?\n\n

    \n

    Yes. Use the Instagram widget or Instagram block to display your feed in a sidebar or other widget area.

    \n

    \n
    \nHow do I connect my Instagram account?\n\n

    \n

    We’ve made it super easy. Just follow the steps outlined when onboarding and you will have a connected account with simple clicks.

    \n

    \n
    \nMy feed isn’t displaying. Why not!?\n\n

    \n

    There are a few common reasons for this:

    \n
      \n
    • Your Access Token may not be valid. Try clicking on the blue Instagram login button on the plugin’s Settings page again and copy and paste the Instagram token it gives you into the plugin’s Access Token field.
    • \n
    • The plugin’s JavaScript file isn’t included in your page. This is most likely because your WordPress theme is missing the WordPress wp_footer function which is required for plugins to be able to add their JavaScript files to your page. You can fix this by opening your theme’s footer.php file and adding the following directly before the closing tag between two php tags: wp_footer();
    • \n
    • Your website may contain a JavaScript error which is preventing JavaScript from running. The plugin uses JavaScript to load the Instagram photos into your page and so needs JavaScript to be running in order to work. You would need to remove any existing JavaScript errors on your website for the plugin to be able to load in your feed.
    • \n
    \n

    If you’re still having an issue displaying your feed then please open a ticket in the Support forum with a link to the page where you’re trying to display the Instagram feed and, if possible, a link to your Instagram account.

    \n

    \n
    \nAre there any security issues with using an Access Token on my site?\n\n

    \n

    Nope. The Access Token used in the plugin is a “read only” token, which means that it could never be used maliciously to manipulate your account.

    \n

    \n
    \nCan I view the full-size photos or play Instagram videos directly on my website?\n\n

    \n

    This is a feature of the Pro version of the plugin, which allows you to view the photos in a pop-up lightbox, support videos, display captions, display photos by hashtag + more!

    \n

    \n
    \nHow do I embed my feed directly into a WordPress page template?\n\n

    \n

    You can embed your feed directly into a template file by using the WordPress do_shortcode function: <?php echo do_shortcode(''[instagram-feed]''); ?>.

    \n

    \n
    \nMy Feed Stopped Working – All I see is a Loading Symbol\n\n

    \n

    If your Instagram photos aren’t loading and all your see is a loading symbol then there are a few common reasons:

    \n

    1) There’s an issue with the Instagram Access Token that you are using

    \n

    You can obtain a new access token on the Instagram Feed Settings page by using the “connect” button to reconnect the account.

    \n

    Occasionally the connect button inside the plugin does not successfully update the access token. You can try this link as well.

    \n

    2) The plugin’s JavaScript file isn’t being included in your page

    \n

    This is most likely because your WordPress theme is missing the WordPress wp_footer function which is required for plugins to be able to add their JavaScript files to your page. You can fix this by opening your theme’s footer.php file and adding the following directly before the closing tag:

    \n

    3) There’s a JavaScript error on your site which is preventing the plugin’s JavaScript file from running

    \n

    You can find out whether this is the case by right clicking on your page, selecting ‘Inspect Element’, and then clicking on the ‘Console’ tab, or by selecting the ‘JavaScript Console’ option from your browser’s Developer Tools.

    \n

    If a JavaScript error is occurring on your site then you’ll see it listed in red along with the JavaScript file which is causing it.

    \n

    4) The feed you are trying to display has no Instagram posts

    \n

    If you are trying to display an Instagram feed that has no posts made to it, a loading symbol may be all that shows for the Instagram feed or nothing at all. Once you add an Instagram post the Instagram feed should display normally

    \n

    5) The shortcode you are using is incorrect

    \n

    You may have an error in the Instagram Feed shortcode you are using or are missing a necessary argument.

    \n

    \n
    \nWhat are the available options that I can use to customize my feed?\n\n

    \n

    There are plenty of options to customize your feed! See the list below:
    \n* General Options
    \n* width of feed – The width of your feed.
    \n* height of feed – The height of your feed.
    \n* background color – The background color of the feed. Any hex color code.
    \n*
    \n* Photo Options
    \n* sorting – Sort the Instagram posts by Newest to Oldest (none) or Random (random)
    \n* number of posts – The number of posts to display initially.
    \n*
    \n* desktop columns – The number of columns in your feed when displayed on desktop devices
    \n* tablet columns – The number of columns in your feed when displayed on tablet devices
    \n* mobile columns – The number of columns in your feed when displayed on mobile or phone devices
    \n*
    \n* image spacing – The spacing around your photos
    \n*
    \n* Header Options
    \n* show header – Whether to show the feed Header.
    \n* show bio – Whether to show the account’s bio in the feed Header.
    \n* custom avatar – URL of a custom Avatar image for the header (use whatever image you want for your account).
    \n*
    \n* header color – The color of the feed Header text.
    \n*
    \n* ‘Load More’ Button Options
    \n* show load more button – Whether to show the ‘Load More’ button.
    \n* button color – The background color of the button. Any hex color code
    \n* button text color – The text color of the button.
    \n* button text – The text used for the button – Example: “Load More Photos”
    \n*
    \n* ‘Follow on Instagram’ Button Options
    \n* show the follow button ** – Whether to show the ‘Follow on Instagram’ button.
    \n* **follow color
    – The background color of the ‘Follow on Instagram’ button.
    \n* follow text color – The text color of the ‘Follow on Instagram’ button.
    \n* follow text – The text used for the ‘Follow on Instagram’ button – Example: “Follow me”

    \n

    For more options, check out the Pro version.

    \n

    For more FAQs related to the Instagram Feed plugin please visit the FAQ section on our website.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I Have to Give Up

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tdrock (TDRock) on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve used Smash Balloon for the past several years and in fact I had a paid license at one point. It''s not that it doesn''t work but it''s definitely buggy. Not only does my instagram feed periodically deactivate, sometimes seemingly for no reason whatsoever, but trying to reconnect is always a multi-step drama, endless sitting waiting for it to save, it doesn''t save, I have to do it over agin, over and over it''s just drama and I''m over it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Adding channel url won't work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Krishnakumar KA (krishnakumarka) on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After few months I am using this plugin. If I remember I was able to just add the channel url and show the feeds. Now you need to log in to instagram through their website and add the url.

    \n\n\n\n

    Second most important thing, I went through their setup and all of a sudden, another 4-5 plugins were added automatically that all the plugins are separate. Either you have to keep all these plugins (YT, FB, X, TT and something called WP Content?) in one plugin and allow the user to decide whether to activate or not. Adding many plugins is not a good idea.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Elise (otgelise) on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like the plugin, but setting it up is quite annoying. It keeps suggesting to install plugins that I don''t need and afterwards will delete.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Abuses the onboarding to install 6 extra plugins

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jos Klever (josklever) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin uses the onboarding wizard to install 6 extra plugins from the same author that users don''t need. I don''t mind the promotion (within decent limits), but the plugins should not be checked by default. Users should be informed about the recommended plugins and choose to check the box if they want that plugin. Right now it''s just meant to fake a high installation count.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Absolutely wonderful experience!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stochian on September 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Un plugin foarte util. Recomand

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incredible

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alxk2780 on September 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Surprising incredible tools

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Smash Balloon turned out to be big BUMMER!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy missydi2007 on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello SmashBalloon Team,

    \n\n\n\n

    I’m writing to share my deep disappointment with the recent experience I’ve had with your support team and licensing process.

    \n\n\n\n

    I reached out several times for assistance and was redirected to the wrong link to upgrade my license. The website itself is confusing—package names are not clearly distinguished, and I pointed out that the so-called “Basic Pro” was actually just “Basic,” not Pro at all. I purchased under the impression I’d be receiving Pro features (like hashtag filters), only to discover I wasn’t.

    \n\n\n\n

    When I attempted to upgrade, I was asked to pay the full price again instead of just the difference. I reached out again for help, emphasizing that I want to use the tool, but instead of receiving guidance, my entire subscription was abruptly cancelled—without any communication. That’s not just frustrating, it’s alarming.

    \n\n\n\n

    As someone with dyslexia, I was simply pointing out the pricing/package distinction in good faith and asking for help. Instead, I feel dismissed and penalized. This is both discouraging and unnecessarily stressful, especially since I still want to use the tool.

    \n\n\n\n

    Please look into reinstating my subscription and providing a proper path to the Pro version at the appropriate upgrade cost. I hope we can resolve this quickly—because I do value your product, but this experience has left me feeling unheard and disrespected.

    \n\n\n\n

    Sincerely,

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Variety of Display options

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pharrisonw on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to set up, only had to enter the Instagram login to create the connection. Free version has a good variety of display options, defaults work for most situations.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy andahwin on August 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin is exactly what I need. Easy to navigate, easy to use. Highly recommend.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I'm really happy with this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy evanbang on August 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was looking for something minimal that would just show my instagram feed on my blog. This is the best and easiest one I could find to make it happen. Thank you.

    \n
    \n
    \n", "changelog": "

    6.9.1

    \n
      \n
    • Fix – Additional code hardening.
    • \n
    \n

    6.9.0

    \n
      \n
    • Important – Added accessibility improvements related to the front-end feed display. This may affect custom code applied to the feed. Please check and reach out to support if you need help.
    • \n
    • Important – To comply with Meta’s security standards, we have raised the minimum PHP version to 7.4.
    • \n
    • Fix – Instagram feed plugin no longer triggers the _load_textdomain_just_in_time warning
    • \n
    • Fix – Additional code hardening.
    • \n
    \n

    6.8.0

    \n
      \n
    • New – Added a new setting to support Instagram’s new 3:4 aspect ratio. Edit your feed, select the “Layout” tab and choose among a 1:1 square, 4:5 portrait, or 3:4 Instagram official aspect ratio.
    • \n
    • New – Added support for a new GDPR consent plugin WPConsent.
    • \n
    \n

    6.7.1

    \n
      \n
    • Fix – Prevented PHP error “Fatal error: Uncaught TypeError: unserialize()”
    • \n
    • Fix – Removed advertisements for ClickSocial that appear in the block editor.
    • \n
    \n

    6.7.0

    \n
      \n
    • New – Added information regarding our newest product ClickSocial! Schedule your social media posts through the WordPress dashboard.
    • \n
    • Fix – Added a notice and more details if a database update fails. Most commonly this is due to the MySQL user not having permissions to alter tables.
    • \n
    • Fix – Improved our compatibility with the latest versions of Divi and Elementor.
    • \n
    • Fix – Resolved a PHP warning related to _load_textdomain_just_in_time.
    • \n
    • Fix – Additional plugin hardening.
    • \n
    \n

    6.6.1

    \n
      \n
    • Tweak: Added support for our new Feed Analytics product. Get insights as to how your feeds are being used by site visitors.
    • \n
    \n

    6.6.0

    \n
      \n
    • Important: For users with a personal account connection, you will need to reconnect your account before December 2024 after updating to version 6.6 or higher. Learn more
    • \n
    • New: Added support for GDPR Cookie Compliance by Moove Agency and Real Cookie Banner GDPR plugins.
    • \n
    • Fix: Existing data is no longer deleted after removing the free version if the Pro version is also installed.
    • \n
    • Fix: Fixed a rare issue causing 404 errors when editing a feed.
    • \n
    • Fix: Improved compatibility with the Thrive Architect plugin.
    • \n
    \n

    6.5.1

    \n
      \n
    • Fix: Plugin hardening.
    • \n
    \n

    6.5.0

    \n
      \n
    • New: Added webp image support for the local image optimization feature. This will improve the performance of your feed by serving images in the webp format when possible.
    • \n
    • New: Added Blocks to easily use our other social media feeds.
    • \n
    • Fix: Fixed an issue with images not loading in the post editor when using the Instagram Feed block.
    • \n
    \n

    6.4.3

    \n
      \n
    • New: Added support for new version of CookieYes GDPR plugin.
    • \n
    • New: Updated the URL for oEmbed auth flow.
    • \n
    • Fix: Resolved conflict with TikTok Feeds and removed assets when callout is not shown.
    • \n
    • Fix: Fixed issues with admin notices not dismissing properly.
    • \n
    \n

    6.4.2

    \n
      \n
    • Fix: PHP fatal error caused by dependencies not being prefixed with the correct namespace.
    • \n
    \n

    6.4.1

    \n
      \n
    • Fix: PHP fatal error that could occur in some circumstances when using the plugin.
    • \n
    • Fix: JS error that occurred on the frontend.
    • \n
    \n

    6.4

    \n
      \n
    • New: Added a checklist and callout feature to help users get started with all Smash Balloon products installed
    • \n
    • Tweak: Added some improvements to our onboarding wizard to make it clear what certain steps do.
    • \n
    • Tweak: Made improvements to our oEmbed connection process.
    • \n
    • Fix: Fixed AJAX themes not loading jQuery dependency causing the feed to break in some circumstances.
    • \n
    • Translations: Updated our translation .pot file.
    • \n
    \n

    6.3.1

    \n
      \n
    • Fix: Fixed some admin notices not dismissing as expected.
    • \n
    • Fix: Fixed an issue that would cause a fatal error when trying to delete the plugin.
    • \n
    \n

    6.3

    \n
      \n
    • New: Updated CSS floats to flexbox and grid for better layout support and compatibility with themes. If you have made customizations in form of CSS, JS, or custom feed templates, make sure your feed looks as expected after updating. If you need time to update your customizations, use the “Legacy CSS” setting on the “Advanced” tab to revert the CSS file to version 6.2.
    • \n
    • New: Improved how images are displayed to support lazy loading.
    • \n
    • Fix: Added support for Borlabs Cookie v3.0.
    • \n
    \n

    6.2.10

    \n
      \n
    • New: Added a menu item to easily install our new TikTok Feeds plugin!
    • \n
    \n

    6.2.9

    \n
      \n
    • New: Added Elementor widget and Divi module for Instagram Feed.
    • \n
    • Tweak: Enhanced the secure custom login tool for the support team to troubleshoot certain API issues on your site.
    • \n
    • Tweak: Improved and hardened our code base to improve reliability.
    • \n
    • Fix: Updated settings info to display in the debug report.
    • \n
    \n

    6.2.8

    \n
      \n
    • Fix: Menu items for our other plugins were not working when clicked.
    • \n
    \n

    6.2.7

    \n
      \n
    • Tweak: Improved and hardened our code base to improve reliability.
    • \n
    \n

    6.2.6

    \n
      \n
    • Fix: Resetting optimized images would also reset Instagram Feed settings.
    • \n
    \n

    6.2.5

    \n
      \n
    • Fix: Fixed a problem with our code that would remove admin footer text from other sources.
    • \n
    • Fix: Fixed an issue causing the minified CSS file to not actually be minified.
    • \n
    \n

    6.2.4

    \n
      \n
    • Fix: Disabled translation for a string that would cause an error in some languages.
    • \n
    \n

    6.2.3

    \n
      \n
    • Fix: Fixed translation bugs that would cause PHP errors on certain settings pages.
    • \n
    • Fix: Fixed a PHP error that would occur when the database record for translations was corrupted.
    • \n
    \n

    6.2.2

    \n
      \n
    • Translations: Fixed many translation issues and added translation files for German, French, Japanese, and many more.
    • \n
    • Fix: Fixed an issue that would cause extra slashes to be added to text settings that contained single and double quotes.
    • \n
    • Fix: Fixed an issue that would cause the customizer to not work the first time it was accessed.
    • \n
    \n

    6.2.1

    \n
      \n
    • Fix: Fixed a deprecation warning that would occur in PHP 8.2+.
    • \n
    • Fix: Fixed a PHP error that would occur when using PHP 8.0+, legacy feeds, and a shortcode with no arguments.
    • \n
    \n

    6.2

    \n
      \n
    • New: Added an onboarding wizard for new users to easily get started with Instagram Feeds.
    • \n
    \n

    6.1.6

    \n
      \n
    • Fix: Changed code related to account connection for increased reliability.
    • \n
    • Fix: Only 20 feeds were available for export when using the tool on the settings page.
    • \n
    • Fix: Fixed an issue causing a PHP error “creation of a dynamic property” when using PHP 8.2.
    • \n
    \n

    6.1.5

    \n
      \n
    • Fix: Fixed personal accounts unable to retrieve new tweets and showing an error with the code 100.
    • \n
    • Fix: Updated API calls for business accounts to work with upcoming changes from Instagram.
    • \n
    \n

    6.1.4

    \n
      \n
    • Fix: Removed the option to add a feed to a widget if the current theme does not support widgets.
    • \n
    • New: Added a menu item to easily install our new Reviews Feed plugin!
    • \n
    \n

    6.1.3

    \n
      \n
    • Fix: Fixed a PHP Warning: strtotime(): Epoch doesn’t fit in a PHP integer.
    • \n
    • Fix: Header bio was not updating when the bio for the connected Instagram account was updated.
    • \n
    • Fix: Fixed a few text items not being translatable.
    • \n
    \n

    6.1.2

    \n
      \n
    • Fix: When enabling Facebook oEmbeds from the oEmbed page, an Instagram icon would appear when the Custom Facebook Feed plugin was being activated.
    • \n
    • Fix: Fixed a CSS parsing error.
    • \n
    \n

    6.1.1

    \n
      \n
    • Fix: When using the customizer to enable the setting for the header “show outside scrollable area” and adding a background color, the preview would not show the same result as the actual feed.
    • \n
    • Fix: Disabling the JavaScript image loading on the “Advanced” settings tab would cause the customizer preview to look distorted.
    • \n
    • Fix: When customizing a feed, the load more button would become active when switching the device preview.
    • \n
    • Fix: Fixed a PHP warning that would occur when bulk deleting feeds.
    • \n
    \n

    6.1

    \n
      \n
    • New: Added the ability to filter “Reels” posts in feeds. When customizing a feed and using the moderation settings you can now choose to show or hide Instagram “Reels” posts.
    • \n
    • New: Add a header image and bio text for personal sources. Go to the settings page and click on the gear icon to add this to an existing source.
    • \n
    • New: Added support for Instagram “Reels” oEmbeds. Use WordPress’ embed block to create rich oEmbed links in blog posts and pages.
    • \n
    • Tweak: Vue.js code is now loaded from a local file shipped with the plugin rather than an external CDN for use with the customizer in the admin area.
    • \n
    \n

    6.0.8

    \n
      \n
    • Tweak: Added a workaround to retrieve missing images if none were returned by Instagram for a post.
    • \n
    • Fix: Custom colors assigned to the Follow button would not apply when using a custom color palette.
    • \n
    • Fix: Added additional plugin hardening.
    • \n
    • Fix: A fatal error would occur with older versions of PHP and WordPress in some circumstances.
    • \n
    \n

    6.0.7

    \n
      \n
    • Fix: Removed legacy “disable mobile” setting support as it was causing confusion for users updating from 2.x where changes to feed columns would not have an effect.
    • \n
    • Fix: Removed the reference in the feed CSS file to an image file that didn’t exist.in the feed CSS file.
    • \n
    • Fix: All sources would be removed when the grace period to address app permission issues ended. Now only the single source will be removed.
    • \n
    • Fix: The number of posts would be inaccurate in the feed preview when using the customizer for mobile devices.
    • \n
    \n

    6.0.6

    \n
      \n
    • Tweak: Added a warning notice to allow a grace period before Instagram data is permanently deleted from your site after deauthorizing the Smash Balloon Instagram app. Due to Instagram requirements, any Instagram data on your site must be deleted within a reasonable time after the app has been deauthorized. The new warning notice provides a 7 day grace period to allow you time to reauthorize the app if you don’t want the data to be deleted.
    • \n
    • Tweak: Reconnecting an account now results in deleting the original connection in the database and adding a new one. This will prevent issues with some caching systems like Redis.
    • \n
    • Fix: Only the first 20 sources were available when creating feeds and changing sources for a feed.
    • \n
    • Fix: The link in some error messages were incorrect resulting in “access denied” error messages when clicking on them.
    • \n
    \n

    6.0.5

    \n
      \n
    • Tweak: If WordPress cron is broken or behind schedule and causing background caching to not work, the plugin will update the feed when the page loads.
    • \n
    • Fix: Jetpack’s “Master Bar” feature was causing the sidebar in the customizer to be partially hidden.
    • \n
    • Fix: Added back support for the “class” shortcode setting for all feeds.
    • \n
    • Fix: Removed all Font Awesome icons and no longer include the CSS file from the Font Awesome CDN.
    • \n
    \n

    6.0.4

    \n
      \n
    • Fix: Added back the ability to use up to 10 columns in feeds.
    • \n
    • Fix: The reconnect link that would display when an account had an error would not redirect to connect.smashballoon.com.
    • \n
    \n

    6.0.3

    \n
      \n
    • Tweak: Updated our logo throughout the plugin to match our new website.
    • \n
    • Tweak: Changed how the hover color for follow and load more buttons is applied to prevent theme conflicts.
    • \n
    • Fix: Fixed JavaScript file not being added to the page when using the plugin GDPR Cookie Consent by WebToffee.
    • \n
    • Fix: Dismissing dashboard notifications would cause the “Add new feed” button to stop working until the page was refreshed.
    • \n
    \n

    6.0.2

    \n
      \n
    • Fix: Fixed Instagram Feed JavaScript file missing from the page when using the “AJAX theme loading fix” setting causing blank images to display.
    • \n
    • Fix: Added the ability to create the custom database tables if there was an error when first trying to create them.
    • \n
    • Fix: Fixed the error message not displaying if there was an error when trying to connect a personal or basic account.
    • \n
    \n

    6.0.1

    \n
      \n
    • Fix: Custom HTML templates were not applying to new feeds.
    • \n
    • Fix: Some custom tables were not being created for specific versions of MySQL.
    • \n
    • Fix: The shortcode setting “showfollow=false” was not working for legacy feeds.
    • \n
    • Fix: The shortcode settings “showheader” and “showbio” were applying for non-legacy feeds causing confusion when trying to change these settings in the customizer.
    • \n
    • Fix: The customizer would not resize images causing blank images to show when GDPR features were enabled.
    • \n
    • Fix: Fixed PHP warning “Undefined array key tagged”.
    • \n
    \n

    6.0

    \n
      \n
    • Important: Minimum supported WordPress version has been raised from 3.5 to 4.1.
    • \n
    • New: Our biggest update ever! We’ve completely redesigned the plugin settings from head to toe to make it easier to create, manage, and customize your Instagram feeds.
    • \n
    • New: All your feeds are now displayed in one place on the “All Feeds” page. This shows a list of any existing (legacy) feeds and any new ones that you create. Note: If you updated from a version prior to v2.8 then you may need to view your feeds on your webpage so that the plugin can locate them and list them here.
    • \n
    • New: Easily edit individual feed settings for new feeds instead of cumbersome shortcode options.
    • \n
    • New: It’s now much easier to create feeds. Just click “Add New”, select your feed type, connect your account, and you’re done!
    • \n
    • New: Brand new feed customizer. We’ve completely redesigned feed customization from the ground up, reorganizing the settings to make them easier to find.
    • \n
    • New: Live Feed Preview. You can now see changes you make to your feeds in real time, right in the settings page. Easily preview them on desktop, tablet, and mobile sizes.
    • \n
    • New: Color Scheme option. It’s now easier than ever to change colors across your feed without needing to adjust individual color settings. Just set a color scheme to effortlessly change colors across your entire feed.
    • \n
    • New: You can now change the number of columns in your feed across desktop, tablet, and mobile.
    • \n
    • New: Easily import and export feed settings to make it simple to move feeds across sites.
    • \n
    \n", "description": "

    As the most powerful and easiest to use Instagram plugin for WordPress, Smash Balloon Social Photo Feed helps you create, customize and embed Instagram feeds on your website in just a few clicks! Absolutely no coding needed.

    \n

    \n

    Designed for both WordPress beginners and advanced users, you can use Social Photo Feed to seamlessly integrate your Instagram widgets and keep your site effortlessly updated.

    \n

    Explore the Pro Version | See Pro in Action

    \n

    Over 1 million users worldwide trust Social Photo Feed to easily showcase Instagram content on their websites.

    \n

    Embed Your Instagram Feed in 3 Steps

    \n

    Smash Balloon Instagram Feed makes it a breeze to set up your feeds on your site:

    \n
      \n
    1. Create your feed and choose an Instagram widget source
    2. \n
    3. Customize your feed in a few clicks
    4. \n
    5. Add your Instagram feed to your site
    6. \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    Free Features

    \n
      \n
    • NEW! Supports local WebP image format for faster loading times
    • \n
    • oEmbed Support Automatically powers your Instagram oEmbeds
    • \n
    • Setting Up is Simple: Get started in seconds, no hassle, no fuss
    • \n
    • Showcase Multiple Accounts: Display photos from various Instagram accounts in one unified feed or separate them into individual feeds
    • \n
    • Multiple Feeds Anywhere: Add as many feeds as you want on the same page or spread them across different pages on your site
    • \n
    • Responsive & Mobile-Ready: Your feeds will look stunning on any screen size, on any device and in any container width
    • \n
    • Fully Customizable Feeds: Adjust the width, height, number of photos, number of columns, image size, background color, image spacing and more
    • \n
    • Visual Customizer: Customize your feed layout, color scheme, header style, post settings, lightbox, and much more – in just a few clicks
    • \n
    • Photo Display Options: Choose to display thumbnail, medium, or full-size photos directly from your feed
    • \n
    • Beautiful Feed Header: Add a striking header to top off your feed beautifully
    • \n
    • “Follow on Instagram” Button: Increase followers by adding a “follow on Instagram” button at the bottom of your feed
    • \n
    • Flexible Photo Order: Display your Instagram photos in chronological order or mix it up with a random arrangement
    • \n
    • Infinite Scroll: Keep your visitors engaged by loading more of your Instagram photos with a handy “Load More” button
    • \n
    • Built-in Block: Easily add your feed to posts and pages with our convenient block for the block editor
    • \n
    • Instagram Widget: Embed on your site’s widget-ready areas such as sidebar and footer in seconds
    • \n
    • GDPR Compliant: Automatically integrates with many of the popular GDPR cookie consent plugins and includes a 1-click easy GDPR setting
    • \n
    • Designed for All Users: Perfect for beginners and advanced users alike
    • \n
    • Advanced Customization: Add your own custom CSS and JavaScript for advanced customizations
    • \n
    • Page Builder Compatible: Fully compatible with Elementor, Divi, Beaver Builder and other popular page builders
    • \n
    \n

    Get More with Instagram Feed Pro

    \n

    Want to truly maximize your Instagram content and make it work harder for your brand?

    \n

    While Smash Balloon’s Social Photo Feed offers a free way to get started, our Pro version offers advanced features to help you get complete control over the way you show your Instagram photos and videos to your website visitors.

    \n

    The Pro version, known as Instagram Feed Pro, allows you to:

    \n
      \n
    • \n

      Display hashtag feeds – Curate dynamic content around specific Instagram hashtags
      \nCheck Out Instagram Hashtag Feed Demo

      \n
    • \n
    • \n

      Show stunning lightboxes – View photos, Instagram reels and videos in a popup lightbox directly on your site

      \n
    • \n
    • \n

      Add interactive elements – Display captions and show the number of likes and comments for each post

      \n
    • \n
    • \n

      Embed Instagram carousel – Showcase eye-catching carousels from your posts
      \nSee Instagram Carousel Feed Demo

      \n
    • \n
    • \n

      Choose from multiple layout options – Use “Masonry” or “Highlight” layouts
      \nView “Highlight” Layout in Action

      \n
    • \n
    • \n

      Use advanced feed moderation – Hide or show specific posts in just a few clicks

      \n
    • \n
    • \n

      Filter Instagram posts – Display Instagram content based on hashtags, keywords or specific user posts

      \n
    • \n
    • \n

      Create shoppable feeds – Add customized links to each post, like link in bio, so you can direct your site visitors to the page you’d like

      \n
    • \n
    • \n

      Use professionally-designed themes – No need to start from scratch! Design beautiful feeds in minutes with pre-made feed themes to instantly create beautiful and unique feeds

      \n
    • \n
    \n

    Plus, enjoy these Pro benefits:

    \n
      \n
    • Priority Support: Get quick and dedicated help from our support team
    • \n
    • Regular Updates: Benefit from continuous plugin improvements and new features
    • \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    Why Over 1 Million Users Love Smash Balloon

    \n

    Trusted by over 1 million websites, Smash Balloon is the leading solution for seamlessly integrating Instagram feeds onto your site.

    \n

    Our 4.9/5 star average rating from 4,000+ glowing reviews speaks for itself.

    \n

    What Our Users Are Saying

    \n
    \n

    “Awesome plugin and support – Awesome plugin that just works! Contacted support this week and they’ve quickly given a custom solution for a specific query I had! Very happy customer!”
    \n – @tomteaweb

    \n

    “The best Instagram feed plugin – Whenever I need to display the Instagram feed in a WordPress site, I choose this plugin. It is not only easy to set up, but even in the free version you have enough features to have a nice feed. Do not spend more time looking for another Instagram feed plugin: This is the best!”
    \n – @yordansoares

    \n

    “Simple and concise – Excellent plugin. Simple and non-bloated. I had a couple small issues with the plugin when I first started using it, but a quick comment on the support forums got a new version pushed out the next day with the fix. Awesome support!”
    \n – @joshjones

    \n

    “Great plugin, greater support! – I’ve definitely noticed an increase in followers on Instagram since I added this plugin to my sidebar. Thanks for the help in making some adjustments…looks and works great!”
    \n – @bnotp

    \n
    \n

    Fast, Professional and Helpful Support

    \n

    At Smash Balloon, we’re dedicated to providing the most customizable, robust, and well-supported Instagram plugin available.

    \n

    Have a question, need help with a feature, or want to request a new feature?

    \n

    Our dedicated support team is just a quick message away, ready to provide top-notch assistance for both free and premium versions:

    \n\n

    You can instantly unlock priority support when you upgrade to Instagram Feed Pro now.

    \n

    7 Reasons Why You Need Smash Balloon Social Photo Feed

    \n
      \n
    1. Boost Social Engagement – Increase engagement between you and your Instagram followers
    2. \n
    3. Save Time – Automatically display your Instagram photos on your website
    4. \n
    5. Display Your Content Your Way – Customize your feeds to blend seamlessly with your site
    6. \n
    7. Keep Your Site Looking Fresh – Automatically push new Instagram content to your site
    8. \n
    9. Super Simple Setup – Get started in 30 seconds with no Developer account needed
    10. \n
    11. Powers Instagram oEmbeds – Maintain working Instagram embeds across your site
    12. \n
    13. Professional Feed Themes – Use ready-made themes for quick, beautiful displays
    14. \n
    \n

    What Can It Do?

    \n
      \n
    • Display Instagram photos from any account you own
    • \n
    • Completely responsive and mobile ready
    • \n
    • Display multiple feeds on the same page
    • \n
    • Display posts from multiple Instagram User IDs
    • \n
    • Built-in customization options
    • \n
    • Infinite scroll with ‘Load More’ button
    • \n
    • Plus more features added regularly!
    • \n
    \n

    Completely Customizable Feeds

    \n
      \n
    • Set number of photos to display
    • \n
    • Choose number of columns and photo sizes
    • \n
    • Show/hide feed elements (header, buttons)
    • \n
    • Control width, height and background color
    • \n
    • Set spacing between photos
    • \n
    • Display photos in chronological or random order
    • \n
    • Customize button text and colors
    • \n
    • Add custom CSS or JavaScript
    • \n
    • Style multiple feeds differently
    • \n
    • Plus more options added regularly!
    • \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    What’s Next

    \n

    If you like our WordPress Instagram plugin, then consider checking out our other projects:

    \n

    OptinMonster – Get more email subscribers with the most popular conversion optimization plugin for WordPress.
    \nWPForms – #1 drag & drop online form builder for WordPress (trusted by 5 million sites).
    \nAIOSEO – The original WordPress SEO plugin to help you rank higher in search results (trusted by over 3 million sites).
    \nMonsterInsights – See the stats that matter and grow your business with confidence. Best Google Analytics plugin for WordPress.
    \nSeedProd – Create beautiful landing pages with our powerful drag & drop landing page builder.
    \nWP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    \nWPCode – must have WordPress code snippet management plugin to help you future-proof website customization (trusted by 1.5 million sites).
    \nDuplicator – popular WordPress backup and migration plugin used by over 1 million websites.
    \nWP Simple Pay – #1 Stripe payments plugin for WordPress. Start accepting one-time or recurring payments without a shopping cart.
    \nPushEngage – Connect with visitors after they leave your website with the leading web push notification plugin.
    \nRafflePress – Best WordPress giveaway and contest plugin to grow traffic and social followers.
    \nTrustPulse – Add real-time social proof notifications to boost your store conversions by up to 15%.
    \nSearchWP – The most advanced custom WordPress search plugin to improve WordPress search quality.
    \nAffiliateWP – #1 affiliate management plugin for WordPress. Add a referral program to your online store.
    \nEasy Digital Downloads – The best WordPress eCommerce plugin to sell digital products (eBooks, software, music, and more).
    \nWPCharitable – Top-rated WordPress donation and fundraising plugin for WordPress.

    \n

    Visit WPBeginner to learn from our WordPress Tutorials and about the best WordPress plugins.

    \n

    Privacy Policy

    \n

    =Data Collection=

    \n

    Instagram Feed does not collect any personal data from your Meta accounts (Instagram, Facebook). All data retrieved from the Meta API is used solely for the purpose of displaying your feed on your WordPress site.

    \n

    =External Connections=

    \n

    This plugin connects to three external sites:

    \n
      \n
    • \n

      Smashballoon.com: Used for connecting and authenticating your sources. Occasionally, it sends dynamic notices to users. These notices can include information about major API changes, critical updates, and marketing messages.

      \n
    • \n
    • \n

      Instagram.com and Facebook.com: Used to fetch posts so your visitors can view them directly on your site without needing to leave.

      \n
    • \n
    \n

    =Data Usage=

    \n

    All data retrieved from the Meta API is used solely for displaying your Instagram feed on your WordPress site. No personal data is collected, stored, or shared beyond this purpose.

    \n", "screenshots": "
    1. \"Easily

      Easily display feeds from any of your Instagram accounts

    2. \"Your

      Your Instagram Feed is completely customizable and responsive

    3. \"Combine

      Combine multiple accounts into a single feed

    4. \"Super

      Super quick and easy to get started. Just click the button to connect an Instagram account.

    5. \"Customize

      Customize layouts, styles, colors, and more

    6. \"Just

      Just copy and paste the shortcode into any page, post or widget on your site. You can also use the block editor with our handy Instagram Feed block.

    7. \"\"
    8. \"\"
    "}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/instagram-feed.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.2.zip", "1.4": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/instagram-feed.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/instagram-feed.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/instagram-feed.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/instagram-feed.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/instagram-feed.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/instagram-feed.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.2.zip", "2.4": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/instagram-feed.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/instagram-feed.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/instagram-feed.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/instagram-feed.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.zip", "6.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.zip", "6.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.zip", "6.2": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.zip", "6.3": "https://downloads.wordpress.org/plugin/instagram-feed.6.3.zip", "6.4": "https://downloads.wordpress.org/plugin/instagram-feed.6.4.zip", "1.10": "https://downloads.wordpress.org/plugin/instagram-feed.1.10.zip", "1.11": "https://downloads.wordpress.org/plugin/instagram-feed.1.11.zip", "1.12": "https://downloads.wordpress.org/plugin/instagram-feed.1.12.zip", "1.0.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.0.2.zip", "1.1.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.6.zip", "1.2.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.2.3.zip", "1.3.0": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.9.zip", "1.4.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.9.zip", "1.5.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.5.1.zip", "1.6.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.6.2.zip", "1.8.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.8.3.zip", "1.9.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.9.1.zip", "2.0.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.0.2.zip", "2.1.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.5.zip", "2.2.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.2.2.zip", "2.4.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.7.zip", "2.5.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/instagram-feed.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/instagram-feed.2.5.4.zip", "2.6.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.6.2.zip", "2.8.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.8.2.zip", "2.9.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.6.zip", "2.9.7": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.9.zip", "6.0.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.8.zip", "6.1.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.5.zip", "6.1.6": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.6.zip", "6.2.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.5.zip", "6.2.6": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.6.zip", "6.2.7": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.7.zip", "6.2.8": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.8.zip", "6.2.9": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.9.zip", "6.3.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.3.1.zip", "6.4.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/instagram-feed.6.4.2.zip", "6.4.3": "https://downloads.wordpress.org/plugin/instagram-feed.6.4.3.zip", "6.5.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.5.1.zip", "6.6.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.6.1.zip", "6.7.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.7.0.zip", "6.7.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.7.1.zip", "6.8.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.8.0.zip", "6.9.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.9.1.zip", "trunk": "https://downloads.wordpress.org/plugin/instagram-feed.zip", "1.10.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.10.1.zip", "1.10.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.10.2.zip", "1.11.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.11.2.zip", "1.11.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.11.3.zip", "1.12.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.12.2.zip", "1.3.10": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.10.zip", "1.3.11": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.11.zip", "2.9.10": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.10.zip", "6.2.10": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.10.zip", "1.4.6.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.6.1.zip", "1.4.6.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.6.2.zip", "2.9.3.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.3.1.zip"}, "downloaded": 48649611, "description": "

    As the most powerful and easiest to use Instagram plugin for WordPress, Smash Balloon Social Photo Feed helps you create, customize and embed Instagram feeds on your website in just a few clicks! Absolutely no coding needed.

    \n

    \n

    Designed for both WordPress beginners and advanced users, you can use Social Photo Feed to seamlessly integrate your Instagram widgets and keep your site effortlessly updated.

    \n

    Explore the Pro Version | See Pro in Action

    \n

    Over 1 million users worldwide trust Social Photo Feed to easily showcase Instagram content on their websites.

    \n

    Embed Your Instagram Feed in 3 Steps

    \n

    Smash Balloon Instagram Feed makes it a breeze to set up your feeds on your site:

    \n
      \n
    1. Create your feed and choose an Instagram widget source
    2. \n
    3. Customize your feed in a few clicks
    4. \n
    5. Add your Instagram feed to your site
    6. \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    Free Features

    \n
      \n
    • NEW! Supports local WebP image format for faster loading times
    • \n
    • oEmbed Support Automatically powers your Instagram oEmbeds
    • \n
    • Setting Up is Simple: Get started in seconds, no hassle, no fuss
    • \n
    • Showcase Multiple Accounts: Display photos from various Instagram accounts in one unified feed or separate them into individual feeds
    • \n
    • Multiple Feeds Anywhere: Add as many feeds as you want on the same page or spread them across different pages on your site
    • \n
    • Responsive & Mobile-Ready: Your feeds will look stunning on any screen size, on any device and in any container width
    • \n
    • Fully Customizable Feeds: Adjust the width, height, number of photos, number of columns, image size, background color, image spacing and more
    • \n
    • Visual Customizer: Customize your feed layout, color scheme, header style, post settings, lightbox, and much more – in just a few clicks
    • \n
    • Photo Display Options: Choose to display thumbnail, medium, or full-size photos directly from your feed
    • \n
    • Beautiful Feed Header: Add a striking header to top off your feed beautifully
    • \n
    • “Follow on Instagram” Button: Increase followers by adding a “follow on Instagram” button at the bottom of your feed
    • \n
    • Flexible Photo Order: Display your Instagram photos in chronological order or mix it up with a random arrangement
    • \n
    • Infinite Scroll: Keep your visitors engaged by loading more of your Instagram photos with a handy “Load More” button
    • \n
    • Built-in Block: Easily add your feed to posts and pages with our convenient block for the block editor
    • \n
    • Instagram Widget: Embed on your site’s widget-ready areas such as sidebar and footer in seconds
    • \n
    • GDPR Compliant: Automatically integrates with many of the popular GDPR cookie consent plugins and includes a 1-click easy GDPR setting
    • \n
    • Designed for All Users: Perfect for beginners and advanced users alike
    • \n
    • Advanced Customization: Add your own custom CSS and JavaScript for advanced customizations
    • \n
    • Page Builder Compatible: Fully compatible with Elementor, Divi, Beaver Builder and other popular page builders
    • \n
    \n

    Get More with Instagram Feed Pro

    \n

    Want to truly maximize your Instagram content and make it work harder for your brand?

    \n

    While Smash Balloon’s Social Photo Feed offers a free way to get started, our Pro version offers advanced features to help you get complete control over the way you show your Instagram photos and videos to your website visitors.

    \n

    The Pro version, known as Instagram Feed Pro, allows you to:

    \n
      \n
    • \n

      Display hashtag feeds – Curate dynamic content around specific Instagram hashtags
      \nCheck Out Instagram Hashtag Feed Demo

      \n
    • \n
    • \n

      Show stunning lightboxes – View photos, Instagram reels and videos in a popup lightbox directly on your site

      \n
    • \n
    • \n

      Add interactive elements – Display captions and show the number of likes and comments for each post

      \n
    • \n
    • \n

      Embed Instagram carousel – Showcase eye-catching carousels from your posts
      \nSee Instagram Carousel Feed Demo

      \n
    • \n
    • \n

      Choose from multiple layout options – Use “Masonry” or “Highlight” layouts
      \nView “Highlight” Layout in Action

      \n
    • \n
    • \n

      Use advanced feed moderation – Hide or show specific posts in just a few clicks

      \n
    • \n
    • \n

      Filter Instagram posts – Display Instagram content based on hashtags, keywords or specific user posts

      \n
    • \n
    • \n

      Create shoppable feeds – Add customized links to each post, like link in bio, so you can direct your site visitors to the page you’d like

      \n
    • \n
    • \n

      Use professionally-designed themes – No need to start from scratch! Design beautiful feeds in minutes with pre-made feed themes to instantly create beautiful and unique feeds

      \n
    • \n
    \n

    Plus, enjoy these Pro benefits:

    \n
      \n
    • Priority Support: Get quick and dedicated help from our support team
    • \n
    • Regular Updates: Benefit from continuous plugin improvements and new features
    • \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    Why Over 1 Million Users Love Smash Balloon

    \n

    Trusted by over 1 million websites, Smash Balloon is the leading solution for seamlessly integrating Instagram feeds onto your site.

    \n

    Our 4.9/5 star average rating from 4,000+ glowing reviews speaks for itself.

    \n

    What Our Users Are Saying

    \n
    \n

    “Awesome plugin and support – Awesome plugin that just works! Contacted support this week and they’ve quickly given a custom solution for a specific query I had! Very happy customer!”
    \n – @tomteaweb

    \n

    “The best Instagram feed plugin – Whenever I need to display the Instagram feed in a WordPress site, I choose this plugin. It is not only easy to set up, but even in the free version you have enough features to have a nice feed. Do not spend more time looking for another Instagram feed plugin: This is the best!”
    \n – @yordansoares

    \n

    “Simple and concise – Excellent plugin. Simple and non-bloated. I had a couple small issues with the plugin when I first started using it, but a quick comment on the support forums got a new version pushed out the next day with the fix. Awesome support!”
    \n – @joshjones

    \n

    “Great plugin, greater support! – I’ve definitely noticed an increase in followers on Instagram since I added this plugin to my sidebar. Thanks for the help in making some adjustments…looks and works great!”
    \n – @bnotp

    \n
    \n

    Fast, Professional and Helpful Support

    \n

    At Smash Balloon, we’re dedicated to providing the most customizable, robust, and well-supported Instagram plugin available.

    \n

    Have a question, need help with a feature, or want to request a new feature?

    \n

    Our dedicated support team is just a quick message away, ready to provide top-notch assistance for both free and premium versions:

    \n\n

    You can instantly unlock priority support when you upgrade to Instagram Feed Pro now.

    \n

    7 Reasons Why You Need Smash Balloon Social Photo Feed

    \n
      \n
    1. Boost Social Engagement – Increase engagement between you and your Instagram followers
    2. \n
    3. Save Time – Automatically display your Instagram photos on your website
    4. \n
    5. Display Your Content Your Way – Customize your feeds to blend seamlessly with your site
    6. \n
    7. Keep Your Site Looking Fresh – Automatically push new Instagram content to your site
    8. \n
    9. Super Simple Setup – Get started in 30 seconds with no Developer account needed
    10. \n
    11. Powers Instagram oEmbeds – Maintain working Instagram embeds across your site
    12. \n
    13. Professional Feed Themes – Use ready-made themes for quick, beautiful displays
    14. \n
    \n

    What Can It Do?

    \n
      \n
    • Display Instagram photos from any account you own
    • \n
    • Completely responsive and mobile ready
    • \n
    • Display multiple feeds on the same page
    • \n
    • Display posts from multiple Instagram User IDs
    • \n
    • Built-in customization options
    • \n
    • Infinite scroll with ‘Load More’ button
    • \n
    • Plus more features added regularly!
    • \n
    \n

    Completely Customizable Feeds

    \n
      \n
    • Set number of photos to display
    • \n
    • Choose number of columns and photo sizes
    • \n
    • Show/hide feed elements (header, buttons)
    • \n
    • Control width, height and background color
    • \n
    • Set spacing between photos
    • \n
    • Display photos in chronological or random order
    • \n
    • Customize button text and colors
    • \n
    • Add custom CSS or JavaScript
    • \n
    • Style multiple feeds differently
    • \n
    • Plus more options added regularly!
    • \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    What’s Next

    \n

    If you like our WordPress Instagram plugin, then consider checking out our other projects:

    \n

    OptinMonster – Get more email subscribers with the most popular conversion optimization plugin for WordPress.
    \nWPForms – #1 drag & drop online form builder for WordPress (trusted by 5 million sites).
    \nAIOSEO – The original WordPress SEO plugin to help you rank higher in search results (trusted by over 3 million sites).
    \nMonsterInsights – See the stats that matter and grow your business with confidence. Best Google Analytics plugin for WordPress.
    \nSeedProd – Create beautiful landing pages with our powerful drag & drop landing page builder.
    \nWP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    \nWPCode – must have WordPress code snippet management plugin to help you future-proof website customization (trusted by 1.5 million sites).
    \nDuplicator – popular WordPress backup and migration plugin used by over 1 million websites.
    \nWP Simple Pay – #1 Stripe payments plugin for WordPress. Start accepting one-time or recurring payments without a shopping cart.
    \nPushEngage – Connect with visitors after they leave your website with the leading web push notification plugin.
    \nRafflePress – Best WordPress giveaway and contest plugin to grow traffic and social followers.
    \nTrustPulse – Add real-time social proof notifications to boost your store conversions by up to 15%.
    \nSearchWP – The most advanced custom WordPress search plugin to improve WordPress search quality.
    \nAffiliateWP – #1 affiliate management plugin for WordPress. Add a referral program to your online store.
    \nEasy Digital Downloads – The best WordPress eCommerce plugin to sell digital products (eBooks, software, music, and more).
    \nWPCharitable – Top-rated WordPress donation and fundraising plugin for WordPress.

    \n

    Visit WPBeginner to learn from our WordPress Tutorials and about the best WordPress plugins.

    \n

    Privacy Policy

    \n

    =Data Collection=

    \n

    Instagram Feed does not collect any personal data from your Meta accounts (Instagram, Facebook). All data retrieved from the Meta API is used solely for the purpose of displaying your feed on your WordPress site.

    \n

    =External Connections=

    \n

    This plugin connects to three external sites:

    \n
      \n
    • \n

      Smashballoon.com: Used for connecting and authenticating your sources. Occasionally, it sends dynamic notices to users. These notices can include information about major API changes, critical updates, and marketing messages.

      \n
    • \n
    • \n

      Instagram.com and Facebook.com: Used to fetch posts so your visitors can view them directly on your site without needing to leave.

      \n
    • \n
    \n

    =Data Usage=

    \n

    All data retrieved from the Meta API is used solely for displaying your Instagram feed on your WordPress site. No personal data is collected, stored, or shared beyond this purpose.

    \n", "donate_link": "", "num_ratings": 4302, "screenshots": {"1": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-1.jpg?rev=2587101", "caption": "Easily display feeds from any of your Instagram accounts"}, "2": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-2.jpg?rev=2586187", "caption": "Your Instagram Feed is completely customizable and responsive"}, "3": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-3.jpg?rev=2587101", "caption": "Combine multiple accounts into a single feed"}, "4": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-4.png?rev=2679382", "caption": "Super quick and easy to get started. Just click the button to connect an Instagram account."}, "5": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-5.png?rev=2679382", "caption": "Customize layouts, styles, colors, and more"}, "6": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-6.png?rev=2679382", "caption": "Just copy and paste the shortcode into any page, post or widget on your site. You can also use the block editor with our handy Instagram Feed block."}, "7": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-7.png?rev=2679382", "caption": ""}, "8": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-8.png?rev=2679382", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/instagram-feed/", "contributors": {"am": {"avatar": "https://secure.gravatar.com/avatar/63aa4fca77a95189a1f2e5b567c27641e65a55fbf45b7fb03ef8b9156501db17?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/am/", "display_name": "Awesome Motive"}, "smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "smashballoon": {"avatar": "https://secure.gravatar.com/avatar/311792844cac728aa54e055b8fdb92943e1e5c8bc206bfb99b0f3aaf3ea54c77?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smashballoon/", "display_name": "smashballoon"}, "craig-at-smash-balloon": {"avatar": "https://secure.gravatar.com/avatar/6141d1458eb9c8178e49184bff5ddc11667b7b0eab2055622d3032ce63826ef0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/craig-at-smash-balloon/", "display_name": "Craig at Smash Balloon"}}, "last_updated": "2025-05-21 4:39pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/instagram-feed.6.9.1.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f651-7137-87dd-c2df46064de1", "name": "Smash Balloon Social Photo Feed – Easy Social Feeds Plugin", "slug": "instagram-feed", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1747845540, "version": "6.9.1"}, "support_threads": 16, "requires_plugins": [], "short_description": "Formerly "Instagram Feed". Display clean, customizable, and responsive Instagram feeds from multiple accounts. Supports Instagram oEmbeds.", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 10}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1b92-7217-95e3-1a33016a8327', 'did:web:api.aspiredev.org:packages:wp-plugin:flamingo', 'flamingo', 'Flamingo', '

    Flamingo is a message storage plugin originally created for Contact Form 7, which doesn’t store submitted messages.

    -

    After activation of the plugin, you’ll find Flamingo on the WordPress admin screen menu. All messages through contact forms are listed there and are searchable. With Flamingo, you no longer need to worry about losing important messages due to mail server issues or misconfiguration in mail setup.

    -

    For more detailed information, please refer to the Contact Form 7 documentation page.

    -

    Privacy Notices

    -

    This plugin stores submission data collected through contact forms, which may include the submitters’ personal information, in the database on the server that hosts the website.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Flamingo", "slug": "flamingo", "tags": {"crm": "crm", "bird": "bird", "mail": "mail", "contact": "contact"}, "added": "2012-05-05", "icons": {"1x": "https://ps.w.org/flamingo/assets/icon-128x128.png?rev=1540977"}, "author": "Rock Lobster Inc.", "rating": 84, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/flamingo/assets/banner-772x250.png?rev=544829", "high": false}, "ratings": {"1": 7, "2": 9, "3": 9, "4": 20, "5": 73}, "version": "2.6", "homepage": "https://contactform7.com/save-submitted-messages-with-flamingo/", "requires": "6.7", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works Really Well

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nolanrichardson on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its a great addition to contact form 7 and much needed if you don''t have your email server setup yet.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Only works with PHP sendmail, not external SMTP

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy skylabb on January 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin only works with contact forms using PHP mail. It doesn''t seem to work with an external SMTP mail server. I tested it out and there were no messages collected in DB. Also there''s no option to add more email addresses under Contact Book tab which shows only the users already registered in your WP site. So this feature is useless.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great! (But has a minor bug)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy allamehw on November 8, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a great tool, especially with its integration into the Contact Form 7 plugin. However, there''s a minor bug when exporting non-Latin characters, such as Persian. It seems the encoding is set to Western by default. Switching to UTF-8 encoding should resolve the issue. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Just what i needed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy germanfriend on December 6, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really good for storing messages

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Performance

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sionline on June 2, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Sending contact forms takes usually 3s.
    With Flamingo active and 30k records in db the time is much greater, repeatable 15s which is unacceptable.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Ужасный плагин!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Mario62rus on February 3, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ни какого нормального функционала, все неудобно и примитивно! Никогда и никому не советую его использовать, есть нормальные варианты. Одна ценность - связь с Akismet.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    einfach und gut!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy clvkmedia on September 4, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    macht genau wie beschrieben.\nVielen Dank!
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very helpful plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shojil on June 13, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    In my last company we are using this plugin on more then 200 of sites and it is working fine.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin Update

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kiwihawk on April 28, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    Is this plugin going to be updated to keep up with the latest Wordpress version?\n\n
    Warning: This plugin has not been tested with your current version of WordPress.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    if the form has images, just forget about them

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy joelramirezleal on April 5, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    the images that are sent in the forms are saved as a hash and there is no way to recover them, the support does not seem to care about this
    \n
    \n", "changelog": "

    2.6

    \n
      \n
    • Bumps up the minimum required WordPress version to 6.7.
    • \n
    • Fixes errors reported by PCP.
    • \n
    • Performs a tune-up for the cron job scheduling.
    • \n
    \n

    2.5

    \n
      \n
    • Bumps up the minimum required WordPress version to 6.4.
    • \n
    • Uses wp_json_encode() instead of json_encode().
    • \n
    • Uses get_views_links().
    • \n
    • Uses null coalescing operators.
    • \n
    \n", "description": "

    Flamingo is a message storage plugin originally created for Contact Form 7, which doesn’t store submitted messages.

    \n

    After activation of the plugin, you’ll find Flamingo on the WordPress admin screen menu. All messages through contact forms are listed there and are searchable. With Flamingo, you no longer need to worry about losing important messages due to mail server issues or misconfiguration in mail setup.

    \n

    For more detailed information, please refer to the Contact Form 7 documentation page.

    \n

    Privacy Notices

    \n

    This plugin stores submission data collected through contact forms, which may include the submitters’ personal information, in the database on the server that hosts the website.

    \n", "installation": "
      \n
    1. Upload the entire flamingo folder to the /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/flamingo.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/flamingo.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/flamingo.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/flamingo.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/flamingo.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/flamingo.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/flamingo.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/flamingo.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/flamingo.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/flamingo.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/flamingo.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/flamingo.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/flamingo.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/flamingo.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/flamingo.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/flamingo.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/flamingo.2.6.zip", "1.0.1": "https://downloads.wordpress.org/plugin/flamingo.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/flamingo.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/flamingo.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/flamingo.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/flamingo.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/flamingo.1.0.6.zip", "1.1.1": "https://downloads.wordpress.org/plugin/flamingo.1.1.1.zip", "2.1.1": "https://downloads.wordpress.org/plugin/flamingo.2.1.1.zip", "2.2.1": "https://downloads.wordpress.org/plugin/flamingo.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/flamingo.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/flamingo.2.2.3.zip", "trunk": "https://downloads.wordpress.org/plugin/flamingo.zip"}, "downloaded": 7575091, "description": "

    Flamingo is a message storage plugin originally created for Contact Form 7, which doesn’t store submitted messages.

    \n

    After activation of the plugin, you’ll find Flamingo on the WordPress admin screen menu. All messages through contact forms are listed there and are searchable. With Flamingo, you no longer need to worry about losing important messages due to mail server issues or misconfiguration in mail setup.

    \n

    For more detailed information, please refer to the Contact Form 7 documentation page.

    \n

    Privacy Notices

    \n

    This plugin stores submission data collected through contact forms, which may include the submitters’ personal information, in the database on the server that hosts the website.

    \n", "donate_link": "https://contactform7.com/donate/", "num_ratings": 118, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/flamingo/", "contributors": {"itpixelz": {"avatar": "https://secure.gravatar.com/avatar/0ab29d30d725fc2b0da861c9894d1aea643d24b56bcb9796701a2d029f66c300?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/itpixelz/", "display_name": "Umar Draz"}, "megumithemes": {"avatar": "https://secure.gravatar.com/avatar/0e5967d66d77cdb8d140db3a2748fe9f7dc75c46b922c1a4e2a0459a3930f5a5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/megumithemes/", "display_name": "DigitalCube Inc."}, "takayukister": {"avatar": "https://secure.gravatar.com/avatar/538487024e649d43dea84ff38d14582d03119e3e7aaaca3b7692443335999133?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/takayukister/", "display_name": "Takayuki Miyoshi"}}, "last_updated": "2025-07-14 7:58am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/flamingo.2.6.zip", "author_profile": "https://profiles.wordpress.org/rocklobsterinc/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-f46b-7052-be4f-29abe7f4b8de", "name": "Flamingo", "slug": "flamingo", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1752479880, "version": "2.6"}, "support_threads": 1, "requires_plugins": [], "short_description": "A trustworthy message storage plugin for Contact Form 7.", "author_block_count": 0, "author_block_rating": 84, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ba0-724e-aed2-4357cf77e30c', 'did:web:api.aspiredev.org:packages:wp-plugin:google-analytics-for-wordpress', 'google-analytics-for-wordpress', 'MonsterInsights – Google Analytics Dashboard for WordPress (Website Stats Made Easy)', '

    Google Analytics Plugin for WordPress

    -

    With over 3 million active installs, MonsterInsights is the most popular Google Analytics plugin for WordPress.

    -

    We believe that it’s easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights shows you the analytics and stats that matter, so you can grow your business with confidence.

    -

    At MonsterInsights, we make it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.

    -

    Unlike other Google Analytics plugins, MonsterInsights allows you to enable all advanced Google Analytics tracking features with just a few clicks (no need to hire a developer).

    -

    The best part is that MonsterInsights comes with an analytics dashboard for WordPress that shows you actionable analytics reports right inside your WordPress dashboard. We have created customized reports that eliminate the fluff and only show you the stats that matter, so you can see exactly what’s working and what’s not!

    -

    Simply put, MonsterInsights is the most complete Google Analytics plugin for WordPress that’s both EASY and POWERFUL.

    -

    That’s why millions of small businesses and top companies like Microsoft, Bloomberg, FedEx, Yelp, Subway, etc. use MonsterInsights to setup Google Analytics on their WordPress sites.

    -
    -

    MonsterInsights Pro
    - This plugin is the lite version of MonsterInsights Pro plugin that comes with all the tracking features you will ever need including events tracking, ecommerce tracking, custom dimensions tracking, page speed reports, popular post tracking, custom dimensions, affiliate link tracking, video tracking and tons more. Click here to purchase the best premium Google Analytics plugin for WordPress now!

    -
    -

    We took the pain out of installing Google Analytics in WordPress and made it easy. Here’s why over 3 million smart business owners, designers, and developers love MonsterInsights, and you will too!

    -

    -

    Quick & Easy Google Analytics Setup

    -

    Properly setting up Google Analytics is complicated. You have to either hire a developer or learn how to add advanced code snippets to your website in many different areas. This process can take days or weeks…and can even break your website!

    -

    With MonsterInsights, we made it “effortless” to properly setup Google Analytics in WordPress. Yes, you can enable all advanced Google Analytics features with just a few clicks.

    -

    If you can point-and-click, then you can set up Google Analytics inside WordPress and start seeing insights in under 15 minutes (no code necessary).

    -

    See what one business owner is saying about MonsterInsights:

    -
    -

    It just works. Really easy way to insert Google Analytics tracking code and keep it there when switching themes. No need to copy/paste code anywhere. This is the best way to handle Google Analytics in WordPress.
    - Steven Gliebe

    -
    -

    Google Analytics Dashboard

    -

    Our goal at MonsterInsights is to make Google Analytics easy and accessible for everyone.

    -

    We understand that Google Analytics has a steep learning curve. That’s why MonsterInsights comes with a built-in Google Analytics Dashboard for your WordPress site, so you can see all the useful information about your visitors right inside your WordPress dashboard.

    -

    We have even created customized reports to help you filter through the noise and see the stats that really matter!

    -
      -
    • -

      Audience Report shows you detailed insights like which country your visitors are coming from, what are they most interested in, which device are they using, their age, gender, and more.

      -
    • -
    • -

      Publishers Report helps you understand which pages your visitors are arriving, and which pages they are leaving from. Designed specifically for blogs and other resource sites, this powerful report will show you which outbound links are getting clicked so you can easily optimize for higher conversions.

      -
    • -
    • -

      Content Report shows you stats on exactly which content gets the most visits, so you can stop guessing and start creating content that gets more traffic and conversion.

      -
    • -
    • -

      Ecommerce Report shows you important store stats like total revenue, conversion rate, average order value, top referral sources, and more (all in one place).

      -
    • -
    • -

      Forms Report shows you conversion stats for various contact forms and lead forms on your website, so you can improve the conversions to grow your business.

      -
    • -
    • -

      Search Console Report shows you exactly how well your website is ranking in Google, so you can further optimize your SEO to grow your organic traffic.

      -
    • -
    • -

      Custom Dimensions Report helps you dig deeper by showing you useful stats like who are your most popular authors, what are the best publication times, which are your most popular categories or tags, how well are your Yoast focus keywords and SEO score performing, and more.

      -
    • -
    • -

      Site Speed Report makes it easy to track pagespeed insights and loading times for your website and get the information you need to improve user experience and your SEO rankings.

      -
    • -
    • -

      Landing Page Report instantly shows you which pages need to be optimized to increase engagement and help you make more money without needing to log into Google Analytics.

      -
    • -
    • -

      Source and Medium Report gives you an easy view of Google Analytics UTM tracking to see where you traffic comes from.

      -
    • -
    • -

      Technology Report shows you which devices and browsers visit your website, so you can optimize for each visitor.

      -
    • -
    • -

      Campaign Report easily unlocks all of your Google Analytics UTM tracking to show you how effective your marketing efforts have been.

      -
    • -
    • -

      Pages Report shows you which pages are most poplular on your website, and shows impressive metrics like bounce rate, engaged sessions to help you optimize.

      -
    • -
    • -

      Coupon Report showcases your coupon usage, and shows important metrics like average order value and revenue.

      -
    • -
    • -

      Cart Abandon Report shows you which products and the amount of revenue your customer’s are leaving in their carts.

      -
    • -
    • -

      Funnel Report visually shows you how many people view items in your store, add to cart, and make a purchase. You can easily breakdown the funnel and conversion report into channel, and customize your dates for in depth analysis. Works automatically with WooCommerce analytics, and Easy Digital Downloads.

      -
    • -
    -

    Our custom Google Analytics Dashboard reports are based on over 12+ years of online business experience. We built MonsterInsights to be the Google Analytics plugin that we wish we had.

    -

    We currently use MonsterInsights on all our portfolio companies which include both media sites generating tens of millions of pageviews and eCommerce sites generating millions in sales.

    -
    -

    I love being able to drill down into the analytics via the reporting feature. I have the PRO version and it makes a big difference what you can analyze. I’m glad that I can integrate with Pretty Links too!
    - Kim Beasley – MonsterInsights user

    -
    -

    Simply put, MonsterInsights allow you to take full advantage of all the powerful Google Analytics features.

    -

    After reading this exhaustive feature list, you can probably imagine why MonsterInsights is the best Google Analytics plugin for WordPress.

    -

    Give MonsterInsights a try.

    -

    Credits

    -

    This plugin is created by Chris Christoff and Syed Balkhi with sponsorship from WPBeginner.

    -

    Branding Guidelines

    -

    MonsterInsights® is a registered trademark of MonsterInsights LLC. When writing about the Google Analytics for WordPress plugin by MonsterInsights, please make sure to uppercase the first letters of both word.

    -
      -
    • MonsterInsights (correct)
    • -
    • Monster Insights (incorrect)
    • -
    • monsterinsights (incorrect)
    • -
    • monsterinsight (incorrect)
    • -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "MonsterInsights – Google Analytics Dashboard for WordPress (Website Stats Made Easy)", "slug": "google-analytics-for-wordpress", "tags": {"analytics": "analytics", "google-analytics": "google analytics", "website-analytics": "website analytics", "wordpress-analytics": "WordPress analytics", "google-analytics-dashboard": "google analytics dashboard"}, "added": "2007-09-14", "icons": {"1x": "https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=2976619", "svg": "https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=2976619"}, "author": "chriscct7", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/google-analytics-for-wordpress/assets/banner-772x250.png?rev=2159532", "high": "https://ps.w.org/google-analytics-for-wordpress/assets/banner-1544x500.png?rev=2159532"}, "ratings": {"1": 261, "2": 53, "3": 44, "4": 90, "5": 2638}, "version": "9.9.0", "homepage": "https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=pluginurl&utm_content=7%2E0%2E0", "requires": "5.6.0", "sections": {"faq": "

    For all frequently asked questions, and their answers, check the MonsterInsights Docs.

    \n\n
    \nWhy use Google Analytics vs WordPress stats?\n\n

    \n

    Native WordPress stats plugins will always slow down your website because they rely on your WordPress hosting server. Most of them do not provide accurate WordPress analytics either.

    \n

    Some WordPress stats plugins use third-party servers to mitigate this issue, but they all lack powerful features that Google Analytics can offer.

    \n

    Google Analytics is the #1 analytics solution in the world. It comes with all the powerful features that you can ever ask for. MonsterInsights makes it easy for you to use all advanced Google Analytics features in WordPress.

    \n

    \n
    \nWhy choose Google Analytics by MonsterInsights vs Google Site Kit?\n\n

    \n

    The MonsterInsights Google Analytics plugin is built for all types of websites, large or small, to get up and running quickly with Google Analytics and Google Analytics 4.

    \n

    Beyond simply providing a Google Analytics dashboard, our plugin makes configuring advanced features as easy as point-and-click that would otherwise still require a developer to implement.

    \n

    Our Google Analytics plugin also includes many features such as Google Ads tracking, Google Optimize support, form conversion reporting, goal tracking, Search Console integration, Pagespeed insights, advanced eCommerce tracking, and more.

    \n

    There’s a reason over 3 million users have trusted MonsterInsights to provide Google Analytics data to their website.

    \n

    \n
    \nCan I use MonsterInsights together with another Google Analytics plugin?\n\n

    \n

    No. You should only use one Google Analytics plugin on your WordPress site. If you use multiple Google Analytics plugins, then you will compromise your data integrity.

    \n

    We recommend uninstalling other Google Analytics plugins before you install MonsterInsights.

    \n

    \n
    \nWhy does MonsterInsights load Google Analytics in WordPress header section?\n\n

    \n

    Some people believe that loading Google Analytics in WordPress header will slow down your website. That’s a myth. The Analytics code loads asynchronously which means that it does not impact your website speed at all.

    \n

    MonsterInsights loads code in WordPress header because it makes sure that you have the most accurate tracking.

    \n

    \n
    \nDoes MonsterInsights work with ad blockers?\n\n

    \n

    As of version 7.18, Pro users of MontersInsights can use a locally hosted version of Google Analytics (gtag) which helps with tracking data accuracy. This version can also improve the performance of your website, compared to hosting the script on Google Analytics servers.

    \n

    \n
    \nCan I hide Google Analytics from tracking Administrators and Editors?\n\n

    \n

    Yes. By default we do not send data to Google Analytics for logged-in WordPress administrators and editors. You can add easily block additional user roles.

    \n

    \n
    \nHow does MonsterInsights help with Google Analytics GDPR compliance?\n\n

    \n

    MonsterInsights helps make Google Analytics GDPR compliance easier for business owners.

    \n

    Our EU compliance addon allows you to:

    \n
      \n
    • Anonymize IPs to Google Analytics
    • \n
    • Disable the Demographics and Interest Reports for Remarketing and Advertising
    • \n
    • Disable UserID and author name tracking
    • \n
    • Integrate with Cookie Notice and CookieBot plugins to collect user consent before tracking
    • \n
    • Integrate with Google AMP Consent Box before enable tracking
    • \n
    • Integrate with Google Analytics Chrome browser opt-out extension and built-in cookie opt-out system
    • \n
    • Offer Easy Opt Out link for Google Analytics tracking
    • \n
    \n

    While no single plugin can guarantee 100% GDPR compliance in WordPress, MonsterInsights goes to great lengths in helping business owners with GDPR compliance.

    \n

    For more details, see: GDPR and MonsterInsights – Everything You Need to Know.

    \n

    \n
    \nWhich eCommerce plugins are compatible with MonsterInsights Enhanced Ecommerce Tracking feature?\n\n

    \n

    If you are looking to enable Google Analytics Ecommerce tracking in WordPress, then MonsterInsights is the best solution to do that.

    \n

    With just 1-click, you can enable Google Analytics Enhanced Ecommerce Tracking for WooCommerce and see WooCommerce analytics report right inside your WordPress dashboard.

    \n

    MonsterInsights Enhanced eCommerce tracking works out of the box with WooCommerce, Easy Digital Downloads, MemberPress and 10+ other advanced integrations. These include:

    \n
      \n
    • Yoast SEO – Easily view and analyze YoastSEO scores directly inside Google Analytics with custom dimensions.
    • \n
    • Gravity Forms, Formidable Forms, Contact Forms 7 – View form events and conversion statistics.
    • \n
    • LifterLMS – Track sales data inside Google Analytics.
    • \n
    • GiveWP – Track donations as eCommerce events inside Google Analytics.
    • \n
    • Restrict Content Pro – View Google Analytics eCommerce data.
    • \n
    • WordPress Comment Forms – See which articles are driving the most engagement inside Google Analytics.
    • \n
    • Generic Forms – Easily add Google Analytics conversion tracking data to your website, no coding needed for all types of forms.
    • \n
    \n

    \n
    \nDoes MonsterInsights work on WordPress multisite?\n\n

    \n

    Yes. MonsterInsights offers the most comprehensive Google Analytics solution for WordPress multi-site.

    \n

    It comes with advanced permission control, sample rate control, and other options that you need to properly enable Google Analytics on WordPress multisite.

    \n

    \n
    \nDoes MonsterInsights support Google Analytics v4 (GAv4)\n\n

    \n

    Yes, we fully support Google Analytics v4 (GAv4) properties as well as GAv3 (Universal) properties. In fact, you can track your site to both at the same time using our exclusive dual tracking feature.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy BrahimLachgar (bralachcodex) on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very Good

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    nice and ease

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nurunnobi2924 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this is an very good plugin to use

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy martin80906 on October 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks, Google!

    \n\n\n\n

    Martin H.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tutto va bene

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy velikaya on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    recensione max

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Website Analytics Made Simple and Powerful!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy willfulmer on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    MonsterInsights makes tracking website performance effortless, with clear, real-time insights right inside WordPress. It’s powerful yet beginner-friendly—an absolute 5-star must-have for understanding and growing your site!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful plugin !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy a3design on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useful plugin, super simple to use!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Hace su trabajo

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Mariana (creatiburon) on September 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Es un plugin útil para personas que no tienen conocimientos técnicos y que necesitan tener un resumen en su web de la actividad en Analytics

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Da evitare

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy duccio75 on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Oltre al plugin per gli articoli correlati vengono installati anche diversi altri plugin non richiesti, come Wpform, AISEO e molti altri, alcuni dei quali vanno in conflitto con altri plugin già presenti sul sito.
    Mi ci sono voluti diversi minuti per ripulire il sito da tutti i plugin che mi sono stati installati e ancora mi sono rimaste tracce.
    Adesso devo andare a scollegarlo da Google Analitycs.
    Evitate questo plugin e vi risparmierete un sacco di grane inutili.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ashphillips387 on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Amazing tool

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jgaffphoto on September 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great tool

    \n
    \n
    \n", "changelog": "

    9.9.0: October 15, 2025

    \n
      \n
    • New: Unlock new organic traffic insights with our completely updated Google Search Console report
    • \n
    • New: Automatically track eCommerce sales with LinkedIn and SnapChat PPC campaigns-
    • \n
    • Updated: Various bug fixes and updates
    • \n
    \n

    9.8.0: September 10, 2025

    \n
      \n
    • New: Google Ads Integration! Set up Google Ads campaigns directly from the MonsterInsights dashboard.
    • \n
    • New: AI Traffic Report – see what LLMs are sending traffic to your website
    • \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.7.0: August 7, 2025

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.6.1: June 26, 2025

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.6.0: June 17, 2025

    \n
      \n
    • Enhancement: Updated Forms Report to include more metrics and stats
    • \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.5.3: May 14, 2025

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.5.2: May 6, 2025

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.5.1: May 5, 2025

    \n
      \n
    • New: Support for Pinterest PPC conversion tracking
    • \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.4.1: March 27, 2025

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.4.0: March 25, 2025

    \n
      \n
    • New: Support for TikTok PPC conversion tracking
    • \n
    • Enhancement: Adding translatable strings throughout our plugin. More to come!
    • \n
    • Enhancement: Our monthly statistics emails got a fresh facelift
    • \n
    • Enhancement: Our plugin code now follows WP VIP standards
    • \n
    \n

    9.3.0: February 18, 2025

    \n
      \n
    • New: Overview Report Metrics
    • \n
    • New: Cart Abandonment Report
    • \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.2.4: December 13, 2024

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.2.3: December 11, 2024

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.2.2: November 13, 2024

    \n
      \n
    • New: Our Year In Review report is here. This report will automatically show up starting on January 1
    • \n
    • Update: We’ll now check to ensure your website time zone matches Google Analytics
    • \n
    \n

    9.2.1: October 31, 2024

    \n
      \n
    • Fixed: Fixed a bug in the Headline Analyzer tool causing errors in WordPress versions lower than 6.6
    • \n
    \n

    9.2.0: October 23, 2024

    \n
      \n
    • New: Country and region report to see where and how your visitors find your website
    • \n
    • New: Advanced tracking options for users of Google Tag Manager
    • \n
    • New: SEO & RankMath Integrations with our Custom Dimensions addon
    • \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.1.1: September 24, 2024

    \n
      \n
    • Fix: We fixed a PHP issue related to translations.
    • \n
    \n

    9.1.0: September 23, 2024

    \n
      \n
    • New: Stats at a Glance report shows you information about your website in a whole new way.
    • \n
    • New: Google Ads Enhanced Conversion Support & Meta Conversion API Support (CAPI) for PPC Campaigns
    • \n
    • Enhanced: Updated Google Analytics tag loading order to help increase Core Web Vital scores.
    • \n
    • Fixed: Lots of minor updates and bug fixes.
    • \n
    \n

    9.0.1: August 21, 2024

    \n
      \n
    • Fix: We resolved an issue in the Onboarding Recommended Addons page.
    • \n
    \n

    9.0.0: July 29, 2024

    \n
      \n
    • New: Conversations AI – chat with your website’s analytics without any need to read reports
    • \n
    • New: AI Insights – Get automated insights about your website with the power of AI
    • \n
    • Fix: We fixed a PHP error occurring inside our Forms reports
    • \n
    \n

    8.28.0: July 08, 2024

    \n

    -New: Date Comparisons – Now you can easily compare your stats on any chart or graph.
    \n-Enhancement: We updated tooltips to make it easier to understand some options.

    \n

    8.27.0: May 29, 2024

    \n
      \n
    • New: Site Notes Automations addon.
    • \n
    • Fix: We fixed an issue related to eCommerce abandoned checkouts.
    • \n
    • Fix: We fixed an issue related to UserJourney report pages.
    • \n
    • Enhancement: We improved the notification system.
    • \n
    \n

    8.26.0: April 16, 2024

    \n
      \n
    • New: Added new Exceptions Report
    • \n
    • New: Added new Google Consent support.
    • \n
    • Enhancement: We improved the country list in the Funnel Report.
    • \n
    • Fix: We solved an issue occurring in the plugin onboarding process.
    • \n
    • Fix: We solved a style issue related to abandoned checkouts in reports.
    • \n
    \n

    8.25.0: March 05, 2024

    \n
      \n
    • Enhancement: Improved Site Speed report.
    • \n
    • Fix: We solved an issue related to flag icons.
    • \n
    • Fix: We solved some JavaScript errors occurring with third-party plugins.
    • \n
    \n

    8.24.0: February 19, 2024

    \n
      \n
    • New: Site Insights Gutenberg block. Easily share website stats with your visitors.
    • \n
    • New: PrivacyGuard Feature – Proactively block PII (Personally Identifiable Information) from ever making it to Google Analytics
    • \n
    • New: EEA Checker tool for Google Ads / Analytics Requirements
    • \n
    • Fix: We solved an issue occurring in the Weekly/Monthly Email reports.
    • \n
    • Fix: We solved an issue occurring with Popular Posts.
    • \n
    • Fix: We solved an issue occurring with Tracking Video Title in Divi theme.
    • \n
    \n

    8.23.1: December 18, 2023

    \n
      \n
    • Fix: We fixed an issue related to All in One SEO plugin.
    • \n
    \n

    8.23.0: December 14, 2023

    \n
      \n
    • New: Our Year In Review report is here. This report will automatically show up starting in January 1 until Jan 14 2024.
    • \n
    • Fix: We fixed an issue occurring with Site Notes.
    • \n
    • Fix: We fixed minor issues in the Gutenberg blocks.
    • \n
    • Fix: We added support for WooCommerce custom order status.
    • \n
    \n

    8.22.0: November 29, 2023

    \n
      \n
    • Enhancement: Improved Social Media report.
    • \n
    • Fix: We fixed the View More link in the Email Summaries.
    • \n
    • Fix: We fixed a Vue warning in Site Notes.
    • \n
    • Fix: We fixed the sporadic Error 429 from Google Analytics API.
    • \n
    • Fix: We fixed a duplicate error message in the Setup Checklist.
    • \n
    \n

    8.21.0: November 13, 2023

    \n
      \n
    • New: Social Media report.
    • \n
    • New: Exclude query parameters from GA4 data stream.
    • \n
    • Enhancement: Improved compatibility towards WordPress 6.4.1.
    • \n
    • Fix: We fixed an issue that occurred with Pretty Links.
    • \n
    \n

    8.20.2: November 01, 2023

    \n
      \n
    • Fix: Popular posts, we fixed a bug occurring in curated popular posts.
    • \n
    \n

    8.20.1: October 09, 2023

    \n
      \n
    • Fix: We updated our lite emails to render better inside multiple mail clients. We also changed the emails to send out monthly instead of weekly. To disable emails go to Settings -> Advanced – Toggle the “Enable Email Summaries.
    • \n
    \n

    8.20: October 03, 2023

    \n
      \n
    • New: Google Analytics and eCommerce support for WishList Member
    • \n
    • New: Google Analytics and eCommerce support for WPCharitable
    • \n
    • Enhanced: Improved support for PHP 8.2.
    • \n
    • Enhanced: Improved Site Health compatibility.
    • \n
    • Fixed: Restrict Content Pro, we fixed the refund event in GoogleAnalytics when order status is failed or abandoned.
    • \n
    • Fixed: We fixed some minor bugs related to notifications.
    • \n
    • Fixed: Popular posts, we fixed a bug occurring in curated popular posts.
    • \n
    • Fixed: We fixed some minor bugs related to User Journey.
    • \n
    \n

    8.19: August 23, 2023

    \n
      \n
    • New: Ecommerce funnel report for WooCommerce and Easy Digital Downloads.
    • \n
    • New: Setup checklist to get up and running faster
    • \n
    • Enhanced: Improved support for PHP 8.2.
    • \n
    • Fixed: We fixed a bug that occurred with Yoast SEO Scores.
    • \n
    • Fixed: We fixed a bug in the Pretty Links integration.
    • \n
    \n

    8.18: July 24, 2023

    \n
      \n
    • New: Added 6 Completely New Pro Reports to bring the power of Google Analytics into your WordPress dashboard.
    • \n
    • Fixed: We fixed an issue that prevented tracking with WPML.
    • \n
    • Fixed: We fixed an issue that prevented tracking the User Journey with MemberPress.
    • \n
    \n

    8.17: June 29, 2023

    \n
      \n
    • Updated: Removed dual tracking panel and limit reporting to GA4 only properties.
    • \n
    • Fixed: We fixed a bug in the WPForms integration.
    • \n
    • Fixed: We fixed a bug in the AffiliateWP integration.
    • \n
    \n

    8.16: June 19, 2023

    \n
      \n
    • New: User Journey report now available! See all of your website’s purchases in one screen.
    • \n
    • Update: We updated the Popular Posts to support themes that allow widgets.
    • \n
    • Fixed: We fixed some layout issues in exported PDF reports.
    • \n
    • Fixed: We fixed the deprecated YOAST function WPSEO_Utils::translate_score().
    • \n
    • Fixed: We fixed a bug occurring while downloading files having the file download tracking enabled.
    • \n
    \n

    8.15: May 03, 2023

    \n
      \n
    • New: Site Notes allows you to record important website events right inside your WordPress dashboard.
    • \n
    • Update: Fix EDD integration.
    • \n
    • Update: Mobile screen optimizations.
    • \n
    \n

    8.14.1: Apr 11, 2023

    \n
      \n
    • Fixed: We fixed a PHP warning error and added additional security hardening.
    • \n
    \n

    8.14.0: Mar 29, 2023

    \n
      \n
    • New: Our New PPC Tracking addon allows you to effortlessly track sales inside Google Ads, Microsoft Ads, and Meta.
    • \n
    • Enhancement: We updated and tweaked lots elements to make our dashboard easier to use
    • \n
    \n

    8.13.1: Mar 14, 2023

    \n
      \n
    • Fixed: We fixed a bug that could cause an issue if Google’s API endpoint returned a non-200 response.
    • \n
    \n

    8.13.0: Mar 13, 2023

    \n
      \n
    • Enhancement: We enhanced the notifications user experience.
    • \n
    • Fixed: We fixed the PDF reports header.
    • \n
    • Update: We applied additional security hardening.
    • \n
    \n

    8.12.1: Jan 12, 2023

    \n
      \n
    • Fix: We made updates to authentication
    • \n
    \n

    8.12.0: Jan 12, 2023

    \n
      \n
    • Enhancement: We updated and fixed some UI/UX elements to make MonsterInsights easier to use
    • \n
    • Enhancement: We optimized our Javascript code to work better with minification plugins
    • \n
    • Enhancement: We optimized our code to work better with PHP8
    • \n
    \n

    See our changelog for previous releases.

    \n", "description": "

    Google Analytics Plugin for WordPress

    \n

    With over 3 million active installs, MonsterInsights is the most popular Google Analytics plugin for WordPress.

    \n

    We believe that it’s easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights shows you the analytics and stats that matter, so you can grow your business with confidence.

    \n

    At MonsterInsights, we make it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.

    \n

    Unlike other Google Analytics plugins, MonsterInsights allows you to enable all advanced Google Analytics tracking features with just a few clicks (no need to hire a developer).

    \n

    The best part is that MonsterInsights comes with an analytics dashboard for WordPress that shows you actionable analytics reports right inside your WordPress dashboard. We have created customized reports that eliminate the fluff and only show you the stats that matter, so you can see exactly what’s working and what’s not!

    \n

    Simply put, MonsterInsights is the most complete Google Analytics plugin for WordPress that’s both EASY and POWERFUL.

    \n

    That’s why millions of small businesses and top companies like Microsoft, Bloomberg, FedEx, Yelp, Subway, etc. use MonsterInsights to setup Google Analytics on their WordPress sites.

    \n
    \n

    MonsterInsights Pro
    \n This plugin is the lite version of MonsterInsights Pro plugin that comes with all the tracking features you will ever need including events tracking, ecommerce tracking, custom dimensions tracking, page speed reports, popular post tracking, custom dimensions, affiliate link tracking, video tracking and tons more. Click here to purchase the best premium Google Analytics plugin for WordPress now!

    \n
    \n

    We took the pain out of installing Google Analytics in WordPress and made it easy. Here’s why over 3 million smart business owners, designers, and developers love MonsterInsights, and you will too!

    \n

    \n

    Quick & Easy Google Analytics Setup

    \n

    Properly setting up Google Analytics is complicated. You have to either hire a developer or learn how to add advanced code snippets to your website in many different areas. This process can take days or weeks…and can even break your website!

    \n

    With MonsterInsights, we made it “effortless” to properly setup Google Analytics in WordPress. Yes, you can enable all advanced Google Analytics features with just a few clicks.

    \n

    If you can point-and-click, then you can set up Google Analytics inside WordPress and start seeing insights in under 15 minutes (no code necessary).

    \n

    See what one business owner is saying about MonsterInsights:

    \n
    \n

    It just works. Really easy way to insert Google Analytics tracking code and keep it there when switching themes. No need to copy/paste code anywhere. This is the best way to handle Google Analytics in WordPress.
    \n Steven Gliebe

    \n
    \n

    Google Analytics Dashboard

    \n

    Our goal at MonsterInsights is to make Google Analytics easy and accessible for everyone.

    \n

    We understand that Google Analytics has a steep learning curve. That’s why MonsterInsights comes with a built-in Google Analytics Dashboard for your WordPress site, so you can see all the useful information about your visitors right inside your WordPress dashboard.

    \n

    We have even created customized reports to help you filter through the noise and see the stats that really matter!

    \n
      \n
    • \n

      Audience Report shows you detailed insights like which country your visitors are coming from, what are they most interested in, which device are they using, their age, gender, and more.

      \n
    • \n
    • \n

      Publishers Report helps you understand which pages your visitors are arriving, and which pages they are leaving from. Designed specifically for blogs and other resource sites, this powerful report will show you which outbound links are getting clicked so you can easily optimize for higher conversions.

      \n
    • \n
    • \n

      Content Report shows you stats on exactly which content gets the most visits, so you can stop guessing and start creating content that gets more traffic and conversion.

      \n
    • \n
    • \n

      Ecommerce Report shows you important store stats like total revenue, conversion rate, average order value, top referral sources, and more (all in one place).

      \n
    • \n
    • \n

      Forms Report shows you conversion stats for various contact forms and lead forms on your website, so you can improve the conversions to grow your business.

      \n
    • \n
    • \n

      Search Console Report shows you exactly how well your website is ranking in Google, so you can further optimize your SEO to grow your organic traffic.

      \n
    • \n
    • \n

      Custom Dimensions Report helps you dig deeper by showing you useful stats like who are your most popular authors, what are the best publication times, which are your most popular categories or tags, how well are your Yoast focus keywords and SEO score performing, and more.

      \n
    • \n
    • \n

      Site Speed Report makes it easy to track pagespeed insights and loading times for your website and get the information you need to improve user experience and your SEO rankings.

      \n
    • \n
    • \n

      Landing Page Report instantly shows you which pages need to be optimized to increase engagement and help you make more money without needing to log into Google Analytics.

      \n
    • \n
    • \n

      Source and Medium Report gives you an easy view of Google Analytics UTM tracking to see where you traffic comes from.

      \n
    • \n
    • \n

      Technology Report shows you which devices and browsers visit your website, so you can optimize for each visitor.

      \n
    • \n
    • \n

      Campaign Report easily unlocks all of your Google Analytics UTM tracking to show you how effective your marketing efforts have been.

      \n
    • \n
    • \n

      Pages Report shows you which pages are most poplular on your website, and shows impressive metrics like bounce rate, engaged sessions to help you optimize.

      \n
    • \n
    • \n

      Coupon Report showcases your coupon usage, and shows important metrics like average order value and revenue.

      \n
    • \n
    • \n

      Cart Abandon Report shows you which products and the amount of revenue your customer’s are leaving in their carts.

      \n
    • \n
    • \n

      Funnel Report visually shows you how many people view items in your store, add to cart, and make a purchase. You can easily breakdown the funnel and conversion report into channel, and customize your dates for in depth analysis. Works automatically with WooCommerce analytics, and Easy Digital Downloads.

      \n
    • \n
    \n

    Our custom Google Analytics Dashboard reports are based on over 12+ years of online business experience. We built MonsterInsights to be the Google Analytics plugin that we wish we had.

    \n

    We currently use MonsterInsights on all our portfolio companies which include both media sites generating tens of millions of pageviews and eCommerce sites generating millions in sales.

    \n
    \n

    I love being able to drill down into the analytics via the reporting feature. I have the PRO version and it makes a big difference what you can analyze. I’m glad that I can integrate with Pretty Links too!
    \n Kim Beasley – MonsterInsights user

    \n
    \n

    Simply put, MonsterInsights allow you to take full advantage of all the powerful Google Analytics features.

    \n

    After reading this exhaustive feature list, you can probably imagine why MonsterInsights is the best Google Analytics plugin for WordPress.

    \n

    Give MonsterInsights a try.

    \n

    Credits

    \n

    This plugin is created by Chris Christoff and Syed Balkhi with sponsorship from WPBeginner.

    \n

    Branding Guidelines

    \n

    MonsterInsights® is a registered trademark of MonsterInsights LLC. When writing about the Google Analytics for WordPress plugin by MonsterInsights, please make sure to uppercase the first letters of both word.

    \n
      \n
    • MonsterInsights (correct)
    • \n
    • Monster Insights (incorrect)
    • \n
    • monsterinsights (incorrect)
    • \n
    • monsterinsight (incorrect)
    • \n
    \n", "screenshots": "
    1. \"The

      The overview report

    2. \"Top

      Top countries and referrals

    3. \"Top

      Top posts and pages

    4. \"Authentication

      Authentication with MonsterInsights

    5. \"Settings

      Settings page

    6. \"File

      File download tracking

    7. \"eCommerce

      eCommerce tracking - no configuration required (Pro feature)

    8. \"eCommerce

      eCommerce report (Pro feature)

    9. \"Search

      Search console report (Pro feature)

    10. \"Custom

      Custom dimensions tracking (Pro feature)

    11. \"Custom

      Custom Dimensions report (Pro feature)

    ", "installation": "
      \n
    1. Install Google Analytics for WordPress by MonsterInsights either via the WordPress.org plugin repository or by uploading the files to your server. (See instructions on how to install a WordPress plugin)
    2. \n
    3. Activate Google Analytics for WordPress by MonsterInsights.
    4. \n
    5. Navigate to the Insights tab in your WordPress admin menu and configure the plugin.
    6. \n
    7. Want more features? Purchase MonsterInsights Pro!
    8. \n
    \n"}, "versions": {"8.15": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.15.zip", "8.16": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.16.zip", "8.17": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.17.zip", "8.18": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.18.zip", "8.1.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.1.0.zip", "8.2.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.2.0.zip", "8.3.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.3.0.zip", "8.3.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.3.1.zip", "8.3.2": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.3.2.zip", "8.3.3": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.3.3.zip", "8.3.4": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.3.4.zip", "8.4.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.4.0.zip", "8.5.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.5.0.zip", "8.5.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.5.1.zip", "8.5.2": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.5.2.zip", "8.5.3": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.5.3.zip", "8.6.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.6.0.zip", "8.7.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.7.0.zip", "8.8.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.8.0.zip", "8.8.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.8.1.zip", "8.8.2": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.8.2.zip", "8.9.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.9.0.zip", "8.9.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.9.1.zip", "9.0.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.0.0.zip", "9.0.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.0.1.zip", "9.1.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.1.0.zip", "9.1.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.1.1.zip", "9.2.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.2.0.zip", "9.2.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.2.1.zip", "9.2.2": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.2.2.zip", "9.2.3": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.2.3.zip", "9.2.4": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.2.4.zip", "9.3.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.3.0.zip", "9.3.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.3.1.zip", "9.4.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.4.0.zip", "9.4.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.4.1.zip", "9.5.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.5.1.zip", "9.5.2": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.5.2.zip", "9.5.3": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.5.3.zip", "9.6.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.6.0.zip", "9.6.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.6.1.zip", "9.7.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.7.0.zip", "9.8.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.8.0.zip", "9.9.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.9.0.zip", "trunk": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.zip", "8.10.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.10.0.zip", "8.10.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.10.1.zip", "8.11.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.11.0.zip", "8.12.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.12.0.zip", "8.12.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.12.1.zip", "8.13.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.13.0.zip", "8.13.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.13.1.zip", "8.14.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.14.0.zip", "8.14.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.14.1.zip", "8.19.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.19.0.zip", "8.20.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.20.0.zip", "8.20.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.20.1.zip", "8.21.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.21.0.zip", "8.22.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.22.0.zip", "8.23.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.23.0.zip", "8.23.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.23.1.zip", "8.24.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.24.0.zip", "8.25.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.25.0.zip", "8.26.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.26.0.zip", "8.27.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.27.0.zip", "8.28.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.28.0.zip"}, "downloaded": 240215068, "description": "

    Google Analytics Plugin for WordPress

    \n

    With over 3 million active installs, MonsterInsights is the most popular Google Analytics plugin for WordPress.

    \n

    We believe that it’s easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights shows you the analytics and stats that matter, so you can grow your business with confidence.

    \n

    At MonsterInsights, we make it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.

    \n

    Unlike other Google Analytics plugins, MonsterInsights allows you to enable all advanced Google Analytics tracking features with just a few clicks (no need to hire a developer).

    \n

    The best part is that MonsterInsights comes with an analytics dashboard for WordPress that shows you actionable analytics reports right inside your WordPress dashboard. We have created customized reports that eliminate the fluff and only show you the stats that matter, so you can see exactly what’s working and what’s not!

    \n

    Simply put, MonsterInsights is the most complete Google Analytics plugin for WordPress that’s both EASY and POWERFUL.

    \n

    That’s why millions of small businesses and top companies like Microsoft, Bloomberg, FedEx, Yelp, Subway, etc. use MonsterInsights to setup Google Analytics on their WordPress sites.

    \n
    \n

    MonsterInsights Pro
    \n This plugin is the lite version of MonsterInsights Pro plugin that comes with all the tracking features you will ever need including events tracking, ecommerce tracking, custom dimensions tracking, page speed reports, popular post tracking, custom dimensions, affiliate link tracking, video tracking and tons more. Click here to purchase the best premium Google Analytics plugin for WordPress now!

    \n
    \n

    We took the pain out of installing Google Analytics in WordPress and made it easy. Here’s why over 3 million smart business owners, designers, and developers love MonsterInsights, and you will too!

    \n

    \n

    Quick & Easy Google Analytics Setup

    \n

    Properly setting up Google Analytics is complicated. You have to either hire a developer or learn how to add advanced code snippets to your website in many different areas. This process can take days or weeks…and can even break your website!

    \n

    With MonsterInsights, we made it “effortless” to properly setup Google Analytics in WordPress. Yes, you can enable all advanced Google Analytics features with just a few clicks.

    \n

    If you can point-and-click, then you can set up Google Analytics inside WordPress and start seeing insights in under 15 minutes (no code necessary).

    \n

    See what one business owner is saying about MonsterInsights:

    \n
    \n

    It just works. Really easy way to insert Google Analytics tracking code and keep it there when switching themes. No need to copy/paste code anywhere. This is the best way to handle Google Analytics in WordPress.
    \n Steven Gliebe

    \n
    \n

    Google Analytics Dashboard

    \n

    Our goal at MonsterInsights is to make Google Analytics easy and accessible for everyone.

    \n

    We understand that Google Analytics has a steep learning curve. That’s why MonsterInsights comes with a built-in Google Analytics Dashboard for your WordPress site, so you can see all the useful information about your visitors right inside your WordPress dashboard.

    \n

    We have even created customized reports to help you filter through the noise and see the stats that really matter!

    \n
      \n
    • \n

      Audience Report shows you detailed insights like which country your visitors are coming from, what are they most interested in, which device are they using, their age, gender, and more.

      \n
    • \n
    • \n

      Publishers Report helps you understand which pages your visitors are arriving, and which pages they are leaving from. Designed specifically for blogs and other resource sites, this powerful report will show you which outbound links are getting clicked so you can easily optimize for higher conversions.

      \n
    • \n
    • \n

      Content Report shows you stats on exactly which content gets the most visits, so you can stop guessing and start creating content that gets more traffic and conversion.

      \n
    • \n
    • \n

      Ecommerce Report shows you important store stats like total revenue, conversion rate, average order value, top referral sources, and more (all in one place).

      \n
    • \n
    • \n

      Forms Report shows you conversion stats for various contact forms and lead forms on your website, so you can improve the conversions to grow your business.

      \n
    • \n
    • \n

      Search Console Report shows you exactly how well your website is ranking in Google, so you can further optimize your SEO to grow your organic traffic.

      \n
    • \n
    • \n

      Custom Dimensions Report helps you dig deeper by showing you useful stats like who are your most popular authors, what are the best publication times, which are your most popular categories or tags, how well are your Yoast focus keywords and SEO score performing, and more.

      \n
    • \n
    • \n

      Site Speed Report makes it easy to track pagespeed insights and loading times for your website and get the information you need to improve user experience and your SEO rankings.

      \n
    • \n
    • \n

      Landing Page Report instantly shows you which pages need to be optimized to increase engagement and help you make more money without needing to log into Google Analytics.

      \n
    • \n
    • \n

      Source and Medium Report gives you an easy view of Google Analytics UTM tracking to see where you traffic comes from.

      \n
    • \n
    • \n

      Technology Report shows you which devices and browsers visit your website, so you can optimize for each visitor.

      \n
    • \n
    • \n

      Campaign Report easily unlocks all of your Google Analytics UTM tracking to show you how effective your marketing efforts have been.

      \n
    • \n
    • \n

      Pages Report shows you which pages are most poplular on your website, and shows impressive metrics like bounce rate, engaged sessions to help you optimize.

      \n
    • \n
    • \n

      Coupon Report showcases your coupon usage, and shows important metrics like average order value and revenue.

      \n
    • \n
    • \n

      Cart Abandon Report shows you which products and the amount of revenue your customer’s are leaving in their carts.

      \n
    • \n
    • \n

      Funnel Report visually shows you how many people view items in your store, add to cart, and make a purchase. You can easily breakdown the funnel and conversion report into channel, and customize your dates for in depth analysis. Works automatically with WooCommerce analytics, and Easy Digital Downloads.

      \n
    • \n
    \n

    Our custom Google Analytics Dashboard reports are based on over 12+ years of online business experience. We built MonsterInsights to be the Google Analytics plugin that we wish we had.

    \n

    We currently use MonsterInsights on all our portfolio companies which include both media sites generating tens of millions of pageviews and eCommerce sites generating millions in sales.

    \n
    \n

    I love being able to drill down into the analytics via the reporting feature. I have the PRO version and it makes a big difference what you can analyze. I’m glad that I can integrate with Pretty Links too!
    \n Kim Beasley – MonsterInsights user

    \n
    \n

    Simply put, MonsterInsights allow you to take full advantage of all the powerful Google Analytics features.

    \n

    After reading this exhaustive feature list, you can probably imagine why MonsterInsights is the best Google Analytics plugin for WordPress.

    \n

    Give MonsterInsights a try.

    \n

    Credits

    \n

    This plugin is created by Chris Christoff and Syed Balkhi with sponsorship from WPBeginner.

    \n

    Branding Guidelines

    \n

    MonsterInsights® is a registered trademark of MonsterInsights LLC. When writing about the Google Analytics for WordPress plugin by MonsterInsights, please make sure to uppercase the first letters of both word.

    \n
      \n
    • MonsterInsights (correct)
    • \n
    • Monster Insights (incorrect)
    • \n
    • monsterinsights (incorrect)
    • \n
    • monsterinsight (incorrect)
    • \n
    \n", "donate_link": "http://www.wpbeginner.com/wpbeginner-needs-your-help/", "num_ratings": 3086, "screenshots": {"1": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-1.png?rev=2142744", "caption": "The overview report"}, "2": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-2.png?rev=2142744", "caption": "Top countries and referrals"}, "3": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-3.png?rev=2142744", "caption": "Top posts and pages"}, "4": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-4.png?rev=2012676", "caption": "Authentication with MonsterInsights"}, "5": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-5.png?rev=2012676", "caption": "Settings page"}, "6": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-6.png?rev=2012676", "caption": "File download tracking"}, "7": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-7.png?rev=2012676", "caption": "eCommerce tracking - no configuration required (Pro feature)"}, "8": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-8.png?rev=2142744", "caption": "eCommerce report (Pro feature)"}, "9": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-9.png?rev=2142744", "caption": "Search console report (Pro feature)"}, "10": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-10.jpg?rev=2012676", "caption": "Custom dimensions tracking (Pro feature)"}, "11": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-11.png?rev=2142744", "caption": "Custom Dimensions report (Pro feature)"}}, "support_url": "https://wordpress.org/support/plugin/google-analytics-for-wordpress/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "chriscct7": {"avatar": "https://secure.gravatar.com/avatar/9c0affc8ad4a25431f48a8563264a089650f6332b868bd0e7c999f72741967ed?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/chriscct7/", "display_name": "chriscct7"}}, "last_updated": "2025-10-15 2:20pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.9.0.zip", "author_profile": "https://profiles.wordpress.org/chriscct7/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f48d-731e-83c3-afb2ba7ba40d", "name": "MonsterInsights – Google Analytics Dashboard for WordPress (Website Stats Made Easy)", "slug": "google-analytics-for-wordpress", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760538000, "version": "9.9.0"}, "support_threads": 8, "requires_plugins": [], "short_description": "The best free Google Analytics plugin for WordPress. See how visitors find and use your website so you can grow your business with powerful analytics.", "author_block_count": 1, "author_block_rating": 92, "commercial_support_url": "", "support_threads_resolved": 6}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1bb1-723a-8eba-7e51bda89602', 'did:web:api.aspiredev.org:packages:wp-plugin:google-listings-and-ads', 'google-listings-and-ads', 'Google for WooCommerce', '

    Effortlessly sync your WooCommerce product feed across Google and be seen by millions of engaged shoppers with the Google for WooCommerce extension. Download and setup takes just five minutes.

    -

    Grow your business with $500 in Google Ads credit

    -

    To help you get started running campaigns, you can get $500 in ad credit when you spend your first $500 on Google Ads within 60 days.

    -

    Terms and conditions apply.

    -

    Sync your WooCommerce product feed to Google Merchant Center

    -

    Seamlessly integrate your WooCommerce store with Google and set yourself up for success.

    -
      -
    • -

      Sync your WooCommerce product feed to Google Merchant Center in just a few clicks. With our API-integrated Product Sync feature, all the data and functionalities from your WooCommerce store will be linked to Google with seamless server-to-server connection.

      -
    • -
    • -

      Have your product listings automatically updated in real time so your prices, promotions, inventories, and other product details stay accurate and synchronized across all your listings.

      -
    • -
    • -

      Access all the tools and features you need to manage your WooCommerce store and grow your business — centralized in one place.

      -
    • -
    -

    Find the right audiences and sell to high-intent customers with Google Ads

    -

    Now your WooCommerce store is discoverable on Google – and you’re ready to launch a Google Ads campaign!

    -
      -
    • Put Google AI to work for you by launching a Google Ads Performance Max campaign. Combined with your unique business insight, Performance Max can help you reach high-value customers using optimized placements, bidding, and more – all aligned with your budget and specific goals.
    • -
    • Showcase your products across Google Shopping, Search, YouTube, Gmail, Maps, Display, and Discover – from a single campaign. Manage all your Google Ads campaigns from your WooCommerce dashboard and on the WooCommerce Mobile App.
    • -
    • Save time and effort by using Google AI to help scale your asset creation. Performance Max will not only create additional copy and images based on the creative you upload, but also mix and match them for the best performing ad combinations.
    • -
    -

    Get custom insights and improve your conversions using Google tag

    -

    Once you’re running Google Ads campaigns, the Google tag feature in the extension enables conversion tracking to give you insights — so you can test and learn what works, and fine-tune your strategy.

    -
      -
    • Easily adjust your product listings in real time to reflect your learnings and business expertise. While the extension maps product attributes by default, it’s simple to modify if you’d like more control.
    • -
    • Leverage automatic Google tagging and conversion tracking to measure what’s working and what’s not. With insight into your customers’ purchase journey, you’ll be able to pinpoint how effectively your ads translate into valuable customer activity.
    • -
    • Take your conversion tracking further with enhanced conversions — a feature designed to improve your measurement accuracy by collecting privacy-conscious data without the need for third-party cookies. So you have the right data to help make your campaign more effective.
    • -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Google for WooCommerce", "slug": "google-listings-and-ads", "tags": {"ads": "ads", "google": "google", "listings": "listings", "woocommerce": "woocommerce", "product-feed": "product feed"}, "added": "2021-05-10", "icons": {"1x": "https://ps.w.org/google-listings-and-ads/assets/icon.svg?rev=2775988", "svg": "https://ps.w.org/google-listings-and-ads/assets/icon.svg?rev=2775988"}, "author": "WooCommerce", "rating": 54, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/google-listings-and-ads/assets/banner-772x250.png?rev=3133149", "high": "https://ps.w.org/google-listings-and-ads/assets/banner-1544x500.png?rev=3133149"}, "ratings": {"1": 117, "2": 16, "3": 15, "4": 8, "5": 84}, "version": "3.4.3", "homepage": "", "requires": "6.6", "sections": {"faq": "\n
    \nWhat is Google Merchant Center?\n\n

    \n

    Google Merchant Center is like a digital storefront for your products on Google. It’s where you upload and manage information about your products, like titles, descriptions, images, prices, and availability. This data is used to create product listings that can appear across Google.

    \n

    \n
    \nWhy should I connect to Google Merchant Center?\n\n

    \n

    By syncing your product information to Google Merchant Center, your products can appear in relevant Google searches, Shopping tab, image searches, and even on other platforms like YouTube. When running Performance Max campaigns, Google Merchant Center ensures that shoppers see the most up-to-date and accurate information about your product feed, reducing confusion and improving the chances of a purchase.

    \n

    \n
    \nWill my deals and promotions display on Google?\n\n

    \n

    To show your coupons and promotions on Google Shopping listings, make sure you’re using the latest version of Google for WooCommerce. When you create or update a coupon in your WordPress dashboard under Marketing > Coupons, you’ll see a Channel Visibility settings box on the right: select “Show coupon on Google” to enable it. Learn more about managing promotions for Google for WooCommerce. This feature is currently available in Australia, Canada, Germany, France, India, the United Kingdom, and the United States.

    \n

    \n
    \nWhat is Product Sync?\n\n

    \n

    Product Sync is a feature fully integrated into WooCommerce’s management platform that automatically lets you sync your product feed to Google Merchant Center. It will sync all your WooCommerce product data, and you can also add or edit products individually or in bulk. To ensure products are approved by Google, check that your product feed includes the following information:

    \n

    \n
      \n
    • General product information
    • \n
    • Unique product identifiers
    • \n
    • Data requirements for specific categories (auto-assigned by Google):\n
        \n
      • Apparel & Accessories
      • \n
      • Media
      • \n
      • Books
      • \n
      \n
    • \n
    \n

    \n
    \nWhere do I manage my product feed and my Google Ads campaigns?\n\n

    \n

    You can manage and edit all of your products and your Google Ads campaigns right from your WooCommerce dashboard and on the WooCommerce Mobile App.

    \n

    \n
    \nWhere will my products appear?\n\n

    \n

    Once you start running a Performance Max campaign, your approved products will reach more shoppers to help grow your business by being shown on Google Search, Google Maps, the Shopping tab, Gmail, Youtube, the Google Display Network, and Discover feed.

    \n

    \n
    \nWhat are Performance Max campaigns?\n\n

    \n

    Performance Max campaigns help you combine your expertise with Google AI to reach your most valuable customers and drive sales. Just set your goals and budget and Google AI will get your ads seen by the right customers at the right time across Google Search, Google Maps, the Shopping tab, Gmail, Youtube, the Google Display Network, and Discover feed.

    \n

    \n
    \nHow much do Performance Max campaigns cost?\n\n

    \n

    Performance Max campaigns are pay-per-click, meaning you only pay when someone clicks on your ads. To get the best results and ensure your products reach the right customers, we recommend starting with the suggested Google for WooCommerce minimum daily budget for your Performance Max campaign. This helps jumpstart your campaign and drive early conversions. You can always adjust your budget later as you see what works best for your business.

    \n

    \n
    \nCan I sync my products and run Performance Max campaigns on Google for WooCommerce at the same time?\n\n

    \n

    Yes, you can run both at the same time, and we recommend you do! Once you sync your store it’s automatically listed on Google, so you can choose to run a paid Performance Max campaign as soon as you’d like. In the US, advertisers who sync their products to Google and run Google Ads Performance Max campaigns have seen an average of over 50% increase in clicks and over 100% increase in impressions in both their product listings and their ads on the Shopping tab.

    \n

    \n
    \nHow does Google for WooCommerce help me drive sales?\n\n

    \n

    With Google for WooCommerce, you can serve the best-performing ads more often, by using Google AI to pull headlines, images, product details, and more from your product feed and find more relevant customers. Your campaigns will learn and optimize in real time – to help deliver better performance and boost your ROI.

    \n

    \n
    \nWhat are Enhanced conversions?\n\n

    \n

    Enhanced conversions is a feature that can improve the accuracy of your conversion measurement and unlock more powerful bidding. It supplements your existing conversion tags by sending hashed first-party conversion data from your website to Google in a privacy-safe way.

    \n

    \n
    \nWhich countries are available for Google for WooCommerce?\n\n

    \n

    For Performance Max campaigns, learn more about supported countries and currencies here.

    \n

    \n
    \nWhat is Multi-Country Advertising?\n\n

    \n

    Multi-Country Advertising enables you to create a single Google Ads campaign that targets multiple countries at once. Google for WooCommerce automatically populates eligible countries from your Google Merchant Center account into the plug-in ads campaign creation flow.

    \n

    \n
    \nCan I enable Multi-Country Advertising on my existing campaigns?\n\n

    \n

    If you created a campaign before this feature launched, you’ll need to create a new campaign to target new countries with Multi-Country Advertising. Learn more.

    \n

    \n
    \nHow is my ads budget split between the different countries?\n\n

    \n

    Identify the best performing targeted countries with the help of Google AI, to make your ads reach the right shoppers at the right time.

    \n

    \n
    \nWhich countries can I target?\n\n

    \n

    You can only select the countries that you’re targeting on Google Merchant Center. Your target countries must be eligible for both Google Merchant Center and Google Ads.

    \n

    To allow your products to appear in all relevant locations, make sure you’ve correctly configured your shipping for countries where your products can be delivered. Keep in mind that shipping services can cover multiple countries. Learn more about multi-country shipping.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not syncing at all

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kenttkh92 on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Can''t make it to sync into google merchant.

    \n\n\n\n

    Wasting my time.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Got it working with help from plug-in support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kellyo000 on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My shops are on a sub-domain so it was not easy, but after a long text-support chain I think we got it figured out using a snippet :-)

    \n\n\n\n

    My help thread: \"Error updating merchant account in Google Partner APP\"

    \n\n\n\n

    Thanks Guys! WetRock.com

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Extremely poor performance and nothings changed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mrbeerheim on September 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It has been performing very poorly for a long time now, and there hasnt been any updates resolving the issues. This is unacceptable.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Dno i metr mułu

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dariuszpichalski on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    jak google może wypuszczać takie gnioty.... wtyczka nie do skonfigurowania, co chwile robi fikołki i sie wysypuje

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Lots of problems

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy melvinator12 on September 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin doesnt seem to work properly. The products in GOogle Merchant center keep getting sync issues every day. Price difference. It''s very anoying. I am switching to another plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Terrible Multilingual Support and Sync Issues

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy PLUGENIUS (plugenius) on September 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin seems to be created by a makeshift team of amateur programmers, just to throw a WooCommerce plugin on the table. I have never seen such carelessness in a plugin''s functionalities, and I am very surprised that this terrible and useless plugin was approved by the WooCommerce plugin team!

    \n\n\n\n

    First of all, products are never fully synchronized. In particular, this plugin does not handle languages correctly and does not appear to be compatible with the WPML plugin. It requires many hours of work to adapt some data, and even then, products continue to not sync or present issues on the Google Merchant Center platform.

    \n\n\n\n

    The connection with Google accounts, Google Merchant Center, and Google Ads was troublesome, again due to the multilingual nature of the site. It seems the plugin can only be configured for one language, while the others are ignored.

    \n\n\n\n

    I kept this plugin for almost a year, hoping that something would change, but unfortunately, that was not the case. Apparently, it''s not a priority for the developers to improve the functions and reliability of this plugin, which now more than ever proves to be useless.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Loops. Does not sync with Merchant Center.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy samirsmudge (samirbachour) on August 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Horrible plugin. Initially connects to Merchant Center but loops and goes back to fist step to connect again. Do the developers test before releasing? Please fix!

    \n\n\n\n

    If WooCommerce wants to compete with Shopify, this cannot keep happening. Too much time wasted on buggy plugins.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Horrible experience from the start to the end

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy krlg on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is the worst setup experience I''ve ever had - you have to repeat connecting to Google account million times, refresh setup page to finally go to the next step, then you have buttons to connect with Merchant Center and Google Ads account which in 99/100 cases doesn''t work - small circle spins for a few seconds and then nothing happens, you can click it million times and still noting happens. To complete setup you have to go to strange, hidden page (wp-admin/admin.php?page=connection-test-admin-page) where you have to click \"MC Disconnect/Ads Disconnect\" half a million times, then you paste your MC ID/Ads ID and click Setup, return to Official Setup, refresh it many times and when you repeat that whole magic thousand times it finally ''works''. Then it can''t sync your products or disconnects your Merchant Account without reason or just redirects you to Setup Page and you again waste an hour or two for a setup. Overall, I wasted a few hours on this and it the end it doesn''t work. On the ''positive side'' - Merchant Center somehow retrieved my products from Search Console or something, so my day wasn''t totally ruined.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    excelente complemento

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Alvaro Aleman (trabajabien) on June 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    gooo este complemento para woocomerce es demasiado bueno sobre todo para las personas que entramos a este mundo con poco presupuesto y luchamos todos los días por poder de alguna manera promocionar nuestro sitios a verdad muchos éxitos adoro google

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support & plugin both are A+

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy meroving on June 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin and super-fast great support!

    \n
    \n
    \n", "changelog": "

    3.4.3 – 2025-09-16

    \n
      \n
    • Dev – Update NPM packages with security issues.
    • \n
    • Dev – Update NPM packages with security issues.
    • \n
    • Fix – Improve focus handling in TreeSelectControl.
    • \n
    • Fix – Use isGoogleAdsReady property instead of hasGoogleAdsConnection to check for a connected Ads account.
    • \n
    • Tweak – WC 10.2 compatibility.
    • \n
    • Update – Incorporate API changes for EU political advertising.
    • \n
    \n

    3.4.2 – 2025-09-02

    \n
      \n
    • Add – Display the statuses of synchronization modes with Google Merchant Center in WooCommerce System Status Report.
    • \n
    • Tweak – Adjust the value of the Merchant Center setting in the WPCOM proxy endpoint to null before completing onboarding so that Google service can recognize whether the Merchant Center account has been disconnected.
    • \n
    • Tweak – Renamed the log file name from google-listings-and-ads to google-for-woocommerce.
    • \n
    • Update – Include the current plugin version in the WPCOM proxy endpoint for Google service to recognize which plugin version is being used.
    • \n
    • Update – Schedule resynchronization for all products via the Push mode when the Push mode of product synchronization is switched to enable.
    • \n
    \n

    3.4.1 – 2025-08-26

    \n
      \n
    • Fix – Replaced multiple setValue calls with a single setValues call to eliminate race conditions during form initialization and reduce inconsistent validation behavior.
    • \n
    • Tweak – Reduce the cache time for product statuses and issues from 12 hours to 30 minutes.
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    Effortlessly sync your WooCommerce product feed across Google and be seen by millions of engaged shoppers with the Google for WooCommerce extension. Download and setup takes just five minutes.

    \n

    Grow your business with $500 in Google Ads credit

    \n

    To help you get started running campaigns, you can get $500 in ad credit when you spend your first $500 on Google Ads within 60 days.

    \n

    Terms and conditions apply.

    \n

    Sync your WooCommerce product feed to Google Merchant Center

    \n

    Seamlessly integrate your WooCommerce store with Google and set yourself up for success.

    \n
      \n
    • \n

      Sync your WooCommerce product feed to Google Merchant Center in just a few clicks. With our API-integrated Product Sync feature, all the data and functionalities from your WooCommerce store will be linked to Google with seamless server-to-server connection.

      \n
    • \n
    • \n

      Have your product listings automatically updated in real time so your prices, promotions, inventories, and other product details stay accurate and synchronized across all your listings.

      \n
    • \n
    • \n

      Access all the tools and features you need to manage your WooCommerce store and grow your business — centralized in one place.

      \n
    • \n
    \n

    Find the right audiences and sell to high-intent customers with Google Ads

    \n

    Now your WooCommerce store is discoverable on Google – and you’re ready to launch a Google Ads campaign!

    \n
      \n
    • Put Google AI to work for you by launching a Google Ads Performance Max campaign. Combined with your unique business insight, Performance Max can help you reach high-value customers using optimized placements, bidding, and more – all aligned with your budget and specific goals.
    • \n
    • Showcase your products across Google Shopping, Search, YouTube, Gmail, Maps, Display, and Discover – from a single campaign. Manage all your Google Ads campaigns from your WooCommerce dashboard and on the WooCommerce Mobile App.
    • \n
    • Save time and effort by using Google AI to help scale your asset creation. Performance Max will not only create additional copy and images based on the creative you upload, but also mix and match them for the best performing ad combinations.
    • \n
    \n

    Get custom insights and improve your conversions using Google tag

    \n

    Once you’re running Google Ads campaigns, the Google tag feature in the extension enables conversion tracking to give you insights — so you can test and learn what works, and fine-tune your strategy.

    \n
      \n
    • Easily adjust your product listings in real time to reflect your learnings and business expertise. While the extension maps product attributes by default, it’s simple to modify if you’d like more control.
    • \n
    • Leverage automatic Google tagging and conversion tracking to measure what’s working and what’s not. With insight into your customers’ purchase journey, you’ll be able to pinpoint how effectively your ads translate into valuable customer activity.
    • \n
    • Take your conversion tracking further with enhanced conversions — a feature designed to improve your measurement accuracy by collecting privacy-conscious data without the need for third-party cookies. So you have the right data to help make your campaign more effective.
    • \n
    \n", "installation": "

    Minimum Requirements

    \n
      \n
    • WordPress 6.6 or greater
    • \n
    • WooCommerce 9.7 or greater
    • \n
    • PHP version 7.4 or greater
    • \n
    • PHP Architecture 64 bits
    • \n
    • MySQL version 5.6 or greater
    • \n
    \n

    Visit the WooCommerce server requirements documentation for a detailed list of server requirements.

    \n

    Automatic installation

    \n

    Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t need to leave your web browser. To do an automatic install of this plugin, log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.

    \n

    In the search field type “Google for WooCommerce” and click Search Plugins. Once you’ve found this plugin you can view details about it such as the point release, rating and description. Most importantly of course, you can install it by simply clicking “Install Now”.

    \n

    Manual installation

    \n

    The manual installation method involves downloading the plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains instructions on how to do this here.

    \n

    Where can I report bugs or contribute to the project?

    \n

    Bugs should be reported in the Google for WooCommerce GitHub repository.

    \n

    This is awesome! Can I contribute?

    \n

    Yes you can! Join in on our GitHub repository 🙂

    \n

    Release and roadmap notes available on the WooCommerce Developers Blog

    \n"}, "versions": {"0.5.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.0.5.5.zip", "0.5.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.0.5.6.zip", "0.6.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.0.6.0.zip", "1.0.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.2.1.zip", "1.3.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.4.3.zip", "1.5.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.6.0.zip", "1.7.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.7.0.zip", "1.8.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.8.0.zip", "1.9.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.9.0.zip", "2.0.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.0.4.zip", "2.1.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.1.4.zip", "2.2.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.2.1.zip", "2.3.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.7.zip", "2.8.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.7.zip", "2.9.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.6.zip", "2.9.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.9.zip", "3.0.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.0.0.zip", "3.1.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.1.1.zip", "3.2.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.2.0.zip", "3.3.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.3.1.zip", "3.4.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.3.zip", "trunk": "https://downloads.wordpress.org/plugin/google-listings-and-ads.zip", "1.10.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.10.0.zip", "1.11.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.11.0.zip", "1.11.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.11.1.zip", "1.12.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.2.zip", "1.12.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.3.zip", "1.12.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.4.zip", "1.12.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.5.zip", "1.12.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.6.zip", "1.12.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.7.zip", "1.12.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.8.zip", "1.13.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.1.zip", "1.13.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.2.zip", "1.13.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.3.zip", "1.13.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.4.zip", "1.13.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.5.zip", "1.13.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.6.zip", "2.3.10": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.10.zip", "2.4.10": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.10.zip", "2.4.11": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.11.zip", "2.5.10": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.10.zip", "2.5.11": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.11.zip", "2.5.12": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.12.zip", "2.5.13": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.13.zip", "2.5.14": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.14.zip", "2.5.15": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.15.zip", "2.5.16": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.16.zip", "2.5.17": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.17.zip", "2.5.18": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.18.zip", "2.9.10": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.10.zip", "2.9.11": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.11.zip", "2.9.12": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.12.zip", "2.9.13": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.13.zip"}, "downloaded": 37486309, "description": "

    Effortlessly sync your WooCommerce product feed across Google and be seen by millions of engaged shoppers with the Google for WooCommerce extension. Download and setup takes just five minutes.

    \n

    Grow your business with $500 in Google Ads credit

    \n

    To help you get started running campaigns, you can get $500 in ad credit when you spend your first $500 on Google Ads within 60 days.

    \n

    Terms and conditions apply.

    \n

    Sync your WooCommerce product feed to Google Merchant Center

    \n

    Seamlessly integrate your WooCommerce store with Google and set yourself up for success.

    \n
      \n
    • \n

      Sync your WooCommerce product feed to Google Merchant Center in just a few clicks. With our API-integrated Product Sync feature, all the data and functionalities from your WooCommerce store will be linked to Google with seamless server-to-server connection.

      \n
    • \n
    • \n

      Have your product listings automatically updated in real time so your prices, promotions, inventories, and other product details stay accurate and synchronized across all your listings.

      \n
    • \n
    • \n

      Access all the tools and features you need to manage your WooCommerce store and grow your business — centralized in one place.

      \n
    • \n
    \n

    Find the right audiences and sell to high-intent customers with Google Ads

    \n

    Now your WooCommerce store is discoverable on Google – and you’re ready to launch a Google Ads campaign!

    \n
      \n
    • Put Google AI to work for you by launching a Google Ads Performance Max campaign. Combined with your unique business insight, Performance Max can help you reach high-value customers using optimized placements, bidding, and more – all aligned with your budget and specific goals.
    • \n
    • Showcase your products across Google Shopping, Search, YouTube, Gmail, Maps, Display, and Discover – from a single campaign. Manage all your Google Ads campaigns from your WooCommerce dashboard and on the WooCommerce Mobile App.
    • \n
    • Save time and effort by using Google AI to help scale your asset creation. Performance Max will not only create additional copy and images based on the creative you upload, but also mix and match them for the best performing ad combinations.
    • \n
    \n

    Get custom insights and improve your conversions using Google tag

    \n

    Once you’re running Google Ads campaigns, the Google tag feature in the extension enables conversion tracking to give you insights — so you can test and learn what works, and fine-tune your strategy.

    \n
      \n
    • Easily adjust your product listings in real time to reflect your learnings and business expertise. While the extension maps product attributes by default, it’s simple to modify if you’d like more control.
    • \n
    • Leverage automatic Google tagging and conversion tracking to measure what’s working and what’s not. With insight into your customers’ purchase journey, you’ll be able to pinpoint how effectively your ads translate into valuable customer activity.
    • \n
    • Take your conversion tracking further with enhanced conversions — a feature designed to improve your measurement accuracy by collecting privacy-conscious data without the need for third-party cookies. So you have the right data to help make your campaign more effective.
    • \n
    \n", "donate_link": "", "num_ratings": 240, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/google-listings-and-ads/", "contributors": {"google": {"avatar": "https://secure.gravatar.com/avatar/13d3110b26a00b8467e781d571df53f380ef6d5678f711eb5660485ccd83b09b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/google/", "display_name": "Google"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}}, "last_updated": "2025-09-16 6:56am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.3.zip", "author_profile": "https://profiles.wordpress.org/woocommerce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-f483-715f-a31b-267b4089fa0b", "name": "Google for WooCommerce", "slug": "google-listings-and-ads", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1758005760, "version": "3.4.3"}, "support_threads": 28, "requires_plugins": ["woocommerce"], "short_description": "Native integration with Google that allows merchants to easily display their products across Google’s network.", "author_block_count": 0, "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 22}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1bc1-71b4-8241-6ccd8bd2f29d', 'did:web:api.aspiredev.org:packages:wp-plugin:google-site-kit', 'google-site-kit', 'Site Kit by Google – Analytics, Search Console, AdSense, Speed', '

    Site Kit is the official WordPress plugin from Google for insights about how people find and use your site. Site Kit is the one-stop solution to deploy, manage, and get insights from critical Google tools to make the site successful on the web. It provides authoritative, up-to-date insights from multiple Google products directly on the WordPress dashboard for easy access, all for free.

    -

    Bringing the best of Google tools to WordPress

    -

    Site Kit includes powerful features that make using these Google products seamless and flexible:

    -
      -
    • Easy-to-understand stats directly on your WordPress dashboard
    • -
    • Official stats from multiple Google tools, all in one dashboard
    • -
    • Quick setup for multiple Google tools without having to edit the source code of your site
    • -
    • Metrics for your entire site and for individual posts
    • -
    • Easy-to-manage, granular permissions across WordPress and different Google products
    • -
    -

    Supported Google tools

    -

    Site Kit shows key metrics and insights from different Google products:

    -
      -
    • Search Console: Understand how Google Search discovers and displays your pages in Google Search. Track how many people saw your site in Search results, and what query they used to search for your site.
    • -
    • Analytics: Explore how users navigate your site and track goals you’ve set up for your users to complete.
    • -
    • AdSense: Keep track of how much your site is earning you.
    • -
    • PageSpeed Insights: See how your pages perform compared to other real-world sites. Improve performance with actionable tips from PageSpeed Insights.
    • -
    • Tag Manager: Use Site Kit to easily set up Tag Manager- no code editing required. Then, manage your tags in Tag Manager.
    • -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Site Kit by Google – Analytics, Search Console, AdSense, Speed", "slug": "google-site-kit", "tags": {"google": "google", "adsense": "adsense", "analytics": "analytics", "search-console": "Search Console", "pagespeed-insights": "pagespeed insights"}, "added": "2019-10-31", "icons": {"1x": "https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=3141863", "2x": "https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=3141863"}, "author": "Google", "rating": 84, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=3141863", "high": "https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=3141863"}, "ratings": {"1": 141, "2": 39, "3": 27, "4": 43, "5": 714}, "version": "1.164.0", "homepage": "https://sitekit.withgoogle.com", "requires": "5.2", "sections": {"faq": "

    For more information, visit the official Site Kit website.

    \n\n
    \nIs Site Kit free?\n\n

    \n

    The Site Kit plugin is free and open source, and will remain so. Individual Google products included in Site Kit are subject to standard terms and fees (if any) for those products.

    \n

    \n
    \nWhat are the minimum requirements for Site Kit?\n\n

    \n

    In order to successfully install and use Site Kit, your site must meet the following requirements:

    \n
      \n
    • WordPress version 5.2+
    • \n
    • PHP version 7.4+
    • \n
    • Modern browser – Internet Explorer is not supported
    • \n
    • Is publicly accessible – it isn’t in maintenance mode, accessible only via password, or otherwise blocked
    • \n
    • REST API is available – Site Kit must be able to communicate via REST API with Google services. To ensure that the REST API is available for your site, go to Tools > Site Health.
    • \n
    \n

    \n
    \nWhy is my dashboard showing “gathering data” and none of my service data?\n\n

    \n

    It can take a few days after connecting Site Kit to a Google service for data to begin to display in your dashboard. The “gathering data” message typically appears when you’ve recently set up a Google service (i.e. just created a new Analytics account) and/or your site is new, and data is not yet available for display.

    \n

    If you are still seeing this message after a few days, feel free to get in touch with us on the support forum.

    \n

    \n
    \nWhy aren’t any ads appearing on my site after I connected AdSense?\n\n

    \n

    If you’re new to AdSense when you connect via Site Kit, your new AdSense account and your site will need to be manually reviewed and approved for ads by the AdSense team. Ads will not display until your account and site have been approved. Check out this guide for more information about the approval process and timeline.

    \n

    You can check your approval status in Site Kit by going to Settings > Connected Services > AdSense and clicking Check your site status. This link will direct you to AdSense. If you see “Ready,” your account and site have been approved and should be displaying ads. If you see “Getting ready…,” your account and site are still under review and your site will not display ads until they have been approved.

    \n

    If Site Kit has successfully added the AdSense snippet to your site and your account and site have been approved, but your site is still not showing ads, contact the AdSense Help Center for assistance.

    \n

    You can find more information on how Site Kit works with AdSense in our Managing AdSense guide.

    \n

    \n
    \nIs Site Kit GDPR compliant?\n\n

    \n

    When using Site Kit, site owners are responsible for managing notice and consent requirements – including GDPR requirements – as described in Google’s Terms of Service.

    \n

    By default, Site Kit does anonymize IP addresses upon activation of the Google Analytics module. This setting can be turned off in Site Kit > Settings > Analytics > Anonymize IP addresses.

    \n

    There are a number of third-party plugins that allow you to block Google Analytics, Tag Manager, or AdSense from capturing data until a visitor to the site consents. Some of these work natively with Site Kit by providing plugin-specific configurations. You can find out more about these by visiting our GDPR compliance and privacy page.

    \n

    \n
    \nWhere can I get additional support?\n\n

    \n

    Please create a new topic on our WordPress.org support forum. Be sure to follow the support forum guidelines when posting.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Too confusing

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy carmenbischof on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Too confusing for anybody who just wishes to run their own website - especially the Google Tag Manager.

    \n\n\n\n

    After running this for years (pain to install, then not noticable in the background) we now got an error message. Our website looks ok, but we have no clue what do do.

    \n\n\n\n

    The support also feels as if it was built by developers for developers only.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy FotoRK (romankrejcikcom) on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Convenient and hassle-free connection to [my website]. I use it on all websites that I have created or manage.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent analytics plugin for clients

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kiwise.com (kiwisenz) on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very easy plugin to install and setup. Highly recommended for any WordPress website.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    You are the best

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy elenkw on September 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    \n\n\n\n

    Thank you!!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    what in the world

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy embrasurespace on September 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Terrible - causing php fatal errors and crashing several of my sites. Can''t believe this is a google product. Don''t use it.


    Edit - we''ve resolved this issue.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    TIme saver

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ubaida (ubaidaabidganem) on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used to struggle checking Analytics & Search Console separately. Site Kit solved it by putting everything in WP.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Time Saver for WordPress Users

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Asif Hossain (asifhossain1) on September 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like how Site Kit connects Analytics, Search Console, and AdSense so I can see everything without switching tabs. The dashboard is straightforward and beginner friendly. More display options for the data would make it even better.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    That's an awesome and great plugins.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy asadujjamangood on September 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you so much Google for save my times. It''s really Great.

    Thanks again.

    \n\n\n\n

    Md. Asaduzzaman Shuvo
    [link removed by moderator -- forum guidelines do not allow links in reviews]

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks for the new updates

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy publipega on August 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really appreciate the improvements—makes it even easier to connect WordPress with Google tools. Great job 👏.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    very good plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy haim96 on August 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    works well with very good support!

    \n
    \n
    \n", "changelog": "

    1.164.0

    \n

    Added

    \n
      \n
    • Add setting for using Sign in with Google for WordPress comments. See #11472.
    • \n
    • Add One-Tap to Sign in with Google setup when user registrations are open. See #11469.
    • \n
    \n

    Enhanced

    \n
      \n
    • Add client side compatibility checks for Sign in with Google. See #11505.
    • \n
    • Add ability to load Sign in with Google compatibility checks from Site Kit. See #11463.
    • \n
    • Add support for detecting plugins/hosting environments incompatible with Sign in with Google. See #11458.
    • \n
    • Add third-party support for the Sign in with Google button via a WordPress Action: do_action( ''googlesitekit_render_sign_in_with_google_button'' ). See #11455.
    • \n
    • Add the email reporting settings selection panel. See #11424.
    • \n
    • Add API and data store infrastructure to preserve initial settings accompanying the new setup flow. See #11387.
    • \n
    • Add Analytics setup success toast notice in the Key Metrics setup screen. See #11384.
    • \n
    • Display the progress indicator on the Analytics setup screen when it’s navigated to in the new setup flow. See #11379.
    • \n
    • Add the progress indicator to the new version of the splash screen. See #11378.
    • \n
    • Add a ProgressIndicator component to display progressions in user flows. See #11377.
    • \n
    • Redirect users to the Key Metrics setup screen after successfully connecting Analytics when the setupFlowRefresh feature flag is enabled. See #11375.
    • \n
    • Add Key Metrics setup screen with site purpose questionnaire and dashboard redirection functionality. See #11374.
    • \n
    • Implement the foundation for the forthcoming splash screen update. See #11333.
    • \n
    • Add a selector to allow users to customize frequency of reports when Proactive User Engagement is enabled. See #11155.
    • \n
    • Add the email reporting overlay notification. See #11147.
    • \n
    • Add Enhanced Conversions support for Mailchimp for WordPress by capturing and sending user data. See #11127.
    • \n
    • Add Enhanced Conversions support for OptinMonster by capturing and sending user data. See #11126.
    • \n
    • Add Enhanced Conversions support for Easy Digital Downloads by capturing and sending user data. See #11011.
    • \n
    • Add “Learn more” link to Visitor Groups notification banner. See #10964.
    • \n
    • Include Reader Revenue Manager in the list of services identified by the unsatisfied scopes alert. See #10797.
    • \n
    • Don’t show the “How to Improve” tab in the Pagespeed Insights widget when no recommendations are available. See #7612.
    • \n
    • Standardize font sizes for Key Metric Widget subheadings. See #6107.
    • \n
    \n

    Fixed

    \n
      \n
    • Fix Reader Revenue Manager setup screen displaying empty content when API errors occur. See #11581.
    • \n
    • Add “pinned notifications” to the notifications API, and use it to ensure the Audience Segmentation and Enhanced Measurement setup banners continue to be shown when returning from OAuth. See #10890.
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    Site Kit is the official WordPress plugin from Google for insights about how people find and use your site. Site Kit is the one-stop solution to deploy, manage, and get insights from critical Google tools to make the site successful on the web. It provides authoritative, up-to-date insights from multiple Google products directly on the WordPress dashboard for easy access, all for free.

    \n

    Bringing the best of Google tools to WordPress

    \n

    Site Kit includes powerful features that make using these Google products seamless and flexible:

    \n
      \n
    • Easy-to-understand stats directly on your WordPress dashboard
    • \n
    • Official stats from multiple Google tools, all in one dashboard
    • \n
    • Quick setup for multiple Google tools without having to edit the source code of your site
    • \n
    • Metrics for your entire site and for individual posts
    • \n
    • Easy-to-manage, granular permissions across WordPress and different Google products
    • \n
    \n

    Supported Google tools

    \n

    Site Kit shows key metrics and insights from different Google products:

    \n
      \n
    • Search Console: Understand how Google Search discovers and displays your pages in Google Search. Track how many people saw your site in Search results, and what query they used to search for your site.
    • \n
    • Analytics: Explore how users navigate your site and track goals you’ve set up for your users to complete.
    • \n
    • AdSense: Keep track of how much your site is earning you.
    • \n
    • PageSpeed Insights: See how your pages perform compared to other real-world sites. Improve performance with actionable tips from PageSpeed Insights.
    • \n
    • Tag Manager: Use Site Kit to easily set up Tag Manager- no code editing required. Then, manage your tags in Tag Manager.
    • \n
    \n", "installation": "

    Note: Make sure that your website is live. If your website isn’t live yet, Site Kit can’t show you any data.
    \nHowever, if you have a staging environment in addition to your production site, Site Kit can display data from your production site in the staging environment. Learn how to use Site Kit with a staging environment.

    \n

    Installation from within WordPress

    \n
      \n
    1. Visit Plugins > Add New.
    2. \n
    3. Search for Site Kit by Google.
    4. \n
    5. Install and activate the Site Kit by Google plugin.
    6. \n
    7. Connect Site Kit to your Google account. If there are multiple WordPress admins, keep in mind that each admin must connect their own Google account in order to access the plugin.
    8. \n
    \n

    Manual installation

    \n
      \n
    1. Upload the entire google-site-kit folder to the /wp-content/plugins/ directory.
    2. \n
    3. Visit Plugins.
    4. \n
    5. Activate the Site Kit by Google plugin.
    6. \n
    7. Connect Site Kit to your Google account. If there are multiple WordPress admins, keep in mind that each admin must connect their own Google account in order to access the plugin.
    8. \n
    \n

    After activation

    \n
      \n
    1. Visit the new Site Kit menu.
    2. \n
    3. Follow the instructions in the setup flow.
    4. \n
    5. Go to the main Site Kit dashboard which already displays key metrics from Search Console.
    6. \n
    7. Connect additional Google tools under Site Kit > Settings. Learn more about which tools are right for you.
    8. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/google-site-kit.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/google-site-kit.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/google-site-kit.1.0.4.zip", "1.1.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/google-site-kit.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/google-site-kit.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/google-site-kit.1.1.4.zip", "1.2.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.3.1.zip", "1.4.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.4.0.zip", "1.5.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.6.0.zip", "1.7.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.8.1.zip", "1.9.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.9.0.zip", "trunk": "https://downloads.wordpress.org/plugin/google-site-kit.zip", "1.10.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.10.0.zip", "1.11.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.11.0.zip", "1.11.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.11.1.zip", "1.12.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.12.0.zip", "1.13.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.13.1.zip", "1.14.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.14.0.zip", "1.15.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.15.0.zip", "1.16.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.16.0.zip", "1.17.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.17.0.zip", "1.18.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.18.0.zip", "1.19.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.19.0.zip", "1.20.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.20.0.zip", "1.21.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.21.0.zip", "1.22.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.22.0.zip", "1.23.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.23.0.zip", "1.24.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.24.0.zip", "1.25.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.25.0.zip", "1.26.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.26.0.zip", "1.27.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.27.0.zip", "1.28.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.28.0.zip", "1.29.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.29.0.zip", "1.30.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.30.0.zip", "1.31.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.31.0.zip", "1.32.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.32.0.zip", "1.33.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.33.0.zip", "1.34.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.34.0.zip", "1.34.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.34.1.zip", "1.35.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.35.0.zip", "1.36.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.36.0.zip", "1.37.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.37.0.zip", "1.38.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.38.0.zip", "1.38.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.38.1.zip", "1.39.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.39.0.zip", "1.40.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.40.0.zip", "1.41.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.41.0.zip", "1.42.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.42.0.zip", "1.43.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.43.0.zip", "1.44.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.44.0.zip", "1.45.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.45.0.zip", "1.46.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.46.0.zip", "1.47.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.47.0.zip", "1.48.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.48.0.zip", "1.48.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.48.1.zip", "1.49.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.49.0.zip", "1.49.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.49.1.zip", "1.50.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.50.0.zip", "1.68.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.68.0.zip", "1.69.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.69.0.zip", "1.70.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.70.0.zip", "1.71.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.71.0.zip", "1.72.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.72.0.zip", "1.73.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.73.0.zip", "1.74.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.74.0.zip", "1.75.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.75.0.zip", "1.77.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.77.0.zip", "1.78.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.78.0.zip", "1.79.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.79.0.zip", "1.79.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.79.1.zip", "1.80.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.80.0.zip", "1.81.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.81.0.zip", "1.82.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.82.0.zip", "1.83.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.83.0.zip", "1.84.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.84.0.zip", "1.85.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.85.0.zip", "1.86.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.86.0.zip", "1.87.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.87.0.zip", "1.88.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.88.0.zip", "1.89.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.89.0.zip", "1.90.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.90.0.zip", "1.90.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.90.1.zip", "1.92.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.92.0.zip", "1.93.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.93.0.zip", "1.94.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.94.0.zip", "1.95.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.95.0.zip", "1.96.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.96.0.zip", "1.98.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.98.0.zip", "1.99.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.99.0.zip", "1.101.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.101.0.zip", "1.102.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.102.0.zip", "1.103.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.103.0.zip", "1.104.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.104.0.zip", "1.105.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.105.0.zip", "1.106.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.106.0.zip", "1.107.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.107.0.zip", "1.108.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.108.0.zip", "1.109.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.109.0.zip", "1.110.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.110.0.zip", "1.111.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.111.0.zip", "1.111.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.111.1.zip", "1.113.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.113.0.zip", "1.114.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.114.0.zip", "1.115.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.115.0.zip", "1.116.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.116.0.zip", "1.118.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.118.0.zip", "1.119.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.119.0.zip", "1.120.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.120.0.zip", "1.121.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.121.0.zip", "1.122.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.122.0.zip", "1.123.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.123.0.zip", "1.123.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.123.1.zip", "1.124.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.124.0.zip", "1.125.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.125.0.zip", "1.126.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.126.0.zip", "1.127.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.127.0.zip", "1.128.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.128.0.zip", "1.128.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.128.1.zip", "1.129.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.129.0.zip", "1.129.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.129.1.zip", "1.130.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.130.0.zip", "1.131.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.131.0.zip", "1.132.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.132.0.zip", "1.133.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.133.0.zip", "1.134.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.134.0.zip", "1.135.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.135.0.zip", "1.136.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.136.0.zip", "1.137.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.137.0.zip", "1.138.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.138.0.zip", "1.139.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.139.0.zip", "1.140.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.140.0.zip", "1.141.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.141.0.zip", "1.142.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.142.0.zip", "1.144.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.144.0.zip", "1.145.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.145.0.zip", "1.146.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.146.0.zip", "1.147.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.147.0.zip", "1.148.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.148.0.zip", "1.149.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.149.0.zip", "1.149.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.149.1.zip", "1.150.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.150.0.zip", "1.151.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.151.0.zip", "1.152.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.152.0.zip", "1.152.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.152.1.zip", "1.153.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.153.0.zip", "1.154.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.154.0.zip", "1.155.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.155.0.zip", "1.156.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.156.0.zip", "1.157.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.157.0.zip", "1.158.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.158.0.zip", "1.159.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.159.0.zip", "1.160.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.160.0.zip", "1.160.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.160.1.zip", "1.161.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.161.0.zip", "1.162.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.162.0.zip", "1.162.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.162.1.zip", "1.163.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.163.0.zip", "1.164.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.164.0.zip"}, "downloaded": 218565994, "description": "

    Site Kit is the official WordPress plugin from Google for insights about how people find and use your site. Site Kit is the one-stop solution to deploy, manage, and get insights from critical Google tools to make the site successful on the web. It provides authoritative, up-to-date insights from multiple Google products directly on the WordPress dashboard for easy access, all for free.

    \n

    Bringing the best of Google tools to WordPress

    \n

    Site Kit includes powerful features that make using these Google products seamless and flexible:

    \n
      \n
    • Easy-to-understand stats directly on your WordPress dashboard
    • \n
    • Official stats from multiple Google tools, all in one dashboard
    • \n
    • Quick setup for multiple Google tools without having to edit the source code of your site
    • \n
    • Metrics for your entire site and for individual posts
    • \n
    • Easy-to-manage, granular permissions across WordPress and different Google products
    • \n
    \n

    Supported Google tools

    \n

    Site Kit shows key metrics and insights from different Google products:

    \n
      \n
    • Search Console: Understand how Google Search discovers and displays your pages in Google Search. Track how many people saw your site in Search results, and what query they used to search for your site.
    • \n
    • Analytics: Explore how users navigate your site and track goals you’ve set up for your users to complete.
    • \n
    • AdSense: Keep track of how much your site is earning you.
    • \n
    • PageSpeed Insights: See how your pages perform compared to other real-world sites. Improve performance with actionable tips from PageSpeed Insights.
    • \n
    • Tag Manager: Use Site Kit to easily set up Tag Manager- no code editing required. Then, manage your tags in Tag Manager.
    • \n
    \n", "donate_link": "", "num_ratings": 964, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/google-site-kit/", "contributors": {"google": {"avatar": "https://secure.gravatar.com/avatar/13d3110b26a00b8467e781d571df53f380ef6d5678f711eb5660485ccd83b09b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/google/", "display_name": "Google"}}, "last_updated": "2025-10-20 9:00pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/google-site-kit.1.164.0.zip", "author_profile": "https://profiles.wordpress.org/google/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 5000000, "aspiresync_meta": {"id": "019a30bf-f486-70ff-966e-012107b4d63c", "name": "Site Kit by Google – Analytics, Search Console, AdSense, Speed", "slug": "google-site-kit", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760994000, "version": "1.164.0"}, "support_threads": 73, "requires_plugins": [], "short_description": "Site Kit is a one-stop solution for WordPress users to use everything Google has to offer to make them successful on the web.", "author_block_count": 0, "author_block_rating": 84, "commercial_support_url": "", "support_threads_resolved": 60}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1bd1-7363-aed8-1ca14ae48c70', 'did:web:api.aspiredev.org:packages:wp-plugin:google-sitemap-generator', 'google-sitemap-generator', 'XML Sitemap Generator for Google', '

    Generate XML and HTML sitemaps for your website with ease using the XML Sitemap Generator for Google. This plugin enables you to improve your SEO rankings by creating page, image, news, video, HTML, and RSS sitemaps. It also supports custom post types and taxonomies, allowing you to ensure that all of your content is being indexed by search engines. With a user-friendly interface, you can easily configure the plugin to suit your needs and generate sitemaps in just a few clicks. Keep your website up-to-date and make sure that search engines are aware of all of your content by using the XML Sitemap Generator for Google.

    -

    The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.

    -

    Supported for more than a decade and rated among the best, it will do exactly what it’s supposed to do – providing a complete XML sitemap for search engines!

    -
    -

    If you like the plugin, feel free to rate it! 🙂

    -
    -

    Related Links:

    - -

    License

    -

    Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial site.

    -

    Translations

    -

    The plugin comes with various translations, please refer to the WordPress Codex for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all definitions and may be used with a gettext editor like Poedit (Windows).

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "XML Sitemap Generator for Google", "slug": "google-sitemap-generator", "tags": {"seo": "seo", "xml-sitemap": "xml sitemap", "html-sitemap": "html sitemap", "news-sitemap": "news sitemap", "video-sitemap": "video sitemap"}, "added": "2005-06-16", "icons": {"1x": "https://ps.w.org/google-sitemap-generator/assets/icon-128x128.png?rev=2713572", "2x": "https://ps.w.org/google-sitemap-generator/assets/icon-256x256.png?rev=2713572"}, "author": "Auctollo", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/google-sitemap-generator/assets/banner-772-250.png?rev=2713572", "high": false}, "ratings": {"1": 71, "2": 9, "3": 12, "4": 34, "5": 2099}, "version": "4.1.21", "homepage": "https://auctollo.com/", "requires": "4.6", "sections": {"faq": "\n
    \nHow do I generate a sitemap for my website?\n\n

    \n

    To generate a sitemap for your website, follow these steps:

    \n
      \n
    • Install and activate the XML Sitemap Generator for Google plugin on your WordPress site.
    • \n
    • Once activated, the plugin will automatically generate a sitemap.xml file for your website.
    • \n
    • You can access the sitemap by appending /sitemap.xml to your website’s URL (e.g., https://example.com/sitemap.xml).
    • \n
    • Submit your sitemap to search engines like Google, Bing, Yandex, and Baidu to ensure that your site is indexed and crawled properly.
    • \n
    \n

    \n
    \nHow do I submit my sitemap to search engines?\n\n

    \n

      \n
    • Go to the Google Search Console and sign in with your Google account.
    • \n
    • Click on the “Sitemaps” tab and enter the URL of your sitemap.xml file (e.g., https://example.com/sitemap.xml).
    • \n
    • Click on “Submit” to submit your sitemap to Google.
    • \n
    • Repeat the process for other search engines like Bing, Yandex, and Baidu.
    • \n
    \n

    \n
    \nHow often should I update my sitemap?\n\n

    \n

    It’s recommended that you update your sitemap whenever you make significant changes to your website’s content or structure. This will ensure that search engines are aware of any new pages or changes to existing pages on your site.

    \n

    \n
    \nWhat types of sitemaps does the plugin generate?\n\n

    \n

    The XML Sitemap Generator for Google plugin can generate sitemaps in XML, HTML, RSS formats and in various types, including: Pages/Posts, Google News, Video, Image, Mobile, and more! Note: Some formats and types are only available to subscribers.

    \n

    \n
    \nCan I include images and videos in my sitemap?\n\n

    \n

    Yes, you can include images and videos in your sitemap using the Google XML Sitemap Generator plugin. This will help search engines like Google and Bing to crawl and index your media files more efficiently.

    \n

    \n
    \nHow does the plugin work with WooCommerce?\n\n

    \n

    The XML Sitemap Generator for Google plugin is compatible with WooCommerce and can generate sitemaps for your online store’s product pages, categories, and tags. This will help search engines to index your products and improve your store’s visibility in search results.

    \n

    \n
    \nCan I customize the robots.txt file using this plugin?\n\n

    \n

    Yes, you can customize the robots.txt file using the Google XML Sitemap Generator for Google plugin. This will allow you to control which pages and directories search engines can crawl and index on your site.

    \n

    \n
    \nDoes this plugin support the Google Site Kit?\n\n

    \n

    Yes, the XML Sitemap Generator for Google plugin is compatible with the Google Site Kit. This will allow you to track your site’s performance in Google Search Console and Google Analytics directly from your WordPress dashboard.

    \n

    \n
    \nDoes this plugin support schema markup?\n\n

    \n

    Yes, the XML Sitemap Generator for Google plugin supports schema markup, which can help improve your site’s visibility in search results by providing more information about your content to search engines.

    \n

    \n
    \nWhere can I find the options page of the plugin?\n\n

    \n

    It is under Settings > XML-Sitemap. I know nowadays many plugins add top-level menu items, but in most of the cases it is just not necessary. I’ve seen WP installations which looked like an Internet Explorer ten years ago with 20 toolbars installed. 😉

    \n

    \n
    \nDoes this plugin use static files or “I can’t find the sitemap.xml file!”\n\n

    \n

    Not anymore. Since version 4, these files are dynamically generated just like any other WordPress content.

    \n

    \n
    \nThere are no comments yet (or I’ve disabled them) and all my postings have a priority of zero!\n\n

    \n

    Please disable automatic priority calculation and define a static priority for posts.

    \n

    \n
    \nSo many configuration options… Do I need to change them?\n\n

    \n

    No, only if you want to. Default values are ok for most sites.

    \n

    \n
    \nMy question isn’t answered here\n\n

    \n

    Please post your question at the WordPress support forum.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    XML Sitemap Generator for Google

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ronaldljohnson on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    If you''re already using the available Google features like ReCaptcha on your WordPress web site then go the next step and get the XML Sitemap Generator for Google. It integrates tightly with your site, is free, and is the gold standard for sitemap generation on your WordPress Site.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ちょっとわかりにくかった

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy 3216hobby on August 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ちょっとわかりにくかった

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy belenpajares on July 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use, very easy to understand, simple, and allows you to access the sitemap from the WordPress dashboard. I recommend it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It's my favorite SITEMAP so far...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ovidiuxxxc on July 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was looking for a decent and minimalistic sitemap, but this was the only one that worked well without being complicated. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does what I need very easily

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stuntnet on June 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy interface and has all the right features.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tut was es soll

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Birgit Ligotzky (ligoline) on May 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Einfach und unkompliziert, seit Jahren treuer Begleiter

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support team not respond

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Shubham Verma (s4shubhamverma) on May 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I needed an image sitemap and saw in the bio that it was supposed to be available, but I couldn''t find it anywhere. I even created a support ticket, but unfortunately, there was no response from the development team.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    XML File Does not always get read by Google

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jlc1964 on April 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Got the dreaded Google couldn''t fetch error. There is a formatting issue with the xml. I ended up using another plugin that just simply worked. This appears to be an ongoing issue in the forums.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy heronsuisse on April 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    No need of other stupid sitemap generator offered by SEo plugins, this one is the best

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Configuração simples

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy macrosann on March 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Não entrei no modo avançado ainda, mas mesmo assim no modo padrão já obtive resultados, sem falar que já vem configurações predefinidas que poupam esforços.

    \n
    \n
    \n", "changelog": "

    4.1.21 (2024-04-21)

    \n
      \n
    • Fixed a regression with saving post/page exclusions.
    • \n
    • Fixed an issue with post/tag priority settings.
    • \n
    \n

    4.1.20 (2024-04-14)

    \n
      \n
    • Fixed empty ping error
    • \n
    • Fixed response code issue with index sitemap
    • \n
    • Fixed interoperability with existing robots.txt file
    • \n
    • Fixed URL for guest authors
    • \n
    • Fixed uninstalled plugin error
    • \n
    • Fixed sitemap indexation
    • \n
    • Fixed “Trying to access array offset on value of type bool…” warning
    • \n
    • Fixed setting of custom taxonomy change frequency and priority
    • \n
    • Fixed missing custom taxonomies issue
    • \n
    • Fixed issue with hierarchical taxonomies
    • \n
    • Fixed missing categories issue
    • \n
    • Fixed sort order of URLs (changed from descending to ascending)
    • \n
    • Improved WooCommerce support (added products sitemap)
    • \n
    • Improved multisite support
    • \n
    • Improved SEO plugin interoperability
    • \n
    • Improved Nginx configuration
    • \n
    • Improved sitemap generation performance for large sites
    • \n
    • Added filter support for behavior/settings customization
    • \n
    • Added latest Microsoft Bing API Key to settings page
    • \n
    \n

    4.1.19 (2024-01-31)

    \n
      \n
    • Fixed “Links per page” bug causing sitemaps to not include all posts depending on the setting. Following Search Engine guidance is minimum links per sitemap is 1,000 pages.
    • \n
    • Fixed Google Search Console errors including “Fetch error” and “noindex” header
    • \n
    • Fixed the issue with “null” sitemaps
    • \n
    • Fixed sitemap generation for tags, categories, etc for large sites
    • \n
    • Improved performance by optimizing queries
    • \n
    • Improved IndexNow implementation
    • \n
    • Added WordPress’ sitemap to the list of detected sitemaps for deactivation
    • \n
    \n

    4.1.18 (2024-01-12)

    \n
      \n
    • Resolved functionality regressions since v4.1.13
    • \n
    • Improved IndexNow Protocol implementation
    • \n
    • Improved WooCommerce support
    • \n
    • Improved WPML support
    • \n
    • Fixed sitemap 404 issues (for Single and Multisite modes)
    • \n
    • Fixed auto update rewrite rule
    • \n
    • Fixed rewrite issues during plugin upgrade
    • \n
    • Fixed invalid XML syntax (cause of parsing issues in Google Search Console)
    • \n
    \n

    4.1.17 (2024-01-05)

    \n
      \n
    • Fixed sitemap URL issue in robots.txt etc
    • \n
    • Improved LastMod syntax for better support for indexation by Google
    • \n
    • Improved Network mode support
    • \n
    • Improved localization plugin support
    • \n
    • Improved custom taxonomy support
    • \n
    • Added IndexNow Protocol support for Microsoft Bing. Deprecated Sitemap Ping Protocol
    • \n
    • Added JetPack sitemap generator conflict detection
    • \n
    \n

    4.1.16 (2023-12-18)

    \n
      \n
    • Fixed a syntax error causing fatal errors for some users.
    • \n
    \n

    4.1.15 (2023-12-14)

    \n
      \n
    • Improved security by adding capability check via the current_user_can() calls
    • \n
    • Changed the text domain from “sitemap” to “google-sitemap-generator”
    • \n
    \n

    4.1.14 (2023-12-05)

    \n
      \n
    • Improved security with authentication and plugin management anchors
    • \n
    • Fixed an error in sitemap file name conventions
    • \n
    • Fixed an issue with disabling conflicting sitemap generators
    • \n
    • Added last modified date to category sitemaps
    • \n
    • Added min and max option for number of posts per sitemap
    • \n
    • Added support for local links in sitemap for different languages
    • \n
    \n

    4.1.13 (2023-08-04)

    \n
      \n
    • Fixed warning error displayed when Yoast SEO is not installed/active
    • \n
    \n

    4.1.12 (2023-08-02)

    \n
      \n
    • Improved various UI elements and notifications
    • \n
    • Fixed browser console errors
    • \n
    • Fixed null value in set_time_limit
    • \n
    \n

    4.1.11 (2023-05-19)

    \n
      \n
    • Fixed version compatibility thresholds
    • \n
    • Improved user interface
    • \n
    \n

    4.1.10 (2023-04-24)

    \n
      \n
    • Added support for automatic updates
    • \n
    \n

    4.1.9 (2023-04-12)

    \n
      \n
    • Improved beta program notifications and workflow to comply with guidelines
    • \n
    • Improved various UI elements
    • \n
    \n

    4.1.8 (2023-03-31)

    \n
      \n
    • Added Beta testing program
    • \n
    • Added check for disabled PHP functions
    • \n
    • Fixed handling of taxonomies containing hyphens
    • \n
    \n

    4.1.7 (2022-11-24)

    \n
      \n
    • Fixed custom taxonomy unit generation issue
    • \n
    • Fixed plugin deactivation notice
    • \n
    \n

    4.1.6 (2022-11-23)

    \n
      \n
    • Fixed mishandling of empty categories
    • \n
    • Fixed _url undefined notice error
    • \n
    • Fixed error when build_taxonomies throws a fatal error when accessing sub-sitemap without pagination
    • \n
    • Improved handling of line breaks e.g. showing
      tag without escaping HTML
    • \n
    • Improved handling of the Google TID field optional to ping Google
    • \n
    • Improved documentation, given some renaming of the methods
    • \n
    • Added support for paginated sitemap posts, pages, and product links
    • \n
    • Added conditional statements to prevent rewrite rules from being checked every time the sitemap loads
    • \n
    \n

    4.1.5 (2022-06-14)

    \n
      \n
    • Fixed code regressions moving from git to svn (preventing recent fixes from being available)
    • \n
    \n

    4.1.4 (2022-06-06)

    \n
      \n
    • Fixed the issue of PHP warnings
    • \n
    • Fixed links per page issue
    • \n
    • Improved WordPress 6.0 compatibility
    • \n
    \n

    4.1.3 (2022-05-31)

    \n
      \n
    • Added backward compatibility settings
    • \n
    • Changed Google Tracking ID field to optional
    • \n
    • Fixed PHP warnings
    • \n
    \n

    4.1.2 (2022-04-15)

    \n
      \n
    • Fixed security issue related to Cross-Site Scripting attacks on debug page
    • \n
    • Fixed HTTP error while generating sitemap (because of conflict of www and now www site)
    • \n
    • Fixed handling WordPress core sitemap entry from robots.txt
    • \n
    • Added option to flush database rewrite on plugin deactivation
    • \n
    • Added option to split the custom categories into multiple sitemaps by custom taxonomy
    • \n
    • Added option to omit the posts specified as disallow in robots.txt
    • \n
    • Added option to set links per page for tags and categories
    • \n
    • Added option to set a custom filename for the sitemap
    • \n
    • Added option to list custom post in the archive sitemap
    • \n
    \n

    4.1.1 (2022-04-07)

    \n
      \n
    • fix security issue related to Cross-Site Scripting attacks on debug page
    • \n
    • fix HTTP error while generating sitemap (because of conflict of www and now www site)
    • \n
    • fix handles the removal of WordPress native sitemap entry from robots.txt
    • \n
    • added option for flush database rewrite on deactivate plugin
    • \n
    • added options for split the custom categories into multiple sitemap by custom taxonomy
    • \n
    • added options to omit the posts which added in robots.txt to disallow
    • \n
    • added option to set links per page for tags and categories
    • \n
    • added option for provide the custom name for the sitemap.xml file
    • \n
    • added option for custom post type’s list into the archive sitemap
    • \n
    • added support of manage priorities and frequencies for products category
    • \n
    \n

    4.1.0 (2018-12-18)

    \n
      \n
    • Fixed security issue related to escaping external URLs
    • \n
    • Fixed security issue related to option tags in forms
    • \n
    \n

    4.0.9 (2017-07-24)

    \n
      \n
    • Fixed security issue related to donation functionality.
    • \n
    \n

    4.0.8 (2014-11-15)

    \n
      \n
    • Fixed bug regarding the exclude categories feature, thanks to Claus Schöffel!
    • \n
    \n

    4.0.7.1 (2014-09-02)

    \n
      \n
    • Sorry, no new features this time… This release only updates the Compatibility-Tag to WordPress 4.0. Unfortunately there is no way to do this anymore without a new version
    • \n
    \n

    4.0.7 (2014-06-23)

    \n
      \n
    • Better compatibility with GoDaddy managed WP hosting
    • \n
    • Better compatibility with QuickCache
    • \n
    • Removed WordPress version from the sitemap
    • \n
    • Corrected link to WordPress privacy settings (if search engines are blocked)
    • \n
    • Changed hook which is being used for sitemap pings to avoid pings on draft edit
    • \n
    \n

    4.0.6 (2014-06-03)

    \n
      \n
    • Added option to disable automatic gzipping
    • \n
    • Fixed bug with duplicated external sitemap entries
    • \n
    • Don’t gzip if behind Varnish since Varnish can do that
    • \n
    \n

    4.0.5 (2014-05-18)

    \n
      \n
    • Added function to manually start ping for main-sitemap or all sub-sitemaps
    • \n
    • Added support for changing the base of the sitemap URL to another URL (for WP installations in sub-folders)
    • \n
    • Fixed issue with empty post sitemaps (related to GMT/local time offset)
    • \n
    • Fixed some timing issues in archives
    • \n
    • Improved check for possible problems before gzipping
    • \n
    • Fixed empty archives and author sitemaps in case there were no posts
    • \n
    • Fixed bug which caused the Priority Provider to disappear in recent PHP versions
    • \n
    • Plugin will also ping with the corresponding sub-sitemap in case a post was modified
    • \n
    • Better checking for empty external urls
    • \n
    • Changed text in XSL template to be more clear about sitemap-index and sub-sitemaps
    • \n
    • Changed content type to text/xml to improve compatibility with caching plugins
    • \n
    • Changed query parameters to is_feed=true to improve compatibility with caching plugins
    • \n
    • Switched from using WP_Query to load posts to a custom SQL statement to avoid problems with other plugin filters
    • \n
    • Added caching of some SQL statements
    • \n
    • Added support feed for more help topics
    • \n
    • Added link to new help page
    • \n
    • Cleaned up code and renamed variables to be more readable
    • \n
    • Updated Japanese Translation, thanks to Daisuke Takahashi
    • \n
    \n

    4.0.4 (2014-04-19)

    \n
      \n
    • Removed deprecated get_page call
    • \n
    • Changed last modification time of sub-sitemaps to the last modification date of the posts instead of the publish date
    • \n
    • Removed information window if the statistic option has not been activated
    • \n
    • Added link regarding new sitemap format
    • \n
    • Updated Portuguese translation, thanks to Pedro Martinho
    • \n
    • Updated German translation
    • \n
    \n

    4.0.3 (2014-04-13)

    \n
      \n
    • Fixed compression if an gzlib handler was already active
    • \n
    • Help regarding permalinks for Nginx users
    • \n
    • Fix with gzip compression in case there was other output before already
    • \n
    • Return 404 for HTML sitemaps if the option has been disabled
    • \n
    • Updated translations
    • \n
    \n

    4.0.2 (2014-04-01)

    \n
      \n
    • Fixed warning if an gzip handler is already active
    • \n
    \n

    4.0.1 (2014-03-31)

    \n
      \n
    • Fixed bug with custom post types including a “-“
    • \n
    • Fixed some 404 Not Found Errors
    • \n
    \n

    4.0 (2014-03-30)

    \n
      \n
    • No static files anymore, sitemap is created on the fly!
    • \n
    • Sitemap is split-up into sub-sitemaps by month, allowing up to 50.000 posts per month! More information
    • \n
    • Support for custom post types and custom taxonomis!
    • \n
    • 100% Multisite compatible, including by-blog and network activation.
    • \n
    • Reduced server resource usage due to less content per request.
    • \n
    • New API allows other plugins to add their own, separate sitemaps.
    • \n
    • Note: PHP 5.1 and WordPress 3.3 is required! The plugin will not work with lower versions!
    • \n
    • Note: This version will try to rename your old sitemap files to *-old.xml. If that doesn’t work, please delete them manually since no static files are needed anymore!
    • \n
    \n

    3.4.1 (2014-04-10)

    \n
      \n
    • Compatibility with mysqli
    • \n
    \n

    Version 3.4 (2013-11-24)

    \n
      \n
    • Fixed deprecation warnings in PHP 5.4, thanks to Dion Hulse!
    • \n
    \n

    3.3 (2013-09-28)

    \n
      \n
    • Fixed problem with file permission checking
    • \n
    • Filter out hashs (#) in URLs
    • \n
    \n

    3.2.9 (2013-01-11)

    \n
      \n
    • Fixed security issue with change frequencies and filename of sitemap file. Exploit was only possible with admin account.
    • \n
    \n

    3.2.8 (2012-08-08)

    \n
      \n
    • Fixed wrong custom taxonomy URLs, thanks to ramon fincken of the wordpress.org forum!
    • \n
    • Removed ASK ping since they shut down their service.
    • \n
    • Exclude post_format taxonomy from custom taxonomy list
    • \n
    \n

    3.2.7 (2012-04-24)

    \n
      \n
    • Fixed custom post types, thanks to clearsite of the wordpress.org forum!
    • \n
    • Fixed broken admin layout on WP 3.4
    • \n
    \n

    3.2.6 (2011-09-19)

    \n
      \n
    • Removed YAHOO ping since YAHOO uses bing now
    • \n
    • Removed deprecated function call
    • \n
    \n

    3.2.5 (2011-07-11)

    \n
      \n
    • Backported Bing ping success fix from beta
    • \n
    • Added friendly hint to try out the new beta
    • \n
    \n

    3.2.4 (2010-05-29)

    \n
      \n
    • Added (GMT) to date column in sitemap xslt template to avoid confusion with different time zones
    • \n
    • Fixed wrong SQL statement for author pages, thanks to twoenoug
    • \n
    • Fixed several deprecated function calls
    • \n
    • Note: This release does not support the new multisite feature of WordPress yet and will not be active when multisite is enabled.
    • \n
    \n

    3.2.3 (2010-04-02)

    \n
      \n
    • Fixed that all pages were missing in the sitemap if the “Uncategorized” category was excluded
    • \n
    \n

    3.2.2 (2009-12-19)

    \n
      \n
    • Updated compatibility tag to WordPress 2.9
    • \n
    • Fixed PHP4 problems
    • \n
    \n

    3.2.1 (2009-12-16)

    \n
      \n
    • Notes and update messages at the top of the admin page could interfere with the manual build function
    • \n
    • Help links in the WP contextual help were not shown anymore since the last update
    • \n
    • IE 7 sometimes displayed a cached admin page
    • \n
    • Removed invalid link to config page from the plugin description (The link lead to a “Not enough permission error”)
    • \n
    • Improved performance of getting the current plugin version by caching
    • \n
    • Updated Spanish language files
    • \n
    \n

    3.2 (2009-11-23)

    \n
      \n
    • Added function to show the actual results of a ping instead of only linking to the url
    • \n
    • Added new hook (sm_rebuild) for third party plugins to start building the sitemap
    • \n
    • Fixed bug which showed the wrong URL for the latest Google ping result
    • \n
    • Added some missing documentation
    • \n
    • Removed hardcoded php name for sitemap file in admin urls
    • \n
    • Uses KSES for showing ping test results
    • \n
    • Ping test fixed for WP < 2.3
    • \n
    \n

    3.1.9 (2009-11-13)

    \n
      \n
    • Fixed MySQL Error if author pages were included
    • \n
    \n

    3.1.8 (2009-11-07)

    \n
      \n
    • Improved custom taxonomy handling and fixed wrong last modification date
    • \n
    • Fixed fatal error in WordPress versions lower than 2.3
    • \n
    • Fixed Update Notice for WordPress 2.8 and higher
    • \n
    • Added warning if blog privacy is activated
    • \n
    • Fixed priorities of additional pages were shown as 0 instead of 1
    • \n
    \n

    3.1.7 (2009-10-21)

    \n
      \n
    • Added support for custom taxonomies. Thanks to Lee!
    • \n
    \n

    3.1.6 (2009-08-31)

    \n
      \n
    • Fixed PHP error “Only variables can be passed by reference”
    • \n
    • Fixed wrong URLS of multi-page posts (Thanks artstorm!)
    • \n
    • Updated many language files
    • \n
    \n

    3.1.5 (2009-08-24)

    \n
      \n
    • Added option to completely disable the last modification time
    • \n
    • Fixed problem with HTTPS url for the XSL stylesheet if the sitemap was build via the admin panel
    • \n
    • Improved handling of homepage entry if a single page was set for it
    • \n
    • Fixed mktime warning which appeared sometimes
    • \n
    • Fixed bug which caused inf. reloads after rebuilding the sitemap via the admin panel
    • \n
    • Improved handling of missing sitemaps files if WP was moved to another location
    • \n
    \n

    3.1.4 (2009-06-22)

    \n
      \n
    • Fixed bug which broke all pings in WP older than 2.7
    • \n
    • Added more output in debug mode if pings fail
    • \n
    • Moved global post variable so other plugins can use it in get_permalink()
    • \n
    • Added small icon for ozh admin menu
    • \n
    • Added more help links in UI
    • \n
    \n

    3.1.3 (2009-06-07)

    \n
      \n
    • Changed MSN Live Search to Bing
    • \n
    • Exclude categories also now exludes the category itself and not only the posts
    • \n
    • Pings now use the new WordPress HTTP API instead of Snoopy
    • \n
    • Fixed bug that in localized WP installations priorities could not be saved
    • \n
    • The sitemap cron job is now cleared after a manual rebuild or after changing the config
    • \n
    • Adjusted style of admin area for WP 2.8 and refreshed icons
    • \n
    • Disabled the “Exclude categories” feature for WP 2.5.1, since it doesn’t have the required functions yet
    • \n
    \n

    3.1.2 (2008-12-26)

    \n
      \n
    • Changed the way the stylesheet is saved (default / custom stylesheet)
    • \n
    • Sitemap is now rebuild when a page is published
    • \n
    • Removed support for static robots.txt files, this is now handled via WordPress functions
    • \n
    • Added compat. exceptions for WP 2.0 and WP 2.1
    • \n
    \n

    3.1.1 (2008-12-21)

    \n
      \n
    • Fixed redirect issue if wp-admin is rewritten via mod_rewrite, thanks to macjoost
    • \n
    • Fixed wrong path to assets, thanks PozHonks
    • \n
    • Fixed wrong plugin URL if wp-content was renamed / redirected, thanks to wnorris
    • \n
    • Updated WP User Interface for 2.7
    • \n
    • Various other small things
    • \n
    \n

    3.1.0.1 (2008-05-27)

    \n
      \n
    • Extracted UI JS to external file
    • \n
    • Enabled the option to include following pages of multi-page posts
    • \n
    • Script tries to raise memory and time limit if active
    • \n
    \n

    3.1 (2008-05-22)

    \n
      \n
    • Marked as stable
    • \n
    \n

    3.1b3 (2008-05-19)

    \n
      \n
    • Cleaned up plugin directory and moved img files to subfolders
    • \n
    • Fixed background building bug in WP 2.1
    • \n
    • Removed auto-update plugin link for WP < 2.5
    • \n
    \n

    3.1b2 (2008-05-18)

    \n
      \n
    • Fixed critical bug with the build in background option
    • \n
    • Added notification if a build is scheduled
    • \n
    \n

    3.1b1 (2008-05-08)

    \n
      \n
    • Splitted plugin in loader, generator and user interface to save memory
    • \n
    • Generator and UI will only be loaded when needed
    • \n
    • Secured all admin actions with nonces
    • \n
    • Improved WP 2.5 handling
    • \n
    • New “Suggest a Feature” link
    • \n
    \n

    3.0.3.3 (2008-04-29)

    \n
      \n
    • Fixed author pages
    • \n
    • Enhanced background building and increased delay to 15 seconds
    • \n
    • Enabled background building by default
    • \n
    \n

    3.0.3.2 (2008-04-28)

    \n
      \n
    • Improved WP 2.5 handling (fixes blank screens and timeouts)
    • \n
    \n

    3.0.3.1 (2008-03-30)

    \n
      \n
    • Added compatibility CSS for WP 2.5
    • \n
    \n

    3.0.3 (2007-12-30)

    \n
      \n
    • Added option to ping MSN Live Search
    • \n
    • Removed some WordPress hooks (the sitemap isn’t updates with every comment anymore)
    • \n
    \n

    3.0.2.1 (2007-11-28)

    \n
      \n
    • Fixed wrong XML Schema Location (Thanks to Emanuele Tessore)
    • \n
    • Added Russian Language files by Sergey http://ryvkin.ru
    • \n
    \n

    3.0.2 (2007-11-25)

    \n
      \n
    • Fixed bug which caused that some settings were not saved correctly
    • \n
    • Added option to exclude pages or post by ID
    • \n
    • Restored YAHOO ping service with API key since the other one is to unreliable
    • \n
    \n

    3.0.1 (2007-11-03)

    \n
      \n
    • Changed HTTP client for ping requests to Snoopy
    • \n
    • Added “safemode” for SQL which doesn’t use unbuffered results
    • \n
    • Added option to run the building process in background using wp-cron
    • \n
    • Added links to test the ping if it failed
    • \n
    \n

    3.0 final (2007-09-24)

    \n
      \n
    • Marked as stable
    • \n
    • Removed useless functions
    • \n
    \n

    3.0b11 (2007-09-23)

    \n
      \n
    • Changed mysql queries to unbuffered queries
    • \n
    • Uses MUCH less memory
    • \n
    • Option to limit the number of posts
    • \n
    \n

    3.0b10 (2007-09-04)

    \n
      \n
    • Added category support for WordPress 2.3
    • \n
    • Fixed bug with empty URLs in sitemap
    • \n
    • Repaired GET building
    • \n
    \n

    3.0b9 (2007-09-02)

    \n
      \n
    • Added tag support for WordPress 2.3
    • \n
    • Fixed archive bug with static pages (Thanks to Peter Claus Lamprecht)
    • \n
    • Fixed some missing translation strings, thanks to Kirin Lin
    • \n
    \n

    3.0b8 (2007-07-22)

    \n
      \n
    • Fixed bug with empty categories
    • \n
    • Fixed bug with translation plugins
    • \n
    • Added support for robots.txt
    • \n
    • Switched YAHOO ping API from YAHOO Web Services to the “normal” ping service
    • \n
    • Search engines will only be pinged if the sitemap file has changed
    • \n
    \n

    3.0b7 (2007-05-17)

    \n
      \n
    • Added Ask.com notification
    • \n
    • Added option to include the author pages like /author/john
    • \n
    • Fixed WP 2.1 / Pre 2.1 post / pages database changes
    • \n
    • Added check to not build the sitemap if importing posts
    • \n
    • Fixed wrong XSLT location (Thanks froosh)
    • \n
    • Small enhancements and bug fixes
    • \n
    \n

    3.0b6 (2007-01-23)

    \n
      \n
    • sitemap.xml.gz was not compressed
    • \n
    • YAHOO update-notification was PHP5 only (Thanks to Joseph Abboud!)
    • \n
    • More WP 2.1 optimizations
    • \n
    • Reduced memory usage with PHP5
    • \n
    \n

    3.0b5 (2007-01-19)

    \n
      \n
    • WordPress 2 Design
    • \n
    • YAHOO update notification
    • \n
    • New status report, removed ugly logfiles
    • \n
    • Added option to define a XSLT stylesheet and added a default one
    • \n
    • Fixed bug with sub-pages, thanks to MikePeter and Glenn
    • \n
    • Improved file handling, thanks to VJTD3
    • \n
    • WP 2.1 improvements
    • \n
    \n

    3.0b4 (2006-11-16)

    \n
      \n
    • Fixed some smaller bugs
    • \n
    • Decreased memory usage which should solve timeout and memory problems
    • \n
    • Updated namespace to support YAHOO and MSN
    • \n
    \n

    3.0b2 (2006-01-14)

    \n
      \n
    • Fixed several bugs reported by users
    • \n
    \n

    3.0b (2005-11-25)

    \n
      \n
    • WordPress 2.0 (Beta, RC1) compatible
    • \n
    • Added different priority calculation modes and introduced an API to create custom ones (Some people didn’t like the way to calculate the post priority based on the count of user comments. This will give you the possibility to develop custom priority providers which fit your needs.)
    • \n
    • Added support to use the Popularity Contest plugin by Alex King to calculate post priority (If you are already using the Popularity Contest plugin, this will be the best way to determine the priority of the posts. Uses to new priority API noted above.)
    • \n
    • Added option to exclude password protected posts (This was one of the most requested features.)
    • \n
    • Posts and pages marked for publish with a date in the future won’t be included
    • \n
    • Added function to start sitemap creation via GET and a secret key (If you are using external software which directly writes into the database without using the WordPress API, you can rebuild the sitemap with a simple HTTP Request. This can be made with a cron job for example.)
    • \n
    • Improved compatibility with other plugins (There should no longer be problems with other plugins now which checked for existence of a specified function to determine if you are in the control panel or not.)
    • \n
    • Recoded plugin architecture which is now fully OOP (The code is now cleaner and better to understand which makes it easier to modify. This should also avoid namespace problems.)
    • \n
    • Improved speed and optimized settings handling (Settings and pages are only loaded if the sitemap generation process starts and not every time a page loads. This saves one MySQL Query on every request.)
    • \n
    • Added Button to restore default configuration (Messed up the config? You’ll need just one click to restore all settings.)
    • \n
    • Added log file to check everything is running (In the new log window you can see when your sitemap was rebuilt or if there was any error.)
    • \n
    • Improved user-interface
    • \n
    • Added several links to homepage and support (This includes the Notify List about new releases and the WordPress support forum.)
    • \n
    \n

    2.7 (2005-11-25)

    \n
      \n
    • Added Polish Translation by kuba
    • \n
    \n

    2.7 (2005-11-01)

    \n\n

    2.7 (2005-07-21)

    \n
      \n
    • Fixed bug with incorrect date in additional pages (wrong format)
    • \n
    • Added Swedish Translation by Tobias Bergius
    • \n
    \n

    2.6 (2005-07-16)

    \n
      \n
    • Included Chinese (Simplified) language files by june6
    • \n
    \n

    2.6 (2005-07-04)

    \n
      \n
    • Added support to store the files at a custom location
    • \n
    • Changed the home URL to have a slash at the end
    • \n
    • Fixed errors with wp-mail
    • \n
    • Added support for other plugins to add content to the sitemap
    • \n
    \n

    2.5 (2005-06-15)

    \n
      \n
    • You can include now external pages which aren’t generated by WordPress or are not recognized by this plugin
    • \n
    • You can define a minimum post priority, which will overrride the calculated value if it’s too low
    • \n
    • The plugin will automatically ping Google whenever the sitemap gets regenerated
    • \n
    • Update 1: Included Spanish translations by Cesar Gomez Martin
    • \n
    • Update 2: Included Italian translations by Stefano Aglietti
    • \n
    • Update 3: Included Traditional Chinese translations by Kirin Lin
    • \n
    \n

    2.2 (2005-06-08)

    \n
      \n
    • Language file support: Hiromasa from http://hiromasa.zone.ne.jp sent me a japanese version of the user interface and modified the script to support it! Thanks for this! Check the WordPress Codex how to set the language in WordPress.
    • \n
    • Added Japanese user interface by Hiromasa
    • \n
    • Added German user interface by me
    • \n
    \n

    2.12 (2005-06-07)

    \n
      \n
    • Changed SQL Statement for categories that it also works on MySQL 3
    • \n
    \n

    2.11 (2005-06-07)

    \n
      \n
    • Fixed a hardcoded tablename which made a SQL error
    • \n
    \n

    2.1 (2005-06-07)

    \n
      \n
    • Can also generate a gzipped version of the xml file (sitemap.xml.gz)
    • \n
    • Uses correct last modification dates for categories and archives. (Thanks to thx Rodney Shupe for the SQL)
    • \n
    • Supports now different WordPress / Blog directories
    • \n
    • Fixed bug which ignored different post/page priorities (Reported by Brad)
    • \n
    \n

    2.01 (2005-06-07)

    \n
      \n
    • Fixed compatibility for PHP installations which are not configured to use short open tags
    • \n
    • Changed Line 147 from _e($i); to _e(strval($i));
    • \n
    • Thanks to Christian Aust for reporting this!
    • \n
    \n", "description": "

    Generate XML and HTML sitemaps for your website with ease using the XML Sitemap Generator for Google. This plugin enables you to improve your SEO rankings by creating page, image, news, video, HTML, and RSS sitemaps. It also supports custom post types and taxonomies, allowing you to ensure that all of your content is being indexed by search engines. With a user-friendly interface, you can easily configure the plugin to suit your needs and generate sitemaps in just a few clicks. Keep your website up-to-date and make sure that search engines are aware of all of your content by using the XML Sitemap Generator for Google.

    \n

    The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.

    \n

    Supported for more than a decade and rated among the best, it will do exactly what it’s supposed to do – providing a complete XML sitemap for search engines!

    \n
    \n

    If you like the plugin, feel free to rate it! 🙂

    \n
    \n

    Related Links:

    \n\n

    License

    \n

    Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial site.

    \n

    Translations

    \n

    The plugin comes with various translations, please refer to the WordPress Codex for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all definitions and may be used with a gettext editor like Poedit (Windows).

    \n", "screenshots": "
    1. \"Plugin

      Plugin options page

    2. \"Sample

      Sample XML sitemap (with a stylesheet for making it readable)

    3. \"Sample

      Sample XML sitemap (without stylesheet)

    ", "installation": "
      \n
    1. Deactivate or disable other sitemap generators.
    2. \n
    3. Install the plugin like you always install plugins, either by uploading it via FTP or by using the “Add Plugin” function of WordPress.
    4. \n
    5. Activate the plugin on the plugin administration page
    6. \n
    7. If you want: Open the plugin configuration page, which is located under Settings -> XML-Sitemap and customize settings like priorities and change frequencies.
    8. \n
    9. The plugin will automatically update your sitemap if you publish new content, so there is nothing more to do 🙂
    10. \n
    \n"}, "versions": {"4.0": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.9.zip", "trunk": "https://downloads.wordpress.org/plugin/google-sitemap-generator.zip", "4.1.10": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.10.zip", "4.1.11": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.11.zip", "4.1.12": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.12.zip", "4.1.13": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.13.zip", "4.1.14": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.14.zip", "4.1.15": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.15.zip", "4.1.16": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.16.zip", "4.1.17": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.17.zip", "4.1.18": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.18.zip", "4.1.19": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.19.zip", "4.1.20": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.20.zip", "4.1.21": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.21.zip", "4.0.7.1": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.7.1.zip"}, "downloaded": 41432831, "description": "

    Generate XML and HTML sitemaps for your website with ease using the XML Sitemap Generator for Google. This plugin enables you to improve your SEO rankings by creating page, image, news, video, HTML, and RSS sitemaps. It also supports custom post types and taxonomies, allowing you to ensure that all of your content is being indexed by search engines. With a user-friendly interface, you can easily configure the plugin to suit your needs and generate sitemaps in just a few clicks. Keep your website up-to-date and make sure that search engines are aware of all of your content by using the XML Sitemap Generator for Google.

    \n

    The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.

    \n

    Supported for more than a decade and rated among the best, it will do exactly what it’s supposed to do – providing a complete XML sitemap for search engines!

    \n
    \n

    If you like the plugin, feel free to rate it! 🙂

    \n
    \n

    Related Links:

    \n\n

    License

    \n

    Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial site.

    \n

    Translations

    \n

    The plugin comes with various translations, please refer to the WordPress Codex for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all definitions and may be used with a gettext editor like Poedit (Windows).

    \n", "donate_link": "", "num_ratings": 2225, "screenshots": {"1": {"src": "https://ps.w.org/google-sitemap-generator/assets/screenshot-1.png?rev=1701944", "caption": "Plugin options page"}, "2": {"src": "https://ps.w.org/google-sitemap-generator/assets/screenshot-2.png?rev=1701944", "caption": "Sample XML sitemap (with a stylesheet for making it readable)"}, "3": {"src": "https://ps.w.org/google-sitemap-generator/assets/screenshot-3.png?rev=1701944", "caption": "Sample XML sitemap (without stylesheet)"}}, "support_url": "https://wordpress.org/support/plugin/google-sitemap-generator/", "contributors": {"auctollo": {"avatar": "https://secure.gravatar.com/avatar/2c6b3e63e6cab50f814f0b20881efe19a2ad2d7b841270d5210e769ee485ccd8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/auctollo/", "display_name": "Auctollo"}}, "last_updated": "2025-04-17 5:58pm GMT", "preview_link": "", "requires_php": "5.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.21.zip", "author_profile": "https://profiles.wordpress.org/auctollo/", "business_model": "commercial", "repository_url": "", "upgrade_notice": {"4.1.18": "

    Thank you for using XML Sitemap Generator! This release resolves critical issues reported in the support forum. Thank you to all who reported issues! Make sure to "Enable auto-updates!"

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f4e2-704a-b63b-acef94b9c848", "name": "XML Sitemap Generator for Google", "slug": "google-sitemap-generator", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1744912680, "version": "4.1.21"}, "support_threads": 7, "requires_plugins": [], "short_description": "Generate multiple types of sitemaps to improve SEO and get your website indexed quickly.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1be0-708c-aed1-13578d333b3f', 'did:web:api.aspiredev.org:packages:wp-plugin:gtranslate', 'gtranslate', 'Translate WordPress with GTranslate', '

    Translate WordPress with GTranslate plugin uses Google Translate automatic translation service to translate wordpress site with Google power and make it multilingual. With 103 available languages your site will be available to more than 99% of internet users. Our paid versions are fully SEO compatible which will increase your international traffic and sales. This translate plugin is a budget multilingual WordPress solution which combines automatic and human translations to save money and is easy to implement.

    -

    GTranslate is a leading website translation services provider since 2008, it moves away the language barriers.

    -

    Compared to other translation plugins for WordPress, we use cloud based approach which does not slow down your website. In addition to that, we can offer complete SEO features based on sub-domains with our paid options, which can make your website appear in search engines in different languages which will increase your international traffic and sales. In our paid versions we DO NOT limit the number of words or the number of translated pageviews. You DO NOT pay additionally for automatic translations.

    -

    Please use GTranslate Support for your questions and support requests! We are multilingual!

    -

    Please check our FAQ to get quick answers.

    -

    Features

    -
      -
    • Free Google automatic machine translation
    • -
    • Hides Google top frame after translation
    • -
    • Translate website on the fly
    • -
    • Translate posts and pages
    • -
    • Translate categories and tags
    • -
    • Menus and widgets translation
    • -
    • Themes and plugins translation
    • -
    • Right to left language support
    • -
    • Google language translator widget
    • -
    • Auto-switch language based on browser defined language
    • -
    • Available styles Float, Dropdown, Flags, Flags with dropdown, Nice dropdown with flags, Flags with language names, Flags with language codes, Language names, Language codes, Globe, Popup
    • -
    • Floating language selector
    • -
    • WooCommerce shop translation
    • -
    • Multilingual language names in native alphabet
    • -
    • Alternative flags for Quebec, Canada, USA, Brazil, Mexico, Argentina, Colombia
    • -
    • Lazy loading for language flags and js libraries to boost performance
    • -
    • Lightweight vanilla javascript without dependencies
    • -
    • Forum Support
    • -
    -

    Paid Features

    -
      -
    • Multilingual SEO – Enable search engine indexing
    • -
    • Neural machine translations with human level translation quality
    • -
    • Increase traffic and AdSense revenue
    • -
    • Search engine friendly (SEF) URLs
    • -
    • Yoast SEO compatible – translate meta keywords, meta description, schema.org data structures, translate sitemaps
    • -
    • WooCommerce compatible – translate products, schema.org data structures
    • -
    • You can have sub-directory (example.com/es/) or sub-domain (es.example.com) URL structure
    • -
    • URL Translation aka slug translation is possible (example.com/about-us → example.es/sobre-nosotros)
    • -
    • Add hreflang tags for translated alternatives
    • -
    • You can manually correct translations
    • -
    • In context translation interface (make corrections without losing the context)
    • -
    • Meta data translation (meta keywords, meta description)
    • -
    • Translating schema.org microdata for better search engine appearance
    • -
    • Seamless updates (cloud service updated on our side – SaaS, you do not need to worry about backups on your side)
    • -
    • JSON format translation
    • -
    • Translate WooCommerce emails
    • -
    • AMP translation (Accelerated Mobile Pages translation)
    • -
    • Image localization – Media translation
    • -
    • Translation Proxy (aka Translation Delivery Network)
    • -
    • Centralized Translation Cache – We revise and improve translations over time
    • -
    • Language Hosting (example.fr)
    • -
    • User Dashboard with Analytics
    • -
    • Live Chat Support
    • -
    -

    See also

    -

    If you are looking for unlimited, high-quality automatic translations, check out TranslateX – an automatic translation API offering unlimited translation for your website or application.

    -

    We also offer integration plugins:
    -TranslateX for Loco Translate – integrate TranslateX API directly into Loco Translate for seamless, unlimited automatic translations.
    -TranslateX for TranslatePress – bring unlimited automatic translation to TranslatePress using TranslateX API.

    -

    These solutions make it easy to supercharge your WordPress multilingual setup with TranslateX’s secure and affordable API.

    -

    GTranslate WordPress Demo
    -

    -

    Watch GTranslate Tour
    -

    -

    Edit Translations Demo (paid)
    -

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Translate WordPress with GTranslate", "slug": "gtranslate", "tags": {"language": "language", "translate": "translate", "translator": "translator", "translation": "translation", "multilingual": "multilingual"}, "added": "2010-03-31", "icons": {"1x": "https://ps.w.org/gtranslate/assets/icon-128x128.png?rev=2595917", "2x": "https://ps.w.org/gtranslate/assets/icon-256x256.png?rev=2595917"}, "author": "edo888", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/gtranslate/assets/banner-772x250.png?rev=3287209", "high": "https://ps.w.org/gtranslate/assets/banner-1544x500.png?rev=3287209"}, "ratings": {"1": 68, "2": 25, "3": 37, "4": 152, "5": 4400}, "version": "3.0.9", "homepage": "https://gtranslate.io/?xyz=998", "requires": "2.8.1", "sections": {"faq": "\n
    \nIt doesn’t translate, what to do?\n\n

    \n

    Please check GTranslate Support Forum and feel free to create a new topic if you cannot find answers.

    \n

    \n
    \nWhat is GTranslate?\n\n

    \n

    GTranslate can translate your website into multiple languages and make it multilingual.

    \n
      \n
    • Multilingual solution makes your website available to the world
    • \n
    • One click translation helps visitors to read your site in their native language
    • \n
    • Free automatic translation translates your site instantly upon installation
    • \n
    • Professional translation by a human being is available
    • \n
    • Customizable language switcher lets you choose the suitable layout for your site
    • \n
    • Analytics provides insight into your audience and user activity
    • \n
    \n
    \n

    \n
    \nIs it FREE?\n\n

    \n

    Yes! We have free version and paid versions with advanced features.
    \nUnlike other translate plugins, which require you to pay for Google Translate API usage or other translate API usage, we also provide automatic translations for free.

    \n

    \n
    \nWhat is the quality of translation?\n\n

    \n

    In our free version we use Phrase Based Machine Translations provided by Google Translate, while in our paid versions use Google Translate Neural Translations which are very accurate for popular language pairs.
    \nIn the paid versions you can refine the automatic translations yourself or order professional translations or proofreading of a translated content.
    \nYou can get a translation cost estimate by using our Website Translation Cost Calculator

    \n

    \n
    \nAre the translations provided free of charge?\n\n

    \n

    Yes, we use Google Translate widget for website which provides free phrase based machine translations, which makes it possible to make your wordpress website multilingual instantly upon installation.
    \nIn our paid versions we use Google Translate state of the art Neural Translations which are included in the service price and there are no limits on the word count.

    \n

    Besides we offer cost effective automatic translation proofreading service and also professional translation service.
    \nYou can get an estimate from our Website Translation Price Calculator

    \n

    \n
    \nCan I modify the translations?\n\n

    \n

    That feature is available only in our paid version. You will be able to make edits directly on the page without losing the context.

    \n

    By the way, we can help you to translate your website with a cost effective approach by post-editing your automatic translated content.
    \nThe proofreading service will be done by a native speakers and if you want to take the quality to another service, we also have a professional website translation service available.
    \nYou can get an instant website translation estimate by using our Website Word Counter tool.

    \n

    \n
    \nWhich languages are supported?\n\n

    \n

    Here is the list: Afrikaans, Albanian, Amharic, Arabic, Armenian, Azerbaijani, Basque, Belarusian, Bengali, Bosnian, Bulgarian, Catalan, Cebuano, Chichewa, Chinese (Simplified), Chinese (Traditional), Corsican, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Filipino, Finnish, French, Frisian, Galician, Georgian, German, Greek, Gujarati, Haitian Creole, Hausa, Hawaiian, Hebrew, Hindi, Hmong, Hungarian, Icelandic, Igbo, Indonesian, Irish, Italian, Japanese, Javanese, Kannada, Kazakh, Khmer, Korean, Kurdish (Kurmanji), Kyrgyz, Lao, Latin, Latvian, Lithuanian, Luxembourgish, Macedonian, Malagasy, Malay, Malayalam, Maltese, Maori, Marathi, Mongolian, Myanmar (Burmese), Nepali, Norwegian, Pashto, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Samoan, Scottish Gaelic, Serbian, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenian, Somali, Spanish, Sundanese, Swahili, Swedish, Tajik, Tamil, Telugu, Thai, Turkish, Ukrainian, Urdu, Uzbek, Vietnamese, Welsh, Xhosa, Yiddish, Yoruba, Zulu

    \n

    \n
    \nIs GTranslate SEO compatible?\n\n

    \n

    Our free version doesn’t give any SEO advantage.

    \n

    For SEO features and multilingual SEO you need to go with a paid version which have all the SEO advantages. Our paid version will translate your website and allow search engines to discover and index the translated content.
    \nUnlike other translate plugins, we provide you all the possible tools to match with your multilingual SEO strategy.
    \nFor example you can have your translated content available via sub-directories (https://example.com/es, https://example.com/fr) or sub-domains (https://it.example.com, https://fr.example.com) or even you can host the translated versions on a top level country specific domain or any other domain like (https://example.fr, https://example.de), which will increase your chances to rank higher in local search engine’s results pages.

    \n

    \n
    \nWhat is multilingual SEO?\n\n

    \n

    Multilingual SEO is a SEO strategy which uses new content generation technique by translating your original content and making your website multilingual. When you translate your website into many languages you actually create many new multilingual keywords targeted for international market. It helps to increase your search appearnce or impressions count on search engines results pages (SERPs), which can generate more traffic, increase sales and rise the conversion rate, because when the wording is in the correct language it is more effective.

    \n

    \n
    \nIs URL Translation available?\n\n

    \n

    In our paid versions we have a feature to translate URL of your website which will give you more SEO advantage.
    \nFor example http://example.com/about-us → http://example.com/sobre-nosotros

    \n

    This is an important part of multilingual SEO strategy. When you have URL Translate option and translate also your website URLs also known us slugs, you are creating more keywords, which count as an improvement in your page rank for that keywords.

    \n

    \n
    \nDoes it translate emails too?\n\n

    \n

    Yes, with our paid version we can also translate WooCommerce emails.

    \n

    \n
    \nHow the free version differs from the paid versions?\n\n

    \n

    Free vesion is a nice looking language selector you can place on your website. It has a built in Javascript engine which allows to translate your website automatically to multiple languages. With our free translate plugin your website URL doesn’t change and the translations are not stored. While paid versions are a translation proxy also known as Translation Delivery Network. We host the translated versions of your website on our cloud network under a language specific domain. In that case every language will have a separate domain or separate URL and be indexed in search engines, which will help you to increase international traffic and sales.

    \n

    \n
    \nWhat is a Translation Delivery Network?\n\n

    \n

    Translation Delivery Network is a translation proxy which mirrors your website in different languages.

    \n

    GTranslate TDN technology is a cloud-based approach to the website translation task. There is no need to alter your environment and install software to localize your website. You can have your multilingual website up and running in less than 5 minutes.

    \n

    We will translate your content and host your translations in our cloud network. All the visits to your translated versions will be proxied through our network to your original website, so you will have a translated mirror of your website.

    \n

    This keeps away the need to use additional resources on your server like storage to store translations, compute time to render the translated pages or network bandwidth to deliver the translated pages to your website visitors. All is done through our network.

    \n

    \n
    \nCan I exclude some parts from being translated?\n\n

    \n

    Yes, you need to wrap the text you don’t want to be translated with <span class="notranslate"></span>.
    \nWith our paid versions you will have more control on the content which you do not want to translate. We have Skip Phrases, Skip Translations by CSS selectors and also Skip Pages features available.
    \nYou can read more about skipping translations on How to skip translations?

    \n

    \n
    \nWhich plugins can it translate?\n\n

    \n

    All plugins are supported including popular plugins like WooCommerce, Yoast SEO.

    \n

    Our technology allows us to translate what is visible on the page, since we are parsing the end result when your website is already generated and it doesn’t matter how the content is generated and by which plugin. We can translate all HTML websites.
    \nIf you notice that something is not translated, please contact our live chat and we will be happy to solve any issues. Usually the not translated content is being loaded on your website from 3rd party sources.

    \n

    We also offer you to change the images and media content on the translated versions and by doing that you can also translate the texts inside images and videos.

    \n
    \n

    \n
    \nHow Translation Delivery Network works?\n\n

    \n

    You just need to change your DNS records to add sub-domains or domains dedicated to your languages to our Translation Delivery Network.

    \n

    So when someone visits the new added sub-domain we will show the translated clone of your website.

    \n

    After that you can just configure and place the GTranslate Free widget on your site to enable language selection.

    \n

    \n
    \nWhat are the server requirements?\n\n

    \n

    There are no server requirements! Your website can be written in any programming language and hosted on any web server.

    \n

    \n
    \nWhat about updates?\n\n

    \n

    Updates are done seamlessly. Since the translations are hosted on our server we take care about updates. You just use up to date service every day. No need to worry about backups.

    \n

    \n
    \nDo I need to pay for Google Translate API key usage?\n\n

    \n

    No, we provide the automatic translations for free.

    \n

    In our free version, we provide Phrase Based machine translations from Google Translate. In our paid versions, you get state-of-the-art Neural Translations. We also do not limit the number of words or translated pageviews on your website, unlike other translate plugins.

    \n

    Unlike other plugins such as TranslatePress or Weglot, you do not pay additionally for automatic translations.

    \n

    We also offer a cost-effective approach for improving website translations: you can request an automatic translation post-editing service (done by a native speaker), or order a professional translation. Get an instant estimate for your website at our Website Translation Quote.

    \n

    If you need unlimited, fast, and affordable automatic translation, check out TranslateX – our automatic translation API that offers unlimited translation for your website or app. We also provide integration plugins for Loco Translate and TranslatePress to easily bring TranslateX’s unlimited API into other popular translation plugins.

    \n

    \n
    \nCan I test before making a payment?\n\n

    \n

    Yes, we have a 15 days free trial for our new customers.

    \n

    \n
    \nHow does the 15 day free trial work for your paid version?\n\n

    \n

    Trial is available for new customers only. If you do not wish to continue you may cancel any time during the trial period and you will not be charged anything.

    \n

    \n
    \nHow can I be sure that search engines will index my website translations?\n\n

    \n

    You can check that this website is indexed in Google by searching for site:gtranslate.io.

    \n

    \n
    \nHow I can edit the translations or order professional human translations?\n\n

    \n

    You need to go to the language you want to edit, for instance, French: http://domain.com/fr/ and add ?language_edit=1 to the end of the URL: http://domain.com/fr/?language_edit=1 and you will see the Edit buttons near each text. Read more at How to edit translations?

    \n

    If you want us to translate your website professionally or provide you a proofreading service for automatic translated content, you can get an instant estimate from Website Translation Quote, where you will get a detailed document with the list of pages, unique word count and prices to translate them.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    great and free

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy structurewebdesigner on October 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    you can choose a lot of languages

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy normastrapg on October 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    thank you very much!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    translation plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy morumbix on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks to the support team for helping to solve the related issues, especially Grikor, Hasmik, and Susanna 😊

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tmax530tuning on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy davidsalguero1697 on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I love it

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy niclashjulstrom on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin makes it easy to have several languages and domains connected to the same webpage. The setup was a bit tricky to setup multiple domains but the support from Susanna was very good. She helped me getting everything to work as we wanted.

    \n\n\n\n

    It would have been good if they could extend the features to allow multiple domain names for same language and add so that a domain could have multiple languages. For example if domain.fi (for Finland) could have Finnish as default and Swedish as optional. Some languages, for example Spanish, is the default language for many countries and therefore it should be good to have multiple local domains to the same language.

    \n\n\n\n

    But overall, very good plugin that makes the translations and domain handling easy.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Silvia (SIPIVI) on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A quick and easy way to translate your website. I am really grateful for it

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    5-Star Review for Developer Grikor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tonyzhou654 on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I want to express my sincere appreciation to Grikor for his excellent support and professionalism. He quickly identified and resolved the technical transaction issues I was experiencing, ensuring everything was back to normal in no time. His communication was clear and timely, and he went the extra mile to explain the cause of the problem and the steps he took to fix it.

    \n\n\n\n

    Thanks to his expertise and dedication, the entire process was smooth and stress-free. I highly recommend Grikor for any technical or development-related tasks — a true professional who delivers results efficiently and with great attention to detail.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    SSL handshake failed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy luca4532 on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I recently faced a serious issue with the plugin: for several days my website showed errors on the translated versions with the message “SSL handshake failed.” It was a critical situation because I was risking losing SEO rankings and having products blocked on Merchant.

    \n\n\n\n

    At first, the support team asked me for several technical details, but in the end they quickly fixed the issue by changing the connection IP, and everything started working again immediately. It’s important to note that this kind of error is not caused by the plugin itself, but by some hosting providers blocking proxy IPs.

    \n\n\n\n

    I want to thank the support team, especially Grikor, who handled my case with patience and professionalism until the problem was fully solved. Now my site is back online and I can continue my work without interruptions.

    \n\n\n\n

    This is a very useful plugin with a support team that – even in difficult situations – shows real dedication and competence.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple, friendly free and easily ugradable if you want/need

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy planettrazan on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Wonderful stuff. Choose the languages you need - and where to put the dropdown. Forgot a language? Just go back and add it.
    Works really well in free plan, but if you have tricky stuff you might want to upgrade so you can edit translations etc.

    \n
    \n
    \n", "changelog": "

    3.0.9

    \n
      \n
    • Updated localization strings on the GTranslate plugin settings page.
    • \n
    • Added information about TranslateX – unlimited automatic translation API, and integration plugins for Loco Translate and TranslatePress.
    • \n
    \n

    3.0.8

    \n
      \n
    • Fixed current URL for hreflang tags when WordPress is installed in a sub-folder
    • \n
    • Changed sessionStorage to localStorage for more persistence when auto switching language
    • \n
    • Added a check for gtranslateSettings variable which can be undefined due to some cache plugins
    • \n
    \n

    3.0.7

    \n
      \n
    • Added “gtranslate” into LiteSpeed cache delayed exclude list
    • \n
    \n

    3.0.6

    \n
      \n
    • Added email translation support for emails sent by WP SMTP MAIL plugin
    • \n
    • Added “gtranslate” into LiteSpeed cache exclude list
    • \n
    • Fix for WooCommerce geoIP detection on WP Engine platform
    • \n
    \n

    3.0.5

    \n
      \n
    • Fix for fatal error in email translation when args parameter is malformed
    • \n
    • Updated flags location to avoid additional 301 redirect for sub-domain URL structure
    • \n
    • Added skip translate for language links rendered by gt-link shortcode
    • \n
    \n

    3.0.4

    \n
      \n
    • Added protection against XSS by bad acting admins
    • \n
    • Added flag size option for Globe widget look
    • \n
    \n

    3.0.3

    \n
      \n
    • Fix mobile touch-no-click issue for float look in horizontal open direction mode
    • \n
    • Fix for invalid input in Custom CSS section which can break the settings interface
    • \n
    • Removed translated text highlight on hover
    • \n
    • Added more litespeed cache related excludes
    • \n
    \n

    3.0.2

    \n
      \n
    • Fix for multiple appearance of the language selector in menus for some themes which call the render menu more than once
    • \n
    • Removed unused CSS code and additional query string
    • \n
    \n

    3.0.1

    \n
      \n
    • Ground up rebuild with breaking changes to the language switcher
    • \n
    • Performance upgrades: all unnecessary assets are being lazy loaded, lightweight vanilla js without dependencies
    • \n
    • New CDN option for assets available
    • \n
    • New widget look: Float
    • \n
    • Popup widget look optimized and out of beta
    • \n
    • Dropdown widget look optimized, Select Language label customization option added
    • \n
    • Globe widget look optimized, globe size and color configuration options added
    • \n
    • Easy positioning into website menu
    • \n
    • Tested with the following caching plugins: Autoptimize, LiteSpeed Cache, W3 Total Cache, WP Fastest Cache, WP Rocket, WP Super Cache, WP Optimize, SG Optimizer
    • \n
    \n

    2.9.15

    \n
      \n
    • Google Translate Toolbar CSS updated
    • \n
    • Added main language validity check for config.php file before modifying it
    • \n
    \n

    2.9.14

    \n
      \n
    • Fix for images not appearing in WooCommerce PDF Invoices after translation
    • \n
    • Converted get parameters encoding from rfc1738 to rfc3986
    • \n
    • Replaced gzdecode with zlib_decode to be zlib encoding type independent
    • \n
    \n

    2.9.13

    \n
      \n
    • Added translation support for PDF invoices in WooCommerce PDF Invoices plugin
    • \n
    • Fixed email translation issue with custom domains
    • \n
    • Fixed typo in Sundanese language name
    • \n
    \n

    2.9.12

    \n
      \n
    • Fix for conflict with WP Rocket plugin when “Load JavaScript deferred” option is enabled
    • \n
    \n

    2.9.11

    \n
      \n
    • Fix for Divi when both “Defer jQuery” and “Enqueue jQuery Compatibility Script” are enabled in Divi Theme Performance options
    • \n
    \n

    2.9.10

    \n
      \n
    • Added support for deffered jQuery library loading, this should fix issues with Divi theme jQuery library defer option
    • \n
    \n

    2.9.9

    \n
      \n
    • Fixed information disclosure security issue through url_addon/debug.txt
    • \n
    • Added admin notification when translation debug mode is on
    • \n
    • Fixed typo in Irish language name in native alphabet
    • \n
    • Added is_readable check for config.php file before modifying it
    • \n
    • Added conflict notice for WPML Multilingual CMS plugin
    • \n
    \n

    2.9.8

    \n
      \n
    • Fix for email translation issue related to new base64 encoding format introduced in v2.9.7
    • \n
    • Added new fields into woocommerce script data for translation
    • \n
    • Removed script_loader_tag format modification, which is not necessary any more
    • \n
    \n

    2.9.7

    \n
      \n
    • Happy New Year! 🙂
    • \n
    • Fixed language selector issue when using custom domains for different languages
    • \n
    • Email translation logic updated to use base64 encoding to avoid potential firewall blocks
    • \n
    \n

    2.9.6

    \n
      \n
    • New flat flags style in SVG format
    • \n
    • Added check version to avoid double Google Translate library inclusion which may cause javascript “Uncaught RangeError” error in free version
    • \n
    \n

    2.9.5

    \n
      \n
    • Fix for javascript error introduced in 2.9.4
    • \n
    \n

    2.9.4

    \n
      \n
    • New interface for paid plans to easily configure custom domains for languages
    • \n
    • Adding Vary: Accept-Language response header when auto redirecting to browser language
    • \n
    • Google Analytics event tracking is on by default when analytics.js is present on the website, old ga.js support is removed
    • \n
    \n

    2.9.3

    \n
      \n
    • Avoid minification of Google Translate javascript library by LiteSpeed Cache and WP Rocket cache plugins in the free version
    • \n
    \n

    2.9.2

    \n
      \n
    • Smoother scrolling for Nice dropdown with flags language selector widget look
    • \n
    \n

    2.9.1

    \n
      \n
    • New server added into our Translation Delivery Network
    • \n
    \n

    2.8.65

    \n
      \n
    • Possible Cross-site scripting (XSS) vulnerability fixed, only possible for sub-domain, sub-directory paid options:
      \nAn attacker can generate a malicious link and if followed by a victim with an old browser without proper URL encoding support (<= IE 9) then javascript code can be executed on victim’s computer.
      \nKudos to Ram Gall @ Wordfence for notifying
    • \n
    \n

    2.8.64

    \n
      \n
    • New server added into our Translation Delivery Network
    • \n
    \n

    2.8.63

    \n
      \n
    • Minor change: prefer IPv4 in paid version server communication as some hosts have issues with IPv6
    • \n
    \n

    2.8.62

    \n
      \n
    • Tested with new WordPress 5.7 version
    • \n
    • Fix for email translation debug
    • \n
    • Avoid PHP warning suppression code
    • \n
    • Autoswitch to browser language issue related to Chinese language code is fixed
    • \n
    • Auto redirect to browser language issue related to Hebrew language code (he, iw) fixed
    • \n
    \n

    2.8.61

    \n
      \n
    • Tested with new WordPress 5.6 version
    • \n
    • Ground up rebuild of our Translation Proxy cloud network for paid customers, now page translations are 3x faster on average.\n
        \n
      • New proprietary spec-compliant HTML parser which is 8x faster than PHP SimpleHTMLDom library used by TranslatePress Multilingual and Weglot Translate plugins
      • \n
      • In case of invalid HTML, it will be fixed after page translation
      • \n
      • New caching layer to cache translated pages, previously only original pages were cached
      • \n
      • Optimized caching with option to clear all original and translated page caches
      • \n
      • Better error reporting
      • \n
      • New top of the line hardware with Intel Xeon multi-core processors with up to 5 Ghz clock speed
      • \n
      \n
    • \n
    \n

    2.8.60

    \n
      \n
    • Added debug option for WooCommerce Email translation
    • \n
    \n

    2.8.59

    \n
      \n
    • Fix for redirect loop in sub-directory translate mode caused by empty get parameters: ?a=&b= -> ?a&b
    • \n
    \n

    2.8.58

    \n
      \n
    • New monochrome flags option
    • \n
    • Avoids using /RegEx/ in JavaScript to not cause conflicts with WP Rocket optimizer
    • \n
    \n

    2.8.57

    \n
      \n
    • New control options for flag size and colors of the “Nice dropdown with flags” language switcher
    • \n
    • Removed old PNG images for dropdown arrow and gradient background, now using SVG and CSS instead
    • \n
    \n

    2.8.56

    \n
      \n
    • Translate WooCommerce Emails feature is fixed and is out of beta
    • \n
    \n

    2.8.55

    \n
      \n
    • Fixed blank settings page issue when settings data is in corrupted state in database
    • \n
    \n

    2.8.54

    \n
      \n
    • Added more servers into the list of our growing Translation Delivery Network
    • \n
    \n

    2.8.53

    \n
      \n
    • Fixed issue in Translate Woocommerce emails feature related to wordpress magic quotes
    • \n
    \n

    2.8.52

    \n
      \n
    • Cross-site scripting (XSS) vulnerability fixed: Only possible for sub-domain, sub-directory paid options with hreflang tags enabled:
      \nAn attacker can generate a malicious link and if followed by a victim then javascript code can be executed on victim’s computer
    • \n
    \n

    2.8.51

    \n
      \n
    • Translate WooCommerce Emails feature added, now we are in beta testing stage.
    • \n
    • Minor issue solved related to http request headers in Sub-directory URL structure
    • \n
    • FAQ updated
    • \n
    \n

    2.8.50

    \n
      \n
    • Solved issue with wp_get_referer checks not passing on translated sub-domains
    • \n
    • Solved issue with http Refresh header which was not redirecting to correct URL in translated version
    • \n
    • Email translation is coming: we need volunteers to test translation of emails, please contact live chat
    • \n
    \n

    2.8.49

    \n
      \n
    • Added translate support for MyHome IDX Broker plugin
    • \n
    \n

    2.8.48

    \n
      \n
    • Fix for Javanese language hreflang code: jv instead of jw
    • \n
    • Typo in variable name fixed
    • \n
    \n

    2.8.47

    \n
      \n
    • Fix for hebrew hreflang code when hebrew is the original language
    • \n
    • Visitor real IP detection fixed for woocommerce plugin
    • \n
    • Show warning when PHP Curl library is missing
    • \n
    • Fix {lang}.www.test.com case when auto-redirecting to browser language
    • \n
    \n

    2.8.46

    \n
      \n
    • Fix for relative path issue for some hosts
    • \n
    \n

    2.8.45

    \n
      \n
    • Fix for expired cacert.pem file, please update
    • \n
    \n

    2.8.44

    \n
      \n
    • Added cacert file to verify peer when calling home
    • \n
    • Passing real visitor IP address when loading translations
    • \n
    • Logos updated
    • \n
    \n

    2.8.43

    \n
      \n
    • New features in User Dashboard:
    • \n
    • Find and Replace before and after translation
    • \n
    • Skip Translation of Phrases
    • \n
    • Skip Translation by CSS selector
    • \n
    • Skip Translation by page URL
    • \n
    • Define HTML Blocks to edit translation as a whole
    • \n
    • Define JSON object keys which should be translated
    • \n
    • Optimized translation of URL slugs
    • \n
    • Fix for Sundanese flag
    • \n
    • Fix for double language code when redirection happens based on referrer
    • \n
    \n

    2.8.42

    \n
      \n
    • New dashboard for paid customers https://my.gtranslate.io/
    • \n
    • Minor changes
    • \n
    \n

    2.8.41

    \n
      \n
    • Added support for WP REST API JSON translation for posts and categories
    • \n
    • Deeper integration with WooCommerce
    • \n
    • Integration with WooCommerce Multi-Step Checkout plugin
    • \n
    • Integration with Agile Store Locator plugin
    • \n
    • Auto switch language based on browser language settigns for paid version added
    • \n
    \n

    2.8.40

    \n
      \n
    • Updated Hebrew language code for hreflang (he instead of iw)
    • \n
    • Added translation for ajax_url javascript variables, previously only wp_ajax_url were translated
    • \n
    • Multisite support added for hreflang tags
    • \n
    • Fix woocommerce cart cookie path when wp in installed in folder
    • \n
    • Fix for incorrect http response headers regex
    • \n
    \n

    2.8.39

    \n
      \n
    • 2 more translation proxy servers added: ani, evn
    • \n
    \n

    2.8.38

    \n
      \n
    • Hreflang tags bug fixed
    • \n
    • Pricing info updated
    • \n
    \n

    2.8.37

    \n
      \n
    • Fix for identical hreflang tags when using www prefix for domain
    • \n
    \n

    2.8.36

    \n
      \n
    • Option to add hreflang tags for translated pages
    • \n
    • Fix for Contact Form 7
    • \n
    \n

    2.8.35

    \n
      \n
    • Admin notice added for conflicting plugins
    • \n
    • Disabled translation of non-selected languages when accessed directly in sub-directory URL structure mode
    • \n
    • Update to WordPress 4.9.1 before updating GTranslate
    • \n
    • Fixed update issue related to bug in new WP 4.9 flatten_dirlist function
    • \n
    \n

    2.8.34

    \n
      \n
    • Non-stable: Fixed update issue related to bug in new WP 4.9 flatten_dirlist function. Important: If you are using Globe widget look, make sure to open GTranslate settings page, click “Reset Code to Default” under Widget Code section and Save.
    • \n
    \n

    2.8.33

    \n
      \n
    • Fixed issue related to new version of Contact Form 7
    • \n
    • Ready for WordPress 4.9
    • \n
    \n

    2.8.32

    \n
      \n
    • New feature: auto switch language based on browser language settigns
    • \n
    • Minor fixes: Greek name in native alphabet, Flag size option for Globe Widget look, vertical position in pixels
    • \n
    \n

    2.8.31

    \n
      \n
    • Removed email and name from Intercom chat
    • \n
    \n

    2.8.30

    \n
      \n
    • Fixed issue with double gzip compression when zlib.output_compression is on
    • \n
    \n

    2.8.29

    \n
      \n
    • Lazy image loading added for popup and nice dropdown look
    • \n
    • Fixed languages list hiding issue on narrow screens
    • \n
    • Fixed popup widget look issue for mobile devices
    • \n
    \n

    2.8.28

    \n
      \n
    • Changed static content paths to be relative to scheme
    • \n
    • Added “notranslate” class for dropdown widget look
    • \n
    • Added drodpown select wrapper id for easy CSS styling
    • \n
    • PHP URL rewriting added for some environments without .htaccess support: pantheon, flywheel, etc
    • \n
    • Fixed issue in url addon related to relative path location redirects
    • \n
    \n

    2.8.27

    \n
      \n
    • Fixed issue for some mobile phones related to nice looking dropdown selector staying open
    • \n
    • Fixed issue related to Cloudflare 1000 error
    • \n
    • Fixed caching issue with modified translations
    • \n
    \n

    2.8.26

    \n
      \n
    • Fixed relative path issue in .htaccess file for some websites which use mixed https and http
    • \n
    • Fixed IE javascript error on GTranslate Settings page preventing correct rendering of options
    • \n
    • Fixed popup view issue to show the selected language correctly
    • \n
    • Fixed issue when changing language from language with 3 letter language code to another
    • \n
    • A hint on re-ordering the languages list for better user experience was added
    • \n
    • Reset widget code to default button was added
    • \n
    \n

    2.8.25

    \n
      \n
    • New widget look added – Popup
    • \n
    • Native template RTL support added
    • \n
    \n

    2.8.24

    \n
      \n
    • No-scroll option added for floating language selector
    • \n
    • Now you can add more than one GTranslate widget to your sidebar
    • \n
    \n

    2.8.23

    \n
      \n
    • Show native language names option turned off by default
    • \n
    • Fixed issue with initial rendering of the language selector
    • \n
    • Documentation updated
    • \n
    \n

    2.8.22

    \n
      \n
    • Intercom live chat support integrated
    • \n
    • Gzip compression optimizations
    • \n
    \n

    2.8.21

    \n
      \n
    • Fix for gzip compression issues on mobile phones
    • \n
    \n

    2.8.20

    \n
      \n
    • Google neural machine translations, better quality!!!
    • \n
    • Added gzip compression for communication between server and client
    • \n
    • Fixed issue with double translation
    • \n
    \n

    2.8.19

    \n
      \n
    • Render gtranslate selector in a submenu if the menu link has gtranslate-parent class
    • \n
    • Bug fixed when select tag has more than one class assigned
    • \n
    \n

    2.8.18

    \n
      \n
    • Make sure default language is always selected
    • \n
    • Paid pricing updated
    • \n
    • Disable text highlighting when translated
    • \n
    \n

    2.8.17

    \n
      \n
    • Fixed saving translation issue which appeared in 2.8.16 version
    • \n
    • Minor readme fixes
    • \n
    \n

    2.8.16

    \n
      \n
    • Added option to save encoded HTML to avoid some firewall blocking
    • \n
    • Updated readme to look better with the new wp.org plugin updates
    • \n
    • Added link to easily navigate from widgets to plugin settings page
    • \n
    \n

    2.8.15

    \n
      \n
    • Fix for saving issue on GoDaddy hosting
    • \n
    • Fix for double gziping in sub-directory URL structure when using Sucuri service
    • \n
    \n

    2.8.14

    \n
      \n
    • Added Argentina and Colombia alternative flags
    • \n
    • Fixed bug in Nice looking dropdown look related to clicking the last dropdown element
    • \n
    • Fixed Quebec flag issue
    • \n
    • Fixed caching incompatability issue in nice looking dropdown look with GoDaddy cache, W3 Total Cache and WP Fastest Cache
    • \n
    \n

    2.8.13

    \n
      \n
    • Fixed bug with Globe widget look
    • \n
    • Disables conflicting similar translation plugins
    • \n
    • Fixed bug appeared in the latest version with the number of available languages
    • \n
    \n

    2.8.12

    \n
      \n
    • Tweaks to make it work better with WooCommerce
    • \n
    • Fixed bug when turning off native language names option
    • \n
    • Fixed bug with reordering languages
    • \n
    • Fixed bug with updating the plugin when using sub-directory option
    • \n
    • Fixed bug in doGTrnaslate javascript function
    • \n
    • Fixed bug with floating selector when admin bar is visible (thanks to @redoper)
    • \n
    • Readme updated to comply with WordPress directory guidelines (keywords removed WPML, qtranslate, transposh, loco translate, polylang, prisna translate, gts translation, lingotek, google website translator, global translator)
    • \n
    \n

    2.8.11

    \n
      \n
    • Fix for open redirect issue
    • \n
    • Fix for incorrect selected language in nice dropdown
    • \n
    \n

    2.8.10

    \n
      \n
    • Added Quebec and Canada alternative flags for French and English
    • \n
    \n

    2.8.9

    \n
      \n
    • Major changes
    • \n
    • Added missing flags, so all 104 languages have flags now
    • \n
    • New 48px size flags added
    • \n
    • New widget look added Flags and Language name
    • \n
    • New widget look added Flags and Language code
    • \n
    • New widget look added Language names
    • \n
    • New widget look added Language codes
    • \n
    \n

    2.8.8

    \n
      \n
    • Fix for flags rendering issue in menu
    • \n
    • Fix for analytics code in onfly mode
    • \n
    • Fixed issue with some template conflicts
    • \n
    \n

    2.8.7

    \n
      \n
    • Happy New Year! 🙂
    • \n
    • Fix for mystery language change when selecting default language
    • \n
    • .htaccess plugin_path now relative without http://example.com
    • \n
    • Bug fixed, scrolling for dropdown flags doesn’t work on some templates
    • \n
    \n

    2.8.6

    \n
      \n
    • Fixed bug on options page related to native language names
    • \n
    • Plugin keywords added: multilanguage, multilingual, language, bilingual, i18n
    • \n
    • Vimeo videos replaced by YouTube videos: GTranslate video and Translation Proxy video
    • \n
    \n

    2.8.5

    \n
      \n
    • Show languages in their native names
    • \n
    • Automatically select default language based on wordpress locale
    • \n
    • Coding issue with PHP Strict Standards and Fatal Error on some PHP versions fixed
    • \n
    • Error messages more informative
    • \n
    \n

    2.8.4

    \n
      \n
    • New option to select in which menu the selector should appear
    • \n
    \n

    2.8.3

    \n
      \n
    • Added URL add-on to easily enable sub-directory URL structure (paid)
    • \n
    • New option to easily enable URL Translation
    • \n
    • Disallow both sub-domain and sub-directory URL structure selection at the same time
    • \n
    • Fix for language change issue when URL Translation is on
    • \n
    \n

    2.8.2

    \n
      \n
    • Floating language selector option added: Top left, Top right, Bottom left, Bottom right
    • \n
    \n

    2.8.1

    \n
      \n
    • New Globe widget look added
    • \n
    • Plugin localization added
    • \n
    • Language list reordering added
    • \n
    \n

    2.0.21

    \n
      \n
    • New option to render in primary menu
    • \n
    \n

    2.0.20

    \n
      \n
    • Fix for depreciated code: PLUGINDIR
    • \n
    \n

    2.0.19

    \n
      \n
    • Added support message
    • \n
    • Added Live Chat on GTranslate options page
    • \n
    • Plugin tags added: polylang, prisna, gts, localize, lingotek, smartling
    • \n
    • Plugin tags added: qtranslate, loco translate, google website translator, translate wordpress
    • \n
    • Plugin tags added: translate, transposh, glabol translator, machine translate, wp translate
    • \n
    \n

    2.0.18

    \n
      \n
    • Alternative flags added: USA flag, Brazil flag, Mexico flag
    • \n
    \n

    2.0.17

    \n
      \n
    • GTranslate settings logo moved to localhost
    • \n
    \n

    2.0.16

    \n
      \n
    • Fixed possible Cross-Site-Scripting security issue
    • \n
    • GTranslate logo moved to localhost
    • \n
    • Update notice removed
    • \n
    \n

    2.0.15

    \n
      \n
    • Fix for not saving GTranslate configuration on some hostings
    • \n
    • Tested up to 4.6
    • \n
    • Plugin tags modified: language translator, weglot, scrybs, wpml
    • \n
    \n

    2.0.14

    \n
      \n
    • Fix for javascript CDATA
    • \n
    • Support for Google new analytics.js added
    • \n
    \n

    2.0.13

    \n
      \n
    • Notifications added
    • \n
    \n

    2.0.12

    \n
      \n
    • Readme updated, demo videos added
    • \n
    • Fixed issue in Nice dropdown look
    • \n
    \n

    2.0.11

    \n
      \n
    • Fixed issue with default language in Nice dropdown look
    • \n
    \n

    2.0.10

    \n
      \n
    • Updated links, FAQ and readme
    • \n
    \n

    2.0.9

    \n
      \n
    • Fixed undefined variable PHP notice
    • \n
    \n

    2.0.8

    \n
      \n
    • Added 13 new languages: Amharic, Corsican, Frisian, Kyrgyz, Hawaiian, Kurdish (Kurmanji), Luxembourgish, Samoan, Scots Gaelic, Shona, Sindhi, Pashto and Xhosa
    • \n
    \n

    2.0.7

    \n
      \n
    • PHP notice and warning messages fixed
    • \n
    \n

    2.0.6

    \n
      \n
    • Updated option names to be clear
    • \n
    \n

    2.0.5

    \n
      \n
    • New widget look has been added: Nice dropdown with flags
    • \n
    • Hiding and showing options in settings interface to be user friendly
    • \n
    \n

    2.0.4

    \n
      \n
    • Added 34 new languages!
    • \n
    • Support for wordpress 4.4
    • \n
    \n

    2.0.3

    \n
      \n
    • Update recommended message added – a minor change compared to 2.0.2
    • \n
    \n

    2.0.2

    \n
      \n
    • Added support for sites using SSL
    • \n
    \n

    2.0.1

    \n
      \n
    • Admin refreshed
    • \n
    \n

    1.0.38

    \n
      \n
    • Fix for flags display with some templates
    • \n
    \n

    1.0.37

    \n
      \n
    • Bug fixed with new versions of PHP
    • \n
    • Translation queue added
    • \n
    \n

    1.0.36

    \n
      \n
    • On Fly IE9 bug fixed
    • \n
    \n

    1.0.35

    \n
      \n
    • On Fly method is back
    • \n
    \n

    1.0.34

    \n
      \n
    • Error fixed with Chinese language in Enterprise mode
    • \n
    \n

    1.0.33

    \n
      \n
    • Support for Enterprise version added
    • \n
    \n

    1.0.30

    \n
      \n
    • Link and call home updated
    • \n
    \n

    1.0.29

    \n
      \n
    • Custom update checker added
    • \n
    \n

    1.0.28

    \n
      \n
    • Links changed
    • \n
    \n

    1.0.27

    \n
      \n
    • Changed text in noscript tag
    • \n
    \n

    1.0.26

    \n
      \n
    • Fixed issue with SSL admin
    • \n
    \n

    1.0.25

    \n
      \n
    • Fixed installation notification on update event
    • \n
    • Removed unnecessary commented code
    • \n
    \n

    1.0.24

    \n
      \n
    • Tracking added for collecting statistics
    • \n
    \n

    1.0.23

    \n
      \n
    • Bug fixed with javascript jquery loading option
    • \n
    \n

    1.0.22

    \n
      \n
    • Bug fixed with language change in Pro mode
    • \n
    • Added noscript tag
    • \n
    \n

    1.0.21

    \n
      \n
    • Statistics collector temporarily disabled
    • \n
    \n

    1.0.20

    \n
      \n
    • Changed the statistics collector server from Google AppEngine to GoDaddy
    • \n
    \n

    1.0.19

    \n
      \n
    • Added a dummy img to collect usage statistics
    • \n
    \n

    1.0.18

    \n
      \n
    • Fixed issue with the parameters saving in the admin
    • \n
    \n

    1.0.17

    \n
      \n
    • Minor changes in readme.txt
    • \n
    \n

    1.0.16

    \n
      \n
    • Added [GTranslate] syntax to be used inside wordpress articles/pages
    • \n
    \n

    1.0.15

    \n
      \n
    • Added aff link to track visits from wordpress on my site
    • \n
    \n

    1.0.14

    \n
      \n
    • Added notes, so people will not copy the code into their posts
    • \n
    \n

    1.0.13

    \n
      \n
    • jQuery conflicts fixed, using default wp jquery library
    • \n
    • jQuery Translate updated to v1.4.7
    • \n
    • CSRF Security Vulnerability fix
    • \n
    \n

    1.0.12

    \n
      \n
    • No changes made
    • \n
    \n

    1.0.11

    \n
      \n
    • Analytics feature implemented. If you have Google Analytics _gaq code on your site you can enable it and see the language usage.
    • \n
    • Fixed issue with the cookie path in On Fly method
    • \n
    \n

    1.0.10

    \n
      \n
    • Bug fixed: configuration settings were lost after update
    • \n
    • FAQ updated
    • \n
    • Changelog reordered
    • \n
    \n

    1.0.9

    \n
      \n
    • Updated the description
    • \n
    \n

    1.0.8

    \n
      \n
    • Keywords added in the description page
    • \n
    • FAQ updated
    • \n
    \n

    1.0.7

    \n
      \n
    • Widget title changed
    • \n
    • Link added
    • \n
    \n

    1.0.6

    \n
      \n
    • Bug fixed: magic_quotes_gpc problem
    • \n
    \n

    1.0.5

    \n
      \n
    • Bug fixed: settings save problem
    • \n
    \n

    1.0.4

    \n
      \n
    • Minor changes
    • \n
    \n

    1.0.3

    \n
      \n
    • Stable version released
    • \n
    \n

    1.0.2

    \n
      \n
    • RC2 version
    • \n
    \n

    1.0.1

    \n
      \n
    • RC1 version
    • \n
    \n

    1.0.0

    \n
      \n
    • Initial version for WordPress
    • \n
    \n", "description": "

    Translate WordPress with GTranslate plugin uses Google Translate automatic translation service to translate wordpress site with Google power and make it multilingual. With 103 available languages your site will be available to more than 99% of internet users. Our paid versions are fully SEO compatible which will increase your international traffic and sales. This translate plugin is a budget multilingual WordPress solution which combines automatic and human translations to save money and is easy to implement.

    \n

    GTranslate is a leading website translation services provider since 2008, it moves away the language barriers.

    \n

    Compared to other translation plugins for WordPress, we use cloud based approach which does not slow down your website. In addition to that, we can offer complete SEO features based on sub-domains with our paid options, which can make your website appear in search engines in different languages which will increase your international traffic and sales. In our paid versions we DO NOT limit the number of words or the number of translated pageviews. You DO NOT pay additionally for automatic translations.

    \n

    Please use GTranslate Support for your questions and support requests! We are multilingual!

    \n

    Please check our FAQ to get quick answers.

    \n

    Features

    \n
      \n
    • Free Google automatic machine translation
    • \n
    • Hides Google top frame after translation
    • \n
    • Translate website on the fly
    • \n
    • Translate posts and pages
    • \n
    • Translate categories and tags
    • \n
    • Menus and widgets translation
    • \n
    • Themes and plugins translation
    • \n
    • Right to left language support
    • \n
    • Google language translator widget
    • \n
    • Auto-switch language based on browser defined language
    • \n
    • Available styles Float, Dropdown, Flags, Flags with dropdown, Nice dropdown with flags, Flags with language names, Flags with language codes, Language names, Language codes, Globe, Popup
    • \n
    • Floating language selector
    • \n
    • WooCommerce shop translation
    • \n
    • Multilingual language names in native alphabet
    • \n
    • Alternative flags for Quebec, Canada, USA, Brazil, Mexico, Argentina, Colombia
    • \n
    • Lazy loading for language flags and js libraries to boost performance
    • \n
    • Lightweight vanilla javascript without dependencies
    • \n
    • Forum Support
    • \n
    \n

    Paid Features

    \n
      \n
    • Multilingual SEO – Enable search engine indexing
    • \n
    • Neural machine translations with human level translation quality
    • \n
    • Increase traffic and AdSense revenue
    • \n
    • Search engine friendly (SEF) URLs
    • \n
    • Yoast SEO compatible – translate meta keywords, meta description, schema.org data structures, translate sitemaps
    • \n
    • WooCommerce compatible – translate products, schema.org data structures
    • \n
    • You can have sub-directory (example.com/es/) or sub-domain (es.example.com) URL structure
    • \n
    • URL Translation aka slug translation is possible (example.com/about-us → example.es/sobre-nosotros)
    • \n
    • Add hreflang tags for translated alternatives
    • \n
    • You can manually correct translations
    • \n
    • In context translation interface (make corrections without losing the context)
    • \n
    • Meta data translation (meta keywords, meta description)
    • \n
    • Translating schema.org microdata for better search engine appearance
    • \n
    • Seamless updates (cloud service updated on our side – SaaS, you do not need to worry about backups on your side)
    • \n
    • JSON format translation
    • \n
    • Translate WooCommerce emails
    • \n
    • AMP translation (Accelerated Mobile Pages translation)
    • \n
    • Image localization – Media translation
    • \n
    • Translation Proxy (aka Translation Delivery Network)
    • \n
    • Centralized Translation Cache – We revise and improve translations over time
    • \n
    • Language Hosting (example.fr)
    • \n
    • User Dashboard with Analytics
    • \n
    • Live Chat Support
    • \n
    \n

    See also

    \n

    If you are looking for unlimited, high-quality automatic translations, check out TranslateX – an automatic translation API offering unlimited translation for your website or application.

    \n

    We also offer integration plugins:
    \nTranslateX for Loco Translate – integrate TranslateX API directly into Loco Translate for seamless, unlimited automatic translations.
    \nTranslateX for TranslatePress – bring unlimited automatic translation to TranslatePress using TranslateX API.

    \n

    These solutions make it easy to supercharge your WordPress multilingual setup with TranslateX’s secure and affordable API.

    \n

    GTranslate WordPress Demo
    \n

    \n

    Watch GTranslate Tour
    \n

    \n

    Edit Translations Demo (paid)
    \n

    \n", "screenshots": "
    1. \"Float\"

      Float

    2. \"Nice

      Nice dropdown with flags (closed)

    3. \"Nice

      Nice dropdown with flags (open)

    4. \"Globe

      Globe with language flags

    5. \"Flags

      Flags with language names

    6. \"Flags

      Flags with language codes

    7. \"Settings

      Settings page

    8. \"User

      User Dashboard (paid)

    ", "installation": "
      \n
    1. Upload the plugin files to the /wp-content/plugins/gtranslate directory, or install the plugin through the WordPress plugins screen directly.
    2. \n
    3. Activate the plugin through the ‘Plugins’ screen in WordPress
    4. \n
    5. Use the Settings → GTranslate screen to configure the plugin
    6. \n
    7. There are 6 ways you can place the language selector on your website
    8. \n
    \n

    1. Floating Language Selector
    \nYou can turn on Floating language selector option from Settings → GTranslate screen and it will show the language selector in appropriate location (Top Right, Bottom Right, Top Left or Bottom Left).

    \n

    2. Showing in Menu
    \nYou can select from the list of available menus in which menu the language selector should appear.

    \n

    3. Shortcode in Menu
    \nYou can create a new Custom Link menu item with URL = #, Link Text = English and add the following shortcode in the Description: [gt-link lang=\"en\" label=\"English\" widget_look=\"flags_name\"]
    \nWhere widget_look can be one of the following: flags, flags_code, flags_name, lang_codes, lang_names
    \nMake sure to enable “Description” under “Show advanced menu properties” in “Screen Options” dropdown on top of the screen.

    \n

    4. Use GTranslate shortcode
    \nYou can use [gtranslate] shortcode anywhere on your website including posts, pages, text widgets.
    \nYou can edit your template files and use <?php echo do_shortcode(''[gtranslate]''); ?> in HTML which will render the language selector.

    \n

    5. Use GTranslate Widget
    \nYou can use Appearence → Widgets screen to publish GTranslate widget inside a sidebar of your template.

    \n

    6. Wrapper CSS Selector
    \nYou can use a CSS selector and the language selector will appear inside the matching elements.

    \n

    If you have any issues, please do not hesitate to use our Support Forum for free version or Live Chat for paid version.

    \n"}, "versions": {"1.0.1": "https://downloads.wordpress.org/plugin/gtranslate.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/gtranslate.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/gtranslate.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/gtranslate.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/gtranslate.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/gtranslate.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/gtranslate.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/gtranslate.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/plugin/gtranslate.1.0.9.zip", "2.0.1": "https://downloads.wordpress.org/plugin/gtranslate.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/gtranslate.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/gtranslate.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/gtranslate.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/gtranslate.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/gtranslate.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/gtranslate.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/gtranslate.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/gtranslate.2.0.9.zip", "2.8.1": "https://downloads.wordpress.org/plugin/gtranslate.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/gtranslate.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/gtranslate.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/gtranslate.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/gtranslate.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/gtranslate.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/gtranslate.2.8.7.zip", "2.8.8": "https://downloads.wordpress.org/plugin/gtranslate.2.8.8.zip", "2.8.9": "https://downloads.wordpress.org/plugin/gtranslate.2.8.9.zip", "2.9.1": "https://downloads.wordpress.org/plugin/gtranslate.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/gtranslate.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/gtranslate.2.9.3.zip", "2.9.5": "https://downloads.wordpress.org/plugin/gtranslate.2.9.5.zip", "2.9.7": "https://downloads.wordpress.org/plugin/gtranslate.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/plugin/gtranslate.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/plugin/gtranslate.2.9.9.zip", "3.0.1": "https://downloads.wordpress.org/plugin/gtranslate.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/gtranslate.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/gtranslate.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/gtranslate.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/gtranslate.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/gtranslate.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/gtranslate.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/gtranslate.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/gtranslate.3.0.9.zip", "trunk": "https://downloads.wordpress.org/plugin/gtranslate.zip", "1.0.10": "https://downloads.wordpress.org/plugin/gtranslate.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/plugin/gtranslate.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/plugin/gtranslate.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/plugin/gtranslate.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/plugin/gtranslate.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/plugin/gtranslate.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/plugin/gtranslate.1.0.16.zip", "1.0.17": "https://downloads.wordpress.org/plugin/gtranslate.1.0.17.zip", "1.0.18": "https://downloads.wordpress.org/plugin/gtranslate.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/plugin/gtranslate.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/plugin/gtranslate.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/plugin/gtranslate.1.0.21.zip", "1.0.22": "https://downloads.wordpress.org/plugin/gtranslate.1.0.22.zip", "1.0.23": "https://downloads.wordpress.org/plugin/gtranslate.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/plugin/gtranslate.1.0.24.zip", "1.0.25": "https://downloads.wordpress.org/plugin/gtranslate.1.0.25.zip", "1.0.26": "https://downloads.wordpress.org/plugin/gtranslate.1.0.26.zip", "1.0.27": "https://downloads.wordpress.org/plugin/gtranslate.1.0.27.zip", "1.0.37": "https://downloads.wordpress.org/plugin/gtranslate.1.0.37.zip", "1.0.38": "https://downloads.wordpress.org/plugin/gtranslate.1.0.38.zip", "2.0.10": "https://downloads.wordpress.org/plugin/gtranslate.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/gtranslate.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/gtranslate.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/plugin/gtranslate.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/plugin/gtranslate.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/plugin/gtranslate.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/plugin/gtranslate.2.0.16.zip", "2.0.17": "https://downloads.wordpress.org/plugin/gtranslate.2.0.17.zip", "2.0.18": "https://downloads.wordpress.org/plugin/gtranslate.2.0.18.zip", "2.0.19": "https://downloads.wordpress.org/plugin/gtranslate.2.0.19.zip", "2.0.20": "https://downloads.wordpress.org/plugin/gtranslate.2.0.20.zip", "2.0.21": "https://downloads.wordpress.org/plugin/gtranslate.2.0.21.zip", "2.8.10": "https://downloads.wordpress.org/plugin/gtranslate.2.8.10.zip", "2.8.11": "https://downloads.wordpress.org/plugin/gtranslate.2.8.11.zip", "2.8.12": "https://downloads.wordpress.org/plugin/gtranslate.2.8.12.zip", "2.8.13": "https://downloads.wordpress.org/plugin/gtranslate.2.8.13.zip", "2.8.14": "https://downloads.wordpress.org/plugin/gtranslate.2.8.14.zip", "2.8.15": "https://downloads.wordpress.org/plugin/gtranslate.2.8.15.zip", "2.8.16": "https://downloads.wordpress.org/plugin/gtranslate.2.8.16.zip", "2.8.17": "https://downloads.wordpress.org/plugin/gtranslate.2.8.17.zip", "2.8.18": "https://downloads.wordpress.org/plugin/gtranslate.2.8.18.zip", "2.8.19": "https://downloads.wordpress.org/plugin/gtranslate.2.8.19.zip", "2.8.20": "https://downloads.wordpress.org/plugin/gtranslate.2.8.20.zip", "2.8.21": "https://downloads.wordpress.org/plugin/gtranslate.2.8.21.zip", "2.8.22": "https://downloads.wordpress.org/plugin/gtranslate.2.8.22.zip", "2.8.23": "https://downloads.wordpress.org/plugin/gtranslate.2.8.23.zip", "2.8.24": "https://downloads.wordpress.org/plugin/gtranslate.2.8.24.zip", "2.8.25": "https://downloads.wordpress.org/plugin/gtranslate.2.8.25.zip", "2.8.26": "https://downloads.wordpress.org/plugin/gtranslate.2.8.26.zip", "2.8.27": "https://downloads.wordpress.org/plugin/gtranslate.2.8.27.zip", "2.8.28": "https://downloads.wordpress.org/plugin/gtranslate.2.8.28.zip", "2.8.29": "https://downloads.wordpress.org/plugin/gtranslate.2.8.29.zip", "2.8.30": "https://downloads.wordpress.org/plugin/gtranslate.2.8.30.zip", "2.8.31": "https://downloads.wordpress.org/plugin/gtranslate.2.8.31.zip", "2.8.32": "https://downloads.wordpress.org/plugin/gtranslate.2.8.32.zip", "2.8.33": "https://downloads.wordpress.org/plugin/gtranslate.2.8.33.zip", "2.8.34": "https://downloads.wordpress.org/plugin/gtranslate.2.8.34.zip", "2.8.35": "https://downloads.wordpress.org/plugin/gtranslate.2.8.35.zip", "2.8.36": "https://downloads.wordpress.org/plugin/gtranslate.2.8.36.zip", "2.8.37": "https://downloads.wordpress.org/plugin/gtranslate.2.8.37.zip", "2.8.38": "https://downloads.wordpress.org/plugin/gtranslate.2.8.38.zip", "2.8.39": "https://downloads.wordpress.org/plugin/gtranslate.2.8.39.zip", "2.8.40": "https://downloads.wordpress.org/plugin/gtranslate.2.8.40.zip", "2.8.41": "https://downloads.wordpress.org/plugin/gtranslate.2.8.41.zip", "2.8.42": "https://downloads.wordpress.org/plugin/gtranslate.2.8.42.zip", "2.8.43": "https://downloads.wordpress.org/plugin/gtranslate.2.8.43.zip", "2.8.44": "https://downloads.wordpress.org/plugin/gtranslate.2.8.44.zip", "2.8.45": "https://downloads.wordpress.org/plugin/gtranslate.2.8.45.zip", "2.8.46": "https://downloads.wordpress.org/plugin/gtranslate.2.8.46.zip", "2.8.47": "https://downloads.wordpress.org/plugin/gtranslate.2.8.47.zip", "2.8.48": "https://downloads.wordpress.org/plugin/gtranslate.2.8.48.zip", "2.8.49": "https://downloads.wordpress.org/plugin/gtranslate.2.8.49.zip", "2.8.50": "https://downloads.wordpress.org/plugin/gtranslate.2.8.50.zip", "2.8.51": "https://downloads.wordpress.org/plugin/gtranslate.2.8.51.zip", "2.8.52": "https://downloads.wordpress.org/plugin/gtranslate.2.8.52.zip", "2.8.53": "https://downloads.wordpress.org/plugin/gtranslate.2.8.53.zip", "2.8.54": "https://downloads.wordpress.org/plugin/gtranslate.2.8.54.zip", "2.8.55": "https://downloads.wordpress.org/plugin/gtranslate.2.8.55.zip", "2.8.56": "https://downloads.wordpress.org/plugin/gtranslate.2.8.56.zip", "2.8.57": "https://downloads.wordpress.org/plugin/gtranslate.2.8.57.zip", "2.8.58": "https://downloads.wordpress.org/plugin/gtranslate.2.8.58.zip", "2.8.59": "https://downloads.wordpress.org/plugin/gtranslate.2.8.59.zip", "2.8.60": "https://downloads.wordpress.org/plugin/gtranslate.2.8.60.zip", "2.8.61": "https://downloads.wordpress.org/plugin/gtranslate.2.8.61.zip", "2.8.62": "https://downloads.wordpress.org/plugin/gtranslate.2.8.62.zip", "2.8.63": "https://downloads.wordpress.org/plugin/gtranslate.2.8.63.zip", "2.8.64": "https://downloads.wordpress.org/plugin/gtranslate.2.8.64.zip", "2.8.65": "https://downloads.wordpress.org/plugin/gtranslate.2.8.65.zip", "2.9.10": "https://downloads.wordpress.org/plugin/gtranslate.2.9.10.zip", "2.9.12": "https://downloads.wordpress.org/plugin/gtranslate.2.9.12.zip", "2.9.13": "https://downloads.wordpress.org/plugin/gtranslate.2.9.13.zip", "2.9.14": "https://downloads.wordpress.org/plugin/gtranslate.2.9.14.zip", "2.9.15": "https://downloads.wordpress.org/plugin/gtranslate.2.9.15.zip"}, "downloaded": 13348112, "description": "

    Translate WordPress with GTranslate plugin uses Google Translate automatic translation service to translate wordpress site with Google power and make it multilingual. With 103 available languages your site will be available to more than 99% of internet users. Our paid versions are fully SEO compatible which will increase your international traffic and sales. This translate plugin is a budget multilingual WordPress solution which combines automatic and human translations to save money and is easy to implement.

    \n

    GTranslate is a leading website translation services provider since 2008, it moves away the language barriers.

    \n

    Compared to other translation plugins for WordPress, we use cloud based approach which does not slow down your website. In addition to that, we can offer complete SEO features based on sub-domains with our paid options, which can make your website appear in search engines in different languages which will increase your international traffic and sales. In our paid versions we DO NOT limit the number of words or the number of translated pageviews. You DO NOT pay additionally for automatic translations.

    \n

    Please use GTranslate Support for your questions and support requests! We are multilingual!

    \n

    Please check our FAQ to get quick answers.

    \n

    Features

    \n
      \n
    • Free Google automatic machine translation
    • \n
    • Hides Google top frame after translation
    • \n
    • Translate website on the fly
    • \n
    • Translate posts and pages
    • \n
    • Translate categories and tags
    • \n
    • Menus and widgets translation
    • \n
    • Themes and plugins translation
    • \n
    • Right to left language support
    • \n
    • Google language translator widget
    • \n
    • Auto-switch language based on browser defined language
    • \n
    • Available styles Float, Dropdown, Flags, Flags with dropdown, Nice dropdown with flags, Flags with language names, Flags with language codes, Language names, Language codes, Globe, Popup
    • \n
    • Floating language selector
    • \n
    • WooCommerce shop translation
    • \n
    • Multilingual language names in native alphabet
    • \n
    • Alternative flags for Quebec, Canada, USA, Brazil, Mexico, Argentina, Colombia
    • \n
    • Lazy loading for language flags and js libraries to boost performance
    • \n
    • Lightweight vanilla javascript without dependencies
    • \n
    • Forum Support
    • \n
    \n

    Paid Features

    \n
      \n
    • Multilingual SEO – Enable search engine indexing
    • \n
    • Neural machine translations with human level translation quality
    • \n
    • Increase traffic and AdSense revenue
    • \n
    • Search engine friendly (SEF) URLs
    • \n
    • Yoast SEO compatible – translate meta keywords, meta description, schema.org data structures, translate sitemaps
    • \n
    • WooCommerce compatible – translate products, schema.org data structures
    • \n
    • You can have sub-directory (example.com/es/) or sub-domain (es.example.com) URL structure
    • \n
    • URL Translation aka slug translation is possible (example.com/about-us → example.es/sobre-nosotros)
    • \n
    • Add hreflang tags for translated alternatives
    • \n
    • You can manually correct translations
    • \n
    • In context translation interface (make corrections without losing the context)
    • \n
    • Meta data translation (meta keywords, meta description)
    • \n
    • Translating schema.org microdata for better search engine appearance
    • \n
    • Seamless updates (cloud service updated on our side – SaaS, you do not need to worry about backups on your side)
    • \n
    • JSON format translation
    • \n
    • Translate WooCommerce emails
    • \n
    • AMP translation (Accelerated Mobile Pages translation)
    • \n
    • Image localization – Media translation
    • \n
    • Translation Proxy (aka Translation Delivery Network)
    • \n
    • Centralized Translation Cache – We revise and improve translations over time
    • \n
    • Language Hosting (example.fr)
    • \n
    • User Dashboard with Analytics
    • \n
    • Live Chat Support
    • \n
    \n

    See also

    \n

    If you are looking for unlimited, high-quality automatic translations, check out TranslateX – an automatic translation API offering unlimited translation for your website or application.

    \n

    We also offer integration plugins:
    \nTranslateX for Loco Translate – integrate TranslateX API directly into Loco Translate for seamless, unlimited automatic translations.
    \nTranslateX for TranslatePress – bring unlimited automatic translation to TranslatePress using TranslateX API.

    \n

    These solutions make it easy to supercharge your WordPress multilingual setup with TranslateX’s secure and affordable API.

    \n

    GTranslate WordPress Demo
    \n

    \n

    Watch GTranslate Tour
    \n

    \n

    Edit Translations Demo (paid)
    \n

    \n", "donate_link": "https://gtranslate.io/?xyz=998#pricing", "num_ratings": 4682, "screenshots": {"1": {"src": "https://ps.w.org/gtranslate/assets/screenshot-1.jpg?rev=2877886", "caption": "Float"}, "2": {"src": "https://ps.w.org/gtranslate/assets/screenshot-2.jpg?rev=2596624", "caption": "Nice dropdown with flags (closed)"}, "3": {"src": "https://ps.w.org/gtranslate/assets/screenshot-3.jpg?rev=2596625", "caption": "Nice dropdown with flags (open)"}, "4": {"src": "https://ps.w.org/gtranslate/assets/screenshot-4.jpg?rev=1553215", "caption": "Globe with language flags"}, "5": {"src": "https://ps.w.org/gtranslate/assets/screenshot-5.jpg?rev=1579792", "caption": "Flags with language names"}, "6": {"src": "https://ps.w.org/gtranslate/assets/screenshot-6.jpg?rev=1579792", "caption": "Flags with language codes"}, "7": {"src": "https://ps.w.org/gtranslate/assets/screenshot-7.png?rev=2877886", "caption": "Settings page"}, "8": {"src": "https://ps.w.org/gtranslate/assets/screenshot-8.jpg?rev=2877886", "caption": "User Dashboard (paid)"}}, "support_url": "https://wordpress.org/support/plugin/gtranslate/", "contributors": {"edo888": {"avatar": "https://secure.gravatar.com/avatar/d8b6d5d2401e3bd02c336fcc247bd9be736d87bd77849e161d242bb81cd1e529?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/edo888/", "display_name": "edo888"}}, "last_updated": "2025-07-08 2:54pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/gtranslate.3.0.9.zip", "author_profile": "https://profiles.wordpress.org/edo888/", "business_model": false, "repository_url": "", "upgrade_notice": {"2.8.1": "

    A lot of new features added!

    ", "2.8.8": "

    Make sure to regenerate the widget code from GTranslate Settings page by checking/unchecking Analytics feature and Saving changes.

    ", "2.8.9": "

    Major changes, new flags added, optimized for HTTP/2 (SPDY).

    ", "3.0.1": "

    Ground up rebuild with major changes and performance upgrades, new widget look. If you are updating from older versions make sure to reconfigure.

    ", "1.0.22": "

    Users are highly recommended to upgrade to this version!

    "}, "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-f4eb-71a1-91f7-6af1efa1b8ae", "name": "Translate WordPress with GTranslate", "slug": "gtranslate", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1751986440, "version": "3.0.9"}, "support_threads": 50, "requires_plugins": [], "short_description": "Translate WordPress with Google Translate multilanguage plugin to make your website multilingual. Complete multilingual SEO solution for WordPress.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 49}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1bf1-7002-9f8d-fda0a140ed77', 'did:web:api.aspiredev.org:packages:wp-plugin:header-footer-elementor', 'header-footer-elementor', 'Ultimate Addons for Elementor (Formerly Elementor Header & Footer Builder)', '

    Ultimate Addons for Elementor (UAE) is a powerful yet lightweight plugin that extends Elementors capabilities with purposely built widgets, blocks, and features that help you build better websites—without adding complexity.

    -

    Formerly known as Elementor Header & Footer Builder, UAE has evolved into a trusted Elementor Addons used by over 2 million websites to design creative sections directly within Elementor—no coding required.

    -

    The free version of UAE includes a hand-picked set of essential widgets like Info Card, Navigation Menu and more—widgets that are genuinely useful for most websites. It also enables you to design headers and footers visually and adds features that improve your design process without cluttering your interface.

    -

    When you’re ready to go further, UAE Pro unlocks a library of 50+ premium widgets, 200+ pre-designed section blocks, and advanced features like Cross-Site Copy-Paste, Advanced Display Conditions, Form Stylers for popular form plugins, and visual effects like Particle Backgrounds.

    -

    These features are built to save time and offer more design freedom—not just to impress, but to genuinely improve how you build and manage websites.

    -

    Whether you’re just getting started with WordPress or managing multiple client sites, UAE – Elementor Addons gives you the control, performance, and reliability to design beautiful, high-converting websites efficiently.

    -

    Try the live demo of Ultimate Addons for Elementor

    -

    -

    Why Choose UAE Elementor Addon

    -

    Ultimate Addons for Elementor equips you with tools that make page design faster, cleaner, and more creative. Whether you’re just starting your web design journey or building complex websites for clients, UAE can help.

    -

    Here’s why over 2 million people trust UAE:

    -
      -
    • -

      Create Engaging Designs: Build visually stunning sections with widgets that go beyond basic blocks. From Before/After sliders to particle backgrounds, everything is built to captivate, engage, and convert.

      -
    • -
    • -

      Copy Elementor Designs From One Domain to Another: Use the Cross-Site Copy Paste feature to move sections and widgets between pages/sites, which streamlines the workflow and saves time.

      -
    • -
    • -

      Keep Your Website Light by Loading Only What Is Needed: UAE loads code only for the widgets you use, which helps maintain site performance and supports SEO best practices.

      -
    • -
    • -

      Build Faster With 200+ Readymade Section Blocks: Design faster with a massive library of pre-designed content sections. Just insert, customize, and publish. Ideal for agencies and freelancers seeking efficiency.

      -
    • -
    • -

      50+ Premium Widgets That Truly Matter: UAE Pro includes over 50+ carefully crafted widgets. High-impact tools designed to solve real design challenges and boost functionality where it counts.

      -
    • -
    • -

      Works Seamlessly With Any WordPress Theme: No theme lock-in or compatibility issues. UAE integrates smoothly with all compliant WordPress themes, including Astra.

      -
    • -
    • -

      Designed for Beginners, Loved by Pros: Whether you’re a DIY site builder or a seasoned designer, UAE strikes the balance between ease of use and advanced functionality.

      -
    • -
    • -

      Extend Elementor Without Plugin Overload: UAE packs multiple high-utility widgets into one lightweight plugin. Avoid installing multiple third-party plugins that slow down your site or create conflicts.

      -
    • -
    -

    Free Widgets in Ultimate Addons for Elementor

    -
      -
    • -

      Navigation Menu – With this powerful Elementor nav menu addon (widget), you can build responsive menus that match your style.

      -
    • -
    • -

      Site Logo & Retina Logo – Showcase crisp branding across all devices.

      -
    • -
    • -

      Site Title & Tagline – Display key identity elements clearly and elegantly.

      -
    • -
    • -

      Search – Add fast, user-friendly search to your header or footer.

      -
    • -
    • -

      Cart – Integrate a shopping cart preview for WooCommerce stores.

      -
    • -
    • -

      Page Title – Automatically show relevant page titles for better UX and SEO.

      -
    • -
    • -

      Breadcrumbs – Improve site navigation and search engine visibility.

      -
    • -
    • -

      Post Info – Display author, date, categories, and more for content clarity.

      -
    • -
    • -

      Scroll to Top – Give users a seamless way to navigate with this handy scroll addon for Elementor.

      -
    • -
    • -

      Reading Progress Bar – Visually indicate article progress for better engagement.

      -
    • -
    • -

      Info Card – Combine icons, headings, text, and CTAs in one flexible block.

      -
    • -
    • -

      Copyright – Easily add site-wide copyright or legal text in the footer.

      -
    • -
    -

    Note: You can refer to our step-by-step guide that will help you set headers and footers quickly.

    -

    How these Elementor widgets help:

    -
      -
    • Build complete headers and footers directly within Elementor
    • -
    • Avoid relying on theme settings or extra plugins
    • -
    • Keep your design consistent on all devices
    • -
    • Improve usability, accessibility, and SEO
    • -
    -

    The free UAE widgets give you a strong foundation to build a professional website and they work beautifully with any WordPress theme.

    -

    🚀 Upgrade to Ultimate Addons for Elementor Pro and unlock limitless possibilities!

    -

    Content and Interaction Widgets

    -

    Create compelling, high-converting layouts with powerful content widgets designed for Elementor. UAE widgets help you deliver clear, engaging content experiences that are both informative and interactive. Great for business sites, blogs, service pages, and portfolios.

    -
      -
    • -

      Advanced Heading – Design eye-catching headlines with layered styles and dynamic effects.

      -
    • -
    • -

      Business Hours – Display store or office hours clearly with styled layouts.

      -
    • -
    • -

      Content Toggle (Popular) – Switch between content blocks for comparisons, FAQs, or pricing plans.

      -
    • -
    • -

      Google Map – Add responsive, customizable location maps to boost trust and visibility.

      -
    • -
    • -

      Image Gallery – Showcase multiple images in a clean, organized grid or masonry layout.

      -
    • -
    • -

      Info Box – Combine icons, titles, and descriptions with CTA buttons in one elegant widget.

      -
    • -
    • -

      Modal Popup (Popular) – Easily trigger stylish popups for promotions, lead generation, or key messages.

      -
    • -
    • -

      Posts – Showcase your latest blog posts or any custom post types with this visually appealing post grid addon for Elementor.

      -
    • -
    • -

      Price List – Highlight products or services with pricing and description in a clean layout.

      -
    • -
    • -

      Table – Create sortable, responsive tables to organize data or feature comparisons.

      -
    • -
    • -

      Video (Popular) – Embed YouTube, Vimeo, or self-hosted videos with custom styling options.

      -
    • -
    • -

      Video Gallery – Show multiple videos in a neatly organized, responsive gallery.

      -
    • -
    -

    Creative Widgets

    -

    Add flair, functionality, and interactivity to your Elementor designs. Ideal for portfolios, agencies, service-based businesses, and conversion-focused landing pages.

    -
      -
    • -

      Before After Slider – Visually compare two images using a draggable slider.

      -
    • -
    • -

      Countdown Timer – Create urgency for offers, events, or product launches.

      -
    • -
    • -

      Display Conditions – Show or hide content dynamically based on user role, device, login status, and more.

      -
    • -
    • -

      Dual Color Heading – Highlight key phrases in headings with stylish dual-tone designs.

      -
    • -
    • -

      Fancy Heading – Create animated, visually distinct headlines to capture attention.

      -
    • -
    • -

      Hotspots (Popular) – Add interactive tooltips to images to explain features or details.

      -
    • -
    • -

      Login Form – Embed a beautifully styled, branded login form right into any page.

      -
    • -
    • -

      Marketing Button – Add call to action buttons with built-in icons, hover effects, and dual text.

      -
    • -
    • -

      Multi Buttons – Display multiple action buttons side-by-side for better decision making.

      -
    • -
    • -

      Navigation Menu – Create fully customizable, responsive menus directly within Elementor.

      -
    • -
    • -

      Off-Canvas – Create off-screen panels for menus, filters, or extra content that slides into view.

      -
    • -
    • -

      Price Box – Showcase pricing plans with styled headings, features, and call to action buttons.

      -
    • -
    • -

      Retina Image – Ensure images display perfectly on high-resolution (Retina) screens.

      -
    • -
    • -

      Team Member – Introduce your team with photos, bios, social links and layout options.

      -
    • -
    • -

      Timeline (Popular) – Display milestones, history, or process steps in vertical or horizontal timelines.

      -
    • -
    • -

      User Registration Form – Let visitors register with a styled, user-friendly form.

      -
    • -
    -

    Form Styler Widgets

    -

    Match forms to your site design and improve conversions without writing CSS. These widgets let you customize popular WordPress forms with full control over layout, colors, typography, and spacing.

    - -

    SEO Widgets

    -

    Boost search visibility, enhance content structure and build trust from the Elementor editor.

    -
      -
    • -

      Business Reviews – Display authentic reviews from platforms like Google.

      -
    • -
    • -

      How-To Schema – Format step-by-step guides with structured data to earn rich snippets.

      -
    • -
    • -

      FAQ Schema – Create styled FAQs that are also SEO-ready.

      -
    • -
    • -

      Table of Contents – Automatically generate clickable TOCs for long content.

      -
    • -
    -

    Social Widgets

    -

    Keep your website fresh, connected and shareable with built-in social media integrations.

    -
      -
    • -

      Instagram Feed (NEW) – Embed a stylish, responsive Instagram gallery that updates automatically.

      -
    • -
    • -

      X Feed (NEW) – Show your most recent posts from X (formerly Twitter).

      -
    • -
    • -

      Social Share – Add sleek, customizable share buttons to grow your audience.

      -
    • -
    -

    WooCommerce Widgets

    -

    Design high-converting online stores inside Elementor with this modern WooCommerce addon.

    - -

    Creative Features

    -

    Go beyond widgets and unlock tools that accelerate your workflow.

    -
      -
    • -

      Cross-Site Copy Paste – Instantly copy and paste entire Elementor sections between domains.

      -
    • -
    • -

      Particle Backgrounds – Add animated particle effects behind sections.

      -
    • -
    • -

      Party Propz – Celebrate special occasions with on-screen confetti and fun animations.

      -
    • -
    • -

      Presets – Apply consistent design styles across widgets with a single click.

      -
    • -
    • -

      Welcome Music – Play background music when a visitor lands on your site.

      -
    • -
    -

    Unlock Even More With the Essential Toolkit

    -

    Upgrade to the Essential Toolkit to access a powerful bundle designed to save time, spark creativity, and give you a real competitive advantage.

    -

    300+ Pre-built websites: Skip the blank canvas. Launch faster with professionally designed websites.

    -

    Templates for every niche: Build business sites, blogs, portfolios, or stores with no design experience needed.

    -

    Total design freedom: Tweak every pixel, colors, fonts, and layouts to make each site uniquely yours.

    -

    What Users Are Saying

    -

    “A must-have for any Elementor user. Incredible widget bundle — powerful, essential, and easy to use.”
    - – Carmelo Teran (nexodreams.com)

    -

    “Huge selection of widgets that help me deliver unique designs fast. Love the Hotspots, Heading, and Cross-Site Copy Paste!”
    - – Nicola Stobb (imoe.co)

    -

    “If Elementor Pro is the Iron Man suit, Ultimate Addons is the Hulkbuster upgrade. I don’t build without it!”
    - – Dean Loh (kaia.asia)

    -

    More Tools To Enhance Your WordPress Website

    -

    If you love Ultimate Addons, you’ll love what else we’ve built to make designing and managing websites easier.

    -
      -
    • -

      Astra theme – A popular WordPress theme known for speed and flexibility.

      -
    • -
    • -

      Astra Starter Templates – Pick from over 300+ professionally designed templates or use AI to create a custom website in minutes.

      -
    • -
    • -

      OttoKit (Formerly SureTriggers) – Automate daily tasks by connecting your favorite apps and plugins effortlessly.

      -
    • -
    • -

      SureForms – Build beautiful, high-converting forms, quizzes, and surveys.

      -
    • -
    • -

      SureCart – A powerful yet easy to use eCommerce plugin built for modern creators and digital sellers.

      -
    • -
    -

    Each tool is designed to help you build faster, work smarter, and grow your online presence with less effort and better results.

    -

    Need help getting started?

    -

    Check out our getting started guide and documentation for step-by-step tutorials.

    -

    Have a question?

    -

    Visit the support forum right here on WordPress.org. We’re happy to help!

    -

    Want to explore more?

    -

    Learn about all features, FAQs, and tips on our website.

    -

    🎉 Love Ultimate Addons for Elementor?

    - -', 'wp', 'wp-plugin', 'GPL', '{"name": "Ultimate Addons for Elementor (Formerly Elementor Header & Footer Builder)", "slug": "header-footer-elementor", "tags": {"elementor": "elementor", "elementor-addon": "elementor addon", "elementor-widget": "elementor widget", "elementor-template": "elementor template", "header-footer-builder": "header footer builder"}, "added": "2017-03-07", "icons": {"1x": "https://ps.w.org/header-footer-elementor/assets/icon-128x128.gif?rev=3278750", "2x": "https://ps.w.org/header-footer-elementor/assets/icon-256x256.gif?rev=3278750"}, "author": "Brainstorm Force", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/header-footer-elementor/assets/banner-772x250.gif?rev=3278750", "high": "https://ps.w.org/header-footer-elementor/assets/banner-1544x500.gif?rev=3278750"}, "ratings": {"1": 44, "2": 11, "3": 8, "4": 58, "5": 2380}, "version": "2.6.1", "homepage": "https://wordpress.org/plugins/header-footer-elementor/", "requires": "5.0", "sections": {"faq": "\n
    \nWhat happened to Elementor Header & Footer Builder?\n\n

    \n

    Ultimate Addons for Elementor is the successor to Elementor Header & Footer Builder. This updated plugin offers the same features you love, plus new widgets like Site logo, Site Title, and many more. With a modern interface and an enable/disable switch for widgets, UAE delivers better performance, stability, and ease of use.

    \n

    \n
    \nCan I use Ultimate Addons for Elementor with any theme?\n\n

    \n

    Yes! UAE works with all WordPress themes. If you face compatibility issues, you can manually choose the theme support method. Visit UAE > Settings > Theme Support. Select a method to suit your current theme and you are good to go!

    \n

    \n
    \nCan I disable unused widgets?\n\n

    \n

    Absolutely. UAE allows you to disable widgets you don’t need to optimize performance.

    \n

    \n
    \nDo I need to keep both UAE and UAE – Pro plugins active for them to work effectively?\n\n

    \n

    No, both plugins are completely independent. You only need to activate both if you want to use features from each plugin. Otherwise, activate only the one that meets your needs.

    \n

    \n
    \nHow can I access all the features of the Ultimate Addons for Elementor?\n\n

    \n

    To access the advanced features and premium widgets, you’ll need to upgrade to the Pro version. Purchase your license now

    \n

    \n
    \nHow can I report a security bug?\n\n

    \n

    We take plugin security extremely seriously. If you discover a security vulnerability, please report it in a safe and responsible manner.

    \n

    You can report the issue through our Bug Bounty Program.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin & Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy yummyworks on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    First, I have been very happy with plugin which offers a lot of add on features and has really boosted both the front and back end capabilities. Second, the support team has been awesome if any issues arise and genuinely care about both their product and customers that use it. I had a technical issue arise and between the both of us were able to get it fixed relatively quick. I would highly recommend this plugin for anyone looking to elevate their website.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Products and First Class Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Andrew Behla (behladesign) on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We''ve used the Woo Products Elementor module for several projects and are really happy with the results. The team at Brainstorm Force make excellent products with useful UI/UX and are well designed. Their support team is always very helpful as well.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin and even better support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mgweb22 on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I use UAE un almost all my sites, I really love than you can activate et deactivate the plugins you don''t need.
    Support is awesome.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brainstorm Helped Me Lots

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mattwarren1972 on September 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Dhruv and Brainstorm support were really good at coming back to me when I had an issue (my fault!) and their support was quick and professional. Thanks

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brainstorm support was great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy granatdesign on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useful plugin. And great support

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brianstorm Support - Dhruv, Excellent!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy saintben on August 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ⭐️⭐️⭐️⭐️⭐️

    \n\n\n\n

    We’ve been using the Ultimate Addons for Elementor plugin and recently ran into a strange issue with the Hotspots feature. Every time we tried to edit the markers, we were faced with a blank page.

    \n\n\n\n

    Over several weeks, Dhruv from the Brainstorm Force support team worked tirelessly with me to get to the bottom of it. While some support agents weren’t quite as attentive, Dhruv was absolutely outstanding. He went above and beyond, showing genuine commitment to resolving the issue — even when it turned out that the problem wasn’t caused by the plugin at all, but by something on our end.

    \n\n\n\n

    What really impressed me was that Dhruv assembled a team of colleagues to help troubleshoot and ensure we got the problem fixed. They didn’t have to go that far, but they did it anyway because they truly wanted to help.

    \n\n\n\n

    I’m delighted to say the issue is now resolved, and I’m so grateful to the whole team who were on the call — but especially to Dhruv. His professionalism, patience, and dedication are an example to follow.

    \n\n\n\n

    Thank you again to the Brainstorm Force team, and a very big thank you to Dhruv! 🙏

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pkrijger on July 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have used this plugin for many years, since Brainstorm Force created it. I love it! You can greatly enhance your website with it and it´s very easy to use. You can be very creative with the widgets.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very happy, thank you!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy willvv on June 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Absolutely love Astra Theme, and support has been invaluable. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support doesn't answer

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy antoniofourmark on June 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    If you have a problem and didn''t pay for premium you are on your own, support is non-existent for non-premium users

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Michael Kwan (michoscopic) on May 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was having some trouble with a niche use-case. ChatGPT didn''t help, and I consider myself a fairly advanced user. The Ultimate Elementor devs helped me create a custom function to fix the issue and they''ll be implementing it in their future release as well. Thanks for the support!

    \n
    \n
    \n", "changelog": "

    2.6.1

    \n
      \n
    • Fix: Header not displaying on specific pages.
    • \n
    \n

    2.6.0

    \n
      \n
    • New: Added Woo Product Grid Widget – Display WooCommerce products in a responsive grid layout with customizable styling options.
    • \n
    • Improvement: Added Support for Blocksy, Neve and Kadence Theme.
    • \n
    \n

    2.5.2

    \n
      \n
    • Fix: Basic Post Widget not showing for logged out users.
    • \n
    \n

    2.5.1

    \n
      \n
    • Improvement: Updated required packages to the latest stable versions for improved compatibility and security.
    • \n
    \n

    2.5.0

    \n
      \n
    • New: Added Basic Blog Posts Widget – Showcase blog posts or any custom post type in a fully customizable, responsive grid layout.
    • \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.32 version.
    • \n
    • Fix: This update addressed a security bug. Props to Willow from WP Scan for reporting it responsibly to our team.
    • \n
    • Fix: Navigation Menu – Alignment now works for last menu item as button.
    • \n
    \n

    2.4.9

    \n
      \n
    • Fix: Navigation Menu – Resolved accessibility issue with the expandable menu layout.
    • \n
    • Fix: Navigation Menu – Widget closes when an anchor link is clicked.
    • \n
    \n

    2.4.8

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.31 version.
    • \n
    \n

    2.4.7

    \n
      \n
    • This update addresses a security bug. Props to Peter Thaleikis for privately reporting it to our team. We appreciate the responsible disclosure!
    • \n
    \n

    2.4.6

    \n
      \n
    • Improvement: Refactored and optimized codebase for improved maintainability.
    • \n
    \n

    2.4.5

    \n
      \n
    • Improvement: Updated Dashboard and Onboarding for Improved User Experience.
    • \n
    \n

    2.4.4

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.30 version.
    • \n
    • Improvement: Help button in widgets now links directly to relevant documentation.
    • \n
    \n

    2.4.3

    \n
      \n
    • Updated readme file.
    • \n
    \n

    2.4.2

    \n
      \n
    • Improvement: Optimize performance with the new “Deactivate Unused Widgets” option.
    • \n
    \n

    2.4.1

    \n
      \n
    • Improvement: Optimized codebase and improved code quality.
    • \n
    \n

    2.4.0

    \n
      \n
    • New: Reading Progress Bar – Added a sleek, customizable reading progress bar to enhance user engagement on your site.
    • \n
    \n

    2.3.2

    \n
      \n
    • Improvement: Updated Dashboard for Improved User Experience
    • \n
    \n

    2.3.1

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.29 version.
    • \n
    \n

    2.3.0

    \n
      \n
    • New: Info Card Widget – Create engaging and elegant content sections with this customizable widget. Easily configure text, icons, and buttons/links to match your design needs.
    • \n
    \n

    2.2.4

    \n
      \n
    • Fix: Buttons now correctly load the default color and font settings as defined in the Theme Customizer.
    • \n
    \n

    2.2.3

    \n
      \n
    • Improvement: Improved accessibility compliance throughout the plugin.
    • \n
    • Fix: Navigation Menu – The submenu now expands correctly when the “Full Width” option is enabled
    • \n
    \n

    2.2.2

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.28 version.
    • \n
    \n

    2.2.1

    \n
      \n
    • This update addressed a security bug. Please make sure you are using the latest version on your website.
    • \n
    • Improvement: Added a notice in the Elementor editor to prompt users to flush permalinks if it gets stuck after a plugin update.
    • \n
    • Improvement: Removed ‘elementor-button-wrapper’ to enhance performance and optimize the DOM structure.
    • \n
    • Fix: Navigation Menu – Full-width dropdown menu now stays correctly positioned when resizing in responsive mode.
    • \n
    \n

    2.2.0

    \n
      \n
    • New: Ultimate Addons for Elementor now includes translations for Dutch, French, Spanish, and German enhancing multilingual accessibility.
    • \n
    • Fix: Navigation Menu – Anchor links now correctly scroll to sections/container when submenu items with IDs are clicked.
    • \n
    • Fix: “Function map_meta_cap called incorrectly” notice appearing for logged out users when shortcode executed manually.
    • \n
    • Fix: Deprecated constant FILTER_SANITIZE_STRING replaced to ensure compatibility with PHP.
    • \n
    • Fix: Resolved PHP error with NPS library.
    • \n
    \n

    2.1.0

    \n
      \n
    • New: Added NPS Survey to gather your valuable feedback for Ultimate Addons for Elementor.
    • \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.27 version.
    • \n
    • Fix: Resolved issue where icons were displaying too large on page load for the Elementor and WordPress menu widget.
    • \n
    • Fix: Cart – Resolved an issue where icons were not displaying correctly for logged-out users.
    • \n
    \n

    2.0.6

    \n
      \n
    • Fix: Load text domain PHP warning when Loco Translate plugin is active.
    • \n
    \n

    2.0.5

    \n
      \n
    • Fix: Conflict with pro version update notice.
    • \n
    \n

    2.0.4

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.26 version.
    • \n
    • Improvement: Added a navigation bar to the Header and Footer Builder page to improve usability and navigation.
    • \n
    \n

    2.0.3

    \n
      \n
    • Fix: Load JS & CSS assets conditionally on relevant pages in the editor.
    • \n
    \n

    2.0.2

    \n
      \n
    • Fix: Added a class_exists check to prevent critical errors caused by class redeclaration.
    • \n
    • Fix: Verify Elementor Kit settings before accessing to avoid potential issues.
    • \n
    \n

    2.0.1

    \n
      \n
    • Fix: Conflict with site customizer style.
    • \n
    \n

    2.0.0

    \n
      \n
    • New Feature: Scroll to Top Button.
      \nAdd a dynamic “Scroll to Top” button to enhance navigation and improve user experience on long pages.
    • \n
    • New Widget: Post Info Widget.
      \nDisplay metadata like author name, publish date, categories, tags, and more dynamically on your posts or pages.
    • \n
    • New Widget: Breadcrumbs Widget.
      \nAdd navigational breadcrumbs to improve site navigation and guide users through your content hierarchy.
    • \n
    • Improvement: Revamped User Interface.
      \nIntroduced a new, user-friendly UI similar to UAE Pro for easier management of widgets and features.
    • \n
    • Improvement: Rebranded as UAE from Elementor Header & Footer Builder: Packed with all your favorite features plus new widgets, functionality, and a sleek UI.
    • \n
    \n

    1.6.47

    \n
      \n
    • Fix: This update addressed a security bug. Props to Wordfence for privately reporting it to our team. Please make sure you are using the latest version on your website.
    • \n
    \n

    1.6.46

    \n
      \n
    • Fix: This update addressed a security bug. Props to Wordfence and Francesco Carlucci for privately reporting it to our team. Please make sure you are using the latest version on your website.
    • \n
    \n

    1.6.45

    \n
      \n
    • Improvement: Enhanced the enqueue_scripts method with checks to ensure styles load safely.
    • \n
    \n

    1.6.44

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.25 version.
    • \n
    • Fix: This update addressed a security bug. Props to Wordfence and Francesco Carlucci for privately reporting it to our team. Please make sure you are using the latest version on your website.
    • \n
    \n

    1.6.43

    \n
      \n
    • Improvement: Icons displaying correctly on frontend.
    • \n
    \n

    1.6.42

    \n
      \n
    • Fix: Navigation Menu – Active color now changes correctly when moving between pages.
    • \n
    • Fix: Page Title – The icon was showing too big, now it appears the right size.
    • \n
    \n

    1.6.41

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.24 version.
    • \n
    • Improvement: Implemented widget output caching to enhance page performance.
    • \n
    • Improvement: Updated the deprecated code in codebase.
    • \n
    \n

    1.6.40

    \n
      \n
    • Improvement: Navigation Menu – The dropdown menu now extends to full width when the navigation menu container is set to full width on smaller screens.
    • \n
    • Fix: Navigation Menu – Console error for undefined property ‘left’.
    • \n
    \n

    1.6.39

    \n
      \n
    • Improvement: Updated minimum PHP version requirement to 7.4.
    • \n
    \n

    1.6.38

    \n
      \n
    • Improvement: Improved code quality syntax and security checks for better coding standards and practices.
    • \n
    \n

    1.6.37

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.23 version.
    • \n
    \n

    1.6.36

    \n
      \n
    • Fix: This update addressed a security bug. Props to Wordfence for privately reporting it to our team. Please make sure you are using the latest version on your website.
    • \n
    \n

    1.6.35

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.22 version.
    • \n
    • Improvement: Updated sanitize SVG function.
    • \n
    • Fix: Search – Compatibility with Polylang switcher.
    • \n
    \n

    1.6.34

    \n
      \n
    • Fix: Navigation Menu – Submenus show up for few seconds during the page load
    • \n
    • Fix: Navigation Menu – Huge icon show up for few seconds during the page load
    • \n
    • Fix: Navigation Menu – Unable to click on submenu when top distance is added for dropdown
    • \n
    \n

    1.6.33

    \n
      \n
    • Fix: Unable to edit the Header/Footer with Elementor in few cases.
    • \n
    \n

    1.6.32

    \n
      \n
    • Fix: Improved plugin security.
    • \n
    \n

    1.6.31

    \n
      \n
    • Fix: Conflict with WP SVG Images plugin.
    • \n
    \n

    1.6.30

    \n
      \n
    • Fix: Improved error messages during plugin activation.
    • \n
    \n

    1.6.29

    \n
      \n
    • Fix: Navigation Menu – The submenu container opens without hovering over the parent menu item.
    • \n
    • Fix: This update addressed a security bug. Props to Wordfence.
    • \n
    \n

    1.6.28

    \n
      \n
    • Fix: Error messages appearing for Display rules.
    • \n
    \n

    1.6.27

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.21 version.
    • \n
    • Improvement: Compatibility with PHP 8.3 version.
    • \n
    • Fix: This update addressed a security bug. Props to Wordfence.
    • \n
    \n

    1.6.26

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.20 version.
    • \n
    • Improvement: Compatibility with PHP 8.2 version.
    • \n
    \n

    1.6.25

    \n
      \n
    • Security Fix: Hardened the security of the plugin. Props: Wordfence.
    • \n
    • Fix: Automatic translation support for templates on Specific Pages / Posts / Taxonomies, etc.
    • \n
    • Fix: Navigation Menu – Multistep submenu fails to display when a border radius is applied to dropdown.
    • \n
    \n

    1.6.24

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.19 version.
    • \n
    • Fix: White Label – Astra’s theme name does not change when Astra is white-labeled.
    • \n
    • Fix: Navigation Menu – Language switcher flags not displaying when using Polylang plugin.
    • \n
    \n

    1.6.23

    \n
      \n
    • Fix: This update addressed a security bug. Props to WordPress Plugin Review Team and Plugin Vulnerabilities Team for reporting it to our team. Please make sure you are using the latest version on your website.
    • \n
    \n

    1.6.22

    \n
      \n
    • Fix: Retina Image – Navigating to custom URL by clicking on images.
    • \n
    \n

    1.6.21

    \n
      \n
    • Fix: Site Logo – Width and height settings not applying to the logo.
    • \n
    \n

    1.6.20

    \n
      \n
    • Fix: Flyout menu not appearing correctly.
    • \n
    \n

    1.6.19

    \n
      \n
    • Fix: Header and Footer layout broken after last update.
    • \n
    \n

    1.6.18

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.18 version.
    • \n
    • Improvement: Compatibility with WordPress VIP Go rules.
    • \n
    \n

    1.6.17

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.17 version.
    • \n
    • Fix: Site Logo – Added an alt text for the default logo.
    • \n
    \n

    1.6.16

    \n
      \n
    • Compatibility with latest Elementor and Elementor Pro 3.16 version.
    • \n
    • Compatibility with PHP 8.1 version.
    • \n
    \n

    1.6.15

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.15 version.
    • \n
    • Improvement: Added WPML support.
    • \n
    • Fix: Navigation Menu – HTML validation error on mobile layout related to tabindex inside elements with attribute [role=”button”].
    • \n
    • Fix: Polylang plugin language causes conflicts when set up with a custom Header Footer.
    • \n
    • Fix: Site Logo – Align icons not rendering in Elementor editor settings.
    • \n
    \n

    1.6.14

    \n
      \n
    • Improvement: Compatibility with Elementor version 3.13 and Elementor Pro version 3.13
    • \n
    • Fix: Navigation Menu – Accessibility error corrected for [aria-hidden=”true”] attribute.
    • \n
    \n

    1.6.13

    \n
      \n
    • Compatibility with Elementor version 3.7.2 and Elementor Pro version 3.7.3.
    • \n
    \n

    1.6.12

    \n
      \n
    • Compatibility with Elementor and Elementor Pro.
    • \n
    \n

    1.6.11

    \n
      \n
    • Improvement: Compatibility with Elementor Pro version 3.7
    • \n
    • Fix: Removed meta tag attribute [maximum-scale=1] for a better accessibility.
    • \n
    \n

    1.6.10

    \n
      \n
    • Improvement: Compatibility with Elementor version 3.6.
      \nRemoved elementor deprecated functions and replaced with latest functions.
      \nNow to work with Elementor Header & Footer Builder, Elementor minimum version 3.5.0 or higher will be required.
    • \n
    \n

    1.6.9

    \n
      \n
    • Improvement: Compatibility with Elementor Pro version 3.6
    • \n
    • Fix: Navigation Menu – If Polylang language switcher is present in the menu, it closes the menu with a click.
    • \n
    \n

    1.6.8

    \n
      \n
    • Improvement: WordPress 5.9 compatibility.
    • \n
    \n

    1.6.7

    \n
      \n
    • Improvement: Added GDPR support to Subscription form.
    • \n
    \n

    1.6.6

    \n
      \n
    • Improvement: Added compatibility to Elementor core version 3.5.0. Now to work with EHF, Elementor minimum version 3.1.0 or higher will be required.
    • \n
    • Fix: PHP warning of undefined array key on responsive controls in all widgets.
    • \n
    \n

    1.6.5

    \n
      \n
    • Fix: Hide empty cart count badge hiding even when cart is not empty.
    • \n
    \n

    1.6.4

    \n
      \n
    • Improvement: Elementor 3.4 compatibility.
    • \n
    \n

    1.6.3

    \n
      \n
    • Improvement: WordPress 5.8 compatibility.
    • \n
    • Improvement: Elementor 3.3 compatibility.
    • \n
    \n

    1.6.2

    \n
      \n
    • Improvement: Copyright – Added custom link attributes support.
    • \n
    • Improvement: Page Title – Added custom link attributes support.
    • \n
    • Improvement: Retina Image – Added custom link attributes support.
    • \n
    • Improvement: Search – Added gradient color support to the search button.
    • \n
    • Improvement: Site Logo – Added custom link attributes support.
    • \n
    • Improvement: Site Title – Added custom link attributes support.
    • \n
    • Fix: Templates views section not displaying correctly and related code conflicting with Yoast SEO plugin.
    • \n
    • Fix: Widgets icon color issue with Elementor’s dark mode.
    • \n
    \n

    1.6.1

    \n
      \n
    • Fix: Footer misplaced in the header or content area due to a bug introduced in v1.6.0.
    • \n
    \n

    1.6.0

    \n
      \n
    • New: Added Email Subscription and About Us section on the settings page.
    • \n
    • New: Renamed the plugin to Elementor Header & Footer Builder.
    • \n
    • Improvement: Added an option to hide + & – sign added by Twenty Twenty-One Theme.
    • \n
    • Fix: Navigation Menu – Border for dropdown is also applying to the menu trigger icon.
    • \n
    • Fix: Navigation Menu – Fix top distance option for dropdown adding a top-margin to sub-menu.
    • \n
    • Fix: Navigation Menu – Fixed active color issues in case of full-page anchor links used in nav links.
    • \n
    • Fix: Navigation Menu – Navigation schema not working.
    • \n
    \n

    1.5.9

    \n
      \n
    • Improvement: Added notice to update Elementor to v3.0.0 or higher
      \nElementor has deprecated few functions and namespaces with its v3.0.0. Following Elementor, our plugin too deprecates similar functions and namespaces. You will now require the Elementor v3.0.0 or higher.
    • \n
    • Improvement: Elementor 3.2 Compatibility – Added Elementor Global Color and Typography scheme support.
    • \n
    • Fix: Navigation Menu – Last menu item button disappearing while switching from mobile to desktop.
    • \n
    • Fix: Navigation Menu – Last menu item button alignment not working in RTL view.
    • \n
    \n

    1.5.8

    \n
      \n
    • Fix: Hardened allowed options in the editor to enforce better security policies.
    • \n
    \n

    1.5.7

    \n
      \n
    • Improvement: Compatibility with Elementor v3.1.
    • \n
    • Fix: Navigation Menu – Undefined index notice when menu is not set.
    • \n
    \n

    1.5.6

    \n
      \n
    • Fix: Buttons showing cart subtotal.
    • \n
    \n

    1.5.5

    \n
      \n
    • Improvement: Compatibility with Elementor v3.1.
    • \n
    • Improvement: Cart – Added Items Count hover color options.
    • \n
    • Fix: jQuery shorthand deprecation warning for click() and focus() functions.
    • \n
    • Fix: Cart – Fixed fatal error due to cart initialization.
    • \n
    \n

    1.5.4

    \n
      \n
    • Improvement: Compatibility to PHP v8.0.
    • \n
    • Improvement: Improved compatibility with Astra theme.
    • \n
    • Improvement: Navigation Menu – Added option to toggle menu item.
    • \n
    • Fix: Added ‘alt’ attribute to the widgets containing images.
    • \n
    • Fix: Closed the missing HTML tag in footer in the global theme compatibility.
    • \n
    • Fix: Navigation Menu – Alignment option not working for the last menu item set as ‘Button’.
    • \n
    \n

    1.5.3

    \n
      \n
    • Fix: Polylang plugin conflicting issue with target rules.
    • \n
    • Fix: Navigation Menu – Double link attributes issue with translation plugins.
    • \n
    \n

    1.5.2

    \n
      \n
    • Improvement: Compatibility with Polylang.
    • \n
    • Improvement: Navigation Menu – Added ‘SiteNavigationElement’ schema support.
    • \n
    • Improvement: Navigation Menu – Added support to SVG for toggle and close icon.
    • \n
    • Improvement: Navigation Menu – Added active color support to the link hover effects.
    • \n
    • Improvement: Page Title – Added option to disable the link.
    • \n
    • Fix: Exclude EHF templates from query for target rules – Specific Pages / Posts / taxonomies etc.
    • \n
    • Fix: Cart – Missing wrapper class in the control selector.
    • \n
    • Fix: Navigation Menu – Added responsive support to flyout box width.
    • \n
    \n

    1.5.1

    \n
      \n
    • Fix: Retained GeneratePress theme’s after header while using EHF header.
    • \n
    • Fix: Target rule ‘Specific Pages/Posts/Taxonomies etc’ not working.
    • \n
    • Fix: Cart – Error in some cases.
    • \n
    \n

    1.5.0

    \n
      \n
    • New: Search widget.
    • \n
    • New: Users can now share non-personal usage data to help us test and develop better products. ( Know More )
    • \n
    • Improvement: UI improvements.
    • \n
    • Improvement: Navigation Menu – Added active color for dropdown and current menu parent.
    • \n
    • Improvement: Navigation Menu – Changed the tablet breakpoint to 1024 in order to support iPad Pro.
    • \n
    • Fix: Compatibility to PHP v7.4.
    • \n
    • Fix: GeneratePress theme header now overridden by EHF.
    • \n
    • Fix: Cart – Count not increasing with AJAX call.
    • \n
    • Fix: Page Title – Added support for archive title.
    • \n
    • Fix: Site Title – Custom URL not working.
    • \n
    \n

    1.4.1

    \n
      \n
    • Fix: EHF header overlapping Astra WooCommerce Off-Canvas.
    • \n
    • Fix: WooCommerce Menu Cart – ‘div’ tag of custom cart layout was not closed.
    • \n
    • Fix: WooCommerce Menu Cart – Fatal error with count when cart is empty.
    • \n
    \n

    1.4.0

    \n
      \n
    • New: WooCommerce Menu Cart widget.
    • \n
    • Improvement: Compatibility to Elementor Pro v2.9 full site editing.
    • \n
    • Improvement: In-built support to Hello Elementor theme.
    • \n
    • Improvement: WPML support to before footer template.
    • \n
    • Improvement: Navigation Menu – Added option to convert last item into CTA.
    • \n
    \n

    1.3.1

    \n
      \n
    • Fix: Copyright – Link with open in new tab not working.
    • \n
    • Fix: Navigation Menu – Hamburger menu click not working on responsive devices.
    • \n
    • Deprecated: Removed the theme dependency for the plugin, so removed the associated notice.
    • \n
    \n

    1.3.0

    \n
      \n
    • New: Added ‘Site Logo’ widget.
    • \n
    • New: Added ‘Site Title’ widget.
    • \n
    • New: Added ‘Site Tagline’ widget.
    • \n
    • New: Added ‘Navigation Menu’ widget.
    • \n
    • New: Added ‘Page Title’ widget.
    • \n
    • Improvement: Elementor v2.9 compatibility.
    • \n
    \n

    1.2.2

    \n
      \n
    • Fix: Add default fallback theme support after checking if current theme does not add it.
    • \n
    \n

    1.2.1

    \n
      \n
    • Categorize the Elementor widgets in a separate category in the Elementor window.
    • \n
    • Hide target rules options when a custom block template is selected.
    • \n
    \n

    1.2.0

    \n
      \n
    • New: Support all the themes, Includes two separate fallback methods so that you can create custom headers and footers for any theme.
    • \n
    • New: Added target rule engine, which allows you to have different headers/footers for different pages.
    • \n
    • New: Added Retina Image Elementor widget, which can be used as a Site Logo.
    • \n
    • New: Added Copyright widget and Shortcode for current year & site title.
    • \n
    • Improvement: Allow before footer to work on Elementor Canvas Template when not using Astra Theme.
    • \n
    • Improvement: Added support of Before Footer action for all the themes.
    • \n
    \n

    1.1.4

    \n
      \n
    • Fix: Flush permalinks on plugin update to Elementor error when trying to edit the Header/Footer.
    • \n
    \n

    1.1.3

    \n
      \n
    • Improvement: Allow changing the permalinks for the hfe templates (#162)
    • \n
    • Fix: WPML Translations do not work when using the Elementor Template as a shortcode. (#159)
    • \n
    • Fix: Page content appears over the header. (#150)
    • \n
    • Fix: Remove the deprecated function warning for shortcode functions. (Props @hogash #145)
    • \n
    \n

    1.1.2

    \n
      \n
    • Fix: Depracated function warning from Elementor’s method \\Elementor\\Post_CSS_File
    • \n
    \n

    1.1.1

    \n
      \n
    • Fix: Blank header being displayed when only footer is translated using WPML.
    • \n
    \n

    1.1.0

    \n
      \n
    • New: Rename plugin to be Header Footer & Blocks builder as now the blocks templates can be used as shortcodes.
    • \n
    • New: Add templates before the footer for Astra Theme. Options for other themes will be coming soon.
    • \n
    • New: Use templates (Blocks) anywhere in your content with the help of shortcodes.
    • \n
    • Improvement: Improved the UI of the metabox for Header Footer post type.
    • \n
    \n

    1.0.16

    \n
      \n
    • Fix: Make the theme not supported notice dismissable.
    • \n
    • Fix: Use specific selector when adding z-index for the header.
    • \n
    \n

    1.0.15

    \n
      \n
    • Fix: Default Header being displayed for Generatepress and Genesis theme after v1.0.14.
    • \n
    \n

    1.0.14

    \n
      \n
    • Fix: Fixes possible PHP notices/Errors due to WP_Query being called early for all the supported themes.
    • \n
    \n

    1.0.13

    \n
      \n
    • Fix: PHP Notices and errors due to WP_Query being called early when some plugins use filters inside WP_Query.
    • \n
    \n

    1.0.12

    \n
      \n
    • Fix: Compatibility with Elementor 2.0 changed canvas template path.
    • \n
    \n

    1.0.11

    \n
      \n
    • Load the CSS footer early in the page to avoid slow rendering of CSS.
    • \n
    • Change the schema.org links to be https.
    • \n
    • Fix: Added correct schema markup for the footer.
    • \n
    \n

    1.0.10

    \n
      \n
    • Load the header layout correctly in the in Elementor canvas template.
    • \n
    • Load the Elementor Pro CSS/JS files in .
    • \n
    • Provide more filters for the helper functions.
    • \n
    \n

    1.0.9

    \n
      \n
    • Add Support for WPML.
    • \n
    • Updated the missing strings from the translations template.
    • \n
    \n

    1.0.8

    \n
      \n
    • Allow filters to override the WP_Query parameters when retrieving the Header / Footer template id.
    • \n
    \n

    1.0.7

    \n
      \n
    • Fix: Dismissible notice not actually dismissing.
    • \n
    \n

    1.0.6

    \n
      \n
    • New: Option to display the header/footer on the pages using Elementor Canvas Template.
    • \n
    \n

    1.0.5

    \n
      \n
    • Fix: Correctly check if Elementor actually is active before using its methods. This fixes errors for sites using older versions of PHP where Elementor does not actually get activated.
    • \n
    \n

    1.0.4

    \n
      \n
    • Improvement: Use Elementor’s created instance when rendering the markup for header/footer – Credits itay9001
    • \n
    \n

    1.0.3

    \n
      \n
    • Fix: Adding theme support for the plugin does not remove the “no supported” notice.
    • \n
    \n

    1.0.2

    \n
      \n
    • New: Added support for the OceanWP Theme.
    • \n
    • Fix: Load the Elementor header assets correctly in the header. This fixes header looking different just when loading the page as previously Elementor would load its CSS in the footer.
    • \n
    • Introduced helper functions for rendering and checking the headers to make it simpler to integrate HFE with more themes.
    • \n
    \n

    1.0.1

    \n
      \n
    • New: Added support for the Astra WordPress theme – The Fastest, Most Lightweight & Customizable WordPress Theme.
    • \n
    • Moved the menu under Appearance -> Header Footer Builder.
    • \n
    • Fix: Header content getting hidden behind the page content.
    • \n
    • Use Elementor’s canvas template when designing header and footer layout to have full width experience.
    • \n
    \n

    1.0.0

    \n
      \n
    • Initial Release.
    • \n
    \n", "description": "

    Ultimate Addons for Elementor (UAE) is a powerful yet lightweight plugin that extends Elementors capabilities with purposely built widgets, blocks, and features that help you build better websites—without adding complexity.

    \n

    Formerly known as Elementor Header & Footer Builder, UAE has evolved into a trusted Elementor Addons used by over 2 million websites to design creative sections directly within Elementor—no coding required.

    \n

    The free version of UAE includes a hand-picked set of essential widgets like Info Card, Navigation Menu and more—widgets that are genuinely useful for most websites. It also enables you to design headers and footers visually and adds features that improve your design process without cluttering your interface.

    \n

    When you’re ready to go further, UAE Pro unlocks a library of 50+ premium widgets, 200+ pre-designed section blocks, and advanced features like Cross-Site Copy-Paste, Advanced Display Conditions, Form Stylers for popular form plugins, and visual effects like Particle Backgrounds.

    \n

    These features are built to save time and offer more design freedom—not just to impress, but to genuinely improve how you build and manage websites.

    \n

    Whether you’re just getting started with WordPress or managing multiple client sites, UAE – Elementor Addons gives you the control, performance, and reliability to design beautiful, high-converting websites efficiently.

    \n

    Try the live demo of Ultimate Addons for Elementor

    \n

    \n

    Why Choose UAE Elementor Addon

    \n

    Ultimate Addons for Elementor equips you with tools that make page design faster, cleaner, and more creative. Whether you’re just starting your web design journey or building complex websites for clients, UAE can help.

    \n

    Here’s why over 2 million people trust UAE:

    \n
      \n
    • \n

      Create Engaging Designs: Build visually stunning sections with widgets that go beyond basic blocks. From Before/After sliders to particle backgrounds, everything is built to captivate, engage, and convert.

      \n
    • \n
    • \n

      Copy Elementor Designs From One Domain to Another: Use the Cross-Site Copy Paste feature to move sections and widgets between pages/sites, which streamlines the workflow and saves time.

      \n
    • \n
    • \n

      Keep Your Website Light by Loading Only What Is Needed: UAE loads code only for the widgets you use, which helps maintain site performance and supports SEO best practices.

      \n
    • \n
    • \n

      Build Faster With 200+ Readymade Section Blocks: Design faster with a massive library of pre-designed content sections. Just insert, customize, and publish. Ideal for agencies and freelancers seeking efficiency.

      \n
    • \n
    • \n

      50+ Premium Widgets That Truly Matter: UAE Pro includes over 50+ carefully crafted widgets. High-impact tools designed to solve real design challenges and boost functionality where it counts.

      \n
    • \n
    • \n

      Works Seamlessly With Any WordPress Theme: No theme lock-in or compatibility issues. UAE integrates smoothly with all compliant WordPress themes, including Astra.

      \n
    • \n
    • \n

      Designed for Beginners, Loved by Pros: Whether you’re a DIY site builder or a seasoned designer, UAE strikes the balance between ease of use and advanced functionality.

      \n
    • \n
    • \n

      Extend Elementor Without Plugin Overload: UAE packs multiple high-utility widgets into one lightweight plugin. Avoid installing multiple third-party plugins that slow down your site or create conflicts.

      \n
    • \n
    \n

    Free Widgets in Ultimate Addons for Elementor

    \n
      \n
    • \n

      Navigation Menu – With this powerful Elementor nav menu addon (widget), you can build responsive menus that match your style.

      \n
    • \n
    • \n

      Site Logo & Retina Logo – Showcase crisp branding across all devices.

      \n
    • \n
    • \n

      Site Title & Tagline – Display key identity elements clearly and elegantly.

      \n
    • \n
    • \n

      Search – Add fast, user-friendly search to your header or footer.

      \n
    • \n
    • \n

      Cart – Integrate a shopping cart preview for WooCommerce stores.

      \n
    • \n
    • \n

      Page Title – Automatically show relevant page titles for better UX and SEO.

      \n
    • \n
    • \n

      Breadcrumbs – Improve site navigation and search engine visibility.

      \n
    • \n
    • \n

      Post Info – Display author, date, categories, and more for content clarity.

      \n
    • \n
    • \n

      Scroll to Top – Give users a seamless way to navigate with this handy scroll addon for Elementor.

      \n
    • \n
    • \n

      Reading Progress Bar – Visually indicate article progress for better engagement.

      \n
    • \n
    • \n

      Info Card – Combine icons, headings, text, and CTAs in one flexible block.

      \n
    • \n
    • \n

      Copyright – Easily add site-wide copyright or legal text in the footer.

      \n
    • \n
    \n

    Note: You can refer to our step-by-step guide that will help you set headers and footers quickly.

    \n

    How these Elementor widgets help:

    \n
      \n
    • Build complete headers and footers directly within Elementor
    • \n
    • Avoid relying on theme settings or extra plugins
    • \n
    • Keep your design consistent on all devices
    • \n
    • Improve usability, accessibility, and SEO
    • \n
    \n

    The free UAE widgets give you a strong foundation to build a professional website and they work beautifully with any WordPress theme.

    \n

    🚀 Upgrade to Ultimate Addons for Elementor Pro and unlock limitless possibilities!

    \n

    Content and Interaction Widgets

    \n

    Create compelling, high-converting layouts with powerful content widgets designed for Elementor. UAE widgets help you deliver clear, engaging content experiences that are both informative and interactive. Great for business sites, blogs, service pages, and portfolios.

    \n
      \n
    • \n

      Advanced Heading – Design eye-catching headlines with layered styles and dynamic effects.

      \n
    • \n
    • \n

      Business Hours – Display store or office hours clearly with styled layouts.

      \n
    • \n
    • \n

      Content Toggle (Popular) – Switch between content blocks for comparisons, FAQs, or pricing plans.

      \n
    • \n
    • \n

      Google Map – Add responsive, customizable location maps to boost trust and visibility.

      \n
    • \n
    • \n

      Image Gallery – Showcase multiple images in a clean, organized grid or masonry layout.

      \n
    • \n
    • \n

      Info Box – Combine icons, titles, and descriptions with CTA buttons in one elegant widget.

      \n
    • \n
    • \n

      Modal Popup (Popular) – Easily trigger stylish popups for promotions, lead generation, or key messages.

      \n
    • \n
    • \n

      Posts – Showcase your latest blog posts or any custom post types with this visually appealing post grid addon for Elementor.

      \n
    • \n
    • \n

      Price List – Highlight products or services with pricing and description in a clean layout.

      \n
    • \n
    • \n

      Table – Create sortable, responsive tables to organize data or feature comparisons.

      \n
    • \n
    • \n

      Video (Popular) – Embed YouTube, Vimeo, or self-hosted videos with custom styling options.

      \n
    • \n
    • \n

      Video Gallery – Show multiple videos in a neatly organized, responsive gallery.

      \n
    • \n
    \n

    Creative Widgets

    \n

    Add flair, functionality, and interactivity to your Elementor designs. Ideal for portfolios, agencies, service-based businesses, and conversion-focused landing pages.

    \n
      \n
    • \n

      Before After Slider – Visually compare two images using a draggable slider.

      \n
    • \n
    • \n

      Countdown Timer – Create urgency for offers, events, or product launches.

      \n
    • \n
    • \n

      Display Conditions – Show or hide content dynamically based on user role, device, login status, and more.

      \n
    • \n
    • \n

      Dual Color Heading – Highlight key phrases in headings with stylish dual-tone designs.

      \n
    • \n
    • \n

      Fancy Heading – Create animated, visually distinct headlines to capture attention.

      \n
    • \n
    • \n

      Hotspots (Popular) – Add interactive tooltips to images to explain features or details.

      \n
    • \n
    • \n

      Login Form – Embed a beautifully styled, branded login form right into any page.

      \n
    • \n
    • \n

      Marketing Button – Add call to action buttons with built-in icons, hover effects, and dual text.

      \n
    • \n
    • \n

      Multi Buttons – Display multiple action buttons side-by-side for better decision making.

      \n
    • \n
    • \n

      Navigation Menu – Create fully customizable, responsive menus directly within Elementor.

      \n
    • \n
    • \n

      Off-Canvas – Create off-screen panels for menus, filters, or extra content that slides into view.

      \n
    • \n
    • \n

      Price Box – Showcase pricing plans with styled headings, features, and call to action buttons.

      \n
    • \n
    • \n

      Retina Image – Ensure images display perfectly on high-resolution (Retina) screens.

      \n
    • \n
    • \n

      Team Member – Introduce your team with photos, bios, social links and layout options.

      \n
    • \n
    • \n

      Timeline (Popular) – Display milestones, history, or process steps in vertical or horizontal timelines.

      \n
    • \n
    • \n

      User Registration Form – Let visitors register with a styled, user-friendly form.

      \n
    • \n
    \n

    Form Styler Widgets

    \n

    Match forms to your site design and improve conversions without writing CSS. These widgets let you customize popular WordPress forms with full control over layout, colors, typography, and spacing.

    \n\n

    SEO Widgets

    \n

    Boost search visibility, enhance content structure and build trust from the Elementor editor.

    \n
      \n
    • \n

      Business Reviews – Display authentic reviews from platforms like Google.

      \n
    • \n
    • \n

      How-To Schema – Format step-by-step guides with structured data to earn rich snippets.

      \n
    • \n
    • \n

      FAQ Schema – Create styled FAQs that are also SEO-ready.

      \n
    • \n
    • \n

      Table of Contents – Automatically generate clickable TOCs for long content.

      \n
    • \n
    \n

    Social Widgets

    \n

    Keep your website fresh, connected and shareable with built-in social media integrations.

    \n
      \n
    • \n

      Instagram Feed (NEW) – Embed a stylish, responsive Instagram gallery that updates automatically.

      \n
    • \n
    • \n

      X Feed (NEW) – Show your most recent posts from X (formerly Twitter).

      \n
    • \n
    • \n

      Social Share – Add sleek, customizable share buttons to grow your audience.

      \n
    • \n
    \n

    WooCommerce Widgets

    \n

    Design high-converting online stores inside Elementor with this modern WooCommerce addon.

    \n\n

    Creative Features

    \n

    Go beyond widgets and unlock tools that accelerate your workflow.

    \n
      \n
    • \n

      Cross-Site Copy Paste – Instantly copy and paste entire Elementor sections between domains.

      \n
    • \n
    • \n

      Particle Backgrounds – Add animated particle effects behind sections.

      \n
    • \n
    • \n

      Party Propz – Celebrate special occasions with on-screen confetti and fun animations.

      \n
    • \n
    • \n

      Presets – Apply consistent design styles across widgets with a single click.

      \n
    • \n
    • \n

      Welcome Music – Play background music when a visitor lands on your site.

      \n
    • \n
    \n

    Unlock Even More With the Essential Toolkit

    \n

    Upgrade to the Essential Toolkit to access a powerful bundle designed to save time, spark creativity, and give you a real competitive advantage.

    \n

    300+ Pre-built websites: Skip the blank canvas. Launch faster with professionally designed websites.

    \n

    Templates for every niche: Build business sites, blogs, portfolios, or stores with no design experience needed.

    \n

    Total design freedom: Tweak every pixel, colors, fonts, and layouts to make each site uniquely yours.

    \n

    What Users Are Saying

    \n

    “A must-have for any Elementor user. Incredible widget bundle — powerful, essential, and easy to use.”
    \n – Carmelo Teran (nexodreams.com)

    \n

    “Huge selection of widgets that help me deliver unique designs fast. Love the Hotspots, Heading, and Cross-Site Copy Paste!”
    \n – Nicola Stobb (imoe.co)

    \n

    “If Elementor Pro is the Iron Man suit, Ultimate Addons is the Hulkbuster upgrade. I don’t build without it!”
    \n – Dean Loh (kaia.asia)

    \n

    More Tools To Enhance Your WordPress Website

    \n

    If you love Ultimate Addons, you’ll love what else we’ve built to make designing and managing websites easier.

    \n
      \n
    • \n

      Astra theme – A popular WordPress theme known for speed and flexibility.

      \n
    • \n
    • \n

      Astra Starter Templates – Pick from over 300+ professionally designed templates or use AI to create a custom website in minutes.

      \n
    • \n
    • \n

      OttoKit (Formerly SureTriggers) – Automate daily tasks by connecting your favorite apps and plugins effortlessly.

      \n
    • \n
    • \n

      SureForms – Build beautiful, high-converting forms, quizzes, and surveys.

      \n
    • \n
    • \n

      SureCart – A powerful yet easy to use eCommerce plugin built for modern creators and digital sellers.

      \n
    • \n
    \n

    Each tool is designed to help you build faster, work smarter, and grow your online presence with less effort and better results.

    \n

    Need help getting started?

    \n

    Check out our getting started guide and documentation for step-by-step tutorials.

    \n

    Have a question?

    \n

    Visit the support forum right here on WordPress.org. We’re happy to help!

    \n

    Want to explore more?

    \n

    Learn about all features, FAQs, and tips on our website.

    \n

    🎉 Love Ultimate Addons for Elementor?

    \n\n", "screenshots": "
    1. \"\"
    2. \"\"
    3. \"\"
    4. \"\"
    5. \"\"
    ", "installation": "
      \n
    1. Download the plugin.
    2. \n
    3. Upload the plugin files to the /wp-content/plugins/ directory or install it through the WordPress plugins screen.
    4. \n
    5. Activate the plugin via the ‘Plugins’ screen in WordPress.
    6. \n
    7. Go to UAE > Dashboard to start designing your custom headers and footers.
    8. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.1.2.zip", "1.2.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.2.2.zip", "1.3.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.3.1.zip", "1.4.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.4.1.zip", "1.5.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.9.zip", "2.0.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.6.zip", "2.1.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.2.4.zip", "2.3.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.3.2.zip", "2.4.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.5.2.zip", "2.6.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.6.1.zip", "trunk": "https://downloads.wordpress.org/plugin/header-footer-elementor.zip", "1.0.10": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.16.zip", "1.6.10": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.10.zip", "1.6.11": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.11.zip", "1.6.12": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.12.zip", "1.6.13": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.13.zip", "1.6.14": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.14.zip", "1.6.15": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.15.zip", "1.6.16": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.16.zip", "1.6.17": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.17.zip", "1.6.18": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.18.zip", "1.6.19": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.19.zip", "1.6.20": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.20.zip", "1.6.21": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.21.zip", "1.6.22": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.22.zip", "1.6.23": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.23.zip", "1.6.24": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.24.zip", "1.6.25": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.25.zip", "1.6.26": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.26.zip", "1.6.27": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.27.zip", "1.6.28": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.28.zip", "1.6.29": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.29.zip", "1.6.30": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.30.zip", "1.6.31": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.31.zip", "1.6.32": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.32.zip", "1.6.33": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.33.zip", "1.6.34": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.34.zip", "1.6.35": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.35.zip", "1.6.36": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.36.zip", "1.6.37": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.37.zip", "1.6.38": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.38.zip", "1.6.39": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.39.zip", "1.6.40": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.40.zip", "1.6.41": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.41.zip", "1.6.42": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.42.zip", "1.6.43": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.43.zip", "1.6.44": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.44.zip", "1.6.45": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.45.zip", "1.6.46": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.46.zip", "1.6.47": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.47.zip", "v1.1.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.v1.1.3.zip", "v1.1.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.v1.1.4.zip"}, "downloaded": 56019705, "description": "

    Ultimate Addons for Elementor (UAE) is a powerful yet lightweight plugin that extends Elementors capabilities with purposely built widgets, blocks, and features that help you build better websites—without adding complexity.

    \n

    Formerly known as Elementor Header & Footer Builder, UAE has evolved into a trusted Elementor Addons used by over 2 million websites to design creative sections directly within Elementor—no coding required.

    \n

    The free version of UAE includes a hand-picked set of essential widgets like Info Card, Navigation Menu and more—widgets that are genuinely useful for most websites. It also enables you to design headers and footers visually and adds features that improve your design process without cluttering your interface.

    \n

    When you’re ready to go further, UAE Pro unlocks a library of 50+ premium widgets, 200+ pre-designed section blocks, and advanced features like Cross-Site Copy-Paste, Advanced Display Conditions, Form Stylers for popular form plugins, and visual effects like Particle Backgrounds.

    \n

    These features are built to save time and offer more design freedom—not just to impress, but to genuinely improve how you build and manage websites.

    \n

    Whether you’re just getting started with WordPress or managing multiple client sites, UAE – Elementor Addons gives you the control, performance, and reliability to design beautiful, high-converting websites efficiently.

    \n

    Try the live demo of Ultimate Addons for Elementor

    \n

    \n

    Why Choose UAE Elementor Addon

    \n

    Ultimate Addons for Elementor equips you with tools that make page design faster, cleaner, and more creative. Whether you’re just starting your web design journey or building complex websites for clients, UAE can help.

    \n

    Here’s why over 2 million people trust UAE:

    \n
      \n
    • \n

      Create Engaging Designs: Build visually stunning sections with widgets that go beyond basic blocks. From Before/After sliders to particle backgrounds, everything is built to captivate, engage, and convert.

      \n
    • \n
    • \n

      Copy Elementor Designs From One Domain to Another: Use the Cross-Site Copy Paste feature to move sections and widgets between pages/sites, which streamlines the workflow and saves time.

      \n
    • \n
    • \n

      Keep Your Website Light by Loading Only What Is Needed: UAE loads code only for the widgets you use, which helps maintain site performance and supports SEO best practices.

      \n
    • \n
    • \n

      Build Faster With 200+ Readymade Section Blocks: Design faster with a massive library of pre-designed content sections. Just insert, customize, and publish. Ideal for agencies and freelancers seeking efficiency.

      \n
    • \n
    • \n

      50+ Premium Widgets That Truly Matter: UAE Pro includes over 50+ carefully crafted widgets. High-impact tools designed to solve real design challenges and boost functionality where it counts.

      \n
    • \n
    • \n

      Works Seamlessly With Any WordPress Theme: No theme lock-in or compatibility issues. UAE integrates smoothly with all compliant WordPress themes, including Astra.

      \n
    • \n
    • \n

      Designed for Beginners, Loved by Pros: Whether you’re a DIY site builder or a seasoned designer, UAE strikes the balance between ease of use and advanced functionality.

      \n
    • \n
    • \n

      Extend Elementor Without Plugin Overload: UAE packs multiple high-utility widgets into one lightweight plugin. Avoid installing multiple third-party plugins that slow down your site or create conflicts.

      \n
    • \n
    \n

    Free Widgets in Ultimate Addons for Elementor

    \n
      \n
    • \n

      Navigation Menu – With this powerful Elementor nav menu addon (widget), you can build responsive menus that match your style.

      \n
    • \n
    • \n

      Site Logo & Retina Logo – Showcase crisp branding across all devices.

      \n
    • \n
    • \n

      Site Title & Tagline – Display key identity elements clearly and elegantly.

      \n
    • \n
    • \n

      Search – Add fast, user-friendly search to your header or footer.

      \n
    • \n
    • \n

      Cart – Integrate a shopping cart preview for WooCommerce stores.

      \n
    • \n
    • \n

      Page Title – Automatically show relevant page titles for better UX and SEO.

      \n
    • \n
    • \n

      Breadcrumbs – Improve site navigation and search engine visibility.

      \n
    • \n
    • \n

      Post Info – Display author, date, categories, and more for content clarity.

      \n
    • \n
    • \n

      Scroll to Top – Give users a seamless way to navigate with this handy scroll addon for Elementor.

      \n
    • \n
    • \n

      Reading Progress Bar – Visually indicate article progress for better engagement.

      \n
    • \n
    • \n

      Info Card – Combine icons, headings, text, and CTAs in one flexible block.

      \n
    • \n
    • \n

      Copyright – Easily add site-wide copyright or legal text in the footer.

      \n
    • \n
    \n

    Note: You can refer to our step-by-step guide that will help you set headers and footers quickly.

    \n

    How these Elementor widgets help:

    \n
      \n
    • Build complete headers and footers directly within Elementor
    • \n
    • Avoid relying on theme settings or extra plugins
    • \n
    • Keep your design consistent on all devices
    • \n
    • Improve usability, accessibility, and SEO
    • \n
    \n

    The free UAE widgets give you a strong foundation to build a professional website and they work beautifully with any WordPress theme.

    \n

    🚀 Upgrade to Ultimate Addons for Elementor Pro and unlock limitless possibilities!

    \n

    Content and Interaction Widgets

    \n

    Create compelling, high-converting layouts with powerful content widgets designed for Elementor. UAE widgets help you deliver clear, engaging content experiences that are both informative and interactive. Great for business sites, blogs, service pages, and portfolios.

    \n
      \n
    • \n

      Advanced Heading – Design eye-catching headlines with layered styles and dynamic effects.

      \n
    • \n
    • \n

      Business Hours – Display store or office hours clearly with styled layouts.

      \n
    • \n
    • \n

      Content Toggle (Popular) – Switch between content blocks for comparisons, FAQs, or pricing plans.

      \n
    • \n
    • \n

      Google Map – Add responsive, customizable location maps to boost trust and visibility.

      \n
    • \n
    • \n

      Image Gallery – Showcase multiple images in a clean, organized grid or masonry layout.

      \n
    • \n
    • \n

      Info Box – Combine icons, titles, and descriptions with CTA buttons in one elegant widget.

      \n
    • \n
    • \n

      Modal Popup (Popular) – Easily trigger stylish popups for promotions, lead generation, or key messages.

      \n
    • \n
    • \n

      Posts – Showcase your latest blog posts or any custom post types with this visually appealing post grid addon for Elementor.

      \n
    • \n
    • \n

      Price List – Highlight products or services with pricing and description in a clean layout.

      \n
    • \n
    • \n

      Table – Create sortable, responsive tables to organize data or feature comparisons.

      \n
    • \n
    • \n

      Video (Popular) – Embed YouTube, Vimeo, or self-hosted videos with custom styling options.

      \n
    • \n
    • \n

      Video Gallery – Show multiple videos in a neatly organized, responsive gallery.

      \n
    • \n
    \n

    Creative Widgets

    \n

    Add flair, functionality, and interactivity to your Elementor designs. Ideal for portfolios, agencies, service-based businesses, and conversion-focused landing pages.

    \n
      \n
    • \n

      Before After Slider – Visually compare two images using a draggable slider.

      \n
    • \n
    • \n

      Countdown Timer – Create urgency for offers, events, or product launches.

      \n
    • \n
    • \n

      Display Conditions – Show or hide content dynamically based on user role, device, login status, and more.

      \n
    • \n
    • \n

      Dual Color Heading – Highlight key phrases in headings with stylish dual-tone designs.

      \n
    • \n
    • \n

      Fancy Heading – Create animated, visually distinct headlines to capture attention.

      \n
    • \n
    • \n

      Hotspots (Popular) – Add interactive tooltips to images to explain features or details.

      \n
    • \n
    • \n

      Login Form – Embed a beautifully styled, branded login form right into any page.

      \n
    • \n
    • \n

      Marketing Button – Add call to action buttons with built-in icons, hover effects, and dual text.

      \n
    • \n
    • \n

      Multi Buttons – Display multiple action buttons side-by-side for better decision making.

      \n
    • \n
    • \n

      Navigation Menu – Create fully customizable, responsive menus directly within Elementor.

      \n
    • \n
    • \n

      Off-Canvas – Create off-screen panels for menus, filters, or extra content that slides into view.

      \n
    • \n
    • \n

      Price Box – Showcase pricing plans with styled headings, features, and call to action buttons.

      \n
    • \n
    • \n

      Retina Image – Ensure images display perfectly on high-resolution (Retina) screens.

      \n
    • \n
    • \n

      Team Member – Introduce your team with photos, bios, social links and layout options.

      \n
    • \n
    • \n

      Timeline (Popular) – Display milestones, history, or process steps in vertical or horizontal timelines.

      \n
    • \n
    • \n

      User Registration Form – Let visitors register with a styled, user-friendly form.

      \n
    • \n
    \n

    Form Styler Widgets

    \n

    Match forms to your site design and improve conversions without writing CSS. These widgets let you customize popular WordPress forms with full control over layout, colors, typography, and spacing.

    \n\n

    SEO Widgets

    \n

    Boost search visibility, enhance content structure and build trust from the Elementor editor.

    \n
      \n
    • \n

      Business Reviews – Display authentic reviews from platforms like Google.

      \n
    • \n
    • \n

      How-To Schema – Format step-by-step guides with structured data to earn rich snippets.

      \n
    • \n
    • \n

      FAQ Schema – Create styled FAQs that are also SEO-ready.

      \n
    • \n
    • \n

      Table of Contents – Automatically generate clickable TOCs for long content.

      \n
    • \n
    \n

    Social Widgets

    \n

    Keep your website fresh, connected and shareable with built-in social media integrations.

    \n
      \n
    • \n

      Instagram Feed (NEW) – Embed a stylish, responsive Instagram gallery that updates automatically.

      \n
    • \n
    • \n

      X Feed (NEW) – Show your most recent posts from X (formerly Twitter).

      \n
    • \n
    • \n

      Social Share – Add sleek, customizable share buttons to grow your audience.

      \n
    • \n
    \n

    WooCommerce Widgets

    \n

    Design high-converting online stores inside Elementor with this modern WooCommerce addon.

    \n\n

    Creative Features

    \n

    Go beyond widgets and unlock tools that accelerate your workflow.

    \n
      \n
    • \n

      Cross-Site Copy Paste – Instantly copy and paste entire Elementor sections between domains.

      \n
    • \n
    • \n

      Particle Backgrounds – Add animated particle effects behind sections.

      \n
    • \n
    • \n

      Party Propz – Celebrate special occasions with on-screen confetti and fun animations.

      \n
    • \n
    • \n

      Presets – Apply consistent design styles across widgets with a single click.

      \n
    • \n
    • \n

      Welcome Music – Play background music when a visitor lands on your site.

      \n
    • \n
    \n

    Unlock Even More With the Essential Toolkit

    \n

    Upgrade to the Essential Toolkit to access a powerful bundle designed to save time, spark creativity, and give you a real competitive advantage.

    \n

    300+ Pre-built websites: Skip the blank canvas. Launch faster with professionally designed websites.

    \n

    Templates for every niche: Build business sites, blogs, portfolios, or stores with no design experience needed.

    \n

    Total design freedom: Tweak every pixel, colors, fonts, and layouts to make each site uniquely yours.

    \n

    What Users Are Saying

    \n

    “A must-have for any Elementor user. Incredible widget bundle — powerful, essential, and easy to use.”
    \n – Carmelo Teran (nexodreams.com)

    \n

    “Huge selection of widgets that help me deliver unique designs fast. Love the Hotspots, Heading, and Cross-Site Copy Paste!”
    \n – Nicola Stobb (imoe.co)

    \n

    “If Elementor Pro is the Iron Man suit, Ultimate Addons is the Hulkbuster upgrade. I don’t build without it!”
    \n – Dean Loh (kaia.asia)

    \n

    More Tools To Enhance Your WordPress Website

    \n

    If you love Ultimate Addons, you’ll love what else we’ve built to make designing and managing websites easier.

    \n
      \n
    • \n

      Astra theme – A popular WordPress theme known for speed and flexibility.

      \n
    • \n
    • \n

      Astra Starter Templates – Pick from over 300+ professionally designed templates or use AI to create a custom website in minutes.

      \n
    • \n
    • \n

      OttoKit (Formerly SureTriggers) – Automate daily tasks by connecting your favorite apps and plugins effortlessly.

      \n
    • \n
    • \n

      SureForms – Build beautiful, high-converting forms, quizzes, and surveys.

      \n
    • \n
    • \n

      SureCart – A powerful yet easy to use eCommerce plugin built for modern creators and digital sellers.

      \n
    • \n
    \n

    Each tool is designed to help you build faster, work smarter, and grow your online presence with less effort and better results.

    \n

    Need help getting started?

    \n

    Check out our getting started guide and documentation for step-by-step tutorials.

    \n

    Have a question?

    \n

    Visit the support forum right here on WordPress.org. We’re happy to help!

    \n

    Want to explore more?

    \n

    Learn about all features, FAQs, and tips on our website.

    \n

    🎉 Love Ultimate Addons for Elementor?

    \n\n", "donate_link": "", "num_ratings": 2501, "screenshots": {"1": {"src": "https://ps.w.org/header-footer-elementor/assets/screenshot-1.png?rev=3202457", "caption": ""}, "2": {"src": "https://ps.w.org/header-footer-elementor/assets/screenshot-2.png?rev=3198980", "caption": ""}, "3": {"src": "https://ps.w.org/header-footer-elementor/assets/screenshot-3.png?rev=3198980", "caption": ""}, "4": {"src": "https://ps.w.org/header-footer-elementor/assets/screenshot-4.png?rev=3198980", "caption": ""}, "5": {"src": "https://ps.w.org/header-footer-elementor/assets/screenshot-5.png?rev=3198980", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/header-footer-elementor/", "contributors": {"brainstormforce": {"avatar": "https://secure.gravatar.com/avatar/b9280ac641a862e2e148513dfb9567e56a273b649dbfad5df6867d4700a685d2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brainstormforce/", "display_name": "Brainstorm Force"}}, "last_updated": "2025-10-15 11:34am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.6.1.zip", "author_profile": "https://profiles.wordpress.org/brainstormforce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f541-7184-bf69-f77a0968b2d9", "name": "Ultimate Addons for Elementor (Formerly Elementor Header & Footer Builder)", "slug": "header-footer-elementor", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760528040, "version": "2.6.1"}, "support_threads": 11, "requires_plugins": [], "short_description": "Powerful Elementor addon with InfoCard, Fancy Heading, Before/After Slider, Price Box, FAQ Schema, WooCommerce widgets & Header-Footer builder.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 4}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c00-73fc-9b82-16437fc1e737', 'did:web:api.aspiredev.org:packages:wp-plugin:hello-dolly', 'hello-dolly', 'Hello Dolly', '

    This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.

    -

    Thanks to Sanjib Ahmad for the artwork.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Hello Dolly", "slug": "hello-dolly", "tags": [], "added": "2008-07-06", "icons": {"1x": "https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855", "2x": "https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855"}, "author": "Matt Mullenweg", "rating": 88, "status": "open", "tested": "6.9", "banners": {"low": "https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855", "high": "https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582"}, "ratings": {"1": 14, "2": 8, "3": 5, "4": 13, "5": 135}, "version": "1.7.2", "homepage": "http://wordpress.org/plugins/hello-dolly/", "requires": "4.6", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Classic Piece of WordPress History

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shadowheezy on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello Dolly might be simple, but it’s iconic. Every time I open my WordPress dashboard and see a lyric from Louis Armstrong’s “Hello, Dolly!” it’s a small reminder of WordPress’s roots — creativity, simplicity, and a touch of joy.

    \n\n\n\n

    It doesn’t do much, and that’s the beauty of it. It’s a little piece of nostalgia that connects every WordPress user to the spirit of open-source community and fun. Thanks for keeping this classic alive!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    “Easy to install, worked perfectly. Helped me learn WordPress plugin structur

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy manideep makkina (manideep42) on July 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    “Easy to install, worked perfectly. Helped me learn WordPress plugin structure

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Re-added this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy TapSuccess (tapsuccess) on May 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    In the past, I have deleted this plugin. Now I am learning how to make plugins.... I like it! Thanks, Matt

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice Biolerplate code plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dimkiriakos on August 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Even many people give a lot of hate to this plugin, they should not! This plugin is not something that it''s useful your site operations, but it''s a nice boilerplate for people that they want to start building plugins for WordPress. It shows that you don''t need to write so much code to customize something in your WordPress app. It introduces the wptexturize function the get_user_locale, the admin_notices action hook and the admin_head action hook too. Yes it''s not the mode elegant thing that comes. But it can be educational for beginners

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    My site was hacked. Found this was added

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy foreverozone on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My WP account was hacked. Deleted. Found this was added to my website.

    \n\n\n\n

    Not funny to me.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    what a wonderful world!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy duca22446688 on May 13, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    what a wonderful world!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    OG plugin for OG wp designers and developers

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy strahoten on May 6, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    naysayers cannot optimise web sites

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Bloatware

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stevenblakesley on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Why is this a default plugin on Godaddy and other wordpress installs?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ignore the naysayers

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mtonumaa on December 19, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A fabulous plugin for the joyous! :)) people who hate this plugin need to get out more :)) \"You''re lookin'' swell, Dolly\"

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Absolutely useless plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy niezmywalny on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I believe someone is paying money to add this useless plugin to WordPress with every installation. If you see this plugin, please remove it.

    \n
    \n
    \n", "description": "

    This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.

    \n

    Thanks to Sanjib Ahmad for the artwork.

    \n"}, "versions": {"1.5": "https://downloads.wordpress.org/plugin/hello-dolly.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip", "1.7.2": "https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip", "trunk": "https://downloads.wordpress.org/plugin/hello-dolly.zip"}, "downloaded": 15011621, "description": "

    This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.

    \n

    Thanks to Sanjib Ahmad for the artwork.

    \n", "donate_link": "", "num_ratings": 175, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/hello-dolly/", "contributors": {"matt": {"avatar": "https://secure.gravatar.com/avatar/33252cd1f33526af53580fcb1736172f06e6716f32afdd1be19ec3096d15dea5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/matt/", "display_name": "Matt Mullenweg"}, "wordpressdotorg": {"avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "display_name": "WordPress.org"}}, "last_updated": "2025-10-24 4:13am GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip", "author_profile": "https://profiles.wordpress.org/matt/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f4f2-7129-9f69-0acc8a77d86a", "name": "Hello Dolly", "slug": "hello-dolly", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1761279180, "version": "1.7.2"}, "support_threads": 0, "requires_plugins": [], "short_description": "This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.", "author_block_count": 0, "author_block_rating": 88, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c08-70c2-b73d-53fe5fbfbcc0', 'did:web:api.aspiredev.org:packages:wp-plugin:hostinger', 'hostinger', 'Hostinger Tools', '

    Hostinger Tools is an all-in-one plugin designed to streamline essential tasks for WordPress site administrators. This plugin offers a range of features to help you manage your site’s information, maintenance mode, security, and redirects effectively.

    -

    Features:

    -

    Basic Info

    -
      -
    • Displays the current WordPress version with automatic update checks.
    • -
    • Shows the current PHP version with automatic update checks.
    • -
    -

    Maintenance Mode

    -
      -
    • Easily enable or disable maintenance mode for your site.
    • -
    • Provide a URL to bypass maintenance mode for selected users.
    • -
    -

    Security

    -
      -
    • Enable or disable XML-RPC requests to enhance your site’s security.
    • -
    • Enable or disable Authorize application page to enhance your site’s security.
    • -
    -

    Redirects

    -
      -
    • Force all URLs to use HTTPS for secure browsing.
    • -
    • Force all URLs to use WWW to ensure consistency in site access.
    • -
    -

    LLMs.txt Generation

    -
      -
    • Automatically generate a structured LLMs.txt file in Markdown format.
    • -
    • Include website title, description, posts, pages, and products (if WooCommerce is active).
    • -
    • Keep the file updated when content changes or new content is published.
    • -
    • Help AI-powered tools better understand and interact with your website content.
    • -
    -

    Hostinger Tools is the new version of the previous Hostinger plugin, offering an updated and enhanced experience.
    -The Onboarding assistant and the Learning section previously included in this plugin were moved to the separate plugin Hostinger Easy Onboarding.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Hostinger Tools", "slug": "hostinger", "tags": {"tools": "tools", "security": "security", "hostinger": "hostinger", "redirects": "redirects", "maintenance": "maintenance"}, "added": "2023-11-03", "icons": {"1x": "https://ps.w.org/hostinger/assets/icon.svg?rev=3097386", "svg": "https://ps.w.org/hostinger/assets/icon.svg?rev=3097386"}, "author": "Hostinger", "rating": 56, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/hostinger/assets/banner-772x250.png?rev=3097370", "high": "https://ps.w.org/hostinger/assets/banner-1544x500.png?rev=3097370"}, "ratings": {"1": 10, "2": 1, "3": 1, "4": 1, "5": 8}, "version": "3.0.53", "homepage": "https://hostinger.com", "requires": "5.5", "sections": {"faq": "\n
    \nHow Do I Install the Plugin\n\n

    \n

    If you set up a WordPress site on Hostinger’s managed WordPress hosting account, this plugin will be automatically installed.

    \n

    Alternatively, you can install the plugin directly from your WordPress dashboard. Just go to Plugins > Add New Plugins, search for “Hostinger Tools” in the plugin repository, click Install, and then Activate.

    \n

    \n
    \nIs There a Cost Associated With Using the Hostinger Tools Plugin?\n\n

    \n

    The Hostinger Tools Plugin is available for free. However, the AI Assistant features for content creation are distributed with a different plugin exclusive to our Business and Cloud hosting plans customers.

    \n

    \n
    \nAre There Any Specific Hosting Requirements for This Plugin?\n\n

    \n

    The Hostinger Tools Plugin is designed to work seamlessly on any hosting platform, ensuring wide compatibility and ease of use. However, the plugin requires these minimum requirements:
    \n* PHP 8.0 or greater
    \n* MySQL 5.6 or greater

    \n

    \n
    \nCan I Access Educational Resources Outside This Plugin?\n\n

    \n

    Yes, the educational resources you can find in this plugin are available on our Hostinger Academy YouTube channel and Hostinger Tutorials website.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Отличный инструмент для управления сайтом

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shyshlov on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hostinger Tools приятно удивил своей простотой и функциональностью. Все нужные настройки — от редиректов и SSL до режима обслуживания — доступны в пару кликов. Интерфейс понятный, всё логично структурировано. Особенно удобно, что плагин хорошо интегрируется с хостингом и не требует лишних ручных действий.

    \n\n\n\n

    Использую его уже несколько месяцев — сайт работает стабильно, обновления проходят без ошибок. Для начинающих владельцев сайтов — просто находка.

    \n\n\n\n

    Итог: отличное решение «из коробки» для быстрого и надёжного запуска сайта.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    شكرا

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ali010ali on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    نشكركم

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Deprecated showing in Query Monitor for this

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wellwisherasad on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hostinger\\Admin\\PluginSettings::__construct(): Implicitly marking parameter $plugin_options as nullable is deprecated, the explicit nullable type must be used instead

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Unnecessary rubbish

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bobf000 on March 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Adds nothing useful to your Wordpress site. Only takes up space and resources. Their \"A.I.\" plugin is more like an \"A\" plugin. There''s no intelligence at all and is censored beyond usable.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Exellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wappsnet on October 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best hosting management plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Zero Stars

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tonyquicktech on October 25, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is totally unnecessary, redundant bloatware. Last year the sites connected to Hostinger just fine without needing a plugin. This is just another way for them to try and take more control of your site, for absolutely no benefit to you. This plugin tries to update much to frequently, which is ridiculous as its still full of bugs, breaks CSS in some cases, and constantly reminds you of its presence - EVERY SINGLE TIME YOU LOGIN TO YOUR SITE. This is against WP guidelines, where plugins are not allowed to over-notify. I like Hostinger hosting, but this plugin is, quite unfortunately, rubbish. You should give an option to install or not when creating a wordpress install. I don''t appreciate having to go through and uninstall multiple bloatware plugins every single time I create a website.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    https://micp.in

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Maa-Ideal-Clinic (0surojit9) on August 31, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My Hostinger Account Not Login Issu Two-Factor Authentication Not Support Please Help Me .
    Please Login My Hostinger Account & Help Me?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Annoying message

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sizar2 on August 3, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This message:

    \n\n\n\n

    \"Hostinger plugin updates

    \n\n\n\n

    The Hostinger plugin has been split into two different plugins:

    \n\n\n\n

    Hostinger Tools offers a toolkit for easier site maintenance.
    Hostinger Easy Onboarding provides guidance and learning resources for beginners to get started with building a site using WordPress.\"

    \n\n\n\n

    appears all the time. Even after I press \"Got it\", it may still show up later.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Messes with other plugins.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hendrikhere on July 13, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    When enabling this, other plugin CSS breaks. An example of this is the really popular ACF plugin.

    \n\n\n\n

    When enabling the plugins from Hostinger (Especially, the AI plugin) a lot of ACF styling breaks.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Unwanted Bloatware

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wordsmith247 on July 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hostinger decided to install multiple plugins without my permission. I do not recommend the plugin and question a hosting company that forces you to opt-out rather than providing a clean Wordpress install and presenting an opt-in proposition letting us decide for ourselves. Every time I spin up a Wordpress site I have to uninstall multiple Hostinger plugins and the artifacts remain long after.

    @Hostinger, Do not bother responding, I will probably never check back here again.

    \n
    \n
    \n", "changelog": "

    1.2.0 (2023-03-22)

    \n
      \n
    • Updated How To videos
    • \n
    • Added Lithuanian language translations
    • \n
    • Updated assets
    • \n
    • Redirect from Hostinger dashboard into plugin
    • \n
    \n

    1.3.0 (2023-04-11)

    \n
      \n
    • Autocomplete onboarding steps
    • \n
    • Redirect Hosting clients by segment
    • \n
    • Hide logo upload step if theme not support
    • \n
    • Updated How To videos
    • \n
    • Updated translations
    • \n
    • Updated onboarding steps
    • \n
    \n

    1.4.0 (2023-04-17)

    \n
      \n
    • Added new “Add product” step
    • \n
    • Adjusted onboarding steps by website type
    • \n
    • Updated logo upload step
    • \n
    • Autocomplete site title step on settings change
    • \n
    \n

    1.4.1 (2023-05-15)

    \n
      \n
    • Fix site health session warning
    • \n
    \n

    1.5.0 (2023-05-23)

    \n
      \n
    • Add onboarding steps autocomplete date
    • \n
    \n

    1.6.0 (2023-06-08)

    \n
      \n
    • Add plugin update feature
    • \n
    \n

    1.6.1 (2023-06-13)

    \n
      \n
    • Fixed unused assets
    • \n
    • Fixed maintenance mode cache
    • \n
    \n

    1.6.2 (2023-06-15)

    \n
      \n
    • Fixed maintenance mode conflicts with other plugins
    • \n
    \n

    1.6.3 (2023-07-11)

    \n
      \n
    • Add AI assistant
    • \n
    \n

    1.6.4 (2023-08-08)

    \n
      \n
    • Add additional AI assistant buttons
    • \n
    \n

    1.6.5 (2023-08-14)

    \n
      \n
    • Add translations
    • \n
    \n

    1.6.6 (2023-08-17)

    \n
      \n
    • Add additional submenu items
    • \n
    \n

    1.6.7 (2023-09-08)

    \n
      \n
    • Bugfixes
    • \n
    • Redirect all users from hPanel
    • \n
    • Text changes
    • \n
    \n

    1.7.0 (2023-09-08)

    \n
      \n
    • Add CSAT survey
    • \n
    \n

    1.7.1 (2023-09-20)

    \n
      \n
    • Add additional request header
    • \n
    \n

    1.7.2 (2023-09-22)

    \n
      \n
    • Hide notices in Hostinger page
    • \n
    \n

    1.8.0 (2023-09-27)

    \n
      \n
    • Additional amplitude events
    • \n
    \n

    1.8.1 (2023-10-03)

    \n
      \n
    • Remove video iframes
    • \n
    \n

    1.8.2 (2023-10-05)

    \n
      \n
    • Adjust CSAT survey
    • \n
    \n

    1.8.3 (2023-10-13)

    \n
      \n
    • Add domain connection step
    • \n
    • Hide preview banner
    • \n
    \n

    1.8.4 (2023-10-20)

    \n
      \n
    • Added regenerate website tab
    • \n
    • Style corrections
    • \n
    \n

    1.8.5 (2023-10-20)

    \n
      \n
    • Text corrections
    • \n
    \n

    1.8.6 (2023-10-23)

    \n
      \n
    • Translations
    • \n
    \n

    1.8.7 (2023-10-30)

    \n
      \n
    • Add WooCommerce onboarding survey
    • \n
    \n

    1.8.8 (2023-11-13)

    \n
      \n
    • Bugfixes
    • \n
    \n

    1.8.9 (2023-11-14)

    \n
      \n
    • Added onboarding survey
    • \n
    • Fix onboarding steps duplicates
    • \n
    \n

    1.9.0 (2023-11-15)

    \n
      \n
    • Fix survey transients
    • \n
    \n

    1.9.1 (2023-11-15)

    \n
      \n
    • Add translations
    • \n
    \n

    1.9.2 (2023-11-19)

    \n
      \n
    • Fixes
    • \n
    \n

    1.9.3 (2023-11-21)

    \n
      \n
    • Fixed RTL survey issues
    • \n
    • Added survey close button
    • \n
    \n

    1.9.4 (2023-11-23)

    \n
      \n
    • Fix survey requests
    • \n
    \n

    1.9.5 (2023-11-27)

    \n
      \n
    • Hide notices in Hostinger page
    • \n
    • Remove surveys
    • \n
    \n

    1.9.6 (2023-12-01)

    \n
      \n
    • Added filter for tabs / tab content
    • \n
    \n

    1.9.7 (2023-12-13)

    \n
      \n
    • Added tests, adjusted assets loading
    • \n
    • Fixed maintenance security issue
    • \n
    \n

    1.9.8 (2023-12-14)

    \n
      \n
    • Version mismatch fix
    • \n
    \n

    1.9.9 (2023-12-18)

    \n
      \n
    • Fixed assets load on subfolder installations
    • \n
    \n

    2.0.0 (2024-01-10)

    \n
      \n
    • Increased minimal WordPress version
    • \n
    \n

    2.0.1 (2024-01-16)

    \n
      \n
    • Added onboarding step for affiliate plugin
    • \n
    \n

    2.0.2 (2024-01-19)

    \n
      \n
    • Updated internal services
    • \n
    \n

    2.0.3 (2024-01-19)

    \n
      \n
    • Fixes
    • \n
    • Added promotional banner
    • \n
    \n

    2.0.4 (2024-02-02)

    \n
      \n
    • Added jump to hPanel
    • \n
    • Redesign tabs section
    • \n
    \n

    2.0.5 (2024-02-06)

    \n
      \n
    • Added surveys
    • \n
    \n

    2.0.6 (2024-02-09)

    \n
      \n
    • Added affiliate surveys
    • \n
    • Internal services improvements
    • \n
    \n

    2.0.7 (2024-02-13)

    \n
      \n
    • Survey adjustments
    • \n
    \n

    2.0.8 (2024-02-14)

    \n
      \n
    • Fixed files loading
    • \n
    \n

    2.0.9 (2024-02-20)

    \n
      \n
    • Astra theme compatibility
    • \n
    • Internal services improvements
    • \n
    \n

    2.1.0 (2024-03-04)

    \n
      \n
    • Lower WordPress version requirement
    • \n
    • Added “Omnisend” plugin upgrade promo message
    • \n
    \n

    2.1.1 (2024-03-08)

    \n
      \n
    • Changed “Omnisend” promo appearance conditions
    • \n
    \n

    2.1.2 (2024-03-13)

    \n
      \n
    • Removed sessions
    • \n
    \n

    2.1.3 (2024-03-14)

    \n
      \n
    • Refactored codebase
    • \n
    \n

    2.1.4 (2024-03-14)

    \n
      \n
    • Removed vendors
    • \n
    \n

    2.1.5 (2024-03-16)

    \n
      \n
    • Fixed Namespace issues
    • \n
    \n

    2.1.6 (2024-03-18)

    \n
      \n
    • CSS fixes
    • \n
    \n

    2.1.7 (2024-03-27)

    \n
      \n
    • Improved internal services
    • \n
    • Added links to hPanel in admin bar
    • \n
    • Fixed hPanel redirect to subdomain
    • \n
    \n

    2.1.8 (2024-03-29)

    \n
      \n
    • Assets compatibility fix
    • \n
    \n

    2.1.9 (2024-04-03)

    \n
      \n
    • CSAT survey improvements
    • \n
    \n

    2.2.0 (2024-04-15)

    \n
      \n
    • Compatibility fixes
    • \n
    \n

    2.2.1 (2024-04-16)

    \n
      \n
    • Fixed loading issues
    • \n
    \n

    2.2.2 (2024-04-17)

    \n
      \n
    • “Omnisend” authentication fix
    • \n
    \n

    2.2.3 (2024-05-08)

    \n
      \n
    • Increased minimum PHP version
    • \n
    \n

    2.2.4 (2024-05-13)

    \n
      \n
    • Update prebuilt websites
    • \n
    \n

    3.0.0 (2024-05-30)

    \n
      \n
    • Renamed plugin to Hostinger Tools
    • \n
    • Added check WordPress and PHP versions
    • \n
    • Added ability to enable/disable maintenance mode and get bypass link
    • \n
    • Added ability to enable/disable XML-RPC
    • \n
    • Added ability to force redirects to HTTPS and WWW URLs
    • \n
    • Moved Onboarding steps and Learning section to separate plugin Hostinger Easy Onboarding
    • \n
    \n

    3.0.1 (2024-06-06)

    \n
      \n
    • Added skeleton loader for UI
    • \n
    • Removed hPanel links from admin bar menu
    • \n
    \n

    3.0.2 (2024-06-19)

    \n
      \n
    • Updated menu package
    • \n
    \n

    3.0.3 (2024-07-02)

    \n
      \n
    • Added tests
    • \n
    \n

    3.0.4 (2024-07-09)

    \n
      \n
    • Vendor autoload fix
    • \n
    \n

    3.0.5 (2024-07-24)

    \n
      \n
    • PHP version card change
    • \n
    • Translations
    • \n
    \n

    3.0.6 (2024-07-30)

    \n
      \n
    • Added CLI commands descriptions
    • \n
    \n

    3.0.8 (2024-08-27)

    \n
      \n
    • Updated recommended PHP version
    • \n
    \n

    3.0.9 (2024-08-04)

    \n
      \n
    • Added conditional check for maintenance class CLI
    • \n
    \n

    3.0.10 (2024-09-11)

    \n
      \n
    • Update packages
    • \n
    \n

    3.0.11 (2024-09-13)

    \n
      \n
    • Fix logo visibility
    • \n
    \n

    3.0.12 (2024-10-01)

    \n
      \n
    • Fix maintenance mode cache issue
    • \n
    \n

    3.0.13 (2024-10-09)

    \n
      \n
    • Fix force www row not being shown when user is not eligible to adjust it
    • \n
    \n

    3.0.14 (2024-10-11)

    \n
      \n
    • Add tutorial link
    • \n
    \n

    3.0.15 (2024-10-18)

    \n
      \n
    • WooCommerce coming soon mode cache flush
    • \n
    \n

    3.0.16 (2024-10-22)

    \n
      \n
    • Fix cache LiteSpeed cleaning
    • \n
    \n

    3.0.17 (2024-10-24)

    \n
      \n
    • Updated plugin URL by locale
    • \n
    \n

    3.0.18 (2024-11-08)

    \n
      \n
    • Remove unused assets
    • \n
    • Remove flush cache duplicates
    • \n
    \n

    3.0.19 (2024-11-13)

    \n
      \n
    • Dismiss plugin split notice after close
    • \n
    \n

    3.0.20 (2024-12-03)

    \n
      \n
    • Updated packages
    • \n
    \n

    3.0.21 (2024-12-09)

    \n
      \n
    • Added recommended PHP version
    • \n
    \n

    3.0.22 (2025-01-08)

    \n
      \n
    • Added preview website link in navbar
    • \n
    \n

    3.0.23 (2025-02-07)

    \n
      \n
    • Added ability to enable or disable Authorize application page
    • \n
    \n

    3.0.24 (2025-02-10)

    \n
      \n
    • Fixed bypass input field visibility
    • \n
    \n

    3.0.25 (2025-02-10)

    \n
      \n
    • Added new translations
    • \n
    \n

    3.0.26 (2025-02-10)

    \n
      \n
    • Fixed settings update
    • \n
    \n

    3.0.27 (2025-02-11)

    \n
      \n
    • Fixed bypass code regeneration
    • \n
    \n

    3.0.28 (2025-02-12)

    \n
      \n
    • Added correct reseller link to PHP update
    • \n
    \n

    3.0.29 (2025-02-21)

    \n
      \n
    • Update packages
    • \n
    \n

    3.0.30 (2025-02-24)

    \n
      \n
    • Enhanced WordPress application security settings
    • \n
    \n

    3.0.31 (2025-02-24)

    \n
      \n
    • Fixed assets load issue
    • \n
    \n

    3.0.32 (2025-03-04)

    \n
      \n
    • Updated compatibility
    • \n
    \n

    3.0.33 (2025-04-04)

    \n
      \n
    • Remove hardcoded references
    • \n
    \n

    3.0.34 (2024-04-10)

    \n
      \n
    • Add preview and site edit buttons
    • \n
    \n

    3.0.35 (2024-04-28)

    \n
      \n
    • Add edit site button support for block themes
    • \n
    \n

    3.0.36 (2024-04-29)

    \n
      \n
    • Style corrections
    • \n
    \n

    3.0.37 (2024-05-12)

    \n
      \n
    • Remove unused assets
    • \n
    • Fixed Jetpack autoloader issue
    • \n
    • Added LLMS.txt generation functionality
    • \n
    • Added few new Spanish locales (es_AR, es_CO, es_MX)
    • \n
    \n

    3.0.38 (2025-06-09)

    \n
      \n
    • Tweaks the UI for PHP and WordPress version under Tools
    • \n
    • Fallback to Site URL when no Blog Title is set in LLMS.txt
    • \n
    • Clear cache on settings change
    • \n
    \n

    3.0.39 (2025-06-12)

    \n
      \n
    • Updated logic to detect 3rd Party LLMs files
    • \n
    • Updated UI and Copy for LLMS section
    • \n
    • Add support for WooCommerce products in LLMS.txt
    • \n
    • Added check for main plugin class to prevent class not found issues
    • \n
    • Update readme.txt tags
    • \n
    \n

    3.0.40 (2025-06-17)

    \n
      \n
    • Added latest translations
    • \n
    • Provide visual feedback to user when changing settings
    • \n
    • Fixed www urls rewrite
    • \n
    \n

    3.0.41 (2025-06-19)

    \n
      \n
    • Update translations for ES, MX and CO
    • \n
    \n

    3.0.42 (2025-07-03)

    \n
      \n
    • Menu translations
    • \n
    \n

    3.0.43 (2025-07-22)

    \n
      \n
    • Add Web2MCP feature
    • \n
    • Fix Settings state on failure
    • \n
    • Bump dependencies version
    • \n
    \n

    3.0.44 (2025-07-23)

    \n
      \n
    • Update translations
    • \n
    \n

    3.0.45 (2025-07-28)

    \n
      \n
    • Update WP helper package
    • \n
    \n

    3.0.46 (2025-08-05)

    \n
      \n
    • Fixed empty lines in llms.txt
    • \n
    \n

    3.0.47 (2025-08-08)

    \n
      \n
    • Add MCP choice
    • \n
    • Updated translations
    • \n
    \n

    3.0.48 (2025-08-21)

    \n
      \n
    • Support for MCP optional entry in llms.txt
    • \n
    • Add Learn More in MCP section
    • \n
    • Generate llms.txt entries in the background
    • \n
    \n

    3.0.49 (2025-09-05)

    \n
      \n
    • Removed warnings
    • \n
    • UI improvements
    • \n
    • Assets optimization
    • \n
    \n

    3.0.50 (2025-09-15)

    \n
      \n
    • Remove plugin split banner
    • \n
    \n

    3.0.51 (2025-09-18)

    \n
      \n
    • Feature: Added Cli command for AI discovery features
    • \n
    \n

    3.0.52 (2025-09-30)

    \n
      \n
    • Fix: Settings route
    • \n
    • Dev: Fix release updater
    • \n
    • Tweak: Bump dependencies
    • \n
    \n

    3.0.53 (2025-10-09)

    \n
      \n
    • Feature: Learn more destination link changed in LLMS section
    • \n
    \n", "description": "

    Hostinger Tools is an all-in-one plugin designed to streamline essential tasks for WordPress site administrators. This plugin offers a range of features to help you manage your site’s information, maintenance mode, security, and redirects effectively.

    \n

    Features:

    \n

    Basic Info

    \n
      \n
    • Displays the current WordPress version with automatic update checks.
    • \n
    • Shows the current PHP version with automatic update checks.
    • \n
    \n

    Maintenance Mode

    \n
      \n
    • Easily enable or disable maintenance mode for your site.
    • \n
    • Provide a URL to bypass maintenance mode for selected users.
    • \n
    \n

    Security

    \n
      \n
    • Enable or disable XML-RPC requests to enhance your site’s security.
    • \n
    • Enable or disable Authorize application page to enhance your site’s security.
    • \n
    \n

    Redirects

    \n
      \n
    • Force all URLs to use HTTPS for secure browsing.
    • \n
    • Force all URLs to use WWW to ensure consistency in site access.
    • \n
    \n

    LLMs.txt Generation

    \n
      \n
    • Automatically generate a structured LLMs.txt file in Markdown format.
    • \n
    • Include website title, description, posts, pages, and products (if WooCommerce is active).
    • \n
    • Keep the file updated when content changes or new content is published.
    • \n
    • Help AI-powered tools better understand and interact with your website content.
    • \n
    \n

    Hostinger Tools is the new version of the previous Hostinger plugin, offering an updated and enhanced experience.
    \nThe Onboarding assistant and the Learning section previously included in this plugin were moved to the separate plugin Hostinger Easy Onboarding.

    \n", "screenshots": "
    1. \"\"
    ", "installation": "

    Minimum Requirements

    \n
      \n
    • PHP 8.0 or greater is recommended
    • \n
    • MySQL 5.6 or greater is recommended
    • \n
    \n

    Automatic installation

    \n

    If you set up a WordPress site on Hostinger’s managed WordPress hosting account, this plugin will be automatically installed.

    \n

    Alternatively, you can use the automatic installation from the dashboard, and WordPress will handle the file transfer – you won’t need to leave your web browser. To do an automatic install of the Hostinger plugin, log in to your WordPress dashboard, navigate to the Plugins menu, and click Add New.

    \n

    In the search field, type Hostinger, then click Search Plugins. Once you find us, you can view details about it, such as the point release, rating, and description. Most importantly, of course, you can install it by clicking Install Now, and WordPress will take it from there.

    \n

    Manual installation

    \n

    The manual installation method requires downloading the Hostinger plugin and uploading it to your web server via your favorite FTP application. The WordPress codex contains instructions on how to do this here.

    \n

    Updating

    \n

    Automatic updates should work smoothly, but we still recommend you back up your site.

    \n"}, "versions": {"1.8.0": "https://downloads.wordpress.org/plugin/hostinger.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/hostinger.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/hostinger.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/hostinger.1.8.3.zip", "1.9.1": "https://downloads.wordpress.org/plugin/hostinger.1.9.1.zip", "1.9.4": "https://downloads.wordpress.org/plugin/hostinger.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/hostinger.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/hostinger.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/hostinger.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/hostinger.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/hostinger.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/plugin/hostinger.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/hostinger.2.0.1.zip", "2.0.4": "https://downloads.wordpress.org/plugin/hostinger.2.0.4.zip", "2.0.6": "https://downloads.wordpress.org/plugin/hostinger.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/hostinger.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/hostinger.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/hostinger.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/hostinger.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/hostinger.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/hostinger.2.1.2.zip", "2.1.4": "https://downloads.wordpress.org/plugin/hostinger.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/hostinger.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/hostinger.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/hostinger.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/hostinger.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/plugin/hostinger.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/plugin/hostinger.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/hostinger.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/hostinger.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/hostinger.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/hostinger.2.2.4.zip", "3.0.0": "https://downloads.wordpress.org/plugin/hostinger.3.0.0.zip", "3.0.2": "https://downloads.wordpress.org/plugin/hostinger.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/hostinger.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/hostinger.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/hostinger.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/hostinger.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/hostinger.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/hostinger.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/hostinger.3.0.9.zip", "trunk": "https://downloads.wordpress.org/plugin/hostinger.zip", "3.0.10": "https://downloads.wordpress.org/plugin/hostinger.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/hostinger.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/plugin/hostinger.3.0.12.zip", "3.0.13": "https://downloads.wordpress.org/plugin/hostinger.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/plugin/hostinger.3.0.14.zip", "3.0.15": "https://downloads.wordpress.org/plugin/hostinger.3.0.15.zip", "3.0.16": "https://downloads.wordpress.org/plugin/hostinger.3.0.16.zip", "3.0.17": "https://downloads.wordpress.org/plugin/hostinger.3.0.17.zip", "3.0.18": "https://downloads.wordpress.org/plugin/hostinger.3.0.18.zip", "3.0.19": "https://downloads.wordpress.org/plugin/hostinger.3.0.19.zip", "3.0.20": "https://downloads.wordpress.org/plugin/hostinger.3.0.20.zip", "3.0.21": "https://downloads.wordpress.org/plugin/hostinger.3.0.21.zip", "3.0.22": "https://downloads.wordpress.org/plugin/hostinger.3.0.22.zip", "3.0.23": "https://downloads.wordpress.org/plugin/hostinger.3.0.23.zip", "3.0.24": "https://downloads.wordpress.org/plugin/hostinger.3.0.24.zip", "3.0.25": "https://downloads.wordpress.org/plugin/hostinger.3.0.25.zip", "3.0.26": "https://downloads.wordpress.org/plugin/hostinger.3.0.26.zip", "3.0.27": "https://downloads.wordpress.org/plugin/hostinger.3.0.27.zip", "3.0.28": "https://downloads.wordpress.org/plugin/hostinger.3.0.28.zip", "3.0.29": "https://downloads.wordpress.org/plugin/hostinger.3.0.29.zip", "3.0.30": "https://downloads.wordpress.org/plugin/hostinger.3.0.30.zip", "3.0.31": "https://downloads.wordpress.org/plugin/hostinger.3.0.31.zip", "3.0.32": "https://downloads.wordpress.org/plugin/hostinger.3.0.32.zip", "3.0.33": "https://downloads.wordpress.org/plugin/hostinger.3.0.33.zip", "3.0.34": "https://downloads.wordpress.org/plugin/hostinger.3.0.34.zip", "3.0.35": "https://downloads.wordpress.org/plugin/hostinger.3.0.35.zip", "3.0.36": "https://downloads.wordpress.org/plugin/hostinger.3.0.36.zip", "3.0.37": "https://downloads.wordpress.org/plugin/hostinger.3.0.37.zip", "3.0.38": "https://downloads.wordpress.org/plugin/hostinger.3.0.38.zip", "3.0.39": "https://downloads.wordpress.org/plugin/hostinger.3.0.39.zip", "3.0.40": "https://downloads.wordpress.org/plugin/hostinger.3.0.40.zip", "3.0.41": "https://downloads.wordpress.org/plugin/hostinger.3.0.41.zip", "3.0.42": "https://downloads.wordpress.org/plugin/hostinger.3.0.42.zip", "3.0.43": "https://downloads.wordpress.org/plugin/hostinger.3.0.43.zip", "3.0.44": "https://downloads.wordpress.org/plugin/hostinger.3.0.44.zip", "3.0.45": "https://downloads.wordpress.org/plugin/hostinger.3.0.45.zip", "3.0.46": "https://downloads.wordpress.org/plugin/hostinger.3.0.46.zip", "3.0.47": "https://downloads.wordpress.org/plugin/hostinger.3.0.47.zip", "3.0.48": "https://downloads.wordpress.org/plugin/hostinger.3.0.48.zip", "3.0.49": "https://downloads.wordpress.org/plugin/hostinger.3.0.49.zip", "3.0.50": "https://downloads.wordpress.org/plugin/hostinger.3.0.50.zip", "3.0.51": "https://downloads.wordpress.org/plugin/hostinger.3.0.51.zip", "3.0.52": "https://downloads.wordpress.org/plugin/hostinger.3.0.52.zip", "3.0.53": "https://downloads.wordpress.org/plugin/hostinger.3.0.53.zip"}, "downloaded": 15781370, "description": "

    Hostinger Tools is an all-in-one plugin designed to streamline essential tasks for WordPress site administrators. This plugin offers a range of features to help you manage your site’s information, maintenance mode, security, and redirects effectively.

    \n

    Features:

    \n

    Basic Info

    \n
      \n
    • Displays the current WordPress version with automatic update checks.
    • \n
    • Shows the current PHP version with automatic update checks.
    • \n
    \n

    Maintenance Mode

    \n
      \n
    • Easily enable or disable maintenance mode for your site.
    • \n
    • Provide a URL to bypass maintenance mode for selected users.
    • \n
    \n

    Security

    \n
      \n
    • Enable or disable XML-RPC requests to enhance your site’s security.
    • \n
    • Enable or disable Authorize application page to enhance your site’s security.
    • \n
    \n

    Redirects

    \n
      \n
    • Force all URLs to use HTTPS for secure browsing.
    • \n
    • Force all URLs to use WWW to ensure consistency in site access.
    • \n
    \n

    LLMs.txt Generation

    \n
      \n
    • Automatically generate a structured LLMs.txt file in Markdown format.
    • \n
    • Include website title, description, posts, pages, and products (if WooCommerce is active).
    • \n
    • Keep the file updated when content changes or new content is published.
    • \n
    • Help AI-powered tools better understand and interact with your website content.
    • \n
    \n

    Hostinger Tools is the new version of the previous Hostinger plugin, offering an updated and enhanced experience.
    \nThe Onboarding assistant and the Learning section previously included in this plugin were moved to the separate plugin Hostinger Easy Onboarding.

    \n", "donate_link": "", "num_ratings": 21, "screenshots": {"1": {"src": "https://ps.w.org/hostinger/assets/screenshot-1.png?rev=3097370", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/hostinger/", "contributors": {"hostinger": {"avatar": "https://secure.gravatar.com/avatar/aaa8af14a0e10f0d84ad835b1498a397c376c1f909fb6cbe32208c1c68b9233d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hostinger/", "display_name": "Hostinger"}}, "last_updated": "2025-10-09 9:37am GMT", "preview_link": "", "requires_php": "8.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/hostinger.3.0.53.zip", "author_profile": "https://profiles.wordpress.org/hostinger/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f639-710b-9f9c-2e5c119bfeb2", "name": "Hostinger Tools", "slug": "hostinger", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1760002620, "version": "3.0.53"}, "support_threads": 0, "requires_plugins": [], "short_description": "Hostinger Tools is an all-in-one plugin designed to streamline essential tasks for WordPress site administrators. This plugin offers a range of featur …", "author_block_count": 0, "author_block_rating": 56, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c16-7238-9ec4-70ee73b2d88a', 'did:web:api.aspiredev.org:packages:wp-plugin:image-optimization', 'image-optimization', 'Image Optimizer – Optimize Images and Convert to WebP or AVIF', '

    -

    Image Optimizer is an easy-to-use WordPress plugin that reduces image size through various compression and resizing techniques – all of which preserve the highest possible image quality. Image Optimizer supports many popular formats, including JPEG, PNG, WebP, AVIF, and GIF.

    -

    REDUCED FILE SIZES FOR BOOSTED PERFORMANCE

    -

    Image Optimizer ensures faster loading times, enhanced user experience, and overall boosted website performance by reducing the size of your website’s images, resulting in improved Core Web Vitals and search engine rankings. With the Image Optimizer’s exceptional capabilities and unique algorithms, you can fine tune images and reduce their file sizes while retaining quality with lossless or lossy compression.

    -

    FEATURES

    -
      -
    • Image formats supported include JPEG, PNG, WebP, AVIF and GIF.
    • -
    • Works in the background: The only plugin in the category that optimizes your images in the background, without you having to stay on the page during optimization.
    • -
    • Resize large images: The user can set a maximum pixel width, after which images will automatically be resized. (default value set to 1920px)
    • -
    • 2 compression levels: Lossless – highest quality with minimal compression; Lossy – maximum compression with somewhat reduced quality.
    • -
    • Optimize on upload: Automatically optimizes images when you upload them.
    • -
    • Bulk or individual optimization: Flexible image optimization options, whether it’s on-demand scaling and compression, or bulk optimization for your entire image library.
    • -
    • EXIF Metadata: Select whether to clear image metadata to reduce size even further without impacting image quality.
    • -
    • Backup original images: Ability to delete backups permanently to save space. (We recommend backing up your website beforehand.)
    • -
    • Restore original images (all sizes) for selected media files if needed.
    • -
    • Convert to WebP and AVIF: Get efficient and faster-loading formats with WebP and AVIF for even better web performance.
    • -
    • Image thumbnails: Resize all image sizes by default. Allow the user to choose specific image sizes based on WordPress-registered thumbnail sizes.
    • -
    -

    BULK OR SINGLE IMAGE OPTIMIZATION

    -

    Image Optimizer by Elementor lets you optimize all images in your library either one at a time, or in a batch according to your preferences and settings. Easily configure the plugin to scale or compress your images on-demand, or automatically have them triggered as they are being uploaded. Or, if you have a large number of images already uploaded, the bulk optimization feature allows you to resize and/or compress your entire library of existing images in just a few clicks.

    -

    2 COMPRESSION LEVELS

    -

    With Image Optimizer’s advanced algorithms, you can compress images and reduce their file size at the level that makes the most sense for you. We offer 2 types of compression where images will be processed, giving you the perfect balance of compression and quality.

    -

    Lossless Compression: Lossless compression reduces image file sizes without sacrificing or diminishing the quality of your images. This type of compression reduces file sizes by removing unused or unnecessary data so that no image details are lost along the way. Hence, you are able to reduce the file size and still maintain the quality of your image.

    -

    Lossy Compression: Lossy compression performs maximum compression resulting in lightweight images and smaller file sizes. It reduces image size by removing image data that is generally invisible to the human eye and minimizes any compromise in image quality.

    -

    Convert to WebP and AVIF: Convert images to the slimmer WebP or AVIF formats for even better optimization with a 25-30% savings over JPEG and PNG. Most browsers support WebP, however if they don’t, you can have fallback versions of the image available in the same format as the original image.

    -

    By tailoring compression to the level you need, your visitors will enjoy faster load times, improved responsiveness, and a seamless browsing experience. Our approach also enables your website to rank higher in search results. Since a search engine’s ranking is heavily influenced by speed, user experience, and Core Web Vitals, Image Optimizer by Elementor is an invaluable tool for any website, especially one that’s abundant with images.

    -

    Get Started Today

    -

    For more information about Image Optimizer, visit our official website or Try It Now.
    -If you have any questions or need support, feel free to contact us or visit our help center.

    -

    This plugin requires a connection to an active Elementor account in order to identify the user and provide the user with the purchased service. This connection is triggered manually by the user via the plugin’s settings panel.
    -This plugin uses a 3rd party service operated by Elementor, which accepts a standard image in JPG, PNG, GIF or WEBP format and returns a web optimized image based on the selected settings. This flow is triggered by the user or automatically (based on the selected plugin settings) on compatible image upload or by manually initiating optimize process.

    -

    Related Plugins

    -

    Site Mailer: Effortlessly manage transactional emails with Site Mailer. High deliverability, logs and statistics, and no SMTP plugins needed.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Image Optimizer – Optimize Images and Convert to WebP or AVIF", "slug": "image-optimization", "tags": {"performance": "performance", "convert-avif": "convert AVIF", "convert-webp": "convert webp", "image-compression": "image compression", "image-optimization": "image optimization"}, "added": "2024-01-08", "icons": {"1x": "https://ps.w.org/image-optimization/assets/icon-256x256.gif?rev=3308421", "2x": "https://ps.w.org/image-optimization/assets/icon-256x256.gif?rev=3308421"}, "author": "Elementor", "rating": 28, "status": "open", "tested": "6.7.4", "banners": {"low": "https://ps.w.org/image-optimization/assets/banner-772x250.png?rev=3018769", "high": "https://ps.w.org/image-optimization/assets/banner-1544x500.png?rev=3018769"}, "ratings": {"1": 50, "2": 4, "3": 2, "4": 1, "5": 4}, "version": "1.6.8", "homepage": "https://go.elementor.com/wp-repo-description-tab-io-product-page/", "requires": "6.2", "sections": {"faq": "\n
    \nCan I use Image Optimizer for any of my WordPress websites?\n\n

    \n

    Absolutely. Image Optimizer by Elementor is a stand-alone WordPress plugin that can be used to optimize images for any or all of your WordPress websites.

    \n

    \n
    \nWhy do I need to optimize images on my website?\n\n

    \n

    Image optimization can significantly improve your website’s loading time, which is crucial for user experience and SEO. It reduces the size of your images without compromising their quality, leading to faster page load times and better performance scores.

    \n

    \n
    \nWhy should I consider Image Optimizer by Elementor?\n\n

    \n

    This plugin is a modern approach that is designed to do all the “heavy lifting” of converting and compressing images on a dedicated server, so your own server won’t suffer from any downtime or the need to keep the tab open. It offers on-the-fly optimization, WebP and AVIF conversion, and other features tailored to WordPress users’ needs.

    \n

    \n
    \nWill the original version of my images be lost after compression?\n\n

    \n

    No, The Image Optimizer plugin will save both the original and the compressed versions of your images. You can always restore the original image if needed.

    \n

    \n
    \nWhy should I consider converting my images to WebP or AVIF?\n\n

    \n

    WebP and AVIF are modern image formats that provide superior lossless and lossy compression. They can significantly reduce the file size of images, leading to faster website load times. Most web browsers today support these format, but if they don’t – the original backup will be used.

    \n

    \n
    \nCan I choose which images to compress?\n\n

    \n

    Absolutely! You can either compress images in bulk, compress specific image files individually, or automatically compress upon image upload.

    \n

    \n
    \nIs the EXIF metadata of images removed?\n\n

    \n

    EXIF data can be removed if you choose so in the settings page. Best practice for better image optimization would be to remove EXIF metadata.

    \n

    \n
    \nIs it possible to re-optimize images?\n\n

    \n

    Yes. By changing the requested level of optimization in the settings page, you can re-optimize all images at once. In addition, at any point in time, you can reoptimize any of your images individually; whether after restoring the original, making changes to the optimization settings, or for any other reason.

    \n

    \n
    \nDo you offer support?\n\n

    \n

    Yes, the Elementor team offers full support for image optimization questions. You can contact us via https://elementor.com/contact/

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Too greedy plugin, avoid it.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy coderalamin on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It suggests to install in free version of elementor but later when you wanna do something it asks to connect with elementor pro.

    What the hell is this plan, why WP even approve this? Even you should 1% free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Made my media library unavailable?!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jeffsullivan on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used it in free trial mode, it optimized a handful of never-used images deep in my thousands of blog posts instead of letting me select front page ones. My home page is slow, and multiple images say \"error\", with advice to upgrade the plugin. It sure looks like extortion!

    Now I can''t upload new image files. I can''t get my media library to display.

    Has this plugin completely ruined my site?

    Why is the plugin not acknowledging the issues and displaying information on how to repair the damage and regain full use of our sites?

    WordPress needs to remove/ban this plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No Refund Policy for Not Working Plugin is Absurd

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy havocinthekitchen on September 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin only gave me frustration and a headache. The trial (200 credits) was conducted smoothly and without error. I was satisfied with the result (the quality of the compressed images and the amount of saved memory were good) and proceeded to purchase 1,000,000 credits, as I had a lot of images that needed to be optimized.

    \n\n\n\n

    However, after the purchase, the plugin started to behave. The bulk option did not work, i.e., it showed \"pending\" for hours without any result. Cancelling the process and deinstalling the plugin did not work - the number of optimized images remained the same as it had hours ago. The only way to navigate my large image database was to go through the media library and manually initiate the process, which is a long and frustrating process (and, well, does not justify the significant investment).

    \n\n\n\n

    The worst part is getting a refund, which is impossible according to their policy. Going through tickets / AI assistant is frustrating, as they show an error \"you cannot get cancellation and refund for this plan \". No refund policy is ludicrous - for the product I invested a lot of money on and cannot use?

    \n\n\n\n

    I have been waiting for a support response for a few days (I have a feeling I will be ghosted), and if there''s no positive result in a few more days, I will open a dispute due to product dissatisfaction to try to cancel the transaction through my bank.

    \n\n\n\n

    Once again, and to be fair, I think it''s a good plugin with some great results overall. However, it may not be effective if you have a large image database. But the company''s attitude / policy is something I would avoid dealing with.

    \n\n\n\n

    Update: Since the review, a customer representative has reached out, which is a positive step in itself. However, the response remains unchanged: no refund is offered after the trial, as the client had the opportunity to test the plugin before making a purchase. What does consumer protection for unsatisfactory services think about this? Additionally, the latest ticket containing a full description of the problem disappeared from their system, and, unlike other companies, the company did not send any email confirmation. How convenient.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Mas o menos

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Luis Eduardo Lopez Pacheco (mexiweb) on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    No me queda claro si los créditos se rellenan mensuales o anuales?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No Way

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy chook on September 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin comes across as overly aggressive in pushing users toward premium features, quickly depleting the available quota. Over time, I’ve observed a shift in Elementor’s business model, moving away from delivering value and focusing more on maximizing revenue. This change in approach has made me hesitant to recommend their products.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wordpress admin crash when this plugin is activated

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jedymaster on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hi

    I''ve been using this plugin for a year now. Lately, we have performances issues and many times, the Wordpress admin crash (won''t display) when it is activated. I tracked the problem to «Image Optimizer»

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    when asked to optimise

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy teejayukulele on September 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It takes me to a new page...and nothing happens. Why not just optimise from the pic?

    \n\n\n\n

    I have purchased the version that allows 20000 pices to be optimised. I was sent an email asking me to log on to create a ticket, but I can''t do this...either

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    messy app

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cluepac on August 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Do we have to constantly be pestered to rate and review EVERY TIME I''m in my media files? Closing the prompt makes it go away temporarily, it always comes back. Why does EVERY app and plug in need their version of Clippy up in our faces. I''m sorry I spent money on a subscription.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Horrible

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy baselaa on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Breaks images on the site optimizing

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Expensive plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alexanderviteria on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    He pay A LOT for Elementor PRO

    \n
    \n
    \n", "changelog": "

    1.6.8 2025-09-10

    \n

    New: Reviews & CSAT flow to gather user feedback
    \nNew: Added 80% usage reached notification
    \nTweak: Big galleries optimization for faster bulk image handling
    \nFix: Resolved image details issue appearing on some sites

    \n

    1.6.7 2025-05-27

    \n

    New: Added a Walk through video
    \nTweak: Added Bulk optimize shortcut from media library
    \nTweak: Harden connect security
    \nFix: Delayed translation loading

    \n

    1.6.6 – 2025-04-10

    \n

    Tweak: Added retry mechanism to improve optimization process
    \nTweak: Stop all operations before deactivation to avoid unexpected issues
    \nTweak: Improve the file size optimization indication for all media files
    \nTweak: Added What’s new modal for new features

    \n

    1.6.5 – 2025-02-03

    \n
      \n
    • Fix: Moved Connect Modal to Image Optimizer settings pages
    • \n
    \n

    1.6.4 – 2025-02-03

    \n
      \n
    • Tweak: Connect flow improvments
    • \n
    • Fix: Cancel Bulk optimisation button not working
    • \n
    • Fix: Connect refresh token stuck in edge cases
    • \n
    \n

    1.6.3 – 2024-12-19

    \n
      \n
    • Fix: Blank settings panel on edge cases
    • \n
    \n

    1.6.2 – 2024-12-17

    \n
      \n
    • New: Added Renewal notice for expired plans
    • \n
    • New: Added Upgrade notice for users with trial plan
    • \n
    \n

    1.6.1 – 2024-11-28

    \n
      \n
    • Fix: RTL issue in certain scenarios
    • \n
    \n

    1.6.0 – 2024-11-19

    \n
      \n
    • New: Added support for images up to 25Mb for eligible plans
    • \n
    • Tweak: Avoid creating past due actions
    • \n
    \n

    1.5.4 – 2024-10-01

    \n
      \n
    • New: Added a notice to help users connect from dashboard
    • \n
    • Fix: Undefined property notice
    • \n
    • Fix: Improved support for caching plugins
    • \n
    \n

    1.5.3 – 2024-09-24

    \n
      \n
    • New: Added an option to reset connect when invalid
    • \n
    • Tweak: Improved AVIF display support
    • \n
    • Fix: Invalid char in Plugin name header
    • \n
    \n

    1.5.2 – 2024-08-21

    \n
      \n
    • New: Implemented a solution for site URL update
    • \n
    • Tweak: Added an fallback for AVIF dimensions calculation when coming from 3rd party solution
    • \n
    • Tweak: Added asynchronous size calculation for large image galleries
    • \n
    • Tweak: Updated plugin CTAs on the plugins page
    • \n
    • Fix: File extension issues
    • \n
    • Fix: Optimization button stuck on edge cases
    • \n
    • Fix: Stats calculation for the total/optimized count on edge cases
    • \n
    \n

    1.5.1 – 2024-07-29

    \n
      \n
    • Fix: Optimized on upload not working in edge cases
    • \n
    \n

    1.5.0 – 2024-07-29

    \n
      \n
    • New: Option to convert images to AVIF
    • \n
    • Fix: Overall Saving display
    • \n
    • Fix: Bulk optimization stats calculation for big galleries
    • \n
    \n

    1.4.1 – 2024-07-08

    \n
      \n
    • Fix: API error message displayed when trying to reconnect
    • \n
    \n

    1.4.0 – 2024-06-26

    \n
      \n
    • New: Implement to “One Step” connect & activate
    • \n
    • Tweak: New error message for JPEG/Lossless not converted to WebP
    • \n
    • Tweak: Description string of convert to webP
    • \n
    • Fix: Image not resizing when height and width are equal
    • \n
    • Fix: Pointer is displayed for non-admin users
    • \n
    • Fix: Overall savings for optimized images is not correct
    • \n
    \n

    1.3.0 – 2024-03-05

    \n
      \n
    • Tweak: Updated reoptimization option when changing settings
    • \n
    • Tweak: Added RTL adjustments
    • \n
    • Fix: Optimization button status not updating
    • \n
    • Fix: Error while deactivating or switching Elementor account
    • \n
    \n

    1.2.1 – 2024-02-28

    \n
      \n
    • Fix: Image optimization stats not loading
    • \n
    • Tweak: Added notice regarding extended bulk optimization not affecting user’s website
    • \n
    \n

    1.2.0 – 2024-02-19

    \n
      \n
    • Tweak: Reduced status checks for better performance
    • \n
    • Tweak: Improved Elementor support by removing cached thumbnails
    • \n
    • Tweak: Added DB version check during activation to prevent requirement conflicts
    • \n
    • Fix: Optimization failed with numerous errors
    • \n
    • Fix: Bulk Optimization stopped with an Invalid WordPress image meta error
    • \n
    • Fix: Avoid optimizing too large image files as part of bulk optimization
    • \n
    • Fix: Added RTL support for plugin settings page
    • \n
    \n

    1.1.0 – 2024-02-06

    \n
      \n
    • Tweak: Design for quota reached in top bar
    • \n
    • Tweak: Refresh bulk token if the current one is expired
    • \n
    • Tweak: Rename all plugin assets, namespace and text-domain to image-optimization
    • \n
    • Tweak: Replace hardcoded references in posts content when updating image type
    • \n
    • Tweak: Added file checksum validation before updating an image
    • \n
    • Tweak: Avoid overriding existing images with identical file names
    • \n
    • Fix: Columns are not distributed properly on bulk optimization screen
    • \n
    • Fix: Incorrect behavior when trying to optimize without enough credits
    • \n
    • Fix: File is missing Error incorrectly shown
    • \n
    • Fix: Clear local data on disconnect
    • \n
    • Fix: Optimization error with broken image
    • \n
    \n

    1.0.2 – 2024-01-16

    \n
      \n
    • Tweak: Added tooltip to explain compression level in settings
    • \n
    • Tweak: Added failure notice when trying to activate the plugin without meeting requirements
    • \n
    • Fix: Usage progress bar filling incorrectly
    • \n
    \n

    1.0.1 – 2024-01-10

    \n
      \n
    • Tweak: Quota reached user notification messaging
    • \n
    • Tweak: Add Bulk Optimize success message
    • \n
    • Tweak: Add progress percentage number below the bulk optimization progress bar
    • \n
    • Fix: Top bar “Try again” option with error doesn’t work
    • \n
    \n

    1.0.0 – 2024-01-08

    \n
      \n
    • Initial release
    • \n
    \n", "description": "

    \n

    Image Optimizer is an easy-to-use WordPress plugin that reduces image size through various compression and resizing techniques – all of which preserve the highest possible image quality. Image Optimizer supports many popular formats, including JPEG, PNG, WebP, AVIF, and GIF.

    \n

    REDUCED FILE SIZES FOR BOOSTED PERFORMANCE

    \n

    Image Optimizer ensures faster loading times, enhanced user experience, and overall boosted website performance by reducing the size of your website’s images, resulting in improved Core Web Vitals and search engine rankings. With the Image Optimizer’s exceptional capabilities and unique algorithms, you can fine tune images and reduce their file sizes while retaining quality with lossless or lossy compression.

    \n

    FEATURES

    \n
      \n
    • Image formats supported include JPEG, PNG, WebP, AVIF and GIF.
    • \n
    • Works in the background: The only plugin in the category that optimizes your images in the background, without you having to stay on the page during optimization.
    • \n
    • Resize large images: The user can set a maximum pixel width, after which images will automatically be resized. (default value set to 1920px)
    • \n
    • 2 compression levels: Lossless – highest quality with minimal compression; Lossy – maximum compression with somewhat reduced quality.
    • \n
    • Optimize on upload: Automatically optimizes images when you upload them.
    • \n
    • Bulk or individual optimization: Flexible image optimization options, whether it’s on-demand scaling and compression, or bulk optimization for your entire image library.
    • \n
    • EXIF Metadata: Select whether to clear image metadata to reduce size even further without impacting image quality.
    • \n
    • Backup original images: Ability to delete backups permanently to save space. (We recommend backing up your website beforehand.)
    • \n
    • Restore original images (all sizes) for selected media files if needed.
    • \n
    • Convert to WebP and AVIF: Get efficient and faster-loading formats with WebP and AVIF for even better web performance.
    • \n
    • Image thumbnails: Resize all image sizes by default. Allow the user to choose specific image sizes based on WordPress-registered thumbnail sizes.
    • \n
    \n

    BULK OR SINGLE IMAGE OPTIMIZATION

    \n

    Image Optimizer by Elementor lets you optimize all images in your library either one at a time, or in a batch according to your preferences and settings. Easily configure the plugin to scale or compress your images on-demand, or automatically have them triggered as they are being uploaded. Or, if you have a large number of images already uploaded, the bulk optimization feature allows you to resize and/or compress your entire library of existing images in just a few clicks.

    \n

    2 COMPRESSION LEVELS

    \n

    With Image Optimizer’s advanced algorithms, you can compress images and reduce their file size at the level that makes the most sense for you. We offer 2 types of compression where images will be processed, giving you the perfect balance of compression and quality.

    \n

    Lossless Compression: Lossless compression reduces image file sizes without sacrificing or diminishing the quality of your images. This type of compression reduces file sizes by removing unused or unnecessary data so that no image details are lost along the way. Hence, you are able to reduce the file size and still maintain the quality of your image.

    \n

    Lossy Compression: Lossy compression performs maximum compression resulting in lightweight images and smaller file sizes. It reduces image size by removing image data that is generally invisible to the human eye and minimizes any compromise in image quality.

    \n

    Convert to WebP and AVIF: Convert images to the slimmer WebP or AVIF formats for even better optimization with a 25-30% savings over JPEG and PNG. Most browsers support WebP, however if they don’t, you can have fallback versions of the image available in the same format as the original image.

    \n

    By tailoring compression to the level you need, your visitors will enjoy faster load times, improved responsiveness, and a seamless browsing experience. Our approach also enables your website to rank higher in search results. Since a search engine’s ranking is heavily influenced by speed, user experience, and Core Web Vitals, Image Optimizer by Elementor is an invaluable tool for any website, especially one that’s abundant with images.

    \n

    Get Started Today

    \n

    For more information about Image Optimizer, visit our official website or Try It Now.
    \nIf you have any questions or need support, feel free to contact us or visit our help center.

    \n

    This plugin requires a connection to an active Elementor account in order to identify the user and provide the user with the purchased service. This connection is triggered manually by the user via the plugin’s settings panel.
    \nThis plugin uses a 3rd party service operated by Elementor, which accepts a standard image in JPG, PNG, GIF or WEBP format and returns a web optimized image based on the selected settings. This flow is triggered by the user or automatically (based on the selected plugin settings) on compatible image upload or by manually initiating optimize process.

    \n

    Related Plugins

    \n

    Site Mailer: Effortlessly manage transactional emails with Site Mailer. High deliverability, logs and statistics, and no SMTP plugins needed.

    \n", "screenshots": "
    1. \"Image

      Image Optimizer - Settings Page

    2. \"Image

      Image Optimizer - Bulk Optimization Page

    3. \"Image

      Image Optimizer - Bulk Actions and Individual Actions in the Media Library

    4. \"Image

      Image Optimizer - Image Optimization in the Media Library

    5. \"Image

      Image Optimizer - Image Optimization in the Media Uploader

    ", "installation": "

    Get started with a few easy steps

    \n
      \n
    1. Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the wp-content/plugins/ directory of your WordPress installation.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    5. Go to the Image Optimizer tab within the Media menu.
    6. \n
    7. Press the ‘Connect’ button and follow the instructions.
    8. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/image-optimization.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/image-optimization.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/image-optimization.1.0.2.zip", "1.1.0": "https://downloads.wordpress.org/plugin/image-optimization.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/image-optimization.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/image-optimization.1.2.1.zip", "1.3.0": "https://downloads.wordpress.org/plugin/image-optimization.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/plugin/image-optimization.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/image-optimization.1.4.1.zip", "1.5.0": "https://downloads.wordpress.org/plugin/image-optimization.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/image-optimization.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/image-optimization.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/image-optimization.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/image-optimization.1.5.4.zip", "1.6.0": "https://downloads.wordpress.org/plugin/image-optimization.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/image-optimization.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/image-optimization.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/image-optimization.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/image-optimization.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/image-optimization.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/image-optimization.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/image-optimization.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/image-optimization.1.6.8.zip", "trunk": "https://downloads.wordpress.org/plugin/image-optimization.zip"}, "downloaded": 10123513, "description": "

    \n

    Image Optimizer is an easy-to-use WordPress plugin that reduces image size through various compression and resizing techniques – all of which preserve the highest possible image quality. Image Optimizer supports many popular formats, including JPEG, PNG, WebP, AVIF, and GIF.

    \n

    REDUCED FILE SIZES FOR BOOSTED PERFORMANCE

    \n

    Image Optimizer ensures faster loading times, enhanced user experience, and overall boosted website performance by reducing the size of your website’s images, resulting in improved Core Web Vitals and search engine rankings. With the Image Optimizer’s exceptional capabilities and unique algorithms, you can fine tune images and reduce their file sizes while retaining quality with lossless or lossy compression.

    \n

    FEATURES

    \n
      \n
    • Image formats supported include JPEG, PNG, WebP, AVIF and GIF.
    • \n
    • Works in the background: The only plugin in the category that optimizes your images in the background, without you having to stay on the page during optimization.
    • \n
    • Resize large images: The user can set a maximum pixel width, after which images will automatically be resized. (default value set to 1920px)
    • \n
    • 2 compression levels: Lossless – highest quality with minimal compression; Lossy – maximum compression with somewhat reduced quality.
    • \n
    • Optimize on upload: Automatically optimizes images when you upload them.
    • \n
    • Bulk or individual optimization: Flexible image optimization options, whether it’s on-demand scaling and compression, or bulk optimization for your entire image library.
    • \n
    • EXIF Metadata: Select whether to clear image metadata to reduce size even further without impacting image quality.
    • \n
    • Backup original images: Ability to delete backups permanently to save space. (We recommend backing up your website beforehand.)
    • \n
    • Restore original images (all sizes) for selected media files if needed.
    • \n
    • Convert to WebP and AVIF: Get efficient and faster-loading formats with WebP and AVIF for even better web performance.
    • \n
    • Image thumbnails: Resize all image sizes by default. Allow the user to choose specific image sizes based on WordPress-registered thumbnail sizes.
    • \n
    \n

    BULK OR SINGLE IMAGE OPTIMIZATION

    \n

    Image Optimizer by Elementor lets you optimize all images in your library either one at a time, or in a batch according to your preferences and settings. Easily configure the plugin to scale or compress your images on-demand, or automatically have them triggered as they are being uploaded. Or, if you have a large number of images already uploaded, the bulk optimization feature allows you to resize and/or compress your entire library of existing images in just a few clicks.

    \n

    2 COMPRESSION LEVELS

    \n

    With Image Optimizer’s advanced algorithms, you can compress images and reduce their file size at the level that makes the most sense for you. We offer 2 types of compression where images will be processed, giving you the perfect balance of compression and quality.

    \n

    Lossless Compression: Lossless compression reduces image file sizes without sacrificing or diminishing the quality of your images. This type of compression reduces file sizes by removing unused or unnecessary data so that no image details are lost along the way. Hence, you are able to reduce the file size and still maintain the quality of your image.

    \n

    Lossy Compression: Lossy compression performs maximum compression resulting in lightweight images and smaller file sizes. It reduces image size by removing image data that is generally invisible to the human eye and minimizes any compromise in image quality.

    \n

    Convert to WebP and AVIF: Convert images to the slimmer WebP or AVIF formats for even better optimization with a 25-30% savings over JPEG and PNG. Most browsers support WebP, however if they don’t, you can have fallback versions of the image available in the same format as the original image.

    \n

    By tailoring compression to the level you need, your visitors will enjoy faster load times, improved responsiveness, and a seamless browsing experience. Our approach also enables your website to rank higher in search results. Since a search engine’s ranking is heavily influenced by speed, user experience, and Core Web Vitals, Image Optimizer by Elementor is an invaluable tool for any website, especially one that’s abundant with images.

    \n

    Get Started Today

    \n

    For more information about Image Optimizer, visit our official website or Try It Now.
    \nIf you have any questions or need support, feel free to contact us or visit our help center.

    \n

    This plugin requires a connection to an active Elementor account in order to identify the user and provide the user with the purchased service. This connection is triggered manually by the user via the plugin’s settings panel.
    \nThis plugin uses a 3rd party service operated by Elementor, which accepts a standard image in JPG, PNG, GIF or WEBP format and returns a web optimized image based on the selected settings. This flow is triggered by the user or automatically (based on the selected plugin settings) on compatible image upload or by manually initiating optimize process.

    \n

    Related Plugins

    \n

    Site Mailer: Effortlessly manage transactional emails with Site Mailer. High deliverability, logs and statistics, and no SMTP plugins needed.

    \n", "donate_link": "", "num_ratings": 61, "screenshots": {"1": {"src": "https://ps.w.org/image-optimization/assets/screenshot-1.jpg?rev=3139577", "caption": "Image Optimizer - Settings Page"}, "2": {"src": "https://ps.w.org/image-optimization/assets/screenshot-2.jpg?rev=3019964", "caption": "Image Optimizer - Bulk Optimization Page"}, "3": {"src": "https://ps.w.org/image-optimization/assets/screenshot-3.jpg?rev=3019964", "caption": "Image Optimizer - Bulk Actions and Individual Actions in the Media Library"}, "4": {"src": "https://ps.w.org/image-optimization/assets/screenshot-4.png?rev=3160624", "caption": "Image Optimizer - Image Optimization in the Media Library"}, "5": {"src": "https://ps.w.org/image-optimization/assets/screenshot-5.png?rev=3160624", "caption": "Image Optimizer - Image Optimization in the Media Uploader"}}, "support_url": "https://wordpress.org/support/plugin/image-optimization/", "contributors": {"elemntor": {"avatar": "https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elemntor/", "display_name": "Elementor"}}, "last_updated": "2025-09-11 8:55am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/image-optimization.1.6.8.zip", "author_profile": "https://profiles.wordpress.org/elemntor/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f643-7338-9167-71adaa2668bc", "name": "Image Optimizer – Optimize Images and Convert to WebP or AVIF", "slug": "image-optimization", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1757580900, "version": "1.6.8"}, "support_threads": 1, "requires_plugins": [], "short_description": "Automatically resize, optimize, and convert images to WebP and AVIF. Compress images in bulk or on upload to boost your WordPress site performance.", "author_block_count": 0, "author_block_rating": 28, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c26-72df-85d0-77c9711fe26a', 'did:web:api.aspiredev.org:packages:wp-plugin:imagify', 'imagify', 'Imagify Image Optimization – Optimize Images | Compress Images | Convert WebP | Convert AVIF', '

    🏆 The Best Image Optimization Plugin For WordPress

    -

    Imagify is the most advanced image optimization plugin to help you optimize images. In fact, you can easily resize and compress images, and convert them to WebP and Avif. You can now use its power directly in WordPress to optimize images and reduce the weight of the photos you want to add to your site – image optimization is all done with just one click and without sacrificing their quality.

    -

    Imagify is the best WordPress image optimizer. Image optimization is simple and straightforward. The plugin lets you optimize images in one go with its asynchronous bulk optimization option. You can resize your images on the fly – they will be automatically optimized at the best compression level. If needed, you can always restore your images to their original versions.

    -

    On top of optimizing images, you’ll choose the best AVIF and WebP converter plugin for WordPress. Imagify also converts your images to WebP and AVIF, the next-gen formats for lighter images that will speed up your WordPress site, improve user experience, and even SEO. Convert WebP and convert AVIF will make a difference in image optimization, you’ll see that from yourself.

    -

    Lastly, it’s easy to use the best image compression plugin for better site performance. Speed up your WordPress site and improve Core Web Vitals thanks to Imagify’s state-of-the-art image optimization process.

    -

    Our video explains why Imagify is the easiest image optimization plugin and shows how it makes your website faster thanks to lighter images.

    - -

    ✨ Optimize Images – The Imagify Image Optimizer Key Features:

    -
      -
    • Resize and compress images for the most common formats, including PDF
    • -
    • Optimize images with Smart Compression to balance image optimization quality and performance automatically
    • -
    • Automatic WebP conversion
    • -
    • AVIF conversion in one click
    • -
    • Async bulk optimization
    • -
    -

    📸 Optimize Images: Resize and Compress Images Without Losing Quality

    -

    Imagify is a great image compressor and the ultimate solution to optimise images. You are able to resize and compress images from the most common image formats as well as PDF format. In case you have many images to optimize, you can also resize images in bulk thanks to our async bulk optimization option. In just one click, you will be able to compress multiple images super easily. Imagify compresses all your images in the background, so you can leave the page and not worry about anything.

    -

    Many of your high-quality images may be in sizes that are much too large. To reduce image size and compress large images, Imagify has a setting that allows you to choose a maximum width for all of your images, and if you upload images that are larger than that size, it will resize large images for you during optimization. Imagify will resize images proportionally without cropping them.

    -

    With such a great image optimizer like Imagify, you’ll get your images automatically optimized at the best compression level and quality – thanks to the Smart Compression Mode.

    -

    When using our image compression tool, Imagify, you will enjoy smaller file sizes and faster loading times. But the best part is that you will optimise images and reduce their weight without losing quality: why should you have to choose between beauty and speed? If you want to compress images, it’s now easier than ever with Imagify!

    -

    🔄 Convert to WebP and AVIF Formats

    -

    Thanks to Imagify, you can take a step further in your image optimization process. You can also convert all your images to next-gen image formats such as WebP and AVIF. WebP format, as well as the AVIF format, offers superior image compression and quality and is a way to optimise images and speed up their loading times on websites. By utilizing Imagify’s AVIF and WebP optimizer, you can efficiently convert images to these next-gen formats, saving you a precious amount of time.

    -

    With Imagify, WebP conversion and compression are indeed super easy. Wondering how the convert WebP option works? Imagify will automatically enable WebP and convert your images to WebP.

    -

    What about converting your images to AVIF? You can just select the AVIF option under the Optimization/Next-gen image format tab. Simply as that! Thanks to the best WebP and AVIF plugin for WordPress, you’ll be able to take advantage of the automatic convert WebP feature in no time, plus you’ll always have the convert AVIF option.

    -

    Imagify can also display the AVIF images directly on your front-end. But because some browser versions don’t support AVIF yet, Imagify lets you have both optimized versions of the original format images and the WebP versions ready. Imagify offers the automatic fallback. It means that it will serve the AVIF version if a visitor’s browser supports it and the WebP format if not (if you have previously converted the images to WebP).

    -

    WebP is definitively an excellent replacement for jpeg, png, and gif images, and the same goes for AVIF, which improves your image performance even further. Imagify offers WebP conversion for all image formats: you can convert gif to WebP, jpeg to WebP, and even png to WebP. You can also benefit from AVIF conversion and convert gif to AVIF, jpg and jpeg to AVIF, png to AVIF.
    -Whatever your favorite image format, let Imagify optimise your images!

    -

    ⚡ Optimize Images to Make Your Site Faster and Improve Core Web Vitals

    -

    Did you know that image optimization and web performance go hand in hand? In fact, when it comes to web page speed, one of the first things you should do is optimize your images. Large and heavy image sizes will indeed slow down your website and provide a bad user experience to your visitors – and that’s why you should compress images. On the contrary, when you optimise images and improve image loading speed, you should see a direct improvement in your website speed and performance. With Imagify, it’s time to say goodbye to images taking too long to load.

    -

    Images are one of the largest influencing factors in the Core Web Vitals. Image compression will ensure your images load faster and improve your overall website performance, including your Core Web Vitals metrics. If you’re looking to improve user experience and speed up your WordPress site, images are a good place to start.

    -

    Even Google tells you to take care of your images! If you have ever run a performance audit on PageSpeed Insights, you might have seen the “serve images in next-gen formats” opportunity popping up. Another PageSpeed Insights recommendation related to images is to “efficiently encode images”. When you use Imagify, you will be able to address both recommendations and fix your images for a faster website.

    -

    💬 What Do Our Users Think Of Imagify?

    -

    Here’s what our users have to say about us after optimizing their images with Imagify:

    -
    -

    “Images and other media are the largest parts on your web pages (most likely). Therefore don’t forget to optimise images for the web before adding to your site. For WordPress there are many optimisation plugins available. My favourite is Imagify” — Mark Wilkinson

    -

    ”To give your images a slimming treatment, without altering them aesthetically, there is a great plugin on WordPress: Imagify. Simple, efficient and functional, it’s really worth a look.”— WP Marmite

    -

    “Imagify is an awesome tool that is powerful & easy to use. It’s fast, rivals and surpasses other established plugins/software. Awesome!” — Simon Harper

    -

    “If you want to “squeeze” your images as much as possible and “trim out” your website on the highest professional level… Imagify” — Ivica Delic

    -

    “Clearly Imagify is the most awesome WordPress plugin to compress images on your website! A must try” — Eric Walter

    -
    -

    💰 Is Imagify Free?

    -

    You can optimize for free 20MB of images (that’s about 200 images) every month. You can also convert to the next-gen WebP format for free.

    -

    Need to compress more images? Have a look at our plans: https://imagify.io/pricing

    -

    💡 Want Image Optimization Tips?

    -

    If you want to optimize images and know more about using WebP images on WordPress, improving your PageSpeed score with Imagify, or compressing multiple images online, take a look at our blog: https://imagify.io/blog/

    -

    It’s packed with advice on image compression and so much more!

    - -

    👥 Who Are We?

    -

    We are WP Media, the company behind WP Rocket, the best caching plugin for WordPress.

    -

    Our mission is to improve the web, we are making it faster with WP Rocket and lighter with Imagify.

    -

    ✉️ Get In Touch!

    - -

    🚀 Related Plugins

    -
      -
    • WP Rocket: Best caching plugin to speed-up your WordPress website.
    • -
    • Lazy Load: Best Lazy Load script to reduce the number of HTTP requests and improve the website’s loading time.
    • -
    -

    License: GPLv2 or later
    -License URI: http://www.gnu.org/licenses/gpl-2.0.html

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Imagify Image Optimization – Optimize Images | Compress Images | Convert WebP | Convert AVIF", "slug": "imagify", "tags": {"convert-avif": "convert AVIF", "convert-webp": "convert webp", "compress-images": "compress images", "optimize-images": "optimize images", "image-optimization": "image optimization"}, "added": "2016-01-27", "icons": {"1x": "https://ps.w.org/imagify/assets/icon.svg?rev=2833113", "svg": "https://ps.w.org/imagify/assets/icon.svg?rev=2833113"}, "author": "WP Media", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/imagify/assets/banner-772x250.png?rev=2759224", "high": "https://ps.w.org/imagify/assets/banner-1544x500.png?rev=2759224"}, "ratings": {"1": 212, "2": 43, "3": 30, "4": 62, "5": 1252}, "version": "2.2.6", "homepage": "https://wordpress.org/plugins/imagify/", "requires": "5.3", "sections": {"faq": "\n
    \nHow can I measure the impact of Imagify on speed score?\n\n

    \n

    You can use GTMetrix and Google PageSpeed Insights to check the relevant suggestions. It is recommended to test the following metrics before and after the image optimization:

    \n
      \n
    • Total Page Size (GTMetrix)
    • \n
    • Optimize images (GTMetrix)
    • \n
    • Serve images in next-gen formats (PageSpeed Insights)
    • \n
    • Efficiently encode images (PageSpeed Insights)
    • \n
    \n

    \n
    \nWhat makes Imagify better than other image optimizer tools?\n\n

    \n

    Imagify is an extremely powerful image optimizer: our advanced compressing algorithm will compress images, reduce their weight without sacrificing their quality.

    \n

    Imagify is also super easy to use. Thanks to its intuitive design, you can easily get familiar with the interface and services without thinking about it.

    \n

    And our dedicated customer support will help you fix any issue with your image optimizing process. Support is available via contact form, either on our website, or directly on your Imagify plugin settings page.

    \n

    \n
    \nHow many websites can I optimize with Imagify?\n\n

    \n

    You can use Imagify on as many websites as you wish. Your image optimization quota to compress images will be shared evenly across all of the websites.

    \n

    If you need more control over how your Imagify subscription is used, you should create sub-accounts to allocate a quota for each.

    \n

    \n
    \nHow does the WebP feature work on non-supported browsers?\n\n

    \n

    Imagify will deliver images in the original format for browsers that don’t support the next-gen WebP format automatically, so there is nothing further to be done.

    \n

    \n
    \nIs Imagify compatible with NextGEN?\n\n

    \n

    Yes, Imagify is fully compatible with NextGEN Gallery, the most popular photo gallery plugin for WordPress. All Imagify optimization features related to NextGEN Gallery images are located and usable within the NextGEN Gallery menus and pages. So when you add images to your NextGEN galleries, you’ll be able to optimize them as well.

    \n

    \n
    \nWhich formats can be optimized?\n\n

    \n

    Imagify can optimize JPG, PNG, WebP, PDF files and GIFs (whether animated or not).

    \n

    When you optimize JPG, PNG, and GIF files, Imagify will also create WebP and AVIF versions of your original images and all your thumbnail sizes (if you have this option enabled).

    \n

    \n
    \nHow should I know which image compression level is best for me?\n\n

    \n

    Don’t worry! Imagify comes with the Smart Compression Mode. It means that your images will be automatically optimized for the best possible compression ratio and quality. There’s nothing else to do – just enjoy your lighter and faster images.

    \n

    \n
    \nHow does the image optimization process work?\n\n

    \n

    The image optimization process is performed on our servers. Once done, Imagify returns the optimized image to your server. We do not edit images’ titles or any other information, so there is nothing further to be done on your end than to compress images. Your original images will be moved to a dedicated backup folder (just make sure to keep the Backup option active in Imagify settings).

    \n

    \n
    \nHow to enable the Webp Converter?\n\n

    \n

    With Imagify v2.2, the creation of WebP images is enabled by default. This means that when Imagify optimizes your images using its built-in WebP optimizer, a WebP version will automatically be generated, provided you have disabled the “Create AVIF versions of images” option in your plugin settings. Although the WebP files won’t be directly visible in your Media Library, you can verify their creation by checking for the “Next-Gen generated: yes” indication in the Imagify column of your Media Library.

    \n

    \n
    \nHow long are images stored by Imagify?\n\n

    \n

    Once your images have been optimized via the WP plugin, the compressed images stay on your end forever (even if you delete the Imagify account).

    \n

    During the optimization process, compressed images sent via the API or WordPress plugin are stored for one hour on our server (they are already sent back to your site and stay there safely).

    \n

    Using the online application, compressed images are stored for 24 hours (with a free account) and for unlimited time if you have a paid subscription.

    \n

    \n
    \nCan I restore images after compression?\n\n

    \n

    Yes, as long as the Backup option is active in Imagify settings (it is active by default when you activate the WP Plugin).

    \n

    \n
    \nIf I remove Imagify, will my images stay compressed?\n\n

    \n

    Yes, your images will stay compressed even after removing Imagify (and even after you delete your Imagify account).

    \n

    \n
    \nIf I use Imagify, do I need to continue optimizing and resizing my images with Photoshop?\n\n

    \n

    Do not waste your time resizing and optimizing your images in Photoshop. Imagify takes care of everything to compress your images!

    \n

    \n
    \nIs the EXIF data of images removed?\n\n

    \n

    EXIF data is not removed.

    \n

    \n
    \nI used Kraken, Optimus, EWWW or WP Smush, will Imagify further optimize my images?\n\n

    \n

    Absolutely. Most of the time, Imagify will still be able to optimize your images even if you have already compressed them with another tool.

    \n

    \n
    \nWill the original images be deleted?\n\n

    \n

    No. Imagify automatically replaces the original images with an optimized image. The backup option allows you to keep the original images and restore them with one click.

    \n

    \n
    \nIs it possible to re-optimize images with a different level?\n\n

    \n

    Yes. By activating the backup option in the plugin, you can re-optimize each image to lossless compression with a single click.

    \n

    \n
    \nWhat happens when the plugin is disabled?\n\n

    \n

    When the plugin is disabled, your existing images remain optimized. Backups of the original images are still available if you have enabled the images backup option.

    \n

    \n
    \nOn which web hosts can the plugin be used?\n\n

    \n

    The plugin can be used on all hosts including “managed hosting” providers like WP Engine.

    \n

    \n
    \nIs Imagify compatible with Multi-Site?\n\n

    \n

    Yes, Imagify is 100% compatible with multi-site.

    \n

    \n
    \nCan we use Imagify on WordPress.com?\n\n

    \n

    It is possible to use the Imagify plugin on WordPress.com if you have a Business account.

    \n

    \n
    \nDo you offer support?\n\n

    \n

    Yes, the Imagify team offers full email support for image optimization questions. You can contact us via https://imagify.io/contact/.

    \n

    \n
    \nWhen is support available?\n\n

    \n

    Our support is currently available Monday-Friday 8AM-10PM CET. We answer every email so you can expect the answer from us within 24h max (unless during the weekends).

    \n

    \n
    \nIs registration free?\n\n

    \n

    Yes, and no credit card is required.

    \n

    \n
    \nDo you offer a trial version?\n\n

    \n

    No. However, you get 20MB of quota per month for free to optimize your images (around 200 images).

    \n

    \n
    \nWhere do I report security bugs found in this plugin?\n\n

    \n

    You can report any security bugs found in the source code of the site-reviews plugin through the Patchstack Vulnerability Disclosure Program. The Patchstack team will assist you with verification, CVE assignment and take care of notifying the developers of this plugin.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Makes a massive difference to site performance

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anthonyidle on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Worth remembering how much this plugin will make for you..

    \n\n\n\n
    \n

    “In A/B tests, we tried delaying the page in increments of 100 milliseconds and found that even very small delays would result in substantial and costly drops in revenue.”

    \nAmazon.com
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Image optimization plugin is lightning fast

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aegei on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I optimized over 700 images in one go. The tool even handled WebP conversion. Page load times improved immediately.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Effortless Image Optimization for Your WordPress Site

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ubaida (ubaidaabidganem) on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Imagify has been a game changer for optimizing images on my WordPress site. The plugin is incredibly straightforward—just a click and it compresses images without compromising quality. Its ability to convert images to modern formats like WebP and AVIF really boosts my site’s loading speed. I highly recommend it for anyone looking to quickly improve their website’s performance with minimal hassle.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best Image Optimizatin Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Maitreya Patni (maitpatni) on October 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Best Image Optimizatin Plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Quick and effective

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy haakonlw on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really good for content optimization! It''s the easiest way for me at least

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    no support - even for paid customers!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy itbuero on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Imagify broke my website. Imagify enabled didn''t show any pictures. Disabled and all pictures were back. Contacted the support - but no response. Since 2 weeks now and I''m paying customer with the monthly pro subscription. Horrible.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Avis Imagify

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cath31 on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Le poids des images est bien réduit dans le format next gen !

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Evaluation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mggp58 on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin qui apporte de la plus value sur mes sites et qui permet un meilleur confort de navigation. Grâce à une utilisation conviviale, très pratique à mettre en place.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Saving Space

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy livninctry on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works as intended and has reduced the load times.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect plugin for the job

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Brand Rocket on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    An excellent plugin for speeding up any WordPress website

    \n
    \n
    \n", "changelog": "

    2.2.6

    \n
      \n
    • Bugfix: Fix warning related to translation files being loaded too early, improving plugin stability during image optimization.
    • \n
    • 3rd-party library: Update bundled Action Scheduler to v3.9.2.
    • \n
    \n

    2.2.5

    \n
      \n
    • Enhancement: Optimize SQL queries inside the plugin to calculate necessary data faster and improve image optimization at scale.
    • \n
    • Enhancement: Improve the design of banners displayed within the image optimizer plugin interface.
    • \n
    • Enhancement: Correct the upgrade link to ensure smoother navigation within the image optimization flow.
    • \n
    \n

    2.2.4

    \n
      \n
    • Enhancement: Disable by default the calculation of media elements used for filters in the Media Library view to speed up image optimization workflows.
    • \n
    • Enhancement: Remove unnecessary API calls on each page load to enhance image optimizer performance.
    • \n
    • Enhancement: Update banner UI and remove an extra checkout step, streamlining the optimization setup.
    • \n
    • 3rd-party compatibility: Fix display issue with unstyled banners in the Gravity Forms plugin view, improving integration during image optimization tasks.
    • \n
    \n

    2.2.3.2

    \n
      \n
    • Enhancement: Optimize and cache the modal attachment counter database query for better performance to optimize images in bulk.
    • \n
    \n

    2.2.3.1

    \n
      \n
    • Enhancement: Reduce the number of requests sent to Imagify servers during large-scale image optimization operations.
    • \n
    \n

    2.2.3

    \n
      \n
    • Enhancement: Cache license API calls to reduce load and improve how users optimize images.
    • \n
    • 3rd-party compatibility: Update template_redirect priority to improve compatibility with WP Rocket’s LazyLoad and optimized image delivery.
    • \n
    • Bugfix: Fix Uncaught TypeError: strpos() expects parameter 1 to be string fatal error.
    • \n
    • Enhancement: UI improvements across the image optimizer interface.
    • \n
    • Enhancement: Improve plugin architecture to support more efficient image optimization routines.
    • \n
    \n

    2.2.2

    \n
      \n
    • Enhancement: Let users choose which Next-Gen image formats (WebP, AVIF) should be generated in the UI for more flexible image optimization.
    • \n
    • Enhancement: Add safeguards for image size values that are not strings to improve optimizer stability.
    • \n
    • Enhancement: Improve detection of file types for better image optimization compatibility.
    • \n
    • Bugfix: Fix fatal error related to “WP_List_Table”.
    • \n
    \n

    2.2.1

    \n
      \n
    • Enhancement: Prevent unnecessary .htaccess updates when switching between AVIF and WebP generation, improving image optimization stability.
    • \n
    • Enhancement: Display the smallest image version in the Media Library image details section for easier review of optimized image output.
    • \n
    • Enhancement: Correctly delete all Next-Gen versions when restoring the original image.
    • \n
    • Enhancement: Bump minimum supported PHP version to 7.3.
    • \n
    • Bugfix: Fix progress bar issue when disabling AVIF generation.
    • \n
    • Bugfix: Fix incorrect image count in the Bulk Optimization section.
    • \n
    • Bugfix: Correct display bug in original vs. optimized image comparison.
    • \n
    • 3rd-party compatibility: Update compatibility with NextGen Gallery for AVIF support.
    • \n
    • 3rd-party compatibility: Improve compatibility of AVIF images with AMP, Regenerate Thumbnails, and WooCommerce for consistent image optimization results.
    • \n
    \n

    2.2.0.1

    \n
      \n
    • Bugfix: Preserve “Display images in WebP format” setting when updating the plugin to maintain optimized image delivery.
    • \n
    \n

    2.2

    \n
      \n
    • New Feature: Add AVIF generation support to provide next-gen image formats for advanced image optimization.
    • \n
    \n

    Full changelog

    \n", "description": "

    🏆 The Best Image Optimization Plugin For WordPress

    \n

    Imagify is the most advanced image optimization plugin to help you optimize images. In fact, you can easily resize and compress images, and convert them to WebP and Avif. You can now use its power directly in WordPress to optimize images and reduce the weight of the photos you want to add to your site – image optimization is all done with just one click and without sacrificing their quality.

    \n

    Imagify is the best WordPress image optimizer. Image optimization is simple and straightforward. The plugin lets you optimize images in one go with its asynchronous bulk optimization option. You can resize your images on the fly – they will be automatically optimized at the best compression level. If needed, you can always restore your images to their original versions.

    \n

    On top of optimizing images, you’ll choose the best AVIF and WebP converter plugin for WordPress. Imagify also converts your images to WebP and AVIF, the next-gen formats for lighter images that will speed up your WordPress site, improve user experience, and even SEO. Convert WebP and convert AVIF will make a difference in image optimization, you’ll see that from yourself.

    \n

    Lastly, it’s easy to use the best image compression plugin for better site performance. Speed up your WordPress site and improve Core Web Vitals thanks to Imagify’s state-of-the-art image optimization process.

    \n

    Our video explains why Imagify is the easiest image optimization plugin and shows how it makes your website faster thanks to lighter images.

    \n\n

    ✨ Optimize Images – The Imagify Image Optimizer Key Features:

    \n
      \n
    • Resize and compress images for the most common formats, including PDF
    • \n
    • Optimize images with Smart Compression to balance image optimization quality and performance automatically
    • \n
    • Automatic WebP conversion
    • \n
    • AVIF conversion in one click
    • \n
    • Async bulk optimization
    • \n
    \n

    📸 Optimize Images: Resize and Compress Images Without Losing Quality

    \n

    Imagify is a great image compressor and the ultimate solution to optimise images. You are able to resize and compress images from the most common image formats as well as PDF format. In case you have many images to optimize, you can also resize images in bulk thanks to our async bulk optimization option. In just one click, you will be able to compress multiple images super easily. Imagify compresses all your images in the background, so you can leave the page and not worry about anything.

    \n

    Many of your high-quality images may be in sizes that are much too large. To reduce image size and compress large images, Imagify has a setting that allows you to choose a maximum width for all of your images, and if you upload images that are larger than that size, it will resize large images for you during optimization. Imagify will resize images proportionally without cropping them.

    \n

    With such a great image optimizer like Imagify, you’ll get your images automatically optimized at the best compression level and quality – thanks to the Smart Compression Mode.

    \n

    When using our image compression tool, Imagify, you will enjoy smaller file sizes and faster loading times. But the best part is that you will optimise images and reduce their weight without losing quality: why should you have to choose between beauty and speed? If you want to compress images, it’s now easier than ever with Imagify!

    \n

    🔄 Convert to WebP and AVIF Formats

    \n

    Thanks to Imagify, you can take a step further in your image optimization process. You can also convert all your images to next-gen image formats such as WebP and AVIF. WebP format, as well as the AVIF format, offers superior image compression and quality and is a way to optimise images and speed up their loading times on websites. By utilizing Imagify’s AVIF and WebP optimizer, you can efficiently convert images to these next-gen formats, saving you a precious amount of time.

    \n

    With Imagify, WebP conversion and compression are indeed super easy. Wondering how the convert WebP option works? Imagify will automatically enable WebP and convert your images to WebP.

    \n

    What about converting your images to AVIF? You can just select the AVIF option under the Optimization/Next-gen image format tab. Simply as that! Thanks to the best WebP and AVIF plugin for WordPress, you’ll be able to take advantage of the automatic convert WebP feature in no time, plus you’ll always have the convert AVIF option.

    \n

    Imagify can also display the AVIF images directly on your front-end. But because some browser versions don’t support AVIF yet, Imagify lets you have both optimized versions of the original format images and the WebP versions ready. Imagify offers the automatic fallback. It means that it will serve the AVIF version if a visitor’s browser supports it and the WebP format if not (if you have previously converted the images to WebP).

    \n

    WebP is definitively an excellent replacement for jpeg, png, and gif images, and the same goes for AVIF, which improves your image performance even further. Imagify offers WebP conversion for all image formats: you can convert gif to WebP, jpeg to WebP, and even png to WebP. You can also benefit from AVIF conversion and convert gif to AVIF, jpg and jpeg to AVIF, png to AVIF.
    \nWhatever your favorite image format, let Imagify optimise your images!

    \n

    ⚡ Optimize Images to Make Your Site Faster and Improve Core Web Vitals

    \n

    Did you know that image optimization and web performance go hand in hand? In fact, when it comes to web page speed, one of the first things you should do is optimize your images. Large and heavy image sizes will indeed slow down your website and provide a bad user experience to your visitors – and that’s why you should compress images. On the contrary, when you optimise images and improve image loading speed, you should see a direct improvement in your website speed and performance. With Imagify, it’s time to say goodbye to images taking too long to load.

    \n

    Images are one of the largest influencing factors in the Core Web Vitals. Image compression will ensure your images load faster and improve your overall website performance, including your Core Web Vitals metrics. If you’re looking to improve user experience and speed up your WordPress site, images are a good place to start.

    \n

    Even Google tells you to take care of your images! If you have ever run a performance audit on PageSpeed Insights, you might have seen the “serve images in next-gen formats” opportunity popping up. Another PageSpeed Insights recommendation related to images is to “efficiently encode images”. When you use Imagify, you will be able to address both recommendations and fix your images for a faster website.

    \n

    💬 What Do Our Users Think Of Imagify?

    \n

    Here’s what our users have to say about us after optimizing their images with Imagify:

    \n
    \n

    “Images and other media are the largest parts on your web pages (most likely). Therefore don’t forget to optimise images for the web before adding to your site. For WordPress there are many optimisation plugins available. My favourite is Imagify” — Mark Wilkinson

    \n

    ”To give your images a slimming treatment, without altering them aesthetically, there is a great plugin on WordPress: Imagify. Simple, efficient and functional, it’s really worth a look.”— WP Marmite

    \n

    “Imagify is an awesome tool that is powerful & easy to use. It’s fast, rivals and surpasses other established plugins/software. Awesome!” — Simon Harper

    \n

    “If you want to “squeeze” your images as much as possible and “trim out” your website on the highest professional level… Imagify” — Ivica Delic

    \n

    “Clearly Imagify is the most awesome WordPress plugin to compress images on your website! A must try” — Eric Walter

    \n
    \n

    💰 Is Imagify Free?

    \n

    You can optimize for free 20MB of images (that’s about 200 images) every month. You can also convert to the next-gen WebP format for free.

    \n

    Need to compress more images? Have a look at our plans: https://imagify.io/pricing

    \n

    💡 Want Image Optimization Tips?

    \n

    If you want to optimize images and know more about using WebP images on WordPress, improving your PageSpeed score with Imagify, or compressing multiple images online, take a look at our blog: https://imagify.io/blog/

    \n

    It’s packed with advice on image compression and so much more!

    \n\n

    👥 Who Are We?

    \n

    We are WP Media, the company behind WP Rocket, the best caching plugin for WordPress.

    \n

    Our mission is to improve the web, we are making it faster with WP Rocket and lighter with Imagify.

    \n

    ✉️ Get In Touch!

    \n\n

    🚀 Related Plugins

    \n
      \n
    • WP Rocket: Best caching plugin to speed-up your WordPress website.
    • \n
    • Lazy Load: Best Lazy Load script to reduce the number of HTTP requests and improve the website’s loading time.
    • \n
    \n

    License: GPLv2 or later
    \nLicense URI: http://www.gnu.org/licenses/gpl-2.0.html

    \n", "screenshots": "
    1. \"<p>Bulk

      Bulk Image Optimization

    2. \"<p>Settings

      Settings Page

    3. \"<p>Media

      Media Page

    4. \"<p>Other

      Other Media Page

    ", "installation": "

    WordPress Admin Method

    \n
      \n
    1. Go to you administration area in WordPress Plugins > Add
    2. \n
    3. Look for Imagify (use search form)
    4. \n
    5. Click on Install and activate the plugin
    6. \n
    7. Optional: find the settings page through Settings > Imagify
    8. \n
    \n

    FTP Method

    \n
      \n
    1. Upload the complete imagify folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Optional: find the settings page through Settings > Imagify
    6. \n
    \n"}, "versions": {"1.4": "https://downloads.wordpress.org/plugin/imagify.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/imagify.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/imagify.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/imagify.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/imagify.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/imagify.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/imagify.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/imagify.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/imagify.2.2.zip", "1.10": "https://downloads.wordpress.org/plugin/imagify.1.10.zip", "1.3.3": "https://downloads.wordpress.org/plugin/imagify.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/imagify.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/imagify.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/imagify.1.3.6.zip", "1.4.1": "https://downloads.wordpress.org/plugin/imagify.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/imagify.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/imagify.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/imagify.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/imagify.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/imagify.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/imagify.1.4.7.zip", "1.5.1": "https://downloads.wordpress.org/plugin/imagify.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/imagify.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/imagify.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/imagify.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/imagify.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/imagify.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/imagify.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/imagify.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/imagify.1.5.9.zip", "1.6.1": "https://downloads.wordpress.org/plugin/imagify.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/imagify.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/imagify.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/imagify.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/imagify.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/imagify.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/imagify.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/imagify.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/imagify.1.6.9.zip", "1.7.1": "https://downloads.wordpress.org/plugin/imagify.1.7.1.zip", "1.8.1": "https://downloads.wordpress.org/plugin/imagify.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/imagify.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/imagify.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/imagify.1.8.4.zip", "1.9.1": "https://downloads.wordpress.org/plugin/imagify.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/imagify.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/imagify.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/imagify.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/imagify.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/imagify.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/imagify.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/imagify.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/imagify.1.9.9.zip", "2.1.1": "https://downloads.wordpress.org/plugin/imagify.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/imagify.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/imagify.2.1.3.zip", "2.2.1": "https://downloads.wordpress.org/plugin/imagify.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/imagify.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/imagify.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/imagify.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/imagify.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/imagify.2.2.6.zip", "trunk": "https://downloads.wordpress.org/plugin/imagify.zip", "1.5.10": "https://downloads.wordpress.org/plugin/imagify.1.5.10.zip", "1.6.10": "https://downloads.wordpress.org/plugin/imagify.1.6.10.zip", "1.6.11": "https://downloads.wordpress.org/plugin/imagify.1.6.11.zip", "1.6.12": "https://downloads.wordpress.org/plugin/imagify.1.6.12.zip", "1.6.13": "https://downloads.wordpress.org/plugin/imagify.1.6.13.zip", "1.6.14": "https://downloads.wordpress.org/plugin/imagify.1.6.14.zip", "1.9.10": "https://downloads.wordpress.org/plugin/imagify.1.9.10.zip", "1.9.11": "https://downloads.wordpress.org/plugin/imagify.1.9.11.zip", "1.9.12": "https://downloads.wordpress.org/plugin/imagify.1.9.12.zip", "1.9.13": "https://downloads.wordpress.org/plugin/imagify.1.9.13.zip", "1.9.14": "https://downloads.wordpress.org/plugin/imagify.1.9.14.zip", "1.3.5.1": "https://downloads.wordpress.org/plugin/imagify.1.3.5.1.zip", "1.3.5.2": "https://downloads.wordpress.org/plugin/imagify.1.3.5.2.zip", "1.3.6.1": "https://downloads.wordpress.org/plugin/imagify.1.3.6.1.zip", "1.5.2.1": "https://downloads.wordpress.org/plugin/imagify.1.5.2.1.zip", "1.6.7.1": "https://downloads.wordpress.org/plugin/imagify.1.6.7.1.zip", "1.6.9.1": "https://downloads.wordpress.org/plugin/imagify.1.6.9.1.zip", "1.7.1.1": "https://downloads.wordpress.org/plugin/imagify.1.7.1.1.zip", "1.7.1.2": "https://downloads.wordpress.org/plugin/imagify.1.7.1.2.zip", "1.7.1.3": "https://downloads.wordpress.org/plugin/imagify.1.7.1.3.zip", "1.8.0.1": "https://downloads.wordpress.org/plugin/imagify.1.8.0.1.zip", "1.8.1.1": "https://downloads.wordpress.org/plugin/imagify.1.8.1.1.zip", "1.8.4.1": "https://downloads.wordpress.org/plugin/imagify.1.8.4.1.zip", "1.9.3.1": "https://downloads.wordpress.org/plugin/imagify.1.9.3.1.zip", "1.9.8.1": "https://downloads.wordpress.org/plugin/imagify.1.9.8.1.zip", "2.1.3.1": "https://downloads.wordpress.org/plugin/imagify.2.1.3.1.zip", "2.2.0.1": "https://downloads.wordpress.org/plugin/imagify.2.2.0.1.zip", "2.2.3.1": "https://downloads.wordpress.org/plugin/imagify.2.2.3.1.zip", "2.2.3.2": "https://downloads.wordpress.org/plugin/imagify.2.2.3.2.zip", "1.6.13.1": "https://downloads.wordpress.org/plugin/imagify.1.6.13.1.zip", "1.6.14.1": "https://downloads.wordpress.org/plugin/imagify.1.6.14.1.zip", "1.6.14.2": "https://downloads.wordpress.org/plugin/imagify.1.6.14.2.zip"}, "downloaded": 16375314, "description": "

    🏆 The Best Image Optimization Plugin For WordPress

    \n

    Imagify is the most advanced image optimization plugin to help you optimize images. In fact, you can easily resize and compress images, and convert them to WebP and Avif. You can now use its power directly in WordPress to optimize images and reduce the weight of the photos you want to add to your site – image optimization is all done with just one click and without sacrificing their quality.

    \n

    Imagify is the best WordPress image optimizer. Image optimization is simple and straightforward. The plugin lets you optimize images in one go with its asynchronous bulk optimization option. You can resize your images on the fly – they will be automatically optimized at the best compression level. If needed, you can always restore your images to their original versions.

    \n

    On top of optimizing images, you’ll choose the best AVIF and WebP converter plugin for WordPress. Imagify also converts your images to WebP and AVIF, the next-gen formats for lighter images that will speed up your WordPress site, improve user experience, and even SEO. Convert WebP and convert AVIF will make a difference in image optimization, you’ll see that from yourself.

    \n

    Lastly, it’s easy to use the best image compression plugin for better site performance. Speed up your WordPress site and improve Core Web Vitals thanks to Imagify’s state-of-the-art image optimization process.

    \n

    Our video explains why Imagify is the easiest image optimization plugin and shows how it makes your website faster thanks to lighter images.

    \n\n

    ✨ Optimize Images – The Imagify Image Optimizer Key Features:

    \n
      \n
    • Resize and compress images for the most common formats, including PDF
    • \n
    • Optimize images with Smart Compression to balance image optimization quality and performance automatically
    • \n
    • Automatic WebP conversion
    • \n
    • AVIF conversion in one click
    • \n
    • Async bulk optimization
    • \n
    \n

    📸 Optimize Images: Resize and Compress Images Without Losing Quality

    \n

    Imagify is a great image compressor and the ultimate solution to optimise images. You are able to resize and compress images from the most common image formats as well as PDF format. In case you have many images to optimize, you can also resize images in bulk thanks to our async bulk optimization option. In just one click, you will be able to compress multiple images super easily. Imagify compresses all your images in the background, so you can leave the page and not worry about anything.

    \n

    Many of your high-quality images may be in sizes that are much too large. To reduce image size and compress large images, Imagify has a setting that allows you to choose a maximum width for all of your images, and if you upload images that are larger than that size, it will resize large images for you during optimization. Imagify will resize images proportionally without cropping them.

    \n

    With such a great image optimizer like Imagify, you’ll get your images automatically optimized at the best compression level and quality – thanks to the Smart Compression Mode.

    \n

    When using our image compression tool, Imagify, you will enjoy smaller file sizes and faster loading times. But the best part is that you will optimise images and reduce their weight without losing quality: why should you have to choose between beauty and speed? If you want to compress images, it’s now easier than ever with Imagify!

    \n

    🔄 Convert to WebP and AVIF Formats

    \n

    Thanks to Imagify, you can take a step further in your image optimization process. You can also convert all your images to next-gen image formats such as WebP and AVIF. WebP format, as well as the AVIF format, offers superior image compression and quality and is a way to optimise images and speed up their loading times on websites. By utilizing Imagify’s AVIF and WebP optimizer, you can efficiently convert images to these next-gen formats, saving you a precious amount of time.

    \n

    With Imagify, WebP conversion and compression are indeed super easy. Wondering how the convert WebP option works? Imagify will automatically enable WebP and convert your images to WebP.

    \n

    What about converting your images to AVIF? You can just select the AVIF option under the Optimization/Next-gen image format tab. Simply as that! Thanks to the best WebP and AVIF plugin for WordPress, you’ll be able to take advantage of the automatic convert WebP feature in no time, plus you’ll always have the convert AVIF option.

    \n

    Imagify can also display the AVIF images directly on your front-end. But because some browser versions don’t support AVIF yet, Imagify lets you have both optimized versions of the original format images and the WebP versions ready. Imagify offers the automatic fallback. It means that it will serve the AVIF version if a visitor’s browser supports it and the WebP format if not (if you have previously converted the images to WebP).

    \n

    WebP is definitively an excellent replacement for jpeg, png, and gif images, and the same goes for AVIF, which improves your image performance even further. Imagify offers WebP conversion for all image formats: you can convert gif to WebP, jpeg to WebP, and even png to WebP. You can also benefit from AVIF conversion and convert gif to AVIF, jpg and jpeg to AVIF, png to AVIF.
    \nWhatever your favorite image format, let Imagify optimise your images!

    \n

    ⚡ Optimize Images to Make Your Site Faster and Improve Core Web Vitals

    \n

    Did you know that image optimization and web performance go hand in hand? In fact, when it comes to web page speed, one of the first things you should do is optimize your images. Large and heavy image sizes will indeed slow down your website and provide a bad user experience to your visitors – and that’s why you should compress images. On the contrary, when you optimise images and improve image loading speed, you should see a direct improvement in your website speed and performance. With Imagify, it’s time to say goodbye to images taking too long to load.

    \n

    Images are one of the largest influencing factors in the Core Web Vitals. Image compression will ensure your images load faster and improve your overall website performance, including your Core Web Vitals metrics. If you’re looking to improve user experience and speed up your WordPress site, images are a good place to start.

    \n

    Even Google tells you to take care of your images! If you have ever run a performance audit on PageSpeed Insights, you might have seen the “serve images in next-gen formats” opportunity popping up. Another PageSpeed Insights recommendation related to images is to “efficiently encode images”. When you use Imagify, you will be able to address both recommendations and fix your images for a faster website.

    \n

    💬 What Do Our Users Think Of Imagify?

    \n

    Here’s what our users have to say about us after optimizing their images with Imagify:

    \n
    \n

    “Images and other media are the largest parts on your web pages (most likely). Therefore don’t forget to optimise images for the web before adding to your site. For WordPress there are many optimisation plugins available. My favourite is Imagify” — Mark Wilkinson

    \n

    ”To give your images a slimming treatment, without altering them aesthetically, there is a great plugin on WordPress: Imagify. Simple, efficient and functional, it’s really worth a look.”— WP Marmite

    \n

    “Imagify is an awesome tool that is powerful & easy to use. It’s fast, rivals and surpasses other established plugins/software. Awesome!” — Simon Harper

    \n

    “If you want to “squeeze” your images as much as possible and “trim out” your website on the highest professional level… Imagify” — Ivica Delic

    \n

    “Clearly Imagify is the most awesome WordPress plugin to compress images on your website! A must try” — Eric Walter

    \n
    \n

    💰 Is Imagify Free?

    \n

    You can optimize for free 20MB of images (that’s about 200 images) every month. You can also convert to the next-gen WebP format for free.

    \n

    Need to compress more images? Have a look at our plans: https://imagify.io/pricing

    \n

    💡 Want Image Optimization Tips?

    \n

    If you want to optimize images and know more about using WebP images on WordPress, improving your PageSpeed score with Imagify, or compressing multiple images online, take a look at our blog: https://imagify.io/blog/

    \n

    It’s packed with advice on image compression and so much more!

    \n\n

    👥 Who Are We?

    \n

    We are WP Media, the company behind WP Rocket, the best caching plugin for WordPress.

    \n

    Our mission is to improve the web, we are making it faster with WP Rocket and lighter with Imagify.

    \n

    ✉️ Get In Touch!

    \n\n

    🚀 Related Plugins

    \n
      \n
    • WP Rocket: Best caching plugin to speed-up your WordPress website.
    • \n
    • Lazy Load: Best Lazy Load script to reduce the number of HTTP requests and improve the website’s loading time.
    • \n
    \n

    License: GPLv2 or later
    \nLicense URI: http://www.gnu.org/licenses/gpl-2.0.html

    \n", "donate_link": "", "num_ratings": 1599, "screenshots": {"1": {"src": "https://ps.w.org/imagify/assets/screenshot-1.png?rev=2759224", "caption": "

    Bulk Image Optimization

    "}, "2": {"src": "https://ps.w.org/imagify/assets/screenshot-2.png?rev=2759224", "caption": "

    Settings Page

    "}, "3": {"src": "https://ps.w.org/imagify/assets/screenshot-3.png?rev=2759224", "caption": "

    Media Page

    "}, "4": {"src": "https://ps.w.org/imagify/assets/screenshot-4.png?rev=2759224", "caption": "

    Other Media Page

    "}}, "support_url": "https://wordpress.org/support/plugin/imagify/", "contributors": {"imagify": {"avatar": "https://secure.gravatar.com/avatar/8c28d7790f9f23ad2576c1f657773766f65666c45365db38658a3aba0f7c6bb4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/imagify/", "display_name": "Imagify Image Optimizer"}, "wp_rocket": {"avatar": "https://secure.gravatar.com/avatar/8e1f1fe831228353ceabcfe40dccd4a769451d5f19fe733f46d8fb7d42dc1549?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wp_rocket/", "display_name": "WP Rocket"}}, "last_updated": "2025-10-28 7:20pm GMT", "preview_link": "", "requires_php": "7.3", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/imagify.2.2.6.zip", "author_profile": "https://profiles.wordpress.org/wp_media/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-f63e-7153-9350-c2aaec6e484d", "name": "Imagify Image Optimization – Optimize Images | Compress Images | Convert WebP | Convert AVIF", "slug": "imagify", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761679200, "version": "2.2.6"}, "support_threads": 4, "requires_plugins": [], "short_description": "Optimize images in 1-click: compress images, convert to WebP & AVIF, resize, and boost your site with the easiest WordPress image optimization plugin!", "author_block_count": 0, "author_block_rating": 86, "commercial_support_url": "", "support_threads_resolved": 4}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c58-7015-b6bf-8554822ad547', 'did:web:api.aspiredev.org:packages:wp-plugin:jetpack', 'jetpack', 'Jetpack – WP Security, Backup, Speed, & Growth', '

    JETPACK – THE BEST WORDPRESS PLUGIN

    -

    -

    Jetpack is a WordPress plugin that helps you create better content, grow your subscribers, earn money from your website and keep it safe, fast, and secure. You can grow and keep track of your website traffic with Jetpack stats, and create better content with Jetpack AI. You can start a newsletter and grow your audience, turning fans into paying subscribers. Create beautiful content with Jetpack Creator and keep your site fast with Jetpack Boost.

    -

    HOW TO GET STARTED WITH JETPACK

    -

    Installation is free, quick, and easy. Set up Jetpack in minutes. Take advantage of more robust features like WordPress site security and design and growth tools by upgrading to a paid plan.

    -

    NEED EXPERT SUPPORT?

    -

    We have a global team of Happiness Engineers ready to provide incredible support. Ask your questions in the support forum or contact support.

    -

    WHY USE JETPACK ON YOUR SITE

    -

    Safer. Faster. More traffic.

    -

    WordPress security, performance, marketing, and design tools — Jetpack is made by WordPress experts to make WP sites safer and faster, and help you grow your traffic.

    -

    24/7 AUTO SITE SECURITY

    -

    We guard your site so you can run your site or business. Jetpack Security provides easy-to-use, comprehensive WordPress site security including auto real-time backups and easy restores, malware scans, and spam protection. Essential features like brute force protection and basic downtime / uptime monitoring are free.

    -
      -
    • Back up your site automatically in real time and restore to any point with one click. Cloud storage starts at 10GB, which is more than enough for most sites, with additional storage options available if needed. Great for eCommerce stores especially Woo.
    • -
    • Manage migration to a new host, migrate theme files and plugins to a new database, easily duplicate websites, create full database backups, clone websites, repair broken websites by restoring older backups or easily set up a test site by creating a duplicate of your existing WP website.
    • -
    • See every site change and who made it with the activity log, great for coordination, debug, maintenance, or troubleshooting.
    • -
    • Examine incoming traffic to your WordPress site with our WAF (Web Application Firewall) and decide to allow or block it based on various rules.
    • -
    • Add an important layer of protection to your site with our WAF (Web Application Firewall), particularly when attackers actively exploit unpatched vulnerabilities.
    • -
    • Automatically perform malware scans and security scans for other code threats. One click fix to restore your site for malware.
    • -
    • Block spam comments and form responses with anti spam features powered by Akismet.
    • -
    • Brute force attack protection to protect your WordPress login page from attacks.
    • -
    • Monitor your site uptime / downtime and get an instant alert of any change by email.
    • -
    • Secure WordPress.com powered login used by millions of sites with optional 2FA (two factor authentication) for extra protection.
    • -
    • Auto update individual plugins for easy site maintenance and management.
    • -
    -

    You can purchase all of Jetpack’s security features in our Security bundle, or VaultPress Backup, Scan, and Akismet Anti-spam can each be purchased individually.

    -

    PEAK SPEED AND PERFORMANCE

    -

    Get blazing fast site speed with Jetpack. Jetpack’s free CDN (content delivery network) auto optimizes your images. Watch your page load times decrease — we’ll optimize your images and serve them from our own powerful global network, and speed up your site on mobile devices to reduce bandwidth usage and save money!

    -
      -
    • Image CDN for images and core static files, like CSS and JavaScript, served from our servers, not yours, which saves you money and bandwidth.
    • -
    • Unlimited, high speed, ad free video hosting keeps the focus on your content, not on ads or recommendations that lead people off site.
    • -
    • Custom site search is incredibly powerful and customizable. Helps your visitors instantly find the right content so they read and buy more. Works great with WooCommerce / eCommerce sites to help filter products so customers get what they want on your site faster.
    • -
    • Recommended to use with Jetpack Boost for ultimate WordPress site speed.
    • -
    -

    POWERFUL TOOLS FOR GROWTH

    -

    Create and customize your WordPress site, optimize it for visitors and revenue, and enjoy watching your stats tick up. Build it, share it, and watch it grow.

    -
      -
    • Auto publish blog posts and products to social media by simply using our tools to connect to Facebook, Bluesky, Threads, Tumblr, Mastodon, LinkedIn, and Nextdoor.
    • -
    • Easily share Instagram posts on your pages and blog posts.
    • -
    • Collect a payment or donation, sell a product, service, or membership with simple integrations with PayPal and Stripe.
    • -
    • Grow traffic with SEO tools for Google, Bing, Facebook, and WordPress.com. XML sitemap created automatically.
    • -
    • Advertise on your site to generate revenue. The ad network automatically does the work for you to find high-quality ads that are placed on your site.
    • -
    • Manage Jetpack features from anywhere with the official WordPress mobile app, available for Apple iOS (iPhone or iPad) and Google Android.
    • -
    • Looking for Customer Relationship Management? Check out the Jetpack CRM plugin which works alongside Jetpack to give you a simple and practical way to build relationships with your customers and leads.
    • -
    -

    POWERFUL STATS TO GROW YOUR SITE

    -

    With Jetpack Stats, you don’t need to be a data scientist to see how your site is performing.

    -
      -
    • Advanced site stats and analytics to help you understand your audience.
    • -
    • Discover your top performing posts & pages.
    • -
    • See who is creating the most popular content on your team with our author metrics.
    • -
    • Easily keep track of your content creation habits & trends over the years.
    • -
    • View weekly and yearly trends with 7-day Highlights and Year in Review.
    • -
    • See what popular social networks your content is being shared to the most.
    • -
    • Explore real-time data on visitors, likes, and comments.
    • -
    • Get detailed insights on the referrers that bring traffic to your site.
    • -
    • Discover what countries your visitors are coming from.
    • -
    • Measure link clicks, video plays, and file downloads within your site.
    • -
    -

    WRITE SMARTER, NOT HARDER.

    -

    Experience the ease of crafting professional content with intuitive and powerful AI. Jetpack AI Assistant effortlessly integrates with your WordPress editor, offering an intuitive interface to interact with AI.
    -This powerful block lets you generate diverse content at your command, significantly reducing the time and effort required in content creation.

    -

    Simply provide a prompt, and watch as Jetpack AI Assistant crafts compelling blog posts, detailed pages, structured lists, and comprehensive tables – all tailored to your needs.

    -
      -
    • Harness AI power directly from your editor.
    • -
    • Unlock high-quality, tailored content at your command.
    • -
    • Maintain professional standards with ease.
    • -
    • AI-powered translations across numerous languages at your fingertips, breaking down language barriers.
    • -
    -

    PROMOTE YOUR CONTENT EASILY WITH JETPACK BLAZE

    -

    Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.

    -
      -
    • Create your ad. Choose your audience. Set your budget. It’s that easy.
    • -
    • Amplify your reach for just a few dollars.
    • -
    -

    EASY DESIGN TOOLS

    -

    Quickly customize your site to make it stand out — no coding needed.

    -
      -
    • Themes — Simple WordPress themes to get started on your site.
    • -
    • Related posts — Keep visitors on your site by automatically showing them related content they will be interested in.
    • -
    • Gallery and Slideshow tools — Image galleries, carousel slider, and slideshows for WP sites and stores.
    • -
    • Subscriptions — Make it easy for visitors to sign up to receive notifications of your latest posts and comments.
    • -
    • Contact form — Easily build unlimited contact forms for free without any coding. Receive email notifications for each response. Integrate with mail solutions like Creative Mail to reach your customers and leads quickly. Connect to Jetpack Anti spam (powered by Akismet) to filter submissions.
    • -
    • oEmbed Support — easily embed images, posts, and links from Facebook and Instagram.
    • -
    -

    INTEGRATIONS

    -

    Jetpack is updated monthly to ensure seamless integration with top WordPress plugins and other tech products.

    -
      -
    • Built for WooCommerce: Jetpack and WooCommerce are both made by Automattic. Backup, Scan, Anti-spam, integrate perfectly for Woo / eComm stores.
    • -
    • Jetpack is fully compatible with v2.0 of the official AMP plugin for WordPress.
    • -
    • Better understand your customers and marketing with Google Analytics (GA) integration.
    • -
    • Social media platforms: Instagram, Facebook, Tumblr, LinkedIn, Threads, Bluesky, Nextdoor.
    • -
    • Simple Blocks to customize your site: Pinterest, Whatsapp, Podcast player, GIFs, maps, tiled gallery, slideshow.
    • -
    • Payment processors: easily collect payments or donations and sell products through Stripe and PayPal.
    • -
    • Site speed and performance plugins: Works great with WP Super Cache by Automattic and Cloudflare.
    • -
    • Contact form: Anti-spam (Powered by Akismet) blocks spam comments for Jetpack forms, Contact Form 7, Ninja Forms, Gravity Forms, Formidable Forms, and more.
    • -
    • Other tech integrations: Instagram, Creative Mail, Mailchimp, Calendly, Whatsapp, Pinterest, Revue, and more.
    • -
    -

    EXPLORE MORE OF JETPACK

    -

    If you like Jetpack, consider checking out our other products and bundles

    -
      -
    • Jetpack Complete – The Complete bundle with real‑time security, top performance, and everything you need to grow your business.
    • -
    • Jetpack Security – Our Security bundle provides easy‑to‑use, comprehensive WordPress site security, including real‑time backups, a web application firewall, malware scanning, and spam protection.
    • -
    • Jetpack Backup – Save every change and get back online quickly with one‑click restores from Jetpack VaultPress Backup.
    • -
    • Jetpack Scan – Protect your site from bad actors around‑the‑clock ‑ with our web application firewall (WAF) and automated malware scanning with one‑click fixes.
    • -
    • Jetpack Search – Instantly deliver the most relevant results to your visitors with Jetpack Search. No coding required, no ads, and no tracking.
    • -
    • Jetpack Boost – Increase your website speed. Enjoy the same performance advantages as the world’s leading websites, no developer required.
    • -
    • Jetpack VideoPress – Display stunning‑quality video with none of the hassle. Drag and drop videos through the WordPress editor and keep the focus on your content, not the ads.
    • -
    • Jetpack AI – Turn your ideas into ready‑to‑publish content at lightspeed.
    • -
    • Jetpack Stats – Keep track of your website visits, popular posts, newsletter subscribers and more.
    • -
    • Jetpack Social – Automatically share your website content to your favorite social media platforms, from one place.
    • -
    • Jetpack CRM – Jetpack CRM has all of the tools you need to grow your business. It’s also modular, so you can customize it to suit your needs.
    • -
    • Jetpack Creator – Craft stunning content, boost your subscriber base, and monetize your online presence.
    • -
    • Jetpack Newsletter – Transform your blog posts into newsletters to easily reach your subscribers. Offer paid subscriptions and earn from your content.
    • -
    -

    KEEP SPAM OFF YOUR WEBSITE

    -
      -
    • Akismet Anti-spam – Automatically clear spam from comments and forms. Save time, get more responses, give your visitors a better experience – all without lifting a finger.
    • -
    -

    PROMOTE YOUR CONTENT FOR MORE VIEWS

    -
      -
    • Blaze – Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.
    • -
    -

    MANAGE MORE THAN ONE SITE?

    -
      -
    • Jetpack Manage – All the tools you need to manage multiple WordPress sites. Monitor site security, performance, and traffic, and get alerted if a site needs attention.
    • -
    -

    FLY HIGHER WITH INDIVIDUAL PLUGINS

    -

    Ever wish you could have just one feature of Jetpack in its own plugin? Now you can. Check out our individual plugins and install only what you need.

    - -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Jetpack – WP Security, Backup, Speed, & Growth", "slug": "jetpack", "tags": {"scan": "scan", "backup": "backup", "malware": "malware", "security": "security", "performance": "performance"}, "added": "2011-01-20", "icons": {"1x": "https://ps.w.org/jetpack/assets/icon.svg?rev=2819237", "svg": "https://ps.w.org/jetpack/assets/icon.svg?rev=2819237"}, "author": "Automattic", "rating": 74, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649", "high": "https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649"}, "ratings": {"1": 574, "2": 101, "3": 94, "4": 157, "5": 1423}, "version": "15.1.1", "homepage": "https://jetpack.com", "requires": "6.7", "sections": {"faq": "\n
    \nIs Jetpack free?\n\n

    \n

    Yes! Jetpack’s core features are free for non-commercial sites.

    \n

    These include: site stats, a high-speed CDN for images, related posts, downtime monitoring, brute force attack protection, automated sharing to social networks, sidebar customization, SEO (search engine optimization) tools, and much more.

    \n

    \n
    \nShould I purchase a paid plan?\n\n

    \n

    It depends on your site and what kind of protection, performance, and design you need. If you make money from your site, the answer is “yes.” For context, Jetpack’s paid services include real-time backups, security scanning, spam filtering, video hosting, site monetization, search, priority support, and more.

    \n

    To learn more about the essential security and WordPress services we provide and see how we can improve your site, visit our plans page.

    \n

    \n
    \nWhy do I need a WordPress.com account?\n\n

    \n

    Since Jetpack and its services are provided and hosted by WordPress.com, a WordPress.com account is required for Jetpack to function.

    \n

    \n
    \nI already have a WordPress account, but Jetpack isn’t working. What’s going on?\n\n

    \n

    A WordPress.com account is different from the account you use to log into your self-hosted WordPress. If you can log into WordPress.com, then you already have a WordPress.com account. If you can’t, you can easily create oneduring installation.

    \n

    \n
    \nHow do I view my stats?\n\n

    \n

    Once you’ve installed Jetpack, your stats will be available on your Jetpack dashboard and through the official WordPress mobile app.

    \n

    \n
    \nHow do I contribute to Jetpack?\n\n

    \n

    There are opportunities for developers at all levels to contribute. Learn more about contributing to Jetpack or consider joining our beta program.

    \n

    \n
    \nWhat else does Jetpack include?\n\n

    \n

    Jetpack is the ultimate toolkit for WP for both the classic editor and the block editor, giving you everything you need for a professional site. It includes the following features:

    \n
      \n
    • Activity log — Monitor all site changes for debug, troubleshooting, or maintenance
    • \n
    • Ads — Earn income by displaying high quality ads on your site.
    • \n
    • Beautiful Math — Use the LaTeX markup language for writing complex mathematical equations, formulas, and more.
    • \n
    • Carousel slider — Display a gorgeous full-screen photo browsing experience with comments and EXIF metadata.
    • \n
    • CDN — Helps your pages load faster by allowing Jetpack to optimize your images and serve your images and static files (like CSS and JavaScript) from our global network of servers.
    • \n
    • Comments — Replace your default comment form with an improved system with integrated social media login options.
    • \n
    • Comment Likes — Allows readers to like other comments to show their agreement, approval, or appreciation.
    • \n
    • Contact Form — Offer your readers the ability to get in touch, without giving out your personal email address.
    • \n
    • Custom CSS — Customize the appearance of your theme without creating a child theme or worrying about updates overwriting your customizations.
    • \n
    • Custom Content Types — Adds custom post types (CPTs) to your site.
    • \n
    • Downtime Monitor — Alerts you via electronic mail if your site goes down to ensure you keep uptime.
    • \n
    • Extra Sidebar Widgets — Extra widgets you can add to your blog, including RSS Links and Facebook Like Boxes.
    • \n
    • Gravatar Hovercards — Make your Gravatar profile visible to those viewing your blog.
    • \n
    • Google Analytics (GA) — Track your WordPress site statistics thanks to Google Analytics.
    • \n
    • Infinite Scroll — Pulls the next posts automatically into view when the reader approaches the bottom of the page.
    • \n
    • JSON API — Authorizes applications and services to securely connect to your blog, and allows them to use your content or offer you new functionality.
    • \n
    • Likes — Allows readers to show their appreciation for your posts with a single click.
    • \n
    • Markdown — Allows you to compose posts and comments with links, lists, and other styles using regular characters and punctuation marks. Markdown is used by writers and bloggers who want a quick and easy way to write rich text without having to take their hands off the keyboard.
    • \n
    • Malware detection – automatic malware scans that help protect your WP website with an automated resolution.
    • \n
    • Notifications — Receive notifications for new comments and Likes in your admin bar and on your mobile device.
    • \n
    • oEmbed Support — easily embed images, posts, and links from Facebook and Instagram.
    • \n
    • Plugin Management — Allows easy site maintenance by choosing which plugins update automatically.
    • \n
    • Post by Email — Publish posts using any mail client.
    • \n
    • Protect — Protect your site from traditional and distributed brute force login attacks.
    • \n
    • Publicize — Share new posts on social media networks automatically, or schedule future shares with custom messages.
    • \n
    • Related Posts — Show contextual posts your visitors might be interested in reading after they’re done with their current post.
    • \n
    • Secure Auth — Secure WordPress.com powered login used by millions of sites with optional 2FA (two factor authentication) for extra protection.
    • \n
    • Security Scanner — Anti-virus and other threat detection for your WordPress site with automated resolution.
    • \n
    • Search — A powerful replacement for WordPress’ built-in search, powered by Elasticsearch in the WordPress.com cloud
    • \n
    • SEO Tools — Optimize your site for search engines by taking advantage of our SEO tools.
    • \n
    • Sharing — Adds sharing buttons to your blog posts so readers can easily share your content.
    • \n
    • Shortcode Embeds — Embed videos from YouTube and other media across the web.
    • \n
    • Site Backup — Automatically back up your entire site. Duplicate, clone, migrate, transfer to a new host, and easily restore. Previously known as VaultPress.
    • \n
    • Site Stats — View site visits by date, as well as most popular Pages and Posts.
    • \n
    • Site Verification — Verify your site for use with Google, Bing, and Pinterest and their tools.
    • \n
    • Sitemap — Generate a list of pages to be indexed by search engines like Google or Bing.
    • \n
    • Spam Filtering — Automatically filter out spam comments, product reviews, or contact form submissions.
    • \n
    • Subscriptions — Allow visitors to receive notifications of your latest posts or comments.
    • \n
    • Tiled Galleries — Display your image galleries in three different styles: a rectangular mosaic, a square mosaic, and a circular grid.
    • \n
    • Video Hosting — Upload videos for fast, reliable hosting on WordPress.com.
    • \n
    • WP.me Shortlinks — Generate short and simple links to your content using the wp.me domain.
    • \n
    • Widget Visibility — Configure widgets to appear only on specific pages.
    • \n
    • WordPress.com Toolbar — The WordPress.com Toolbar feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.
    • \n
    \n

    \n
    \nWhat Blocks does Jetpack include?\n\n

    \n

    Blocks are the individual sections that make up a page. There are many block types for you to use. Each block can be edited or moved independently of other blocks. The following is a list of all blocks currently available in Jetpack.

    \n
      \n
    • Ad Block – The Ad block allows you to insert a Jetpack Ad unit anywhere within the content of any post or page.
    • \n
    • Business Hours Block – The Business Hours block allows you to display your business’s opening hours on your site.
    • \n
    • Calendly Block – Jetpack’s Calendly block allows your visitors to schedule one-on-one appointments, group events, and team meetings directly from your website.
    • \n
    • Contact Info Block – The Contact Info block lets you add your contact information (email address, physical address, phone number) to any post or page.
    • \n
    • Donations Block – The Donations block lets you add a payment button to any post or page for a donation, tips, and other contributions, using Stripe as the payment gateway.
    • \n
    • Eventbrite Block – With the Eventbrite block you can embed events on posts or pages.
    • \n
    • Form Block – The Form block lets you add a form to your post or page.
    • \n
    • GIF Block – The GIF block allows you to easily search for and embed an animated GIF image from Giphy directly into a post or page on your WordPress site.
    • \n
    • Google Calendar Block – The Google Calendar block allows you to easily embed a Google Calendar into your post or page
    • \n
    • Image Compare Block – The Image Compare Block allows you to display and compare the differences between two images side by side (or above and below) thanks to a slider.
    • \n
    • Latest Instagram Posts Block – The Latest Instagram Posts Block lets you display your most recent images from Instagram on your site. The block update automatically updates when you post new images to Instagram.
    • \n
    • Mailchimp Block – The Mailchimp block allows visitors to join your Mailchimp list.
    • \n
    • Map Block – The Map Block allows you to add a map to any post or page on your site.
    • \n
    • Markdown Block – With the Markdown block you can create formatted content using only regular characters and some punctuation marks.
    • \n
    • OpenTable Block – With the OpenTable block, you can add a reservation form on posts or pages.
    • \n
    • Pay with PayPal Block – Pay with PayPal lets you add a payment button to any post or page, and immediately start taking PayPal payments for physical products, digital goods, or a donation.
    • \n
    • Payments Block – The Payments Block lets you add a payment button using Stripe as the payment gateway. It works for one-time and recurring payments.
    • \n
    • Pinterest Block – The Pinterest block is the easiest way to embed Pinterest content to your site: it allows you to embed boards, profiles, and pins.
    • \n
    • Podcast Player Block – Jetpack’s Podcast Player block allows you to easily show your visitors a listing of recent episodes from a podcast and play them on your website.
    • \n
    • Related Posts Block – The Related Posts feature scans all of your posts’ contents, analyzes it, and uses that to display contextual posts your visitors might be interested in reading after they’re finished with the current post.
    • \n
    • Repeat Visitor Block – The Repeat Visitor block enables the author to control the visibility of its nested block(s) depending on how many times a visitor has previously visited the page.
    • \n
    • Revue Block – The Revue block creates a simple signup form for readers to opt-in to receive your newsletter.
    • \n
    • Slideshow Block – The Slideshow block lets you insert an image slideshow into a post or page.
    • \n
    • Star Rating Block – The Ratings block allows any site author to add reviews to the site.
    • \n
    • Subscription Form Block – The Subscription Form Block allows you to insert a subscription form within the content area of any post or page, enabling your readers to get notifications when you publish new posts.
    • \n
    • Tiled Gallery Block – With Tiled Galleries you can display your image galleries in four styles: tiled mosaic, circular grid, square tiles, and tiled columns.
    • \n
    • Video Block – The Video block enhances the existing WordPress Video block and allows you to upload videos from your computer to be hosted on WordPress.com, rather than on your host’s servers.
    • \n
    • WhatsApp Button Block – The WhatsAPP Button block will allow your customers to send them a message to enquire about their product or services, or ask for support. Clicking on the button will open WhatsApp and pre-fill the phone number and initial message.
    • \n
    \n

    Jetpack has also created extensions for some WordPress core blocks:

    \n
      \n
    • Social Previews – This extension of the Block Editor allows you to preview what your post / page will look like on search engines and social media.
    • \n
    \n

    \n
    \nDo I need an SSL certificate?\n\n

    \n

    You don’t need an SSL Certificate to run Jetpack on your WordPress website. However, it’s recommended to integrate them both into your overall WordPress security strategy. An SSL certificate (Secure Sockets Layer certificate) creates a secure connection between your website and your site visitors’ browsers. It encrypts any data shared on your site — like addresses, emails, phone numbers, and credit card information — and protects that data from hackers.

    \n

    If you don’t have an SSL certificate, your site will show a “not secure” warning on users’ browsers, which can reduce your legitimacy in their eyes. SSL certificates also have a positive impact on search engine rankings.

    \n

    The process of setting up an SSL certificate will depend on your hosting provider. Some hosts include free certificates, while others charge annually.

    \n

    \n
    \nHow does Jetpack work with WP Super Cache?\n\n

    \n

    WP Super Cache works by caching your WordPress pages as static HTML pages so that page requests, for an already cached page, do not need to be processed by the WordPress PHP scripts. Typically, most visitors of your site will view cached versions of the WordPress pages, so your server will have more processing power to serve an increased number of users.

    \n

    Jetpack has an image CDN that works by caching and serving your WordPress images globally from its own servers. These plugins are both maintained by Automattic and work together to give you ultimate site speed.

    \n

    Automattic actively develops Jetpack Boost to help you increase your website speed in ways beyond WP Super Cache. We recommend using Jetpack Boost instead of WP Super Cache.

    \n

    \n
    \nWhat version of PHP do I need?\n\n

    \n

    Sites must be built on PHP 7.2 or greater, but Jetpack always supports the latest version of PHP.

    \n

    \n
    \nCan Jetpack help my site comply with GDPR?\n\n

    \n

    Our Cookie and Consent Banner can help you comply with GDPR. The European Union’s ePrivacy Directive (often referred to as the ‘cookie law’) and General Data Protection Regulation (GDPR) place requirements on website owners and operators to provide information about, and gain consent for their use of cookies.

    \n

    \n
    \nCan Jetpack be used to transfer websites to a new host?\n\n

    \n

    Jetpack Backup can do a full website migration to a new host, migrate theme files and plugins to a new database, create full database backups, clone websites, repair broken websites by restoring older backups and allow you to easily set up a test site by creating a duplicate of your existing website.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Love it.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fufy on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just love this app.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Stats restored after URL Change

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anne Milne on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I lost both my subscriber list and my historical stats after I changed my URL. Jetpack calls this an Identity Crisis. I explained what had happened on the Forum and it was all restored within 48 hours. Very please with the service.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to restore, easy to backup, super useful option, love it

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lizradtke on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Haven''t had any issues, really helpful and works well

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Atrocious! Did the opposite of what it was supposed to do!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy justaddclaws on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Held me back for years by slowing my sight down so much as to be non-viable as a business prospect. Took me years and finally enlisting the help of ChatGPT to troubleshoot what was going on and, BINGO, Jetpack Boost!!!!!! A total waste of my time and money. I''ve happily just deleted my subscription and will be deleting everything to do with Jetpack right now!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A handy plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fever100 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s a handy plugin that helps keep your site running fast. It’s easy to use and has lots of great tools to make your website better.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Saved

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Detlef (detlefm) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s almost a miracle. I accidentally messed up my database with incorrect data. Then the Jetpack page appeared, and in no time at all, everything was back to normal. Simply brilliant! This saved me at least a day''s work. Thanks, Jetpack.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Attracting an Audience with a Paywall

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy milium5 on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Can I still attract an audience to my website if it uses a payment or subscription model? It feels like there’s a barrier keeping visitors from fully engaging with it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good All-in-One Tool, But Heavy on Performance

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy keithclambert on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Jetpack is packed with useful features — from backups to security and even analytics. It’s great for beginners who want everything in one place.
    However, I noticed my site took longer to load after activating several modules. It’s a solid plugin, but definitely not the lightest option out there. If you have a small site, it’s fine — just monitor your speed.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    horrible

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pieter Bos (senlin) on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    When a plugin, without releasing an update, wreaks havoc among sites bringing them down with Fatal Errors during a weekend, you know you''re dealing with a horrible piece of junk.

    \n\n\n\n

    Avoid this \"plugin\" like the plague!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    good better

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rahul32 on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Can I attract an audience to my site with a payment and subscription model? It feels like there’s some kind of barrier between visitors and the website.

    \n
    \n
    \n", "changelog": "

    15.1.1 – 2025-10-10

    \n

    Bug fixes

    \n
      \n
    • Asset CDN: avoid errors when we do not receive valid information about a plugin from WordPress.org.
    • \n
    \n

    15.1 – 2025-10-08

    \n
      \n
    • Testimonials: Prevent warning when custom post type is not registered.
    • \n
    \n

    Enhancements

    \n
      \n
    • Forms: Add hidden field.
    • \n
    • Forms: Add hidden input field block.
    • \n
    • Forms: Add integrations permissions check.
    • \n
    • Forms: Add new block toggle to skip saving form submisions on WP Admin.
    • \n
    • Forms: Add preloaded config endpoint.
    • \n
    • Forms: Add scheduled deletion for submissions that skip the submission’s inbox and are stored as temporary feedback.
    • \n
    • Forms: Add setting to enable or disable email notifications for form submissions.
    • \n
    • Forms: Allow enabling integration by default.
    • \n
    • Forms: Improve preloading for endpoints.
    • \n
    • Forms: Improve supported integrations filter.
    • \n
    • Forms: Make rating and slider fields available to self-hosted users.
    • \n
    • Forms: Phone field can now contain a country selector combobox.
    • \n
    • Forms: Rename ‘Manage responses’ forms sidebar block panel to ‘Responses storage’.
    • \n
    • Forms: Return integration titles from endpoint.
    • \n
    • Forms: Use localized number format for number of responses shown.
    • \n
    \n

    Improved compatibility

    \n
      \n
    • Change the location of the Jetpack -> Stats submenu item to a new top-level admin menu item called “Stats”.
    • \n
    • Cookie Consent Block: Ensure we always have a default set of colors to style the block when theme colors are not available.
    • \n
    • Forms: Add integrations feature flag.
    • \n
    • Site Accelerator (Image CDN): Add support for images added via Breakdance blocks.
    • \n
    \n

    Bug fixes

    \n
      \n
    • AI Assistant: Fix spacing on Forms block.
    • \n
    • Cookie Consent Widget: Ensure the default widget text can be translated.
    • \n
    • Forms: Don’t override field labels on transforms.
    • \n
    • Forms: Fix MailPoet string warning.
    • \n
    • Forms: Fix missing REST attributes.
    • \n
    • Forms: Fix slider min/max editing.
    • \n
    • Forms: Fix slider value position.
    • \n
    • Resolve conflict with WordPress 6.7.3.
    • \n
    • Sharing: Fix Facebook sharing URL.
    • \n
    • Widget Visibility: Prevent PHP error under specific block conditions.
    • \n
    \n

    See the previous changelogs here

    \n", "description": "

    JETPACK – THE BEST WORDPRESS PLUGIN

    \n

    \n

    Jetpack is a WordPress plugin that helps you create better content, grow your subscribers, earn money from your website and keep it safe, fast, and secure. You can grow and keep track of your website traffic with Jetpack stats, and create better content with Jetpack AI. You can start a newsletter and grow your audience, turning fans into paying subscribers. Create beautiful content with Jetpack Creator and keep your site fast with Jetpack Boost.

    \n

    HOW TO GET STARTED WITH JETPACK

    \n

    Installation is free, quick, and easy. Set up Jetpack in minutes. Take advantage of more robust features like WordPress site security and design and growth tools by upgrading to a paid plan.

    \n

    NEED EXPERT SUPPORT?

    \n

    We have a global team of Happiness Engineers ready to provide incredible support. Ask your questions in the support forum or contact support.

    \n

    WHY USE JETPACK ON YOUR SITE

    \n

    Safer. Faster. More traffic.

    \n

    WordPress security, performance, marketing, and design tools — Jetpack is made by WordPress experts to make WP sites safer and faster, and help you grow your traffic.

    \n

    24/7 AUTO SITE SECURITY

    \n

    We guard your site so you can run your site or business. Jetpack Security provides easy-to-use, comprehensive WordPress site security including auto real-time backups and easy restores, malware scans, and spam protection. Essential features like brute force protection and basic downtime / uptime monitoring are free.

    \n
      \n
    • Back up your site automatically in real time and restore to any point with one click. Cloud storage starts at 10GB, which is more than enough for most sites, with additional storage options available if needed. Great for eCommerce stores especially Woo.
    • \n
    • Manage migration to a new host, migrate theme files and plugins to a new database, easily duplicate websites, create full database backups, clone websites, repair broken websites by restoring older backups or easily set up a test site by creating a duplicate of your existing WP website.
    • \n
    • See every site change and who made it with the activity log, great for coordination, debug, maintenance, or troubleshooting.
    • \n
    • Examine incoming traffic to your WordPress site with our WAF (Web Application Firewall) and decide to allow or block it based on various rules.
    • \n
    • Add an important layer of protection to your site with our WAF (Web Application Firewall), particularly when attackers actively exploit unpatched vulnerabilities.
    • \n
    • Automatically perform malware scans and security scans for other code threats. One click fix to restore your site for malware.
    • \n
    • Block spam comments and form responses with anti spam features powered by Akismet.
    • \n
    • Brute force attack protection to protect your WordPress login page from attacks.
    • \n
    • Monitor your site uptime / downtime and get an instant alert of any change by email.
    • \n
    • Secure WordPress.com powered login used by millions of sites with optional 2FA (two factor authentication) for extra protection.
    • \n
    • Auto update individual plugins for easy site maintenance and management.
    • \n
    \n

    You can purchase all of Jetpack’s security features in our Security bundle, or VaultPress Backup, Scan, and Akismet Anti-spam can each be purchased individually.

    \n

    PEAK SPEED AND PERFORMANCE

    \n

    Get blazing fast site speed with Jetpack. Jetpack’s free CDN (content delivery network) auto optimizes your images. Watch your page load times decrease — we’ll optimize your images and serve them from our own powerful global network, and speed up your site on mobile devices to reduce bandwidth usage and save money!

    \n
      \n
    • Image CDN for images and core static files, like CSS and JavaScript, served from our servers, not yours, which saves you money and bandwidth.
    • \n
    • Unlimited, high speed, ad free video hosting keeps the focus on your content, not on ads or recommendations that lead people off site.
    • \n
    • Custom site search is incredibly powerful and customizable. Helps your visitors instantly find the right content so they read and buy more. Works great with WooCommerce / eCommerce sites to help filter products so customers get what they want on your site faster.
    • \n
    • Recommended to use with Jetpack Boost for ultimate WordPress site speed.
    • \n
    \n

    POWERFUL TOOLS FOR GROWTH

    \n

    Create and customize your WordPress site, optimize it for visitors and revenue, and enjoy watching your stats tick up. Build it, share it, and watch it grow.

    \n
      \n
    • Auto publish blog posts and products to social media by simply using our tools to connect to Facebook, Bluesky, Threads, Tumblr, Mastodon, LinkedIn, and Nextdoor.
    • \n
    • Easily share Instagram posts on your pages and blog posts.
    • \n
    • Collect a payment or donation, sell a product, service, or membership with simple integrations with PayPal and Stripe.
    • \n
    • Grow traffic with SEO tools for Google, Bing, Facebook, and WordPress.com. XML sitemap created automatically.
    • \n
    • Advertise on your site to generate revenue. The ad network automatically does the work for you to find high-quality ads that are placed on your site.
    • \n
    • Manage Jetpack features from anywhere with the official WordPress mobile app, available for Apple iOS (iPhone or iPad) and Google Android.
    • \n
    • Looking for Customer Relationship Management? Check out the Jetpack CRM plugin which works alongside Jetpack to give you a simple and practical way to build relationships with your customers and leads.
    • \n
    \n

    POWERFUL STATS TO GROW YOUR SITE

    \n

    With Jetpack Stats, you don’t need to be a data scientist to see how your site is performing.

    \n
      \n
    • Advanced site stats and analytics to help you understand your audience.
    • \n
    • Discover your top performing posts & pages.
    • \n
    • See who is creating the most popular content on your team with our author metrics.
    • \n
    • Easily keep track of your content creation habits & trends over the years.
    • \n
    • View weekly and yearly trends with 7-day Highlights and Year in Review.
    • \n
    • See what popular social networks your content is being shared to the most.
    • \n
    • Explore real-time data on visitors, likes, and comments.
    • \n
    • Get detailed insights on the referrers that bring traffic to your site.
    • \n
    • Discover what countries your visitors are coming from.
    • \n
    • Measure link clicks, video plays, and file downloads within your site.
    • \n
    \n

    WRITE SMARTER, NOT HARDER.

    \n

    Experience the ease of crafting professional content with intuitive and powerful AI. Jetpack AI Assistant effortlessly integrates with your WordPress editor, offering an intuitive interface to interact with AI.
    \nThis powerful block lets you generate diverse content at your command, significantly reducing the time and effort required in content creation.

    \n

    Simply provide a prompt, and watch as Jetpack AI Assistant crafts compelling blog posts, detailed pages, structured lists, and comprehensive tables – all tailored to your needs.

    \n
      \n
    • Harness AI power directly from your editor.
    • \n
    • Unlock high-quality, tailored content at your command.
    • \n
    • Maintain professional standards with ease.
    • \n
    • AI-powered translations across numerous languages at your fingertips, breaking down language barriers.
    • \n
    \n

    PROMOTE YOUR CONTENT EASILY WITH JETPACK BLAZE

    \n

    Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.

    \n
      \n
    • Create your ad. Choose your audience. Set your budget. It’s that easy.
    • \n
    • Amplify your reach for just a few dollars.
    • \n
    \n

    EASY DESIGN TOOLS

    \n

    Quickly customize your site to make it stand out — no coding needed.

    \n
      \n
    • Themes — Simple WordPress themes to get started on your site.
    • \n
    • Related posts — Keep visitors on your site by automatically showing them related content they will be interested in.
    • \n
    • Gallery and Slideshow tools — Image galleries, carousel slider, and slideshows for WP sites and stores.
    • \n
    • Subscriptions — Make it easy for visitors to sign up to receive notifications of your latest posts and comments.
    • \n
    • Contact form — Easily build unlimited contact forms for free without any coding. Receive email notifications for each response. Integrate with mail solutions like Creative Mail to reach your customers and leads quickly. Connect to Jetpack Anti spam (powered by Akismet) to filter submissions.
    • \n
    • oEmbed Support — easily embed images, posts, and links from Facebook and Instagram.
    • \n
    \n

    INTEGRATIONS

    \n

    Jetpack is updated monthly to ensure seamless integration with top WordPress plugins and other tech products.

    \n
      \n
    • Built for WooCommerce: Jetpack and WooCommerce are both made by Automattic. Backup, Scan, Anti-spam, integrate perfectly for Woo / eComm stores.
    • \n
    • Jetpack is fully compatible with v2.0 of the official AMP plugin for WordPress.
    • \n
    • Better understand your customers and marketing with Google Analytics (GA) integration.
    • \n
    • Social media platforms: Instagram, Facebook, Tumblr, LinkedIn, Threads, Bluesky, Nextdoor.
    • \n
    • Simple Blocks to customize your site: Pinterest, Whatsapp, Podcast player, GIFs, maps, tiled gallery, slideshow.
    • \n
    • Payment processors: easily collect payments or donations and sell products through Stripe and PayPal.
    • \n
    • Site speed and performance plugins: Works great with WP Super Cache by Automattic and Cloudflare.
    • \n
    • Contact form: Anti-spam (Powered by Akismet) blocks spam comments for Jetpack forms, Contact Form 7, Ninja Forms, Gravity Forms, Formidable Forms, and more.
    • \n
    • Other tech integrations: Instagram, Creative Mail, Mailchimp, Calendly, Whatsapp, Pinterest, Revue, and more.
    • \n
    \n

    EXPLORE MORE OF JETPACK

    \n

    If you like Jetpack, consider checking out our other products and bundles

    \n
      \n
    • Jetpack Complete – The Complete bundle with real‑time security, top performance, and everything you need to grow your business.
    • \n
    • Jetpack Security – Our Security bundle provides easy‑to‑use, comprehensive WordPress site security, including real‑time backups, a web application firewall, malware scanning, and spam protection.
    • \n
    • Jetpack Backup – Save every change and get back online quickly with one‑click restores from Jetpack VaultPress Backup.
    • \n
    • Jetpack Scan – Protect your site from bad actors around‑the‑clock ‑ with our web application firewall (WAF) and automated malware scanning with one‑click fixes.
    • \n
    • Jetpack Search – Instantly deliver the most relevant results to your visitors with Jetpack Search. No coding required, no ads, and no tracking.
    • \n
    • Jetpack Boost – Increase your website speed. Enjoy the same performance advantages as the world’s leading websites, no developer required.
    • \n
    • Jetpack VideoPress – Display stunning‑quality video with none of the hassle. Drag and drop videos through the WordPress editor and keep the focus on your content, not the ads.
    • \n
    • Jetpack AI – Turn your ideas into ready‑to‑publish content at lightspeed.
    • \n
    • Jetpack Stats – Keep track of your website visits, popular posts, newsletter subscribers and more.
    • \n
    • Jetpack Social – Automatically share your website content to your favorite social media platforms, from one place.
    • \n
    • Jetpack CRM – Jetpack CRM has all of the tools you need to grow your business. It’s also modular, so you can customize it to suit your needs.
    • \n
    • Jetpack Creator – Craft stunning content, boost your subscriber base, and monetize your online presence.
    • \n
    • Jetpack Newsletter – Transform your blog posts into newsletters to easily reach your subscribers. Offer paid subscriptions and earn from your content.
    • \n
    \n

    KEEP SPAM OFF YOUR WEBSITE

    \n
      \n
    • Akismet Anti-spam – Automatically clear spam from comments and forms. Save time, get more responses, give your visitors a better experience – all without lifting a finger.
    • \n
    \n

    PROMOTE YOUR CONTENT FOR MORE VIEWS

    \n
      \n
    • Blaze – Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.
    • \n
    \n

    MANAGE MORE THAN ONE SITE?

    \n
      \n
    • Jetpack Manage – All the tools you need to manage multiple WordPress sites. Monitor site security, performance, and traffic, and get alerted if a site needs attention.
    • \n
    \n

    FLY HIGHER WITH INDIVIDUAL PLUGINS

    \n

    Ever wish you could have just one feature of Jetpack in its own plugin? Now you can. Check out our individual plugins and install only what you need.

    \n\n", "screenshots": "
    1. \"Jetpack

      Jetpack Security provides easy-to-use, comprehensive WordPress site security including backups, malware scanning, and spam protection.

    2. \"Save

      Save every change with real-time backups and get back online quickly with one-click restores.

    3. \"Automated

      Automated malware scanning and one-click fixes keep your site one step ahead of security threats.

    4. \"Promote

      Promote your newest posts, pages, and products across your social media channels.

    5. \"Incredibly

      Incredibly powerful and customizable, help your visitors instantly find the right content – right when they need it.

    6. \"See

      See what’s working with content performance metrics. Simple, yet powerful stats to grow your site.

    7. \"Stunning‑quality

      Stunning‑quality video with none of the hassle. Drag and drop videos through the WordPress editor and keep the focus on your content, not the ads.

    ", "installation": "

    Automated Installation

    \n

    Installation is free, quick, and easy. Set up Jetpack in minutes.

    \n

    Manual Alternatives

    \n

    Alternatively, install Jetpack via the plugin directory, or upload the files manually to your server and follow the on-screen instructions. If you need additional help read our detailed instructions.

    \n"}, "versions": {"6.1": "https://downloads.wordpress.org/plugin/jetpack.6.1.zip", "6.2": "https://downloads.wordpress.org/plugin/jetpack.6.2.zip", "6.3": "https://downloads.wordpress.org/plugin/jetpack.6.3.zip", "6.4": "https://downloads.wordpress.org/plugin/jetpack.6.4.zip", "6.5": "https://downloads.wordpress.org/plugin/jetpack.6.5.zip", "6.6": "https://downloads.wordpress.org/plugin/jetpack.6.6.zip", "6.7": "https://downloads.wordpress.org/plugin/jetpack.6.7.zip", "6.8": "https://downloads.wordpress.org/plugin/jetpack.6.8.zip", "6.9": "https://downloads.wordpress.org/plugin/jetpack.6.9.zip", "7.0": "https://downloads.wordpress.org/plugin/jetpack.7.0.zip", "7.1": "https://downloads.wordpress.org/plugin/jetpack.7.1.zip", "7.2": "https://downloads.wordpress.org/plugin/jetpack.7.2.zip", "7.3": "https://downloads.wordpress.org/plugin/jetpack.7.3.zip", "7.4": "https://downloads.wordpress.org/plugin/jetpack.7.4.zip", "7.5": "https://downloads.wordpress.org/plugin/jetpack.7.5.zip", "7.6": "https://downloads.wordpress.org/plugin/jetpack.7.6.zip", "7.7": "https://downloads.wordpress.org/plugin/jetpack.7.7.zip", "7.8": "https://downloads.wordpress.org/plugin/jetpack.7.8.zip", "7.9": "https://downloads.wordpress.org/plugin/jetpack.7.9.zip", "8.0": "https://downloads.wordpress.org/plugin/jetpack.8.0.zip", "8.1": "https://downloads.wordpress.org/plugin/jetpack.8.1.zip", "8.2": "https://downloads.wordpress.org/plugin/jetpack.8.2.zip", "8.3": "https://downloads.wordpress.org/plugin/jetpack.8.3.zip", "8.4": "https://downloads.wordpress.org/plugin/jetpack.8.4.zip", "8.5": "https://downloads.wordpress.org/plugin/jetpack.8.5.zip", "8.6": "https://downloads.wordpress.org/plugin/jetpack.8.6.zip", "8.7": "https://downloads.wordpress.org/plugin/jetpack.8.7.zip", "8.8": "https://downloads.wordpress.org/plugin/jetpack.8.8.zip", "8.9": "https://downloads.wordpress.org/plugin/jetpack.8.9.zip", "9.0": "https://downloads.wordpress.org/plugin/jetpack.9.0.zip", "9.1": "https://downloads.wordpress.org/plugin/jetpack.9.1.zip", "9.2": "https://downloads.wordpress.org/plugin/jetpack.9.2.zip", "9.3": "https://downloads.wordpress.org/plugin/jetpack.9.3.zip", "9.4": "https://downloads.wordpress.org/plugin/jetpack.9.4.zip", "9.5": "https://downloads.wordpress.org/plugin/jetpack.9.5.zip", "9.6": "https://downloads.wordpress.org/plugin/jetpack.9.6.zip", "9.7": "https://downloads.wordpress.org/plugin/jetpack.9.7.zip", "9.8": "https://downloads.wordpress.org/plugin/jetpack.9.8.zip", "9.9": "https://downloads.wordpress.org/plugin/jetpack.9.9.zip", "10.0": "https://downloads.wordpress.org/plugin/jetpack.10.0.zip", "10.1": "https://downloads.wordpress.org/plugin/jetpack.10.1.zip", "10.2": "https://downloads.wordpress.org/plugin/jetpack.10.2.zip", "10.3": "https://downloads.wordpress.org/plugin/jetpack.10.3.zip", "10.4": "https://downloads.wordpress.org/plugin/jetpack.10.4.zip", "10.5": "https://downloads.wordpress.org/plugin/jetpack.10.5.zip", "10.6": "https://downloads.wordpress.org/plugin/jetpack.10.6.zip", "10.7": "https://downloads.wordpress.org/plugin/jetpack.10.7.zip", "10.8": "https://downloads.wordpress.org/plugin/jetpack.10.8.zip", "10.9": "https://downloads.wordpress.org/plugin/jetpack.10.9.zip", "11.0": "https://downloads.wordpress.org/plugin/jetpack.11.0.zip", "11.1": "https://downloads.wordpress.org/plugin/jetpack.11.1.zip", "11.2": "https://downloads.wordpress.org/plugin/jetpack.11.2.zip", "11.3": "https://downloads.wordpress.org/plugin/jetpack.11.3.zip", "11.4": "https://downloads.wordpress.org/plugin/jetpack.11.4.zip", "11.5": "https://downloads.wordpress.org/plugin/jetpack.11.5.zip", "11.6": "https://downloads.wordpress.org/plugin/jetpack.11.6.zip", "11.7": "https://downloads.wordpress.org/plugin/jetpack.11.7.zip", "11.8": "https://downloads.wordpress.org/plugin/jetpack.11.8.zip", "11.9": "https://downloads.wordpress.org/plugin/jetpack.11.9.zip", "12.0": "https://downloads.wordpress.org/plugin/jetpack.12.0.zip", "12.1": "https://downloads.wordpress.org/plugin/jetpack.12.1.zip", "12.2": "https://downloads.wordpress.org/plugin/jetpack.12.2.zip", "12.3": "https://downloads.wordpress.org/plugin/jetpack.12.3.zip", "12.4": "https://downloads.wordpress.org/plugin/jetpack.12.4.zip", "12.5": "https://downloads.wordpress.org/plugin/jetpack.12.5.zip", "12.6": "https://downloads.wordpress.org/plugin/jetpack.12.6.zip", "12.7": "https://downloads.wordpress.org/plugin/jetpack.12.7.zip", "12.8": "https://downloads.wordpress.org/plugin/jetpack.12.8.zip", "12.9": "https://downloads.wordpress.org/plugin/jetpack.12.9.zip", "13.0": "https://downloads.wordpress.org/plugin/jetpack.13.0.zip", "13.1": "https://downloads.wordpress.org/plugin/jetpack.13.1.zip", "13.2": "https://downloads.wordpress.org/plugin/jetpack.13.2.zip", "13.3": "https://downloads.wordpress.org/plugin/jetpack.13.3.zip", "13.4": "https://downloads.wordpress.org/plugin/jetpack.13.4.zip", "13.5": "https://downloads.wordpress.org/plugin/jetpack.13.5.zip", "13.6": "https://downloads.wordpress.org/plugin/jetpack.13.6.zip", "13.7": "https://downloads.wordpress.org/plugin/jetpack.13.7.zip", "13.8": "https://downloads.wordpress.org/plugin/jetpack.13.8.zip", "13.9": "https://downloads.wordpress.org/plugin/jetpack.13.9.zip", "14.0": "https://downloads.wordpress.org/plugin/jetpack.14.0.zip", "14.1": "https://downloads.wordpress.org/plugin/jetpack.14.1.zip", "14.2": "https://downloads.wordpress.org/plugin/jetpack.14.2.zip", "14.3": "https://downloads.wordpress.org/plugin/jetpack.14.3.zip", "14.4": "https://downloads.wordpress.org/plugin/jetpack.14.4.zip", "14.5": "https://downloads.wordpress.org/plugin/jetpack.14.5.zip", "14.6": "https://downloads.wordpress.org/plugin/jetpack.14.6.zip", "14.7": "https://downloads.wordpress.org/plugin/jetpack.14.7.zip", "14.8": "https://downloads.wordpress.org/plugin/jetpack.14.8.zip", "14.9": "https://downloads.wordpress.org/plugin/jetpack.14.9.zip", "15.0": "https://downloads.wordpress.org/plugin/jetpack.15.0.zip", "15.1": "https://downloads.wordpress.org/plugin/jetpack.15.1.zip", "2.0.9": "https://downloads.wordpress.org/plugin/jetpack.2.0.9.zip", "2.1.7": "https://downloads.wordpress.org/plugin/jetpack.2.1.7.zip", "2.4.7": "https://downloads.wordpress.org/plugin/jetpack.2.4.7.zip", "2.5.5": "https://downloads.wordpress.org/plugin/jetpack.2.5.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/jetpack.2.6.6.zip", "2.7.5": "https://downloads.wordpress.org/plugin/jetpack.2.7.5.zip", "2.8.5": "https://downloads.wordpress.org/plugin/jetpack.2.8.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/jetpack.2.9.6.zip", "3.0.6": "https://downloads.wordpress.org/plugin/jetpack.3.0.6.zip", "3.1.5": "https://downloads.wordpress.org/plugin/jetpack.3.1.5.zip", "3.2.5": "https://downloads.wordpress.org/plugin/jetpack.3.2.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/jetpack.3.3.6.zip", "3.4.6": "https://downloads.wordpress.org/plugin/jetpack.3.4.6.zip", "3.5.6": "https://downloads.wordpress.org/plugin/jetpack.3.5.6.zip", "3.6.4": "https://downloads.wordpress.org/plugin/jetpack.3.6.4.zip", "3.7.5": "https://downloads.wordpress.org/plugin/jetpack.3.7.5.zip", "3.8.5": "https://downloads.wordpress.org/plugin/jetpack.3.8.5.zip", "4.0.7": "https://downloads.wordpress.org/plugin/jetpack.4.0.7.zip", "4.1.4": "https://downloads.wordpress.org/plugin/jetpack.4.1.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/jetpack.4.2.5.zip", "4.3.5": "https://downloads.wordpress.org/plugin/jetpack.4.3.5.zip", "4.4.5": "https://downloads.wordpress.org/plugin/jetpack.4.4.5.zip", "4.5.3": "https://downloads.wordpress.org/plugin/jetpack.4.5.3.zip", "4.6.3": "https://downloads.wordpress.org/plugin/jetpack.4.6.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/jetpack.4.7.4.zip", "4.8.5": "https://downloads.wordpress.org/plugin/jetpack.4.8.5.zip", "4.9.3": "https://downloads.wordpress.org/plugin/jetpack.4.9.3.zip", "5.0.3": "https://downloads.wordpress.org/plugin/jetpack.5.0.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/jetpack.5.1.4.zip", "5.2.5": "https://downloads.wordpress.org/plugin/jetpack.5.2.5.zip", "5.3.4": "https://downloads.wordpress.org/plugin/jetpack.5.3.4.zip", "5.4.4": "https://downloads.wordpress.org/plugin/jetpack.5.4.4.zip", "5.5.5": "https://downloads.wordpress.org/plugin/jetpack.5.5.5.zip", "5.6.5": "https://downloads.wordpress.org/plugin/jetpack.5.6.5.zip", "5.7.5": "https://downloads.wordpress.org/plugin/jetpack.5.7.5.zip", "5.8.4": "https://downloads.wordpress.org/plugin/jetpack.5.8.4.zip", "5.9.4": "https://downloads.wordpress.org/plugin/jetpack.5.9.4.zip", "6.0.4": "https://downloads.wordpress.org/plugin/jetpack.6.0.4.zip", "6.1.1": "https://downloads.wordpress.org/plugin/jetpack.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/jetpack.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/jetpack.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/jetpack.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/jetpack.6.1.5.zip", "6.2.1": "https://downloads.wordpress.org/plugin/jetpack.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/jetpack.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/jetpack.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/jetpack.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/jetpack.6.2.5.zip", "6.3.1": "https://downloads.wordpress.org/plugin/jetpack.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/jetpack.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/jetpack.6.3.3.zip", "6.3.4": "https://downloads.wordpress.org/plugin/jetpack.6.3.4.zip", "6.3.5": "https://downloads.wordpress.org/plugin/jetpack.6.3.5.zip", "6.3.6": "https://downloads.wordpress.org/plugin/jetpack.6.3.6.zip", "6.3.7": "https://downloads.wordpress.org/plugin/jetpack.6.3.7.zip", "6.4.1": "https://downloads.wordpress.org/plugin/jetpack.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/jetpack.6.4.2.zip", "6.4.3": "https://downloads.wordpress.org/plugin/jetpack.6.4.3.zip", "6.4.4": "https://downloads.wordpress.org/plugin/jetpack.6.4.4.zip", "6.4.5": "https://downloads.wordpress.org/plugin/jetpack.6.4.5.zip", "6.4.6": "https://downloads.wordpress.org/plugin/jetpack.6.4.6.zip", "6.5.1": "https://downloads.wordpress.org/plugin/jetpack.6.5.1.zip", "6.5.2": "https://downloads.wordpress.org/plugin/jetpack.6.5.2.zip", "6.5.3": "https://downloads.wordpress.org/plugin/jetpack.6.5.3.zip", "6.5.4": "https://downloads.wordpress.org/plugin/jetpack.6.5.4.zip", "6.6.1": "https://downloads.wordpress.org/plugin/jetpack.6.6.1.zip", "6.6.2": "https://downloads.wordpress.org/plugin/jetpack.6.6.2.zip", "6.6.3": "https://downloads.wordpress.org/plugin/jetpack.6.6.3.zip", "6.6.4": "https://downloads.wordpress.org/plugin/jetpack.6.6.4.zip", "6.6.5": "https://downloads.wordpress.org/plugin/jetpack.6.6.5.zip", "6.7.1": "https://downloads.wordpress.org/plugin/jetpack.6.7.1.zip", "6.7.2": "https://downloads.wordpress.org/plugin/jetpack.6.7.2.zip", "6.7.3": "https://downloads.wordpress.org/plugin/jetpack.6.7.3.zip", "6.7.4": "https://downloads.wordpress.org/plugin/jetpack.6.7.4.zip", "6.8.1": "https://downloads.wordpress.org/plugin/jetpack.6.8.1.zip", "6.8.2": "https://downloads.wordpress.org/plugin/jetpack.6.8.2.zip", "6.8.3": "https://downloads.wordpress.org/plugin/jetpack.6.8.3.zip", "6.8.4": "https://downloads.wordpress.org/plugin/jetpack.6.8.4.zip", "6.8.5": "https://downloads.wordpress.org/plugin/jetpack.6.8.5.zip", "6.9.1": "https://downloads.wordpress.org/plugin/jetpack.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/jetpack.6.9.2.zip", "6.9.3": "https://downloads.wordpress.org/plugin/jetpack.6.9.3.zip", "6.9.4": "https://downloads.wordpress.org/plugin/jetpack.6.9.4.zip", "7.0.1": "https://downloads.wordpress.org/plugin/jetpack.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/jetpack.7.0.2.zip", "7.0.3": "https://downloads.wordpress.org/plugin/jetpack.7.0.3.zip", "7.0.4": "https://downloads.wordpress.org/plugin/jetpack.7.0.4.zip", "7.0.5": "https://downloads.wordpress.org/plugin/jetpack.7.0.5.zip", "7.1.1": "https://downloads.wordpress.org/plugin/jetpack.7.1.1.zip", "7.1.2": "https://downloads.wordpress.org/plugin/jetpack.7.1.2.zip", "7.1.3": "https://downloads.wordpress.org/plugin/jetpack.7.1.3.zip", "7.1.4": "https://downloads.wordpress.org/plugin/jetpack.7.1.4.zip", "7.1.5": "https://downloads.wordpress.org/plugin/jetpack.7.1.5.zip", "7.2.1": "https://downloads.wordpress.org/plugin/jetpack.7.2.1.zip", "7.2.2": "https://downloads.wordpress.org/plugin/jetpack.7.2.2.zip", "7.2.3": "https://downloads.wordpress.org/plugin/jetpack.7.2.3.zip", "7.2.4": "https://downloads.wordpress.org/plugin/jetpack.7.2.4.zip", "7.2.5": "https://downloads.wordpress.org/plugin/jetpack.7.2.5.zip", "7.3.1": "https://downloads.wordpress.org/plugin/jetpack.7.3.1.zip", "7.3.2": "https://downloads.wordpress.org/plugin/jetpack.7.3.2.zip", "7.3.3": "https://downloads.wordpress.org/plugin/jetpack.7.3.3.zip", "7.3.4": "https://downloads.wordpress.org/plugin/jetpack.7.3.4.zip", "7.3.5": "https://downloads.wordpress.org/plugin/jetpack.7.3.5.zip", "7.4.1": "https://downloads.wordpress.org/plugin/jetpack.7.4.1.zip", "7.4.2": "https://downloads.wordpress.org/plugin/jetpack.7.4.2.zip", "7.4.3": "https://downloads.wordpress.org/plugin/jetpack.7.4.3.zip", "7.4.4": "https://downloads.wordpress.org/plugin/jetpack.7.4.4.zip", "7.4.5": "https://downloads.wordpress.org/plugin/jetpack.7.4.5.zip", "7.5.1": "https://downloads.wordpress.org/plugin/jetpack.7.5.1.zip", "7.5.2": "https://downloads.wordpress.org/plugin/jetpack.7.5.2.zip", "7.5.3": "https://downloads.wordpress.org/plugin/jetpack.7.5.3.zip", "7.5.4": "https://downloads.wordpress.org/plugin/jetpack.7.5.4.zip", "7.5.5": "https://downloads.wordpress.org/plugin/jetpack.7.5.5.zip", "7.5.6": "https://downloads.wordpress.org/plugin/jetpack.7.5.6.zip", "7.5.7": "https://downloads.wordpress.org/plugin/jetpack.7.5.7.zip", "7.6.1": "https://downloads.wordpress.org/plugin/jetpack.7.6.1.zip", "7.6.2": "https://downloads.wordpress.org/plugin/jetpack.7.6.2.zip", "7.6.3": "https://downloads.wordpress.org/plugin/jetpack.7.6.3.zip", "7.6.4": "https://downloads.wordpress.org/plugin/jetpack.7.6.4.zip", "7.7.1": "https://downloads.wordpress.org/plugin/jetpack.7.7.1.zip", "7.7.2": "https://downloads.wordpress.org/plugin/jetpack.7.7.2.zip", "7.7.3": "https://downloads.wordpress.org/plugin/jetpack.7.7.3.zip", "7.7.4": "https://downloads.wordpress.org/plugin/jetpack.7.7.4.zip", "7.7.5": "https://downloads.wordpress.org/plugin/jetpack.7.7.5.zip", "7.7.6": "https://downloads.wordpress.org/plugin/jetpack.7.7.6.zip", "7.8.1": "https://downloads.wordpress.org/plugin/jetpack.7.8.1.zip", "7.8.2": "https://downloads.wordpress.org/plugin/jetpack.7.8.2.zip", "7.8.3": "https://downloads.wordpress.org/plugin/jetpack.7.8.3.zip", "7.8.4": "https://downloads.wordpress.org/plugin/jetpack.7.8.4.zip", "7.9.1": "https://downloads.wordpress.org/plugin/jetpack.7.9.1.zip", "7.9.2": "https://downloads.wordpress.org/plugin/jetpack.7.9.2.zip", "7.9.3": "https://downloads.wordpress.org/plugin/jetpack.7.9.3.zip", "7.9.4": "https://downloads.wordpress.org/plugin/jetpack.7.9.4.zip", "8.0.1": "https://downloads.wordpress.org/plugin/jetpack.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/plugin/jetpack.8.0.2.zip", "8.0.3": "https://downloads.wordpress.org/plugin/jetpack.8.0.3.zip", "8.1.1": "https://downloads.wordpress.org/plugin/jetpack.8.1.1.zip", "8.1.2": "https://downloads.wordpress.org/plugin/jetpack.8.1.2.zip", "8.1.3": "https://downloads.wordpress.org/plugin/jetpack.8.1.3.zip", "8.1.4": "https://downloads.wordpress.org/plugin/jetpack.8.1.4.zip", "8.2.1": "https://downloads.wordpress.org/plugin/jetpack.8.2.1.zip", "8.2.2": "https://downloads.wordpress.org/plugin/jetpack.8.2.2.zip", "8.2.3": "https://downloads.wordpress.org/plugin/jetpack.8.2.3.zip", "8.2.4": "https://downloads.wordpress.org/plugin/jetpack.8.2.4.zip", "8.2.5": "https://downloads.wordpress.org/plugin/jetpack.8.2.5.zip", "8.2.6": "https://downloads.wordpress.org/plugin/jetpack.8.2.6.zip", "8.3.1": "https://downloads.wordpress.org/plugin/jetpack.8.3.1.zip", "8.3.2": "https://downloads.wordpress.org/plugin/jetpack.8.3.2.zip", "8.3.3": "https://downloads.wordpress.org/plugin/jetpack.8.3.3.zip", "8.4.1": "https://downloads.wordpress.org/plugin/jetpack.8.4.1.zip", "8.4.2": "https://downloads.wordpress.org/plugin/jetpack.8.4.2.zip", "8.4.3": "https://downloads.wordpress.org/plugin/jetpack.8.4.3.zip", "8.4.4": "https://downloads.wordpress.org/plugin/jetpack.8.4.4.zip", "8.4.5": "https://downloads.wordpress.org/plugin/jetpack.8.4.5.zip", "8.5.1": "https://downloads.wordpress.org/plugin/jetpack.8.5.1.zip", "8.5.2": "https://downloads.wordpress.org/plugin/jetpack.8.5.2.zip", "8.5.3": "https://downloads.wordpress.org/plugin/jetpack.8.5.3.zip", "8.6.1": "https://downloads.wordpress.org/plugin/jetpack.8.6.1.zip", "8.6.2": "https://downloads.wordpress.org/plugin/jetpack.8.6.2.zip", "8.6.3": "https://downloads.wordpress.org/plugin/jetpack.8.6.3.zip", "8.6.4": "https://downloads.wordpress.org/plugin/jetpack.8.6.4.zip", "8.7.1": "https://downloads.wordpress.org/plugin/jetpack.8.7.1.zip", "8.7.2": "https://downloads.wordpress.org/plugin/jetpack.8.7.2.zip", "8.7.3": "https://downloads.wordpress.org/plugin/jetpack.8.7.3.zip", "8.7.4": "https://downloads.wordpress.org/plugin/jetpack.8.7.4.zip", "8.8.1": "https://downloads.wordpress.org/plugin/jetpack.8.8.1.zip", "8.8.2": "https://downloads.wordpress.org/plugin/jetpack.8.8.2.zip", "8.8.3": "https://downloads.wordpress.org/plugin/jetpack.8.8.3.zip", "8.8.4": "https://downloads.wordpress.org/plugin/jetpack.8.8.4.zip", "8.8.5": "https://downloads.wordpress.org/plugin/jetpack.8.8.5.zip", "8.9.1": "https://downloads.wordpress.org/plugin/jetpack.8.9.1.zip", "8.9.2": "https://downloads.wordpress.org/plugin/jetpack.8.9.2.zip", "8.9.3": "https://downloads.wordpress.org/plugin/jetpack.8.9.3.zip", "8.9.4": "https://downloads.wordpress.org/plugin/jetpack.8.9.4.zip", "9.0.1": "https://downloads.wordpress.org/plugin/jetpack.9.0.1.zip", "9.0.2": "https://downloads.wordpress.org/plugin/jetpack.9.0.2.zip", "9.0.3": "https://downloads.wordpress.org/plugin/jetpack.9.0.3.zip", "9.0.4": "https://downloads.wordpress.org/plugin/jetpack.9.0.4.zip", "9.0.5": "https://downloads.wordpress.org/plugin/jetpack.9.0.5.zip", "9.1.1": "https://downloads.wordpress.org/plugin/jetpack.9.1.1.zip", "9.1.2": "https://downloads.wordpress.org/plugin/jetpack.9.1.2.zip", "9.1.3": "https://downloads.wordpress.org/plugin/jetpack.9.1.3.zip", "9.2.1": "https://downloads.wordpress.org/plugin/jetpack.9.2.1.zip", "9.2.2": "https://downloads.wordpress.org/plugin/jetpack.9.2.2.zip", "9.2.3": "https://downloads.wordpress.org/plugin/jetpack.9.2.3.zip", "9.2.4": "https://downloads.wordpress.org/plugin/jetpack.9.2.4.zip", "9.3.1": "https://downloads.wordpress.org/plugin/jetpack.9.3.1.zip", "9.3.2": "https://downloads.wordpress.org/plugin/jetpack.9.3.2.zip", "9.3.3": "https://downloads.wordpress.org/plugin/jetpack.9.3.3.zip", "9.3.4": "https://downloads.wordpress.org/plugin/jetpack.9.3.4.zip", "9.3.5": "https://downloads.wordpress.org/plugin/jetpack.9.3.5.zip", "9.4.1": "https://downloads.wordpress.org/plugin/jetpack.9.4.1.zip", "9.4.2": "https://downloads.wordpress.org/plugin/jetpack.9.4.2.zip", "9.4.3": "https://downloads.wordpress.org/plugin/jetpack.9.4.3.zip", "9.4.4": "https://downloads.wordpress.org/plugin/jetpack.9.4.4.zip", "9.5.1": "https://downloads.wordpress.org/plugin/jetpack.9.5.1.zip", "9.5.2": "https://downloads.wordpress.org/plugin/jetpack.9.5.2.zip", "9.5.3": "https://downloads.wordpress.org/plugin/jetpack.9.5.3.zip", "9.5.4": "https://downloads.wordpress.org/plugin/jetpack.9.5.4.zip", "9.5.5": "https://downloads.wordpress.org/plugin/jetpack.9.5.5.zip", "9.6.1": "https://downloads.wordpress.org/plugin/jetpack.9.6.1.zip", "9.6.2": "https://downloads.wordpress.org/plugin/jetpack.9.6.2.zip", "9.6.3": "https://downloads.wordpress.org/plugin/jetpack.9.6.3.zip", "9.6.4": "https://downloads.wordpress.org/plugin/jetpack.9.6.4.zip", "9.7.1": "https://downloads.wordpress.org/plugin/jetpack.9.7.1.zip", "9.7.2": "https://downloads.wordpress.org/plugin/jetpack.9.7.2.zip", "9.7.3": "https://downloads.wordpress.org/plugin/jetpack.9.7.3.zip", "9.8.1": "https://downloads.wordpress.org/plugin/jetpack.9.8.1.zip", "9.8.2": "https://downloads.wordpress.org/plugin/jetpack.9.8.2.zip", "9.8.3": "https://downloads.wordpress.org/plugin/jetpack.9.8.3.zip", "9.9.1": "https://downloads.wordpress.org/plugin/jetpack.9.9.1.zip", "9.9.2": "https://downloads.wordpress.org/plugin/jetpack.9.9.2.zip", "9.9.3": "https://downloads.wordpress.org/plugin/jetpack.9.9.3.zip", "trunk": "https://downloads.wordpress.org/plugin/jetpack.zip", "10.0.1": "https://downloads.wordpress.org/plugin/jetpack.10.0.1.zip", "10.0.2": "https://downloads.wordpress.org/plugin/jetpack.10.0.2.zip", "10.1.1": "https://downloads.wordpress.org/plugin/jetpack.10.1.1.zip", "10.1.2": "https://downloads.wordpress.org/plugin/jetpack.10.1.2.zip", "10.2.1": "https://downloads.wordpress.org/plugin/jetpack.10.2.1.zip", "10.2.2": "https://downloads.wordpress.org/plugin/jetpack.10.2.2.zip", "10.2.3": "https://downloads.wordpress.org/plugin/jetpack.10.2.3.zip", "10.3.1": "https://downloads.wordpress.org/plugin/jetpack.10.3.1.zip", "10.3.2": "https://downloads.wordpress.org/plugin/jetpack.10.3.2.zip", "10.4.1": "https://downloads.wordpress.org/plugin/jetpack.10.4.1.zip", "10.4.2": "https://downloads.wordpress.org/plugin/jetpack.10.4.2.zip", "10.5.1": "https://downloads.wordpress.org/plugin/jetpack.10.5.1.zip", "10.5.2": "https://downloads.wordpress.org/plugin/jetpack.10.5.2.zip", "10.5.3": "https://downloads.wordpress.org/plugin/jetpack.10.5.3.zip", "10.6.1": "https://downloads.wordpress.org/plugin/jetpack.10.6.1.zip", "10.6.2": "https://downloads.wordpress.org/plugin/jetpack.10.6.2.zip", "10.7.1": "https://downloads.wordpress.org/plugin/jetpack.10.7.1.zip", "10.7.2": "https://downloads.wordpress.org/plugin/jetpack.10.7.2.zip", "10.8.1": "https://downloads.wordpress.org/plugin/jetpack.10.8.1.zip", "10.8.2": "https://downloads.wordpress.org/plugin/jetpack.10.8.2.zip", "10.9.1": "https://downloads.wordpress.org/plugin/jetpack.10.9.1.zip", "10.9.2": "https://downloads.wordpress.org/plugin/jetpack.10.9.2.zip", "10.9.3": "https://downloads.wordpress.org/plugin/jetpack.10.9.3.zip", "11.0.1": "https://downloads.wordpress.org/plugin/jetpack.11.0.1.zip", "11.0.2": "https://downloads.wordpress.org/plugin/jetpack.11.0.2.zip", "11.1.1": "https://downloads.wordpress.org/plugin/jetpack.11.1.1.zip", "11.1.2": "https://downloads.wordpress.org/plugin/jetpack.11.1.2.zip", "11.1.3": "https://downloads.wordpress.org/plugin/jetpack.11.1.3.zip", "11.1.4": "https://downloads.wordpress.org/plugin/jetpack.11.1.4.zip", "11.2.1": "https://downloads.wordpress.org/plugin/jetpack.11.2.1.zip", "11.2.2": "https://downloads.wordpress.org/plugin/jetpack.11.2.2.zip", "11.3.1": "https://downloads.wordpress.org/plugin/jetpack.11.3.1.zip", "11.3.2": "https://downloads.wordpress.org/plugin/jetpack.11.3.2.zip", "11.3.3": "https://downloads.wordpress.org/plugin/jetpack.11.3.3.zip", "11.3.4": "https://downloads.wordpress.org/plugin/jetpack.11.3.4.zip", "11.4.1": "https://downloads.wordpress.org/plugin/jetpack.11.4.1.zip", "11.4.2": "https://downloads.wordpress.org/plugin/jetpack.11.4.2.zip", "11.5.1": "https://downloads.wordpress.org/plugin/jetpack.11.5.1.zip", "11.5.2": "https://downloads.wordpress.org/plugin/jetpack.11.5.2.zip", "11.5.3": "https://downloads.wordpress.org/plugin/jetpack.11.5.3.zip", "11.6.1": "https://downloads.wordpress.org/plugin/jetpack.11.6.1.zip", "11.6.2": "https://downloads.wordpress.org/plugin/jetpack.11.6.2.zip", "11.7.1": "https://downloads.wordpress.org/plugin/jetpack.11.7.1.zip", "11.7.2": "https://downloads.wordpress.org/plugin/jetpack.11.7.2.zip", "11.7.3": "https://downloads.wordpress.org/plugin/jetpack.11.7.3.zip", "11.8.3": "https://downloads.wordpress.org/plugin/jetpack.11.8.3.zip", "11.8.4": "https://downloads.wordpress.org/plugin/jetpack.11.8.4.zip", "11.8.5": "https://downloads.wordpress.org/plugin/jetpack.11.8.5.zip", "11.8.6": "https://downloads.wordpress.org/plugin/jetpack.11.8.6.zip", "11.9.1": "https://downloads.wordpress.org/plugin/jetpack.11.9.1.zip", "11.9.2": "https://downloads.wordpress.org/plugin/jetpack.11.9.2.zip", "11.9.3": "https://downloads.wordpress.org/plugin/jetpack.11.9.3.zip", "12.0.1": "https://downloads.wordpress.org/plugin/jetpack.12.0.1.zip", "12.0.2": "https://downloads.wordpress.org/plugin/jetpack.12.0.2.zip", "12.1.1": "https://downloads.wordpress.org/plugin/jetpack.12.1.1.zip", "12.1.2": "https://downloads.wordpress.org/plugin/jetpack.12.1.2.zip", "12.2.1": "https://downloads.wordpress.org/plugin/jetpack.12.2.1.zip", "12.2.2": "https://downloads.wordpress.org/plugin/jetpack.12.2.2.zip", "12.3.1": "https://downloads.wordpress.org/plugin/jetpack.12.3.1.zip", "12.4.1": "https://downloads.wordpress.org/plugin/jetpack.12.4.1.zip", "12.5.1": "https://downloads.wordpress.org/plugin/jetpack.12.5.1.zip", "12.6.1": "https://downloads.wordpress.org/plugin/jetpack.12.6.1.zip", "12.6.2": "https://downloads.wordpress.org/plugin/jetpack.12.6.2.zip", "12.6.3": "https://downloads.wordpress.org/plugin/jetpack.12.6.3.zip", "12.7.1": "https://downloads.wordpress.org/plugin/jetpack.12.7.1.zip", "12.7.2": "https://downloads.wordpress.org/plugin/jetpack.12.7.2.zip", "12.8.1": "https://downloads.wordpress.org/plugin/jetpack.12.8.1.zip", "12.8.2": "https://downloads.wordpress.org/plugin/jetpack.12.8.2.zip", "12.9.1": "https://downloads.wordpress.org/plugin/jetpack.12.9.1.zip", "12.9.2": "https://downloads.wordpress.org/plugin/jetpack.12.9.2.zip", "12.9.3": "https://downloads.wordpress.org/plugin/jetpack.12.9.3.zip", "12.9.4": "https://downloads.wordpress.org/plugin/jetpack.12.9.4.zip", "13.0.1": "https://downloads.wordpress.org/plugin/jetpack.13.0.1.zip", "13.1.1": "https://downloads.wordpress.org/plugin/jetpack.13.1.1.zip", "13.1.2": "https://downloads.wordpress.org/plugin/jetpack.13.1.2.zip", "13.1.3": "https://downloads.wordpress.org/plugin/jetpack.13.1.3.zip", "13.1.4": "https://downloads.wordpress.org/plugin/jetpack.13.1.4.zip", "13.2.1": "https://downloads.wordpress.org/plugin/jetpack.13.2.1.zip", "13.2.2": "https://downloads.wordpress.org/plugin/jetpack.13.2.2.zip", "13.2.3": "https://downloads.wordpress.org/plugin/jetpack.13.2.3.zip", "13.3.1": "https://downloads.wordpress.org/plugin/jetpack.13.3.1.zip", "13.3.2": "https://downloads.wordpress.org/plugin/jetpack.13.3.2.zip", "13.4.1": "https://downloads.wordpress.org/plugin/jetpack.13.4.1.zip", "13.4.2": "https://downloads.wordpress.org/plugin/jetpack.13.4.2.zip", "13.4.3": "https://downloads.wordpress.org/plugin/jetpack.13.4.3.zip", "13.4.4": "https://downloads.wordpress.org/plugin/jetpack.13.4.4.zip", "13.5.1": "https://downloads.wordpress.org/plugin/jetpack.13.5.1.zip", "13.6.1": "https://downloads.wordpress.org/plugin/jetpack.13.6.1.zip", "13.7.1": "https://downloads.wordpress.org/plugin/jetpack.13.7.1.zip", "13.8.1": "https://downloads.wordpress.org/plugin/jetpack.13.8.1.zip", "13.8.2": "https://downloads.wordpress.org/plugin/jetpack.13.8.2.zip", "13.9.1": "https://downloads.wordpress.org/plugin/jetpack.13.9.1.zip", "14.2.1": "https://downloads.wordpress.org/plugin/jetpack.14.2.1.zip", "14.4.1": "https://downloads.wordpress.org/plugin/jetpack.14.4.1.zip", "14.9.1": "https://downloads.wordpress.org/plugin/jetpack.14.9.1.zip", "15.0.1": "https://downloads.wordpress.org/plugin/jetpack.15.0.1.zip", "15.0.2": "https://downloads.wordpress.org/plugin/jetpack.15.0.2.zip", "15.1.1": "https://downloads.wordpress.org/plugin/jetpack.15.1.1.zip", "2.2.10": "https://downloads.wordpress.org/plugin/jetpack.2.2.10.zip", "2.3.10": "https://downloads.wordpress.org/plugin/jetpack.2.3.10.zip", "3.9.10": "https://downloads.wordpress.org/plugin/jetpack.3.9.10.zip", "7.2.1.1": "https://downloads.wordpress.org/plugin/jetpack.7.2.1.1.zip", "7.3.0.1": "https://downloads.wordpress.org/plugin/jetpack.7.3.0.1.zip", "7.3.1.1": "https://downloads.wordpress.org/plugin/jetpack.7.3.1.1.zip", "7.5.0.1": "https://downloads.wordpress.org/plugin/jetpack.7.5.0.1.zip", "8.2.0.1": "https://downloads.wordpress.org/plugin/jetpack.8.2.0.1.zip", "8.7.0.1": "https://downloads.wordpress.org/plugin/jetpack.8.7.0.1.zip", "15.1-a.1": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.1.zip", "15.1-a.3": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.3.zip", "15.1-a.5": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.5.zip", "15.1-a.7": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.7.zip", "15.1-a.9": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.9.zip", "15.2-a.1": "https://downloads.wordpress.org/plugin/jetpack.15.2-a.1.zip", "15.2-a.3": "https://downloads.wordpress.org/plugin/jetpack.15.2-a.3.zip", "15.2-a.5": "https://downloads.wordpress.org/plugin/jetpack.15.2-a.5.zip", "15.2-a.7": "https://downloads.wordpress.org/plugin/jetpack.15.2-a.7.zip", "15.1-a.11": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.11.zip", "15.1-beta": "https://downloads.wordpress.org/plugin/jetpack.15.1-beta.zip", "15.1-beta.2": "https://downloads.wordpress.org/plugin/jetpack.15.1-beta.2.zip"}, "downloaded": 469854481, "description": "

    JETPACK – THE BEST WORDPRESS PLUGIN

    \n

    \n

    Jetpack is a WordPress plugin that helps you create better content, grow your subscribers, earn money from your website and keep it safe, fast, and secure. You can grow and keep track of your website traffic with Jetpack stats, and create better content with Jetpack AI. You can start a newsletter and grow your audience, turning fans into paying subscribers. Create beautiful content with Jetpack Creator and keep your site fast with Jetpack Boost.

    \n

    HOW TO GET STARTED WITH JETPACK

    \n

    Installation is free, quick, and easy. Set up Jetpack in minutes. Take advantage of more robust features like WordPress site security and design and growth tools by upgrading to a paid plan.

    \n

    NEED EXPERT SUPPORT?

    \n

    We have a global team of Happiness Engineers ready to provide incredible support. Ask your questions in the support forum or contact support.

    \n

    WHY USE JETPACK ON YOUR SITE

    \n

    Safer. Faster. More traffic.

    \n

    WordPress security, performance, marketing, and design tools — Jetpack is made by WordPress experts to make WP sites safer and faster, and help you grow your traffic.

    \n

    24/7 AUTO SITE SECURITY

    \n

    We guard your site so you can run your site or business. Jetpack Security provides easy-to-use, comprehensive WordPress site security including auto real-time backups and easy restores, malware scans, and spam protection. Essential features like brute force protection and basic downtime / uptime monitoring are free.

    \n
      \n
    • Back up your site automatically in real time and restore to any point with one click. Cloud storage starts at 10GB, which is more than enough for most sites, with additional storage options available if needed. Great for eCommerce stores especially Woo.
    • \n
    • Manage migration to a new host, migrate theme files and plugins to a new database, easily duplicate websites, create full database backups, clone websites, repair broken websites by restoring older backups or easily set up a test site by creating a duplicate of your existing WP website.
    • \n
    • See every site change and who made it with the activity log, great for coordination, debug, maintenance, or troubleshooting.
    • \n
    • Examine incoming traffic to your WordPress site with our WAF (Web Application Firewall) and decide to allow or block it based on various rules.
    • \n
    • Add an important layer of protection to your site with our WAF (Web Application Firewall), particularly when attackers actively exploit unpatched vulnerabilities.
    • \n
    • Automatically perform malware scans and security scans for other code threats. One click fix to restore your site for malware.
    • \n
    • Block spam comments and form responses with anti spam features powered by Akismet.
    • \n
    • Brute force attack protection to protect your WordPress login page from attacks.
    • \n
    • Monitor your site uptime / downtime and get an instant alert of any change by email.
    • \n
    • Secure WordPress.com powered login used by millions of sites with optional 2FA (two factor authentication) for extra protection.
    • \n
    • Auto update individual plugins for easy site maintenance and management.
    • \n
    \n

    You can purchase all of Jetpack’s security features in our Security bundle, or VaultPress Backup, Scan, and Akismet Anti-spam can each be purchased individually.

    \n

    PEAK SPEED AND PERFORMANCE

    \n

    Get blazing fast site speed with Jetpack. Jetpack’s free CDN (content delivery network) auto optimizes your images. Watch your page load times decrease — we’ll optimize your images and serve them from our own powerful global network, and speed up your site on mobile devices to reduce bandwidth usage and save money!

    \n
      \n
    • Image CDN for images and core static files, like CSS and JavaScript, served from our servers, not yours, which saves you money and bandwidth.
    • \n
    • Unlimited, high speed, ad free video hosting keeps the focus on your content, not on ads or recommendations that lead people off site.
    • \n
    • Custom site search is incredibly powerful and customizable. Helps your visitors instantly find the right content so they read and buy more. Works great with WooCommerce / eCommerce sites to help filter products so customers get what they want on your site faster.
    • \n
    • Recommended to use with Jetpack Boost for ultimate WordPress site speed.
    • \n
    \n

    POWERFUL TOOLS FOR GROWTH

    \n

    Create and customize your WordPress site, optimize it for visitors and revenue, and enjoy watching your stats tick up. Build it, share it, and watch it grow.

    \n
      \n
    • Auto publish blog posts and products to social media by simply using our tools to connect to Facebook, Bluesky, Threads, Tumblr, Mastodon, LinkedIn, and Nextdoor.
    • \n
    • Easily share Instagram posts on your pages and blog posts.
    • \n
    • Collect a payment or donation, sell a product, service, or membership with simple integrations with PayPal and Stripe.
    • \n
    • Grow traffic with SEO tools for Google, Bing, Facebook, and WordPress.com. XML sitemap created automatically.
    • \n
    • Advertise on your site to generate revenue. The ad network automatically does the work for you to find high-quality ads that are placed on your site.
    • \n
    • Manage Jetpack features from anywhere with the official WordPress mobile app, available for Apple iOS (iPhone or iPad) and Google Android.
    • \n
    • Looking for Customer Relationship Management? Check out the Jetpack CRM plugin which works alongside Jetpack to give you a simple and practical way to build relationships with your customers and leads.
    • \n
    \n

    POWERFUL STATS TO GROW YOUR SITE

    \n

    With Jetpack Stats, you don’t need to be a data scientist to see how your site is performing.

    \n
      \n
    • Advanced site stats and analytics to help you understand your audience.
    • \n
    • Discover your top performing posts & pages.
    • \n
    • See who is creating the most popular content on your team with our author metrics.
    • \n
    • Easily keep track of your content creation habits & trends over the years.
    • \n
    • View weekly and yearly trends with 7-day Highlights and Year in Review.
    • \n
    • See what popular social networks your content is being shared to the most.
    • \n
    • Explore real-time data on visitors, likes, and comments.
    • \n
    • Get detailed insights on the referrers that bring traffic to your site.
    • \n
    • Discover what countries your visitors are coming from.
    • \n
    • Measure link clicks, video plays, and file downloads within your site.
    • \n
    \n

    WRITE SMARTER, NOT HARDER.

    \n

    Experience the ease of crafting professional content with intuitive and powerful AI. Jetpack AI Assistant effortlessly integrates with your WordPress editor, offering an intuitive interface to interact with AI.
    \nThis powerful block lets you generate diverse content at your command, significantly reducing the time and effort required in content creation.

    \n

    Simply provide a prompt, and watch as Jetpack AI Assistant crafts compelling blog posts, detailed pages, structured lists, and comprehensive tables – all tailored to your needs.

    \n
      \n
    • Harness AI power directly from your editor.
    • \n
    • Unlock high-quality, tailored content at your command.
    • \n
    • Maintain professional standards with ease.
    • \n
    • AI-powered translations across numerous languages at your fingertips, breaking down language barriers.
    • \n
    \n

    PROMOTE YOUR CONTENT EASILY WITH JETPACK BLAZE

    \n

    Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.

    \n
      \n
    • Create your ad. Choose your audience. Set your budget. It’s that easy.
    • \n
    • Amplify your reach for just a few dollars.
    • \n
    \n

    EASY DESIGN TOOLS

    \n

    Quickly customize your site to make it stand out — no coding needed.

    \n
      \n
    • Themes — Simple WordPress themes to get started on your site.
    • \n
    • Related posts — Keep visitors on your site by automatically showing them related content they will be interested in.
    • \n
    • Gallery and Slideshow tools — Image galleries, carousel slider, and slideshows for WP sites and stores.
    • \n
    • Subscriptions — Make it easy for visitors to sign up to receive notifications of your latest posts and comments.
    • \n
    • Contact form — Easily build unlimited contact forms for free without any coding. Receive email notifications for each response. Integrate with mail solutions like Creative Mail to reach your customers and leads quickly. Connect to Jetpack Anti spam (powered by Akismet) to filter submissions.
    • \n
    • oEmbed Support — easily embed images, posts, and links from Facebook and Instagram.
    • \n
    \n

    INTEGRATIONS

    \n

    Jetpack is updated monthly to ensure seamless integration with top WordPress plugins and other tech products.

    \n
      \n
    • Built for WooCommerce: Jetpack and WooCommerce are both made by Automattic. Backup, Scan, Anti-spam, integrate perfectly for Woo / eComm stores.
    • \n
    • Jetpack is fully compatible with v2.0 of the official AMP plugin for WordPress.
    • \n
    • Better understand your customers and marketing with Google Analytics (GA) integration.
    • \n
    • Social media platforms: Instagram, Facebook, Tumblr, LinkedIn, Threads, Bluesky, Nextdoor.
    • \n
    • Simple Blocks to customize your site: Pinterest, Whatsapp, Podcast player, GIFs, maps, tiled gallery, slideshow.
    • \n
    • Payment processors: easily collect payments or donations and sell products through Stripe and PayPal.
    • \n
    • Site speed and performance plugins: Works great with WP Super Cache by Automattic and Cloudflare.
    • \n
    • Contact form: Anti-spam (Powered by Akismet) blocks spam comments for Jetpack forms, Contact Form 7, Ninja Forms, Gravity Forms, Formidable Forms, and more.
    • \n
    • Other tech integrations: Instagram, Creative Mail, Mailchimp, Calendly, Whatsapp, Pinterest, Revue, and more.
    • \n
    \n

    EXPLORE MORE OF JETPACK

    \n

    If you like Jetpack, consider checking out our other products and bundles

    \n
      \n
    • Jetpack Complete – The Complete bundle with real‑time security, top performance, and everything you need to grow your business.
    • \n
    • Jetpack Security – Our Security bundle provides easy‑to‑use, comprehensive WordPress site security, including real‑time backups, a web application firewall, malware scanning, and spam protection.
    • \n
    • Jetpack Backup – Save every change and get back online quickly with one‑click restores from Jetpack VaultPress Backup.
    • \n
    • Jetpack Scan – Protect your site from bad actors around‑the‑clock ‑ with our web application firewall (WAF) and automated malware scanning with one‑click fixes.
    • \n
    • Jetpack Search – Instantly deliver the most relevant results to your visitors with Jetpack Search. No coding required, no ads, and no tracking.
    • \n
    • Jetpack Boost – Increase your website speed. Enjoy the same performance advantages as the world’s leading websites, no developer required.
    • \n
    • Jetpack VideoPress – Display stunning‑quality video with none of the hassle. Drag and drop videos through the WordPress editor and keep the focus on your content, not the ads.
    • \n
    • Jetpack AI – Turn your ideas into ready‑to‑publish content at lightspeed.
    • \n
    • Jetpack Stats – Keep track of your website visits, popular posts, newsletter subscribers and more.
    • \n
    • Jetpack Social – Automatically share your website content to your favorite social media platforms, from one place.
    • \n
    • Jetpack CRM – Jetpack CRM has all of the tools you need to grow your business. It’s also modular, so you can customize it to suit your needs.
    • \n
    • Jetpack Creator – Craft stunning content, boost your subscriber base, and monetize your online presence.
    • \n
    • Jetpack Newsletter – Transform your blog posts into newsletters to easily reach your subscribers. Offer paid subscriptions and earn from your content.
    • \n
    \n

    KEEP SPAM OFF YOUR WEBSITE

    \n
      \n
    • Akismet Anti-spam – Automatically clear spam from comments and forms. Save time, get more responses, give your visitors a better experience – all without lifting a finger.
    • \n
    \n

    PROMOTE YOUR CONTENT FOR MORE VIEWS

    \n
      \n
    • Blaze – Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.
    • \n
    \n

    MANAGE MORE THAN ONE SITE?

    \n
      \n
    • Jetpack Manage – All the tools you need to manage multiple WordPress sites. Monitor site security, performance, and traffic, and get alerted if a site needs attention.
    • \n
    \n

    FLY HIGHER WITH INDIVIDUAL PLUGINS

    \n

    Ever wish you could have just one feature of Jetpack in its own plugin? Now you can. Check out our individual plugins and install only what you need.

    \n\n", "donate_link": "", "num_ratings": 2349, "screenshots": {"1": {"src": "https://ps.w.org/jetpack/assets/screenshot-1.png?rev=2916090", "caption": "Jetpack Security provides easy-to-use, comprehensive WordPress site security including backups, malware scanning, and spam protection."}, "2": {"src": "https://ps.w.org/jetpack/assets/screenshot-2.png?rev=2916090", "caption": "Save every change with real-time backups and get back online quickly with one-click restores."}, "3": {"src": "https://ps.w.org/jetpack/assets/screenshot-3.png?rev=2916090", "caption": "Automated malware scanning and one-click fixes keep your site one step ahead of security threats."}, "4": {"src": "https://ps.w.org/jetpack/assets/screenshot-4.png?rev=2916090", "caption": "Promote your newest posts, pages, and products across your social media channels."}, "5": {"src": "https://ps.w.org/jetpack/assets/screenshot-5.png?rev=2916090", "caption": "Incredibly powerful and customizable, help your visitors instantly find the right content – right when they need it."}, "6": {"src": "https://ps.w.org/jetpack/assets/screenshot-6.png?rev=2916090", "caption": "See what’s working with content performance metrics. Simple, yet powerful stats to grow your site."}, "7": {"src": "https://ps.w.org/jetpack/assets/screenshot-7.png?rev=2916090", "caption": "Stunning‑quality video with none of the hassle. Drag and drop videos through the WordPress editor and keep the focus on your content, not the ads."}}, "support_url": "https://wordpress.org/support/plugin/jetpack/", "contributors": {"hew": {"avatar": "https://secure.gravatar.com/avatar/51b7a2da15b2677029fd15c046592147e0af325da150f63a2c2a6b881dd5ee75?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hew/", "display_name": "hew"}, "jgs": {"avatar": "https://secure.gravatar.com/avatar/d38734c97bc7fcedb3e02cd8bc0503554cea457805ab0a6ad21d44e60dd8de8e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jgs/", "display_name": "Greg"}, "andy": {"avatar": "https://secure.gravatar.com/avatar/be51113f41b3000046c3eb0c273b2d87ce746b6dbbe5475b68bf4f838a42e8d7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/andy/", "display_name": "Andy Skelton"}, "cena": {"avatar": "https://secure.gravatar.com/avatar/93060a05da7588b17307bf36b4dcf4b1b08a2cb69db4b3fb304e3a767d35b29f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cena/", "display_name": "Cena (a11n)"}, "dllh": {"avatar": "https://secure.gravatar.com/avatar/2a3d593a101c265b1cc149d14791c9bde71ea9f447e802e5cf33b021dbe9f091?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dllh/", "display_name": "Daryl L. L. Houston (dllh)"}, "enej": {"avatar": "https://secure.gravatar.com/avatar/4219631a4c265c99eeb168b16dda429b30e418fa05c6d16fcd9a58d72a5cf894?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/enej/", "display_name": "Enej Bajgorić"}, "jblz": {"avatar": "https://secure.gravatar.com/avatar/96fe4e56c258df250feff190f6a555880c59e538c9081435aa5eb303d1c624ef?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jblz/", "display_name": "Jeff Bowen"}, "joen": {"avatar": "https://secure.gravatar.com/avatar/901d78fbd98524005478290a4c9c01406d5b94f70fa508d0540516a421899543?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/joen/", "display_name": "Joen A."}, "koke": {"avatar": "https://secure.gravatar.com/avatar/f4cabd36e84d032e44c79a24fa9142db7bc388cfd5ade8a9ffabba978231b7ba?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/koke/", "display_name": "Jorge Bernal"}, "matt": {"avatar": "https://secure.gravatar.com/avatar/33252cd1f33526af53580fcb1736172f06e6716f32afdd1be19ec3096d15dea5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/matt/", "display_name": "Matt Mullenweg"}, "mcsf": {"avatar": "https://secure.gravatar.com/avatar/fa9bb9feab2f2f97662e7b07c9deaf0aca3ec7c037840a8cc3563ec022f77048?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mcsf/", "display_name": "Miguel Fonseca"}, "mkaz": {"avatar": "https://secure.gravatar.com/avatar/87bd845f7aec3a8e7467df8c2b7750753791c28bf50294f23765cd1f3f3020c1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mkaz/", "display_name": "Marcus Kazmierczak"}, "aduth": {"avatar": "https://secure.gravatar.com/avatar/f4226aad00975bb106756610d04b6bb3bd65027d37d1839dbd6c285f12c8a49d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aduth/", "display_name": "aduth"}, "akirk": {"avatar": "https://secure.gravatar.com/avatar/12b93d2a2baed035aa99f0cfbc4f00f3ed5d8a59563694910bcdffbccb5fa256?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/akirk/", "display_name": "Alex Kirk"}, "barry": {"avatar": "https://secure.gravatar.com/avatar/068b4bacad347c5646814baffb24c50033eb941925d275d056c29e416b024839?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/barry/", "display_name": "Barry"}, "brbrr": {"avatar": "https://secure.gravatar.com/avatar/421cf8d0b0b3f694162136cd630daa8cc6db578b6a234262d0901d694e0b9027?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brbrr/", "display_name": "brbrr"}, "cainm": {"avatar": "https://secure.gravatar.com/avatar/d82bee92d9c636feb5e7db0ee30f9fff8be0b8fb6b4671515dfeb739a664bf89?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cainm/", "display_name": "Michael Cain"}, "dzver": {"avatar": "https://secure.gravatar.com/avatar/1b0c31b864e3ecef551a19f6a421f1b02e4212ee1a1254022b8d1c0cf37abf77?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dzver/", "display_name": "dzver"}, "jenia": {"avatar": "https://secure.gravatar.com/avatar/9aee54ab1a0b870c86f16a3f8f37a9a90ed6c5010edc904f54cce5d5024ecf95?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jenia/", "display_name": "Jenia"}, "pento": {"avatar": "https://secure.gravatar.com/avatar/e522019adbe7cb4145f9e01c344c036baaa8bf76cd5d76e6b737b60be9af88cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pento/", "display_name": "Gary Pendergast"}, "tyxla": {"avatar": "https://secure.gravatar.com/avatar/774c1731d3e408331d6254fe7c5add84e6172385909ed73bd6a6922dc7b81d76?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tyxla/", "display_name": "Marin Atanasov"}, "westi": {"avatar": "https://secure.gravatar.com/avatar/34368b9c92a4bfa3bd2a84a222147375526d5ccfbbb3afe32abfbd1bc37f5b58?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/westi/", "display_name": "Peter Westwood"}, "yoavf": {"avatar": "https://secure.gravatar.com/avatar/b8b4c1e6328598569093af9249f1811977636a39f84eeeb4360b772ae79dbae1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/yoavf/", "display_name": "Yoav Farhi"}, "azaozz": {"avatar": "https://secure.gravatar.com/avatar/73c1045212929211deda7262005831319397c68d340a8c41d53633b3f7e7f129?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/azaozz/", "display_name": "Andrew Ozz"}, "batmoo": {"avatar": "https://secure.gravatar.com/avatar/5d837075dac137f919f08595bbe6dcd9436fad5b0da51c821ad8313437603542?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/batmoo/", "display_name": "Mohammad Jangda"}, "cfinke": {"avatar": "https://secure.gravatar.com/avatar/942f91a542ccc0d21a1b1b9de17296dceb648bb278011f76386aedbb96f37684?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cfinke/", "display_name": "Christopher Finke"}, "dkmyta": {"avatar": "https://secure.gravatar.com/avatar/b7b65e1d042082353364d7bef9892bd5931cda628a8848bb0f6234d44a78c7f1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dkmyta/", "display_name": "dkmyta"}, "dsmart": {"avatar": "https://secure.gravatar.com/avatar/6e220e167e341c28b1aa10bf0bb0374999068329f8683d3187ee3cf6749b8837?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dsmart/", "display_name": "Derek Smart"}, "eoigal": {"avatar": "https://secure.gravatar.com/avatar/b788473ed692a091f2a4b61e2fec643c116bd38a7d95d5a96ff6eae82a4aa6cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/eoigal/", "display_name": "Eoin Gallagher"}, "gcorne": {"avatar": "https://secure.gravatar.com/avatar/c47c86a6e780f2309c491d27ecd3feea89446df2c1d584ce329832d7c8158991?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/gcorne/", "display_name": "Gregory Cornelius"}, "jmdodd": {"avatar": "https://secure.gravatar.com/avatar/d4a893ff36478086e91271dab1e80c46119e715da37c6fdc5215d215dcb4f81e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jmdodd/", "display_name": "Jennifer M. Dodd"}, "keoshi": {"avatar": "https://secure.gravatar.com/avatar/a7d2558a93549fe9974c9f46f60928c5e5bc0a1b99f8840a4a9d718fe11ab270?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/keoshi/", "display_name": "keoshi"}, "matveb": {"avatar": "https://secure.gravatar.com/avatar/56bab68692c2a170323d65a02b2faec6c12e2b5eda10f0ee5b53610416f389d4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/matveb/", "display_name": "Matias Ventura"}, "mdbitz": {"avatar": "https://secure.gravatar.com/avatar/f470a1341315349e1006b505406c94c28eb6f74b48c25e9cc5273cb5d7cebc7c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mdbitz/", "display_name": "Matthew Denton"}, "oskosk": {"avatar": "https://secure.gravatar.com/avatar/f75bd6fe281a287d92608439a5e84e6a31890cfb7f6e2a40658bcf0c91c0f367?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/oskosk/", "display_name": "Osk"}, "rdcoll": {"avatar": "https://secure.gravatar.com/avatar/d615aeb453220100e58c2323f98d3ddf72e4800784b4f64ede1bab17788bfa9f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rdcoll/", "display_name": "Rich Collier"}, "samiff": {"avatar": "https://secure.gravatar.com/avatar/70396c77fe596b85aac82a0d3e4a03b6c04bae5d789b1457c0384a1dbe0a2274?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/samiff/", "display_name": "Sami Falah"}, "biskobe": {"avatar": "https://secure.gravatar.com/avatar/a793f17f0e41fe55c17234047405862cbed9f119ccf17b04849b875cef114aae?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/biskobe/", "display_name": "biskobe"}, "bjorsch": {"avatar": "https://secure.gravatar.com/avatar/d7dd9c0560c0fb4630dc76777202fd9e3f861b87d182f15cc5e06f69718dc5fd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bjorsch/", "display_name": "Brad Jorsch"}, "csonnek": {"avatar": "https://secure.gravatar.com/avatar/fcc14377a9152ecdf8255f67f2ab6c96322b018d49ad735d70567e5717dd6cde?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/csonnek/", "display_name": "csonnek"}, "dun2mis": {"avatar": "https://secure.gravatar.com/avatar/f82a9969159aff1c190adce4bdf67e4e408eed73063d9205d40121269f9187b9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dun2mis/", "display_name": "Jared"}, "egregor": {"avatar": "https://secure.gravatar.com/avatar/8926a4b8c6acb9e6516720c794e7035a4ad6ad04d3760343881b4ef5f2bcc607?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/egregor/", "display_name": "Echo"}, "gibrown": {"avatar": "https://secure.gravatar.com/avatar/c0113b43c8dd56a18f20323ef51486b72927d0785a23d6d9f87d06d1c4e85bcd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/gibrown/", "display_name": "Greg Ichneumon Brown"}, "iandunn": {"avatar": "https://secure.gravatar.com/avatar/5783a2d9b93f04f6d0a1ddabddcfd71f15136d7eaea7a87f9962d3f93f780224?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/iandunn/", "display_name": "Ian Dunn"}, "jeherve": {"avatar": "https://secure.gravatar.com/avatar/a37f47988721f803bbe82d58bae2033f180fcd3d7ad0cd35dd1dfdc8e9a2efaf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jeherve/", "display_name": "Jeremy Herve"}, "jkudish": {"avatar": "https://secure.gravatar.com/avatar/ca20d16a7871a44d060a80ad572c90be25dd5b73212b0a839fb0474e623ee357?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jkudish/", "display_name": "Joey Kudish"}, "joanrho": {"avatar": "https://secure.gravatar.com/avatar/e6df9d4f2229c8636775c217feaa014dcf0acbf5deffc1c8500f103af56df358?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/joanrho/", "display_name": "joanrho"}, "jshreve": {"avatar": "https://secure.gravatar.com/avatar/a195e320c3814c50cdc62ac06e44d0978e7be26c36782178e3bca7edf28b5792?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jshreve/", "display_name": "Em Shreve"}, "kraftbj": {"avatar": "https://secure.gravatar.com/avatar/7c839032ff595a75d8b9f88abb3522a56065f5ca890d92094796ab7cdf8dfb85?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kraftbj/", "display_name": "Brandon Kraft"}, "macmanx": {"avatar": "https://secure.gravatar.com/avatar/d0dea7177b2141973609a1adac244ce9843d70430350fff251144cb4d44968b4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/macmanx/", "display_name": "James Huff"}, "sdquirk": {"avatar": "https://secure.gravatar.com/avatar/d58df2f6b6340577addd2ab3ca790043722b07d7abf7f3af3b32fa6c4b0eaa1e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sdquirk/", "display_name": "Stephen Quirk"}, "sermitr": {"avatar": "https://secure.gravatar.com/avatar/50462b97435ce6205e83f55e458b461efe3f18a478e48754580d1eeff6715c7f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sermitr/", "display_name": "sermitr"}, "simison": {"avatar": "https://secure.gravatar.com/avatar/8337f2645519be33dbb5497e73ed4dcb2a69ca9eee8486c774db5bb95d41b019?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/simison/", "display_name": "Mikael Korpela"}, "wpkaren": {"avatar": "https://secure.gravatar.com/avatar/a57bd085df2c1ddd8207d60d907d54e6645640ba95bfae3181c599893ca88109?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpkaren/", "display_name": "Karen Attfield"}, "zinigor": {"avatar": "https://secure.gravatar.com/avatar/ede478200fe4c66ab6fc103ae78249fdf493929c95cc6cf4142f8e79c64f3e8b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/zinigor/", "display_name": "Igor Zinovyev (a11n)"}, "allendav": {"avatar": "https://secure.gravatar.com/avatar/6c18ebc68e4e3734db0d22cc70dd578066e68d8e95adde397c3f49d2b0eaf634?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/allendav/", "display_name": "Allen Snook"}, "annezazu": {"avatar": "https://secure.gravatar.com/avatar/4f50dc56c80eceb636a7ef7d036a019a7d4189e8b3f87d9c899e848248ef36d8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/annezazu/", "display_name": "annezazu"}, "arsihasi": {"avatar": "https://secure.gravatar.com/avatar/999ad02b22f0112b4d36b6445554e086f3e460f926a04dc4973abce8c9d058e2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/arsihasi/", "display_name": "arsihasi"}, "blobaugh": {"avatar": "https://secure.gravatar.com/avatar/607c6b260c5e485442be16d8598d288d5e719a5c938dfe3d8ae82f3239b13fa0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/blobaugh/", "display_name": "Ben Lobaugh (blobaugh)"}, "delawski": {"avatar": "https://secure.gravatar.com/avatar/0af62fa39768d1c5f4e7bccc5de8a33e653aab8b5dbcdd86512d2bba170e2bba?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/delawski/", "display_name": "Piotr Delawski"}, "ebinnion": {"avatar": "https://secure.gravatar.com/avatar/eeaec4da03676fcc587dc5a97fdf904ddd5fe956260e062a7e88a1d395bbfbd5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ebinnion/", "display_name": "Eric Binnion"}, "ethitter": {"avatar": "https://secure.gravatar.com/avatar/28c4fc4ed512b59cb61ab14f7f0f1711a41f7a605b9d85d40753fd46472b9c08?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ethitter/", "display_name": "Erick Hitter"}, "fgiannar": {"avatar": "https://secure.gravatar.com/avatar/df220c3afbdd5a297272d5f181fa54d67d608bf84c0f1de72904a0b2d325ada2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/fgiannar/", "display_name": "Foteini Giannaropoulou (a11n)"}, "jenhooks": {"avatar": "https://secure.gravatar.com/avatar/9e0e282acb4b080561f5b724095418cb65eaf9fc6b06caaf0d5839627e1fec1b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jenhooks/", "display_name": "Jen H. (a11n)"}, "kbrownkd": {"avatar": "https://secure.gravatar.com/avatar/2dbf1f6c2ab8011293a671eb45365aae2f323f662c0ea99e93102f7710fcb23b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kbrownkd/", "display_name": "kbrownkd (a11n)"}, "mdawaffe": {"avatar": "https://secure.gravatar.com/avatar/813f34a1a74baa1628c9876cb3e385bec2e3df5772b724aa97b7cc87bace6607?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mdawaffe/", "display_name": "Michael Adams (mdawaffe)"}, "migueluy": {"avatar": "https://secure.gravatar.com/avatar/862ee99e2ae2ac1cebddf3c3a6d57d4b5530737b67d30cf0b8ab318437aa7f13?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/migueluy/", "display_name": "Miguel Lezama"}, "njweller": {"avatar": "https://secure.gravatar.com/avatar/8bbdf7a6214e590ae6f4b51d13cde17116bc8bc8dd36f725332e197c658c427c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/njweller/", "display_name": "njweller"}, "nunyvega": {"avatar": "https://secure.gravatar.com/avatar/2958fa60229e73018496a81bd70c6092e4f8a8995043ed574a62aa4301b0f266?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nunyvega/", "display_name": "nunyvega"}, "obenland": {"avatar": "https://secure.gravatar.com/avatar/43e10bdac0c553eccd6b30644312cc245d1d4df3cb04dbc898f44cae8d7d68cf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/obenland/", "display_name": "Konstantin Obenland"}, "retrofox": {"avatar": "https://secure.gravatar.com/avatar/9ff3405a86b8178158b444dc6b44fc3ef321c9641b6d95a769956e7b50c26909?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/retrofox/", "display_name": "retrofox"}, "stephdau": {"avatar": "https://secure.gravatar.com/avatar/5778b0063f8a446b13be5c4b22fd51c5a5d7e330425ab0249ee28a60ddca0c3c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stephdau/", "display_name": "Stephane Daury (stephdau)"}, "tmoorewp": {"avatar": "https://secure.gravatar.com/avatar/0d3c5108787a04d1331dc54eac3cc5359abde69c537863fe1e42e45f77a5dd64?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tmoorewp/", "display_name": "Tim Moore"}, "apeatling": {"avatar": "https://secure.gravatar.com/avatar/de60e98510b3a58937f767fc9ce379f76bc77cd66a86c0e03447e7126aa38c3f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/apeatling/", "display_name": "Andy Peatling"}, "cgastrell": {"avatar": "https://secure.gravatar.com/avatar/93672c32dbab1719220330190a013716cc2884e99b2f8be2fcc11b2e54bd2cda?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cgastrell/", "display_name": "cgastrell"}, "chellycat": {"avatar": "https://secure.gravatar.com/avatar/1545fc495715222fccf488c5ccbe0ab48cfc11038f715391e0e5b32630244aac?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/chellycat/", "display_name": "Michelle Langston"}, "hugobaeta": {"avatar": "https://secure.gravatar.com/avatar/593b5018bc29853137ad3c94c6e0294ac50130fcc7fa42ddbeacb9672645b2ef?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hugobaeta/", "display_name": "Hugo Baeta"}, "lschuyler": {"avatar": "https://secure.gravatar.com/avatar/e42d73fdac4fb375f6a58dfda8ebc2a8ae3da4ce656583a6d1c8c645d31653b1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lschuyler/", "display_name": "Lisa Schuyler"}, "mattwiebe": {"avatar": "https://secure.gravatar.com/avatar/691090f38918a05360981a204985d62e29ebfaaf6d94a2180e7bbae0954e8a48?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mattwiebe/", "display_name": "Matt Wiebe"}, "mikeyarce": {"avatar": "https://secure.gravatar.com/avatar/c874a094de3814e0b4b87674503fa440d6e9cfa95ab1ce03a6a4021f950a0d03?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mikeyarce/", "display_name": "Mikey Arce"}, "scottsweb": {"avatar": "https://secure.gravatar.com/avatar/2b8d07f38917888c9dd482eb1197a3be9bb55cc9ac6ba29dee5523a38cea8670?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/scottsweb/", "display_name": "Scott (@scottsweb)"}, "sdixon194": {"avatar": "https://secure.gravatar.com/avatar/7a11ca17eaf55b5625489597e0cf43f95f7313c113ede14779af203314d9079d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sdixon194/", "display_name": "sdixon194"}, "annamcphee": {"avatar": "https://secure.gravatar.com/avatar/54800724be3e3d6154deade860d777e9f1a533c261a3b4ebec2961f87737ef3c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/annamcphee/", "display_name": "Anna McPhee"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "beaulebens": {"avatar": "https://secure.gravatar.com/avatar/d7a8778a3ad9a1b17d7c2c1bb5026ca4565f46bb5552c8f8853053279b02563e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/beaulebens/", "display_name": "Beau Lebens"}, "bindlegirl": {"avatar": "https://secure.gravatar.com/avatar/2da2adb35e8f2903237b373b00aa1a6db7c7a50240b12c6ee1cf1c1a22f0a8fe?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bindlegirl/", "display_name": "bindlegirl (a11n)"}, "drawmyface": {"avatar": "https://secure.gravatar.com/avatar/b6442b023217872517ec7222a3f2146cc872a22b28dfc9bd7dbae96b0425f83b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/drawmyface/", "display_name": "Dan (a11n)"}, "eliorivero": {"avatar": "https://secure.gravatar.com/avatar/110e75165c3d6e513c30364e25ab6939008a22cfed0a23e08cb70e95d24461fe?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/eliorivero/", "display_name": "Elio Rivero"}, "goldsounds": {"avatar": "https://secure.gravatar.com/avatar/b9eeae1c590dae32c9b4a61e2bd4ef445ab3d36ebdc57c71148dfe0bac3e1329?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/goldsounds/", "display_name": "goldsounds"}, "leogermani": {"avatar": "https://secure.gravatar.com/avatar/9198356582655c54b1c2112dd1bbec77cdb92cf30d41aa6a2d246e6c08ea4ab0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/leogermani/", "display_name": "leogermani"}, "lhkowalski": {"avatar": "https://secure.gravatar.com/avatar/0857d0acf736d92f33512dd4cc3a6baa4b95671c911672bf7a06a34babdfebc9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lhkowalski/", "display_name": "Luiz Kowalski"}, "martinremy": {"avatar": "https://secure.gravatar.com/avatar/a112a0c338abec8c44c3cfd5dbc98c2e8b9a201fd6733396c73d476cb212ebf7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/martinremy/", "display_name": "martinremy"}, "nickmomrik": {"avatar": "https://secure.gravatar.com/avatar/fb8c740c30d5ae82eccf1ff4e297ab5ebd2cf6d568499f554f0802affdca60d8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nickmomrik/", "display_name": "Nick Momrik"}, "renatoagds": {"avatar": "https://secure.gravatar.com/avatar/9b5933b9dcaa90de7c781754abe5516b0d371de67058d7095ed69845754f70eb?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/renatoagds/", "display_name": "Renato Augusto Gama dos Santos"}, "richardmtl": {"avatar": "https://secure.gravatar.com/avatar/96855b6fc001037e1ae449d489b91dd19a873ab1dae73b867f98400bbb2a5e9d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/richardmtl/", "display_name": "Richard Archambault"}, "ryancowles": {"avatar": "https://secure.gravatar.com/avatar/0652d120e06d9dd963cf05f84ddaca2b49a5b721d40362a983f538451a78df96?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ryancowles/", "display_name": "Ryan C."}, "scarstocea": {"avatar": "https://secure.gravatar.com/avatar/d0ce1531a1e147d36988127f5a5b6b83b848b131f7725373e74bd268098d78a6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/scarstocea/", "display_name": "Stefan Carstocea"}, "arcangelini": {"avatar": "https://secure.gravatar.com/avatar/b1d09359c0f4a0b35657baf45f943f6a30c58b62e64e586dbd6b0a432d3f87e3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/arcangelini/", "display_name": "arcangelini"}, "clickysteve": {"avatar": "https://secure.gravatar.com/avatar/0861825da60649d4c35658b9667dfb2f50951dfae8dba2948a5e2850802b512b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/clickysteve/", "display_name": "clickysteve"}, "davoraltman": {"avatar": "https://secure.gravatar.com/avatar/7a191efcd7f01c2dc296fc7471866e61ee52ffb0fd774a3625f869cf89e7cfc3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/davoraltman/", "display_name": "Davor"}, "maverick3x6": {"avatar": "https://secure.gravatar.com/avatar/8cc8f058dec63830ba9f93c556a4d5f7c5fb01cf0e8253257cc72e60e81f88f3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/maverick3x6/", "display_name": "Jeff Golenski"}, "nancythanki": {"avatar": "https://secure.gravatar.com/avatar/5c7071162e57b2103a51761d079581f709a222eb1355d5e30850444fc1d3535a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nancythanki/", "display_name": "Nancy"}, "professor44": {"avatar": "https://secure.gravatar.com/avatar/99b146b76fa6bf46fa0aa4c24b4abf6bd6fbbec58ae5f5a8c862da5e1922d1dd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/professor44/", "display_name": "Jesse Friedman"}, "robertbpugh": {"avatar": "https://secure.gravatar.com/avatar/edf07fa59572def75cbd5efdda26a18e844e7ca04332d452f8e6c13aaff76387?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/robertbpugh/", "display_name": "Rob Pugh"}, "thehenridev": {"avatar": "https://secure.gravatar.com/avatar/e7080e99e479cba4cceb009fa621b614b15cd6cf0bec0dde8501ad9ad78423e5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/thehenridev/", "display_name": "Douglas Henri"}, "adamkheckler": {"avatar": "https://secure.gravatar.com/avatar/f06e5592cd5e9cced51a66c16ed97339084dadf400ff0ccd6ded57eb94e02255?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/adamkheckler/", "display_name": "Adam Heckler"}, "alternatekev": {"avatar": "https://secure.gravatar.com/avatar/ac4d1df3d807082a8fe06e58c4856fe0abbb41e3e20f5b04bb6dbe1df3643c11?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alternatekev/", "display_name": "alternatekev"}, "brileyhooper": {"avatar": "https://secure.gravatar.com/avatar/a1a5b4151f9b70cbb397bdae122b2486150882961f5621d1f9f3e25e9c6793c4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brileyhooper/", "display_name": "Briley"}, "daniloercoli": {"avatar": "https://secure.gravatar.com/avatar/81eb5029dfff5a5c1885e24167f3317d598347249a643d6142af7152c51d0c77?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/daniloercoli/", "display_name": "daniloercoli"}, "designsimply": {"avatar": "https://secure.gravatar.com/avatar/5058d52425c1e7f41d9e5303d1d8adfaf3a25aa78c62c6e4ebe0ecce5329090b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/designsimply/", "display_name": "Sheri Grey"}, "jeffgolenski": {"avatar": "https://secure.gravatar.com/avatar/9a0891c1487ca483621d4c5768d0ea5fc4482dff7a3b757de8356a42f3ca35ae?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jeffgolenski/", "display_name": "jeffgolenski"}, "lancewillett": {"avatar": "https://secure.gravatar.com/avatar/0f2e7596b7dc9c730a4dc32c4498b1963ad03daa2ff6eb781a6b28a4a29f528b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lancewillett/", "display_name": "Lance Willett"}, "samhotchkiss": {"avatar": "https://secure.gravatar.com/avatar/b92f54503679707a63e22118a1dbc5adf12a634d6df97b1d957747ad85f196de?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/samhotchkiss/", "display_name": "Sam Hotchkiss"}, "viper007bond": {"avatar": "https://secure.gravatar.com/avatar/b5f16acb1bc24ca6bf644adb593384de64046fa69c5de867a7647c7f736a1271?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/viper007bond/", "display_name": "Alex Mills"}, "iammattthomas": {"avatar": "https://secure.gravatar.com/avatar/17a4afd592d3fca459103e047a9c29c6093ebf5f5d430b5fb50aa3711ab0528d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/iammattthomas/", "display_name": "Matt (Thomas) Miklic"}, "jessefriedman": {"avatar": "https://secure.gravatar.com/avatar/1f6ec3eae783881019af376435a442fb253163e0e6a827af80d315531c264713?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jessefriedman/", "display_name": "jessefriedman"}, "richardmuscat": {"avatar": "https://secure.gravatar.com/avatar/2091a0861065f147f8184167279bf71f65fe1803cb66f8af1ac7d4e8c6cadd56?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/richardmuscat/", "display_name": "Richard Muscat"}, "roccotripaldi": {"avatar": "https://secure.gravatar.com/avatar/d3e2507943e349b8e891a14a87304a92a21004b6923586597493cc2ee1c51ce5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/roccotripaldi/", "display_name": "Rocco Tripaldi"}, "williamvianas": {"avatar": "https://secure.gravatar.com/avatar/280e4e232ad1fc783c7e2c3dc1b94d56a0455b9fc45ccdcadf5dc328c77b482d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/williamvianas/", "display_name": "williamvianas"}, "erania-pinnera": {"avatar": "https://secure.gravatar.com/avatar/bcb89a46ebd083d39c4c985b9d16aac79e499a051d646554756fe2282980fbe9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/erania-pinnera/", "display_name": "Stef (a11n)"}, "hypertextranch": {"avatar": "https://secure.gravatar.com/avatar/264b42a3c85c1b6c390dcaca3139cfa9402ebb90f4d2302e17318041cd1cdca9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hypertextranch/", "display_name": "hypertextranch"}, "rachelsquirrel": {"avatar": "https://secure.gravatar.com/avatar/076318fb03ad52ba4e883e2aa16b5686f41cc1681b221e9ee7213d1bf9178641?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rachelsquirrel/", "display_name": "rachelsquirrel"}, "chaselivingston": {"avatar": "https://secure.gravatar.com/avatar/a2f2d7121609f0d52ce7d86336fed65bbc852deeb4c5d52207b40c52310fbb96?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/chaselivingston/", "display_name": "Chase Livingston"}, "danielbachhuber": {"avatar": "https://secure.gravatar.com/avatar/16b43937020e44059fb472b2e1f0b5bc19bb195123b9a303f7b1ed5abf2c35e5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/danielbachhuber/", "display_name": "Daniel Bachhuber"}, "georgestephanis": {"avatar": "https://secure.gravatar.com/avatar/7fab7a27d6eb1e11d63e8a5963991d4adacce3ae704dc2fb7f53d97fad88edce?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/georgestephanis/", "display_name": "George Stephanis"}, "johnjamesjacoby": {"avatar": "https://secure.gravatar.com/avatar/f8b3e78da513af70d22b0a942297a300eef15e3ce8080e877c054ebb83e24d82?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/johnjamesjacoby/", "display_name": "John James Jacoby"}, "michael-arestad": {"avatar": "https://secure.gravatar.com/avatar/9548b9d111425d5ffc518f40c446753d69a6e2574daaed57b458fd8ce835dad5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/michael-arestad/", "display_name": "Michael Arestad"}, "adrianmoldovanwp": {"avatar": "https://secure.gravatar.com/avatar/2bb23d3c653eb515995455eb7de5bdfe3a7a263efb78b5e77599bdd7c53b0671?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/adrianmoldovanwp/", "display_name": "adrianmoldovanwp"}, "miguelxavierpenha": {"avatar": "https://secure.gravatar.com/avatar/9f0c0915ebf37f1f41232f3d183bc7e93763f4f940b26b9ac2a032f6c1154d71?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/miguelxavierpenha/", "display_name": "miguelxavierpenha"}}, "last_updated": "2025-10-10 1:23pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/jetpack.15.1.1.zip", "author_profile": "https://profiles.wordpress.org/automattic/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 4000000, "aspiresync_meta": {"id": "019a30bf-f6b4-7329-ba29-6828bc816639", "name": "Jetpack – WP Security, Backup, Speed, & Growth", "slug": "jetpack", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1760102580, "version": "15.1.1"}, "support_threads": 90, "requires_plugins": [], "short_description": "Improve your WP security with powerful one-click tools like backup, WAF, and malware scan. Includes free tools like stats, CDN and social sharing.", "author_block_count": "6", "author_block_rating": 93.68421052631601, "commercial_support_url": "https://jetpack.com/support/", "support_threads_resolved": 75}', '2025-10-29 16:18:04+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c66-7153-b058-74d4bba534a4', 'did:web:api.aspiredev.org:packages:wp-plugin:limit-login-attempts-reloaded', 'limit-login-attempts-reloaded', 'Limit Login Attempts Reloaded – Login Security, Brute Force Protection, Firewall', '

    Limit Login Attempts Reloaded functions as a robust deterrent against brute force attacks, bolstering your website’s security measures and optimizing its performance. It achieves this by restricting the number of login attempts allowed. This applies not only to the standard login method, but also to XMLRPC, Woocommerce, and custom login pages. With more than 2.5 million active users, this plugin fulfills all your login security requirements.

    -

    The plugin functions by automatically preventing further attempts from a particular Internet Protocol (IP) address and/or username once a predetermined limit of retries has been surpassed. This significantly weakens the effectiveness of brute force attacks on your website.

    -

    By default, WordPress permits an unlimited number of login attempts, posing a vulnerability where passwords can be easily deciphered through brute force methods.

    -

    Limit Login Attempts Reloaded Premium (Try Free with Micro Cloud)
    -Upgrade to Limit Login Attempts Reloaded Premium to extend cloud-based protection to the Limit Login Attempts Reloaded plugin, thereby enhancing your login security. The premium version includes a range of highly beneficial features, including IP intelligence to detect, counter and deny malicious login attempts. Your failed login attempts will be safely neutralized in the cloud so your website can function at its optimal performance during an attack.

    -

    -

    Features (Free Version):

    -
      -
    • Limit Logins – Limit the number of retry attempts when logging in (per each IP).
    • -
    • Configurable Lockout Timings – Modify the amount of time a user or IP must wait after a lockout.
    • -
    • Remaining Tries – Informs the user about the remaining retries or lockout time on the login page.
    • -
    • Lockout Email Notifications – Informs the admin via email of lockouts.
    • -
    • Denied Attempt Logs – View a log of all denied attempts and lockouts.
    • -
    • IP & Username Safelist/Denylist – Control access to usernames and IPs.
    • -
    • New User Registration Protection (Micro Cloud Accounts) – Protects default WP registration.
    • -
    • Sucuri compatibility.
    • -
    • Wordfence compatibility.
    • -
    • Ultimate Member compatibility.
    • -
    • WPS Hide Login compatibility.
    • -
    • XMLRPC gateway protection.
    • -
    • Woocommerce login page protection.
    • -
    • Multi-site compatibility with extra MU settings.
    • -
    • GDPR compliant.
    • -
    • Custom IP origins support (Cloudflare, Sucuri, etc.).
    • -
    • llar_admin own capability.
    • -
    -

    Features (Premium Version):

    -
      -
    • Performance Optimizer – Offload the burden of excessive failed logins from your server to protect your server resources, resulting in improved speed and efficiency of your website.
    • -
    • Enhanced IP Intelligence – Identify repetitive and suspicious login attempts to detect potential brute force attacks. IPs with known malicious activity are stored and used to help prevent and counter future attacks.
    • -
    • Enhanced Throttling – Longer lockout intervals each time a malicious IP or username tries to login unsuccessfully.
    • -
    • Deny By CountryBlock logins by country by simply selecting the countries you want to deny.
    • -
    • Auto IP Denylist – Automatically add IP addresses to your active cloud deny list that repeatedly fail login attempts.
    • -
    • New User Registration Protection – Protects default WP registration.
    • -
    • Global Denylist Protection – Utilize our active cloud IP data from thousands of websites in the LLAR network.
    • -
    • Synchronized Lockouts – Lockout IP data can be shared between multiple domains for enhanced protection in your network.
    • -
    • Synchronized Safelist/Denylist – Safelist/Denylist IP and username data can be shared between multiple domains.
    • -
    • Premium Support – Email support with a security tech.
    • -
    • Auto Backups of All IP Data – Store your active IP data in the cloud.
    • -
    • Successful Logins Log – Store successful logins in the cloud including IP info, city, state and lat/long.
    • -
    • Enhanced lockout logs – Gain valuable insights into the origins of IPs that are attempting logins.
    • -
    • CSV Download of IP Data – Download IP data direclty from the cloud.
    • -
    • Supports IPV6 Ranges For Safelist/Denylist
    • -
    • Unlock The Locked Admin – Easily unlock the locked admin through the cloud.
    • -
    -

    *Some features require higher level plans.

    -

    Upgrading from the old Limit Login Attempts plugin?

    -
      -
    1. Go to the Plugins section in your site’s backend.
    2. -
    3. Remove the Limit Login Attempts plugin.
    4. -
    5. Install the Limit Login Attempts Reloaded plugin.
    6. -
    -

    All your settings will be kept intact!

    -

    Many languages are currently supported in the Limit Login Attempts Reloaded plugin but we welcome any additional ones.

    -

    Help us bring Limit Login Attempts Reloaded to even more countries.

    -

    Translations: Bulgarian, Brazilian Portuguese, Catalan, Chinese (Traditional), Czech, Dutch, Finnish, French, German, Hungarian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish

    -

    Plugin uses standard actions and filters only.

    -

    Based on the original code from Limit Login Attempts plugin by Johan Eenfeldt.

    -

    Branding Guidelines

    -

    Limit Login Attempts Reloaded™ is a trademark of Atlantic Silicon Inc. When writing about the plugin, please make sure to use Reloaded after Limit Login Attempts. Limit Login Attempts is the old plugin.

    -
      -
    • Limit Login Attempts Reloaded (correct)
    • -
    • Limit Login Attempts (incorrect)
    • -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Limit Login Attempts Reloaded – Login Security, Brute Force Protection, Firewall", "slug": "limit-login-attempts-reloaded", "tags": {"spam": "spam", "firewall": "firewall", "security": "security", "brute-force": "Brute Force", "login-security": "login security"}, "added": "2016-08-03", "icons": {"1x": "https://ps.w.org/limit-login-attempts-reloaded/assets/icon-128x128.png?rev=2456910", "2x": "https://ps.w.org/limit-login-attempts-reloaded/assets/icon-256x256.png?rev=2456910"}, "author": "WPChef", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/limit-login-attempts-reloaded/assets/banner-772x250.png?rev=2954981", "high": "https://ps.w.org/limit-login-attempts-reloaded/assets/banner-1544x500.png?rev=2954981"}, "ratings": {"1": 32, "2": 10, "3": 6, "4": 24, "5": 1336}, "version": "2.26.24", "homepage": "", "requires": "3.0", "sections": {"faq": "\n
    \nWhat do I do if all users get blocked?\n\n

    \n

    If you are using contemporary hosting, it’s likely your site uses a proxy domain service like CloudFlare, Sucuri, Nginx, etc. They replace your user’s IP address with their own. If your server is not configured properly, all users will get the same IP address. This also applies to bots and hackers. Therefore, locking one user will lead to locking everybody else out. In the free version of the plugin, this can be adjusted using the Trusted IP Origin setting. In the premium version, the cloud service intelligently recognizes the non-standard IP origins and handles them correctly, even if your hosting provider does not.

    \n

    \n
    \nHow do I know if I’m under attack?\n\n

    \n

    An easy way to check if the attack is legitimate is to copy the IP address from the lockout notification and check its location using a IP locator tool. If the location is not somewhere you recognize and you have received several failed login attempts, then you are likely being attacked. You might notice dozens or hundreds of IPs each day. Visit our website to learn how can you prevent brute force attacks on your website.

    \n

    \n
    \nHow can I tell that the premium plugin is working?\n\n

    \n

    After you upgrade to our premium version, you will see a new dashboard in your WordPress admin that shows all attacks that will now relay through our cloud service. On the graph, you’ll see requests and failed login attempts. Each request will represent the cloud app validating an IP, which also includes denied logins.

    \n

    In some cases, you may notice an increase in speed and efficiency with your website. Also, a reduction in lockout notifications via email.

    \n

    \n
    \nCould these failed login attempts be fake?\n\n

    \n

    Some users find it hard to believe that they could experience numerous unsuccessful login attempts, particularly when their site has just been established or has minimal human traffic. The plugin is not responsible for generating these failed login attempts. Newly created websites are frequently hosted on shared IP addresses, making it easy for hackers to discover them. Additionally, newly registered domain names are often crawled soon after creation, rendering a WordPress website susceptible to attacks. Such websites are attractive targets as security is not a primary concern for their owners. We’ve created an article that delves deeper into the issue of fake login attempts in WordPress.

    \n

    \n
    \nWhat happens if my site exceeds the request limits in the plan?\n\n

    \n

    The premium plan’s resource limits start from 100,000 requests per month, which should accept almost any heavy brute-force attack. We monitor all of our sites and will alert the user if it appears they are going over their limits. If limits are reached, we will suggest to the user upgrading to the next plan. If you are using the free version, the load caused by brute force attacks will be absorbed by your current hosting bandwidth, which could cause your hosting costs to increase.

    \n

    \n
    \nWhat URLs are being attacked and protected?\n\n

    \n

    The URLs being protected are your login page (wp-login.php, wp-admin), xmlrpc.php, WooCommerce login page, and any custom login page you have that uses regular WordPress login hooks.

    \n

    \n
    \nWhy is LLAR more popular than other brute-force protection plugins?\n\n

    \n

    Our main focus is protecting your site from brute force attacks. This allows our plugin to be very lean and effective. It doesn’t require a lot of your web hosting resources and keeps your site well-protected. More importantly, it does all of this automatically as our service learns on its own about each IP it encounters. In contrast, a firewall would require manual blocking of IPs.

    \n

    \n
    \nWhat to do when an admin gets blocked?\n\n

    \n

    Open the site from another IP. You can do this from your cell phone, or using Opera browser and enabling free VPN there. You can also try turning off your router for a few minutes and then see if you get a different IP address. These will work if your hosting server is configured correctly. If that doesn’t work, connect to the site using FTP or your hosting control panel file manager. Navigate to wp-content/plugins/ and rename the limit-login-attempts-reloaded folder. Log in to the site then rename that folder back and whitelist your IP. By upgrading to our premium app, you will have the unlocking functionality right from the cloud so you’ll never have to deal with this issue.

    \n

    \n
    \nWhat settings should I use In the plugin?\n\n

    \n

    The settings are explained within the plugin in great detail. If you are unsure, use the default settings as they are the recommended ones.

    \n

    \n
    \nCan I share the safelist/denylist throughout all of my sites?\n\n

    \n

    By default, you will need to copy and paste the lists to each site manually. For the premium service, sites are grouped within the same private cloud account. Each site within that group can be configured if it shares its lockouts and access lists with other group members. The setting is located in the plugin’s interface. The default options are recommended.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    VERY GOOD

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy solucionespirita on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    fulfills its purpose completely

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It definitely works...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jkognq on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works, Very Well

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really good!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy thunqvist on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I only have positive experience so far.

    \n\n\n\n

    The plug-in has blocked so many login attempts but I can just relax and trust the program.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fine plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kingbolo on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yesterday the site went live. Just a day later the plugin reports multiple attempts to login with user admin. I know that these attempt are made, but within a day is suprising.
    Based on that I am taken extra measures to harden the login

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tradethong on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like this plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ta007403 on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a good plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy Go To Plugin for My Stack

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy paprikacreative on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you for creating this! Super easy and one of my goto plugins for all wordpress site builds.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks heaps LLAR team

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy munchywok on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Alex, Guriy & Greg you have my thanks for providing such an effective, easy to use tool which has such a profound impact on WP site security. Kind regards, Jono

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great, has blocked thousands of invalid attempts

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy longriver on September 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works great, has blocked thousands of invalid attempts

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Dankjewel

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy debeukeleerm on August 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Om mij te verwittigen van een vijandige poging tot inloggen

    \n
    \n
    \n", "changelog": "

    2.26.24

    \n
      \n
    • Fixed: json_decode(): Passing null to parameter #1 ($json) of type string is deprecated warning.
    • \n
    • Help and extensions page visual changes.
    • \n
    • Assets cleanup.
    • \n
    \n

    2.26.23

    \n
      \n
    • Fixed conflict with Hub and similar themes.
    • \n
    • Reorganized links.
    • \n
    \n

    2.26.22

    \n
      \n
    • Fixed REMOTE_ADDR if server is misconfigured.
    • \n
    • Lint.
    • \n
    \n

    2.26.21

    \n
      \n
    • Update notice position corrected.
    • \n
    • Debug tab – more info added.
    • \n
    • Lint.
    • \n
    \n

    2.26.20

    \n
      \n
    • Fixed formatting issues for Safari on some pages.
    • \n
    • Added displaying of Customer ID.
    • \n
    • Menu minor fix.
    • \n
    • Onboarding process updated.
    • \n
    \n

    2.26.19

    \n
      \n
    • Added links to the IP2Location page.
    • \n
    \n

    2.26.18

    \n
      \n
    • Better displaying IPv6 in the log.
    • \n
    \n

    2.26.17

    \n
      \n
    • Added default registration protection for cloud accounts (free and paid).
    • \n
    \n

    2.26.16

    \n
      \n
    • Fixed GDPR message issue for some themes.
    • \n
    \n

    2.26.15

    \n
      \n
    • Fixed translation compatibility with WordPress 6.7.
    • \n
    • Fixed GDPR message on the Woocommerce login page.
    • \n
    • Fix: load login-page-styles.css (on wp-login.php) only if it is necessary (thanks to georgejipa).
    • \n
    • CSS fixes.
    • \n
    \n

    2.26.14

    \n
      \n
    • Improved compatibility with custom login pages, including WooCommerce and UltimateMember.
    • \n
    • Standardized display of login messages.
    • \n
    • A new Custom Error Message setting is added. The message is being appended to all asynchronous messages.
    • \n
    • Fixed translation compatibility with WordPress 6.7.
    • \n
    • CSS fixes.
    • \n
    \n

    2.26.13

    \n
      \n
    • New “llar_admin” capability added to let other roles access the plugin.
    • \n
    • CSS fixes.
    • \n
    • Sticky headers added to the log tables.
    • \n
    • Small interface changes.
    • \n
    \n

    2.26.12

    \n
      \n
    • Better displaying IPv6 in successful login attempts block.
    • \n
    • Possible intersections in tabs with other plugins fixed.
    • \n
    • PHP 8, 9 compatibility updates.
    • \n
    • Refactoring.
    • \n
    \n

    2.26.11

    \n
      \n
    • Fixed possible style conflicts related to tables.
    • \n
    • Fixed possible PHP warnings.
    • \n
    • Fixed some I18N issues, thanks to alexclassroom!
    • \n
    • Better displaying multiple roles in login logs.
    • \n
    \n

    2.26.10

    \n
      \n
    • Log of successful login attempts implemented for Micro Cloud (Free) and Premium users.
    • \n
    • Checklist of recommended actions implemented.
    • \n
    • Settings page reorganized.
    • \n
    \n

    2.26.9

    \n
      \n
    • Chart library updated.
    • \n
    \n

    2.26.8

    \n
      \n
    • Fixed possible WooCommerce conflict.
    • \n
    \n

    2.26.7

    \n
      \n
    • Better informing on Micro Cloud.
    • \n
    \n

    2.26.6

    \n
      \n
    • Micro Cloud API url fix.
    • \n
    \n

    2.26.5

    \n
      \n
    • Better informing on cloud status.
    • \n
    \n

    2.26.4

    \n
      \n
    • Added country translation.
    • \n
    • Better Micro Cloud API response handling.
    • \n
    • A link fixed.
    • \n
    \n

    2.26.3

    \n
      \n
    • CSS issue fixed on Logs tab.
    • \n
    \n

    2.26.2

    \n
      \n
    • CSS issue fixed.
    • \n
    \n

    2.26.1

    \n
      \n
    • Micro Cloud link fixed.
    • \n
    \n

    2.26.0

    \n
      \n
    • New design.
    • \n
    • Free Micro Cloud plan introduced.
    • \n
    \n

    2.25.29

    \n
      \n
    • A link fixed.
    • \n
    \n

    2.25.28

    \n
      \n
    • Improved cloud charts.
    • \n
    \n

    2.25.27

    \n
      \n
    • Security improvement: Better shortcode escaping.
    • \n
    • Fixed date formatting on the logs page.
    • \n
    • Fixed top menu links on the front-end.
    • \n
    • Badge added to the top menu.
    • \n
    \n

    2.25.26

    \n
      \n
    • Security improvement: Different nonce for each AJAX action.
    • \n
    • Security improvement: The toggle_auto_update_callback checks for the update_plugins cap.
    • \n
    \n

    2.25.25

    \n
      \n
    • PHP 8.2/9 compatibility improved, thanks to Jer Turowetz!
    • \n
    • Button size and text typo fixed.
    • \n
    \n

    2.25.24

    \n
      \n
    • Better loading of translations.
    • \n
    • Fixed PHP warning related to menu.
    • \n
    \n

    2.25.23

    \n
      \n
    • Better side menu.
    • \n
    • Fixed I18N issues, thanks to alexclassroom!
    • \n
    \n

    2.25.22

    \n
      \n
    • Interface changes.
    • \n
    • Tested with WP 6.3.
    • \n
    \n

    2.25.21

    \n
      \n
    • Optimization: autoload for large options turned off.
    • \n
    • Interface changes.
    • \n
    \n

    2.25.20

    \n
      \n
    • Fix against network requests caching removed b/c some misconfigured servers can’t handle it.
    • \n
    \n

    2.25.19

    \n
      \n
    • Better handling of network connection issues.
    • \n
    • Fixed responsive formatting on dashboard.
    • \n
    • Added fix against network requests caching.
    • \n
    \n

    2.25.18

    \n
      \n
    • Fixed errors occurring in situations where two versions of the plugin are installed (which should not normally happen).
    • \n
    \n

    2.25.17

    \n
      \n
    • Refactoring.
    • \n
    • Server load reducing optimization.
    • \n
    \n

    2.25.16

    \n
      \n
    • Double slashes in paths removed.
    • \n
    • Better handling of cloud response codes.
    • \n
    \n

    2.25.15

    \n
      \n
    • Error messages logic fixed.
    • \n
    \n

    2.25.14

    \n
      \n
    • Multisite support improved.
    • \n
    • CSS outside of the plugin issue fixed.
    • \n
    • Better number formatting on the dashboard.
    • \n
    • Lockout email template updated.
    • \n
    \n

    2.25.13

    \n
      \n
    • Ultimate Member compatibility.
    • \n
    • Fixed conflicting URL parameters in some rare cases.
    • \n
    • Updated attempts counter logic.
    • \n
    \n

    2.25.12

    \n
      \n
    • Fixed IPv4 validation when passed with a port number.
    • \n
    • Fixed texts and translations.
    • \n
    \n

    2.25.11

    \n
      \n
    • PHP 8 compatibility fixed.
    • \n
    • Logs loading issue fixed.
    • \n
    • Help and Extensions tabs added.
    • \n
    • Notification about auto updates added.
    • \n
    • Displaying of plugin version added.
    • \n
    • Text changes made.
    • \n
    \n

    2.25.10

    \n
      \n
    • Tested with PHP 8.
    • \n
    • Small styles refactoring.
    • \n
    • Fixed a rare issue with events log not being displayed correctly.
    • \n
    • Chart library updated.
    • \n
    \n

    2.25.9

    \n
      \n
    • Welcome page replaced with a modal.
    • \n
    \n

    2.25.8

    \n
      \n
    • Email text, links updated.
    • \n
    \n

    2.25.7

    \n
      \n
    • Country flags added to log.
    • \n
    • Refresh button added to log.
    • \n
    • Email text updated.
    • \n
    \n

    2.25.6

    \n
      \n
    • Email links updated.
    • \n
    \n

    2.25.5

    \n
      \n
    • Fixed Woocommerce integration.
    • \n
    • Updated some interface links.
    • \n
    \n

    2.25.4

    \n
      \n
    • Fixed session error in rare cases.
    • \n
    • Access rules explained.
    • \n
    • Improved session behavior on the login page.
    • \n
    • Fixed warning on some GoDaddy installations.
    • \n
    \n

    2.25.3

    \n
      \n
    • Improved compatibility with WordFence.
    • \n
    • Better handling of HTTP_X_FORWARDED_FOR on Debug tab.
    • \n
    • Added option to hide warning badge.
    • \n
    \n

    2.25.2

    \n
      \n
    • Security indicator fixed for multisite.
    • \n
    \n

    2.25.1

    \n
      \n
    • Added setting to turn the dashboard widged off.
    • \n
    • The widget is visible to admins only.
    • \n
    \n

    2.25.0

    \n
      \n
    • Dashboard widged added.
    • \n
    • Security indicator added.
    • \n
    \n

    2.24.1

    \n
      \n
    • Fixed E_ERROR occurring in rare cases when the log table is corrupted.
    • \n
    \n

    2.24.0

    \n
      \n
    • Protection increased: bots can’t parse lockout messages anymore.
    • \n
    \n

    2.23.2

    \n
      \n
    • Cloud: better unlock UX.
    • \n
    • Litle cleanup.
    • \n
    \n

    2.23.1

    \n
      \n
    • Added infinite scroll for cloud logs.
    • \n
    \n

    2.23.0

    \n
      \n
    • Reduced plugin size by removing obsolete translations.
    • \n
    • Cleaned up the dashboard.
    • \n
    • Cloud: added information about auto/manually-blocked IPs.
    • \n
    • GDPR: added an option to insert a link to a Privacy Policy page via a shortcode, clarified GDPR compliance.
    • \n
    \n

    2.22.1

    \n
      \n
    • IP added to the email subject.
    • \n
    \n

    2.22.0

    \n
      \n
    • Added support of CIDR notation for specifying IP ranges.
    • \n
    • Texts updated.
    • \n
    • Refactoring.
    • \n
    \n

    2.21.1

    \n
      \n
    • Fixed: Uncaught Error: Call to a member function stats()
    • \n
    • Cloud API: added block by country.
    • \n
    • Refactoring.
    • \n
    \n

    2.21.0

    \n
      \n
    • GDPR compliance: IPs obfuscation replaced with a customizable consent message on the login page.
    • \n
    • Cloud API: fixed removing of blocked IPs from the access lists under certain conditions.
    • \n
    • Cloud API: domain for Setup Code is taken from the WordPress settings now.
    • \n
    \n

    2.20.6

    \n
      \n
    • Multisite tab links fixed.
    • \n
    \n

    2.20.5

    \n
      \n
    • Option to show and hide the top-level menu item.
    • \n
    \n

    2.20.4

    \n
      \n
    • Sucuri compatibility verified.
    • \n
    • Wordfence compatibility verified.
    • \n
    • Better menu navigation.
    • \n
    • Timezones fixed for the global chart.
    • \n
    \n

    2.20.3

    \n
      \n
    • More clear wording.
    • \n
    • Cloud API: fixed double submit in the settings form.
    • \n
    • Better displaying of stats.
    • \n
    \n

    2.20.2

    \n
      \n
    • Updated email text.
    • \n
    \n

    2.20.1

    \n
      \n
    • New dashboard more clear stats.
    • \n
    \n

    2.20.0

    \n
      \n
    • New dashboard with simple stats.
    • \n
    \n

    2.19.2

    \n
      \n
    • Texts and links updated.
    • \n
    \n

    2.19.1

    \n
      \n
    • Welcome page.
    • \n
    • Image and text updates.
    • \n
    \n

    2.19.0

    \n
      \n
    • Refactoring.
    • \n
    • Feedback message location fixed.
    • \n
    • Text changes.
    • \n
    \n

    2.18.0

    \n
      \n
    • Cloud API: usage chart added.
    • \n
    • Text changes.
    • \n
    \n

    2.17.4

    \n
      \n
    • Missing jQuery images added.
    • \n
    • PHP 5 compatibility fixed.
    • \n
    • Custom App setup link replaced with setup code.
    • \n
    \n

    2.17.3

    \n
      \n
    • Plugin pages message.
    • \n
    \n

    2.17.2

    \n
      \n
    • Lockout notification refactored.
    • \n
    \n

    2.17.1

    \n
      \n
    • CSS cache issue fixed.
    • \n
    • Notification text updated.
    • \n
    \n

    2.17.0

    \n
      \n
    • Refactoring.
    • \n
    • Email text and notification updated.
    • \n
    • New links in the list of plugins.
    • \n
    \n

    2.16.0

    \n
      \n
    • Custom Apps functionality implemented. More details: https://limitloginattempts.com/app/
    • \n
    \n

    2.15.2

    \n
      \n
    • Alternative method of closing the feedback message.
    • \n
    \n

    2.15.1

    \n
      \n
    • Refactoring.
    • \n
    \n

    2.15.0

    \n
      \n
    • Reset password feature has been removed as unwanted.
    • \n
    • Small refactoring.
    • \n
    \n

    2.14.0

    \n
      \n
    • BuddyPress login error compatibility implemented.
    • \n
    • UltimateMember compatibility implemented.
    • \n
    • A PHP warning fixed.
    • \n
    \n

    2.13.0

    \n
      \n
    • Fixed incompatibility with PHP < 5.6.
    • \n
    • Settings page layout refactored.
    • \n
    \n

    2.12.3

    \n
      \n
    • The feedback message is shown for admins only now, and it can also be closed even if the site has issues with AJAX.
    • \n
    \n

    2.12.2

    \n
      \n
    • Fixed the feedback message not being shown, again.
    • \n
    \n

    2.12.1

    \n
      \n
    • Fixed the feedback message not being shown.
    • \n
    \n

    2.12.0

    \n
      \n
    • Small refactoring.
    • \n
    • get_message() – fixed error notices.
    • \n
    • This is the first time we are asking you for a feedback.
    • \n
    \n

    2.11.0

    \n
      \n
    • Blacklisted usernames can’t be registered anymore.
    • \n
    \n

    2.10.1

    \n
      \n
    • Fixed: GDPR compliance option could not be selected on the multisite installations.
    • \n
    \n

    2.10.0

    \n
      \n
    • Debug information has been added for better support.
    • \n
    \n

    2.9.0

    \n
      \n
    • Trusted IP origins option has been added.
    • \n
    \n

    2.8.1

    \n
      \n
    • Extra lockout options are back.
    • \n
    \n

    2.8.0

    \n
      \n
    • The plugin doesn’t trust any IP addresses other than _SERVER[“REMOTE_ADDR”] anymore. Trusting other IP origins make protection useless b/c they can be easily faked. This new version provides a way of secure IP unlocking for those sites that use a reverse proxy coupled with misconfigurated servers that populate _SERVER[“REMOTE_ADDR”] with wrong IPs which leads to mass blocking of users.
    • \n
    \n

    2.7.4

    \n
      \n
    • The lockout alerts can be sent to a configurable email address now.
    • \n
    \n

    2.7.3

    \n
      \n
    • Settings page is moved back to “Settings”.
    • \n
    \n

    2.7.2

    \n
      \n
    • Settings are moved to a separate page.
    • \n
    • Fixed: login error message. https://wordpress.org/support/topic/how-to-change-login-error-message/
    • \n
    \n

    2.7.1

    \n
      \n
    • A security issue inherited from the ancestor plugin Limit Login Attempts has been fixed.
    • \n
    \n

    2.7.0

    \n
      \n
    • \n

      GDPR compliance implemented.

      \n
    • \n
    • \n

      Fixed: ip_in_range() loop $ip overrides itself causing invalid results.
      \nhttps://wordpress.org/support/topic/ip_in_range-loop-ip-overrides-itself-causing-invalid-results/

      \n
    • \n
    • \n

      Fixed: the plugin was locking out the same IP address multiple times, each with a different port.
      \nhttps://wordpress.org/support/topic/same-ip-different-port/

      \n
    • \n
    \n

    2.6.3

    \n
      \n
    • Added support of Sucuri Website Firewall.
    • \n
    \n

    2.6.2

    \n
      \n
    • Fixed the issue with backslashes in usernames.
    • \n
    \n

    2.6.1

    \n
      \n
    • \n

      Plugin returns the 403 Forbidden header after the limit of login attempts via XMLRPC is reached.

      \n
    • \n
    • \n

      Added support of IP ranges in white/black lists.

      \n
    • \n
    • \n

      Lockouts now can be released selectively.

      \n
    • \n
    • \n

      Fixed the issue with encoding of special symbols in email notifications.

      \n
    • \n
    \n

    2.5.0

    \n
      \n
    • Added Multi-site Compatibility and additional MU settings. https://wordpress.org/support/topic/multisite-compatibility-47/
    • \n
    \n

    2.4.0

    \n
      \n
    • Usernames and IP addresses can be white-listed and black-listed now. https://wordpress.org/support/topic/banning-specific-usernames/ https://wordpress.org/support/topic/good-831/
    • \n
    • The lockouts log has been inversed. https://wordpress.org/support/topic/inverse-log/
    • \n
    \n

    2.3.0

    \n
      \n
    • IP addresses can be white-listed now. https://wordpress.org/support/topic/legal-user/
    • \n
    • A “Gateway” column is added to the lockouts log. It shows what endpoint an attacker was blocked from. https://wordpress.org/support/topic/xmlrpc-7/
    • \n
    • The “Undefined index: client_type” error is fixed. https://wordpress.org/support/topic/php-notice-when-updating-settings-page/
    • \n
    \n

    2.2.0

    \n
      \n
    • Removed the “Handle cookie login” setting as they are now obsolete.
    • \n
    • Added bruteforce protection against Woocommerce login page attacks. https://wordpress.org/support/topic/how-to-integrate-with-woocommerce-2/
    • \n
    • Added bruteforce protection against XMLRPC attacks. https://wordpress.org/support/topic/xmlrpc-7/
    • \n
    \n

    2.1.0

    \n
      \n
    • The site connection settings are now applied automatically and therefore have been removed from the admin interface.
    • \n
    • Now compatible with PHP 5.2 to support some older WP installations.
    • \n
    \n

    2.0.0

    \n
      \n
    • fixed PHP Warning: Illegal offset type in isset or empty https://wordpress.org/support/topic/limit-login-attempts-generating-php-errors
    • \n
    • fixed the deprecated functions issue
      \nhttps://wordpress.org/support/topic/using-deprecated-function
    • \n
    • Fixed error with function arguments: https://wordpress.org/support/topic/warning-missing-argument-2-5
    • \n
    • added time stamp to unsuccessful tries on the plugin configuration page.
    • \n
    • fixed .po translation files issue.
    • \n
    • code refactoring and optimization.
    • \n
    \n", "description": "

    Limit Login Attempts Reloaded functions as a robust deterrent against brute force attacks, bolstering your website’s security measures and optimizing its performance. It achieves this by restricting the number of login attempts allowed. This applies not only to the standard login method, but also to XMLRPC, Woocommerce, and custom login pages. With more than 2.5 million active users, this plugin fulfills all your login security requirements.

    \n

    The plugin functions by automatically preventing further attempts from a particular Internet Protocol (IP) address and/or username once a predetermined limit of retries has been surpassed. This significantly weakens the effectiveness of brute force attacks on your website.

    \n

    By default, WordPress permits an unlimited number of login attempts, posing a vulnerability where passwords can be easily deciphered through brute force methods.

    \n

    Limit Login Attempts Reloaded Premium (Try Free with Micro Cloud)
    \nUpgrade to Limit Login Attempts Reloaded Premium to extend cloud-based protection to the Limit Login Attempts Reloaded plugin, thereby enhancing your login security. The premium version includes a range of highly beneficial features, including IP intelligence to detect, counter and deny malicious login attempts. Your failed login attempts will be safely neutralized in the cloud so your website can function at its optimal performance during an attack.

    \n

    \n

    Features (Free Version):

    \n
      \n
    • Limit Logins – Limit the number of retry attempts when logging in (per each IP).
    • \n
    • Configurable Lockout Timings – Modify the amount of time a user or IP must wait after a lockout.
    • \n
    • Remaining Tries – Informs the user about the remaining retries or lockout time on the login page.
    • \n
    • Lockout Email Notifications – Informs the admin via email of lockouts.
    • \n
    • Denied Attempt Logs – View a log of all denied attempts and lockouts.
    • \n
    • IP & Username Safelist/Denylist – Control access to usernames and IPs.
    • \n
    • New User Registration Protection (Micro Cloud Accounts) – Protects default WP registration.
    • \n
    • Sucuri compatibility.
    • \n
    • Wordfence compatibility.
    • \n
    • Ultimate Member compatibility.
    • \n
    • WPS Hide Login compatibility.
    • \n
    • XMLRPC gateway protection.
    • \n
    • Woocommerce login page protection.
    • \n
    • Multi-site compatibility with extra MU settings.
    • \n
    • GDPR compliant.
    • \n
    • Custom IP origins support (Cloudflare, Sucuri, etc.).
    • \n
    • llar_admin own capability.
    • \n
    \n

    Features (Premium Version):

    \n
      \n
    • Performance Optimizer – Offload the burden of excessive failed logins from your server to protect your server resources, resulting in improved speed and efficiency of your website.
    • \n
    • Enhanced IP Intelligence – Identify repetitive and suspicious login attempts to detect potential brute force attacks. IPs with known malicious activity are stored and used to help prevent and counter future attacks.
    • \n
    • Enhanced Throttling – Longer lockout intervals each time a malicious IP or username tries to login unsuccessfully.
    • \n
    • Deny By CountryBlock logins by country by simply selecting the countries you want to deny.
    • \n
    • Auto IP Denylist – Automatically add IP addresses to your active cloud deny list that repeatedly fail login attempts.
    • \n
    • New User Registration Protection – Protects default WP registration.
    • \n
    • Global Denylist Protection – Utilize our active cloud IP data from thousands of websites in the LLAR network.
    • \n
    • Synchronized Lockouts – Lockout IP data can be shared between multiple domains for enhanced protection in your network.
    • \n
    • Synchronized Safelist/Denylist – Safelist/Denylist IP and username data can be shared between multiple domains.
    • \n
    • Premium Support – Email support with a security tech.
    • \n
    • Auto Backups of All IP Data – Store your active IP data in the cloud.
    • \n
    • Successful Logins Log – Store successful logins in the cloud including IP info, city, state and lat/long.
    • \n
    • Enhanced lockout logs – Gain valuable insights into the origins of IPs that are attempting logins.
    • \n
    • CSV Download of IP Data – Download IP data direclty from the cloud.
    • \n
    • Supports IPV6 Ranges For Safelist/Denylist
    • \n
    • Unlock The Locked Admin – Easily unlock the locked admin through the cloud.
    • \n
    \n

    *Some features require higher level plans.

    \n

    Upgrading from the old Limit Login Attempts plugin?

    \n
      \n
    1. Go to the Plugins section in your site’s backend.
    2. \n
    3. Remove the Limit Login Attempts plugin.
    4. \n
    5. Install the Limit Login Attempts Reloaded plugin.
    6. \n
    \n

    All your settings will be kept intact!

    \n

    Many languages are currently supported in the Limit Login Attempts Reloaded plugin but we welcome any additional ones.

    \n

    Help us bring Limit Login Attempts Reloaded to even more countries.

    \n

    Translations: Bulgarian, Brazilian Portuguese, Catalan, Chinese (Traditional), Czech, Dutch, Finnish, French, German, Hungarian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish

    \n

    Plugin uses standard actions and filters only.

    \n

    Based on the original code from Limit Login Attempts plugin by Johan Eenfeldt.

    \n

    Branding Guidelines

    \n

    Limit Login Attempts Reloaded™ is a trademark of Atlantic Silicon Inc. When writing about the plugin, please make sure to use Reloaded after Limit Login Attempts. Limit Login Attempts is the old plugin.

    \n
      \n
    • Limit Login Attempts Reloaded (correct)
    • \n
    • Limit Login Attempts (incorrect)
    • \n
    \n", "screenshots": "
    1. \"Login

      Login screen after a failed login with remaining retries

    2. \"Lockout

      Lockout login screen

    3. \"LLAR

      LLAR Dashboard

    4. \"Plugin

      Plugin App Settings

    5. \"Plugin

      Plugin General Settings

    6. \"Login

      Login Firewall & Login Access Rules

    7. \"Debug\"

      Debug

    8. \"Support\"

      Support

    "}, "versions": {"2.0.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.2.0.zip", "2.3.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.3.0.zip", "2.4.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.5.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.6.3.zip", "2.7.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.7.4.zip", "2.8.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.8.1.zip", "2.9.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.9.0.zip", "trunk": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.zip", "2.10.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.10.0.zip", "2.10.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.10.1.zip", "2.11.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.11.0.zip", "2.12.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.12.0.zip", "2.12.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.12.1.zip", "2.12.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.12.2.zip", "2.12.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.12.3.zip", "2.13.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.13.0.zip", "2.14.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.14.0.zip", "2.15.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.15.0.zip", "2.15.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.15.1.zip", "2.15.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.15.2.zip", "2.16.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.16.0.zip", "2.17.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.17.0.zip", "2.17.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.17.1.zip", "2.17.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.17.2.zip", "2.17.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.17.3.zip", "2.17.4": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.17.4.zip", "2.18.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.18.0.zip", "2.19.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.19.0.zip", "2.19.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.19.1.zip", "2.19.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.19.2.zip", "2.20.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.0.zip", "2.20.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.1.zip", "2.20.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.2.zip", "2.20.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.3.zip", "2.20.4": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.4.zip", "2.20.5": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.5.zip", "2.20.6": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.6.zip", "2.21.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.21.0.zip", "2.21.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.21.1.zip", "2.22.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.22.0.zip", "2.22.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.22.1.zip", "2.23.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.23.0.zip", "2.23.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.23.1.zip", "2.23.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.23.2.zip", "2.24.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.24.0.zip", "2.24.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.24.1.zip", "2.25.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.0.zip", "2.25.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.1.zip", "2.25.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.2.zip", "2.25.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.3.zip", "2.25.4": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.4.zip", "2.25.5": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.5.zip", "2.25.6": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.6.zip", "2.25.7": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.7.zip", "2.25.8": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.8.zip", "2.25.9": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.9.zip", "2.26.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.0.zip", "2.26.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.1.zip", "2.26.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.2.zip", "2.26.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.3.zip", "2.26.4": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.4.zip", "2.26.5": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.5.zip", "2.26.6": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.6.zip", "2.26.7": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.7.zip", "2.26.8": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.8.zip", "2.26.9": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.9.zip", "2.25.10": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.10.zip", "2.25.11": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.11.zip", "2.25.12": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.12.zip", "2.25.13": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.13.zip", "2.25.14": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.14.zip", "2.25.15": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.15.zip", "2.25.16": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.16.zip", "2.25.17": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.17.zip", "2.25.18": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.18.zip", "2.25.19": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.19.zip", "2.25.20": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.20.zip", "2.25.21": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.21.zip", "2.25.22": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.22.zip", "2.25.23": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.23.zip", "2.25.24": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.24.zip", "2.25.25": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.25.zip", "2.25.26": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.26.zip", "2.25.27": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.27.zip", "2.25.28": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.28.zip", "2.25.29": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.29.zip", "2.26.10": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.10.zip", "2.26.11": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.11.zip", "2.26.12": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.12.zip", "2.26.13": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.13.zip", "2.26.14": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.14.zip", "2.26.15": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.15.zip", "2.26.16": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.16.zip", "2.26.17": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.17.zip", "2.26.18": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.18.zip", "2.26.19": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.19.zip", "2.26.20": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.20.zip", "2.26.21": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.21.zip", "2.26.22": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.22.zip", "2.26.23": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.23.zip", "2.26.24": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.24.zip"}, "downloaded": 72836343, "description": "

    Limit Login Attempts Reloaded functions as a robust deterrent against brute force attacks, bolstering your website’s security measures and optimizing its performance. It achieves this by restricting the number of login attempts allowed. This applies not only to the standard login method, but also to XMLRPC, Woocommerce, and custom login pages. With more than 2.5 million active users, this plugin fulfills all your login security requirements.

    \n

    The plugin functions by automatically preventing further attempts from a particular Internet Protocol (IP) address and/or username once a predetermined limit of retries has been surpassed. This significantly weakens the effectiveness of brute force attacks on your website.

    \n

    By default, WordPress permits an unlimited number of login attempts, posing a vulnerability where passwords can be easily deciphered through brute force methods.

    \n

    Limit Login Attempts Reloaded Premium (Try Free with Micro Cloud)
    \nUpgrade to Limit Login Attempts Reloaded Premium to extend cloud-based protection to the Limit Login Attempts Reloaded plugin, thereby enhancing your login security. The premium version includes a range of highly beneficial features, including IP intelligence to detect, counter and deny malicious login attempts. Your failed login attempts will be safely neutralized in the cloud so your website can function at its optimal performance during an attack.

    \n

    \n

    Features (Free Version):

    \n
      \n
    • Limit Logins – Limit the number of retry attempts when logging in (per each IP).
    • \n
    • Configurable Lockout Timings – Modify the amount of time a user or IP must wait after a lockout.
    • \n
    • Remaining Tries – Informs the user about the remaining retries or lockout time on the login page.
    • \n
    • Lockout Email Notifications – Informs the admin via email of lockouts.
    • \n
    • Denied Attempt Logs – View a log of all denied attempts and lockouts.
    • \n
    • IP & Username Safelist/Denylist – Control access to usernames and IPs.
    • \n
    • New User Registration Protection (Micro Cloud Accounts) – Protects default WP registration.
    • \n
    • Sucuri compatibility.
    • \n
    • Wordfence compatibility.
    • \n
    • Ultimate Member compatibility.
    • \n
    • WPS Hide Login compatibility.
    • \n
    • XMLRPC gateway protection.
    • \n
    • Woocommerce login page protection.
    • \n
    • Multi-site compatibility with extra MU settings.
    • \n
    • GDPR compliant.
    • \n
    • Custom IP origins support (Cloudflare, Sucuri, etc.).
    • \n
    • llar_admin own capability.
    • \n
    \n

    Features (Premium Version):

    \n
      \n
    • Performance Optimizer – Offload the burden of excessive failed logins from your server to protect your server resources, resulting in improved speed and efficiency of your website.
    • \n
    • Enhanced IP Intelligence – Identify repetitive and suspicious login attempts to detect potential brute force attacks. IPs with known malicious activity are stored and used to help prevent and counter future attacks.
    • \n
    • Enhanced Throttling – Longer lockout intervals each time a malicious IP or username tries to login unsuccessfully.
    • \n
    • Deny By CountryBlock logins by country by simply selecting the countries you want to deny.
    • \n
    • Auto IP Denylist – Automatically add IP addresses to your active cloud deny list that repeatedly fail login attempts.
    • \n
    • New User Registration Protection – Protects default WP registration.
    • \n
    • Global Denylist Protection – Utilize our active cloud IP data from thousands of websites in the LLAR network.
    • \n
    • Synchronized Lockouts – Lockout IP data can be shared between multiple domains for enhanced protection in your network.
    • \n
    • Synchronized Safelist/Denylist – Safelist/Denylist IP and username data can be shared between multiple domains.
    • \n
    • Premium Support – Email support with a security tech.
    • \n
    • Auto Backups of All IP Data – Store your active IP data in the cloud.
    • \n
    • Successful Logins Log – Store successful logins in the cloud including IP info, city, state and lat/long.
    • \n
    • Enhanced lockout logs – Gain valuable insights into the origins of IPs that are attempting logins.
    • \n
    • CSV Download of IP Data – Download IP data direclty from the cloud.
    • \n
    • Supports IPV6 Ranges For Safelist/Denylist
    • \n
    • Unlock The Locked Admin – Easily unlock the locked admin through the cloud.
    • \n
    \n

    *Some features require higher level plans.

    \n

    Upgrading from the old Limit Login Attempts plugin?

    \n
      \n
    1. Go to the Plugins section in your site’s backend.
    2. \n
    3. Remove the Limit Login Attempts plugin.
    4. \n
    5. Install the Limit Login Attempts Reloaded plugin.
    6. \n
    \n

    All your settings will be kept intact!

    \n

    Many languages are currently supported in the Limit Login Attempts Reloaded plugin but we welcome any additional ones.

    \n

    Help us bring Limit Login Attempts Reloaded to even more countries.

    \n

    Translations: Bulgarian, Brazilian Portuguese, Catalan, Chinese (Traditional), Czech, Dutch, Finnish, French, German, Hungarian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish

    \n

    Plugin uses standard actions and filters only.

    \n

    Based on the original code from Limit Login Attempts plugin by Johan Eenfeldt.

    \n

    Branding Guidelines

    \n

    Limit Login Attempts Reloaded™ is a trademark of Atlantic Silicon Inc. When writing about the plugin, please make sure to use Reloaded after Limit Login Attempts. Limit Login Attempts is the old plugin.

    \n
      \n
    • Limit Login Attempts Reloaded (correct)
    • \n
    • Limit Login Attempts (incorrect)
    • \n
    \n", "donate_link": "https://www.paypal.com/donate?hosted_button_id=FKD4MYFCMNVQQ", "num_ratings": 1408, "screenshots": {"1": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-1.png?rev=2104751", "caption": "Login screen after a failed login with remaining retries"}, "2": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-2.png?rev=2104751", "caption": "Lockout login screen"}, "3": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-3.png?rev=3238010", "caption": "LLAR Dashboard"}, "4": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-4.png?rev=3238010", "caption": "Plugin App Settings"}, "5": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-5.png?rev=3238010", "caption": "Plugin General Settings"}, "6": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-6.png?rev=3238010", "caption": "Login Firewall & Login Access Rules"}, "7": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-7.png?rev=3238010", "caption": "Debug"}, "8": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-8.png?rev=3238010", "caption": "Support"}}, "support_url": "https://wordpress.org/support/plugin/limit-login-attempts-reloaded/", "contributors": {"wpchefgadget": {"avatar": "https://secure.gravatar.com/avatar/b8de3412c688e2220f64cbb28b46cd18b00776c7b14c5a6e4e3867b890a448cf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpchefgadget/", "display_name": "WPChef"}}, "last_updated": "2025-10-29 3:27pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.24.zip", "author_profile": "https://profiles.wordpress.org/wpchefgadget/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f6bb-718a-b51c-244bc31d5a16", "name": "Limit Login Attempts Reloaded – Login Security, Brute Force Protection, Firewall", "slug": "limit-login-attempts-reloaded", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761751620, "version": "2.26.24"}, "support_threads": 5, "requires_plugins": [], "short_description": "Block excessive login attempts and protect your site against brute force attacks. Simple, yet powerful tools to improve site performance.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 4}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c74-73f1-a8a1-0ac1cf0a4244', 'did:web:api.aspiredev.org:packages:wp-plugin:litespeed-cache', 'litespeed-cache', 'LiteSpeed Cache', '

    LiteSpeed Cache for WordPress (LSCWP) is an all-in-one site acceleration plugin, featuring an exclusive server-level cache and a collection of optimization features.

    -

    LSCWP supports WordPress Multisite and is compatible with most popular plugins, including WooCommerce, bbPress, and Yoast SEO.

    -

    LiteSpeed Cache for WordPress is compatible with ClassicPress.

    -

    Requirements

    -

    General Features may be used by anyone with any web server (LiteSpeed, Apache, NGINX, etc.).

    -

    LiteSpeed Exclusive Features require one of the following: OpenLiteSpeed, commercial LiteSpeed products, LiteSpeed-powered hosting, or QUIC.cloud CDN. Why?

    -

    Plugin Features

    -

    General Features

    -
      -
    • Free QUIC.cloud CDN Cache
    • -
    • Object Cache (Memcached/LSMCD/Redis) Support+
    • -
    • Image Optimization (Lossless/Lossy)
    • -
    • Minify CSS, JavaScript, and HTML
    • -
    • Minify inline & external CSS/JS
    • -
    • Combine CSS/JS
    • -
    • Automatically generate Critical CSS
    • -
    • Lazy-load images/iframes
    • -
    • Responsive Image Placeholders
    • -
    • Multiple CDN Support+
    • -
    • Load CSS Asynchronously
    • -
    • Defer/delay JS loading
    • -
    • Browser Cache Support+
    • -
    • Database Cleaner and Optimizer
    • -
    • PageSpeed score (including Core Web Vitals) optimization
    • -
    • OPcode Cache Support+
    • -
    • HTTP/2 Push for CSS/JS (on web servers that support it)
    • -
    • DNS Prefetch
    • -
    • Cloudflare API
    • -
    • Single Site and Multisite (Network) support
    • -
    • Import/Export settings
    • -
    • Attractive, easy-to-understand interface
    • -
    • AVIF/WebP image format support
    • -
    • Heartbeat control
    • -
    -

    + This service is not provided by the LSCache plugin, nor is it guaranteed to be installed by your service provider. However, the plugin is compatible with the service if it is in use on your site.

    -

    LiteSpeed Exclusive Features

    -
      -
    • Automatic page caching to greatly improve site performance
    • -
    • Automatic purge of related pages based on certain events
    • -
    • Private cache for logged-in users
    • -
    • Caching of WordPress REST API calls
    • -
    • Separate caching of desktop and mobile views
    • -
    • Ability to schedule purge for specified URLs
    • -
    • WooCommerce and bbPress support
    • -
    • WordPress CLI commands
    • -
    • API system for easy cache integration
    • -
    • Exclude from cache by URI, Category, Tag, Cookie, User Agent
    • -
    • Smart preload crawler with support for SEO-friendly sitemap
    • -
    • Multiple crawlers for cache varies
    • -
    • HTTP/2 support
    • -
    • HTTP/3 & QUIC support
    • -
    • ESI (Edge Side Includes) support*
    • -
    • Widgets and Shortcodes as ESI blocks* (requires Classic Widgets plugin for WP 5.8+)
    • -
    -

    * Feature not available in OpenLiteSpeed

    -

    LSCWP Resources

    - -

    Third Party Compatibility

    -

    The vast majority of plugins and themes are compatible with LSCache. Our API is available for those that are not. Use the API to customize smart purging, customize cache rules, create cache varies, and make WP nonce cacheable, among other things.

    -

    Privacy

    -

    This plugin includes some suggested text that you can add to your site’s Privacy Policy via the Guide in the WordPress Privacy settings.

    -

    For your own information: LiteSpeed Cache for WordPress potentially stores a duplicate copy of every web page on display on your site. The pages are stored locally on the system where LiteSpeed server software is installed and are not transferred to or accessed by LiteSpeed employees in any way, except as necessary in providing routine technical support if you request it. All cache files are temporary, and may easily be purged before their natural expiration, if necessary, via a Purge All command. It is up to individual site administrators to come up with their own cache expiration rules.

    -

    In addition to caching, our WordPress plugin has online features provided by QUIC.cloud for Image Optimization and Page Optimization services. When one of these optimizations is requested, data is transmitted to a remote QUIC.cloud server, processed, and then transmitted back for use on your site. QUIC.cloud keeps copies of that data for up to 7 days and then permanently deletes it. Similarly, the WordPress plugin has a Reporting feature whereby a site owner can transmit an environment report to LiteSpeed so that we may better provide technical support. None of these features collects any visitor data. Only server and site data are involved.

    -

    QUIC.cloud CDN, if enabled, uses LSCache technology to access your site, and serve your content from remote global nodes. Your data is not accessed by QUIC.cloud employees in any way, except as necessary in providing maintenance or technical support.

    -

    Please see the QUIC.cloud Privacy Policy for our complete Privacy/GDPR statement.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "LiteSpeed Cache", "slug": "litespeed-cache", "tags": {"seo": "seo", "caching": "caching", "optimize": "Optimize", "pagespeed": "pagespeed", "performance": "performance"}, "added": "2016-01-29", "icons": {"1x": "https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181", "2x": "https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181"}, "author": "LiteSpeed Technologies", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181", "high": "https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181"}, "ratings": {"1": 98, "2": 21, "3": 22, "4": 48, "5": 2496}, "version": "7.6.2", "homepage": "https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration", "requires": "5.3", "sections": {"faq": "\n
    \nWhy do the cache features require LiteSpeed Server?\n\n

    \n

    This plugin communicates with your LiteSpeed Web Server and its built-in page cache (LSCache) to deliver superior performance to your WordPress site. The plugin’s cache features indicate to the server that a page is cacheable and for how long, or they invalidate particular cached pages using tags.

    \n

    LSCache is a server-level cache, so it’s faster than PHP-level caches. Compare with other PHP-based caches.

    \n

    A page cache allows the server to bypass PHP and database queries altogether. LSCache, in particular, because of its close relationship with the server, can remember things about the cache entries that other plugins cannot, and it can analyze dependencies. It can utilize tags to manage the smart purging of the cache, and it can use vary cookies to serve multiple versions of cached content based on things like mobile vs. desktop, geographic location, and currencies. See our Caching 101 blog series.

    \n

    If all of that sounds complicated, no need to worry. LSCWP works right out of the box with default settings that are appropriate for most sites. See the Beginner’s Guide.

    \n

    Don’t have a LiteSpeed server? Try our QUIC.cloud CDN service. It allows sites on any server (NGINX and Apache included) to experience the power of LiteSpeed caching! Click here to learn more or to give QUIC.cloud a try.

    \n

    \n
    \nWhat about the optimization features of LSCache?\n\n

    \n

    LSCWP includes additional optimization features, such as Database Optimization, Minification and Combination of CSS and JS files, HTTP/2 Push, CDN Support, Browser Cache, Object Cache, Lazy Load for Images, and Image Optimization! These features do not require the use of a LiteSpeed web server.

    \n

    \n
    \nIs the LiteSpeed Cache Plugin for WordPress free?\n\n

    \n

    Yes, LSCWP will always be free and open source. That said, a LiteSpeed server is required for the cache features, and there are fees associated with some LiteSpeed server editions. Some of the premium online services provided through QUIC.cloud (CDN Service, Image Optimization, Critical CSS, Low-Quality Image Placeholder, etc.) require payment at certain usage levels. You can learn more about what these services cost, and what levels of service are free, on your QUIC.cloud dashboard.

    \n

    \n
    \nWhat server software is required for this plugin?\n\n

    \n

    A LiteSpeed solution is required in order to use the LiteSpeed Exclusive features of this plugin. Any one of the following will work:

    \n
      \n
    1. LiteSpeed Web Server Enterprise with LSCache Module (v5.0.10+)
    2. \n
    3. OpenLiteSpeed (v1.4.17+)
    4. \n
    5. LiteSpeed WebADC (v2.0+)
    6. \n
    7. QUIC.cloud CDN
    8. \n
    \n

    The General Features may be used with any web server. LiteSpeed is not required.

    \n

    \n
    \nDoes this plugin work in a clustered environment?\n\n

    \n

    The cache entries are stored at the LiteSpeed server level. The simplest solution is to use LiteSpeed WebADC, as the cache entries will be stored at that level.

    \n

    If using another load balancer, the cache entries will only be stored at the backend nodes, not at the load balancer.

    \n

    The purges will also not be synchronized across the nodes, so this is not recommended.

    \n

    If a customized solution is required, please contact LiteSpeed Technologies at info@litespeedtech.com

    \n

    NOTICE: The rewrite rules created by this plugin must be copied to the Load Balancer.

    \n

    \n
    \nWhere are the cached files stored?\n\n

    \n

    The actual cached pages are stored and managed by LiteSpeed Servers.

    \n

    Nothing is stored within the WordPress file structure.

    \n

    \n
    \nDoes LiteSpeed Cache for WordPress work with OpenLiteSpeed?\n\n

    \n

    Yes it can work well with OpenLiteSpeed, although some features may not be supported. See Plugin Features above for details. Any setting changes that require modifying the .htaccess file will require a server restart.

    \n

    \n
    \nIs WooCommerce supported?\n\n

    \n

    In short, yes. However, for some WooCommerce themes, the cart may not be updated correctly. Please visit our blog for a quick tutorial on how to detect this problem and fix it if necessary.

    \n

    \n
    \nAre my images optimized?\n\n

    \n

    Images are not optimized automatically unless you set LiteSpeed Cache > Image Optimization > Image Optimization Settings > Auto Request Cron to ON. You may also optimize your images manually. Learn more.

    \n

    \n
    \nHow do I make a WP nonce cacheable in my third-party plugin?\n\n

    \n

    Our API includes a function that uses ESI to “punch a hole” in a cached page for a nonce. This allows the nonce to be cached separately, regardless of the TTL of the page it is on. Learn more in the API documentation. We also welcome contributions to our predefined list of known third party plugin nonces that users can optionally include via the plugin’s ESI settings.

    \n

    \n
    \nHow do I enable the crawler?\n\n

    \n

    The crawler is disabled by default, and must be enabled by the server admin first.

    \n

    Once the crawler is enabled on the server side, navigate to LiteSpeed Cache > Crawler > General Settings and set Crawler to ON.

    \n

    For more detailed information about crawler setup, please see the Crawler documentation.

    \n

    \n
    \nWhat are the known compatible plugins and themes?\n\n

    \n

    \n

    The vast majority of plugins and themes are compatible with LiteSpeed Cache. The most up-to-date compatibility information can be found in our documentation

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    works great.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy heinzhubertka on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    pretty impressive.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Berikan jempol

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Virgo (virgo14ridho) on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    i hope In the future have much integrated

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    فعال شدن QUIC.cloud

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hamid asgari (shahrestan) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    سلام و خسته نباشید من حمید رضا عسگری هستم لطفا غیر فعال شدن بررسی بفرمایید

    \n\n\n\n

    ممنونم از زحمتتان عسگری

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    good plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mrrabiee on October 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n
    \n

    As a professional designer who has optimized over 200 websites, I am truly satisfied with the performance of this plugin. Rest assured, your server also supports it, and you will get much better results.

    \n
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    What a great plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wav3front on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    superb!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    site mais rapido mas precisa configurar corretamente

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy janeteluz on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    gente, to usando o LiteSpeed Cache e meu site melhorou mto a velocidade, mas achei meio complicado de configurar no começo. depois q peguei o jeito, ta otimo e recomendo pra quem quer site rapido sem gastar mt.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Big Improvement!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy John (John Boyle) on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    80% improvement in page load time!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Only Cache I Trust

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy amanstacker on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Fast, stable, and feature-rich. Nothing else comes close!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wernerpj1 on October 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its easy to use, and made my wordpress faster, i recommend

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Cron scheduling fails with APCu object cache (could_not_set error)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy NAROLLES on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello LiteSpeed team,

    \n\n\n\n

    I’m using LiteSpeed Cache for WordPress with Object Cache enabled (APCu).
    On my site (WordPress 6.8.3, PHP 8.4.4 LiteSpeed), I get repeated cron scheduling errors:

    \n\n\n\n

    [30-Sep-2025 23:39:58 UTC] Error rescheduling event for hook bb_bg_log_clear – could_not_set
    [30-Sep-2025 12:08:04 UTC] Error rescheduling event for hook automator_userspost_posts_published – could_not_set
    [30-Sep-2025 13:26:47 UTC] Error rescheduling event for hook action_scheduler_run_queue – could_not_set
    [30-Sep-2025 15:59:17 UTC] Error unscheduling event for hook jetpack_scan_refresh_states_event – could_not_set
    [01-Oct-2025 05:29:44 UTC] Error rescheduling event for hook jetpack_sync_full_cron – could_not_set

    \n\n\n\n

    It seems that update_option(''cron'') fails to save when APCu object cache is active.
    Option size is small (11 KB), so not corrupted.

    \n\n\n\n

    Questions:

    \n\n\n\n
      \n
    1. Can LiteSpeed Cache exclude specific WordPress options from object cache (like cron, doing_cron, action_scheduler_lock_async_request_queue)?
    2. \n\n\n\n
    3. Do you recommend disabling APCu for cron events?
    4. \n\n\n\n
    5. Is there a known workaround for this under PHP 8.4 + LiteSpeed + APCu?
    6. \n
    \n\n\n\n

    Thanks,
    Luc Narolles – JAF-info

    \n
    \n
    \n", "changelog": "

    7.6.2 – Oct 17 2025

    \n
      \n
    • 🐞Cloud Fixed the PHP 8+ typecast issue in QUIC.cloud signature verification which caused activation failures.
    • \n
    • Purge Restored a delay purge hook while calling purge by CLI. (asafm7)
    • \n
    • REST Dropped legacy code that had been used for development purposes.
    • \n
    • GUI Use a stricter selector for dark mode to prevent side effects.
    • \n
    \n

    7.6.1 – Oct 15 2025

    \n
      \n
    • Cloud Increased POST connection timeout to prevent potential failures.
    • \n
    • ⚠️🐞GUI Fixed a frontend display issue caused by the dark mode CSS file loading on the website frontend. (Peter Wells PR#923)
    • \n
    • 🐞Page Optimize Corrected a typo in the DNS prefetch filter. (Yaroslav Yachmenov PR#922)
    • \n
    \n

    7.6 – Oct 15 2025

    \n
      \n
    • 🌱Admin Dark mode supported.
    • \n
    • 🌱Purge Added Purge All - VPI to the Purge menu. (PR#898)
    • \n
    • ⚠️🐞Debug Escaped comments to prevent a CSS vulnerability that could occur when debug is on. (#218778 Trustwave #CWE-79)
    • \n
    • Purge Gravatar purge now also clears the database records. (Serafín Danessa, PR#915)
    • \n
    • Conf Fixed an issue where the Drop Query String setting was not saved when in network mode. (Jory Hogeveen PR#910)
    • \n
    • VPI Add fetchpriority and decode attributes to VPI. (Hirak Kalita, serpentdriver, PR#903)
    • \n
    • Cloud Auto sync new Server IP to QUIC.cloud if changed. (cloud86)
    • \n
    • GUI Auto update port value when Object Cache Method is changed.
    • \n
    • API Dropped legacy conf::val() function.
    • \n
    • 🐞Misc Fixed PHP 7.2 compatibility issue. (Ulrich Viridis, PR#913)
    • \n
    • Misc Added UCSS file path to comment info for easier debug. (PR#914)
    • \n
    \n

    7.5.0.1 – Sep 11 2025

    \n
      \n
    • 🐞GUI Fixed an issue where the network dashboard template was missing. (mcworks)
    • \n
    \n

    7.5 – Sep 10 2025

    \n
      \n
    • 🌱Image Optimize New option Optimize Image Sizes to allow user to choose which image sizes to include in optimization request.
    • \n
    • 🐞Purge Purge Time setting will respect WP timezone setting now. (PR#893)
    • \n
    • 🐞Conf Fixed a minor type-casting bug, which could cause unnecessary QUIC.cloud sync configuration when the setting is empty.
    • \n
    • Misc Dropped unused rewrite rule from htaccess.
    • \n
    \n

    7.4 – Aug 28 2025

    \n
      \n
    • 🌱Media Added new Auto Rescale Original Image option.
    • \n
    • 🌱Toolbox Added ability to Disable All for 24 Hours. (PR#886)
    • \n
    • 🐞CDN Fixed a QUIC.cloud sync configuration failure on network child sites.
    • \n
    • 🐞Object Cache Fixed a bug that failed to detect the Redis connection status.
    • \n
    • Cache Better match iPhone browsers for mobile cache detection.
    • \n
    • Cache Dropped use of advanced-cache.php support since WP v5.3+ doesn’t need it, and LiteSpeed requires WP v5.3+.
    • \n
    • Cache When page is not cacheable, set header to value used by WordPress Cache-Control header. (asafm7)
    • \n
    • Page Optimize Better compatibility for dummy CSS removal in cases where other plugins manipulate the quotation marks.
    • \n
    • Page Optimize Dropped v4.2 legacy LITESPEED_BYPASS_OPTM.
    • \n
    • Crawler Now use an .html file to test the port, as some security plugins block .txt files and cause port test failure. (#661828)
    • \n
    • GUI Show current live values for options if they are overridden by filters or the server environment. (PR#885)
    • \n
    • Data Dropped legacy code and upgraded data migration support to LSCWP v5.7-.
    • \n
    • Misc Support the LITESPEED_DEV constant to allow switching to a development environment.
    • \n
    • Misc Allow leading underscore (_) for private functions and variables in format checker.
    • \n
    • Misc Suppress frequent version check when a certain database option is cached.
    • \n
    • Misc Dropped sanitize_file_name usage to prevent template failure when 3rd party plugins manipulate that filter.
    • \n
    \n

    7.3.0.1 – Jul 30 2025

    \n
      \n
    • Page Optimize Fixed the page score impact caused by CSS placeholder. (wpconvert, Sean Thompson)
    • \n
    • Page Optimize Fixed wrong prefetch/preload injection when a page contains other <title> tags. (idatahuy)
    • \n
    • Crawler Bypassed port test if no server IP set. (kptk, serkanix, Guillermo)
    • \n
    \n

    7.3 – Jul 24 2025

    \n
      \n
    • 🌱CLI Added wp litespeed-database database optimization command.
    • \n
    • 🌱Misc Added survey and data deletion reminder in deactivation process.
    • \n
    • Core Refactored the template files to comply with WordPress standards.
    • \n
    • Core Refactored the CLI files to comply with WordPress standards. Fixed a bug with CLI option command failure handler.
    • \n
    • ESI Fixed a case where the Edit button is missing on the frontend when the permalink structure is Plain. (#934261 PR#860)
    • \n
    • API Added litespeed_purge_tags filter to allow manipulation of purge tags.
    • \n
    • API Allowed overriding litespeed_ui_events via window property. (Zsombor Franczia PR#865)
    • \n
    • API Added litespeed_vpi_should_queue filter to allow control over appending to the VPI queue. (tompalmer #855, Viktor Szépe PR#856)
    • \n
    • Debug Allowed debug at multisite network level. (PR#861)
    • \n
    • Vary Fixed a possible duplicate WebP vary in Chrome when mimicking an iPhone visit.
    • \n
    • 🐞Vary Used simpler rewrite rule to check for next generation image format support.
    • \n
    • Page Optimize Tuned the optimized data injection location in HTML to improve SEO. (videofinanzas)
    • \n
    • Page Optimize Improved DNS prefetch and preconnect sequence in HTML to be as early as possible. Simplified DNS optimization code.
    • \n
    • 🐞Page Optimize Added the JS Delay library that was missing when page optimization was off while iframe lazy load was on. (Zsombor Franczia #867)
    • \n
    • 🐞Page Optimize Allowed lazy load threshold overwrite. (Zsombor Franczia #852 PR#857)
    • \n
    • 🐞Page Optimize Fixed an issue where the async attribute was replaced even when it contained a value, e.g. async=true. (@macorak)
    • \n
    • 🐞Cloud Fixed the API call timestamp file creation warning.
    • \n
    • Cloud No longer include public key when logging QUIC.cloud registration process.
    • \n
    • Image Optimize Resend all images that failed to pull instead of bypassing them. (Ryan D)
    • \n
    • Crawler Checked QUIC.cloud CDN for crawler hit. (PR#866)
    • \n
    • 🐞Crawler Fixed an issue where the non-role-simulator crawler added the whole map to the blocklist on servers that only support port 80.
    • \n
    • GUI Added Enable All Features icon to admin bar when all features are disabled. This replaces the banner that previously displayed in admin. (Tobolo, PR#868)
    • \n
    • GUI Dropped font files. (Masoud Najjar Khodabakhsh)
    • \n
    • 3rd Resolved an issue with an empty WooCommerce ESI nonce and HTML comments on geolocation redirection. (#612331 PR#708)
    • \n
    • OPcache Detected opcache.restrict_api setting to prevent PHP warning in purge. (ookris #9496550 PR#812)
    • \n
    • Misc Simplified admin JavaScript.
    • \n
    • Misc Fixed download import file extension issue on mobile. (autori76 #874)
    • \n
    • Misc Added existing plugin version to ping API for debugging purposes.
    • \n
    • Misc Fixed comment typos reported by static analysis. (Viktor Szépe PR#836)
    • \n
    • Misc Removed global variables from plugin initialization file. (Viktor Szépe PR#837)
    • \n
    \n

    7.2 – Jun 18 2025

    \n
      \n
    • 🌱CDN New option: Cloudflare Clear on purge all. (PR#828)
    • \n
    • Core Used site_url instead of home_url to fix the content folder parsing and QUIC.cloud calls.
    • \n
    • 🐞Cloud Fixed a bug where we tried to sync QUIC.cloud usage while debug mode was ON, even when QC was not activated.
    • \n
    • Cloud Stored request timestamp in static files along w/ database to prevent duplicate requests when database is down.
    • \n
    • Cache Dropped Cache PHP Resources option.
    • \n
    • Cache Added verification to prevent admin pages from caching even if the site is set to be globally cacheable.
    • \n
    • Image Optimize Disable image pull cron if there have been no image notifications.
    • \n
    • Crawler Non-role simulator crawler will now use DNS resolve to hit original server instead of CDN nodes.
    • \n
    • Media Resolved an issue where deleting an image from grid mode neglected to also remove the optimized versions of the image. (PR#844, Zsombor Franczia #841)
    • \n
    • Media Allowed filter litespeed_next_gen_format to manipulate the value of next gen format. (Zsombor Franczia #853)
    • \n
    • 3rd Elementor: Clear all caches on regenerate CSS & Data. (PR#806)
    • \n
    • Config Purge All On Upgrade now defaults to OFF.
    • \n
    • GUI Showed Disable all features message on all WP-Admin pages for Admin-level users when enabled.
    • \n
    • Misc Used PHPCS w/ WordPress core and security coding standards to reformat cache menu code. (Viktor Szépe #696)
    • \n
    • Misc Replaced use of SHOW TABLES with DESCRIBE to prevent database halt in very large WP Multisite installations. (Boone Gorges PR#834, PR#850)
    • \n
    • Misc Replaced constants with WordPress functions to check whether AJAX or CRON is running.
    • \n
    • API Added action litespeed_save_conf to provide a trigger for configuration updates.
    • \n
    \n

    7.1 – Apr 24 2025

    \n
      \n
    • 🌱Page Optimize Added allowlist support for CCSS.
    • \n
    • Cloud CCSS results are now generated asynchronously via QUIC.cloud queue services.
    • \n
    • Cloud Added TTL control to QUIC.cloud services to make next requests more flexible.
    • \n
    • Crawler Dropped non-WebP/AVIF crawler if Next Gen Images are being used.
    • \n
    • 🐞Config Fixed an .htaccess generation bug that occurred when reactivating after previous deactivation. (PR#825)
    • \n
    • GUI Improved the QC registration notice banner for online services thanks to user feedback.
    • \n
    • GUI QUIC.cloud management links will be opened in a single dedicated new window to prevent multiple sessions.
    • \n
    • Page Optimization Enhanced URL fetch validation to avoid exposing possible local info.
    • \n
    • Debug Added a Click to copy logs button under Log View tab.
    • \n
    • CLI Removed a vary warning log in CLI for QC activation process with a customized login cookie.
    • \n
    • CLI Removed a log failure in CLI in QC activation process when no existing admin message.
    • \n
    • Misc Check version only after upgrade to reduce the requests.
    • \n
    • Misc Switched to CyberPanel.sh to detect public IP for dash tool.
    • \n
    \n

    7.0.1 – Apr 8 2025

    \n
      \n
    • Page Optimize Migrate legacy data to append trailing slash for better compatibility with v7.0-optimized UCSS/CCSS data.
    • \n
    \n

    7.0.0.1 – Mar 27 2025

    \n
      \n
    • GUI Resolved a banner message display error in certain old version cases.
    • \n
    • GUI Fixed a continual error banner when site doesn’t use QC.
    • \n
    • Config Fixed a continual CDN sync_conf/purge check issue after upgraded to v7.0.
    • \n
    • 3rd Improved WPML multi lang sync_conf compatibility.
    • \n
    \n

    7.0 – Mar 25 2025

    \n
      \n
    • 🌱Image Optimization Added AVIF format.
    • \n
    • Core Changed plugin classes auto load to preload all to prevent upgrade problems.
    • \n
    • Core Refactored configuration data initialization method to realtime update instead of delayed update in plugin upgrade phase.
    • \n
    • Core Used const.default.json instead of const.default.ini for better compatibility in case parse_ini_file() is disabled.
    • \n
    • Core Minimum required PHP version escalated to PHP v7.2.0.
    • \n
    • Core Minimum required WP version escalated to WP v5.3.
    • \n
    • Cloud Dropped Domain Key. Now using sodium encryption for authentication and validation.
    • \n
    • Cloud Added support for list_preferred in online service node detection.
    • \n
    • Cloud Fixed a domain expiry removal PHP warning. (cheekymate06)
    • \n
    • Cloud Auto dropped Cloud error message banner when successfully reconnected.
    • \n
    • Cloud Simplified the configure sync parameters to only compare and post the necessary settings.
    • \n
    • Config Simplified QUIC.cloud CDN Setup. CDN service is now automatically detected when activated in the QUIC.cloud Dashboard.
    • \n
    • Config Dropped the initial version check when comparing md5 to decide if whether to sync the configuration when upgrading the plugin.
    • \n
    • Config LITESPEED_DISABLE_ALL will now check the value to determine whether it’s been applied.
    • \n
    • Database Optimize Fixed Autoload summary for WP6.6+. (Mukesh Panchal/Viktor Szépe)
    • \n
    • CLI Added QUIC.cloud CDN CLI command: wp litespeed-online cdn_init --ssl-cert=xxx.pem --ssl-key=xxx -method=cname|ns|cfi.
    • \n
    • CLI Added QUIC.cloud CDN CLI command: wp litespeed-online link --email=xxx@example.com --api-key=xxxx.
    • \n
    • CLI Added QUIC.cloud CDN CLI command: wp litespeed-online cdn_status.
    • \n
    • CLI Added --force argument for QUIC.cloud CLI command wp litespeed-online ping.
    • \n
    • Image Optimization Dropped Auto Pull Cron setting. Added PHP const LITESPEED_IMG_OPTM_PULL_CRON support.
    • \n
    • Image Optimization Added Soft Reset Counter button to allow restarting image optimization without destroying previously optimized images.
    • \n
    • Image Optimization Added support for LITESPEED_IMG_OPTM_PULL_THREADS to adjust the threads to avoid PHP max connection limits.
    • \n
    • Image Optimization Added support for the latest firefox WebP Accept header change for serving WebP.
    • \n
    • Image Optimization Allowed PHP Constant LITESPEED_FORCE_WP_REMOTE_GET to force using wp_remote_get() to pull images.
    • \n
    • Image Optimization Dropped API filter litespeed_img_optm_options_per_image.
    • \n
    • Image Optimization Auto redirect nodes if the server environment is switched between Preview and Production.
    • \n
    • Purge Allowed LSWCP_EMPTYCACHE to be defined as false to disable the ability to Purge all sites.
    • \n
    • Purge Each purge action now has a hook.
    • \n
    • Purge Fixed PURGESINGLE and PURGE query string purge tag bug.
    • \n
    • Purge PURGE will purge the single URL only like PURGESINGLE.
    • \n
    • ESI Fixed a log logic failure when ESI buffer is empty.
    • \n
    • ESI Added Elementor nonces (jujube0ajluxl PR#736)
    • \n
    • ESI Fixed a no-cache issue in no-vary ESI requests that occurred when Login Cookie was set.
    • \n
    • ESI ESI will no longer send cookie update headers.
    • \n
    • Vary Vary name correction, which used to happen in the after_setup_theme hook, now happens later in the init hook.
    • \n
    • Crawler Enhanced hash generation function for cryptographic security.
    • \n
    • Crawler Added back Role Simulator w/ IP limited to 127.0.0.1 only. Use LITESPEED_CRAWLER_LOCAL_PORT to use 80 if original server does not support 443.
    • \n
    • Crawler Enhanced Role Simulator security by disallowing editor or above access in settings.
    • \n
    • Crawler Defaulted and limited crawler Run Duration maximum to 900 seconds and dropped the setting.
    • \n
    • Crawler Crawler will be stopped when load limit setting is 0.
    • \n
    • Crawler Dropped Delay setting. Added PHP const LITESPEED_CRAWLER_USLEEP support.
    • \n
    • Crawler Dropped Timeout setting. Added PHP const LITESPEED_CRAWLER_TIMEOUT support.
    • \n
    • Crawler Dropped Threads setting. Added PHP const LITESPEED_CRAWLER_THREADS support.
    • \n
    • Crawler Dropped Interval Between Runs setting. Added PHP const LITESPEED_CRAWLER_RUN_INTERVAL support.
    • \n
    • Crawler Dropped Sitemap Timeout setting. Added PHP const LITESPEED_CRAWLER_MAP_TIMEOUT support.
    • \n
    • Crawler Dropped Drop Domain from Sitemap setting. Added PHP const LITESPEED_CRAWLER_DROP_DOMAIN support.
    • \n
    • Crawler Fixed wrong path of .pid file under wp-admin folder in certain case. (igobybus)
    • \n
    • Crawler Show an empty map error and disabled crawler when the map is not set yet.
    • \n
    • Page Optimize Updated request link parser to follow the site permalink. (Mijnheer Eetpraat #766)
    • \n
    • Page Optimize Updated latest CSS/JS optimization library to fix issues for RGB minification and external imports when combining CSS.
    • \n
    • Page Optimize Exclude Google Analytics from JavaScript optimization. (James M. Joyce #269 PR#726)
    • \n
    • Page Optimize Fixed typo in LITESPEED_NO_OPTM constant definition. (Roy Orbitson PR#796)
    • \n
    • CDN Fixed CDN replacement for inline CSS url with round brackets case. (agodbu)
    • \n
    • GUI Added an Online Service tab under General menu.
    • \n
    • GUI Added a QUIC.cloud CDN tab.
    • \n
    • GUI Combined all Crawler settings to a single setting tab.
    • \n
    • GUI Switch buttons rtl compatibility. (Eliza/Mehrshad Darzi #603)
    • \n
    • GUI Fixed an issue where an irremovable banner couldn’t be echoed directly.
    • \n
    • GUI Limited page speed chart to cacheable servers only.
    • \n
    • Tag Fixed a potential warning in tags. (ikiterder)
    • \n
    • Tag Appended AJAX action to cache tags.
    • \n
    • Tag Dropped normal HTTP code. Only error codes (403/404/500) will be used for tags.
    • \n
    • Misc Fixed fatal activation error on Network installation when no other plugins are active. (PR#808 #9496550)
    • \n
    • Misc Improved README file by adding minimum supported PHP/WordPress versions. (Viktor Szépe)
    • \n
    • Misc Added reliance on just-in-time translation loading. (Pascal Birchler #738)
    • \n
    • Misc Will now check whether the filename is valid before saving a file to fix the possible Object Cache log issue. (Mahdi Akrami #761)
    • \n
    • Misc Fixed PHP 7.2 compatibility in cloud message. (Viktor Szépe #771)
    • \n
    • Misc Incompatibility warning banner for third party plugins is now dismissible.
    • \n
    • Misc Generated robots.txt file under litespeed folder to discourage search engine indexing of static resource files. (djwilko12)
    • \n
    • Debug Escalated debug initialization to as early as possible to allow more configuration information to be logged.
    • \n
    • 3rd Fixed warning in Buddy Press code integration. (Viktor Szépe/antipole PR#778)
    • \n
    \n

    6.5.4 – Dec 16 2024

    \n
      \n
    • Page Optimize Fixed Google Fonts broken with the Async option. (HivePress #787)
    • \n
    \n

    6.5.3 – Dec 4 2024

    \n
      \n
    • Misc Quote escaped in attributes when building HTML. (CVE-2024-51915)
    • \n
    \n

    6.5.2 – Oct 17 2024

    \n
      \n
    • Crawler Removed barely used Role Simulator from Crawler, to prevent potential security issues.
    • \n
    • Misc Removed mt_srand function in random hash generation to slightly improve the hash result.
    • \n
    \n

    6.5.1 – Sep 25 2024

    \n
      \n
    • Security This release includes two security updates to enhance the post validation of the editor (CVE-2024-47373), and to secure the GUI queue display from malicious vary input (CVE-2024-47374).
    • \n
    • Media Sanitized dimensions for the images when replacing with placeholders. (TaiYou)
    • \n
    • Page Optimize Sanitized vary value in queue list. (TaiYou)
    • \n
    • Cloud Silent API error when failing to retrieve news updates.
    • \n
    \n

    6.5.0.2 – Sep 6 2024

    \n
      \n
    • Debug Compatibility improvement for WP installations w/o AUTH_KEY defined in wp-config.php.
    • \n
    \n

    6.5.0.1 – Sep 4 2024

    \n
      \n
    • 🔥Debug Fixed a corner case fatal error when Object Cache is ON but failed to connect, and wp-content/litespeed directory is not writable, and debug option is ON.
    • \n
    \n

    6.5 – Sep 4 2024

    \n

    *❗Security This release includes several debug log improvements for improved security, as listed below. Update strongly recommended.
    \n* Debug Moved debug log to litespeed individual folder /wp-content/litespeed/debug/.
    \n* Debug Disallowed visits to /litespeed/debug/ folder log files in .htaccess.
    \n* Debug Dropped const LSCWP_DEBUG_PATH support.
    \n* Debug Renamed debug.purge.log to purge.log.
    \n* Debug Added dummy index.php for debug folder.
    \n* Debug Used random string for log filenames.
    \n* Debug Removed cookies-related info. (Thanks to Rafie)
    \n* Debug Dropped Log Cookies option.
    \n* Report Escaped report content to protect it from potential XSS attack. (Islam R alsaid #505746)
    \n* ESI Added nonce for Advanced Custom Fields + Advanced Forms. (David Lapointe Gilbert #439)
    \n* Purge Run ACTION_PURGE_EMPTYCACHE even if cache is disabled in network admin. (Philip #453)
    \n* Page Optimize Disable UCSS exclusion when UCSS is inactived. (#640)
    \n* 3rd Fixed undefined warning in WooCommerce Widgets. (Lolosan #719)
    \n* 3rd Correct the integration with User Switching. (John Blackbourn #725)
    \n* 3rd Fixed Admin Bar Missing issue on DIVI + Elementor frontend. (thyran/robertstaddon PR#727)

    \n

    6.4.1 – Aug 19 2024

    \n
      \n
    • Security This release patches a security issue that may affect previous LSCWP versions since v1.9.
    • \n
    • 🐞Page Optimize Fixed HTML minification returning blank page issue. (#706)
    • \n
    • 🐞CDN Fixed a bug when Cloudflare status option is empty. (#684 #992174)
    • \n
    • Core Minimum required WP version escalated to WP v4.9.
    • \n
    \n

    6.4 – Aug 13 2024

    \n
      \n
    • Cache Corrected QC and LSADC cache hit status.
    • \n
    • Cloud Allow partner info removal in QUIC.cloud notification.
    • \n
    • Crawler Separated CSS preparation validation from crawler validation.
    • \n
    • GUI Moved WordPress Image Quality Control setting from Image Optimization menu to Page Optimization menu.
    • \n
    • 3rd Add Elementor Edit button back in ESI. (PR#635)
    • \n
    • 3rd Fixed Instant click potential conflict w/ other plugins.
    • \n
    \n

    6.3.0.1 – Jul 29 2024

    \n
      \n
    • 🔥🐞Rest Disabled WP default Editor cache for REST requests to fix editor errors. (Shivam)
    • \n
    • Cache Supported cache_nocacheable.txt predefined settings.
    • \n
    \n

    6.3 – Jul 22 2024

    \n
      \n
    • 🌱Page Optimize HTML Keep Comments: When minifying HTML do not discard comments that match a specified pattern. (#328853)
    • \n
    • 🌱Cache Cache POST requests. Now can configure POST/GET AJAX requests to be cached. (#647300)
    • \n
    • Cache Bypass admin initialization when doing ajax call. (Tim)
    • \n
    • Cache Better control over the cache location #541 (Gal Baras/Tanvir Israq)
    • \n
    • Cloud Added nonce for callback validation to enhance security. (Chloe@Wordfence)
    • \n
    • Cloud Fixed an error message for daily quota.
    • \n
    • Cloud Display error message when communicating with QUIC.cloud causes a token error.
    • \n
    • ESI Bypass ESI at an earlier stage when getting DONOTCACHEPAGE.
    • \n
    • ESI Added ESI nonce for Events Calendar and jetMenu mobile hamburger menu. (#306983 #163710 PR#419)
    • \n
    • ESI Added WP Data Access nonce (PR#665)
    • \n
    • ESI Added WP User Frontend ESI nonce (PR#675)
    • \n
    • Media Ignored images from JS in image size detection (PR#660)
    • \n
    • GUI Moved Preset menu from network level to site level for multisite networks.
    • \n
    • GUI Suppressed sitemap generation message if not triggered manually.
    • \n
    • GUI Added CloudFlare purge to front end menu.
    • \n
    • GUI Allowed customized partner CDN login link on dash.
    • \n
    • Page Optimize Cleaned up litespeed_url table when clearing url files. (PR#664)
    • \n
    • Page Optimize Updated Instant Click library to version 5.2.0.
    • \n
    • Page Optimize Added Flatsome theme random string excludes. (PR#415)
    • \n
    • Page Optimize Exclude Cloudflare turnstile from JS optimizations. (Tobolo)
    • \n
    • Page Optimize Fixed Cloudflare Turnstile issues. (Contributolo PR#671/672)
    • \n
    • Object Improved debug log for object cache status. (PR#669)
    • \n
    • Object Added brief parseable header comments to the drop-in file. (OllieJones)
    • \n
    • Debug Trimmed debug log.
    • \n
    • Misc Improved compatibility and sped up resolving for JSON functions json_encode/json_decode. (hosni/szepeviktor #693)
    • \n
    • Misc Fixed typos in params and comments. (szepeviktor #688)
    • \n
    • Image Optimization Fixed an issue which suppressed new requests when there were no new images in the library but there were unprocessed images in the send queue.
    • \n
    • Image Optimization Improved Cloud side quota check by disallowing new requests if notified but not pulled.
    • \n
    • Image Optimization Keep image attributes when replacing dimensions. (PR#686 #381779)
    • \n
    \n

    6.2.0.1 – Apr 25 2024

    \n
      \n
    • 🔥🐞Page Optimize Fixed the image display issue that occurs with Elementor’s data-settings attribute when the WebP image is not yet ready. (kanten/cbwwebmaster/reedock #132840 #680939 #326525)
    • \n
    \n

    6.2 – Apr 23 2024

    \n
      \n
    • 🌱Crawler Added Crawler hit/miss filter. (#328853)
    • \n
    • 🌱CLI Image optimization now supports wp litespeed-image batch_switch orig/optm. (A2Hosting)
    • \n
    • 🌱VPI Auto preload VPI images. (Ankit)
    • \n
    • Object Added support for username/password authentication for Redis (PR#616 Donatas Abraitis/hostinger)
    • \n
    • Page Optimize Now supporting Elementors data-settings WebP replacement. (Thanks to Ryan D)
    • \n
    • Cache Send Cache-Control: no-cache, no-store, must-revalidate, max-age=0 when page is not cacheable. (asafm7/Ruikai)
    • \n
    • Cache Cache control will respect X-Http-Method-Override now. (George)
    • \n
    • Cache No cache for X-Http-Method-Override: HEAD. (George)
    • \n
    • Cache Specified LSCWP in adv-cache compatible file.
    • \n
    • Cache Fixed redirection loop if query string has tailing ampersand (#389629)
    • \n
    • Cache Dropped “Cache Favicon.ico” option as it is redundant with 404 cache. (Lauren)
    • \n
    • Cache Fixed deprecated PHP v8 warning in page redirection. (Issue#617 dcx15)
    • \n
    • Cloud REST callback used ACL for QC ips validation.
    • \n
    • Cloud Fixed a typo in parsing cloud msg which prevented error messages to show.
    • \n
    • Cloud Carried on PHP ver for better version detection purpose.
    • \n
    • Cloud Escaped token to show correctly in report.
    • \n
    • Cloud Fixed a QC cloud ip verification setup failure in PHP 5.3.
    • \n
    • 🐞Cloud Fixed a continual new version detection.
    • \n
    • 🐞Image Optimize Fixed a summary counter mismatch for finished images. (A2Hosting)
    • \n
    • CDN Auto CDN setup compatibility with WP versions less than 5.3.
    • \n
    • 🐞CDN Fixed wrong replacement of non image files in image replacement. (Lucas)
    • \n
    • GUI Further filtered admin banner messages to prevent from existing danger code in database.
    • \n
    • REST Fixed a potential PHP warning in REST check when param is empty. (metikar)
    • \n
    \n

    6.1 – Feb 1 2024

    \n
      \n
    • 🌱Database New Clear Orphaned Post Meta optimizer function.
    • \n
    • Image Optimize Fixed possible PHP warning for WP requests library response.
    • \n
    • Image Optimize Unlocked noabort to all async tasks to avoid image optimization timeout. (Peter Wells)
    • \n
    • Image Optimize Fixed an issue where images weren’t being pulled with older versions of WordPress. (PR#608)
    • \n
    • Image Optimize Improved exception handling when node server cert expire.
    • \n
    • 🐞Image Optimize The failed to pull images due to 404 expiry will now be able to send the request again.
    • \n
    • Crawler CLI will now be able to force crawling even if a crawl was recently initiated within the plugin GUI.
    • \n
    • Page Optimize Fixed a dynamic property creation warning in PHP8. (PR#606)
    • \n
    • Page Optimize Fixed an issue where getimagesize could cause page optimization to fail. (PR#607)
    • \n
    • Tag Fixed an array to string conversion warning. (PR#604)
    • \n
    • Object Cache Return false to prevent PHP warning when Redis fails to set a value. (PR#612)
    • \n
    • Cache Tag Fixed an issue where $wp_query is null when getting cache tags. (PR#589)
    • \n
    \n

    6.0.0.1 – Dec 15 2023

    \n
      \n
    • 🐞Image Optimize Grouped the taken notification to regional center servers to reduce the load after image pulled.
    • \n
    \n

    6.0 – Dec 12 2023

    \n
      \n
    • 🌱Image Optimize Parallel pull. (⭐ Contributed by Peter Wells #581)
    • \n
    • 🌱Cache CLI Crawler.
    • \n
    • 🌱Cache New Vary Cookies option.
    • \n
    • 🌱Media New Preload Featured Image option. (Ankit)
    • \n
    • Core Codebase safety review. (Special thanks to Rafie Muhammad @ Patchstack)
    • \n
    • Purge Purge will not show QC message if no queue is cleared.
    • \n
    • Purge Fixed a potential warning when post type is not as expected. (victorzink)
    • \n
    • Conf Server IP field may now be emptied. (#111647)
    • \n
    • Conf CloudFlare CDN setting vulnerability patch. (Gulshan Kumar #541805)
    • \n
    • Crawler Suppressed sitemap generation msg when running by cron.
    • \n
    • Crawler PHP v8.2 Dynamic property creation warning fix. (oldrup #586)
    • \n
    • VPI VPI can now support non-alphabet filenames.
    • \n
    • VPI Fixed PHP8.2 deprecated warning. (Ryan D)
    • \n
    • ESI Fixed ESI nonce showing only HTML comment issue. (Giorgos K.)
    • \n
    • 🐞Page Optimize Fixed a fatal PHP error caused by the WHM plugin’s Mass Enable for services not in use. (Michael)
    • \n
    • 🐞Network Fix in-memory options for multisites. (Tynan #588)
    • \n
    • Network Correct Disable All Features link for Multisite.
    • \n
    • 🐞Image Optimize Removing original image will also remove optimized images.
    • \n
    • Image Optimize Increased time limit for pull process.
    • \n
    • Image Optimize Last pull time and cron tag now included in optimization summary.
    • \n
    • Image Optimize Fixed Elementors Slideshow unusual background images. (Ryan D)
    • \n
    • 🐞Database Optimize Fix an issue where cleaning post revisions would fail while cleaning postmeta. (Tynan #596)
    • \n
    • Crawler Added status updates to CLI. (Lars)
    • \n
    • 3rd WPML product category purge for WooCommerce. (Tynan #577)
    • \n
    \n

    5.7.0.1 – Oct 25 2023

    \n
      \n
    • GUI Improvements to admin banner messaging. (#694622)
    • \n
    • CDN Improvements to CDN Setup. (#694622)
    • \n
    • Image Optimize Improvements to the process of checking image identification. (#694622)
    • \n
    \n

    5.7 – Oct 10 2023

    \n
      \n
    • 🌱Page Optimize New option available: Preconnect. (xguiboy/Mukesh Patel)
    • \n
    • 🌱3rd New Vary for Mini Cart option for WooCommerce. (Ruikai)
    • \n
    • Cloud Force syncing the configuration to QUIC.cloud if CDN is reenabled.
    • \n
    • Cloud Force syncing the configuration to QUIC.cloud if domain key is readded.
    • \n
    • Cloud Limit multi-line fields when posting to QC.
    • \n
    • Cache Treat HEAD requests as cacheable as GET. (George Wang)
    • \n
    • 🐞ESI Patched a possible vulnerability issue. (István Márton@Wordfence #841011)
    • \n
    • 🐞ESI Overwrite SCRIPT_URI to prevent ESI sub request resulting in redirections. (Tobolo)
    • \n
    • 🐞Image Optimize Bypass unnecessary image processing when images were only partially optimized. (Ruikai)
    • \n
    • 🐞Guest Guest mode will not enable WebP directly anymore. (Michael Heymann)
    • \n
    • CDN Auto disable CDN if CDN URL is invalid. (Ruikai)
    • \n
    • CDN Fixed a null parameter warning for PHP v8.1 (#584)
    • \n
    • API Added litespeed_media_add_missing_sizes filter to allow bypassing Media’s “add missing sizes” option (for Guest Optimization and otherwise). (PR #564)
    • \n
    • Guest Fixed soft 404 and robots.txt report for guest.vary.php.
    • \n
    • Vary Enabled litespeed_vary_cookies for LSWS Enterprise.
    • \n
    • GUI Stopped WebP tip from wrongly displaying when Guest Mode is off.
    • \n
    • GUI Added QUIC.cloud promotion postbox on dashboard page.
    • \n
    • 3rd Added pagespeed ninja to blocklist due to its bad behavior.
    • \n
    \n", "description": "

    LiteSpeed Cache for WordPress (LSCWP) is an all-in-one site acceleration plugin, featuring an exclusive server-level cache and a collection of optimization features.

    \n

    LSCWP supports WordPress Multisite and is compatible with most popular plugins, including WooCommerce, bbPress, and Yoast SEO.

    \n

    LiteSpeed Cache for WordPress is compatible with ClassicPress.

    \n

    Requirements

    \n

    General Features may be used by anyone with any web server (LiteSpeed, Apache, NGINX, etc.).

    \n

    LiteSpeed Exclusive Features require one of the following: OpenLiteSpeed, commercial LiteSpeed products, LiteSpeed-powered hosting, or QUIC.cloud CDN. Why?

    \n

    Plugin Features

    \n

    General Features

    \n
      \n
    • Free QUIC.cloud CDN Cache
    • \n
    • Object Cache (Memcached/LSMCD/Redis) Support+
    • \n
    • Image Optimization (Lossless/Lossy)
    • \n
    • Minify CSS, JavaScript, and HTML
    • \n
    • Minify inline & external CSS/JS
    • \n
    • Combine CSS/JS
    • \n
    • Automatically generate Critical CSS
    • \n
    • Lazy-load images/iframes
    • \n
    • Responsive Image Placeholders
    • \n
    • Multiple CDN Support+
    • \n
    • Load CSS Asynchronously
    • \n
    • Defer/delay JS loading
    • \n
    • Browser Cache Support+
    • \n
    • Database Cleaner and Optimizer
    • \n
    • PageSpeed score (including Core Web Vitals) optimization
    • \n
    • OPcode Cache Support+
    • \n
    • HTTP/2 Push for CSS/JS (on web servers that support it)
    • \n
    • DNS Prefetch
    • \n
    • Cloudflare API
    • \n
    • Single Site and Multisite (Network) support
    • \n
    • Import/Export settings
    • \n
    • Attractive, easy-to-understand interface
    • \n
    • AVIF/WebP image format support
    • \n
    • Heartbeat control
    • \n
    \n

    + This service is not provided by the LSCache plugin, nor is it guaranteed to be installed by your service provider. However, the plugin is compatible with the service if it is in use on your site.

    \n

    LiteSpeed Exclusive Features

    \n
      \n
    • Automatic page caching to greatly improve site performance
    • \n
    • Automatic purge of related pages based on certain events
    • \n
    • Private cache for logged-in users
    • \n
    • Caching of WordPress REST API calls
    • \n
    • Separate caching of desktop and mobile views
    • \n
    • Ability to schedule purge for specified URLs
    • \n
    • WooCommerce and bbPress support
    • \n
    • WordPress CLI commands
    • \n
    • API system for easy cache integration
    • \n
    • Exclude from cache by URI, Category, Tag, Cookie, User Agent
    • \n
    • Smart preload crawler with support for SEO-friendly sitemap
    • \n
    • Multiple crawlers for cache varies
    • \n
    • HTTP/2 support
    • \n
    • HTTP/3 & QUIC support
    • \n
    • ESI (Edge Side Includes) support*
    • \n
    • Widgets and Shortcodes as ESI blocks* (requires Classic Widgets plugin for WP 5.8+)
    • \n
    \n

    * Feature not available in OpenLiteSpeed

    \n

    LSCWP Resources

    \n\n

    Third Party Compatibility

    \n

    The vast majority of plugins and themes are compatible with LSCache. Our API is available for those that are not. Use the API to customize smart purging, customize cache rules, create cache varies, and make WP nonce cacheable, among other things.

    \n

    Privacy

    \n

    This plugin includes some suggested text that you can add to your site’s Privacy Policy via the Guide in the WordPress Privacy settings.

    \n

    For your own information: LiteSpeed Cache for WordPress potentially stores a duplicate copy of every web page on display on your site. The pages are stored locally on the system where LiteSpeed server software is installed and are not transferred to or accessed by LiteSpeed employees in any way, except as necessary in providing routine technical support if you request it. All cache files are temporary, and may easily be purged before their natural expiration, if necessary, via a Purge All command. It is up to individual site administrators to come up with their own cache expiration rules.

    \n

    In addition to caching, our WordPress plugin has online features provided by QUIC.cloud for Image Optimization and Page Optimization services. When one of these optimizations is requested, data is transmitted to a remote QUIC.cloud server, processed, and then transmitted back for use on your site. QUIC.cloud keeps copies of that data for up to 7 days and then permanently deletes it. Similarly, the WordPress plugin has a Reporting feature whereby a site owner can transmit an environment report to LiteSpeed so that we may better provide technical support. None of these features collects any visitor data. Only server and site data are involved.

    \n

    QUIC.cloud CDN, if enabled, uses LSCache technology to access your site, and serve your content from remote global nodes. Your data is not accessed by QUIC.cloud employees in any way, except as necessary in providing maintenance or technical support.

    \n

    Please see the QUIC.cloud Privacy Policy for our complete Privacy/GDPR statement.

    \n", "screenshots": "
    1. \"Plugin

      Plugin Benchmarks

    2. \"Admin

      Admin - Dashboard

    3. \"Admin

      Admin - Image Optimization

    4. \"Admin

      Admin - Crawler

    5. \"Admin

      Admin Settings - Cache

    6. \"Admin

      Admin Settings - Page Optimization

    7. \"Admin

      Admin Settings - CDN

    8. \"Admin

      Admin Settings - DB Optimizer

    9. \"Admin

      Admin Settings - Toolbox

    10. \"Cache

      Cache Miss Example

    11. \"Cache

      Cache Hit Example

    ", "installation": "

    View detailed documentation.

    \n

    For Optimization Without a LiteSpeed Web Server

    \n
      \n
    1. Install the LiteSpeed Cache for WordPress plugin and activate it.
    2. \n
    3. From the WordPress Dashboard, navigate to LiteSpeed Cache > Page Optimization. Enable the available optimization features in the various tabs.
    4. \n
    \n

    For Caching and Optimization With a LiteSpeed Web Server

    \n
      \n
    1. Install LiteSpeed Web Server Enterprise with LSCache Module, LiteSpeed Web ADC, or OpenLiteSpeed with cache module (Free). Or sign up for QUIC.cloud CDN.
    2. \n
    3. Install the LiteSpeed Cache for WordPress plugin and activate it.
    4. \n
    5. From the WordPress Dashboard, navigate to LiteSpeed Cache > Cache, make sure the option Enable LiteSpeed Cache is set to ON.
    6. \n
    7. Enable any desired caching and optimization features in the various tabs.
    8. \n
    \n

    Notes for LiteSpeed Web Server Enterprise

    \n
      \n
    • Make sure that your license includes the LSCache module. A 2-CPU trial license with LSCache module is available for free for 15 days.
    • \n
    • The server must be configured to have caching enabled. If you are the server admin, click here for instructions. Otherwise, please request that the server admin configure the cache root for the server.
    • \n
    \n

    Notes for OpenLiteSpeed

    \n
      \n
    • This integration utilizes OpenLiteSpeed’s cache module.
    • \n
    • If it is a fresh OLS installation, the easiest way to integrate is to use ols1clk. If using an existing WordPress installation, use the --wordpresspath parameter.
    • \n
    • If OLS and WordPress are both already installed, please follow the instructions in How To Set Up LSCache For WordPress.
    • \n
    \n"}, "versions": {"4.6": "https://downloads.wordpress.org/plugin/litespeed-cache.4.6.zip", "7.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.1.zip", "7.2": "https://downloads.wordpress.org/plugin/litespeed-cache.7.2.zip", "7.3": "https://downloads.wordpress.org/plugin/litespeed-cache.7.3.zip", "7.4": "https://downloads.wordpress.org/plugin/litespeed-cache.7.4.zip", "7.5": "https://downloads.wordpress.org/plugin/litespeed-cache.7.5.zip", "7.6": "https://downloads.wordpress.org/plugin/litespeed-cache.7.6.zip", "3.6.4": "https://downloads.wordpress.org/plugin/litespeed-cache.3.6.4.zip", "6.5.4": "https://downloads.wordpress.org/plugin/litespeed-cache.6.5.4.zip", "7.0.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.0.1.zip", "7.6.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.6.1.zip", "7.6.2": "https://downloads.wordpress.org/plugin/litespeed-cache.7.6.2.zip", "trunk": "https://downloads.wordpress.org/plugin/litespeed-cache.zip", "1.0.15": "https://downloads.wordpress.org/plugin/litespeed-cache.1.0.15.zip", "1.9.1.1": "https://downloads.wordpress.org/plugin/litespeed-cache.1.9.1.1.zip", "2.9.9.2": "https://downloads.wordpress.org/plugin/litespeed-cache.2.9.9.2.zip", "5.7.0.1": "https://downloads.wordpress.org/plugin/litespeed-cache.5.7.0.1.zip", "7.0.0.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.0.0.1.zip", "7.3.0.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.3.0.1.zip", "7.5.0.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.5.0.1.zip"}, "downloaded": 118764951, "description": "

    LiteSpeed Cache for WordPress (LSCWP) is an all-in-one site acceleration plugin, featuring an exclusive server-level cache and a collection of optimization features.

    \n

    LSCWP supports WordPress Multisite and is compatible with most popular plugins, including WooCommerce, bbPress, and Yoast SEO.

    \n

    LiteSpeed Cache for WordPress is compatible with ClassicPress.

    \n

    Requirements

    \n

    General Features may be used by anyone with any web server (LiteSpeed, Apache, NGINX, etc.).

    \n

    LiteSpeed Exclusive Features require one of the following: OpenLiteSpeed, commercial LiteSpeed products, LiteSpeed-powered hosting, or QUIC.cloud CDN. Why?

    \n

    Plugin Features

    \n

    General Features

    \n
      \n
    • Free QUIC.cloud CDN Cache
    • \n
    • Object Cache (Memcached/LSMCD/Redis) Support+
    • \n
    • Image Optimization (Lossless/Lossy)
    • \n
    • Minify CSS, JavaScript, and HTML
    • \n
    • Minify inline & external CSS/JS
    • \n
    • Combine CSS/JS
    • \n
    • Automatically generate Critical CSS
    • \n
    • Lazy-load images/iframes
    • \n
    • Responsive Image Placeholders
    • \n
    • Multiple CDN Support+
    • \n
    • Load CSS Asynchronously
    • \n
    • Defer/delay JS loading
    • \n
    • Browser Cache Support+
    • \n
    • Database Cleaner and Optimizer
    • \n
    • PageSpeed score (including Core Web Vitals) optimization
    • \n
    • OPcode Cache Support+
    • \n
    • HTTP/2 Push for CSS/JS (on web servers that support it)
    • \n
    • DNS Prefetch
    • \n
    • Cloudflare API
    • \n
    • Single Site and Multisite (Network) support
    • \n
    • Import/Export settings
    • \n
    • Attractive, easy-to-understand interface
    • \n
    • AVIF/WebP image format support
    • \n
    • Heartbeat control
    • \n
    \n

    + This service is not provided by the LSCache plugin, nor is it guaranteed to be installed by your service provider. However, the plugin is compatible with the service if it is in use on your site.

    \n

    LiteSpeed Exclusive Features

    \n
      \n
    • Automatic page caching to greatly improve site performance
    • \n
    • Automatic purge of related pages based on certain events
    • \n
    • Private cache for logged-in users
    • \n
    • Caching of WordPress REST API calls
    • \n
    • Separate caching of desktop and mobile views
    • \n
    • Ability to schedule purge for specified URLs
    • \n
    • WooCommerce and bbPress support
    • \n
    • WordPress CLI commands
    • \n
    • API system for easy cache integration
    • \n
    • Exclude from cache by URI, Category, Tag, Cookie, User Agent
    • \n
    • Smart preload crawler with support for SEO-friendly sitemap
    • \n
    • Multiple crawlers for cache varies
    • \n
    • HTTP/2 support
    • \n
    • HTTP/3 & QUIC support
    • \n
    • ESI (Edge Side Includes) support*
    • \n
    • Widgets and Shortcodes as ESI blocks* (requires Classic Widgets plugin for WP 5.8+)
    • \n
    \n

    * Feature not available in OpenLiteSpeed

    \n

    LSCWP Resources

    \n\n

    Third Party Compatibility

    \n

    The vast majority of plugins and themes are compatible with LSCache. Our API is available for those that are not. Use the API to customize smart purging, customize cache rules, create cache varies, and make WP nonce cacheable, among other things.

    \n

    Privacy

    \n

    This plugin includes some suggested text that you can add to your site’s Privacy Policy via the Guide in the WordPress Privacy settings.

    \n

    For your own information: LiteSpeed Cache for WordPress potentially stores a duplicate copy of every web page on display on your site. The pages are stored locally on the system where LiteSpeed server software is installed and are not transferred to or accessed by LiteSpeed employees in any way, except as necessary in providing routine technical support if you request it. All cache files are temporary, and may easily be purged before their natural expiration, if necessary, via a Purge All command. It is up to individual site administrators to come up with their own cache expiration rules.

    \n

    In addition to caching, our WordPress plugin has online features provided by QUIC.cloud for Image Optimization and Page Optimization services. When one of these optimizations is requested, data is transmitted to a remote QUIC.cloud server, processed, and then transmitted back for use on your site. QUIC.cloud keeps copies of that data for up to 7 days and then permanently deletes it. Similarly, the WordPress plugin has a Reporting feature whereby a site owner can transmit an environment report to LiteSpeed so that we may better provide technical support. None of these features collects any visitor data. Only server and site data are involved.

    \n

    QUIC.cloud CDN, if enabled, uses LSCache technology to access your site, and serve your content from remote global nodes. Your data is not accessed by QUIC.cloud employees in any way, except as necessary in providing maintenance or technical support.

    \n

    Please see the QUIC.cloud Privacy Policy for our complete Privacy/GDPR statement.

    \n", "donate_link": "", "num_ratings": 2685, "screenshots": {"1": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-1.png?rev=2554181", "caption": "Plugin Benchmarks"}, "2": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-2.png?rev=2554181", "caption": "Admin - Dashboard"}, "3": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-3.png?rev=2554181", "caption": "Admin - Image Optimization"}, "4": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-4.png?rev=2554181", "caption": "Admin - Crawler"}, "5": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-5.png?rev=2554181", "caption": "Admin Settings - Cache"}, "6": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-6.png?rev=2554181", "caption": "Admin Settings - Page Optimization"}, "7": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-7.png?rev=2554181", "caption": "Admin Settings - CDN"}, "8": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-8.png?rev=2554181", "caption": "Admin Settings - DB Optimizer"}, "9": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-9.png?rev=2554181", "caption": "Admin Settings - Toolbox"}, "10": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-10.png?rev=2554181", "caption": "Cache Miss Example"}, "11": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-11.png?rev=2554181", "caption": "Cache Hit Example"}}, "support_url": "https://wordpress.org/support/plugin/litespeed-cache/", "contributors": {"litespeedtech": {"avatar": "https://secure.gravatar.com/avatar/b1503281757ffc27758bcd2bc44b33215b099a54a63ff42a6860800f042ea599?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/litespeedtech/", "display_name": "LiteSpeed Technologies"}}, "last_updated": "2025-10-17 2:55pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/litespeed-cache.7.6.2.zip", "author_profile": "https://profiles.wordpress.org/litespeedtech/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 7000000, "aspiresync_meta": {"id": "019a30bf-f6c0-73e5-9209-0652ffa8224f", "name": "LiteSpeed Cache", "slug": "litespeed-cache", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1760712900, "version": "7.6.2"}, "support_threads": 187, "requires_plugins": [], "short_description": "All-in-one unbeatable acceleration & PageSpeed improvement: caching, image/CSS/JS optimization...", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 143}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c84-7147-abf6-e49a8590b226', 'did:web:api.aspiredev.org:packages:wp-plugin:loco-translate', 'loco-translate', 'Loco Translate', '

    Loco Translate provides in-browser editing of WordPress translation files and integration with automatic translation services.

    -

    It also provides Gettext/localization tools for developers, such as extracting strings and generating templates.

    -

    Features include:

    -
      -
    • Built-in translation editor within WordPress admin
    • -
    • Integration with translation APIs including DeepL, Google, Lecto, Microsoft and OpenAI.
    • -
    • Create and update language files directly in your theme or plugin
    • -
    • Extraction of translatable strings from your source code
    • -
    • Native MO file compilation without the need for Gettext on your system
    • -
    • JSON (Jed) file compilation compatible with WordPress script localization
    • -
    • Support for standard PO features including comments, references and plural forms
    • -
    • PO source view with clickable source code references
    • -
    • Protected language directory for saving custom translations
    • -
    • Configurable PO file backups with diff and restore capability
    • -
    • Built-in WordPress locale codes
    • -
    -

    Official Loco WordPress plugin by Tim Whitlock.
    -For more information please visit our plugin page.

    -

    Keyboard shortcuts

    -

    The PO file editor supports the following keyboard shortcuts for faster translating:

    -
      -
    • Done and Next: Ctrl ↵
    • -
    • Next string: Ctrl
    • -
    • Previous string: Ctrl
    • -
    • Next untranslated: Shift Ctrl
    • -
    • Previous untranslated: Shift Ctrl
    • -
    • Copy from source text: Ctrl B
    • -
    • Clear translation: Ctrl K
    • -
    • Toggle Fuzzy: Ctrl U
    • -
    • Save PO / compile MO: Ctrl S
    • -
    • Toggle invisibles: Shift Ctrl I
    • -
    • Suggest translation: Ctrl J
    • -
    -

    Mac users can use ⌘ Cmd instead of Ctrl.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Loco Translate", "slug": "loco-translate", "tags": {"i18n": "i18n", "l10n": "l10n", "language": "language", "translation": "translation", "multilingual": "multilingual"}, "added": "2013-07-23", "icons": {"1x": "https://ps.w.org/loco-translate/assets/icon-128x128.png?rev=1000676", "2x": "https://ps.w.org/loco-translate/assets/icon-256x256.png?rev=1000676"}, "author": "Tim W", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/loco-translate/assets/banner-772x250.jpg?rev=745046", "high": false}, "ratings": {"1": 16, "2": 4, "3": 3, "4": 5, "5": 415}, "version": "2.8.0", "homepage": "https://wordpress.org/plugins/loco-translate/", "requires": "6.6", "sections": {"faq": "

    Please visit the FAQs page on our website for the most common issues.

    \n\n
    \nHow do I use Loco Translate?\n\n

    \n

    Try our Guides and Tutorials.

    \n

    \n
    \nHow do I get more help?\n\n

    \n

    If you have a problem using Loco Translate, please try our help pages.
    \nThere’s a lot of information there to help you understand how it works and the most common pitfalls to avoid.

    \n

    To report a bug please start a new topic in the support forum,
    \nbut please check the FAQs for similar issues first.
    \nIf you decide to submit a bug report please post enough relevant detail for us to reproduce your issue.

    \n

    \n
    \nIs my data protected?\n\n

    \n

    We don’t collect your data or track you. See the plugin privacy notice.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good plugin, but

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Nicolas Reznikoff (reznikoffnicolas) on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin conflict issue between WooCommerce and
    Locotranslate (blocking bug on (Woo) product variation management functions in the product sheet and image updates).
    Latest versions of WP, WooCommerce, Loco, and PHP 8.3
    I''m waiting for a correction (from one or the other) to re-edit this comment.
    Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin and support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Christian Wach (needle) on September 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A must-have plugin for managing the lifecycle of translations in custom plugins and themes.

    \n\n\n\n

    There''s a steep learning curve to climb when it comes to language and translation management. This plugin helps a lot and works really well.

    \n\n\n\n

    Also impressed with the speed of response to my help topic. Thanks Tim!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jaeffekt on August 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great for translate plugins in backend and frontend.
    Especially helpful in combination with Loco AI.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful plugin and great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Umberto (umberto69) on July 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its interface is clear and well-organized: just a few clicks are enough to start translating directly from the WordPress backend, without having to use external software or manually work on .po files
    The translation process is accessible to anyone, with automatic tools that help identify and modify text strings present in installed plugins.
    In addition, I found the technical support very good: the support is fast, competent and always available to solve the problem. Well done, 5 stars deserved!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I love this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy grahammiranda13work on July 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I paid for pro for two of the pro translate plugins! Guess what? It did not work! And then i tried a ''Free'' solution (this plugin) and it solved all my problems!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazingly simple translation system

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Dymytrii Ishchuk (ishchukdev) on May 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Loco has been serving great for me to translate custom themes and various plugins.

    \n\n\n\n

    Very simple, convenient, and reliable system. GOAT

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and free

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy paknejad on April 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple and free

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good plugin for automated translations

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Matthias Berndt (Matze202) on April 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m especially happy that DeepL API translation worked again so quickly. I was particularly pleasantly surprised by that, and THANK YOU again!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Extremely helpful to adjust translations

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy emmemm on March 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was not happy with a translation WooCommerce provided and was not successful to find the translation in order to change it. With this plugin, it was done in minutes. Very userfriendly and intuitive, you do not have to study tutorials. I hardly ever write reviews, but Loco Transfer defenitely deserves one. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Won't let you save your work if you have re-loged to Admin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Polaris (namrur) on March 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have faced this issues a few time already and is caused me a huge translating work loss every time. This plugin has a very harsh nonce security check. In case you have logged out as part of your website development, by mistake, or lost Internet connection- this plugin won''t aloow you to save your work even if your logged back from another Admin window.
    When hitig Save, it just throws a error message: \"Error: Failed security check for loco-nonce\".
    The only way to allow saving is by refreshing the LOCO interface.
    You can get this message with no warning after translatng numerous of phrases for a plugin,
    but you can''t do nothing to save your ork. Even not to download your work as a ZIP or PO file and to load them back after refreshing.
    I have''nt meet this \"Security\" feature in any other plugin until using LOCO translate.
    I had enouth after loosing about 2 hours of work in the last week, so I''m looking for a different translation tool.

    \n
    \n
    \n", "changelog": "

    2.8.0

    \n
      \n
    • Bugfix for PHP 8.0 compatibility
    • \n
    • Dropped support for PHP < 7.4
    • \n
    \n

    2.7.3

    \n
      \n
    • PHP 8.4 compatibility
    • \n
    • Bumped WordPress compatibility to 6.8.1
    • \n
    \n

    2.7.2

    \n
      \n
    • DeepL client moved to back end, because CORS
    • \n
    • Rolled in support for OpenAI / ChatGPT translation
    • \n
    • Workaround for JSON file references with no line number
    • \n
    • Bumped WordPress compatibility to 6.7.2
    • \n
    \n

    2.7.1

    \n
      \n
    • Debug logging of unloaded domains reduced to a summary
    • \n
    \n

    2.7.0

    \n
      \n
    • Raised minimum requirements to WordPress 6.6
    • \n
    • Minimum PHP version becomes 7.2.24 as per WordPress 6.6
    • \n
    • Locale-filtered bundle list now searches for base language
    • \n
    • Loading helper forcefully removes prematurely loaded text domains
    • \n
    • Machine translation hooks now have access to message context
    • \n
    • Persistent UI state for code view and invisible character modes
    • \n
    \n

    2.6.14

    \n
      \n
    • Critical fix: A relative path passed to load_textdomain no longer throws exception.
    • \n
    \n

    2.6.13

    \n
      \n
    • Fix for direct calls to load_textdomain with custom paths
    • \n
    • This resolves a regression in 2.6.12
    • \n
    \n

    2.6.12

    \n
      \n
    • Major fix to custom load_textdomain loader. Works when original file is absent
    • \n
    • Fixed bug in template comparison when JSON files need to be merged
    • \n
    • CSS fixes including reinstating of unsaved “star” icon
    • \n
    • Domain listener fixed for JIT loading
    • \n
    • Bumped WordPress compatibility to 6.7
    • \n
    \n

    2.6.11

    \n
      \n
    • Removed accidental console trace
    • \n
    • Bumped WordPress compatibility to 6.6.0
    • \n
    • Added lang_dir_for_domain fix to handle system file absence
    • \n
    \n

    2.6.10

    \n
      \n
    • Added loco_api_provider_{id} filter
    • \n
    • JSON compiler observes configured .js aliases
    • \n
    • Fixed a missing security check – thanks Nosa Shandy
    • \n
    • Added .blade.php tokenizer hack
    • \n
    • Bumped WordPress compatibility to 6.5.4
    • \n
    \n

    2.6.9

    \n
      \n
    • Rolled back load helper changes
    • \n
    • Moved debug messages to action hooks
    • \n
    • String debugger improvements
    • \n
    \n

    2.6.8

    \n
      \n
    • Added string debugger
    • \n
    • Added Zip download button instead of MO
    • \n
    • Added debug messages about premature domain loading
    • \n
    • Added warning when system translations not installed
    • \n
    • Compiler avoids writing empty JSON translation files
    • \n
    • UI promotes PO copy over msginit/xgettext routes
    • \n
    • Populating msginit fields when copying a PO
    • \n
    • Bumped WordPress compatibility to 6.5.3
    • \n
    \n

    2.6.7

    \n
      \n
    • WordPress 6.5.0 compatible
    • \n
    • Support for performant translation files in PHP format
    • \n
    • Added block.json and theme.json extraction
    • \n
    • Added theme pattern files to php string extractor
    • \n
    • Fixed a bug where unused plural forms were counted as untranslated
    • \n
    • Replaced CSS .notice with .panel to mitigate nag-blocker problems
    • \n
    • Removed bundle debug screen (deprecated since 2.6.5)
    • \n
    • Workaround for absent “source” references in JED files
    • \n
    • Extension polyfills now restricted to Loco admin screens.
    • \n
    \n

    2.6.6

    \n
      \n
    • Replaced open_basedir check with error capturing
    • \n
    \n

    2.6.5

    \n
      \n
    • Added syntax checking function
    • \n
    • Removed deepl_api_url config. Free API detected from :fx key suffix.
    • \n
    • Fixed bug in relative path calculations
    • \n
    • Fixed API suggestions for plural forms
    • \n
    • Fixed bug clearing unsaved state icons
    • \n
    • Added total strings count to PO file tables
    • \n
    • Sharper flags and spinners (@x2 pixel support)
    • \n
    • Handling upload_tmp_dir values outside of open_basedir
    • \n
    • Suppressing E_WARNING when testing file is_readable
    • \n
    • Bundle debug screen is deprecated (moving into Setup)
    • \n
    • Showing System Diagnostics when debug is off
    • \n
    • Bumped WordPress compatibility to 6.3.1
    • \n
    \n

    2.6.4

    \n
      \n
    • Bumped WordPress version to 6.1.1
    • \n
    • Dropped support for Internet Explorer
    • \n
    • Updated JavaScript to ECMAScript 6
    • \n
    • Added loco_bundle_configured hook
    • \n
    • Fixed error icon not clearing after correction
    • \n
    \n

    2.6.3

    \n
      \n
    • Fixed bug in plural forms comparison
    • \n
    • Fixed bug generating author theme jsons
    • \n
    • Fixed errors in bundle debugger
    • \n
    • Extended cli type argument to filter specific bundle
    • \n
    • Bumped WordPress version to 6.0.3
    • \n
    \n

    2.6.2

    \n
      \n
    • Bumped WordPress version to 6.0.0
    • \n
    • Better labelling of reverse-engineered plural forms
    • \n
    • Removed undocumented loco_locale_plurals filter; use loco_po_headers
    • \n
    • Added PO folder location indicator in breadcrumb
    • \n
    • Added syntax validation for formatted strings
    • \n
    \n

    2.6.1

    \n
      \n
    • Bumped WordPress version to 5.9.2
    • \n
    • Fix for CVE-2022-0765 reported by Taurus Omar via wpscan
    • \n
    \n

    2.6.0

    \n
      \n
    • Dropped support for WordPress < 5.2
    • \n
    • Code upgrades for >= PHP 5.6.20
    • \n
    • Bumped WordPress version to 5.9.1
    • \n
    • Removed Yandex API integration
    • \n
    • Added loco_compile_script_reference filter
    • \n
    • Plural-Forms retained when copying PO to same language
    • \n
    \n

    2.5.8

    \n
      \n
    • Compatible with PHP 8.1
    • \n
    • Bumped WordPress version to 5.9
    • \n
    • Added deprecation warning prior to v2.6
    • \n
    \n

    2.5.7

    \n
      \n
    • Fixed bug in 2.5.6 where remote APIs could not be used in batch mode
    • \n
    • Enforcing 10k character limit per request for Microsoft and Yandex Translators
    • \n
    • Style fix for revision/diff table under restore tab
    • \n
    \n

    2.5.6

    \n
      \n
    • Added loco_api_provider_source filter
    • \n
    • Fixed bug loading user preferences saved in older version
    • \n
    • Refactored file finder to avoid recursive function calls
    • \n
    • Fixed bug displaying two forms for zero plural languages
    • \n
    • Added Lecto AI to translation API providers
    • \n
    • Bumped WordPress version to 5.8.3
    • \n
    \n

    2.5.5

    \n
      \n
    • Fixed double file extension vulnerability reported by WordFence
    • \n
    • Better performance when scanning directories for file types
    • \n
    \n

    2.5.4

    \n
      \n
    • Fixed vulnerability reported by Tomi Ashari via wpscan
    • \n
    • Added filters loco_po_headers and loco_pot_headers
    • \n
    • Bumped WordPress version to 5.8.1
    • \n
    \n

    2.5.3

    \n
      \n
    • Adds option to merge JSON translations when syncing from PO
    • \n
    • Adds screen for editing file headers and sync options
    • \n
    • Fix for missing responseText in failed Ajax responses
    • \n
    • Fix for HTML entities returned from number_format_i18n
    • \n
    • Localized number formatting in JavaScript
    • \n
    • Replaced usage of date_i18n with wp_date
    • \n
    • Added configurable API endpoint for DeepL
    • \n
    • Bumped WordPress version to 5.7.2
    • \n
    \n

    2.5.2

    \n
      \n
    • Added implied formality and loco_locale_formality filter
    • \n
    • Added cli fetch command (experimental)
    • \n
    • Bumped WordPress version to 5.7
    • \n
    \n

    2.5.1

    \n
      \n
    • Support for new Yandex translate API
    • \n
    • Support for DeepL formality parameter
    • \n
    • Removed literal “1” and “one” instances from singular strings
    • \n
    • Buffering compiled JSON to support strings from multiple sources
    • \n
    • Added loco_compile_single_json filter for specifying custom JSON
    • \n
    • Added loco_extracted_template hook for adding custom strings
    • \n
    • Sync no longer removes the editor’s current text filter
    • \n
    • Bumped WordPress version to 5.6.2
    • \n
    \n

    2.5.0

    \n
      \n
    • PHP 8.0.0 compatibility
    • \n
    • Bumped WordPress version to 5.6.0
    • \n
    • Added JSON translation file generation
    • \n
    • Added custom JSON loading to LoadHelper
    • \n
    • Disabled emoji image replacement on our admin screens
    • \n
    \n

    2.4.6

    \n
      \n
    • Fixed critical bug syncing PO directly to source code
    • \n
    • Added plugin setting for allowing/disallowing missing POT
    • \n
    • Fixed WP5.5 issue with multiple ID attributes on script tags
    • \n
    \n

    2.4.5

    \n
      \n
    • Added WP-CLI sync and extract commands
    • \n
    • Fixed {locale} placeholder bug introduced in 2.4.4
    • \n
    • Improved handling of invalid character encodings
    • \n
    • Sync (msgmerge) moved to back end
    • \n
    • New fuzzy matching with fuzziness setting
    • \n
    • Bumped WordPress version to 5.5.3
    • \n
    \n

    2.4.4

    \n
      \n
    • Added PO file upload feature
    • \n
    • Added download button to file info page
    • \n
    • Fix for extracting plurals also used as singulars
    • \n
    • Updating API keys no longer require editor page reload
    • \n
    • Catching fatal startup errors in loco.php
    • \n
    • Supporting max_php_size=0 to mean no size restriction
    • \n
    • Auto-update detection now checks new site options
    • \n
    • Bumped WordPress version to 5.5.1
    • \n
    \n

    2.4.3

    \n
      \n
    • Improved fix for default syncing of msgstr fields
    • \n
    • Reverted accidental removal of js debug flag
    • \n
    • Minor fixes to API error messages
    • \n
    • Removed use of jQuery.browser
    • \n
    • Bugfix for new preferences in usermeta
    • \n
    \n

    2.4.2

    \n
      \n
    • Added loco_file_written hook
    • \n
    • Improved script tampering warning
    • \n
    • Added keypress for selecting auto-suggestion
    • \n
    • Sync no longer copies msgstr fields by default
    • \n
    • Style tweaks for WordPress 5.5
    • \n
    \n

    2.4.1

    \n
      \n
    • Fixed mapping of some API languages
    • \n
    • Added locale filter to user preferences
    • \n
    • Added debugging for credential form failures
    • \n
    • Fixed deprecated use of array_key_exists
    • \n
    • Added DeepL API service provider
    • \n
    • Improved script tampering detection
    • \n
    • Bumped WordPress version to 5.5
    • \n
    • Added “modern” skin styles
    • \n
    \n

    2.4.0

    \n
      \n
    • Added support for third party translation APIs
    • \n
    • Added file references to editor source pane in code view
    • \n
    • Added fuzzy matching during editor Sync operation
    • \n
    • Style changes including rearrangement of editor buttons
    • \n
    • Elevated warnings when scripts are tampered with
    • \n
    • Removed remnants of legacy version 1.x
    • \n
    \n

    2.3.4

    \n
      \n
    • Updated translatable strings
    • \n
    • Added missing template recommendation
    • \n
    • Alerting in debug mode when scripts are tampered with
    • \n
    • Fix for Hello Dolly being installed into a folder
    • \n
    • Removed translation column in POT edit mode
    • \n
    • Added setting to prevent ‘translating’ of POT files
    • \n
    • Enabled some linkable translations using wp_kses
    • \n
    • Bumped WordPress version to 5.4.1
    • \n
    \n

    2.3.3

    \n
      \n
    • Fixed fatal error when class not found
    • \n
    \n

    2.3.2

    \n
      \n
    • Removed login/email from default Last-Translator credit
    • \n
    • Bumped WP compatibility to 5.4
    • \n
    • Fixed PHP 7.4 deprecations
    • \n
    \n

    2.3.1

    \n
      \n
    • Default POT getter now looks in “lang” directory
    • \n
    • Not calling deprecated magic quotes functions under PHP 7.4
    • \n
    • Fixed issue with conflicting page hooks
    • \n
    • Ajax file uploads now enabled by default
    • \n
    • Removed legacy option migrations from 1.x branch
    • \n
    • Bumped WP compatibility to 5.2.4
    • \n
    \n

    2.3.0

    \n
      \n
    • Added experimental support for multipart uploads
    • \n
    • Added relocation tab for moving translation sets
    • \n
    • Creation of missing directories when writing new files
    • \n
    • Fixed duplicate file addition when iterating over symlink
    • \n
    • Bumped WP compatibility to 5.2.1
    • \n
    \n

    2.2.2

    \n
      \n
    • Security fixes as per exploit-db 46619
    • \n
    • Fixed old PHP version error in data files
    • \n
    • Bumped WP compatibility to 5.1.1
    • \n
    \n

    2.2.1

    \n
      \n
    • Fixed bug where plural tabs not displaying RTL
    • \n
    • Various improvements to PO parser incl. better charset handling
    • \n
    • Excluding node_modules and vendor directories by default
    • \n
    • Transients now have maximum lifespan of 10 days, refreshed after 24h
    • \n
    • Symlink fix for followed theme paths detected outside theme
    • \n
    • Deprecated config repository lookup
    • \n
    • Bumped WP compatibility to 5.1
    • \n
    \n

    2.2.0

    \n
      \n
    • Fix for empty language code when getting plural rules
    • \n
    • Added X-Loco-Version header to generated Gettext files
    • \n
    • Added sanity check for mbstring.func_overload madness
    • \n
    • Added “Assign template” link on missing template page
    • \n
    • Added JavaScript string extraction (experimental)
    • \n
    • Editor supports sprintf-js when javascript-format tag present
    • \n
    • Fix for duplicate comments when end punctuation differs
    • \n
    • Marking msgctxt more clearly in editor views
    • \n
    • Added loco_admin_shutdown action hook
    • \n
    • Bumped WP compatibility to 5.0 (beta)
    • \n
    \n

    2.1.5

    \n
      \n
    • Updated locale data
    • \n
    • Minor fix to file reference resolution
    • \n
    • Fixed windows paths with trailing backslash
    • \n
    • Fixed ssh-keys toggling issue
    • \n
    • Rejigged buffer handling during Ajax
    • \n
    • Bumped WP compatibility to 4.9.8
    • \n
    \n

    2.1.4

    \n
      \n
    • Bumped WP compatibility to 4.9.6
    • \n
    • Hooked in privacy policy suggestion
    • \n
    \n

    2.1.3

    \n
      \n
    • Added loco_locale_name filter and updated locale data
    • \n
    • Fixed editor column sorting to update as values change
    • \n
    • Supporting RTL text in editor preview rows
    • \n
    • Minor refactor of debug mode routing check
    • \n
    • Minor PO parser improvements
    • \n
    • Bumped WP compatibility to 4.9.5
    • \n
    \n

    2.1.2

    \n
      \n
    • Fixed undeclared property in admin hook
    • \n
    • Fixed incompatibility with older WordPress
    • \n
    • Fixed incorrect millisecond reporting in footer
    • \n
    • Removed locale progress column for en_US locale
    • \n
    • Tweaks to debugging and error logging
    • \n
    \n

    2.1.1

    \n
      \n
    • Setting Project-Id-Version on new POT files
    • \n
    • Added source view to quick links in file tables
    • \n
    • Supporting only WordPress style locale codes
    • \n
    • Editor screen tolerates missing PO headers
    • \n
    • Ajax debugging improvements for issue reporting
    • \n
    • Added loco_parse_locale action callback
    • \n
    \n

    2.1.0

    \n
      \n
    • Add fs_protect setting to avoid overwriting system files
    • \n
    • Fixed bug in connect dialogue where errors not redisplayed
    • \n
    • Minor improvements to inline notices
    • \n
    • Removed downgrade notice under version tab
    • \n
    • Fixed extraction bug where file header confused with comment
    • \n
    • Resolved some inconsistencies between PHP and JS utilities
    • \n
    • Added Restore tab with diff display
    • \n
    • Added loco_settings hook
    • \n
    • Prevented editor from changing PO document order
    • \n
    • Added default string sorting to extracted strings
    • \n
    • Added “Languages” section for grouping files by locale
    • \n
    • Fixed bug where translations loaded before user profile language set
    • \n
    • Added loco_locale_plurals filter for customising plural rules
    • \n
    • Allowing PO files to enforce their own Plural-Forms rules
    • \n
    • Added loco_allow_remote filter for debugging remote problems
    • \n
    • Updated plural forms from Unicode CLDR
    • \n
    • PHP extractor avoids repeated comments
    • \n
    • Bumped WP compatibility to 4.9.4
    • \n
    \n

    2.0.17

    \n
      \n
    • Unofficial languages showing in “Installed” dropdown
    • \n
    • Fixed extraction bug where comment confused with file header
    • \n
    • Fixed issue where src attributes requested from server during HTML strip
    • \n
    • Added loco_admin_init hook into ajax router for consistency
    • \n
    • Added warning on file info page when file is managed by WordPress
    • \n
    • Minor help link and layout tweaks
    • \n
    • Bumped WP compatibility to 4.9.1
    • \n
    \n

    2.0.16

    \n
      \n
    • File writer observes wp_is_file_mod_allowed
    • \n
    • Fixed progress bug in editor for locales with nplurals=1
    • \n
    • Made plural form categories translatable for editor UI
    • \n
    • Sync-from-source raises warning when files are skipped
    • \n
    • Added hack for extracting from .twig as per .php
    • \n
    • Added warning when child themes declare parent text domain
    • \n
    • Added option to control PO line wrapping
    • \n
    • Bumped WP compatibility to 4.8.2
    • \n
    \n

    2.0.15

    \n
      \n
    • Permanently removed legacy version 1.x
    • \n
    • Fixed bug where editor code view was not redrawn on resize
    • \n
    • Fixed bug where fuzzy flag caused format flag to be ignored
    • \n
    • Fixed bug where autoloader responded to very long class names
    • \n
    • Purging WP object cache when active plugin list changes
    • \n
    • Added experimental source word count into POT info tab
    • \n
    • Bumped WP compatibility to 4.8.1
    • \n
    \n

    2.0.14

    \n
      \n
    • Editor improvements inc. column sorting
    • \n
    • Added warnings that legacy version will be removed
    • \n
    • Added PO source view text filtering
    • \n
    • Added _fs_nonce for 4.7.5 compatibility
    • \n
    • Migrated to canonical text domain
    • \n
    • Removed wp class autoloading
    • \n
    \n

    2.0.13

    \n
      \n
    • CSS conflict fixes
    • \n
    • Added option for UTF-8 byte order mark
    • \n
    • Printf highlighting observes no-php-format flag
    • \n
    • Fixed issue with translator role losing “read” permission
    • \n
    \n

    2.0.12

    \n
      \n
    • Minor fix for root path configs
    • \n
    • Added alternative PHP extensions setting
    • \n
    • Bumped WP version to 4.7.3
    • \n
    • LoadHelper fix for core files
    • \n
    • Allow revoking of permissions from translator role
    • \n
    • Allow network admins to deny access to site admins
    • \n
    \n

    2.0.11

    \n
      \n
    • Extra debug logging and error diagnostics
    • \n
    • Forcefully clear output buffers before Ajax flush
    • \n
    • Bumped WordPress version to 4.7
    • \n
    • Experimental wildcard text domain support
    • \n
    \n

    2.0.10

    \n
      \n
    • Allows missing domain argument in plugin_locale filter
    • \n
    • Reverted editor changes that disabled readonly text
    • \n
    • Added invisibles and coding editor switches
    • \n
    • Added table filtering via text query
    • \n
    • Added Last-Translator user preference
    • \n
    \n

    2.0.9

    \n
      \n
    • Bumped minimum WordPress version to 4.1
    • \n
    • Some optimisation of transient caching
    • \n
    • Fixed hash table settings bug
    • \n
    \n

    2.0.8

    \n
      \n
    • Source refs fix for files in unknown subsets
    • \n
    • Downgrades PO formatting exceptions to PHP warnings
    • \n
    • Renamed function prefixes to avoid PHP 7 warnings
    • \n
    • Better support for php-format and no-php-format flag
    • \n
    • PO source and editor UI tweaks
    • \n
    • Localised strings and implemented in js
    • \n
    \n

    2.0.7

    \n
      \n
    • Fixed prototype.js conflict
    • \n
    • More Windows file path fixes
    • \n
    • Added loco_current_translator filter
    • \n
    • Fixed false positive in extra files test
    • \n
    \n

    2.0.6

    \n
      \n
    • PO wrapping bugfix
    • \n
    • Downgraded source code bugfix
    • \n
    • Tolerating headerless POT files
    • \n
    • Core bundle metadata tweaks
    • \n
    \n

    2.0.5

    \n
      \n
    • Deferred missing tokenizer warning
    • \n
    • Allows editing of files in unconfigured sets
    • \n
    • Added maximum PHP file size for string extraction
    • \n
    • Display of PHP fatal errors during Ajax
    • \n
    \n

    2.0.4

    \n
      \n
    • Reduced session failures to debug notices
    • \n
    • Added wp_roles support for WP < 4.3
    • \n
    • Fixed domain listener bugs
    • \n
    \n

    2.0.3

    \n
      \n
    • Added support for Windows servers
    • \n
    • Removed incomplete config warning on bundle overview
    • \n
    \n

    2.0.2

    \n
      \n
    • Fixed bug when absolute path used to get plugins
    • \n
    • Added loco_plugins_data filter
    • \n
    • Added theme Template Name header extraction
    • \n
    • Minor copy amends
    • \n
    \n

    2.0.1

    \n
      \n
    • Added help link in settings page
    • \n
    • Fixed opendir warnings in legacy code
    • \n
    • Catching session errors during init
    • \n
    • Removing meta row link when plugin not found
    • \n
    \n

    2.0.0

    \n
      \n
    • First release of completely rebuilt version 2
    • \n
    \n", "description": "

    Loco Translate provides in-browser editing of WordPress translation files and integration with automatic translation services.

    \n

    It also provides Gettext/localization tools for developers, such as extracting strings and generating templates.

    \n

    Features include:

    \n
      \n
    • Built-in translation editor within WordPress admin
    • \n
    • Integration with translation APIs including DeepL, Google, Lecto, Microsoft and OpenAI.
    • \n
    • Create and update language files directly in your theme or plugin
    • \n
    • Extraction of translatable strings from your source code
    • \n
    • Native MO file compilation without the need for Gettext on your system
    • \n
    • JSON (Jed) file compilation compatible with WordPress script localization
    • \n
    • Support for standard PO features including comments, references and plural forms
    • \n
    • PO source view with clickable source code references
    • \n
    • Protected language directory for saving custom translations
    • \n
    • Configurable PO file backups with diff and restore capability
    • \n
    • Built-in WordPress locale codes
    • \n
    \n

    Official Loco WordPress plugin by Tim Whitlock.
    \nFor more information please visit our plugin page.

    \n

    Keyboard shortcuts

    \n

    The PO file editor supports the following keyboard shortcuts for faster translating:

    \n
      \n
    • Done and Next: Ctrl ↵
    • \n
    • Next string: Ctrl
    • \n
    • Previous string: Ctrl
    • \n
    • Next untranslated: Shift Ctrl
    • \n
    • Previous untranslated: Shift Ctrl
    • \n
    • Copy from source text: Ctrl B
    • \n
    • Clear translation: Ctrl K
    • \n
    • Toggle Fuzzy: Ctrl U
    • \n
    • Save PO / compile MO: Ctrl S
    • \n
    • Toggle invisibles: Shift Ctrl I
    • \n
    • Suggest translation: Ctrl J
    • \n
    \n

    Mac users can use ⌘ Cmd instead of Ctrl.

    \n", "screenshots": "
    1. \"Translating

      Translating strings in the browser with the Loco PO Editor

    2. \"Showing

      Showing translation progress for theme language files

    3. \"PO

      PO source view with text filter and clickable file references

    4. \"Restore

      Restore tab showing PO diff view with revert function

    5. \"Showing

      Showing access to translations by installed language

    6. \"Suggestion

      Suggestion feature showing results from several providers

    ", "installation": "

    Basic usage:

    \n

    Translators: To translate a theme into your language, follow these steps:

    \n
      \n
    1. Create the protected languages directory at wp-content/languages/loco/themes
    2. \n
    3. Ensure this directory writeable by the web server
    4. \n
    5. Find your theme in the list at Loco Translate > Themes
    6. \n
    7. Click + New language and follow the on-screen prompts.
    8. \n
    \n

    Developers: To translate your own theme or plugin for distribution, follow these steps:

    \n
      \n
    1. Create a languages subdirectory in your bundle’s root directory
    2. \n
    3. Ensure this directory writeable by the web server
    4. \n
    5. Find the bundle at either Loco Translate > Themes or Loco Translate > Plugins
    6. \n
    7. Click + Create template and follow the on-screen prompts to extract your strings.
    8. \n
    9. Click + New language and follow the on-screen prompts to add your own translations.
    10. \n
    \n

    Installing manually:

    \n
      \n
    1. Unzip all files to the wp-content/plugins/loco-translate directory
    2. \n
    3. Log into WordPress admin and activate the ‘Loco Translate’ plugin through the ‘Plugins’ menu
    4. \n
    5. Go to Loco Translate > Home in the left-hand menu to start translating
    6. \n
    \n

    More information on using the plugin is available here.

    \n"}, "versions": {"1.2": "https://downloads.wordpress.org/plugin/loco-translate.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/loco-translate.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/loco-translate.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/loco-translate.1.5.zip", "1.0.0": "https://downloads.wordpress.org/plugin/loco-translate.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/loco-translate.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/loco-translate.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/loco-translate.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/loco-translate.1.1.3.zip", "1.2.1": "https://downloads.wordpress.org/plugin/loco-translate.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/loco-translate.1.2.2.zip", "1.3.1": "https://downloads.wordpress.org/plugin/loco-translate.1.3.1.zip", "1.4.1": "https://downloads.wordpress.org/plugin/loco-translate.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/loco-translate.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/loco-translate.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/loco-translate.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/loco-translate.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/loco-translate.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/loco-translate.1.4.7.zip", "1.5.1": "https://downloads.wordpress.org/plugin/loco-translate.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/loco-translate.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/loco-translate.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/loco-translate.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/loco-translate.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/loco-translate.1.5.6.zip", "2.0.0": "https://downloads.wordpress.org/plugin/loco-translate.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/loco-translate.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/loco-translate.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/loco-translate.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/loco-translate.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/loco-translate.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/loco-translate.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/loco-translate.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/loco-translate.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/loco-translate.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/loco-translate.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/loco-translate.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/loco-translate.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/loco-translate.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/loco-translate.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/loco-translate.2.1.5.zip", "2.2.0": "https://downloads.wordpress.org/plugin/loco-translate.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/loco-translate.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/loco-translate.2.2.2.zip", "2.3.0": "https://downloads.wordpress.org/plugin/loco-translate.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/loco-translate.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/loco-translate.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/loco-translate.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/loco-translate.2.3.4.zip", "2.4.0": "https://downloads.wordpress.org/plugin/loco-translate.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/loco-translate.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/loco-translate.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/loco-translate.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/loco-translate.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/loco-translate.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/loco-translate.2.4.6.zip", "2.5.0": "https://downloads.wordpress.org/plugin/loco-translate.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/loco-translate.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/loco-translate.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/loco-translate.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/loco-translate.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/loco-translate.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/loco-translate.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/loco-translate.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/loco-translate.2.5.8.zip", "2.6.0": "https://downloads.wordpress.org/plugin/loco-translate.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/loco-translate.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/loco-translate.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/loco-translate.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/loco-translate.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/loco-translate.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/loco-translate.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/loco-translate.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/loco-translate.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/loco-translate.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/plugin/loco-translate.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/loco-translate.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/loco-translate.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/loco-translate.2.7.3.zip", "2.8.0": "https://downloads.wordpress.org/plugin/loco-translate.2.8.0.zip", "trunk": "https://downloads.wordpress.org/plugin/loco-translate.zip", "2.0.10": "https://downloads.wordpress.org/plugin/loco-translate.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/loco-translate.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/loco-translate.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/plugin/loco-translate.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/plugin/loco-translate.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/plugin/loco-translate.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/plugin/loco-translate.2.0.16.zip", "2.0.17": "https://downloads.wordpress.org/plugin/loco-translate.2.0.17.zip", "2.6.10": "https://downloads.wordpress.org/plugin/loco-translate.2.6.10.zip", "2.6.11": "https://downloads.wordpress.org/plugin/loco-translate.2.6.11.zip", "2.6.12": "https://downloads.wordpress.org/plugin/loco-translate.2.6.12.zip", "2.6.13": "https://downloads.wordpress.org/plugin/loco-translate.2.6.13.zip", "2.6.14": "https://downloads.wordpress.org/plugin/loco-translate.2.6.14.zip"}, "downloaded": 32398019, "description": "

    Loco Translate provides in-browser editing of WordPress translation files and integration with automatic translation services.

    \n

    It also provides Gettext/localization tools for developers, such as extracting strings and generating templates.

    \n

    Features include:

    \n
      \n
    • Built-in translation editor within WordPress admin
    • \n
    • Integration with translation APIs including DeepL, Google, Lecto, Microsoft and OpenAI.
    • \n
    • Create and update language files directly in your theme or plugin
    • \n
    • Extraction of translatable strings from your source code
    • \n
    • Native MO file compilation without the need for Gettext on your system
    • \n
    • JSON (Jed) file compilation compatible with WordPress script localization
    • \n
    • Support for standard PO features including comments, references and plural forms
    • \n
    • PO source view with clickable source code references
    • \n
    • Protected language directory for saving custom translations
    • \n
    • Configurable PO file backups with diff and restore capability
    • \n
    • Built-in WordPress locale codes
    • \n
    \n

    Official Loco WordPress plugin by Tim Whitlock.
    \nFor more information please visit our plugin page.

    \n

    Keyboard shortcuts

    \n

    The PO file editor supports the following keyboard shortcuts for faster translating:

    \n
      \n
    • Done and Next: Ctrl ↵
    • \n
    • Next string: Ctrl
    • \n
    • Previous string: Ctrl
    • \n
    • Next untranslated: Shift Ctrl
    • \n
    • Previous untranslated: Shift Ctrl
    • \n
    • Copy from source text: Ctrl B
    • \n
    • Clear translation: Ctrl K
    • \n
    • Toggle Fuzzy: Ctrl U
    • \n
    • Save PO / compile MO: Ctrl S
    • \n
    • Toggle invisibles: Shift Ctrl I
    • \n
    • Suggest translation: Ctrl J
    • \n
    \n

    Mac users can use ⌘ Cmd instead of Ctrl.

    \n", "donate_link": "", "num_ratings": 443, "screenshots": {"1": {"src": "https://ps.w.org/loco-translate/assets/screenshot-1.png?rev=2310739", "caption": "Translating strings in the browser with the Loco PO Editor"}, "2": {"src": "https://ps.w.org/loco-translate/assets/screenshot-2.png?rev=1478713", "caption": "Showing translation progress for theme language files"}, "3": {"src": "https://ps.w.org/loco-translate/assets/screenshot-3.png?rev=1660312", "caption": "PO source view with text filter and clickable file references"}, "4": {"src": "https://ps.w.org/loco-translate/assets/screenshot-4.png?rev=1824083", "caption": "Restore tab showing PO diff view with revert function"}, "5": {"src": "https://ps.w.org/loco-translate/assets/screenshot-5.png?rev=1824083", "caption": "Showing access to translations by installed language"}, "6": {"src": "https://ps.w.org/loco-translate/assets/screenshot-6.png?rev=2354566", "caption": "Suggestion feature showing results from several providers"}}, "support_url": "https://wordpress.org/support/plugin/loco-translate/", "contributors": {"timwhitlock": {"avatar": "https://secure.gravatar.com/avatar/819e9cbcd4e21ce5fe1a4f50dddf153d5d0e9ead09190af36a6b262a82ef657c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/timwhitlock/", "display_name": "Tim W"}}, "last_updated": "2025-05-21 12:59pm GMT", "preview_link": "https://wordpress.org/plugins/loco-translate/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/loco-translate.2.8.0.zip", "author_profile": "https://profiles.wordpress.org/timwhitlock/", "business_model": false, "repository_url": "", "upgrade_notice": {"2.8.0": "
      \n
    • Various improvements and bug fixes
    • \n
    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f6c6-7312-89f4-319b96f212c9", "name": "Loco Translate", "slug": "loco-translate", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1747832340, "version": "2.8.0"}, "support_threads": 16, "requires_plugins": [], "short_description": "Translate WordPress plugins and themes directly in your browser. Versatile PO file editor with integrated AI translation providers.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 5}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1c92-7145-a673-2f14ed4ff88e', 'did:web:api.aspiredev.org:packages:wp-plugin:loginizer', 'loginizer', 'Loginizer', '

    Loginizer is a WordPress plugin which helps you fight against bruteforce attack by blocking login for the IP after it reaches maximum retries allowed. You can blacklist or whitelist IPs for login using Loginizer. You can use various other features like Two Factor Auth, reCAPTCHA, PasswordLess Login, etc. to improve security of your website.

    -

    Loginizer is actively used by more than 1000000+ WordPress websites.

    -

    You can find our official documentation at https://loginizer.com/docs. We are also active in our community support forums on wordpress.org if you are one of our free users. Our Premium Support Ticket System is at https://loginizer.deskuss.com

    -

    Free Features :

    -
      -
    • Brute force protection. IPs trying to brute force your website will be blocked for 15 minutes after 3 failed login attempts. After multiple lockouts the IP is blocked for 24 hours. This is the default configuration and can be changed from Loginizer -> Brute force page in WordPress admin panel.
    • -
    • Failed login attempts logs.
    • -
    • Blacklist IPs
    • -
    • Whitelist IPs
    • -
    • Custom error messages on failed login.
    • -
    • Permission check for important files and folders.
    • -
    • Allow only Trusted IP.
    • -
    • Blocked Screen in place of the Login page.
    • -
    • Email Notification on successful login.
    • -
    • Let users login with LinkedIn
    • -
    -

    Get Support and Pro Features

    -

    Get professional support from our experts and pro features to take your site’s security to the next level with Loginizer-Security.

    -

    Pro Features :

    -
      -
    • MD5 Checksum – of Core WordPress Files. The admin can check and ignore files as well.
    • -
    • PasswordLess Login – At the time of Login, the username / email address will be asked and an email will be sent to the email address of that account with a temporary link to login.
    • -
    • Two Factor Auth via Email – On login, an email will be sent to the email address of that account with a temporary 6 digit code to complete the login.
    • -
    • Two Factor Auth via App – The user can configure the account with a 2FA App like Google Authenticator, Authy, etc.
    • -
    • Login Challenge Question – The user can setup a Challenge Question and Answer as an additional security layer. After Login, the user will need to answer the question to complete the login.
    • -
    • reCAPTCHA – Google’s reCAPTCHA v3/v2, Cloudflare Turnstile, hCAPTCHA can be configured for the Login screen, Comments Section, Registration Form, etc. to prevent automated brute force attacks. Supports WooCommerce as well.
    • -
    • Rename Login Page – The Admin can rename the login URL (slug) to something different from wp-login.php to prevent automated brute force attacks.
    • -
    • Rename WP-Admin URL – The Admin area in WordPress is accessed via wp-admin. With loginizer you can change it to anything e.g. site-admin
    • -
    • CSRF Protection – This helps in preventing CSRF attacks as it updates the admin URL with a session string which makes it difficult and nearly impossible for the attacker to predict the URL.
    • -
    • Rename Login with Secrecy – If set, then all Login URL’s will still point to wp-login.php and users will have to access the New Login Slug by typing it in the browser.
    • -
    • Disable XML-RPC – An option to simply disable XML-RPC in WordPress. Most of the WordPress users don’t need XML-RPC and can disable it to prevent automated brute force attacks.
    • -
    • Rename XML-RPC – The Admin can rename the XML-RPC to something different from xmlrpc.php to prevent automated brute force attacks.
    • -
    • Username Auto Blacklist – Attackers generally use common usernames like admin, administrator, or variations of your domain name / business name. You can specify such username here and Loginizer will auto-blacklist the IP Address(s) of clients who try to use such username(s).
    • -
    • New Registration Domain Blacklist – If you would like to ban new registrations from a particular domain, you can use this utility to do so.
    • -
    • Change the Admin Username – The Admin can rename the admin username to something more difficult.
    • -
    • Auto Blacklist IPs – IPs will be auto blacklisted, if certain usernames saved by the Admin are used to login by malicious bots / users.
    • -
    • Disable Pingbacks – Simple way to disable PingBacks.
    • -
    • SSO – Single Sign-on, let any user access to your WordPress Dashboard without the need to share username or password.
    • -
    • Limit Concurrent Logins – It prevents user to login from different devices concurrently, you can define how many devices you want to allow, and how you want to restrict the user when concurrent limit is reached.
    • -
    • Social Login – Users can login or register with their Google, Github, Facebook, X (Twitter), Discord, Twitch, LinkedIn, Microsoft with support for WooCommerce and Ultimate Member.
    • -
    • Key Less Social Login – Use Loginizer’s Social Auth for easy key less Social login configuration, now supports Google, GitHub, X, LinkedIn more to be added later
    • -
    -

    Features in Loginizer include:

    -
      -
    • Blocks IP after maximum retries allowed
    • -
    • Extended Lockout after maximum lockouts allowed
    • -
    • Email notification to admin after max lockouts
    • -
    • Blacklist IP/IP range
    • -
    • Whitelist IP/IP range
    • -
    • Check logs of failed attempts
    • -
    • Create IP ranges
    • -
    • Delete IP ranges
    • -
    • Licensed under LGPLv2.1
    • -
    • Safe & Secure
    • -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Loginizer", "slug": "loginizer", "tags": {"admin": "admin", "login": "login", "access": "access", "security": "security", "loginizer": "Loginizer"}, "added": "2016-01-27", "icons": {"1x": "https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093", "2x": "https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093"}, "author": "Softaculous", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/loginizer/assets/banner-772x250.png?rev=3131676", "high": "https://ps.w.org/loginizer/assets/banner-1544x500.png?rev=3131676"}, "ratings": {"1": 26, "2": 4, "3": 12, "4": 27, "5": 942}, "version": "2.0.3", "homepage": "https://wordpress.org/extend/plugins/loginizer/", "requires": "3.0", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Your site secure!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy addonisdl on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is the plugin that you need to keep your site access away from bad people.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic Security Plugin for Limiting Logins

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy evagabond on September 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very simple, powerful and easy to use plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Create a new review

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy netequad on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Create a new review

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mbaqirparvi on September 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin works perfectly as expected. Easy to use, lightweight, and very helpful for my website. Highly recommended!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works well

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rfreitaz on July 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Help to monitor logins attempts very well

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Well done!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy whitecsolutions on July 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    To say the least im quite impressed. This little plugin is packed with features and does the trick keeping my websites safe and secure. Good job!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good job$

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy zidstudio on July 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Loginizer Great Product

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Gary Alderson (garyalderson) on July 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My Hosting company requested that I find a replacement for
    AIOS (All-in-One-Security) as it has caused them problems.

    \n\n\n\n

    Amoung the products out there I first tried LLAR - Limit Login
    Access Reloaded. It was very comprehensive and its Premium Plus
    version includes Country Blocking. Unfortunately their accounting
    and licencing got very confused and could not include websites
    under the \"domains\" where they belonged. Technically it is an
    excellent product and would probably be better to purchase
    their Agency licence to avoid that confusion.

    \n\n\n\n

    Second, a review that I read directed me to also look at Loginizer.
    Although they address the same issues they do it from a different
    standpoint. Loginizer does most of what I need in their free version.
    The part that is missing is Country Blocking. However that is
    available through another plugin which I have run for many years,
    Login IP & Country Restriction by Iulia Cazan.

    \n\n\n\n

    We all have different needs, so I encourage you to try both
    products.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best ever - the last news made me so so happy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Adrian Negura (adrian87n) on June 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Im so so happy And proud to use Loginizer !

    \n\n\n\n

    Now that Loginizer helped me with this \"

    \n\n\n\n

    EnableUse Loginizer''s Social Auth New

    \n\n\n\n

    Uses Loginizer''s keys — no need to add your own.

    \n\n\n\n

    \" I LOVE LOGINIZER !!!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great insight of security vulnerabilities.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ádám Juhász (jadaml) on May 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It helped me realize, how is my blog being targeted by brute-force attacks, and see how these attempts diminished as I resolve the vulnerability.

    \n
    \n
    \n", "changelog": "

    2.0.3

    \n
      \n
    • [Improvement Pro] 2FA via Email now supports HTML content type for the content of the email.
    • \n
    • [Improvement Pro] Added an option to choose the location of Captcha on WooCommerce checkout page.
    • \n
    • [Improvement Pro] Trunstile captcha now supports Flexible size.
    • \n
    • [Bug-Fix Pro] There was an issue with TwitchTV social login, that has been fixed.
    • \n
    • [Bug-Fix] There was an issue with redirection if redirect_to was set on login, this has been fixed.
    • \n
    • [Bug-Fix] There was a notice with a Promo notice that has been fixed.
    • \n
    \n

    2.0.2

    \n
      \n
    • [Improvement Pro] reCAPTCHA v3 now supports score based threshold, making the v3 reCAPTCHA even more effective in blocking bots.
    • \n
    • [Task Pro] Limit concurrent attempts is now compatible with miniOrange Social login plugin.
    • \n
    • [Bug Fix Pro] Social Login now works with Limit concurrent attempts.
    • \n
    • [Bug Fix] There was an issue with social login where in some cases after Social login verification redirection back to the host site was getting blocked by the server’s firewall, this has been fixed.
    • \n
    \n

    2.0.1

    \n
      \n
    • [Feature Pro] Ultimate Member is now compatible with Loginizer’s Bruteforce, Social Login, Captcha and Two-Factor Auth.
    • \n
    • [Feature Pro] Social Login using Loginizer’s Login Keys, making Social Login single click setup.
    • \n
    • [Feature Pro] Support for Microsoft Social Login.
    • \n
    • [Bug Fix] [Pro] There was an issue with Hide WP-Admin in rename login, that has been fixed.
    • \n
    • [Bug Fix] [Pro] There was an issue with refresh button of 2FA App QR Code when it was displays on a page other than WP-Admin, that has been fixed.
    • \n
    • [Bug Fix] [Pro] Login Notification was not working with 2FA login this has been fixed.
    • \n
    • [Task] Social Login restructured and refactored.
    • \n
    \n

    2.0.0

    \n
      \n
    • [Task] Tested with WordPress 6.8.
    • \n
    • [Bug-Fix] A minor issue has been fixed which was reported by HedgeByte Security.
    • \n
    \n

    1.9.9

    \n
      \n
    • [Task] There was a warning on PHP 8.2, that has been fixed.
    • \n
    • [Bug-Fix] In some cases the session in Social Login was breaking that has been fixed.
    • \n
    • [Bug-Fix Pro] For some page builders, changing the login slug caused the wp-login.php 404 error page to not load shortcodes properly. This issue has now been fixed.
    • \n
    \n

    1.9.8

    \n
      \n
    • [Feature Pro] Now you can hide the wp-admin totally from non logged in users.
    • \n
    • [Improvement Pro] Option to Disable Passwordless login for specific login page.
    • \n
    • [Task] There was a Typo in X Social Login button which has been fixed and X buttons won’t have Formerly Twitter text.
    • \n
    • [Bug Fix Pro] There was an issue with Passwordless login for WooCommerce login page, that has been fixed.
    • \n
    \n

    1.9.7

    \n
      \n
    • [Task] A notice has been tweaked to prevent confusion among users.
    • \n
    \n

    1.9.6

    \n
      \n
    • [Task] Removed wpCentral Promo from Loginizer.
    • \n
    \n

    1.9.5

    \n
      \n
    • [Task] A few typos in description of features have been fixed.
    • \n
    \n

    1.9.4

    \n
      \n
    • [Task] Tested with WordPress 6.7, fixed translation Notice.
    • \n
    • [Bug-Fix] HOTP and Base32 caused conflict with some plugins that has been fixed.
    • \n
    \n

    1.9.3

    \n
      \n
    • [Security] There was a security issue in the Pro version of the plugin which has been fixed, was reported by wesley (wcraft)[Wordfence]
    • \n
    • [Task] Improved Compatibility with Softaculous Plugin.
    • \n
    \n

    1.9.2

    \n
      \n
    • [Task] Improved license handling.
    • \n
    \n

    1.9.1

    \n
      \n
    • [Bug-Fix] Social Login was not working on WooCommerce or registration page, that has been fixed.
    • \n
    • [Bug-Fix] A PHP warning has been fixed.
    • \n
    \n

    1.9.0

    \n
      \n
    • [Bug-Fix] For some users there was an issue in updating that has been fixed.
    • \n
    \n

    1.8.9

    \n
      \n
    • [Task] Structural changes.
    • \n
    • [Task] Tested with WordPress 6.6.
    • \n
    \n

    1.8.8

    \n
      \n
    • [Bug-Fix] Verison in one file was not updated, this has been fixed.
    • \n
    \n

    1.8.7

    \n
      \n
    • [Feature] Social Login: Now you can let the users login through LinkedIn Login.
    • \n
    • [Feature] Send Login Notification as HTML email.
    • \n
    • [Pro Feature] Supports social login with Google, GitHub, Facebook, X(Formerly Twitter) and more Login Providers.
    • \n
    \n

    1.8.6

    \n
      \n
    • [Bug-Fix] There was an issue with Login Notification body and subject, it was adding (slashes) if “(double-quotes) where being used. This has been fixed.
    • \n
    • [Task] Removal of unwanted code.
    • \n
    \n

    1.8.5

    \n
      \n
    • [Feature] Added Option to disable Login notification for whitelisted IPs.
    • \n
    • [Improvement] We have added variables for custom subject in Login notification.
    • \n
    • [Bug-Fix] Now the time shown in the Login Notification email, will respect the timezone set in the WordPress settings.
    • \n
    • [Bug-Fix] Error notice when 2FA fails had some CSS issue which has been fixed.
    • \n
    • [Task] We have remove unwanted code in reCAPTCHA.
    • \n
    \n

    1.8.4

    \n
      \n
    • [Feature] Block Page, now instead of showing error on the Login page of user being blacklisted, you can just show a page with error, reducing the resource being used to show the error.
    • \n
    • [Feature] Email notification on successful login and you can enforce this on your users too.
    • \n
    • [Pro Feature] Added Cloudflare Turnstile, and hCaptcha.
    • \n
    • [Task] Tested with WordPress 6.5.
    • \n
    \n

    1.8.3

    \n
      \n
    • [Task] We have removed unwanted code.
    • \n
    \n

    1.8.2

    \n
      \n
    • [Task] Tested on WordPress 6.4.
    • \n
    • [Improvement] Now SSO can live for multiple Login attempts, default being 1 and maximum is 15 Login access.
    • \n
    • [Imrpovement] Now SSO can live longer for upto 2 days.
    • \n
    • [Bug-Fixes] A few Warning related to PHP 8.2 has been fixed
    • \n
    \n

    1.8.1

    \n

    *[Bug-Fix] There was an issue while checking checksum, if the WordPress install was in en_US but the language was set to some other languages from the settings, then the checksum was comparing the checksums from the language selected in WordPress settings which is now always the language of the install, this has been fixed.

    \n

    1.8.0

    \n
      \n
    • [Feature][Pro] We have added Single Sign-on for you to create temporary login to share to let other login to your account without sharing password.
    • \n
    • [Refactor] We have reduced the amount of code that was being loaded when a login attempt was made by around 150KB.
    • \n
    • [Refactor] Screenshots of Loginizer were included in the plugin, we have shifted that to assets of WordPress.org, reducing the overall size of plugin by more than 100KB.
    • \n
    \n

    1.7.9

    \n
      \n
    • [Bug-Fix] Users were getting PHP notice in init.php file that has been fixed.
    • \n
    • [Bug-Fix] Math cookie has been set as secure now.
    • \n
    • [Security] We were sanitizing an output in place of escaping it, that has been fixed [Reported by Erwan Le Rousseau from WPScan]
    • \n
    \n

    1.7.8

    \n
      \n
    • [Task] Tested with WordPress 6.2
    • \n
    • [Feature] [Pro] Limit Concurrent user login, you can either block login attempt or revoke when limit of concurrent user is reached.
    • \n
    • [Feature] Login attempts stats chart on Loginizer Dashboard.
    • \n
    \n

    1.7.7

    \n
      \n
    • [Feature] Ability to allow only Whitelisted IP’s to be able to login with Trusted IP’s.
    • \n
    • [Feature] [Pro] Option to add custom redirect on 2FA Login based on user role.
    • \n
    • [Bug-Fix] [Pro] User’s were getting redirected to WP Admin when logging in from Checkout page in Passwordless and 2FA options that has been fixed.
    • \n
    • [Bug-Fix] Some users were getting PHP Warnings that has been fixed.
    • \n
    \n

    1.7.6

    \n
      \n
    • [Security] Minor security issues reported by patchstack have been fixed with in 24 hours of reporting.
    • \n
    • [Bug-Fix] For some themes the Maths capatch input was invisible that has been fixed.
    • \n
    \n

    1.7.5

    \n
      \n
    • [Task] Tested compatibility with WordPress 6.1
    • \n
    • [Bug Fix] There was an issue with sanitizing URL that has been fixed.
    • \n
    \n

    1.7.4

    \n
      \n
    • [Feature] CSRF Protection adds a unique session key in your admin URL when you login to it, which adds another layer of security to your WordPress website as it makes it difficult to predict the URL hence making it difficult and nearly impossible to do CSRF attacks on your WordPress admin panel.
    • \n
    • [Task] 2FA Support for MasterStudy Custom Login
    • \n
    • [Bug Fix] Some users were facing an error when using 2FA App verification that has been fixed.
    • \n
    \n

    1.7.3

    \n
      \n
    • [Bug Fix] Added validation not to allow values less than 0 for all Brute Force admin settings.
    • \n
    \n

    1.7.2

    \n
      \n
    • [Improvement] [Pro] Allowed HTML characters in Passwordless email.
    • \n
    • [Bug Fix] Improved performance on sites running Loginizer with WooCommerce.
    • \n
    • [Bug Fix] Added validation not to allow values less than 0 in Brute Force admin settings.
    • \n
    • [Bug Fix] Some language strings were hardcoded in English and could not be translated. This is fixed and all strings can now be translated.
    • \n
    • [Bug Fix] Resolved PHP Warnings and Notices on latest PHP versions.
    • \n
    \n

    1.7.1

    \n
      \n
    • [Improvement] [Pro] Added error message to not allow using same slug for wp-login.php and wp-admin as it causes conflict.
    • \n
    • [Improvement] [Pro] Added exception for readme.html, license.txt and wp-config-sample.php while checking the checksum to avoid false alarm about checksum mismatch.
    • \n
    • [Bug Fix] [Pro] In WordPress Multisite, on changing the admin username the super admins list was not updated. This is fixed now.
    • \n
    • [Task] Compatibility with WordPress 6.0
    • \n
    \n

    1.7.0

    \n
      \n
    • Compatible with WordPress 5.9
    • \n
    • [Feature] [Pro] Added option to choose recaptcha.net instead of google.com for countries that do not support google
    • \n
    • [Bug Fix] [Pro] Fix to email the correct unblock time when an IP is blocked for extended hours.
    • \n
    \n

    1.6.9

    \n
      \n
    • [Bug Fix] [Pro] Fix to not show Loginizer 2FA Security Settings in Edit Account page in WooCommerce Customer area. It will be shown in Security (registered by Loginizer) tab instead.
    • \n
    \n

    1.6.8

    \n
      \n
    • [Feature] Added option to export failed login attempts to CSV file.
    • \n
    • [Improvement] Added option to send failed login notifications to a custom email.
    • \n
    • [Improvement] [Pro] Added support for 2FA for WooCommerce customers
    • \n
    • [Bug Fix] [Pro] On WooCommerce customer login page the password field was not hidden when Passwordless login was enabled in Loginizer.
    • \n
    • [Bug Fix] [Pro] Autofill enabled in the browser caused the OTP field on 2FA login to be prefilled.
    • \n
    \n

    1.6.7

    \n
      \n
    • [Feature] Added Bulk Export/Import Blacklist and Whitelist IPs via CSV.
    • \n
    • [Improvement] Added option to Blacklist selected IPs from Failed Login Attempts Logs.
    • \n
    • [Improvement] Added external link in Brute Force logs for IP information of the IPs attempting brute force.
    • \n
    • [Improvement] [Pro] Added Loginizer 2FA status column on Users list page to show 2FA preferences selected by users.
    • \n
    • [Improvement] [Pro] Added Show/Hide button for OTP field on 2FA login page.
    • \n
    • [Bug Fix] [Pro] Two Factor Authentication lead to 502 Bad Gateway error on WP Engine instances. This is resolved now.
    • \n
    \n

    1.6.6

    \n
      \n
    • [Improvement] For new installs, the loginizer_logs table will now use the server default MySQL Engine.
    • \n
    • [Improvement] For the login attempts blocked by Loginizer, some other Activity Logs plugin still reported such blocked attempt as a failed login attempt.
    • \n
    • [Bug Fix] In rare cases when the username received in failed login attempt was blank, Loginizer failed to save such requests in the failed login logs table. This is fixed now.
    • \n
    \n

    1.6.5

    \n
      \n
    • [Bug Fix] After Interim Login due to session timeout, the popup for login was not closed. This is fixed now.
    • \n
    • [Bug Fix] reCAPTCHA was not working on registration page with BuddyPress plugin. This is fixed now.
    • \n
    \n

    1.6.4

    \n

    This version includes a security fix and we recommend all users to upgrade to 1.6.4 or higher immediately.

    \n
      \n
    • \n

      [Security Fix] : A properly crafted username used to login could lead to SQL injection. This has been fixed by using the prepare function in PHP which prepares the SQL query for safe execution.

      \n
    • \n
    • \n

      [Security Fix] : If the IP HTTP header was modified to have a null byte it could lead to stored XSS. This has been fixed by properly sanitizing the IP HTTP header before using the same.

      \n
    • \n
    \n

    1.6.3

    \n
      \n
    • [Fix] Fixed a PHP Notice that was caused by a change released yesterday.
    • \n
    \n

    1.6.2

    \n
      \n
    • [Feature] Added option to send Password Less Login email as HTML.
    • \n
    • [Fix] When reCAPTCHA was disabled on Woocommerce checkout page, Loginizer reported captcha error if a user tried to register on checkout page. This is fixed now.
    • \n
    • [Fix] The email sent to admin for brute force login attempts will now contain the site url as well.
    • \n
    • [Fix] Fixed PHP Notice on Two Factor Authentication page.
    • \n
    \n

    1.6.1

    \n
      \n
    • [Fix] The captcha on Registration form when using WooCommerce was not being rendered if the “WooCommerce Checkout” captcha setting was disabled in Loginizer. This is fixed now and this captcha can be disabled with “Registration Form” captcha setting in Loginizer.
    • \n
    • [Fix] Minor checkbox pre-filling UI fix on Two Factor Authentication page.
    • \n
    \n

    1.6.0

    \n
      \n
    • [Feature] Admin can white list an IP or an IP range for Two Factor Authentication.
    • \n
    • [Fix] If the plugins or themes which are included in the default WordPress package were not updated, the Checksum reported that the files for such plugins and themes did not matched. This is fixed now.
    • \n
    \n

    1.5.9

    \n
      \n
    • [Task] Admins can now customize email template for 2FA OTP via email.
    • \n
    • [Task] Admins can now customize the 2FA messages on login screen.
    • \n
    • [Fix] Changed the OTP via App field on login page to password type.
    • \n
    \n

    1.5.8

    \n
      \n
    • [Task] Permission for / folder was suggested as 0755 and 0750 permission which is secure was reported as insecure. This is fixed now.
    • \n
    • [Fix] Prevent PHP Deprecated Warning on plugin upgrade page on servers running PHP 7.3+
    • \n
    \n

    1.5.7

    \n
      \n
    • [Fix] Prevent PHP Notice on 1st failed login attempt from an IP.
    • \n
    \n

    1.5.6

    \n
      \n
    • [Task] Admins can now subscribe to our newsletter if they decide to opt-in.
    • \n
    \n

    1.5.5

    \n
      \n
    • [Bug Fix] Remember me during login was not working with 2FA features. This is fixed.
    • \n
    • [Task] Loginizer is now supported for translation via WordPress.
    • \n
    • [Task] Added option to fully customize the Lockout error message.
    • \n
    \n

    1.5.4

    \n
      \n
    • [Task] Added option to customize Lockout Error message.
    • \n
    \n

    1.5.3

    \n
      \n
    • [Task] Compatible with WordPress 5.5
    • \n
    • [Bug Fix] Due to a conflict with some plugin the upgrade for Loginizer Premium version did not work. This is fixed.
    • \n
    \n

    1.5.2

    \n
      \n
    • [Task] Some strings were not available in translations. They can now be translated.
    • \n
    \n

    1.5.1

    \n
      \n
    • [Task] Allowed to change the username of any administrator account. Previously it was supported only for user id 1
    • \n
    • [Bug Fix] Fixed some lines that generated PHP notice
    • \n
    \n

    1.5.0

    \n
      \n
    • [Task] Admins can now customize “attempt(s) left” error message.
    • \n
    \n

    1.4.9

    \n
      \n
    • [Bug Fix] Prevent brute force on 2FA pages.
    • \n
    \n

    1.4.8

    \n
      \n
    • [Premium Feature] Added Google reCAPTCHA v3 and v2 invisible.
    • \n
    \n

    1.4.7

    \n
      \n
    • [Security Fix] Our team internally conducted a security audit and have fixed couple of security issues. We recommend all users to upgrade to the latest version asap.
    • \n
    \n

    1.4.6

    \n
      \n
    • [Task] Added Timezone offset in the Brute Force attempts list to get the exact time of the failed login attempt.
    • \n
    • [Bug Fix] For HTTP_X_FORWARDED_FOR if the value had multiple IPs including proxied IPs, the user IP detection failed. This is fixed.
    • \n
    • [Bug Fix] Undefined variable was used in the title on the dashboard page. This is fixed.
    • \n
    \n

    1.4.5

    \n
      \n
    • [Announcement] Loginizer has joined forces with Softaculous team.
    • \n
    • [Task] Added OTP validity time in the email sent for OTP for login.
    • \n
    • [Bug Fix] In the premium version the Math Captcha used to fail in some conditions. This is fixed.
    • \n
    \n

    1.4.4

    \n
      \n
    • [Task] Made Loginizer compatible with PHP 7.4
    • \n
    • [Bug Fix] The password field was not hidden in some themes for PasswordLess Login. This is fixed.
    • \n
    \n

    1.4.3

    \n
      \n
    • [Bug Fix] At the time of login if recaptcha or 2FA using OTP was enabled and if you check mark on “Remember me”, the login used to go to an invalid redirect URL and did not load anything. This has been fixed now.
    • \n
    \n

    1.4.2

    \n
      \n
    • [Task] Tested up to: WordPress 5.2.0
    • \n
    • [Bug Fix] Placement of Captcha corrected for WooCommerce at the time of checkout for end users.
    • \n
    • [Bug Fix] Checksum check shall now skip for the files which are present in default WordPress package and does not exist in the installation like deleted theme(s)/plugin(s).
    • \n
    • [Bug Fix] Grammar correction
    • \n
    \n

    1.4.1

    \n
      \n
    • [Task] Tested up to: WordPress 5.0.2
    • \n
    • [Task] Refresh license will throw an error if the response received from our server is invalid
    • \n
    • [Bug Fix] The OTP input box (with respect to 2FA via SMS) was empty if the user was freshly registered and did not login at all. This is fixed.
    • \n
    \n

    1.4.0

    \n
      \n
    • [Feature] New Registration Domain Blacklist – If you would like to ban new registrations from a particular domain, you can use this utility to do so.
    • \n
    • [Feature] Made Loginizer Security for BuddyPress compatibility.
    • \n
    • [Task] Added a method to reset wp-admin rename settings if you get locked out.
    • \n
    • [Bug Fix] There is an XSS bug introduced in version 1.3.8. This is fixed. Please upgrade ASAP.
    • \n
    • [Bug Fix] In the user 2FA security wizard, the default selected option was wrongly shown when the user had not set any preference for 2FA. This is fixed.
    • \n
    \n

    1.3.9

    \n
      \n
    • [Feature] Added an option to Enable / Disable Brute Force checks.
    • \n
    • [Feature] Added the feature to log the URL of the page from which the brute force attempt is being made.
    • \n
    • [Bug Fix] Blanking the login slug used to show the value after submission. This is fixed.
    • \n
    • [Bug Fix] Allowed HTML chars in wp_admin_msg for renaming WP-ADMIN.
    • \n
    \n

    1.3.8

    \n
      \n
    • [Feature] Added Roles selection for Two Factor Authentication. The Admin can now enable 2FA for specific roles.
    • \n
    • [Feature] Added a Tester for WP-Admin Slug Renaming feature. Now you can test the new slug before saving it.
    • \n
    • [Feature] Added option to customize the Passwordless email being sent to the user.
    • \n
    • [Feature] Added a custom WP-Admin restriction message if wp-admin is restricted.
    • \n
    • [Feature] Added an option to Delete the entire Blacklist / Whitelist IP Ranges.
    • \n
    • [Feature] Custom IP Header added as an option for detecting the IP as per the Proxy settings of a server.
    • \n
    • [Task] Added an option to clear reCAPTCHA settings.
    • \n
    • [Task] Added Debugger in Updater
    • \n
    • [Task] Updater will show “Install License Key to check for Updates”
    • \n
    • [Bug Fix] In WooCommerce the number of login retries left was not being shown. This is fixed.
    • \n
    \n

    1.3.7

    \n
      \n
    • [Bug Fix] Blacklist and Whitelist IPs were not being deleted. This is fixed.
    • \n
    \n

    1.3.6

    \n
      \n
    • [Feature] Pagination added to the Blacklist and Whitelist IPs
    • \n
    • [Bug Fix] There used to be a login issue over SSL when wp-admin area is renamed. This is fixed.
    • \n
    • [Bug Fix] SQL Injection fix for X-Forwarded-For. This is fixed. Vulnerability was found by Jonas Lejon of WPScans.com
    • \n
    • [Bug Fix] There was a missing referrer check in Blacklist and Whitelist IP Wizard. This is fixed.
    • \n
    \n

    1.3.5

    \n
      \n
    • [Feature] Added a simple Math Captcha to show Maths Questions, if someone doesn’t want to use Google Captcha
    • \n
    • [Feature] Added a wizard for admins to set their own language strings for Brute Force messages
    • \n
    • [Bug Fix] In WooCommerce the Lost Password, Reset Password and Comment Form captcha verification failed. This is fixed.
    • \n
    • [Bug Fix] Hide Captcha for logged in users was not working. This is fixed.
    • \n
    • [Bug Fix] Twitter box shown in Loginizer was not accessed over HTTPS.
    • \n
    \n

    1.3.4

    \n
      \n
    • [Bug Fix] Fixed the BigInteger Class for PHP 7 compatibility.
    • \n
    \n

    1.3.3

    \n
      \n
    • [Feature] IPv6 support has been added.
    • \n
    • [Feature] The last attempted username will now be shown in the Login Logs.
    • \n
    • [Bug Fix] If the login page had been renamed, and wp-login.php was accessed over HTTPS, the login screen was shown instead of 404 not found. This is now fixed.
    • \n
    • [Bug Fix] If the user had used a “/” in the rename login slug, the new slug would not work without the “/” in the URL. This is now fixed.
    • \n
    • [Bug Fix] The license key could get reset in some cases. This also caused plugin updates to fail. This is now fixed.
    • \n
    • [Bug Fix] Wild Cards “*” in the Username Auto Blacklist did not work. This is now fixed.
    • \n
    • [Bug Fix] The documentation in the plugin was pointing to a wrong link. This is now fixed.
    • \n
    \n

    1.3.2

    \n
      \n
    • [Feature] Rename the wp-admin access URL is now possible with Loginizer
    • \n
    • [Feature] WooCommerce support has been improved for reCAPTCHA
    • \n
    • [Feature] Loginizer will now show a Notification to the Enduser to setup the preferred 2FA settings
    • \n
    • [Feature] Added option to choose between REMOTE_ADDR, HTTP_CLIENT_IP and HTTP_X_FORWARDED for websites behind a proxy
    • \n
    • [Task] Multiple reCAPTHCA on a single page is now supported
    • \n
    • [Task] Added a link to Google’s reCAPTCHA website for easy access in our reCAPTCHA wizard
    • \n
    \n

    1.3.1

    \n
      \n
    • [Feature] Admin’s can now remove a user’s Two Factor Authentication if needed
    • \n
    • [Feature] Added an option to change the Admin Username
    • \n
    • [Feature] Auto Blacklist IPs if certain usernames saved by the Admin are used to login by malicious bots / users
    • \n
    • [Feature] The Login attempt logs will now be shown as per the last attempt TIME and in Descending Order
    • \n
    • [Feature] Added an option to Reset the Login attempts for all or specific IPs
    • \n
    \n

    1.3.0

    \n
      \n
    • [Feature] Added MD5 File Checksum feature. If any core files are changed, Loginizer will log the differences and notify the Admin
    • \n
    • [Feature] Added an option to make Email OTP as the default Two Factor Auth when a user has not set the OTP method of their choice
    • \n
    • [Feature] Added WooCommerce support for Captcha forms
    • \n
    • [Feature] Added pagination in the Brute Force Logs Wizard
    • \n
    • [Bug Fix] Disabling and Re-Enabling Loginizer caused an SQL error
    • \n
    \n

    1.2.0

    \n
      \n
    • [Feature] Rename Login with Secrecy : If set, then all Login URL’s will still point to wp-login.php and users will have to access the New Login Slug by typing it in the browser.
    • \n
    • [Task] The brute force logs will now be sorted as per the time of failed login attempts
    • \n
    • [Bug Fix] Dashboard showed wrong permissions if wp-content path had been changed
    • \n
    • [Bug Fix] Added Directory path to include files which caused issues with some plugins
    • \n
    \n

    1.1.1

    \n
      \n
    • [Bug Fix] Added ABSPATH instead of get_home_path()
    • \n
    \n

    1.1.0

    \n
      \n
    • [Feature] PasswordLess Login
    • \n
    • [Feature] Two Factor Auth – Email
    • \n
    • [Feature] Two Factor Auth – App
    • \n
    • [Feature] Login Challenge Question
    • \n
    • [Feature] reCAPTCHA
    • \n
    • [Feature] Rename Login Page
    • \n
    • [Feature] Disable XML-RPC
    • \n
    • [Feature] Rename XML-RPC
    • \n
    • [Feature] Disable Pingbacks
    • \n
    • [Feature] New Dashboard
    • \n
    • [Feature] System Information added in the new Dashboard
    • \n
    • [Feature] File Permissions added in the new Dashboard
    • \n
    • [Feature] New UI
    • \n
    • [Bug Fix] Fixed bug to add IP Range from 0.0.0.1 – 255.255.255.255
    • \n
    • [Bug Fix] Removed /e from preg_replace causing warnings in PHP
    • \n
    \n

    1.0.2

    \n
      \n
    • Fixed Extended Lockout bug
    • \n
    • Fixed Lockout bug
    • \n
    • Handle login attempts via XML-RPC
    • \n
    \n

    1.0.1

    \n
      \n
    • Database structure changes to make the plugin work faster
    • \n
    • Minor fixes
    • \n
    \n

    1.0

    \n
      \n
    • Blocks IP after maximum retries allowed
    • \n
    • Extended Lockout after maximum lockouts allowed
    • \n
    • Email notification to admin after max lockouts
    • \n
    • Blacklist IP/IP range
    • \n
    • Whitelist IP/IP range
    • \n
    • Check logs of failed attempts
    • \n
    • Create IP ranges
    • \n
    • Delete IP ranges
    • \n
    • Licensed under LGPLv2.1
    • \n
    • Safe & Secure
    • \n
    \n", "description": "

    Loginizer is a WordPress plugin which helps you fight against bruteforce attack by blocking login for the IP after it reaches maximum retries allowed. You can blacklist or whitelist IPs for login using Loginizer. You can use various other features like Two Factor Auth, reCAPTCHA, PasswordLess Login, etc. to improve security of your website.

    \n

    Loginizer is actively used by more than 1000000+ WordPress websites.

    \n

    You can find our official documentation at https://loginizer.com/docs. We are also active in our community support forums on wordpress.org if you are one of our free users. Our Premium Support Ticket System is at https://loginizer.deskuss.com

    \n

    Free Features :

    \n
      \n
    • Brute force protection. IPs trying to brute force your website will be blocked for 15 minutes after 3 failed login attempts. After multiple lockouts the IP is blocked for 24 hours. This is the default configuration and can be changed from Loginizer -> Brute force page in WordPress admin panel.
    • \n
    • Failed login attempts logs.
    • \n
    • Blacklist IPs
    • \n
    • Whitelist IPs
    • \n
    • Custom error messages on failed login.
    • \n
    • Permission check for important files and folders.
    • \n
    • Allow only Trusted IP.
    • \n
    • Blocked Screen in place of the Login page.
    • \n
    • Email Notification on successful login.
    • \n
    • Let users login with LinkedIn
    • \n
    \n

    Get Support and Pro Features

    \n

    Get professional support from our experts and pro features to take your site’s security to the next level with Loginizer-Security.

    \n

    Pro Features :

    \n
      \n
    • MD5 Checksum – of Core WordPress Files. The admin can check and ignore files as well.
    • \n
    • PasswordLess Login – At the time of Login, the username / email address will be asked and an email will be sent to the email address of that account with a temporary link to login.
    • \n
    • Two Factor Auth via Email – On login, an email will be sent to the email address of that account with a temporary 6 digit code to complete the login.
    • \n
    • Two Factor Auth via App – The user can configure the account with a 2FA App like Google Authenticator, Authy, etc.
    • \n
    • Login Challenge Question – The user can setup a Challenge Question and Answer as an additional security layer. After Login, the user will need to answer the question to complete the login.
    • \n
    • reCAPTCHA – Google’s reCAPTCHA v3/v2, Cloudflare Turnstile, hCAPTCHA can be configured for the Login screen, Comments Section, Registration Form, etc. to prevent automated brute force attacks. Supports WooCommerce as well.
    • \n
    • Rename Login Page – The Admin can rename the login URL (slug) to something different from wp-login.php to prevent automated brute force attacks.
    • \n
    • Rename WP-Admin URL – The Admin area in WordPress is accessed via wp-admin. With loginizer you can change it to anything e.g. site-admin
    • \n
    • CSRF Protection – This helps in preventing CSRF attacks as it updates the admin URL with a session string which makes it difficult and nearly impossible for the attacker to predict the URL.
    • \n
    • Rename Login with Secrecy – If set, then all Login URL’s will still point to wp-login.php and users will have to access the New Login Slug by typing it in the browser.
    • \n
    • Disable XML-RPC – An option to simply disable XML-RPC in WordPress. Most of the WordPress users don’t need XML-RPC and can disable it to prevent automated brute force attacks.
    • \n
    • Rename XML-RPC – The Admin can rename the XML-RPC to something different from xmlrpc.php to prevent automated brute force attacks.
    • \n
    • Username Auto Blacklist – Attackers generally use common usernames like admin, administrator, or variations of your domain name / business name. You can specify such username here and Loginizer will auto-blacklist the IP Address(s) of clients who try to use such username(s).
    • \n
    • New Registration Domain Blacklist – If you would like to ban new registrations from a particular domain, you can use this utility to do so.
    • \n
    • Change the Admin Username – The Admin can rename the admin username to something more difficult.
    • \n
    • Auto Blacklist IPs – IPs will be auto blacklisted, if certain usernames saved by the Admin are used to login by malicious bots / users.
    • \n
    • Disable Pingbacks – Simple way to disable PingBacks.
    • \n
    • SSO – Single Sign-on, let any user access to your WordPress Dashboard without the need to share username or password.
    • \n
    • Limit Concurrent Logins – It prevents user to login from different devices concurrently, you can define how many devices you want to allow, and how you want to restrict the user when concurrent limit is reached.
    • \n
    • Social Login – Users can login or register with their Google, Github, Facebook, X (Twitter), Discord, Twitch, LinkedIn, Microsoft with support for WooCommerce and Ultimate Member.
    • \n
    • Key Less Social Login – Use Loginizer’s Social Auth for easy key less Social login configuration, now supports Google, GitHub, X, LinkedIn more to be added later
    • \n
    \n

    Features in Loginizer include:

    \n
      \n
    • Blocks IP after maximum retries allowed
    • \n
    • Extended Lockout after maximum lockouts allowed
    • \n
    • Email notification to admin after max lockouts
    • \n
    • Blacklist IP/IP range
    • \n
    • Whitelist IP/IP range
    • \n
    • Check logs of failed attempts
    • \n
    • Create IP ranges
    • \n
    • Delete IP ranges
    • \n
    • Licensed under LGPLv2.1
    • \n
    • Safe & Secure
    • \n
    \n", "screenshots": "
    1. \"Login

      Login Failed Error message

    2. \"Loginizer

      Loginizer Dashboard page

    3. \"Loginizer

      Loginizer Brute Force Settings page

    ", "installation": "

    Upload the Loginizer plugin to your blog, Activate it.
    \nThat’s it. You’re done!

    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/loginizer.1.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/loginizer.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/loginizer.1.0.2.zip", "1.1.0": "https://downloads.wordpress.org/plugin/loginizer.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/loginizer.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/plugin/loginizer.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/loginizer.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/loginizer.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/loginizer.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/loginizer.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/loginizer.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/loginizer.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/loginizer.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/loginizer.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/loginizer.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/loginizer.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/plugin/loginizer.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/loginizer.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/loginizer.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/loginizer.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/loginizer.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/loginizer.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/loginizer.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/loginizer.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/loginizer.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/loginizer.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/plugin/loginizer.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/loginizer.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/loginizer.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/loginizer.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/loginizer.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/loginizer.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/loginizer.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/loginizer.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/loginizer.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/loginizer.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/plugin/loginizer.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/loginizer.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/loginizer.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/loginizer.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/loginizer.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/loginizer.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/loginizer.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/loginizer.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/loginizer.1.6.8.zip", "1.7.0": "https://downloads.wordpress.org/plugin/loginizer.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/loginizer.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/loginizer.1.7.2.zip", "1.7.7": "https://downloads.wordpress.org/plugin/loginizer.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/loginizer.1.7.8.zip", "1.8.1": "https://downloads.wordpress.org/plugin/loginizer.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/loginizer.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/loginizer.1.8.3.zip", "1.9.1": "https://downloads.wordpress.org/plugin/loginizer.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/loginizer.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/loginizer.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/loginizer.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/loginizer.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/loginizer.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/loginizer.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/loginizer.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/loginizer.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/plugin/loginizer.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/loginizer.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/loginizer.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/loginizer.2.0.3.zip", "trunk": "https://downloads.wordpress.org/plugin/loginizer.zip"}, "downloaded": 28276615, "description": "

    Loginizer is a WordPress plugin which helps you fight against bruteforce attack by blocking login for the IP after it reaches maximum retries allowed. You can blacklist or whitelist IPs for login using Loginizer. You can use various other features like Two Factor Auth, reCAPTCHA, PasswordLess Login, etc. to improve security of your website.

    \n

    Loginizer is actively used by more than 1000000+ WordPress websites.

    \n

    You can find our official documentation at https://loginizer.com/docs. We are also active in our community support forums on wordpress.org if you are one of our free users. Our Premium Support Ticket System is at https://loginizer.deskuss.com

    \n

    Free Features :

    \n
      \n
    • Brute force protection. IPs trying to brute force your website will be blocked for 15 minutes after 3 failed login attempts. After multiple lockouts the IP is blocked for 24 hours. This is the default configuration and can be changed from Loginizer -> Brute force page in WordPress admin panel.
    • \n
    • Failed login attempts logs.
    • \n
    • Blacklist IPs
    • \n
    • Whitelist IPs
    • \n
    • Custom error messages on failed login.
    • \n
    • Permission check for important files and folders.
    • \n
    • Allow only Trusted IP.
    • \n
    • Blocked Screen in place of the Login page.
    • \n
    • Email Notification on successful login.
    • \n
    • Let users login with LinkedIn
    • \n
    \n

    Get Support and Pro Features

    \n

    Get professional support from our experts and pro features to take your site’s security to the next level with Loginizer-Security.

    \n

    Pro Features :

    \n
      \n
    • MD5 Checksum – of Core WordPress Files. The admin can check and ignore files as well.
    • \n
    • PasswordLess Login – At the time of Login, the username / email address will be asked and an email will be sent to the email address of that account with a temporary link to login.
    • \n
    • Two Factor Auth via Email – On login, an email will be sent to the email address of that account with a temporary 6 digit code to complete the login.
    • \n
    • Two Factor Auth via App – The user can configure the account with a 2FA App like Google Authenticator, Authy, etc.
    • \n
    • Login Challenge Question – The user can setup a Challenge Question and Answer as an additional security layer. After Login, the user will need to answer the question to complete the login.
    • \n
    • reCAPTCHA – Google’s reCAPTCHA v3/v2, Cloudflare Turnstile, hCAPTCHA can be configured for the Login screen, Comments Section, Registration Form, etc. to prevent automated brute force attacks. Supports WooCommerce as well.
    • \n
    • Rename Login Page – The Admin can rename the login URL (slug) to something different from wp-login.php to prevent automated brute force attacks.
    • \n
    • Rename WP-Admin URL – The Admin area in WordPress is accessed via wp-admin. With loginizer you can change it to anything e.g. site-admin
    • \n
    • CSRF Protection – This helps in preventing CSRF attacks as it updates the admin URL with a session string which makes it difficult and nearly impossible for the attacker to predict the URL.
    • \n
    • Rename Login with Secrecy – If set, then all Login URL’s will still point to wp-login.php and users will have to access the New Login Slug by typing it in the browser.
    • \n
    • Disable XML-RPC – An option to simply disable XML-RPC in WordPress. Most of the WordPress users don’t need XML-RPC and can disable it to prevent automated brute force attacks.
    • \n
    • Rename XML-RPC – The Admin can rename the XML-RPC to something different from xmlrpc.php to prevent automated brute force attacks.
    • \n
    • Username Auto Blacklist – Attackers generally use common usernames like admin, administrator, or variations of your domain name / business name. You can specify such username here and Loginizer will auto-blacklist the IP Address(s) of clients who try to use such username(s).
    • \n
    • New Registration Domain Blacklist – If you would like to ban new registrations from a particular domain, you can use this utility to do so.
    • \n
    • Change the Admin Username – The Admin can rename the admin username to something more difficult.
    • \n
    • Auto Blacklist IPs – IPs will be auto blacklisted, if certain usernames saved by the Admin are used to login by malicious bots / users.
    • \n
    • Disable Pingbacks – Simple way to disable PingBacks.
    • \n
    • SSO – Single Sign-on, let any user access to your WordPress Dashboard without the need to share username or password.
    • \n
    • Limit Concurrent Logins – It prevents user to login from different devices concurrently, you can define how many devices you want to allow, and how you want to restrict the user when concurrent limit is reached.
    • \n
    • Social Login – Users can login or register with their Google, Github, Facebook, X (Twitter), Discord, Twitch, LinkedIn, Microsoft with support for WooCommerce and Ultimate Member.
    • \n
    • Key Less Social Login – Use Loginizer’s Social Auth for easy key less Social login configuration, now supports Google, GitHub, X, LinkedIn more to be added later
    • \n
    \n

    Features in Loginizer include:

    \n
      \n
    • Blocks IP after maximum retries allowed
    • \n
    • Extended Lockout after maximum lockouts allowed
    • \n
    • Email notification to admin after max lockouts
    • \n
    • Blacklist IP/IP range
    • \n
    • Whitelist IP/IP range
    • \n
    • Check logs of failed attempts
    • \n
    • Create IP ranges
    • \n
    • Delete IP ranges
    • \n
    • Licensed under LGPLv2.1
    • \n
    • Safe & Secure
    • \n
    \n", "donate_link": "", "num_ratings": 1011, "screenshots": {"1": {"src": "https://ps.w.org/loginizer/assets/screenshot-1.png?rev=2938776", "caption": "Login Failed Error message"}, "2": {"src": "https://ps.w.org/loginizer/assets/screenshot-2.png?rev=2938776", "caption": "Loginizer Dashboard page"}, "3": {"src": "https://ps.w.org/loginizer/assets/screenshot-3.png?rev=2938776", "caption": "Loginizer Brute Force Settings page"}}, "support_url": "https://wordpress.org/support/plugin/loginizer/", "contributors": {"loginizer": {"avatar": "https://secure.gravatar.com/avatar/bf9daac91a2bdde173799b1bde509ad1c3a00bc01d59ec13f4fd15d6f7f4bc7f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/loginizer/", "display_name": "loginizer"}, "pagelayer": {"avatar": "https://secure.gravatar.com/avatar/da11d7dd9a75193431feed4a3e58a875f78b6180bd032bf980e311f10713bee2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pagelayer/", "display_name": "pagelayer"}, "softaculous": {"avatar": "https://secure.gravatar.com/avatar/d5f508eb226ae8cade7ed9f0f0cda7115f419afe760e0b64af278ed042b47c1f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/softaculous/", "display_name": "Softaculous"}}, "last_updated": "2025-09-22 9:44am GMT", "preview_link": "", "requires_php": "5.5", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/loginizer.2.0.3.zip", "author_profile": "https://profiles.wordpress.org/softaculous/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f6d4-7191-a04f-c8e41a541dba", "name": "Loginizer", "slug": "loginizer", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1758534240, "version": "2.0.3"}, "support_threads": 3, "requires_plugins": [], "short_description": "Loginizer is a WordPress security plugin which helps you fight against bruteforce attacks.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 1}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ca3-7129-8c26-6e3f3cf59cd8', 'did:web:api.aspiredev.org:packages:wp-plugin:mailchimp-for-wp', 'mailchimp-for-wp', 'MC4WP: Mailchimp for WordPress', '

    Allowing your visitors to subscribe to your newsletter should be easy. With this plugin, it finally is.

    -

    This plugins helps you grow your email list in Mailchimp. You can use it to create good looking and accessible sign-up forms or integrate with any other existing form on your WordPress site, like your contact, comment or checkout form.

    - -

    Some (but not all) features

    -
      -
    • -

      Connect with your Mailchimp account in seconds.

      -
    • -
    • -

      Sign-up forms which are good looking, user-friendly and mobile optimized. You have complete control over the form fields and can build your forms using native HTML.

      -
    • -
    • -

      Seamless integration with the following plugins:

      -
        -
      • WordPress Comment Form
      • -
      • WordPress Registration Form
      • -
      • Contact Form 7
      • -
      • WooCommerce
      • -
      • Gravity Forms
      • -
      • Ninja Forms 3
      • -
      • WPForms
      • -
      • BuddyPress
      • -
      • MemberPress
      • -
      • Events Manager
      • -
      • Easy Digital Downloads
      • -
      • Give
      • -
      • UltimateMember
      • -
      • HTML Forms
      • -
      • AffiliateWP
      • -
      -
    • -
    • -

      Is the plugin you want to integrate with not listed above? You can probably still use our custom integration feature. Alternatively, the plugin comes with a PHP API to programmatically add a new subscriber to Mailchimp.

      -
    • -
    • -

      Mailchimp for WordPress Premium: Send your WooCommerce orders to Mailchimp so you can see exactly what each subscriber purchased and how much revenue your email campaigns are generating.

      -
    • -
    • -

      A multitude of available add-on plugins and integrations:

      - -
    • -
    • -

      Well documented through our knowledge base.

      -
    • -
    • -

      Developer friendly. For some inspiration, check out our repository of example code snippets.

      -
    • -
    • -

      Ready for PHP 8.5, but backwards-compatible all the way down to PHP 7.4.

      -
    • -
    -

    What is Mailchimp?

    -

    Mailchimp is a newsletter service that allows you to send out email campaigns to a list of email subscribers. It is free for lists with up to 500 email subscribers, which is why it is the newsletter-service of choice for thousands of small businesses across the globe.

    -

    If you are not yet using Mailchimp, creating an account is 100% free and only takes you about 30 seconds.

    -

    Support

    -

    If you need some help in setting up the plugin, you have various options:

    - -

    Translations

    -

    You can help translate this plugin into your language using your WordPress.org account.

    -

    Development

    -

    This plugin is being developed on GitHub. If you want to collaborate, please look at ibericode/mailchimp-for-wordpress.

    -

    Customizing the plugin

    -

    The plugin provides various filter and action hooks that allow you to modify or extend the default behavior. We’re also maintaining a collection of sample code snippets.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "MC4WP: Mailchimp for WordPress", "slug": "mailchimp-for-wp", "tags": {"form": "form", "email": "email", "mailchimp": "mailchimp", "subscribe": "subscribe", "newsletter": "newsletter"}, "added": "2013-06-19", "icons": {"1x": "https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577", "2x": "https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577"}, "author": "Danny van Kooten", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706", "high": false}, "ratings": {"1": 50, "2": 10, "3": 18, "4": 39, "5": 1366}, "version": "4.10.8", "homepage": "https://www.mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page", "requires": "4.6", "sections": {"faq": "\n
    \nWhere can I find my Mailchimp API key?\n\n

    \n

    You can find your API key here

    \n

    \n
    \nHow to display a form in posts or pages?\n\n

    \n

    Use the [mc4wp_form] shortcode or the Gutenberg block.

    \n

    \n
    \nHow to display a form in widget areas like the sidebar or footer?\n\n

    \n

    Go to Appearance > Widgets and use the Mailchimp for WP Form widget that comes with the plugin.

    \n

    \n
    \nHow to add a sign-up checkbox to my Contact Form 7 form?\n\n

    \n

    Use the following shortcode in your CF7 form to display a newsletter sign-up checkbox.

    \n
    [mc4wp_checkbox \"Subscribe to our newsletter?\"]\n
    \n

    Our knowledge base has more information on connecting Contact Form 7 and Mailchimp.

    \n

    \n
    \nThe form shows a success message but subscribers are not added to my list(s)?\n\n

    \n

    If the form shows a success message, there is no doubt that the sign-up request succeeded. Mailchimp could have a slight delay sending the confirmation email though. Please check again in a few minutes (sometimes hours) and don’t forget to check your junk folder too.

    \n

    When you have double opt-in disabled, new subscribers will be seen as imports by Mailchimp. They will not show up in your daily digest emails or statistics. We always recommend leaving double opt-in enabled.

    \n

    \n
    \nHow can I style the sign-up form?\n\n

    \n

    You can use custom CSS to style the sign-up form if you do not like the themes that come with the plugin. The following selectors can be used to target the various form elements.

    \n
    .mc4wp-form { ... } /* the form element */\n.mc4wp-form p { ... } /* form paragraphs */\n.mc4wp-form label { ... } /* labels */\n.mc4wp-form input { ... } /* input fields */\n.mc4wp-form input[type=\"checkbox\"] { ... } /* checkboxes */\n.mc4wp-form input[type=\"submit\"] { ... } /* submit button */\n.mc4wp-alert { ... } /* success & error messages */\n.mc4wp-success { ... } /* success message */\n.mc4wp-error { ... } /* error messages */\n
    \n

    You can add your custom CSS to your theme stylesheet or (easier) by using a plugin like Simple Custom CSS

    \n

    \n
    \nHow do I show a sign-up form in a pop-up?\n\n

    \n

    We recommend the Boxzilla pop-up plugin for this. You can use the form shortcode in your pop-up box to show a sign-up form.

    \n

    \n
    \nHow do I subscribe from my WooCommerce checkout form?\n\n

    \n

    You can use our WooCommerce integration for that. How to subscribe to Mailchimp from the WooCommerce checkout form.

    \n

    \n
    \nHow to connect my WooCommerce store with Mailchimp?\n\n

    \n

    You can find instructions for connecting your WooCommerce store with Mailchimp on our website.

    \n

    \n
    \nI’m getting an “HTTP Error” when trying to connect to Mailchimp.\n\n

    \n

    the “HTTP Error” type is usually because of a firewall configuration issue or outdated software on your web server.

    \n

    Please contact your webhost and ask them to check the following:

    \n
      \n
    • Whether remote HTTP requests to https://api.mailchimp.com are allowed.
    • \n
    • Whether cURL and the PHP-cURL extension are installed and updated to a recent version.
    • \n
    \n

    \n
    \nMy question is not listed here.\n\n

    \n

    Please search through our knowledge base.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Mailchimp integration is smooth

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tsengco on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Connected my newsletter lists in a minute. New subscribers sync immediately, no extra setup needed.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable, well-maintained, and highly recommended

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy m4 (mapo84) on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is an excellent plugin — reliable, well maintained, and easy to use. I’ve been using the Pro version for several years and it has always delivered exactly what I needed.

    \n\n\n\n

    The developers clearly put a lot of care into both the product and the documentation, and the support team is fast, professional, and very helpful.

    \n\n\n\n

    Highly recommended to anyone looking for a solid Mailchimp integration for WordPress!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Millan V.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Benova (Benjamin Millan) on August 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    Costa Brava contenidos muy agradecido y sencillo de aplicar
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable for a decade

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ilumos on July 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We''ve used this for over a decade and it continues to work very reliably. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kosteve on July 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    nice plugin with good interface

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great integration offers!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bayejeed on July 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve heard about Mailchimp a lot, it''s time to install and best wishes for your upcoming plugins, thanks and be with us. You might deserve the 5 stars but yet to use it dear, so I''ll do that after using the plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Customer Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lstarnaud on April 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We installed this plugin but encountered some compatibility issues with our theme. The support team responded quickly and resolved everything efficiently. Highly recommend!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Won't let you configure unless you give public physical address

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mehlmanmedical (theforwardmale) on March 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After you activate the plugin and it collects your info and email, it forces you to provide a physical address to include in all footers of emails you''d send out to comply with \"anti-spam laws,\" even though I''ve never once been prompted with this. If you don''t want to give your address, it makes suggestions like renting out a PO box. Laughable. Point is, could you imagine sending a physical address to thousands of subscribers? In 2025 there''s something called Online businesses.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    MY new plugin is good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Trevor Locke (locketrevor) on March 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just started to use Mailchimp. So far, so good.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    very happy with this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy vanoweb on February 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    i use this for several websites and it works fine

    \n
    \n
    \n", "changelog": "

    4.10.8 – Oct 21, 2025

    \n
      \n
    • Show warning to administrators if a form is showing but Mailchimp API key is not set.
    • \n
    • Update third-party JS dependencies.
    • \n
    \n

    4.10.7 – Sep 05, 2025

    \n
      \n
    • Handle renewing lists through server-side redirect instead of JS component.
    • \n
    \n

    4.10.6 – Jul 23, 2025

    \n
      \n
    • [WooCommerce Checkout] Fix checkbox from showing up in order confirmation email if using Checkout Block.
    • \n
    • [Forms] Fix {response} tag being escaped.
    • \n
    \n

    4.10.5 – Jun 25, 2025

    \n
      \n
    • [Ninja Forms] Always show at least one list option so that onchange event fires properly (to load Audience fields).
    • \n
    • Update third-party JS dependencies.
    • \n
    • Optimize SVG icons for reduced file sizes.
    • \n
    \n

    4.10.4 – May 26, 2025

    \n
      \n
    • Improved context-dependent escaping in dynamic content tags.
    • \n
    \n

    4.10.3 – Apr 16, 2025

    \n
      \n
    • Update third-party JS dependencies.
    • \n
    • Add message setting for when a form submission is marked as spam.
    • \n
    • Log exact anti-spam rule when a form submission is marked as spam.
    • \n
    • Handle potential Prosopo connection errors gracefully.
    • \n
    \n

    4.10.2 – Feb 28, 2025

    \n
      \n
    • Fix WPForms parameter type change causing a fatal error if using WPForms with a Mailchimp sign-up field.
    • \n
    • Add Mailchimp data to Personal Data exporter. Contributed by David Anderson from UpdraftPlus.
    • \n
    • Prevent PHP notices in lists overview on general settings page.
    • \n
    \n

    4.10.1 – Feb 06, 2025

    \n
      \n
    • Fix JS error breaking Ninja Forms edit form page when not connected to a Mailchimp account or account has no audiences.
    • \n
    • Remove sprintf usage in hot path.
    • \n
    • Lazy load MC4WP_API_V3 class to save some memory and parse time.
    • \n
    • Save a tiny bit of memory in autoloader implementation by not repeatedly storing plugin directory.
    • \n
    • Remove unused setting key from default options.
    • \n
    \n

    4.10.0 – Jan 23, 2025

    \n
      \n
    • Bump required PHP version to 7.4 or higher.
    • \n
    • Obfuscate API key the same way as in the Mailchimp.com interface.
    • \n
    • Delete all plugin data when plugin is uninstalled / deleted via WP Admin.
    • \n
    • Fix several PHP 8.4 deprecation warnings.
    • \n
    • Address warning about translations being loaded too early if using Ninja Forms integration.
    • \n
    • Run stored setting values related to user-facing textual messages through i18n functions to allow translating them through plugins like Loco Translate or WPML.
    • \n
    \n

    4.9.21 – Jan 08, 2025

    \n
      \n
    • [Forms] Rename “list choice” to “audience choice” in available form fields.
    • \n
    • [Ninja Forms] Fix gettext being called too early warning in Ninja Forms base class.
    • \n
    • [WooCommerce] Allow pre-checking of sign-up checkbox in Checkout Block.
    • \n
    \n

    4.9.20 – Dec 18, 2024

    \n
      \n
    • Fix Ninja Forms integration field no longer showing up.
    • \n
    • Fix “link is expired” message because of missing nonce on button to dismiss API key notice.
    • \n
    • [WPML] Added text_no_lists_selected to the config file so it can be translated. Thanks Diego Pereira!
    • \n
    \n

    4.9.19 – Nov 11, 2024

    \n
      \n
    • Add integration with Prosopo, a GDPR compliant anti-spam solution for protecting your sign-up forms against bot sign-ups. Thanks Maxim Akimov!
    • \n
    \n

    4.9.18 – Oct 21, 2024

    \n
      \n
    • Bump required PHP version to 7.2.
    • \n
    • Prevent non-functional checkbox from showing up on WooCommerce my account page if WooCommerce checkout integration is enabled.
    • \n
    • Update default form content to include a “for” attribute on the label element.
    • \n
    • Minor performance optimizations to MC4WP_Form::get_subscriber_tags()
    • \n
    • Begrudgingly rename Mailchimp lists to Mailchimp audiences throughout the plugin’s admin interfaces.
    • \n
    \n

    4.9.17 – Sep 17, 2024

    \n
      \n
    • Fix compatibility with WooCommerce versions 8.5 to 8.8 because of private method that was later made public.
    • \n
    • Fix potential reflected XSS by stripping and escaping all HTML from {email} tag replacements. Thanks to kauenavarro for responsibly disclosing.
    • \n
    • Fix potential stored XSS for attackers with both administrator access and Mailchimp account access by escaping HTML from interest group name. Thanks to Jorge Diaz (ddiax) for responsibly disclosing.
    • \n
    \n

    4.9.16 – Sep 11, 2024

    \n
      \n
    • Add support for WooCommerce Checkout Block in sign-up checkbox integration.
    • \n
    \n

    4.9.15 – Aug 13, 2024

    \n
      \n
    • Improved anti-spam measures on the custom form integration. If you are using the custom form integration (using the mc4wp-subscribe checkbox), please test your forms after upgrading and report any issues to us.
    • \n
    • Improved anti-spam measures on all sign-up forms.
    • \n
    • Remove unsupported filter hook from Gravity Forms integration.
    • \n
    \n

    4.9.14 – Jul 17, 2024

    \n
      \n
    • Very minor code-size improvements to public forms related JavaScript.
    • \n
    • Update third-party JS dependencies.
    • \n
    • Bump tested WordPress version to 6.6.
    • \n
    \n

    4.9.13 – Apr 25, 2024

    \n
      \n
    • Fix issue with Composer classmap throwing a fatal error when an older version of Composer is already loaded.
    • \n
    \n

    4.9.12 – Apr 22, 2024

    \n
      \n
    • Fix last 10 Mailchimp lists not being pulled-in when having more than 10 lists.
    • \n
    \n

    4.9.11 – Jan 8, 2024

    \n
      \n
    • Update third-party JS dependencies.
    • \n
    • Bump tested WordPress version.
    • \n
    \n

    4.9.10 – Nov 20, 2023

    \n
      \n
    • Integrations: Update CheckoutWC hook name for WooCommerce checkbox integration.
    • \n
    • Forms: Don’t show form preview to users without edit_posts capability.
    • \n
    • Forms: Explicitly exclude form preview from search engine indexing.
    • \n
    • General: Don’t unnecessarily go through service contrainer while bootstrapping plugin.
    • \n
    • General: Remove some unnecessary JavaScript now that browser support has caught up.
    • \n
    \n

    4.9.9 – Oct 3, 2023

    \n
      \n
    • Fix class “MC4WP_Usage_Tracking” not found error for WP Cron / WP CLI processes.
    • \n
    \n

    4.9.8 – Oct 3, 2023

    \n
      \n
    • Remove the opt-in usage tracking functionality as we’re not really using it for decision making anymore.
    • \n
    • Add missing label element to the select element for setting the logging level.
    • \n
    • Our JavaScript assets are now transpiled to support the same set of browsers as WordPress core.
      \nThis drops support for some very old browsers, but results in smaller bundle sizes for the supported set of browsers.
    • \n
    • Update third-party JS dependencies to their latest versions.
    • \n
    \n

    4.9.7 – Aug 29, 2023

    \n
      \n
    • Update third-party JS dependencies.
    • \n
    • Minor textual improvements.
    • \n
    • Bump tested WordPress version.
    • \n
    \n

    4.9.6 – Jul 12, 2023

    \n
      \n
    • Update third-party JS dependencies.
    • \n
    • Address some minor codestyle issues.
    • \n
    \n

    4.9.5 – Jun 7, 2023

    \n
      \n
    • Fix generated HTML for list/audience choice fields.
    • \n
    • Fix deprecation warning in includes/admin/class-review-notice.php.
    • \n
    • Update JavaScript dependencies.
    • \n
    \n

    4.9.4 – May 2, 2023

    \n
      \n
    • Fallback to default checkbox label if none given. Thanks to Shojib Khan.
    • \n
    • Improve WooCommerce integration settings page by disabling position field if integration is disabled. Thanks to Shojib Khan.
    • \n
    • Update JavaScript dependencies.
    • \n
    \n

    4.9.3 – Mar 31, 2023

    \n
      \n
    • Defend against breaking change in latest WPForms update.
    • \n
    \n

    4.9.2 – Mar 21, 2023

    \n
      \n
    • Add support for a field named MARKETING_PERMISSIONS to enable GDPR fields configured in Mailchimp. A sample code snippet can be found here.
    • \n
    • Remove Google reCaptcha feature. This was already disabled if you were not already using it.
    • \n
    \n

    4.9.1 – Feb 7, 2023

    \n
      \n
    • Fix generated value attribute for fields of type choice (dropdown, checkboxes, radio fields).
    • \n
    • Fix type of marketing_permissions field in API requests. Thanks to George Korakas.
    • \n
    • Refactor list overview JS to not depend on Mithril.js anymore.
    • \n
    • Simplify admin footer text asking for a plugin review.
    • \n
    • When renewing lists, renew cached marketing permissions too.
    • \n
    \n

    4.9.0 – Jan 13, 2023

    \n
      \n
    • Removed deprecated filter hook mc4wp_settings_cap, use mc4wp_admin_required_capability instead.
    • \n
    • Removed deprecated filter hook mc4wp_merge_vars, use mc4wp_form_data or mc4wp_integration_data instead.
    • \n
    • Removed deprecated filter hook mc4wp_form_merge_vars, use mc4wp_form_data instead.
    • \n
    • Removed deprecated filter hook mc4wp_integration_merge_vars, use mc4wp_integration_data instead.
    • \n
    • Removed deprecated filter hook mc4wp_valid_form_request, use mc4wp_form_errors instead.
    • \n
    • Removed deprecated function mc4wp_get_api() and deprecated class MC4WP_API.
    • \n
    • Removed deprecated function mc4wp_checkbox().
    • \n
    • Removed deprecated function mc4wp_form(), use mc4wp_show_form() instead.
    • \n
    • Added filter mc4wp_debug_log_message to modify or disable messages that are written to the debug log.
    • \n
    • Fix color of invalid Mailchimp API key notice.
    • \n
    • Sanitize IP address value from $_SERVER[''REMOTE_ADDR''] too.
    • \n
    • Fetch GDPR marketing permissions via first subscriber on list and show them in lists overview table.
    • \n
    \n

    4.8.12 – Dec 06, 2022

    \n
      \n
    • Minor performance, memory usage & size optimizations for all JavaScript code bundled with this plugin.
    • \n
    \n

    4.8.11 – Nov 1, 2022

    \n
      \n
    • Improved default styling for the WooCommerce sign-up checkbox integration.
    • \n
    • Add <strong> to allowed HTML elements for GDPR disclaimer text on settings pages.
    • \n
    • Remove all references to obsolete placeholders.js polyfill.
    • \n
    • Move the GiveWP sign-up checkbox closer to the email input field. Thanks Matthew Lewis.
    • \n
    \n

    4.8.10 – Sep 14, 2022

    \n
      \n
    • Fix mc4wp_get_request_ip_address() to return an IP address that matches Mailchimp’s validation format when X-Forwarded-For header contains a port component.
    • \n
    \n

    4.8.8 – Aug 25, 2022

    \n
      \n
    • Fix mc4wp_get_request_ip_address() to pass new Mailchimp validation format. This fixes the “This value is not a valid IP.” error some users using a proxy may have been seeing.
    • \n
    \n

    4.8.7 – Mar 2, 2022

    \n
      \n
    • Fix PHP 8.1 deprecation warnings in MC4WP_Container class.
    • \n
    • Fix name of action hook that fires before Mailchimp settings rows are displayed on the settings page. Thanks LoonSongSoftware.
    • \n
    • Improve WPML compatibility. Thanks Sumit Singh.
    • \n
    • Fix deprecated function for AMP integration.
    • \n
    • Only allow unfiltered HTML if user has unfiltered_html capability. Please read the below.
    • \n
    \n

    Despite extensive testing, we may have missed some more obscure HTML elements or attributes from our whitelist.
    \nIf you notice that some of your form HTML is stripped after saving your form, please get in touch with our support team and provide the HTML you attempted to save.

    \n

    4.8.6 – Jun 24, 2021

    \n
      \n
    • Add nonce field to button for dismissing notice asking for plugin review.
    • \n
    • Add strings from config/ directory to POT file.
    • \n
    • Add nonce check to AJAX endpoint for refreshing cached Mailchimp lists.
    • \n
    • Add capability check to AJAX endpoint for retrieving list details.
    • \n
    • Schedule event to refresh cached Mailchimp list upon plugin activation.
    • \n
    \n

    Thanks to the team over at pluginvulnerabilities.com for bringing some of these changes to our attention.

    \n

    4.8.5 – Jun 1, 2021

    \n

    Add nonce verification to all URL’s using _mc4wp_action query parameter.
    \nThis fixes a CSRF vulnerability where a malicious website could trick a logged-in admin user in performing unwanted actions.

    \n

    A special thanks to Erwan from WPScan for bringing this issue to our attention.

    \n

    4.8.4 – May 7, 2021

    \n
      \n
    • Add defer attribute to JS file, so page parsing isn’t blocked at all.
    • \n
    • Rewrite plugin CSS to optimize for selector performance and get rid of some duplication.
    • \n
    \n

    After installing this update, make sure to also update any add-on plugins like Mailchimp for WordPress Premium and Mailchimp Top Bar.

    \n

    4.8.3 – Jan 21, 2021

    \n
      \n
    • Fix fatal error on older PHP versions when submitting form without any subscriber tags set in the form settings.
    • \n
    • Minor performance improvement in bootstrap method of the plugin.
    • \n
    \n

    4.8.2 – Jan 20, 2021

    \n
      \n
    • Allow short-circuiting mc4wp_subscriber_data filter by returning null or false.
    • \n
    • Use a subdirectory for the default debug log file location, so that it’s easier to protect using htaccess.
    • \n
    • Improved reliability for fetching lists from mailchimp when lists have high stats.member_count property.
    • \n
    \n

    4.8.1 – Aug 25, 2020

    \n
      \n
    • Fix notice by explicitly setting permission_callback on registered REST route.
    • \n
    • Minor internal code improvements.
    • \n
    \n

    4.8 – Jul 9, 2020

    \n
      \n
    • Plugin now requires PHP 5.3 or higher.
    • \n
    • Prefix overlay classname to prevent styling collissions with other plugins.
    • \n
    • Form sign-ups can now add tags to both new and existing subscribers.
    • \n
    • Update JavaScript dependencies.
    • \n
    • Register script early to work with Gutenberg preview.
    • \n
    \n

    4.7.8 – Jun 04, 2020

    \n
      \n
    • Add MC4WP_API_V3::add_template method.
    • \n
    • Minor code hardening to ensure a default form is always set.
    • \n
    • Update JS dependencies to their latest versions.
    • \n
    • Fix icon for Gutenberg block.
    • \n
    \n

    4.7.7 – Apr 28, 2020

    \n
      \n
    • Update JS dependencies to their latest versions.
    • \n
    • API client add_list_member method now has an additional parameter to skip merge field validation.
    • \n
    • Simplify code for updating an existing form.
    • \n
    \n

    4.7.6 – Apr 9, 2020

    \n
      \n
    • Update JS dependencies to their latest versions.
    • \n
    • Check if className is of type string, fixes a console warning when clicking inside a SVG element.
    • \n
    • Minor improvements to the AMP implementation to address harmless validation warnings.
    • \n
    \n

    4.7.5 – Feb 10, 2020

    \n
      \n
    • Add AMP compatibility to sign-up forms, thanks to Claudiu Lodromanean. This uses the official AMP plugin for WordPress.
    • \n
    • Add settings key to WPML config so settings can easily by copied over to translated versions of a form.
    • \n
    • Optimize size & performance of JavaScript code, resulting in a file that is 40% smaller.
    • \n
    • Update CodeMirror to its latest version.
    • \n
    • Escape all string translations.
    • \n
    \n

    4.7.4 – Dec 7, 2019

    \n

    Fixes

    \n
      \n
    • htaccess config for servers running Apache 2.4 or later.
    • \n
    \n

    4.7.3 – Dec 4, 2019

    \n

    Fixes

    \n
      \n
    • Top Bar & User Sync add-on using API v2 since version 4.7.1.
    • \n
    • Revert change in formatter for date fields, breaking all forms with date fields in them.
    • \n
    \n

    Improvements

    \n
      \n
    • Add getter method for raw (unmodified) data on form class.
    • \n
    \n

    4.7.2 – Nov 27, 2019

    \n

    Fixes

    \n
      \n
    • Invalid .htaccess file in case there already is one in the uploads directory.
    • \n
    \n

    4.7.1 – Nov 26, 2019

    \n

    Improvements

    \n
      \n
    • Update MemberPress hook names. Thanks Ian Heggaton!
    • \n
    • Use WordPress.org translations instead of bundling translation files in plugin itself.
    • \n
    • Write .htaccess to directory of debug log file, to prevent file access.
    • \n
    • Add some convenient hooks for Checkout for WooCommerce.
    • \n
    • Stop parsing shortcodes in text widgets as WordPress core does this since version 4.9.
    • \n
    \n

    4.7 – Nov 7, 2019

    \n

    Improvements

    \n
      \n
    • Add role=alert to form notices.
    • \n
    • Add setting to pre-check sign-up …
    • \n
    \n", "description": "

    Allowing your visitors to subscribe to your newsletter should be easy. With this plugin, it finally is.

    \n

    This plugins helps you grow your email list in Mailchimp. You can use it to create good looking and accessible sign-up forms or integrate with any other existing form on your WordPress site, like your contact, comment or checkout form.

    \n\n

    Some (but not all) features

    \n
      \n
    • \n

      Connect with your Mailchimp account in seconds.

      \n
    • \n
    • \n

      Sign-up forms which are good looking, user-friendly and mobile optimized. You have complete control over the form fields and can build your forms using native HTML.

      \n
    • \n
    • \n

      Seamless integration with the following plugins:

      \n
        \n
      • WordPress Comment Form
      • \n
      • WordPress Registration Form
      • \n
      • Contact Form 7
      • \n
      • WooCommerce
      • \n
      • Gravity Forms
      • \n
      • Ninja Forms 3
      • \n
      • WPForms
      • \n
      • BuddyPress
      • \n
      • MemberPress
      • \n
      • Events Manager
      • \n
      • Easy Digital Downloads
      • \n
      • Give
      • \n
      • UltimateMember
      • \n
      • HTML Forms
      • \n
      • AffiliateWP
      • \n
      \n
    • \n
    • \n

      Is the plugin you want to integrate with not listed above? You can probably still use our custom integration feature. Alternatively, the plugin comes with a PHP API to programmatically add a new subscriber to Mailchimp.

      \n
    • \n
    • \n

      Mailchimp for WordPress Premium: Send your WooCommerce orders to Mailchimp so you can see exactly what each subscriber purchased and how much revenue your email campaigns are generating.

      \n
    • \n
    • \n

      A multitude of available add-on plugins and integrations:

      \n\n
    • \n
    • \n

      Well documented through our knowledge base.

      \n
    • \n
    • \n

      Developer friendly. For some inspiration, check out our repository of example code snippets.

      \n
    • \n
    • \n

      Ready for PHP 8.5, but backwards-compatible all the way down to PHP 7.4.

      \n
    • \n
    \n

    What is Mailchimp?

    \n

    Mailchimp is a newsletter service that allows you to send out email campaigns to a list of email subscribers. It is free for lists with up to 500 email subscribers, which is why it is the newsletter-service of choice for thousands of small businesses across the globe.

    \n

    If you are not yet using Mailchimp, creating an account is 100% free and only takes you about 30 seconds.

    \n

    Support

    \n

    If you need some help in setting up the plugin, you have various options:

    \n\n

    Translations

    \n

    You can help translate this plugin into your language using your WordPress.org account.

    \n

    Development

    \n

    This plugin is being developed on GitHub. If you want to collaborate, please look at ibericode/mailchimp-for-wordpress.

    \n

    Customizing the plugin

    \n

    The plugin provides various filter and action hooks that allow you to modify or extend the default behavior. We’re also maintaining a collection of sample code snippets.

    \n", "screenshots": "
    1. \"Example

      Example sign-up form in the TwentyTwenty theme.

    2. \"Example

      Example sign-up integration with a contact form.

    3. \"Settings

      Settings page to connect with your Mailchimp account.

    4. \"Overview

      Overview of sign-up integrations.

    5. \"Overview

      Overview of sign-up forms.

    6. \"Settings

      Settings page to configure an integration.

    7. \"Page

      Page where you edit your sign-up forms.

    8. \"Page

      Page where you modify your form messages.

    9. \"Settings

      Settings page for e-commerce integration with Mailchimp. Requires Mailchimp for WordPress Premium.

    ", "installation": "

    Installing the plugin

    \n
      \n
    1. In your WordPress admin panel, go to Plugins > New Plugin, search for Mailchimp for WordPress and click “Install now
    2. \n
    3. Alternatively, download the plugin and upload the contents of mailchimp-for-wp.zip to your plugins directory, which usually is /wp-content/plugins/.
    4. \n
    5. Activate the plugin
    6. \n
    7. Set your API key in the plugin settings.
    8. \n
    \n

    Configuring Sign-Up Form(s)

    \n
      \n
    1. Go to Mailchimp for WP > Forms
    2. \n
    3. Select at least one list to subscribe people to.
    4. \n
    5. (Optional) Add more fields to your form.
    6. \n
    7. Embed a sign-up form in pages or posts using the [mc4wp_form] shortcode or Gutenberg block.
    8. \n
    9. Show a sign-up form in your widget areas using the “Mailchimp Sign-Up Form” widget.
    10. \n
    11. Show a sign-up form from your theme files by using the mc4wp_show_form() PHP function.
    12. \n
    \n

    Need help?

    \n

    Please take a look at the MC4WP knowledge base first.

    \n

    If you can’t find an answer there, please look through the plugin support forums or start your own topic.

    \n"}, "versions": {"1.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.zip", "2.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.zip", "3.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.zip", "4.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.zip", "4.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.4.zip", "4.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.zip", "4.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.zip", "1.1.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.1.5.zip", "1.2.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.2.1.zip", "1.2.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.2.5.zip", "1.3.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.3.1.zip", "1.4.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.8.zip", "1.5.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.8.zip", "2.0.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.5.zip", "2.1.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.7.zip", "2.2.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.9.zip", "2.3.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.8.zip", "3.0.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.9.zip", "3.1.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.9.zip", "4.0.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.9.zip", "4.2.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.5.zip", "4.3.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.3.3.zip", "4.5.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.5.zip", "4.6.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.6.1.zip", "4.6.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.6.2.zip", "4.7.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.4.zip", "4.7.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.5.zip", "4.7.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.6.zip", "4.7.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.7.zip", "4.7.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.8.zip", "4.8.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.3.zip", "4.8.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.4.zip", "4.8.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.5.zip", "4.8.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.6.zip", "4.8.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.7.zip", "4.8.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.8.zip", "4.8.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.9.zip", "4.9.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.2.zip", "4.9.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.3.zip", "4.9.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.4.zip", "4.9.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.5.zip", "4.9.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.6.zip", "4.9.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.7.zip", "4.9.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.8.zip", "4.9.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.zip", "2.3.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.12.zip", "2.3.13": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.13.zip", "2.3.14": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.14.zip", "2.3.15": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.15.zip", "2.3.16": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.16.zip", "2.3.17": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.17.zip", "2.3.18": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.18.zip", "3.0.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.12.zip", "3.1.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.10.zip", "3.1.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.11.zip", "3.1.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.12.zip", "4.0.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.10.zip", "4.0.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.11.zip", "4.0.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.12.zip", "4.0.13": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.13.zip", "4.1.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.10.zip", "4.1.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.11.zip", "4.1.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.12.zip", "4.1.13": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.13.zip", "4.1.14": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.14.zip", "4.1.15": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.15.zip", "4.10.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.0.zip", "4.10.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.1.zip", "4.10.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.2.zip", "4.10.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.3.zip", "4.10.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.4.zip", "4.10.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.5.zip", "4.10.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.6.zip", "4.10.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.7.zip", "4.10.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.8.zip", "4.8.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.10.zip", "4.8.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.11.zip", "4.8.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.12.zip", "4.9.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.10.zip", "4.9.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.11.zip", "4.9.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.12.zip", "4.9.13": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.13.zip", "4.9.14": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.14.zip", "4.9.15": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.15.zip", "4.9.16": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.16.zip", "4.9.17": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.17.zip", "4.9.18": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.18.zip", "4.9.19": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.19.zip", "4.9.20": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.20.zip", "4.9.21": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.21.zip"}, "downloaded": 69835064, "description": "

    Allowing your visitors to subscribe to your newsletter should be easy. With this plugin, it finally is.

    \n

    This plugins helps you grow your email list in Mailchimp. You can use it to create good looking and accessible sign-up forms or integrate with any other existing form on your WordPress site, like your contact, comment or checkout form.

    \n\n

    Some (but not all) features

    \n
      \n
    • \n

      Connect with your Mailchimp account in seconds.

      \n
    • \n
    • \n

      Sign-up forms which are good looking, user-friendly and mobile optimized. You have complete control over the form fields and can build your forms using native HTML.

      \n
    • \n
    • \n

      Seamless integration with the following plugins:

      \n
        \n
      • WordPress Comment Form
      • \n
      • WordPress Registration Form
      • \n
      • Contact Form 7
      • \n
      • WooCommerce
      • \n
      • Gravity Forms
      • \n
      • Ninja Forms 3
      • \n
      • WPForms
      • \n
      • BuddyPress
      • \n
      • MemberPress
      • \n
      • Events Manager
      • \n
      • Easy Digital Downloads
      • \n
      • Give
      • \n
      • UltimateMember
      • \n
      • HTML Forms
      • \n
      • AffiliateWP
      • \n
      \n
    • \n
    • \n

      Is the plugin you want to integrate with not listed above? You can probably still use our custom integration feature. Alternatively, the plugin comes with a PHP API to programmatically add a new subscriber to Mailchimp.

      \n
    • \n
    • \n

      Mailchimp for WordPress Premium: Send your WooCommerce orders to Mailchimp so you can see exactly what each subscriber purchased and how much revenue your email campaigns are generating.

      \n
    • \n
    • \n

      A multitude of available add-on plugins and integrations:

      \n\n
    • \n
    • \n

      Well documented through our knowledge base.

      \n
    • \n
    • \n

      Developer friendly. For some inspiration, check out our repository of example code snippets.

      \n
    • \n
    • \n

      Ready for PHP 8.5, but backwards-compatible all the way down to PHP 7.4.

      \n
    • \n
    \n

    What is Mailchimp?

    \n

    Mailchimp is a newsletter service that allows you to send out email campaigns to a list of email subscribers. It is free for lists with up to 500 email subscribers, which is why it is the newsletter-service of choice for thousands of small businesses across the globe.

    \n

    If you are not yet using Mailchimp, creating an account is 100% free and only takes you about 30 seconds.

    \n

    Support

    \n

    If you need some help in setting up the plugin, you have various options:

    \n\n

    Translations

    \n

    You can help translate this plugin into your language using your WordPress.org account.

    \n

    Development

    \n

    This plugin is being developed on GitHub. If you want to collaborate, please look at ibericode/mailchimp-for-wordpress.

    \n

    Customizing the plugin

    \n

    The plugin provides various filter and action hooks that allow you to modify or extend the default behavior. We’re also maintaining a collection of sample code snippets.

    \n", "donate_link": "https://www.mc4wp.com/contribute/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link", "num_ratings": 1483, "screenshots": {"1": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-1.png?rev=2837223", "caption": "Example sign-up form in the TwentyTwenty theme."}, "2": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-2.png?rev=2837223", "caption": "Example sign-up integration with a contact form."}, "3": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-3.png?rev=2837223", "caption": "Settings page to connect with your Mailchimp account."}, "4": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-4.png?rev=2837223", "caption": "Overview of sign-up integrations."}, "5": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-5.png?rev=2837223", "caption": "Overview of sign-up forms."}, "6": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-6.png?rev=2837223", "caption": "Settings page to configure an integration."}, "7": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-7.png?rev=2837223", "caption": "Page where you edit your sign-up forms."}, "8": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-8.png?rev=2837223", "caption": "Page where you modify your form messages."}, "9": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-9.png?rev=3103917", "caption": "Settings page for e-commerce integration with Mailchimp. Requires Mailchimp for WordPress Premium."}}, "support_url": "https://wordpress.org/support/plugin/mailchimp-for-wp/", "contributors": {"lapzor": {"avatar": "https://secure.gravatar.com/avatar/66f6718604507cd65a1d4ef480526164a9a6df6647eec9de32fbd1bb30f7dae6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lapzor/", "display_name": "Lap"}, "hchouhan": {"avatar": "https://secure.gravatar.com/avatar/54a25d2575c011125ec5ea1e6c6e2f8e4325156aa67c0b74be20b771832e133d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hchouhan/", "display_name": "Harish Chouhan"}, "ibericode": {"avatar": "https://secure.gravatar.com/avatar/aa5fd5bb40d388381ac3e3944ad4e43752660919412d2d1a6dde86c55c6bd112?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ibericode/", "display_name": "ibericode"}, "dvankooten": {"avatar": "https://secure.gravatar.com/avatar/f8836eece576026e99b8d35323043da4431ffd244efa961fa07f52ea414c2811?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dvankooten/", "display_name": "Danny van Kooten"}}, "last_updated": "2025-10-21 7:42am GMT", "preview_link": "https://wordpress.org/plugins/mailchimp-for-wp/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.8.zip", "author_profile": "https://profiles.wordpress.org/dvankooten/", "business_model": false, "repository_url": "", "upgrade_notice": {"3.0.3": "

    Minor improvements and re-added support for Goodbye Captcha integration.

    "}, "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f7f4-7237-a6df-e56959996d17", "name": "MC4WP: Mailchimp for WordPress", "slug": "mailchimp-for-wp", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761032520, "version": "4.10.8"}, "support_threads": 9, "requires_plugins": [], "short_description": "The #1 Mailchimp plugin for WordPress. Allows you to add a multitude of newsletter sign-up methods to your site.", "author_block_count": 1, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 9}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1cb1-73c7-bd64-a5fabfd4a4d9', 'did:web:api.aspiredev.org:packages:wp-plugin:maintenance', 'maintenance', 'Maintenance', '

    Maintenance plugin allows the WordPress site administrator to close the website for maintenance, enable “503 Service temporarily unavailable”, set a temporary page with authorization, which can be edited via the plugin settings. Easy customize the good look on all devices. Add your logo, background image, select the desired color, add text. Maintenance uses Bunny Fonts for EU GDPR compliance.

    -

    Need pre-made themes and over 3 million free images to build maintenance, coming soon & landing pages faster? Have a look at WP Maintenance PRO plugin.

    -

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL.

    -

    Features

    -
      -
    • retina ready HTML/CSS layout
    • -
    • Full-screen background (Backstretch)
    • -
    • Blur background effect
    • -
    • Upload your own logo
    • -
    • Configurable colors: fonts, icons, background
    • -
    • Customize title, headline, text
    • -
    • User login on frontend
    • -
    • Admin bar status
    • -
    • 503 error on/off
    • -
    • Google analytics support
    • -
    • Exclude selected pages from Maintenance mode
    • -
    • Support for all popular caching plugins
    • -
    • mtnc_load_maintenance_page_for_this_user filter for modifying show sees the maintenance page
    • -
    -

    Support

    -

    If you have any problems, questions or recommendations about WP Maintenance please open a ticket in the official support forum. We answer all questions within hours!
    -Want to say “thank you”? Please leave a review.

    -

    GDPR Compatibility

    -

    We are not lawyers. Please do not take any of the following as legal advice.
    -If you don’t opt to use Bunny Fonts and don’t use Google Analytics then no resources are loaded or shared with 3rd parties. And nothing is tracked. Opting to use any of those services will result in data sharing/tracking as described in their terms of service.
    -If you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Maintenance", "slug": "maintenance", "tags": {"coming-soon": "coming soon", "maintenance": "maintenance", "coming-soon-page": "coming soon page", "maintenance-mode": "maintenance mode", "maintenance-page": "maintenance page"}, "added": "2012-05-31", "icons": {"1x": "https://ps.w.org/maintenance/assets/icon-128x128.png?rev=2689583", "2x": "https://ps.w.org/maintenance/assets/icon-256x256.png?rev=2689583"}, "author": "WebFactory", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/maintenance/assets/banner-772x250.png?rev=1637471", "high": false}, "ratings": {"1": 71, "2": 24, "3": 16, "4": 34, "5": 691}, "version": "4.18", "homepage": "https://wpmaintenancemode.com/", "requires": "4.0", "sections": {"faq": "\n
    \nI have activated plugin and don’t see any changes, looks like plugin is not working.\n\n

    \n

    Try to check in different browser. If you a logged as WordPress user you see the website in normal mode.

    \n

    \n
    \nWill my site remain visible to search engines while maintenance mode is on?\n\n

    \n

    The site will not be visible to search engines only if “503 Service Temporarily Unavailable” option is enabled.

    \n

    \n
    \nWhere can I find out the username and password to get to the site?\n\n

    \n

    You can use your “normal” WP administrator access or create a new user in WordPress dashboard – Users.

    \n

    \n
    \nIf I incorrectly write a login and password I will see the error on the page wp-login?\n\n

    \n

    No, it will be display error on current maintenance page, without redirect to wp-login page.

    \n

    \n
    \nI haven’t found an answer to my question, what should I do?\n\n

    \n

    Please post the question on the support forum.

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    cant deactivate! Nightmare!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mariannehalavage on September 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I cannot deactivate this even when I delete the plugin including from file manager! Terrible. A nightmare!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Just what is needed, nothing extra

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy genepine on July 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works fine, easy to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Blocks API

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bernardberry646 on July 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Blocks API

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jewalker on June 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is good and the support forum is quick to help

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    works but full of bloat

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jolanxbl on March 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Doesn''t use your site''s fonts
    Ignores the \"Page Title\" field but displays site name (I used css to disable this).
    Crops the top and bottom of the background & darkens it by 40%.
    Page theme is paywalled so I just made the entire page as a background image instead.

    \n\n\n\n

    Despite all its advertised features, I only used background and background color, (and css to get around the paywall), because formatting the layout would have been more work that simply finishing the website. Frankly, I''m surprised that they didn''t seal away the CSS like Elementor does.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Website does not load

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pablopergara on March 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The website can not be accessed, and it is easy to activate and deactivate but when active it does not load. It only shows a white spinning cogwheel on a black background.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Exclusion Feature Make life Easier

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy itsjanel on January 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am not ready to launch my site, but I am having issues that need attention via tech support and they need the page I am having issues with open. I was happy to see that I could use the Exclusion feature.

    \n\n\n\n

    Happy...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Maintenance mode wont go away

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shirleyrma on January 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Set my site to Maintenance, wording under renovation. Now I want to move forward but it wont come out of maintenance mode. Cleared all ache no go, Webfactory wont do support because it was a free installation. Why not have a small charge for the app instead of giving a lousy app free that in my opinion and experience wont work. Now I have to set my site back to default and add back my other app. Ugh.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Can corrupt your website

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy seif2788 on January 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I had a bug, which isn''t usually a problem if there is documentation or support, i have lost a page in my wordpress website, i wouldn''t recommand this plugin, as it can corrupt your website

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Should not turn maintenance mode on by default

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy moonwalk (j0321) on December 16, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    You should not turn maintenance mode on by default once the plugin is installed and activated. It should be a setting that site admins can manually turned on. Imaging having to install this plugin on an eCommerce site to configure the maintenance mode for later use, and when the plugin is activated, it takes the site into maintenance mode....

    \n
    \n
    \n", "changelog": "

    v4.18

    \n
      \n
    • 2025/07/31
    • \n
    • improved mobile resposiveness
    • \n
    \n

    v4.17

    \n
      \n
    • 2025/01/22
    • \n
    • fixed Show some love option not saving
    • \n
    \n

    v4.16

    \n
      \n
    • 2025/01/10
    • \n
    • updated Google Analytics code
    • \n
    • added skip-lazy class to background image to fix Autoptimize compatibility
    • \n
    \n

    v4.15

    \n
      \n
    • 2024/10/22
    • \n
    • fixed bug with some options not being saved
    • \n
    \n

    v4.14

    \n
      \n
    • 2024/10/17
    • \n
    • excluded posts/pages not saving bug fix
    • \n
    \n

    v4.13

    \n
      \n
    • 2024/10/13
    • \n
    • minor security fixes
    • \n
    \n

    v4.12

    \n
      \n
    • 2024/06/07
    • \n
    • minor bug fixes
    • \n
    \n

    v4.09

    \n
      \n
    • 2024/06/03
    • \n
    • added Weglot support
    • \n
    \n

    v4.08

    \n
      \n
    • 2023/08/31
    • \n
    • fixed reset password URL changed if Maintenance is off
    • \n
    \n

    v4.07

    \n
      \n
    • 2022/05/06
    • \n
    • replaced Google Fonts with the privacy-oriented and GDPR compliant Bunny Fonts
    • \n
    • minor fix for image field
    • \n
    \n

    v4.06

    \n
      \n
    • 2022/05/06
    • \n
    • introduction of the PRO version
    • \n
    \n

    v4.05

    \n
      \n
    • 2022/01/04
    • \n
    • bug fix for retina image
    • \n
    • security fixes
    • \n
    • ad for our free WP Force SSL plugin
    • \n
    \n

    v4.03

    \n
      \n
    • 2021/07/18
    • \n
    • security fixes
    • \n
    • checked WP 5.8 compatibility
    • \n
    \n

    v4.02

    \n
      \n
    • 2021/03/06
    • \n
    • JS fixes on frontend
    • \n
    • Contact Form 7 conflict fix
    • \n
    \n

    v4.01

    \n
      \n
    • 2021/02/20
    • \n
    • added support for Cache Enabler plugin
    • \n
    • fixed a bug when background image isn’t defined
    • \n
    • fixed issue on sites with large numbers of posts/pages/CPTs
    • \n
    \n

    v4.0

    \n
      \n
    • 2021/01/30
    • \n
    • added flyout menu
    • \n
    • added mtnc_load_maintenance_page_for_this_user filter
    • \n
    \n

    v3.99

    \n
      \n
    • 2021/01/13
    • \n
    • minor fixes
    • \n
    • removed promo for WP 301 Redirects
    • \n
    \n

    v3.97

    \n
      \n
    • 2020/10/02
    • \n
    • minor fixes
    • \n
    • added promo for WP 301 Redirects
    • \n
    \n

    v3.96

    \n
      \n
    • 2020/08/19
    • \n
    • “headers already sent” bug fixed
    • \n
    \n

    v3.95

    \n
      \n
    • 2020/08/14
    • \n
    • bug fixes for WP v5.5
    • \n
    \n

    v3.90

    \n
      \n
    • 2020/05/30
    • \n
    • bug fixes
    • \n
    • removed integration with Amelia Booking
    • \n
    • added support for WP Rocket Cache plugin
    • \n
    • fixed blur issue
    • \n
    \n

    v3.85

    \n
      \n
    • 2019/11/28
    • \n
    • bug fixes
    • \n
    • added integration with Amelia Booking
    • \n
    • added support for Hummingbird Cache plugin
    • \n
    \n

    v3.80

    \n
      \n
    • 2019/09/25
    • \n
    • numerous bug fixes
    • \n
    • added preview button
    • \n
    • 400,000 installations; 3,790,000 downloads
    • \n
    • for older changelog entries please refer to https://wpmaintenancemode.com/old-changelog.txt
    • \n
    \n", "description": "

    Maintenance plugin allows the WordPress site administrator to close the website for maintenance, enable “503 Service temporarily unavailable”, set a temporary page with authorization, which can be edited via the plugin settings. Easy customize the good look on all devices. Add your logo, background image, select the desired color, add text. Maintenance uses Bunny Fonts for EU GDPR compliance.

    \n

    Need pre-made themes and over 3 million free images to build maintenance, coming soon & landing pages faster? Have a look at WP Maintenance PRO plugin.

    \n

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL.

    \n

    Features

    \n
      \n
    • retina ready HTML/CSS layout
    • \n
    • Full-screen background (Backstretch)
    • \n
    • Blur background effect
    • \n
    • Upload your own logo
    • \n
    • Configurable colors: fonts, icons, background
    • \n
    • Customize title, headline, text
    • \n
    • User login on frontend
    • \n
    • Admin bar status
    • \n
    • 503 error on/off
    • \n
    • Google analytics support
    • \n
    • Exclude selected pages from Maintenance mode
    • \n
    • Support for all popular caching plugins
    • \n
    • mtnc_load_maintenance_page_for_this_user filter for modifying show sees the maintenance page
    • \n
    \n

    Support

    \n

    If you have any problems, questions or recommendations about WP Maintenance please open a ticket in the official support forum. We answer all questions within hours!
    \nWant to say “thank you”? Please leave a review.

    \n

    GDPR Compatibility

    \n

    We are not lawyers. Please do not take any of the following as legal advice.
    \nIf you don’t opt to use Bunny Fonts and don’t use Google Analytics then no resources are loaded or shared with 3rd parties. And nothing is tracked. Opting to use any of those services will result in data sharing/tracking as described in their terms of service.
    \nIf you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    \n", "screenshots": "
    1. \"Maintenance

      Maintenance page with default design

    2. \"Log

      Log in form is built into the maintenance page

    3. \"Maintenance

      Maintenance plugin options page

    ", "installation": "

    Follow the usual routine;

    \n
      \n
    1. Open WordPress admin, go to Plugins, click Add New
    2. \n
    3. Enter “maintenance” in search and hit Enter
    4. \n
    5. Locate the Maintenance plugin by searching for our mascot, click “Install Now”
    6. \n
    7. Activate & open plugin’s settings page located in the main WP admin menu
    8. \n
    \n

    Or if needed, upload manually;

    \n
      \n
    1. Download the plugin.
    2. \n
    3. Unzip it and upload to /wp-content/plugins/
    4. \n
    5. Open WordPress admin – Plugins and click “Activate” next to the plugin
    6. \n
    7. Activate & open plugin’s settings page located in the main WP admin menu
    8. \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/maintenance.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/maintenance.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/maintenance.1.2.zip", "2.0": "https://downloads.wordpress.org/plugin/maintenance.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/maintenance.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/maintenance.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/maintenance.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/maintenance.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/maintenance.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/maintenance.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/maintenance.2.7.zip", "3.0": "https://downloads.wordpress.org/plugin/maintenance.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/maintenance.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/maintenance.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/maintenance.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/maintenance.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/maintenance.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/maintenance.3.6.zip", "3.8": "https://downloads.wordpress.org/plugin/maintenance.3.8.zip", "4.0": "https://downloads.wordpress.org/plugin/maintenance.4.0.zip", "3.85": "https://downloads.wordpress.org/plugin/maintenance.3.85.zip", "3.90": "https://downloads.wordpress.org/plugin/maintenance.3.90.zip", "3.95": "https://downloads.wordpress.org/plugin/maintenance.3.95.zip", "3.96": "https://downloads.wordpress.org/plugin/maintenance.3.96.zip", "3.97": "https://downloads.wordpress.org/plugin/maintenance.3.97.zip", "3.99": "https://downloads.wordpress.org/plugin/maintenance.3.99.zip", "4.01": "https://downloads.wordpress.org/plugin/maintenance.4.01.zip", "4.02": "https://downloads.wordpress.org/plugin/maintenance.4.02.zip", "4.03": "https://downloads.wordpress.org/plugin/maintenance.4.03.zip", "4.05": "https://downloads.wordpress.org/plugin/maintenance.4.05.zip", "4.06": "https://downloads.wordpress.org/plugin/maintenance.4.06.zip", "4.07": "https://downloads.wordpress.org/plugin/maintenance.4.07.zip", "4.08": "https://downloads.wordpress.org/plugin/maintenance.4.08.zip", "4.10": "https://downloads.wordpress.org/plugin/maintenance.4.10.zip", "4.12": "https://downloads.wordpress.org/plugin/maintenance.4.12.zip", "4.13": "https://downloads.wordpress.org/plugin/maintenance.4.13.zip", "4.14": "https://downloads.wordpress.org/plugin/maintenance.4.14.zip", "4.15": "https://downloads.wordpress.org/plugin/maintenance.4.15.zip", "4.16": "https://downloads.wordpress.org/plugin/maintenance.4.16.zip", "4.17": "https://downloads.wordpress.org/plugin/maintenance.4.17.zip", "4.18": "https://downloads.wordpress.org/plugin/maintenance.4.18.zip", "1.1.1": "https://downloads.wordpress.org/plugin/maintenance.1.1.1.zip", "1.2.1": "https://downloads.wordpress.org/plugin/maintenance.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/maintenance.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/maintenance.1.2.3.zip", "2.0.1": "https://downloads.wordpress.org/plugin/maintenance.2.0.1.zip", "2.1.1": "https://downloads.wordpress.org/plugin/maintenance.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/maintenance.2.1.2.zip", "2.2.1": "https://downloads.wordpress.org/plugin/maintenance.2.2.1.zip", "2.7.1": "https://downloads.wordpress.org/plugin/maintenance.2.7.1.zip", "3.1.1": "https://downloads.wordpress.org/plugin/maintenance.3.1.1.zip", "3.4.1": "https://downloads.wordpress.org/plugin/maintenance.3.4.1.zip", "3.5.1": "https://downloads.wordpress.org/plugin/maintenance.3.5.1.zip", "3.6.1": "https://downloads.wordpress.org/plugin/maintenance.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/maintenance.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/maintenance.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/maintenance.3.6.4.zip", "3.7.0": "https://downloads.wordpress.org/plugin/maintenance.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/maintenance.3.7.1.zip", "trunk": "https://downloads.wordpress.org/plugin/maintenance.zip"}, "downloaded": 15211089, "description": "

    Maintenance plugin allows the WordPress site administrator to close the website for maintenance, enable “503 Service temporarily unavailable”, set a temporary page with authorization, which can be edited via the plugin settings. Easy customize the good look on all devices. Add your logo, background image, select the desired color, add text. Maintenance uses Bunny Fonts for EU GDPR compliance.

    \n

    Need pre-made themes and over 3 million free images to build maintenance, coming soon & landing pages faster? Have a look at WP Maintenance PRO plugin.

    \n

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL.

    \n

    Features

    \n
      \n
    • retina ready HTML/CSS layout
    • \n
    • Full-screen background (Backstretch)
    • \n
    • Blur background effect
    • \n
    • Upload your own logo
    • \n
    • Configurable colors: fonts, icons, background
    • \n
    • Customize title, headline, text
    • \n
    • User login on frontend
    • \n
    • Admin bar status
    • \n
    • 503 error on/off
    • \n
    • Google analytics support
    • \n
    • Exclude selected pages from Maintenance mode
    • \n
    • Support for all popular caching plugins
    • \n
    • mtnc_load_maintenance_page_for_this_user filter for modifying show sees the maintenance page
    • \n
    \n

    Support

    \n

    If you have any problems, questions or recommendations about WP Maintenance please open a ticket in the official support forum. We answer all questions within hours!
    \nWant to say “thank you”? Please leave a review.

    \n

    GDPR Compatibility

    \n

    We are not lawyers. Please do not take any of the following as legal advice.
    \nIf you don’t opt to use Bunny Fonts and don’t use Google Analytics then no resources are loaded or shared with 3rd parties. And nothing is tracked. Opting to use any of those services will result in data sharing/tracking as described in their terms of service.
    \nIf you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    \n", "donate_link": "", "num_ratings": 836, "screenshots": {"1": {"src": "https://ps.w.org/maintenance/assets/screenshot-1.jpg?rev=2162740", "caption": "Maintenance page with default design"}, "2": {"src": "https://ps.w.org/maintenance/assets/screenshot-2.jpg?rev=2162740", "caption": "Log in form is built into the maintenance page"}, "3": {"src": "https://ps.w.org/maintenance/assets/screenshot-3.png?rev=2162740", "caption": "Maintenance plugin options page"}}, "support_url": "https://wordpress.org/support/plugin/maintenance/", "contributors": {"webfactory": {"avatar": "https://secure.gravatar.com/avatar/0128e826bd2acd495936bf252a4f0f80a3263c656cb8d69d9e306e2ea741a251?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/webfactory/", "display_name": "WebFactory"}}, "last_updated": "2025-07-31 5:55am GMT", "preview_link": "", "requires_php": "5.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/maintenance.4.18.zip", "author_profile": "https://profiles.wordpress.org/webfactory/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f80b-7322-946d-c926b0e7ec29", "name": "Maintenance", "slug": "maintenance", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1753941300, "version": "4.18"}, "support_threads": 6, "requires_plugins": [], "short_description": "Great looking maintenance, coming soon & under construction pages. Put your site under maintenance in minutes.", "author_block_count": "1", "author_block_rating": 91.42857142857198, "commercial_support_url": "", "support_threads_resolved": 6}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1cbe-711e-9242-383b98a367e3', 'did:web:api.aspiredev.org:packages:wp-plugin:mainwp-child', 'mainwp-child', 'MainWP Child – Securely Connects to the MainWP Dashboard to Manage Multiple Sites', '

    The MainWP Child Plugin securely connects the WordPress sites you want to manage to the MainWP Dashboard.

    -

    The MainWP Child plugin creates a secure connection between your WordPress sites and your self-hosted MainWP Dashboard, enabling you to efficiently manage WP installations from a single, centralized location.

    -

    With MainWP Child and the MainWP Dashboard, you can update themes, plugins, and WordPress core across all connected sites, perform backups and security scans, manage posts, pages, users, and comments in bulk, and integrate with popular plugins like WooCommerce, Yoast SEO, and Wordfence.

    -

    The MainWP Dashboard also offers features for cost tracking and client management, making it an all-in-one solution for agencies and freelancers looking to manage WP sites efficiently. The functionality can be further extended with a growing library of MainWP Add-ons.

    -

    MainWP is the ideal solution for freelancers and agencies managing client sites, developers and designers working on multiple projects, marketers and content managers overseeing various websites, and anyone responsible for maintaining multiple WordPress sites.

    -

    Why Choose MainWP for WordPress Management?

    -

    MainWP is 100% free and open-source, with no monthly fees, even for unlimited sites.

    -

    As a self-hosted solution, it offers maximum control and privacy. MainWP provides comprehensive site management features and is highly customizable with add-ons and developer hooks. The MainWP Child plugin even comes with its own privacy policy to guarantee your privacy while using MainWP.

    -

    All of this makes MainWP the best non-SaaS alternative to ManageWP, InfiniteWP, WPRemote, and WP Umbrella.

    -

    Key Features

    -

    MainWP Child, combined with the MainWP Dashboard, offers secure management of unlimited WordPress sites, one-click updates for plugins, themes, and WordPress core, automated backups and security monitoring, bulk management of posts, pages, users, and comments, white-labeling and custom branding options, and powerful add-ons for WooCommerce, Yoast SEO, Wordfence, and more.

    -

    Expand Your MainWP Dashboard with Add-ons

    -

    MainWP offers a growing library of add-ons that add advanced functionality to your Dashboard. From client reporting to SEO management, MainWP add-ons provide the tools you need to deliver top-notch service to your clients.

    -

    Join the MainWP Community

    -

    MainWP is more than just a plugin; it’s a thriving community of WordPress professionals. Join our MainWP Users Facebook Group to connect with other users, share advice, and stay updated on the latest features and add-ons.

    -

    Developer-Friendly

    -

    MainWP is built with developers in mind. We provide extensive documentation, hooks, and an API to help you create custom extensions and integrations for the MainWP platform. We have a site at MainWP.dev dedicated to MainWP developers.

    -

    Get Started with MainWP Today

    -

    Take control of your WordPress site management with MainWP and the MainWP Child plugin. With its powerful features, unlimited site connections, and user-friendly interface, MainWP is the smart choice for anyone managing multiple WordPress sites.

    -

    Learn More About MainWP

    - -', 'wp', 'wp-plugin', 'proprietary', '{"name": "MainWP Child – Securely Connects to the MainWP Dashboard to Manage Multiple Sites", "slug": "mainwp-child", "tags": {"update": "update", "backups": "backups", "security": "security", "monitoring": "monitoring", "site-management": "site management"}, "added": "2013-08-27", "icons": {"1x": "https://ps.w.org/mainwp-child/assets/icon-128x128.png?rev=2734948", "2x": "https://ps.w.org/mainwp-child/assets/icon-256x256.png?rev=2734948"}, "author": "mainwp", "rating": 100, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/mainwp-child/assets/banner-772x250.png?rev=3119259", "high": "https://ps.w.org/mainwp-child/assets/banner-1544x500.png?rev=3119259"}, "ratings": {"1": 0, "2": 1, "3": 0, "4": 0, "5": 68}, "version": "5.4.0.15", "homepage": "https://mainwp.com/", "requires": "5.4", "sections": {"faq": "\n
    \nIs the MainWP Child Plugin required to use MainWP?\n\n

    \n

    Yes, the MainWP Child plugin must be installed on each WordPress site you want to connect to your MainWP Dashboard.

    \n

    \n
    \nCan I hide the MainWP Child plugin from the WordPress admin?\n\n

    \n

    Yes, you can use the MainWP White Label extension to hide the MainWP Child plugin from the WordPress admin on your connected sites.

    \n

    \n
    \nHow does MainWP compare to ManageWP?\n\n

    \n

    While MainWP and ManageWP offer similar features, MainWP is self-hosted and open-source, providing more control and flexibility. Learn more about the differences between MainWP and ManageWP.

    \n

    \n
    \nHow does MainWP compare to WP Umbrella?\n\n

    \n

    Both MainWP and WP Umbrella offer features for managing multiple WordPress sites, but MainWP is self-hosted and open-source, while WP Umbrella is a SaaS platform hosted on their servers. MainWP’s open architecture provides greater control and flexibility. Discover more differences between MainWP and WP Umbrella.

    \n

    \n
    \nHow does MainWP compare to InfiniteWP?\n\n

    \n

    MainWP and InfiniteWP are both self-hosted WordPress management solutions. However, MainWP is open-source, allowing for code review and extensibility, while InfiniteWP’s Admin Panel is not open-source and obfuscates its code. MainWP also offers a comprehensive set of features tailored for agencies and freelancers managing client sites. Explore the differences between MainWP and InfiniteWP.

    \n

    \n
    \nHow does MainWP compare to WPRemote?\n\n

    \n

    MainWP and WPRemote are both WordPress management solutions, but they differ in their approach and feature set. MainWP is a self-hosted, open-source plugin that gives you full control over your data and offers a wide range of features. WP Remote is a cloud-based service that stores your data on its servers, which may be a concern for some users who prioritize data ownership, security, and GDPR. Learn more about the differences between MainWP and WPRemote.

    \n

    \n
    \nIs MainWP secure?\n\n

    \n

    Yes, security is a top priority for MainWP. We adhere to WordPress security best practices, and our code is open-source and available for review on GitHub. We also offer a bug bounty program to encourage responsible disclosure of any security issues. Read more about MainWP Security practices.

    \n

    \n
    \nCan I contribute to MainWP?\n\n

    \n

    Absolutely! MainWP is open-source, and we welcome community contributions. Visit our GitHub repository to get started.

    \n

    \n
    \nHow can I submit an idea for MainWP?\n\n

    \n

    Please follow the steps outlined in the MainWP Feature Requests to submit your idea and allow the MainWP Community to vote on it.

    \n

    \n
    \nWhere can I find more information about MainWP?\n\n

    \n

    We have an extensive FAQ with more questions and answers here.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Metromas (metromas) on May 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    Nice plugin. Useful.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A plugin that meets our expectations.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ahmetbilgic on August 20, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A plugin that meets our expectations. A very nice plugin for managing multiple websites. Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    excellent time saver for managing multiple sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kennethrg on June 14, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I installed this plugin on each of the sites I manage to connect them to my self-hosted MainWP Dashboard. Now I can perform updates and monitor my sites from a single location. It saves a bunch of time and it makes management simple and easy.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Einfach super!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy vonitalz on June 1, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Warum verwende ich das erst jetzt ?!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I just love how much time I save with this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy FGU Nord / Lars (medieskolen) on April 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just love how easy it is to maintain many websites at once with MainWP

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brilliant plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Chris (Chrok) on June 22, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    This plugin works perfectly. It offers you a very good way to manage your websites. I''ve used other systems before, but MainWP stands head and shoulders above the rest.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best…

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy meisterleise on July 21, 2021\t\t\t

    \n\t\t
    \n\t
    \n\t
    …website manager out there. :D
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    powerful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy moesioli on November 6, 2020\t\t\t

    \n\t\t
    \n\t
    \n\t
    powerful tool for the administration of many WordPress
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin, But...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy c4h10o on October 28, 2020\t\t\t

    \n\t\t
    \n\t
    \n\t
    It is a great plugin, no doubt, but ... sometimes it has flaws that are not easily explained, such as not being able to create the \"uploads\" folder or saying that a certain site already has a link to the plugin, when it is not even installed. Whose fault is it: the wordpress, the plugin or the user? As it is not easily explained I do not know ... for what in doubt, and for everything else that made life easier for me, 5 stars.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent Service

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Lioneur (iadminwp) on November 4, 2019\t\t\t

    \n\t\t
    \n\t
    \n\t
    If you want to keep your data private then this tool will work for you. We are planning to move all our client websites over to MainWP.
    \n
    \n", "changelog": "

    5.4.0.15 – Maintenance Release – 10-7-2025

    \n
      \n
    • Fixed: Resolved an issue where certain Comments activity was not being captured in reports on specific server configurations.
    • \n
    • Updated: Improved output handling in the server information display by removing redundant HTML escaping to enhance performance and code clarity. (PR481) – thanks DAnn2012
    • \n
    • Updated: Changed the Delete Plugin function to use delete_plugins() instead of delete_old_plugin() to ensure all WordPress core actions and hooks are properly triggered during plugin deletion.
    • \n
    \n

    5.4.0.14 – Maintenance Release – 8-26-2025

    \n
      \n
    • Fixed: E_PARSE syntax error caused by arrow function usage.
    • \n
    \n

    5.4.0.13 – Maintenance Release – 8-19-2025

    \n
      \n
    • Fixed: PHP warning for undefined variable $new_version that occurred during WordPress core updates. (#822)
    • \n
    \n

    5.4.0.12 – Maintenance Release – 8-12-2025

    \n
      \n
    • Fixed: Restored compatibility with BackWPup version 5 and later.
    • \n
    • Added: Support for the AccelerateWP plugin in the Cache Control system.
    • \n
    • Updated: Support for the WP-Optimize Premium plugin in the Cache Control system.
    • \n
    \n

    5.4.0.11 – Maintenance Release – 7-8-2025

    \n
      \n
    • Fixed: Corrected the upload filesize limit display message on the “Upload/Clone” page to show the accurate maximum file size.
    • \n
    \n

    5.4.0.10 – Maintenance Release – 6-3-2025

    \n
      \n
    • Fixed: Restored cache and minified file clearing in Cache Control add-on when using WP Fastest Cache plugin.
    • \n
    \n

    5.4.0.9 – Maintenance Release – 5-27-2025

    \n
      \n
    • Fixed: Resolved an issue where sites would lose connection after being cloned and require manual reconnection. (#792)
    • \n
    • Fixed: Corrected the Solid Security plugin hiding feature to ensure complete concealment across all admin areas.
    • \n
    \n

    5.4.0.8 – Maintenance Release – 5-20-2025

    \n
      \n
    • Fixed: Resolved a critical error occurring when updating or installing BackWPup plugin version 5.2.2. The issue was caused by undocumented changes in the plugin. (#789)
    • \n
    \n

    5.4.0.7 – Maintenance Release – 5-13-2025

    \n
      \n
    • Fixed: Resolved caching issue in the mainwp_security option to ensure reliable option retrieval. (#785)
    • \n
    • Added: Introduced batching for plugin vulnerability checks to improve efficiency.
    • \n
    • Added: Implemented scheduled background tasks to continue vulnerability scanning in batches.
    • \n
    • Added: Enabled external customization of client report data via new filter hooks.
    • \n
    • Updated: Enhanced WooCommerce Status data retrieval with compatibility for newer versions. (#780)
    • \n
    • Updated: Improved plugin vulnerability checks by updating the NVD NIST API query to better match plugins, increasing the accuracy of vulnerability detection.
    • \n
    \n

    5.4.0.6 – Maintenance Release – 4-22-2025

    \n
      \n
    • Updated: Implemented the time() function to capture Sites Changes event timestamps instead of a custom method, resolving display issues caused by timezone differences.
    • \n
    • Updated: Implemented wp_get_wp_version() method to retrieve WordPress version instead of using the global $wp_version variable for improved code reliability. (#762)[https://github.com/mainwp/mainwp/issues/762]
    • \n
    \n

    5.4.0.5 – Maintenance Release – 4-15-2025

    \n
      \n
    • Fixed: Site Changes filter “Users” filter showing only some users.
    • \n
    • Fixed: When adding a child site that has never had Wordfence plugin installed, applying settings causes an error (#755).
    • \n
    \n

    5.4.0.4 – Maintenance Release – 4-3-2025

    \n
      \n
    • Fixed: PHP error caused by the disabled posix_getpwuid() function.
    • \n
    • Fixed: Issue with the %site% token not working correctly in UpdraftPlus extension settings.
    • \n
    • Updated: Enhanced WP Core vulnerability checks for better compatibility with the NIST NVD API.
    • \n
    \n

    5.4.0.3 – 3-24-2025

    \n
      \n
    • Fixed: Conflict with the Git Updater plugin
    • \n
    • Fixed: Issue with querying extra data in Non-MainWP Changes logs
    • \n
    \n

    5.4.0.2 – 3-12-2025

    \n
      \n
    • Updated: Site Hardening Inactive themes check now allows one default WordPress theme before raising an alert.
    • \n
    \n

    5.4.0.1 – 3-6-2025

    \n
      \n
    • Fixed: Detection of inactive themes in the Site Hardening process
    • \n
    \n

    5.4 – 3-5-2025

    \n
      \n
    • Added: Support for the new column displaying the child site language as a matching flag.
    • \n
    • Added: Support for the new column warning if a child site is not indexable by search engines.
    • \n
    • Added: Support for the option to select which data to include in the sync process.
    • \n
    • Added: Improved WP Debug Mode status check logic.
    • \n
    • Added: Support for the new Regression Testing extension
    • \n
    • Updated: Site Hardening checks, removing outdated ones and introducing new ones.
    • \n
    \n

    5.3.5 – 2-6-2025

    \n
      \n
    • Added: Pull Request #441 by aamplugin for future AAM integration.
    • \n
    • Added: Support of the “Delay JavaScript Execution” WP Rocket option.
    • \n
    • Updated: Improved the Security Hardening check to better detect if WP_DEBUG is enabled.
    • \n
    \n

    5.3.4 – 1-27-2025

    \n
      \n
    • Security Fix: Improved authentication security to ensure password verification cannot be bypassed on sites where the MainWP Child plugin is active but not connected to a Dashboard and not set to require Unique Security ID verification.
    • \n
    \n

    5.3.3 – 12-27-2024

    \n
      \n
    • Fixed: Incorrect feedback message displayed when running updates.
    • \n
    • Fixed: Issue causing WP Cron scheduled events to fail.
    • \n
    \n

    5.3.2 – 12-26-2024

    \n
      \n
    • Updated: Compatibility with the latest WP Rocket plugin settings.
    • \n
    \n

    5.3.1 – 12-12-2024

    \n
      \n
    • Fixed: Typo in the MainWP Child plugin settings page (#426) – thanks to Isaac Russell
    • \n
    • Added: Support for the new Vulnerability Checker service (#419) – thanks to Asif Zaman
    • \n
    • Updated: WPvivid Backups extension support with new feature improvements (#422) – thanks to LiuGeng399
    • \n
    • Updated: Redirection to the MainWP Child settings page now occurs only when the plugin is activated manually from the Plugins page.
    • \n
    \n

    5.3 – 11-26-2024

    \n
      \n
    • Security Enhancement: Enhanced the pre-connection process with additional security features to address recommendations from a security company. Read more
    • \n
    • Added: Password authorization requirement when connecting a site to enhance security.
    • \n
    • Added: “Clear Connection Data” button to unlock a site for a new connection.
    • \n
    • Added: Automatic deactivation of the MainWP Child plugin after a preset period if the site is not connected to a dashboard.
    • \n
    • Added: Translations for French (fr_FR), Spanish (es_ES), German (de_DE), and Portuguese (pt_BR).
    • \n
    • Updated: Plugin settings page design for improved consistency with the MainWP Dashboard plugin.
    • \n
    • Updated: Resetting of the pubkey value to ensure it remains intact when the plugin is deactivated.
    • \n
    • Updated: Compatibility with the latest WP Rocket plugin settings.
    • \n
    \n

    See Video Changelog

    \n

    See changelog for all versions.

    \n

    5.2.1 – 11-20-2024

    \n
      \n
    • Added: After activating the MainWP plugin, users are now redirected to the MainWP Settings page for a smoother onboarding experience.
    • \n
    • Updated: The Unique Security ID option is now enabled by default to enhance security for all MainWP installations.
    • \n
    \n", "description": "

    The MainWP Child Plugin securely connects the WordPress sites you want to manage to the MainWP Dashboard.

    \n

    The MainWP Child plugin creates a secure connection between your WordPress sites and your self-hosted MainWP Dashboard, enabling you to efficiently manage WP installations from a single, centralized location.

    \n

    With MainWP Child and the MainWP Dashboard, you can update themes, plugins, and WordPress core across all connected sites, perform backups and security scans, manage posts, pages, users, and comments in bulk, and integrate with popular plugins like WooCommerce, Yoast SEO, and Wordfence.

    \n

    The MainWP Dashboard also offers features for cost tracking and client management, making it an all-in-one solution for agencies and freelancers looking to manage WP sites efficiently. The functionality can be further extended with a growing library of MainWP Add-ons.

    \n

    MainWP is the ideal solution for freelancers and agencies managing client sites, developers and designers working on multiple projects, marketers and content managers overseeing various websites, and anyone responsible for maintaining multiple WordPress sites.

    \n

    Why Choose MainWP for WordPress Management?

    \n

    MainWP is 100% free and open-source, with no monthly fees, even for unlimited sites.

    \n

    As a self-hosted solution, it offers maximum control and privacy. MainWP provides comprehensive site management features and is highly customizable with add-ons and developer hooks. The MainWP Child plugin even comes with its own privacy policy to guarantee your privacy while using MainWP.

    \n

    All of this makes MainWP the best non-SaaS alternative to ManageWP, InfiniteWP, WPRemote, and WP Umbrella.

    \n

    Key Features

    \n

    MainWP Child, combined with the MainWP Dashboard, offers secure management of unlimited WordPress sites, one-click updates for plugins, themes, and WordPress core, automated backups and security monitoring, bulk management of posts, pages, users, and comments, white-labeling and custom branding options, and powerful add-ons for WooCommerce, Yoast SEO, Wordfence, and more.

    \n

    Expand Your MainWP Dashboard with Add-ons

    \n

    MainWP offers a growing library of add-ons that add advanced functionality to your Dashboard. From client reporting to SEO management, MainWP add-ons provide the tools you need to deliver top-notch service to your clients.

    \n

    Join the MainWP Community

    \n

    MainWP is more than just a plugin; it’s a thriving community of WordPress professionals. Join our MainWP Users Facebook Group to connect with other users, share advice, and stay updated on the latest features and add-ons.

    \n

    Developer-Friendly

    \n

    MainWP is built with developers in mind. We provide extensive documentation, hooks, and an API to help you create custom extensions and integrations for the MainWP platform. We have a site at MainWP.dev dedicated to MainWP developers.

    \n

    Get Started with MainWP Today

    \n

    Take control of your WordPress site management with MainWP and the MainWP Child plugin. With its powerful features, unlimited site connections, and user-friendly interface, MainWP is the smart choice for anyone managing multiple WordPress sites.

    \n

    Learn More About MainWP

    \n\n", "screenshots": "
    1. \"Sites

      Sites - Overview

    2. \"Sites

      Sites - Manage Sites

    3. \"Sites

      Sites - Add a New Site

    4. \"Sites

      Sites - Manage Plugins

    5. \"Sites

      Sites - Manage Posts

    6. \"Sites

      Sites - Manage Updates

    7. \"Clients

      Clients - Manage Clients

    8. \"Cost

      Cost Tracker - Cost Summary

    9. \"Cost

      Cost Tracker - Manage Costs

    10. \"Dashboard

      Dashboard Insights

    ", "installation": "

    How the MainWP Child Plugin Works
    \nInstall and activate the MainWP Dashboard plugin on a dedicated WordPress site.

    \n

    Install the MainWP Child plugin (this plugin) on the WordPress sites you want to connect to your MainWP Dashboard.
    \nActivate the plugin.
    \nFollow the Getting Started Guide to connect your sites to your MainWP Dashboard.

    \n"}, "versions": {"3.5": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.zip", "4.0": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.zip", "4.5": "https://downloads.wordpress.org/plugin/mainwp-child.4.5.zip", "4.6": "https://downloads.wordpress.org/plugin/mainwp-child.4.6.zip", "5.0": "https://downloads.wordpress.org/plugin/mainwp-child.5.0.zip", "5.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.1.zip", "5.2": "https://downloads.wordpress.org/plugin/mainwp-child.5.2.zip", "5.3": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.zip", "5.4": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.zip", "3.4.6": "https://downloads.wordpress.org/plugin/mainwp-child.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/plugin/mainwp-child.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/plugin/mainwp-child.3.4.8.zip", "3.4.9": "https://downloads.wordpress.org/plugin/mainwp-child.3.4.9.zip", "3.5.1": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.7.zip", "4.0.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.7.zip", "4.1.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.9.zip", "4.2.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.5.zip", "4.2.6": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.6.zip", "4.3.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.3.1.zip", "4.4.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.1.zip", "4.5.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.5.3.zip", "5.0.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.0.1.zip", "5.1.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.1.1.zip", "5.2.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.2.1.zip", "5.3.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.3.zip", "5.3.4": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.4.zip", "5.3.5": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.5.zip", "trunk": "https://downloads.wordpress.org/plugin/mainwp-child.zip", "4.1.10": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.10.zip", "3.4.7.1": "https://downloads.wordpress.org/plugin/mainwp-child.3.4.7.1.zip", "3.5.4.1": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.4.1.zip", "4.0.5.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.5.1.zip", "4.0.6.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.6.1.zip", "4.0.6.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.6.2.zip", "4.0.7.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.7.1.zip", "4.0.7.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.7.2.zip", "4.1.3.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.3.1.zip", "4.1.6.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.6.1.zip", "4.1.7.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.7.1.zip", "4.3.0.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.3.0.1.zip", "4.4.0.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.1.zip", "4.4.0.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.2.zip", "4.4.0.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.3.zip", "4.4.0.4": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.4.zip", "4.4.1.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.1.1.zip", "4.4.1.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.1.2.zip", "4.4.1.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.1.3.zip", "5.0.1.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.0.1.1.zip", "5.4.0.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.1.zip", "5.4.0.2": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.2.zip", "5.4.0.3": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.3.zip", "5.4.0.4": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.4.zip", "5.4.0.5": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.5.zip", "5.4.0.6": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.6.zip", "5.4.0.7": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.7.zip", "5.4.0.8": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.8.zip", "5.4.0.9": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.9.zip", "5.4.0.10": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.10.zip", "5.4.0.11": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.11.zip", "5.4.0.12": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.12.zip", "5.4.0.13": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.13.zip", "5.4.0.14": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.14.zip", "5.4.0.15": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.15.zip"}, "downloaded": 38164253, "description": "

    The MainWP Child Plugin securely connects the WordPress sites you want to manage to the MainWP Dashboard.

    \n

    The MainWP Child plugin creates a secure connection between your WordPress sites and your self-hosted MainWP Dashboard, enabling you to efficiently manage WP installations from a single, centralized location.

    \n

    With MainWP Child and the MainWP Dashboard, you can update themes, plugins, and WordPress core across all connected sites, perform backups and security scans, manage posts, pages, users, and comments in bulk, and integrate with popular plugins like WooCommerce, Yoast SEO, and Wordfence.

    \n

    The MainWP Dashboard also offers features for cost tracking and client management, making it an all-in-one solution for agencies and freelancers looking to manage WP sites efficiently. The functionality can be further extended with a growing library of MainWP Add-ons.

    \n

    MainWP is the ideal solution for freelancers and agencies managing client sites, developers and designers working on multiple projects, marketers and content managers overseeing various websites, and anyone responsible for maintaining multiple WordPress sites.

    \n

    Why Choose MainWP for WordPress Management?

    \n

    MainWP is 100% free and open-source, with no monthly fees, even for unlimited sites.

    \n

    As a self-hosted solution, it offers maximum control and privacy. MainWP provides comprehensive site management features and is highly customizable with add-ons and developer hooks. The MainWP Child plugin even comes with its own privacy policy to guarantee your privacy while using MainWP.

    \n

    All of this makes MainWP the best non-SaaS alternative to ManageWP, InfiniteWP, WPRemote, and WP Umbrella.

    \n

    Key Features

    \n

    MainWP Child, combined with the MainWP Dashboard, offers secure management of unlimited WordPress sites, one-click updates for plugins, themes, and WordPress core, automated backups and security monitoring, bulk management of posts, pages, users, and comments, white-labeling and custom branding options, and powerful add-ons for WooCommerce, Yoast SEO, Wordfence, and more.

    \n

    Expand Your MainWP Dashboard with Add-ons

    \n

    MainWP offers a growing library of add-ons that add advanced functionality to your Dashboard. From client reporting to SEO management, MainWP add-ons provide the tools you need to deliver top-notch service to your clients.

    \n

    Join the MainWP Community

    \n

    MainWP is more than just a plugin; it’s a thriving community of WordPress professionals. Join our MainWP Users Facebook Group to connect with other users, share advice, and stay updated on the latest features and add-ons.

    \n

    Developer-Friendly

    \n

    MainWP is built with developers in mind. We provide extensive documentation, hooks, and an API to help you create custom extensions and integrations for the MainWP platform. We have a site at MainWP.dev dedicated to MainWP developers.

    \n

    Get Started with MainWP Today

    \n

    Take control of your WordPress site management with MainWP and the MainWP Child plugin. With its powerful features, unlimited site connections, and user-friendly interface, MainWP is the smart choice for anyone managing multiple WordPress sites.

    \n

    Learn More About MainWP

    \n\n", "donate_link": "", "num_ratings": 69, "screenshots": {"1": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-1.jpg?rev=3051248", "caption": "Sites - Overview"}, "2": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-2.jpg?rev=3051248", "caption": "Sites - Manage Sites"}, "3": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-3.jpg?rev=3051248", "caption": "Sites - Add a New Site"}, "4": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-4.jpg?rev=3051248", "caption": "Sites - Manage Plugins"}, "5": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-5.jpg?rev=3051248", "caption": "Sites - Manage Posts"}, "6": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-6.jpg?rev=3051248", "caption": "Sites - Manage Updates"}, "7": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-7.jpg?rev=3051248", "caption": "Clients - Manage Clients"}, "8": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-8.jpg?rev=3051248", "caption": "Cost Tracker - Cost Summary"}, "9": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-9.jpg?rev=3051248", "caption": "Cost Tracker - Manage Costs"}, "10": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-10.jpg?rev=3051248", "caption": "Dashboard Insights"}}, "support_url": "https://wordpress.org/support/plugin/mainwp-child/", "contributors": {"mainwp": {"avatar": "https://secure.gravatar.com/avatar/1a02e49e3a7cd503482a55a0bb482e49cc84f192d2d0209431c7de8957debacd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mainwp/", "display_name": "mainwp"}}, "last_updated": "2025-10-07 3:57pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.15.zip", "author_profile": "https://profiles.wordpress.org/mainwp/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f813-7390-888a-d40b60f1124c", "name": "MainWP Child – Securely Connects to the MainWP Dashboard to Manage Multiple Sites", "slug": "mainwp-child", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1759852620, "version": "5.4.0.15"}, "support_threads": 0, "requires_plugins": [], "short_description": "MainWP Child establishes a secure link between your WordPress sites and your self-hosted MainWP Dashboard, simplifying site management.", "author_block_count": 0, "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ccc-71cf-9654-e3aa734861c2', 'did:web:api.aspiredev.org:packages:wp-plugin:ninja-forms', 'ninja-forms', 'Ninja Forms – The Contact Form Builder That Grows With You', '

    Forms that grow with your business

    -

    As one of WordPress’ oldest form builders, we’re proud to serve users from around the world, from all walks of life, and from different stages of online growth. From the small businesses and local nonprofits that make up the core Ninja Forms user base to universities, hospitals, and even Fortune 500 companies, we’ll scale with you from startup to wherever you’re aiming for.

    -

    We’re committed to offering as many free, open source tools as we can get away with to back you up in the extremely price-conscious early days. As you grow, pick and choose only the premium features you need as you need them. We’ll grow with you from there for as far as you want to take us.

    -

    We’re also committed to respecting your privacy and time. No unsolicited emails or aggressive marketing. No paywalling basic features or scraping private data. We offer a fully staffed team of support experts and a comprehensive library of plugin documentation for all users, free and paid, to help keep you collecting the submissions that move your business forward.

    -

    We look forward to seeing where you’ll take us!

    -

    All the basics without the paywalls

    -

    When you’re starting out, even little expenses add up quickly. That’s why Ninja Forms core will always be free and open source. It’s why we try to offer as much in core as we can to cover your basic needs at no cost. Here’s a peek at some of what core has to offer.

    -

    Form Building Features
    -– 24+ FREE drag-and-drop form fields
    -– Customize fields with default values, specialty text, and much more
    -– Favorite and reuse any customized field
    -– Calculations: assign values to fields and calculate totals
    -– Merge tag system for pre-populating fields and passing field data between forms
    -– Configurable per-field submission storage for easy GDPR compliance
    -– Email notifications on submission (as many as you like, free!)
    -– Customizable success messages (supports links and downloads!)
    -– Redirect to new page after submission
    -– Customize callbacks to WP action hooks on submit
    -– Spam Protection: full integration with Google reCAPTCHA & Akismet
    -– Configurable form display settings
    -– Form restriction settings
    -– Unique field validation
    -– Unlimited forms & submissions
    -– Form Templates
    -– Form Import / Export
    -– Shareable forms (share the form via link without it being attached to a page)
    -– No aggressive marketing, pushy review asks, constant popups, or unsolicited emails
    -– Responsive and mobile friendly
    -– SEO friendly

    -

    Submission Management Features
    -– Unlimited FREE submissions
    -– Configurable submissions display
    -– Search and filter by field
    -– Search and filter by submitted value
    -– Search and filter by submission date
    -– Edit submitted values
    -– Refire any email notification from any submission
    -– Export to CSV
    -– Bulk submissions export
    -– Automated WordPress GDPR integration for export & delete data requests
    -– Mark fields as PII and selectively not store specific data
    -– All submissions stored locally on YOUR server only unless you specify otherwise
    -– We never see or collect your field or submission data

    -

    Dozens of buildable form types
    -– Contact form
    -– Email form
    -– Calculation form
    -– Lead form
    -– Quiz form
    -– Mortgage or Payment Calculator forms
    -– Quote and Cost Calculator forms
    -– Health and Fitness Calculator forms
    -– Polling form
    -– Survey form
    -– Lead Magnet Download form
    -– Event Registration form
    -– Sales form
    -– Appointment form
    -– Booking form
    -– Entry form
    -– Order form
    -– Lesson Plan form
    -– Job Application form
    -– RSVP form
    -– Request form
    -– Feedback form
    -– Support form
    -– GDPR Export or Delete Data Request forms
    -…and many more!

    -

    You get more than just a plugin
    -– Fully documented
    -– Regular updates
    -– FREE technical support
    -– Privacy and security minded
    -– Accessibility focused
    -– Translated into 24+ languages by the WordPress Polyglots team
    -– Long term partners of WPML for even more translations!
    -– Ecosystem aware: we know it’s not just you and Ninja Forms. We do our best to communicate and play nice with others.

    -

    Pick and choose just what you need as you need it

    -

    As you start to grow, so does what you need out of your forms. But there’s no need to dive into the deep end right away and spend more than is practical. All premium features are contained in add-ons to the core form builder and can be purchased independently. When you find yourself wanting just one or two things, you can grab just what you need without paying for extras.

    -

    When you’re ready for more, our membership plans bundle popular features together in budget friendly packages.

    -

    Select from 40+ add-ons across multiple categories:

    -

    Advanced Form Features
    -– Advanced Datepicker
    -– Conditional Logic
    -– File Uploads
    -– Layout & Styles
    -– Multi Step Forms
    -– Save Progress
    -– User Analytics
    -– User Management

    -

    Submissions Extended
    -– Excel Export
    -– Front End Posting
    -– PDF Form Submissions
    -– Scheduled Submissions Export

    -

    Accept Payments
    -– Authorize.net
    -– Elavon
    -– PayPal official partner
    -– Recurly
    -– Stripe

    -

    Email Marketing
    -– Active Campaign
    -– AWeber
    -– Campaign Monitor
    -– CleverReach
    -– Constant Contact
    -– ConvertKit
    -– EmailOctopus
    -– Emma
    -– Mailchimp
    -– MailPoet

    -

    CRMs
    -– Capsule
    -– CiviCRM
    -– HubSpot *official partners
    -– Insightly
    -– OnePageCRM
    -– PipelineDeals
    -– Salesforce
    -– Zoho CRM

    -

    Notifications & Workflow
    -– ClickSend SMS
    -– Help Scout
    -– Slack
    -– Trello
    -– Twilio SMS

    -

    Automation
    -– Webhooks
    -– Zapier official partners

    -

    The sky’s the limit on what you can build with add-on features, but here are some of the most popular forms we see in the wild:

    -
      -
    • Payment forms
    • -
    • Donation forms
    • -
    • Signup forms
    • -
    • User Registration form
    • -
    • Newsletter forms
    • -
    • CRM forms
    • -
    • User Registration form
    • -
    • Login forms
    • -
    • Upload forms
    • -
    • Google Sheets forms
    • -
    • Post Creation forms
    • -
    -

    Notes

    -

    We’ve been standing by our product and our users for over a decade, working to make your experience the best it can be. We’re one of the only form builders around that offers support for all users, whether you’ve made a purchase or not.

    -

    If you have any questions or suggestions, we’re always happy to hear from you. We have a dedicated support team with team members that span four continents standing by to help with technical questions every Monday to Friday. General feedback is always welcome too. It’s a big part of how we figure out what to do next, so chime in any time!

    -

    You’ll always have a direct line to us right here!

    -

    Additional Branding and Trademark Information

    -

    Ninja Forms® is a registered trademark of Saturday Drive INC. We are a WordPress forms or WP forms builder, not to be confused with the independent WPForms brand for WordPress. All official Ninja Forms add-ons and memberships can be found on our official website, ninjaforms.com.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Ninja Forms – The Contact Form Builder That Grows With You", "slug": "ninja-forms", "tags": {"forms": "forms", "lead-form": "lead form", "contact-form": "contact form", "form-builder": "form builder", "registration-form": "registration form"}, "added": "2011-12-21", "icons": {"1x": "https://ps.w.org/ninja-forms/assets/icon-128x128.png?rev=1649747", "2x": "https://ps.w.org/ninja-forms/assets/icon-256x256.png?rev=1649747"}, "author": "Kevin Stover", "rating": 88, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/ninja-forms/assets/banner-772x250.png?rev=2069024", "high": "https://ps.w.org/ninja-forms/assets/banner-1544x500.png?rev=2069024"}, "ratings": {"1": 148, "2": 41, "3": 39, "4": 67, "5": 1077}, "version": "3.13.0", "homepage": "http://ninjaforms.com/?utm_source=WordPress&utm_medium=readme", "requires": "6.6", "sections": {"faq": "\n
    \nDo I have to pay to see my form submissions?\n\n

    \n

    No, Ninja Forms does not paywall submissions. You can view, edit, export, and more from Ninja Forms > Submissions with the core, free plugin. No purchase necessary.

    \n

    \n
    \nWhat free form fields are included in the form builder?\n\n

    \n

      \n
    • Date/Time
    • \n
    • Single Checkbox
    • \n
    • Checkbox List
    • \n
    • Radio List
    • \n
    • Select List
    • \n
    • Multi-Select List
    • \n
    • Select Image List
    • \n
    • Single Line Text
    • \n
    • Paragraph Text
    • \n
    • Submit
    • \n
    • First Name
    • \n
    • Last Name
    • \n
    • Email Address
    • \n
    • Phone Number
    • \n
    • Address
    • \n
    • City
    • \n
    • US States
    • \n
    • Country
    • \n
    • Zip Code
    • \n
    • HTML
    • \n
    • Divider
    • \n
    • Repeatable Fieldset
    • \n
    • Confirm
    • \n
    • Hidden
    • \n
    • Number
    • \n
    • reCAPTCHA
    • \n
    • Anti Spam
    • \n
    • Star Rating
    • \n
    \n

    \n
    \nIs Ninja Forms GDPR compliant?\n\n

    \n

    Yes. All user submitted data is stored locally on your server only, unless you expressly configure the plugin to send it elsewhere, for example via an email action. We never see or collect any user submitted data, nor do we act as Data Controllers or Data Processors per GDPR Article 4 for any data submitted by users of the forms you create. Your forms can be configured to flag and/or not record Personally Identifiable Information (PII) on a per form basis. If you do collect PII using Ninja Forms, you can automate export or delete data requests.

    \n

    \n
    \nIs Ninja Forms HIPAA compliant?\n\n

    \n

    Ninja Forms can be and is used on sites that require HIPAA compliance, but overall compliance depends on factors outside of the control of any WordPress form builder.

    \n

    \n
    \nCan I send email with Ninja Forms?\n\n

    \n

    Yes! Any number of emails can be sent to any number of recipients anytime a contact form is submitted. Every email triggered by a contact form submission can be customized in the form builder, including the presentation of the form submission data. Attachments are supported (and can include file uploads from the form). These form emails can also be sent conditionally based on specific triggers, and can be set up to include a PDF copy of the form.

    \n

    \n
    \nWhat types of forms can I build with Ninja Forms?\n\n

    \n

      \n
    • Contact form
    • \n
    • Email form
    • \n
    • Calculation form
    • \n
    • Lead form
    • \n
    • Quiz form
    • \n
    • Mortgage or Payment Calculator forms
    • \n
    • Quote and Cost Calculator forms
    • \n
    • Health and Fitness Calculator forms
    • \n
    • Polling form
    • \n
    • Survey form
    • \n
    • Lead Magnet Download form
    • \n
    • Event Registration form
    • \n
    • Sales form
    • \n
    • Appointment form
    • \n
    • Booking form
    • \n
    • Entry form
    • \n
    • Order form
    • \n
    • Lesson Plan form
    • \n
    • Job Application form
    • \n
    • RSVP form
    • \n
    • Request form
    • \n
    • Feedback form
    • \n
    • Support form
    • \n
    • Export or Delete Data Request forms
    • \n
    • Payment forms
    • \n
    • Donation forms
    • \n
    • Signup form
    • \n
    • User Registration form
    • \n
    • Newsletter forms
    • \n
    • CRM forms
    • \n
    • Conditional lead form
    • \n
    • Scorable lead form
    • \n
    • User Registration form
    • \n
    • Paid registration form
    • \n
    • Login forms
    • \n
    • Upload forms
    • \n
    • Google Sheets forms
    • \n
    • Post Creation forms
      \n…and many more!
    • \n
    \n

    \n
    \nCan I connect Ninja Forms to my CRM or Email Marketing service?\n\n

    \n

    Almost certainly. The contact form builder integrates directly with over a dozen email marketing and CRM services including MailChimp, Constant Contact, ActiveCampaign, HubSpot, Salesforce, Insightly, Zoho, and many more.

    \n

    Ninja Forms also integrates with 1,000+ other popular services through our Zapier integration.

    \n

    \n
    \nCan I import / export forms and fields with Ninja Forms?\n\n

    \n

    Yes, both forms and custom fields (any field you customize and designate as a favorite field) can be exported and imported between sites.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin. HATE the constant nagging.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy killerdesigner on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Quit nagging us to rate you, to signup for newsletters, blah blah blah. We''ve got work to do.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    bettelei nach bewertungen ist furchtbar

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ukasner on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    mN IST DABEI GRUNDLEGENDE sachen auszuprobieren und man will direkt eine bewertug , und das plopt dauernd wieder auf.. absolut nervtötend

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Deekshith is a superstar

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy thinkmarshstudio on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I needed help with intergrating a subscribe MailChimp work and Deekshith was calm, quick and effective with his replies. All now working wonderfully. Thanks again :D

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Outstanding support experience!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mirabela1982 on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was experiencing some issues with a Ninja Form, which turned out to be a cache conflict caused by another plugin. Deekshith quickly identified the problem and resolved it in no time. Thanks to his help, my website is now running perfectly. I truly appreciate the fast and professional support!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bweinandt on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Received a response within 24 hours when an add-on wasn''t working properly. Resolved the issue on the first response.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy Setup

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy blix742 on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    easy setup and use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and reliable support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tsc64 on September 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The support team is always very helpful and willing to find solutions quickly and effectively. I am very satisfied :-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fransjansen on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Patient support team doing everything to souvenirs the issue

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tonzobonzo on September 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    fast and user friendly, great prompts.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    簡単に作ることができました☆

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nstream on September 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ウェブは苦手ですが、こんな私でも簡単に作ることができました♪

    \n
    \n
    \n", "changelog": "

    3.12.2 (October 6, 2025)

    \n

    Bug Fixes:
    \n– fix undefined $outgoing
    \n– accessibility fix to set autocomplete
    \n– fix checkbox field calculation, was showing 0 when checked

    \n

    3.12.1 (September 22, 2025)

    \n

    Bug Fixes:
    \n– Ensure nonce use in download and telemetry

    \n

    3.12.0 (September 8, 2025)

    \n

    Features:
    \n– Add hCaptcha field

    \n

    Bug Fixes:
    \n– Ensure File Upload link in submissions table is clickable

    \n

    3.11.1 (August 20, 2025)

    \n

    Bug Fixes:
    \n– Prevent object wakeup from unserialization

    \n

    3.11.0 (July 28 2025)

    \n

    Features:
    \n– Adds Cloudflare Turnstile CAPTCHA as a modern, privacy-friendly alternative to traditional CAPTCHAs.
    \n– Adds configurable theme (light/dark/auto) and size options for Turnstile field.
    \n– Improves accessibility with screen reader support for CAPTCHA challenges.

    \n

    Bug Fixes:
    \n– Fixes submission expiration failing on forms with 50+ fields processed in chunks.
    \n– Fixes Summernote editor dropdown menus not displaying properly in certain themes.
    \n– Fixes JavaScript errors in merge tags functionality with improved function binding.
    \n– Fixes forced marketing email sending for late-reported opt-ins.
    \n– Prevents Turnstile field from being used within repeatable fieldsets.

    \n

    Performance:
    \n– Replaces full Summernote library with lightweight Summernote Lite version.
    \n– Removes unnecessary Bootstrap dependencies reducing CSS by 4,616 lines.
    \n– Reduces total codebase by ~12,000 lines for improved page load times.

    \n

    Other:
    \n– Updates build system to Node.js 20 for better compatibility.
    \n– Improves CSS build process with proper source map generation.
    \n– Adds comprehensive E2E tests for RTE settings and Turnstile integration.
    \n– Updates test folder structure for better organization.

    \n

    3.10.4 (July 7 2025)

    \n

    Bug Fixes:
    \n– Fixes value issue with time_only date field.
    \n– Fixes issue with common value for date/time field in repeatable field sets.
    \n– Fixes incorrect value for single checkbox merge tags.

    \n

    3.10.3 (June 30 2025)

    \n

    Bug Fixes:
    \n– Fixes rounding error for number fields.
    \n– Resolves a hang on save in certain circumstances.
    \n– Removes an unused uinstall hook method.

    \n

    Misc:
    \n– Updates several npm dependencies.

    \n

    3.10.2.2 (June 24 2025)

    \n

    Security Fixes:
    \n– Prevent script tag injection into templates via block prefixes. Thanks to Asaf Mozes for responsibly reporting this security issue.

    \n

    Misc:
    \n– Concatenates the readme changelog to prevent going over the WP.org word limit.

    \n

    3.10.2.1 (June 19 2025)

    \n

    Bug Fixes:
    \n– Fixes an issue with HelpText causing a collision on save with Conditional Logic add-on.
    \n– Fixes an issue with HelpText causing a collision on save with Stripe add-on.
    \n– Fixes an incorrect icon.

    \n

    3.10.2 (June 18 2025)

    \n

    Bug Fixes:
    \n– Fixes an issue with the help text for repeater fields.
    \n– Fixes an issue with form processing being slow on forms with many fields.
    \n– Fixes an issue with translations on the date picker field.
    \n– Fixes an issue with saving repeater fields on duplicated forms.
    \n– Fixes an issue with date/time field in repeatable fieldsets.
    \n– Fixes an issue with repeatable field help text.

    \n

    Features:
    \n– Improved drawer styles with a refreshed look.

    \n

    3.10.1 (14 April 2025)

    \n

    Bug Fixes:
    \n– Prevent stored XSS in various fields

    \n

    3.10.0 (26 March 2025)

    \n

    Features
    \n– Add a Google Analytics 4 Action.

    \n

    Bug Fixes:
    \n– Fix an error related to using calculations in payment gateway actions.
    \n– Fix an error related to File Uploads merge tags.
    \n– Required errors should no longer trigger on removed repeater sets.

    \n

    3.9.2 (12 March 2025)

    \n

    Bug Fixes:
    \n– List fields can now be used for determining the payment total in payment collection actions.
    \n– Fixed PHP warnings when using PHP 8.
    \n– Fixed an issue with the Password confirm field.
    \n– Ensure that time field IDs are unique.
    \n– Fixed an issue with the opt-in email.

    \n

    3.9.1 (24 February 2025)

    \n

    Features:
    \n– Allows repeatable fieldsets to be editable in the Submissions page.

    \n

    Bug Fixes:
    \n– Numbers over 10 billion no longer cause validation errors.

    \n

    Other:
    \n– Add add-on communication status logs to the System Status page.
    \n– Add additional data points for telemetry.
    \n– Build file updates.

    \n

    3.9.0 (10 February 2025)

    \n

    Features:
    \n– New user onboarding
    \n– Add delete forms WP-CLI command

    \n

    Other:
    \n– JS library updates

    \n

    3.8.25 (27 January 2025)

    \n

    Bug Fixes:
    \n– ensure form id value is numeric in shortcodes; responsibly reported by Peter Thaleikis via Wordfence

    \n

    3.8.24 (21 January 2025)

    \n

    Bug Fixes:
    \n– Fixed an accessibility issue related to text contrast when using opinionated styles.
    \n– Fixed accessibility errors related to missing field descriptions.

    \n

    3.8.23 (16 December 2024)

    \n

    Bug Fixes:
    \n– Ensure only permitted form previews are available to a given user

    \n

    3.8.22 (10 December 2024)

    \n

    Bug Fixes:
    \n– Update timing for widget loading on page builders

    \n

    3.8.21 (09 December 2024)

    \n

    Bug Fixes:
    \n– Update timing to load translations after init

    \n

    3.8.20 (26 November 2024)

    \n

    Bug Fixes:
    \n– Sanitize calculations input

    \n

    3.8.19 (18 November 2024)

    \n

    Bug Fixes:
    \n– Remove legacy duplicate field cleanup from render loop
    \n– Convert HTML encoded characters on submissions page
    \n– Verify we are on an nf_sub post type before loading terms list

    \n

    Other:
    \n– Add behavioural telemetry data
    \n– Add diagnost information to system status
    \n– Update end-to-end test

    \n

    3.8.18 (23 October 2024)

    \n

    Bug Fixes:
    \n– Prevent script in Favorite Fields
    \n– Prevent script in calculation name
    \n– Update field HTML for improved accessibility

    \n

    3.8.17 (01 October 2024)

    \n

    Bug Fixes:
    \n– Ensure help text is mobile responsive for single checkbox, single line text, paragraph text
    \n– Prevent non-required blank email field failing validation
    \n– Replace hard-coded strings for translation

    \n

    3.8.16 (17 September 2024)

    \n

    Bug Fixes:
    \n– Ensure sanitation of email address for merge tag
    \n– Prevent maintenance mode interception

    \n

    3.8.15 (10 September 2024)

    \n

    Bug Fixes:
    \n– Ensure “From Address” email warning shows
    \n– Prevent JS error on datepicker inside fieldset repeater

    \n

    Other:
    \n– Add PHP compatibility tests
    \n– Add usage telemetry data

    \n

    3.8.14 (03 September 2024)

    \n

    Bug Fixes:
    \n– Ensure submissions page form filter finds form titles
    \n– Provide PHP 7.4 support for jsonSerialize method call
    \n– Ensure hCaptcha field functions when safe-listed

    \n

    Other:
    \n– JS library updates

    \n

    3.8.13 (26 August 2024)

    \n

    Bug Fixes:
    \n– Prevent mouse scroll wheel from updating currency masked fields – Issues
    \n– Resolved an error where required field validation was not always firing properly on masked fields
    \n– Correct list value tooltip styling error for Safari and Firefox
    \n– A repeatable fieldset that has triggered a required error maintains the error when the repeatable fieldset is deleted
    \n– First Repeated Fieldset’s data is not captured when deleting one of the sets
    \n– Ensure form displays in WP Bakery without needing to refresh page

    \n

    Other:
    \n– Correct deprecation warnings in SCSS files
    \n– Library updates: The updates affect the structure of the components – mounting and data flow – and the blocks and styling
    \n– Set security resolution for Axios as a dependency of our dependencies
    \n– Reorganize cypress tests
    \n– Add unit tests
    \n– Add initial usage data to telemetry
    \n– High impact accessibility factor corrections

    \n

    3.8.12 (13 August 2024)

    \n

    Bug Fixes:
    \n– Validate label settings on change event

    \n

    3.8.11 (07 August 2024)

    \n

    Bug Fixes:
    \n– Prevent unused key values on Survey Promo link

    \n

    3.8.10 (05 August 2024)

    \n

    Bug Fixes:
    \n– Submissions Table block not displayed on published page on some themes
    \n– Phone field not disabled when expected
    \n– calc value option of list fields not set with help text
    \n– Submission page tooltip icon not displayed on environment not using conventional plugins folder path

    \n

    Other:
    \n– @wordpress dependencies updates

    \n

    3.8.9 (29 July 2024)

    \n

    Bug Fixes:
    \n– Submissions Block not showing all submissions data.
    \n– Fix deleted repeater field missing required data halting submission
    \n– Add “Administration” section for all fields
    \n– Add missing check_admin_referrer parameter
    \n– Sort by Shortcode on forms page as numerical
    \n– Accessibility: update field description and screen readers
    \n– Enable hidden fields in the unique field
    \n– Fix display Form iFrame in Elementor editor

    \n

    Other:
    \n– Refactor telemetry dispatch to add unit tests

    \n

    3.8.8 (22 July 2024)

    \n

    Bug Fixes:
    \n– Ensure submissions page and Append Ninja Form block are visible on WP 6.6

    \n

    Other:
    \n– Update readme ‘tested up to’ and ‘requires at least’

    \n

    3.8.7 (15 July 2024)

    \n

    Bug Fixes:
    \n– prevent licensing CSRF

    \n

    3.8.6 (8 July 2024)

    \n

    Bug Fixes:
    \n– prevent deprecated false to array notice in preview
    \n– prevent undefined array key ‘plugin’ warning in class extension updater
    \n– prevent invalid date error when setting default date format to “j F Y” on non-English languages

    \n

    Other:
    \n– automated test for version number
    \n– update wordpress library packages
    \n– add documentation links to settings in the form builder

    \n

    3.8.5 (13 June 2024)

    \n

    Bug Fixes:
    \n– Protect preview query parameters

    \n

    3.8.4 (28 May 2024)

    \n

    Bug Fixes:
    \n– Ensure first name field populates only first, not full, name
    \n– Enable personally identifiable setting outside of dev mode
    \n– Add merge tags ‘other’ for random, year, month, day

    \n

    Other:
    \n– Set version resolutions for certain packages
    \n– Improve discoverability of available actions
    \n– Update marketing feed

    \n

    3.8.3 (1 May 2024)

    \n

    Bug Fixes:
    \n– Ensure fieldset repeaters function on index values ending in 0 (10, 20, etc)

    \n

    Other:
    \n– Update tests to run on 6.5.2

    \n

    3.8.2 (29 March 2024)

    \n

    Bug Fixes:
    \n– Allow default span tags in form labels

    \n

    3.8.1 (27 March 2024)

    \n

    Bug Fixes:
    \n– Ensure submission exports can’t be called from any unintended pages
    \n– Prevent injected scripts into submit button and advanced labels
    \n– Prevent XSS on image lists

    \n

    Other:
    \n– Update add-on images

    \n

    3.8.0 (20 February 2024)

    \n

    Features:
    \n– Add ‘referer URL’ merge tag

    \n

    Bug Fixes:
    \n– Prevent display error when date format is not set
    \n– Ensure current date stored when default is not modified
    \n– Ensure translation of date strings

    \n

    Other:
    \n– Add user help text and images
    \n– Add automated tests

    \n", "description": "

    Forms that grow with your business

    \n

    As one of WordPress’ oldest form builders, we’re proud to serve users from around the world, from all walks of life, and from different stages of online growth. From the small businesses and local nonprofits that make up the core Ninja Forms user base to universities, hospitals, and even Fortune 500 companies, we’ll scale with you from startup to wherever you’re aiming for.

    \n

    We’re committed to offering as many free, open source tools as we can get away with to back you up in the extremely price-conscious early days. As you grow, pick and choose only the premium features you need as you need them. We’ll grow with you from there for as far as you want to take us.

    \n

    We’re also committed to respecting your privacy and time. No unsolicited emails or aggressive marketing. No paywalling basic features or scraping private data. We offer a fully staffed team of support experts and a comprehensive library of plugin documentation for all users, free and paid, to help keep you collecting the submissions that move your business forward.

    \n

    We look forward to seeing where you’ll take us!

    \n

    All the basics without the paywalls

    \n

    When you’re starting out, even little expenses add up quickly. That’s why Ninja Forms core will always be free and open source. It’s why we try to offer as much in core as we can to cover your basic needs at no cost. Here’s a peek at some of what core has to offer.

    \n

    Form Building Features
    \n– 24+ FREE drag-and-drop form fields
    \n– Customize fields with default values, specialty text, and much more
    \n– Favorite and reuse any customized field
    \n– Calculations: assign values to fields and calculate totals
    \n– Merge tag system for pre-populating fields and passing field data between forms
    \n– Configurable per-field submission storage for easy GDPR compliance
    \n– Email notifications on submission (as many as you like, free!)
    \n– Customizable success messages (supports links and downloads!)
    \n– Redirect to new page after submission
    \n– Customize callbacks to WP action hooks on submit
    \n– Spam Protection: full integration with Google reCAPTCHA & Akismet
    \n– Configurable form display settings
    \n– Form restriction settings
    \n– Unique field validation
    \n– Unlimited forms & submissions
    \n– Form Templates
    \n– Form Import / Export
    \n– Shareable forms (share the form via link without it being attached to a page)
    \n– No aggressive marketing, pushy review asks, constant popups, or unsolicited emails
    \n– Responsive and mobile friendly
    \n– SEO friendly

    \n

    Submission Management Features
    \n– Unlimited FREE submissions
    \n– Configurable submissions display
    \n– Search and filter by field
    \n– Search and filter by submitted value
    \n– Search and filter by submission date
    \n– Edit submitted values
    \n– Refire any email notification from any submission
    \n– Export to CSV
    \n– Bulk submissions export
    \n– Automated WordPress GDPR integration for export & delete data requests
    \n– Mark fields as PII and selectively not store specific data
    \n– All submissions stored locally on YOUR server only unless you specify otherwise
    \n– We never see or collect your field or submission data

    \n

    Dozens of buildable form types
    \n– Contact form
    \n– Email form
    \n– Calculation form
    \n– Lead form
    \n– Quiz form
    \n– Mortgage or Payment Calculator forms
    \n– Quote and Cost Calculator forms
    \n– Health and Fitness Calculator forms
    \n– Polling form
    \n– Survey form
    \n– Lead Magnet Download form
    \n– Event Registration form
    \n– Sales form
    \n– Appointment form
    \n– Booking form
    \n– Entry form
    \n– Order form
    \n– Lesson Plan form
    \n– Job Application form
    \n– RSVP form
    \n– Request form
    \n– Feedback form
    \n– Support form
    \n– GDPR Export or Delete Data Request forms
    \n…and many more!

    \n

    You get more than just a plugin
    \n– Fully documented
    \n– Regular updates
    \n– FREE technical support
    \n– Privacy and security minded
    \n– Accessibility focused
    \n– Translated into 24+ languages by the WordPress Polyglots team
    \n– Long term partners of WPML for even more translations!
    \n– Ecosystem aware: we know it’s not just you and Ninja Forms. We do our best to communicate and play nice with others.

    \n

    Pick and choose just what you need as you need it

    \n

    As you start to grow, so does what you need out of your forms. But there’s no need to dive into the deep end right away and spend more than is practical. All premium features are contained in add-ons to the core form builder and can be purchased independently. When you find yourself wanting just one or two things, you can grab just what you need without paying for extras.

    \n

    When you’re ready for more, our membership plans bundle popular features together in budget friendly packages.

    \n

    Select from 40+ add-ons across multiple categories:

    \n

    Advanced Form Features
    \n– Advanced Datepicker
    \n– Conditional Logic
    \n– File Uploads
    \n– Layout & Styles
    \n– Multi Step Forms
    \n– Save Progress
    \n– User Analytics
    \n– User Management

    \n

    Submissions Extended
    \n– Excel Export
    \n– Front End Posting
    \n– PDF Form Submissions
    \n– Scheduled Submissions Export

    \n

    Accept Payments
    \n– Authorize.net
    \n– Elavon
    \n– PayPal official partner
    \n– Recurly
    \n– Stripe

    \n

    Email Marketing
    \n– Active Campaign
    \n– AWeber
    \n– Campaign Monitor
    \n– CleverReach
    \n– Constant Contact
    \n– ConvertKit
    \n– EmailOctopus
    \n– Emma
    \n– Mailchimp
    \n– MailPoet

    \n

    CRMs
    \n– Capsule
    \n– CiviCRM
    \n– HubSpot *official partners
    \n– Insightly
    \n– OnePageCRM
    \n– PipelineDeals
    \n– Salesforce
    \n– Zoho CRM

    \n

    Notifications & Workflow
    \n– ClickSend SMS
    \n– Help Scout
    \n– Slack
    \n– Trello
    \n– Twilio SMS

    \n

    Automation
    \n– Webhooks
    \n– Zapier official partners

    \n

    The sky’s the limit on what you can build with add-on features, but here are some of the most popular forms we see in the wild:

    \n
      \n
    • Payment forms
    • \n
    • Donation forms
    • \n
    • Signup forms
    • \n
    • User Registration form
    • \n
    • Newsletter forms
    • \n
    • CRM forms
    • \n
    • User Registration form
    • \n
    • Login forms
    • \n
    • Upload forms
    • \n
    • Google Sheets forms
    • \n
    • Post Creation forms
    • \n
    \n

    Notes

    \n

    We’ve been standing by our product and our users for over a decade, working to make your experience the best it can be. We’re one of the only form builders around that offers support for all users, whether you’ve made a purchase or not.

    \n

    If you have any questions or suggestions, we’re always happy to hear from you. We have a dedicated support team with team members that span four continents standing by to help with technical questions every Monday to Friday. General feedback is always welcome too. It’s a big part of how we figure out what to do next, so chime in any time!

    \n

    You’ll always have a direct line to us right here!

    \n

    Additional Branding and Trademark Information

    \n

    Ninja Forms® is a registered trademark of Saturday Drive INC. We are a WordPress forms or WP forms builder, not to be confused with the independent WPForms brand for WordPress. All official Ninja Forms add-ons and memberships can be found on our official website, ninjaforms.com.

    \n", "screenshots": "
    1. \"The

      The most intuitive and beautiful form building experience

    2. \"Field

      Field Options

    3. \"Advanced

      Advanced Settings

    4. \"Beautiful

      Beautiful Forms Every Time!

    ", "installation": "

    This section describes how to install the plugin and get it working.
    \n1. Upload the ninja-forms plugin folder to your /wp-content/plugins/ directory
    \n2. Activate the plugin through the ‘Plugins’ menu in WordPress
    \n3. Visit the ‘Ninja Forms’ menu item in your admin sidebar

    \n

    Further Installation Documentation

    \n"}, "versions": {"3.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.0.zip", "3.7.3": "https://downloads.wordpress.org/plugin/ninja-forms.3.7.3.zip", "3.8.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.5.zip", "3.8.6": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.6.zip", "3.8.7": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.8.zip", "3.8.9": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.9.zip", "3.9.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/ninja-forms.zip", "2.9.58": "https://downloads.wordpress.org/plugin/ninja-forms.2.9.58.zip", "3.1.10": "https://downloads.wordpress.org/plugin/ninja-forms.3.1.10.zip", "3.10.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.0.zip", "3.10.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.1.zip", "3.10.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.2.zip", "3.10.3": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.3.zip", "3.10.4": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.4.zip", "3.11.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.11.0.zip", "3.11.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.11.1.zip", "3.12.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.12.0.zip", "3.12.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.12.1.zip", "3.12.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.12.2.zip", "3.13.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.13.0.zip", "3.2.28": "https://downloads.wordpress.org/plugin/ninja-forms.3.2.28.zip", "3.6.34": "https://downloads.wordpress.org/plugin/ninja-forms.3.6.34.zip", "3.8.10": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.10.zip", "3.8.11": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.11.zip", "3.8.12": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.12.zip", "3.8.13": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.13.zip", "3.8.14": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.14.zip", "3.8.15": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.15.zip", "3.8.16": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.16.zip", "3.8.17": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.17.zip", "3.8.18": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.18.zip", "3.8.19": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.19.zip", "3.8.20": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.20.zip", "3.8.21": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.21.zip", "3.8.22": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.22.zip", "3.8.23": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.23.zip", "3.8.24": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.24.zip", "3.8.25": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.25.zip", "3.5.8.4": "https://downloads.wordpress.org/plugin/ninja-forms.3.5.8.4.zip", "3.0.34.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.0.34.2.zip", "3.10.2.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.2.1.zip", "3.10.2.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.2.2.zip", "3.3.21.4": "https://downloads.wordpress.org/plugin/ninja-forms.3.3.21.4.zip", "3.4.34.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.4.34.2.zip"}, "downloaded": 56719273, "description": "

    Forms that grow with your business

    \n

    As one of WordPress’ oldest form builders, we’re proud to serve users from around the world, from all walks of life, and from different stages of online growth. From the small businesses and local nonprofits that make up the core Ninja Forms user base to universities, hospitals, and even Fortune 500 companies, we’ll scale with you from startup to wherever you’re aiming for.

    \n

    We’re committed to offering as many free, open source tools as we can get away with to back you up in the extremely price-conscious early days. As you grow, pick and choose only the premium features you need as you need them. We’ll grow with you from there for as far as you want to take us.

    \n

    We’re also committed to respecting your privacy and time. No unsolicited emails or aggressive marketing. No paywalling basic features or scraping private data. We offer a fully staffed team of support experts and a comprehensive library of plugin documentation for all users, free and paid, to help keep you collecting the submissions that move your business forward.

    \n

    We look forward to seeing where you’ll take us!

    \n

    All the basics without the paywalls

    \n

    When you’re starting out, even little expenses add up quickly. That’s why Ninja Forms core will always be free and open source. It’s why we try to offer as much in core as we can to cover your basic needs at no cost. Here’s a peek at some of what core has to offer.

    \n

    Form Building Features
    \n– 24+ FREE drag-and-drop form fields
    \n– Customize fields with default values, specialty text, and much more
    \n– Favorite and reuse any customized field
    \n– Calculations: assign values to fields and calculate totals
    \n– Merge tag system for pre-populating fields and passing field data between forms
    \n– Configurable per-field submission storage for easy GDPR compliance
    \n– Email notifications on submission (as many as you like, free!)
    \n– Customizable success messages (supports links and downloads!)
    \n– Redirect to new page after submission
    \n– Customize callbacks to WP action hooks on submit
    \n– Spam Protection: full integration with Google reCAPTCHA & Akismet
    \n– Configurable form display settings
    \n– Form restriction settings
    \n– Unique field validation
    \n– Unlimited forms & submissions
    \n– Form Templates
    \n– Form Import / Export
    \n– Shareable forms (share the form via link without it being attached to a page)
    \n– No aggressive marketing, pushy review asks, constant popups, or unsolicited emails
    \n– Responsive and mobile friendly
    \n– SEO friendly

    \n

    Submission Management Features
    \n– Unlimited FREE submissions
    \n– Configurable submissions display
    \n– Search and filter by field
    \n– Search and filter by submitted value
    \n– Search and filter by submission date
    \n– Edit submitted values
    \n– Refire any email notification from any submission
    \n– Export to CSV
    \n– Bulk submissions export
    \n– Automated WordPress GDPR integration for export & delete data requests
    \n– Mark fields as PII and selectively not store specific data
    \n– All submissions stored locally on YOUR server only unless you specify otherwise
    \n– We never see or collect your field or submission data

    \n

    Dozens of buildable form types
    \n– Contact form
    \n– Email form
    \n– Calculation form
    \n– Lead form
    \n– Quiz form
    \n– Mortgage or Payment Calculator forms
    \n– Quote and Cost Calculator forms
    \n– Health and Fitness Calculator forms
    \n– Polling form
    \n– Survey form
    \n– Lead Magnet Download form
    \n– Event Registration form
    \n– Sales form
    \n– Appointment form
    \n– Booking form
    \n– Entry form
    \n– Order form
    \n– Lesson Plan form
    \n– Job Application form
    \n– RSVP form
    \n– Request form
    \n– Feedback form
    \n– Support form
    \n– GDPR Export or Delete Data Request forms
    \n…and many more!

    \n

    You get more than just a plugin
    \n– Fully documented
    \n– Regular updates
    \n– FREE technical support
    \n– Privacy and security minded
    \n– Accessibility focused
    \n– Translated into 24+ languages by the WordPress Polyglots team
    \n– Long term partners of WPML for even more translations!
    \n– Ecosystem aware: we know it’s not just you and Ninja Forms. We do our best to communicate and play nice with others.

    \n

    Pick and choose just what you need as you need it

    \n

    As you start to grow, so does what you need out of your forms. But there’s no need to dive into the deep end right away and spend more than is practical. All premium features are contained in add-ons to the core form builder and can be purchased independently. When you find yourself wanting just one or two things, you can grab just what you need without paying for extras.

    \n

    When you’re ready for more, our membership plans bundle popular features together in budget friendly packages.

    \n

    Select from 40+ add-ons across multiple categories:

    \n

    Advanced Form Features
    \n– Advanced Datepicker
    \n– Conditional Logic
    \n– File Uploads
    \n– Layout & Styles
    \n– Multi Step Forms
    \n– Save Progress
    \n– User Analytics
    \n– User Management

    \n

    Submissions Extended
    \n– Excel Export
    \n– Front End Posting
    \n– PDF Form Submissions
    \n– Scheduled Submissions Export

    \n

    Accept Payments
    \n– Authorize.net
    \n– Elavon
    \n– PayPal official partner
    \n– Recurly
    \n– Stripe

    \n

    Email Marketing
    \n– Active Campaign
    \n– AWeber
    \n– Campaign Monitor
    \n– CleverReach
    \n– Constant Contact
    \n– ConvertKit
    \n– EmailOctopus
    \n– Emma
    \n– Mailchimp
    \n– MailPoet

    \n

    CRMs
    \n– Capsule
    \n– CiviCRM
    \n– HubSpot *official partners
    \n– Insightly
    \n– OnePageCRM
    \n– PipelineDeals
    \n– Salesforce
    \n– Zoho CRM

    \n

    Notifications & Workflow
    \n– ClickSend SMS
    \n– Help Scout
    \n– Slack
    \n– Trello
    \n– Twilio SMS

    \n

    Automation
    \n– Webhooks
    \n– Zapier official partners

    \n

    The sky’s the limit on what you can build with add-on features, but here are some of the most popular forms we see in the wild:

    \n
      \n
    • Payment forms
    • \n
    • Donation forms
    • \n
    • Signup forms
    • \n
    • User Registration form
    • \n
    • Newsletter forms
    • \n
    • CRM forms
    • \n
    • User Registration form
    • \n
    • Login forms
    • \n
    • Upload forms
    • \n
    • Google Sheets forms
    • \n
    • Post Creation forms
    • \n
    \n

    Notes

    \n

    We’ve been standing by our product and our users for over a decade, working to make your experience the best it can be. We’re one of the only form builders around that offers support for all users, whether you’ve made a purchase or not.

    \n

    If you have any questions or suggestions, we’re always happy to hear from you. We have a dedicated support team with team members that span four continents standing by to help with technical questions every Monday to Friday. General feedback is always welcome too. It’s a big part of how we figure out what to do next, so chime in any time!

    \n

    You’ll always have a direct line to us right here!

    \n

    Additional Branding and Trademark Information

    \n

    Ninja Forms® is a registered trademark of Saturday Drive INC. We are a WordPress forms or WP forms builder, not to be confused with the independent WPForms brand for WordPress. All official Ninja Forms add-ons and memberships can be found on our official website, ninjaforms.com.

    \n", "donate_link": "", "num_ratings": 1372, "screenshots": {"1": {"src": "https://ps.w.org/ninja-forms/assets/screenshot-1.png?rev=1495254", "caption": "The most intuitive and beautiful form building experience"}, "2": {"src": "https://ps.w.org/ninja-forms/assets/screenshot-2.png?rev=1495254", "caption": "Field Options"}, "4": {"src": "https://ps.w.org/ninja-forms/assets/screenshot-4.png?rev=1495254", "caption": "Advanced Settings"}, "5": {"src": "https://ps.w.org/ninja-forms/assets/screenshot-5.png?rev=1495254", "caption": "Beautiful Forms Every Time!"}}, "support_url": "https://wordpress.org/support/plugin/ninja-forms/", "contributors": {"kstover": {"avatar": "https://secure.gravatar.com/avatar/43e29d085557263eeeefcf36af08404a9349c9c15099d6bf1fe9d24af3c5ca41?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kstover/", "display_name": "Kevin Stover"}, "wpnzach": {"avatar": "https://secure.gravatar.com/avatar/46c2c456d146d2234c97871633d94cc09de911578970654dc7818259127a11fd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpnzach/", "display_name": "Zach Skaggs"}, "jameslaws": {"avatar": "https://secure.gravatar.com/avatar/8a6179856336190834c520a99b587b2fd8cb5d72e4d60de8fd731091aff44160?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jameslaws/", "display_name": "James Laws"}, "jmcelhaney": {"avatar": "https://secure.gravatar.com/avatar/29f008315497ae833dd7e1ecf72059eb5089aefb360f63309265105c80419742?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jmcelhaney/", "display_name": "Justin McElhaney"}, "klhall1987": {"avatar": "https://secure.gravatar.com/avatar/58c7814ad708f3761458fded5efec8ab045ba6c9867f582d8e6d45694687c70a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/klhall1987/", "display_name": "klhall1987"}, "kbjohnson90": {"avatar": "https://secure.gravatar.com/avatar/d4da4f08d2060ef4c0601b5cdf6121c3b35e6436d03176622cce983472f7c7a7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kbjohnson90/", "display_name": "Kyle B. Johnson"}, "krmoorhouse": {"avatar": "https://secure.gravatar.com/avatar/d923fca564b97486d12e5394daeb6076c0fdf5ef11990ec6e0a47298b6f37465?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/krmoorhouse/", "display_name": "krmoorhouse"}, "mrpritchett": {"avatar": "https://secure.gravatar.com/avatar/e37877403959381493050f163cade646d072c84beec605da6dcace13cb05f7b0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mrpritchett/", "display_name": "Matt Pritchett"}, "wpninjasllc": {"avatar": "https://secure.gravatar.com/avatar/0c5832514a5fe21869e5677c5cf2eb791abf4a9eace0ff49e4001ffc96d08e24?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpninjasllc/", "display_name": "wpninjasllc"}, "ericwindhamsd": {"avatar": "https://secure.gravatar.com/avatar/a73cf408a9d4be423499495e0f7b4f428c9a3797d0effb43688239215bcb3d4b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ericwindhamsd/", "display_name": "ericwindhamsd"}}, "last_updated": "2025-10-28 12:13pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/ninja-forms.3.13.0.zip", "author_profile": "https://profiles.wordpress.org/kstover/", "business_model": false, "repository_url": "", "upgrade_notice": {"3.13.0 (October 27, 2025)": "

    Features:\n- NEW Signature field

    \n\n

    Bug Fixes:\n- Ensure opt-in popup can be dismissed\n- Allow only ExtraDataHandlers into Submission metabox\n- Require form id as integer\n- Fix an accessibility issue with labels for HTML and Divider fields.

    "}, "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-f82a-7052-aa9f-c071d09a307a", "name": "Ninja Forms – The Contact Form Builder That Grows With You", "slug": "ninja-forms", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761653580, "version": "3.13.0"}, "support_threads": 9, "requires_plugins": [], "short_description": "The 100% beginner friendly WordPress form builder. Drag & drop form fields to build beautiful, professional contact forms in minutes.", "author_block_count": 0, "author_block_rating": 88, "commercial_support_url": "", "support_threads_resolved": 9}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1cde-7009-83c5-80f1c4ffe578', 'did:web:api.aspiredev.org:packages:wp-plugin:one-click-demo-import', 'one-click-demo-import', 'One Click Demo Import', '

    The best feature of this plugin is, that theme authors can define import files in their themes and so all you (the user of the theme) have to do is click on the “Import Demo Data” button.

    -
    -

    Are you a theme author?

    -

    Setup One Click Demo Imports for your theme and your users will thank you for it!

    -

    Follow this easy guide on how to setup this plugin for your themes!

    -

    Are you a theme user?

    -

    Contact the author of your theme and let them know about this plugin. Theme authors can make any theme compatible with this plugin in 15 minutes and make it much more user-friendly.

    -

    Where can I find the theme author contact?

    -
    -

    Please take a look at our plugin documentation for more information on how to import your demo content.

    -

    This plugin is using the modified version of the improved WP import 2.0 that is still in development and can be found here: https://github.com/humanmade/WordPress-Importer.

    -

    NOTE: There is no setting to “connect” authors from the demo import file to the existing users in your WP site (like there is in the original WP Importer plugin). All demo content will be imported under the current user.

    -

    Do you want to contribute?

    -

    Please refer to our official GitHub repository.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "One Click Demo Import", "slug": "one-click-demo-import", "tags": {"import": "import", "content": "content", "widgets": "widgets", "settings": "settings", "theme-options": "theme options"}, "added": "2016-03-25", "icons": {"1x": "https://ps.w.org/one-click-demo-import/assets/icon-128x128.png?rev=2506685", "2x": "https://ps.w.org/one-click-demo-import/assets/icon-256x256.png?rev=2506685"}, "author": "Syed Balkhi", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/one-click-demo-import/assets/banner-772x250.png?rev=2506685", "high": "https://ps.w.org/one-click-demo-import/assets/banner-1544x500.png?rev=2506685"}, "ratings": {"1": 12, "2": 0, "3": 1, "4": 2, "5": 64}, "version": "3.4.0", "homepage": "https://wordpress.org/plugins/one-click-demo-import/", "requires": "5.5", "sections": {"faq": "\n
    \nI have activated the plugin. Where is the “Import Demo Data” page?\n\n

    \n

    You will find the import page in wp-admin -> Appearance -> Import Demo Data.

    \n

    \n
    \nWhere are the demo import files and the log files saved?\n\n

    \n

    The files used in the demo import will be saved to the default WordPress uploads directory. An example of that directory would be: ../wp-content/uploads/2023/03/.

    \n

    The log file will also be registered in the wp-admin -> Media section, so you can access it easily.

    \n

    \n
    \nHow to predefine demo imports?\n\n

    \n

    This question is for theme authors. To predefine demo imports, you just have to add the following code structure, with your own values to your theme (using the ocdi/import_files filter):

    \n
    function ocdi_import_files() {\n    return array(\n        array(\n            ''import_file_name''           => ''Demo Import 1'',\n            ''categories''                 => array( ''Category 1'', ''Category 2'' ),\n            ''import_file_url''            => ''http://www.your_domain.com/ocdi/demo-content.xml'',\n            ''import_widget_file_url''     => ''http://www.your_domain.com/ocdi/widgets.json'',\n            ''import_customizer_file_url'' => ''http://www.your_domain.com/ocdi/customizer.dat'',\n            ''import_redux''               => array(\n                array(\n                    ''file_url''    => ''http://www.your_domain.com/ocdi/redux.json'',\n                    ''option_name'' => ''redux_option_name'',\n                ),\n            ),\n            ''import_preview_image_url''   => ''http://www.your_domain.com/ocdi/preview_import_image1.jpg'',\n            ''import_notice''              => __( ''After you import this demo, you will have to setup the slider separately.'', ''your-textdomain'' ),\n            ''preview_url''                => ''http://www.your_domain.com/my-demo-1'',\n        ),\n        array(\n            ''import_file_name''           => ''Demo Import 2'',\n            ''categories''                 => array( ''New category'', ''Old category'' ),\n            ''import_file_url''            => ''http://www.your_domain.com/ocdi/demo-content2.xml'',\n            ''import_widget_file_url''     => ''http://www.your_domain.com/ocdi/widgets2.json'',\n            ''import_customizer_file_url'' => ''http://www.your_domain.com/ocdi/customizer2.dat'',\n            ''import_redux''               => array(\n                array(\n                    ''file_url''    => ''http://www.your_domain.com/ocdi/redux.json'',\n                    ''option_name'' => ''redux_option_name'',\n                ),\n                array(\n                    ''file_url''    => ''http://www.your_domain.com/ocdi/redux2.json'',\n                    ''option_name'' => ''redux_option_name_2'',\n                ),\n            ),\n            ''import_preview_image_url''   => ''http://www.your_domain.com/ocdi/preview_import_image2.jpg'',\n            ''import_notice''              => __( ''A special note for this import.'', ''your-textdomain'' ),\n            ''preview_url''                => ''http://www.your_domain.com/my-demo-2'',\n        ),\n    );\n}\nadd_filter( ''ocdi/import_files'', ''ocdi_import_files'' );\n
    \n

    You can set content import, widgets, customizer and Redux framework import files. You can also define a preview image, which will be used only when multiple demo imports are defined, so that the user will see the difference between imports. Categories can be assigned to each demo import, so that they can be filtered easily. The preview URL will display the “Preview” button in the predefined demo item, which will open this URL in a new tab and user can view how the demo site looks like.

    \n

    \n
    \nHow to automatically assign “Front page”, “Posts page” and menu locations after the importer is done?\n\n

    \n

    You can do that, with the ocdi/after_import action hook. The code would look something like this:

    \n
    function ocdi_after_import_setup() {\n    // Assign menus to their locations.\n    $main_menu = get_term_by( ''name'', ''Main Menu'', ''nav_menu'' );\n\n    set_theme_mod( ''nav_menu_locations'', array(\n            ''main-menu'' => $main_menu->term_id, // replace ''main-menu'' here with the menu location identifier from register_nav_menu() function\n        )\n    );\n\n    // Assign front page and posts page (blog page).\n    $front_page_id = get_page_by_title( ''Home'' );\n    $blog_page_id  = get_page_by_title( ''Blog'' );\n\n    update_option( ''show_on_front'', ''page'' );\n    update_option( ''page_on_front'', $front_page_id->ID );\n    update_option( ''page_for_posts'', $blog_page_id->ID );\n\n}\nadd_action( ''ocdi/after_import'', ''ocdi_after_import_setup'' );\n
    \n

    \n
    \nWhat about using local import files (from theme folder)?\n\n

    \n

    You have to use the same filter as in above example, but with a slightly different array keys: local_*. The values have to be absolute paths (not URLs) to your import files. To use local import files, that reside in your theme folder, please use the below code. Note: make sure your import files are readable!

    \n
    function ocdi_import_files() {\n    return array(\n        array(\n            ''import_file_name''             => ''Demo Import 1'',\n            ''categories''                   => array( ''Category 1'', ''Category 2'' ),\n            ''local_import_file''            => trailingslashit( get_template_directory() ) . ''ocdi/demo-content.xml'',\n            ''local_import_widget_file''     => trailingslashit( get_template_directory() ) . ''ocdi/widgets.json'',\n            ''local_import_customizer_file'' => trailingslashit( get_template_directory() ) . ''ocdi/customizer.dat'',\n            ''local_import_redux''           => array(\n                array(\n                    ''file_path''   => trailingslashit( get_template_directory() ) . ''ocdi/redux.json'',\n                    ''option_name'' => ''redux_option_name'',\n                ),\n            ),\n            ''import_preview_image_url''     => ''http://www.your_domain.com/ocdi/preview_import_image1.jpg'',\n            ''import_notice''                => __( ''After you import this demo, you will have to setup the slider separately.'', ''your-textdomain'' ),\n            ''preview_url''                  => ''http://www.your_domain.com/my-demo-1'',\n        ),\n        array(\n            ''import_file_name''             => ''Demo Import 2'',\n            ''categories''                   => array( ''New category'', ''Old category'' ),\n            ''local_import_file''            => trailingslashit( get_template_directory() ) . ''ocdi/demo-content2.xml'',\n            ''local_import_widget_file''     => trailingslashit( get_template_directory() ) . ''ocdi/widgets2.json'',\n            ''local_import_customizer_file'' => trailingslashit( get_template_directory() ) . ''ocdi/customizer2.dat'',\n            ''local_import_redux''           => array(\n                array(\n                    ''file_path''   => trailingslashit( get_template_directory() ) . ''ocdi/redux.json'',\n                    ''option_name'' => ''redux_option_name'',\n                ),\n                array(\n                    ''file_path''   => trailingslashit( get_template_directory() ) . ''ocdi/redux2.json'',\n                    ''option_name'' => ''redux_option_name_2'',\n                ),\n            ),\n            ''import_preview_image_url''     => ''http://www.your_domain.com/ocdi/preview_import_image2.jpg'',\n            ''import_notice''                => __( ''A special note for this import.'', ''your-textdomain'' ),\n            ''preview_url''                  => ''http://www.your_domain.com/my-demo-2'',\n        ),\n    );\n}\nadd_filter( ''ocdi/import_files'', ''ocdi_import_files'' );\n
    \n

    \n
    \nHow to handle different “after import setups” depending on which predefined import was selected?\n\n

    \n

    This question might be asked by a theme author wanting to implement different after import setups for multiple predefined demo imports. Lets say we have predefined two demo imports with the following names: ‘Demo Import 1’ and ‘Demo Import 2’, the code for after import setup would be (using the ocdi/after_import filter):

    \n
    function ocdi_after_import( $selected_import ) {\n    echo \"This will be displayed on all after imports!\";\n\n    if ( ''Demo Import 1'' === $selected_import[''import_file_name''] ) {\n        echo \"This will be displayed only on after import if user selects Demo Import 1\";\n\n        // Set logo in customizer\n        set_theme_mod( ''logo_img'', get_template_directory_uri() . ''/assets/images/logo1.png'' );\n    }\n    elseif ( ''Demo Import 2'' === $selected_import[''import_file_name''] ) {\n        echo \"This will be displayed only on after import if user selects Demo Import 2\";\n\n        // Set logo in customizer\n        set_theme_mod( ''logo_img'', get_template_directory_uri() . ''/assets/images/logo2.png'' );\n    }\n}\nadd_action( ''ocdi/after_import'', ''ocdi_after_import'' );\n
    \n

    \n
    \nCan I add some code before the widgets get imported?\n\n

    \n

    Of course you can, use the ocdi/before_widgets_import action. You can also target different predefined demo imports like in the example above. Here is a simple example code of the ocdi/before_widgets_import action:

    \n
    function ocdi_before_widgets_import( $selected_import ) {\n    echo \"Add your code here that will be executed before the widgets get imported!\";\n}\nadd_action( ''ocdi/before_widgets_import'', ''ocdi_before_widgets_import'' );\n
    \n

    \n
    \nHow can I import via the WP-CLI?\n\n

    \n

    In the 2.4.0 version of this plugin we added two WP-CLI commands:

    \n
      \n
    • wp ocdi list – Which will list any predefined demo imports currently active theme might have,
    • \n
    • \n

      wp ocdi import – which has a few options that you can use to import the things you want (content/widgets/customizer/predefined demos). Let’s look at these options below.

      \n

      wp ocdi import options:

      \n

      wp ocdi import [–content=] [–widgets=] [–customizer=] [–predefined=]

      \n
    • \n
    • \n

      --content=<file> – will run the content import with the WP import file specified in the <file> parameter,

      \n
    • \n
    • --widgets=<file> – will run the widgets import with the widgets import file specified in the <file> parameter,
    • \n
    • --customizer=<file> – will run the customizer settings import with the customizer import file specified in the <file> parameter,
    • \n
    • --predefined=<index> – will run the theme predefined import with the index of the predefined import in the <index> parameter (you can use the wp ocdi list command to check which index is used for each predefined demo import)
    • \n
    \n

    The content, widgets and customizer options can be mixed and used at the same time. If the predefined option is set, then it will ignore all other options and import the predefined demo data.

    \n

    \n
    \nI’m a theme author and I want to change the plugin intro text, how can I do that?\n\n

    \n

    You can change the plugin intro text by using the ocdi/plugin_intro_text filter:

    \n
    function ocdi_plugin_intro_text( $default_text ) {\n    $default_text .= ''<div class=\"ocdi__intro-text\">This is a custom text added to this plugin intro text.</div>'';\n\n    return $default_text;\n}\nadd_filter( ''ocdi/plugin_intro_text'', ''ocdi_plugin_intro_text'' );\n
    \n

    To add some text in a separate “box”, you should wrap your text in a div with a class of ‘ocdi__intro-text’, like in the code example above.

    \n

    \n
    \nHow to disable generation of smaller images (thumbnails) during the content import\n\n

    \n

    This will greatly improve the time needed to import the content (images), but only the original sized images will be imported. You can disable it with a filter, so just add this code to your theme function.php file:

    \n
    add_filter( ''ocdi/regenerate_thumbnails_in_content_import'', ''__return_false'' );\n
    \n

    \n
    \nHow to change the location, title and other parameters of the plugin page?\n\n

    \n

    As a theme author you do not like the location of the “Import Demo Data” plugin page in Appearance -> Import Demo Data? You can change that with the filter below. Apart from the location, you can also change the title or the page/menu and some other parameters as well.

    \n
    function ocdi_plugin_page_setup( $default_settings ) {\n    $default_settings[''parent_slug''] = ''themes.php'';\n    $default_settings[''page_title'']  = esc_html__( ''One Click Demo Import'' , ''one-click-demo-import'' );\n    $default_settings[''menu_title'']  = esc_html__( ''Import Demo Data'' , ''one-click-demo-import'' );\n    $default_settings[''capability'']  = ''import'';\n    $default_settings[''menu_slug'']   = ''one-click-demo-import'';\n\n    return $default_settings;\n}\nadd_filter( ''ocdi/plugin_page_setup'', ''ocdi_plugin_page_setup'' );\n
    \n

    \n
    \nHow to do something before the content import executes?\n\n

    \n

    In version 2.0.0 there is a new action hook: ocdi/before_content_import, which will let you hook before the content import starts. An example of the code would look like this:

    \n
    function ocdi_before_content_import( $selected_import ) {\n    if ( ''Demo Import 1'' === $selected_import[''import_file_name''] ) {\n        // Here you can do stuff for the \"Demo Import 1\" before the content import starts.\n        echo \"before import 1\";\n    }\n    else {\n        // Here you can do stuff for all other imports before the content import starts.\n        echo \"before import 2\";\n    }\n}\nadd_action( ''ocdi/before_content_import'', ''ocdi_before_content_import'' );\n
    \n

    \n
    \nHow can I enable the `customize_save*` wp action hooks in the customizer import?\n\n

    \n

    It’s easy, just add this to your theme:

    \n
    add_action( ''ocdi/enable_wp_customize_save_hooks'', ''__return_true'' );\n
    \n

    This will enable the following WP hooks when importing the customizer data: customize_save, customize_save_*, customize_save_after.

    \n

    \n
    \nHow can I pass Amazon S3 presigned URL’s (temporary links) as external files ?\n\n

    \n

    If you want to host your import content files on Amazon S3, but you want them to be publicly available, rather through an own API as presigned URL’s (which expires) you can use the filter ocdi/pre_download_import_files in which you can pass your own URL’s, for example:

    \n
    add_filter( ''ocdi/pre_download_import_files'', function( $import_file_info ){\n\n    // In this example get_my_custom_urls` is supposedly making a `wp_remote_get` request, getting the urls from an API server where you''re creating the presigned urls, [example here](https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/s3-presigned-url.html).\n// This request should return an array containing all the 3 links - `import_file_url`, `import_widget_file_url`, `import_customizer_file_url`\n$request = get_my_custom_urls( $import_file_info );\n\nif ( !is_wp_error( $request ) )\n{\n    if ( isset($request[''data'']) && is_array($request[''data'']) )\n    {\n        if( isset($request[''data''][''import_file_url'']) && $import_file_url = $request[''data''][''import_file_url''] ){\n            $import_file_info[''import_file_url''] = $import_file_url;\n        }\n        if( isset($request[''data''][''import_widget_file_url'']) && $import_widget_file_url = $request[''data''][''import_widget_file_url''] ){\n            $import_file_info[''import_widget_file_url''] = $import_widget_file_url;\n        }\n        if( isset($request[''data''][''import_customizer_file_url'']) && $import_customizer_file_url = $request[''data''][''import_customizer_file_url''] ){\n            $import_file_info[''import_customizer_file_url''] = $import_customizer_file_url;\n        }\n    }\n}\n\nreturn $import_file_info;\n
    \n

    } );
    \n`

    \n

    \n
    \nI can’t activate the plugin, because of a fatal error, what can I do?\n\n

    \n

    Update: since version 1.2.0, there is now a admin error notice, stating that the minimal PHP version required for this plugin is 5.3.2.

    \n

    You want to activate the plugin, but this error shows up:

    \n

    Plugin could not be activated because it triggered a fatal error

    \n

    This happens, because your hosting server is using a very old version of PHP. This plugin requires PHP version of at least 5.3.x, but we recommend version 5.6.x or better yet 7.x. Please contact your hosting company and ask them to update the PHP version for your site.

    \n

    \n
    \nIssues with the import, that we can’t fix in the plugin\n\n

    \n

    Please visit this docs page, for more answers to issues with importing data.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast & Easy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ajkastner77 on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Overall, this plugin is a must-have companion for theme authors and a lifesaver for users

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Import Failed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy 99ibrahim99 (ibrahim791) on April 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Import Failed

    \n\n\n\n

    Whoops, there was a problem importing your content.

    \n\n\n\n

    An error occurred while fetching file from: xxx site
    Reason: 403 - Forbidden.

    \n\n\n\n

    import error 🤔I have tried everything for a solution but I can''t find a solution.

    \n\n\n\n

    Edit: It was a hosting-related error. I rented a server and the problem was solved. Thanks for the great plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Quotes Ninja (quotesninja) on March 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    One Click Demo Import is a very helpful plugin to upload theme''s demo in one click, it''s easy to use, it is perfectly worked for my website and mainly it''s absolutely free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Need a progress bar and display for failed installation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Krishnakumar KA (krishnakumarka) on March 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Most of the time the plugin shows the gear animation. It would be better if they add a progress bar showing what are the things getting installed and a message to display if the installation is failed.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Helpful Plugin & Great Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Amine (ablamohamedamine) on February 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    OCDI is a very helpful plugin to upload theme''s demo in one click, it''s easy to use and 100% free.

    \n\n\n\n

    \n\n\n\n

    Even that I got a great support from its team, and they take a lot of time with me to give me the help.

    \n\n\n\n

    \n\n\n\n

    Really appreciate it, best team.

    \n\n\n\n

    \n\n\n\n

    Regards.

    \n\n\n\n

    Amine.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks for great plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anil Chandra Robidas (anilkumer) on November 13, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It works well

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect, very easy to use!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bonnie333 on March 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Perfect, very easy to use!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super Useless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy obadaalrefai on October 29, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    Not Working at all, its time wasting only
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works Perfectly!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy KoriA on September 2, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    Worked perfectly to help me import JSON files for my Divi theme layouts. What a great tool!
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Metromas (metromas) on November 22, 2021\t\t\t

    \n\t\t
    \n\t
    \n\t
    Useful Plug-In..
    \n
    \n", "changelog": "

    3.4.0

    \n

    Release Date – 11 September 2025

    \n
      \n
    • Fixed a PHP fatal error on some imports. The fatal error happens when the passed $widget is not the expected array data type.
    • \n
    • Bump the minimum required PHP version to PHP v7.4.
    • \n
    \n

    3.3.0

    \n

    Release Date – 10th October 2024

    \n
      \n
    • Added support to WPForms.
    • \n
    • Fixed a PHP warning notice.
    • \n
    \n

    3.2.1

    \n

    Release Date – 10th April 2024

    \n
      \n
    • Fixed customizer security issue.
    • \n
    \n

    3.2.0

    \n

    Release Date – 23rd November 2023

    \n
      \n
    • Added ocdi/import_successful_buttons filter hook that allow developers to add custom buttons in the import successful page.
    • \n
    • Added loading=\"lazy\" in import preview images for better performance.
    • \n
    • Fixed PHP warning notice when importing non-string term metadata.
    • \n
    • Fixed Navigation block not imported properly.
    • \n
    • Fixed issue with failed media import resulting to infinite loop.
    • \n
    • Fixed PHP deprecated notice when importing Redux Framework options.
    • \n
    • Fixed issue with old action hook, pt-{$hook}, not running when the new {$hook} is also used.
    • \n
    \n

    3.1.2

    \n

    Release Date – 8th July 2022

    \n
      \n
    • Fixed missing terms count update (fixes missing menu items after WP 6.0 update).
    • \n
    \n

    3.1.1

    \n

    Release Date – 22nd March 2022

    \n
      \n
    • Fixed missing sanitization for the redux option name.
    • \n
    \n

    3.1.0

    \n

    Release Date – 18th March 2022

    \n
      \n
    • Changed the minimal WordPress version to 5.2.
    • \n
    • Fixed upload file types. Allow just whitelisted import file types.
    • \n
    \n

    3.0.2

    \n

    Release Date – 2 April 2021

    \n
      \n
    • Fixed missing old default settings page (breaking existing links to the OCDI settings page).
    • \n
    • Fixed PHP notices in network admin area for WP Multisite.
    • \n
    • Fixed theme card image style in the sidebar.
    • \n
    \n

    3.0.1

    \n

    Release Date – 31 March 2021

    \n
      \n
    • Added more details about recommended plugins.
    • \n
    • Changed recommended plugins to opt-in.
    • \n
    \n

    3.0.0

    \n

    Release Date – 31 March 2021

    \n
      \n
    • IMPORTANT: Support for PHP 5.5 or lower has been discontinued. If you are running one of those versions, you MUST upgrade PHP before installing or upgrading to One Click Demo Import v3.0. Failure to do that will disable One Click Demo Import functionality.
    • \n
    • IMPORTANT: Support for WordPress core v4.9 or lower has been discontinued. If you are running one of those versions, you MUST upgrade WordPress core before installing or upgrading to One Click Demo Import v3.0. Failure to do that could cause issues with the One Click Demo Import functionality.
    • \n
    • Added support for recommended theme plugins.
    • \n
    • Added useful single page demo content imports.
    • \n
    • Added recommended plugins installer.
    • \n
    • Updated the UI/UX of the plugin.
    • \n
    • Fixed PHP8 warning.
    • \n
    • Fixed deprecated WP function wp_slash_strings_only.
    • \n
    \n

    2.6.1

    \n

    Release Date – 21 July 2020

    \n
      \n
    • Fixed Elementor import issues.
    • \n
    \n

    2.6.0

    \n

    Release Date – 21 July 2020

    \n
      \n
    • Improved code execution: not loading plugin code on frontend.
    • \n
    • Fixed incorrect post and post meta import (unicode and other special characters were not escaped properly).
    • \n
    • Fixed error (500 – internal error) for Widgets import on PHP 7.x.
    • \n
    • Fixed PHP notices for manual demo import.
    • \n
    • Fixed PHP warning if set_time_limit function is disabled.
    • \n
    • Fixed links for switching manual and predefined import modes.
    • \n
    \n

    2.5.2

    \n

    Release Date – 29 July 2019

    \n
      \n
    • Improved documentation and code sample
    • \n
    • Added pt-ocdi/pre_download_import_files filter
    • \n
    • Added two action hooks to plugin-page.php
    • \n
    • Bumped Tested up to tag
    • \n
    \n

    2.5.1

    \n

    Release Date – 25 October 2018

    \n
      \n
    • Fix missing translation strings
    • \n
    \n

    2.5.0

    \n

    Release Date – 8 January 2018

    \n
      \n
    • Add OCDI as a WordPress import tool in Tools -> Import,
    • \n
    • Add switching to the manual import, if the theme has predefined demo imports,
    • \n
    • Fix text domain loading
    • \n
    \n

    2.4.0

    \n

    Release Date – 23 August 2017

    \n
      \n
    • Add WP-CLI commands for importing with this plugin,
    • \n
    • Fix conflict with WooCommerce importer
    • \n
    \n

    2.3.0

    \n

    Release Date – 28 May 2017

    \n
      \n
    • Add preview button option to the predefined demo import items,
    • \n
    • Add custom JS event trigger when the import process is completed,
    • \n
    • Add custom filter for plugin page title,
    • \n
    • Remove content import as a required import. Now you can make separate imports for customizer, widgets or redux options.
    • \n
    • Fix custom menu widgets imports, the menus will now be set correctly.
    • \n
    \n

    2.2.1

    \n

    Release Date – 3 April 2017

    \n
      \n
    • Fix image importing error for server compressed files,
    • \n
    • Fix remapping of featured images,
    • \n
    • Fix custom post type existing posts check (no more multiple imports for custom post types).
    • \n
    \n

    2.2.0

    \n

    Release Date – 5 February 2017

    \n
      \n
    • Add ProteusThemes branding notice after successful import,
    • \n
    • Fix after import error reporting (duplicate errors were shown),
    • \n
    • Fix some undefined variables in the plugin, causing PHP notices.
    • \n
    \n

    2.1.0

    \n

    Release Date – 8 January 2017

    \n
      \n
    • Add grid layout import confirmation popup options filter,
    • \n
    • Fix term meta data double import,
    • \n
    • Fix WooCommerce product attributes import.
    • \n
    \n

    2.0.2

    \n

    Release Date – 13 December 2016

    \n
      \n
    • Fix issue with customizer options import
    • \n
    \n

    2.0.1

    \n

    Release Date – 12 December 2016

    \n
      \n
    • Fix issue with some browsers (Safari and IE) not supporting some FormData methods.
    • \n
    \n

    2.0.0

    \n

    Release Date – 10 December 2016

    \n
      \n
    • Add new layout for multiple predefined demo imports (a grid layout instead of the dropdown selector),
    • \n
    • Add support for Redux framework import,
    • \n
    • Change the code structure of the plugin (plugin rewrite, namespaces, autoloading),
    • \n
    • Now the whole import (content, widgets, customizer, redux) goes through even if something goes wrong in the content import (before content import errors blocked further import),
    • \n
    • Add pt-ocdi/before_content_import action hook, that theme authors can use to hook into before the content import starts,
    • \n
    • Fix frontend error reporting through multiple AJAX calls,
    • \n
    • Fix post formats (video/quote/gallery,…) not importing,
    • \n
    • Fix customizer import does not save some options (because of the missing WP actions – these can be enabled via a filter, more in the FAQ section).
    • \n
    \n

    1.4.0

    \n

    Release Date – 29 October 2016

    \n
      \n
    • Add support for WP term meta data in content importer,
    • \n
    • Fix the issue of having both plugins (OCDI and the new WP importer v2) activated at the same time.
    • \n
    \n

    1.3.0

    \n

    Release Date – 1 October 2016

    \n
      \n
    • Import/plugin page re-design. Updated the plugin page styles to match WordPress (thanks to Oliver Juhas).
    • \n
    \n

    1.2.0

    \n

    Release Date – 9 July 2016

    \n
      \n
    • Now also accepts predefined local import files (from theme folder),
    • \n
    • Fixes PHP fatal error on plugin activation, for sites using PHP versions older then 5.3.2 (added admin error notice),
    • \n
    • Register log file in wp-admin -> Media, so that it’s easier to access,
    • \n
    • No more “[WARNING] Could not find the author for …” messages in the log file.
    • \n
    \n

    1.1.3

    \n

    Release Date – 17 June 2016

    \n
      \n
    • Updated plugin design,
    • \n
    • Changed the plugin page setup filter name from pt-ocdi/plugin-page-setup to pt-ocdi/plugin_page_setup (mind the underscore characters instead of dashes).
    • \n
    \n

    1.1.2

    \n

    Release Date – 12 June 2016

    \n
      \n
    • An ‘import notice’ field has been added to the predefined demo import settings. This notice is displayed above the import button (it also accepts HTML),
    • \n
    • Now displays proper error message, if the file-system method is not set to “direct”,
    • \n
    • This plugin is now compatible with the new Humanmade content importer plugin,
    • \n
    • Added a filter to the plugin page creation, so that theme authors can now change the location of the plugin page (Demo data import) and some other parameters as well.
    • \n
    \n

    1.1.1

    \n

    Release Date – 22 May 2016

    \n
      \n
    • Preview import images can now be defined for multiple predefined import files (check FAQ “How to predefine demo imports?” for more info),
    • \n
    • You can now also import customizer settings.
    • \n
    \n

    1.1.0

    \n

    Release Date – 14 May 2016

    \n
      \n
    • Content import now imports in multiple AJAX calls, so there should be no more server timeout errors,
    • \n
    • The setting for generation of multiple image sizes in the content import is again enabled by default,
    • \n
    • Plugin textdomain was loaded, so that translations can be made.
    • \n
    \n

    1.0.3

    \n

    Release Date – 27 April 2016

    \n
      \n
    • Added filter to enable image regeneration,
    • \n
    • Added filter to change the plugin intro text,
    • \n
    • Added action to execute custom code before widget import,
    • \n
    • Disabled author imports.
    • \n
    \n

    1.0.2

    \n

    Release Date – 15 April 2016

    \n
      \n
    • Monkey fix for WP version 4.5. – disabled generation of multiple image sizes in the content import.
    • \n
    \n

    1.0.1

    \n

    Release Date – 2 April 2016

    \n

    Small code fixes:

    \n
      \n
    • Fixed undefined variable bug,
    • \n
    • Fixed naming of downloaded files and their filters.
    • \n
    \n

    1.0.0

    \n

    Release Date – 25 March 2016

    \n
      \n
    • Initial release!
    • \n
    \n", "description": "

    The best feature of this plugin is, that theme authors can define import files in their themes and so all you (the user of the theme) have to do is click on the “Import Demo Data” button.

    \n
    \n

    Are you a theme author?

    \n

    Setup One Click Demo Imports for your theme and your users will thank you for it!

    \n

    Follow this easy guide on how to setup this plugin for your themes!

    \n

    Are you a theme user?

    \n

    Contact the author of your theme and let them know about this plugin. Theme authors can make any theme compatible with this plugin in 15 minutes and make it much more user-friendly.

    \n

    Where can I find the theme author contact?

    \n
    \n

    Please take a look at our plugin documentation for more information on how to import your demo content.

    \n

    This plugin is using the modified version of the improved WP import 2.0 that is still in development and can be found here: https://github.com/humanmade/WordPress-Importer.

    \n

    NOTE: There is no setting to “connect” authors from the demo import file to the existing users in your WP site (like there is in the original WP Importer plugin). All demo content will be imported under the current user.

    \n

    Do you want to contribute?

    \n

    Please refer to our official GitHub repository.

    \n", "screenshots": "
    1. \"Example

      Example of multiple predefined demo imports, that a user can choose from.

    2. \"How

      How the import page looks like, when only one demo import is predefined.

    3. \"Example

      Example of how the import page looks like, when no demo imports are predefined a.k.a manual import.

    4. \"How

      How the Recommended & Required theme plugins step looks like, just before the import step.

    ", "installation": "

    From your WordPress dashboard

    \n
      \n
    1. Visit ‘Plugins > Add New’,
    2. \n
    3. Search for ‘One Click Demo Import’ and install the plugin,
    4. \n
    5. Activate ‘One Click Demo Import’ from your Plugins page.
    6. \n
    \n

    From WordPress.org

    \n
      \n
    1. Download ‘One Click Demo Import’.
    2. \n
    3. Upload the ‘one-click-demo-import’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…)
    4. \n
    5. Activate ‘One Click Demo Import’ from your Plugins page.
    6. \n
    \n

    Once the plugin is activated you will find the actual import page in: Appearance -> Import Demo Data.

    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.0.3.zip", "1.1.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.1.3.zip", "1.2.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.4.0.zip", "2.0.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.0.2.zip", "2.1.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.2.1.zip", "2.3.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.3.0.zip", "2.4.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.5.2.zip", "2.6.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.6.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.0.2.zip", "3.1.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.1.2.zip", "3.2.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.2.1.zip", "3.3.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.4.0.zip", "trunk": "https://downloads.wordpress.org/plugin/one-click-demo-import.zip"}, "downloaded": 19300298, "description": "

    The best feature of this plugin is, that theme authors can define import files in their themes and so all you (the user of the theme) have to do is click on the “Import Demo Data” button.

    \n
    \n

    Are you a theme author?

    \n

    Setup One Click Demo Imports for your theme and your users will thank you for it!

    \n

    Follow this easy guide on how to setup this plugin for your themes!

    \n

    Are you a theme user?

    \n

    Contact the author of your theme and let them know about this plugin. Theme authors can make any theme compatible with this plugin in 15 minutes and make it much more user-friendly.

    \n

    Where can I find the theme author contact?

    \n
    \n

    Please take a look at our plugin documentation for more information on how to import your demo content.

    \n

    This plugin is using the modified version of the improved WP import 2.0 that is still in development and can be found here: https://github.com/humanmade/WordPress-Importer.

    \n

    NOTE: There is no setting to “connect” authors from the demo import file to the existing users in your WP site (like there is in the original WP Importer plugin). All demo content will be imported under the current user.

    \n

    Do you want to contribute?

    \n

    Please refer to our official GitHub repository.

    \n", "donate_link": "", "num_ratings": 79, "screenshots": {"1": {"src": "https://ps.w.org/one-click-demo-import/assets/screenshot-1.png?rev=2506685", "caption": "Example of multiple predefined demo imports, that a user can choose from."}, "2": {"src": "https://ps.w.org/one-click-demo-import/assets/screenshot-2.png?rev=2506685", "caption": "How the import page looks like, when only one demo import is predefined."}, "3": {"src": "https://ps.w.org/one-click-demo-import/assets/screenshot-3.png?rev=2506685", "caption": "Example of how the import page looks like, when no demo imports are predefined a.k.a manual import."}, "4": {"src": "https://ps.w.org/one-click-demo-import/assets/screenshot-4.png?rev=2506685", "caption": "How the Recommended & Required theme plugins step looks like, just before the import step."}}, "support_url": "https://wordpress.org/support/plugin/one-click-demo-import/", "contributors": {"ocdi": {"avatar": "https://secure.gravatar.com/avatar/647a5b8f4490f80e79bbcb8595099a22f421eec4353f71e409a63ae6d81e46e1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ocdi/", "display_name": "ODCI"}, "smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "capuderg": {"avatar": "https://secure.gravatar.com/avatar/7f3dce4f4cf2b11cb8652edba21dd6171ad81c4acd28fd5728f012e38e6d658f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/capuderg/", "display_name": "Gregor Capuder"}, "jaredatch": {"avatar": "https://secure.gravatar.com/avatar/e48b918fcf7b3ef806516402e3b78524138f1a0c713fe5c0d835a7b6d8ae35a2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jaredatch/", "display_name": "Jared Atchison"}}, "last_updated": "2025-09-11 9:36am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.4.0.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f818-71a2-9e41-1b1d71723471", "name": "One Click Demo Import", "slug": "one-click-demo-import", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1757583360, "version": "3.4.0"}, "support_threads": 0, "requires_plugins": [], "short_description": "Import your demo content, widgets and theme settings with one click. Theme authors! Enable simple theme demo import for your users.", "author_block_count": 0, "author_block_rating": 86, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1cee-72d4-84da-483823f38899', 'did:web:api.aspiredev.org:packages:wp-plugin:optinmonster', 'optinmonster', 'Popup Builder & Popup Maker for WordPress – OptinMonster Email Marketing and Lead Generation', '

    🤩 Make popups & optin forms to get more email newsletter subscribers, leads, and sales – #1 most popular popup builder plugin! 🚀

    -

    The Best Popup Builder for WordPress and Email Newsletter Popup Plugin

    -

    OptinMonster is the best WordPress popup plugin and the most popular, too! Over 1.2 MILLION smart marketers like you trust us to make sure no good lead goes uncaptured!

    -

    OptinMonster turns your website visitors into new leads, subscribers and sales.

    -
    -

    Excellent product and customer service
    - “I love the product. I didn’t think popups were important, but with the seamless integration of other products such as MailChimp and WPForms, they are a winner! It makes it easier to collect data and leads. OptinMonster team is always ready to fix any problem you encounter when setting up the forms. They are patient, kind, and upbeat. They make life easier for those who are not developers. This plugin is a must for your business.”
    - @sarana01

    -
    -

    -

    OptinMonster’s easy-to-use popup maker makes creating pop-ups and email subscription forms, sticky floating bars, engaging spin-a-wheel campaigns, and interactive popups a breeze.

    -

    And our mobile popups ensure that your marketing messages look great on all devices.

    -

    …all WITHOUT needing a coder or designer…saving you time AND money.

    -

    OptinMonster integrates with dozens of the most popular email marketing services, CRMs and eCommerce platforms including MailChimp, Hubspot, ConvertKit, Klaviyo, Keap/Infusionsoft, Active Campaign, WooCommerce, Easy Digital Downloads, MemberPress, Google Analytics and many others.

    -

    If we don’t have a native integration with your marketing platform, we’ve got you covered still with one of our no-code integrations:

    -
      -
    • Copy/paste your form’s code using our Embedded Form block
    • -
    • Embed WPForms, Gravity Forms, Formidable Forms, NinjaForms, CF7, or any other shortcode based form plugin for WordPress
    • -
    • Use our powerful Webhooks to send lead information wherever you’d like
    • -
    • Connect OptinMonster to Zapier
    • -
    • Unlock hundreds of automations using Uncanny Automator for WordPress
    • -
    -

    Do all this and more without sacrificing website performance because we’ve optimized the OptinMonster popup builder for both web and server performance.

    -

    And we have the best Customer Support team! With almost 800 five-star reviews on WordPress.org, award winning support (including optional live chat or video calls), our team is here to help you win and win more often!

    -

    OptinMonster is a SaaS service and requires an OptinMonster account.
    -When you install this plugin, you’ll get to register for a free account that includes 3 campaigns and up to 500 campaign impression credits. Those credits are yours forever. If you use all of them, your account will be upgraded so your campaigns continue to display. Of course, you can always control your upgrade preferences within your account.

    -

    When you’re ready to explode your growth, try OptinMonster Pro to access more advanced solutions like Exit-Intent, Campaign Scheduling, Countdown Timers and more.

    -

    Here’s why smart business owners, designers, and developers love OptinMonster!

    -

    Easy Pop-up Builder From OptinMonster Increase Conversions

    -
      -
    • Lightbox Popups – Easily create custom popups to grow your email list, show coupons, make a WooCommerce cross-sell or WooCommerce upsell campaign, and more using our popup maker.
    • -
    • Floating Bar Popups – Create sticky header bars, hello bars and floating bars to show free shipping notices, website announcement alert, sale countdown timer, and more.
    • -
    • Slide-in Popups – Create scroll box popups that slide out from bottom of the screen to highlight your offer, like WooCommerce upsells, related posts, and coupon codes.
    • -
    • Fullscreen Welcome Mats – Create full screen popups and welcome mats to focus your visitor’s attention on your best offer.
    • -
    • Gamified Spin a Wheel Popup – Create coupon wheel optins to increase your store’s conversions with gamification.
    • -
    • Inline Signup Forms – Unlike a popup, inline newsletter signup forms can be embedded anywhere inside your page content, or automatically at the start or end of each post.
    • -
    • Sidebar Forms – Add an email newsletter signup form in your blog’s sidebar to get more subscribers using a shortcode or Gutenberg block.
    • -
    • Content Locker Popups – Turn any inline campaign into a content locker or gated content with our easy to use inline optins.
    • -
    • Countdown Timers – Boost urgency and scarcity for limited time offers with countdown timers (great for sales promotion, live events, webinars, and product launches). Both static and evergreen timers included.
    • -
    • Yes / No Popups – Create multi-step, progressive optins that results in better list segmentation and higher marketing conversions.
    • -
    • Mobile Popups – Create mobile-specific popups that are only shown to users on smart phones and tablets. Great for mobile app downloads or making specific offers to your mobile visitors.
    • -
    • Canvas Custom Popup – Create campaigns from scratch using our drag & drop popup builder for any use case.
    • -
    • AI Popups Smart Optimizations – Our Smart Optimizations use proven, time-tested, high-converting copywriting principles and Artificial Intelligence (AI) to automatically improve the copy present within a text block.
    • -
    -

    Our Drag and Drop Popup Maker and Popup Templates Make It Easy

    -

    Easily customize the look and feel of your campaigns, and even add dynamic elements like countdown timers, spin a wheel, etc that change based on user behavior (no code necessary).

    -

    OptinMonster comes with hundreds of popup templates to help you save time, far more than competitors like Popup Builder, Popup Maker, Icegram (sometimes called Ice Gram), Sumo or Hustle. Easily search them by your industry, business goal, holiday or features.

    -
    -

    I have never before seen such effectiveness and efficiency in an optin tool than I have with OptinMonster. In under 2 hours of work, I doubled my daily optin rates thanks to OptinMonster’s incredible options.
    - Dave Chesson, Owner of Kindlepreneur See Case Study

    -
    -

    Exit Intent Popups and OnSite Retargeting

    -

    Did you know that over 70% of visitors abandoning your website will never return?

    -

    OptinMonster’s signature exit-intent popup technology can help you convert abandoning visitors into subscribers and customers.

    -

    With exit intent popups, visitors see a popup message with your best offer at the precise moment they’re about to leave.

    -

    Exit popups are proven to convert an additional 2 – 4% of your visitors into email subscribers and paying customers.

    -

    You can use exit intent popups combined with OnSite Retargeting to show different popup messages to new visitors vs returning visitors.

    -

    These advanced popup triggers are highly effective in growing your email list, reducing cart abandonment, and saving you moeny on PPC advertising and retargeting ads.

    -
    -

    In only 7 months, we added more than 95,000 names to our email list using OptinMonster’s Exit Intent™ technology. We strongly recommend it!
    - Michael Stelzner, Founder of Social Media Examiner See Case Study

    -
    -

    Smart Page Targeting and Behavior Based Personalization

    -

    And the best WordPress popup plugin comes with advanced page targeting and behavior based personalization, too!

    -

    This means you can show a popup for specific page or section of your site, or based on users’ geolocation, or even when a visitor clicks a specific link…and so much more.

    -

    You can even show unique popups based on user’s past behavior such as: have they clicked on an existing marketing popup, seen another popup campaign, closed a marketing popup, viewed X number of pages, etc.

    -

    These personalization features of OptinMonster popups make them highly effective in improving your lead generation, increasing subscribers, and growing sales.

    -
    -

    Using OptinMonster, I was able to increase sales $55,000 after capturing nearly 7% more leads with a single optin!
    - Cole Joseph, Owner of Cole’s Classroom See Case Study

    -
    -

    Popup A/B Testing, Email Marketing Integrations, and Popup Analytics

    -

    Unlike other WordPress lead generation plugins, OptinMonster comes with reliable A/B split testing and accurate analytics without slowing down your site.

    -

    Most of them use wp-ajax to setup analytics. This slows down your site and also results in unreliable analytics due to cache plugin settings.

    -

    Similarly, A/B testing in a most WordPress popup plugins is broken because caching plugins can skew the data.

    -

    We fixed both these issues with our superior infrastructure, so you can have reliable A/B testing for popups, accurate conversion analytics, and seamless email marketing / CRM integrations for your marketing (bonus: lead storage & lead backup are included, too).

    -

    Credits

    -

    This WordPress popup plugin is created by Thomas Griffin and Syed Balkhi.

    -

    Branding Guideline

    -

    OptinMonster® is a registered trademark of Retyp LLC. When writing about the popup plugin by OptinMonster, please make sure to uppercase the letter O and M.

    -
      -
    • OptinMonster (correct)
    • -
    • Optin Monster (incorrect)
    • -
    • optinmonster (incorrect)
    • -
    • optin monster (incorrect)
    • -
    -

    Exit-Intent®, OnSite Retargeting®, and OnSite Follow Up Campaigns® are also registered trademarks of Retyp LLC.

    -

    See our Press & Brand Assets page for more details.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Popup Builder & Popup Maker for WordPress – OptinMonster Email Marketing and Lead Generation", "slug": "optinmonster", "tags": {"optin": "Optin", "popup": "popup", "popups": "popups", "ecommerce": "ecommerce", "marketing": "marketing"}, "added": "2015-04-26", "icons": {"1x": "https://ps.w.org/optinmonster/assets/icon-128x128.png?rev=1145864", "2x": "https://ps.w.org/optinmonster/assets/icon-256x256.png?rev=1145864"}, "author": "Syed Balkhi", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/optinmonster/assets/banner-772x250.png?rev=2311621", "high": "https://ps.w.org/optinmonster/assets/banner-1544x500.png?rev=2311621"}, "ratings": {"1": 128, "2": 7, "3": 5, "4": 15, "5": 638}, "version": "2.16.21", "homepage": "https://optinmonster.com", "requires": "5.0", "sections": {"faq": "\n
    \nWho should use OptinMonster’s WordPress Popups?\n\n

    \n

    OptinMonster is perfect for:

    \n
      \n
    • Business owners
    • \n
    • Bloggers
    • \n
    • eCommerce sites
    • \n
    • Designers
    • \n
    • Developers
    • \n
    • Marketing agencies
    • \n
    • Anyone who wants to grow their lists, leads, and sales.
    • \n
    \n

    \n
    \nWhat type of WordPress popups can I build with OptinMonster?\n\n

    \n

    Here are just some types of popups you can create with our easy-to-use popup builder:

    \n
      \n
    • Email Optins
    • \n
    • Exit Popups
    • \n
    • Floating Bars
    • \n
    • Spin a Wheel
    • \n
    • Slide-in
    • \n
    • Fullscreen and Welcome Mats
    • \n
    • Video Popups
    • \n
    • Contact Form Popup
    • \n
    • WooCommerce Popup
    • \n
    • Upsell Popup
    • \n
    • Cross Sell Popup
    • \n
    • Coupon Popup
    • \n
    • Sales Popup
    • \n
    • Lightbox
    • \n
    • Newsletter Popup
    • \n
    • Popup on Click of Button or Image
    • \n
    • Login Popup
    • \n
    • Registration Popup
    • \n
    • Lead Generation Popup
      \nand more.
    • \n
    \n

    \n
    \nCan I integrate OptinMonster popups with my CRM or Email Marketing Service?\n\n

    \n

    You can easily send data from your campaign to your favorite CRM, email newsletter, and other marketing platforms.

    \n

    Here is a list of our popular marketing integrations:

    \n\n

    \n
    \nHow can I target where my campaigns appear?\n\n

    \n

    Here are just a few of the powerful personalization and targeting options we offer:

    \n\n

    \n
    \nHow can I control when my campaigns appear?\n\n

    \n

    Our powerful Display Rules give you control so you can ensure your campaigns never annoy your visitors, but appear at just the most helpful time.

    \n\n

    Other Powerful Popup Features:

    \n
      \n
    • Animations – Add animation effects to capture users’ attention.
    • \n
    • Sound Effects – Add sound effects to grab users’ attention.
    • \n
    • Smart A/B Testing – A/B test popup ideas to increase conversions.
    • \n
    • Reliable Conversion Analytics – See how your OptinMonster campaigns are converting with reliable analytics.
    • \n
    • Advanced Google Analytics – Connect with Google Analytics to see event tracking, enhanced eCommerce tracking, and more.
    • \n
    • Lead Sharing – Easily share leads with joint venture / co-marketing partners while using the same optin form.
    • \n
    • Email Newsletter Segmentation – Group email subscribers based on their interests and the unique optin form they subscribed through for improved marketing automation.
    • \n
    • Lead Backup / Storage – Always backup your subscribers with MonsterLeads.
    • \n
    • Share on Social Media – Create shareable campaign links for social media using MonsterLinks.
    • \n
    • Success Tracking Scripts – Setup advertising conversion and retargeting pixels based on popup interaction to improve your PPC results.
    • \n
    \n

    \n
    \nDoes OptinMonster integrate with other WordPress plugins?\n\n

    \n

    Yes! OptinMonster integrates with many WordPress plugins out of the box and we’ve built unique integrations for the most popular WordPress plugins.

    \n
      \n
    • WooCommerce Popups – Add upsell and cross-sell popups, free shipping bars, announcement bars, coupon wheels, and more.
    • \n
    • BigCommerce Popups – Coupon popups, gamified coupon wheels, exit popups, and more to reduce cart abandonment and increase conversions.
    • \n
    • Shopify Popups – Exit intent popup, cart abandonment popup, upsell popup, free shipping bar, discount wheel popups, and more customized popups for Shopify stores.
    • \n
    • WPForms Popup – Create contact forms, survey popups, polls, or embed any WPForms form inside lightbox popup modals.
    • \n
    • Gravity Forms Popup – Create payment form, contact forms, user registrations, login forms, and other Gravity Forms campaigns with just a few clicks.
    • \n
    • Contact Form 7 Popup – Easily create Contact Form 7 popups with OptinMonster.
    • \n
    • MemberPress – Create popups for your membership site or course
    • \n
    • Easy Digital Downloads – Create popups to sell digital downloads and encourage users to buy
    • \n
    • Uncanny Automator – Easily integrate OptinMonster with hundreds of other WordPress plugins and apps, creating endless automations.
    • \n
    \n

    If your plugin utilizes Shortcodes, you should be able to use those shortcodes directly in your OptinMonster popups. Imagine the endless possibilities!

    \n

    \n
    \nWhich design elements / form fields can I add in OptinMonster popups?\n\n

    \n

    We made OptinMonster popup builder to be both easy and powerful with these fields and more…

    \n
      \n
    • Name
    • \n
    • Email
    • \n
    • Phone
    • \n
    • Text and Text Area
    • \n
    • Date
    • \n
    • Radio Buttons
    • \n
    • Checkboxes
    • \n
    • Dropdown
    • \n
    • HTML
    • \n
    • Embedded Forms
    • \n
    • Images
    • \n
    • Videos
    • \n
    • Buttons
    • \n
    • Countdown Timers
    • \n
    • Coupon Wheels
    • \n
    • Chatbots
    • \n
    • Progress Bars
    • \n
    • Social Icons
    • \n
    • Font Awesome Icons
    • \n
    • Spacers and Dividers
    • \n
    • Columns field – create multi-column layouts
    • \n
    • Google ReCAPTCHA
    • \n
    • GDPR privacy checkbox
    • \n
    \n

    \n
    \nDo popups really work? Show me the results.\n\n

    \n

    Here are just a few success stories from OptinMonster customers:

    \n
    \n

    Before using OptinMonster, our website conversion rate was 2-3%, as expected. Since using OptinMonster, we have been able to improve conversion rates to 5.75%, a 189% increase.
    \n Adam Rowles See Case Study

    \n

    OptinMonster played a critical role in increasing my email optin conversion rate by 469%. In real numbers, that is the difference between $7,765 and $47,748 per month in revenue.
    \n Matthew Woodward

    \n

    Exit-intent popups have doubled my email opt-in rate. When done right, you can see an instant 10% lift on driving sales. I highly recommend that you use OptinMonster for growing your email list and sales.
    \n Neil Patel

    \n
    \n

    Click here to see more case studies.

    \n

    \n
    \nWhat other plugins do you recommend I should use?\n\n

    \n

    The plugins below are built by the same team that builds OptinMonster. We think you’ll love them as much as you will OptinMonster!

    \n
      \n
    • TrustPulse – Add real-time social proof notifications to boost your store conversions by up to 15%.
    • \n
    • Beacon – Easily create and share lead magnets and resource libraries.
    • \n
    \n

    We also recommend WPBeginner for the best WordPress Tutorials and to discover more of the best WordPress plugins.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Take money automaticaly, lookout!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lukaszsielicki on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Take money automaticaly, lookout!. This like a scam!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin but extemely misleading pricing, verges on a scam in my view

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy digimarknz on September 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The support while setting up was very good, the plug-in itself is very good but they are (in my view) intentionally misleading with their pricing and it so bad it''s close to a scam. I''ve now removed it and use another plugin with an honest approach and without the spam.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Do not fall for the term of FREE account

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ashot2oo1 on August 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    When someone says a free account, it means a free account. These people say create your free account, once you register they want a credit card details. There is no free account here, only 1 month free subscription, then they start charging. Do not fall for it, do not download unless you intend to pay for it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use and great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy estooza on August 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m using the free version and have no problems. I''ll consider purchasing the paid version once my site starts to get more traffic.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Installed itself??

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy LOK (LucLatulippe) on June 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This app installed itself after installing another plugin. Will report them.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I have never took the time to write a review on plugins, but this...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy capturefour on May 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    built with template, spend an hour on it, connected it, credit card added, published the pop up and it showed me the standard template on the published website.

    \n\n\n\n

    I have never took the time to write a review on plugins, but this... who is paying for this garbage?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Marketing tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wolfgangz on May 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    better optin rates than klaviyo Popup, great tools great rule sets. Using it for years. Love it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Experience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shawnp01 on May 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great customer service, promptly replied to my email support request and solved my issue very quickly. Plugin is relatively easy to use once setup and has some great functionality.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    awful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sheva_mytra (shevchenko.dmytro) on April 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    credit card even before using! just 500 pageviews on free tier.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very annoying

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mistaaaaaaaake on March 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    you have to register to use this plugin.

    \n\n\n\n

    I didnt want to so I didnt finish setting up and started using another plugin.

    \n\n\n\n

    This monster plugin keeps sending me messages like why you didnt finish up the setting?

    \n\n\n\n

    I answered Do not send me any messages anymore and i unsubscribed it , to be honest I didnt know I subscribed them , anyway I got more message. lol

    \n\n\n\n

    \n\n\n\n

    But they took care of it quick.

    \n
    \n
    \n", "changelog": "

    Most Recent Changes:

    \n

    Popup Builder 2.16.21

    \n
      \n
    • Maintenance updates.
    • \n
    • Preparation for ShareASale to AWIN migration.
    • \n
    \n

    Popup Builder 2.16.20

    \n
      \n
    • Maintenance updates.
    • \n
    \n

    Popup Builder 2.16.19

    \n
      \n
    • Improved support for the WPML plugin
    • \n
    \n

    Popup Builder 2.16.18

    \n
      \n
    • Fixed a scenario where the wrong screenshot may load
    • \n
    \n

    Popup Builder 2.16.17

    \n
      \n
    • Improvements to campaign screenshots
    • \n
    • Blocksy theme compatibility enhancements
    • \n
    \n

    Popup Builder 2.16.16

    \n
      \n
    • Added WooCommerce 9.6 compatibility.
    • \n
    • Performance improvements while in various editor contexts, by preventing unnecessary API calls.
    • \n
    • Updated URL used for OptinMonster API calls.
    • \n
    • Updates to the OptinMonster Gutenberg block to improve compatibility with iframes in the Block Editor.
    • \n
    \n

    Popup Builder 2.16.15

    \n
      \n
    • Added WordPress 6.7 compatibility.
    • \n
    \n

    Popup Builder 2.16.13

    \n
      \n
    • Removed UI elements that were no longer needed.
    • \n
    \n

    Popup Builder 2.16.12

    \n
      \n
    • Promotional updates to the dashboard.
    • \n
    \n

    Popup Builder 2.16.11

    \n
      \n
    • Documentation updates.
    • \n
    \n

    Popup Builder 2.16.10

    \n
      \n
    • Improve access to future events.
    • \n
    \n

    Popup Builder 2.16.9

    \n
      \n
    • Internal improvements to for future events 😉.
    • \n
    • Fixed a bug that may occur when generating URLs for use in our menu items.
    • \n
    \n

    Popup Builder 2.16.8

    \n
      \n
    • Avoid showing sidebar menu for role that does not have access when using User Role Editor plugin.
    • \n
    • Various npm package updates used for generating our JavaScript code.
    • \n
    \n

    Popup Builder 2.16.7

    \n
      \n
    • Improvements to campaign output settings management.
    • \n
    • UI improvements.
    • \n
    \n

    Popup Builder 2.16.6

    \n
      \n
    • Removed compatibility checks for WordFence as they are no longer needed.
    • \n
    • Updates to onboarding flow.
    • \n
    • Improved text when template search returns no results.
    • \n
    • Various npm package updates used for generating our JavaScript code.
    • \n
    \n

    View entire popup builder changelog

    \n", "description": "

    🤩 Make popups & optin forms to get more email newsletter subscribers, leads, and sales – #1 most popular popup builder plugin! 🚀

    \n

    The Best Popup Builder for WordPress and Email Newsletter Popup Plugin

    \n

    OptinMonster is the best WordPress popup plugin and the most popular, too! Over 1.2 MILLION smart marketers like you trust us to make sure no good lead goes uncaptured!

    \n

    OptinMonster turns your website visitors into new leads, subscribers and sales.

    \n
    \n

    Excellent product and customer service
    \n “I love the product. I didn’t think popups were important, but with the seamless integration of other products such as MailChimp and WPForms, they are a winner! It makes it easier to collect data and leads. OptinMonster team is always ready to fix any problem you encounter when setting up the forms. They are patient, kind, and upbeat. They make life easier for those who are not developers. This plugin is a must for your business.”
    \n @sarana01

    \n
    \n

    \n

    OptinMonster’s easy-to-use popup maker makes creating pop-ups and email subscription forms, sticky floating bars, engaging spin-a-wheel campaigns, and interactive popups a breeze.

    \n

    And our mobile popups ensure that your marketing messages look great on all devices.

    \n

    …all WITHOUT needing a coder or designer…saving you time AND money.

    \n

    OptinMonster integrates with dozens of the most popular email marketing services, CRMs and eCommerce platforms including MailChimp, Hubspot, ConvertKit, Klaviyo, Keap/Infusionsoft, Active Campaign, WooCommerce, Easy Digital Downloads, MemberPress, Google Analytics and many others.

    \n

    If we don’t have a native integration with your marketing platform, we’ve got you covered still with one of our no-code integrations:

    \n
      \n
    • Copy/paste your form’s code using our Embedded Form block
    • \n
    • Embed WPForms, Gravity Forms, Formidable Forms, NinjaForms, CF7, or any other shortcode based form plugin for WordPress
    • \n
    • Use our powerful Webhooks to send lead information wherever you’d like
    • \n
    • Connect OptinMonster to Zapier
    • \n
    • Unlock hundreds of automations using Uncanny Automator for WordPress
    • \n
    \n

    Do all this and more without sacrificing website performance because we’ve optimized the OptinMonster popup builder for both web and server performance.

    \n

    And we have the best Customer Support team! With almost 800 five-star reviews on WordPress.org, award winning support (including optional live chat or video calls), our team is here to help you win and win more often!

    \n

    OptinMonster is a SaaS service and requires an OptinMonster account.
    \nWhen you install this plugin, you’ll get to register for a free account that includes 3 campaigns and up to 500 campaign impression credits. Those credits are yours forever. If you use all of them, your account will be upgraded so your campaigns continue to display. Of course, you can always control your upgrade preferences within your account.

    \n

    When you’re ready to explode your growth, try OptinMonster Pro to access more advanced solutions like Exit-Intent, Campaign Scheduling, Countdown Timers and more.

    \n

    Here’s why smart business owners, designers, and developers love OptinMonster!

    \n

    Easy Pop-up Builder From OptinMonster Increase Conversions

    \n
      \n
    • Lightbox Popups – Easily create custom popups to grow your email list, show coupons, make a WooCommerce cross-sell or WooCommerce upsell campaign, and more using our popup maker.
    • \n
    • Floating Bar Popups – Create sticky header bars, hello bars and floating bars to show free shipping notices, website announcement alert, sale countdown timer, and more.
    • \n
    • Slide-in Popups – Create scroll box popups that slide out from bottom of the screen to highlight your offer, like WooCommerce upsells, related posts, and coupon codes.
    • \n
    • Fullscreen Welcome Mats – Create full screen popups and welcome mats to focus your visitor’s attention on your best offer.
    • \n
    • Gamified Spin a Wheel Popup – Create coupon wheel optins to increase your store’s conversions with gamification.
    • \n
    • Inline Signup Forms – Unlike a popup, inline newsletter signup forms can be embedded anywhere inside your page content, or automatically at the start or end of each post.
    • \n
    • Sidebar Forms – Add an email newsletter signup form in your blog’s sidebar to get more subscribers using a shortcode or Gutenberg block.
    • \n
    • Content Locker Popups – Turn any inline campaign into a content locker or gated content with our easy to use inline optins.
    • \n
    • Countdown Timers – Boost urgency and scarcity for limited time offers with countdown timers (great for sales promotion, live events, webinars, and product launches). Both static and evergreen timers included.
    • \n
    • Yes / No Popups – Create multi-step, progressive optins that results in better list segmentation and higher marketing conversions.
    • \n
    • Mobile Popups – Create mobile-specific popups that are only shown to users on smart phones and tablets. Great for mobile app downloads or making specific offers to your mobile visitors.
    • \n
    • Canvas Custom Popup – Create campaigns from scratch using our drag & drop popup builder for any use case.
    • \n
    • AI Popups Smart Optimizations – Our Smart Optimizations use proven, time-tested, high-converting copywriting principles and Artificial Intelligence (AI) to automatically improve the copy present within a text block.
    • \n
    \n

    Our Drag and Drop Popup Maker and Popup Templates Make It Easy

    \n

    Easily customize the look and feel of your campaigns, and even add dynamic elements like countdown timers, spin a wheel, etc that change based on user behavior (no code necessary).

    \n

    OptinMonster comes with hundreds of popup templates to help you save time, far more than competitors like Popup Builder, Popup Maker, Icegram (sometimes called Ice Gram), Sumo or Hustle. Easily search them by your industry, business goal, holiday or features.

    \n
    \n

    I have never before seen such effectiveness and efficiency in an optin tool than I have with OptinMonster. In under 2 hours of work, I doubled my daily optin rates thanks to OptinMonster’s incredible options.
    \n Dave Chesson, Owner of Kindlepreneur See Case Study

    \n
    \n

    Exit Intent Popups and OnSite Retargeting

    \n

    Did you know that over 70% of visitors abandoning your website will never return?

    \n

    OptinMonster’s signature exit-intent popup technology can help you convert abandoning visitors into subscribers and customers.

    \n

    With exit intent popups, visitors see a popup message with your best offer at the precise moment they’re about to leave.

    \n

    Exit popups are proven to convert an additional 2 – 4% of your visitors into email subscribers and paying customers.

    \n

    You can use exit intent popups combined with OnSite Retargeting to show different popup messages to new visitors vs returning visitors.

    \n

    These advanced popup triggers are highly effective in growing your email list, reducing cart abandonment, and saving you moeny on PPC advertising and retargeting ads.

    \n
    \n

    In only 7 months, we added more than 95,000 names to our email list using OptinMonster’s Exit Intent™ technology. We strongly recommend it!
    \n Michael Stelzner, Founder of Social Media Examiner See Case Study

    \n
    \n

    Smart Page Targeting and Behavior Based Personalization

    \n

    And the best WordPress popup plugin comes with advanced page targeting and behavior based personalization, too!

    \n

    This means you can show a popup for specific page or section of your site, or based on users’ geolocation, or even when a visitor clicks a specific link…and so much more.

    \n

    You can even show unique popups based on user’s past behavior such as: have they clicked on an existing marketing popup, seen another popup campaign, closed a marketing popup, viewed X number of pages, etc.

    \n

    These personalization features of OptinMonster popups make them highly effective in improving your lead generation, increasing subscribers, and growing sales.

    \n
    \n

    Using OptinMonster, I was able to increase sales $55,000 after capturing nearly 7% more leads with a single optin!
    \n Cole Joseph, Owner of Cole’s Classroom See Case Study

    \n
    \n

    Popup A/B Testing, Email Marketing Integrations, and Popup Analytics

    \n

    Unlike other WordPress lead generation plugins, OptinMonster comes with reliable A/B split testing and accurate analytics without slowing down your site.

    \n

    Most of them use wp-ajax to setup analytics. This slows down your site and also results in unreliable analytics due to cache plugin settings.

    \n

    Similarly, A/B testing in a most WordPress popup plugins is broken because caching plugins can skew the data.

    \n

    We fixed both these issues with our superior infrastructure, so you can have reliable A/B testing for popups, accurate conversion analytics, and seamless email marketing / CRM integrations for your marketing (bonus: lead storage & lead backup are included, too).

    \n

    Credits

    \n

    This WordPress popup plugin is created by Thomas Griffin and Syed Balkhi.

    \n

    Branding Guideline

    \n

    OptinMonster® is a registered trademark of Retyp LLC. When writing about the popup plugin by OptinMonster, please make sure to uppercase the letter O and M.

    \n
      \n
    • OptinMonster (correct)
    • \n
    • Optin Monster (incorrect)
    • \n
    • optinmonster (incorrect)
    • \n
    • optin monster (incorrect)
    • \n
    \n

    Exit-Intent®, OnSite Retargeting®, and OnSite Follow Up Campaigns® are also registered trademarks of Retyp LLC.

    \n

    See our Press & Brand Assets page for more details.

    \n", "screenshots": "
    1. \"Select

      Select a Campaign type (popup, full screen, floating bar, slide-in, inline or Gamified)

    2. \"Create

      Create and customize your campaign with our easy drag-and-drop popup builder

    3. \"Smart

      Smart targeting and personalization

    4. \"The

      The most powerful targeting and display rules engine

    5. \"Boost

      Boost conversions and engagement with spin a wheel campaign (also called Gamification)

    6. \"Exit

      Exit popup template gallery

    7. \"Floating

      Floating Bar (aka Hello Bar / Sticky Bar) gallery

    8. \"Sidebar

      Sidebar newsletter opt-in form template gallery

    9. \"Reliable

      Reliable conversion analytics for OptinMonster campaigns

    10. \"Free

      Free access to OptinMonster University (marketing courses and guides)

    "}, "versions": {"trunk": "https://downloads.wordpress.org/plugin/optinmonster.zip", "2.13.8": "https://downloads.wordpress.org/plugin/optinmonster.2.13.8.zip", "2.14.0": "https://downloads.wordpress.org/plugin/optinmonster.2.14.0.zip", "2.14.1": "https://downloads.wordpress.org/plugin/optinmonster.2.14.1.zip", "2.15.0": "https://downloads.wordpress.org/plugin/optinmonster.2.15.0.zip", "2.15.1": "https://downloads.wordpress.org/plugin/optinmonster.2.15.1.zip", "2.15.2": "https://downloads.wordpress.org/plugin/optinmonster.2.15.2.zip", "2.15.3": "https://downloads.wordpress.org/plugin/optinmonster.2.15.3.zip", "2.16.0": "https://downloads.wordpress.org/plugin/optinmonster.2.16.0.zip", "2.16.1": "https://downloads.wordpress.org/plugin/optinmonster.2.16.1.zip", "2.16.2": "https://downloads.wordpress.org/plugin/optinmonster.2.16.2.zip", "2.16.3": "https://downloads.wordpress.org/plugin/optinmonster.2.16.3.zip", "2.16.4": "https://downloads.wordpress.org/plugin/optinmonster.2.16.4.zip", "2.16.5": "https://downloads.wordpress.org/plugin/optinmonster.2.16.5.zip", "2.16.6": "https://downloads.wordpress.org/plugin/optinmonster.2.16.6.zip", "2.16.7": "https://downloads.wordpress.org/plugin/optinmonster.2.16.7.zip", "2.16.8": "https://downloads.wordpress.org/plugin/optinmonster.2.16.8.zip", "2.16.9": "https://downloads.wordpress.org/plugin/optinmonster.2.16.9.zip", "2.16.10": "https://downloads.wordpress.org/plugin/optinmonster.2.16.10.zip", "2.16.11": "https://downloads.wordpress.org/plugin/optinmonster.2.16.11.zip", "2.16.12": "https://downloads.wordpress.org/plugin/optinmonster.2.16.12.zip", "2.16.13": "https://downloads.wordpress.org/plugin/optinmonster.2.16.13.zip", "2.16.14": "https://downloads.wordpress.org/plugin/optinmonster.2.16.14.zip", "2.16.15": "https://downloads.wordpress.org/plugin/optinmonster.2.16.15.zip", "2.16.16": "https://downloads.wordpress.org/plugin/optinmonster.2.16.16.zip", "2.16.17": "https://downloads.wordpress.org/plugin/optinmonster.2.16.17.zip", "2.16.18": "https://downloads.wordpress.org/plugin/optinmonster.2.16.18.zip", "2.16.19": "https://downloads.wordpress.org/plugin/optinmonster.2.16.19.zip", "2.16.20": "https://downloads.wordpress.org/plugin/optinmonster.2.16.20.zip", "2.16.21": "https://downloads.wordpress.org/plugin/optinmonster.2.16.21.zip"}, "downloaded": 128340867, "description": "

    🤩 Make popups & optin forms to get more email newsletter subscribers, leads, and sales – #1 most popular popup builder plugin! 🚀

    \n

    The Best Popup Builder for WordPress and Email Newsletter Popup Plugin

    \n

    OptinMonster is the best WordPress popup plugin and the most popular, too! Over 1.2 MILLION smart marketers like you trust us to make sure no good lead goes uncaptured!

    \n

    OptinMonster turns your website visitors into new leads, subscribers and sales.

    \n
    \n

    Excellent product and customer service
    \n “I love the product. I didn’t think popups were important, but with the seamless integration of other products such as MailChimp and WPForms, they are a winner! It makes it easier to collect data and leads. OptinMonster team is always ready to fix any problem you encounter when setting up the forms. They are patient, kind, and upbeat. They make life easier for those who are not developers. This plugin is a must for your business.”
    \n @sarana01

    \n
    \n

    \n

    OptinMonster’s easy-to-use popup maker makes creating pop-ups and email subscription forms, sticky floating bars, engaging spin-a-wheel campaigns, and interactive popups a breeze.

    \n

    And our mobile popups ensure that your marketing messages look great on all devices.

    \n

    …all WITHOUT needing a coder or designer…saving you time AND money.

    \n

    OptinMonster integrates with dozens of the most popular email marketing services, CRMs and eCommerce platforms including MailChimp, Hubspot, ConvertKit, Klaviyo, Keap/Infusionsoft, Active Campaign, WooCommerce, Easy Digital Downloads, MemberPress, Google Analytics and many others.

    \n

    If we don’t have a native integration with your marketing platform, we’ve got you covered still with one of our no-code integrations:

    \n
      \n
    • Copy/paste your form’s code using our Embedded Form block
    • \n
    • Embed WPForms, Gravity Forms, Formidable Forms, NinjaForms, CF7, or any other shortcode based form plugin for WordPress
    • \n
    • Use our powerful Webhooks to send lead information wherever you’d like
    • \n
    • Connect OptinMonster to Zapier
    • \n
    • Unlock hundreds of automations using Uncanny Automator for WordPress
    • \n
    \n

    Do all this and more without sacrificing website performance because we’ve optimized the OptinMonster popup builder for both web and server performance.

    \n

    And we have the best Customer Support team! With almost 800 five-star reviews on WordPress.org, award winning support (including optional live chat or video calls), our team is here to help you win and win more often!

    \n

    OptinMonster is a SaaS service and requires an OptinMonster account.
    \nWhen you install this plugin, you’ll get to register for a free account that includes 3 campaigns and up to 500 campaign impression credits. Those credits are yours forever. If you use all of them, your account will be upgraded so your campaigns continue to display. Of course, you can always control your upgrade preferences within your account.

    \n

    When you’re ready to explode your growth, try OptinMonster Pro to access more advanced solutions like Exit-Intent, Campaign Scheduling, Countdown Timers and more.

    \n

    Here’s why smart business owners, designers, and developers love OptinMonster!

    \n

    Easy Pop-up Builder From OptinMonster Increase Conversions

    \n
      \n
    • Lightbox Popups – Easily create custom popups to grow your email list, show coupons, make a WooCommerce cross-sell or WooCommerce upsell campaign, and more using our popup maker.
    • \n
    • Floating Bar Popups – Create sticky header bars, hello bars and floating bars to show free shipping notices, website announcement alert, sale countdown timer, and more.
    • \n
    • Slide-in Popups – Create scroll box popups that slide out from bottom of the screen to highlight your offer, like WooCommerce upsells, related posts, and coupon codes.
    • \n
    • Fullscreen Welcome Mats – Create full screen popups and welcome mats to focus your visitor’s attention on your best offer.
    • \n
    • Gamified Spin a Wheel Popup – Create coupon wheel optins to increase your store’s conversions with gamification.
    • \n
    • Inline Signup Forms – Unlike a popup, inline newsletter signup forms can be embedded anywhere inside your page content, or automatically at the start or end of each post.
    • \n
    • Sidebar Forms – Add an email newsletter signup form in your blog’s sidebar to get more subscribers using a shortcode or Gutenberg block.
    • \n
    • Content Locker Popups – Turn any inline campaign into a content locker or gated content with our easy to use inline optins.
    • \n
    • Countdown Timers – Boost urgency and scarcity for limited time offers with countdown timers (great for sales promotion, live events, webinars, and product launches). Both static and evergreen timers included.
    • \n
    • Yes / No Popups – Create multi-step, progressive optins that results in better list segmentation and higher marketing conversions.
    • \n
    • Mobile Popups – Create mobile-specific popups that are only shown to users on smart phones and tablets. Great for mobile app downloads or making specific offers to your mobile visitors.
    • \n
    • Canvas Custom Popup – Create campaigns from scratch using our drag & drop popup builder for any use case.
    • \n
    • AI Popups Smart Optimizations – Our Smart Optimizations use proven, time-tested, high-converting copywriting principles and Artificial Intelligence (AI) to automatically improve the copy present within a text block.
    • \n
    \n

    Our Drag and Drop Popup Maker and Popup Templates Make It Easy

    \n

    Easily customize the look and feel of your campaigns, and even add dynamic elements like countdown timers, spin a wheel, etc that change based on user behavior (no code necessary).

    \n

    OptinMonster comes with hundreds of popup templates to help you save time, far more than competitors like Popup Builder, Popup Maker, Icegram (sometimes called Ice Gram), Sumo or Hustle. Easily search them by your industry, business goal, holiday or features.

    \n
    \n

    I have never before seen such effectiveness and efficiency in an optin tool than I have with OptinMonster. In under 2 hours of work, I doubled my daily optin rates thanks to OptinMonster’s incredible options.
    \n Dave Chesson, Owner of Kindlepreneur See Case Study

    \n
    \n

    Exit Intent Popups and OnSite Retargeting

    \n

    Did you know that over 70% of visitors abandoning your website will never return?

    \n

    OptinMonster’s signature exit-intent popup technology can help you convert abandoning visitors into subscribers and customers.

    \n

    With exit intent popups, visitors see a popup message with your best offer at the precise moment they’re about to leave.

    \n

    Exit popups are proven to convert an additional 2 – 4% of your visitors into email subscribers and paying customers.

    \n

    You can use exit intent popups combined with OnSite Retargeting to show different popup messages to new visitors vs returning visitors.

    \n

    These advanced popup triggers are highly effective in growing your email list, reducing cart abandonment, and saving you moeny on PPC advertising and retargeting ads.

    \n
    \n

    In only 7 months, we added more than 95,000 names to our email list using OptinMonster’s Exit Intent™ technology. We strongly recommend it!
    \n Michael Stelzner, Founder of Social Media Examiner See Case Study

    \n
    \n

    Smart Page Targeting and Behavior Based Personalization

    \n

    And the best WordPress popup plugin comes with advanced page targeting and behavior based personalization, too!

    \n

    This means you can show a popup for specific page or section of your site, or based on users’ geolocation, or even when a visitor clicks a specific link…and so much more.

    \n

    You can even show unique popups based on user’s past behavior such as: have they clicked on an existing marketing popup, seen another popup campaign, closed a marketing popup, viewed X number of pages, etc.

    \n

    These personalization features of OptinMonster popups make them highly effective in improving your lead generation, increasing subscribers, and growing sales.

    \n
    \n

    Using OptinMonster, I was able to increase sales $55,000 after capturing nearly 7% more leads with a single optin!
    \n Cole Joseph, Owner of Cole’s Classroom See Case Study

    \n
    \n

    Popup A/B Testing, Email Marketing Integrations, and Popup Analytics

    \n

    Unlike other WordPress lead generation plugins, OptinMonster comes with reliable A/B split testing and accurate analytics without slowing down your site.

    \n

    Most of them use wp-ajax to setup analytics. This slows down your site and also results in unreliable analytics due to cache plugin settings.

    \n

    Similarly, A/B testing in a most WordPress popup plugins is broken because caching plugins can skew the data.

    \n

    We fixed both these issues with our superior infrastructure, so you can have reliable A/B testing for popups, accurate conversion analytics, and seamless email marketing / CRM integrations for your marketing (bonus: lead storage & lead backup are included, too).

    \n

    Credits

    \n

    This WordPress popup plugin is created by Thomas Griffin and Syed Balkhi.

    \n

    Branding Guideline

    \n

    OptinMonster® is a registered trademark of Retyp LLC. When writing about the popup plugin by OptinMonster, please make sure to uppercase the letter O and M.

    \n
      \n
    • OptinMonster (correct)
    • \n
    • Optin Monster (incorrect)
    • \n
    • optinmonster (incorrect)
    • \n
    • optin monster (incorrect)
    • \n
    \n

    Exit-Intent®, OnSite Retargeting®, and OnSite Follow Up Campaigns® are also registered trademarks of Retyp LLC.

    \n

    See our Press & Brand Assets page for more details.

    \n", "donate_link": "", "num_ratings": 793, "screenshots": {"1": {"src": "https://ps.w.org/optinmonster/assets/screenshot-1.png?rev=2311621", "caption": "Select a Campaign type (popup, full screen, floating bar, slide-in, inline or Gamified)"}, "2": {"src": "https://ps.w.org/optinmonster/assets/screenshot-2.png?rev=2311621", "caption": "Create and customize your campaign with our easy drag-and-drop popup builder"}, "3": {"src": "https://ps.w.org/optinmonster/assets/screenshot-3.png?rev=2311621", "caption": "Smart targeting and personalization"}, "4": {"src": "https://ps.w.org/optinmonster/assets/screenshot-4.png?rev=2311621", "caption": "The most powerful targeting and display rules engine"}, "5": {"src": "https://ps.w.org/optinmonster/assets/screenshot-5.png?rev=2311627", "caption": "Boost conversions and engagement with spin a wheel campaign (also called Gamification)"}, "6": {"src": "https://ps.w.org/optinmonster/assets/screenshot-6.png?rev=2311627", "caption": "Exit popup template gallery"}, "7": {"src": "https://ps.w.org/optinmonster/assets/screenshot-7.png?rev=2311627", "caption": "Floating Bar (aka Hello Bar / Sticky Bar) gallery"}, "8": {"src": "https://ps.w.org/optinmonster/assets/screenshot-8.png?rev=2311627", "caption": "Sidebar newsletter opt-in form template gallery"}, "9": {"src": "https://ps.w.org/optinmonster/assets/screenshot-9.png?rev=2311627", "caption": "Reliable conversion analytics for OptinMonster campaigns"}, "10": {"src": "https://ps.w.org/optinmonster/assets/screenshot-10.png?rev=2311627", "caption": "Free access to OptinMonster University (marketing courses and guides)"}}, "support_url": "https://wordpress.org/support/plugin/optinmonster/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "griffinjt": {"avatar": "https://secure.gravatar.com/avatar/542c93f45f2a6622d0929c5cdd26e24b43222d78c2bd4e25c30cec6f3ea354d8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/griffinjt/", "display_name": "Thomas Griffin"}, "optinmonster": {"avatar": "https://secure.gravatar.com/avatar/5fad155ba0587fa8414132160d67525e42725758a3293d12cee3b20ed4734f3f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/optinmonster/", "display_name": "OptinMonster"}}, "last_updated": "2025-10-03 5:48pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/optinmonster.2.16.21.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f884-7231-8a2f-979c1a24d693", "name": "Popup Builder & Popup Maker for WordPress – OptinMonster Email Marketing and Lead Generation", "slug": "optinmonster", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1759513680, "version": "2.16.21"}, "support_threads": 24, "requires_plugins": [], "short_description": "🤩 Make popups & optin forms to get more email newsletter subscribers, leads, and sales - #1 most popular popup builder plugin! 🚀", "author_block_count": 1, "author_block_rating": 86, "commercial_support_url": "", "support_threads_resolved": 23}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1cfe-72a7-9498-40f6059c014e', 'did:web:api.aspiredev.org:packages:wp-plugin:polylang', 'polylang', 'Polylang', '

    With Polylang fully integrated to WordPress and using only its built-in core features (taxonomies), keep steady performances on your site and create a multilingual site featuring from just one extra language to 10 or more depending on your needs. There is no limit in the number of languages added and WordPress’ language packs are automatically downloaded when ready.

    -

    Features

    -

    Depending on the type of site you have built or are planning to build, a combination of plugins from the list below might be of interest.
    -All plugins include a wizard allowing to setup them in just a few clicks.

    -

    Polylang

    -

    Polylang and Polylang Pro share the same core providing features such as:

    -
      -
    • Translating posts, pages, media, categories, post tags, custom post types and taxonomies, RSS feeds; RTL scripts are supported.
    • -
    • The language is either set by the language code in URL, or you can use a different sub-domain or domain per language.
    • -
    • Automatic copy of categories, post tags and other metas when creating a new post or page translation.
    • -
    • Translating classic menus and classic widgets. Also accessible with Site Editor Classic Features in block themes.
    • -
    • Customizable language switcher available as a classic widget or a classic navigation menu item.
    • -
    • Compatibility with Yoast SEO.
    • -
    -

    Polylang Pro

    -

    Helps optimizing the time spent translating your site with some very useful extra features such as:

    -
      -
    • Better integration in the new Block Editor.
    • -
    • Language switcher available as a block.
    • -
    • Language options available in the widget block editor.
    • -
    • Template parts translatable in the site editor (FSE).
    • -
    • Duplicate and/or synchronize content across post translations.
    • -
    • Improved compatibility with other plugins such as ACF Pro.
    • -
    • Share the same URL slug for posts or terms across languages.
    • -
    • Translate URL slugs for categories, author bases, custom post types and more…
    • -
    • Machine translation with DeepL.
    • -
    • Export and import of content in XLIFF format for outsourced professional translation.
    • -
    • Access to a Premium Support for personalized assistance.
    • -
    -

    Polylang for WooCommerce

    -

    Add-on for the compatibility with WooCommerce which provides features such as:

    -
      -
    • Translating WooCommerce pages (shop, check-out, cart, my account), product categories and global attribute terms directly in the WooCommerce interface.
    • -
    • Translating WooCommerce e-mails and sending them to customers in their language.
    • -
    • Products metadata synchronization.
    • -
    • Compatibility with the native WooCommerce CSV import & export tool.
    • -
    • Compatibility with popular plugins such as WooCommerce Subscriptions, Product Bundles, WooCommerce Bookings, Shipment Tracking and more.
    • -
    • Ability to use the WooCommerce REST API (available with Polylang Pro).
    • -
    • Access to a Premium Support for personalized assistance.
    • -
    -

    Our other free plugins

    - -

    Credits

    -

    Thanks a lot to all translators who help translating Polylang.
    -Thanks a lot to Alex Lopez for the design of the logo.
    -Most of the flags included with Polylang are coming from famfamfam and are public domain.
    -Wherever third party code has been used, credit has been given in the code’s comments.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Polylang", "slug": "polylang", "tags": {"language": "language", "translate": "translate", "translation": "translation", "localization": "localization", "multilingual": "multilingual"}, "added": "2011-09-22", "icons": {"1x": "https://ps.w.org/polylang/assets/icon-128x128.png?rev=1331499", "2x": "https://ps.w.org/polylang/assets/icon-256x256.png?rev=1331499"}, "author": "Chouby", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/polylang/assets/banner-772x250.png?rev=1405299", "high": "https://ps.w.org/polylang/assets/banner-1544x500.png?rev=1405299"}, "ratings": {"1": 131, "2": 33, "3": 42, "4": 98, "5": 2558}, "version": "3.7.4", "homepage": "https://polylang.pro", "requires": "6.2", "sections": {"faq": "\n
    \nWhere to find help ?\n\n

    \n

    \n

    \n
    \nIs Polylang compatible with WooCommerce?\n\n

    \n

    \n

    \n
    \nWhere do I report security bugs found in this plugin?\n\n

    \n

      \n
    • Please report security bugs found in the source code of the Polylang plugin through the Patchstack Vulnerability Disclosure Program. The Patchstack team will assist you with verification, CVE assignment, and notify the developers of this plugin.
    • \n
    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A plugin that always works!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Staffan_Torner on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I hav used this plugin for many years, it just goes on working and working and .......

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works perfectly

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy crestanads on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    No issues whatsoever....

    \n\n\n\n

    Elementor connector works perfectly as well

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy felizycontento on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    And easy to use

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Ottimo plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mattadm on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Semplice e funziona molto bene. Prendero'' anche quello per woocommerce.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy actifred on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using this plugin for years. Still loving it !

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anitme6619 on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its really easy for non-techs like me. Also, they don''t charge for additional languages like their competitors.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Veikia puikiai!!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Marius (trakas) on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Veikia puikiai!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Multilingual Website without extra cost.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Radwan Hallak (rdwan hlak) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin makes creating a multilingual website extremely easy, and at no extra cost. Thank you for your efforts.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    it's working Awesome!!! :)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dorafatih on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    it''s working Awesome, thank u so much :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iz0kba on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    OK

    \n
    \n
    \n", "changelog": "

    3.7.4 (2025-10-28)

    \n
      \n
    • Pro: Security: Fix a ReDoS vulnerability reported by Janine Moreira.
    • \n
    • Security: Fix deserialization of untrusted data reported by Phat RiO – BlueRock via Patchstack.
    • \n
    \n

    3.7.3 (2025-06-16)

    \n
      \n
    • Pro: Always display ACF translation settings for field groups formerly translated in versions older than 3.7
    • \n
    • Pro: Fix translation displayed in child fields of ACF layout fields when they should not
    • \n
    • Pro: Fix translation of the ACF field “Choice” when the translation is set to “Copy once” or “Synchronize”
    • \n
    • Pro: Fix a PHP warning when translating some blocks
    • \n
    • Pro: Fix impossibility to change the language of an empty post in the block editor
    • \n
    • Fix duplicate values in options #1672
    • \n
    • Fix JS error in media library (grid view) #1674
    • \n
    • Fix language dropdown not present in the media modal accessible from the media library grid view #1675
    • \n
    • Fix DB error introduce by WooCommerce 9.9 #1681
    • \n
    \n

    3.7.2 (2025-05-27)

    \n
      \n
    • Pro: Require ACF 6.0+ to activate the integration to avoid fatal errors with older versions
    • \n
    • Pro: Add a new ACF field group setting to decide if translations instructions must be displayed
    • \n
    • Pro: Fix a fatal error when using ACF blocks with ACF < 6.3.0
    • \n
    • Pro: Fix regression preventing to translate Oembed, URL and Email ACF fields
    • \n
    • Pro: Fix ACF fields not translated when they have a default value
    • \n
    • Pro: Fix empty ACF fields values not copied when the field has a default value
    • \n
    • Pro: Fix ACF field default values not translated when copying a post
    • \n
    • Pro: Fix possible fatal error if invalid types of data are sent for machine translation
    • \n
    • Pro: Fix term meta removed when a term is machine translated
    • \n
    • Fix nav menu locations not saved if invalid data are stored in database #1659
    • \n
    • Fix parent relationship removed when a new translated term is created without parent #1671
    • \n
    \n

    3.7.1 (2025-05-05)

    \n
      \n
    • Pro: Do not display ACF fields translations settings when language location is set.
    • \n
    • Pro: Fix ACF taxonomy field terms not synchronized when “Save Terms” and “load terms” settings are activated.
    • \n
    • Pro: Fix duplicate options when using numeric keys for ACF choice fields.
    • \n
    \n

    3.7 (2025-04-22)

    \n
      \n
    • Requires PHP 7.2 as minimum version
    • \n
    • Pro: Add DeepL machine translation for strings
    • \n
    • Pro: Consider Polylang Pro as equivalent to Polylang for plugin dependencies
    • \n
    • Pro: Add the details block and several labels in other blocks to XLIFF files and machine translation
    • \n
    • Pro: Allow to translate metas stored as objects
    • \n
    • Pro: Enhanced multilingual support of archive template hierarchy
    • \n
    • Pro: Wrap the language switcher block in a nav tag
    • \n
    • Pro: Support automatic IDs translation in blocks with new filters pll_sync_block_rules_for_attributes and pll_sync_blocks_xpath_rules
    • \n
    • Pro: Complete rewrite of ACF integration
    • \n
    • Pro: Add support for ACF blocks, post types and taxonomies.
    • \n
    • Pro: Remove the possibility to translate ACF field groups
    • \n
    • Pro: Add languages in ACF locations
    • \n
    • Pro: Add translation of ACF labels in the strings translations page
    • \n
    • Pro: Fix incorrect count of translated strings when importing strings translations
    • \n
    • Pro: Fix incorrect translation when an XLIFF import updates a term sharing its slug
    • \n
    • Pro: Fix term hierarchy with machine translation
    • \n
    • Pro: Fix indented items of a list block not translated with machine translation
    • \n
    • Pro: Fix navigation block inserted in the wrong language
    • \n
    • Update plugin updater to 1.9.4
    • \n
    • Add translation of widgets custom html in strings translations #1423
    • \n
    • Refactor core to manage the plugin options in an object #1451
    • \n
    • Refactor core to give access to languages management in all contexts #1503
    • \n
    • Remove the language set from the content option for new installs #1517
    • \n
    • Allow numbers in language codes #1546
    • \n
    • Display empty fields in the translations table for untranslated strings (instead of duplicating the original) #1574
    • \n
    • Add REST API endpoints to manage options and languages #1505 #1569
    • \n
    • Improve performance by registering the language taxonomy only once #1359
    • \n
    • Add new API functions to insert and update posts and terms in a given language #1500 #1520
    • \n
    • Add compatibility with jQuery 4 (planned in core for WP 6.8) #1612
    • \n
    • Fix translations not loaded when the language is set from the content #1395
    • \n
    • Fix possible term duplication #1490
    • \n
    • Fix sanitization of translated options that may impact other strings #1571
    • \n
    • Fix home link block not translated #1647
    • \n
    • Fix a conflict with WooCommerce Price Based on Country #1638
    • \n
    \n

    See changelog.txt for older changelog

    \n", "description": "

    With Polylang fully integrated to WordPress and using only its built-in core features (taxonomies), keep steady performances on your site and create a multilingual site featuring from just one extra language to 10 or more depending on your needs. There is no limit in the number of languages added and WordPress’ language packs are automatically downloaded when ready.

    \n

    Features

    \n

    Depending on the type of site you have built or are planning to build, a combination of plugins from the list below might be of interest.
    \nAll plugins include a wizard allowing to setup them in just a few clicks.

    \n

    Polylang

    \n

    Polylang and Polylang Pro share the same core providing features such as:

    \n
      \n
    • Translating posts, pages, media, categories, post tags, custom post types and taxonomies, RSS feeds; RTL scripts are supported.
    • \n
    • The language is either set by the language code in URL, or you can use a different sub-domain or domain per language.
    • \n
    • Automatic copy of categories, post tags and other metas when creating a new post or page translation.
    • \n
    • Translating classic menus and classic widgets. Also accessible with Site Editor Classic Features in block themes.
    • \n
    • Customizable language switcher available as a classic widget or a classic navigation menu item.
    • \n
    • Compatibility with Yoast SEO.
    • \n
    \n

    Polylang Pro

    \n

    Helps optimizing the time spent translating your site with some very useful extra features such as:

    \n
      \n
    • Better integration in the new Block Editor.
    • \n
    • Language switcher available as a block.
    • \n
    • Language options available in the widget block editor.
    • \n
    • Template parts translatable in the site editor (FSE).
    • \n
    • Duplicate and/or synchronize content across post translations.
    • \n
    • Improved compatibility with other plugins such as ACF Pro.
    • \n
    • Share the same URL slug for posts or terms across languages.
    • \n
    • Translate URL slugs for categories, author bases, custom post types and more…
    • \n
    • Machine translation with DeepL.
    • \n
    • Export and import of content in XLIFF format for outsourced professional translation.
    • \n
    • Access to a Premium Support for personalized assistance.
    • \n
    \n

    Polylang for WooCommerce

    \n

    Add-on for the compatibility with WooCommerce which provides features such as:

    \n
      \n
    • Translating WooCommerce pages (shop, check-out, cart, my account), product categories and global attribute terms directly in the WooCommerce interface.
    • \n
    • Translating WooCommerce e-mails and sending them to customers in their language.
    • \n
    • Products metadata synchronization.
    • \n
    • Compatibility with the native WooCommerce CSV import & export tool.
    • \n
    • Compatibility with popular plugins such as WooCommerce Subscriptions, Product Bundles, WooCommerce Bookings, Shipment Tracking and more.
    • \n
    • Ability to use the WooCommerce REST API (available with Polylang Pro).
    • \n
    • Access to a Premium Support for personalized assistance.
    • \n
    \n

    Our other free plugins

    \n\n

    Credits

    \n

    Thanks a lot to all translators who help translating Polylang.
    \nThanks a lot to Alex Lopez for the design of the logo.
    \nMost of the flags included with Polylang are coming from famfamfam and are public domain.
    \nWherever third party code has been used, credit has been given in the code’s comments.

    \n", "screenshots": "
    1. \"The

      The Polylang languages admin panel

    2. \"The

      The Strings translations admin panel

    3. \"Multilingual

      Multilingual media library

    4. \"The

      The Edit Post screen with the Languages metabox

    ", "installation": "
      \n
    1. Make sure you are using WordPress 6.2 or later and that your server is running PHP 7.2 or later (same requirement as WordPress itself).
    2. \n
    3. If you tried other multilingual plugins, deactivate them before activating Polylang, otherwise, you may get unexpected results!
    4. \n
    5. Install and activate the plugin as usual from the ‘Plugins’ menu in WordPress.
    6. \n
    7. The setup wizard is automatically launched to help you get started more easily with Polylang by configuring the main features.
    8. \n
    \n"}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/polylang.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/polylang.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/polylang.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/polylang.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/polylang.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/polylang.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/polylang.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/polylang.0.8.zip", "0.9": "https://downloads.wordpress.org/plugin/polylang.0.9.zip", "1.0": "https://downloads.wordpress.org/plugin/polylang.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/polylang.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/polylang.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/polylang.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/polylang.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/polylang.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/polylang.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/polylang.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/polylang.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/polylang.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/polylang.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/polylang.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/polylang.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/polylang.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/polylang.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/polylang.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/polylang.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/polylang.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/polylang.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/polylang.2.9.zip", "3.0": "https://downloads.wordpress.org/plugin/polylang.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/polylang.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/polylang.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/polylang.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/polylang.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/polylang.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/polylang.3.6.zip", "3.7": "https://downloads.wordpress.org/plugin/polylang.3.7.zip", "0.3.1": "https://downloads.wordpress.org/plugin/polylang.0.3.1.zip", "0.3.2": "https://downloads.wordpress.org/plugin/polylang.0.3.2.zip", "0.4.1": "https://downloads.wordpress.org/plugin/polylang.0.4.1.zip", "0.4.2": "https://downloads.wordpress.org/plugin/polylang.0.4.2.zip", "0.4.3": "https://downloads.wordpress.org/plugin/polylang.0.4.3.zip", "0.4.4": "https://downloads.wordpress.org/plugin/polylang.0.4.4.zip", "0.5.1": "https://downloads.wordpress.org/plugin/polylang.0.5.1.zip", "0.6.1": "https://downloads.wordpress.org/plugin/polylang.0.6.1.zip", "0.7.1": "https://downloads.wordpress.org/plugin/polylang.0.7.1.zip", "0.7.2": "https://downloads.wordpress.org/plugin/polylang.0.7.2.zip", "0.8.1": "https://downloads.wordpress.org/plugin/polylang.0.8.1.zip", "0.8.2": "https://downloads.wordpress.org/plugin/polylang.0.8.2.zip", "0.8.3": "https://downloads.wordpress.org/plugin/polylang.0.8.3.zip", "0.8.4": "https://downloads.wordpress.org/plugin/polylang.0.8.4.zip", "0.8.6": "https://downloads.wordpress.org/plugin/polylang.0.8.6.zip", "0.8.7": "https://downloads.wordpress.org/plugin/polylang.0.8.7.zip", "0.8.8": "https://downloads.wordpress.org/plugin/polylang.0.8.8.zip", "0.8.9": "https://downloads.wordpress.org/plugin/polylang.0.8.9.zip", "0.9.1": "https://downloads.wordpress.org/plugin/polylang.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/polylang.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/polylang.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/polylang.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/polylang.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/polylang.0.9.6.zip", "0.9.8": "https://downloads.wordpress.org/plugin/polylang.0.9.8.zip", "1.0.1": "https://downloads.wordpress.org/plugin/polylang.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/polylang.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/polylang.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/polylang.1.0.4.zip", "1.1.1": "https://downloads.wordpress.org/plugin/polylang.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/polylang.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/polylang.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/polylang.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/polylang.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/polylang.1.1.6.zip", "1.2.1": "https://downloads.wordpress.org/plugin/polylang.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/polylang.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/polylang.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/polylang.1.2.4.zip", "1.3.1": "https://downloads.wordpress.org/plugin/polylang.1.3.1.zip", "1.4.1": "https://downloads.wordpress.org/plugin/polylang.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/polylang.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/polylang.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/polylang.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/polylang.1.4.5.zip", "1.5.1": "https://downloads.wordpress.org/plugin/polylang.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/polylang.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/polylang.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/polylang.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/polylang.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/polylang.1.5.6.zip", "1.6.1": "https://downloads.wordpress.org/plugin/polylang.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/polylang.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/polylang.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/polylang.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/polylang.1.6.5.zip", "1.7.1": "https://downloads.wordpress.org/plugin/polylang.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/polylang.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/polylang.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/polylang.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/polylang.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/polylang.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/polylang.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/polylang.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/polylang.1.7.9.zip", "1.8.1": "https://downloads.wordpress.org/plugin/polylang.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/polylang.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/polylang.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/polylang.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/polylang.1.8.5.zip", "1.9.1": "https://downloads.wordpress.org/plugin/polylang.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/polylang.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/polylang.1.9.3.zip", "2.0.1": "https://downloads.wordpress.org/plugin/polylang.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/polylang.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/polylang.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/polylang.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/polylang.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/polylang.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/polylang.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/polylang.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/polylang.2.0.9.zip", "2.1.1": "https://downloads.wordpress.org/plugin/polylang.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/polylang.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/polylang.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/polylang.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/polylang.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/polylang.2.1.6.zip", "2.2.1": "https://downloads.wordpress.org/plugin/polylang.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/polylang.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/polylang.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/polylang.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/polylang.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/polylang.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/polylang.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/polylang.2.2.8.zip", "2.3.1": "https://downloads.wordpress.org/plugin/polylang.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/polylang.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/polylang.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/polylang.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/polylang.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/polylang.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/polylang.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/polylang.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/polylang.2.3.9.zip", "2.4.1": "https://downloads.wordpress.org/plugin/polylang.2.4.1.zip", "2.5.1": "https://downloads.wordpress.org/plugin/polylang.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/polylang.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/polylang.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/polylang.2.5.4.zip", "2.6.1": "https://downloads.wordpress.org/plugin/polylang.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/polylang.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/polylang.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/polylang.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/polylang.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/polylang.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/polylang.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/polylang.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/polylang.2.6.9.zip", "2.7.1": "https://downloads.wordpress.org/plugin/polylang.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/polylang.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/polylang.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/polylang.2.7.4.zip", "2.8.1": "https://downloads.wordpress.org/plugin/polylang.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/polylang.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/polylang.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/polylang.2.8.4.zip", "2.9.1": "https://downloads.wordpress.org/plugin/polylang.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/polylang.2.9.2.zip", "3.0.1": "https://downloads.wordpress.org/plugin/polylang.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/polylang.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/polylang.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/polylang.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/polylang.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/polylang.3.0.6.zip", "3.1.1": "https://downloads.wordpress.org/plugin/polylang.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/polylang.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/polylang.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/polylang.3.1.4.zip", "3.2.1": "https://downloads.wordpress.org/plugin/polylang.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/polylang.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/polylang.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/polylang.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/polylang.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/polylang.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/polylang.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/plugin/polylang.3.2.8.zip", "3.3.1": "https://downloads.wordpress.org/plugin/polylang.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/polylang.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/polylang.3.3.3.zip", "3.4.1": "https://downloads.wordpress.org/plugin/polylang.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/polylang.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/polylang.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/polylang.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/polylang.3.4.5.zip", "3.5.1": "https://downloads.wordpress.org/plugin/polylang.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/polylang.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/polylang.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/polylang.3.5.4.zip", "3.6.1": "https://downloads.wordpress.org/plugin/polylang.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/polylang.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/polylang.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/polylang.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/polylang.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/polylang.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/polylang.3.6.7.zip", "3.7.1": "https://downloads.wordpress.org/plugin/polylang.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/polylang.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/polylang.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/plugin/polylang.3.7.4.zip", "trunk": "https://downloads.wordpress.org/plugin/polylang.zip", "0.8.10": "https://downloads.wordpress.org/plugin/polylang.0.8.10.zip", "1.7.10": "https://downloads.wordpress.org/plugin/polylang.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/plugin/polylang.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/plugin/polylang.1.7.12.zip", "2.0.10": "https://downloads.wordpress.org/plugin/polylang.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/polylang.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/polylang.2.0.12.zip", "2.3.10": "https://downloads.wordpress.org/plugin/polylang.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/plugin/polylang.2.3.11.zip", "2.6.10": "https://downloads.wordpress.org/plugin/polylang.2.6.10.zip", "2.7.0.1": "https://downloads.wordpress.org/plugin/polylang.2.7.0.1.zip"}, "downloaded": 23942524, "description": "

    With Polylang fully integrated to WordPress and using only its built-in core features (taxonomies), keep steady performances on your site and create a multilingual site featuring from just one extra language to 10 or more depending on your needs. There is no limit in the number of languages added and WordPress’ language packs are automatically downloaded when ready.

    \n

    Features

    \n

    Depending on the type of site you have built or are planning to build, a combination of plugins from the list below might be of interest.
    \nAll plugins include a wizard allowing to setup them in just a few clicks.

    \n

    Polylang

    \n

    Polylang and Polylang Pro share the same core providing features such as:

    \n
      \n
    • Translating posts, pages, media, categories, post tags, custom post types and taxonomies, RSS feeds; RTL scripts are supported.
    • \n
    • The language is either set by the language code in URL, or you can use a different sub-domain or domain per language.
    • \n
    • Automatic copy of categories, post tags and other metas when creating a new post or page translation.
    • \n
    • Translating classic menus and classic widgets. Also accessible with Site Editor Classic Features in block themes.
    • \n
    • Customizable language switcher available as a classic widget or a classic navigation menu item.
    • \n
    • Compatibility with Yoast SEO.
    • \n
    \n

    Polylang Pro

    \n

    Helps optimizing the time spent translating your site with some very useful extra features such as:

    \n
      \n
    • Better integration in the new Block Editor.
    • \n
    • Language switcher available as a block.
    • \n
    • Language options available in the widget block editor.
    • \n
    • Template parts translatable in the site editor (FSE).
    • \n
    • Duplicate and/or synchronize content across post translations.
    • \n
    • Improved compatibility with other plugins such as ACF Pro.
    • \n
    • Share the same URL slug for posts or terms across languages.
    • \n
    • Translate URL slugs for categories, author bases, custom post types and more…
    • \n
    • Machine translation with DeepL.
    • \n
    • Export and import of content in XLIFF format for outsourced professional translation.
    • \n
    • Access to a Premium Support for personalized assistance.
    • \n
    \n

    Polylang for WooCommerce

    \n

    Add-on for the compatibility with WooCommerce which provides features such as:

    \n
      \n
    • Translating WooCommerce pages (shop, check-out, cart, my account), product categories and global attribute terms directly in the WooCommerce interface.
    • \n
    • Translating WooCommerce e-mails and sending them to customers in their language.
    • \n
    • Products metadata synchronization.
    • \n
    • Compatibility with the native WooCommerce CSV import & export tool.
    • \n
    • Compatibility with popular plugins such as WooCommerce Subscriptions, Product Bundles, WooCommerce Bookings, Shipment Tracking and more.
    • \n
    • Ability to use the WooCommerce REST API (available with Polylang Pro).
    • \n
    • Access to a Premium Support for personalized assistance.
    • \n
    \n

    Our other free plugins

    \n\n

    Credits

    \n

    Thanks a lot to all translators who help translating Polylang.
    \nThanks a lot to Alex Lopez for the design of the logo.
    \nMost of the flags included with Polylang are coming from famfamfam and are public domain.
    \nWherever third party code has been used, credit has been given in the code’s comments.

    \n", "donate_link": "https://polylang.pro", "num_ratings": 2862, "screenshots": {"1": {"src": "https://ps.w.org/polylang/assets/screenshot-1.png?rev=2112857", "caption": "The Polylang languages admin panel"}, "2": {"src": "https://ps.w.org/polylang/assets/screenshot-2.png?rev=2112857", "caption": "The Strings translations admin panel"}, "3": {"src": "https://ps.w.org/polylang/assets/screenshot-3.png?rev=2112857", "caption": "Multilingual media library"}, "4": {"src": "https://ps.w.org/polylang/assets/screenshot-4.png?rev=2112857", "caption": "The Edit Post screen with the Languages metabox"}}, "support_url": "https://wordpress.org/support/plugin/polylang/", "contributors": {"hugod": {"avatar": "https://secure.gravatar.com/avatar/556f6768aac8ac41c10bbd94e13fc8138dff1cbe93a7d01a4bcc5d0849ab4fca?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hugod/", "display_name": "hugod"}, "chouby": {"avatar": "https://secure.gravatar.com/avatar/c19c76940ef74dd439615510fff31c11e2d8705d1ac7670751f977fbc6039013?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/chouby/", "display_name": "Chouby"}, "greglone": {"avatar": "https://secure.gravatar.com/avatar/3d25b0c1eb9fcced32d65850b410cb6e79c3f4da5e1d1384a748f4f875a5c1a9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/greglone/", "display_name": "Grégory Viguier"}, "manooweb": {"avatar": "https://secure.gravatar.com/avatar/22c1d1e3a0b0a0152de2a83803bda81e9ce31822e7e55af8f538d9e9849a62b6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/manooweb/", "display_name": "Emmanuel Hesry"}, "raaaahman": {"avatar": "https://secure.gravatar.com/avatar/a428d9aac98a5dc55c6a3e26fa726d06bd08300a9107f1a233d5eb6bf6663e04?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/raaaahman/", "display_name": "Sylvain Schellenberger"}, "marianne38": {"avatar": "https://secure.gravatar.com/avatar/f29207ae437a1a8c8edf4533897c1e806d9a3683ee15036257daeb2f6b6cc76a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/marianne38/", "display_name": "Marianne"}, "sebastienserre": {"avatar": "https://secure.gravatar.com/avatar/93b9a9f3752143c427cca75c28708b41b9943f3a2d82ffedaa90f14a2d6f1a18?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sebastienserre/", "display_name": "Sébastien SERRE"}}, "last_updated": "2025-10-28 5:16pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/polylang.3.7.4.zip", "author_profile": "https://profiles.wordpress.org/chouby/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-f87a-737d-aacc-0a2ec37f451f", "name": "Polylang", "slug": "polylang", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761671760, "version": "3.7.4"}, "support_threads": 25, "requires_plugins": [], "short_description": "Go multilingual in a simple and efficient way. Keep writing posts and taxonomy terms as usual while defining their languages all at once.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 8}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1d0d-7149-83f3-621bd3d8644b', 'did:web:api.aspiredev.org:packages:wp-plugin:popup-maker', 'popup-maker', 'Popup Maker – Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popups Builder', '

    📈 Drive More Sales, Leads & Email List Opt-Ins Using Popup Maker

    -

    Popup Maker™, rated as the best WordPress popup plugin by our community of 780,000+ users, empowers you to create stunning popups, modals, and overlays in minutes. Whether you’re a beginner or a pro, our versatile toolkit makes it easy to boost your WordPress site’s engagement.

    -

    Transform your WordPress site into a conversion powerhouse! Create targeted campaigns using popups, exit-intent forms, slide-ins, and smart banners to skyrocket your revenue and build your email list faster than ever.

    -
    -

    We switched to Popup Maker for our popups and couldn’t be happier.

    -

    “We recommend it to all our clients too. Popup Maker is an essential piece of our website for maximizing growing our email list, increasing sales conversions, and guiding users with strategic calls to action. Great support too.”

    -

    ~ Chris Badgett, LifterLMS CEO

    -
    -

    🔥 Ready to get started?

    -

    👉 Visit Our Website – Explore all features & pricing
    -👉 Join Our Conversion Optimization Community – Share strategies & learn from experts
    -👉 Read Our Guides – Learn popup best practices
    -👉 Get Help – World-class support when you need it

    -

    🎬 See What’s Possible with Popup Maker

    -

    -

    Stunning examples of what you can create in Popup Maker (View Video)

    -

    🛠️ Ultimate WordPress Popup Builder: Every Type of Conversion Popup at Your Fingertips

    -

    With Popup Maker, you have the ultimate popup builder toolkit at your disposal, create any type of popup in minutes:

    - -
    -

    Even the free version is great
    - “Does exactly what it says and is easy to use. Free version allows full control of where popup appears, how it looks and setting conditions for popup reappearing across website.”
    - ~@rsb1234

    -
    -

    🔑 Trigger Popups with Ease: Multiple Ways to Open Your Popups

    -

    Popup Maker offers a variety of triggers to open your popups:

    -
      -
    • Open automatically (with optional delay)
    • -
    • Click button (or any other element) to open
    • -
    • Form submission (open a popup when a form is submitted)
    • -
    • Open when someone is about to leave your site (requires premium Exit Intent feature)
    • -
    • Open when someone has scrolled down your page (requires premium Scroll Trigger feature)
    • -
    -

    🎯 Smart Popup Targeting: Deliver the Perfect Message to Every Visitor

    -

    Never show irrelevant popups again! Our powerful targeting system ensures your messages reach exactly who needs to see them, when they need to see them. From basic page targeting to advanced user behavior conditions, you have complete control over your popup’s visibility.

    -

    Free Targeting Options:

    -
      -
    • Target specific posts, pages, or custom post types
    • -
    • Target by post categories or tags, & custom taxonomies
    • -
    • Front page vs blog page targeting
    • -
    -

    Premium Targeting Features:

    -
      -
    • Advanced user behavior targeting
    • -
    • Show on specific URLs or URL patterns
    • -
    • Show/hide based on user roles
    • -
    • Geolocation targeting
    • -
    • Browser & OS targeting
    • -
    • Time & date scheduling
    • -
    • Page scroll depth targeting
    • -
    • User login status
    • -
    • Previous popup interactions
    • -
    • Ecommerce purchasing & cart rules
    • -
    • Advanced custom taxonomy targeting
    • -
    • Referrer source targeting
    • -
    -

    🔑 Integrate with Your Favorite Form Plugins

    -

    Popup Maker integrates with all of the most popular form plugins to allow you to open a popup when a form is submitted or close the popup when a form inside the popup is submitted. Popup Maker integrates with:

    -

    Form Plugin Integrations:

    -
      -
    • Ninja Forms
    • -
    • Gravity Forms
    • -
    • Contact Form 7 (CF7)
    • -
    • WPForms
    • -
    • WSForm
    • -
    • Fluent Forms
    • -
    • Mailchimp for WordPress (MC4WP)
    • -
    • Formidable Forms
    • -
    • and more!
    • -
    -

    Email Marketing & CRM Integrations:

    -

    Already created a form in your email marketing service? Using our free version, you can copy and paste any form created by most list building platforms, including but not limited to:

    -
      -
    • MailChimp
    • -
    • AWeber
    • -
    • InfusionSoft
    • -
    • GetResponse
    • -
    • Convertkit
    • -
    • Constant Contact
    • -
    • Mail Poet
    • -
    • Mad Mimi
    • -
    • FluentCRM
    • -
    • Hubspot
    • -
    • Emma
    • -
    • and more!
    • -
    -

    ⚙️ Advanced Popup Controls: Customize Every Aspect of Your Popups

    -

    Take complete control of your popups with our powerful customization features:

    -
      -
    • Visual Popup Editor – Design beautiful popups with our intuitive drag & drop editor. Control sizing, positioning, animations, and more
    • -
    • Smart Display Rules – Set cookie-based display frequency to prevent popup fatigue and improve user experience
    • -
    • Custom Animations – Choose from slide, fade, and other engaging entrance/exit animations
    • -
    • Mobile-First Design – Every popup is fully responsive and looks great on all devices
    • -
    • Custom Positioning – Place your popups exactly where you want them – centered, corners, or custom positions
    • -
    • Cookie Controls – Fine-tune when and how often visitors see your popups with advanced cookie settings
    • -
    -

    👍 Trusted by many people just like you!

    -

    Popup Maker is used on over 780,000 websites and has received over 4,200 5-star reviews just like this one:

    -
    -

    Great plugin, everything I needed
    - “Really nice plugin, simple to use, responsive, a good catch !” ~@lemmmy

    -
    -

    🛠️ Enhance Your WordPress Popups Using Our Premium Features

    -

    Need even more features? Popup Maker has over 20 premium features to supercharge your conversion rates:

    -
      -
    • Exit Intent – Catch abandoning visitors before they leave with perfectly timed offers
    • -
    • Popup Analytics – Track views, conversions, and optimize your popup performance with detailed insights
    • -
    • Advanced Targeting Conditions – Show popups based on user behavior, referral source, geolocation, and more
    • -
    • Forced Interaction – Ensure critical messages are seen with popups that require acknowledgment
    • -
    • Scheduling – Display time-sensitive offers and content automatically at the perfect moment
    • -
    • And many more premium features to help you maximize conversions!
    • -
    -

    🤝 Join Our Growing Community

    -

    We believe in making Popup Maker better together! Here’s how you can get involved:

    - -

    Created by Code Atlantic

    -

    Popup Maker is built by the Code Atlantic team. We create high-quality WordPress plugins that help you grow.

    -

    Check out some of our most popular plugins:

    - -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Popup Maker – Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popups Builder", "slug": "popup-maker", "tags": {"optin": "Optin", "popup": "popup", "popups": "popups", "marketing": "marketing", "conversion": "conversion"}, "added": "2014-11-17", "icons": {"1x": "https://ps.w.org/popup-maker/assets/icon-128x128.gif?rev=3097653", "2x": "https://ps.w.org/popup-maker/assets/icon-256x256.gif?rev=3097653"}, "author": "Daniel Iser", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/popup-maker/assets/banner-772x250.png?rev=3092398", "high": "https://ps.w.org/popup-maker/assets/banner-1544x500.png?rev=3092398"}, "ratings": {"1": 54, "2": 21, "3": 17, "4": 133, "5": 4269}, "version": "1.21.5", "homepage": "https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=plugin-uri", "requires": "6.6", "sections": {"faq": "\n
    \nWhat are some ways I can use popups to grow my email list?\n\n

    \n

    People who use Popup Maker to grow their email list have found many creative ways to do so. Some of the most common popups include:

    \n
      \n
    • Exit-intent popups – Asking for an opt-in when someone goes to leave your site, sometimes for a discount or PDF
    • \n
    • Content upgrade popups – Provide more value from your blog posts by giving visitors more resources in exchange for their email address within an optin popup
    • \n
    • White paper popups – Provide industry reports or other white papers using forms within a popup
    • \n
    \n

    Even better, Popup Maker integrates with all the most popular form plugins so you can easily embed a form you have already created right into your popups!

    \n

    \n
    \nWhat are some ways popups can increase my WooCommerce store’s sales and revenues?\n\n

    \n

    Many people don’t consider popups when trying to find ways to increase conversion rates and revenue on their WooCommerce site but they are actually very effective.

    \n

    Some popups we have seen work well for ecommerce sites include:

    \n
      \n
    • Cross-sell popups – recommending a companion product when viewing or adding a product to their cart
    • \n
    • Upsell popups – recommending a higher-tier product when viewing or adding a product to their cart
    • \n
    • Cart abandonment popups – offering discounts or support when someone is about to leave the checkout page
    • \n
    \n

    \n
    \nWhere is your documentation?\n\n

    \n

    You can find our documentation over on our docs site

    \n

    \n
    \nHow do I open a popup?\n\n

    \n

    Using “triggers”, you can customize what makes each popup open. Review our triggers documentation here

    \n

    \n
    \nHow do I stop popups from opening repeatedly?\n\n

    \n

    Using “cookies”, you can set up how long until the popup opens again, if ever. Review our cookies documentation

    \n

    \n
    \nWhat do I do if I want a popup to show only on a certain page/post/etc?\n\n

    \n

    Using “conditions”, you can specify where the popup will be shown. Check out our conditions documentation

    \n

    \n
    \nWhy aren’t my popups opening/working?\n\n

    \n

    There are several common causes for this, check this guide for help resolving it.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I love it

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy krassza on October 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use, customizable, great program.

    \n\n\n\n

    I highly recommend it, five stars, but more like six!

    \n\n\n\n

    Thank you to the developers for their work!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Krzysztof (autori76) on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hi. It seems to be doing its job. I am happy with it. Thanks :-)

    \n\n\n\n

    Popup Maker

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Almost perfect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Przemek (destroy666) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very good plugin, with almost everything you could desire in its free version, even Gutenberg support. The only flaw I found is that the popup offset configuration is not great for responsive purposes - e.g. 80 pixels from the top are quite different on laptop and mobile. It should at least support different kind of units, e.g. vh.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy TrungLun0112 (trunglun0112) on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is the best plugin among all the ones I’ve used.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy duffy1721 on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A really simple to use easy brilliant plugin

    \n\n\n\n

    Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    lightweight and great popup plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shayt on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been using Popup Maker and I’m really happy with it.
    It’s very lightweight, easy to use, and backed by good support.

    \n\n\n\n

    It’s not perfect — I did need to add some custom code to get it working smoothly with Uncanny Automator — but overall, I’m very pleased with the plugin. If you’re looking for a simple and effective popup solution, I definitely recommend it. ✅

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pandusetiawan on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good plugin. It easy to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Annoying IMPOSIBLE to remove dashboard notifications

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Samuel.Stroh (dis.soska.arki) on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ..

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No Exit Intent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ascottme on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    One star for advertising Exit Intent included, when it requires a paid extension.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin update crashed my site

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wendymerritt on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is my review of the plugin - not a problem report or tech support request. This plugin crashed my site on the last update. After several hours from a support person it was back up and running. When it works - it''s great. I guess it was just a failed update and for this reason it is a 4 star review.

    \n
    \n
    \n", "changelog": "

    For the latest updates and release information:

    \n\n

    1.21.5 – 2025-10-13

    \n

    Improvements

    \n
      \n
    • Optimized Google Fonts integration by eliminating database transients and API calls in favor of direct JSON loading with in-memory caching. This resolves reported database crashes from large font data and improves performance by 83% (file size reduced from 1.5MB to 255KB) while eliminating all database overhead.
    • \n
    \n

    Fixes

    \n
      \n
    • Fixed accessibility tab trapping JavaScript error “trigger is not a function” when using keyboard navigation in popups.
    • \n
    • Fixed potential error when get_current_screen() is not available.
    • \n
    \n

    1.21.4 – 2025-09-25

    \n

    Improvements

    \n
      \n
    • Prevented misleading “Lite” messaging when extensions are active. Extension functionality will continue to work as expected.
    • \n
    \n

    Fixes

    \n
      \n
    • Fixed Editor role users not being able to edit popups and themes, changing default permissions from manage_options to edit_others_posts.
    • \n
    • Fixed issue with conditions not working properly when advanced cookie rules were enabled in Advanced Targeting.
    • \n
    • Fixed popup titles being cleared when editing popups.
    • \n
    \n

    Developers

    \n
      \n
    • Added popup_maker/permissions filter to allow customization of user permissions for Popup Maker functionality.
    • \n
    \n

    1.21.3 – 2025-09-21

    \n

    Fixes

    \n
      \n
    • Fixed page builder compatibility issues by reverting popup preloading timing to wp_enqueue_scripts:11 (matching v1.20.6 behavior).
    • \n
    • Fixed delayed initialization of $.fn.popmake.triggers object for proper backward compatibility with legacy extensions.
    • \n
    • Fixed prevent popup init console notice when Debug Mode is not enabled.
    • \n
    \n

    1.21.2 – 2025-09-18

    \n

    Fixes

    \n
      \n
    • Fixed Beaver Builder compatibility issue that appeared in v1.21.0, special thanks to @robbymccullough at Beaver Buidler for the assist
    • \n
    • Fixed PHP warning “Undefined property: stdClass::$post_content” in Assets.php when post object lacks post_content property.
    • \n
    • Fixed Restore missing initialization of $.fn.popmake.conditions object for backward compatibility You with legacy extensions.
    • \n
    \n

    1.21.1 – 2025-09-16

    \n

    Fixes

    \n
      \n
    • PHP 7.4 errors due to strict function return types with union types that are not supported.
    • \n
    • Ensure bundled scripts & styles dependencies are properly loaded.
    • \n
    \n

    1.21.0 – 2025-09-15

    \n

    This update begins the process of modernizing our codebase while polishing existing stuff & adding new features.

    \n

    Minimum Requirements Change

    \n
      \n
    • PHP: 7.4+
    • \n
    • WordPress: 6.6+
    • \n
    \n

    Features

    \n
      \n
    • Trackable Call to Actions\n
        \n
      • Create as many as you need.
      • \n
      • Track results, per link & per popup.
      • \n
      • Redirect to any page or url.
      • \n
      • Call To Action Button blocks for gutenberg to easily insert trackable links with style.
      • \n
      • CTA Shortcode to insert them without Gutenberg.
      • \n
      • Works with premium Popup Analytics.
      • \n
      • Upgrade to Popup Maker Pro or Pro+ to use them outside popups, for quick import/export, or to create WooCommerce add to cart & apply discount buttons.
      • \n
      \n
    • \n
    • Conversion tracking for all internal popup links enabling better analysis of popup performance and user engagement.
    • \n
    • New On Conversion cookie event to disable popups once they convert.
    • \n
    • New Bricks Builder form integration for conversion tracking, form based cookies, closing popups after submission, and more.
    • \n
    \n

    Security

    \n
      \n
    • Minor:Removed Easy Modal v2 [modal] shortcode compatibility mode as it has been deprecated for a long and was recently reported to include an unescaped title output.
    • \n
    \n

    Improvements

    \n
      \n
    • Refactored core analytics to prevent duplicate conversion tracking when Pro is active.
    • \n
    • Block editor is now the default for new popups, replacing the previous opt-in beta approach for a more streamlined editing experience.\n
        \n
      • Added “Use Classic Editor” setting for users who prefer the traditional popup editor interface.
      • \n
      • Existing users who previously disabled the block editor will see a one-time migration notice with options to continue using the block editor or switch to classic.
      • \n
      • Updated new user onboarding to include guidance about the classic editor option for users who prefer the traditional interface.
      • \n
      \n
    • \n
    • Optimized popup open functions to improve browser animation reliability and consistent user experience. This update aims to eliminate visual inconsistencies and resolve issues where popups occasionally failed to display.
    • \n
    • Fixed settings page save notifications that previously only appeared after redirects, now displays success notice on all settings saves.
    • \n
    • Added plugin settings shortcut to the admin toolbar menu.
    • \n
    • Updated CSS selector generation tool with click-to-copy and improved selectors.
    • \n
    • Better grouping of Popup Maker extensions in the Plugins page.
    • \n
    • Updated build processes to rely on @wordpress/scripts & Webpack, as well as improved developer tooling. This should result in smaller JS & CSS file sizes, more reliable builds, and faster development cycles.
    • \n
    • Updated all branding to use SVGs and new marks/logos.
    • \n
    • Improve reliability of admin notice dismissals.
    • \n
    • Use navigator.sendBeacon when available for more reliable analytics.
    • \n
    • Better handling of version changes & migration processing during plugin updates.
    • \n
    • Added ability to search multiple post types in postselect fields.
    • \n
    • Added ability to search multiple taxonomies in taxonomyselect fields.
    • \n
    • Added validation for hex color conversion to prevent deprecated notices.
    • \n
    \n

    Fixes

    \n
      \n
    • Fixed multicheck fields not properly saving when all options were unchecked, preventing users from clearing all selections in settings like analytics reporting permissions.
    • \n
    • Close on overlay click & Close on ESC press stopped working if 2 popups were open and one closed.
    • \n
    • Potential error due to post object missing a post type.
    • \n
    • Prevent missing options data in DB from throwing errors on PHP 8.3+.
    • \n
    • Prevent error when Gravity Forms settings are not set.
    • \n
    \n

    Developers

    \n
      \n
    • Optimized plugin loading & activation mechanisms.
    • \n
    • First stage of modernizing & reorganizing to use PHP namespaces & other PHP 7.4 optimizations.
    • \n
    • Updating frontend JavaScript to use hooks/filters system instead of global variables over time.\n
        \n
      • Added new JS popupMaker.triggers filter to allow adding custom triggers.
      • \n
      \n
    • \n
    • Added new helper methods for registering Popup Maker custom scripts & styles that will be bundled with our plugin JS/CSS files automatically via AssetCache API.
    • \n
    • Lots of WPCS & TypeScript/PHP Type enforcement fixes.
    • \n
    \n

    1.20.6 – 2025-08-14

    \n
      \n
    • Fix: WordPress 4.9 compatibility by checking has_blocks() function existence before calling it.
    • \n
    • Fix: WordPress 4.9 compatibility by checking wp_date() function existence before calling it.
    • \n
    \n

    1.20.5 – 2025-05-30

    \n
      \n
    • Security: Fix potential XSS for custom HTML based popups.
    • \n
    \n

    1.20.4 – 2025-01-29

    \n
      \n
    • Tweak: Updated documentation links to use new docs site.
    • \n
    • Fix: Popup title aria-labelledby attribute was being double-quoted. Thanks to the Equalize Digital team.
    • \n
    \n", "description": "

    📈 Drive More Sales, Leads & Email List Opt-Ins Using Popup Maker

    \n

    Popup Maker™, rated as the best WordPress popup plugin by our community of 780,000+ users, empowers you to create stunning popups, modals, and overlays in minutes. Whether you’re a beginner or a pro, our versatile toolkit makes it easy to boost your WordPress site’s engagement.

    \n

    Transform your WordPress site into a conversion powerhouse! Create targeted campaigns using popups, exit-intent forms, slide-ins, and smart banners to skyrocket your revenue and build your email list faster than ever.

    \n
    \n

    We switched to Popup Maker for our popups and couldn’t be happier.

    \n

    “We recommend it to all our clients too. Popup Maker is an essential piece of our website for maximizing growing our email list, increasing sales conversions, and guiding users with strategic calls to action. Great support too.”

    \n

    ~ Chris Badgett, LifterLMS CEO

    \n
    \n

    🔥 Ready to get started?

    \n

    👉 Visit Our Website – Explore all features & pricing
    \n👉 Join Our Conversion Optimization Community – Share strategies & learn from experts
    \n👉 Read Our Guides – Learn popup best practices
    \n👉 Get Help – World-class support when you need it

    \n

    🎬 See What’s Possible with Popup Maker

    \n

    \n

    Stunning examples of what you can create in Popup Maker (View Video)

    \n

    🛠️ Ultimate WordPress Popup Builder: Every Type of Conversion Popup at Your Fingertips

    \n

    With Popup Maker, you have the ultimate popup builder toolkit at your disposal, create any type of popup in minutes:

    \n\n
    \n

    Even the free version is great
    \n “Does exactly what it says and is easy to use. Free version allows full control of where popup appears, how it looks and setting conditions for popup reappearing across website.”
    \n ~@rsb1234

    \n
    \n

    🔑 Trigger Popups with Ease: Multiple Ways to Open Your Popups

    \n

    Popup Maker offers a variety of triggers to open your popups:

    \n
      \n
    • Open automatically (with optional delay)
    • \n
    • Click button (or any other element) to open
    • \n
    • Form submission (open a popup when a form is submitted)
    • \n
    • Open when someone is about to leave your site (requires premium Exit Intent feature)
    • \n
    • Open when someone has scrolled down your page (requires premium Scroll Trigger feature)
    • \n
    \n

    🎯 Smart Popup Targeting: Deliver the Perfect Message to Every Visitor

    \n

    Never show irrelevant popups again! Our powerful targeting system ensures your messages reach exactly who needs to see them, when they need to see them. From basic page targeting to advanced user behavior conditions, you have complete control over your popup’s visibility.

    \n

    Free Targeting Options:

    \n
      \n
    • Target specific posts, pages, or custom post types
    • \n
    • Target by post categories or tags, & custom taxonomies
    • \n
    • Front page vs blog page targeting
    • \n
    \n

    Premium Targeting Features:

    \n
      \n
    • Advanced user behavior targeting
    • \n
    • Show on specific URLs or URL patterns
    • \n
    • Show/hide based on user roles
    • \n
    • Geolocation targeting
    • \n
    • Browser & OS targeting
    • \n
    • Time & date scheduling
    • \n
    • Page scroll depth targeting
    • \n
    • User login status
    • \n
    • Previous popup interactions
    • \n
    • Ecommerce purchasing & cart rules
    • \n
    • Advanced custom taxonomy targeting
    • \n
    • Referrer source targeting
    • \n
    \n

    🔑 Integrate with Your Favorite Form Plugins

    \n

    Popup Maker integrates with all of the most popular form plugins to allow you to open a popup when a form is submitted or close the popup when a form inside the popup is submitted. Popup Maker integrates with:

    \n

    Form Plugin Integrations:

    \n
      \n
    • Ninja Forms
    • \n
    • Gravity Forms
    • \n
    • Contact Form 7 (CF7)
    • \n
    • WPForms
    • \n
    • WSForm
    • \n
    • Fluent Forms
    • \n
    • Mailchimp for WordPress (MC4WP)
    • \n
    • Formidable Forms
    • \n
    • and more!
    • \n
    \n

    Email Marketing & CRM Integrations:

    \n

    Already created a form in your email marketing service? Using our free version, you can copy and paste any form created by most list building platforms, including but not limited to:

    \n
      \n
    • MailChimp
    • \n
    • AWeber
    • \n
    • InfusionSoft
    • \n
    • GetResponse
    • \n
    • Convertkit
    • \n
    • Constant Contact
    • \n
    • Mail Poet
    • \n
    • Mad Mimi
    • \n
    • FluentCRM
    • \n
    • Hubspot
    • \n
    • Emma
    • \n
    • and more!
    • \n
    \n

    ⚙️ Advanced Popup Controls: Customize Every Aspect of Your Popups

    \n

    Take complete control of your popups with our powerful customization features:

    \n
      \n
    • Visual Popup Editor – Design beautiful popups with our intuitive drag & drop editor. Control sizing, positioning, animations, and more
    • \n
    • Smart Display Rules – Set cookie-based display frequency to prevent popup fatigue and improve user experience
    • \n
    • Custom Animations – Choose from slide, fade, and other engaging entrance/exit animations
    • \n
    • Mobile-First Design – Every popup is fully responsive and looks great on all devices
    • \n
    • Custom Positioning – Place your popups exactly where you want them – centered, corners, or custom positions
    • \n
    • Cookie Controls – Fine-tune when and how often visitors see your popups with advanced cookie settings
    • \n
    \n

    👍 Trusted by many people just like you!

    \n

    Popup Maker is used on over 780,000 websites and has received over 4,200 5-star reviews just like this one:

    \n
    \n

    Great plugin, everything I needed
    \n “Really nice plugin, simple to use, responsive, a good catch !” ~@lemmmy

    \n
    \n

    🛠️ Enhance Your WordPress Popups Using Our Premium Features

    \n

    Need even more features? Popup Maker has over 20 premium features to supercharge your conversion rates:

    \n
      \n
    • Exit Intent – Catch abandoning visitors before they leave with perfectly timed offers
    • \n
    • Popup Analytics – Track views, conversions, and optimize your popup performance with detailed insights
    • \n
    • Advanced Targeting Conditions – Show popups based on user behavior, referral source, geolocation, and more
    • \n
    • Forced Interaction – Ensure critical messages are seen with popups that require acknowledgment
    • \n
    • Scheduling – Display time-sensitive offers and content automatically at the perfect moment
    • \n
    • And many more premium features to help you maximize conversions!
    • \n
    \n

    🤝 Join Our Growing Community

    \n

    We believe in making Popup Maker better together! Here’s how you can get involved:

    \n\n

    Created by Code Atlantic

    \n

    Popup Maker is built by the Code Atlantic team. We create high-quality WordPress plugins that help you grow.

    \n

    Check out some of our most popular plugins:

    \n\n", "screenshots": "
    1. \"Example

      Example popup using our built-in Ninja Forms integration

    2. \"Example

      Example popup

    3. \"Example

      Example popup using our WooCommerce extension to make a popup appear when a product is added to their cart.

    4. \"Create

      Create and edit an infinite number of unique popups to get any job done.

    5. \"Use

      Use our popup editor to customize every facet of your popup completely.

    6. \"Add

      Add triggers to your popups to determine what causes it to open. Our free triggers include: Click Open and Auto Open.

    7. \"Choose

      Choose from many conditions to target exactly who will (and will not) see your popups.

    8. \"Prevent

      Prevent your popups from being annoying to users by using cookies to disable them once they have been viewed.

    9. \"Create

      Create and edit an unlimited number of popup themes for every situation.

    10. \"Use

      Use the theme editor to choose from over 60 options and theme every element of your popup: Background Overlay, Popup Container, Close Button, Google Fonts, and much more.

    "}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/popup-maker.1.0.zip", "1.2": "https://downloads.wordpress.org/plugin/popup-maker.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/popup-maker.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/popup-maker.1.4.zip", "1.0.1": "https://downloads.wordpress.org/plugin/popup-maker.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/popup-maker.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/popup-maker.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/popup-maker.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/popup-maker.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/popup-maker.1.0.6.zip", "1.1.0": "https://downloads.wordpress.org/plugin/popup-maker.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/popup-maker.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/popup-maker.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/popup-maker.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/popup-maker.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/popup-maker.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/popup-maker.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/plugin/popup-maker.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/plugin/popup-maker.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/plugin/popup-maker.1.1.9.zip", "1.2.1": "https://downloads.wordpress.org/plugin/popup-maker.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/popup-maker.1.2.2.zip", "1.3.1": "https://downloads.wordpress.org/plugin/popup-maker.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/popup-maker.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/popup-maker.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/popup-maker.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/popup-maker.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/popup-maker.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/popup-maker.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/popup-maker.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/popup-maker.1.3.9.zip", "1.4.1": "https://downloads.wordpress.org/plugin/popup-maker.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/popup-maker.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/popup-maker.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/popup-maker.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/popup-maker.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/popup-maker.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/popup-maker.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/popup-maker.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/popup-maker.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/plugin/popup-maker.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/popup-maker.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/popup-maker.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/popup-maker.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/popup-maker.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/popup-maker.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/popup-maker.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/popup-maker.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/popup-maker.1.5.8.zip", "1.6.0": "https://downloads.wordpress.org/plugin/popup-maker.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/popup-maker.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/popup-maker.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/popup-maker.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/popup-maker.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/popup-maker.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/popup-maker.1.6.6.zip", "1.7.0": "https://downloads.wordpress.org/plugin/popup-maker.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/popup-maker.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/popup-maker.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/popup-maker.1.7.3.zip", "1.7.5": "https://downloads.wordpress.org/plugin/popup-maker.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/popup-maker.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/popup-maker.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/popup-maker.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/popup-maker.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/plugin/popup-maker.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/popup-maker.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/popup-maker.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/popup-maker.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/popup-maker.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/popup-maker.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/plugin/popup-maker.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/plugin/popup-maker.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/plugin/popup-maker.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/plugin/popup-maker.1.8.9.zip", "1.9.0": "https://downloads.wordpress.org/plugin/popup-maker.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/popup-maker.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/popup-maker.1.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/popup-maker.zip", "1.1.10": "https://downloads.wordpress.org/plugin/popup-maker.1.1.10.zip", "1.10.0": "https://downloads.wordpress.org/plugin/popup-maker.1.10.0.zip", "1.10.1": "https://downloads.wordpress.org/plugin/popup-maker.1.10.1.zip", "1.10.2": "https://downloads.wordpress.org/plugin/popup-maker.1.10.2.zip", "1.11.0": "https://downloads.wordpress.org/plugin/popup-maker.1.11.0.zip", "1.11.1": "https://downloads.wordpress.org/plugin/popup-maker.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/plugin/popup-maker.1.11.2.zip", "1.12.0": "https://downloads.wordpress.org/plugin/popup-maker.1.12.0.zip", "1.13.0": "https://downloads.wordpress.org/plugin/popup-maker.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/popup-maker.1.13.1.zip", "1.14.0": "https://downloads.wordpress.org/plugin/popup-maker.1.14.0.zip", "1.15.0": "https://downloads.wordpress.org/plugin/popup-maker.1.15.0.zip", "1.16.0": "https://downloads.wordpress.org/plugin/popup-maker.1.16.0.zip", "1.16.1": "https://downloads.wordpress.org/plugin/popup-maker.1.16.1.zip", "1.16.2": "https://downloads.wordpress.org/plugin/popup-maker.1.16.2.zip", "1.16.3": "https://downloads.wordpress.org/plugin/popup-maker.1.16.3.zip", "1.16.4": "https://downloads.wordpress.org/plugin/popup-maker.1.16.4.zip", "1.16.5": "https://downloads.wordpress.org/plugin/popup-maker.1.16.5.zip", "1.16.7": "https://downloads.wordpress.org/plugin/popup-maker.1.16.7.zip", "1.16.8": "https://downloads.wordpress.org/plugin/popup-maker.1.16.8.zip", "1.16.9": "https://downloads.wordpress.org/plugin/popup-maker.1.16.9.zip", "1.17.0": "https://downloads.wordpress.org/plugin/popup-maker.1.17.0.zip", "1.17.1": "https://downloads.wordpress.org/plugin/popup-maker.1.17.1.zip", "1.18.0": "https://downloads.wordpress.org/plugin/popup-maker.1.18.0.zip", "1.18.1": "https://downloads.wordpress.org/plugin/popup-maker.1.18.1.zip", "1.18.2": "https://downloads.wordpress.org/plugin/popup-maker.1.18.2.zip", "1.18.3": "https://downloads.wordpress.org/plugin/popup-maker.1.18.3.zip", "1.18.4": "https://downloads.wordpress.org/plugin/popup-maker.1.18.4.zip", "1.18.5": "https://downloads.wordpress.org/plugin/popup-maker.1.18.5.zip", "1.19.0": "https://downloads.wordpress.org/plugin/popup-maker.1.19.0.zip", "1.19.1": "https://downloads.wordpress.org/plugin/popup-maker.1.19.1.zip", "1.19.2": "https://downloads.wordpress.org/plugin/popup-maker.1.19.2.zip", "1.20.0": "https://downloads.wordpress.org/plugin/popup-maker.1.20.0.zip", "1.20.1": "https://downloads.wordpress.org/plugin/popup-maker.1.20.1.zip", "1.20.2": "https://downloads.wordpress.org/plugin/popup-maker.1.20.2.zip", "1.20.3": "https://downloads.wordpress.org/plugin/popup-maker.1.20.3.zip", "1.20.4": "https://downloads.wordpress.org/plugin/popup-maker.1.20.4.zip", "1.20.5": "https://downloads.wordpress.org/plugin/popup-maker.1.20.5.zip", "1.20.6": "https://downloads.wordpress.org/plugin/popup-maker.1.20.6.zip", "1.21.0": "https://downloads.wordpress.org/plugin/popup-maker.1.21.0.zip", "1.21.1": "https://downloads.wordpress.org/plugin/popup-maker.1.21.1.zip", "1.21.2": "https://downloads.wordpress.org/plugin/popup-maker.1.21.2.zip", "1.21.3": "https://downloads.wordpress.org/plugin/popup-maker.1.21.3.zip", "1.21.4": "https://downloads.wordpress.org/plugin/popup-maker.1.21.4.zip", "1.21.5": "https://downloads.wordpress.org/plugin/popup-maker.1.21.5.zip", "1.4.10": "https://downloads.wordpress.org/plugin/popup-maker.1.4.10.zip", "1.4.12": "https://downloads.wordpress.org/plugin/popup-maker.1.4.12.zip", "1.4.13": "https://downloads.wordpress.org/plugin/popup-maker.1.4.13.zip", "1.4.14": "https://downloads.wordpress.org/plugin/popup-maker.1.4.14.zip", "1.4.15": "https://downloads.wordpress.org/plugin/popup-maker.1.4.15.zip", "1.4.16": "https://downloads.wordpress.org/plugin/popup-maker.1.4.16.zip", "1.4.17": "https://downloads.wordpress.org/plugin/popup-maker.1.4.17.zip", "1.4.18": "https://downloads.wordpress.org/plugin/popup-maker.1.4.18.zip", "1.4.19": "https://downloads.wordpress.org/plugin/popup-maker.1.4.19.zip", "1.4.20": "https://downloads.wordpress.org/plugin/popup-maker.1.4.20.zip", "1.4.21": "https://downloads.wordpress.org/plugin/popup-maker.1.4.21.zip", "1.7.10": "https://downloads.wordpress.org/plugin/popup-maker.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/plugin/popup-maker.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/plugin/popup-maker.1.7.12.zip", "1.7.13": "https://downloads.wordpress.org/plugin/popup-maker.1.7.13.zip", "1.7.14": "https://downloads.wordpress.org/plugin/popup-maker.1.7.14.zip", "1.7.15": "https://downloads.wordpress.org/plugin/popup-maker.1.7.15.zip", "1.7.16": "https://downloads.wordpress.org/plugin/popup-maker.1.7.16.zip", "1.7.17": "https://downloads.wordpress.org/plugin/popup-maker.1.7.17.zip", "1.7.18": "https://downloads.wordpress.org/plugin/popup-maker.1.7.18.zip", "1.7.19": "https://downloads.wordpress.org/plugin/popup-maker.1.7.19.zip", "1.7.20": "https://downloads.wordpress.org/plugin/popup-maker.1.7.20.zip", "1.7.21": "https://downloads.wordpress.org/plugin/popup-maker.1.7.21.zip", "1.7.22": "https://downloads.wordpress.org/plugin/popup-maker.1.7.22.zip", "1.7.23": "https://downloads.wordpress.org/plugin/popup-maker.1.7.23.zip", "1.7.24": "https://downloads.wordpress.org/plugin/popup-maker.1.7.24.zip", "1.7.25": "https://downloads.wordpress.org/plugin/popup-maker.1.7.25.zip", "1.7.26": "https://downloads.wordpress.org/plugin/popup-maker.1.7.26.zip", "1.7.27": "https://downloads.wordpress.org/plugin/popup-maker.1.7.27.zip", "1.7.28": "https://downloads.wordpress.org/plugin/popup-maker.1.7.28.zip", "1.7.29": "https://downloads.wordpress.org/plugin/popup-maker.1.7.29.zip", "1.7.30": "https://downloads.wordpress.org/plugin/popup-maker.1.7.30.zip", "1.8.10": "https://downloads.wordpress.org/plugin/popup-maker.1.8.10.zip", "1.8.11": "https://downloads.wordpress.org/plugin/popup-maker.1.8.11.zip", "1.8.12": "https://downloads.wordpress.org/plugin/popup-maker.1.8.12.zip", "1.8.13": "https://downloads.wordpress.org/plugin/popup-maker.1.8.13.zip", "1.8.14": "https://downloads.wordpress.org/plugin/popup-maker.1.8.14.zip", "1.16.10": "https://downloads.wordpress.org/plugin/popup-maker.1.16.10.zip", "1.16.11": "https://downloads.wordpress.org/plugin/popup-maker.1.16.11.zip", "1.16.12": "https://downloads.wordpress.org/plugin/popup-maker.1.16.12.zip", "1.16.13": "https://downloads.wordpress.org/plugin/popup-maker.1.16.13.zip", "1.16.14": "https://downloads.wordpress.org/plugin/popup-maker.1.16.14.zip"}, "downloaded": 19395898, "description": "

    📈 Drive More Sales, Leads & Email List Opt-Ins Using Popup Maker

    \n

    Popup Maker™, rated as the best WordPress popup plugin by our community of 780,000+ users, empowers you to create stunning popups, modals, and overlays in minutes. Whether you’re a beginner or a pro, our versatile toolkit makes it easy to boost your WordPress site’s engagement.

    \n

    Transform your WordPress site into a conversion powerhouse! Create targeted campaigns using popups, exit-intent forms, slide-ins, and smart banners to skyrocket your revenue and build your email list faster than ever.

    \n
    \n

    We switched to Popup Maker for our popups and couldn’t be happier.

    \n

    “We recommend it to all our clients too. Popup Maker is an essential piece of our website for maximizing growing our email list, increasing sales conversions, and guiding users with strategic calls to action. Great support too.”

    \n

    ~ Chris Badgett, LifterLMS CEO

    \n
    \n

    🔥 Ready to get started?

    \n

    👉 Visit Our Website – Explore all features & pricing
    \n👉 Join Our Conversion Optimization Community – Share strategies & learn from experts
    \n👉 Read Our Guides – Learn popup best practices
    \n👉 Get Help – World-class support when you need it

    \n

    🎬 See What’s Possible with Popup Maker

    \n

    \n

    Stunning examples of what you can create in Popup Maker (View Video)

    \n

    🛠️ Ultimate WordPress Popup Builder: Every Type of Conversion Popup at Your Fingertips

    \n

    With Popup Maker, you have the ultimate popup builder toolkit at your disposal, create any type of popup in minutes:

    \n\n
    \n

    Even the free version is great
    \n “Does exactly what it says and is easy to use. Free version allows full control of where popup appears, how it looks and setting conditions for popup reappearing across website.”
    \n ~@rsb1234

    \n
    \n

    🔑 Trigger Popups with Ease: Multiple Ways to Open Your Popups

    \n

    Popup Maker offers a variety of triggers to open your popups:

    \n
      \n
    • Open automatically (with optional delay)
    • \n
    • Click button (or any other element) to open
    • \n
    • Form submission (open a popup when a form is submitted)
    • \n
    • Open when someone is about to leave your site (requires premium Exit Intent feature)
    • \n
    • Open when someone has scrolled down your page (requires premium Scroll Trigger feature)
    • \n
    \n

    🎯 Smart Popup Targeting: Deliver the Perfect Message to Every Visitor

    \n

    Never show irrelevant popups again! Our powerful targeting system ensures your messages reach exactly who needs to see them, when they need to see them. From basic page targeting to advanced user behavior conditions, you have complete control over your popup’s visibility.

    \n

    Free Targeting Options:

    \n
      \n
    • Target specific posts, pages, or custom post types
    • \n
    • Target by post categories or tags, & custom taxonomies
    • \n
    • Front page vs blog page targeting
    • \n
    \n

    Premium Targeting Features:

    \n
      \n
    • Advanced user behavior targeting
    • \n
    • Show on specific URLs or URL patterns
    • \n
    • Show/hide based on user roles
    • \n
    • Geolocation targeting
    • \n
    • Browser & OS targeting
    • \n
    • Time & date scheduling
    • \n
    • Page scroll depth targeting
    • \n
    • User login status
    • \n
    • Previous popup interactions
    • \n
    • Ecommerce purchasing & cart rules
    • \n
    • Advanced custom taxonomy targeting
    • \n
    • Referrer source targeting
    • \n
    \n

    🔑 Integrate with Your Favorite Form Plugins

    \n

    Popup Maker integrates with all of the most popular form plugins to allow you to open a popup when a form is submitted or close the popup when a form inside the popup is submitted. Popup Maker integrates with:

    \n

    Form Plugin Integrations:

    \n
      \n
    • Ninja Forms
    • \n
    • Gravity Forms
    • \n
    • Contact Form 7 (CF7)
    • \n
    • WPForms
    • \n
    • WSForm
    • \n
    • Fluent Forms
    • \n
    • Mailchimp for WordPress (MC4WP)
    • \n
    • Formidable Forms
    • \n
    • and more!
    • \n
    \n

    Email Marketing & CRM Integrations:

    \n

    Already created a form in your email marketing service? Using our free version, you can copy and paste any form created by most list building platforms, including but not limited to:

    \n
      \n
    • MailChimp
    • \n
    • AWeber
    • \n
    • InfusionSoft
    • \n
    • GetResponse
    • \n
    • Convertkit
    • \n
    • Constant Contact
    • \n
    • Mail Poet
    • \n
    • Mad Mimi
    • \n
    • FluentCRM
    • \n
    • Hubspot
    • \n
    • Emma
    • \n
    • and more!
    • \n
    \n

    ⚙️ Advanced Popup Controls: Customize Every Aspect of Your Popups

    \n

    Take complete control of your popups with our powerful customization features:

    \n
      \n
    • Visual Popup Editor – Design beautiful popups with our intuitive drag & drop editor. Control sizing, positioning, animations, and more
    • \n
    • Smart Display Rules – Set cookie-based display frequency to prevent popup fatigue and improve user experience
    • \n
    • Custom Animations – Choose from slide, fade, and other engaging entrance/exit animations
    • \n
    • Mobile-First Design – Every popup is fully responsive and looks great on all devices
    • \n
    • Custom Positioning – Place your popups exactly where you want them – centered, corners, or custom positions
    • \n
    • Cookie Controls – Fine-tune when and how often visitors see your popups with advanced cookie settings
    • \n
    \n

    👍 Trusted by many people just like you!

    \n

    Popup Maker is used on over 780,000 websites and has received over 4,200 5-star reviews just like this one:

    \n
    \n

    Great plugin, everything I needed
    \n “Really nice plugin, simple to use, responsive, a good catch !” ~@lemmmy

    \n
    \n

    🛠️ Enhance Your WordPress Popups Using Our Premium Features

    \n

    Need even more features? Popup Maker has over 20 premium features to supercharge your conversion rates:

    \n
      \n
    • Exit Intent – Catch abandoning visitors before they leave with perfectly timed offers
    • \n
    • Popup Analytics – Track views, conversions, and optimize your popup performance with detailed insights
    • \n
    • Advanced Targeting Conditions – Show popups based on user behavior, referral source, geolocation, and more
    • \n
    • Forced Interaction – Ensure critical messages are seen with popups that require acknowledgment
    • \n
    • Scheduling – Display time-sensitive offers and content automatically at the perfect moment
    • \n
    • And many more premium features to help you maximize conversions!
    • \n
    \n

    🤝 Join Our Growing Community

    \n

    We believe in making Popup Maker better together! Here’s how you can get involved:

    \n\n

    Created by Code Atlantic

    \n

    Popup Maker is built by the Code Atlantic team. We create high-quality WordPress plugins that help you grow.

    \n

    Check out some of our most popular plugins:

    \n\n", "donate_link": "", "num_ratings": 4494, "screenshots": {"1": {"src": "https://ps.w.org/popup-maker/assets/screenshot-1.png?rev=2732428", "caption": "Example popup using our built-in Ninja Forms integration"}, "2": {"src": "https://ps.w.org/popup-maker/assets/screenshot-2.png?rev=2732428", "caption": "Example popup"}, "3": {"src": "https://ps.w.org/popup-maker/assets/screenshot-3.png?rev=2732428", "caption": "Example popup using our WooCommerce extension to make a popup appear when a product is added to their cart."}, "4": {"src": "https://ps.w.org/popup-maker/assets/screenshot-4.png?rev=2732428", "caption": "Create and edit an infinite number of unique popups to get any job done."}, "5": {"src": "https://ps.w.org/popup-maker/assets/screenshot-5.png?rev=2732428", "caption": "Use our popup editor to customize every facet of your popup completely."}, "6": {"src": "https://ps.w.org/popup-maker/assets/screenshot-6.png?rev=2732428", "caption": "Add triggers to your popups to determine what causes it to open. Our free triggers include: Click Open and Auto Open."}, "7": {"src": "https://ps.w.org/popup-maker/assets/screenshot-7.png?rev=2732428", "caption": "Choose from many conditions to target exactly who will (and will not) see your popups."}, "8": {"src": "https://ps.w.org/popup-maker/assets/screenshot-8.png?rev=2732428", "caption": "Prevent your popups from being annoying to users by using cookies to disable them once they have been viewed."}, "9": {"src": "https://ps.w.org/popup-maker/assets/screenshot-9.png?rev=2732428", "caption": "Create and edit an unlimited number of popup themes for every situation."}, "10": {"src": "https://ps.w.org/popup-maker/assets/screenshot-10.png?rev=2732428", "caption": "Use the theme editor to choose from over 60 options and theme every element of your popup: Background Overlay, Popup Container, Close Button, Google Fonts, and much more."}}, "support_url": "https://wordpress.org/support/plugin/popup-maker/", "contributors": {"danieliser": {"avatar": "https://secure.gravatar.com/avatar/749586fb2ffa57fab58380cd691c0d9a8878497e47e278e21602252bd8dfe8ba?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/danieliser/", "display_name": "Daniel Iser"}, "codeatlantic": {"avatar": "https://secure.gravatar.com/avatar/5ff4031eb58bc71be05166cf69878e19def3de05a3d48f368089c89745d2bf1c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/codeatlantic/", "display_name": "Code Atlantic"}}, "last_updated": "2025-10-13 5:38pm GMT", "preview_link": "https://wordpress.org/plugins/popup-maker/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/popup-maker.1.21.5.zip", "author_profile": "https://profiles.wordpress.org/danieliser/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f88c-721a-8bbd-829e3bfa8fdc", "name": "Popup Maker – Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popups Builder", "slug": "popup-maker", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1760377080, "version": "1.21.5"}, "support_threads": 20, "requires_plugins": [], "short_description": "Want to boost sales & marketing efforts? Use your favorite forms & builder. Unlimited popups & impressions, keep your data, no monthly subscription.", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "https://wppopupmaker.com/support/", "support_threads_resolved": 14}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1d21-708d-8c07-387a1d620f99', 'did:web:api.aspiredev.org:packages:wp-plugin:post-types-order', 'post-types-order', 'Post Types Order', '

    Over 12 MILLIONS DOWNLOADS and near PERFECT rating out of 200 REVIEWS.
    -Easily Sort Posts and Custom Post Types with Drag-and-Drop

    -

    Take full control of your post order with a powerful plugin that lets you effortlessly reorder posts and custom post types using a simple drag-and-drop interface.

    -

    Customize the order directly from the default WordPress post archive list or use the dedicated Re-Order interface, which displays all available items for easy management. Whether you’re working with default posts or custom post types, organizing your content has never been easier.

    -

    Usage

    -

    This plugin was designed to be user-friendly, ensuring that anyone can easily use its sorting feature, regardless of their WordPress experience:

    -
      -
    • Install the plugin via the “Install Plugins” interface or by uploading the post-types-order folder to the /wp-content/plugins/ directory.
    • -
    • Activate the Post Types Order plugin.
    • -
    • A new settings page will be added under Settings > Post Types Order. Visit this page and save the options for the first time.
    • -
    • With the AutoSort option enabled, no code changes are needed, the plugin will automatically apply the customized post order.
    • -
    • Use the Re-Order interface, available for every non-hierarchical custom post type, to change the post order as needed.
    • -
    • For sorting posts via code, include ‘orderby’ => ‘menu_order’ within the custom query arguments. For more details, visit this guide Sample Usage
    • -
    -

    Example of Usage

    - -

    As you can see, reordering posts is as simple as dragging and dropping, with the changes instantly reflected on the front end.

    -

    If the post order doesn’t update on your site, it could be due to one of two reasons: either there was a mistake during setup, or your theme/plugin is using a custom query that doesn’t follow WordPress Codex standards. But don’t worry—we’re here to help! You can report the issue in the forum, where many users are happy to assist, or you can contact us directly.

    -

    If you encounter any problems with the plugin, feel free to reach out via the forum or contact us directly through our support page, and we’ll take a look.

    -

    Need advanced features ?

    -

    For advanced features and functionality, check out the extended version of this plugin at Advanced Post Types Order
    - * Hierarchically post types order
    - * Manual Drag & Drop / Automatic Sorting
    - * Specify exact area where to apply through conditionals
    - * Advanced query interface filtering and complex sorts including multiple post types and taxonomies
    - * Posts Order by Custom Taxonomies
    - * Enhanced Interface, List / Grid View
    - * Allow Interface Filters (Categories, Dates, Search etc)
    - * Post Types Thumbnails
    - * Advanced query usage
    - * MultiSite Network Support, WPML, Polylang, WooCommerce, WP E-Commerce, Platform Pro, Genesis etc
    - * WPML 100% compatibility with sort synchronization across languages
    - * Mobile Touch Drag & Drop Ready
    - * Sort interfaces through admin and front end
    - * Pagination for sort lists
    - * Free Updates
    - * Free Support

    -

    This plugin is developed by Nsp-Code

    -

    Localization

    -

    Would you like to contribute a translation in your language? Please check at https://translate.wordpress.org/projects/wp-plugins/post-types-order

    -

    There isn’t any Editors for your native language on plugin Contributors? You can help to moderate! https://translate.wordpress.org/projects/wp-plugins/post-types-order/contributors

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Post Types Order", "slug": "post-types-order", "tags": {"post-sort": "post sort", "post-order": "post order", "posts-sort": "posts sort", "posts-order": "posts order", "post-types-order": "post types order"}, "added": "2010-09-05", "icons": {"1x": "https://ps.w.org/post-types-order/assets/icon-128x128.png?rev=1226428"}, "author": "nsp-code", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/post-types-order/assets/banner-772x250.png?rev=3303640", "high": "https://ps.w.org/post-types-order/assets/banner-1544x500.png?rev=3303640"}, "ratings": {"1": 25, "2": 4, "3": 11, "4": 8, "5": 244}, "version": "2.4", "homepage": "http://www.nsp-code.com", "requires": "2.8", "sections": {"faq": "

    Feel free to contact us at electronice_delphi@yahoo.com.

    \n\n
    \nSince I have no PHP knowledge at all, is this plugin for me?\n\n

    \n

    Absolutely! You don’t need any PHP knowledge to use this plugin.
    \nUnlike many other plugins, you won’t have to make any code changes for your custom post order to apply. There’s an option to automatically update WordPress queries so posts are displayed in your custom order. If you prefer to handle this manually, you can disable the AutoSort option.

    \n

    \n
    \nHow to manually apply the sort in queries\n\n

    \n

    Simply include ''orderby'' => ''menu_order'' in your custom query arguments.

    \n

    \n
    \nWhat types of posts/pages can I sort with this plugin?\n\n

    \n

    You can sort all post types you’ve defined in WordPress, as long as they are not hierarchical. This includes default post types like Posts, as well as custom types like Movies, Reviews, Data, etc.

    \n

    \n
    \nHow does the post order apply in the admin interface?\n\n

    \n

    There’s an option to display the custom post order, as defined in the sort list, directly within the main admin post list interface.

    \n

    \n
    \nI have a feature request. Can it be implemented?\n\n

    \n

    All ideas are welcome! I add them to my list for future versions. However, this may take some time. If you’re in a hurry, consider making a small donation, and I can prioritize the feature for you.

    \n

    \n
    \nCan I exclude certain queries from the custom sort when AutoSort is enabled?\n\n

    \n

    Yes, you can! To exclude certain queries, include the ignore_custom_sort argument in your custom query. An example is available at Sample Usage

    \n

    \n
    \nHow can I force custom sorting for specific queries when AutoSort is enabled?\n\n

    \n

    You can use the pto/posts_orderby filter to force the sort. An example is provided at Sample Usage

    \n

    \n
    \nI need additional features like front-end sorting, shortcodes, filters, conditionals, advanced queries, or taxonomy/category sorting\n\n

    \n

    Consider upgrading to our advanced version of this plugin, which offers these features at a very reasonable price Advanced Post Types Order

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fredvdp on July 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does exactly what it needs to do. Simple and straightforward.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple Effective

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pogojim on May 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    As per heading.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sequith on May 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I tried several post management tools and this one is by far the smoothest. Clean UI, fast performance, and I love the bulk editing features. Totally worth it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It does exactly what it says

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy danielepais on May 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    Works well, and it is a breeze to change the list order. Great plugin.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good and great customer service

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy imacreste on February 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It helped me a lot to organize my products. But it also helped me a lot to get my filters working with Ajax.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential for my porftolio

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alianur on January 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hi! I have been using it for many years, it has become essential to show my work portfolio in the way I need. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really Handy Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy WordPress Developer Ireland (papashivo) on January 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    This is a really nice and simple to install and use plugin.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Absolutely fantastic!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Manou Allou (manouallou) on November 20, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Finally!

    \n\n\n\n

    This great little plugin works wonders for sorting both categories and posts. It also works for custom post types and even for Bricks templates (you have to toggle the advanced switch in the plugin''s settings first and then select it).

    \n\n\n\n

    My OCD can now be put at rest.

    \n\n\n\n

    A big digital shout-out to the NSP-Code team. Thank you guys!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect plugin for sorting issue

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy muzzy1cyberbiz on December 27, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Did solve my problem, so i am extremely happy :-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does NOT work at all!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy GuentherLudwig on December 10, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does NOT work at all!

    \n
    \n
    \n", "changelog": "

    2.4

    \n
      \n
    • If query already sorting by FIELD, ignore the custom order.
    • \n
    • Compatibility class file changes.
    • \n
    • Compatibility file for Advanced Custom Fields PRO
    • \n
    \n

    2.3.7

    \n
      \n
    • Code improvements.
    • \n
    • Reduce the outputted HTML for the ReOrder interface to avoid memory limitation on very long lists.
    • \n
    • Re-Order interface style updates.
    • \n
    • WordPress 6.82 compatibility check and tag update.
    • \n
    \n

    2.3.5

    \n
      \n
    • WordPress 6.8 compatibility check and tag update.
    • \n
    \n

    2.3.4

    \n
      \n
    • PHP 8.3.4 tag and compatibility check.
    • \n
    • WordPress 6.7.2 compatibility check and tag update.
    • \n
    • Readme revision.
    • \n
    \n

    2.3.3

    \n
      \n
    • Add version to the plugin assets to avoid caching issues.
    • \n
    • Improve the options description for easier understanding.
    • \n
    • New filter pto/interface/table/tbody
    • \n
    • WordPress 6.7 compatibility check and tag update.
    • \n
    \n

    2.3.2

    \n
      \n
    • Fix: Change the CPT_VERSION constant to avoid conflict with CPT UI plugin.
    • \n
    \n

    2.3.1

    \n
      \n
    • Improve the descriptions in the readme.txt file for better clarity and user understanding.
    • \n
    • Add a version number to the CSS file to ensure that browsers load the latest version correctly and avoid caching issues.
    • \n
    \n

    2.3

    \n
      \n
    • Enhanced re-order interface to better align with the default WordPress styling.
    • \n
    • Added additional object actions (e.g., Edit, View) directly within each item row. New setting to control the visibility of actions.
    • \n
    • Introduced new filters for extending the re-order table: pto/interface/table/thead, pto/interface/table/tfoot, and pto/interface/table/tbody.
    • \n
    • Completed compatibility check and tagged update for WordPress 6.6.2.
    • \n
    \n

    2.2.6

    \n
      \n
    • Remove boolval on the filter ‘pto/posts_orderby’ to avoid returning wrong FALSE.
    • \n
    • FlyingPress cache lear method update.
    • \n
    \n

    2.2.4

    \n
      \n
    • Add code comments hints for easier understanding and follow.
    • \n
    • Use strval when comparing strings using ===
    • \n
    • Use additional sanitize_text_field and isset checks to avoid PHP notices.
    • \n
    • Use === “strict equality” comparison operator instead simple
    • \n
    • Include the check for JetPack mobile, if plugin is active.
    • \n
    • Check if there is a post_status filter and if set to ‘all’ to continue scripts enqueue.
    • \n
    • New filter pto/interface/query/args to allow adjustments for the re-order interface query arguments.
    • \n
    • WordPress 6.6.1 compatibility check and tag update.
    • \n
    \n

    2.2.3

    \n
      \n
    • When order update, attempt to clear the site / server caches.
    • \n
    • Set Yes as default for the option to Enable sortable drag-and-drop functionality within the default WordPress post type archive.
    • \n
    • WordPress 6.5.3 compatibility tag.
    • \n
    \n

    2.2.1

    \n
      \n
    • Options interface layout updates.
    • \n
    • Code cleanup
    • \n
    • Remove unused svg icon file.
    • \n
    \n

    2.2

    \n
      \n
    • Formidable style fix when Autosort is active.
    • \n
    • Plugin headers format update.
    • \n
    • WordPress 6.5 compatibility check and tag update ( RC1 )
    • \n
    \n

    2.1.8

    \n
      \n
    • Fix: Media/images order, retrieve the items per page from user upload_per_page
    • \n
    \n

    2.1.4

    \n
      \n
    • PHP Deprecated fix: Constant FILTER_SANITIZE_STRING is deprecated
    • \n
    • WordPress 6.4.3 compatibility check and tag update
    • \n
    \n

    2.1.2

    \n
      \n
    • PHP 8.2.4 check for compatibility
    • \n
    • WordPress 6.4.2 compatibility check and tag update
    • \n
    \n

    2.1

    \n
      \n
    • Trigger wp_cache_flush when saving the order to clear the internal caches
    • \n
    • WordPress 6.3 compatibility check and tag
    • \n
    • Compatibility update for lite speed cache
    • \n
    \n

    2.0.9

    \n
      \n
    • Fix: is_plugin_active
    • \n
    \n

    2.0.7

    \n
      \n
    • Compatibility class re-build
    • \n
    • Fix: Enfold templates when using Admin Sort
    • \n
    \n

    2.0.5

    \n
      \n
    • Merge the “default archive&drop” option and keep the individual menu Yes/No for the default WordPress interfaces, to avoid confusion.
    • \n
    \n

    2.0.2

    \n
      \n
    • The Archive drag & drop is disabled by default
    • \n
    • Small layout changes
    • \n
    • WordPress 6.2 compatibility tag
    • \n
    \n

    2.0

    \n
      \n
    • Update cmoposer.json to use the wpackagist.org
    • \n
    • New option to select the drag & drop available for post types.
    • \n
    • The drag & drop within the default WordPress interfaces can be done now through the new icon, under the checkbox, for each item.
    • \n
    • Check if ajax call to avoid applying the order when autosort is disabled.
    • \n
    • Update plugin header image
    • \n
    \n

    1.9.9.2

    \n
      \n
    • WordPress 6.1.1 compatibility tag
    • \n
    \n

    1.9.9.1

    \n
      \n
    • WordPress 6.0 compatibility tag
    • \n
    \n

    1.9.9

    \n
      \n
    • Fix layout change when sorting by drag&drop within default WordPress interface.
    • \n
    • Add placeholder row size by setting a tr colspan of the dragable element.
    • \n
    \n

    1.9.8

    \n
      \n
    • Readme file updates, typos fixes.
    • \n
    • WordPress 5.9 compatibility tag
    • \n
    \n

    1.9.7

    \n
      \n
    • Remove Twitter button
    • \n
    • Remove unused gif image
    • \n
    • HTPML and CSS cleanup
    • \n
    \n

    1.9.5.7

    \n
      \n
    • Code cleanup
    • \n
    • WordPress 5.8.1 compatibility tag
    • \n
    \n

    1.9.5.6

    \n
      \n
    • Fix PHP implode() notice
    • \n
    \n

    1.9.5.5

    \n
      \n
    • Fix PHP implode() notice
    • \n
    \n

    1.9.5.4

    \n
      \n
    • Fix PHP implode() notice
    • \n
    • Ensure the drag & drop interface show for correct post types, non hierarchically to ensure correct functionality
    • \n
    • WordPress 5.6 compatibility tag
    • \n
    \n

    1.9.5.2

    \n
      \n
    • Clean post cache on order update to allow menu_order to change on cached data
    • \n
    • WordPress 5.5 compatibility tag
    • \n
    \n

    1.9.5.1

    \n
      \n
    • Fix: Outputs the admin save notice through admin_notices filter
    • \n
    \n

    1.9.5

    \n
      \n
    • Fix: disable drag & drop within taxonomies interfaces; fix WooCommerce attributes sort issue
    • \n
    • Reorder interface slight styles improvements
    • \n
    • Compatibility tag update for WordPress 5.4.2
    • \n
    \n

    1.9.4.3

    \n
      \n
    • Option text translation update
    • \n
    • Changed the posts class to to wp-list-table when applying sortable for better compatibility
    • \n
    • Compatibility tag update for WordPress 5.4
    • \n
    \n

    1.9.4.2

    \n
      \n
    • Compatibility tag update for WordPress 5.3
    • \n
    \n

    1.9.4.1

    \n
      \n
    • Ignore the Events Calendar posts
    • \n
    • Filter typo fix
    • \n
    \n

    1.9.3.9

    \n
      \n
    • Ignore sorting when doing Search and there’s a search key-phrase specified.
    • \n
    • Ignore sorting when doing Search within admin dashboard
    • \n
    • Removed Google Social as it produced some JavaScript errors
    • \n
    • WordPress 4.9.7 tag update
    • \n
    \n

    1.9.3.6

    \n
      \n
    • Clear LiteSpeed Cache on order update to reflect on front side
    • \n
    • WordPress 4.9.1 tag update
    • \n
    \n

    1.9.3.5

    \n
      \n
    • Fix: updated capability from switch_theme to manage_options within ‘Minimum Level to use this plugin’ option
    • \n
    • Default admin capability changed from install_plugins to manage_options to prevent DISALLOW_FILE_MODS issue. https://wordpress.org/support/topic/plugin-breaks-when-disallow_file_mods-is-set-to-true/
    • \n
    • Prepare plugin for Composer package
    • \n
    \n

    1.9.3.3

    \n
      \n
    • Plugin option to include query argument ASC / DESC
    • \n
    \n

    1.9.3.2

    \n
      \n
    • Include ASC / DESC if there is a query order argument
    • \n
    • Avada fix ‘product_orderby’ ignore
    • \n
    \n

    1.9.3.1

    \n
      \n
    • WordPress 4.8 compatibility notice
    • \n
    • Slight code changes, remove unused activate / deactivate hooks
    • \n
    • Updated po translation file
    • \n
    • Updated assets
    • \n
    \n

    1.9.3

    \n
      \n
    • Fix for custom post type objects per page when using default archive interface drag & drop sort
    • \n
    • Plugin code redo and re-structure
    • \n
    • Improved compatibility with other plugins
    • \n
    • Security improvements for AJAX order updates
    • \n
    \n

    1.9

    \n
      \n
    • Remove translations from the package
    • \n
    • Remove link for donate
    • \n
    • Wp Hide plugin availability notification
    • \n
    • New Filter pto/get_options to allow to change default options; Custom capability can be set for ‘capability’
    • \n
    • New Filter pto/admin/plugin_options/capability to allow custom capability option to be inserted within html
    • \n
    \n", "description": "

    Over 12 MILLIONS DOWNLOADS and near PERFECT rating out of 200 REVIEWS.
    \nEasily Sort Posts and Custom Post Types with Drag-and-Drop

    \n

    Take full control of your post order with a powerful plugin that lets you effortlessly reorder posts and custom post types using a simple drag-and-drop interface.

    \n

    Customize the order directly from the default WordPress post archive list or use the dedicated Re-Order interface, which displays all available items for easy management. Whether you’re working with default posts or custom post types, organizing your content has never been easier.

    \n

    Usage

    \n

    This plugin was designed to be user-friendly, ensuring that anyone can easily use its sorting feature, regardless of their WordPress experience:

    \n
      \n
    • Install the plugin via the “Install Plugins” interface or by uploading the post-types-order folder to the /wp-content/plugins/ directory.
    • \n
    • Activate the Post Types Order plugin.
    • \n
    • A new settings page will be added under Settings > Post Types Order. Visit this page and save the options for the first time.
    • \n
    • With the AutoSort option enabled, no code changes are needed, the plugin will automatically apply the customized post order.
    • \n
    • Use the Re-Order interface, available for every non-hierarchical custom post type, to change the post order as needed.
    • \n
    • For sorting posts via code, include ‘orderby’ => ‘menu_order’ within the custom query arguments. For more details, visit this guide Sample Usage
    • \n
    \n

    Example of Usage

    \n\n

    As you can see, reordering posts is as simple as dragging and dropping, with the changes instantly reflected on the front end.

    \n

    If the post order doesn’t update on your site, it could be due to one of two reasons: either there was a mistake during setup, or your theme/plugin is using a custom query that doesn’t follow WordPress Codex standards. But don’t worry—we’re here to help! You can report the issue in the forum, where many users are happy to assist, or you can contact us directly.

    \n

    If you encounter any problems with the plugin, feel free to reach out via the forum or contact us directly through our support page, and we’ll take a look.

    \n

    Need advanced features ?

    \n

    For advanced features and functionality, check out the extended version of this plugin at Advanced Post Types Order
    \n * Hierarchically post types order
    \n * Manual Drag & Drop / Automatic Sorting
    \n * Specify exact area where to apply through conditionals
    \n * Advanced query interface filtering and complex sorts including multiple post types and taxonomies
    \n * Posts Order by Custom Taxonomies
    \n * Enhanced Interface, List / Grid View
    \n * Allow Interface Filters (Categories, Dates, Search etc)
    \n * Post Types Thumbnails
    \n * Advanced query usage
    \n * MultiSite Network Support, WPML, Polylang, WooCommerce, WP E-Commerce, Platform Pro, Genesis etc
    \n * WPML 100% compatibility with sort synchronization across languages
    \n * Mobile Touch Drag & Drop Ready
    \n * Sort interfaces through admin and front end
    \n * Pagination for sort lists
    \n * Free Updates
    \n * Free Support

    \n

    This plugin is developed by Nsp-Code

    \n

    Localization

    \n

    Would you like to contribute a translation in your language? Please check at https://translate.wordpress.org/projects/wp-plugins/post-types-order

    \n

    There isn’t any Editors for your native language on plugin Contributors? You can help to moderate! https://translate.wordpress.org/projects/wp-plugins/post-types-order/contributors

    \n", "screenshots": "
    1. \"<p>The

      The ReOrder interface through which the sort can be created.

    2. \"<p>Sort

      Sort can be managed within default WordPress post type interface.

    ", "installation": "
      \n
    1. Upload post-types-order folder to your /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin from Admin > Plugins menu.
    4. \n
    5. Once activated you should check with Settings > Post Types Order
    6. \n
    7. Use Re-Order link which appear into each post type section or use default WordPress interface to make your sorting.
    8. \n
    \n"}, "versions": {"0.9": "https://downloads.wordpress.org/plugin/post-types-order.0.9.zip", "1.9": "https://downloads.wordpress.org/plugin/post-types-order.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/post-types-order.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/post-types-order.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/post-types-order.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/post-types-order.2.3.zip", "1.0.2": "https://downloads.wordpress.org/plugin/post-types-order.1.0.2.zip", "1.1.2": "https://downloads.wordpress.org/plugin/post-types-order.1.1.2.zip", "1.3.9": "https://downloads.wordpress.org/plugin/post-types-order.1.3.9.zip", "1.4.3": "https://downloads.wordpress.org/plugin/post-types-order.1.4.3.zip", "1.4.6": "https://downloads.wordpress.org/plugin/post-types-order.1.4.6.zip", "1.5.1": "https://downloads.wordpress.org/plugin/post-types-order.1.5.1.zip", "1.5.4": "https://downloads.wordpress.org/plugin/post-types-order.1.5.4.zip", "1.5.7": "https://downloads.wordpress.org/plugin/post-types-order.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/post-types-order.1.5.8.zip", "1.6.2": "https://downloads.wordpress.org/plugin/post-types-order.1.6.2.zip", "1.6.5": "https://downloads.wordpress.org/plugin/post-types-order.1.6.5.zip", "1.6.8": "https://downloads.wordpress.org/plugin/post-types-order.1.6.8.zip", "1.7.4": "https://downloads.wordpress.org/plugin/post-types-order.1.7.4.zip", "1.7.7": "https://downloads.wordpress.org/plugin/post-types-order.1.7.7.zip", "1.7.9": "https://downloads.wordpress.org/plugin/post-types-order.1.7.9.zip", "1.8.1": "https://downloads.wordpress.org/plugin/post-types-order.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/post-types-order.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/post-types-order.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/post-types-order.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/post-types-order.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/plugin/post-types-order.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/plugin/post-types-order.1.8.7.zip", "1.8.9": "https://downloads.wordpress.org/plugin/post-types-order.1.8.9.zip", "1.9.3": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.zip", "1.9.5": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.zip", "1.9.7": "https://downloads.wordpress.org/plugin/post-types-order.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/post-types-order.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/post-types-order.1.9.9.zip", "2.0.2": "https://downloads.wordpress.org/plugin/post-types-order.2.0.2.zip", "2.0.5": "https://downloads.wordpress.org/plugin/post-types-order.2.0.5.zip", "2.0.7": "https://downloads.wordpress.org/plugin/post-types-order.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/post-types-order.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/post-types-order.2.0.9.zip", "2.1.1": "https://downloads.wordpress.org/plugin/post-types-order.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/post-types-order.2.1.2.zip", "2.1.4": "https://downloads.wordpress.org/plugin/post-types-order.2.1.4.zip", "2.1.8": "https://downloads.wordpress.org/plugin/post-types-order.2.1.8.zip", "2.2.1": "https://downloads.wordpress.org/plugin/post-types-order.2.2.1.zip", "2.2.3": "https://downloads.wordpress.org/plugin/post-types-order.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/post-types-order.2.2.4.zip", "2.2.6": "https://downloads.wordpress.org/plugin/post-types-order.2.2.6.zip", "2.3.1": "https://downloads.wordpress.org/plugin/post-types-order.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/post-types-order.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/post-types-order.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/post-types-order.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/post-types-order.2.3.5.zip", "2.3.7": "https://downloads.wordpress.org/plugin/post-types-order.2.3.7.zip", "1.8.9.2": "https://downloads.wordpress.org/plugin/post-types-order.1.8.9.2.zip", "1.9.3.1": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.1.zip", "1.9.3.2": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.2.zip", "1.9.3.3": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.3.zip", "1.9.3.5": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.5.zip", "1.9.3.6": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.6.zip", "1.9.3.9": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.9.zip", "1.9.4.1": "https://downloads.wordpress.org/plugin/post-types-order.1.9.4.1.zip", "1.9.4.2": "https://downloads.wordpress.org/plugin/post-types-order.1.9.4.2.zip", "1.9.4.3": "https://downloads.wordpress.org/plugin/post-types-order.1.9.4.3.zip", "1.9.5.1": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.1.zip", "1.9.5.2": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.2.zip", "1.9.5.4": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.4.zip", "1.9.5.5": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.5.zip", "1.9.5.6": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.6.zip", "1.9.5.7": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.7.zip", "1.9.9.1": "https://downloads.wordpress.org/plugin/post-types-order.1.9.9.1.zip", "1.9.9.2": "https://downloads.wordpress.org/plugin/post-types-order.1.9.9.2.zip"}, "downloaded": 15049734, "description": "

    Over 12 MILLIONS DOWNLOADS and near PERFECT rating out of 200 REVIEWS.
    \nEasily Sort Posts and Custom Post Types with Drag-and-Drop

    \n

    Take full control of your post order with a powerful plugin that lets you effortlessly reorder posts and custom post types using a simple drag-and-drop interface.

    \n

    Customize the order directly from the default WordPress post archive list or use the dedicated Re-Order interface, which displays all available items for easy management. Whether you’re working with default posts or custom post types, organizing your content has never been easier.

    \n

    Usage

    \n

    This plugin was designed to be user-friendly, ensuring that anyone can easily use its sorting feature, regardless of their WordPress experience:

    \n
      \n
    • Install the plugin via the “Install Plugins” interface or by uploading the post-types-order folder to the /wp-content/plugins/ directory.
    • \n
    • Activate the Post Types Order plugin.
    • \n
    • A new settings page will be added under Settings > Post Types Order. Visit this page and save the options for the first time.
    • \n
    • With the AutoSort option enabled, no code changes are needed, the plugin will automatically apply the customized post order.
    • \n
    • Use the Re-Order interface, available for every non-hierarchical custom post type, to change the post order as needed.
    • \n
    • For sorting posts via code, include ‘orderby’ => ‘menu_order’ within the custom query arguments. For more details, visit this guide Sample Usage
    • \n
    \n

    Example of Usage

    \n\n

    As you can see, reordering posts is as simple as dragging and dropping, with the changes instantly reflected on the front end.

    \n

    If the post order doesn’t update on your site, it could be due to one of two reasons: either there was a mistake during setup, or your theme/plugin is using a custom query that doesn’t follow WordPress Codex standards. But don’t worry—we’re here to help! You can report the issue in the forum, where many users are happy to assist, or you can contact us directly.

    \n

    If you encounter any problems with the plugin, feel free to reach out via the forum or contact us directly through our support page, and we’ll take a look.

    \n

    Need advanced features ?

    \n

    For advanced features and functionality, check out the extended version of this plugin at Advanced Post Types Order
    \n * Hierarchically post types order
    \n * Manual Drag & Drop / Automatic Sorting
    \n * Specify exact area where to apply through conditionals
    \n * Advanced query interface filtering and complex sorts including multiple post types and taxonomies
    \n * Posts Order by Custom Taxonomies
    \n * Enhanced Interface, List / Grid View
    \n * Allow Interface Filters (Categories, Dates, Search etc)
    \n * Post Types Thumbnails
    \n * Advanced query usage
    \n * MultiSite Network Support, WPML, Polylang, WooCommerce, WP E-Commerce, Platform Pro, Genesis etc
    \n * WPML 100% compatibility with sort synchronization across languages
    \n * Mobile Touch Drag & Drop Ready
    \n * Sort interfaces through admin and front end
    \n * Pagination for sort lists
    \n * Free Updates
    \n * Free Support

    \n

    This plugin is developed by Nsp-Code

    \n

    Localization

    \n

    Would you like to contribute a translation in your language? Please check at https://translate.wordpress.org/projects/wp-plugins/post-types-order

    \n

    There isn’t any Editors for your native language on plugin Contributors? You can help to moderate! https://translate.wordpress.org/projects/wp-plugins/post-types-order/contributors

    \n", "donate_link": "", "num_ratings": 292, "screenshots": {"1": {"src": "https://ps.w.org/post-types-order/trunk/screenshot-1.png?rev=3366526", "caption": "

    The ReOrder interface through which the sort can be created.

    "}, "2": {"src": "https://ps.w.org/post-types-order/trunk/screenshot-2.png?rev=3366526", "caption": "

    Sort can be managed within default WordPress post type interface.

    "}}, "support_url": "https://wordpress.org/support/plugin/post-types-order/", "contributors": {"tdgu": {"avatar": "https://secure.gravatar.com/avatar/33cd2778642a08ed5f692859713c051513a5281d1b850401f80408ba435c84cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tdgu/", "display_name": "Maya"}, "nsp-code": {"avatar": "https://secure.gravatar.com/avatar/b961b2e017c9707e4ba2b2d40dbb79756c50cbea5fb9b95ef2985fedd5ddc54d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nsp-code/", "display_name": "nsp-code"}}, "last_updated": "2025-09-23 1:18pm GMT", "preview_link": "https://wordpress.org/plugins/post-types-order/?preview=1", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/post-types-order.zip", "author_profile": "https://profiles.wordpress.org/nsp-code/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    Make sure you get the latest version.

    "}, "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-f875-70b2-9563-852e7404a667", "name": "Post Types Order", "slug": "post-types-order", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1758633480, "version": "2.4"}, "support_threads": 3, "requires_plugins": [], "short_description": "Sort posts and custom post type objects using a drag-and-drop, sortable JavaScript AJAX interface, or through the default WordPress dashboard", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "", "support_threads_resolved": 1}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1d32-72ea-9943-522944359a6c', 'did:web:api.aspiredev.org:packages:wp-plugin:premium-addons-for-elementor', 'premium-addons-for-elementor', 'Premium Addons for Elementor', '

    Supercharge your Elementor Page Builder with 90+ highly customizable addons and widgets, 550+ pre-made templates that will give you the ability to build sophisticated websites in less time with no coding required. Both Elementor and Premium Addons plugins take your WordPress website to the next level.

    -

    Check The Widgets & Addons Demo Pages

    -

    Useful Links

    -

    Support | Docs | Video Tutorials | Facebook Group | Upgrade to Pro

    -

    New: Image Carousel Option

    -

    We have recently added Source option in our Premium Carousel widget which helps you to create an image carousel/slider in a second just by selecting the images you want from site’s media library.

    -

    New: Performance and Speed Improvements

    -

    Premium Addons for Elementor is now much faster than ever. Only the required JS files will be loaded on your page to boost your page loading speed and site performance. All the editor loading issues have been fixed to make your site faster and minimize the time it takes for Elementor editor to load.

    -

    New: Liquid Glass Addon

    -

    Select between 6 attractive liquid glass and glassmorphism effects to be applied on any Elementor widget or container. It has also been added to be applied on specific parts inside our elements. Check it out now!.

    -

    New: WooCommerce Mini-Cart and Categories Listing Widgets

    -

    This powerful widget allows your customers to view the products in their shopping cart, change the quantity, remove items and check the total amount without leaving the page. We have also released Woo Categories widget to showcase your Woo categories in four neat skins. Check from here and here.

    -

    New: Mobile Nav Menu Widget

    -

    Create a neat mobile menu on your website with just few click with this powerful widget. You can set the click action of each menu item to a link or to open an off-canvas content. Check it out now!.

    -

    New: AJAX Search Form Widget

    -

    The ultimate solution to add a search form widget on Elementor websites. Customize the search results, add pagination or carousel and select between three different neat skins. Check it out now!.

    -

    Animated Shape Divider Addon

    -

    Add animated shape dividers for Elementor flexbox containers. You can select between 40+ shape dividers or use a custom SVG code to add your own divider. Check it out now!.

    -

    Advanced Media Carousel Widget

    -

    You can now create carousel using images, videos, Elementor templates to create the carousel you want. Select between four animations and dozens of customization options. Check it out now!.

    -

    Magazine Bundle

    -

    Smart Post Listing, Weather, World Clock, News Ticker, Tags Cloud and Recent Posts Notification widgets newly added to create the magazine website you ever dreamed. Check it out now!.

    -

    Elementor Navigation/Mega Menu Widget

    -

    Now, you build outstanding navigation menus and mega menus using Premium Navigation/Mega Menu Widget which allows you to select between four different layouts with dozens of options to create a responsive menu. Check it out now!.

    -

    Display Conditions

    -

    Premium Addons is proudly offering you a professional way to manage your website content with specific conditions which is perfect for marketers and eCommerce websites. You can show/hide content dynamically based on location, browser, operating system, user role, URL parameters, device type, Woocommerce display conditions such as WooCommerce product and WooCommerce shopping cart data, ACF fields, etc. Check the demo page

    -

    WooCommerce Products Listing widget

    -

    Show off your products in an elegant way using Premium Woo Products Widget that comes with unlimited customization options. Check the demo page

    -

    Equal Height Feature

    -

    Now, you can make your columns, widgets or any selector you want the same height with just ONE click using Equal Height feature in container settings -> Advanced tab.

    -

    Pre-made Container and Page Templates

    -

    NEW: Ever-growing Container/Page Templates Library Available on both Premium Addons Free and PRO versions. Browse, preview, and insert the template you like in your page/post with just ONE click. You can also select to insert the templates without media files (images, videos, etc.) to prevent overloading your WordPress Media Library with large files.

    -

    Lottie Animations Integration

    -

    You can now use Lottie Animations in ALL our widgets. Whatever widget that have an image or icon option now have also the option to add a Lottie animation. Lottie animations are open source, lightweight and available for free, Use them now to make your Elementor pages more eye-catching.

    -

    Post and Page Duplicator

    -

    Duplicate any post, page or template on your website with just ONE click. Check the documentation article from here.

    -

    Modular & Lightweight

    -

    Premium Addons for Elementor is fully modular. You can enable/disable specific elements to prevent overloading your website with code you will not actually use which helps your website have a blazing fast performance.

    -

    WPML Ready

    -

    You can use Premium Addons to build multilingual websites easily as our plugin is 100% compatible with WPML.

    -

    Fully Responsive & Cross Browser Ready

    -

    Each widget and addon has been tested on different screen sizes, mobile devices, and tablets keeping in mind to add special responsive controls for the tricky widgets and addons we create. We always test Premium Addons on BrowserStack to make sure that everything is stable.

    -

    Editor Panel Not Loading

    -

    How to resolve Elementor editor panel loading issue when Premium Addons is active.

    -

    Widgets & Addons Included

    -

    Content Widgets

    -
      -
    • Carousel Widget (FREE): Create a slider of any Elementor content.
    • -
    • -

      Blog Widget (FREE): Showcase posts or any custom post type in 5 neat skins.

      -
    • -
    • -

      AJAX Search Widget (FREE): Add search form to your website with custom search query.

      -
    • -
    • -

      Smart Post Listing Widget (PRO): Create any posts layout you want using this widget. You can use it to create any grid layout to show your posts or any custom post type on your website.

      -
    • -
    • -

      World Clock Widget (FREE): This widget helps you to show time from any place. You can use it to show analog/digital clock.

      -
    • -
    • -

      Weather Widget (FREE): Weather widget is useful for showing weather forecast data by city name or custom coordinates. You can select between three neat layouts with dozens of customization options.

      -
    • -
    • -

      News Ticker Widget (FREE): Show your posts in an attractive way using this news ticker widget. Select between four different layouts. You can also use the widget to show Gold, Stock and Currencies prices.

      -
    • -
    • -

      Textual Showcase Widget (FREE): Elevate your text into stunning visual art with Elementor Textual Showcase. Experiment with Text, Images, Font Awesome Icons, SVG Draw, and Lottie Animations to craft eye-catching designs. Engage your audience by making your words move, fade, and transform dynamically, leaving a lasting impression.

      -
    • -
    • -

      Tags Cloud Widget (FREE): Showcase tags and categories as cloud, sphere, labeled.

      -
    • -
    • -

      Recent Posts Notification Widget (FREE): This widget helps you to show a notification icon on your website to show the latest posts that your website users have not seen yet.

      -
    • -
    • -

      Google Maps Widget (FREE): Advanced Google Maps Widget comes with features like adding multiple markers, custom skins, and much more options.

      -
    • -
    • Team Members Widget (FREE): Very good widget to list team members, co-workers, etc. Team Members Widget comes with many customization options.
    • -
    • Tabs Widget (PRO): Create both Vertical and Horizontal tabs with tons of styling features.
    • -
    • Content Switcher (PRO): Present multiple content in a smart way.
    • -
    • Animated Text Widget (FREE): The animated Fancy Text Widget comes with very useful options to help you create attractive marketing messages.
    • -
    • Heading Widget (FREE): Heading Widget has many customization options and ready-made heading styles.
    • -
    • Dual Heading Widget (FREE): Create a headline with 2 different unique styles.
    • -
    -

    Image & Video Widgets

    -
      -
    • Site Logo Widget (PRO): Create an attractive logo for your brand using an image, SVG shape, or Lottie Animation with tens of customization options.
    • -
    • Media Gallery Widget (FREE): Highly customizable gallery widget that can be used for creating attractive looking image galleries and portfolios.
    • -
    • Advanced Media Carousel Widget (FREE): Create advanced carousel using images, videos or Elementor templates.
    • -
    • Image Scroll Widget (FREE): Allows you to represent your images in a brand new yet attractive way.
    • -
    • Image Comparison Widget (PRO): Create vertical or horizontal image comparisons easily using this amazing widget.
    • -
    • Image Hotspots Widget (PRO): The only Image Hotspots Widget with 100% freehand design experience. Add hotspots to your image using mouse drag n’ drop.
    • -
    • Image Layers Widget (PRO): Combine images, Lottie animations and texts.
    • -
    • Image Accordion Widget (PRO): Create eye-catching Image Accordions in both vertical and horizontal orientations.
    • -
    • Video Box Widget (FREE): Bring videos from YouTube, Vimeo, Dailymotion, or upload your own using Video Box Widget. The widget comes with many customization features.
    • -
    -

    Container Addons & Widgets

    - -

    Off-Grid Widgets

    -
      -
    • Modal Box Widget (FREE): All purpose modal box widget with the ability to use Elementor Templates and many other options.
    • -
    • Alert Box Widget (PRO): Show a popups, GDPR alerts and much more with this handy widget from Premium Addons.
    • -
    • Off-canvas Widget (PRO): Another off-canvas widget allows you to slide in a container from any direction with a trigger.
    • -
    • Preview Window Widget (PRO): Very clever way to show more data in less content area.
    • -
    -

    Social Reviews & Testimonials Widgets

    -
      -
    • Testimonials Widget (FREE): The modern Testimonials Widget is available with many customization options. It can be used with Carousel Widget to create testimonials carousel.
    • -
    • Facebook Reviews Widget (PRO): This widget allows you to show off your Facebook Reviews on your website.
    • -
    • Google Reviews Widget (PRO): Show your business’s latest Google Reviews right on your webpage.
    • -
    • Yelp Reviews Widget (PRO): Show your business’s Yelp Reviews in your website pages with this useful widget.
    • -
    -

    Blurbs & CTA Widgets

    -
      -
    • Bullet List Widget (FREE): Create a bullet list with icons, images, and text tags beside Lottie animations.
    • -
    • Countdown Widget (FREE): Create sense of urgency with this widget. It’s perfect for under construction pages, events, sale items, etc.
    • -
    • Banner Widget (FREE): Animated and interactive Banner Widget comes with multiple styles and customization features.
    • -
    • Button Widget (FREE): Advanced Button Widget comes with lots of interactive animation, styling options, and onClick event option.
    • -
    • Image Button Widget (FREE): Image Button Widget is a unique element that can be used for creative and innovative call to action ideas.
    • -
    • 3D Hover Box Widget (PRO): Comes with 8 cool 3D interactive effects.
    • -
    • Icon Box Widget (PRO): An advanced Icon Box Widgetwith endless customization options.
    • -
    • iHover Widget (PRO): The popular iHover Widget with various interactive animations and styling options.
    • -
    • Unfold Widget (PRO): Advanced way to fit long text in small area. Unfold Widget is a great trick as it will make your layout design look better.
    • -
    -

    Social Feed Widgets

    -
      -
    • Pinterest Feed Widget (FREE): Get pins and boards from your Pinterest account and show them on your website. Select between three layouts and four skins.
    • -
    • TikTok Feed Widget (FREE): Get feed from your TikTok account and show them on your website. Advanced filtering options, three layouts and three skins.
    • -
    • Facebook Feed Widget (PRO): Show your Facebook Feed directly inside your website.
    • -
    • Twitter Feed Widget (PRO): Display your Twitter Feed on your website pages.
    • -
    • Instagram Feed Widget (PRO): Show your Instagram photos right on your webpage.
    • -
    • Behance Feed Widget (PRO): Show off your amazing portfolio projects using Behance Feed Widget.
    • -
    -

    Tables, Charts & Anything Data Widgets

    -
      -
    • Progress Bar Widget (FREE): The most advanced Progress Bar Widget comes with multiple labels option.
    • -
    • Pricing Table Widget (FREE): Highly customizable Pricing Table Widget with tons of styling options.
    • -
    • Charts Widget (PRO): The only advanced Charts Widget is available in Premium Addons. Create Line Chart, Bar Chart, Doughnut Chart, Radar Chart, and more.
    • -
    • Tables Widget (PRO): Create sophisticated tables with unique styling and interactivity options.
    • -
    • Counter Widget (FREE): Show your facts & figures with Counter Widget.
    • -
    -

    Contact Widgets

    - -

    Design Widgets

    -
      -
    • Divider Widget (PRO): Design beautiful dividers with this unique widget.
    • -
    • Image Separator Widget (FREE): Add an Image Separator between containers with this handy yet fully responsive widget.
    • -
    -

    Support & Documentation

    -
      -
    • Documentation Search here first if you need to know how a widget or feature works or for troubleshooting.
    • -
    • Video Tutorials This playlist includes many widgets’ video tutorials. We are adding more regularly.
    • -
    • Facebook Group A great place to get help or ask a question about Premium Addons.
    • -
    • Community Forums Another good place to search for answers or post your own question.
    • -
    • Support Ticket System We also welcome Free users’ issues which require access credentials to check.
    • -
    -

    Check Premium Addons PRO

    -

    Love Premium Addons User? rate us on WordPress 🙂

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Premium Addons for Elementor", "slug": "premium-addons-for-elementor", "tags": {"widgets": "widgets", "elementor": "elementor", "elementor-addons": "elementor addons", "elementor-elements": "elementor elements", "elementor-templates": "elementor templates"}, "added": "2018-01-09", "icons": {"1x": "https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=2421900", "svg": "https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=2421900"}, "author": "Leap13", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/premium-addons-for-elementor/assets/banner-772x250.png?rev=3174756", "high": "https://ps.w.org/premium-addons-for-elementor/assets/banner-1544x500.png?rev=3174756"}, "ratings": {"1": 16, "2": 6, "3": 6, "4": 40, "5": 1581}, "version": "4.11.45", "homepage": "https://premiumaddons.com", "requires": "5.0", "sections": {"faq": "\n
    \nIs this a standalone Plugin?\n\n

    \n

    No. You cannot use Premium Addons without Elementor.

    \n

    \n
    \nDoes it work with any WordPress theme?\n\n

    \n

    Yes, it will work with any WordPress theme as long as you are using Elementor as a page builder.

    \n

    \n
    \nWill this plugin slow down my website speed?\n\n

    \n

    Premium Addons is light weight and we also gave you the control to enable only the elements you actually use on your website for faster performance.

    \n

    \n
    \nIs this plugin 100% Ads Free?\n\n

    \n

    Premium Addons is 100% Ads Free, Ads can only be detected from Youtube videos, that can be added to Premium Widgets ( eg. Modal Box, Video Box, Blog, etc.)

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy (fedorveuser) on October 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    There is some useful features.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Image Comparison Widget problem

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jhurtarte on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have a Premium Addons license. I had a minor issue using one of the widgets (Image Comparison Widget). I reported it to technical support, and they responded very quickly. They added a snippet of code (HTML), and the problem was resolved. Thanks to Abonob for your timely support.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Power-packed features for Pro WordPress sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bobsisf on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin that significantly enhances the free Elementor page builder. It offers a vast collection of over 60 customizable widgets and a large library of pre-made templates, enabling you to create professional and dynamic websites easily. The plugin is well-optimized for speed and includes unique features like Lottie animations and fancy text effects. It''s a reliable and regularly updated tool, perfect for anyone looking to expand their Elementor site''s capabilities. Perfect for creating professional WordPress sites efficiently. Highly recommended.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So professionals

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Stéphane (neotheps) on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Karima was helping me to solve a problem that I couldn''t do alone and was so attentive.
    Thanks again

    \n\n\n\n

    Stéphane

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy egholami on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s nice.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Flynova (flynova) on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A must-have plugin for development with Elementor!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Outstanding support and lots of Widgets

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anakdelgado on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Premium Addons has tons of useful widgets that make building pages super easy. I had a small issue with video loading and their support team helped me fix it quickly. Really impressed!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ventima9900 on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Perfect

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A must have plugin for development with Elementor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bhanuka (bhanukaw) on August 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin offers a number of useful components for Website website development with Elementor.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This Good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rolex20 on August 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this plugin is good

    \n
    \n
    \n", "changelog": "

    4.11.45 – 28/10/2025

    \n
      \n
    • New: Added Discount Reveal Effect for price in Pricing Table widget.
    • \n
    • New: Added Allow Backorders option in Woo Mini Cart widget.
    • \n
    • Tweak: Improved Tags Cloud and Countdown widgets for better performance.
    • \n
    • Tweak: Improved Templates Live Editor to be able to edit any select template.
    • \n
    • Fixed: Product image is not showing in correct height in Woo Products Listing widget Quick View popup.
    • \n
    • Fixed: Layout #2 issue in Get Videos from Channel/Playlist option in Video Box widget.
    • \n
    \n

    4.11.44 – 20/10/2025

    \n
      \n
    • Tweak: Added Close Delay option in Woo Mini Cart widget.
    • \n
    • Tweak: Improved styling for Demo/Templates buttons on the editor for better UI.
    • \n
    \n

    4.11.43 – 16/10/2025

    \n
      \n
    • Tweak: Added transition for hover background in Image Button widget.
    • \n
    • Tweak: Added background image option for digits in Countdown widget.
    • \n
    • Tweak: Added Icon Background control for icons in Bullet List widget.
    • \n
    \n

    4.11.42 – 13/10/2025

    \n
      \n
    • Fixed: Security issue in TikTok Feed widget handler.
    • \n
    • Fixed: Page Publish button not detecting Premium Templates insert.
    • \n
    \n

    4.11.41 – 05/10/2025

    \n
      \n
    • New: Added Order controls in Pricing Table to allow content reordering.
    • \n
    • Tweak: Improve Button and Image Buttons widget performance by removing duplicate Icon Spacing control.
    • \n
    • Tweak: Added Media Info option for videos in Advanced Carousel widget.
    • \n
    • Fixed: Link not working in Animated Text widget.
    • \n
    \n

    4.11.40 – 28/09/2025

    \n
      \n
    • New: Gallery option in Carousel widget to create image carousel much easier.
    • \n
    • Tweak: Code improvements for better performance.
    • \n
    • Fixed: SVG Draw not working when draw option is disabled.
    • \n
    • Fixed: Link not working in Animated Text widget.
    • \n
    \n

    4.11.39 – 24/09/2025

    \n
      \n
    • Tweak: Load JS libraries only when needed for Contact Form, Dual Heading, Lottie Animation, Media Grid, News Ticker, Mega Menu and SVG Draw widgets.
    • \n
    • Fixed: Close Icon not showing in Recent Posts Notification widget.
    • \n
    • Fixed: Bullet List alignment issue.
    • \n
    \n

    4.11.38 – 22/09/2025

    \n
      \n
    • New: Load JS libraries only when needed to improve loading speed.
    • \n
    • Fixed: Returning Visitor Display Condition not working correctly.
    • \n
    • Fixed: View Cart string not being translated in Woo Mini Products Listing widget.
    • \n
    \n

    4.11.37 – 17/09/2025

    \n
      \n
    • New: Added Slide Bullet and Translate Bullet effects in Bullet List widget.
    • \n
    • Tweak: Added Sort By select in Premium Templates.
    • \n
    • Tweak: Improved compatibility between Bullet List, Weather Forecast and WPML translation plugin.
    • \n
    • Fixed: Accessibility issue in Advanced Carousel widget.
    • \n
    • Fixed: Gradient Effect not working in Bullet List widget.
    • \n
    \n

    4.11.36 – 15/09/2025

    \n
      \n
    • Tweak: Improved compatibility between Dynamic Assets feature and LiteSpeed caching plugin.
    • \n
    • Tweak: Compatibility with Elementor v3.32.
    • \n
    \n

    4.11.35 – 11/09/2025

    \n
      \n
    • Tweak: Code improvements in Tooltips addon, Advanced Carousel and Textual Showcase widgets for better performance and faster loading speed.
    • \n
    • Tweak: Make arrows in Carousel widget accessible via keyboard.
    • \n
    • Fixed: Thin Circle navigation dot icon not working in Carousel widget.
    • \n
    \n

    4.11.34 – 08/09/2025

    \n
      \n
    • Tweak: Code improvements in all widgets for better performance and faster loading speed.
    • \n
    \n

    4.11.33 – 08/09/2025

    \n
      \n
    • Tweak: Code improvements in Dynamic Assets feature for better performance and faster loading speed.
    • \n
    • Tweak: Loading speed improvements in Video Box and News Ticker widgets.
    • \n
    \n

    4.11.32 – 03/09/2025

    \n
      \n
    • Tweak: Code improvements in Animated Shape Divider addon for better performance and faster loading speed.
    • \n
    \n

    4.11.31 – 02/09/2025

    \n
      \n
    • Tweak: Added CSS ID option in Mobile Menu widget.
    • \n
    • Tweak: Improved RTL compatibility of Woo Mini Cart widget.
    • \n
    \n

    4.11.30 – 26/08/2025

    \n
      \n
    • Tweak: Code improvements for better performance.
    • \n
    \n

    4.11.29 – 19/08/2025

    \n
      \n
    • Tweak: Improved RTL compatibility of Woo Products, Woo Categories, Blog widgets.
    • \n
    • Tweak: Improved compatibility between Woo CTA and WPML translation plugin.
    • \n
    \n

    4.11.28 – 14/08/2025

    \n
      \n
    • Tweak: Improved compatibility between News Ticker and WPML translation plugin.
    • \n
    • Fixed: Carousel widget not showing templates in some cases.
    • \n
    • Fixed: Info window for Google Maps widget marker not positioned correctly on Chrome.
    • \n
    \n

    4.11.27 – 07/08/2025

    \n
      \n
    • Tweak: Improved RTL compatibility of Recent Posts Notification, News Ticker and Image Scroll widgets.
    • \n
    • Fixed: Appearance option not working on touch devices in Carousel widget.
    • \n
    \n

    4.11.26 – 06/08/2025

    \n
      \n
    • Tweak: Compatibility with Elementor v3.31.
    • \n
    • Tweak: Styling improved for Pre-made Templates button.
    • \n
    \n

    4.11.25 – 05/08/2025

    \n
      \n
    • Tweak: Added button to filter pre-made blocks by widget.
    • \n
    • Fixed: Mini Cart strings not showing in Loco translation plugin.
    • \n
    \n

    4.11.24 – 30/07/2025

    \n
      \n
    • Tweak: Premium Templates performance improvements.
    • \n
    • Fixed: PHP warnings when image has not alt attribute in Media Grid widget.
    • \n
    \n

    4.11.23 – 29/07/2025

    \n
      \n
    • Tweak: Equal Height in Woo Products widget.
    • \n
    • Tweak: Improved RTL compatibility of Weather Forecast widget.
    • \n
    • Tweak: Added Margin control for arrows in Carousel widget .
    • \n
    • Fixed: Carousel arrows conflict in Weather Forecast widget.
    • \n
    • Fixed: PHP warning when running setup wizard for first time.
    • \n
    \n

    4.11.22 – 24/07/2025

    \n
      \n
    • Tweak: Improved RTL compatibility of World Clock widget.
    • \n
    \n

    4.11.21 – 21/07/2025

    \n
      \n
    • Tweak: Dashboard pages loading speed improved by unloading unnecessary PHP files.
    • \n
    \n

    4.11.20 – 15/07/2025

    \n
      \n
    • Tweak: Editor loading speed improved by removing some JS files.
    • \n
    • Tweak: Added two more shadow presets in Liquid Glass addon.
    • \n
    \n

    4.11.19 – 14/07/2025

    \n
      \n
    • Tweak: Added Coupon Remove button in Mini Cart widget.
    • \n
    • Tweak: Added Tax Label option in Mini Cart widget.
    • \n
    • Tweak: Improved RTL compatibility in Tags Cloud widget.
    • \n
    • Tweak: Added option to search using Title or Description in AJAX Search widget.
    • \n
    • Fixed: Fatal error in Media Grid widget when mb_ PHP extension is not installed.
    • \n
    \n

    4.11.18 – 09/07/2025

    \n
      \n
    • Fixed: Google Maps markers not showing after v4.11.17
    • \n
    • Fixed: PHP warning when SVG Draw widget is used while Dynamic Assets feature is enabled.
    • \n
    \n

    4.11.17 – 03/07/2025

    \n
      \n
    • Fixed: Display Conditions showing code after v4.11.16.
    • \n
    \n

    4.11.16 – 03/07/2025

    \n
      \n
    • Tweak: Added “DC” icon when Display Condition is enabled.
    • \n
    • Tweak: Setup Wizard improved for better user experience.
    • \n
    • Fixed: Returning Visitor Display Condition causes unnecessary cookies to be stored.
    • \n
    \n

    4.11.15 – 24/06/2025

    \n
      \n
    • Tweak: Improved compatibility with RTL sites.
    • \n
    • Tweak: Plugin size decreased by improving Dynamic CSS generating.
    • \n
    • Fixed: Effect #8 not working on RTL in Banner widget.
    • \n
    • Fixed: Style #3 not working on RTL in Team Members widget.
    • \n
    • Fixed: Horizontal Direction not working on RTL in Image Scroll widget.
    • \n
    \n

    4.11.14 – 18/06/2025

    \n
      \n
    • New: Introducing Elementor Liquid Glass Addon – here.
    • \n
    • Tweak: Added Arrows Position option for carousel arrows in Testimonials widget.
    • \n
    • Fixed: Free shipping progress bar not working on Chrome in Woo Mini Cart widget.
    • \n
    \n

    4.11.13 – 04/06/2025

    \n
      \n
    • Tweak: Improved Countdown widget JS code.
    • \n
    • Tweak: Hide Google Maps until the API JS is loaded.
    • \n
    \n

    4.11.12 – 03/06/2025

    \n
      \n
    • Tweak: Added Align Submenu to Top option in Mega Menu widget.
    • \n
    • Tweak: Markers Clustering controls improved in Google Maps widget.
    • \n
    • Fixed: Fatal error when plugin is installed before Elementor.
    • \n
    \n

    4.11.11 – 25/05/2025

    \n
      \n
    • Fixed: Fatal error after v4.11.11.
    • \n
    \n

    4.11.10 – 25/05/2025

    \n
      \n
    • Fixed: Icons issue in Mega Menu widget since v4.11.9.
    • \n
    \n

    4.11.9 – 02/06/2025

    \n
      \n
    • Tweak: Added Slide Menu direction option in Mega Menu widget.
    • \n
    • Tweak: Submenu Trigger option in Mega Menu widget.
    • \n
    • Fixed: Error while saving Elementor templates after Elementor v3.29.
    • \n
    • Fixed: Icons from custom icons are not showing in some widgets.
    • \n
    • Fixed: Security issue in Coutdown widget.
    • \n
    \n

    4.11.8 – 17/05/2025

    \n
      \n
    • Fixed: Fatal error with ‘Page’ display condition after v4.11.7.
    • \n
    \n

    4.11.7 – 15/05/2025

    \n
      \n
    • Tweak: New layouts added to Woo Mini Cart widget.
    • \n
    • Tweak: Cross-sells carousel option added to Woo Mini Cart widget.
    • \n
    • Tweak: Added Language option for units in Countdown widget.
    • \n
    • Tweak: Added Profile Link option for member image/name in Team Members widget.
    • \n
    • Fixed: Layout broken in Woo Mini Cart widget in some cases.
    • \n
    • Fixed: Display conditions ‘Page’ doesn’t detect the shop page ID.
    • \n
    \n

    4.11.6 – 30/04/2025

    \n
      \n
    • Fixed: Prevent plugin rating banner from showing on each update.
    • \n
    • Fixed: Plugin causes slow dashboard loading in some cases.
    • \n
    \n

    4.11.5 – 24/04/2025

    \n
      \n
    • Fixed: All global features are disabled when setup wizard is completed.
    • \n
    • Fixed: Pro global feature name is not showing in setup wizard.
    • \n
    \n

    4.11.4 – 23/04/2025

    \n
      \n
    • New: Introducing Setup Wizard for easier plugin settings customization.
    • \n
    • Tweak: Compatibility between Woo Products widget and BeRocket filtering plugin.
    • \n
    • Fixed: Console error in Mobile Menu widget.
    • \n
    • Fixed: Layout broken with Style 7 in Heading widget.
    • \n
    \n

    4.11.3 – 16/04/2025

    \n
      \n
    • Tweak: Added Fill Color Speed option in SVG Draw widget.
    • \n
    • Fixed: Fatal error in Pinterest Feed widget when Board ID option is empty.
    • \n
    • Fixed: HTML markup issue in Heading widget.
    • \n
    • Fixed: Tooltips addon not working when Position control value has spaces in it.
    • \n
    \n

    4.11.2 – 08/04/2025

    \n
      \n
    • Tweak: Translate date based on site’s current language in Pinterest and TikTok Feed widgets.
    • \n
    \n

    4.11.1 – 07/04/2025

    \n
      \n
    • Tweak: Premium Blog HTML markup improved for better accessibility.
    • \n
    • Fixed: Templates not showing in Mega Menu when Hide Mobile Menu option is enabled.
    • \n
    • Fixed: Carousel arrows not showing in AJAX Search widget.
    • \n
    \n

    4.11.0 – 30/03/2025

    \n
      \n
    • Tweak: Added Delay control in Lottie animation widget.
    • \n
    • Tweak: Vertical Scroll widget behavior on Elementor editor.
    • \n
    • Tweak: Removed nofollow link attribute for links in Google Maps widget markers.
    • \n
    • Tweak: Removed Frontpage option from Static Page in Display Conditions addon.
    • \n
    • Tweak: Action control changed to show when Query is set to Posts in AJAX Search widget.
    • \n
    \n

    4.10.90 – 25/03/2025

    \n
      \n
    • Tweak: Compatibility with Google Maps AdvancedMarkers API in Google Maps widget.
    • \n
    • Tweak: Code improvements for better performance.
    • \n
    • Tweak: Added Maximum Height option for Quick View in Woo Products widget.
    • \n
    • Fixed: Elementor templates in Mega Menu widget can’t be edited.
    • \n
    • Fixed: Stock message in Woo Mini Cart widget can’t be translated.
    • \n
    • Fixed: Styling issue in Progress Bar widget on small screens.
    • \n
    \n

    4.10.89 – 17/03/2025

    \n
      \n
    • Tweak: Code improvements for better performance.
    • \n
    • Fixed: Dynamic Assets Generate not working in some cases.
    • \n
    \n

    4.10.88 – 10/03/2025

    \n
      \n
    • Tweak: Code improvements for better performance.
    • \n
    • Fixed: Image/Content Display option is not responsive in Woo Products Listing widget.
    • \n
    • Fixed: Fatal error caused by Dynamic Assets Generate.
    • \n
    \n

    4.10.87 – 27/02/2025

    \n
      \n
    • Tweak: Added option to use SVG icons in Mega Menu widget.
    • \n
    • Tweak: Improved compatibility between Woo CTA button widget and Woocommerce Subscriptions plugin.
    • \n
    • Fixed: Some issues related to alignment in Global Tooltips addon.
    • \n
    • Fixed: Elementor Templates not working on editor in Global Tooltips addon.
    • \n
    • Fixed: Security issue in Lottie JavaScript file.
    • \n
    \n

    4.10.86 – 20/02/2025

    \n
      \n
    • Tweak: Show message when PHP memory/time limit are low to improve usability.
    • \n
    • Fixed: Restart option in Countdown Timer widget not working correctly.
    • \n
    \n

    4.10.85 – 16/02/2025

    \n
      \n
    • Tweak: Added notice in Mega Menu Settings popup for better UX and prevent conflicts.
    • \n
    \n

    4.10.84 – 16/02/2025

    \n
      \n
    • Tweak: Added Show Parent Terms Only option in Tags Cloud.
    • \n
    • Tweak: Improved Tags Cloud to count posts in child terms.
    • \n
    • Fixed: Layout breaks in some cases when Dynamic Assets feature is enabled.
    • \n
    \n

    4.10.83 – 12/02/2025

    \n
      \n
    • Tweak: Added option to control if mobile menu should be rendered in Mega Menu widget.
    • \n
    • Fixed: PHP warning in Woo CTA widget.
    • \n
    • Fixed: Floating Effects not updating correctly.
    • \n
    • Fixed: PHP warning when rendering SVG icons.
    • \n
    \n

    4.10.82 – 03/02/2025

    \n
      \n
    • Tweak: Aspect Ratio option in Video Box widget.
    • \n
    • Tweak: Code formatting for better security.
    • \n
    • Fixed: Submenus overlapping issue in Mega Menu widget.
    • \n
    \n

    4.10.81 – 30/01/2025

    \n
      \n
    • Fixed: Fatal error in Button widget after v4.10.80
    • \n
    \n

    4.10.80 – 29/01/2025

    \n
      \n
    • Tweak: Core improved to run editor faster.
    • \n
    • Tweak: Added Dismissible option in Modal Box widget.
    • \n
    • Fixed: PHP warning in Timezone option in Display Conditions addon.
    • \n
    • Fixed: PHP warning in Heading widget.
    • \n
    \n

    4.10.79 – 22/01/2025

    \n
      \n
    • Tweak: Load some CSS files only when needed to improve performance.
    • \n
    • Fixed: PHP warning in Location display condition.
    • \n
    • Fixed: Brokens CSS links showing in broken link checker.
    • \n
    \n

    4.10.78 – 15/01/2025

    \n
      \n
    • Tweak: Removed unnecessary PHP files to minimize plugin size.
    • \n
    • Fixed: Navigation arrows not showing when lightbox is set to Elementor in Media Grid widget.
    • \n
    \n

    4.10.77 – 13/01/2025

    \n
      \n
    • Tweak: Change active menu item on scroll in Mega Menu widget.
    • \n
    • Tweak: Show a notice when inserting a template fails.
    • \n
    • Tweak: Woo Products Listing widget improved on RTL sites.
    • \n
    • Fixed: Get videos from Playlist in Video Box widget not working with YouTube Reels.
    • \n
    \n

    4.10.76 – 06/01/2025

    \n
      \n
    • Tweak: Added the ability to activate filters in Blog widget from other pages.
    • \n
    • Fixed: SVG Draw widget causes scroll to top on iOS devices.
    • \n
    \n

    4.10.75 – 31/12/2024

    \n
      \n
    • Fixed: PHP warning in Shape Divider container addon.
    • \n
    \n

    4.10.74 – 30/12/2024

    \n
      \n
    • Fixed: Wrapper Link global addon not working in some cases.
    • \n
    • Fixed: Issues in AJAX Search widget.
    • \n
    \n

    4.10.73 – 26/12/2024

    \n
      \n
    • Tweak: Loading speed improved when Dynamic Assets feature is enabled.
    • \n
    • Fixed: Compatibility issues with WP-Optimize plugin.
    • \n
    • Fixed: Go to Search option not working in AJAX Search widget.
    • \n
    • Fixed: Carousel option not working in Team Members widget.
    • \n
    \n

    4.10.72 – 24/12/2024

    \n
      \n
    • Tweak: Improved loading speed of widgets contain Draw Icon option.
    • \n
    • Fixed: Cross Domain Copy/Paste All Content not working.
    • \n
    \n

    4.10.71 – 22/12/2024

    \n
      \n
    • Fixed: Elementor Transform effects not working for some widgets.
    • \n
    • Fixed: Controls for global controls not being added in correct tabs.
    • \n
    \n

    4.10.70 – 19/12/2024

    \n
      \n
    • Tweak: Improved compatibility with Optimize Markup Elementor feature.
    • \n
    • Tweak: SVG Draw Icon option improved for better loading speed.
    • \n
    • Fixed: Premium Templates button not showing when adding a new container.
    • \n
    • Fixed: PHP warnings in Animated Text widget.
    • \n
    • Fixed: Security issue in Mobile Menu widget.
    • \n
    \n

    4.10.69 – 15/12/2024

    \n
      \n
    • Tweak: SVG Draw Icon option improved in some widgets.
    • \n
    \n

    4.10.68 – 12/12/2024

    \n
      \n
    • Tweak: Added Usage Type option in plugin’s dashboard settings page.
    • \n
    • Tweak: Added VW size unit for some controls.
    • \n
    • Fixed: Lightbox icon is showing even when option is disabled in Advanced Carousel widget.
    • \n
    • Fixed: Issues in Dynamic Assets.
    • \n
    \n

    4.10.67 – 11/12/2024

    \n
      \n
    • Tweak: Premium Templates loading speed improved.
    • \n
    \n

    4.10.66 – 03/12/2024

    \n
      \n
    • Tweak: Added options to control Author Image size, border and border radius in Blog widget.
    • \n
    • Tweak: Added Wave Effect in Dual Heading widget.
    • \n
    • Tweak: Added On Page Exit Intent trigger in Modal Box widget.
    • \n
    \n

    4.10.65 – 25/11/2024

    \n
      \n
    • Tweak: Added Full Width Custom CSS Selector option in Mega Menu widget.
    • \n
    • Fixed: Alignment issue in animation #7 in Banner widget.
    • \n
    \n

    4.10.64 – 24/11/2024

    \n
      \n
    • Tweak: Improved Reveal effect in Animated Text widget.
    • \n
    • Fixed: Wrapper Link feature not working with anchor links.
    • \n
    • Fixed: PHP Warning due to white labeling options.
    • \n
    • Fixed: Huge spacing after animation end in vertical direction in Advanced Carousel widget.
    • \n
    \n

    4.10.63 – 13/11/2024

    \n
      \n
    • Tweak: Added List Padding control in Bullet List widget.
    • \n
    • Tweak: Added option to load boards dynamically in Pinterest Feed widget.
    • \n
    • Fixed: Premium Templates not being inserted in correct position.
    • \n
    • Fixed: Console JS error showing on the editor page.
    • \n
    • Fixed: Alignment option not working correctly on responsive devices in Bullet List widget.
    • \n
    \n

    4.10.62 – 30/10/2024

    \n
      \n
    • Tweak: Load JS code for Wrapper Link only when its used on page.
    • \n
    • Fixed: Icon Size not working on SVG code icon in News Ticker widget.
    • \n
    • Fixed: Admin notices appear again after they are dismissed.
    • \n
    \n

    4.10.61 – 27/10/2024

    \n
      \n
    • Tweak: Premium Templates loading speed improved.
    • \n
    • Tweak: Added Item Name option in Advanced Carousel widget.
    • \n
    • Fixed: ACF fields are not showing in Display Conditions.
    • \n
    • Fixed: Typing effect not working in Animated Text widget when used multiple times on page.
    • \n
    • Fixed: Media Grid widget shows the first image only in the lightbox.
    • \n
    \n

    4.10.60 – 22/10/2024

    \n
      \n
    • Fixed: PHP warning in Recent Posts Notification widget.
    • \n
    \n

    4.10.59 – 17/10/2024

    \n
      \n
    • Fixed: PHP warning Undefined variable $search.
    • \n
    \n

    4.10.58 – 17/10/2024

    \n
      \n
    • Tweak: Added Text Content Position in News Ticker widget.
    • \n
    • Fixed: Conflict between Global Tooltips addon and Premium Image Hotspots widget.
    • \n
    • Fixed: Blog widget not working correctly after 4.10.57.
    • \n
    \n

    4.10.57 – 15/10/2024

    \n
      \n
    • Deprecated: Enable Full Section Scroll on Touch Devices control in Vertical Scroll widget.
    • \n
    • Tweak: Global addons code refactored to minimize memory usage.
    • \n
    • Tweak: Animated Shape Divider addon code refactored to improve editor loading speed.
    • \n
    • Tweak: Premium Templates code refactored to improve site’s frontend loading speed.
    • \n
    • Fixed: Security issue in Display Conditions addon and Mega Menu widget.
    • \n
    • Fixed: View and Empty Cart translation issue in Woo Mini Cart widget.
    • \n
    • Fixed: Vertical Scroll widget causing scroll issues on touch devices.
    • \n
    • Fixed: Media Grid lightbox always show the first image since v4.10.55.
    • \n
    • Fixed: TikTok Feed widget throws PHP warning.
    • \n
    \n

    4.10.56 – 09/10/2024

    \n
      \n
    • Tweak: Dashboard settings tab loading speed improved.
    • \n
    • Tweak: Improve layout rendering in Mini Cart widget for better loading speed.
    • \n
    • Fixed: Compatibility issues with WPML translation plugin.
    • \n
    \n

    4.10.55 – 01/10/2024

    \n
      \n
    • Fixed: Issues with Slide-in WooCommerce cart and Mini Cart layout after v4.10.54.
    • \n
    \n

    4.10.54 – 30/09/2024

    \n
      \n
    • Tweak: Plugin performance and loading speed improved.
    • \n
    • Fixed: WooCommerce mini-cart template broken after v4.10.53.
    • \n
    \n

    4.10.53 – 26/09/2024

    \n
      \n
    • New: Added WooCommerce Mini Cart widget – here.
    • \n
    • Tweak: Compatibility with Elementor Elements Caching feature.
    • \n
    • Tweak: Added “Load Animation on Page Load/Scroll” for Animated Text widget.
    • \n
    • Fixed: Carousel arrows not showing in Mobile Menu widget.
    • \n
    • Fixed: Layout break when Load More Products button clicked in Woo Products Listing widget.
    • \n
    \n

    4.10.52 – 24/09/2024

    \n
      \n
    • Tweak: Added Highlighted Text Color control in AJAX Search widget.
    • \n
    • Tweak: Remove any unwanted generated files after plugin deactivation.
    • \n
    • Fixed: Links not working in Mobile Menu widget.
    • \n
    • Fixed: Skin #4 not working on RTL sites in Testimonials widget.
    • \n
    • Fixed: Social icons not showing in Team Members widget.
    • \n
    \n

    4.10.51 – 12/09/2024

    \n
      \n
    • Tweak: Added Play Inline option in Video Box widget.
    • \n
    • Tweak: Added Cluster Icon size control in Google Maps widget.
    • \n
    • Fixed: Conflict in Dynamic Assets Generate feature.
    • \n
    • Fixed: Items links not working in Advanced Carousel widget.
    • \n
    \n

    4.10.50 – 04/09/2024

    \n
      \n
    • Tweak: Added control to apply Excerpt Length option on posts with defined excerpt.
    • \n
    • Fixed: PHP warning for Display condition in Display Conditions feature.
    • \n
    • Fixed: Conflict between Stretch Section option and Carousel widget.
    • \n
    • Fixed: Layout broken in some cases with Dynamic Assets feature.
    • \n
    • Fixed: PHP warning in Global Tooltip addon.
    • \n
    \n

    4.10.49 – 27/08/2024

    \n
      \n
    • Tweak: Added option to control typography, border and background for quantity field in Woo CTA widget.
    • \n
    • Tweak: Added option to automatically redirect to cart page after product is added to cart in Woo CTA widget.
    • \n
    • Tweak: Handle errors when inserting a template including a disabled element.
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    Supercharge your Elementor Page Builder with 90+ highly customizable addons and widgets, 550+ pre-made templates that will give you the ability to build sophisticated websites in less time with no coding required. Both Elementor and Premium Addons plugins take your WordPress website to the next level.

    \n

    Check The Widgets & Addons Demo Pages

    \n

    Useful Links

    \n

    Support | Docs | Video Tutorials | Facebook Group | Upgrade to Pro

    \n

    New: Image Carousel Option

    \n

    We have recently added Source option in our Premium Carousel widget which helps you to create an image carousel/slider in a second just by selecting the images you want from site’s media library.

    \n

    New: Performance and Speed Improvements

    \n

    Premium Addons for Elementor is now much faster than ever. Only the required JS files will be loaded on your page to boost your page loading speed and site performance. All the editor loading issues have been fixed to make your site faster and minimize the time it takes for Elementor editor to load.

    \n

    New: Liquid Glass Addon

    \n

    Select between 6 attractive liquid glass and glassmorphism effects to be applied on any Elementor widget or container. It has also been added to be applied on specific parts inside our elements. Check it out now!.

    \n

    New: WooCommerce Mini-Cart and Categories Listing Widgets

    \n

    This powerful widget allows your customers to view the products in their shopping cart, change the quantity, remove items and check the total amount without leaving the page. We have also released Woo Categories widget to showcase your Woo categories in four neat skins. Check from here and here.

    \n

    New: Mobile Nav Menu Widget

    \n

    Create a neat mobile menu on your website with just few click with this powerful widget. You can set the click action of each menu item to a link or to open an off-canvas content. Check it out now!.

    \n

    New: AJAX Search Form Widget

    \n

    The ultimate solution to add a search form widget on Elementor websites. Customize the search results, add pagination or carousel and select between three different neat skins. Check it out now!.

    \n

    Animated Shape Divider Addon

    \n

    Add animated shape dividers for Elementor flexbox containers. You can select between 40+ shape dividers or use a custom SVG code to add your own divider. Check it out now!.

    \n

    Advanced Media Carousel Widget

    \n

    You can now create carousel using images, videos, Elementor templates to create the carousel you want. Select between four animations and dozens of customization options. Check it out now!.

    \n

    Magazine Bundle

    \n

    Smart Post Listing, Weather, World Clock, News Ticker, Tags Cloud and Recent Posts Notification widgets newly added to create the magazine website you ever dreamed. Check it out now!.

    \n

    Elementor Navigation/Mega Menu Widget

    \n

    Now, you build outstanding navigation menus and mega menus using Premium Navigation/Mega Menu Widget which allows you to select between four different layouts with dozens of options to create a responsive menu. Check it out now!.

    \n

    Display Conditions

    \n

    Premium Addons is proudly offering you a professional way to manage your website content with specific conditions which is perfect for marketers and eCommerce websites. You can show/hide content dynamically based on location, browser, operating system, user role, URL parameters, device type, Woocommerce display conditions such as WooCommerce product and WooCommerce shopping cart data, ACF fields, etc. Check the demo page

    \n

    WooCommerce Products Listing widget

    \n

    Show off your products in an elegant way using Premium Woo Products Widget that comes with unlimited customization options. Check the demo page

    \n

    Equal Height Feature

    \n

    Now, you can make your columns, widgets or any selector you want the same height with just ONE click using Equal Height feature in container settings -> Advanced tab.

    \n

    Pre-made Container and Page Templates

    \n

    NEW: Ever-growing Container/Page Templates Library Available on both Premium Addons Free and PRO versions. Browse, preview, and insert the template you like in your page/post with just ONE click. You can also select to insert the templates without media files (images, videos, etc.) to prevent overloading your WordPress Media Library with large files.

    \n

    Lottie Animations Integration

    \n

    You can now use Lottie Animations in ALL our widgets. Whatever widget that have an image or icon option now have also the option to add a Lottie animation. Lottie animations are open source, lightweight and available for free, Use them now to make your Elementor pages more eye-catching.

    \n

    Post and Page Duplicator

    \n

    Duplicate any post, page or template on your website with just ONE click. Check the documentation article from here.

    \n

    Modular & Lightweight

    \n

    Premium Addons for Elementor is fully modular. You can enable/disable specific elements to prevent overloading your website with code you will not actually use which helps your website have a blazing fast performance.

    \n

    WPML Ready

    \n

    You can use Premium Addons to build multilingual websites easily as our plugin is 100% compatible with WPML.

    \n

    Fully Responsive & Cross Browser Ready

    \n

    Each widget and addon has been tested on different screen sizes, mobile devices, and tablets keeping in mind to add special responsive controls for the tricky widgets and addons we create. We always test Premium Addons on BrowserStack to make sure that everything is stable.

    \n

    Editor Panel Not Loading

    \n

    How to resolve Elementor editor panel loading issue when Premium Addons is active.

    \n

    Widgets & Addons Included

    \n

    Content Widgets

    \n
      \n
    • Carousel Widget (FREE): Create a slider of any Elementor content.
    • \n
    • \n

      Blog Widget (FREE): Showcase posts or any custom post type in 5 neat skins.

      \n
    • \n
    • \n

      AJAX Search Widget (FREE): Add search form to your website with custom search query.

      \n
    • \n
    • \n

      Smart Post Listing Widget (PRO): Create any posts layout you want using this widget. You can use it to create any grid layout to show your posts or any custom post type on your website.

      \n
    • \n
    • \n

      World Clock Widget (FREE): This widget helps you to show time from any place. You can use it to show analog/digital clock.

      \n
    • \n
    • \n

      Weather Widget (FREE): Weather widget is useful for showing weather forecast data by city name or custom coordinates. You can select between three neat layouts with dozens of customization options.

      \n
    • \n
    • \n

      News Ticker Widget (FREE): Show your posts in an attractive way using this news ticker widget. Select between four different layouts. You can also use the widget to show Gold, Stock and Currencies prices.

      \n
    • \n
    • \n

      Textual Showcase Widget (FREE): Elevate your text into stunning visual art with Elementor Textual Showcase. Experiment with Text, Images, Font Awesome Icons, SVG Draw, and Lottie Animations to craft eye-catching designs. Engage your audience by making your words move, fade, and transform dynamically, leaving a lasting impression.

      \n
    • \n
    • \n

      Tags Cloud Widget (FREE): Showcase tags and categories as cloud, sphere, labeled.

      \n
    • \n
    • \n

      Recent Posts Notification Widget (FREE): This widget helps you to show a notification icon on your website to show the latest posts that your website users have not seen yet.

      \n
    • \n
    • \n

      Google Maps Widget (FREE): Advanced Google Maps Widget comes with features like adding multiple markers, custom skins, and much more options.

      \n
    • \n
    • Team Members Widget (FREE): Very good widget to list team members, co-workers, etc. Team Members Widget comes with many customization options.
    • \n
    • Tabs Widget (PRO): Create both Vertical and Horizontal tabs with tons of styling features.
    • \n
    • Content Switcher (PRO): Present multiple content in a smart way.
    • \n
    • Animated Text Widget (FREE): The animated Fancy Text Widget comes with very useful options to help you create attractive marketing messages.
    • \n
    • Heading Widget (FREE): Heading Widget has many customization options and ready-made heading styles.
    • \n
    • Dual Heading Widget (FREE): Create a headline with 2 different unique styles.
    • \n
    \n

    Image & Video Widgets

    \n
      \n
    • Site Logo Widget (PRO): Create an attractive logo for your brand using an image, SVG shape, or Lottie Animation with tens of customization options.
    • \n
    • Media Gallery Widget (FREE): Highly customizable gallery widget that can be used for creating attractive looking image galleries and portfolios.
    • \n
    • Advanced Media Carousel Widget (FREE): Create advanced carousel using images, videos or Elementor templates.
    • \n
    • Image Scroll Widget (FREE): Allows you to represent your images in a brand new yet attractive way.
    • \n
    • Image Comparison Widget (PRO): Create vertical or horizontal image comparisons easily using this amazing widget.
    • \n
    • Image Hotspots Widget (PRO): The only Image Hotspots Widget with 100% freehand design experience. Add hotspots to your image using mouse drag n’ drop.
    • \n
    • Image Layers Widget (PRO): Combine images, Lottie animations and texts.
    • \n
    • Image Accordion Widget (PRO): Create eye-catching Image Accordions in both vertical and horizontal orientations.
    • \n
    • Video Box Widget (FREE): Bring videos from YouTube, Vimeo, Dailymotion, or upload your own using Video Box Widget. The widget comes with many customization features.
    • \n
    \n

    Container Addons & Widgets

    \n\n

    Off-Grid Widgets

    \n
      \n
    • Modal Box Widget (FREE): All purpose modal box widget with the ability to use Elementor Templates and many other options.
    • \n
    • Alert Box Widget (PRO): Show a popups, GDPR alerts and much more with this handy widget from Premium Addons.
    • \n
    • Off-canvas Widget (PRO): Another off-canvas widget allows you to slide in a container from any direction with a trigger.
    • \n
    • Preview Window Widget (PRO): Very clever way to show more data in less content area.
    • \n
    \n

    Social Reviews & Testimonials Widgets

    \n
      \n
    • Testimonials Widget (FREE): The modern Testimonials Widget is available with many customization options. It can be used with Carousel Widget to create testimonials carousel.
    • \n
    • Facebook Reviews Widget (PRO): This widget allows you to show off your Facebook Reviews on your website.
    • \n
    • Google Reviews Widget (PRO): Show your business’s latest Google Reviews right on your webpage.
    • \n
    • Yelp Reviews Widget (PRO): Show your business’s Yelp Reviews in your website pages with this useful widget.
    • \n
    \n

    Blurbs & CTA Widgets

    \n
      \n
    • Bullet List Widget (FREE): Create a bullet list with icons, images, and text tags beside Lottie animations.
    • \n
    • Countdown Widget (FREE): Create sense of urgency with this widget. It’s perfect for under construction pages, events, sale items, etc.
    • \n
    • Banner Widget (FREE): Animated and interactive Banner Widget comes with multiple styles and customization features.
    • \n
    • Button Widget (FREE): Advanced Button Widget comes with lots of interactive animation, styling options, and onClick event option.
    • \n
    • Image Button Widget (FREE): Image Button Widget is a unique element that can be used for creative and innovative call to action ideas.
    • \n
    • 3D Hover Box Widget (PRO): Comes with 8 cool 3D interactive effects.
    • \n
    • Icon Box Widget (PRO): An advanced Icon Box Widgetwith endless customization options.
    • \n
    • iHover Widget (PRO): The popular iHover Widget with various interactive animations and styling options.
    • \n
    • Unfold Widget (PRO): Advanced way to fit long text in small area. Unfold Widget is a great trick as it will make your layout design look better.
    • \n
    \n

    Social Feed Widgets

    \n
      \n
    • Pinterest Feed Widget (FREE): Get pins and boards from your Pinterest account and show them on your website. Select between three layouts and four skins.
    • \n
    • TikTok Feed Widget (FREE): Get feed from your TikTok account and show them on your website. Advanced filtering options, three layouts and three skins.
    • \n
    • Facebook Feed Widget (PRO): Show your Facebook Feed directly inside your website.
    • \n
    • Twitter Feed Widget (PRO): Display your Twitter Feed on your website pages.
    • \n
    • Instagram Feed Widget (PRO): Show your Instagram photos right on your webpage.
    • \n
    • Behance Feed Widget (PRO): Show off your amazing portfolio projects using Behance Feed Widget.
    • \n
    \n

    Tables, Charts & Anything Data Widgets

    \n
      \n
    • Progress Bar Widget (FREE): The most advanced Progress Bar Widget comes with multiple labels option.
    • \n
    • Pricing Table Widget (FREE): Highly customizable Pricing Table Widget with tons of styling options.
    • \n
    • Charts Widget (PRO): The only advanced Charts Widget is available in Premium Addons. Create Line Chart, Bar Chart, Doughnut Chart, Radar Chart, and more.
    • \n
    • Tables Widget (PRO): Create sophisticated tables with unique styling and interactivity options.
    • \n
    • Counter Widget (FREE): Show your facts & figures with Counter Widget.
    • \n
    \n

    Contact Widgets

    \n\n

    Design Widgets

    \n
      \n
    • Divider Widget (PRO): Design beautiful dividers with this unique widget.
    • \n
    • Image Separator Widget (FREE): Add an Image Separator between containers with this handy yet fully responsive widget.
    • \n
    \n

    Support & Documentation

    \n
      \n
    • Documentation Search here first if you need to know how a widget or feature works or for troubleshooting.
    • \n
    • Video Tutorials This playlist includes many widgets’ video tutorials. We are adding more regularly.
    • \n
    • Facebook Group A great place to get help or ask a question about Premium Addons.
    • \n
    • Community Forums Another good place to search for answers or post your own question.
    • \n
    • Support Ticket System We also welcome Free users’ issues which require access credentials to check.
    • \n
    \n

    Check Premium Addons PRO

    \n

    Love Premium Addons User? rate us on WordPress 🙂

    \n", "screenshots": "
    1. \"Premium

      Premium Addons Dashboard Tab

    2. \"Premium

      Premium Blog Widget

    3. \"Premium

      Premium Media Gallery Widget

    4. \"Premium

      Premium Dual Heading Widget

    5. \"Premium

      Premium Carousel Widget

    6. \"Premium

      Premium Progress Bar Widget

    7. \"Premium

      Premium Lottie Animations Widget

    8. \"Premium

      Premium Team Members Widget

    9. \"Premium

      Premium Video Box Widget

    10. \"Premium

      Premium Pricing Table Widget

    11. \"Premium

      Premium Blog Widget

    12. \"Premium

      Premium Image Separator Widget

    13. \"Premium

      Premium Counter Widget

    14. \"Premium

      Premium Progress Bar Widget

    ", "installation": "
      \n
    • First make sure that Elementor Page Builder is installed, As this plugin works only with it.
    • \n
    • Download the plugin then Upload it to the plugin folder: /wp-content/plugins/ or install it through the WordPress plugins screen directly.
    • \n
    • Activate the plugin through the ‘Plugins’ screen in WordPress.
    • \n
    • You can find Premium Addons Elements under the category “Premium Addons” on the editor panel.
    • \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.0.zip", "2.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.zip", "1.01": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.01.zip", "1.02": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.02.zip", "1.03": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.03.zip", "1.04": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.04.zip", "1.05": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.05.zip", "1.06": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.06.zip", "1.07": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.07.zip", "1.08": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.08.zip", "1.09": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.09.zip", "2.0.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.4.1.zip", "2.5.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.8.zip", "2.7.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.9.zip", "2.8.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.7.zip", "2.8.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.8.zip", "2.8.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.9.zip", "2.9.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.6.zip", "2.9.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.9.zip", "3.0.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.9.zip", "3.2.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.7.zip", "3.3.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.8.zip", "3.3.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.9.zip", "3.4.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.8.zip", "3.4.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.9.zip", "3.5.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.7.zip", "3.5.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.8.zip", "3.5.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.9.zip", "3.6.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.7.zip", "3.6.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.8.zip", "3.6.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.9.zip", "3.7.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.5.zip", "3.7.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.6.zip", "3.7.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.7.zip", "3.7.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.8.zip", "3.7.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.9.zip", "3.8.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.5.zip", "3.8.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.6.zip", "3.8.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.8.zip", "3.8.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.9.zip", "3.9.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.4.zip", "3.9.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.5.zip", "3.9.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.6.zip", "3.9.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.7.zip", "3.9.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.8.zip", "3.9.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.9.zip", "4.0.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.1.zip", "4.0.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.9.zip", "4.2.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.5.zip", "4.2.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.6.zip", "4.2.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.7.zip", "4.2.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.8.zip", "4.2.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.9.zip", "4.3.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.4.zip", "4.3.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.5.zip", "4.3.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.6.zip", "4.3.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.7.zip", "4.3.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.8.zip", "4.3.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.9.zip", "4.4.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.3.zip", "4.4.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.4.zip", "4.4.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.5.zip", "4.4.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.6.zip", "4.4.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.7.zip", "4.4.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.8.zip", "4.4.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.9.zip", "4.5.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.5.zip", "4.5.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.6.zip", "4.5.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.7.zip", "4.5.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.8.zip", "4.5.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.9.zip", "4.6.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.6.1.zip", "4.7.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.4.zip", "4.7.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.5.zip", "4.7.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.6.zip", "4.7.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.7.zip", "4.7.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.8.zip", "4.7.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.9.zip", "4.8.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.3.zip", "4.8.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.4.zip", "4.8.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.5.zip", "4.8.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.6.zip", "4.8.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.7.zip", "4.8.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.8.zip", "4.8.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.9.zip", "4.9.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.2.zip", "4.9.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.3.zip", "4.9.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.4.zip", "4.9.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.5.zip", "4.9.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.6.zip", "4.9.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.7.zip", "4.9.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.8.zip", "4.9.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.zip", "3.10.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.0.zip", "3.10.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.1.zip", "3.10.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.2.zip", "3.10.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.3.zip", "3.10.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.4.zip", "3.10.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.5.zip", "3.10.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.6.zip", "3.10.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.7.zip", "3.10.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.8.zip", "3.10.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.9.zip", "3.11.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.0.zip", "3.11.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.1.zip", "3.11.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.2.zip", "3.11.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.3.zip", "3.11.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.4.zip", "3.11.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.5.zip", "3.11.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.6.zip", "3.11.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.7.zip", "3.11.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.8.zip", "3.11.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.9.zip", "3.12.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.12.0.zip", "3.12.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.12.1.zip", "3.12.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.12.2.zip", "3.12.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.12.3.zip", "3.20.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.0.zip", "3.20.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.1.zip", "3.20.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.2.zip", "3.20.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.3.zip", "3.20.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.4.zip", "3.20.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.5.zip", "3.20.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.6.zip", "3.20.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.7.zip", "3.20.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.8.zip", "3.20.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.9.zip", "3.21.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.1.zip", "3.21.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.2.zip", "3.21.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.3.zip", "3.21.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.4.zip", "3.21.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.5.zip", "3.21.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.6.zip", "4.10.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.0.zip", "4.10.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.1.zip", "4.10.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.2.zip", "4.10.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.3.zip", "4.10.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.4.zip", "4.10.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.5.zip", "4.10.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.6.zip", "4.10.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.7.zip", "4.10.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.8.zip", "4.10.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.9.zip", "4.11.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.0.zip", "4.11.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.1.zip", "4.11.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.2.zip", "4.11.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.3.zip", "4.11.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.4.zip", "4.11.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.5.zip", "4.11.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.6.zip", "4.11.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.7.zip", "4.11.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.8.zip", "4.11.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.9.zip", "4.8.10": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.10.zip", "4.8.11": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.11.zip", "4.9.10": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.10.zip", "4.9.11": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.11.zip", "4.9.12": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.12.zip", "4.9.13": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.13.zip", "4.9.14": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.14.zip", "4.9.15": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.15.zip", "4.9.16": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.16.zip", "4.9.17": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.17.zip", "4.9.18": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.18.zip", "4.9.19": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.19.zip", "4.9.20": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.20.zip", "4.9.21": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.21.zip", "4.9.22": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.22.zip", "4.9.23": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.23.zip", "4.9.24": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.24.zip", "4.9.25": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.25.zip", "4.9.26": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.26.zip", "4.9.27": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.27.zip", "4.9.28": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.28.zip", "4.9.29": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.29.zip", "4.9.30": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.30.zip", "4.9.31": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.31.zip", "4.9.32": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.32.zip", "4.9.33": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.33.zip", "4.9.34": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.34.zip", "4.9.35": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.35.zip", "4.9.36": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.36.zip", "4.9.37": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.37.zip", "4.9.38": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.38.zip", "4.9.39": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.39.zip", "4.9.40": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.40.zip", "4.9.41": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.41.zip", "4.9.42": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.42.zip", "4.9.43": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.43.zip", "4.9.45": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.45.zip", "4.9.46": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.46.zip", "4.9.47": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.47.zip", "4.9.48": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.48.zip", "4.9.49": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.49.zip", "4.9.50": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.50.zip", "4.9.51": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.51.zip", "4.9.52": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.52.zip", "4.9.53": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.53.zip", "4.9.54": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.54.zip", "4.9.55": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.55.zip", "4.9.56": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.56.zip", "4.9.57": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.57.zip", "4.10.10": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.10.zip", "4.10.11": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.11.zip", "4.10.12": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.12.zip", "4.10.13": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.13.zip", "4.10.14": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.14.zip", "4.10.15": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.15.zip", "4.10.16": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.16.zip", "4.10.17": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.17.zip", "4.10.18": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.18.zip", "4.10.19": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.19.zip", "4.10.20": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.20.zip", "4.10.21": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.21.zip", "4.10.22": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.22.zip", "4.10.23": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.23.zip", "4.10.24": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.24.zip", "4.10.25": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.25.zip", "4.10.26": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.26.zip", "4.10.27": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.27.zip", "4.10.28": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.28.zip", "4.10.29": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.29.zip", "4.10.30": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.30.zip", "4.10.31": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.31.zip", "4.10.32": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.32.zip", "4.10.33": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.33.zip", "4.10.34": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.34.zip", "4.10.35": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.35.zip", "4.10.36": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.36.zip", "4.10.37": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.37.zip", "4.10.38": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.38.zip", "4.10.39": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.39.zip", "4.10.40": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.40.zip", "4.10.41": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.41.zip", "4.10.42": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.42.zip", "4.10.43": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.43.zip", "4.10.44": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.44.zip", "4.10.45": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.45.zip", "4.10.46": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.46.zip", "4.10.47": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.47.zip", "4.10.48": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.48.zip", "4.10.49": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.49.zip", "4.10.50": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.50.zip", "4.10.51": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.51.zip", "4.10.52": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.52.zip", "4.10.53": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.53.zip", "4.10.54": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.54.zip", "4.10.55": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.55.zip", "4.10.56": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.56.zip", "4.10.57": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.57.zip", "4.10.58": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.58.zip", "4.10.59": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.59.zip", "4.10.60": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.60.zip", "4.10.61": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.61.zip", "4.10.62": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.62.zip", "4.10.63": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.63.zip", "4.10.64": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.64.zip", "4.10.65": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.65.zip", "4.10.66": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.66.zip", "4.10.67": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.67.zip", "4.10.68": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.68.zip", "4.10.69": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.69.zip", "4.10.70": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.70.zip", "4.10.71": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.71.zip", "4.10.72": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.72.zip", "4.10.73": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.73.zip", "4.10.74": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.74.zip", "4.10.75": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.75.zip", "4.10.76": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.76.zip", "4.10.77": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.77.zip", "4.10.78": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.78.zip", "4.10.79": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.79.zip", "4.10.80": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.80.zip", "4.10.81": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.81.zip", "4.10.82": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.82.zip", "4.10.83": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.83.zip", "4.10.84": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.84.zip", "4.10.85": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.85.zip", "4.10.86": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.86.zip", "4.10.87": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.87.zip", "4.10.88": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.88.zip", "4.10.89": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.89.zip", "4.10.90": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.90.zip", "4.11.10": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.10.zip", "4.11.11": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.11.zip", "4.11.12": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.12.zip", "4.11.13": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.13.zip", "4.11.14": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.14.zip", "4.11.15": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.15.zip", "4.11.16": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.16.zip", "4.11.17": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.17.zip", "4.11.18": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.18.zip", "4.11.19": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.19.zip", "4.11.20": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.20.zip", "4.11.21": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.21.zip", "4.11.22": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.22.zip", "4.11.23": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.23.zip", "4.11.24": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.24.zip", "4.11.25": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.25.zip", "4.11.26": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.26.zip", "4.11.27": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.27.zip", "4.11.28": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.28.zip", "4.11.29": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.29.zip", "4.11.30": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.30.zip", "4.11.31": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.31.zip", "4.11.32": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.32.zip", "4.11.33": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.33.zip", "4.11.34": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.34.zip", "4.11.35": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.35.zip", "4.11.36": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.36.zip", "4.11.37": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.37.zip", "4.11.38": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.38.zip", "4.11.39": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.39.zip", "4.11.40": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.40.zip", "4.11.41": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.41.zip", "4.11.42": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.42.zip", "4.11.43": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.43.zip", "4.11.44": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.44.zip", "4.11.45": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.45.zip", "2.1.5-beta1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.5-beta1.zip", "4.9.0-beta1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.0-beta1.zip", "4.9.0-beta2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.0-beta2.zip"}, "downloaded": 53624337, "description": "

    Supercharge your Elementor Page Builder with 90+ highly customizable addons and widgets, 550+ pre-made templates that will give you the ability to build sophisticated websites in less time with no coding required. Both Elementor and Premium Addons plugins take your WordPress website to the next level.

    \n

    Check The Widgets & Addons Demo Pages

    \n

    Useful Links

    \n

    Support | Docs | Video Tutorials | Facebook Group | Upgrade to Pro

    \n

    New: Image Carousel Option

    \n

    We have recently added Source option in our Premium Carousel widget which helps you to create an image carousel/slider in a second just by selecting the images you want from site’s media library.

    \n

    New: Performance and Speed Improvements

    \n

    Premium Addons for Elementor is now much faster than ever. Only the required JS files will be loaded on your page to boost your page loading speed and site performance. All the editor loading issues have been fixed to make your site faster and minimize the time it takes for Elementor editor to load.

    \n

    New: Liquid Glass Addon

    \n

    Select between 6 attractive liquid glass and glassmorphism effects to be applied on any Elementor widget or container. It has also been added to be applied on specific parts inside our elements. Check it out now!.

    \n

    New: WooCommerce Mini-Cart and Categories Listing Widgets

    \n

    This powerful widget allows your customers to view the products in their shopping cart, change the quantity, remove items and check the total amount without leaving the page. We have also released Woo Categories widget to showcase your Woo categories in four neat skins. Check from here and here.

    \n

    New: Mobile Nav Menu Widget

    \n

    Create a neat mobile menu on your website with just few click with this powerful widget. You can set the click action of each menu item to a link or to open an off-canvas content. Check it out now!.

    \n

    New: AJAX Search Form Widget

    \n

    The ultimate solution to add a search form widget on Elementor websites. Customize the search results, add pagination or carousel and select between three different neat skins. Check it out now!.

    \n

    Animated Shape Divider Addon

    \n

    Add animated shape dividers for Elementor flexbox containers. You can select between 40+ shape dividers or use a custom SVG code to add your own divider. Check it out now!.

    \n

    Advanced Media Carousel Widget

    \n

    You can now create carousel using images, videos, Elementor templates to create the carousel you want. Select between four animations and dozens of customization options. Check it out now!.

    \n

    Magazine Bundle

    \n

    Smart Post Listing, Weather, World Clock, News Ticker, Tags Cloud and Recent Posts Notification widgets newly added to create the magazine website you ever dreamed. Check it out now!.

    \n

    Elementor Navigation/Mega Menu Widget

    \n

    Now, you build outstanding navigation menus and mega menus using Premium Navigation/Mega Menu Widget which allows you to select between four different layouts with dozens of options to create a responsive menu. Check it out now!.

    \n

    Display Conditions

    \n

    Premium Addons is proudly offering you a professional way to manage your website content with specific conditions which is perfect for marketers and eCommerce websites. You can show/hide content dynamically based on location, browser, operating system, user role, URL parameters, device type, Woocommerce display conditions such as WooCommerce product and WooCommerce shopping cart data, ACF fields, etc. Check the demo page

    \n

    WooCommerce Products Listing widget

    \n

    Show off your products in an elegant way using Premium Woo Products Widget that comes with unlimited customization options. Check the demo page

    \n

    Equal Height Feature

    \n

    Now, you can make your columns, widgets or any selector you want the same height with just ONE click using Equal Height feature in container settings -> Advanced tab.

    \n

    Pre-made Container and Page Templates

    \n

    NEW: Ever-growing Container/Page Templates Library Available on both Premium Addons Free and PRO versions. Browse, preview, and insert the template you like in your page/post with just ONE click. You can also select to insert the templates without media files (images, videos, etc.) to prevent overloading your WordPress Media Library with large files.

    \n

    Lottie Animations Integration

    \n

    You can now use Lottie Animations in ALL our widgets. Whatever widget that have an image or icon option now have also the option to add a Lottie animation. Lottie animations are open source, lightweight and available for free, Use them now to make your Elementor pages more eye-catching.

    \n

    Post and Page Duplicator

    \n

    Duplicate any post, page or template on your website with just ONE click. Check the documentation article from here.

    \n

    Modular & Lightweight

    \n

    Premium Addons for Elementor is fully modular. You can enable/disable specific elements to prevent overloading your website with code you will not actually use which helps your website have a blazing fast performance.

    \n

    WPML Ready

    \n

    You can use Premium Addons to build multilingual websites easily as our plugin is 100% compatible with WPML.

    \n

    Fully Responsive & Cross Browser Ready

    \n

    Each widget and addon has been tested on different screen sizes, mobile devices, and tablets keeping in mind to add special responsive controls for the tricky widgets and addons we create. We always test Premium Addons on BrowserStack to make sure that everything is stable.

    \n

    Editor Panel Not Loading

    \n

    How to resolve Elementor editor panel loading issue when Premium Addons is active.

    \n

    Widgets & Addons Included

    \n

    Content Widgets

    \n
      \n
    • Carousel Widget (FREE): Create a slider of any Elementor content.
    • \n
    • \n

      Blog Widget (FREE): Showcase posts or any custom post type in 5 neat skins.

      \n
    • \n
    • \n

      AJAX Search Widget (FREE): Add search form to your website with custom search query.

      \n
    • \n
    • \n

      Smart Post Listing Widget (PRO): Create any posts layout you want using this widget. You can use it to create any grid layout to show your posts or any custom post type on your website.

      \n
    • \n
    • \n

      World Clock Widget (FREE): This widget helps you to show time from any place. You can use it to show analog/digital clock.

      \n
    • \n
    • \n

      Weather Widget (FREE): Weather widget is useful for showing weather forecast data by city name or custom coordinates. You can select between three neat layouts with dozens of customization options.

      \n
    • \n
    • \n

      News Ticker Widget (FREE): Show your posts in an attractive way using this news ticker widget. Select between four different layouts. You can also use the widget to show Gold, Stock and Currencies prices.

      \n
    • \n
    • \n

      Textual Showcase Widget (FREE): Elevate your text into stunning visual art with Elementor Textual Showcase. Experiment with Text, Images, Font Awesome Icons, SVG Draw, and Lottie Animations to craft eye-catching designs. Engage your audience by making your words move, fade, and transform dynamically, leaving a lasting impression.

      \n
    • \n
    • \n

      Tags Cloud Widget (FREE): Showcase tags and categories as cloud, sphere, labeled.

      \n
    • \n
    • \n

      Recent Posts Notification Widget (FREE): This widget helps you to show a notification icon on your website to show the latest posts that your website users have not seen yet.

      \n
    • \n
    • \n

      Google Maps Widget (FREE): Advanced Google Maps Widget comes with features like adding multiple markers, custom skins, and much more options.

      \n
    • \n
    • Team Members Widget (FREE): Very good widget to list team members, co-workers, etc. Team Members Widget comes with many customization options.
    • \n
    • Tabs Widget (PRO): Create both Vertical and Horizontal tabs with tons of styling features.
    • \n
    • Content Switcher (PRO): Present multiple content in a smart way.
    • \n
    • Animated Text Widget (FREE): The animated Fancy Text Widget comes with very useful options to help you create attractive marketing messages.
    • \n
    • Heading Widget (FREE): Heading Widget has many customization options and ready-made heading styles.
    • \n
    • Dual Heading Widget (FREE): Create a headline with 2 different unique styles.
    • \n
    \n

    Image & Video Widgets

    \n
      \n
    • Site Logo Widget (PRO): Create an attractive logo for your brand using an image, SVG shape, or Lottie Animation with tens of customization options.
    • \n
    • Media Gallery Widget (FREE): Highly customizable gallery widget that can be used for creating attractive looking image galleries and portfolios.
    • \n
    • Advanced Media Carousel Widget (FREE): Create advanced carousel using images, videos or Elementor templates.
    • \n
    • Image Scroll Widget (FREE): Allows you to represent your images in a brand new yet attractive way.
    • \n
    • Image Comparison Widget (PRO): Create vertical or horizontal image comparisons easily using this amazing widget.
    • \n
    • Image Hotspots Widget (PRO): The only Image Hotspots Widget with 100% freehand design experience. Add hotspots to your image using mouse drag n’ drop.
    • \n
    • Image Layers Widget (PRO): Combine images, Lottie animations and texts.
    • \n
    • Image Accordion Widget (PRO): Create eye-catching Image Accordions in both vertical and horizontal orientations.
    • \n
    • Video Box Widget (FREE): Bring videos from YouTube, Vimeo, Dailymotion, or upload your own using Video Box Widget. The widget comes with many customization features.
    • \n
    \n

    Container Addons & Widgets

    \n\n

    Off-Grid Widgets

    \n
      \n
    • Modal Box Widget (FREE): All purpose modal box widget with the ability to use Elementor Templates and many other options.
    • \n
    • Alert Box Widget (PRO): Show a popups, GDPR alerts and much more with this handy widget from Premium Addons.
    • \n
    • Off-canvas Widget (PRO): Another off-canvas widget allows you to slide in a container from any direction with a trigger.
    • \n
    • Preview Window Widget (PRO): Very clever way to show more data in less content area.
    • \n
    \n

    Social Reviews & Testimonials Widgets

    \n
      \n
    • Testimonials Widget (FREE): The modern Testimonials Widget is available with many customization options. It can be used with Carousel Widget to create testimonials carousel.
    • \n
    • Facebook Reviews Widget (PRO): This widget allows you to show off your Facebook Reviews on your website.
    • \n
    • Google Reviews Widget (PRO): Show your business’s latest Google Reviews right on your webpage.
    • \n
    • Yelp Reviews Widget (PRO): Show your business’s Yelp Reviews in your website pages with this useful widget.
    • \n
    \n

    Blurbs & CTA Widgets

    \n
      \n
    • Bullet List Widget (FREE): Create a bullet list with icons, images, and text tags beside Lottie animations.
    • \n
    • Countdown Widget (FREE): Create sense of urgency with this widget. It’s perfect for under construction pages, events, sale items, etc.
    • \n
    • Banner Widget (FREE): Animated and interactive Banner Widget comes with multiple styles and customization features.
    • \n
    • Button Widget (FREE): Advanced Button Widget comes with lots of interactive animation, styling options, and onClick event option.
    • \n
    • Image Button Widget (FREE): Image Button Widget is a unique element that can be used for creative and innovative call to action ideas.
    • \n
    • 3D Hover Box Widget (PRO): Comes with 8 cool 3D interactive effects.
    • \n
    • Icon Box Widget (PRO): An advanced Icon Box Widgetwith endless customization options.
    • \n
    • iHover Widget (PRO): The popular iHover Widget with various interactive animations and styling options.
    • \n
    • Unfold Widget (PRO): Advanced way to fit long text in small area. Unfold Widget is a great trick as it will make your layout design look better.
    • \n
    \n

    Social Feed Widgets

    \n
      \n
    • Pinterest Feed Widget (FREE): Get pins and boards from your Pinterest account and show them on your website. Select between three layouts and four skins.
    • \n
    • TikTok Feed Widget (FREE): Get feed from your TikTok account and show them on your website. Advanced filtering options, three layouts and three skins.
    • \n
    • Facebook Feed Widget (PRO): Show your Facebook Feed directly inside your website.
    • \n
    • Twitter Feed Widget (PRO): Display your Twitter Feed on your website pages.
    • \n
    • Instagram Feed Widget (PRO): Show your Instagram photos right on your webpage.
    • \n
    • Behance Feed Widget (PRO): Show off your amazing portfolio projects using Behance Feed Widget.
    • \n
    \n

    Tables, Charts & Anything Data Widgets

    \n
      \n
    • Progress Bar Widget (FREE): The most advanced Progress Bar Widget comes with multiple labels option.
    • \n
    • Pricing Table Widget (FREE): Highly customizable Pricing Table Widget with tons of styling options.
    • \n
    • Charts Widget (PRO): The only advanced Charts Widget is available in Premium Addons. Create Line Chart, Bar Chart, Doughnut Chart, Radar Chart, and more.
    • \n
    • Tables Widget (PRO): Create sophisticated tables with unique styling and interactivity options.
    • \n
    • Counter Widget (FREE): Show your facts & figures with Counter Widget.
    • \n
    \n

    Contact Widgets

    \n\n

    Design Widgets

    \n
      \n
    • Divider Widget (PRO): Design beautiful dividers with this unique widget.
    • \n
    • Image Separator Widget (FREE): Add an Image Separator between containers with this handy yet fully responsive widget.
    • \n
    \n

    Support & Documentation

    \n
      \n
    • Documentation Search here first if you need to know how a widget or feature works or for troubleshooting.
    • \n
    • Video Tutorials This playlist includes many widgets’ video tutorials. We are adding more regularly.
    • \n
    • Facebook Group A great place to get help or ask a question about Premium Addons.
    • \n
    • Community Forums Another good place to search for answers or post your own question.
    • \n
    • Support Ticket System We also welcome Free users’ issues which require access credentials to check.
    • \n
    \n

    Check Premium Addons PRO

    \n

    Love Premium Addons User? rate us on WordPress 🙂

    \n", "donate_link": "https://premiumaddons.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme", "num_ratings": 1649, "screenshots": {"1": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-1.gif?rev=2422183", "caption": "Premium Addons Dashboard Tab"}, "2": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-2.png?rev=2515523", "caption": "Premium Blog Widget"}, "3": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-3.png?rev=2515523", "caption": "Premium Media Gallery Widget"}, "4": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-4.png?rev=2515523", "caption": "Premium Dual Heading Widget"}, "5": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-5.png?rev=2515523", "caption": "Premium Carousel Widget"}, "6": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-6.png?rev=2515523", "caption": "Premium Progress Bar Widget"}, "7": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-7.gif?rev=2422183", "caption": "Premium Lottie Animations Widget"}, "8": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-8.png?rev=2515523", "caption": "Premium Team Members Widget"}, "9": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-9.png?rev=2515523", "caption": "Premium Video Box Widget"}, "10": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-10.png?rev=2515523", "caption": "Premium Pricing Table Widget"}, "11": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-11.png?rev=2515523", "caption": "Premium Blog Widget"}, "12": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-12.png?rev=2515523", "caption": "Premium Image Separator Widget"}, "13": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-13.png?rev=2515523", "caption": "Premium Counter Widget"}, "14": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-14.png?rev=2515523", "caption": "Premium Progress Bar Widget"}}, "support_url": "https://wordpress.org/support/plugin/premium-addons-for-elementor/", "contributors": {"leap13": {"avatar": "https://secure.gravatar.com/avatar/cd4a5ce022109e7e89700a0063c2a4c2eb5b1b68cc4d8b60060fea75e2d0f0e5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/leap13/", "display_name": "Leap13"}, "rimoun": {"avatar": "https://secure.gravatar.com/avatar/df9a176d88740d47d20f48021131b653b159d2757294393b555beec3a9fe8cd3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rimoun/", "display_name": "Rimoun Saad"}}, "last_updated": "2025-10-28 12:39pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.45.zip", "author_profile": "https://profiles.wordpress.org/leap13/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f8f0-73e9-a5bc-2e7549dbf4ac", "name": "Premium Addons for Elementor", "slug": "premium-addons-for-elementor", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761655140, "version": "4.11.45"}, "support_threads": 6, "requires_plugins": [], "short_description": "90+ Elementor widgets and 580+ templates. It includes elements like Nav Mega Menu, Carousel and Blog, WooCommerce widgets, Display Conditions.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "https://my.leap13.com/contact-support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support", "support_threads_resolved": 6}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1d43-7009-83d4-5552b4bc176a', 'did:web:api.aspiredev.org:packages:wp-plugin:really-simple-ssl', 'really-simple-ssl', 'Really Simple Security – Simple and Performant Security (formerly Really Simple SSL)', '

    Easily improve site security with WordPress Hardening, Two-Factor Authentication (2FA), Login Protection, Vulnerability Detection and SSL certificate.

    -

    Really simple, Effective and Performant WordPress Security

    -

    Really Simple Security is the most lightweight and easy-to-use security plugin for WordPress. It secures your WordPress website with SSL certificate generation, including proper 301 https redirection and SSL enforcement, scanning for possible vulnerabilities, Login Protection and implementing essential WordPress hardening features.

    -

    We believe that security should have the absolute minimum effect on website performance, user experience and maintainability. Therefore, Really Simple Security is:

    -
      -
    • Lightweight: Every security feature is developed with a modular approach and with performance in mind. Disabled features won’t load any redundant code.
    • -
    • Easy-to-use: 1-minute configuration with short onboarding setup.
    • -
    -

    Security Features

    -

    Easy SSL Migration

    -

    Migrates your website to HTTPS and enforces SSL in just one click.

    -
      -
    • 301 redirect via PHP or .htaccess
    • -
    • Secure cookies
    • -
    • Let’s Encrypt: Install an SSL Certificate if your hosting provider supports manual installation.
    • -
    • Server Health Check: Your server configuration is every bit as important for your website security.
    • -
    -

    WordPress Hardening

    -

    Tweak your configuration and keep WordPress fortified and safe by tackling potential weaknesses.

    -
      -
    • Prevent code execution in the uploads folder
    • -
    • Prevent login feedback and disable user enumeration
    • -
    • Disable XML-RPC
    • -
    • Disable directory browsing
    • -
    • Username restrictions (block ‘admin’ and public names)
    • -
    • and much more..
    • -
    -

    Vulnerability Detection

    -

    Get notified when plugins, themes or WP core contain vulnerabilities and need appropriate action.

    -

    Login Protection

    -

    Allow or enforce Two-Factor Authentication (2FA) for specific user roles. Users receive a two-factor code via Email.

    -

    Improve Security with Really Simple Security Pro

    -

    Protect your site with all essential security features by upgrading to Really Simple Security Pro.

    -

    Advanced SSL enforcement

    -
      -
    • Mixed Content Scan & Fixer. Detect files that are requested over HTTP and fix them to HTTPS, both Front- and Back-end.
    • -
    • Enable HTTP Strict Transport Security and configure your site for the HSTS Preload list.
    • -
    -

    Firewall

    -

    Really Simple Security Pro includes a performant and efficient WordPress firewall, to stop bots, crawlers and bad actors with IP and username blocks.

    -
      -
    • 404 blocking – Blocks crawlers as they trigger unusual numbers of 404 errors.
    • -
    • Region blocking – Only allow/block access to your site from specific regions.
    • -
    • Automated and customisable Firewall rules.
    • -
    • IP blocklist and allowlist.
    • -
    -

    Security Headers

    -

    Security headers protect your site visitors against the risk of clickjacking, cross-site-forgery attacks, stealing login credentials and malware.

    -
      -
    • Independent of your Server Configuration, works on Apache, LiteSpeed, NGINX, etc.
    • -
    • Protect your website visitors with X-XSS Protection, X-Content-Type-Options, X-Frame-Options, a Referrer Policy and CORS headers.
    • -
    • Automatically generate your WordPress-tailored Content Security Policy.
    • -
    -

    Vulnerability Measures

    -

    When a vulnerability is detected in a plugin, theme or WordPress core you will get notified accordingly. With Vulnerability Measures, you can configure simple but effective measures to make sure that a critical vulnerability won’t remain unattended.

    -
      -
    • Force update: An update process will be tried multiple times until it can be assumed development of a theme or plugin is abandoned. You will be notified during these steps.
    • -
    • Quarantine: When a plugin or theme can’t be updated to solve a vulnerability, Really Simple Security can quarantine the plugin.
    • -
    -

    Advanced Site Hardening

    -
      -
    • Choose a custom login URL
    • -
    • Automated File Permissions check and fixer
    • -
    • Rename and randomize your database prefix
    • -
    • Change the debug.log file location to a non-public folder
    • -
    • Disable application passwords
    • -
    • Control admin creation
    • -
    • Disable HTTP methods, reducing HTTP requests
    • -
    -

    Login Protection

    -

    Secure your website’s login process and user accounts with powerful security measures.

    -
      -
    • Two-Step verification (Email login)
    • -
    • 2FA (two factor authentication) with TOTP
    • -
    • Passwordless login with passkey login
    • -
    • Enforce strong passwords and frequent password change
    • -
    • Limit Login Attempts
    • -
    -

    With Limit Login Attempts you can configure a threshold to temporarily or permanently block IP addresses or (non-existing) usernames. You can also throw a CAPTCHA after a failed login (hCaptcha or Google reCaptcha)

    -

    Access Control

    -
      -
    • Restrict access to your site for specific regions.
    • -
    • Add specific IP addresses or IP ranges to the Blocklist or Allowlist.
    • -
    -

    Useful Links

    - -

    Love Really Simple Security?

    -

    If you want to support the continuing development of this plugin, please consider buying Really Simple Security Pro, which includes some excellent security features and premium support.

    -

    About Really Simple Plugins

    -

    Our mission is to make complex WordPress requirements really easy. Really Simple Security is developed by Really Simple Plugins.

    -

    For generating SSL certificates, Really Simple Security uses the le acme2 PHP Let’s Encrypt client library, thanks to ‘fbett’ for providing it. Vulnerability Detection uses WP Vulnerability, an open-source initiative by Javier Casares. Want to join as a collaborator? We’re on GitHub as well!

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Really Simple Security – Simple and Performant Security (formerly Really Simple SSL)", "slug": "really-simple-ssl", "tags": {"2fa": "2FA", "https": "https", "security": "security", "two-factor": "two factor", "vulnerabilities": "vulnerabilities"}, "added": "2015-03-15", "icons": {"1x": "https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=2839720", "2x": "https://ps.w.org/really-simple-ssl/assets/icon-256x256.png?rev=2839720"}, "author": "Really Simple Plugins", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/really-simple-ssl/assets/banner-772x250.png?rev=3100992", "high": "https://ps.w.org/really-simple-ssl/assets/banner-1544x500.png?rev=3100992"}, "ratings": {"1": 84, "2": 16, "3": 23, "4": 101, "5": 8538}, "version": "9.5.3", "homepage": "https://really-simple-ssl.com", "requires": "6.6", "sections": {"faq": "\n
    \nKnowledge Base\n\n

    \n

    For more detailed explanations and documentation on all Really Simple Security features, please search the Knowledge Base

    \n

    \n
    \nWhat happened with Really Simple SSL?\n\n

    \n

    All features that made Really Simple SSL the most powerful and easy-to-use SSL generation and redirect plugin are still part of Really Simple Security. The plugin is developed with a modular approach: if you don’t want to use the full set of security features, the unused code will not be loaded and won’t have any effect on your site’s performance.

    \n

    \n
    \nWhy Really Simple Security?\n\n

    \n

    In our experience, security solutions for WordPress are often hard to configure, trigger many false positives and have a significant impact on site performance. We have been receiving requests from our users to simplify WordPress security for years, so that has become our mission!

    \n

    \n
    \nI want to share my feedback or contribute to Really Simple Security\n\n

    \n

    You couldn’t make us happier! Really Simple Security is GPL licensed and co-created by the WordPress community. All feedback is highly appreciated and has always helped us to better understand users’ needs. For code contributions or suggestions, we’re on GitHub. For suggestions, please open a support ticket You can also express your appreciation by leaving a review.

    \n

    \n
    \nWhat are Mixed Content issues?\n\n

    \n

    Most mixed content issues are caused by URLs in CSS or JS files. For detailed instructions on how to find mixed content read this article.

    \n

    \n
    \nGenerating a Let’s Encrypt SSL Certificate\n\n

    \n

    We added the possibility to generate a Free SSL Certificate with Let’s Encrypt in our Really Simple Security Wizard. We have an updated list available for all possible integrations here. Please leave feedback about another integration, incorrect information, or you need help.

    \n

    \n
    \nHow do I fix a redirect loop?\n\n

    \n

    If you are experiencing redirect loops on your site, try these instructions. This can sometimes happen during the migration to HTTPS or due to conflicting redirect rules.

    \n

    \n
    \nIs the plugin multisite compatible?\n\n

    \n

    Yes. There is a dedicated network settings page where you can control settings for your entire network, at once.

    \n

    \n
    \nHow do I enforce strong passwords?\n\n

    \n

    Under Login Protection, you can configure minimum strength settings and require users to change their passwords after a defined interval. Disabling weak password usage is a best practice.

    \n

    \n
    \nHow can I change my login URL?\n\n

    \n

    You can set a custom login URL under Advanced Site Hardening, which helps prevent brute force login attacks and bots targeting wp-login.php.

    \n

    \n
    \nDoes this plugin redirect HTTP to HTTPS?\n\n

    \n

    Yes. The plugin enforces HTTPS and handles all necessary redirects, optionally using .htaccess or PHP.

    \n

    \n
    \nCan I use Really Simple Security besides WordFence?\n\n

    \n

    Really Simple Security and WordFence greatly overlap in term of functionality. If you like to use specific features from both plugins, we strongly recommend not to enable similar features twice. The benefit of Really Simple Security is that disabled features don’t load any code, so won’t have an impact on site performance.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple as advertised and effective

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy yanartus on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I can''t do without it anymore.
    Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    weird sign in interface for email 2fa

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bowerwebsolutions on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Sign in interface for email verification doesn''t allow you to click on login. you put in the code and then wait. This is not web standard. OK for my purposes of verifying a few users but not ready for prime time.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really Simple Security helps a lot

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rmielniczek on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My rating is 5 star. Thank''s a lot guys.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I am satisfied

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lars7bruno on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am satisfied

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Product

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy antiques101 on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    So far has worked as advertised. No Problems do far...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good and useful plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jon63 on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very good and useful plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Impect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fetheve on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Impécable

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    super

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy barkmoon01 on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great add-on, although it could be a little more detailed in describing the problems.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good and easy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy opticamaxvision4 on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    good

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple, easy, and efficient

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fernandoguastella on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to set up, very simple and does what it says it does

    \n
    \n
    \n", "changelog": "

    9.5.3

    \n
      \n
    • Fix: removed an unused translation that could cause a textdomain loaded to early warning
    • \n
    • Fix: deactivation modal now always displays
    • \n
    • Improvement: refactored the onboarding code
    • \n
    \n

    9.5.2.3

    \n
      \n
    • Fix: the 2FA reset fix now correctly calls the 2FA reset service
    • \n
    \n

    9.5.2.2

    \n
      \n
    • Fix: a TypeError in the 2FA query builder that could occur when updating from older plugin versions
    • \n
    \n

    9.5.2

    \n
      \n
    • Fix: all users will now appear in the 2FA list
    • \n
    • Fix: tasks will now always display on multisite
    • \n
    • Improvement: the activate_ssl WP-CLI command can now be run with the –force argument to skip confirmation
    • \n
    \n

    9.5.1

    \n

    Improvement: standardized REST namespaces to really-simple-security
    \nFix: added a check for the getmyuid function to prevent errors in case this function was missing
    \nFix: Right-To-Left CSS now works correctly when SCRIPT_DEBUG is enabled

    \n

    9.5.0.2

    \n
      \n
    • Fix: Prevent empty content to be written into htaccess
    • \n
    \n

    9.5.0.1

    \n
      \n
    • Fix: Prevented .htaccess from being overwritten with an empty file, auto-creation now requires explicit filter opt-in
    • \n
    \n

    9.5.0

    \n
      \n
    • Improvement: reworked .htaccess handling with insert_with_markers and improved WP Rocket integration.
    • \n
    • Improvement: SBOM added to plugin.
    • \n
    • Improvement: corrected spelling, grammar, and consistency issues in plugin strings; updated geopolitical terms.
    • \n
    • Fix: whitelisted LiteSpeed Cache crawler in .htaccess to prevent redirect issues.
    • \n
    • Fix: corrected 2FA grace period email logic to avoid sending reminders to users with active 2FA.
    • \n
    • Fix: updated hosting provider name from “XXL Hosting” to “Superspace”.
    • \n
    \n

    9.4.3

    \n
      \n
    • Improvement: improved compatibility with plain permalinks.
    • \n
    • Improvement: updated links in the plugin.
    • \n
    • Fix: handled a case where the user ID could be empty in 2FA.
    • \n
    • Fix: learn more button in vulnerability e-mail link now links to the correct page.
    • \n
    • Fix: fixed an issue where rsssl_user_can_manage could be undefined when downloading the system status.
    • \n
    \n

    9.4.2

    \n
      \n
    • Fix: Adjusted .htaccess redirect requirements for subfolder configurations
    • \n
    • Fix: re-send e-mail button on the 2FA page will now show a message when the e-mail is sent.
    • \n
    • Fix: restored SCSS files.
    • \n
    • Fix: fixed an issue where the plugin kept redirecting to its settings page after activation.
    • \n
    • Improvement: updated the way other plugins are installed via the onboarding and dashboard page.
    • \n
    • Improvement: added notice with an option to force verify e-mail address.
    • \n
    • Improvement: updated minimum WordPress version to 6.6.
    • \n
    \n

    9.4.1

    \n
      \n
    • Fix: fixed a translations error where text domain was loaded too early.
    • \n
    \n

    9.4.0

    \n
      \n
    • Improvement: More detailed feedback when using CLI commands.
    • \n
    • Improvement: On activation, detect EXTENDIFY_PARTNER_ID constant and run wp rsssl activate_recommended_features.
    • \n
    • Improvement: Standardize RSS onboarding hoster list to brand names.
    • \n
    • Improvement: “Disable user enumeration” now returns 401 Unauthorized (instead of 404 Not Found) for non-authenticated requests to the /wp/v2/users/ endpoint.
    • \n
    • Include SimplyBook in “onboarding” and “other plugins” sections.
    • \n
    • Fix: Adjust plugin initialization timing to prevent a textdomain warning.
    • \n
    • Fix: Fixed the feedback when an email is resend during Two-Factor Authentication setup.
    • \n
    • Fix: Fixed the Single Sign on link to support custom login urls.
    • \n
    \n

    9.3.5

    \n
      \n
    • April 29th, 2025
    • \n
    • Improvement: Tested up to WordPress 6.8
    • \n
    • Improvement: Some translation updates
    • \n
    • Improvement: Check for autoloader in cron
    • \n
    • Fix: 2FA methods can now be set on profile page
    • \n
    \n

    9.3.3

    \n
      \n
    • April 2nd, 2025
    • \n
    • Improvement: Added multiple WP-CLI commands to better align with recent plugin features
    • \n
    • Improvement: Added support for custom/multiple roles in Two Factor Authentication
    • \n
    \n

    9.3.2.1

    \n
      \n
    • March 20th, 2025
    • \n
    • Fix: Properly handle unknown plugins in upgrade requests, preventing unintended behavior.
    • \n
    \n

    9.3.2

    \n
      \n
    • March 5th, 2025
    • \n
    • Improvement: Added filters to customize Let’s Encrypt Wizard behavior
    • \n
    • Fix: Removed default checkbox behavior from configuration settings.
    • \n
    • Fix: Handle multiple tooltip reasons for disabled select fields
    • \n
    \n

    9.3.1

    \n
      \n
    • February 12th, 2025
    • \n
    • Improvement: Not able to use email needed functions when email is not yet verified.
    • \n
    • Fix: All instruction links are now correct.
    • \n
    • Fix: Undefined array key “m” when showing vulnerability details.
    • \n
    • Fix: Prevent errors when downgrading to free.
    • \n
    • Fix: Compatibility between 2FA and JetPack “Log in using WordPress.com account” setting
    • \n
    \n

    9.2.0

    \n
      \n
    • January 20th, 2025
    • \n
    • Fix: Added nonce check to certificate re-check button.
    • \n
    • Fix: In some cases the review notice was not properly dismissible.
    • \n
    \n

    9.1.4

    \n
      \n
    • Improvement: do not track 404’s for logged in users
    • \n
    • Improvement: implemented the rsssl_wpconfig_path filter in all wp-config functions
    • \n
    • Improvement: Faster onboarding completion after clicking Finish button
    • \n
    • Improvement: CSS. Shields in user interface on datatables are no longer cut off
    • \n
    \n

    9.1.3

    \n
      \n
    • November 28th
    • \n
    • Improvement: Width Vulnerabilities -> configuration
    • \n
    • Improvement: 2Fa lockout notice
    • \n
    • Improvement: catch use of short init in advanced-headers file
    • \n
    • Improvement: string improvements and translator comments
    • \n
    • Improvement: Bitnami support for rsssl_find_wordpress_base_path()
    • \n
    • Improvement: integrate Site health notifications with Solid Security
    • \n
    • Improvement: Enhanced random password generation in Rename Admin User feature
    • \n
    • Improvement: Always return string in wpconfig_path() function
    • \n
    • Improvement: Removes configuration options for a user in edit user.
    • \n
    • Fix: Remove duplicate site URL.
    • \n
    • Fix: ensure rsssl_sanitize_uri_value() function always returns a string, to prevent errors.
    • \n
    • Fix: multisite users who have enabled roles couldn’t use the 2fa if an other role than theirs has been forced.
    • \n
    • Fix: The ‘Skip Onboarding’ button presented an undefined page after selecting the email method as an option.
    • \n
    • Fix: Update translation loading according to the new 6.7 method.
    • \n
    \n

    9.1.2

    \n
      \n
    • security: authentication bypass
    • \n
    \n

    9.1.1.1

    \n
      \n
    • November 5th, 2024
      \n*Improvement: updated black friday dates
    • \n
    \n

    9.1.1

    \n
      \n
    • November 5th, 2024
    • \n
    • Improvement: setting a rsssl-safe-mode.lock file now also enables safe mode and deactivates the Firewall, 2FA and LLA for debugging purposes.
    • \n
    • Improvement: update to system status
    • \n
    • Improvement: textual changes
    • \n
    • Improvement: Updated instructions URLs
    • \n
    • Improvement: Changed site health notices from critical to recommended
    • \n
    • Improvement: dropped obsolete react library
    • \n
    • Fix: fixed a bug where the 2FA grace period was kept active after a reset
    • \n
    \n

    9.1.0

    \n
      \n
    • October 22nd
    • \n
    • Improvement: Allow scanning for security headers via http://scan.really-simple-ssl.com with one click
    • \n
    • Improvement: Remove unnecessary rsssl_update_option calls.
    • \n
    • Fix: prevent potential errors with login feedback..
    • \n
    • Fix: Catch type error when $transients is not an array.
    • \n
    \n

    9.0.2

    \n
      \n
    • Fix: issue with deactivating 2fa
    • \n
    \n

    9.0.0

    \n
      \n
    • September 16th
    • \n
    • Fix: Instructions URL in the Firewall settings.
    • \n
    • Fix: Fixed incorrect instructions URL
    • \n
    • Fix: Let’s Encrypt returning an old certificate on auto-renewed certificates
    • \n
    • Improvement: As the X-Frame-Options is deprecated and replaced by frame ancestors, we drop the header as recommendation.
    • \n
    • Improvement: save and continue in vulnerabilities overview not working correctly
    • \n
    \n

    8.3.0.1

    \n
      \n
    • Fix: Issues with the decryption model
    • \n
    \n

    8.3.0

    \n
      \n
    • August 12th, 2024
    • \n
    • Feature: Password security scan. This feature scans your users for weak passwords, and allows you to enforce non-compromised passwords.
    • \n
    • Fix: Fixed some strings that were not translatable. This has been resolved.
    • \n
    • Fix: Premium support link did not work. Now links to the correct page.
    • \n
    • Improvement: Disable the cron schedules on deactivation.
    • \n
    • Fix: Links in emails were sometimes not correct. This has been fixed.
    • \n
    • Fix: Fatal error on permission detection. This has been resolved.
    • \n
    • Improvement: Custom header for the license checks for better compatibility with some hosting environments.
    • \n
    • Improvement: Added option to disable X-powered-by header.
    • \n
    • Improvement: New improved encryption method for some settings.
    • \n
    \n

    8.1.5

    \n
      \n
    • June 21th, 2024
    • \n
    • Fix: documentation links to website broken
    • \n
    • Improvement: some text changes in helptexts
    • \n
    • Improvement: new structure to upgrade database tables
    • \n
    \n

    8.1.4

    \n
      \n
    • June 11th, 2024
    • \n
    • Improvement: dropdown in onboarding not entirely visible
    • \n
    • Improvement: Styling of locked XML RPC overview
    • \n
    • Fix: Not loading cookie expiration change
    • \n
    • Fix: Visual Composer compatibility icw Enforce Strong Password
    • \n
    • Fix: Multiple CloudFlare detected notices in onboarding
    • \n
    • Fix: Checkbox position in onboarding
    • \n
    \n

    8.1.3

    \n
      \n
    • May 16th, 2024
    • \n
    • Fix: WP Rocket compatibility causing an issue when advanced-headers.php does not exist
    • \n
    \n

    8.1.2

    \n
      \n
    • May 16th, 2024
    • \n
    • Fix: upgrade advanced-headers.php file to allow early inclusion of the file. The ABSPATH defined check causes in issue for early inclusion, so must be removed.
    • \n
    \n

    8.1.1

    \n
      \n
    • May 14th, 2024
    • \n
    • New: detection of non-recommended permissions on files
    • \n
    • New: Configure region restrictions for your site
    • \n
    • Improvement: Textual change on premium overlay
    • \n
    • Improvement: Upgraded minimum required PHP version to 7.4
    • \n
    • Improvement: compatibility with Bitnami
    • \n
    • Improvement: compatibility of Limit Login Attempts with Woocommerce
    • \n
    • Improvement: remove duplicate X-Really-Simple-SSL-Test from advanced-headers-test.php
    • \n
    • Improvement: clear notice about .htaccess writable if do_not_edit_htaccess is enabled
    • \n
    • Fix: upgrade from <6.0 version to >8.0 causing a fatal error
    • \n
    • Fix: URL to details of detected vulnerabilities was incorrect
    • \n
    \n

    8.1.0

    \n
      \n
    • Improvement: some string corrections
    • \n
    • Fix: show ‘self’ as default in Frame Ancestors
    • \n
    • Improvement: catch not existing rsssl_version_compare
    • \n
    • Improvement: check for openSSL module existence
    • \n
    • Improvement: set default empty array for options, for legacy upgrades
    • \n
    • Improvement: disable custom login URL when plain permalinks are enabled
    • \n
    • New: Limit Login Attempts Captcha integration
    • \n
    • Improvement: drop renamed folder notice, not needed anymore
    • \n
    • Improvement: enable advanced headers in onboarding
    • \n
    • Improvement: is_object check in updater
    • \n
    \n

    8.0.1

    \n
      \n
    • Fix: enable 2FA during onboarding when not selected by user
    • \n
    • Improvement: better CSP defaults
    • \n
    • Fix: on upgrade to pro, free settings were cleared if “clear settings on deactivation” was enabled
    • \n
    • Fix: catch several array key not existing errors
    • \n
    \n

    8.0.0

    \n
      \n
    • New: hide remember me checkbox
    • \n
    • New: extend blocking of malicious admin creation to multisite
    • \n
    • Improvement: drop prefetch-src from Content Security Policy
    • \n
    • Improvement: disable two-fa when login protection is disabled
    • \n
    \n

    7.2.8

    \n
      \n
    • Fix: clear cron schedules on deactivation
    • \n
    • Improvement: translations update
    • \n
    • Notice: inform users about upcoming merge of free and pro plugin, not action needed, everything will be handled automatically
    • \n
    \n

    7.2.7

    \n
      \n
    • Improvement: added integration with FlyingPress and Fastest Cache
    • \n
    • Improvement: fix exiting a filter, causing a compatibility issue with BuddyPress
    • \n
    \n

    7.2.6

    \n
      \n
    • Improvement: text changes
    • \n
    • Improvement: css on login error message
    • \n
    • Improvement: header detection improved by always checking the last url in the redirect chain
    • \n
    • New: Added option to limit login cookie expiration time
    • \n
    • Fix: custom 404 pages i.c.w. custom login url
    • \n
    \n

    7.2.5

    \n
      \n
    • Fix: IP detection header order
    • \n
    • Fix: table creation on activation of LLA module
    • \n
    \n

    7.2.4

    \n
      \n
    • Fix: PHP warning in Password Security module
    • \n
    • Fix: change login url feature not working with password protected pages
    • \n
    • Improvement: move database table creation to Limit Login Attempts module
    • \n
    • Improvement: prevent php error caused by debug.log file hardening feature
    • \n
    \n

    7.2.3

    \n
      \n
    • Fix: CSP data not showing in datatable
    • \n
    \n

    7.2.2

    \n
      \n
    • Improvement: improved check for PharData class
    • \n
    \n

    7.2.1

    \n
      \n
    • Fix: Config for CSP preventing Learning mode from completing
    • \n
    • Fix: datatable styling
    • \n
    • Fix: using deactivate_https with wp-cli did not remove htaccess rules
    • \n
    • Improvement: add query parameter to enforce email verification &rsssl_force_verification
    • \n
    • Improvement: css for check certificate manually button
    • \n
    \n

    7.2.0

    \n
      \n
    • Fix: changed link to article
    • \n
    • Fix: remove flags .js file which was added twice, props @adamainsworth
    • \n
    • Fix: typo in missing advanced-headers.php notice
    • \n
    • Improvement: catch php warning when script src is empty when using hide wp version, props @chris-yau
    • \n
    • Improvement: new save & continue feedback
    • \n
    • Improvement: datatable styling
    • \n
    • Improvement: new react based modal
    • \n
    • Improvement: menu re-structured
    • \n
    • Improvement: re-check vulnerability status after core update
    • \n
    • Improvement: link in the email security notification to the vulnerability page instead of to a general explanation
    • \n
    \n

    7.1.3

    \n
      \n
    • October 11th 2023
    • \n
    • Fix: React ErrorBoundary preventing Let’s Encrypt generation to complete.
    • \n
    \n

    7.1.2

    \n
      \n
    • October 6th 2023
    • \n
    • Fix: hook change in integrations loader causing modules not to load. props @rami5342
    • \n
    \n

    7.1.1

    \n
      \n
    • October 5th 2023
    • \n
    • Fix: incorrect function usage, props @heutger
    • \n
    \n

    7.1.0

    \n
      \n
    • October 4th 2023
    • \n
    • Improvement: detection if advanced-headers.php file is running
    • \n
    \n

    7.0.9

    \n
      \n
    • September 5th 2023
    • \n
    • Improvement: typo update word
    • \n
    • Improvement: translatability in several strings.
    • \n
    \n

    7.0.8

    \n
      \n
    • August 8th 2023
    • \n
    • Improvement: WordPress tested up to 6.3
    • \n
    • Improvement: improve file existence check json
    • \n
    • Fix: handling of legacy options in php 8.1
    • \n
    • Fix: count remaining tasks
    • \n
    \n

    7.0.7

    \n
      \n
    • July 25th 2023
    • \n
    • Improvement: modal icon placement in wizard on smaller screens
    • \n
    • Improvement: expire cached detected headers five minutes after saving the settings
    • \n
    • Fix: handling of legacy options in php 8.1
    • \n
    • Fix: prevent issues with CloudFlare when submitting support form from within the plugin
    • \n
    • Fix: translations singular/plural for japanese translations @maboroshin
    • \n
    \n

    7.0.6

    \n
      \n
    • July 4th 2023
    • \n
    • Improvement: support custom wp-content directory in advanced-headers.php
    • \n
    • Improvement: prevent usage of subdirectories in custom login url
    • \n
    • Fix: translations not loading for chunked react components
    • \n
    • Improvement: add option to manually re-check vulnerabilities ‘&rsssl_check_vulnerabilities’, props @fawp
    • \n
    \n

    7.0.5

    \n
      \n
    • Fix: some users with a non www site reporting issues on the login page over http://www, due to the changes in the wp redirect. Reverting to the old method. props @pedalnorth, @mossifer.
    • \n
    \n

    7.0.4

    \n
      \n
    • June 14th 2023
    • \n
    • Improvement: notice informing about the new free vulnerability detection feature
    • \n
    • Improvement: improved the php redirect method
    • \n
    • Improvement: make the wp-config.php not writable notice dismissable
    • \n
    • Fix: feedback on hardening features enable action not showing as enabled, props @rtpHarry
    • \n
    \n

    7.0.3

    \n
      \n
    • Fix: fix false positives on some plugins
    • \n
    • Improvement: vulnerability notifications in site health, if notifications are enabled.
    • \n
    \n

    7.0.2

    \n
      \n
    • Improvement: improve matching precision on plugins with vulnerabilities.
    • \n
    \n

    7.0.1

    \n
      \n
    • Fix: When the Rest API is not available, the ajax fallback should kick in, which didn’t work correctly in 7.0. props @justaniceguy
    • \n
    \n

    7.0.0

    \n
      \n
    • New: Vulnerability Detection is in Beta – Read more or Get Started
    • \n
    • Improvement: move onboarding rest api to do_action rest_route
    • \n
    • Improvement: catch several edge situations in SSL Labs api
    • \n
    • Improvement: SSL Labs block responsiveness
    • \n
    • Improvement: more robust handling of wp-config.php detection
    • \n
    \n

    6.3.0

    \n
      \n
    • Improvement: added support for the new Let’s Encrypt staging environment
    • \n
    \n

    6.2.5

    \n
      \n
    • Improvement: add warning alert option
    • \n
    • Fix: capability mismatch in multisite. props @verkkovaraani
    • \n
    \n

    6.2.4

    \n
      \n
    • Improvement: optionally enable notification emails in onboarding wizard
    • \n
    • Improvement: onboarding styling
    • \n
    • Fix: catch non array value from notices array, props @kenrichman
    • \n
    • Fix: typo in documenation link, props @bookman53
    • \n
    \n

    6.2.3

    \n
      \n
    • Improvement: Changed Back-end react to functional components
    • \n
    • Improvement: multisite notice should link to network admin page
    • \n
    • Improvement: detect existing CAA records to check Let’s Encrypt compatibility
    • \n
    • Improvement: tested up to wp 6.2
    • \n
    • Improvement: UX improvement learning mode
    • \n
    \n

    6.2.2

    \n
      \n
    • Fix: capability mismatch for a non administrator in multisite admin, props @jg-visual
    • \n
    \n

    6.2.1

    \n
      \n
    • Fix: race condition when activating SSL through wp-cli, because of upgrade script
    • \n
    • Fix: missing disabled state in textarea and checkboxes
    • \n
    • Fix: some strings not translatable
    • \n
    • Fix: Let’s Encrypt renewal with add on
    • \n
    • Improvement: permissions check re-structuring
    • \n
    • Improvement: notice on subsite within multisite environment about wildcard updated
    • \n
    \n

    6.2.0

    \n
      \n
    • New: optional email notifications on advanced settings
    • \n
    • Improvement: added tooltips
    • \n
    • Improvement: added warnings for .htaccess redirect
    • \n
    • Improvement: don’t send user email change on renaming admin user, as the email doesn’t actually change
    • \n
    • Improvement: Use BASEPATH only for wp-load.php, so symlinked folders will load based on ABSPATH
    • \n
    • Improvement: Improved support for environments where Rest API is blocked
    • \n
    \n

    6.1.1

    \n
      \n
    • Fix: WP CLI not completing SSL when because site_has_ssl option is not set if website has not been visited before, props @oolongm
    • \n
    • Improvement: prevent ‘undefined’ status showing up in api calls on settings page
    • \n
    • Improvement: show notice if users are using an <2.0 Let’s Encrypt shell add-on which is not compatible with 6.0
    • \n
    \n

    6.1.0

    \n

    \n
      \n
    • Improvement: some UX changes
    • \n
    • Improvement: Limit number of notices in the dashboard
    • \n
    • Improvement: load rest api request url over https if website is loaded over https
    • \n
    • Fix: empty menu item visible in Let’s Encrypt menu
    • \n
    \n

    6.0.14

    \n

    \n
      \n
    • Fix: settings page when using plain permalinks, props @mvsitecreator, props @doug2son
    • \n
    \n

    6.0.13

    \n
      \n
    • Improvement: improve method of dropping empty menu items in settings dashboard
    • \n
    • Improvement: dynamic links in auto installer
    • \n
    • Improvement: Let’s Encrypt Auto installer not working correctly, props @mirkolofio
    • \n
    • Improvement: change rest_api method to core wp apiFetch()
    • \n
    • Improvement: scroll highlighted setting into view after clicking “fix” on a task
    • \n
    • Improvement: run http method test in batches, and set a default, to prevent possibility of curl timeouts on systems with CURL issues
    • \n
    • Improvement: clean up code-execution.php file after test, props @spinhead
    • \n
    • Improvement: give notification if ‘DISABLE_FILE_EDITING’ is set to false in the wp-config.php props @joeri1977
    • \n
    • Improvement: drop some unnecessary translations
    • \n
    • Improvement: set better default, and change transients to option for more persistent behavior in wp version test, props @photomaldives
    • \n
    • Fix: Burst Statistics not activating after installation
    • \n
    • Fix: CSS for blue labels in progress dashboard below 1080px
    • \n
    • Fix: WPCLI SSL activation not working due to capability checks, props @oolongm
    • \n
    • Fix: catch invalid account error in Let’s Encrypt generation, props @bugsjr
    • \n
    • Fix: do not block user enumeration for gutenberg
    • \n
    \n

    6.0.12

    \n
      \n
    • Fix: on multisite, the test for users with admin username did not use the correct prefix, $wpdb->base_prefix, props @jg-visual
    • \n
    • Improvement: allow submenu in back-end react application
    • \n
    • Improvement: Skip value update when no change has been made
    • \n
    • Improvement: no redirect on dismiss of admin notice, props @gangesh, @rtpHarry, @dumel
    • \n
    • Improvement: remove obsolete warning
    • \n
    • Improvement: qtranslate support on settings page
    • \n
    \n

    6.0.11

    \n
      \n
    • Fix: on some environments, the HTTP_X_WP_NONCE is not available in the code, changed logged in check to accomodate such environments
    • \n
    • Fix: dismiss on admin notices not immediately dismissing, requiring dismiss through dashboard, props @dumel
    • \n
    \n

    6.0.10

    \n
      \n
    • Fix: Apache 2.4 support for the block code execution in the uploads directory hardening feature, props @overlake
    • \n
    • Fix: When used with Varnish cache, Rest API get requests were cached, causing the settings page not to update.
    • \n
    • Fix: Ensure manage_security capability for users upgraded from versions before introduction of this capability
    • \n
    • Fix: allow for custom rest api prefixes, props @coderevolution
    • \n
    • Fix: bug in Let’s Encrypt generation with DNS verification: saving of ‘disable_ocsp’ setting, create_bundle_or_renew action with quotes
    • \n
    • Fix: change REST API response method to prevent script errors on environments with PHP warnings and errors, causing blank settings page
    • \n
    • Improvement: Simplify user enumeration test
    • \n
    • Improvement: catch unexpected response in SSL Labs object
    • \n
    • Improvement: z-index on on boarding modal on smaller screen sizes, props @rtpHarry
    • \n
    • Improvement: hide username field if no admin username is present, props @rtpHarry
    • \n
    \n

    6.0.9

    \n
      \n
    • Fix: incorrectly disabled email field in Let’s Encrypt wizard, props @cburgess
    • \n
    • Improvement: on rename admin user, catch existing username, and strange characters
    • \n
    • Improvement: catch openBaseDir restriction in cpanel detection function, props @alofnur
    • \n
    • Improvement: remove 6.0 update notices on subsites in a multisite network, props @wpcoderca, (@collizo4sky
    • \n
    \n

    6.0.8

    \n
      \n
    • Improvement: Lets Encrypt wizard CSS styling
    • \n
    • Improvement: re-add link to article about Let’s Encrypt so users can easily find the URL
    • \n
    • Improvement: let user choose a new username when selecting “rename admin user”
    • \n
    \n

    6.0.7

    \n
      \n
    • Fix: restrict conditions in which htaccess rewrite runs, preventing conflicts with other rewriting plugins
    • \n
    \n

    6.0.6

    \n
      \n
    • Fix: drop upgrade of .htaccess file in upgrade script
    • \n
    \n

    6.0.5

    \n
      \n
    • Fix: race condition in .htaccess update script, where multiple updates simultaneously caused issues with the .htaccess file
    • \n
    \n

    6.0.4

    \n
      \n
    • Fix: using the .htaccess redirect in combination with the block code execution in uploads causes an issue in the .htaccess redirect
    • \n
    • Fix: deactivating Really Simple SSL does not completely remove the wp-config.php fixes, causing errors, props @minalukic812
    • \n
    \n

    6.0.3

    \n
      \n
    • Fix: Rest Optimizer causing other plugins to deactivate when recommended plugins were activated, props @sardelich
    • \n
    \n

    6.0.2

    \n
      \n
    • Fix: do not show WP_DEBUG_DISPLAY notice if WP_DEBUG is false, props @janv01
    • \n
    • Fix: empty cron schedule, props @gilvansilvabr
    • \n
    • Improvement: several typo’s and string improvements
    • \n
    • Fix: auto installer used function not defined yet
    • \n
    • Fix: rest api optimizer causing an error in some cases @giorgos93
    • \n
    \n

    6.0.1

    \n
      \n
    • Fix translations not loading for scripts
    • \n
    \n

    6.0.0

    \n
      \n
    • Tested up to WordPress 6.1.0
    • \n
    • Improvement: User Interface
    • \n
    • New: Server Health Check – powered by SSLLabs
    • \n
    • New: WordPress Hardening Features
    • \n
    \n", "description": "

    Easily improve site security with WordPress Hardening, Two-Factor Authentication (2FA), Login Protection, Vulnerability Detection and SSL certificate.

    \n

    Really simple, Effective and Performant WordPress Security

    \n

    Really Simple Security is the most lightweight and easy-to-use security plugin for WordPress. It secures your WordPress website with SSL certificate generation, including proper 301 https redirection and SSL enforcement, scanning for possible vulnerabilities, Login Protection and implementing essential WordPress hardening features.

    \n

    We believe that security should have the absolute minimum effect on website performance, user experience and maintainability. Therefore, Really Simple Security is:

    \n
      \n
    • Lightweight: Every security feature is developed with a modular approach and with performance in mind. Disabled features won’t load any redundant code.
    • \n
    • Easy-to-use: 1-minute configuration with short onboarding setup.
    • \n
    \n

    Security Features

    \n

    Easy SSL Migration

    \n

    Migrates your website to HTTPS and enforces SSL in just one click.

    \n
      \n
    • 301 redirect via PHP or .htaccess
    • \n
    • Secure cookies
    • \n
    • Let’s Encrypt: Install an SSL Certificate if your hosting provider supports manual installation.
    • \n
    • Server Health Check: Your server configuration is every bit as important for your website security.
    • \n
    \n

    WordPress Hardening

    \n

    Tweak your configuration and keep WordPress fortified and safe by tackling potential weaknesses.

    \n
      \n
    • Prevent code execution in the uploads folder
    • \n
    • Prevent login feedback and disable user enumeration
    • \n
    • Disable XML-RPC
    • \n
    • Disable directory browsing
    • \n
    • Username restrictions (block ‘admin’ and public names)
    • \n
    • and much more..
    • \n
    \n

    Vulnerability Detection

    \n

    Get notified when plugins, themes or WP core contain vulnerabilities and need appropriate action.

    \n

    Login Protection

    \n

    Allow or enforce Two-Factor Authentication (2FA) for specific user roles. Users receive a two-factor code via Email.

    \n

    Improve Security with Really Simple Security Pro

    \n

    Protect your site with all essential security features by upgrading to Really Simple Security Pro.

    \n

    Advanced SSL enforcement

    \n
      \n
    • Mixed Content Scan & Fixer. Detect files that are requested over HTTP and fix them to HTTPS, both Front- and Back-end.
    • \n
    • Enable HTTP Strict Transport Security and configure your site for the HSTS Preload list.
    • \n
    \n

    Firewall

    \n

    Really Simple Security Pro includes a performant and efficient WordPress firewall, to stop bots, crawlers and bad actors with IP and username blocks.

    \n
      \n
    • 404 blocking – Blocks crawlers as they trigger unusual numbers of 404 errors.
    • \n
    • Region blocking – Only allow/block access to your site from specific regions.
    • \n
    • Automated and customisable Firewall rules.
    • \n
    • IP blocklist and allowlist.
    • \n
    \n

    Security Headers

    \n

    Security headers protect your site visitors against the risk of clickjacking, cross-site-forgery attacks, stealing login credentials and malware.

    \n
      \n
    • Independent of your Server Configuration, works on Apache, LiteSpeed, NGINX, etc.
    • \n
    • Protect your website visitors with X-XSS Protection, X-Content-Type-Options, X-Frame-Options, a Referrer Policy and CORS headers.
    • \n
    • Automatically generate your WordPress-tailored Content Security Policy.
    • \n
    \n

    Vulnerability Measures

    \n

    When a vulnerability is detected in a plugin, theme or WordPress core you will get notified accordingly. With Vulnerability Measures, you can configure simple but effective measures to make sure that a critical vulnerability won’t remain unattended.

    \n
      \n
    • Force update: An update process will be tried multiple times until it can be assumed development of a theme or plugin is abandoned. You will be notified during these steps.
    • \n
    • Quarantine: When a plugin or theme can’t be updated to solve a vulnerability, Really Simple Security can quarantine the plugin.
    • \n
    \n

    Advanced Site Hardening

    \n
      \n
    • Choose a custom login URL
    • \n
    • Automated File Permissions check and fixer
    • \n
    • Rename and randomize your database prefix
    • \n
    • Change the debug.log file location to a non-public folder
    • \n
    • Disable application passwords
    • \n
    • Control admin creation
    • \n
    • Disable HTTP methods, reducing HTTP requests
    • \n
    \n

    Login Protection

    \n

    Secure your website’s login process and user accounts with powerful security measures.

    \n
      \n
    • Two-Step verification (Email login)
    • \n
    • 2FA (two factor authentication) with TOTP
    • \n
    • Passwordless login with passkey login
    • \n
    • Enforce strong passwords and frequent password change
    • \n
    • Limit Login Attempts
    • \n
    \n

    With Limit Login Attempts you can configure a threshold to temporarily or permanently block IP addresses or (non-existing) usernames. You can also throw a CAPTCHA after a failed login (hCaptcha or Google reCaptcha)

    \n

    Access Control

    \n
      \n
    • Restrict access to your site for specific regions.
    • \n
    • Add specific IP addresses or IP ranges to the Blocklist or Allowlist.
    • \n
    \n

    Useful Links

    \n\n

    Love Really Simple Security?

    \n

    If you want to support the continuing development of this plugin, please consider buying Really Simple Security Pro, which includes some excellent security features and premium support.

    \n

    About Really Simple Plugins

    \n

    Our mission is to make complex WordPress requirements really easy. Really Simple Security is developed by Really Simple Plugins.

    \n

    For generating SSL certificates, Really Simple Security uses the le acme2 PHP Let’s Encrypt client library, thanks to ‘fbett’ for providing it. Vulnerability Detection uses WP Vulnerability, an open-source initiative by Javier Casares. Want to join as a collaborator? We’re on GitHub as well!

    \n", "screenshots": "
    1. \"The

      The Really Simple Security Dashboard provides a quick security overview.

    2. \"Enable

      Enable or enforce 2FA per user role.

    3. \"Stay

      Stay ahead of plugin, theme and WP core vulnerabilities.

    4. \"Harden

      Harden your site’s security with Basic Hardening features.

    5. \"1-minute

      1-minute configuration with the short security onboarding.

    ", "installation": "

    To install this plugin:

    \n
      \n
    1. Make a backup! See our recommendations.
    2. \n
    3. Download the plugin.
    4. \n
    5. Upload the plugin to the /wp-content/plugins/ directory.
    6. \n
    7. Go to “Plugins” in your WordPress admin, then click “Activate”.
    8. \n
    9. You will now see the Really Simple Security onboarding process, to quickly help you through the configuration process.
    10. \n
    \n"}, "versions": {"9.4.0": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.4.0.zip", "9.4.1": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.4.1.zip", "9.4.2": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.4.2.zip", "9.4.3": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.4.3.zip", "9.5.0": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.0.zip", "9.5.1": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.1.zip", "9.5.2": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.2.zip", "9.5.3": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.3.zip", "trunk": "https://downloads.wordpress.org/plugin/really-simple-ssl.zip", "9.5.0.1": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.0.1.zip", "9.5.0.2": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.0.2.zip", "9.5.2.2": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.2.2.zip", "9.5.2.3": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.2.3.zip"}, "downloaded": 194761152, "description": "

    Easily improve site security with WordPress Hardening, Two-Factor Authentication (2FA), Login Protection, Vulnerability Detection and SSL certificate.

    \n

    Really simple, Effective and Performant WordPress Security

    \n

    Really Simple Security is the most lightweight and easy-to-use security plugin for WordPress. It secures your WordPress website with SSL certificate generation, including proper 301 https redirection and SSL enforcement, scanning for possible vulnerabilities, Login Protection and implementing essential WordPress hardening features.

    \n

    We believe that security should have the absolute minimum effect on website performance, user experience and maintainability. Therefore, Really Simple Security is:

    \n
      \n
    • Lightweight: Every security feature is developed with a modular approach and with performance in mind. Disabled features won’t load any redundant code.
    • \n
    • Easy-to-use: 1-minute configuration with short onboarding setup.
    • \n
    \n

    Security Features

    \n

    Easy SSL Migration

    \n

    Migrates your website to HTTPS and enforces SSL in just one click.

    \n
      \n
    • 301 redirect via PHP or .htaccess
    • \n
    • Secure cookies
    • \n
    • Let’s Encrypt: Install an SSL Certificate if your hosting provider supports manual installation.
    • \n
    • Server Health Check: Your server configuration is every bit as important for your website security.
    • \n
    \n

    WordPress Hardening

    \n

    Tweak your configuration and keep WordPress fortified and safe by tackling potential weaknesses.

    \n
      \n
    • Prevent code execution in the uploads folder
    • \n
    • Prevent login feedback and disable user enumeration
    • \n
    • Disable XML-RPC
    • \n
    • Disable directory browsing
    • \n
    • Username restrictions (block ‘admin’ and public names)
    • \n
    • and much more..
    • \n
    \n

    Vulnerability Detection

    \n

    Get notified when plugins, themes or WP core contain vulnerabilities and need appropriate action.

    \n

    Login Protection

    \n

    Allow or enforce Two-Factor Authentication (2FA) for specific user roles. Users receive a two-factor code via Email.

    \n

    Improve Security with Really Simple Security Pro

    \n

    Protect your site with all essential security features by upgrading to Really Simple Security Pro.

    \n

    Advanced SSL enforcement

    \n
      \n
    • Mixed Content Scan & Fixer. Detect files that are requested over HTTP and fix them to HTTPS, both Front- and Back-end.
    • \n
    • Enable HTTP Strict Transport Security and configure your site for the HSTS Preload list.
    • \n
    \n

    Firewall

    \n

    Really Simple Security Pro includes a performant and efficient WordPress firewall, to stop bots, crawlers and bad actors with IP and username blocks.

    \n
      \n
    • 404 blocking – Blocks crawlers as they trigger unusual numbers of 404 errors.
    • \n
    • Region blocking – Only allow/block access to your site from specific regions.
    • \n
    • Automated and customisable Firewall rules.
    • \n
    • IP blocklist and allowlist.
    • \n
    \n

    Security Headers

    \n

    Security headers protect your site visitors against the risk of clickjacking, cross-site-forgery attacks, stealing login credentials and malware.

    \n
      \n
    • Independent of your Server Configuration, works on Apache, LiteSpeed, NGINX, etc.
    • \n
    • Protect your website visitors with X-XSS Protection, X-Content-Type-Options, X-Frame-Options, a Referrer Policy and CORS headers.
    • \n
    • Automatically generate your WordPress-tailored Content Security Policy.
    • \n
    \n

    Vulnerability Measures

    \n

    When a vulnerability is detected in a plugin, theme or WordPress core you will get notified accordingly. With Vulnerability Measures, you can configure simple but effective measures to make sure that a critical vulnerability won’t remain unattended.

    \n
      \n
    • Force update: An update process will be tried multiple times until it can be assumed development of a theme or plugin is abandoned. You will be notified during these steps.
    • \n
    • Quarantine: When a plugin or theme can’t be updated to solve a vulnerability, Really Simple Security can quarantine the plugin.
    • \n
    \n

    Advanced Site Hardening

    \n
      \n
    • Choose a custom login URL
    • \n
    • Automated File Permissions check and fixer
    • \n
    • Rename and randomize your database prefix
    • \n
    • Change the debug.log file location to a non-public folder
    • \n
    • Disable application passwords
    • \n
    • Control admin creation
    • \n
    • Disable HTTP methods, reducing HTTP requests
    • \n
    \n

    Login Protection

    \n

    Secure your website’s login process and user accounts with powerful security measures.

    \n
      \n
    • Two-Step verification (Email login)
    • \n
    • 2FA (two factor authentication) with TOTP
    • \n
    • Passwordless login with passkey login
    • \n
    • Enforce strong passwords and frequent password change
    • \n
    • Limit Login Attempts
    • \n
    \n

    With Limit Login Attempts you can configure a threshold to temporarily or permanently block IP addresses or (non-existing) usernames. You can also throw a CAPTCHA after a failed login (hCaptcha or Google reCaptcha)

    \n

    Access Control

    \n
      \n
    • Restrict access to your site for specific regions.
    • \n
    • Add specific IP addresses or IP ranges to the Blocklist or Allowlist.
    • \n
    \n

    Useful Links

    \n\n

    Love Really Simple Security?

    \n

    If you want to support the continuing development of this plugin, please consider buying Really Simple Security Pro, which includes some excellent security features and premium support.

    \n

    About Really Simple Plugins

    \n

    Our mission is to make complex WordPress requirements really easy. Really Simple Security is developed by Really Simple Plugins.

    \n

    For generating SSL certificates, Really Simple Security uses the le acme2 PHP Let’s Encrypt client library, thanks to ‘fbett’ for providing it. Vulnerability Detection uses WP Vulnerability, an open-source initiative by Javier Casares. Want to join as a collaborator? We’re on GitHub as well!

    \n", "donate_link": "https://www.paypal.me/reallysimplessl", "num_ratings": 8762, "screenshots": {"1": {"src": "https://ps.w.org/really-simple-ssl/assets/screenshot-1.png?rev=3153900", "caption": "The Really Simple Security Dashboard provides a quick security overview."}, "2": {"src": "https://ps.w.org/really-simple-ssl/assets/screenshot-2.png?rev=3153900", "caption": "Enable or enforce 2FA per user role."}, "3": {"src": "https://ps.w.org/really-simple-ssl/assets/screenshot-3.png?rev=3153900", "caption": "Stay ahead of plugin, theme and WP core vulnerabilities."}, "4": {"src": "https://ps.w.org/really-simple-ssl/assets/screenshot-4.png?rev=3153900", "caption": "Harden your site’s security with Basic Hardening features."}, "5": {"src": "https://ps.w.org/really-simple-ssl/assets/screenshot-5.png?rev=3153900", "caption": "1-minute configuration with the short security onboarding."}}, "support_url": "https://wordpress.org/support/plugin/really-simple-ssl/", "contributors": {"wimbraam": {"avatar": "https://secure.gravatar.com/avatar/744e8df1543407b7a5472d5e1a414eba1faa7d88bee2cadc898ffcbc44c73843?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wimbraam/", "display_name": "Wim Braam"}, "vicocotea": {"avatar": "https://secure.gravatar.com/avatar/16fe87b77342abeccadc8233df0fee7533d0df92dce82e0f338fa6193a12537a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/vicocotea/", "display_name": "vicocotea"}, "markwolters": {"avatar": "https://secure.gravatar.com/avatar/dab3ec58d4eedf545a03eff2ac363eaec029f64c05600d749b3fd923a4fc1432?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/markwolters/", "display_name": "Mark"}, "hesseldejong": {"avatar": "https://secure.gravatar.com/avatar/3dd39dd939945dc1fee0099cabf8a9d12a13ec555e000068bcf4a51a80ab0338?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hesseldejong/", "display_name": "Hessel de Jong"}, "marcelsanting": {"avatar": "https://secure.gravatar.com/avatar/cbb74cdcaf8643a3343c5fb8a8a3986abeb488f3a05dea32f6bf597e4c0e1312?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/marcelsanting/", "display_name": "Marcel Santing"}, "janwoostendorp": {"avatar": "https://secure.gravatar.com/avatar/8c541ac2ff7954183eef79106254fadc5e3d508d5542f706778ece0d4a68b397?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/janwoostendorp/", "display_name": "Jan-Willem"}, "rogierlankhorst": {"avatar": "https://secure.gravatar.com/avatar/da7d8197d253a9a792bf908dd77b0d4bcbf2d192f514ed4206903a96fd93f9b9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rogierlankhorst/", "display_name": "Rogier Lankhorst"}}, "last_updated": "2025-10-27 3:03pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.3.zip", "author_profile": "https://profiles.wordpress.org/reallysimpleplugins/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    On settings page load, the .htaccess file is no rewritten. If you have made .htaccess customizations to the RSSSL block and have not blocked the plugin from editing it, do so before upgrading.\nAlways back up before any upgrade. Especially .htaccess, wp-config.php and the plugin folder. This way you can easily roll back.

    "}, "active_installs": 4000000, "aspiresync_meta": {"id": "019a30bf-f95d-708b-8e0a-948f0b37d9dc", "name": "Really Simple Security – Simple and Performant Security (formerly Really Simple SSL)", "slug": "really-simple-ssl", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761577380, "version": "9.5.3"}, "support_threads": 15, "requires_plugins": [], "short_description": "Easily improve site security with WordPress Hardening, Two-Factor Authentication (2FA), Login Protection, Vulnerability Detection and SSL certificate.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 14}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1d53-70f3-9b5a-6e1b6107df7e', 'did:web:api.aspiredev.org:packages:wp-plugin:redirection', 'redirection', 'Redirection', '

    Redirection is the most popular redirect manager for WordPress. With it you can easily manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have. This can help reduce errors and improve your site ranking.

    -

    Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.

    -

    It has been a WordPress plugin for over 10 years and has been recommended countless times. And it’s free!

    -

    Full documentation can be found at https://redirection.me

    -

    Redirection is compatible with PHP from 7.0 to 8.3.

    -

    Redirect manager

    -

    Create and manage redirects quickly and easily without needing Apache or Nginx knowledge. If your WordPress supports permalinks then you can use Redirection to redirect any URL.

    -

    There is full support for regular expressions so you can create redirect patterns to match any number of URLs. You can match query parameters and even pass them through to the target URL.

    -

    The plugin can also be configured to monitor when post or page permalinks are changed and automatically create a redirect to the new URL.

    -

    Conditional redirects

    -

    In addition to straightforward URL matching you can redirect based on other conditions:

    -
      -
    • Login status – redirect only if the user is logged in or logged out
    • -
    • WordPress capability – redirect if the user is able to perform a certain capability
    • -
    • Browser – redirect if the user is using a certain browser
    • -
    • Referrer – redirect if the user visited the link from another page
    • -
    • Cookies – redirect if a particular cookie is set
    • -
    • HTTP headers – redirect based on a HTTP header
    • -
    • Custom filter – redirect based on your own WordPress filter
    • -
    • IP address – redirect if the client IP address matches
    • -
    • Server – redirect another domain if also hosted on this server
    • -
    • Page type – redirect if the current page is a 404
    • -
    -

    Full logging

    -

    A configurable logging option allows to view all redirects occurring on your site, including information about the visitor, the browser used, and the referrer. A ‘hit’ count is maintained for each redirect so you can see if a URL is being used.

    -

    Logs can be exported for external viewing, and can be searched and filtered for more detailed investigation.

    -

    Display geographic information about an IP address, as well as a full user agent information, to try and understand who the visitor is.

    -

    You are able to disable or reduce IP collection to meet the legal requirements of your geographic region, and can change the amount of information captured from the bare minimum to HTTP headers.

    -

    You can also log any redirect happening on your site, including those performed outside of Redirection.

    -

    Add HTTP headers

    -

    HTTP headers can be added to redirects or your entire site that help reduce the impact of redirects or help increase security. You can also add your own custom headers.

    -

    Track 404 errors

    -

    Redirection will keep track of all 404 errors that occur on your site, allowing you to track down and fix problems.

    -

    Errors can be grouped to show where you should focus your attention, and can be redirected in bulk.

    -

    Query parameter handling

    -

    You can match query parameters exactly, ignore them, and even pass them through to your target.

    -

    Migrate Permalinks

    -

    Changed your permalink structure? You can migrate old permalinks simply by entering the old permalink structure. Multiple migrations are supported.

    -

    Apache & Nginx support

    -

    By default Redirection will manage all redirects using WordPress. However you can configure it so redirects are automatically saved to a .htaccess file and handled by Apache itself.

    -

    If you use Nginx then you can export redirects to an Nginx rewrite rules file.

    -

    Fine-grained permissions

    -

    Fine-grained permissions are available so you can customise the plugin for different users. This makes it particularly suitable for client sites where you may want to prevent certain actions, and remove functionality.

    -

    Import & Export

    -

    The plugin has a fully-featured import and export system and you can:

    -
      -
    • Import and export to Apache .htaccess
    • -
    • Export to Nginx rewrite rules
    • -
    • Copy redirects between sites using JSON
    • -
    • Import and export to CSV for viewing in a spreadsheet
    • -
    • Use WP CLI to automate import and export
    • -
    -

    You can also import from the following plugins:

    -
      -
    • Simple 301 Redirects
    • -
    • SEO Redirection
    • -
    • Safe Redirect Manager
    • -
    • Rank Math
    • -
    • WordPress old slug redirects
    • -
    • Quick Post/Pages redirects
    • -
    -

    Search Regex compatible

    -

    Redirection is compatible with Search Regex, allowing you to bulk update your redirects.

    -

    Wait, it’s free?

    -

    Yes, it’s really free. There’s no premium version and no need to pay money to get access to features. This is a dedicated redirect management plugin.

    -

    Support

    -

    Please submit bugs, patches, and feature requests to:

    -

    https://github.com/johngodley/redirection

    -

    Please submit translations to:

    -

    https://translate.wordpress.org/projects/wp-plugins/redirection

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Redirection", "slug": "redirection", "tags": {"301": "301", "404": "404", "apache": "Apache", "htaccess": "htaccess", "redirect": "redirect"}, "added": "2007-09-10", "icons": {"1x": "https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640", "2x": "https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639"}, "author": "John Godley", "rating": 88, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642", "high": "https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641"}, "ratings": {"1": 74, "2": 20, "3": 13, "4": 29, "5": 542}, "version": "5.5.2", "homepage": "https://redirection.me/", "requires": "6.4", "sections": {"faq": "\n
    \nWhy would I want to use this instead of .htaccess?\n\n

    \n

    Ease of use. Redirections are automatically created when a post URL changes, and it is a lot easier to manually add redirections than to hack around a .htaccess. You also get the added benefit of being able to keep track of 404 errors.

    \n

    \n
    \nWhat is the performance of this plugin?\n\n

    \n

    The plugin works in a similar manner to how WordPress handles permalinks and should not result in any noticeable slowdown to your site.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aaaaabb on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works very good, simple and advanced enough. Collects stats

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best Plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Matand Matos Kaumba (matandmatos09) on September 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using this plugin ever since and it helps me so much with my line of work. This has made everything easier.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Helpful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anil Dervishi (hopcle) on September 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Clear documentation, helpful support when issues arise.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brilliant Tool!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Abdulrashid Aushev (glawer) on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is surely a lifesaver. Redirection handled the hundreds of URL changes I had to make when I recently moved my entire website to a new structure. I could see every broken link in the log, and it was as simple as clicking a button to set up redirects. I didn''t lose traffic because of this plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works well and great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mooselt on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin is installed by default on all our websites, works as intended and support is available. What more to say?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great!!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy flexjoly on July 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    And just found the permalinks-redirect feature.... did not see it before.... Just what I needed!!
    Thanks!!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incredibly Useful and Reliable

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy James Henry (jhonline2020) on July 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using Redirection for a while now and it''s easily one of the most essential plugins in my toolkit. Super helpful for managing 301 redirects, cleaning up broken links, and tracking errors — all without touching .htaccess. The interface is simple, and everything just works. Highly recommended!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    5 Star no brainer! A MUST HAVE!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pzsniper on June 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Even paid plugins aren''t so complete!
    Just a UX restyling and it will be A+++

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Updates break existing redirects

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jesse57 on May 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After updating the plugin some of the active redirects stopped working completely.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jason Ball (jasonfintips) on May 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use.

    \n
    \n
    \n", "changelog": "

    A x.1 version increase introduces new or updated features and can be considered to contain ‘breaking’ changes. A x.x.1 increase is purely a bug fix and introduces no new features, and can be considered as containing no breaking changes.

    \n

    5.5.2

    \n
      \n
    • Fix saving of x-frame-options
    • \n
    • Fix CPT loading
    • \n
    • Fix last access date changing on update
    • \n
    • Remove newsletter option
    • \n
    \n

    5.5.1

    \n
      \n
    • Fix problem with category pages and permalink migration
    • \n
    • Don’t report invalid JSON import as successful
    • \n
    • Exclude CPTs without URLs for monitoring
    • \n
    • Update for WP 6.7
    • \n
    \n

    5.5.0

    \n
      \n
    • Multiple ‘URL and WP page type’ redirects will now work
    • \n
    • Translations now use WP core
    • \n
    \n

    5.4.2 – 27th January 2024

    \n
      \n
    • Remove Geo IP option (it may return)
    • \n
    • Fix crash in agent info
    • \n
    • Add new max-age header
    • \n
    • Remove deprecated ini_set call
    • \n
    • Don’t double encode URLs when checking
    • \n
    \n

    5.4.1 – 5th January 2024

    \n
      \n
    • Fix problem with some international URLs not appearing in the 404 log
    • \n
    \n

    5.4 – 1st January 2024

    \n
      \n
    • Don’t encode negative lookaheads
    • \n
    • Remove port from server name
    • \n
    • Importing into a disabled group now creates disabled items
    • \n
    • Add option to pick IP header
    • \n
    • Fix save of x-content-type-options: sniff
    • \n
    • Fix save of multiple spaces
    • \n
    \n

    5.3.10 – 2nd April 2023

    \n
      \n
    • Fix associated redirect setting not saving properly
    • \n
    \n

    5.3.9 – 25th January 2023

    \n
      \n
    • Fix incorrect sanitization applied to target URLs
    • \n
    \n

    5.3.8 – 22nd January 2023

    \n
      \n
    • Fix app rendering twice causing problems with upgrades
    • \n
    • Fix CSV header being detected as an error
    • \n
    \n

    5.3.7 – 8th January 2023

    \n
      \n
    • Fix problem with locales in certain directories
    • \n
    • Fix incorrect import of empty CSV lines
    • \n
    • Don’t encode regex for Nginx
    • \n
    \n

    5.3.6 – 12th November 2022

    \n
      \n
    • Fix for sites with a version of +OK
    • \n
    • Another fix for CZ locale
    • \n
    \n

    5.3.5 – 6th November 2022

    \n
      \n
    • Fix crash on options page for Czech language
    • \n
    \n

    5.3.4 – 14th September 2022

    \n
      \n
    • Fix query parameter name with a + not matching
    • \n
    \n

    5.3.3 – 7th September 2022

    \n
      \n
    • Fix default HTTP header not being set when first used
    • \n
    • Fix incorrect column heading in CSV
    • \n
    • Fix passing of mixed case parameters
    • \n
    \n

    5.3.2 – 6th August 2022

    \n
      \n
    • Fix missing props error
    • \n
    • Fix missing value for .htaccess location display
    • \n
    \n

    5.3.1 – 29th July 2022

    \n
      \n
    • Fix crash caused by bad translations in locale files
    • \n
    • Fix query match not working when it contained mixed case
    • \n
    • Fix missing flag in .htaccess export
    • \n
    \n

    5.3.0 – 21st July 2022

    \n
      \n
    • Improve installation process
    • \n
    • Improve permalink migration so it works with more permalinks
    • \n
    • Prevent ordering columns by HTTP code
    • \n
    • Better encode URLs in Nginx export
    • \n
    • Allow escaped characters to work in the redirect checker
    • \n
    • Reduce CSV import time
    • \n
    \n

    5.2.3 – 6th February 2022

    \n
      \n
    • Fix error when grouping by URL, adding redirect, and then adding another redirect
    • \n
    • Add a warning for unescaped ? regex
    • \n
    \n

    5.2.2 – 22nd January 2022

    \n
      \n
    • Further improve URL checker response to clarify responsibility
    • \n
    • Fix WordPress and pagetype match preventing the logging of 404s
    • \n
    • Fix title field being inactive
    • \n
    • Fix CSV export having duplicate column
    • \n
    \n

    5.2.1 – 16th January 2022

    \n
      \n
    • Include path with inline URL checker
    • \n
    \n

    5.2 – 15th January 2022

    \n
      \n
    • Improve URL checker and show more details
    • \n
    • Retain query parameter case when passing to target URL
    • \n
    • Remove unnecessary database stage option check
    • \n
    • PHP 8.1 compatibility
    • \n
    \n

    5.1.3 – 24th July 2021

    \n
      \n
    • Fix geo IP on log pages showing an API redirected error
    • \n
    • Fix crash when changing match type in edit dialog
    • \n
    \n

    5.1.2 – 17th July 2021

    \n
      \n
    • Fix random redirect not working
    • \n
    • Fix [userid] shortcode returning 1
    • \n
    \n

    5.1.1 – 11th April 2021

    \n
      \n
    • Revert the permalink migration improvement from 5.1 as it’s causing problems on some sites
    • \n
    \n

    5.1 – 10th April 2021

    \n
      \n
    • Add importer for PrettyLinks
    • \n
    • Fix crash converting a ‘do nothing’ to ‘redirect to URL’
    • \n
    • Improve warning messages
    • \n
    • Improve permalink migration when is_404 is not set
    • \n
    • Fix ‘delete log entries’ returning blank data
    • \n
    • Fix missing .htaccess location
    • \n
    • Fix hits & date not imported with JSON format
    • \n
    \n

    5.0.1 – 26th Jan 2021

    \n
      \n
    • Fix incorrect warning when creating a regular expression with captured data
    • \n
    • Fix JS error when upgrading a database with a broken REST API
    • \n
    • Increase regular expression redirect limit
    • \n
    • PHP8 support
    • \n
    \n

    5.0 – 16th Jan 2021

    \n
      \n
    • Add caching support
    • \n
    • Add support for migrated permalink structures
    • \n
    • Add dynamic URL variables
    • \n
    • Add fully automatic database upgrade option
    • \n
    • Add a new version release information prompt
    • \n
    • Improve performance when many redirects have the same path
    • \n
    • Move bulk all action to a separate button after selecting all
    • \n
    • Fix error in display with restricted capabilities
    • \n
    • Avoid problems with 7G Firewall
    • \n
    • Improve handling of invalid encoded characters
    • \n
    \n

    4.9.2 – 30th October

    \n
      \n
    • Fix warning with PHP 5.6
    • \n
    • Improve display of long URLs
    • \n
    \n

    4.9.1 – 26th October 2020

    \n
      \n
    • Restore missing time and referrer URL from log pages
    • \n
    • Restore missing client information from debug reports
    • \n
    • Fix order by count when grouping by URL
    • \n
    • Check for duplicate columns in DB upgrade
    • \n
    \n

    4.9 – 24th October 2020

    \n
      \n
    • Expand log information to capture HTTP headers, domain, HTTP code, and HTTP method
    • \n
    • Allow non-Redirection redirects to be logged – allows tracking of all redirects on a site
    • \n
    • Expand log and 404 pages with greatly improved filters
    • \n
    • Bulk delete logs and 404s by selected filter
    • \n
    • Logging is now optional per redirect rule
    • \n
    • Fix random action on a site with non-root URL
    • \n
    • Fix group and search being reset when searching
    • \n
    • Fix canonical alias not using request server name
    • \n
    \n

    4.8 – 23rd May 2020

    \n
      \n
    • Add importer for Quick Post/Page Redirects plugin
    • \n
    • Add plugin imports to WP CLI
    • \n
    • Fix install wizard using wrong relative API
    • \n
    • Fix sub menu outputting invalid HTML
    • \n
    \n

    4.7.2 – 8th May 2020

    \n
      \n
    • Fix PHP warning decoding an encoded question mark
    • \n
    • Fix site adding an extra period in a domain name
    • \n
    • Fix protocol appearing in .htaccess file server redirect
    • \n
    \n

    4.7.1 – 14th March 2020

    \n
      \n
    • Fix HTTP header over-sanitizing the value
    • \n
    • Fix inability to remove .htaccess location
    • \n
    • Fix 404 group by ‘delete all’
    • \n
    • Fix import of empty ‘old slugs’
    • \n
    \n

    4.7 – 15th February 2020

    \n
      \n
    • Relocate entire site to another domain, with exceptions
    • \n
    • Site aliases to map another site to current site
    • \n
    • Canonical settings for www/no-www
    • \n
    • Change content-type for API requests to help with mod_security
    • \n
    \n

    4.6.2 – 6th January 2020

    \n
      \n
    • Fix 404 log export button
    • \n
    • Fix HTTPS option not appearing enabled
    • \n
    • Fix another PHP compat issue
    • \n
    \n

    4.6.1 – 30th December 2019

    \n
      \n
    • Back-compatibility fix for old PHP versions
    • \n
    \n

    4.6 – 27th December 2019

    \n
      \n
    • Add fine-grained permissions allowing greater customisation of the plugin, and removal of functionality
    • \n
    • Add an import step to the install wizard
    • \n
    • Remove overriding of default WordPress ‘old slugs’
    • \n
    \n

    4.5.1 – 23rd November 2019

    \n
      \n
    • Fix broken canonical redirects
    • \n
    \n

    4.5 – 23rd November 2019

    \n
      \n
    • Add HTTP header feature, with x-robots-tag support
    • \n
    • Move HTTPS setting to new Site page
    • \n
    • Add filter to disable redirect hits
    • \n
    • Add ‘Disable Redirection’ option to stop Redirection, in case you break your site
    • \n
    • Fill out API documentation
    • \n
    • Fix style with WordPress 5.4
    • \n
    • Fix encoding of # in .htaccess
    • \n
    \n

    4.4.2 – 29th September 2019

    \n
      \n
    • Fix missing options for monitor group
    • \n
    • Fix check redirect not appearing if position column not shown
    • \n
    \n

    4.4.1 – 28th September 2019

    \n
      \n
    • Fix search highlighter causing problems with regex characters
    • \n
    • Fix ‘show all’ link not working
    • \n
    • Fix ‘Request URI Too Long’ error when switching pages after creating redirects
    • \n
    \n

    4.4 – 22nd September 2019

    \n
      \n
    • Add ‘URL and language’ match
    • \n
    • Add page display type for configurable information
    • \n
    • Add ‘search by’ to search by different information
    • \n
    • Add filter dropdown to filter data
    • \n
    • Add warning about relative absolute URLs
    • \n
    • Add 451, 500, 501, 502, 503, 504 error codes
    • \n
    • Fix multiple ‘URL and page type’ redirects
    • \n
    • Improve invalid nonce warning
    • \n
    • Encode replaced values in regular expression targets
    • \n
    \n

    4.3.3 – 8th August 2019

    \n

    =
    \n* Add back compatibility fix for URL sanitization

    \n

    4.3.2 – 4th August 2019

    \n

    =
    \n* Fix problem with UTF8 characters in a regex URL
    \n* Fix invalid characters causing an error message
    \n* Fix regex not disabled when removed

    \n

    4.3.1 – 8th June 2019

    \n
      \n
    • Fix + character being removed from source URL
    • \n
    \n

    4.3 – 2nd June 2019

    \n
      \n
    • Add support for UTF8 URLs without manual encoding
    • \n
    • Add manual database install option
    • \n
    • Add check for pipe character in target URL
    • \n
    • Add warning when problems saving .htaccess file
    • \n
    • Switch from ‘x-redirect-agent’ to ‘x-redirect-by’, for WP 5+
    • \n
    • Improve handling of invalid query parameters
    • \n
    • Fix query param name is a number
    • \n
    • Fix redirect with blank target and auto target settings
    • \n
    • Fix monitor trash option applying when deleting a draft
    • \n
    • Fix case insensitivity not applying to query params
    • \n
    • Disable IP grouping when IP option is disabled
    • \n
    • Allow multisite database updates to run when more than 100 sites
    • \n
    \n

    4.2.3 – 16th Apr 2019

    \n
      \n
    • Fix bug with old API routes breaking test
    • \n
    \n

    4.2.2 – 13th Apr 2019

    \n
      \n
    • Improve API checking logic
    • \n
    • Fix ‘1’ being logged for pass-through redirects
    • \n
    \n

    4.2.1 – 8th Apr 2019

    \n
      \n
    • Fix incorrect CSV download link
    • \n
    \n

    4.2 – 6th Apr 2019

    \n
      \n
    • Add auto-complete for target URLs
    • \n
    • Add manual database upgrade
    • \n
    • Add support for semi-colon separated import files
    • \n
    • Add user agent to 404 export
    • \n
    • Add workaround for qTranslate breaking REST API
    • \n
    • Improve API problem detection
    • \n
    • Fix JSON import ignoring group status
    • \n
    \n

    4.1.1 – 23rd Mar 2019

    \n
      \n
    • Remove deprecated PHP
    • \n
    • Fix REST API warning
    • \n
    • Improve WP CLI database output
    • \n
    \n

    4.1 – 16th Mar 2019

    \n
      \n
    • Move 404 export option to import/export page
    • \n
    • Add additional redirect suggestions
    • \n
    • Add import from Rank Math
    • \n
    • Fix ‘force https’ causing WP to redirect to admin URL when accessing www subdomain
    • \n
    • Fix .htaccess import adding ^ to the source
    • \n
    • Fix handling of double-slashed URLs
    • \n
    • Fix WP CLI on single site
    • \n
    • Add DB upgrade to catch URLs with double-slash URLs
    • \n
    • Remove unnecessary escaped slashes from JSON output
    • \n
    \n

    4.0.1 – 2nd Mar 2019

    \n
      \n
    • Improve styling of query flags
    • \n
    • Match DB upgrade for new match_url to creation script
    • \n
    • Fix upgrade on some hosts where plugin is auto-updated
    • \n
    • Fix pagination button style in WP 5.1
    • \n
    • Fix IP match when action is ‘error’
    • \n
    • Fix database upgrade on multisite WP CLI
    • \n
    \n

    4.0 – 23rd Feb 2019

    \n
      \n
    • Add option for case insensitive redirects
    • \n
    • Add option to ignore trailing slashes
    • \n
    • Add option to copy query parameters to target URL
    • \n
    • Add option to ignore query parameters
    • \n
    • Add option to set defaults for case, trailing, and query settings
    • \n
    • Improve upgrade for sites with missing tables
    • \n
    \n

    3.7.3 – 2nd Feb 2019

    \n
      \n
    • Add PHP < 5.4 message on plugins page
    • \n
    • Prevent upgrade message being hidden by other plugins
    • \n
    • Fix warning with regex and no leading slash
    • \n
    • Fix missing display of disabled redirects with a title
    • \n
    • Improve upgrade for sites with a missing IP column
    • \n
    • Improve API detection with plugins that use sessions
    • \n
    • Improve compatibility with ModSecurity
    • \n
    • Improve compatibility with custom API prefix
    • \n
    • Detect site where Redirection was once installed and has settings but no database tables
    • \n
    \n

    3.7.2 – 16th Jan 2019

    \n
      \n
    • Add further partial upgrade detection
    • \n
    • Add fallback for sites with no REST API value
    • \n
    \n

    3.7.1 – 13th Jan 2019

    \n
      \n
    • Clarify database upgrade text
    • \n
    • Fix Firefox problem with multiple URLs
    • \n
    • Fix 3.7 built against wrong dropzone module
    • \n
    • Add DB upgrade detection for people with partial 2.4 sites
    • \n
    \n

    3.7 – 12th Jan 2019

    \n
      \n
    • Add redirect warning for known problem redirects
    • \n
    • Add new database install and upgrade process
    • \n
    • Add database functions to WP CLI
    • \n
    • Add introduction message when first installed
    • \n
    • Drop PHP < 5.4 support. Please use version 3.6.3 if your PHP is too old
    • \n
    • Improve export filename
    • \n
    • Fix IPs appearing for bulk redirect
    • \n
    • Fix disabled redirects appearing in htaccess
    • \n
    \n

    3.6.3 – 14th November 2018

    \n
      \n
    • Remove potential CSRF
    • \n
    \n

    3.6.2 – 10th November 2018

    \n
      \n
    • Add another PHP < 5.4 compat fix
    • \n
    • Fix ‘delete all from 404 log’ when ungrouped deleting all 404s
    • \n
    • Fix IDs shown in bulk add redirect
    • \n
    \n

    3.6.1 – 3rd November 2018

    \n
      \n
    • Add another PHP < 5.4 fix. Sigh
    • \n
    \n

    3.6 – 3rd November 2018

    \n
      \n
    • Add option to ignore 404s
    • \n
    • Add option to block 404s by IP
    • \n
    • Add grouping of 404s by IP and URL
    • \n
    • Add bulk block or redirect a group of 404s
    • \n
    • Add option to redirect on a 404
    • \n
    • Better page navigation change monitoring
    • \n
    • Add URL & IP match
    • \n
    • Add 303 and 304 redirect codes
    • \n
    • Add 400, 403, and 418 (I’m a teapot!) error codes
    • \n
    • Fix server match not supporting regex properly
    • \n
    • Deprecated file pass through removed
    • \n
    • ‘Do nothing’ now stops processing further rules
    • \n
    \n

    3.5 – 23rd September 2018

    \n
      \n
    • Add redirect checker on redirects page
    • \n
    • Fix missing translations
    • \n
    • Restore 4.7 backwards compatibility
    • \n
    • Fix unable to delete server name in server match
    • \n
    • Fix error shown when source URL is blank
    • \n
    \n

    3.4.1 – 9th September 2018

    \n
      \n
    • Fix import of WordPress redirects
    • \n
    • Fix incorrect parsing of URLs with ‘http’ in the path
    • \n
    • Fix ‘force ssl’ not including path
    • \n
    \n

    3.4 – 17th July 2018

    \n
      \n
    • Add a redirect checker
    • \n
    • Fix incorrect host parsing with server match
    • \n
    • Fix PHP warning with CSV import
    • \n
    • Fix old capability check that was missed from 3.0
    • \n
    \n

    3.3.1 – 24th June 2018

    \n
      \n
    • Add a minimum PHP check for people < 5.4
    • \n
    \n

    3.3 – 24th June 2018

    \n
      \n
    • Add user role/capability match
    • \n
    • Add fix for IP blocking plugins
    • \n
    • Add server match to redirect other domains (beta)
    • \n
    • Add a force http to https option (beta)
    • \n
    • Use users locale setting, not site
    • \n
    • Check for mismatched site/home URLs
    • \n
    • Fix WP CLI not clearing logs
    • \n
    • Fix old capability check
    • \n
    • Detect BOM marker in response
    • \n
    • Improve detection of servers that block content-type json
    • \n
    • Fix incorrect encoding of entities in some locale files
    • \n
    • Fix table navigation parameters not affecting subsequent pages
    • \n
    • Fix .htaccess saving after WordPress redirects
    • \n
    • Fix get_plugin_data error
    • \n
    • Fix canonical redirect problem caused by change in WordPress
    • \n
    • Fix situation that prevented rules cascading
    • \n
    \n

    3.2 – 11th February 2018

    \n
      \n
    • Add cookie match – redirect based on a cookie
    • \n
    • Add HTTP header match – redirect based on an HTTP header
    • \n
    • Add custom filter match – redirect based on a custom WordPress filter
    • \n
    • Add detection of REST API redirect, causing ‘fetch error’ on some sites
    • \n
    • Update table responsiveness
    • \n
    • Allow redirects for canonical WordPress URLs
    • \n
    • Fix double include error on some sites
    • \n
    • Fix delete action on some sites
    • \n
    • Fix trailing slash redirect of API on some sites
    • \n
    \n

    3.1.1 – 29th January 2018

    \n
      \n
    • Fix problem fetching data on sites without https
    • \n
    \n

    3.1 – 27th January 2018

    \n
      \n
    • Add alternative REST API routes to help servers that block the API
    • \n
    • Move DELETE API calls to POST, to help servers that block DELETE
    • \n
    • Move API nonce to query param, to help servers that don’t pass HTTP headers
    • \n
    • Improve error messaging
    • \n
    • Preload support page so it can be used when REST API isn’t working
    • \n
    • Fix bug editing Nginx redirects
    • \n
    • Fix import from JSON not setting status
    • \n
    \n

    3.0.1 – 21st Jan 2018

    \n
      \n
    • Don’t show warning if per page setting is greater than max
    • \n
    • Don’t allow WP REST API to be redirected
    • \n
    \n

    3.0 – 20th Jan 2018

    \n
      \n
    • Add support for IPv6
    • \n
    • Add support for disabling or anonymising IP collection
    • \n
    • Add support for monitoring custom post types
    • \n
    • Add support for monitoring from quick edit mode
    • \n
    • Default to last group used when editing
    • \n
    • Permissions changed from ‘administrator’ role to ‘manage_options’ capability
    • \n
    • Swap to WP REST API
    • \n
    • Add new IP map service
    • \n
    • Add new useragent service
    • \n
    • Add ‘add new’ button to redirect page
    • \n
    • Increase ‘title’ length
    • \n
    • Fix position not saving on creation
    • \n
    • Fix log pages not remembering table settings
    • \n
    • Fix incorrect column used for HTTP code when importing CSV
    • \n
    • Add support links from inside the plugin
    • \n
    \n

    2.10.1 – 26th November 2017

    \n
      \n
    • Fix incorrect HTTP code reported in errors
    • \n
    • Improve management page hook usage
    • \n
    \n

    2.10 – 18th November 2017

    \n
      \n
    • Add support for WordPress multisite
    • \n
    • Add new Redirection documentation
    • \n
    • Add extra actions when creating redirects
    • \n
    • Fix user agent dropdown not setting agent
    • \n
    \n

    2.9.2 – 11th November 2017

    \n
      \n
    • Fix regex breaking .htaccess export
    • \n
    • Fix error when saving Error or No action
    • \n
    • Restore sortable table headers
    • \n
    \n

    2.9.1 – 4th November 2017

    \n
      \n
    • Fix const issues with PHP 5
    • \n
    \n

    2.9 – 4th November 2017

    \n
      \n
    • Add option to set redirect cache expiry, default 1 hour
    • \n
    • Add a check for unsupported versions of WordPress
    • \n
    • Add check for database tables before starting the plugin
    • \n
    • Improve JSON import memory usage
    • \n
    • Add importers for: Simple 301 Redirects, SEO Redirection, Safe Redirect Manager, and WordPress old post slugs
    • \n
    • Add responsive admin UI
    • \n
    \n

    2.8.1 – 22nd October 2017

    \n
      \n
    • Fix redirect edit not closing after save
    • \n
    • Fix user agent dropdown not auto-selecting regex
    • \n
    • Fix focus to bottom of page on load
    • \n
    • Improve error message when failing to start
    • \n
    • Fix associated redirect appearing at start of URL, not end
    • \n
    \n

    2.8 – 18th October 2017

    \n
      \n
    • Add a fixer to the support page
    • \n
    • Ignore case for imported files
    • \n
    • Fixes for Safari
    • \n
    • Fix WP CLI importing CSV
    • \n
    • Fix monitor not setting HTTP code
    • \n
    • Improve error, random, and pass-through actions
    • \n
    • Fix bug when saving long title
    • \n
    • Add user agent dropdown to user agent match
    • \n
    • Add pages and trashed posts to monitoring
    • \n
    • Add ‘associated redirect’ option to monitoring, for AMP
    • \n
    • Remove 404 after adding
    • \n
    • Allow search term to apply to deleting logs and 404s
    • \n
    • Deprecate file pass-through, needs to be enabled with REDIRECTION_SUPPORT_PASS_FILE and will be replaced with WP actions
    • \n
    • Further sanitize match data against bad serialization
    • \n
    \n

    2.7.3 – 26th August 2017

    \n
      \n
    • Fix an import regression bug
    • \n
    \n

    2.7.2 – 25th August 2017

    \n
      \n
    • Better IE11 support
    • \n
    • Fix Apache importer
    • \n
    • Show more detailed error messages
    • \n
    • Refactor match code and fix a problem saving referrer & user agent matches
    • \n
    • Fix save button not enabling for certain redirect types
    • \n
    \n

    2.7.1 – 14th August 2017

    \n
      \n
    • Improve display of errors
    • \n
    • Improve handling of CSV
    • \n
    • Reset tables when changing menus
    • \n
    • Change how the page is displayed to reduce change of interference from other plugins
    • \n
    \n

    2.7 – 6th August 2017

    \n
      \n
    • Finish conversion to React
    • \n
    • Add WP CLI support for import/export
    • \n
    • Add a JSON import/export that exports all data
    • \n
    • Edit redirect position
    • \n
    • Apache config moved to options page
    • \n
    • Fix 410 error code
    • \n
    • Fix page limits
    • \n
    • Fix problems with IE/Safari
    • \n
    \n

    2.6.6

    \n
      \n
    • Use React on redirects page
    • \n
    • Use translate.wordpress.org for language files
    • \n
    \n

    2.6.5

    \n
      \n
    • Use React on groups page
    • \n
    \n

    2.6.4

    \n
      \n
    • Add a limit to per page screen options
    • \n
    • Fix warning in referrer match when referrer doesn’t exist
    • \n
    • Fix 404 page showing options
    • \n
    • Fix RSS token not regenerating
    • \n
    • 404 and log filters can now avoid logging
    • \n
    • Use React on modules page
    • \n
    \n

    2.6.3

    \n
      \n
    • Use React on log and 404 pages
    • \n
    • Fix log option not saving ‘never’
    • \n
    • Additional check for auto-redirect from root
    • \n
    • Fix delete plugin button
    • \n
    • Improve IP detection for Cloudflare
    • \n
    \n

    2.6.2

    \n
      \n
    • Set auto_detect_line_endings when importing CSV
    • \n
    • Replace options page with a fancy React version that looks exactly the same
    • \n
    \n

    2.6.1

    \n
      \n
    • Fix CSV export merging everything into one line
    • \n
    • Fix bug with HTTP codes not being imported from CSV
    • \n
    • Add filters for source and target URLs
    • \n
    • Add filters for log and 404s
    • \n
    • Add filters for request data
    • \n
    • Add filter for monitoring post permalinks
    • \n
    • Fix export of 404 and logs
    • \n
    \n

    2.6

    \n
      \n
    • Show example CSV
    • \n
    • Allow regex and redirect code to be set on import
    • \n
    • Fix a bunch of database installation problems
    • \n
    \n

    2.5

    \n
      \n
    • Fix no group created on install
    • \n
    • Fix missing export key on install
    • \n
    • Add 308 HTTP code, props to radenui
    • \n
    • Fix imported URLs set to regex, props to alpipego
    • \n
    • Fix sorting of URLs, props to JordanReiter
    • \n
    • Don’t cache 307s, props to rmarchant
    • \n
    • Abort redirect exit if no redirection happened, props to junc
    • \n
    \n

    2.4.5

    \n
      \n
    • Ensure cleanup code runs even if plugin was updated
    • \n
    • Extra sanitization of Apache & Nginx files, props to Ed Shirey
    • \n
    • Fix regex bug, props to romulodl
    • \n
    • Fix bug in correct group not being shown in dropdown
    • \n
    \n

    2.4.4

    \n
      \n
    • Fix large advanced settings icon
    • \n
    • Add text domain to plugin file, props Bernhard Kau
    • \n
    • Better PHP7 compatibility, props to Ohad Raz
    • \n
    • Better Polylang compatibility, props to imrehg
    • \n
    \n

    2.4.3

    \n
      \n
    • Bump minimum WP to 4.0.0
    • \n
    • Updated German translation, props to Konrad Tadesse
    • \n
    • Additional check when creating redirections in case of bad data
    • \n
    \n

    2.4.2

    \n
      \n
    • Add Gulp task to generate POT file
    • \n
    • Fix a problem with duplicate positions in the redirect table, props to Jon Jensen
    • \n
    • Fix URL monitor not triggering
    • \n
    • Fix CSV export
    • \n
    \n

    2.4.1

    \n
      \n
    • Fix error for people with an unknown module in a group
    • \n
    \n

    2.4

    \n
      \n
    • Reworked modules now no longer stored in database
    • \n
    • Nginx module (experimental)
    • \n
    • View .htaccess/Nginx inline
    • \n
    • Beginnings of some unit tests!
    • \n
    • Fix DB creation on activation, props syntax53
    • \n
    • Updated Japanese locale, props to Naoko
    • \n
    • Remove deprecated like escaping
    • \n
    \n

    2.3.16

    \n
      \n
    • Fix export options not showing for some people
    • \n
    \n

    2.3.15

    \n
      \n
    • Fix error on admin page for WP 4.2
    • \n
    \n

    2.3.14

    \n
      \n
    • Remove error_log statements
    • \n
    • Fix incorrect table name when exporting 404 errors, props to brazenest/synchronos-t
    • \n
    \n

    2.3.13

    \n
      \n
    • Split admin and front-end code out to streamline the loading a bit
    • \n
    • Fix bad groups link when viewing redirects in a group, props to Patrick Fabre
    • \n
    • Improved plugin activation/deactivation and cleanup
    • \n
    • Improved log clearing
    • \n
    \n

    2.3.12

    \n
      \n
    • Persian translation by Danial Hatami
    • \n
    • Fix saving a redirection with login status, referrer, and user agent
    • \n
    • Fix problem where deleting your last group would cause Redirection to only show an error
    • \n
    • Add limits to referrer and destination in the logs
    • \n
    • Redirect title now shows in the main list again. The field is hidden when editing until toggled
    • \n
    • Fix ‘bad nonce’ error, props to Jonathan Harrell
    • \n
    • Remove old WP code
    • \n
    \n

    2.3.11

    \n
      \n
    • Fix log cleanup options
    • \n
    • More space when editing redirects
    • \n
    • Better detection of regex when importing
    • \n
    • Restore export options
    • \n
    • Fix unnecessary protected
    • \n
    \n

    2.3.10

    \n
      \n
    • Another compatibility fix for PHP < 5.3
    • \n
    • Fix incorrect module ID used when creating a group
    • \n
    • Fix .htaccess duplication, props to Jörg Liwa
    • \n
    \n

    2.3.9

    \n
      \n
    • Compatibility fix for PHP < 5.3
    • \n
    \n

    2.3.8

    \n
      \n
    • Fix plugin activation error
    • \n
    • Fix fatal error in table nav, props to spacedmonkey
    • \n
    \n

    2.3.7

    \n
      \n
    • New redirect page to match WP style
    • \n
    • New module page to match WP style
    • \n
    • Configurable permissions via redirection_role filter, props to RodGer-GR
    • \n
    • Fix saving 2 month log period
    • \n
    • Fix importer
    • \n
    • Fix DB creation to check for existing tables
    • \n
    \n

    2.3.6

    \n
      \n
    • Updated Italian translation, props to Raffaello Tesi
    • \n
    • Updated Romanian translation, props to Flo Bejgu
    • \n
    • Simplify logging options
    • \n
    • Fix log deletion by search term
    • \n
    • Export logs and 404s to CSV
    • \n
    \n

    2.3.5

    \n
      \n
    • Default log settings to 7 days, props to Maura
    • \n
    • Updated Danish translation thanks to Mikael Rieck
    • \n
    • Add per-page screen option for log pages
    • \n
    • Remove all the corners
    • \n
    \n

    2.3.4

    \n
      \n
    • Fix escaping of URL in admin page
    • \n
    \n

    2.3.3

    \n
      \n
    • Fix PHP strict, props to Juliette Folmer
    • \n
    • Fix RSS entry date, props to Juliette
    • \n
    • Fix pagination
    • \n
    \n

    2.3.2

    \n
      \n
    • WP 3.5 compatibility
    • \n
    • Fix export
    • \n
    \n

    2.3.0 and earlier

    \n
      \n
    • Remove 404 module and move 404 logs into a separate option
    • \n
    • Clean up log code, using WP_List_Table to power it
    • \n
    • Fix some broken links in admin pages
    • \n
    • Fix order of redirects, thanks to Nicolas Hatier
    • \n
    • Fix XSS in admin menu & referrers log
    • \n
    • Better database compatibility
    • \n
    • Remove warning from VaultPress
    • \n
    • Remove debug from htaccess module
    • \n
    • Fix encoding of JS strings
    • \n
    • Use fgetcsv for CSV importer – better handling
    • \n
    • Allow http as URL parameter
    • \n
    • Props to Ben Noordhuis for a patch
    • \n
    • WordPress 2.9+ only – cleaned up all the old cruft
    • \n
    • Better new-install process
    • \n
    • Upgrades from 1.0 of Redirection no longer supported
    • \n
    • Optimized DB tables
    • \n
    • Change to jQuery
    • \n
    • Nonce protection
    • \n
    • Disable category monitor in 2.7
    • \n
    • Refix log delete
    • \n
    • get_home_path seems not be available for some people
    • \n
    • Update plugin.php to better handle odd directories
    • \n
    • Correct DB install
    • \n
    • Install defaults when no existing redirection setup
    • \n
    • Fix problem with custom post types auto-redirecting (click on ‘groups’ and then ‘modified posts’ and clear any entries for ‘/’ from your list)
    • \n
    • Database optimization
    • \n
    • Add patch to disable logs (thanks to Simon Wheatley!)
    • \n
    • Fix for some users with problems deleting redirections
    • \n
    • Fix group edit and log add entry
    • \n
    • Disable category monitoring
    • \n
    • Fix ‘you do not permissions’ error on some non-English sites
    • \n
    • Fix category change ‘quick edit’
    • \n
    • RSS feed token
    • \n
    \n", "description": "

    Redirection is the most popular redirect manager for WordPress. With it you can easily manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have. This can help reduce errors and improve your site ranking.

    \n

    Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.

    \n

    It has been a WordPress plugin for over 10 years and has been recommended countless times. And it’s free!

    \n

    Full documentation can be found at https://redirection.me

    \n

    Redirection is compatible with PHP from 7.0 to 8.3.

    \n

    Redirect manager

    \n

    Create and manage redirects quickly and easily without needing Apache or Nginx knowledge. If your WordPress supports permalinks then you can use Redirection to redirect any URL.

    \n

    There is full support for regular expressions so you can create redirect patterns to match any number of URLs. You can match query parameters and even pass them through to the target URL.

    \n

    The plugin can also be configured to monitor when post or page permalinks are changed and automatically create a redirect to the new URL.

    \n

    Conditional redirects

    \n

    In addition to straightforward URL matching you can redirect based on other conditions:

    \n
      \n
    • Login status – redirect only if the user is logged in or logged out
    • \n
    • WordPress capability – redirect if the user is able to perform a certain capability
    • \n
    • Browser – redirect if the user is using a certain browser
    • \n
    • Referrer – redirect if the user visited the link from another page
    • \n
    • Cookies – redirect if a particular cookie is set
    • \n
    • HTTP headers – redirect based on a HTTP header
    • \n
    • Custom filter – redirect based on your own WordPress filter
    • \n
    • IP address – redirect if the client IP address matches
    • \n
    • Server – redirect another domain if also hosted on this server
    • \n
    • Page type – redirect if the current page is a 404
    • \n
    \n

    Full logging

    \n

    A configurable logging option allows to view all redirects occurring on your site, including information about the visitor, the browser used, and the referrer. A ‘hit’ count is maintained for each redirect so you can see if a URL is being used.

    \n

    Logs can be exported for external viewing, and can be searched and filtered for more detailed investigation.

    \n

    Display geographic information about an IP address, as well as a full user agent information, to try and understand who the visitor is.

    \n

    You are able to disable or reduce IP collection to meet the legal requirements of your geographic region, and can change the amount of information captured from the bare minimum to HTTP headers.

    \n

    You can also log any redirect happening on your site, including those performed outside of Redirection.

    \n

    Add HTTP headers

    \n

    HTTP headers can be added to redirects or your entire site that help reduce the impact of redirects or help increase security. You can also add your own custom headers.

    \n

    Track 404 errors

    \n

    Redirection will keep track of all 404 errors that occur on your site, allowing you to track down and fix problems.

    \n

    Errors can be grouped to show where you should focus your attention, and can be redirected in bulk.

    \n

    Query parameter handling

    \n

    You can match query parameters exactly, ignore them, and even pass them through to your target.

    \n

    Migrate Permalinks

    \n

    Changed your permalink structure? You can migrate old permalinks simply by entering the old permalink structure. Multiple migrations are supported.

    \n

    Apache & Nginx support

    \n

    By default Redirection will manage all redirects using WordPress. However you can configure it so redirects are automatically saved to a .htaccess file and handled by Apache itself.

    \n

    If you use Nginx then you can export redirects to an Nginx rewrite rules file.

    \n

    Fine-grained permissions

    \n

    Fine-grained permissions are available so you can customise the plugin for different users. This makes it particularly suitable for client sites where you may want to prevent certain actions, and remove functionality.

    \n

    Import & Export

    \n

    The plugin has a fully-featured import and export system and you can:

    \n
      \n
    • Import and export to Apache .htaccess
    • \n
    • Export to Nginx rewrite rules
    • \n
    • Copy redirects between sites using JSON
    • \n
    • Import and export to CSV for viewing in a spreadsheet
    • \n
    • Use WP CLI to automate import and export
    • \n
    \n

    You can also import from the following plugins:

    \n
      \n
    • Simple 301 Redirects
    • \n
    • SEO Redirection
    • \n
    • Safe Redirect Manager
    • \n
    • Rank Math
    • \n
    • WordPress old slug redirects
    • \n
    • Quick Post/Pages redirects
    • \n
    \n

    Search Regex compatible

    \n

    Redirection is compatible with Search Regex, allowing you to bulk update your redirects.

    \n

    Wait, it’s free?

    \n

    Yes, it’s really free. There’s no premium version and no need to pay money to get access to features. This is a dedicated redirect management plugin.

    \n

    Support

    \n

    Please submit bugs, patches, and feature requests to:

    \n

    https://github.com/johngodley/redirection

    \n

    Please submit translations to:

    \n

    https://translate.wordpress.org/projects/wp-plugins/redirection

    \n", "screenshots": "
    1. \"Redirection

      Redirection management interface

    2. \"Adding

      Adding a redirection

    3. \"Redirect

      Redirect logs

    4. \"Import/Export\"

      Import/Export

    5. \"Options\"

      Options

    6. \"Support\"

      Support

    ", "installation": "

    The plugin is simple to install:

    \n
      \n
    1. Download redirection.zip
    2. \n
    3. Unzip
    4. \n
    5. Upload redirection directory to your /wp-content/plugins directory
    6. \n
    7. Go to the plugin management page and enable the plugin
    8. \n
    9. Configure the options from the Tools/Redirection page
    10. \n
    \n

    You can find full details of installing a plugin on the plugin installation page.

    \n

    Full documentation can be found on the Redirection site.

    \n"}, "versions": {"2.4": "https://downloads.wordpress.org/plugin/redirection.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/redirection.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/redirection.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/redirection.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/redirection.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/redirection.2.9.zip", "3.0": "https://downloads.wordpress.org/plugin/redirection.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/redirection.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/redirection.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/redirection.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/redirection.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/redirection.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/redirection.3.6.zip", "3.7": "https://downloads.wordpress.org/plugin/redirection.3.7.zip", "4.0": "https://downloads.wordpress.org/plugin/redirection.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/redirection.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/redirection.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/redirection.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/redirection.4.4.zip", "4.5": "https://downloads.wordpress.org/plugin/redirection.4.5.zip", "4.8": "https://downloads.wordpress.org/plugin/redirection.4.8.zip", "4.9": "https://downloads.wordpress.org/plugin/redirection.4.9.zip", "5.0": "https://downloads.wordpress.org/plugin/redirection.5.0.zip", "5.1": "https://downloads.wordpress.org/plugin/redirection.5.1.zip", "5.2": "https://downloads.wordpress.org/plugin/redirection.5.2.zip", "5.4": "https://downloads.wordpress.org/plugin/redirection.5.4.zip", "2.10": "https://downloads.wordpress.org/plugin/redirection.2.10.zip", "2.2.2": "https://downloads.wordpress.org/plugin/redirection.2.2.2.zip", "2.2.7": "https://downloads.wordpress.org/plugin/redirection.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/redirection.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/redirection.2.2.9.zip", "2.3.2": "https://downloads.wordpress.org/plugin/redirection.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/redirection.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/redirection.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/redirection.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/redirection.2.3.6.zip", "2.3.8": "https://downloads.wordpress.org/plugin/redirection.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/redirection.2.3.9.zip", "2.4.2": "https://downloads.wordpress.org/plugin/redirection.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/redirection.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/redirection.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/redirection.2.4.5.zip", "2.6.1": "https://downloads.wordpress.org/plugin/redirection.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/redirection.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/redirection.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/redirection.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/redirection.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/redirection.2.6.6.zip", "2.7.1": "https://downloads.wordpress.org/plugin/redirection.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/redirection.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/redirection.2.7.3.zip", "2.8.1": "https://downloads.wordpress.org/plugin/redirection.2.8.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/redirection.2.9.2.zip", "3.0.1": "https://downloads.wordpress.org/plugin/redirection.3.0.1.zip", "3.1.1": "https://downloads.wordpress.org/plugin/redirection.3.1.1.zip", "3.2.1": "https://downloads.wordpress.org/plugin/redirection.3.2.1.zip", "3.3.1": "https://downloads.wordpress.org/plugin/redirection.3.3.1.zip", "3.4.1": "https://downloads.wordpress.org/plugin/redirection.3.4.1.zip", "3.6.1": "https://downloads.wordpress.org/plugin/redirection.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/redirection.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/redirection.3.6.3.zip", "3.7.1": "https://downloads.wordpress.org/plugin/redirection.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/redirection.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/redirection.3.7.3.zip", "4.0.1": "https://downloads.wordpress.org/plugin/redirection.4.0.1.zip", "4.1.1": "https://downloads.wordpress.org/plugin/redirection.4.1.1.zip", "4.2.1": "https://downloads.wordpress.org/plugin/redirection.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/redirection.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/redirection.4.2.3.zip", "4.3.1": "https://downloads.wordpress.org/plugin/redirection.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/redirection.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/redirection.4.3.3.zip", "4.4.1": "https://downloads.wordpress.org/plugin/redirection.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/redirection.4.4.2.zip", "4.5.1": "https://downloads.wordpress.org/plugin/redirection.4.5.1.zip", "4.6.2": "https://downloads.wordpress.org/plugin/redirection.4.6.2.zip", "4.7.1": "https://downloads.wordpress.org/plugin/redirection.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/redirection.4.7.2.zip", "4.9.1": "https://downloads.wordpress.org/plugin/redirection.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/redirection.4.9.2.zip", "5.0.1": "https://downloads.wordpress.org/plugin/redirection.5.0.1.zip", "5.1.1": "https://downloads.wordpress.org/plugin/redirection.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/redirection.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/redirection.5.1.3.zip", "5.2.1": "https://downloads.wordpress.org/plugin/redirection.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/redirection.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/redirection.5.2.3.zip", "5.3.0": "https://downloads.wordpress.org/plugin/redirection.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/redirection.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/redirection.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/redirection.5.3.3.zip", "5.3.4": "https://downloads.wordpress.org/plugin/redirection.5.3.4.zip", "5.3.5": "https://downloads.wordpress.org/plugin/redirection.5.3.5.zip", "5.3.6": "https://downloads.wordpress.org/plugin/redirection.5.3.6.zip", "5.3.7": "https://downloads.wordpress.org/plugin/redirection.5.3.7.zip", "5.3.8": "https://downloads.wordpress.org/plugin/redirection.5.3.8.zip", "5.3.9": "https://downloads.wordpress.org/plugin/redirection.5.3.9.zip", "5.4.1": "https://downloads.wordpress.org/plugin/redirection.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/redirection.5.4.2.zip", "5.5.0": "https://downloads.wordpress.org/plugin/redirection.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/redirection.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/redirection.5.5.2.zip", "trunk": "https://downloads.wordpress.org/plugin/redirection.zip", "2.1.29": "https://downloads.wordpress.org/plugin/redirection.2.1.29.zip", "2.10.1": "https://downloads.wordpress.org/plugin/redirection.2.10.1.zip", "2.2.10": "https://downloads.wordpress.org/plugin/redirection.2.2.10.zip", "2.2.11": "https://downloads.wordpress.org/plugin/redirection.2.2.11.zip", "2.2.12": "https://downloads.wordpress.org/plugin/redirection.2.2.12.zip", "2.2.13": "https://downloads.wordpress.org/plugin/redirection.2.2.13.zip", "2.2.14": "https://downloads.wordpress.org/plugin/redirection.2.2.14.zip", "2.3.10": "https://downloads.wordpress.org/plugin/redirection.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/plugin/redirection.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/plugin/redirection.2.3.12.zip", "2.3.13": "https://downloads.wordpress.org/plugin/redirection.2.3.13.zip", "2.3.14": "https://downloads.wordpress.org/plugin/redirection.2.3.14.zip", "2.3.15": "https://downloads.wordpress.org/plugin/redirection.2.3.15.zip", "2.3.16": "https://downloads.wordpress.org/plugin/redirection.2.3.16.zip", "5.3.10": "https://downloads.wordpress.org/plugin/redirection.5.3.10.zip"}, "downloaded": 63120038, "description": "

    Redirection is the most popular redirect manager for WordPress. With it you can easily manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have. This can help reduce errors and improve your site ranking.

    \n

    Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.

    \n

    It has been a WordPress plugin for over 10 years and has been recommended countless times. And it’s free!

    \n

    Full documentation can be found at https://redirection.me

    \n

    Redirection is compatible with PHP from 7.0 to 8.3.

    \n

    Redirect manager

    \n

    Create and manage redirects quickly and easily without needing Apache or Nginx knowledge. If your WordPress supports permalinks then you can use Redirection to redirect any URL.

    \n

    There is full support for regular expressions so you can create redirect patterns to match any number of URLs. You can match query parameters and even pass them through to the target URL.

    \n

    The plugin can also be configured to monitor when post or page permalinks are changed and automatically create a redirect to the new URL.

    \n

    Conditional redirects

    \n

    In addition to straightforward URL matching you can redirect based on other conditions:

    \n
      \n
    • Login status – redirect only if the user is logged in or logged out
    • \n
    • WordPress capability – redirect if the user is able to perform a certain capability
    • \n
    • Browser – redirect if the user is using a certain browser
    • \n
    • Referrer – redirect if the user visited the link from another page
    • \n
    • Cookies – redirect if a particular cookie is set
    • \n
    • HTTP headers – redirect based on a HTTP header
    • \n
    • Custom filter – redirect based on your own WordPress filter
    • \n
    • IP address – redirect if the client IP address matches
    • \n
    • Server – redirect another domain if also hosted on this server
    • \n
    • Page type – redirect if the current page is a 404
    • \n
    \n

    Full logging

    \n

    A configurable logging option allows to view all redirects occurring on your site, including information about the visitor, the browser used, and the referrer. A ‘hit’ count is maintained for each redirect so you can see if a URL is being used.

    \n

    Logs can be exported for external viewing, and can be searched and filtered for more detailed investigation.

    \n

    Display geographic information about an IP address, as well as a full user agent information, to try and understand who the visitor is.

    \n

    You are able to disable or reduce IP collection to meet the legal requirements of your geographic region, and can change the amount of information captured from the bare minimum to HTTP headers.

    \n

    You can also log any redirect happening on your site, including those performed outside of Redirection.

    \n

    Add HTTP headers

    \n

    HTTP headers can be added to redirects or your entire site that help reduce the impact of redirects or help increase security. You can also add your own custom headers.

    \n

    Track 404 errors

    \n

    Redirection will keep track of all 404 errors that occur on your site, allowing you to track down and fix problems.

    \n

    Errors can be grouped to show where you should focus your attention, and can be redirected in bulk.

    \n

    Query parameter handling

    \n

    You can match query parameters exactly, ignore them, and even pass them through to your target.

    \n

    Migrate Permalinks

    \n

    Changed your permalink structure? You can migrate old permalinks simply by entering the old permalink structure. Multiple migrations are supported.

    \n

    Apache & Nginx support

    \n

    By default Redirection will manage all redirects using WordPress. However you can configure it so redirects are automatically saved to a .htaccess file and handled by Apache itself.

    \n

    If you use Nginx then you can export redirects to an Nginx rewrite rules file.

    \n

    Fine-grained permissions

    \n

    Fine-grained permissions are available so you can customise the plugin for different users. This makes it particularly suitable for client sites where you may want to prevent certain actions, and remove functionality.

    \n

    Import & Export

    \n

    The plugin has a fully-featured import and export system and you can:

    \n
      \n
    • Import and export to Apache .htaccess
    • \n
    • Export to Nginx rewrite rules
    • \n
    • Copy redirects between sites using JSON
    • \n
    • Import and export to CSV for viewing in a spreadsheet
    • \n
    • Use WP CLI to automate import and export
    • \n
    \n

    You can also import from the following plugins:

    \n
      \n
    • Simple 301 Redirects
    • \n
    • SEO Redirection
    • \n
    • Safe Redirect Manager
    • \n
    • Rank Math
    • \n
    • WordPress old slug redirects
    • \n
    • Quick Post/Pages redirects
    • \n
    \n

    Search Regex compatible

    \n

    Redirection is compatible with Search Regex, allowing you to bulk update your redirects.

    \n

    Wait, it’s free?

    \n

    Yes, it’s really free. There’s no premium version and no need to pay money to get access to features. This is a dedicated redirect management plugin.

    \n

    Support

    \n

    Please submit bugs, patches, and feature requests to:

    \n

    https://github.com/johngodley/redirection

    \n

    Please submit translations to:

    \n

    https://translate.wordpress.org/projects/wp-plugins/redirection

    \n", "donate_link": "https://redirection.me/donation/", "num_ratings": 678, "screenshots": {"1": {"src": "https://ps.w.org/redirection/assets/screenshot-1.png?rev=1764489", "caption": "Redirection management interface"}, "2": {"src": "https://ps.w.org/redirection/assets/screenshot-2.png?rev=1764495", "caption": "Adding a redirection"}, "3": {"src": "https://ps.w.org/redirection/assets/screenshot-3.png?rev=1764491", "caption": "Redirect logs"}, "4": {"src": "https://ps.w.org/redirection/assets/screenshot-4.png?rev=1764495", "caption": "Import/Export"}, "5": {"src": "https://ps.w.org/redirection/assets/screenshot-5.png?rev=1764493", "caption": "Options"}, "6": {"src": "https://ps.w.org/redirection/assets/screenshot-6.png?rev=1764494", "caption": "Support"}}, "support_url": "https://wordpress.org/support/plugin/redirection/", "contributors": {"johnny5": {"avatar": "https://secure.gravatar.com/avatar/489200106549666999cfd2e767e114a5700085fed374629275bc5b62172047e0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/johnny5/", "display_name": "John Godley"}}, "last_updated": "2025-04-26 11:57am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/redirection.5.5.2.zip", "author_profile": "https://profiles.wordpress.org/johnny5/", "business_model": false, "repository_url": "", "upgrade_notice": {"3.0": "
      \n
    • Upgrades the database to support IPv6. Please backup your data and visit the Redirection settings to perform the upgrade
    • \n
    • Switches to the WordPress REST API
    • \n
    • Permissions changed from 'administrator' role to 'manage_options' capability
    • \n
    ", "3.7": "
      \n
    • Requires minimum PHP 5.4. Do not upgrade if you are still using PHP < 5.4
    • \n
    ", "4.0": "
      \n
    • Alters database to support case insensitivity, trailing slashes, and query params. Please backup your data
    • \n
    ", "4.7": "
      \n
    • Requires minimum PHP 5.6+. Do not upgrade if you are still using PHP < 5.6
    • \n
    ", "4.9": "
      \n
    • Alters database to support enhanced logging. Please backup your data
    • \n
    ", "5.4": "
      \n
    • You may need to configure the IP header option if using a proxy
    • \n
    ", "3.6.1": "
      \n
    • Note Redirection will not work with PHP < 5.4 after 3.6 - please upgrade your PHP
    • \n
    "}, "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f9df-7307-8231-ad9bbb54b22e", "name": "Redirection", "slug": "redirection", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1745668620, "version": "5.5.2"}, "support_threads": 18, "requires_plugins": [], "short_description": "Manage 301 redirects, track 404 errors, and improve your site. No knowledge of Apache or Nginx required.", "author_block_count": 0, "author_block_rating": 88, "commercial_support_url": "", "support_threads_resolved": 3}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1d62-70eb-a673-c8e6a322a9ef', 'did:web:api.aspiredev.org:packages:wp-plugin:redux-framework', 'redux-framework', 'Redux Framework', '

    Redux was built by developers for developers. We save you months if not years in your development time. Everything we do is to help innovation in the industry.

    -

    ♥️ What the Plugin does?

    -

    Redux is a simple, genuinely extensible, and fully responsive options framework for WordPress themes and plugins. Built on the WordPress Settings API; Redux supports many field types, custom error handling, custom fields & validation types, and import/export functionality.

    -

    But what does Redux actually DO? We don’t believe that theme and plugin developers should have to reinvent the wheel every time they start work on a project. Redux simplifies the development cycle by providing a streamlined, extensible framework for developers to build on. Through a simple, well-documented config file, third-party developers can build out an options panel limited only by their imagination in a fraction of the time it would take to build from the ground up!

    -

    🚀 What fields does Redux offer?

    -
      -
    • Accordion
    • -
    • ACE Editor
    • -
    • Background
    • -
    • Border
    • -
    • Box Shadow
    • -
    • Button Set
    • -
    • Checkbox / Multi-Check
    • -
    • Color (WordPress Native)
    • -
    • Color Gradient
    • -
    • Color Palette
    • -
    • Color RGBA
    • -
    • Color Scheme
    • -
    • Content
    • -
    • Custom Fonts
    • -
    • Customizer
    • -
    • Date
    • -
    • Date/Time
    • -
    • Dimensions (Height/Width)
    • -
    • Divide (Divider)
    • -
    • Editor (WordPress Native)
    • -
    • Gallery (WordPress Native)
    • -
    • Google Maps
    • -
    • Icon Select
    • -
    • Image Select (Patterns/Presets)
    • -
    • Import/Export
    • -
    • Info (Header/Notice)
    • -
    • JS Button
    • -
    • Link Color
    • -
    • Media (WordPress Native)
    • -
    • Metaboxes
    • -
    • Multi Media
    • -
    • Multi-Text
    • -
    • Palette
    • -
    • Password
    • -
    • Radio (w/ WordPress Data)
    • -
    • Raw (HTML/PHP/MarkDown)
    • -
    • Repeater
    • -
    • Section (Indent and Group Fields)
    • -
    • Select (Select/Multi-Select w/ Select2 & WordPress Data)
    • -
    • Select Image
    • -
    • Slider (Drag a Handle)
    • -
    • Slides (Multiple Images, Titles, and Descriptions)
    • -
    • Social Profiles
    • -
    • Sortable (Drag/Drop Checkbox/Input Fields)
    • -
    • Sorter (Drag/Drop Manager – Works great for content blocks)
    • -
    • Spacing (Margin/Padding/Absolute)
    • -
    • Spinner
    • -
    • Switch
    • -
    • Tabbed
    • -
    • Taxonomy Metaboxes
    • -
    • Text
    • -
    • Textarea
    • -
    • Typography
    • -
    • User Profile Metaboxes
    • -

      * The most advanced typography module complete with preview, Google fonts, and auto-css output!

      -
    • User Profile Metaboxes
    • -
    • Widget Areas (Classic Widgets only)
    • -
    -

    🎉Additional Features

    -
      -
    • Full value escaping
    • -
    • Required – Link visibility from parent fields. Set this to affect the visibility of the field on the parent’s value. Fully nested with multiple required parents possible.
    • -
    • Output CSS Automatically – Redux generates CSS and the appropriate Google Fonts stylesheets for you on select fields. You need to only specify the CSS selector to apply the CSS to (limited to certain fields).
    • -
    • Compiler integration! A custom hook runs when any fields with the argument `compile => true` are changed.
    • -
    • Field validation and sanitization
    • -
    • Field and section disabling
    • -
    • Oh, and did we mention a fully integrated Google Fonts setup that will make you so happy you’ll want to cry?
    • -
    -

    👍 BE A CONTRIBUTOR

    -

    If you want to help with translations, go to the Translation Portal at translate.wordpress.org.

    -

    You can also contribute code via our GitHub Repository. Be sure to use our develop branch to submit pull requests.

    -

    📝 Documentation and Support

    -
      -
    • We have extremely extensive docs. Please visit [https://devs.redux.io/](https://devs.redux.io). If that doesn’t solve your issue, search [the issue tracker on GitHub](https://github.com/reduxframework/redux-framework/issues). If you can’t locate any topics that pertain to your particular problem, [post a new issue](https://github.com/reduxframework/redux-framework/issues/new) for it. Before you submit an issue, please read [our contributing requirements](https://github.com/redux-framework/redux-framework/blob/master/CONTRIBUTING.md). We build on the dev version and push it to WordPress.org when we confirm Redux is stable and ready for release.
    • -
    • If you have additional questions, reach out to us at support@redux.io
    • -
    -

    ⚡ Like the Redux Plugin?

    - -

    🔐 Privacy

    -

    Redux does not interact with end users on your website. If a product is using Redux, the option panel will cease to function without Redux.

    -

    For more details on our privacy policy: https://redux.io/privacy
    -For more details on our terms and conditions: https://redux.io/terms

    -

    NOTE: Redux is not intended to be used on its own. It requires a config file provided by a third-party theme or plugin developer to actually do anything cool!

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Redux Framework", "slug": "redux-framework", "tags": {"admin": "admin", "options": "options", "theme-options": "theme options", "plugin-options": "plugin options", "options-framework": "options framework"}, "added": "2013-10-24", "icons": {"1x": "https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347", "svg": "https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347"}, "author": "David Anderson / Team Updraft", "rating": 88, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2889347", "high": false}, "ratings": {"1": 35, "2": 5, "3": 2, "4": 6, "5": 224}, "version": "4.5.8", "homepage": "https://wordpress.org/plugins/redux-framework", "requires": "5.0", "sections": {"faq": "\n
    \nWhy doesn’t this plugin do anything?\n\n

    \n

    Redux is an option framework… in other words, it’s not designed to do anything on its own! You can, however, activate a demo mode to see how it works.

    \n

    \n
    \nHow can I learn more about Redux?\n\n

    \n

    Visit our website at https://redux.io/

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Irina (irinashl) on August 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent and useful plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Translation Issue

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy masoud4x4 (masoud2018) on April 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    \n\n\n\n

    Hi Redux Framework team,
    I’m using Redux Framework for my theme (Liberty), but I’m really frustrated with its translation support, especially after WordPress 6.7 and later updates (I’m on 6.8). My theme’s primary text domain is liberty, but for Redux settings, I’ve used a separate text domain (liberty-settings) to avoid conflicts and gain more flexibility. However, Redux fails to apply translations for its sections and fields (e.g., \"General Settings\" or a test string in $args[''footer_credit'']), even though the strings are translated in the liberty-settings-fa_IR.po file. This inconsistency between WordPress’s translation system (which works fine for my theme’s liberty text domain) and Redux’s handling is a major drawback. The _load_textdomain_just_in_time error introduced since WordPress 6.7 only makes it worse. I’ve posted a detailed explanation in the support forum—hoping for a fix! Please prioritize improving Redux’s translation compatibility in future updates. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good framework

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy erictyl on November 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A good framework.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Highly Appreciate

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anil Chandra Robidas (anilkumer) on November 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks for great plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Insane!! Advanced Features given for free. Wow

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sone234 on September 10, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The theme is so great. I love these guys at Redux Framework, their eye is not on making money because most advanced features which are usually available on premium themes, Listingpro made them available for free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Redux Framework Slowed Down My Site - Not Recommended for Travelista Theme

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy abdulj89 on August 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using the Redux Framework as it was recommended for the Travelista theme on my WordPress site. However, my experience with this framework has been far from satisfactory due to its significant impact on site performance.

    \n\n\n\n
      \n
    1. Performance Issues: Unfortunately, the benefits of using Redux are heavily outweighed by the severe performance issues it has caused. Since installing Redux, I’ve noticed a substantial slowdown in my site’s loading times. This is particularly problematic where speed and user experience are crucial. My page load times have increased significantly, which negatively affects user experience.

      If you''re using the Travelista theme or any theme that recommends Redux, I would advise caution. While Redux may offer robust customization options, the cost to site performance is too high. In a time when speed and performance are critical, using a framework that slows down your site can have detrimental effects. I hope the developers prioritize optimizing Redux for better performance in future updates.
    2. \n
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Hot Mess

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rosiesamerica on August 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Absolutely a HOT MESS came up with errors immediately as soon a we disabled it the site went back to a normal appearance.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    lovely theme

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy SITE WEB PRO DESIGN (yme45) on June 28, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great Theme – Functional

    \n\n\n\n

    Thanks for this !
    recommendation earned 

    \n\n\n\n

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy webredox on March 22, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great support.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ok

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kiwioa (wvpalarao91) on November 27, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    an okay

    \n
    \n
    \n", "changelog": "

    = 4.5.8
    \n* Fix: Reported XSS vulnerability in the shortcode extension.
    \n* Fix: #4074 – Gallery field won’t load on screen refresh.
    \n* Fix: Prevent fatal error for improperly coded CPTs with metaboxes.
    \n* Added: New global arg custom_fonts to enable or disable the extension.
    \n* Added: New global arg widget_area to enable or disable the extension.
    \n* Added: social_profiles now support an argument for FA 6 classnames.
    \n* Improved: Callback validation for data fetching. Thanks @afonsolpjr
    \n* Release date: October 01, 2025

    \n

    4.5.7

    \n
      \n
    • Fixed: Bullet-proofed some global args when omitted from the config.
    • \n
    • Fixed: PHP 8.4 deprecation notices.
    • \n
    • Fixed: The Options constructor now filters out blank strings, causing fatal errors. Options must always be in an array.
    • \n
    • Fixed: gallery field errors on failed demo imports not installing images into the WP gallery.
    • \n
    • Release date: March 26, 2025
    • \n
    \n

    4.5.6

    \n
      \n
    • Fixed: Setting CHMOD defaults in construct to avoid errors in certain use cases.
    • \n
    • Fixed: Installed empty placeholder for old search extension as WP did not remove it from old versions to updates, thus causing errors.
    • \n
    • Fixed: raw field in sample-config.php trigger WP filesystem error when FS_METHOD set to FTP_EXT and creds are not entered.
    • \n
    • Fixed: Sorter not saving in customizer.
    • \n
    • Fixed: users metabox not saving on some setups.
    • \n
    • Fixed: Disable search bar on user profile and taxonomy metaboxes.
    • \n
    • Updated: Font Awesome 6.7.2
    • \n
    • Modified: custom_fonts now enqueues local font CSS with a version resource of last modified file time and not current time.
    • \n
    • Modified: Will pass mandatory PCP checks.
    • \n
    • Release date: January 20, 2025
    • \n
    \n

    4.5.4

    \n
      \n
    • Fixed: Filesystem class $creds not accepting bool value.
    • \n
    • Fixed: #4045: Old search extension throwing class not found error.
    • \n
    • Fixed: accordion extension throwing Type of Redux_Extension_Accordion::$version must be string error.
    • \n
    • Fixed: color_scheme typed property must not be accessed before initialization.
    • \n
    • Release date: December 16, 2024
    • \n
    \n

    4.5.3

    \n
      \n
    • Removed: Deprecation notice for $filesystem. Too many people think it’s an error. We’ll have to support old Redux 3 code for the foreseeable future.
    • \n
    • Release date: December 5, 2024
    • \n
    \n

    4.5.2

    \n
      \n
    • Fixed: New global filesystem access broke old methods used on old extensions. Deprecation notice added.
    • \n
    • Release date: December 5, 2024
    • \n
    \n

    4.5.1

    \n
      \n
    • Updated: Font Awesome 6.7.1
    • \n
    • Fixed: Options Search bar rendering multiple time on customizer UI.
    • \n
    • Fixed: Changed typesafe declarations to transient variables from array to mixed to prevent fatal errors.
    • \n
    • Fixed: color_scheme and social_profiles giving cannot assign null to array errors when fields not in use.
    • \n
    • Fixed: JavaScript errors in regard to TinyMCE when not loaded via editor field.
    • \n
    • Fixed: repeater “Add” button failing when no editor field was loaded.
    • \n
    • Fixed: WP 6.7 broke Redux menus in customizer.
    • \n
    • Fixed: “Reset Section” resetting everything to blank or zero.
    • \n
    • Fixed: Float loses precision in color_rgba when show_default is set to true. Thanks @andrejarh
    • \n
    • Fixed: multi_media field not saving or retaining data in customizer.
    • \n
    • Modified: Customizer HTML output to support WordPress installations prior to version 6.7.
    • \n
    • Modified: Option panel search bar moved to core (previously an extension).
    • \n
    • Modified: Allow null assignments to core variable to prevent fatal errors when devs disable Google Fonts.
    • \n
    • Added null to multiple typesafe declarations.
    • \n
    • Added: CSS output added to slider field.
    • \n
    • Added: Minimum PHP 7.4 warning message to admin screen to prevent fatal errors. Some people are, apparently, still using outdated PHP.
    • \n
    • Release date: December 4, 2024
    • \n
    \n

    4.5.0

    \n
      \n
    • Changed: Minimum PHP version now 7.4.
    • \n
    • Fixed: Datetime wasn’t escaping some translations and domain was incorrect.
    • \n
    • Fixed: required functionality in taxonomy and users.
    • \n
    • Fixed: repeater not rendering inside taxonomy metaboxes.
    • \n
    • Fixed: repeater not saving inside users metaboxes.
    • \n
    • Fixed: Metaboxes page_template feature not showing/hiding properly under Gutenberg due to class name change.
    • \n
    • Fixed: #4023 – google_maps instances bleeding over from previous issue.
    • \n
    • Fixed: google_maps deprecation notice regarding map markers.
    • \n
    • Fixed: repeater in taxonomy and user metaboxes.
    • \n
    • Fixed: Unnecessary loading of default data on load (unless metaboxes are in use).
    • \n
    • Fixed: editor and checkbox fields not saving in tabbed field.
    • \n
    • Fixed: custom_fonts not saving uploaded font on conversion failure.
    • \n
    • Fixed: #4009 – Google Font update issue resolved.
    • \n
    • Fixed: #4011 – editor in repeater field not saving.
    • \n
    • Fixed: editor in added repeater fields not properly initializing.
    • \n
    • Fixed: #4008 – Font conversion failure fallback.
    • \n
    • Fixed: Replaced validate_values deprecation in taxonomy metabox.
    • \n
    • Updated: Deprecated JavaScript in all the Metabox extensions.
    • \n
    • Updated: JavaScript for jQuery 4.0 release.
    • \n
    • Release date: October 28, 2024
    • \n
    \n

    4.4.18

    \n
      \n
    • Fixed: #4006: XSS fix in ‘color_scheme’ import.
    • \n
    • Updated: Font Awesome 6.6.0
    • \n
    • Release date: July 19, 2024
    • \n
    \n

    4.4.17

    \n
      \n
    • Fixed: social_profiles in customizer.
    • \n
    • Fixed: Section divide returning null, which caused a PHP warning.
    • \n
    • Fixed: Undefined index in tabbed when resetting settings.
    • \n
    • Release date: May 23, 2024
    • \n
    \n

    4.4.16

    \n
      \n
    • Modified: Temporarily disable social_profiles and color_scheme from customizer. They don’t work.
    • \n
    • Removed: Finished removing Redux Pro support.
    • \n
    • Removed: Extendify plugin banner at first launch.
    • \n
    • Updated: Font Awesome 6.5.2
    • \n
    • Release date: April 27, 2024
    • \n
    \n

    4.4.15

    \n
      \n
    • Fixed: spacing, dimension, and border fields not saving changed values.
    • \n
    • Fixed: switch and button_set not saving within tabbed interface.
    • \n
    • Release date: March 22, 2024
    • \n
    \n

    4.4.14

    \n
      \n
    • Fixed: “No Field ID is set” message causing jumbled backend layout.
    • \n
    • New: Content Field https://devs.redux.io/core-fields/content.html
    • \n
    • Updated: Bring inputs up to W3C standards.
    • \n
    • Updated: First round of PHP 8.3 compatibility.
    • \n
    • Release date: March 14, 2024
    • \n
    \n

    4.4.13

    \n
      \n
    • Fixed: color_scheme crashing WordPress with ‘critical error’ for users still using PHP 7.1.
    • \n
    • Added: Filter to disable Google Font updates: \"redux/{opt_name}/field/typography/google_font_update\". Return false to disable.
    • \n
    • Added: WordPress 6.5 compatibility.
    • \n
    • Release date: February 13, 2024
    • \n
    \n

    4.4.12

    \n
      \n
    • New: Color Schemes Extension https://devs.redux.io/core-extensions/color-schemes.html
    • \n
    • Fixed: PHP Error when color_scheme data doesn’t exist.
    • \n
    • Fixed: custom_fonts not importing original font on conversion failure.
    • \n
    • Fixed: Remove debug info from JS. FA version change.
    • \n
    • Fixed: #3988 – Warning/error count displayed NaN on color field validation.
    • \n
    • Fixed: Erroneous error in color_scheme when saved scheme array was blank (string).
    • \n
    • Fixed: Color schemes would not switch via select box after saving a new scheme.
    • \n
    • Fixed: typography sunset dropdown not rendering select2 styling.
    • \n
    • Fixed: Efficiency for extension loading improved.
    • \n
    • Removed: Redux Pro support. It’s no longer required as all Pro features are now part of Redux.
    • \n
    • Release date: February 12, 2024
    • \n
    \n

    4.4.11

    \n
      \n
    • Fixed: Cosmetic box_shadow fix.
    • \n
    • Fixed: Required not hiding linked fields in customizer.
    • \n
    • Fixed: tabbed and repeater fields not resetting when using Section Reset.
    • \n
    • Fixed: #3983 – Continued damage done by WP Filesystem PR
    • \n
    • Updated: Font Awesome 6.5.1
    • \n
    • Release date: December 18, 2023
    • \n
    \n

    4.4.10

    \n
      \n
    • New: Tabbed Extension https://devs.redux.io/core-extensions/tabbed.html
    • \n
    • Modified: Typography preview background will shift to black when lighter font colors are selected. Thanks, @herculesdesign
    • \n
    • Modified: Additional rollback changes made to the filesystem class causing false file permission issue messages.
    • \n
    • Fixed: Errant spaces in ACE Editor field.
    • \n
    • Fixed: Array check in color validation to avoid errors. It works ONLY with the color field. Nothing else.
    • \n
    • Improved: Filesystem killswitch logic.
    • \n
    • Release date: December 05, 2023
    • \n
    \n

    4.4.9

    \n
      \n
    • Modified: Rollback changes made to the filesystem class causing false file permission issue messages.
    • \n
    • Release date: October 26, 2023
    • \n
    \n

    4.4.8

    \n
      \n
    • Modified: Additional safeguards against read-only filesystems. Thanks @cezarpopa-cognita.
    • \n
    • Fixed: #3970 – Added is_string check to WordPress data callback argument.
    • \n
    • Removed: Unused code for Support Ticket Submission feature that was never finished.
    • \n
    • Fixed: Removed extra spaces from textarea.
    • \n
    • Added: WordPress 6.4 compatibility.
    • \n
    • Release date: October 17, 2023
    • \n
    \n

    4.4.7

    \n
      \n
    • Removed: CDN vendor support for ace_editor. Devs won’t update their code, leaving us no choice. Use the redux/<opt_name>/fields/ace/script filter to enqueue a local ACE Editor script if needed.
    • \n
    • Fixed: Redux template PHP not autoloading.
    • \n
    • Release date: September 14, 2023
    • \n
    \n

    4.4.6

    \n
      \n
    • New: Global arg fontawesome_frontend to enqueue the internal Font Awesome CSS on the front end.
    • \n
    • New: Taxonomy Metaboxes Extension https://devs.redux.io/core-extensions/taxonomy.html
    • \n
    • Fixed: Font Awesome not enqueueing on the frontend for social_profiles field.
    • \n
    • Fixed: HTML Output for User Profile Metaboxes.
    • \n
    • Fixed: Admin panel CSS.
    • \n
    • Fixed: Adjusted translation for Google Font update message.
    • \n
    • Fixed: Continuing effort to combat old CDN code because some devs aren’t updating their code.
    • \n
    • Fixed: REDUX_PLUGIN_FILE failed with embedded installed. WE NO LONGER SUPPORT EMBEDDED. IT’S FOR LEGACY INSTALLS ONLY.
    • \n
    • Release date: September 13, 2023
    • \n
    \n

    4.4.5

    \n
      \n
    • Fixed: Redux catches error when Google Fonts JSON cannot be read/written due to server misconfiguration.
    • \n
    • Fixed: Output HTML in the admin panel now complies with W3C standards.
    • \n
    • Fixed: typography letter-spacing and word-spacing stuck on zero value.
    • \n
    • Fixed: Field classes were disregarded when using hidden or disable arguments.
    • \n
    • Fixed: Added class alias for the old version of Redux Vendor Support so Redux doesn’t crash.
    • \n
    • Fixed: Added additional shim to fix Vendor Support code embedded by themes that are doing it incorrectly.
    • \n
    • Fixed: Add wp-util dependency to icon_select since, in some cases, WordPress does not.
    • \n
    • Added: Error trapping for panel template loading for missing or unreadable files to avoid crashing the site.
    • \n
    • Updated: Default Google Fonts.
    • \n
    • Updated: Font Awesome 6.4.2
    • \n
    • Release date: August 07, 2023
    • \n
    \n

    4.4.4

    \n
      \n
    • Fixed: Revert redux-admin CSS handle to previous handle.
    • \n
    • Fixed: color_rgba field not rendering properly due to misspelled CSS enqueue handle.
    • \n
    • Fixed: jQuery deprecation notices in typography JavaScript.
    • \n
    • Fixed: Error in connection banner on first-time activation.
    • \n
    • Fixed: Missing redux-banner-admin.min.js file.
    • \n
    • Fixed: Added extra check for the existence of the function name with callbacks. Some themes are not doing it correctly and crashing WordPress.
    • \n
    • Release date: July 02, 2023
    • \n
    \n

    4.4.3

    \n
      \n
    • Fixed: Typo in JavaScript enqueue handle broke typography and slider fields.
    • \n
    • Release date: June 29, 2023
    • \n
    \n

    4.4.2

    \n
      \n
    • New: Icon Select Extension. Please review notes in README.md. https://devs.redux.io/core-extensions/icon-select.html
    • \n
    • Added: init_empty argument for repeater field.
    • \n
    • Added: Class alias for customizer extension for Redux 3.x backward compatibility.
    • \n
    • Modified: Unused code cleanup.
    • \n
    • Modified: Moved font-display to Google font API enqueue and out of output CSS string.
    • \n
    • Updated: Default Google font list.
    • \n
    • Updated: ACE Editor 1.23.0
    • \n
    • Fixed: jQuery deprecation notices in typography field.
    • \n
    • Fixed: Special characters validation not catching special characters.
    • \n
    • Fixed: Validation routines not working complete with multiple metaboxes
    • \n
    • Improved: Redux no longer enqueues resources for each field instance.
    • \n
    • Release date: June 29, 2023
    • \n
    \n

    4.4.1

    \n
      \n
    • New: User Metaboxes Extensions https://devs.redux.io/core-extensions/user-metaboxes.html
    • \n
    • Fixed: Multiple multi_media fields in the same section not respecting max_upload_count.
    • \n
    • Fixed: Glitch in validation causing color pickers to fail in rare use case.
    • \n
    • Fixed: Google Maps JavaScript.
    • \n
    • Updated: Minimum WordPress version to 5.0
    • \n
    • Release date: April 26, 2023
    • \n
    \n

    4.4.0

    \n
      \n
    • Fixed: Invalid argument error inside custom_fonts on certain setups.
    • \n
    • Fixed: Deprecated Google Map API broke google_maps extension.
    • \n
    • Removed: Extendify Template Library
    • \n
    • Added: Connection banner to display Extendify removal notice with a plugin download option.
    • \n
    • Release date: March 29, 2023
    • \n
    \n

    4.3.26

    \n
      \n
    • Modified: Empty custom_font list no longer creates empty fonts.css file.
    • \n
    • Release date: February 02, 2023
    • \n
    \n

    4.3.25

    \n
      \n
    • Modified: Reworked directory enumeration for custom_fonts to avoid potential fatal errors.
    • \n
    \n

    4.3.24

    \n
      \n
    • Additional work to make custom_fonts override old standalone extension version.
    • \n
    • Release date: January 20, 2023
    • \n
    \n

    4.3.23

    \n
      \n
    • Tweaked Custom Fonts extension to avoid conflicts with the older standalone extension.
    • \n
    • Update: Extendify Library 1.2.4
    • \n
    • Release date: January 20, 2023
    • \n
    \n

    4.3.22

    \n
      \n
    • Added: Custom Fonts extension https://devs.redux.io/core-extensions/google-maps.html
    • \n
    • Fixed: Metaboxes post_format selections not responding to clicks when Gutenberg is active due to class name changes.
    • \n
    • Fixed: Custom font data added via filter would trigger a warning if not an array.
    • \n
    • Update: Extendify Library 1.2.3
    • \n
    • Release date: January 19, 2023
    • \n
    \n

    4.3.21

    \n
      \n
    • Added: Google Maps extension.
    • \n
    • Fixed: Widget area UI improperly aligned when dev_mode set to false.
    • \n
    • Fixed: spinner field not outputting output data.
    • \n
    • Fixed: Metaboxes CSS causing layout issues when dev_mode set to false.
    • \n
    • Update: Extendify Library 1.2.1
    • \n
    • Update: Font Awesome 6.2.1
    • \n
    • Release date: December 05, 2022
    • \n
    \n

    4.3.20

    \n
      \n
    • Added: Widget Areas extension (for use with Classic Widgets only).
    • \n
    • Fixed: spinner field returning JavaScript error.
    • \n
    • Fixed: required not working outside a repeater when repeater field is loaded somewhere in the project.
    • \n
    • Fixed: JS error when typography font-style set to false.
    • \n
    • Updated: Removed registration verbiage from Google Fonts update notice.
    • \n
    • Updated: Extendify Library 1.0.1
    • \n
    • Release date: November 2, 2022
    • \n
    \n

    4.3.19

    \n
      \n
    • Fixed: Extendify menu item appearing when it should not.
    • \n
    • Fixed: Blank page template would cause a fatal error.
    • \n
    • Release date: September 30, 2022
    • \n
    \n

    4.3.18

    \n
      \n
    • New: Typography weights argument to override standard default weights.
    • \n
    • Updated Extendify Library 0.10.2
    • \n
    • Updated: Font Awesome 6.2.0
    • \n
    • Modified: Attempt to override old theme embedded extensions that use the 3.x loading method.
    • \n
    • Fixed: Social Profiles in metaboxes, hopefully.
    • \n
    • Fixed: slides field not showing image upon select. Thanks, @animeiswrong
    • \n
    • Removed: Social Profiles Widget (use the shortcode in HTML widget instead. See docs).
    • \n
    • Removed: Redux template library (use Extendify template library instead).
    • \n
    • Removed: Appsero registration for Redux Pro.
    • \n
    • Modified: Cleanup of old or outdated code.
    • \n
    • Release date: September 26, 2022
    • \n
    \n

    4.3.17

    \n\n

    4.3.16

    \n\n

    4.3.15

    \n\n

    4.3.14

    \n
      \n
    • New: typography field supports individual unit types for subfields that support them (font-size, line-height, etc.) See: https://devs.redux.io/core-fields/typography.html
    • \n
    • Fixed: Redux installed via TGMPA failing with “This plugin does not have a valid header.”
    • \n
    • Updated: Extendify Library.
    • \n
    • Release date: May 19, 2022
    • \n
    \n

    4.3.13

    \n
      \n
    • Fixed: Work for required functionality within the repeater field.
    • \n
    • Fixed: Filter out bad default values for color_rgba field.
    • \n
    • Fixed: jQuery deprecation notice.
    • \n
    • Fixed: Type error in import_export field. Additional repeater JS fix.
    • \n
    • Fixed: required functionality within the repeater field.
    • \n
    • Modified: Additional sanitizing on color hex values.
    • \n
    • Modified: Customizer code to eliminate init() error.
    • \n
    • Updated: Extendify Library.
    • \n
    • Release date: May 05, 2022
    • \n
    \n

    4.3.12

    \n
      \n
    • Updated: Vendor libraries.
    • \n
    • Updated: Extendify Library.
    • \n
    • Fixed: jQuery deprecation notices.
    • \n
    • Fixed: Filesystem class error.
    • \n
    • Fixed: Customizer not saving data for sections not shown in the customizer.
    • \n
    • Fixed: Fix deprecation errors in customizer.
    • \n
    • Fixed: Fix core deprecation notices in metaboxes.
    • \n
    • Release date: March 08, 2022
    • \n
    \n

    4.3.11

    \n
      \n
    • Added: Advanced Customizer!
    • \n
    • Added: Font Awesome 6 Library for future extensions.
    • \n
    • Modified: Enforcing deprecation notices for deprecated functions. Developers: Please update your code as necessary.
    • \n
    • Modified: Connection banner to meet wp.org library standards.
    • \n
    • Updated: Extendify Library.
    • \n
    • Release date: February 23, 2022
    • \n
    \n

    4.3.10

    \n
      \n
    • Added: Repeater field for beta testing.
    • \n
    • Modified: Background field will now show background styling options even if background-image is not set.
    • \n
    • Modified: Connection banner now promotes Extendify plugin with download/activate option.
    • \n
    • Updated: Extendify Library.
    • \n
    • Release date: February 09, 2022
    • \n
    \n

    4.3.9

    \n
      \n
    • Fixed: Extendify Library JavaScript error.
    • \n
    • Release date: January 26, 2022
    • \n
    \n

    4.3.8

    \n
      \n
    • Fixed: Spacing field defaults to px if no default is set.
    • \n
    • Fixed: Remove plugin.php hack in Appsero SDK.
    • \n
    • Updated: Default Google Fonts list brought up to current release
    • \n
    • Updated: Extendify Library.
    • \n
    • Release date: January 25, 2022
    • \n
    \n

    4.3.7

    \n
      \n
    • Fixed: Incorrect global variable assignment. Thanks, @webbudesign.
    • \n
    • Release date: January 11, 2022
    • \n
    \n

    4.3.6

    \n
      \n
    • Modified: Update to the Extendify Library.
    • \n
    • Modified: Moved Extendify and Redux templates libraries back to root folder.
    • \n
    • Modified: Removed “Gutenberg is currently disabled” notice when the Classic Editor plugin is active.
    • \n
    • Fixed: date shortcode without attributes producing error.
    • \n
    • Fixed: Various jQuery deprecation fixes.
    • \n
    • Release date: January 11, 2022
    • \n
    \n

    4.3.5

    \n
      \n
    • Added: Add former premium feature: Option panel Search Bar. See Sample demo or the docs site.
    • \n
    • Added: Add former premium feature: Shortcodes. See Sample demo or the docs site.
    • \n
    • Fixed: Editor in metaboxes not saving HTML. WIll now save the same HTML posts/pages allows.
    • \n
    • Fixed: Front end formatting issue with the Extendify template library.
    • \n
    • Release date: December 01, 2021
    • \n
    \n

    4.3.4

    \n
      \n
    • Fixed: CSS and JS not loading when embedding Redux due to a malformed path.
    • \n
    • Modified: Update to the Extendify template library.
    • \n
    • Release date: November, 24 2021
    • \n
    \n

    4.3.3

    \n
      \n
    • Modified: Move template libraries to redux-core directory.
    • \n
    • Modified: Update to the Extendify template library.
    • \n
    • Release date: November 16, 2021
    • \n
    \n

    4.3.2

    \n
      \n
    • Added: Metaboxes!
    • \n
    • Fixed: Incorrect return type in Options Constructor.
    • \n
    • Modified: Prefixed Browser class to avoid conflict with older versions in other projects.
    • \n
    • Release date: November 11, 2021
    • \n
    \n

    4.3.1

    \n
      \n
    • Fixed: wp_mail has been declared by another process or plugin message.
    • \n
    • Fixed: Malformed README wouldn’t allow clicking of some support links.
    • \n
    • Release date: September 22, 2021
    • \n
    \n

    4.3.0

    \n
      \n
    • Added: Gutenberg Template Library updated to the new Extendify library. See more information here about this upgrade and how to access the legacy library: https://redux.io/gutenberg-template-library-upgrade.
    • \n
    • Added: Option to enable/disable Template libraries. Found under Settings > Redux > Templates
    • \n
    • Added: Redux debug data moved to WordPress Site Health Info screen.
    • \n
    • Removed: Redux Framework Health Screen.
    • \n
    • Modified: Tools > Redux Framework screen moved to Settings > Redux
    • \n
    • Modified: Redux Templates disabled by default.
    • \n
    • Release date: September 21, 2021
    • \n
    \n

    ** For a full changelog, see https://github.com/reduxframework/redux-framework/blob/master/CHANGELOG.md **

    \n", "description": "

    Redux was built by developers for developers. We save you months if not years in your development time. Everything we do is to help innovation in the industry.

    \n

    ♥️ What the Plugin does?

    \n

    Redux is a simple, genuinely extensible, and fully responsive options framework for WordPress themes and plugins. Built on the WordPress Settings API; Redux supports many field types, custom error handling, custom fields & validation types, and import/export functionality.

    \n

    But what does Redux actually DO? We don’t believe that theme and plugin developers should have to reinvent the wheel every time they start work on a project. Redux simplifies the development cycle by providing a streamlined, extensible framework for developers to build on. Through a simple, well-documented config file, third-party developers can build out an options panel limited only by their imagination in a fraction of the time it would take to build from the ground up!

    \n

    🚀 What fields does Redux offer?

    \n
      \n
    • Accordion
    • \n
    • ACE Editor
    • \n
    • Background
    • \n
    • Border
    • \n
    • Box Shadow
    • \n
    • Button Set
    • \n
    • Checkbox / Multi-Check
    • \n
    • Color (WordPress Native)
    • \n
    • Color Gradient
    • \n
    • Color Palette
    • \n
    • Color RGBA
    • \n
    • Color Scheme
    • \n
    • Content
    • \n
    • Custom Fonts
    • \n
    • Customizer
    • \n
    • Date
    • \n
    • Date/Time
    • \n
    • Dimensions (Height/Width)
    • \n
    • Divide (Divider)
    • \n
    • Editor (WordPress Native)
    • \n
    • Gallery (WordPress Native)
    • \n
    • Google Maps
    • \n
    • Icon Select
    • \n
    • Image Select (Patterns/Presets)
    • \n
    • Import/Export
    • \n
    • Info (Header/Notice)
    • \n
    • JS Button
    • \n
    • Link Color
    • \n
    • Media (WordPress Native)
    • \n
    • Metaboxes
    • \n
    • Multi Media
    • \n
    • Multi-Text
    • \n
    • Palette
    • \n
    • Password
    • \n
    • Radio (w/ WordPress Data)
    • \n
    • Raw (HTML/PHP/MarkDown)
    • \n
    • Repeater
    • \n
    • Section (Indent and Group Fields)
    • \n
    • Select (Select/Multi-Select w/ Select2 & WordPress Data)
    • \n
    • Select Image
    • \n
    • Slider (Drag a Handle)
    • \n
    • Slides (Multiple Images, Titles, and Descriptions)
    • \n
    • Social Profiles
    • \n
    • Sortable (Drag/Drop Checkbox/Input Fields)
    • \n
    • Sorter (Drag/Drop Manager – Works great for content blocks)
    • \n
    • Spacing (Margin/Padding/Absolute)
    • \n
    • Spinner
    • \n
    • Switch
    • \n
    • Tabbed
    • \n
    • Taxonomy Metaboxes
    • \n
    • Text
    • \n
    • Textarea
    • \n
    • Typography
    • \n
    • User Profile Metaboxes
    • \n

      * The most advanced typography module complete with preview, Google fonts, and auto-css output!

      \n
    • User Profile Metaboxes
    • \n
    • Widget Areas (Classic Widgets only)
    • \n
    \n

    🎉Additional Features

    \n
      \n
    • Full value escaping
    • \n
    • Required – Link visibility from parent fields. Set this to affect the visibility of the field on the parent’s value. Fully nested with multiple required parents possible.
    • \n
    • Output CSS Automatically – Redux generates CSS and the appropriate Google Fonts stylesheets for you on select fields. You need to only specify the CSS selector to apply the CSS to (limited to certain fields).
    • \n
    • Compiler integration! A custom hook runs when any fields with the argument `compile => true` are changed.
    • \n
    • Field validation and sanitization
    • \n
    • Field and section disabling
    • \n
    • Oh, and did we mention a fully integrated Google Fonts setup that will make you so happy you’ll want to cry?
    • \n
    \n

    👍 BE A CONTRIBUTOR

    \n

    If you want to help with translations, go to the Translation Portal at translate.wordpress.org.

    \n

    You can also contribute code via our GitHub Repository. Be sure to use our develop branch to submit pull requests.

    \n

    📝 Documentation and Support

    \n
      \n
    • We have extremely extensive docs. Please visit [https://devs.redux.io/](https://devs.redux.io). If that doesn’t solve your issue, search [the issue tracker on GitHub](https://github.com/reduxframework/redux-framework/issues). If you can’t locate any topics that pertain to your particular problem, [post a new issue](https://github.com/reduxframework/redux-framework/issues/new) for it. Before you submit an issue, please read [our contributing requirements](https://github.com/redux-framework/redux-framework/blob/master/CONTRIBUTING.md). We build on the dev version and push it to WordPress.org when we confirm Redux is stable and ready for release.
    • \n
    • If you have additional questions, reach out to us at support@redux.io
    • \n
    \n

    ⚡ Like the Redux Plugin?

    \n\n

    🔐 Privacy

    \n

    Redux does not interact with end users on your website. If a product is using Redux, the option panel will cease to function without Redux.

    \n

    For more details on our privacy policy: https://redux.io/privacy
    \nFor more details on our terms and conditions: https://redux.io/terms

    \n

    NOTE: Redux is not intended to be used on its own. It requires a config file provided by a third-party theme or plugin developer to actually do anything cool!

    \n", "installation": "
      \n
    1. Upload the entire plugin folder to the /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    \n"}, "versions": {"4.3.0": "https://downloads.wordpress.org/plugin/redux-framework.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/redux-framework.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/redux-framework.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/redux-framework.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/plugin/redux-framework.4.3.4.zip", "4.3.5": "https://downloads.wordpress.org/plugin/redux-framework.4.3.5.zip", "4.3.6": "https://downloads.wordpress.org/plugin/redux-framework.4.3.6.zip", "4.3.7": "https://downloads.wordpress.org/plugin/redux-framework.4.3.7.zip", "4.3.8": "https://downloads.wordpress.org/plugin/redux-framework.4.3.8.zip", "4.3.9": "https://downloads.wordpress.org/plugin/redux-framework.4.3.9.zip", "4.4.0": "https://downloads.wordpress.org/plugin/redux-framework.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/redux-framework.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/redux-framework.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/plugin/redux-framework.4.4.3.zip", "4.4.4": "https://downloads.wordpress.org/plugin/redux-framework.4.4.4.zip", "4.4.5": "https://downloads.wordpress.org/plugin/redux-framework.4.4.5.zip", "4.4.6": "https://downloads.wordpress.org/plugin/redux-framework.4.4.6.zip", "4.4.7": "https://downloads.wordpress.org/plugin/redux-framework.4.4.7.zip", "4.4.8": "https://downloads.wordpress.org/plugin/redux-framework.4.4.8.zip", "4.4.9": "https://downloads.wordpress.org/plugin/redux-framework.4.4.9.zip", "4.5.0": "https://downloads.wordpress.org/plugin/redux-framework.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/redux-framework.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/redux-framework.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/redux-framework.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/redux-framework.4.5.4.zip", "4.5.6": "https://downloads.wordpress.org/plugin/redux-framework.4.5.6.zip", "4.5.7": "https://downloads.wordpress.org/plugin/redux-framework.4.5.7.zip", "4.5.8": "https://downloads.wordpress.org/plugin/redux-framework.4.5.8.zip", "trunk": "https://downloads.wordpress.org/plugin/redux-framework.zip", "4.3.10": "https://downloads.wordpress.org/plugin/redux-framework.4.3.10.zip", "4.3.11": "https://downloads.wordpress.org/plugin/redux-framework.4.3.11.zip", "4.3.12": "https://downloads.wordpress.org/plugin/redux-framework.4.3.12.zip", "4.3.13": "https://downloads.wordpress.org/plugin/redux-framework.4.3.13.zip", "4.3.14": "https://downloads.wordpress.org/plugin/redux-framework.4.3.14.zip", "4.3.15": "https://downloads.wordpress.org/plugin/redux-framework.4.3.15.zip", "4.3.16": "https://downloads.wordpress.org/plugin/redux-framework.4.3.16.zip", "4.3.17": "https://downloads.wordpress.org/plugin/redux-framework.4.3.17.zip", "4.3.18": "https://downloads.wordpress.org/plugin/redux-framework.4.3.18.zip", "4.3.19": "https://downloads.wordpress.org/plugin/redux-framework.4.3.19.zip", "4.3.20": "https://downloads.wordpress.org/plugin/redux-framework.4.3.20.zip", "4.3.21": "https://downloads.wordpress.org/plugin/redux-framework.4.3.21.zip", "4.3.22": "https://downloads.wordpress.org/plugin/redux-framework.4.3.22.zip", "4.3.24": "https://downloads.wordpress.org/plugin/redux-framework.4.3.24.zip", "4.3.25": "https://downloads.wordpress.org/plugin/redux-framework.4.3.25.zip", "4.3.26": "https://downloads.wordpress.org/plugin/redux-framework.4.3.26.zip", "4.4.10": "https://downloads.wordpress.org/plugin/redux-framework.4.4.10.zip", "4.4.11": "https://downloads.wordpress.org/plugin/redux-framework.4.4.11.zip", "4.4.12": "https://downloads.wordpress.org/plugin/redux-framework.4.4.12.zip", "4.4.13": "https://downloads.wordpress.org/plugin/redux-framework.4.4.13.zip", "4.4.14": "https://downloads.wordpress.org/plugin/redux-framework.4.4.14.zip", "4.4.15": "https://downloads.wordpress.org/plugin/redux-framework.4.4.15.zip", "4.4.16": "https://downloads.wordpress.org/plugin/redux-framework.4.4.16.zip", "4.4.17": "https://downloads.wordpress.org/plugin/redux-framework.4.4.17.zip", "4.4.18": "https://downloads.wordpress.org/plugin/redux-framework.4.4.18.zip"}, "downloaded": 30389276, "description": "

    Redux was built by developers for developers. We save you months if not years in your development time. Everything we do is to help innovation in the industry.

    \n

    ♥️ What the Plugin does?

    \n

    Redux is a simple, genuinely extensible, and fully responsive options framework for WordPress themes and plugins. Built on the WordPress Settings API; Redux supports many field types, custom error handling, custom fields & validation types, and import/export functionality.

    \n

    But what does Redux actually DO? We don’t believe that theme and plugin developers should have to reinvent the wheel every time they start work on a project. Redux simplifies the development cycle by providing a streamlined, extensible framework for developers to build on. Through a simple, well-documented config file, third-party developers can build out an options panel limited only by their imagination in a fraction of the time it would take to build from the ground up!

    \n

    🚀 What fields does Redux offer?

    \n
      \n
    • Accordion
    • \n
    • ACE Editor
    • \n
    • Background
    • \n
    • Border
    • \n
    • Box Shadow
    • \n
    • Button Set
    • \n
    • Checkbox / Multi-Check
    • \n
    • Color (WordPress Native)
    • \n
    • Color Gradient
    • \n
    • Color Palette
    • \n
    • Color RGBA
    • \n
    • Color Scheme
    • \n
    • Content
    • \n
    • Custom Fonts
    • \n
    • Customizer
    • \n
    • Date
    • \n
    • Date/Time
    • \n
    • Dimensions (Height/Width)
    • \n
    • Divide (Divider)
    • \n
    • Editor (WordPress Native)
    • \n
    • Gallery (WordPress Native)
    • \n
    • Google Maps
    • \n
    • Icon Select
    • \n
    • Image Select (Patterns/Presets)
    • \n
    • Import/Export
    • \n
    • Info (Header/Notice)
    • \n
    • JS Button
    • \n
    • Link Color
    • \n
    • Media (WordPress Native)
    • \n
    • Metaboxes
    • \n
    • Multi Media
    • \n
    • Multi-Text
    • \n
    • Palette
    • \n
    • Password
    • \n
    • Radio (w/ WordPress Data)
    • \n
    • Raw (HTML/PHP/MarkDown)
    • \n
    • Repeater
    • \n
    • Section (Indent and Group Fields)
    • \n
    • Select (Select/Multi-Select w/ Select2 & WordPress Data)
    • \n
    • Select Image
    • \n
    • Slider (Drag a Handle)
    • \n
    • Slides (Multiple Images, Titles, and Descriptions)
    • \n
    • Social Profiles
    • \n
    • Sortable (Drag/Drop Checkbox/Input Fields)
    • \n
    • Sorter (Drag/Drop Manager – Works great for content blocks)
    • \n
    • Spacing (Margin/Padding/Absolute)
    • \n
    • Spinner
    • \n
    • Switch
    • \n
    • Tabbed
    • \n
    • Taxonomy Metaboxes
    • \n
    • Text
    • \n
    • Textarea
    • \n
    • Typography
    • \n
    • User Profile Metaboxes
    • \n

      * The most advanced typography module complete with preview, Google fonts, and auto-css output!

      \n
    • User Profile Metaboxes
    • \n
    • Widget Areas (Classic Widgets only)
    • \n
    \n

    🎉Additional Features

    \n
      \n
    • Full value escaping
    • \n
    • Required – Link visibility from parent fields. Set this to affect the visibility of the field on the parent’s value. Fully nested with multiple required parents possible.
    • \n
    • Output CSS Automatically – Redux generates CSS and the appropriate Google Fonts stylesheets for you on select fields. You need to only specify the CSS selector to apply the CSS to (limited to certain fields).
    • \n
    • Compiler integration! A custom hook runs when any fields with the argument `compile => true` are changed.
    • \n
    • Field validation and sanitization
    • \n
    • Field and section disabling
    • \n
    • Oh, and did we mention a fully integrated Google Fonts setup that will make you so happy you’ll want to cry?
    • \n
    \n

    👍 BE A CONTRIBUTOR

    \n

    If you want to help with translations, go to the Translation Portal at translate.wordpress.org.

    \n

    You can also contribute code via our GitHub Repository. Be sure to use our develop branch to submit pull requests.

    \n

    📝 Documentation and Support

    \n
      \n
    • We have extremely extensive docs. Please visit [https://devs.redux.io/](https://devs.redux.io). If that doesn’t solve your issue, search [the issue tracker on GitHub](https://github.com/reduxframework/redux-framework/issues). If you can’t locate any topics that pertain to your particular problem, [post a new issue](https://github.com/reduxframework/redux-framework/issues/new) for it. Before you submit an issue, please read [our contributing requirements](https://github.com/redux-framework/redux-framework/blob/master/CONTRIBUTING.md). We build on the dev version and push it to WordPress.org when we confirm Redux is stable and ready for release.
    • \n
    • If you have additional questions, reach out to us at support@redux.io
    • \n
    \n

    ⚡ Like the Redux Plugin?

    \n\n

    🔐 Privacy

    \n

    Redux does not interact with end users on your website. If a product is using Redux, the option panel will cease to function without Redux.

    \n

    For more details on our privacy policy: https://redux.io/privacy
    \nFor more details on our terms and conditions: https://redux.io/terms

    \n

    NOTE: Redux is not intended to be used on its own. It requires a config file provided by a third-party theme or plugin developer to actually do anything cool!

    \n", "donate_link": "", "num_ratings": 272, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/redux-framework/", "contributors": {"dovyp": {"avatar": "https://secure.gravatar.com/avatar/e960359a54d96235c26ea46d311b20fc47c77c5a15050e9d6a7d742e075fa9dc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dovyp/", "display_name": "Dōvy Paukstys"}, "redux": {"avatar": "https://secure.gravatar.com/avatar/9c7321aefd5f72f3e2d57015d3299d064b497ff18cd8fade5608ebaa75f064e1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/redux/", "display_name": "Redux"}, "kprovance": {"avatar": "https://secure.gravatar.com/avatar/ede698e148675cd9ec992f047848a781d36a17aabdfb487d2e446baffc69e9fe?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kprovance/", "display_name": "Kev Provance"}}, "last_updated": "2025-10-01 6:14pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/redux-framework.4.5.8.zip", "author_profile": "https://profiles.wordpress.org/davidanderson/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f9cb-7200-b067-ed06f280d9cd", "name": "Redux Framework", "slug": "redux-framework", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1759342440, "version": "4.5.8"}, "support_threads": 5, "requires_plugins": [], "short_description": "Redux is a simple, truly extensible, and fully responsive options framework for WordPress themes and plugins. It ships with an integrated demo.", "author_block_count": 0, "author_block_rating": 88, "commercial_support_url": "", "support_threads_resolved": 5}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1d74-7071-b83b-7f139bf05384', 'did:web:api.aspiredev.org:packages:wp-plugin:regenerate-thumbnails', 'regenerate-thumbnails', 'Regenerate Thumbnails', '

    Regenerate Thumbnails allows you to regenerate all thumbnail sizes for one or more images that have been uploaded to your Media Library.

    -

    This is useful for situations such as:

    -
      -
    • A new thumbnail size has been added and you want past uploads to have a thumbnail in that size.
    • -
    • You’ve changed the dimensions of an existing thumbnail size, for example via Settings → Media.
    • -
    • You’ve switched to a new WordPress theme that uses featured images of a different size.
    • -
    -

    It also offers the ability to delete old, unused thumbnails in order to free up server space.

    -

    In Memory of Alex Mills

    -

    In February 2019 Alex Mills, the author of this plugin, passed away. He leaves behind a number of plugins which will be maintained by Automattic and members of the WordPress community. If this plugin is useful to you please consider donating to the Oregon Health and Science University. You can find more information here.

    -

    Alternatives

    -

    WP-CLI

    -

    If you have command line access to your server, I highly recommend using WP-CLI instead of this plugin as it’s faster (no HTTP requests overhead) and can be run inside of a screen for those with many thumbnails. For details, see the documentation of its media regenerate command.

    -

    Jetpack’s Photon Module

    -

    Jetpack is a plugin by Automattic, makers of WordPress.com. It gives your self-hosted WordPress site some of the functionality that is available to WordPress.com-hosted sites.

    -

    The Photon module makes the images on your site be served from WordPress.com’s global content delivery network (CDN) which should speed up the loading of images. Importantly though it can create thumbnails on the fly which means you’ll never need to use this plugin.

    -

    I personally use Photon on my own website.

    -

    Disclaimer: I work for Automattic but I would recommend Photon even if I didn’t.

    -

    Need Help? Found A Bug? Want To Contribute Code?

    -

    Support for this plugin is provided via the WordPress.org forums.

    -

    The source code for this plugin is available on GitHub.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Regenerate Thumbnails", "slug": "regenerate-thumbnails", "tags": {"thumbnail": "thumbnail", "thumbnails": "thumbnails", "post-thumbnail": "post thumbnail", "post-thumbnails": "post thumbnails"}, "added": "2008-08-28", "icons": {"1x": "https://ps.w.org/regenerate-thumbnails/assets/icon-128x128.png?rev=1753390"}, "author": "Alex Mills", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/regenerate-thumbnails/assets/banner-772x250.jpg?rev=1753390", "high": "https://ps.w.org/regenerate-thumbnails/assets/banner-1544x500.jpg?rev=1753390"}, "ratings": {"1": 26, "2": 8, "3": 3, "4": 17, "5": 340}, "version": "3.1.6", "homepage": "https://alex.blog/wordpress-plugins/regenerate-thumbnails/", "requires": "4.7", "sections": {"faq": "\n
    \nIs this plugin [GDPR](https://en.wikipedia.org/wiki/General_Data_Protection_Regulation) compliant?\n\n

    \n

    This plugin does not log nor transmit any user data. Infact it doesn’t even do anything on the user-facing part of your website, only in the admin area. This means it should be compliant but I’m not a lawyer.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very, very, very happy with the results

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy JHouse on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    For layout and design purposes, I opted to increase the size of all my featured image thumbnails moving forward, but you guessed it, I still had to resize the previous photos. Well, this plugin handled it like a champ! Even removed the ones I wasn''t using any longer so I could free up some server space.

    \n\n\n\n

    Admittedly, I was a bit scared running this plugin for the first time, however, I made backup of my website files and database before doing so in the event sh!t went south. Not only did it resize them perfectly, it restored some thumbnails that were missing. Now all is awesome!

    \n\n\n\n

    Thanks for such a great plugin! I will use this exclusively in the future.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Screwed all the references to images in a Portrait orientation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy chrisdubea on September 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yea,

    \n\n\n\n

    That was stupid. Foolishly used this, still don''t know why. Screwed up all my references to images in a Portrait orientation.

    \n\n\n\n

    Luckily I was able to figure it out and with Better Search Replace was able to fix 326 instances of the wrong reference.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sjcm94 on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you, Alex, for still supporting us.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works. Good info too

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy moviemoon on March 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I really like this plug-in. I don''t need it very often but when I do it works great. For example when I changed the image size for my blog thumbnails and thought i would have a headache!

    \n\n\n\n

    It shows nice info about images and which sizes will be generated too. Useful. Thank you.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good cleanup tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Denny Müller (redaquamedia) on November 20, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works fine and does what it describes.

    \n\n\n\n

    And sorry to hear, that Alex has passed away.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks for great plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anil Chandra Robidas (anilkumer) on November 13, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice Tools

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Doesn't work well with -scaled images

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy 21stcn on July 30, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Wordpress scales down very big images, adding a ''full'' image with ''-scaled'' suffix, and stores the original file and it''s name in the db. RT plugin however regens thumbails based on the ''scaled'' image, so all the intermediate sizes are re-named. This can break images when combined with offloading etc.

    \n\n\n\n

    Unless I am missing something, this ''-scaled'' resizing of big images is default wordpress functionality so the RT plugin should handle it properly by using the original image (using functions like wp_get_original_image_url, wp_get_original_image_path) etc, so as not to orphan a whole set of thumbnails, use the wrong full image and generate a new set of intermediate sizes.

    \n\n\n\n

    Eg:
    These are the currently registered thumbnail sizes, whether they exist for this attachment, and their filenames:

    \n\n\n\n
      \n
    • thumbnail: 280×178 pixels (cropped to fit) 8C2A3575-scaled-280x178.jpg
    • \n\n\n\n
    • medium: 300×300 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-300x200.jpg
    • \n\n\n\n
    • medium_large: 0×0 pixels (thumbnail would be larger than original)
    • \n\n\n\n
    • large: 720×1200 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-720x480.jpg
    • \n\n\n\n
    • avatar: 180×180 pixels (cropped to fit) 8C2A3575-scaled-180x180.jpg
    • \n\n\n\n
    • 1536x1536: 1536×1536 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-1536x1024.jpg
    • \n\n\n\n
    • 2048x2048: 2048×2048 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-2048x1366.jpg
    • \n\n\n\n
    • featured-medium: 700×446 pixels (cropped to fit) 8C2A3575-scaled-700x446.jpg
    • \n\n\n\n
    • featured-large: 1398×1398 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-1398x932.jpg
    • \n\n\n\n
    • extra-large: 1598×1598 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-1598x1066.jpg
    • \n
    \n\n\n\n

    The attachment says it also has these thumbnail sizes but they are no longer in use by WordPress. You can probably safely have this plugin delete them, especially if you have this plugin update any posts that make use of this attachment.

    \n\n\n\n
      \n
    • medium (old): 300×200 pixels 8C2A3575-300x200.jpg
    • \n\n\n\n
    • large (old): 720×480 pixels 8C2A3575-720x480.jpg
    • \n\n\n\n
    • thumbnail (old): 280×178 pixels 8C2A3575-280x178.jpg
    • \n\n\n\n
    • avatar (old): 180×180 pixels 8C2A3575-180x180.jpg
    • \n\n\n\n
    • 1536x1536 (old): 1536×1024 pixels 8C2A3575-1536x1024.jpg
    • \n\n\n\n
    • 2048x2048 (old): 2048×1365 pixels 8C2A3575-2048x1365.jpg
    • \n\n\n\n
    • featured-medium (old): 700×446 pixels 8C2A3575-700x446.jpg
    • \n\n\n\n
    • featured-large (old): 1398×932 pixels 8C2A3575-1398x932.jpg
    • \n\n\n\n
    • extra-large (old): 1598×1065 pixels 8C2A3575-1598x1065.jpg
    • \n\n\n\n
    • cmplz_banner_image: 350×100 pixels 8C2A3575-350x100.jpg
    • \n
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Asad (asadpro) on July 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useful plugin. I have been using this plugin for the last 5 years.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This app saved my blog

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy infinityfree on July 3, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It should be built-in WordPress feature. So useful!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Au top !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy davs63 on March 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Bonjour et merci à l''auteur

    \n\n\n\n

    Ce plugin à sauvé mon site, ou en tout cas plusieurs heures de travail. Les images étaient présente dans le backup mais pas les miniatures. Donc je ne voyais plus rien dans la médiathèque. Et cette extension a recréé toute les mignatures !!

    \n\n\n\n

    Il mérite les 5 etoiles

    \n\n\n\n

    \n
    \n
    \n", "changelog": "

    Version 3.1.6

    \n
      \n
    • Fix: Respect “Skip regenerating existing correctly sized thumbnails” setting.
    • \n
    • Fix: Don’t delete all thumbnails when deleting old unregistered thumbnails size.
    • \n
    \n

    Version 3.1.5

    \n
      \n
    • Fix: Don’t overwrite ‘All X Attachment’ button label with featured images count.
    • \n
    • Tested successfully with PHP 8.1.
    • \n
    • Tested successfully with PHP 8.2.
    • \n
    \n

    Version 3.1.4

    \n
      \n
    • Fix: Don’t attempt to regenerate SVG’s.
    • \n
    • Bump tested version.
    • \n
    • Update dependencies.
    • \n
    \n

    Version 3.1.3

    \n
      \n
    • Update plugin dependencies to the latest version.
    • \n
    \n

    Version 3.1.2

    \n
      \n
    • Use wp_get_original_image_path() in WordPress 5.3
    • \n
    \n

    Version 3.1.1

    \n
      \n
    • Minor fix to avoid a divide by zero error when displaying thumbnail filenames.
    • \n
    \n

    Version 3.1.0

    \n
      \n
    • Bring back the ability to delete old, unregistered thumbnail sizes. Support for updating post contents is still disabled (too buggy).
    • \n
    • Various code improvements including string localization disambiguation.
    • \n
    \n

    Version 3.0.2

    \n
      \n
    • Fix slowdown in certain cases in the media library.
    • \n
    • Fix not being able to regenerate existing thumbnails for single images. Props @idofri.
    • \n
    • Fix JavaScript error that could occur if the REST API response was unexpected (empty or PHP error).
    • \n
    • Fix bug related to multibyte filenames.
    • \n
    • If an image is used as the featured image on multiple posts, only regenerate it once instead of once per post.
    • \n
    \n

    Version 3.0.1

    \n
      \n
    • Temporarily disable the update post functionality. I tested it a lot but it seems there’s still some bugs.
    • \n
    • Temporarily disable the delete old thumbnails functionality. It seems to work fine but without the update post functionality, it’s not as useful.
    • \n
    • Try to more gracefully handle cases where there’s missing metadata for attachments.
    • \n
    • Wait until init to initialize the plugin so themes can filter the plugin’s capability. plugins_loaded is too early.
    • \n
    • Fix a JavaScript error that would cause the whole regeneration process to stop if an individual image returned non-JSON, such as a 500 error code.
    • \n
    • Accept GET requests for the regenerate REST API endpoint instead of just POSTs. For some reasons some people’s sites are using GET despite the code saying use POST.
    • \n
    • Make the attachment ID clickable in error messages.
    • \n
    • Fetch 25 attachments at a time instead of 5. I was using 5 for testing.
    • \n
    • PHP notice fixes.
    • \n
    \n

    Version 3.0.0

    \n
      \n
    • Complete rewrite from scratch using Vue.js and the WordPress REST API.
    • \n
    \n

    Version 2.2.4

    \n
      \n
    • Better AJAX response error handling in the JavaScript. This should fix a long-standing bug in this plugin. Props Hew Sutton.
    • \n
    \n

    Version 2.2.3

    \n
      \n
    • Make the capability required to use this plugin filterable so themes and other plugins can change it. Props Jackson Whelan.
    • \n
    \n

    Version 2.2.2

    \n
      \n
    • Don’t check the nonce until we’re sure that the action called was for this plugin. Fixes lots of “Are you sure you want to do this?” error messages.
    • \n
    \n

    Version 2.2.1

    \n
      \n
    • Fix the bottom bulk action dropdown. Thanks Stefan for pointing out the issue!
    • \n
    \n

    Version 2.2.0

    \n
      \n
    • Changes to the Bulk Action functionality were made shortly before the release of WordPress 3.1 which broke the way I implemented the specific multiple image regeneration feature. This version adds to the Bulk Action menu using Javascript as that’s the only way to do it currently.
    • \n
    \n

    Version 2.1.3

    \n
      \n
    • Move the error_reporting() call in the AJAX handler to the beginning so that we’re more sure that no PHP errors are outputted. Some hosts disable usage of set_time_limit() and calling it was causing a PHP warning to be outputted.
    • \n
    \n

    Version 2.1.2

    \n
      \n
    • When regenerating all images, newest images are done first rather than the oldest.
    • \n
    • Fixed a bug with regeneration error reporting in some browsers. Thanks to pete-sch for reporting the error.
    • \n
    • Supress PHP errors in the AJAX handler to avoid sending an invalid JSON response. Thanks to pete-sch for reporting the error.
    • \n
    • Better and more detailed error reporting for when wp_generate_attachment_metadata() fails.
    • \n
    \n

    Version 2.1.1

    \n
      \n
    • Clean up the wording a bit to better match the new features and just be easier to understand.
    • \n
    • Updated screenshots.
    • \n
    \n

    Version 2.1.0

    \n

    Lots of new features!

    \n
      \n
    • Thanks to a lot of jQuery help from Boris Schapira, a failed image regeneration will no longer stop the whole process.
    • \n
    • The results of each image regeneration is now outputted. You can easily see which images were successfully regenerated and which failed. Was inspired by a concept by Boris.
    • \n
    • There is now a button on the regeneration page that will allow you to abort resizing images for any reason. Based on code by Boris.
    • \n
    • You can now regenerate single images from the Media page. The link to do so will show up in the actions list when you hover over the row.
    • \n
    • You can now bulk regenerate multiple from the Media page. Check the boxes and then select “Regenerate Thumbnails” form the “Bulk Actions” dropdown. WordPress 3.1+ only.
    • \n
    • The total time that the regeneration process took is now displayed in the final status message.
    • \n
    • jQuery UI Progressbar version upgraded.
    • \n
    \n

    Version 2.0.3

    \n
      \n
    • Switch out deprecated function call.
    • \n
    \n

    Version 2.0.2

    \n
      \n
    • Directly query the database to only fetch what the plugin needs (the attachment ID). This will reduce the memory required as it’s not storing the whole row for each attachment.
    • \n
    \n

    Version 2.0.1

    \n
      \n
    • I accidentally left a check_admin_referer() (nonce check) commented out.
    • \n
    \n

    Version 2.0.0

    \n
      \n
    • Recoded from scratch. Now uses an AJAX request per attachment to do the resizing. No more PHP maximum execution time errors or anything like that. Also features a pretty progress bar to let the user know how it’s going.
    • \n
    \n

    Version 1.1.0

    \n
      \n
    • WordPress 2.7 updates — code + UI. Thanks to jdub and Patrick F.
    • \n
    \n

    Version 1.0.0

    \n
      \n
    • Initial release.
    • \n
    \n

    Upgrade Notice

    \n

    Support for WordPress 5.3

    \n", "description": "

    Regenerate Thumbnails allows you to regenerate all thumbnail sizes for one or more images that have been uploaded to your Media Library.

    \n

    This is useful for situations such as:

    \n
      \n
    • A new thumbnail size has been added and you want past uploads to have a thumbnail in that size.
    • \n
    • You’ve changed the dimensions of an existing thumbnail size, for example via Settings → Media.
    • \n
    • You’ve switched to a new WordPress theme that uses featured images of a different size.
    • \n
    \n

    It also offers the ability to delete old, unused thumbnails in order to free up server space.

    \n

    In Memory of Alex Mills

    \n

    In February 2019 Alex Mills, the author of this plugin, passed away. He leaves behind a number of plugins which will be maintained by Automattic and members of the WordPress community. If this plugin is useful to you please consider donating to the Oregon Health and Science University. You can find more information here.

    \n

    Alternatives

    \n

    WP-CLI

    \n

    If you have command line access to your server, I highly recommend using WP-CLI instead of this plugin as it’s faster (no HTTP requests overhead) and can be run inside of a screen for those with many thumbnails. For details, see the documentation of its media regenerate command.

    \n

    Jetpack’s Photon Module

    \n

    Jetpack is a plugin by Automattic, makers of WordPress.com. It gives your self-hosted WordPress site some of the functionality that is available to WordPress.com-hosted sites.

    \n

    The Photon module makes the images on your site be served from WordPress.com’s global content delivery network (CDN) which should speed up the loading of images. Importantly though it can create thumbnails on the fly which means you’ll never need to use this plugin.

    \n

    I personally use Photon on my own website.

    \n

    Disclaimer: I work for Automattic but I would recommend Photon even if I didn’t.

    \n

    Need Help? Found A Bug? Want To Contribute Code?

    \n

    Support for this plugin is provided via the WordPress.org forums.

    \n

    The source code for this plugin is available on GitHub.

    \n", "screenshots": "
    1. \"The

      The main plugin interface.

    2. \"Regenerating

      Regenerating in progress.

    3. \"Interface

      Interface for regenerating a single attachment.

    4. \"Individual

      Individual images can be regenerated from the media library in list view.

    5. \"They

      They can also be regenerated from the edit attachment screen.

    ", "installation": "
      \n
    1. Go to your admin area and select Plugins → Add New from the menu.
    2. \n
    3. Search for “Regenerate Thumbnails”.
    4. \n
    5. Click install.
    6. \n
    7. Click activate.
    8. \n
    9. Navigate to Tools → Regenerate Thumbnails.
    10. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.1.1.0.zip", "2.0.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.1.0.zip", "2.1.2": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.1.2.zip", "2.2.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.2.0.zip", "2.2.3": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.2.6.zip", "2.3.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.3.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.0.2.zip", "3.1.1": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.6.zip", "trunk": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.zip"}, "downloaded": 22291553, "description": "

    Regenerate Thumbnails allows you to regenerate all thumbnail sizes for one or more images that have been uploaded to your Media Library.

    \n

    This is useful for situations such as:

    \n
      \n
    • A new thumbnail size has been added and you want past uploads to have a thumbnail in that size.
    • \n
    • You’ve changed the dimensions of an existing thumbnail size, for example via Settings → Media.
    • \n
    • You’ve switched to a new WordPress theme that uses featured images of a different size.
    • \n
    \n

    It also offers the ability to delete old, unused thumbnails in order to free up server space.

    \n

    In Memory of Alex Mills

    \n

    In February 2019 Alex Mills, the author of this plugin, passed away. He leaves behind a number of plugins which will be maintained by Automattic and members of the WordPress community. If this plugin is useful to you please consider donating to the Oregon Health and Science University. You can find more information here.

    \n

    Alternatives

    \n

    WP-CLI

    \n

    If you have command line access to your server, I highly recommend using WP-CLI instead of this plugin as it’s faster (no HTTP requests overhead) and can be run inside of a screen for those with many thumbnails. For details, see the documentation of its media regenerate command.

    \n

    Jetpack’s Photon Module

    \n

    Jetpack is a plugin by Automattic, makers of WordPress.com. It gives your self-hosted WordPress site some of the functionality that is available to WordPress.com-hosted sites.

    \n

    The Photon module makes the images on your site be served from WordPress.com’s global content delivery network (CDN) which should speed up the loading of images. Importantly though it can create thumbnails on the fly which means you’ll never need to use this plugin.

    \n

    I personally use Photon on my own website.

    \n

    Disclaimer: I work for Automattic but I would recommend Photon even if I didn’t.

    \n

    Need Help? Found A Bug? Want To Contribute Code?

    \n

    Support for this plugin is provided via the WordPress.org forums.

    \n

    The source code for this plugin is available on GitHub.

    \n", "donate_link": "", "num_ratings": 394, "screenshots": {"1": {"src": "https://ps.w.org/regenerate-thumbnails/assets/screenshot-1.png?rev=1787847", "caption": "The main plugin interface."}, "2": {"src": "https://ps.w.org/regenerate-thumbnails/assets/screenshot-2.png?rev=1787847", "caption": "Regenerating in progress."}, "3": {"src": "https://ps.w.org/regenerate-thumbnails/assets/screenshot-3.png?rev=1787847", "caption": "Interface for regenerating a single attachment."}, "4": {"src": "https://ps.w.org/regenerate-thumbnails/assets/screenshot-4.png?rev=1787847", "caption": "Individual images can be regenerated from the media library in list view."}, "5": {"src": "https://ps.w.org/regenerate-thumbnails/assets/screenshot-5.png?rev=1787847", "caption": "They can also be regenerated from the edit attachment screen."}}, "support_url": "https://wordpress.org/support/plugin/regenerate-thumbnails/", "contributors": {"viper007bond": {"avatar": "https://secure.gravatar.com/avatar/b5f16acb1bc24ca6bf644adb593384de64046fa69c5de867a7647c7f736a1271?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/viper007bond/", "display_name": "Alex Mills"}}, "last_updated": "2025-08-20 3:56pm GMT", "preview_link": "", "requires_php": "5.2.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.6.zip", "author_profile": "https://profiles.wordpress.org/viper007bond/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f9bb-7389-8fd9-668735de8b61", "name": "Regenerate Thumbnails", "slug": "regenerate-thumbnails", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1755705360, "version": "3.1.6"}, "support_threads": 3, "requires_plugins": [], "short_description": "Regenerate the thumbnails for one or more of your image uploads. Useful when changing their sizes or your theme.", "author_block_count": 0, "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 1}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1d83-7058-8d60-8490150d9a56', 'did:web:api.aspiredev.org:packages:wp-plugin:royal-elementor-addons', 'royal-elementor-addons', 'Royal Addons for Elementor – Addons and Templates Kit for Elementor', '

    Royal Elementor addons is the most versatile, intuitive, and easy to use Popular Page Builder extension. Our goal is to provide you with the tools to make things happen, efficiently, and fast compare to other elementor addons. Choosing us is not only a mindset, but it is also a requirement if you intend to gain an edge over your competitors when creating your website. The best part is that you can design anything without having to touch a single line of code.

    -

    Comes with 100+ Elementor addons, 140+ Elementor Templates KIT (Growing Each Week), Theme Builder, WooCommerce Builder, Elementor Mega Menu Builder, Popup Builder, Premade Widget Blocks & Extensions. Creative and self-intuitive widgets to take your WordPress website to the next level. All widgets are Free and the Pro Version offers even more advanced functionality.

    -

    Free and Pro functionalities are mixed in the Widget Demos below.

    -

    Plugin Demo Page
    -Elementor Templates Demo Page
    -Woocommerce Elementor Templates Demo Page

    -

    Widget List:

    - -

    Woocommerce Widgets:

    - -

    Extensions and Other Features

    - -

    Elementor Wocommerce Builder Templates Kits

    - -

    Elementor Theme Builder Templates Kits

    - -

    Elementor Templates Kits

    - -

    How to Import Template Kit:

    -

    Navigate to plugin Menu > Templates Kit > Select Kit you want to import > Click on the import Template Kit button.
    -Demo Data will be installed from Our Website.
    -What’s imported: Posts, pages, images in the media library, menu items, some basic settings like which page will be set as homepage, premade headers, and premade footers, popups if demo includes it.
    -If you already have posts, pages, or any other data in your WordPress none of them will be deleted.

    -

    Widgets short Description:

    -

    1. Elementor Post Grid

    -

    Post Grid – Post Slider – Post Carousel – A free Elementor Post grid widget. This widget could be used as a recent posts slider, post carousel, FitRows grid, masonry grid (Pro), portfolio grid, list style grid, filtrable grid if you will enable isotope filters, media grid for video project showcase and more. Simply the best solution for WordPress blog posts or custom post types. Comes with the following options: multicolumns, numbered pagination, random post display option, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for filters, grid filters (live filters with isotope) and much more.

    -

    2. Elementor Woocommerce Grid

    -

    WooCommerce Product Grid – Product Slider – Product Carousel – A free WooCommerce Grid Widget. Could be used as product carousel, product slider, product list, product category grid, category carousel, category slider, filtrable grid to display wooCommerce products and much more. This elementor addon comes with the following options: multicolumn, numbered pagination, load more button, infinite scroll (Pro), product likes (Pro), product sharing (Pro), custom fields (Pro), lightbox with the gallery, linkable filters (deep linking), custom icons for filters, live grid filters (with isotope filters), sorting and much more.

    -

    3. Image Grid

    -

    Image Grid – Image Slider – Image Carousel – A free Image Grid Widget. Could be used as an image gallery, logo grid, image slider, image carousel, and much more. Addon comes with the following options: multicolumn grids, numbered pagination, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for the filters, FitRows grid with a isotope filters, masonry grid and much more.

    -

    Magazine Grid – Slider – A free Magazine Grid Widget. This widget is the #1 Magazine Grid builder widget on the repository. Could be used as magazine layout, newspaper layout, news grid, news slider(PRO).

    -

    5. Advanced Slider

    -

    Advanced Slider – Carousel – A free Image Slider Widget. Could be used as image slider, logo carousel, content slider, template slider (Pro). Creat unique looking hero section with this slider. It is fully responsive and has full width and full screen options. Also Pro version comes with Ken Burns effect & animated content.

    -

    6. Testimonial Slider

    -

    Testimonial Slider – A free Testimonial Slider Widget. This widget will showcase your customers reviews on your WordPress website. The widget offers following options: customers reviews slider, testimonials ratings (stars), company logo option, clients/customer image, texts with vintage quotes.

    -

    7. Elementor Menu widget

    -

    Nav Menu – A free Nav Menu Widget. This widget will make your WordPress Menu trully unique by customizing its look and feel without using code. Addon offers following options: mobile menu customization, drop down menu setup, hamburger menu, menu hover effects and hover animations. Also Pro version offers vertical menu and sticky header. Most advanced & customizable responsive menu.

    -

    8. Onepage Navigation

    -

    Onepage Navigation – A free Onepage Navigation Widget. This widget allows you to create an amazing onepage scroll experiance WordPress website with just a few clicks. Can be used to create floating menu, sticky navigation menu, side menu with icons to scroll to any section.

    -

    9. Pricing Table

    -

    Pricing Table – A free Pricing Table Widget. This Pricing Comparison Table widget helps you to create an effective price comparison table with unique styling, which allows you to display not just the cost, but also the features you offer. A widget could be used as a regular pricing table & as a pricing table with a toggle button to switch from Monthly/Yearly plans. Pro version offers different tooltip options for each pricing table feature, also it’s possible to have more than 2 pricing plans switcher, like Monthly/Yearly/Lifetime (You can check the demo on the widget preview page).

    -

    10. Content Toggle

    -

    Content Toggle – A free Content Toggle Widget. You can load Elementor Templates or simply insert images and text to style it the way you want. A widget could be used as a pricing switcher as well, for example, to switch between Monthly/Yearly/Lifetime pricing plans. Pro version offers more than 2 toggle options – Check out the widget demo page to see all its possibilities.

    -

    11. Countdown Timer

    -

    Countdown Timer – This widget allows you to display a timer that counts down to a specific time or date. A widget could be used as a black Friday sale countdown timer, to create urgency for users for your event, sales, or opt-in forms. You can set various actions after the timer expires: hide the timer, display a message, redirect or load the template. The Pro version offers an Evergreen timer (checkout widget demo page), recurring countdown timer, and restart timer options.

    -

    12. Progress Bar

    -

    Progress Bar – This Skill Bar widget offers unique ways to style various types of stats in percentages or numbers, can be used for classic animated progress bars, circle progress bars, or vertical progress bars (Pro).

    -

    13. Advanced Tabs

    -

    Tabs – This Advanced Tab widget lets you display key information in an interactive manner, that attracts visitors and also saves lots of space on your WordPress webpage. The widget offers horizontal tabs, vertical tabs, tab loading animation effects, and more. Trigger tab via mouse hover or click both options are available. Also, you can have nested tabs via the elementor templates loader which means you can use any elementor addons inside tab content.

    -

    14. Advanced Text

    -

    Advanced Text – Fancy Text – This Text animation widget lets you highlight any text with different colors, animation, and typing effects to draw your visitor’s attention instantly. Available effects: typewriter effect, fancy text effect, animated text effect, highlighted text effect, text-shadow effect, text over image effect, text and image mask effect, 3d text effect, text slider, gradient text, the background image on text, text glitch effect, text long colored shadow effect, word animation effect, text skew effect, text flip vertical and horizontal effect, slide, clip, zoom, scale, circle line, underline zigzag line, curly line, cross x line, line through and others. Pro Version offers extra effects and functionalities.

    -

    15. Flip Box

    -

    Flip Box – A free Flip Box Widget. This widget with hover box animation and call-to-action buttons will highlight your content in a great way and allows you to create stunning promo boxes and ads with CTA button functionality. The widget offers more flipping effects in the pro version and some extra functionality as well.

    -

    16. Promo Box

    -

    Promo Box – With this widget, you can create: a clickable image with varios effects like: a clickable image with image hover effects, option to add text over image, display call to action button over image, and many other options. Create a stunning sale or discount banners with CTA buttons and badges with this addon. The Pro Version offers extra effects and functionalities.

    -

    17. Before After Slider

    -

    Before After Slider – Image comparison Slider – A free Image comparison slider. This addon can compare two pictures with draggable or mouse hover options in horizontal and vertical(Pro) layouts.

    -

    18. Image Hotspot

    -

    Image Hotspots – A free Image Map Widget to build image hotspot maps, allows you to create hot spot image with 2x points on it. Add tooltips to icons to make it stunning and informative. The PRO versions offer unlimited hotspot points.

    -

    19. Forms Styler

    -

    Forms – This Form widget comes with the following options: contact form 7 styler, Gravity forms styler, Ninja Forms styler, and WPforms styler.

    -

    20. MailChimp Subscribe

    -

    MailChimp – This Newsletter addon helps you to collect emails from your website visitors by creating stunning email opt-in forms. Our Mailchimp Form is the best free Mailchimp integration tool for your WordPress website. Add …

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Royal Addons for Elementor – Addons and Templates Kit for Elementor", "slug": "royal-elementor-addons", "tags": {"elementor": "elementor", "elementor-addons": "elementor addons", "elementor-widgets": "elementor widgets", "elementor-templates": "elementor templates", "widgets-for-elementor": "widgets for elementor"}, "added": "2021-06-07", "icons": {"1x": "https://ps.w.org/royal-elementor-addons/assets/icon-128x128.gif?rev=2604295"}, "author": "WP Royal", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/royal-elementor-addons/assets/banner-772x250.png?rev=2782347", "high": "https://ps.w.org/royal-elementor-addons/assets/banner-1544x500.png?rev=2782347"}, "ratings": {"1": 21, "2": 4, "3": 5, "4": 13, "5": 542}, "version": "1.7.1036", "homepage": "https://royal-elementor-addons.com/", "requires": "5.0", "sections": {"faq": "\n
    \nWe have a query not addressed here, how can we contact you?\n\n

    \n

    Feel free to contact use anytime via this Contact form

    \n

    \n
    \nCan I use the plugin without Page Builder Plugin?\n\n

    \n

    No. You cannot use without Elementor since it’s an addon for Elementor.

    \n

    \n
    \nEditor fails to load or not working?\n\n

    \n

    It’s due to your server PHP settings. Increase your server PHP memory limit from the wp-config.php file or php.ini file. If you don’t have an idea about it. Please contact your hosting provider and ask to increase this parameters
    \n* PHP memory_limit = 512M
    \n* max_execution_time = 300

    \n

    \n
    \nDoes it work with any theme?\n\n

    \n

    YES! It will work with any theme where Elementor works.

    \n

    \n
    \nWill your plugin affect the performance of my site?\n\n

    \n

    We run tests to ensure the speed of the site is not affected when you activate our Elementor addons. We provide a way for you to deactivate those Elementor modules that you do not require for your site to avoid loading them unnecessarily on the pages built with Elementor page builder.

    \n

    \n
    \nWhat if I update to Premium version?\n\n

    \n

    Your existing Elementor elements & content will work with premium version. So you won’t lose your developed contents or any elementor elements.

    \n

    \n
    \nCan I use Royal Addons on a wordpress.com site?\n\n

    \n

    Since the plugin is hosted on wordpress.org, it is available on wordpress.com as well. However, you may need to opt for a business plan to install/activate third-party plugins on wordpress.com.

    \n

    \n
    \nDoes it work with Pro version of Page Builder?\n\n

    \n

    Yes, undoubtedly our addon works with Elementor Pro Version.

    \n

    \n
    \nWhat Are the Recommended PHP Settings\n\n

    \n

    Minimum php version 5.6
    \nmemory_limit 256M or more
    \npost_max_size 64M

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Muito bom

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy josysenna on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin muito bom

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Life Saver

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lejeantravels on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This has been the biggest learning experience I have ever had to endure. I am glad that the team held my hand and guided me through the process without giving me all the answers. You can''t learn if you are not willing to step out of your comfort zone and grow.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tesla Digital

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy marinho10 on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Indico a todos esse excelente PLUGIN!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incrivel

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy calendarioscriativo on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    <font dir=\"auto\" style=\"vertical-align: inherit;\"><font dir=\"auto\" style=\"vertical-align: inherit;\">Olá estão de parabéns o plugin é sensacional, rápido e dinâmico, muito fácil de manusear nota mil</font></font>

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome pluign Royal

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gerchin on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Royal Elementor Addons is a fantastic extension that really takes Elementor to the next level. It offers a wide range of unique widgets, templates, and effects that make designing websites faster and more creative. The interface feels seamless, and everything integrates perfectly with Elementor’s workflow. Support is responsive, and updates are frequent. Highly recommended for anyone who wants to build professional, visually stunning websites with ease!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Royal Addons

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy blackdragon46 on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I started using these addons and was surprised with their efficiency. There are many which are pro and require a hefty price to continue their use, but they also have a few free ones also.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kabir1240 on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great extension, really helps you get the most out of elementor. Has a lot of enhanced versions of pre-existing elements as well as some really cool new elements.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy traveler305 on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice Plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works for me.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Buddywarlock on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Getting up in age, however, even I found it easy to use this software.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Speeded up building

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kongcheng6 on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Pre-made kits + pro widgets cut my work time in half.

    \n
    \n
    \n", "changelog": "

    Royal Elementor Addons v1.7.1036 – 2025-10-26

    \n\n

    Royal Elementor Addons v1.7.1035 – 2025-10-8

    \n\n

    Royal Elementor Addons v1.7.1034 – 2025-9-19

    \n\n

    Royal Elementor Addons v1.7.1033 – 2025-9-16

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • ADDED: Business Coaching V2 – Elementor Template Kit – Business Coaching V2.
    • \n
    \n

    Royal Elementor Addons v1.7.1032 – 2025-9-5

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • ADDED: Lawyer V2 – Elementor Templates Kit – Lawyer V2.
    • \n
    • ADDED: Online Course V2 – Elementor Templates Kit – Online Course V2.
    • \n
    \n

    Royal Elementor Addons v1.7.1031 – 2025-8-15

    \n
      \n
    • FIXED: Minor Changes
    • \n
    \n

    Royal Elementor Addons v1.7.1030 – 2025-8-06

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1029 – 2025-8-03

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1028 – 2025-7-26

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1027 – 2025-7-04

    \n\n

    Royal Elementor Addons v1.7.1026 – 2025-6-18

    \n\n

    Royal Elementor Addons v1.7.1025 – 2025-6-10

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • ADDED: Taxonomy Condition for Single Templates of Theme Builder (by placing taxonomy-name/term-id in place of ‘all’)
    • \n
    • ADDED: Language option for google maps in dashboard settings
    • \n
    \n

    Royal Elementor Addons v1.7.1024 – 2025-6-5

    \n
      \n
    • ADDED: Business Landing Page V3 – Elementor Templates Kit – Landing Page Business V3.
    • \n
    • ADDED: Medical V2 – Elementor Templates Kit – Medical V2.
    • \n
    • ADDED: Yoga V2 – Elementor Templates Kit – Yoga V2.
    • \n
    • ADDED: Nutritionist V1 – Elementor Templates Kit – Nutritionist V1.
    • \n
    \n

    Royal Elementor Addons v1.7.1023 – 2025-6-2

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1022 – 2025-5-28

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1021 – 2025-5-27

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • FIXED: Freemius Security Related Issues
    • \n
    \n

    Royal Elementor Addons v1.7.1020 – 2025-5-21

    \n\n

    Royal Elementor Addons v1.7.1019 – 2025-5-15

    \n
      \n
    • ADDED: News Magazine Blog V8 – Elementor Template Kit – Magazine V8.
    • \n
    • ADDED: News Magazine Blog V9 – Elementor Template Kit – Magazine V9.
    • \n
    \n

    Royal Elementor Addons v1.7.1018 – 2025-5-01

    \n
      \n
    • FIXED: Minor Tweaks
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1017 – 2025-4-20

    \n
      \n
    • FIXED: Minor Tweaks
    • \n
    \n

    Royal Elementor Addons v1.7.1016 – 2025-4-02

    \n\n

    Royal Elementor Addons v1.7.1014 – 2025-3-31

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1013 – 2025-3-28

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1012 – 2025-3-14

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1010 – 2025-2-20

    \n
      \n
    • ADDED: Business Coaching V1 – Elementor Template Kit – Business Coaching V1.
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1009 – 2025-2-12

    \n\n

    Royal Elementor Addons v1.7.1008 – 2025-2-07

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • ADDED: Furniture Shop V2 – Elementor Template Kit – Furniture Store V2.
    • \n
    • ADDED: Jewelry Store V2 – Elementor Template Kit – Jewelry Store V2.
    • \n
    • ADDED: Date Widget
    • \n
    \n

    Royal Elementor Addons v1.7.1007 – 2025-1-12

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • ADDED: Personal Blog V5 – Elementor Template Kit – Personal Blog V5.
    • \n
    \n

    Royal Elementor Addons v1.7.1006 – 2024-12-25

    \n
      \n
    • FIXED: Instagram Bug
    • \n
    \n

    Royal Elementor Addons v1.7.1005 – 2024-12-18

    \n
      \n
    • ADDED: New Year 2025 – Elementor Template Kit – New Year V1.
    • \n
    • ADDED: Christmas (Shop) – Elementor Templates Kit – Christmas V1.
    • \n
    • ADDED: Plumbing – Elementor Templates Kit – Plumbing V1.
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1004 – 2024-11-23

    \n
      \n
    • ADDED: Magazine Blog V7 – Elementor Template Kit – Magazine V7.
    • \n
    • ADDED: Business Landing Page V2 – Elementor Templates Kit – Landing Page Business V2.
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1003 – 2024-11-20

    \n
      \n
    • ADDED: Elementor Fashion (Shop) V4 Template Kit – Fashion.
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1002 – 2024-11-08

    \n
      \n
    • ADDED: Elementor Cleaning Services V2 Template Kit – Cleaning Services.
    • \n
    • ADDED: Elementor Car Repair V2 Template Kit – Car Repair.
    • \n
    • ADDED: Elementor Financial Services Template Kit – Financial Services.
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1001 – 2024-10-30

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1 – 2024-10-18

    \n
      \n
    • FIXED: Minor Bugs= Royal Elementor Addons v1.3.985 – 2024-08-26 =
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.987 – 2024-10-04

    \n
      \n
    • ADDED: Elementor Electrician V2 Template Kit – Electrician.
    • \n
    • ADDED: Elementor Book Shop (Shop) V1 Template Kit – Book Shop.
    • \n
    • ADDED: Taxonomy List Count Brackets option
    • \n
    • ADDED: Video Tutorial for License Mismatch Solution
    • \n
    • ADDED: Product Mini Cart Hover Color option
    • \n
    • ADDED: Search Notice for Booking and Appointment in Dashboard, Editor Panel and Templates Window.
    • \n
    • FIXED: Form Styler calling undefined wp forms function
    • \n
    • FIXED: Form Builder Shortcodes doesn’t work in to, cc and bcc fields of email action
    • \n
    • FIXED: AJAX Search Show Password Protected vulnerability
    • \n
    • FIXED: Magazine Grid Random Query Duplication on Front Page
    • \n
    • FIXED: Flip Box Active Class Issue on Safari Browser
    • \n
    • FIXED: Form Builder Webhook Action Label Issue
    • \n
    • FIXED: Google Maps, Team Member minor vulnerabilities
    • \n
    • FIXED: Post Grid post__not_in parameter passing empty string
    • \n
    • FIXED: Checkout Overflow Hidden Removed
    • \n
    • FIXED: Woo Grid Rating Icons in Incognito when Inline Fonts Activated
    • \n
    • FIXED: Phone Call SVG Hover
    • \n
    • FIXED: Some Controls used In JavaScript not Working due to Optimized Control Loading
    • \n
    \n

    Royal Elementor Addons v1.3.986 – 2024-09-04

    \n
      \n
    • FIXED: Countdown, Google Map and Media Grid minor vulnerability issues.
    • \n
    • FIXED: Restrict Show Password Protected Posts Control only to appear for admins (Ajax Search).
    • \n
    • FIXED: Add to Cart widget animation.
    • \n
    \n

    Royal Elementor Addons v1.3.985 – 2024-08-26

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.984 – 2024-08-26

    \n
      \n
    • FIXED: Mini Cart Browser Back/Forward arrows bug.
    • \n
    • FIXED: CSV not importing properly in Data Tables widget.
    • \n
    • FIXED: Back to Top Button SVG hover color issue.
    • \n
    • FIXED: Compare table not fetching attributes from different languages.
    • \n
    • FIXED: Mini Cart not expanding fully on sticky header.
    • \n
    • ADDED: Hide All Banners options to admin settings.
    • \n
    • ADDED: Option to display mobile mega menu content by default.
    • \n
    \n

    Royal Elementor Addons v1.3.983 – 2024-08-26

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.982 – 2024-08-19

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    • ADDED: Elementor Software Company V2 Template Kit – Software Company.
    • \n
    • ADDED: Elementor Fashion (Shop) V3 Template Kit – Fashion.
    • \n
    • ADDED: Elementor Wedding V2 Template Kit – Wedding.
    • \n
    • ADDED: Elementor Token Template Kit – Token.
    • \n
    \n

    Royal Elementor Addons v1.3.981 – 2024-07-18

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.980 – 2024-07-10

    \n\n

    Royal Elementor Addons v1.3.979 – 2024-06-27

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.978 – 2024-06-26

    \n
      \n
    • ADDED: Elementor Graphic Nature Template Kit – Graphic Nature.
    • \n
    • ADDED: Elementor Party Planer Template Kit – Party Planner.
    • \n
    • ADDED: Elementor Ico Landing Page Template Kit – Ico Landing Page.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.977 – 2024-06-06

    \n
      \n
    • ADDED: Elementor Car Rental Template Kit – Car Rental.
    • \n
    • ADDED: Elementor Cleaning Company Template Kit – Cleaning Company.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.976 – 2024-05-30

    \n
      \n
    • ADDED: Elementor Church V1 Template Kit – Church.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.975 – 2024-05-15

    \n
      \n
    • ADDED: Elementor Online Course V1 Template Kit – Online Course.
    • \n
    • ADDED: Elementor Electrician V1 Template Kit – Electrician.
    • \n
    • ADDED: Elementor Nail Salon V1 Template Kit – Nail Salon.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.974 – 2024-05-06

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.972 – 2024-04-17

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.971 – 2024-04-12

    \n
      \n
    • ADDED: Elementor Travel V3 Template Kit – Travel.
    • \n
    • ADDED: Digital Marketing V1 One Page Landing Page Template Kit – Digital Marketing.
    • \n
    • ADDED: Jewelry Store V1 Template Kit – Jewelry Store.
    • \n
    \n

    Royal Elementor Addons v1.3.97 – 2024-04-10

    \n
      \n
    • Tested up to Latest WP version
    • \n
    \n

    Royal Elementor Addons v1.3.96 – 2024-03-29

    \n\n

    Royal Elementor Addons v1.3.95 – 2024-03-22

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.94 – 2024-03-21

    \n\n

    Royal Elementor Addons v1.3.93 – 2024-03-13

    \n\n

    Royal Elementor Addons v1.3.92 – 2024-02-20

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.91 – 2024-02-18

    \n\n

    Royal Elementor Addons v1.3.90 – 2024-02-15

    \n\n

    Royal Elementor Addons v1.3.89 – 2024-02-08

    \n\n

    Royal Elementor Addons v1.3.88 – 2024-02-06

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    • ADDED: Designer Bio Template Kit Designer Bio.
    • \n
    \n

    Royal Elementor Addons v1.3.87 – 2024-01-25

    \n\n

    Royal Elementor Addons v1.3.86 – 2024-01-25

    \n\n

    Royal Elementor Addons v1.3.85 – 2023-12-27

    \n\n

    Royal Elementor Addons v1.3.84 – 2023-12-20

    \n\n

    Royal Elementor Addons v1.3.83 – 2023-12-11

    \n\n

    Royal Elementor Addons v1.3.82 – 2023-12-06

    \n
      \n
    • ADDED: WPML Multilingual Translation Support for REA Theme Builder Templates.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.81 – 2023-11-23

    \n\n

    Royal Elementor Addons v1.3.80 – 2023-10-17

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.79 – 2023-10-06

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    • FIXED: Security Issues.
    • \n
    \n

    Royal Elementor Addons v1.3.78 – 2023-09-29

    \n\n

    Royal Elementor Addons v1.3.77 – 2023-09-06

    \n\n

    Royal Elementor Addons v1.3.76 – 2023-08-30

    \n\n

    Royal Elementor Addons v1.3.75 – 2023-08-19

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.74 – 2023-08-18

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.73 – 2023-08-10

    \n\n

    Royal Elementor Addons v1.3.71 – 2023-07-11

    \n
      \n
    • ADDED: Business Landing Page – Elementor Templates Kit – Landing Page Business.
    • \n
    • ADDED: Digital Product Landing Page – Elementor Templates Kit – Landing Page Digital Product.
    • \n
    • ADDED: Construction v2 Elementor Templates Kit – Construction v2
    • \n
    • ADDED: Youtube, Vimeo and Custom Video Support for Advanced Slider Widget (Pro).
    • \n
    • ADDED: Category Filter for Ajax Search Widget (Pro). Preview
    • \n
    • ADDED: Category Grid Widget for any type of post types and taxonomies (Expert).
    • \n
    • ADDED: Sorting by Custom Fields for Advanced Post Grid/Slider/Carousel Widget (Pro).
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.70 – 2023-07-01

    \n
      \n
    • ADDED: Auto Parts Store Elementor Templates Kit – Auto Parts Store.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.69 – 2023-06-08

    \n
      \n
    • ADDED: Home Care v1 Elementor Templates Kit – Home Care v1.
    • \n
    • ADDED: Fintech v1 Elementor Templates Kit – Fintech v1.
    • \n
    • ADDED: One Page Portfolio v2 Elementor Templates Kit – One Page Portfolio v1.
    • \n
    • FIXED: Instagram and Twitter widgets related minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.68 – 2023-05-19

    \n
      \n
    • ADDED: Dynamic Tags for widgets,Custom Post Type Sypport (CTP), Custom Fields to build Dynamic Websites.
    • \n
    • ADDED: Wishlist & Compare functionality for Woocommerce. Check Demo.
    • \n
    • ADDED: Elementor Form Buidler Widget – Form Builder.
    • \n
    • ADDED: Secondary image on hover for Post Grid/Slider/Carousel and WooCommerce Grid/Slider/Carousel grid widgets.Check Demo.
    • \n
    • ADDED: Construction v3 Elementor Templates Kit – Construction v3.
    • \n
    • ADDED: Digital Agency v3 Elementor Templates Kit – Digital Agency v3.
    • \n
    • ADDED: Personal Blog v3 Elementor Templates Kit – Personal Blog v3.
    • \n
    • ADDED: Ecommerce v1 Elementor Templates Kit – Ecommerce v1.
    • \n
    • FIXED: Minor Bugs.
    • \n
    • FIXED: Elementor Ajax Search widgets – woocommerce search tempalte related bug.
    • \n
    \n

    Royal Elementor Addons v1.3.67 – 2023-04-03

    \n
      \n
    • ADDED: Fashion v2 Elementor Templates Kit – Fashion v2.
    • \n
    \n

    Royal Elementor Addons v1.3.66 – 2023-03-02

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.65 – 2023-02-27

    \n
      \n
    • FIXED: Minor Bugs for Instagram elementor feed widget.
    • \n
    • FIXED: Minor Bugs for the elementor ajax search widget.
    • \n
    • FIXED: Many other small improvements and fixes.
    • \n
    • FIXED: Parallax-related small bugs, now new elementor container supports parallax.
    • \n
    • ADDED: Many premade elementor template pages in the REA library.
    • \n
    • ADDED: Widgets Search and filter buttons in the plugin backend.
    • \n
    • ADDED: Free vs PRO version comparison Table in the plugin backend.
    • \n
    • ADDED: Real Estate v2 Elementor Templates Kit – Real Estate.
    • \n
    \n

    Royal Elementor Addons v1.3.64 – 2023-02-10

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.63 – 2023-02-09

    \n
      \n
    • ADDED: Instagram Feed widget.
    • \n
    • ADDED: Twitter Feed widget.
    • \n
    • ADDED: Offcanvas Menu widget (aka side menu).
    • \n
    • ADDED: Lazy Loading for Elementor post grid widgets.
    • \n
    • ADDED: Display Only Scheduled Posts option for Elementor post grid widget.
    • \n
    • ADDED: Vertical Slider Option for Advanced Slider widget.
    • \n
    • ADDED: Option to open grid items in new tab for Elementor post grid, woocommerce grid, and for magazine grid widgets.
    • \n
    • FIXED: Elementor header footer was visible in coming soon and in maintenance mode.
    • \n
    • FIXED: Custom field, Linkable filters and extra text-related issues for Post grid, woocommerce grid and magazine grid.
    • \n
    • ADDED: Responsive Gutter controls for All grids.
    • \n
    • FIXED: One page navigation custom icon issues.
    • \n
    • ADDED: Business Consulting Elementor Templates Kit – Business Consulting.
    • \n
    • ADDED: Car Repair Elementor Templates Kit – Car Repair.
    • \n
    \n

    Royal Elementor Addons v1.3.62 – 2023-01-16

    \n
      \n
    • ADDED: Fytness & Gym Elementor Templates Kit – Fytness & Gym.
    • \n
    \n

    Royal Elementor Addons v1.3.61 – 2023-01-12

    \n
      \n
    • ADDED: Phone field added to elementor Mailchimp widget.
    • \n
    • ADDED: Clear fields option after form submission for elementor Mailchimp widget.
    • \n
    • FIXED: Whatsapp and telegram sharing widgets issues fixed.
    • \n
    • FIXED: Deprecated widgets registration hooks fixed.
    • \n
    • ADDED: Custom CSS turn on/off switcher added in the dashboard extensions panel.
    • \n
    • FIXED: Elementor Magazin grid widget featured image gradient bg color.
    • \n
    \n

    Royal Elementor Addons v1.3.60 – 2022-12-28

    \n
      \n
    • ADDED: Hotel Elementor Template Kit Hotel.
    • \n
    • ADDED: Premade Pages Templates Library(New requested feature).
    • \n
    • FIXED: Elementor Woocommerce Grid/Slider widget query-related issues.
    • \n
    • FIXED: Elementor mega menu, search widget, and template kit import related Security issues.
    • \n
    \n

    Royal Elementor Addons v1.3.59 – 2022-12-15

    \n
      \n
    • FIXED: Category and Tag query issue for elementor post grid widget.
    • \n
    \n

    Royal Elementor Addons v1.3.58 – 2022-12-13

    \n
      \n
    • TWEAK: One more improvement for elementor templates Kit import process, about 5-10% faster than in the previous versions. Now the image cropping process only starts after the content import will end. Please note this tweak does not apply to the pre-made elementor widgets importing process.
    • \n
    \n

    Royal Elementor Addons v1.3.57 – 2022-12-09

    \n
      \n
    • TWEAK: Improved import time for all elementor templates Kit, about 20% faster than before.
    • \n
    • FIXED: Templates kit import issue for some hosting providers.
    • \n
    • FIXED: Some bug fixes for the elementor toggle widget.
    • \n
    \n

    Royal Elementor Addons v1.3.56 – 2022-12-06

    \n
      \n
    • FIXED: Security Related issues.
    • \n
    • TWEAK: Custom Post type support (PRO) for Post grid, Magazin Grid, Content Ticker, and Timeline widget.
    • \n
    \n

    Royal Elementor Addons v1.3.55 – 2022-12-01

    \n\n

    Royal Elementor Addons v1.3.54 – 2022-11-25

    \n
      \n
    • Improvements: Huge Performance improvements – All elementor addons and extensions now use 2x less PHP memory.
    • \n
    • Improvements: All OLD Query Controls for Post Grid, Post Slider, Post Carousel, Image Grid, Woocommerce Grid, and Woocommerce Carousel widgets were replaced with Ajax Control Selection.
    • \n
    • ADDED: New feature to Elementor Taxonomy List widget – Extended Filters and Dropdown For Child Categories (Pro).
    • \n
    • FIXED: Minor bugs for Elementor Timeline Widget – Pro query options fixed.
    • \n
    • FIXED: Minor bugs for Elementor Mega Menu widget – Badge Style fixes.
    • \n
    • ADDED: New Control – “Display On Separate Lines” (Pro) for Elementor Post Navigation widget.
    • \n
    • ADDED: New Control – Trim Title & Excerpt By Letter Count for Post grid, Woocommerce grid and Magazin Grid Widgets.(Pro).
    • \n
    • ADDED: New Control – Grid Ordering feature for Post grid and Woocommerce grid(Pro).
    • \n
    • Improvements: All elementor template kits now use 2x less PHP memory in the frontend.
    • \n
    • ADDED: Feature request sections for all Elementor Widgets.
    • \n
    • TWEAK: Show Products Sorting is disabled by default for the Elementor Woocommerce Grid widget.
    • \n
    \n

    Royal Elementor Addons v1.3.53 – 2022-11-08

    \n
      \n
    • FIXED: Minor bugs for Elementor Mega Menu widget.
    • \n
    • ADDED: Feature request sections.
    • \n
    \n

    Royal Elementor Addons v1.3.52 – 2022-11-07

    \n
      \n
    • FIXED: Minor bugs for Elementor Mega Menu widget.
    • \n
    • FIXED: Minor bugs for Elementor Ajax Search widget.
    • \n
    \n

    Royal Elementor Addons v1.3.51 – 2022-10-31

    \n
      \n
    • ADDED: Elementro Mega Menu widget with Off-canvas mobile menu support(PRO).
    • \n
    • ADDED: Elementro Advanced Accordion widget with Search (PRO).
    • \n
    • ADDED: Elementro Image Accordion widget.
    • \n
    • ADDED: Elementro Charts Widget.
    • \n
    • ADDED: Live Ajax Search functionality for Elementor Search Widget. Supports Ajax Search for Woocommerce and for any post type.
    • \n
    • ADDED: Elementor Page List widget for Mega Menu.
    • \n
    • ADDED: Royal Elementor Theme Builder Architecture & Interior Templates Kit.
    • \n
    • FIXED: Minor bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.50 – 2022-09-23

    \n
      \n
    • FIXED: Minor bugs.
    • \n
    • ADDED: Some Controlls to the table widgets.
    • \n
    \n

    Royal Elementor Addons v1.3.49 – 2022-09-22

    \n
      \n
    • FIXED: Minor bugs.
    • \n
    • ADDED: Elementor Data Table Widget.
    • \n
    • ADDED: Elementor Reading Progress Bar Widget.
    • \n
    • ADDED: Royal Elementor Theme Builder Travel Agency Templates Kit.
    • \n
    \n

    Royal Elementor Addons v1.3.48 – 2022-09-13

    \n
      \n
    • FIXED: Fixed minor bugs.
    • \n
    • ADDED: Royal Elementor Theme Builder Electornic Store Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder Food Delivery Templates Kit.
    • \n
    \n

    Royal Elementor Addons v1.3.47 – 2022-08-10

    \n
      \n
    • FIXED: Fixed minor bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.46 – 2022-08-04

    \n
      \n
    • FIXED: Fixed minor woocommerce related bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.45 – 2022-07-027

    \n
      \n
    • ADDED: Elementor Woocommerce Builder in Theme Builder Section.
    • \n
    • ADDED: 14+ Elementor Woocommerce Single Product Builder Widgets like: Add to cart widget, product Price widget, product Breadcrumbs widget (only in PRO) , product Media widget, product Rating widget and so on…
    • \n
    • ADDED: Elementor Woocommerce Minicart Widgets (Minicart sidebar and other advanced options supported only in PRO).
    • \n
    • ADDED: Elementor Woocommerce Product Filter Widgets (only in PRO).
    • \n
    • ADDED: Elementor Woocommerce Category Grid Widgets (only in PRO).
    • \n
    • ADDED: Elementor Woocommerce My Account Widgets (only in PRO).
    • \n
    • ADDED: Query products by Sale, Featured, Upsell, Cross-sell in Woo Grid/Slider/Carousel widget (only in PRO).
    • \n
    • ADDED: Royal Elementor Woocommerce Builder Woo Shop Templates Kit.
    • \n
    • ADDED: Royal Elementor Woocommerce Builder Fashion Templates Kit. (only in PRO)
    • \n
    • ADDED: Royal Elementor Woocommerce Builder Grocery Store Templates Kit. (only in PRO)
    • \n
    • ADDED: Royal Elementor Woocommerce Builder Furniture Store Templates Kit. (only in PRO)
    • \n
    \n

    Royal Elementor Addons v1.3.44 – 2022-06-03

    \n\n

    Royal Elementor Addons v1.3.43 – 2022-31-05

    \n
      \n
    • NEWS: We are working hard to finish Woocommerce integration in the theme builder. We hope the first demo will be available in around 30-40 days.
    • \n
    • ADDED: Royal Elementor Theme Builder Digital Marketing Agency Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder One page – Digital Marketing Agency Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder Pet Care Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder NFT Portfolio Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder Car Wash Templates Kit.
    • \n
    • FIXED: Many small bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.42 – 2022-29-04

    \n
      \n
    • ADDED: Royal Elementor Theme Builder NFT Portfolio Templates Kit.
    • \n
    \n

    Royal Elementor Addons v1.3.40 – 2022-19-04

    \n
      \n
    • ADDED: Royal Elementor Theme Builder Magazine Blog v3 Free Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder Video Tutorial.
    • \n
    • ADDED: Elementor Flip Carousel widget.
    • \n
    • ADDED: Elementor Features List widget.
    • \n
    • ADDED: Elementor Dual Color Heading widget.
    • \n
    \n

    Royal Elementor Addons v1.3.39 – 2022-12-04

    \n
      \n
    • FIXED: Elementor Theme Builder minor issues.
    • \n
    \n

    Royal Elementor Addons v1.3.38 – 2022-04-06

    \n
      \n
    • ADDED: Elementor Theme Builder. Customize every fundamental part of your WordPress site without coding including your Header, Footer, Archives, Posts, Default Pages, 404 Pages, etc…
    • \n
    • ADDED: Elementor Theme Builder Widgets: Post Title, Post Media, Post Meta, Post Navigation, Post Comments, Post Author, Archive Page Title.
    • \n
    • ADDED: Elementor Theme Builder Demos:
    • \n
    • Personal Blog
    • \n
    • Magazine Blog v1
    • \n
    • Magazine Blog v2
    • \n
    • Food Blog
    • \n
    • Travel Blog
    • \n
    \n

    Royal Elementor Addons v1.3.37 – 2022-04-04

    \n
      \n
    • FIXED: Elementor Header, Elementor Footer, Elementor Popup import issue.
    • \n
    \n

    Royal Elementor Addons v1.3.36 – 2022-28-03

    \n
      \n
    • FIXED: Removed Reset CSS code which gives ability to adjust content better.
    • \n
    \n

    Royal Elementor Addons v1.3.34 – 2022-18-03

    \n
      \n
    • FIXED: Unordered and Ordered Lists spacing issue, also Headings size issue fixed in Royal Addons for Elementor.
    • \n
    \n

    Royal Elementor Addons v1.3.33 – 2022-4-03

    \n
      \n
    • ADDED: Travel Blogger & Influencer Elementor Template Kit.
    • \n
    • ADDED: Freemius SDK update to 2.4.3.
    • \n
    \n

    Royal Elementor Addons v1.3.32 – 2022-24-02

    \n
      \n
    • ADDED: Digital Agency Elementor Template Kit.
    • \n
    • ADDED: Video Tutorials to Particles Effects addon for Elementor and Sticky Section addon Elementor.
    • \n
    \n

    Royal Elementor Addons v1.3.30 – 2022-14-02

    \n
      \n
    • ADDED: Lawyer Elementor Template Kit.
    • \n
    • ADDED: Elementor Timeline Widget Predefined Styles.
    • \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.29 – 2022-7-02

    \n
      \n
    • FIX: Elementor Sticky Header conflict with other Elementor Addons.
    • \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.28 – 2022-2-02

    \n
      \n
    • FIX: Minor Posts Timeline Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.27 – 2022-31-01

    \n
      \n
    • ADDED: Photographer Portfolio Elementor Template Kit Dark.
    • \n
    • ADDED: Photographer Portfolio Elementor Template Kit Light.
    • \n
    • ADDED: Wine Bar Elementor Template Kit.
    • \n
    • ADDED: Elementor Timeline Widget.
    • \n
    • FIX: Elementor Template kit causes daouble header issue on some popular themes.
    • \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.26 – 2022-21-01

    \n
      \n
    • ADDED: Pizza Restaurant Elementor Template.
    • \n
    • ADDED: Royal Elementor Widget Pro Features List Section.
    • \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.25 – 2021-12-24

    \n
      \n
    • ADDED: Elementor Templates Kit Library (Elementor Starter Sites).
    • \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.23 – 2021-12-09

    \n
      \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.22 – 2021-12-03

    \n
      \n
    • FIX: Elementor Pricing Table widget Button link is now clickable.
    • \n
    • FIX: Custom Post Types Elementor support option issue.
    • \n
    • ADDED: New Predefined Styles to Royal Elementor Addons Library.
    • \n
    • ADDED: Option to show Elementor Header and Footer on Elementor Canvas pages.
    • \n
    • ADDED: Youtube Video Tutorial link to Elementor OnePage Navigation Widget.
    • \n
    \n

    Royal Elementor Addons v1.3.21 – 2021-11-22

    \n
      \n
    • FIX: Minor but essential Bugs.
    • \n
    • ADDED: White Label Branding (Supported in PRO verison)
    • \n
    \n

    Royal Elementor Addons v1.3.2 – 2021-11-19

    \n
      \n
    • FIX: Elementor Text widget bullet list issue.
    • \n
    • FIX: Elementor Team member widget description option doesn’t accept HTML tags.
    • \n
    • FIX: Elementor Sharing widget WhatsApp sharing issue.
    • \n
    \n

    Royal Elementor Addons v1.3 – 2021-10-29

    \n
      \n
    • ADDED: Elementor Header and Footer Builder.
    • \n
    • ADDED: Elementor Popups (Elementor Modal Popups) Builder. Offer Sales Banners, Subscriptions Banners, GDPR Cookie Consent & Compliance Notice, Cookie Notice, Age Verification. With Exit Intent query parameter targeting (only in PRO).
    • \n
    • ADDED: Elementor Predefined Styles for Popups and various Royal Elementor Addons Widgets.
    • \n
    • ADDED: Elementor Particles Effect to the section options.
    • \n
    • ADDED: Elementor Parallax Background Effect to the section options.
    • \n
    • ADDED: Elementor Parallax Multi Layer Effect to the section options.
    • \n
    • ADDED: Elementor Custom CSS option to the Widgets, Columns and Sections.
    • \n
    • ADDED: Freemius has been integrated.
    • \n
    • FIX: Elementor Phone Call Widget has no icon in editor.
    • \n
    • FIX: Elementor Flip Box front button z-index issue.
    • \n
    \n

    Royal Elementor Addons v1.2 – 2021-09-24

    \n
      \n
    • FIX: Elementor Grid Widget responsive column issues.
    • \n
    • FIX: Elementor Slider Widget responsive column issues.
    • \n
    • FIX: Elementor Content Ticker Widget responsive column issues.
    • \n
    • FIX: Elementor Testimonial Carousel Widget responsive column issues.
    • \n
    • FIX: Added support for Elementor beta breakpoints.
    • \n
    \n

    Royal Elementor Addons v1.0 – 2021-08-14

    \n
      \n
    • Initial Release.
    • \n
    \n", "description": "

    Royal Elementor addons is the most versatile, intuitive, and easy to use Popular Page Builder extension. Our goal is to provide you with the tools to make things happen, efficiently, and fast compare to other elementor addons. Choosing us is not only a mindset, but it is also a requirement if you intend to gain an edge over your competitors when creating your website. The best part is that you can design anything without having to touch a single line of code.

    \n

    Comes with 100+ Elementor addons, 140+ Elementor Templates KIT (Growing Each Week), Theme Builder, WooCommerce Builder, Elementor Mega Menu Builder, Popup Builder, Premade Widget Blocks & Extensions. Creative and self-intuitive widgets to take your WordPress website to the next level. All widgets are Free and the Pro Version offers even more advanced functionality.

    \n

    Free and Pro functionalities are mixed in the Widget Demos below.

    \n

    Plugin Demo Page
    \nElementor Templates Demo Page
    \nWoocommerce Elementor Templates Demo Page

    \n

    Widget List:

    \n\n

    Woocommerce Widgets:

    \n\n

    Extensions and Other Features

    \n\n

    Elementor Wocommerce Builder Templates Kits

    \n\n

    Elementor Theme Builder Templates Kits

    \n\n

    Elementor Templates Kits

    \n\n

    How to Import Template Kit:

    \n

    Navigate to plugin Menu > Templates Kit > Select Kit you want to import > Click on the import Template Kit button.
    \nDemo Data will be installed from Our Website.
    \nWhat’s imported: Posts, pages, images in the media library, menu items, some basic settings like which page will be set as homepage, premade headers, and premade footers, popups if demo includes it.
    \nIf you already have posts, pages, or any other data in your WordPress none of them will be deleted.

    \n

    Widgets short Description:

    \n

    1. Elementor Post Grid

    \n

    Post Grid – Post Slider – Post Carousel – A free Elementor Post grid widget. This widget could be used as a recent posts slider, post carousel, FitRows grid, masonry grid (Pro), portfolio grid, list style grid, filtrable grid if you will enable isotope filters, media grid for video project showcase and more. Simply the best solution for WordPress blog posts or custom post types. Comes with the following options: multicolumns, numbered pagination, random post display option, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for filters, grid filters (live filters with isotope) and much more.

    \n

    2. Elementor Woocommerce Grid

    \n

    WooCommerce Product Grid – Product Slider – Product Carousel – A free WooCommerce Grid Widget. Could be used as product carousel, product slider, product list, product category grid, category carousel, category slider, filtrable grid to display wooCommerce products and much more. This elementor addon comes with the following options: multicolumn, numbered pagination, load more button, infinite scroll (Pro), product likes (Pro), product sharing (Pro), custom fields (Pro), lightbox with the gallery, linkable filters (deep linking), custom icons for filters, live grid filters (with isotope filters), sorting and much more.

    \n

    3. Image Grid

    \n

    Image Grid – Image Slider – Image Carousel – A free Image Grid Widget. Could be used as an image gallery, logo grid, image slider, image carousel, and much more. Addon comes with the following options: multicolumn grids, numbered pagination, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for the filters, FitRows grid with a isotope filters, masonry grid and much more.

    \n

    Magazine Grid – Slider – A free Magazine Grid Widget. This widget is the #1 Magazine Grid builder widget on the repository. Could be used as magazine layout, newspaper layout, news grid, news slider(PRO).

    \n

    5. Advanced Slider

    \n

    Advanced Slider – Carousel – A free Image Slider Widget. Could be used as image slider, logo carousel, content slider, template slider (Pro). Creat unique looking hero section with this slider. It is fully responsive and has full width and full screen options. Also Pro version comes with Ken Burns effect & animated content.

    \n

    6. Testimonial Slider

    \n

    Testimonial Slider – A free Testimonial Slider Widget. This widget will showcase your customers reviews on your WordPress website. The widget offers following options: customers reviews slider, testimonials ratings (stars), company logo option, clients/customer image, texts with vintage quotes.

    \n

    7. Elementor Menu widget

    \n

    Nav Menu – A free Nav Menu Widget. This widget will make your WordPress Menu trully unique by customizing its look and feel without using code. Addon offers following options: mobile menu customization, drop down menu setup, hamburger menu, menu hover effects and hover animations. Also Pro version offers vertical menu and sticky header. Most advanced & customizable responsive menu.

    \n

    8. Onepage Navigation

    \n

    Onepage Navigation – A free Onepage Navigation Widget. This widget allows you to create an amazing onepage scroll experiance WordPress website with just a few clicks. Can be used to create floating menu, sticky navigation menu, side menu with icons to scroll to any section.

    \n

    9. Pricing Table

    \n

    Pricing Table – A free Pricing Table Widget. This Pricing Comparison Table widget helps you to create an effective price comparison table with unique styling, which allows you to display not just the cost, but also the features you offer. A widget could be used as a regular pricing table & as a pricing table with a toggle button to switch from Monthly/Yearly plans. Pro version offers different tooltip options for each pricing table feature, also it’s possible to have more than 2 pricing plans switcher, like Monthly/Yearly/Lifetime (You can check the demo on the widget preview page).

    \n

    10. Content Toggle

    \n

    Content Toggle – A free Content Toggle Widget. You can load Elementor Templates or simply insert images and text to style it the way you want. A widget could be used as a pricing switcher as well, for example, to switch between Monthly/Yearly/Lifetime pricing plans. Pro version offers more than 2 toggle options – Check out the widget demo page to see all its possibilities.

    \n

    11. Countdown Timer

    \n

    Countdown Timer – This widget allows you to display a timer that counts down to a specific time or date. A widget could be used as a black Friday sale countdown timer, to create urgency for users for your event, sales, or opt-in forms. You can set various actions after the timer expires: hide the timer, display a message, redirect or load the template. The Pro version offers an Evergreen timer (checkout widget demo page), recurring countdown timer, and restart timer options.

    \n

    12. Progress Bar

    \n

    Progress Bar – This Skill Bar widget offers unique ways to style various types of stats in percentages or numbers, can be used for classic animated progress bars, circle progress bars, or vertical progress bars (Pro).

    \n

    13. Advanced Tabs

    \n

    Tabs – This Advanced Tab widget lets you display key information in an interactive manner, that attracts visitors and also saves lots of space on your WordPress webpage. The widget offers horizontal tabs, vertical tabs, tab loading animation effects, and more. Trigger tab via mouse hover or click both options are available. Also, you can have nested tabs via the elementor templates loader which means you can use any elementor addons inside tab content.

    \n

    14. Advanced Text

    \n

    Advanced Text – Fancy Text – This Text animation widget lets you highlight any text with different colors, animation, and typing effects to draw your visitor’s attention instantly. Available effects: typewriter effect, fancy text effect, animated text effect, highlighted text effect, text-shadow effect, text over image effect, text and image mask effect, 3d text effect, text slider, gradient text, the background image on text, text glitch effect, text long colored shadow effect, word animation effect, text skew effect, text flip vertical and horizontal effect, slide, clip, zoom, scale, circle line, underline zigzag line, curly line, cross x line, line through and others. Pro Version offers extra effects and functionalities.

    \n

    15. Flip Box

    \n

    Flip Box – A free Flip Box Widget. This widget with hover box animation and call-to-action buttons will highlight your content in a great way and allows you to create stunning promo boxes and ads with CTA button functionality. The widget offers more flipping effects in the pro version and some extra functionality as well.

    \n

    16. Promo Box

    \n

    Promo Box – With this widget, you can create: a clickable image with varios effects like: a clickable image with image hover effects, option to add text over image, display call to action button over image, and many other options. Create a stunning sale or discount banners with CTA buttons and badges with this addon. The Pro Version offers extra effects and functionalities.

    \n

    17. Before After Slider

    \n

    Before After Slider – Image comparison Slider – A free Image comparison slider. This addon can compare two pictures with draggable or mouse hover options in horizontal and vertical(Pro) layouts.

    \n

    18. Image Hotspot

    \n

    Image Hotspots – A free Image Map Widget to build image hotspot maps, allows you to create hot spot image with 2x points on it. Add tooltips to icons to make it stunning and informative. The PRO versions offer unlimited hotspot points.

    \n

    19. Forms Styler

    \n

    Forms – This Form widget comes with the following options: contact form 7 styler, Gravity forms styler, Ninja Forms styler, and WPforms styler.

    \n

    20. MailChimp Subscribe

    \n

    MailChimp – This Newsletter addon helps you to collect emails from your website visitors by creating stunning email opt-in forms. Our Mailchimp Form is the best free Mailchimp integration tool for your WordPress website. Add …

    \n", "screenshots": "
    1. \"\"
    2. \"\"
    3. \"\"
    4. \"\"
    5. \"\"
    6. \"\"
    7. \"\"
    8. \"\"
    ", "installation": "

    Note : This plugin works with Elementor. Make sure you have Elementor installed.

    \n
      \n
    1. Install the plugin through the WordPress plugins screen directly, or Upload the plugin files to the /wp-content/plugins/royal-elementor-addons directory,
    2. \n
    3. Activate the plugin through the ‘Plugins’ screen in WordPress
    4. \n
    5. All Settings will be found in Admin sidebar menu -> Royal Addons
    6. \n
    7. Also you can see all Widgets under the category “Royal Elementor Addons” inside Elementor editor in your element/widget list.
    8. \n
    \n

    If you have any questions please check out FAQ page or contact us via this Contact form

    \n"}, "versions": {"1.2": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.zip", "1.0.0": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.1.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.2.zip", "1.7.1": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1.zip", "trunk": "https://downloads.wordpress.org/plugin/royal-elementor-addons.zip", "1.3.21": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.21.zip", "1.3.22": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.22.zip", "1.3.23": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.23.zip", "1.3.24": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.24.zip", "1.3.25": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.25.zip", "1.3.26": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.26.zip", "1.3.27": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.27.zip", "1.3.28": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.28.zip", "1.3.29": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.29.zip", "1.3.30": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.30.zip", "1.3.31": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.31.zip", "1.3.32": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.32.zip", "1.3.33": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.33.zip", "1.3.34": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.34.zip", "1.3.35": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.35.zip", "1.3.36": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.36.zip", "1.3.37": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.37.zip", "1.3.38": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.38.zip", "1.3.39": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.39.zip", "1.3.40": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.40.zip", "1.3.41": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.41.zip", "1.3.42": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.42.zip", "1.3.43": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.43.zip", "1.3.44": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.44.zip", "1.3.45": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.45.zip", "1.3.46": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.46.zip", "1.3.47": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.47.zip", "1.3.48": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.48.zip", "1.3.49": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.49.zip", "1.3.50": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.50.zip", "1.3.51": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.51.zip", "1.3.52": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.52.zip", "1.3.53": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.53.zip", "1.3.54": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.54.zip", "1.3.55": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.55.zip", "1.3.56": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.56.zip", "1.3.57": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.57.zip", "1.3.58": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.58.zip", "1.3.59": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.59.zip", "1.3.60": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.60.zip", "1.3.61": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.61.zip", "1.3.62": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.62.zip", "1.3.63": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.63.zip", "1.3.64": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.64.zip", "1.3.65": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.65.zip", "1.3.66": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.66.zip", "1.3.67": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.67.zip", "1.3.68": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.68.zip", "1.3.69": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.69.zip", "1.3.70": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.70.zip", "1.3.71": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.71.zip", "1.3.72": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.72.zip", "1.3.73": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.73.zip", "1.3.74": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.74.zip", "1.3.75": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.75.zip", "1.3.76": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.76.zip", "1.3.77": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.77.zip", "1.3.78": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.78.zip", "1.3.79": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.79.zip", "1.3.80": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.80.zip", "1.3.81": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.81.zip", "1.3.82": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.82.zip", "1.3.83": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.83.zip", "1.3.84": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.84.zip", "1.3.85": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.85.zip", "1.3.86": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.86.zip", "1.3.87": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.87.zip", "1.3.88": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.88.zip", "1.3.89": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.89.zip", "1.3.90": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.90.zip", "1.3.91": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.91.zip", "1.3.92": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.92.zip", "1.3.93": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.93.zip", "1.3.94": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.94.zip", "1.3.95": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.95.zip", "1.3.96": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.96.zip", "1.3.97": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.97.zip", "1.3.971": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.971.zip", "1.3.972": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.972.zip", "1.3.973": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.973.zip", "1.3.974": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.974.zip", "1.3.975": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.975.zip", "1.3.976": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.976.zip", "1.3.977": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.977.zip", "1.3.978": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.978.zip", "1.3.979": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.979.zip", "1.3.980": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.980.zip", "1.3.981": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.981.zip", "1.3.982": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.982.zip", "1.3.983": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.983.zip", "1.3.984": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.984.zip", "1.3.985": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.985.zip", "1.3.986": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.986.zip", "1.3.987": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.987.zip", "1.7.1001": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1001.zip", "1.7.1002": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1002.zip", "1.7.1003": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1003.zip", "1.7.1004": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1004.zip", "1.7.1005": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1005.zip", "1.7.1006": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1006.zip", "1.7.1007": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1007.zip", "1.7.1008": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1008.zip", "1.7.1009": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1009.zip", "1.7.1010": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1010.zip", "1.7.1011": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1011.zip", "1.7.1012": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1012.zip", "1.7.1013": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1013.zip", "1.7.1014": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1014.zip", "1.7.1015": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1015.zip", "1.7.1016": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1016.zip", "1.7.1017": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1017.zip", "1.7.1018": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1018.zip", "1.7.1019": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1019.zip", "1.7.1020": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1020.zip", "1.7.1021": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1021.zip", "1.7.1022": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1022.zip", "1.7.1023": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1023.zip", "1.7.1024": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1024.zip", "1.7.1025": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1025.zip", "1.7.1026": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1026.zip", "1.7.1027": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1027.zip", "1.7.1028": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1028.zip", "1.7.1029": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1029.zip", "1.7.1030": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1030.zip", "1.7.1031": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1031.zip", "1.7.1032": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1032.zip", "1.7.1033": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1033.zip", "1.7.1034": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1034.zip", "1.7.1035": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1035.zip", "1.7.1036": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1036.zip"}, "downloaded": 13923945, "description": "

    Royal Elementor addons is the most versatile, intuitive, and easy to use Popular Page Builder extension. Our goal is to provide you with the tools to make things happen, efficiently, and fast compare to other elementor addons. Choosing us is not only a mindset, but it is also a requirement if you intend to gain an edge over your competitors when creating your website. The best part is that you can design anything without having to touch a single line of code.

    \n

    Comes with 100+ Elementor addons, 140+ Elementor Templates KIT (Growing Each Week), Theme Builder, WooCommerce Builder, Elementor Mega Menu Builder, Popup Builder, Premade Widget Blocks & Extensions. Creative and self-intuitive widgets to take your WordPress website to the next level. All widgets are Free and the Pro Version offers even more advanced functionality.

    \n

    Free and Pro functionalities are mixed in the Widget Demos below.

    \n

    Plugin Demo Page
    \nElementor Templates Demo Page
    \nWoocommerce Elementor Templates Demo Page

    \n

    Widget List:

    \n\n

    Woocommerce Widgets:

    \n\n

    Extensions and Other Features

    \n\n

    Elementor Wocommerce Builder Templates Kits

    \n\n

    Elementor Theme Builder Templates Kits

    \n\n

    Elementor Templates Kits

    \n\n

    How to Import Template Kit:

    \n

    Navigate to plugin Menu > Templates Kit > Select Kit you want to import > Click on the import Template Kit button.
    \nDemo Data will be installed from Our Website.
    \nWhat’s imported: Posts, pages, images in the media library, menu items, some basic settings like which page will be set as homepage, premade headers, and premade footers, popups if demo includes it.
    \nIf you already have posts, pages, or any other data in your WordPress none of them will be deleted.

    \n

    Widgets short Description:

    \n

    1. Elementor Post Grid

    \n

    Post Grid – Post Slider – Post Carousel – A free Elementor Post grid widget. This widget could be used as a recent posts slider, post carousel, FitRows grid, masonry grid (Pro), portfolio grid, list style grid, filtrable grid if you will enable isotope filters, media grid for video project showcase and more. Simply the best solution for WordPress blog posts or custom post types. Comes with the following options: multicolumns, numbered pagination, random post display option, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for filters, grid filters (live filters with isotope) and much more.

    \n

    2. Elementor Woocommerce Grid

    \n

    WooCommerce Product Grid – Product Slider – Product Carousel – A free WooCommerce Grid Widget. Could be used as product carousel, product slider, product list, product category grid, category carousel, category slider, filtrable grid to display wooCommerce products and much more. This elementor addon comes with the following options: multicolumn, numbered pagination, load more button, infinite scroll (Pro), product likes (Pro), product sharing (Pro), custom fields (Pro), lightbox with the gallery, linkable filters (deep linking), custom icons for filters, live grid filters (with isotope filters), sorting and much more.

    \n

    3. Image Grid

    \n

    Image Grid – Image Slider – Image Carousel – A free Image Grid Widget. Could be used as an image gallery, logo grid, image slider, image carousel, and much more. Addon comes with the following options: multicolumn grids, numbered pagination, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for the filters, FitRows grid with a isotope filters, masonry grid and much more.

    \n

    Magazine Grid – Slider – A free Magazine Grid Widget. This widget is the #1 Magazine Grid builder widget on the repository. Could be used as magazine layout, newspaper layout, news grid, news slider(PRO).

    \n

    5. Advanced Slider

    \n

    Advanced Slider – Carousel – A free Image Slider Widget. Could be used as image slider, logo carousel, content slider, template slider (Pro). Creat unique looking hero section with this slider. It is fully responsive and has full width and full screen options. Also Pro version comes with Ken Burns effect & animated content.

    \n

    6. Testimonial Slider

    \n

    Testimonial Slider – A free Testimonial Slider Widget. This widget will showcase your customers reviews on your WordPress website. The widget offers following options: customers reviews slider, testimonials ratings (stars), company logo option, clients/customer image, texts with vintage quotes.

    \n

    7. Elementor Menu widget

    \n

    Nav Menu – A free Nav Menu Widget. This widget will make your WordPress Menu trully unique by customizing its look and feel without using code. Addon offers following options: mobile menu customization, drop down menu setup, hamburger menu, menu hover effects and hover animations. Also Pro version offers vertical menu and sticky header. Most advanced & customizable responsive menu.

    \n

    8. Onepage Navigation

    \n

    Onepage Navigation – A free Onepage Navigation Widget. This widget allows you to create an amazing onepage scroll experiance WordPress website with just a few clicks. Can be used to create floating menu, sticky navigation menu, side menu with icons to scroll to any section.

    \n

    9. Pricing Table

    \n

    Pricing Table – A free Pricing Table Widget. This Pricing Comparison Table widget helps you to create an effective price comparison table with unique styling, which allows you to display not just the cost, but also the features you offer. A widget could be used as a regular pricing table & as a pricing table with a toggle button to switch from Monthly/Yearly plans. Pro version offers different tooltip options for each pricing table feature, also it’s possible to have more than 2 pricing plans switcher, like Monthly/Yearly/Lifetime (You can check the demo on the widget preview page).

    \n

    10. Content Toggle

    \n

    Content Toggle – A free Content Toggle Widget. You can load Elementor Templates or simply insert images and text to style it the way you want. A widget could be used as a pricing switcher as well, for example, to switch between Monthly/Yearly/Lifetime pricing plans. Pro version offers more than 2 toggle options – Check out the widget demo page to see all its possibilities.

    \n

    11. Countdown Timer

    \n

    Countdown Timer – This widget allows you to display a timer that counts down to a specific time or date. A widget could be used as a black Friday sale countdown timer, to create urgency for users for your event, sales, or opt-in forms. You can set various actions after the timer expires: hide the timer, display a message, redirect or load the template. The Pro version offers an Evergreen timer (checkout widget demo page), recurring countdown timer, and restart timer options.

    \n

    12. Progress Bar

    \n

    Progress Bar – This Skill Bar widget offers unique ways to style various types of stats in percentages or numbers, can be used for classic animated progress bars, circle progress bars, or vertical progress bars (Pro).

    \n

    13. Advanced Tabs

    \n

    Tabs – This Advanced Tab widget lets you display key information in an interactive manner, that attracts visitors and also saves lots of space on your WordPress webpage. The widget offers horizontal tabs, vertical tabs, tab loading animation effects, and more. Trigger tab via mouse hover or click both options are available. Also, you can have nested tabs via the elementor templates loader which means you can use any elementor addons inside tab content.

    \n

    14. Advanced Text

    \n

    Advanced Text – Fancy Text – This Text animation widget lets you highlight any text with different colors, animation, and typing effects to draw your visitor’s attention instantly. Available effects: typewriter effect, fancy text effect, animated text effect, highlighted text effect, text-shadow effect, text over image effect, text and image mask effect, 3d text effect, text slider, gradient text, the background image on text, text glitch effect, text long colored shadow effect, word animation effect, text skew effect, text flip vertical and horizontal effect, slide, clip, zoom, scale, circle line, underline zigzag line, curly line, cross x line, line through and others. Pro Version offers extra effects and functionalities.

    \n

    15. Flip Box

    \n

    Flip Box – A free Flip Box Widget. This widget with hover box animation and call-to-action buttons will highlight your content in a great way and allows you to create stunning promo boxes and ads with CTA button functionality. The widget offers more flipping effects in the pro version and some extra functionality as well.

    \n

    16. Promo Box

    \n

    Promo Box – With this widget, you can create: a clickable image with varios effects like: a clickable image with image hover effects, option to add text over image, display call to action button over image, and many other options. Create a stunning sale or discount banners with CTA buttons and badges with this addon. The Pro Version offers extra effects and functionalities.

    \n

    17. Before After Slider

    \n

    Before After Slider – Image comparison Slider – A free Image comparison slider. This addon can compare two pictures with draggable or mouse hover options in horizontal and vertical(Pro) layouts.

    \n

    18. Image Hotspot

    \n

    Image Hotspots – A free Image Map Widget to build image hotspot maps, allows you to create hot spot image with 2x points on it. Add tooltips to icons to make it stunning and informative. The PRO versions offer unlimited hotspot points.

    \n

    19. Forms Styler

    \n

    Forms – This Form widget comes with the following options: contact form 7 styler, Gravity forms styler, Ninja Forms styler, and WPforms styler.

    \n

    20. MailChimp Subscribe

    \n

    MailChimp – This Newsletter addon helps you to collect emails from your website visitors by creating stunning email opt-in forms. Our Mailchimp Form is the best free Mailchimp integration tool for your WordPress website. Add …

    \n", "donate_link": "", "num_ratings": 585, "screenshots": {"1": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-1.jpg?rev=2580277", "caption": ""}, "2": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-2.jpg?rev=2580277", "caption": ""}, "3": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-3.jpg?rev=2580279", "caption": ""}, "4": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-4.jpg?rev=2580279", "caption": ""}, "5": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-5.jpg?rev=2580279", "caption": ""}, "6": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-6.jpg?rev=2580279", "caption": ""}, "7": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-7.jpg?rev=2580279", "caption": ""}, "8": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-8.jpg?rev=2580279", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/royal-elementor-addons/", "contributors": {"wprduke": {"avatar": "https://secure.gravatar.com/avatar/5f5f0786fe143d60d62f4e5bc344a80707fd8b6422f74081972c4d70b00c25e9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wprduke/", "display_name": "Duke"}, "wproyal": {"avatar": "https://secure.gravatar.com/avatar/078c5c148dcfcc4983cb3fce756683ce03d7aebb69f1fb9e8ea08232e4b01fea?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wproyal/", "display_name": "WP Royal"}, "cyberpinky": {"avatar": "https://secure.gravatar.com/avatar/eed98dcca4e5e282ea2c107f264aafc91f5d7db869abf875694a0977a6626721?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cyberpinky/", "display_name": "Diana"}, "ggedenidze1982": {"avatar": "https://secure.gravatar.com/avatar/2d9f11cec3f59df2f5b3e395f8a851ddee8144d78b2b1ab5f8122efce9136b21?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ggedenidze1982/", "display_name": "Givi WP Royal Support"}, "rubeushagrid13": {"avatar": "https://secure.gravatar.com/avatar/331321efeb243889f4ce832b9959617b4dd706d13f0d095ec38a303dda9074b3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rubeushagrid13/", "display_name": "George"}, "elementoraddonswpr": {"avatar": "https://secure.gravatar.com/avatar/1133bdfb3ba269f20826868c0bd29989f6179f128839db564bada82d487efdc2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elementoraddonswpr/", "display_name": "Nick WP Royal Support"}}, "last_updated": "2025-10-26 8:30am GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1036.zip", "author_profile": "https://profiles.wordpress.org/wproyal/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-f9f7-7248-b139-c64a659ad13f", "name": "Royal Addons for Elementor – Addons and Templates Kit for Elementor", "slug": "royal-elementor-addons", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761467400, "version": "1.7.1036"}, "support_threads": 40, "requires_plugins": [], "short_description": "Elementor Post Grid, Portfolio, Woocommerce Grid builder Widgets. Slider, Carousel, Form, Testimonial, Gallery, Nav menu addons, Elementor widgets &am …", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 37}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1d93-7122-b7d4-186234ba8815', 'did:web:api.aspiredev.org:packages:wp-plugin:safe-svg', 'safe-svg', 'Safe SVG', '

    Safe SVG is the best way to Allow SVG Uploads in WordPress!

    -

    It gives you the ability to allow SVG uploads whilst making sure that they’re sanitized to stop SVG/XML vulnerabilities affecting your site. It also gives you the ability to preview your uploaded SVGs in the media library in all views.

    -

    Current Features

    -
      -
    • Sanitised SVGs – Don’t open up security holes in your WordPress site by allowing uploads of unsanitised files.
    • -
    • SVGO Optimisation – Runs your SVGs through the SVGO tool on upload to save you space. This feature is disabled by default but can be enabled by adding the following code: add_filter( ''safe_svg_optimizer_enabled'', ''__return_true'' );
    • -
    • View SVGs in the Media Library – Gone are the days of guessing which SVG is the correct one, we’ll enable SVG previews in the WordPress media library.
    • -
    • Choose Who Can Upload – Restrict SVG uploads to certain users on your WordPress site or allow anyone to upload.
    • -
    -

    Initially a proof of concept for #24251.

    -

    SVG Sanitization is done through the following library: https://github.com/darylldoyle/svg-sanitizer.

    -

    SVG Optimization is done through the following library: https://github.com/svg/svgo.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Safe SVG", "slug": "safe-svg", "tags": {"svg": "SVG", "mime": "mime", "media": "media", "vector": "Vector", "security": "security"}, "added": "2015-07-03", "icons": {"1x": "https://ps.w.org/safe-svg/assets/icon.svg?rev=2779013", "svg": "https://ps.w.org/safe-svg/assets/icon.svg?rev=2779013"}, "author": "10up", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/safe-svg/assets/banner-772x250.png?rev=2683939", "high": "https://ps.w.org/safe-svg/assets/banner-1544x500.png?rev=2683939"}, "ratings": {"1": 0, "2": 1, "3": 0, "4": 6, "5": 68}, "version": "2.4.0", "homepage": "https://wordpress.org/plugins/safe-svg/", "requires": "6.6", "sections": {"faq": "\n
    \nCan we change the allowed attributes and tags?\n\n

    \n

    Yes, this can be done using the svg_allowed_attributes and svg_allowed_tags filters.
    \nThey take one argument that must be returned. See below for examples:

    \n
    add_filter( ''svg_allowed_attributes'', function ( $attributes ) {\n\n    // Do what you want here...\n\n    // This should return an array so add your attributes to\n    // to the $attributes array before returning it. E.G.\n\n    $attributes[] = ''target''; // This would allow the target=\"\" attribute.\n\n    return $attributes;\n} );\n\n\nadd_filter( ''svg_allowed_tags'', function ( $tags ) {\n\n    // Do what you want here...\n\n    // This should return an array so add your tags to\n    // to the $tags array before returning it. E.G.\n\n    $tags[] = ''use''; // This would allow the <use> element.\n\n    return $tags;\n} );\n
    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin, but missing ...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rrvoigt on June 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Would have given a 5 star, but it seems support is missing for the taxonomy / terms section (like in categories) upload for SVG images. Keep getting an error that the upload isn''t supported. Hopefully this will be fixed in a future update. Will update once this is added. Cheers!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wonderful + fetaure request

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Stefano (stefacchio) on April 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin! very usefull, but please can you add the possibility to add an inline SVG on the block pasting svg code?

    \n\n\n\n


    Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ELEMENTOR+Safe SVG=It works

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bandgamin on March 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks to the plugin developers. The plugin helped me solve my issue.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Effortless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jimmy Lee (shirtguy72) on November 14, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks for creating this plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Caused very long loading times in homepage translations (wpml)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy headfalcon on July 31, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I didn''t look into it but this plugin caused my homepage in translations to take about 30 seconds to load, instead of 1-2. We use WPML. It was back to normal the moment I deleted the plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Quick and easy!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iz4atkal on July 30, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does what it says. 👍

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Sorry, you are not allowed to upload this file type.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy psyphi on January 10, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello everyone,
    the Plugin does not work for me, I refreshed, logged in and out, checked several different svg files but the uploading is still not possible.
    After having read so many positive reviews I think I am an exception.
    Thanks for any advice!

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    mandatory plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bartesuski on August 16, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I don''t understand why this isn''t in core wordpress. Plugin integrates flawlessly into the website and causes no issues.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does what is says. Quick and easy.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy geonaught on July 15, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does what is says. Quick and easy.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple yet exactly what I needed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jamesstaples on May 17, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy plugin for enabling svg uploads on your wordpress site

    \n
    \n
    \n", "changelog": "

    2.4.0 – 2025-09-22

    \n\n

    2.3.3 – 2025-08-13

    \n\n

    2.3.2 – 2025-07-21

    \n\n

    2.3.1 – 2024-12-05

    \n\n

    2.3.0 – 2024-11-25

    \n\n

    2.2.6 – 2024-08-28

    \n\n

    View historical changelog details here.

    \n", "description": "

    Safe SVG is the best way to Allow SVG Uploads in WordPress!

    \n

    It gives you the ability to allow SVG uploads whilst making sure that they’re sanitized to stop SVG/XML vulnerabilities affecting your site. It also gives you the ability to preview your uploaded SVGs in the media library in all views.

    \n

    Current Features

    \n
      \n
    • Sanitised SVGs – Don’t open up security holes in your WordPress site by allowing uploads of unsanitised files.
    • \n
    • SVGO Optimisation – Runs your SVGs through the SVGO tool on upload to save you space. This feature is disabled by default but can be enabled by adding the following code: add_filter( ''safe_svg_optimizer_enabled'', ''__return_true'' );
    • \n
    • View SVGs in the Media Library – Gone are the days of guessing which SVG is the correct one, we’ll enable SVG previews in the WordPress media library.
    • \n
    • Choose Who Can Upload – Restrict SVG uploads to certain users on your WordPress site or allow anyone to upload.
    • \n
    \n

    Initially a proof of concept for #24251.

    \n

    SVG Sanitization is done through the following library: https://github.com/darylldoyle/svg-sanitizer.

    \n

    SVG Optimization is done through the following library: https://github.com/svg/svgo.

    \n", "installation": "

    Install through the WordPress directory or download, unzip and upload the files to your /wp-content/plugins/ directory

    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/safe-svg.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/safe-svg.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/safe-svg.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/plugin/safe-svg.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/safe-svg.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/safe-svg.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/safe-svg.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/safe-svg.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/safe-svg.1.3.4.zip", "1.4.0": "https://downloads.wordpress.org/plugin/safe-svg.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/safe-svg.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/safe-svg.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/safe-svg.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/safe-svg.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/safe-svg.1.4.5.zip", "1.5.0": "https://downloads.wordpress.org/plugin/safe-svg.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/safe-svg.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/safe-svg.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/safe-svg.1.5.3.zip", "1.6.0": "https://downloads.wordpress.org/plugin/safe-svg.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/safe-svg.1.6.1.zip", "1.7.1": "https://downloads.wordpress.org/plugin/safe-svg.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/safe-svg.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/safe-svg.1.8.1.zip", "1.9.0": "https://downloads.wordpress.org/plugin/safe-svg.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/safe-svg.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/safe-svg.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/safe-svg.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/safe-svg.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/safe-svg.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/safe-svg.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/safe-svg.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/safe-svg.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/safe-svg.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/plugin/safe-svg.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/safe-svg.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/safe-svg.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/safe-svg.2.0.3.zip", "2.1.0": "https://downloads.wordpress.org/plugin/safe-svg.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/safe-svg.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/plugin/safe-svg.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/safe-svg.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/safe-svg.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/safe-svg.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/safe-svg.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/safe-svg.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/safe-svg.2.2.6.zip", "2.3.0": "https://downloads.wordpress.org/plugin/safe-svg.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/safe-svg.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/safe-svg.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/safe-svg.2.3.3.zip", "2.4.0": "https://downloads.wordpress.org/plugin/safe-svg.2.4.0.zip", "trunk": "https://downloads.wordpress.org/plugin/safe-svg.zip", "1.9.10": "https://downloads.wordpress.org/plugin/safe-svg.1.9.10.zip"}, "downloaded": 12157838, "description": "

    Safe SVG is the best way to Allow SVG Uploads in WordPress!

    \n

    It gives you the ability to allow SVG uploads whilst making sure that they’re sanitized to stop SVG/XML vulnerabilities affecting your site. It also gives you the ability to preview your uploaded SVGs in the media library in all views.

    \n

    Current Features

    \n
      \n
    • Sanitised SVGs – Don’t open up security holes in your WordPress site by allowing uploads of unsanitised files.
    • \n
    • SVGO Optimisation – Runs your SVGs through the SVGO tool on upload to save you space. This feature is disabled by default but can be enabled by adding the following code: add_filter( ''safe_svg_optimizer_enabled'', ''__return_true'' );
    • \n
    • View SVGs in the Media Library – Gone are the days of guessing which SVG is the correct one, we’ll enable SVG previews in the WordPress media library.
    • \n
    • Choose Who Can Upload – Restrict SVG uploads to certain users on your WordPress site or allow anyone to upload.
    • \n
    \n

    Initially a proof of concept for #24251.

    \n

    SVG Sanitization is done through the following library: https://github.com/darylldoyle/svg-sanitizer.

    \n

    SVG Optimization is done through the following library: https://github.com/svg/svgo.

    \n", "donate_link": "", "num_ratings": 75, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/safe-svg/", "contributors": {"10up": {"avatar": "https://secure.gravatar.com/avatar/a23224a610fd2e01327438b5faab5749d7afe5bb8a888ca23e7ab751824e5458?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/10up/", "display_name": "10up"}, "jeffpaul": {"avatar": "https://secure.gravatar.com/avatar/c95de1e6c222121175c2c0dddf4631d2ea45704938f53332d12710379c6153e6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jeffpaul/", "display_name": "Jeffrey Paul"}, "enshrined": {"avatar": "https://secure.gravatar.com/avatar/9c4f608be1318c7ca580fff7a037a860abe60a9886a8d12c44be2013c9e20901?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/enshrined/", "display_name": "Daryll Doyle"}}, "last_updated": "2025-09-22 2:09pm GMT", "preview_link": "https://wordpress.org/plugins/safe-svg/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/safe-svg.2.4.0.zip", "author_profile": "https://profiles.wordpress.org/10up/", "business_model": "community", "repository_url": "https://github.com/10up/safe-svg", "upgrade_notice": {"2.2.6": "

    Note that this release bumps the WordPress minimum version from 5.7 to 6.4.

    ", "2.3.0": "

    Note that this release bumps the WordPress minimum version from 6.4 to 6.5.

    ", "2.3.2": "

    Note that this release bumps the WordPress minimum version from 6.5 to 6.6.

    ", "1.9.10": "

    Important: bumped the WordPress minimum version from 4.0 to 4.7 and the PHP minimum version from 5.6 to 7.0.

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fa1f-7384-96cc-0936b3be8546", "name": "Safe SVG", "slug": "safe-svg", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1758550140, "version": "2.4.0"}, "support_threads": 2, "requires_plugins": [], "short_description": "Enable SVG uploads and sanitize them to stop XML/SVG vulnerabilities in your WordPress website.", "author_block_count": "2", "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 1}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1da1-71b0-a016-e5e6a85c6a7a', 'did:web:api.aspiredev.org:packages:wp-plugin:seo-by-rank-math', 'seo-by-rank-math', 'Rank Math SEO – AI SEO Tools to Dominate SEO Rankings', '

    Rank Math SEO – Best SEO Plugin for WordPress

    -

    1st WordPress SEO Plugin to use AI (Artificial Intelligence) 🦾
    -★★★★★

    -

    SEO is the most consistent source of traffic for any website. We created Rank Math, a WordPress SEO plugin with AI SEO features better than ChatGPT, to help every website owner get access to the SEO tools they need to improve their SEO and attract more traffic to their website.

    -

    Try The FREE Demo of Rank Math

    - -

    Features | Why Choose Rank Math? | Compare | Screenshots | Benefits

    -

    SEO might be the best and most consistent source of traffic for one’s website, but it’s not without its quirks. The constant process of optimizing your posts for SEO can sometimes take more time than actually writing the content. If you always feel you can do more on the SEO front for your website but don’t have the time, then Rank Math SEO is what you’re looking for.

    -

    Its host of intelligent features brings top SEO capabilities in your hands that were previously out of reach. The smart automation features give you the power of an entire SEO team with just a few clicks. A well-thought-out design, powerful features, and years of development make Rank Math a game-changing SEO plugin that will level the SEO playing field in your favor to help increase traffic.

    -

    Exclusive Content AI. Write Highly Optimized SEO Content

    - -

    ➜ Use AI SEO to write better than ChatGPT
    -➜ Dynamic Suggestions
    -➜ Intelligent Recommendations
    -➜ Intelligent Questions (With Schema Markup)
    -➜ Smart Link Suggestions
    -➜ Extra Keyword Info
    -➜ Related Keywords
    -➜ Full Control via Role Manager

    -

    Rank Math beats all of its competitors, hands down.

    -

    See the features that are exclusive to the Rank Math plugin and understand why Rank Math is the Best SEO Plugin for WordPress.

    -
      -
    • -

      Setup Wizard (Easy to follow)
      -Rank Math practically configures itself. Rank Math features a step-by-step installation and configuration wizard that sets up SEO for WordPress perfectly.

      -
    • -
    • -

      Google Schema Markup aka Rich Snippets Integrated
      -Configuring Google Schema Markup, aka Rich Snippets, is now easy, thanks to Rank Math. With support for 16+ types of Schema Markups, aka Rich Snippets, including the Rating Schema, you’ll be able to optimize your posts in just a few clicks.

      -
    • -
    • -

      Optimize Unlimited Keywords
      -Unlike other plugins, Rank Math lets you optimize your posts for unlimited focus keywords per post. 5 by default. Increase by adding this filter.

      -
    • -
    • -

      Content AI
      -Rank Math is the FIRST & ONLY SEO plugin that uses AI to help you write content. Your personal AI Assistant for creating SEO-friendly content. Our Content AI takes all the hassle out of writing. It ensures that the content you write is great not only for your visitors but for search engines (SEO) as well. Learn how to use Content AI for writing SEO-optimized content that ranks.

      -
    • -
    • -

      Google Search Console Integration
      -Rank Math saves you a ton of time by integrating with Google Search Console and displaying important information about your website right inside WordPress.

      -
    • -
    • -

      Google Keyword Ranking
      -With the Rank Math plugin, you can track your keyword rankings on Google.

      -
    • -
    • -

      Google Analytics Integration
      -Rank Math offers a one-click solution to install Google Analytics script without pasting anything manually anywhere. You can also exclude the Logged-in users.

      -
    • -
    • -

      Optimal Settings Pre-Selected
      -Configuring an SEO plugin takes time and can be confusing. Rank Math saves you the trouble with its optimal default settings, which are ideal for most websites and, if needed, can be changed.

      -
    • -
    • -

      LSI Keyword Tool Integrated
      -Rank Math’s integrated LSI keyword tool gives you multiple keyword variations of your focus keyword, which helps you attract more traffic to your posts. A free account is needed.

      -
    • -
    • -

      Advanced SEO Analysis Tool
      -With just a single click, Rank Math can perform an SEO analysis for your website.

      -
    • -
    • -

      30 Detailed SEO Tests
      -Rank Math is designed to ultimately supercharge your website’s SEO with its 30 detailed SEO tests. A free account is needed.

      -
    • -
    • -

      Module Based System
      -Rank Math has been designed with a module-based system, each of which can be enabled or disabled as per your needs, giving you extra speed and control.

      -
    • -
    • -

      Smart Redirection Manager
      -Rank Math’s built-in smart redirection manager will help you create, manage, delete, enable, or disable redirects at scale.

      -
    • -
    • -

      Local Business SEO
      -Rank Math is designed to be used by global and local websites alike. With its local SEO features, local sites can stand out in search engine results like Google’s and attract more traffic.

      -
    • -
    • -

      SEO Optimized Breadcrumbs
      -Rank Math can display SEO-optimized Breadcrumbs on all websites, even if the theme doesn’t support Schema.org coding.

      -
    • -
    • -

      404 Monitor
      -Rank Math has a built-in 404 error monitor that helps you find and resolve 404 errors for a better user experience.

      -
    • -
    • -

      Deep Content Analysis Tests
      -On-page SEO is no longer a mystery with Rank Math’s deep content analysis and precise recommendations.

      -
    • -
    • -

      Internal Linking Suggestions
      -Rank Math intelligently suggests other posts from your website for internal linking from your current posts, improving the chances of ranking higher in the SERPs.

      -
    • -
    • -

      Role Manager
      -Even if you have multiple employees managing your website, you can precisely control what each of them has access to in Rank Math with its role manager.

      -
    • -
    • -

      Multisite Ready
      -Whether you run a single WordPress website or an entire network of sites – we are ready for you. Rank Math fully supports the WordPress Multiuser project (WPMU).

      -
    • -
    • -

      It has lightweight code compared to slow-loading in other SEO plugins.
      -Even with significantly more features than other plugins, Rank Math loads amazingly fast and keeps your website fast.

      -
    • -
    -

    Why is Rank Math such a game-changer?

    -
      -
    • -

      Auto Configuration — All you have to do is set a few options, and Rank Math will configure itself ideally for your website.

      -
    • -
    • -

      Super Fast SEO Plugin — Even after packing so many features, Rank Math has a negligible load on your server, thus making it one of the fastest SEO plugins for WordPress.

      -
    • -
    • -

      Automatic Keyword Suggestions from Google — Get keyword suggestions from Google as you start typing letters in the focus keyword field of Rank Math.

      -
    • -
    • -

      New SEO Analyzer — Rank Math’s built-in SEO analysis will give you SEO recommendations that you’d typically spend hundreds of dollars to get.

      -
    • -
    • -

      Elementor SEO – Deep integration with the Elementor Page builder. Now, you don’t need to go back and forth between tabs to configure your page’s SEO. Everything related to SEO for Elementor can be configured in the visual editor.

      -
    • -
    • -

      Divi SEO – One-of-a-kind integration with the Divi Page Builder and theme. Handle everything related to SEO from the page editor screen without jumping back to the default editor. This helps you optimize your website for SEO in real-time.

      -
    • -
    • -

      Page Builder SEO – The Rank Math plugin’s content analysis works perfectly with popular page builders and themes like Oxygen Builder, WPBakery, Avada, Astra, Kadence, Themify, Beaver Builder, Page Builder Framework, Schema theme, Flothemes, OceanWP, etc.

      -
    • -
    • -

      Image SEO – With Rank Math’s perfect solution to add ALT & Title tags on the fly, to optimize images, showing inside the content, and that too for FREE, there is no reason to choose any other SEO solution that does not provide all the essential SEO features.

      -
    • -
    • -

      WooCommerce SEO – Optimizing your store products is easier with Rank Math. SEO Meta tags and Schema are automatically added but can be customized with total control. Rank Math has the most advanced SEO for WooCommerce.

      -
    • -
    • -

      Google AMP SEO – Accelerated Mobile Pages must be prepared for search engines. What better way to do that than letting Rank Math use your regular SEO details and optimizing AMPs based on that data?

      -
    • -
    • -

      bbPress & BuddyPress SEO – User-generated content in bbPress/BuddyPress is optimized correctly, and Rank Math handles all the necessary SEO aspects. Q&A Schema is added to bbPress topics along with other essential meta tags.

      -
    • -
    • -

      Quick Edit SEO Details – Go through many posts/pages quickly by ensuring they are optimized for search engines. Quickly edit multiple SEO fields at once using Rank Math.

      -
    • -
    • -

      Instant Indexing for Google – Instantly getting indexed by Google used to be reserved for huge brands and large websites. Not anymore. Just about anyone can take advantage of Google’s Instant Indexing feature using Rank Math.

      -
    • -
    • -

      Translation Plugins Support — Rank Math works flawlessly with the top translation plugins like WPML, TranslatePress, Weglot, Polylang (not entirely compatible yet), etc., making it a perfect companion.

      -
    • -
    • -

      XML Sitemap – The Rank Math plugin comes with a fast-loading Sitemap feature that works with different post types, including custom ones, and provides deep control. One can also generate a Locations KML file via a filter for Local Sitemap, & a WooCommerce Sitemap.

      -
    • -
    • -

      1-Click Import From Yoast — With a single click of your mouse, Rank Math can import all your settings from Yoast SEO & Yoast SEO Premium to itself. The transfer is instant, and you don’t lose any SERP rankings as a result.

      -
    • -
    • -

      1-Click Import From AIO SEO — Rank Math can also import all your settings from AIO SEO & All in One SEO Pack Pro in a single click. The transfer is instant, and you don’t lose any SERP rankings as a result.

      -
    • -
    • -

      1-Click Import From All in One Schema, SEOPress, and Redirection —Rank Math allows seamless migration of settings from plugins like All In One Schema Rich Snippets, SEOPress (including Pro), and Redirection with just a single click, ensuring no loss of rankings or data during the transfer.

      -
    • -
    -

    Who Can Benefit From Rank Math?

    -

    Rank Math Plugin is perfect for:

    -

    ✔ Bloggers
    -✔ eCommerce Store Owners
    -✔ Niche Sites
    -✔ Businesses
    -✔ Local Businesses
    -✔ Startups
    -✔ The Real Estate
    -✔ Artists & Photographers
    -✔ The Solution Offerer
    -✔ Directories
    -✔ Vloggers (Video Bloggers)
    -✔ Or any WordPress Website

    -

    Take a sneak peek into Rank Math’s features

    -

    Detailed Setup Tutorial

    - -

    BIG Publications are Raving About Rank Math

    -

    Rank Math Reviews

    - - -

    Rank Math Review – Why I Ditched Yoast For Rank Math

    -

    Rank Math on Product Hunt

    -

    Rank Math Plugin Review from an SEO Consultant

    -

    and many more

    -

    Check RANK MATH PRO WHICH MAKES SEO EASIER & FASTER

    - -

    Rank Math FREE VS PRO COMPARISON

    -

    UNIQUE FEATURES OF Rank Math PRO

    -

    Google Analytics & Search Console Integration (The only SEO plugin that provides it)
    -✔ Integrated Google Analytics, AdSense & Search Console Data
    -✔ Analyze the SEO Performance of Each Post & Page
    -✔ See Top Winning/Losing Posts & Keywords
    -✔ Keep Track of Position History
    -✔ Rank Tracker for Important Keywords

    -

    Schema aka Structured Data aka Rich Snippets. The BEST Schema Generator Available Online
    -✔ 20+ Pre-defined Schema types (more than any other plugin) –
    -✔ Import Schema from Other Websites
    -✔ Advanced Schema Builder [Advanced SEOs can use this to create any complex Schema Markup]
    -✔ Schema Templates for Automation
    -✔ Conditional Schema Markup
    -✔ Multiple Location Schema On Any Page (using the Shortcode)

    -

    Automation At Its BEST
    -✔ Automated Image SEO
    -✔ Advanced Filtering for Images [https://i.rankmath.com/zAUHHP]
    -✔ Watermark Your images
    -✔ Advanced Post filtering
    -✔ Bulk Actions [index, noindex, redirect, etc.]
    -✔ Quick Edit SEO Details
    -✔ Bulk Import SEO Meta Details Using CSV file
    -✔ Auto Detect Videos and Generate Schema Markup for Them
    -✔ Auto Fetch Thumbnail, Duration of YouTube & Vimeo Videos
    -✔ Automatically Flush Facebook Thumbnails
    -✔ Open External Links in New Tabs
    -✔ Nofollow External Links
    -✔ Noindex Paginated, Archive, Search Result Pages
    -✔ Instant Indexing for Bing & Yandex [Also Google using our Instant Indexing Plugin]

    -

    WooCommerce SEO
    -✔ Automatic Schema for WooCommerce Products
    -✔ Advanced Open Graph Tags for WooCommerce Products
    -✔ Automatic NoIndex Hidden Products
    -✔ Remove WooCommerce Product and Category Base
    -✔ Add Custom Brands to Products
    -✔ Add Global Identifier Schema Like GTIN/MPN – Even to Variations

    -

    MANY MORE FEATURES
    -✔ PREMIUM 24x7x365 Dedicated Support Managers
    -✔ MOST COMPETITIVE PRICING EVER!

    -

    CHEK ALL THE PREMIUM FEATURES AND PRICING HERE

    -

    CONNECT WITH THE TEAM AND SEO EXPERTS

    -

    JOIN FACEBOOK GROUP COMMUNITY: The purpose of this Facebook group is to have a collective place where the community can help each other, and we can get some feedback to improve Rank Math as well. Joining the group is also a great way to connect with like-minded people and share your SEO experience.

    -

    Branding Guideline

    -

    Rank Math® SEO is a registered trademark. Please use the following format when mentioning the Rank Math plugin anywhere.
    -* Rank Math [correct]
    -* RankMath [incorrect]
    -* Rankmath [incorrect]
    -* rankmath [incorrect]
    -* rankMath [incorrect]

    -

    Getting Started:

    -

    1. How to Setup Rank Math: Once you install Rank Math for the first time, you will be greeted with the Setup Wizard, which is discussed in detail here.

    -

    2. User Documentation: Although Rank Math is already easy to set up, we’ve put together tutorials, guides, and some knowledge bases to help you set up and get started with Rank Math.

    -

    3. Contribute (Sharing is caring): If you are one of those caring hearts that want to help, please check the following resources:
    -* Rank Math’s GitHub repository – Includes all the uncompressed files.
    -* Content Analyzer Code Files – Includes all supplementary uncompressed files.
    -* Translation – If you want to translate the plugin into your local language.

    -

    4. Support Ticket Forum: Our dedicated forum is where you can get support for any issues you face with Rank Math. In the forum, we’ll also try to answer some SEO queries. User experience is important to us, and we aim to answer all the forum queries promptly.

    -

    5. Frequently Asked Questions: Here, we’ve answered the most commonly asked questions about Rank Math. The questions are related to features, pricing, and others.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Rank Math SEO – AI SEO Tools to Dominate SEO Rankings", "slug": "seo-by-rank-math", "tags": {"seo": "seo", "schema": "schema", "redirection": "redirection", "wordpress-seo": "wordpress seo", "google-search-console": "google search console"}, "added": "2018-11-19", "icons": {"1x": "https://ps.w.org/seo-by-rank-math/assets/icon.svg?rev=3218327", "svg": "https://ps.w.org/seo-by-rank-math/assets/icon.svg?rev=3218327"}, "author": "Rank Math SEO", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/seo-by-rank-math/assets/banner-772x250.png?rev=2639678", "high": "https://ps.w.org/seo-by-rank-math/assets/banner-1544x500.png?rev=2639678"}, "ratings": {"1": 173, "2": 41, "3": 48, "4": 129, "5": 6916}, "version": "1.0.256", "homepage": "https://rankmath.com/", "requires": "6.3", "sections": {"faq": "\n
    \nCan I transfer my SEO & Redirection settings from another plugin to Rank Math?\n\n

    \n

    Absolutely. Rank Math has a built-in feature to import SEO settings from popular SEO plugins like Yoast SEO, Yoast SEO Premium, AIO SEO Pack, All In One Schema Rich Snippets, and Redirection. Once you install Rank Math and run the setup wizard, you’ll see a dedicated step where you’ll get to import all your SEO settings to Rank Math.

    \n

    \n
    \nWhat themes does Rank Math support?\n\n

    \n

    Rank Math has been tested with many WordPress themes and supports all major WordPress themes. Since we follow WordPress plugin development guidelines, you can rest assured that Rank Math will work perfectly, no matter your theme. If you’ve installed Rank Math and are facing issues, it might not be because of theme incompatibility. Please contact the support team by opening a support ticket in our support forum, and we will fix it for you.

    \n

    \n
    \nWhat plugins is Rank Math compatible with?\n\n

    \n

    Rank Math has been designed using WordPress’ strict plugin development guidelines and, therefore, is compatible with most plugins. However, you might get unexpected results if you use another SEO plugin that performs any of the functions that Rank Math does. We recommend that you disable or delete other SEO plugins for best results.

    \n

    \n
    \nWill my website slow down if I Install Rank Math?\n\n

    \n

    No. Rank Math’s code has been created and optimized for maximum performance. That is why using Rank Math on your website will not slow down your website. On the contrary, your website will perform better than ever with Rank Math, as it does the job of multiple plugins. Once you remove the unnecessary plugins from your website, your website’s performance is sure to get better.

    \n

    \n
    \nIs creating a Rank Math account needed to use the plugin?\n\n

    \n

    Not at all. Creating a FREE Rank Math account is needed only to utilize our API, which allows you get automatic keyword suggestions from Google and run SEO Site Analysis inside WordPress. You can read more about that here.

    \n

    \n
    \nWill you set up Rank Math on my website?\n\n

    \n

    Rank Math is pretty easy to set up on your website. Apart from detailed instructions on installing Rank Math on our website, we’ve built a user-friendly setup wizard that will help you set up and configure Rank Math ideally for your website. If you face any issues even after using the setup wizard, please get in touch with the support team by sending an email to support@rankmath.com

    \n

    \n
    \nDo I have to remove other SEO plugins if I install Rank Math?\n\n

    \n

    That is recommended. Rank Math is designed to be an all-in-one SEO plugin that handles everything SEO-related. If you use other SEO plugins with Rank Math on your website, not only will the performance of your website be negatively affected, but both plugins working together can produce unexpected SEO results.

    \n

    \n
    \nI already use an SEO plugin. Can I use Rank Math on top of that plugin?\n\n

    \n

    You can, but we do not recommend it. Rank Math has all the functionalities you need in an SEO plugin. You can do that if you still prefer using another plugin for a specific feature. However, we recommend that you turn off that functionality of Rank Math to avoid potential conflicts/issues.

    \n

    \n
    \nWill I lose my rankings if I switch to Rank Math?\n\n

    \n

    No, you won’t. When you install Rank Math, it will seamlessly import your settings from your current SEO plugin. Once the process is complete, the search engines won’t notice a change on your website.

    \n

    If you set up Rank Math from scratch, your search engine rankings will depend on how you configure it. But please be advised that Google and other search engines prefer good, helpful content over anything else.

    \n

    \n
    \nCan I use Rank Math on a WordPress.com website?\n\n

    \n

    Yes, as the plugin is provided through WordPress.org, it is available on WordPress.com as well. However, you might be required to opt for the business plan on WordPress.com.

    \n

    Google is almost never willing to index all the pages and images available on a site. The number of pages and images that get indexed is based on the site’s reputation and the quality of the content, among others.

    \n

    \n
    \nI have further questions; how do I contact you?\n\n

    \n

    Please drop us an email at support@rankmath.com, and we will be more than happy to assist you.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy monoweb on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin, thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not Only Bad, But Very Bad Service

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kajari79 on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am user of Pro version of Rank Math. But after using 10-12 days my experience not good. Many issues occurred. I contacted to support team with a Ticket ID 1117767 before 6 days. But their response are too slow. My problem is not solved. They offer 24x7 support but practically it seems like 1 support in a week. They says premium care but no care about customer''s issue. I am going to cancel my pro subscription and want to get my money back.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Unable to login

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jtohme on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very unprofessional plugin. I''m unable to register on their website and unable to login. I get all kind of errors like: \"Oops! It seems like your account is banned. Please contact us to know more.\"

    \n\n\n\n

    Also, I''m unable to submit a support ticket because they say that I must login to submit a ticket, and I''m unable to login!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    5

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy farbod90 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    best

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    My favourite SEO Plugin for WordPress

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bjburn on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I really like RankMath. Prefer it to other SEO Plugins.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy djdesigner63 on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Beautiful application, well-made and easy to use, I''m using it on www.sergiodangelo.photography

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Aweome

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kewayne on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Use it on all my sites

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Updates need more Q&A before being released

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tranxhdr on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    In the next update, please make it so that \"Add SEO Controls\" is NOT enabled by default? This new feature obliterated the description column. Disabling it made everything back to normal.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wrong SEO Tool for us - You need an SEO Expert

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rockabyeannie on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yeah, No. After a 2 year battle and watching ranking tank to almost nonexistent we removed RankMath. Definitely was not for us. The schema output was messy garbage, very difficult to get all the options set properly, this plugin seriously needs an SEO expert to use properly. We ditched it and 99% of issues have cleared up. This was a big mistake.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Rank Math Outranks Yoast In my Experience by Miles

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy okcirmht on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I had Yoast for many years, thinking I had the best plugin. I am sure they are doing their best, but I could never get anything right with keywords, or even understand how to set them, as limited as they were, they were highly counterintuitive. Some features they said they were offering did not work and despite promises of fixing it, never did. Their autoloading feature regarding redirections was a bloater (I think their plugin generally is), one that you could not get rid off unless you did coding, slowing the site down.

    \n\n\n\n

    I learned about Rank Math by visiting its excellent comparison vids on Youtube (whose presenter really is a gifted explainer) and realized the faults were not just with me and my learning curve. I missed years of the site not being visible, and to give them credit, they did offer a full-hearted apology and have promised they will fix things (for others). I hope they do, but I did deserve a refund for a subscription year I had just started, one I did not receive unfortunately due to their \"policies.\" I can''t understand how large organizations can often miss simple common sense, one that should include making right things they do wrong, and make happiness of their long time customers a goal, even when they leave their ranks due to the company''s faults having caused much harm for their sites over many years.

    \n\n\n\n

    Rank Math is incomparable really. It is highly intuitive and does what it says it does, and almost immediately I could see my posts were appearing on google, and even ranking better, realizing what I had been missing. Their support has been very kind and helpful, and understanding, and even its co-founder actually reaches out to you to welcome you. There are tons of features I still need to learn and consider applying, but I have begun understanding how SEO and ranking work in a way that I could not, or was not motivated, to do with Yoast, because I always dreaded the keyword setting stage.

    \n\n\n\n

    So, do yourself a favor and reconsider your existing SEO plugin in comparison to Rank Math. I strongly recommend using Rank Math. Their explanations are very clear with lots of examples, and when things go wrong with a glitch, they reach out and offer batches until the next release. Finally, I feel I can see where I have gone wrong in ranking efforts, and how I can fix it. No plugin is perfect all the time, but the key is how they treat the problem and their users when it comes up, and I am happy so far on that account too with Rank Math.

    \n
    \n
    \n", "changelog": "

    1.0.256 [Oct 22, 2025]

    \n\n

    Full changelog can be found here – Rank Math changelog

    \n", "description": "

    Rank Math SEO – Best SEO Plugin for WordPress

    \n

    1st WordPress SEO Plugin to use AI (Artificial Intelligence) 🦾
    \n★★★★★

    \n

    SEO is the most consistent source of traffic for any website. We created Rank Math, a WordPress SEO plugin with AI SEO features better than ChatGPT, to help every website owner get access to the SEO tools they need to improve their SEO and attract more traffic to their website.

    \n

    Try The FREE Demo of Rank Math

    \n\n

    Features | Why Choose Rank Math? | Compare | Screenshots | Benefits

    \n

    SEO might be the best and most consistent source of traffic for one’s website, but it’s not without its quirks. The constant process of optimizing your posts for SEO can sometimes take more time than actually writing the content. If you always feel you can do more on the SEO front for your website but don’t have the time, then Rank Math SEO is what you’re looking for.

    \n

    Its host of intelligent features brings top SEO capabilities in your hands that were previously out of reach. The smart automation features give you the power of an entire SEO team with just a few clicks. A well-thought-out design, powerful features, and years of development make Rank Math a game-changing SEO plugin that will level the SEO playing field in your favor to help increase traffic.

    \n

    Exclusive Content AI. Write Highly Optimized SEO Content

    \n\n

    ➜ Use AI SEO to write better than ChatGPT
    \n➜ Dynamic Suggestions
    \n➜ Intelligent Recommendations
    \n➜ Intelligent Questions (With Schema Markup)
    \n➜ Smart Link Suggestions
    \n➜ Extra Keyword Info
    \n➜ Related Keywords
    \n➜ Full Control via Role Manager

    \n

    Rank Math beats all of its competitors, hands down.

    \n

    See the features that are exclusive to the Rank Math plugin and understand why Rank Math is the Best SEO Plugin for WordPress.

    \n
      \n
    • \n

      Setup Wizard (Easy to follow)
      \nRank Math practically configures itself. Rank Math features a step-by-step installation and configuration wizard that sets up SEO for WordPress perfectly.

      \n
    • \n
    • \n

      Google Schema Markup aka Rich Snippets Integrated
      \nConfiguring Google Schema Markup, aka Rich Snippets, is now easy, thanks to Rank Math. With support for 16+ types of Schema Markups, aka Rich Snippets, including the Rating Schema, you’ll be able to optimize your posts in just a few clicks.

      \n
    • \n
    • \n

      Optimize Unlimited Keywords
      \nUnlike other plugins, Rank Math lets you optimize your posts for unlimited focus keywords per post. 5 by default. Increase by adding this filter.

      \n
    • \n
    • \n

      Content AI
      \nRank Math is the FIRST & ONLY SEO plugin that uses AI to help you write content. Your personal AI Assistant for creating SEO-friendly content. Our Content AI takes all the hassle out of writing. It ensures that the content you write is great not only for your visitors but for search engines (SEO) as well. Learn how to use Content AI for writing SEO-optimized content that ranks.

      \n
    • \n
    • \n

      Google Search Console Integration
      \nRank Math saves you a ton of time by integrating with Google Search Console and displaying important information about your website right inside WordPress.

      \n
    • \n
    • \n

      Google Keyword Ranking
      \nWith the Rank Math plugin, you can track your keyword rankings on Google.

      \n
    • \n
    • \n

      Google Analytics Integration
      \nRank Math offers a one-click solution to install Google Analytics script without pasting anything manually anywhere. You can also exclude the Logged-in users.

      \n
    • \n
    • \n

      Optimal Settings Pre-Selected
      \nConfiguring an SEO plugin takes time and can be confusing. Rank Math saves you the trouble with its optimal default settings, which are ideal for most websites and, if needed, can be changed.

      \n
    • \n
    • \n

      LSI Keyword Tool Integrated
      \nRank Math’s integrated LSI keyword tool gives you multiple keyword variations of your focus keyword, which helps you attract more traffic to your posts. A free account is needed.

      \n
    • \n
    • \n

      Advanced SEO Analysis Tool
      \nWith just a single click, Rank Math can perform an SEO analysis for your website.

      \n
    • \n
    • \n

      30 Detailed SEO Tests
      \nRank Math is designed to ultimately supercharge your website’s SEO with its 30 detailed SEO tests. A free account is needed.

      \n
    • \n
    • \n

      Module Based System
      \nRank Math has been designed with a module-based system, each of which can be enabled or disabled as per your needs, giving you extra speed and control.

      \n
    • \n
    • \n

      Smart Redirection Manager
      \nRank Math’s built-in smart redirection manager will help you create, manage, delete, enable, or disable redirects at scale.

      \n
    • \n
    • \n

      Local Business SEO
      \nRank Math is designed to be used by global and local websites alike. With its local SEO features, local sites can stand out in search engine results like Google’s and attract more traffic.

      \n
    • \n
    • \n

      SEO Optimized Breadcrumbs
      \nRank Math can display SEO-optimized Breadcrumbs on all websites, even if the theme doesn’t support Schema.org coding.

      \n
    • \n
    • \n

      404 Monitor
      \nRank Math has a built-in 404 error monitor that helps you find and resolve 404 errors for a better user experience.

      \n
    • \n
    • \n

      Deep Content Analysis Tests
      \nOn-page SEO is no longer a mystery with Rank Math’s deep content analysis and precise recommendations.

      \n
    • \n
    • \n

      Internal Linking Suggestions
      \nRank Math intelligently suggests other posts from your website for internal linking from your current posts, improving the chances of ranking higher in the SERPs.

      \n
    • \n
    • \n

      Role Manager
      \nEven if you have multiple employees managing your website, you can precisely control what each of them has access to in Rank Math with its role manager.

      \n
    • \n
    • \n

      Multisite Ready
      \nWhether you run a single WordPress website or an entire network of sites – we are ready for you. Rank Math fully supports the WordPress Multiuser project (WPMU).

      \n
    • \n
    • \n

      It has lightweight code compared to slow-loading in other SEO plugins.
      \nEven with significantly more features than other plugins, Rank Math loads amazingly fast and keeps your website fast.

      \n
    • \n
    \n

    Why is Rank Math such a game-changer?

    \n
      \n
    • \n

      Auto Configuration — All you have to do is set a few options, and Rank Math will configure itself ideally for your website.

      \n
    • \n
    • \n

      Super Fast SEO Plugin — Even after packing so many features, Rank Math has a negligible load on your server, thus making it one of the fastest SEO plugins for WordPress.

      \n
    • \n
    • \n

      Automatic Keyword Suggestions from Google — Get keyword suggestions from Google as you start typing letters in the focus keyword field of Rank Math.

      \n
    • \n
    • \n

      New SEO Analyzer — Rank Math’s built-in SEO analysis will give you SEO recommendations that you’d typically spend hundreds of dollars to get.

      \n
    • \n
    • \n

      Elementor SEO – Deep integration with the Elementor Page builder. Now, you don’t need to go back and forth between tabs to configure your page’s SEO. Everything related to SEO for Elementor can be configured in the visual editor.

      \n
    • \n
    • \n

      Divi SEO – One-of-a-kind integration with the Divi Page Builder and theme. Handle everything related to SEO from the page editor screen without jumping back to the default editor. This helps you optimize your website for SEO in real-time.

      \n
    • \n
    • \n

      Page Builder SEO – The Rank Math plugin’s content analysis works perfectly with popular page builders and themes like Oxygen Builder, WPBakery, Avada, Astra, Kadence, Themify, Beaver Builder, Page Builder Framework, Schema theme, Flothemes, OceanWP, etc.

      \n
    • \n
    • \n

      Image SEO – With Rank Math’s perfect solution to add ALT & Title tags on the fly, to optimize images, showing inside the content, and that too for FREE, there is no reason to choose any other SEO solution that does not provide all the essential SEO features.

      \n
    • \n
    • \n

      WooCommerce SEO – Optimizing your store products is easier with Rank Math. SEO Meta tags and Schema are automatically added but can be customized with total control. Rank Math has the most advanced SEO for WooCommerce.

      \n
    • \n
    • \n

      Google AMP SEO – Accelerated Mobile Pages must be prepared for search engines. What better way to do that than letting Rank Math use your regular SEO details and optimizing AMPs based on that data?

      \n
    • \n
    • \n

      bbPress & BuddyPress SEO – User-generated content in bbPress/BuddyPress is optimized correctly, and Rank Math handles all the necessary SEO aspects. Q&A Schema is added to bbPress topics along with other essential meta tags.

      \n
    • \n
    • \n

      Quick Edit SEO Details – Go through many posts/pages quickly by ensuring they are optimized for search engines. Quickly edit multiple SEO fields at once using Rank Math.

      \n
    • \n
    • \n

      Instant Indexing for Google – Instantly getting indexed by Google used to be reserved for huge brands and large websites. Not anymore. Just about anyone can take advantage of Google’s Instant Indexing feature using Rank Math.

      \n
    • \n
    • \n

      Translation Plugins Support — Rank Math works flawlessly with the top translation plugins like WPML, TranslatePress, Weglot, Polylang (not entirely compatible yet), etc., making it a perfect companion.

      \n
    • \n
    • \n

      XML Sitemap – The Rank Math plugin comes with a fast-loading Sitemap feature that works with different post types, including custom ones, and provides deep control. One can also generate a Locations KML file via a filter for Local Sitemap, & a WooCommerce Sitemap.

      \n
    • \n
    • \n

      1-Click Import From Yoast — With a single click of your mouse, Rank Math can import all your settings from Yoast SEO & Yoast SEO Premium to itself. The transfer is instant, and you don’t lose any SERP rankings as a result.

      \n
    • \n
    • \n

      1-Click Import From AIO SEO — Rank Math can also import all your settings from AIO SEO & All in One SEO Pack Pro in a single click. The transfer is instant, and you don’t lose any SERP rankings as a result.

      \n
    • \n
    • \n

      1-Click Import From All in One Schema, SEOPress, and Redirection —Rank Math allows seamless migration of settings from plugins like All In One Schema Rich Snippets, SEOPress (including Pro), and Redirection with just a single click, ensuring no loss of rankings or data during the transfer.

      \n
    • \n
    \n

    Who Can Benefit From Rank Math?

    \n

    Rank Math Plugin is perfect for:

    \n

    ✔ Bloggers
    \n✔ eCommerce Store Owners
    \n✔ Niche Sites
    \n✔ Businesses
    \n✔ Local Businesses
    \n✔ Startups
    \n✔ The Real Estate
    \n✔ Artists & Photographers
    \n✔ The Solution Offerer
    \n✔ Directories
    \n✔ Vloggers (Video Bloggers)
    \n✔ Or any WordPress Website

    \n

    Take a sneak peek into Rank Math’s features

    \n

    Detailed Setup Tutorial

    \n\n

    BIG Publications are Raving About Rank Math

    \n

    Rank Math Reviews

    \n\n\n

    Rank Math Review – Why I Ditched Yoast For Rank Math

    \n

    Rank Math on Product Hunt

    \n

    Rank Math Plugin Review from an SEO Consultant

    \n

    and many more

    \n

    Check RANK MATH PRO WHICH MAKES SEO EASIER & FASTER

    \n\n

    Rank Math FREE VS PRO COMPARISON

    \n

    UNIQUE FEATURES OF Rank Math PRO

    \n

    Google Analytics & Search Console Integration (The only SEO plugin that provides it)
    \n✔ Integrated Google Analytics, AdSense & Search Console Data
    \n✔ Analyze the SEO Performance of Each Post & Page
    \n✔ See Top Winning/Losing Posts & Keywords
    \n✔ Keep Track of Position History
    \n✔ Rank Tracker for Important Keywords

    \n

    Schema aka Structured Data aka Rich Snippets. The BEST Schema Generator Available Online
    \n✔ 20+ Pre-defined Schema types (more than any other plugin) –
    \n✔ Import Schema from Other Websites
    \n✔ Advanced Schema Builder [Advanced SEOs can use this to create any complex Schema Markup]
    \n✔ Schema Templates for Automation
    \n✔ Conditional Schema Markup
    \n✔ Multiple Location Schema On Any Page (using the Shortcode)

    \n

    Automation At Its BEST
    \n✔ Automated Image SEO
    \n✔ Advanced Filtering for Images [https://i.rankmath.com/zAUHHP]
    \n✔ Watermark Your images
    \n✔ Advanced Post filtering
    \n✔ Bulk Actions [index, noindex, redirect, etc.]
    \n✔ Quick Edit SEO Details
    \n✔ Bulk Import SEO Meta Details Using CSV file
    \n✔ Auto Detect Videos and Generate Schema Markup for Them
    \n✔ Auto Fetch Thumbnail, Duration of YouTube & Vimeo Videos
    \n✔ Automatically Flush Facebook Thumbnails
    \n✔ Open External Links in New Tabs
    \n✔ Nofollow External Links
    \n✔ Noindex Paginated, Archive, Search Result Pages
    \n✔ Instant Indexing for Bing & Yandex [Also Google using our Instant Indexing Plugin]

    \n

    WooCommerce SEO
    \n✔ Automatic Schema for WooCommerce Products
    \n✔ Advanced Open Graph Tags for WooCommerce Products
    \n✔ Automatic NoIndex Hidden Products
    \n✔ Remove WooCommerce Product and Category Base
    \n✔ Add Custom Brands to Products
    \n✔ Add Global Identifier Schema Like GTIN/MPN – Even to Variations

    \n

    MANY MORE FEATURES
    \n✔ PREMIUM 24x7x365 Dedicated Support Managers
    \n✔ MOST COMPETITIVE PRICING EVER!

    \n

    CHEK ALL THE PREMIUM FEATURES AND PRICING HERE

    \n

    CONNECT WITH THE TEAM AND SEO EXPERTS

    \n

    JOIN FACEBOOK GROUP COMMUNITY: The purpose of this Facebook group is to have a collective place where the community can help each other, and we can get some feedback to improve Rank Math as well. Joining the group is also a great way to connect with like-minded people and share your SEO experience.

    \n

    Branding Guideline

    \n

    Rank Math® SEO is a registered trademark. Please use the following format when mentioning the Rank Math plugin anywhere.
    \n* Rank Math [correct]
    \n* RankMath [incorrect]
    \n* Rankmath [incorrect]
    \n* rankmath [incorrect]
    \n* rankMath [incorrect]

    \n

    Getting Started:

    \n

    1. How to Setup Rank Math: Once you install Rank Math for the first time, you will be greeted with the Setup Wizard, which is discussed in detail here.

    \n

    2. User Documentation: Although Rank Math is already easy to set up, we’ve put together tutorials, guides, and some knowledge bases to help you set up and get started with Rank Math.

    \n

    3. Contribute (Sharing is caring): If you are one of those caring hearts that want to help, please check the following resources:
    \n* Rank Math’s GitHub repository – Includes all the uncompressed files.
    \n* Content Analyzer Code Files – Includes all supplementary uncompressed files.
    \n* Translation – If you want to translate the plugin into your local language.

    \n

    4. Support Ticket Forum: Our dedicated forum is where you can get support for any issues you face with Rank Math. In the forum, we’ll also try to answer some SEO queries. User experience is important to us, and we aim to answer all the forum queries promptly.

    \n

    5. Frequently Asked Questions: Here, we’ve answered the most commonly asked questions about Rank Math. The questions are related to features, pricing, and others.

    \n", "screenshots": "
    1. \"Exclusive

      Exclusive AI Assistant for creating content that ranks.

    2. \"Fully

      Fully integrated with the Gutenberg, aka Block Editor.

    3. \"Optimize

      Optimize Content without any hassle and work with the Classic Editor.

    4. \"Analyze

      Analyze your website''s SEO with one click and fix the issues.

    5. \"Simple

      Simple Setup Wizard with 1-Click Importer.

    6. \"Support

      Support for 15+ Rich Snippet types.

    7. \"No

      No need to pay for any service when you can track keyword ranking changes from our own Search Console.

    8. \"Comes

      Comes with in-built options for social media optimization.

    9. \"Rank

      Rank Math Comes with a 404 monitor and an easy-to-use Redirection Manager.

    10. \"Ground-breaking

      Ground-breaking Integration with Elementor Page Builder.

    11. \"Powerful

      Powerful XML Sitemap.

    12. \"Role

      Role Manager gives you full control. Useful for multi-author sites.

    13. \"Rank

      Rank Math Comes with 15+ FREE modules.

    ", "installation": "
      \n
    1. Visit Plugins > Add New
    2. \n
    3. Search for Rank Math
    4. \n
    5. Install Rank Math once it appears
    6. \n
    7. Activate Rank Math from your Plugins page.
    8. \n
    9. Go to “after activation” below.
    10. \n
    \n

    Manually

    \n
      \n
    1. Upload the seo-by-rank-math folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the Rank Math plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to “after activation” below.
    6. \n
    \n

    After Activation

    \n
      \n
    1. You should see the Rank Math setup wizard.
    2. \n
    3. Go through the setup wizard and set up the plugin for your site.
    4. \n
    5. You’re done!
    6. \n
    \n"}, "versions": {"trunk": "https://downloads.wordpress.org/plugin/seo-by-rank-math.zip", "1.0.216": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.216.zip", "1.0.217": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.217.zip", "1.0.218": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.218.zip", "1.0.219": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.219.zip", "1.0.220": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.220.zip", "1.0.221": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.221.zip", "1.0.222": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.222.zip", "1.0.223": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.223.zip", "1.0.224": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.224.zip", "1.0.225": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.225.zip", "1.0.226": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.226.zip", "1.0.227": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.227.zip", "1.0.228": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.228.zip", "1.0.229": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.229.zip", "1.0.230": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.230.zip", "1.0.231": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.231.zip", "1.0.232": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.232.zip", "1.0.233": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.233.zip", "1.0.234": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.234.zip", "1.0.235": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.235.zip", "1.0.236": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.236.zip", "1.0.237": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.237.zip", "1.0.238": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.238.zip", "1.0.239": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.239.zip", "1.0.240": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.240.zip", "1.0.241": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.241.zip", "1.0.242": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.242.zip", "1.0.243": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.243.zip", "1.0.244": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.244.zip", "1.0.245": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.245.zip", "1.0.246": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.246.zip", "1.0.247": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.247.zip", "1.0.248": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.248.zip", "1.0.249": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.249.zip", "1.0.250": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.250.zip", "1.0.251": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.251.zip", "1.0.252": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.252.zip", "1.0.253": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.253.zip", "1.0.254": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.254.zip", "1.0.255": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.255.zip", "1.0.256": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.256.zip", "1.0.227.1": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.227.1.zip", "1.0.234.1": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.234.1.zip", "1.0.251.1": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.251.1.zip", "1.0.252.1": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.252.1.zip"}, "downloaded": 152922589, "description": "

    Rank Math SEO – Best SEO Plugin for WordPress

    \n

    1st WordPress SEO Plugin to use AI (Artificial Intelligence) 🦾
    \n★★★★★

    \n

    SEO is the most consistent source of traffic for any website. We created Rank Math, a WordPress SEO plugin with AI SEO features better than ChatGPT, to help every website owner get access to the SEO tools they need to improve their SEO and attract more traffic to their website.

    \n

    Try The FREE Demo of Rank Math

    \n\n

    Features | Why Choose Rank Math? | Compare | Screenshots | Benefits

    \n

    SEO might be the best and most consistent source of traffic for one’s website, but it’s not without its quirks. The constant process of optimizing your posts for SEO can sometimes take more time than actually writing the content. If you always feel you can do more on the SEO front for your website but don’t have the time, then Rank Math SEO is what you’re looking for.

    \n

    Its host of intelligent features brings top SEO capabilities in your hands that were previously out of reach. The smart automation features give you the power of an entire SEO team with just a few clicks. A well-thought-out design, powerful features, and years of development make Rank Math a game-changing SEO plugin that will level the SEO playing field in your favor to help increase traffic.

    \n

    Exclusive Content AI. Write Highly Optimized SEO Content

    \n\n

    ➜ Use AI SEO to write better than ChatGPT
    \n➜ Dynamic Suggestions
    \n➜ Intelligent Recommendations
    \n➜ Intelligent Questions (With Schema Markup)
    \n➜ Smart Link Suggestions
    \n➜ Extra Keyword Info
    \n➜ Related Keywords
    \n➜ Full Control via Role Manager

    \n

    Rank Math beats all of its competitors, hands down.

    \n

    See the features that are exclusive to the Rank Math plugin and understand why Rank Math is the Best SEO Plugin for WordPress.

    \n
      \n
    • \n

      Setup Wizard (Easy to follow)
      \nRank Math practically configures itself. Rank Math features a step-by-step installation and configuration wizard that sets up SEO for WordPress perfectly.

      \n
    • \n
    • \n

      Google Schema Markup aka Rich Snippets Integrated
      \nConfiguring Google Schema Markup, aka Rich Snippets, is now easy, thanks to Rank Math. With support for 16+ types of Schema Markups, aka Rich Snippets, including the Rating Schema, you’ll be able to optimize your posts in just a few clicks.

      \n
    • \n
    • \n

      Optimize Unlimited Keywords
      \nUnlike other plugins, Rank Math lets you optimize your posts for unlimited focus keywords per post. 5 by default. Increase by adding this filter.

      \n
    • \n
    • \n

      Content AI
      \nRank Math is the FIRST & ONLY SEO plugin that uses AI to help you write content. Your personal AI Assistant for creating SEO-friendly content. Our Content AI takes all the hassle out of writing. It ensures that the content you write is great not only for your visitors but for search engines (SEO) as well. Learn how to use Content AI for writing SEO-optimized content that ranks.

      \n
    • \n
    • \n

      Google Search Console Integration
      \nRank Math saves you a ton of time by integrating with Google Search Console and displaying important information about your website right inside WordPress.

      \n
    • \n
    • \n

      Google Keyword Ranking
      \nWith the Rank Math plugin, you can track your keyword rankings on Google.

      \n
    • \n
    • \n

      Google Analytics Integration
      \nRank Math offers a one-click solution to install Google Analytics script without pasting anything manually anywhere. You can also exclude the Logged-in users.

      \n
    • \n
    • \n

      Optimal Settings Pre-Selected
      \nConfiguring an SEO plugin takes time and can be confusing. Rank Math saves you the trouble with its optimal default settings, which are ideal for most websites and, if needed, can be changed.

      \n
    • \n
    • \n

      LSI Keyword Tool Integrated
      \nRank Math’s integrated LSI keyword tool gives you multiple keyword variations of your focus keyword, which helps you attract more traffic to your posts. A free account is needed.

      \n
    • \n
    • \n

      Advanced SEO Analysis Tool
      \nWith just a single click, Rank Math can perform an SEO analysis for your website.

      \n
    • \n
    • \n

      30 Detailed SEO Tests
      \nRank Math is designed to ultimately supercharge your website’s SEO with its 30 detailed SEO tests. A free account is needed.

      \n
    • \n
    • \n

      Module Based System
      \nRank Math has been designed with a module-based system, each of which can be enabled or disabled as per your needs, giving you extra speed and control.

      \n
    • \n
    • \n

      Smart Redirection Manager
      \nRank Math’s built-in smart redirection manager will help you create, manage, delete, enable, or disable redirects at scale.

      \n
    • \n
    • \n

      Local Business SEO
      \nRank Math is designed to be used by global and local websites alike. With its local SEO features, local sites can stand out in search engine results like Google’s and attract more traffic.

      \n
    • \n
    • \n

      SEO Optimized Breadcrumbs
      \nRank Math can display SEO-optimized Breadcrumbs on all websites, even if the theme doesn’t support Schema.org coding.

      \n
    • \n
    • \n

      404 Monitor
      \nRank Math has a built-in 404 error monitor that helps you find and resolve 404 errors for a better user experience.

      \n
    • \n
    • \n

      Deep Content Analysis Tests
      \nOn-page SEO is no longer a mystery with Rank Math’s deep content analysis and precise recommendations.

      \n
    • \n
    • \n

      Internal Linking Suggestions
      \nRank Math intelligently suggests other posts from your website for internal linking from your current posts, improving the chances of ranking higher in the SERPs.

      \n
    • \n
    • \n

      Role Manager
      \nEven if you have multiple employees managing your website, you can precisely control what each of them has access to in Rank Math with its role manager.

      \n
    • \n
    • \n

      Multisite Ready
      \nWhether you run a single WordPress website or an entire network of sites – we are ready for you. Rank Math fully supports the WordPress Multiuser project (WPMU).

      \n
    • \n
    • \n

      It has lightweight code compared to slow-loading in other SEO plugins.
      \nEven with significantly more features than other plugins, Rank Math loads amazingly fast and keeps your website fast.

      \n
    • \n
    \n

    Why is Rank Math such a game-changer?

    \n
      \n
    • \n

      Auto Configuration — All you have to do is set a few options, and Rank Math will configure itself ideally for your website.

      \n
    • \n
    • \n

      Super Fast SEO Plugin — Even after packing so many features, Rank Math has a negligible load on your server, thus making it one of the fastest SEO plugins for WordPress.

      \n
    • \n
    • \n

      Automatic Keyword Suggestions from Google — Get keyword suggestions from Google as you start typing letters in the focus keyword field of Rank Math.

      \n
    • \n
    • \n

      New SEO Analyzer — Rank Math’s built-in SEO analysis will give you SEO recommendations that you’d typically spend hundreds of dollars to get.

      \n
    • \n
    • \n

      Elementor SEO – Deep integration with the Elementor Page builder. Now, you don’t need to go back and forth between tabs to configure your page’s SEO. Everything related to SEO for Elementor can be configured in the visual editor.

      \n
    • \n
    • \n

      Divi SEO – One-of-a-kind integration with the Divi Page Builder and theme. Handle everything related to SEO from the page editor screen without jumping back to the default editor. This helps you optimize your website for SEO in real-time.

      \n
    • \n
    • \n

      Page Builder SEO – The Rank Math plugin’s content analysis works perfectly with popular page builders and themes like Oxygen Builder, WPBakery, Avada, Astra, Kadence, Themify, Beaver Builder, Page Builder Framework, Schema theme, Flothemes, OceanWP, etc.

      \n
    • \n
    • \n

      Image SEO – With Rank Math’s perfect solution to add ALT & Title tags on the fly, to optimize images, showing inside the content, and that too for FREE, there is no reason to choose any other SEO solution that does not provide all the essential SEO features.

      \n
    • \n
    • \n

      WooCommerce SEO – Optimizing your store products is easier with Rank Math. SEO Meta tags and Schema are automatically added but can be customized with total control. Rank Math has the most advanced SEO for WooCommerce.

      \n
    • \n
    • \n

      Google AMP SEO – Accelerated Mobile Pages must be prepared for search engines. What better way to do that than letting Rank Math use your regular SEO details and optimizing AMPs based on that data?

      \n
    • \n
    • \n

      bbPress & BuddyPress SEO – User-generated content in bbPress/BuddyPress is optimized correctly, and Rank Math handles all the necessary SEO aspects. Q&A Schema is added to bbPress topics along with other essential meta tags.

      \n
    • \n
    • \n

      Quick Edit SEO Details – Go through many posts/pages quickly by ensuring they are optimized for search engines. Quickly edit multiple SEO fields at once using Rank Math.

      \n
    • \n
    • \n

      Instant Indexing for Google – Instantly getting indexed by Google used to be reserved for huge brands and large websites. Not anymore. Just about anyone can take advantage of Google’s Instant Indexing feature using Rank Math.

      \n
    • \n
    • \n

      Translation Plugins Support — Rank Math works flawlessly with the top translation plugins like WPML, TranslatePress, Weglot, Polylang (not entirely compatible yet), etc., making it a perfect companion.

      \n
    • \n
    • \n

      XML Sitemap – The Rank Math plugin comes with a fast-loading Sitemap feature that works with different post types, including custom ones, and provides deep control. One can also generate a Locations KML file via a filter for Local Sitemap, & a WooCommerce Sitemap.

      \n
    • \n
    • \n

      1-Click Import From Yoast — With a single click of your mouse, Rank Math can import all your settings from Yoast SEO & Yoast SEO Premium to itself. The transfer is instant, and you don’t lose any SERP rankings as a result.

      \n
    • \n
    • \n

      1-Click Import From AIO SEO — Rank Math can also import all your settings from AIO SEO & All in One SEO Pack Pro in a single click. The transfer is instant, and you don’t lose any SERP rankings as a result.

      \n
    • \n
    • \n

      1-Click Import From All in One Schema, SEOPress, and Redirection —Rank Math allows seamless migration of settings from plugins like All In One Schema Rich Snippets, SEOPress (including Pro), and Redirection with just a single click, ensuring no loss of rankings or data during the transfer.

      \n
    • \n
    \n

    Who Can Benefit From Rank Math?

    \n

    Rank Math Plugin is perfect for:

    \n

    ✔ Bloggers
    \n✔ eCommerce Store Owners
    \n✔ Niche Sites
    \n✔ Businesses
    \n✔ Local Businesses
    \n✔ Startups
    \n✔ The Real Estate
    \n✔ Artists & Photographers
    \n✔ The Solution Offerer
    \n✔ Directories
    \n✔ Vloggers (Video Bloggers)
    \n✔ Or any WordPress Website

    \n

    Take a sneak peek into Rank Math’s features

    \n

    Detailed Setup Tutorial

    \n\n

    BIG Publications are Raving About Rank Math

    \n

    Rank Math Reviews

    \n\n\n

    Rank Math Review – Why I Ditched Yoast For Rank Math

    \n

    Rank Math on Product Hunt

    \n

    Rank Math Plugin Review from an SEO Consultant

    \n

    and many more

    \n

    Check RANK MATH PRO WHICH MAKES SEO EASIER & FASTER

    \n\n

    Rank Math FREE VS PRO COMPARISON

    \n

    UNIQUE FEATURES OF Rank Math PRO

    \n

    Google Analytics & Search Console Integration (The only SEO plugin that provides it)
    \n✔ Integrated Google Analytics, AdSense & Search Console Data
    \n✔ Analyze the SEO Performance of Each Post & Page
    \n✔ See Top Winning/Losing Posts & Keywords
    \n✔ Keep Track of Position History
    \n✔ Rank Tracker for Important Keywords

    \n

    Schema aka Structured Data aka Rich Snippets. The BEST Schema Generator Available Online
    \n✔ 20+ Pre-defined Schema types (more than any other plugin) –
    \n✔ Import Schema from Other Websites
    \n✔ Advanced Schema Builder [Advanced SEOs can use this to create any complex Schema Markup]
    \n✔ Schema Templates for Automation
    \n✔ Conditional Schema Markup
    \n✔ Multiple Location Schema On Any Page (using the Shortcode)

    \n

    Automation At Its BEST
    \n✔ Automated Image SEO
    \n✔ Advanced Filtering for Images [https://i.rankmath.com/zAUHHP]
    \n✔ Watermark Your images
    \n✔ Advanced Post filtering
    \n✔ Bulk Actions [index, noindex, redirect, etc.]
    \n✔ Quick Edit SEO Details
    \n✔ Bulk Import SEO Meta Details Using CSV file
    \n✔ Auto Detect Videos and Generate Schema Markup for Them
    \n✔ Auto Fetch Thumbnail, Duration of YouTube & Vimeo Videos
    \n✔ Automatically Flush Facebook Thumbnails
    \n✔ Open External Links in New Tabs
    \n✔ Nofollow External Links
    \n✔ Noindex Paginated, Archive, Search Result Pages
    \n✔ Instant Indexing for Bing & Yandex [Also Google using our Instant Indexing Plugin]

    \n

    WooCommerce SEO
    \n✔ Automatic Schema for WooCommerce Products
    \n✔ Advanced Open Graph Tags for WooCommerce Products
    \n✔ Automatic NoIndex Hidden Products
    \n✔ Remove WooCommerce Product and Category Base
    \n✔ Add Custom Brands to Products
    \n✔ Add Global Identifier Schema Like GTIN/MPN – Even to Variations

    \n

    MANY MORE FEATURES
    \n✔ PREMIUM 24x7x365 Dedicated Support Managers
    \n✔ MOST COMPETITIVE PRICING EVER!

    \n

    CHEK ALL THE PREMIUM FEATURES AND PRICING HERE

    \n

    CONNECT WITH THE TEAM AND SEO EXPERTS

    \n

    JOIN FACEBOOK GROUP COMMUNITY: The purpose of this Facebook group is to have a collective place where the community can help each other, and we can get some feedback to improve Rank Math as well. Joining the group is also a great way to connect with like-minded people and share your SEO experience.

    \n

    Branding Guideline

    \n

    Rank Math® SEO is a registered trademark. Please use the following format when mentioning the Rank Math plugin anywhere.
    \n* Rank Math [correct]
    \n* RankMath [incorrect]
    \n* Rankmath [incorrect]
    \n* rankmath [incorrect]
    \n* rankMath [incorrect]

    \n

    Getting Started:

    \n

    1. How to Setup Rank Math: Once you install Rank Math for the first time, you will be greeted with the Setup Wizard, which is discussed in detail here.

    \n

    2. User Documentation: Although Rank Math is already easy to set up, we’ve put together tutorials, guides, and some knowledge bases to help you set up and get started with Rank Math.

    \n

    3. Contribute (Sharing is caring): If you are one of those caring hearts that want to help, please check the following resources:
    \n* Rank Math’s GitHub repository – Includes all the uncompressed files.
    \n* Content Analyzer Code Files – Includes all supplementary uncompressed files.
    \n* Translation – If you want to translate the plugin into your local language.

    \n

    4. Support Ticket Forum: Our dedicated forum is where you can get support for any issues you face with Rank Math. In the forum, we’ll also try to answer some SEO queries. User experience is important to us, and we aim to answer all the forum queries promptly.

    \n

    5. Frequently Asked Questions: Here, we’ve answered the most commonly asked questions about Rank Math. The questions are related to features, pricing, and others.

    \n", "donate_link": "", "num_ratings": 7307, "screenshots": {"1": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-1.gif?rev=2626116", "caption": "Exclusive AI Assistant for creating content that ranks."}, "2": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-2.gif?rev=2626116", "caption": "Fully integrated with the Gutenberg, aka Block Editor."}, "3": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-3.gif?rev=2626116", "caption": "Optimize Content without any hassle and work with the Classic Editor."}, "4": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-4.gif?rev=2626116", "caption": "Analyze your website''s SEO with one click and fix the issues."}, "5": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-5.gif?rev=2626116", "caption": "Simple Setup Wizard with 1-Click Importer."}, "6": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-6.gif?rev=2626116", "caption": "Support for 15+ Rich Snippet types."}, "7": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-7.jpg?rev=2626116", "caption": "No need to pay for any service when you can track keyword ranking changes from our own Search Console."}, "8": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-8.gif?rev=2626116", "caption": "Comes with in-built options for social media optimization."}, "9": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-9.gif?rev=2626116", "caption": "Rank Math Comes with a 404 monitor and an easy-to-use Redirection Manager."}, "10": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-10.jpg?rev=2626116", "caption": "Ground-breaking Integration with Elementor Page Builder."}, "11": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-11.jpg?rev=2626116", "caption": "Powerful XML Sitemap."}, "12": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-12.jpg?rev=2626116", "caption": "Role Manager gives you full control. Useful for multi-author sites."}, "13": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-13.jpg?rev=2626116", "caption": "Rank Math Comes with 15+ FREE modules."}}, "support_url": "https://wordpress.org/support/plugin/seo-by-rank-math/", "contributors": {"rankmath": {"avatar": "https://secure.gravatar.com/avatar/3d9c6d1da105d8ad7373ff738d7163c92c92e1b6f11bdd2b2dc4983e3f9b891c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rankmath/", "display_name": "Rank Math SEO"}}, "last_updated": "2025-10-22 8:41am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.256.zip", "author_profile": "https://profiles.wordpress.org/rankmath/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 3000000, "aspiresync_meta": {"id": "019a30bf-fa57-70af-aa24-f6a66f4bd304", "name": "Rank Math SEO – AI SEO Tools to Dominate SEO Rankings", "slug": "seo-by-rank-math", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761122460, "version": "1.0.256"}, "support_threads": 77, "requires_plugins": [], "short_description": "Rank Math SEO is the best WordPress SEO plugin with the features of many SEO and AI SEO tools in a single package to help multiply your SEO traffic.", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 58}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1db0-73fe-a711-87125c695f3b', 'did:web:api.aspiredev.org:packages:wp-plugin:sg-cachepress', 'sg-cachepress', 'Speed Optimizer – The All-In-One Performance-Boosting Plugin', '

    The award-winning Speed Optimizer plugin is a free WordPress performance-boosting solution to improve user experience, increase conversion rates and drive more traffic. Achieve better SEO rankings, improve Core Web Vitals and enhance your Google Page Speed Score.

    -

    Developed by the WordPress speed experts at SiteGround, our free plugin is actively used and trusted by more than 2 million website owners. It’s specially designed to be easy to use, allowing users of all skill levels to make complex speed optimizations, such as minifying HTML, CSS and JavaScript, image compression and lazy loading, in a few clicks.

    -

    Install our caching plugin now to dramatically improve your WordPress website performance on any hosting platform.

    -

    Essential Speed-boosting Features:

    -
      -
    • Powerful Caching for up to 20% faster website.
    • -
    • Frontend Optimizations to minify JS, HTML and CSS, reducing wait time due to the number of scripts and characters in your code
    • -
    • Media Optimizations by up to 85% image size compression without sacrificing quality
    • -
    • WordPress Environment Optimizations to optimize usage and efficiency of your WordPress site resources
    • -
    • Speed Test & tips to get on-demand optimization tips to help your site get even faster
    • -
    -

    Don’t let a slow website compromise your online success. Join the millions of satisfied website owners and see the difference with the free Speed Optimizer plugin.

    -

    AWARDS:

    -

    Monster Awards 2022: Best WordPress Optimization Plugin 🥈

    -

    Plugin Video

    - -

    Plugin Tutorial

    -

    To gain in-depth knowledge about our plugin and its functionalities, check our Speed Optimizer Tutorial. It provides detailed information on how to optimize each aspect of your site and maximizes your website performance and cache.

    -

    CACHING

    -

    The Caching page gives you full control of your website’s cache, allowing you to enhance its performance significantly. Take advantage of the powerful caching options available to boost your page speed:

    -

    DYNAMIC CACHING:

    -

    By enabling Dynamic Caching, all non-static resources of your website are intelligently cached, eliminating the need for repetitive database queries and enhancing page loading speed and TTFB (time to first byte). This default feature is available exclusively for SiteGround servers, ensuring optimal performance.

    -

    FILE-BASED CACHING:

    -

    By activating file-based caching, your website generates and stores static HTML versions, ensuring faster loading times and an improved user experience. This efficient caching method stores the cached files conveniently in the browser’s memory, allowing future visitors to access your site swiftly and seamlessly.

    -

    MEMCACHED:

    -

    Unleash the power of object caching for your WordPress website. Memcached revolutionizes website performance by storing frequently executed queries to your databases and reusing them for lightning-fast website results. This powerful feature is exclusively available in the SiteGround environment.

    -

    CACHING SETTINGS:

    -
      -
    • Automatic Cache Purge: ensure the cache is cleared whenever necessary
    • -
    • Manual Cache Purge: purge cache manually if you are editing new material and do not have automatic purge activated.
    • -
    • Browser-specific Caching: generate caching separately for different browsers
    • -
    • Exclude Post Types from Caching: exclude specific post types from being cached
    • -
    • Exclude URLs from Caching: exclude specific URLs or utilize wildcards to exclude any sub-pages of a designated “parent-page.”
    • -
    • Test URL Caching Status: verify if dynamic caching is actively running on specific URLs
    • -
    -

    ENVIRONMENT OPTIMIZATIONS

    -

    Optimize and fine-tune your site’s environment for optimal website performance:

    -

    HTTPS Enforce:

    -

    Ensure a secure browsing experience for your visitors by effortlessly enabling HTTPS for your site. Say goodbye to insecure content errors and build trust with your audience.

    -

    Scheduled Database Maintenance:

    -

    Take control of your database by activating the Database Optimization feature. This functionality removes unnecessary items and optimizes your database tables, leading to improved efficiency and website performance. If you’re using the InnoDB storage engine, table optimisation is automatically handled by the engine itself.

    -

    Heartbeat Control:

    -

    Manage the frequency of the WP Heartbeat for different areas of your website. By default, the WordPress Heartbeat API checks for scheduled tasks every 15 seconds on post edit pages and every 60 seconds on the dashboard and front end. With Heartbeat Control, you can adjust the frequency of these checks or even disable them entirely, providing you with greater control over resource allocation.

    -

    FRONTEND OPTIMIZATIONS

    -

    Enhance and fine-tune the performance of your website’s front end by minifying JS, HTML and CSS:

    -

    CSS Tab:

    -

    Minify CSS files, activate or deactivate CSS combinations to reduce server requests, and even preload combined CSS for optimized performance. Additionally, you can exclude specific styles from being combined or minified, giving you complete control over your CSS optimization.

    -

    JavaScript Tab:

    -

    Activate or deactivate Minify JavaScript Files to reduce script sizes and lower the number of server requests. You can also defer render-blocking JavaScript to expedite the initial page speed. Furthermore, you have the ability to exclude specific scripts from various optimisation processes, providing flexibility in optimizing your JavaScript resources.

    -

    General Tab:

    -

    Further optimization options include:

    -
      -
    • Web Fonts Optimization: Enhance the loading of Google fonts by adding a preconnect link in your head tag. This informs the browser to establish a connection to Google’s font repository as quickly as possible. Additionally, all other local fonts will be preloaded, resulting in faster caching and rendering. When combined with CSS Combination, we also modify the font-display property to improve rendering speed.
    • -
    • Fonts Preloading: With locally hosted fonts being preloaded, you’re allowing browsers to cache and render them at an accelerated pace.
    • -
    • Remove Query Strings from Static Resources: Improve caching efficiency by removing query strings from static resources, optimizing their caching capabilities.
    • -
    • Disable Emojis: Prevent WordPress from detecting and generating emojis on your pages by disabling emojis support. This helps boost your page speed and improve your website performance.
    • -
    • DNS Pre-fetch for External Domains: Enabling the DNS Pre-fetch for a domain will resolve it before resources from it get requested making those resources load faster.
    • -
    -

    MEDIA OPTIMIZATIONS

    -

    Optimize your website media by reducing image size by up to 85% times while maintaining top-notch quality.

    -

    Image Compression:

    -

    Effortlessly compress images to resize your existing images and reduce the space they occupy on your server. The dimensions of the images will remain unchanged, allowing for optimized storage. Fine-tune the compression level and choose whether to create backups of the original images. Please note that image compression feature is exclusive to the SiteGround Environment.

    -

    WebP Images:

    -

    Leverage the power of WebP, a cutting-edge image format supported by modern browsers, to significantly reduce the size of your images and skyrocket your page speed. If a browser doesn’t support WebP, the original images will be loaded.

    -

    Lazy Load Media:

    -

    Take control of your website’s asset loading with the ability to enable or disable Lazy Load for various assets. You can exclude specific assets such as iframes, videos, thumbnails, widgets, and shortcodes from the dropdown menu. Additionally, you have the option to exclude specific images from the Lazy Load by adding their respective class in the dedicated tab.

    -

    Maximum Image Width:

    -

    If you frequently upload large images to your website, you can enable the Maximum Image Width option that automatically resizes existing and future images whose width exceeds 2560 pixels. By optimizing image sizes, you can enhance your website performance and reduce bandwidth usage.
    -You can customize your media optimisation to your specific needs using the filters, we’ve designed for this purpose.

    -

    SPEED TEST

    -

    Evaluate the optimization level of your website with Speed Optimizer’s Speed test tool. Our website performance check utilizes the robust capabilities of Google PageSpeed to provide comprehensive insights into your site’s optimization. By conducting the speed test, you will receive detailed results highlighting areas that can be further optimized for enhanced performance. These insights will empower you to fine-tune your website and unlock its maximum potential and increase conversions.

    -

    Requirements

    -

    In order to work correctly, this plugin requires that your server meets the following criteria:

    -
      -
    • WordPress 4.7
    • -
    • PHP 7.0+
    • -
    -

    Our plugin uses a cookie in order to function properly. It does not store personal data and is used solely for the needs of our caching system.

    -

    Data Collection

    -

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    -

    Credits

    -

    Photo credits to Anna Shvets https://www.pexels.com/@shvetsa

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Speed Optimizer – The All-In-One Performance-Boosting Plugin", "slug": "sg-cachepress", "tags": {"nginx": "nginx", "speed": "speed", "caching": "caching", "siteground": "SiteGround", "performance": "performance"}, "added": "2014-11-25", "icons": {"1x": "https://ps.w.org/sg-cachepress/assets/icon-128x128.gif?rev=2971889", "2x": "https://ps.w.org/sg-cachepress/assets/icon-256x256.gif?rev=2971889"}, "author": "SiteGround", "rating": 84, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/sg-cachepress/assets/banner-772x250.png?rev=2971889", "high": "https://ps.w.org/sg-cachepress/assets/banner-1544x500.png?rev=2971889"}, "ratings": {"1": 84, "2": 27, "3": 31, "4": 24, "5": 454}, "version": "7.7.2", "homepage": "https://siteground.com", "requires": "4.7", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No Faults, Works Well on My Site

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy WPWarrior on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have no complaints only gratitude for a plugin that does its job. I am thankful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice integration with Siteground hosting

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cabohe on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s a great plugin for basic and quick optimization. For advanced settings and fine-tuning, look for another plugin.

    \n\n\n\n

    I think a great improvement would be an \"Automatic Purge\" option or addon. Sometimes when updating a CPT, the plugin clears the cache, but if I have a custom query on another page of the site, the plugin doesn''t know, and that page is never uncached until I manually clear it.

    \n\n\n\n

    The update could be something like: If I update \"Books\" (CPT) or \"Posts,\" refresh all cache or refresh the cache for specific pages (with a page selector).

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    More Trouble than it is worth

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy profilebusiness947 on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin consistently delivers subpar results. Hours of tuning are usually required to get an acceptable LightHouse score.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast, Simple, Reliable

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ridwanhudhayfahkassis on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to set up and beginner-friendly

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Troublesome plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy patboran on August 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Be very careful of this plugin. Regular warnings from Siteground about the increasing size of my site can be traced back to this plugin storing more than 3GB of cache files, expanded from only a few K a week before, and I''''d done no''d done nothing but add a single WC product to my site with a single jpg! Siteground needs to sort out this problem: it''s not new. Clear cache every time you log in the back end seems to be the only way to stop this monster for screwing everything up

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Clicknathan (clicknathan) on July 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    With this plugin + SiteGround hosting, you can get all of the performance that expensive hosting like Pressable, WP Engine and Flywheel tout, but with better support and way, way cheaper.

    \n\n\n\n

    However, it has a major flaw that SiteGround refuses to admit.

    \n\n\n\n

    If you enable webp images, it will auto-generate those for you from your uploads. However, if you upload your own webp images, and then disable this feature, it deletes all of the webp images you uploaded.

    \n\n\n\n

    I tried to report this to SiteGround, but they insist it is not a bug. Deleting user data without their permission should never happen. Having a feature that, once turned on, can never be turned off without deleting your content, is a bug.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great for the basics

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Dan (dtrim) on June 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It has everything you need for all of the basic speed optimisations and a few more but I''d love to see them develop this further. For one, it''s missing support for embedded YouTube videos.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Elementor compatibility issues

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Kimba (kimba143) on June 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plug-in causes issues with images every time there is an update with elementor. I also find that it slows my site down.

    \n\n\n\n

    update on June 10, 2025

    \n\n\n\n

    I reached out to site ground and they fixed the Issue. I do like this plug-in over some of the other optimizer plug-ins. Usually works well with my site. I am updating from a one star to a four star.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Problem with menus and pop-ups

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Glenn (glennsvfr) on June 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After upgrading Elementor and Elementor Pro to 3.29.1, the speed optimizer caused problems:
    - My burger icon on mobile and tablet version was not clickable anymore.
    - Drop-down menus were not visible in desktop mode
    - It was no longer possible to trigger pop-ups

    \n\n\n\n

    UPDATE:

    \n\n\n\n

    I have been in contact with SiteGround Support. I was recommended to disable all CSS and JS features. That solved the issue.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Problems with menue burger icon from elementor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy goeschi on June 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The speed optimizer caused the problem, that my burger icon on mobile and tablet version was not clickable anymore.

    \n
    \n
    \n", "changelog": "

    Version 7.7.2

    \n

    Release Date: Dec 9th, 2024

    \n
      \n
    • Memcache improvements
    • \n
    • JavaScript Combination improvements
    • \n
    • Database Optimization improvements
    • \n
    • Woocommerce compatibility improvements
    • \n
    • File-caching improvements
    • \n
    \n

    Version 7.7.1

    \n

    Release Date: Nov 21st, 2024

    \n
      \n
    • Translation loading improvements
    • \n
    \n

    Version 7.7.0

    \n

    Release Date: Nov 7th, 2024

    \n
      \n
    • Disable Emojis optimization improvements
    • \n
    • File-Caching improvements
    • \n
    \n

    Version 7.6.8

    \n

    Release Date: Oct 23rd, 2024

    \n
      \n
    • CSS Combination improvements
    • \n
    • File-based caching improvements
    • \n
    • Database-Optimizer improvements
    • \n
    • Improved Memcache handling of excluded options
    • \n
    \n

    Version 7.6.7

    \n

    Release Date: Oct 7th, 2024

    \n
      \n
    • JS & CSS Combination improvements
    • \n
    • Front-end Optimizations improvements
    • \n
    • Image Optimization improvements
    • \n
    \n

    Version 7.6.6

    \n

    Release Date: Sept 18th, 2024

    \n
      \n
    • Templates improvements
    • \n
    • Settings improvements
    • \n
    • SSL improvements
    • \n
    \n

    Version 7.6.5

    \n

    Release Date: Sept 12th, 2024

    \n
      \n
    • Performance Reports improvements
    • \n
    • Message Service improvements
    • \n
    • Admin pages improvements
    • \n
    \n

    Version 7.6.4

    \n

    Release Date: Aug 14th, 2024

    \n
      \n
    • Improved memcache handling of autoload options
    • \n
    • Improved handling of heartbeat optimizations
    • \n
    \n

    Version 7.6.3

    \n

    Release Date: Aug 1st, 2024

    \n
      \n
    • Improved file-based cache purge
    • \n
    • Improved plugin config
    • \n
    • Fixed deprecated warnings in custom WP-CLI commands
    • \n
    \n

    Version 7.6.2

    \n

    Release Date: July 10th, 2024

    \n
      \n
    • Improved Disable Emojis optimization
    • \n
    • Improved JS combination
    • \n
    • Improved Comment cache purge handling
    • \n
    • Improved JS Minification script handling
    • \n
    \n

    Version 7.6.1

    \n

    Release Date: June 25th, 2024

    \n
      \n
    • Improved Multisite performance
    • \n
    • Improved JS combination
    • \n
    \n

    Version 7.6.0

    \n

    Release Date: May 22nd, 2024

    \n
      \n
    • Improved support for PHP 8.2 and 8.3.
    • \n
    • Improved plugin configuration.
    • \n
    \n

    Version 7.5.0

    \n

    Release Date: Mar 21st, 2024

    \n
      \n
    • Security improvements.
    • \n
    • Improved compatibility with WordPress 6.5.
    • \n
    • Plugin optimization.
    • \n
    \n

    Version 7.4.6

    \n

    Release Date: Jan 11th, 2024

    \n
      \n
    • Static assets are now part of the plugin package and load locally.
    • \n
    • New users will be prompted to give their consent for the collection of technical data upon their initial use of the plugin.
    • \n
    \n

    Version 7.4.5

    \n

    Release Date: Dec 12th, 2023

    \n
      \n
    • Improved functionality of Combine JS
    • \n
    • Improved compatibility with plugin “Admin Custom Login”
    • \n
    • Improved users access control
    • \n
    • Fix Image Compression Preview
    • \n
    \n

    Version 7.4.4

    \n

    Release Date: Nov 22nd, 2023

    \n
      \n
    • Dashboard visuals improvements
    • \n
    • Readme file improvements
    • \n
    \n

    Version 7.4.3

    \n

    Release Date: Oct 24th , 2023

    \n
      \n
    • Data collection opt out option
    • \n
    • Readme file formatting improvements
    • \n
    • Plugin name formatting improvements
    • \n
    • Exclude from Deferral compatibility issue with themes twentytwentytwo and twentytwentythree is fixed
    • \n
    \n

    Version 7.4.2

    \n

    Release Date: Sept 26th, 2023

    \n
      \n
    • Changing the name we use inside the plugin from SiteGround Optimizer to Speed Optimizer
    • \n
    • Updating data collection process and introducing a link in the plugin interface to the Plugin Privacy notice
    • \n
    \n

    Version 7.4.1

    \n

    Release Date: Sept 12th, 2023

    \n
      \n
    • Improved performance reports.
    • \n
    \n

    Version 7.4.0

    \n

    Release Date: August 22nd, 2023

    \n
      \n
    • Improved default enabled features.
    • \n
    • Campaign templates update.
    • \n
    • Performance reports for non SiteGround users.
    • \n
    \n

    Version 7.3.4

    \n

    Release Date: July 27th, 2023

    \n
      \n
    • Improved Dynamic Caching handling.
    • \n
    • Improved Speed Test results.
    • \n
    \n

    Version 7.3.3

    \n

    Release Date: June 8th, 2023

    \n
      \n
    • Downgraded wp-background-processing external lib due to incompatibility with third party themes and plugins.
    • \n
    \n

    Version 7.3.2

    \n

    Release Date: June 6th, 2023

    \n
      \n
    • Improved Optimized images filesize detection.
    • \n
    • Improved Defer Render-blocking JavaScript.
    • \n
    • Improved PHP 8.2 compatibility.
    • \n
    • Improved Flo forms and CSS Combination compatibility.
    • \n
    • Improved Avada theme compatibility.
    • \n
    \n

    Version 7.3.1

    \n

    Release Date: Feb 23rd, 2023

    \n
      \n
    • Improved compatibility with WooCommerce related plugins.
    • \n
    • Internal configuration improvements.
    • \n
    \n

    Version 7.3.0

    \n

    Release Date: Feb 1st, 2023

    \n
      \n
    • Improved Multisite File-Based cache support.
    • \n
    • Improved compatibility with woo-variation-swatches and facebook-for-woocommerce plugins.
    • \n
    • Improved compatibility with Foogra theme.
    • \n
    • Internal configuration changes.
    • \n
    \n

    Version 7.2.9

    \n

    Release Date: Dec 2nd, 2022

    \n
      \n
    • Fix for missing apache_response_headers function.
    • \n
    \n

    Version 7.2.8

    \n

    Release Date: Dec 1st, 2022

    \n
      \n
    • Improved namespace performance on other hosts.
    • \n
    • Improved WooCommerce Square plugin support.
    • \n
    \n

    Version 7.2.7

    \n

    Release Date: Nov 30rd, 2022

    \n
      \n
    • Improved Memcache Health status checks
    • \n
    • Improved FileBased Cache cleanup
    • \n
    • Improved FileBased Cache Headers checks
    • \n
    • Improved LazyLoad for sidebar images
    • \n
    • Improved Speed Test results
    • \n
    • Improved Test URL cache status
    • \n
    \n

    Version 7.2.6

    \n

    Release Date: Nov 21st, 2022

    \n
      \n
    • Discontinue of Cloudflare support
    • \n
    \n

    Version 7.2.5

    \n

    Release Date: October 18th, 2022

    \n
      \n
    • Improved Database Optimization interface
    • \n
    • Improved Multisite Memcached support
    • \n
    \n

    Version 7.2.4

    \n

    Release Date: October 11th, 2022

    \n
      \n
    • Memcached Service bug fix
    • \n
    \n

    Version 7.2.3

    \n

    Release Date: October 11th, 2022

    \n
      \n
    • Install Service fix
    • \n
    \n

    Version 7.2.2

    \n

    Release Date: October 10th, 2022

    \n
      \n
    • New filter – Exclude URL from cache
    • \n
    • New filter – Exclude inline scripts from combination
    • \n
    • Improved Database Optimization options
    • \n
    • Improved Memcached service
    • \n
    • Improved Toolset Types plugin support
    • \n
    • Improved admin menu ordering
    • \n
    • Legacy code removed
    • \n
    \n

    Version 7.2.1

    \n

    Release Date: August 10th, 2022

    \n
      \n
    • Improved Cloudflare detection
    • \n
    \n

    Version 7.2.0

    \n

    Release Date: July 14th, 2022

    \n
      \n
    • Brand New Design
    • \n
    • Improved Dynamic cache purge
    • \n
    • Improved data collection
    • \n
    \n

    Version 7.1.5

    \n

    Release Date: June 23rd, 2022

    \n
      \n
    • Improved Memcached service
    • \n
    \n

    Version 7.1.4

    \n

    Release Date: June 21st, 2022

    \n
      \n
    • Improved older PHP versions support
    • \n
    \n

    Version 7.1.3

    \n

    Release Date: June 20th, 2022

    \n
      \n
    • NEW Lazy Load exclude filters
    • \n
    • Improved Max Image Width
    • \n
    • Improved .htaccess modifications checks
    • \n
    • Improved File-Based cache Elementor support
    • \n
    • Improved Password Protected pages excluded from File-Based caching by default
    • \n
    • Improved Single Image compression functionality
    • \n
    • Improved Image Optimization for custom image sizes
    • \n
    • Improved Divi theme support
    • \n
    • Minor fixes
    • \n
    \n

    Version 7.1.2

    \n

    Release Date: June 16th, 2022

    \n
      \n
    • Adding Memcached UNIX socket support
    • \n
    • Improved data collection
    • \n
    \n

    Version 7.1.1

    \n

    Release Date: May 20th, 2022

    \n
      \n
    • Improved default settings
    • \n
    \n

    Version 7.1.0

    \n

    Release Date: May 10th, 2022

    \n
      \n
    • Improved HTTPS Enforce
    • \n
    • Improved Database Optimization
    • \n
    • Improved Auto Purge functionality for scheduled posts
    • \n
    • Improved File-Based cache exclude filtering
    • \n
    • Improved CSS Combination
    • \n
    • Improved JS Minification
    • \n
    • Improved Meks Flexible Shortcodes plugin support
    • \n
    • Improved All in One SEO plugin support
    • \n
    • Improved Authorize.Net Gateway support
    • \n
    \n

    Version 7.0.9

    \n

    Release Date: April 7th, 2022

    \n
      \n
    • Improved SG Security plugin support
    • \n
    \n

    Version 7.0.8

    \n

    Release Date: April 6th, 2022

    \n
      \n
    • Improved File-Based cache checks
    • \n
    • Improved Memcached service checks
    • \n
    • Improved activation checks
    • \n
    • Code Refactoring
    • \n
    \n

    Version 7.0.7

    \n

    Release Date: March 24th, 2022

    \n
      \n
    • Image deletion refactoring
    • \n
    \n

    Version 7.0.6

    \n

    Release Date: March 4th, 2022

    \n
      \n
    • Improved installation for users not hosted on SiteGround
    • \n
    \n

    Version 7.0.5

    \n

    Release Date: March 2nd, 2022

    \n
      \n
    • Improved Cache Preheat
    • \n
    • Improved Auto Purge functionality (File-Based cache, comments, custom post types)
    • \n
    • Improved new images WebP generation
    • \n
    • Improved Multisite support
    • \n
    \n

    Version 7.0.4

    \n

    Release Date: February 28th, 2022

    \n
      \n
    • Improved uninstall checks
    • \n
    \n

    Version 7.0.3

    \n

    Release Date: February 14th, 2022

    \n
      \n
    • Improved Divi support
    • \n
    • Improved WP-CLI support
    • \n
    \n

    Version 7.0.2

    \n

    Release Date: February 10th, 2022

    \n
      \n
    • Improved Cloudflare cache purge
    • \n
    • Improved Divi support
    • \n
    • Improved JS Combination
    • \n
    • Improved WP-CLI support
    • \n
    • Minor bug fixes
    • \n
    \n

    Version 7.0.1

    \n

    Release Date: February 4th, 2022

    \n
      \n
    • Improved Cache Preloading
    • \n
    • Improved Cloudflare detection
    • \n
    • Improved Divi support
    • \n
    • Minor bug fixes
    • \n
    \n

    Version 7.0.0

    \n

    Release Date: February 2nd, 2022

    \n
      \n
    • NEW – Plugin available for users not hosted on SiteGround
    • \n
    • NEW – File-Based Full Page Caching
    • \n
    • NEW – File-Based Full Page Caching for Logged-in Users
    • \n
    • NEW – Cache Preloading (requires FB Caching)
    • \n
    • NEW – Individual Image compression level settings
    • \n
    • Code Refactoring and General Improvements
    • \n
    • Improved HTML Minification
    • \n
    • Improved LazyLoad excludes
    • \n
    • Improved Automatic Purge for custom post types
    • \n
    • Improved Cache exclude for wp-json URLs
    • \n
    • Improved Test URL cache option
    • \n
    • Improved Cloudflare detection
    • \n
    • Improved Phlox theme support
    • \n
    • Improved WooCommerce email verification support
    • \n
    • Improved WP-CLI support
    • \n
    • Environment data collection consent added
    • \n
    \n

    Version 6.0.5

    \n

    Release Date: November 17th, 2021

    \n
      \n
    • Improved HTML minification
    • \n
    \n

    Version 6.0.4

    \n

    Release Date: November 16th, 2021

    \n
      \n
    • Improved HTML minification
    • \n
    • Improved HTTPS Enforce for multisites
    • \n
    • Improved Google PageSpeed Integration
    • \n
    • Improved multisite permissions for admins
    • \n
    • Improved autoflush
    • \n
    \n

    Version 6.0.3

    \n

    Release Date: November 8th, 2021

    \n
      \n
    • Improved translations
    • \n
    • Improved multisite support
    • \n
    • Improved Speed test result
    • \n
    • Improved assets cleanup
    • \n
    • Improved Cloudflare support
    • \n
    \n

    Version 6.0.2

    \n
      \n
    • Improved translations
    • \n
    • Improved image optimization
    • \n
    \n

    Version 6.0.1

    \n
      \n
    • Improved recommended optimizations labels
    • \n
    • Improved REST API error handling
    • \n
    • Improved CF authentication
    • \n
    • Improved multisite interface
    • \n
    • Improved database optimization
    • \n
    • Fixed Memcached healthcheck
    • \n
    \n

    Version 6.0.0

    \n
      \n
    • Brand New Design
    • \n
    • Code Refactoring
    • \n
    • NEW – Recommended Optimizations
    • \n
    • NEW – Plugin Dashboard Page
    • \n
    • NEW – Maximum Image Width
    • \n
    • NEW – Backup Original Images when Optimizing
    • \n
    • NEW – WordPress API Cache Control
    • \n
    • Improved WordPress Heartbeat Optimization
    • \n
    • Improved Image Compression Control
    • \n
    \n

    Version 5.9.7

    \n
      \n
    • Improved cache busting for themes utilizing custom post types
    • \n
    \n

    Version 5.9.6

    \n
      \n
    • Improved WP Json purging mechanisms
    • \n
    • Added protection against cronjob loops caused by 3rd party plugins
    • \n
    • Improved Spam comments handling
    • \n
    \n

    Version 5.9.5

    \n
      \n
    • Improved Page Builders Support (Elementor, Oxygen, Divi and others)
    • \n
    \n

    Version 5.9.4

    \n
      \n
    • Improved smart cache
    • \n
    \n

    Version 5.9.3

    \n
      \n
    • Fixed WebP regeneration issue
    • \n
    \n

    Version 5.9.2

    \n
      \n
    • Improved cache flush queue
    • \n
    \n

    Version 5.9.1

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    Version 5.9.0

    \n
      \n
    • Plugin refactoring
    • \n
    \n

    Version 5.8.5

    \n
      \n
    • Improved CF detection
    • \n
    • Minor bug fixes
    • \n
    \n

    Version 5.8.4

    \n
      \n
    • Improved cache purging mechanism
    • \n
    \n

    Version 5.8.3

    \n
      \n
    • Improved cache purge
    • \n
    \n

    Version 5.8.2

    \n
      \n
    • Improved speed tests
    • \n
    • Improved Google Fonts combination
    • \n
    • Improved HTTPS enforce
    • \n
    \n

    Version 5.8.1

    \n
      \n
    • Improved cache purge
    • \n
    \n

    Version 5.8.0

    \n
      \n
    • Added preloading for combined css scripts
    • \n
    • New and improved performance test
    • \n
    • Design improvements
    • \n
    • Custom error handler removed
    • \n
    • Increased WebP PNG optimization limit
    • \n
    • Changed tutorials urls
    • \n
    • Improved readme file
    • \n
    • Minor bug fixes
    • \n
    \n

    Version 5.7.20

    \n
      \n
    • Perform smart purge on the blog page when editing a post
    • \n
    • Remove jQuery Dependency from Lazy-load
    • \n
    \n

    Version 5.7.19

    \n
      \n
    • Change loseless quality
    • \n
    \n

    Version 5.7.18

    \n
      \n
    • Improved REST API cache invalidation
    • \n
    \n

    Version 5.7.17

    \n
      \n
    • Improved WordPress 5.7 support
    • \n
    \n

    Version 5.7.16

    \n
      \n
    • Improved Contact Form 7 support
    • \n
    • Improved Amelia booking support
    • \n
    • Improved support for sites with custom wp-content dir
    • \n
    \n

    Version 5.7.15

    \n
      \n
    • Improved Contact Form 7 support
    • \n
    \n

    Version 5.7.14

    \n
      \n
    • Improved Vary:User-Agent handling
    • \n
    \n

    Version 5.7.13

    \n
      \n
    • Add settings import/export cli command
    • \n
    • Exclude XML sitemaps from optimizations
    • \n
    • Fix DNS Resolver fatal error for non existing hosts
    • \n
    • Fix Cloudflare optimization for sites with custom wp-content dir
    • \n
    • Improved Speed Test description for Webfonts optimization
    • \n
    \n

    Version 5.7.12

    \n
      \n
    • Improved Feed Cache Flush
    • \n
    \n

    Version 5.7.11

    \n
      \n
    • Improved CloudFlare Optimization
    • \n
    • Add CloudFlare multisite support
    • \n
    • Improved RevSlider support
    • \n
    • Add uploads permissions check
    • \n
    \n

    Version 5.7.10

    \n
      \n
    • Revert to old HTML Minification
    • \n
    \n

    Version 5.7.9

    \n
      \n
    • Fixed bug with WooCommerce ajax
    • \n
    \n

    Version 5.7.8

    \n
      \n
    • Fix HTML Minification Refactoring
    • \n
    \n

    Version 5.7.7

    \n
      \n
    • HTML Minification Refactoring
    • \n
    \n

    Version 5.7.6

    \n
      \n
    • Improved cache flush, on automatic assets deletion
    • \n
    \n

    Version 5.7.5

    \n
      \n
    • Improved Flatsome UX Builder support
    • \n
    • Improved Essential Addons for Elementor support
    • \n
    • Updated readme
    • \n
    \n

    Version 5.7.4

    \n
      \n
    • Improved Leverage Browser Caching rules
    • \n
    • Add exclude by post type
    • \n
    • Improved Cloudflare cache purge
    • \n
    \n

    Version 5.7.3

    \n
      \n
    • Improved cache purge on Cludflare activation
    • \n
    • Improved deauthentication of Cloudflare
    • \n
    • Text improvements
    • \n
    \n

    Version 5.7.2

    \n
      \n
    • Fixed bug when external assets are not cleared properly
    • \n
    • Improved detection of active Cloudflare
    • \n
    • Text improvements
    • \n
    \n

    Version 5.7.1

    \n
      \n
    • Fixed bug with clearing cache from helper function
    • \n
    \n

    Version 5.7.0

    \n
      \n
    • Full-page Caching on CloudFlare
    • \n
    • Web Fonts Optimization
    • \n
    \n

    Version 5.6.8

    \n
      \n
    • Improved SSL Replace patterns
    • \n
    \n

    Version 5.6.7

    \n
      \n
    • Improved JS & CSS Combination exclude list
    • \n
    • Bumped JS Combination stop limit
    • \n
    • Improved functionality to stop JS Combination if randomized names create endless combination files
    • \n
    \n

    Version 5.6.6

    \n
      \n
    • Improved JS Combination exclude list
    • \n
    • Bumped JS Combination stop limit
    • \n
    • Fixed typos
    • \n
    \n

    Version 5.6.5

    \n
      \n
    • Improved Elementor Pro 3.0 support
    • \n
    \n

    Version 5.6.4

    \n
      \n
    • Fix error in CSS Combinator
    • \n
    \n

    Version 5.6.3

    \n
      \n
    • Better WP 5.5 support
    • \n
    • Improved log handling
    • \n
    \n

    Version 5.6.2

    \n
      \n
    • Improved JS Combination exclude list
    • \n
    • Disable native WordPress lazyloading
    • \n
    \n

    Version 5.6.1

    \n
      \n
    • Second stage of Memcached improvements applied
    • \n
    • Added WP-CLI control for heartbeat, dns-prefetching and db optimizations
    • \n
    • Fixed non-critical notices while using PHP 7.3
    • \n
    \n

    Version 5.6.0

    \n
      \n
    • Added Heartbeat Control
    • \n
    • Added Database Optimization
    • \n
    • Added DNS Prefetching
    • \n
    • Improved Browser Caching XML rules
    • \n
    • Refactored Lazy Load
    • \n
    • Deprecated Compatibility Checker & PHP Switcher
    • \n
    • Improved Lazyload Videos for Classic Editor
    • \n
    • Added functionality to stop JS Combination if randomized names create endless combination files
    • \n
    \n

    Version 5.5.8

    \n
      \n
    • Added proper AMP support
    • \n
    • Added samesite parameter to the bypass cookie
    • \n
    • Added support for Shortcodes Ultimate
    • \n
    • Extended the sg purge wp-cli command to delete assets too
    • \n
    • Improved support for Uncode Themes
    • \n
    \n

    Version 5.5.7

    \n
      \n
    • Improved Memcached Integration
    • \n
    • Added protection for objects too big to be stored in Memcached
    • \n
    • Improved JS and CSS Combination Exclude List
    • \n
    • Improved Lazy Load functionality
    • \n
    • Improved Image Optimization for sites using CDN
    • \n
    \n

    Version 5.5.6

    \n
      \n
    • Improved WP CLI commands
    • \n
    • Extended Combine JavaScript Exclude list
    • \n
    • Improved Beaver Builder Support
    • \n
    • Revamped bypass cookie functionality
    • \n
    • Improved Multisite Controls
    • \n
    \n

    Version 5.5.5

    \n
      \n
    • Improved Script Combinations Excluding Functionality
    • \n
    • Improved Internationalisation
    • \n
    • Improved Lazy Loading
    • \n
    • Improved WooCommerce Support for 3rd Party Payment Gateways
    • \n
    • Added Global JS exclude for Plugins with Known Issues
    • \n
    • Added WP-Authorized-Net support
    • \n
    • Added Facebook for WooCommerce support
    • \n
    \n

    Version 5.5.4

    \n
      \n
    • Fixed issue with CSS Combination causing problems with media specific stylesheets
    • \n
    • Added defer attribute for the Combined JS files when JS Defer is enabled
    • \n
    • Better support with sites using long domains (.blog, .marketing, etc.)
    • \n
    • Fixed Memcached XSS security issues
    • \n
    • Fixed CSS & JS Combination for sites with custom upload folders
    • \n
    \n

    Version 5.5.3

    \n
      \n
    • Fix ISE for Flatsome theme
    • \n
    \n

    Version 5.5.2

    \n
      \n
    • Better CSS Combination
    • \n
    • Better Fonts Combination
    • \n
    • Better concatenation of inline scripts
    • \n
    • Improved WebP Quaity Slider
    • \n
    • Updated readme.txt file
    • \n
    • Added WP-CLI Commands: combine-js and webp
    • \n
    • Better Polylang support
    • \n
    \n

    Version 5.5.1

    \n
      \n
    • Better Elementor support
    • \n
    • Better Divi support
    • \n
    • Better AMP support
    • \n
    • Better sourcemapping removal
    • \n
    \n

    Version 5.5.0

    \n
      \n
    • New – Combine JavaScript Files
    • \n
    • New – WebP quality control plus lossless option
    • \n
    • New – What’s new and opportunities slider
    • \n
    • Improved – better WPML support (mostly memcached)
    • \n
    • Improved – better Elementor support
    • \n
    • Improved – better Browser Caching rules for cPanel users
    • \n
    \n

    Version 5.4.6

    \n
      \n
    • Interface revamp for better accessability
    • \n
    • Improved compatibility with page builders
    • \n
    • Improved compatibility with latest Elementor
    • \n
    • Added support for popular AMP plugins
    • \n
    • Better WebP optiomization status reporting
    • \n
    \n

    Version 5.4.5

    \n
      \n
    • Improved elementor support
    • \n
    • Improved flothemes support
    • \n
    • Improved handling of @imports in combine css
    • \n
    \n

    Version 5.4.4

    \n
      \n
    • Improved transients handling
    • \n
    • Added Jet Popup support
    • \n
    \n

    Version 5.4.3

    \n
      \n
    • Added Lazy loading functionality for iframes
    • \n
    • Added Lazy loading functionality for videos
    • \n
    \n

    Version 5.4.2

    \n
      \n
    • Fixed bug with WebP image regeneration on image delete
    • \n
    \n

    Version 5.4.1

    \n
      \n
    • Added PHP 7.4 support for PHP Compatibility Checker
    • \n
    • Improved WebP Conversion
    • \n
    • Fixed bug with WebP image regeneration on image edit
    • \n
    • Improved plugin localization
    • \n
    \n

    Version 5.4.0

    \n
      \n
    • Added WebP Support on All Accounts on Site Tools
    • \n
    • Added Google PageSpeed Test
    • \n
    • Improved Image Optimization Process
    • \n
    • Improved SSL Certificate check
    • \n
    \n

    Version 5.3.10

    \n
      \n
    • Better PHP Version Management for Site Tools
    • \n
    • NGINX Direct Delivery for Site Tools
    • \n
    \n

    Version 5.3.9

    \n
      \n
    • Improved check for SiteGround Servers
    • \n
    \n

    Version 5.3.8

    \n
      \n
    • Fixed a bug when Memcached fails to purge when new WordPress version requiring a database update is released
    • \n
    • Added alert and check if you’re running SiteGround Optimizer on a host different than SiteGround
    • \n
    • Improved compatibility with WooCommerce
    • \n
    • Improved conditional styles combination
    • \n
    • Improved image optimization process
    • \n
    \n

    Version 5.3.7

    \n
      \n
    • Added WooCommerce Square Payment & Braintree For WooCommerce Exclude by Default
    • \n
    • Improved Google Fonts Optimization
    • \n
    • Added Notice for Defer Render-Blocking Scripts Optimization
    • \n
    • Added wp-cli commands for Google Fonts Optimization
    • \n
    • Changed New Images Optimizer hook to wp_generate_attachment_metadata
    • \n
    \n

    Version 5.3.6

    \n
      \n
    • Improved Google Fonts loading with better caching
    • \n
    • Improved Defer of render-blocking JS
    • \n
    \n

    Version 5.3.5

    \n
      \n
    • WordPress 5.3 Support Declared
    • \n
    • Better Elementor Compatibility
    • \n
    • Better Image Optimization Messaging
    • \n
    • Better Google Fonts combination
    • \n
    • Added PHP 7.4 support
    • \n
    \n

    Version 5.3.4

    \n
      \n
    • Improved Async load of JS files
    • \n
    • Added Google Fonts Combination optimization
    • \n
    • Moved lazyload script in footer
    • \n
    • Improved CSS combination
    • \n
    \n

    Version 5.3.3

    \n
      \n
    • Improved browser cache handling upon plugin update
    • \n
    • Added wp-cli commands for Dynamic Cache, Autoflush and Browser-Speciffic cache handling
    • \n
    \n

    Version 5.3.2

    \n
      \n
    • Fixed bug with https enforce for www websites
    • \n
    • Improved JILT support
    • \n
    \n

    Version 5.3.1

    \n
      \n
    • Better SSL force to accommodate websites with WWW in the URL
    • \n
    • Global exclusion of siteorigin-widget-icon-font-fontawesome from Combine CSS
    • \n
    \n

    Version 5.3.0

    \n
      \n
    • Refactoring of the Lazy Load functionality
    • \n
    • Redesign of the Lazy Load screen
    • \n
    • Improved WooCommerce product image Lazy Load
    • \n
    • Gzip functionality update for Site Tools accounts
    • \n
    • Browser caching functionality update for Site Tools accounts
    • \n
    • Improved Browser caching functionality for cPanel accounts
    • \n
    \n

    Version 5.2.5

    \n
      \n
    • New Feature: Option to split caches per User Agent
    • \n
    • New Feature: Option to disable lazy loading for mobile devices
    • \n
    • Improved Memcached check
    • \n
    \n

    Version 5.2.4

    \n
      \n
    • Improved XML RCP checks compatibility
    • \n
    \n

    Version 5.2.3

    \n
      \n
    • Improved LazyLoad
    • \n
    \n

    Version 5.2.2

    \n
      \n
    • Improved Events Calendar Compatibility
    • \n
    • Suppressed notices in the REST API in certain cases
    • \n
    • Improved nonscript tag in LazyLoad
    • \n
    \n

    Version 5.2.1

    \n
      \n
    • Improved Cloudflare compatibility
    • \n
    \n

    Version 5.2.0

    \n
      \n
    • Exclude list Interface for JavaScript handlers
    • \n
    • Exclude list Interface for CSS handlers
    • \n
    • Exclude list Interface for HTML minification (URL like dynamic)
    • \n
    • Exclude list interface for LazyLoading (Class)
    • \n
    • Improved Thrive Architect support
    • \n
    • Fixed notice when purging comment cache
    • \n
    \n

    Version 5.1.3

    \n
      \n
    • Improved Elementor support
    • \n
    • Improved CSS optimization for inclusions without protocol
    • \n
    • Excluded large PNGs from optimizations
    • \n
    • Added better WP-CLI command documentation
    • \n
    \n

    Version 5.1.2

    \n
      \n
    • Added support for Recommended by SiteGround PHP Version
    • \n
    • Improved LazyLoad Support for WooCommerce sites
    • \n
    • Improved Image Optimization checks
    • \n
    • Improved PHP Version switching checks
    • \n
    • Added wp cli status command for checking optimization status
    • \n
    • Fixed bug with Combine CSS
    • \n
    \n

    Version 5.1.1

    \n
      \n
    • Improved cache invalidation for combined styles
    • \n
    • Cache purge from the admin bar now handles combined files too
    • \n
    • Added filter to exclude images from Lazy Loading
    • \n
    • Added filter to exclude pages from HTML Minification
    • \n
    • Added Filter to query params from HTML Minification
    • \n
    • Added PHP 7.3 support
    • \n
    \n

    Version 5.1.0

    \n
      \n
    • Added CSS Combination Functionality
    • \n
    • Added Async Load of Render-Blocking JS
    • \n
    • Added WooCommerce Support for LazyLoad
    • \n
    • Added Filter to Exclude Styles from CSS Combination
    • \n
    • Improved Lazy Load Functionality on Mobile Devices
    • \n
    • Fixed Issue with WP Rocket’s .htaccess rules and GZIP
    • \n
    • Fixed Issue with Query String Removal Script in the Admin Section
    • \n
    • Fixed Compatibility Issues with 3rd Party Plugins and Lazy Load
    • \n
    • Fixed Compatibility Issues with Woo PDF Catalog Plugin and HTML Minification
    • \n
    • Improved Memcached Reliability
    • \n
    • Improved Lazy Load for Responsive Images
    • \n
    \n

    Version 5.0.13

    \n
      \n
    • Modified HTML minification to keep comments
    • \n
    • Interface Improvements
    • \n
    • Better input validation and sanitation for PHP Version check
    • \n
    • Improved security
    • \n
    \n

    Version 5.0.12

    \n
      \n
    • Better cache purge for multisite
    • \n
    • Surpress dynamic cache notices for localhost sites
    • \n
    \n

    Version 5.0.11

    \n
      \n
    • Improved handling of third party plugins causing issues with the compatibility checker functionality
    • \n
    • Optimized WP-CLI commands for better performance
    • \n
    • Better notice handling for Multisite and conflicting plugins
    • \n
    \n

    Version 5.0.10

    \n
      \n
    • Fixed issue with Mythemeshop themes
    • \n
    • Fixed issues with exclude URL on update
    • \n
    • Fixed issues with exclude URL on update
    • \n
    • Exclude Lazy Load from AMP pages
    • \n
    • Exclude Lazy Load from Backend pages
    • \n
    • Fixed WPML problems
    • \n
    • Fixed Beaver Builder issues
    • \n
    • Fixed Spanish translations
    • \n
    • Fixed incompatibility with JCH Optimize
    • \n
    \n

    Version 5.0.9

    \n
      \n
    • Fixed woocommerce bugs
    • \n
    • Improved memcached flush
    • \n
    • Improved https force
    • \n
    \n

    Version 5.0.8

    \n
      \n
    • Better .htaccess handling when disabling and enabling Browser Cache and Gzip
    • \n
    • Improved image optimization handling
    • \n
    • Added option to stop the image optimization and resume it later
    • \n
    • Fixed bug with memcached notifications
    • \n
    • Fixed bug with conflicting plugin notices for non-admins
    • \n
    • Fixed bug when user accesses their site through IP/~cPaneluser
    • \n
    • Fixed bug with labels for HTML, CSS & JS Minification
    • \n
    • SEO Improvements in the Lazy Load functionality
    • \n
    \n

    Version 5.0.7

    \n
      \n
    • Fixed bug with notifications removal
    • \n
    • Fixed bug with modifying wrong .htaccess file for installations in subdirectory
    • \n
    • Flush redux cache when updating to new version
    • \n
    • Improved check for existing SSL rules in your .htaccess file
    • \n
    • Added check and removal of duplicate Gzip rules in your .htaccess file
    • \n
    • Added check and removal of duplicate Browser caching rules in your .htaccess file
    • \n
    \n

    Version 5.0.6

    \n
      \n
    • Memcache issues fixed. Unique WP_CACHE_KEY_SALT is generated each time you enable it on your site.
    • \n
    • Better status update handling
    • \n
    • Added option to start checks even if the default WP Cron is disabled (in case you use real cronjob)
    • \n
    \n

    Version 5.0.5

    \n
      \n
    • Fixed Compatibility Checker progress issues.
    • \n
    • Fixed images optimization endless loops.
    • \n
    • Changed php version regex to handle rules from other plugins.
    • \n
    \n

    Version 5.0.4

    \n
      \n
    • Fixed CSS minification issues.
    • \n
    • Add option to re-optimize images.
    • \n
    • Allow users to hide notices.
    • \n
    \n

    Version 5.0.0

    \n
      \n
    • Complete plugin refactoring
    • \n
    • Frontend optimiztions added
    • \n
    • Environment optimizations added
    • \n
    • Images Optimizatoins adder
    • \n
    • Full WP-CLI Support
    • \n
    • Better Multisite Support
    • \n
    • Better Interface
    • \n
    \n

    Version 4.0.7

    \n
      \n
    • Fixed bug in the force SSL functionality in certain cases for MS
    • \n
    • Added information about the cookie our plugin uses in the readme file
    • \n
    \n

    Version 4.0.6

    \n
      \n
    • Bug fixes
    • \n
    • Better https enforcement in MS environment
    • \n
    \n

    Version 4.0.5

    \n
      \n
    • Removed stopping of WP Rocket cache
    • \n
    \n

    Version 4.0.4

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    Version 4.0.3

    \n
      \n
    • Switching recommended PHP Version to 7.1
    • \n
    \n

    Version 4.0.2

    \n
      \n
    • WPML and Memcache / Memcached bug fix
    • \n
    \n

    Version 4.0.1

    \n
      \n
    • Minor bug fixes
    • \n
    • UK locale issue fixed
    • \n
    \n

    Version 4.0.0

    \n
      \n
    • Added proper Multisite support
    • \n
    • Quick optimizations – Gzip and Browser cache config settings for the Network Admin
    • \n
    • Network admin can purge the cache per site
    • \n
    • Network admin can disallow Cache and HTTPS configuration pages per site
    • \n
    • WPML support when Memcached is enabled
    • \n
    • Cache is being purged per site and not for the entire network
    • \n
    • Multiple performance & interface improvements
    • \n
    • Security fixes against, additional access checks introduced
    • \n
    • Fixed minor cosmetic errors in the interface
    • \n
    \n

    Version 3.3.3

    \n
      \n
    • Fixed minor interface issues
    • \n
    \n

    Version 3.3.2

    \n
      \n
    • Fixed bug with disabling the Force HTTPS option
    • \n
    \n

    Version 3.3.1

    \n
      \n
    • Fixed cache purge issue when CloudFlare is enabled
    • \n
    • Added logging of failed attempts in XMLRPC API.
    • \n
    \n

    Version 3.3.0

    \n
      \n
    • Improved public purge function for theme and plugin developers
    • \n
    • Added WP-CLI command for cache purge – wp sg purge
    • \n
    \n

    Version 3.2.4

    \n
      \n
    • Updated Memcache.tpl
    • \n
    • Fixed a link in the PHP Check interface
    • \n
    \n

    Version 3.2.3

    \n
      \n
    • Improved WP-CLI compatibility
    • \n
    \n

    Version 3.2.1

    \n
      \n
    • Improved cron fallback, added error message if the WP CRON is disabled
    • \n
    \n

    Version 3.2.0

    \n
      \n
    • Adding PHP 7.0 Compatibility check & PHP Version switch
    • \n
    \n

    Version 3.0.5

    \n
      \n
    • Improved Certficiate check
    • \n
    \n

    Version 3.0.4

    \n
      \n
    • Fixed bug with unwrittable .htaccess
    • \n
    \n

    Version 3.0.3

    \n
      \n
    • Fixed bug in adding CSS files
    • \n
    \n

    Version 3.0.2

    \n
      \n
    • User-agent added to the SSL availability check
    • \n
    \n

    Version 3.0.1

    \n
      \n
    • PHP Compatibility fixes
    • \n
    \n

    Version 3.0.0

    \n
      \n
    • Plugin renamed to SG Optimizer
    • \n
    • Interface split into multiple screens
    • \n
    • HTTPS Force functionality added which will reconfigure WordPress, make an .htaccess redirect to force all the traffic through HTTPS and fixes any potential insecure content issues
    • \n
    • Plugin prepared for PHP version compatibility checker and changer tool
    • \n
    \n

    Version 2.3.11

    \n
      \n
    • Added public purge function
    • \n
    • Memcached bug fixes
    • \n
    \n

    Version 2.3.10

    \n
      \n
    • Improved Memcached performance
    • \n
    • Memcached bug fixes
    • \n
    \n

    Version 2.3.9

    \n
      \n
    • Improved WordPress 4.6 compatibilitty
    • \n
    \n

    Version 2.3.8

    \n
      \n
    • Improved compatibility with SiteGround Staging System
    • \n
    \n

    Version 2.3.7

    \n
      \n
    • Fixed PHP warnings in Object Cache classes
    • \n
    \n

    Version 2.3.6

    \n
      \n
    • Minor URL handling bug fixes
    • \n
    \n

    Version 2.3.5

    \n
      \n
    • Improved cache testing URL detection
    • \n
    \n

    Version 2.3.4

    \n
      \n
    • CSS Bug fixes
    • \n
    \n

    Version 2.3.3

    \n
      \n
    • Improved Memcache work
    • \n
    • Interface improvements
    • \n
    • Bug fixes
    • \n
    \n

    Version 2.3.2

    \n
      \n
    • Fixed bug with Memcached cache purge
    • \n
    \n

    Version 2.3.1

    \n
      \n
    • Interface improventes
    • \n
    • Internationalization support added
    • \n
    • Spanish translation added by SiteGround.es
    • \n
    • Bulgarian translation added
    • \n
    \n

    Version 2.3.0

    \n
      \n
    • Memcached support added
    • \n
    • Better PHP7 compatibility
    • \n
    \n

    Version 2.2.11

    \n
      \n
    • Improved compatibility with WP Rocket
    • \n
    • Bug fixes
    • \n
    \n

    Version 2.2.10

    \n
      \n
    • Revamped notices work
    • \n
    • Bug fixes
    • \n
    \n

    Version 2.2.9

    \n
      \n
    • Bug fixes
    • \n
    \n

    Version 2.2.8

    \n
      \n
    • Bug fixing and improved notification behaviour
    • \n
    • Fixed issues with MS installations
    • \n
    \n

    Version 2.2.7

    \n
      \n
    • Added testing box and notification if Dynamic Cache is not enabled in cPanel
    • \n
    \n

    Version 2.2.6

    \n
      \n
    • Fixed bug with Memcached causing issues after WP Database update
    • \n
    \n

    Version 2.2.5

    \n
      \n
    • Minor system improvements
    • \n
    \n

    Version 2.2.4

    \n
      \n
    • Minor system improvements
    • \n
    \n

    Version 2.2.3

    \n
      \n
    • Admin bar link visible only for admin users
    • \n
    \n

    Version 2.2.2

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    Version 2.2.1

    \n
      \n
    • Added Purge SG Cache button
    • \n
    • Redesigned mobile-friendly interface
    • \n
    \n

    Version 2.2.0

    \n
      \n
    • Added NGINX support
    • \n
    \n

    Version 2.1.7

    \n
      \n
    • Fixed plugin activation bug
    • \n
    \n

    Version 2.1.6

    \n
      \n
    • The purge button will now clear the Static cache even if Dynamic cache is not enabled
    • \n
    • Better and more clear button labeling
    • \n
    \n

    Version 2.1.5

    \n
      \n
    • Better plugin activation and added to the wordpress.org repo
    • \n
    \n

    Version 2.1.2

    \n
      \n
    • Fixed bug that prevents you from enabling Memcached if using a wildcard SSL Certificate
    • \n
    \n

    Version 2.1.1

    \n
      \n
    • Cache will flush when scheduled posts become live
    • \n
    \n

    Version 2.1.0

    \n
      \n
    • Cache will be purged if WordPress autoupdates
    • \n
    \n

    Version 2.0.3

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    Version 2.0.2

    \n
      \n
    • 3.8 support added
    • \n
    \n

    Version 2.0.1

    \n
      \n
    • Interface improvements
    • \n
    • Minor bug fixes
    • \n
    \n

    Version 2.0

    \n
      \n
    • New interface
    • \n
    • Minor bug fixes
    • \n
    • Settings and Purge pages combined into one
    • \n
    \n

    Version 1.2.3

    \n
      \n
    • Minor bug fixes
    • \n
    • SiteGround Memcached support added
    • \n
    • URL Exclude from caching list added
    • \n
    \n

    1.0

    \n
      \n
    • Plugin created.
    • \n
    \n", "description": "

    The award-winning Speed Optimizer plugin is a free WordPress performance-boosting solution to improve user experience, increase conversion rates and drive more traffic. Achieve better SEO rankings, improve Core Web Vitals and enhance your Google Page Speed Score.

    \n

    Developed by the WordPress speed experts at SiteGround, our free plugin is actively used and trusted by more than 2 million website owners. It’s specially designed to be easy to use, allowing users of all skill levels to make complex speed optimizations, such as minifying HTML, CSS and JavaScript, image compression and lazy loading, in a few clicks.

    \n

    Install our caching plugin now to dramatically improve your WordPress website performance on any hosting platform.

    \n

    Essential Speed-boosting Features:

    \n
      \n
    • Powerful Caching for up to 20% faster website.
    • \n
    • Frontend Optimizations to minify JS, HTML and CSS, reducing wait time due to the number of scripts and characters in your code
    • \n
    • Media Optimizations by up to 85% image size compression without sacrificing quality
    • \n
    • WordPress Environment Optimizations to optimize usage and efficiency of your WordPress site resources
    • \n
    • Speed Test & tips to get on-demand optimization tips to help your site get even faster
    • \n
    \n

    Don’t let a slow website compromise your online success. Join the millions of satisfied website owners and see the difference with the free Speed Optimizer plugin.

    \n

    AWARDS:

    \n

    Monster Awards 2022: Best WordPress Optimization Plugin 🥈

    \n

    Plugin Video

    \n\n

    Plugin Tutorial

    \n

    To gain in-depth knowledge about our plugin and its functionalities, check our Speed Optimizer Tutorial. It provides detailed information on how to optimize each aspect of your site and maximizes your website performance and cache.

    \n

    CACHING

    \n

    The Caching page gives you full control of your website’s cache, allowing you to enhance its performance significantly. Take advantage of the powerful caching options available to boost your page speed:

    \n

    DYNAMIC CACHING:

    \n

    By enabling Dynamic Caching, all non-static resources of your website are intelligently cached, eliminating the need for repetitive database queries and enhancing page loading speed and TTFB (time to first byte). This default feature is available exclusively for SiteGround servers, ensuring optimal performance.

    \n

    FILE-BASED CACHING:

    \n

    By activating file-based caching, your website generates and stores static HTML versions, ensuring faster loading times and an improved user experience. This efficient caching method stores the cached files conveniently in the browser’s memory, allowing future visitors to access your site swiftly and seamlessly.

    \n

    MEMCACHED:

    \n

    Unleash the power of object caching for your WordPress website. Memcached revolutionizes website performance by storing frequently executed queries to your databases and reusing them for lightning-fast website results. This powerful feature is exclusively available in the SiteGround environment.

    \n

    CACHING SETTINGS:

    \n
      \n
    • Automatic Cache Purge: ensure the cache is cleared whenever necessary
    • \n
    • Manual Cache Purge: purge cache manually if you are editing new material and do not have automatic purge activated.
    • \n
    • Browser-specific Caching: generate caching separately for different browsers
    • \n
    • Exclude Post Types from Caching: exclude specific post types from being cached
    • \n
    • Exclude URLs from Caching: exclude specific URLs or utilize wildcards to exclude any sub-pages of a designated “parent-page.”
    • \n
    • Test URL Caching Status: verify if dynamic caching is actively running on specific URLs
    • \n
    \n

    ENVIRONMENT OPTIMIZATIONS

    \n

    Optimize and fine-tune your site’s environment for optimal website performance:

    \n

    HTTPS Enforce:

    \n

    Ensure a secure browsing experience for your visitors by effortlessly enabling HTTPS for your site. Say goodbye to insecure content errors and build trust with your audience.

    \n

    Scheduled Database Maintenance:

    \n

    Take control of your database by activating the Database Optimization feature. This functionality removes unnecessary items and optimizes your database tables, leading to improved efficiency and website performance. If you’re using the InnoDB storage engine, table optimisation is automatically handled by the engine itself.

    \n

    Heartbeat Control:

    \n

    Manage the frequency of the WP Heartbeat for different areas of your website. By default, the WordPress Heartbeat API checks for scheduled tasks every 15 seconds on post edit pages and every 60 seconds on the dashboard and front end. With Heartbeat Control, you can adjust the frequency of these checks or even disable them entirely, providing you with greater control over resource allocation.

    \n

    FRONTEND OPTIMIZATIONS

    \n

    Enhance and fine-tune the performance of your website’s front end by minifying JS, HTML and CSS:

    \n

    CSS Tab:

    \n

    Minify CSS files, activate or deactivate CSS combinations to reduce server requests, and even preload combined CSS for optimized performance. Additionally, you can exclude specific styles from being combined or minified, giving you complete control over your CSS optimization.

    \n

    JavaScript Tab:

    \n

    Activate or deactivate Minify JavaScript Files to reduce script sizes and lower the number of server requests. You can also defer render-blocking JavaScript to expedite the initial page speed. Furthermore, you have the ability to exclude specific scripts from various optimisation processes, providing flexibility in optimizing your JavaScript resources.

    \n

    General Tab:

    \n

    Further optimization options include:

    \n
      \n
    • Web Fonts Optimization: Enhance the loading of Google fonts by adding a preconnect link in your head tag. This informs the browser to establish a connection to Google’s font repository as quickly as possible. Additionally, all other local fonts will be preloaded, resulting in faster caching and rendering. When combined with CSS Combination, we also modify the font-display property to improve rendering speed.
    • \n
    • Fonts Preloading: With locally hosted fonts being preloaded, you’re allowing browsers to cache and render them at an accelerated pace.
    • \n
    • Remove Query Strings from Static Resources: Improve caching efficiency by removing query strings from static resources, optimizing their caching capabilities.
    • \n
    • Disable Emojis: Prevent WordPress from detecting and generating emojis on your pages by disabling emojis support. This helps boost your page speed and improve your website performance.
    • \n
    • DNS Pre-fetch for External Domains: Enabling the DNS Pre-fetch for a domain will resolve it before resources from it get requested making those resources load faster.
    • \n
    \n

    MEDIA OPTIMIZATIONS

    \n

    Optimize your website media by reducing image size by up to 85% times while maintaining top-notch quality.

    \n

    Image Compression:

    \n

    Effortlessly compress images to resize your existing images and reduce the space they occupy on your server. The dimensions of the images will remain unchanged, allowing for optimized storage. Fine-tune the compression level and choose whether to create backups of the original images. Please note that image compression feature is exclusive to the SiteGround Environment.

    \n

    WebP Images:

    \n

    Leverage the power of WebP, a cutting-edge image format supported by modern browsers, to significantly reduce the size of your images and skyrocket your page speed. If a browser doesn’t support WebP, the original images will be loaded.

    \n

    Lazy Load Media:

    \n

    Take control of your website’s asset loading with the ability to enable or disable Lazy Load for various assets. You can exclude specific assets such as iframes, videos, thumbnails, widgets, and shortcodes from the dropdown menu. Additionally, you have the option to exclude specific images from the Lazy Load by adding their respective class in the dedicated tab.

    \n

    Maximum Image Width:

    \n

    If you frequently upload large images to your website, you can enable the Maximum Image Width option that automatically resizes existing and future images whose width exceeds 2560 pixels. By optimizing image sizes, you can enhance your website performance and reduce bandwidth usage.
    \nYou can customize your media optimisation to your specific needs using the filters, we’ve designed for this purpose.

    \n

    SPEED TEST

    \n

    Evaluate the optimization level of your website with Speed Optimizer’s Speed test tool. Our website performance check utilizes the robust capabilities of Google PageSpeed to provide comprehensive insights into your site’s optimization. By conducting the speed test, you will receive detailed results highlighting areas that can be further optimized for enhanced performance. These insights will empower you to fine-tune your website and unlock its maximum potential and increase conversions.

    \n

    Requirements

    \n

    In order to work correctly, this plugin requires that your server meets the following criteria:

    \n
      \n
    • WordPress 4.7
    • \n
    • PHP 7.0+
    • \n
    \n

    Our plugin uses a cookie in order to function properly. It does not store personal data and is used solely for the needs of our caching system.

    \n

    Data Collection

    \n

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    \n

    Credits

    \n

    Photo credits to Anna Shvets https://www.pexels.com/@shvetsa

    \n", "screenshots": "
    1. \"The

      The SiteGround Optimizer Dashboard Page offers a quick look at the current optimization status of your website, along with shortcuts to the relevant optimization pages.

    2. \"The

      The SiteGround Optimizer Caching Page handles your Dynamic caching and Memcached. Here, you can exclude URls from the cache, test your site and purge the Dynamic caching manually.

    3. \"The

      The SiteGround Optimizer Environment Page, you can force HTTPS for your site, tweak the WordPress Heartbeat Optimization, pre-fetch external domains and enable the Database Maintenance.

    4. \"The

      The SiteGround Optimizer Frontend Optimization Page allows you to Minify HTML, CSS & JS, as well as to remove query strings from your static resources and disable the Emoji support.

    5. \"The

      The SiteGround Optimizer Media Page allows you to optimize your Media Library images, as well as adds Lazy Loading functionality for your site.

    6. \"The

      The SiteGround Optimizer Speed Test Page, allows you to test your site loading speed, as well as additional tips on improving your site performance.

    ", "installation": "

    Automatic Installation

    \n
      \n
    1. Go to Plugins -> Add New
    2. \n
    3. Search for “SiteGround Optimizer”
    4. \n
    5. Click on the Install button under the SiteGround Optimizer plugin
    6. \n
    7. Once the plugin is installed, click on the Activate plugin link
    8. \n
    \n

    Manual Installation

    \n
      \n
    1. Login to the WordPress admin panel and go to Plugins -> Add New
    2. \n
    3. Select the ‘Upload’ menu
    4. \n
    5. Click the ‘Choose File’ button and point your browser to the sg-cachepress.zip file you’ve downloaded
    6. \n
    7. Click the ‘Install Now’ button
    8. \n
    9. Go to Plugins -> Installed Plugins and click the ‘Activate’ link under the WordPress SiteGround Optimizer listing
    10. \n
    \n"}, "versions": {"7.6.4": "https://downloads.wordpress.org/plugin/sg-cachepress.7.6.4.zip", "7.6.5": "https://downloads.wordpress.org/plugin/sg-cachepress.7.6.5.zip", "7.6.6": "https://downloads.wordpress.org/plugin/sg-cachepress.7.6.6.zip", "7.6.7": "https://downloads.wordpress.org/plugin/sg-cachepress.7.6.7.zip", "7.6.8": "https://downloads.wordpress.org/plugin/sg-cachepress.7.6.8.zip", "7.7.0": "https://downloads.wordpress.org/plugin/sg-cachepress.7.7.0.zip", "7.7.1": "https://downloads.wordpress.org/plugin/sg-cachepress.7.7.1.zip", "7.7.2": "https://downloads.wordpress.org/plugin/sg-cachepress.7.7.2.zip", "trunk": "https://downloads.wordpress.org/plugin/sg-cachepress.zip"}, "downloaded": 89679441, "description": "

    The award-winning Speed Optimizer plugin is a free WordPress performance-boosting solution to improve user experience, increase conversion rates and drive more traffic. Achieve better SEO rankings, improve Core Web Vitals and enhance your Google Page Speed Score.

    \n

    Developed by the WordPress speed experts at SiteGround, our free plugin is actively used and trusted by more than 2 million website owners. It’s specially designed to be easy to use, allowing users of all skill levels to make complex speed optimizations, such as minifying HTML, CSS and JavaScript, image compression and lazy loading, in a few clicks.

    \n

    Install our caching plugin now to dramatically improve your WordPress website performance on any hosting platform.

    \n

    Essential Speed-boosting Features:

    \n
      \n
    • Powerful Caching for up to 20% faster website.
    • \n
    • Frontend Optimizations to minify JS, HTML and CSS, reducing wait time due to the number of scripts and characters in your code
    • \n
    • Media Optimizations by up to 85% image size compression without sacrificing quality
    • \n
    • WordPress Environment Optimizations to optimize usage and efficiency of your WordPress site resources
    • \n
    • Speed Test & tips to get on-demand optimization tips to help your site get even faster
    • \n
    \n

    Don’t let a slow website compromise your online success. Join the millions of satisfied website owners and see the difference with the free Speed Optimizer plugin.

    \n

    AWARDS:

    \n

    Monster Awards 2022: Best WordPress Optimization Plugin 🥈

    \n

    Plugin Video

    \n\n

    Plugin Tutorial

    \n

    To gain in-depth knowledge about our plugin and its functionalities, check our Speed Optimizer Tutorial. It provides detailed information on how to optimize each aspect of your site and maximizes your website performance and cache.

    \n

    CACHING

    \n

    The Caching page gives you full control of your website’s cache, allowing you to enhance its performance significantly. Take advantage of the powerful caching options available to boost your page speed:

    \n

    DYNAMIC CACHING:

    \n

    By enabling Dynamic Caching, all non-static resources of your website are intelligently cached, eliminating the need for repetitive database queries and enhancing page loading speed and TTFB (time to first byte). This default feature is available exclusively for SiteGround servers, ensuring optimal performance.

    \n

    FILE-BASED CACHING:

    \n

    By activating file-based caching, your website generates and stores static HTML versions, ensuring faster loading times and an improved user experience. This efficient caching method stores the cached files conveniently in the browser’s memory, allowing future visitors to access your site swiftly and seamlessly.

    \n

    MEMCACHED:

    \n

    Unleash the power of object caching for your WordPress website. Memcached revolutionizes website performance by storing frequently executed queries to your databases and reusing them for lightning-fast website results. This powerful feature is exclusively available in the SiteGround environment.

    \n

    CACHING SETTINGS:

    \n
      \n
    • Automatic Cache Purge: ensure the cache is cleared whenever necessary
    • \n
    • Manual Cache Purge: purge cache manually if you are editing new material and do not have automatic purge activated.
    • \n
    • Browser-specific Caching: generate caching separately for different browsers
    • \n
    • Exclude Post Types from Caching: exclude specific post types from being cached
    • \n
    • Exclude URLs from Caching: exclude specific URLs or utilize wildcards to exclude any sub-pages of a designated “parent-page.”
    • \n
    • Test URL Caching Status: verify if dynamic caching is actively running on specific URLs
    • \n
    \n

    ENVIRONMENT OPTIMIZATIONS

    \n

    Optimize and fine-tune your site’s environment for optimal website performance:

    \n

    HTTPS Enforce:

    \n

    Ensure a secure browsing experience for your visitors by effortlessly enabling HTTPS for your site. Say goodbye to insecure content errors and build trust with your audience.

    \n

    Scheduled Database Maintenance:

    \n

    Take control of your database by activating the Database Optimization feature. This functionality removes unnecessary items and optimizes your database tables, leading to improved efficiency and website performance. If you’re using the InnoDB storage engine, table optimisation is automatically handled by the engine itself.

    \n

    Heartbeat Control:

    \n

    Manage the frequency of the WP Heartbeat for different areas of your website. By default, the WordPress Heartbeat API checks for scheduled tasks every 15 seconds on post edit pages and every 60 seconds on the dashboard and front end. With Heartbeat Control, you can adjust the frequency of these checks or even disable them entirely, providing you with greater control over resource allocation.

    \n

    FRONTEND OPTIMIZATIONS

    \n

    Enhance and fine-tune the performance of your website’s front end by minifying JS, HTML and CSS:

    \n

    CSS Tab:

    \n

    Minify CSS files, activate or deactivate CSS combinations to reduce server requests, and even preload combined CSS for optimized performance. Additionally, you can exclude specific styles from being combined or minified, giving you complete control over your CSS optimization.

    \n

    JavaScript Tab:

    \n

    Activate or deactivate Minify JavaScript Files to reduce script sizes and lower the number of server requests. You can also defer render-blocking JavaScript to expedite the initial page speed. Furthermore, you have the ability to exclude specific scripts from various optimisation processes, providing flexibility in optimizing your JavaScript resources.

    \n

    General Tab:

    \n

    Further optimization options include:

    \n
      \n
    • Web Fonts Optimization: Enhance the loading of Google fonts by adding a preconnect link in your head tag. This informs the browser to establish a connection to Google’s font repository as quickly as possible. Additionally, all other local fonts will be preloaded, resulting in faster caching and rendering. When combined with CSS Combination, we also modify the font-display property to improve rendering speed.
    • \n
    • Fonts Preloading: With locally hosted fonts being preloaded, you’re allowing browsers to cache and render them at an accelerated pace.
    • \n
    • Remove Query Strings from Static Resources: Improve caching efficiency by removing query strings from static resources, optimizing their caching capabilities.
    • \n
    • Disable Emojis: Prevent WordPress from detecting and generating emojis on your pages by disabling emojis support. This helps boost your page speed and improve your website performance.
    • \n
    • DNS Pre-fetch for External Domains: Enabling the DNS Pre-fetch for a domain will resolve it before resources from it get requested making those resources load faster.
    • \n
    \n

    MEDIA OPTIMIZATIONS

    \n

    Optimize your website media by reducing image size by up to 85% times while maintaining top-notch quality.

    \n

    Image Compression:

    \n

    Effortlessly compress images to resize your existing images and reduce the space they occupy on your server. The dimensions of the images will remain unchanged, allowing for optimized storage. Fine-tune the compression level and choose whether to create backups of the original images. Please note that image compression feature is exclusive to the SiteGround Environment.

    \n

    WebP Images:

    \n

    Leverage the power of WebP, a cutting-edge image format supported by modern browsers, to significantly reduce the size of your images and skyrocket your page speed. If a browser doesn’t support WebP, the original images will be loaded.

    \n

    Lazy Load Media:

    \n

    Take control of your website’s asset loading with the ability to enable or disable Lazy Load for various assets. You can exclude specific assets such as iframes, videos, thumbnails, widgets, and shortcodes from the dropdown menu. Additionally, you have the option to exclude specific images from the Lazy Load by adding their respective class in the dedicated tab.

    \n

    Maximum Image Width:

    \n

    If you frequently upload large images to your website, you can enable the Maximum Image Width option that automatically resizes existing and future images whose width exceeds 2560 pixels. By optimizing image sizes, you can enhance your website performance and reduce bandwidth usage.
    \nYou can customize your media optimisation to your specific needs using the filters, we’ve designed for this purpose.

    \n

    SPEED TEST

    \n

    Evaluate the optimization level of your website with Speed Optimizer’s Speed test tool. Our website performance check utilizes the robust capabilities of Google PageSpeed to provide comprehensive insights into your site’s optimization. By conducting the speed test, you will receive detailed results highlighting areas that can be further optimized for enhanced performance. These insights will empower you to fine-tune your website and unlock its maximum potential and increase conversions.

    \n

    Requirements

    \n

    In order to work correctly, this plugin requires that your server meets the following criteria:

    \n
      \n
    • WordPress 4.7
    • \n
    • PHP 7.0+
    • \n
    \n

    Our plugin uses a cookie in order to function properly. It does not store personal data and is used solely for the needs of our caching system.

    \n

    Data Collection

    \n

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    \n

    Credits

    \n

    Photo credits to Anna Shvets https://www.pexels.com/@shvetsa

    \n", "donate_link": "", "num_ratings": 620, "screenshots": {"1": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-1.png?rev=2763281", "caption": "The SiteGround Optimizer Dashboard Page offers a quick look at the current optimization status of your website, along with shortcuts to the relevant optimization pages."}, "2": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-2.png?rev=2763281", "caption": "The SiteGround Optimizer Caching Page handles your Dynamic caching and Memcached. Here, you can exclude URls from the cache, test your site and purge the Dynamic caching manually."}, "3": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-3.png?rev=2763281", "caption": "The SiteGround Optimizer Environment Page, you can force HTTPS for your site, tweak the WordPress Heartbeat Optimization, pre-fetch external domains and enable the Database Maintenance."}, "4": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-4.png?rev=2763281", "caption": "The SiteGround Optimizer Frontend Optimization Page allows you to Minify HTML, CSS & JS, as well as to remove query strings from your static resources and disable the Emoji support."}, "5": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-5.png?rev=2763281", "caption": "The SiteGround Optimizer Media Page allows you to optimize your Media Library images, as well as adds Lazy Loading functionality for your site."}, "6": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-6.png?rev=2763281", "caption": "The SiteGround Optimizer Speed Test Page, allows you to test your site loading speed, as well as additional tips on improving your site performance."}}, "support_url": "https://wordpress.org/support/plugin/sg-cachepress/", "contributors": {"sstoqnov": {"avatar": "https://secure.gravatar.com/avatar/16c4db5a3e2228a8bd2115ceed9d4fbd784a9a884d3178ac1997e6f0f1598c6b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sstoqnov/", "display_name": "Stanimir Stoyanov"}, "hristo-sg": {"avatar": "https://secure.gravatar.com/avatar/e48e95eba4f298f73069e3545b63f3e6ac6c20104ff14e664afa6d787625918a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hristo-sg/", "display_name": "Hristo Pandjarov"}, "siteground": {"avatar": "https://secure.gravatar.com/avatar/9062b915cdcde9dbcc9a9462f2f7a030d40a76a3ed831d2a0973c30c02977a75?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/siteground/", "display_name": "SiteGround"}, "ignatggeorgiev": {"avatar": "https://secure.gravatar.com/avatar/44f0331e6cafbc984fe23d168888aea42eefaf2515e3ca8b7da80f736211d407?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ignatggeorgiev/", "display_name": "Ignat Georgiev"}, "stoyangeorgiev": {"avatar": "https://secure.gravatar.com/avatar/61bc666b338c57c8cfdab31b559c98507650a3ef3eb2687638de9318bff2e2c9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stoyangeorgiev/", "display_name": "Stoyan Georgiev"}, "elenachavdarova": {"avatar": "https://secure.gravatar.com/avatar/c5ec7321923222a44319137b21294bc18ce0456899974592c57718afac62cd80?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elenachavdarova/", "display_name": "Elena Chavdarova"}}, "last_updated": "2025-04-15 7:33am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/sg-cachepress.7.7.2.zip", "author_profile": "https://profiles.wordpress.org/siteground/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fa5d-7365-8690-c2fc50c86cb1", "name": "Speed Optimizer – The All-In-One Performance-Boosting Plugin", "slug": "sg-cachepress", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1744702380, "version": "7.7.2"}, "support_threads": 8, "requires_plugins": [], "short_description": "Boost your website performance and page speed, and increase conversions with powerful caching, frontend, media, and environment optimizations.", "author_block_count": 0, "author_block_rating": 84, "commercial_support_url": "", "support_threads_resolved": 5}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1dc0-71d1-94bd-72319dae032a', 'did:web:api.aspiredev.org:packages:wp-plugin:sg-security', 'sg-security', 'Security Optimizer – The All-In-One Protection Plugin', '

    Bulletproof your website security in a few clicks against a range of security breaches, including brute-force attacks, malware threats and bots, with our free WordPress security plugin – Security Optimizer.

    -

    Proactively monitor your site’s security to detect any suspicious activity and take immediate actions to protect your site and prevent further damage with these essential features:

    -
      -
    • Enable 2FA (Two-Factor Authentication) for an extra layer of website security
    • -
    • Set Limit Login Attempts to deter malicious login attempts and brute-force attacks
    • -
    • Change your default login URL to Custom Login URL to avoid attacks
    • -
    • Activate Advanced XSS Protection to fortify your website against malicious attacks
    • -
    • Lock and Protect System Folders to ensure no unauthorized or malicious scripts can be executed in your system folders
    • -
    • Disable Themes & Plugins Editor to safeguard your website from unauthorized access via the WordPress editor
    • -
    • Hide WordPress Version effortlessly, keeping it hidden from prying eyes
    • -
    • Use Activity Log to monitor your site and quickly prevent malicious actions
    • -
    • Post-Hack Actions to take immediate actions and prevent further damages
    • -
    -

    Developed by the website security experts at SiteGround and trusted by over 900,000 webmasters for its robust security shield and ease of use to safeguard WordPress applications from possible attacks on any hosting platform.

    -

    AWARDS:

    -

    Monster Awards 2022: Best WordPress Security Plugin 🥇
    -Monster Awards 2021: Best WordPress Security Plugin 🥇

    -

    Plugin Video

    - -

    Plugin Tutorial

    -

    Unveil the vast array of features and unleash the full potential of our security plugin in our Security Optimizer Tutorial.

    -

    SITE PROTECTION FEATURES

    -

    Safeguard your WordPress application using our powerful site security toolset. Our comprehensive features are specifically designed to strengthen your website’s defenses against malware, exploits, and various malicious activities. With these tools at your disposal, you can ensure the utmost bot, malware and brute force protection for your website:

    -

    Lock and Protect System Folders

    -

    Ensure the maximum security for your application’s system folders by preventing the execution of any unauthorized or malicious scripts. The Lock and Protect System Folders feature acts as a powerful shield against potential threats.

    -

    Hide WordPress Version

    -

    Protect your website from mass attacks by hiding the WordPress version, which helps to mitigate version-specific vulnerabilities.

    -

    Disable Themes & Plugins Editor

    -

    Enhance the security of your WordPress admin area by disabling the Themes & Plugins Editor, preventing potential coding errors and unauthorized access through the editor.

    -

    Disable XML-RPC

    -

    Mitigate potential security risks by disabling the XML-RPC protocol, which has been exploited in various attacks. Please note that disabling XML-RPC will restrict WordPress from communicating with third-party systems. We recommend enabling this feature unless you have a specific need for it.

    -

    Disable RSS and ATOM Feeds

    -

    Prevent content scraping and specific attacks on your site by disabling RSS and ATOM feeds. Unless you have readers accessing your site via RSS readers, it is recommended to keep this feature enabled.

    -

    Advanced XSS Protection

    -

    Add an extra layer of website security against cross-site scripting (XSS) attacks by enabling Advanced XSS Protection, bolstering the overall security of your website.

    -

    Delete Default Readme.html

    -

    Eliminate potential vulnerabilities by deleting the default readme.txt file, which contains information about your website. By removing this file, you reduce the risk of your site being listed in vulnerable sites targeted by hackers.

    -

    Login Security

    -

    Custom Login Url

    -

    Personalize your login URL to thwart potential attacks and create a strong entry point. Bid farewell to the default login URL and embrace a bespoke path of your choosing. Additionally, you have the freedom to modify the default sign-up URL as well.

    -

    Login Access

    -

    Restrict login page access to specific IP addresses or IP ranges, effectively thwarting malicious login attempts and deterring brute force attacks.

    -

    2FA (Two-Factor Authentication)

    -

    Immerse your website in an impenetrable shield of security with 2FA. This formidable feature demands that all admin users furnish a unique token, generated exclusively through the Google Authentication application, during the login process.

    -

    Disable Common Usernames

    -

    Don’t fall victim to predictable security breaches! The use of common usernames, such as ‘admin,’ poses a significant threat to the integrity of your website. Activate this option to disable the creation of common usernames. If any weak usernames already exist, we’ll prompt you to provide new, stronger alternatives.

    -

    Limit Login Attempts

    -

    Maintain control over unauthorized access attempts with Limit Login Attempts. Set a specific threshold for the number of login failures users can endure before consequences arise. After reaching the limit, the IP address associated with the unsuccessful login attempts will be blocked for one hour. Persistent failures will result in longer restrictions, starting with 24 hours and escalating to a week.

    -

    ACTIVITY MONITORING

    -

    Monitor your website and login page for unauthorized visitors and brute force attempts to prevent malicious actions

    -

    Activity Log

    -

    The Activity Log page provides you with a comprehensive view of the activities performed by registered, unknown, and blocked visitors. It allows you to closely monitor any suspicious behavior and take appropriate actions in case of a compromised user, plugin, or hacking attempt. You can leverage the quick tools available to swiftly block future attempts.

    -

    Weekly Security Reports

    -

    Receive a weekly traffic summary for your website directly to your inbox. This Weekly Security Report compiles data on both bot and human traffic, along with details about blocked login and visit attempts to proactively monitor traffic and promptly identify suspicious activity.

    -

    POST-HACK ACTIONS

    -

    Take immediate measures to protect your website if you suspect a compromise and prevent further damage. Here, you’ll find convenient solutions to address the situation effectively:

    -

    Reinstall All Free Plugins

    -

    In the event of a hack, utilizing the Reinstall All Free Plugins feature can help mitigate potential harm. This action reinstalls all of your free plugins, reducing the likelihood of additional exploits or the reuse of malicious code.

    -

    Log Out All Users

    -

    To prevent any further unauthorized activities by users or attackers, you can choose to log out all users instantly using the Log Out All Users feature.

    -

    Force Password Reset

    -

    By enforcing a password reset, you can ensure that all users are prompted to change their passwords during their next login. This not only strengthens the security of their accounts but also immediately logs out all currently logged-in users.

    -

    Requirements

    -
      -
    • WordPress 4.7
    • -
    • PHP 7.0
    • -
    • Working .htaccess file
    • -
    -

    Data Collection

    -

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Security Optimizer – The All-In-One Protection Plugin", "slug": "sg-security", "tags": {"login": "login", "firewall": "firewall", "security": "security", "malware-scanner": "malware scanner", "web-application-firewall": "web application firewall"}, "added": "2021-05-31", "icons": {"1x": "https://ps.w.org/sg-security/assets/icon-128x128.gif?rev=2971855", "2x": "https://ps.w.org/sg-security/assets/icon-256x256.gif?rev=2971855"}, "author": "SiteGround", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/sg-security/assets/banner-772x250.png?rev=2971855", "high": "https://ps.w.org/sg-security/assets/banner-1544x500.png?rev=2971855"}, "ratings": {"1": 12, "2": 2, "3": 4, "4": 4, "5": 127}, "version": "1.5.7", "homepage": "https://siteground.com", "requires": "4.7", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy solucionespirita on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    fulfills its purpose completely, very good

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Always my go to

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy deniz15 on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Pretty simple and light weight

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    extension indispensable

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy urbangames on September 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Cette extension m''a permis d''isoler les Bot indésirables et bloquer toute tentative d''attaque.

    \n\n\n\n

    J''en suis ravi !

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Annoying

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Kristof (MKristof) on July 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Wouldn''t matter if this was the best plug-in ever created. Having a pop-up ask to share data every time you do something is the most annoying thing in the world.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Minimislist, Lightweight and Secure

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy forgeeky on June 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Tried many security plugins, but this one is really simple with clean UI. The amazing part is it has 2FA and also offer to change default login path free of cost.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    SG Optimizer: "Lock Folders" Feature Problematic, Custom Filters Ineffective

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Francesco (seventhose) on June 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using the SiteGround Security Optimizer plugin to enhance the security of a WordPress site. While the plugin offers a useful suite of tools, I encountered a significant and frustrating obstacle with its \"Lock and Protect System Folders\" feature and the related PHP custom filter mechanism, which proved ineffective in my specific case.

    \n\n\n\n

    The Specific Problem: Activating the \"Lock and Protect System Folders\" option correctly identified and blocked direct access to a PHP JavaScript AJAX file (trp-ajax.php) belonging to a well-known and widely used multilingual translation plugin (TranslatePress). This block manifested as Apache AH01630: client denied by server configuration errors in the server logs. Although the basic translation of pages seemed to function initially, the persistence of these errors indicated an underlying malfunction that could compromise secondary but important AJAX functionalities of the translation plugin.

    \n\n\n\n

    Deactivating the \"Lock and Protect System Folders\" option immediately eliminated the errors, confirming that the block was imposed by this specific SG Optimizer feature.

    \n\n\n\n

    Troubleshooting Attempts Following Official SiteGround Documentation: Wanting to keep the folder protection active, I consulted SiteGround''s official guide \"How to Use Security Optimizer''s Custom Filters\" to create an exception (whitelist) for the legitimate file. The guide indicates using the sgs_whitelist_wp_content PHP filter.

    \n\n\n\n

    I implemented the necessary PHP snippet via a dedicated code snippet management plugin (Fluent Snippets), ensuring it was active, globally executed, and that all caches (SiteGround server-side, optimization plugins, browser, CDN if present) were meticulously cleared after each modification and before each test.

    \n\n\n\n

    The following path variations for the file to be added to the $whitelist[] array within the function hooked to the sgs_whitelist_wp_content filter were tested:

    \n\n\n\n
      \n
    1. Full relative path from the wp-content folder: Following the most common logic for WordPress filters operating on a base directory, I tried plugins/translation-plugin-name/includes/file-name.php.
    2. \n\n\n\n
    3. Base filename only: Literally interpreting the extremely simplified example (''file_name.php'') provided in the SiteGround guide for the sgs_whitelist_wp_content hook, I tried adding only ''file-name.php''.
    4. \n\n\n\n
    5. Intermediate variations or absolute paths (the latter are generally not used in WordPress filters but were tested for completeness in the initial stages).
    6. \n
    \n\n\n\n

    None of these attempts, despite scrupulously following the instructions and WordPress filter logic, succeeded in creating an effective exception. The trp-ajax.php file continued to be blocked, and the AH01630 errors persisted whenever the \"Lock and Protect System Folders\" protection was reactivated.

    \n\n\n\n

    Interactions with SiteGround''s AI Assistant: Seeking further assistance, I consulted SiteGround''s AI Assistant. The interactions can be summarized as follows:

    \n\n\n\n
      \n
    • Initial Report: I described the problem, the error, and the failure of whitelisting attempts using the sgs_whitelist_wp_content filter as per their guide, specifying the path formats already tested.
    • \n\n\n\n
    • AI''s Responses: The AI Assistant repeatedly suggested the standard solutions already tried and communicated as ineffective:\n
        \n
      1. Using the sgs_whitelist_wp_content filter with only the base filename.
      2. \n\n\n\n
      3. Using the sgs_whitelist_wp_content filter with the full relative file path.
      4. \n\n\n\n
      5. Generic troubleshooting suggestions (clearing cache, testing in incognito, checking file permissions and .htaccess – the latter less relevant given the AH01630 error indicated a server/plugin configuration block, and the PHP filter was intended to manage that configuration).
      6. \n
      \n
    • \n\n\n\n
    • Despite clarifying multiple times that these methods had already been applied unsuccessfully, the AI continued to propose them, entering a loop and eventually suggesting contact with human technical support.
    • \n
    \n\n\n\n

    Conclusions and Concerns: The experience demonstrates that, at least in my scenario (which I believe to be common: a PHP file from a popular plugin located in a subfolder of wp-content/plugins/), SiteGround Security Optimizer''s custom filter system, particularly sgs_whitelist_wp_content, does not function as documented or as one would expect.

    \n\n\n\n

    This leads to an unpleasant choice for the user:

    \n\n\n\n
      \n
    • Disable a key security feature (\"Lock and Protect System Folders\"), potentially reducing the site''s protection level.
    • \n\n\n\n
    • Accept the malfunctioning of legitimate and necessary plugins, with continuous errors in the logs.
    • \n
    \n\n\n\n

    The official documentation on custom filters, regarding the sgs_whitelist_wp_content hook, appears to be oversimplified and does not provide clear or effective examples for files nested in subdirectories, which constitute the majority of plugin files. The AI Assistant, relying on such documentation, is unable to offer practical solutions for this problem.

    \n\n\n\n

    A review by SiteGround''s development team would be desirable, both of the sgs_whitelist_wp_content filter''s functionality to ensure it correctly handles full relative paths, and of the documentation to provide more accurate and applicable examples. Furthermore, a clear channel for reporting such product-related issues without the user being immediately directed to potentially paid support channels would be beneficial, especially when the problem seems to lie in a flaw or documentary shortcoming of the tool provided by the hosting itself.

    \n\n\n\n

    As it stands, for anyone using plugins with specific PHP files that are blocked by \"Lock and Protect System Folders,\" this aspect of the SiteGround Security Optimizer can be more of a hindrance than a help if one is unwilling to forgo that protection.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incompatible with Translate press

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy leopap on December 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin is quite heavy and makes conflict with translate press. Variations and titles of products disappeared in the second language. After disabling all is back to normal.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Has all of it

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Vedran Mandić (mandicvedran) on November 8, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like that this plugin involves all of the important things and does this in friendly manner ie. admin UI. Limit logins, 2fa, etc.

    \n\n\n\n

    Apart from speed optimizer a must have.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Cannot unsubscribe from the emails

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy swinggraphics on August 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Cannot unsubscribe from the emails without admin access. In my experience, this makes the plugin extremely annoying. They do not plan to fix this.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tinaponting (ponting) on August 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A simple plugin, who does what it supose to do - Protecting:)

    \n
    \n
    \n", "changelog": "

    Version 1.5.7

    \n

    Release Date Nov 21st, 2024

    \n
      \n
    • Translation loading improvements
    • \n
    \n

    Version 1.5.6

    \n

    Release Date: Oct 9th, 2024

    \n
      \n
    • Custom Login URL improvements
    • \n
    • 2FA improvements
    • \n
    • Activity Log improvements
    • \n
    \n

    Version 1.5.5

    \n

    Release Date: Sep 18th, 2024

    \n
      \n
    • Options improvements.
    • \n
    • Block Service improvements.
    • \n
    \n

    Version 1.5.4

    \n

    Release Date: Sep 10th, 2024

    \n
      \n
    • Activity log code improvements.
    • \n
    • Salt Shaker code improvements.
    • \n
    \n

    Version 1.5.3

    \n

    Release Date: Aug 27th, 2024

    \n
      \n
    • Code Improvements.
    • \n
    \n

    Version 1.5.2

    \n

    Release Date: Aug 1st, 2024

    \n
      \n
    • Improved Custom Login Url handling
    • \n
    • Improved Plugins Reinstall actions
    • \n
    • Improved Translations
    • \n
    • Improved plugin config
    • \n
    • Fixed deprecated warnings in custom WP-CLI commands
    • \n
    \n

    Version 1.5.1

    \n

    Release Date: July 17th, 2024

    \n
      \n
    • Improved Activity log bot detection
    • \n
    • Improved Activity log logout handling
    • \n
    • Improved 2FA with third-party custom logins
    • \n
    • Improved compatibility with third-party plugins
    • \n
    • Security improvements related to plugin notices
    • \n
    \n

    Version 1.5.0

    \n

    Release Date: May 23rd, 2024

    \n
      \n
    • Improved support for PHP 8.2 and 8.3.
    • \n
    • Improved plugin configuration.
    • \n
    \n

    Version 1.4.13

    \n

    Release Date: Mar 27th, 2024

    \n
      \n
    • Plugin optimization.
    • \n
    \n

    Version 1.4.12

    \n

    Release Date: Feb 20th, 2024

    \n
      \n
    • Bugfixes related to cookies and 2FA
    • \n
    \n

    Version 1.4.11

    \n

    Release Date: Feb 14th, 2024

    \n
      \n
    • Security improvements related to cookies
    • \n
    • Performance improvements
    • \n
    \n

    Version 1.4.10

    \n

    Release Date: Jan 11th, 2024

    \n
      \n
    • Static assets are now part of the plugin package and load locally.
    • \n
    • New users will be prompted to give their consent for the collection of technical data upon their initial use of the plugin.
    • \n
    \n

    Version 1.4.9

    \n

    Release Date: Dec 12th, 2023

    \n
      \n
    • Improved detection of bots in activity log
    • \n
    • Improved feature “Reinstall All Free Plugins” – deactivated plugins no longer get activated after the reinstall.
    • \n
    \n

    Version 1.4.8

    \n

    Release Date: Nov 22nd, 2023

    \n
      \n
    • Dashboard visuals improvements
    • \n
    • Readme file improvements
    • \n
    • Weekly Security Report improved translations
    • \n
    \n

    Version 1.4.7

    \n

    Release Date: Oct 24th, 2023

    \n
      \n
    • Data collection opt out option
    • \n
    • Readme file formatting improvements
    • \n
    • Plugin name formatting improvements
    • \n
    • Weekly Activity Report Sending Schedule Randomisation
    • \n
    \n

    Version 1.4.6

    \n

    Release Date: Sept 26th, 2023

    \n
      \n
    • Changing the name we use inside the plugin from SiteGround Security to Security Optimizer
    • \n
    • Updating data collection process and Introducing a link in the plugin interface to the Plugin Privacy notice
    • \n
    \n

    Version 1.4.5

    \n

    Release Date: May 4th, 2023

    \n
      \n
    • Improved log cleanup
    • \n
    \n

    Version 1.4.4

    \n

    Release Date: May 3rd, 2023

    \n
      \n
    • Improved Visitors DB table indexing
    • \n
    • Block service restored
    • \n
    \n

    Version 1.4.3

    \n

    Release Date: Apr 27th, 2023

    \n
      \n
    • Block service temporally disabled
    • \n
    \n

    Version 1.4.2

    \n

    Release Date: Apr 27th, 2023

    \n
      \n
    • Improved Activity Log process and filters
    • \n
    • Improved restricted login response code
    • \n
    • Improved PHP 8.2 compatibility
    • \n
    • Alternative constant added for non-standard cron job usage
    • \n
    \n

    Version 1.4.1

    \n

    Release Date: Feb 23rd, 2023

    \n
      \n
    • Internal configuration improvements
    • \n
    \n

    Version 1.4.0

    \n

    Release Date: Feb 1st, 2023

    \n
      \n
    • Internal configuration changes
    • \n
    \n

    Version 1.3.9

    \n

    Release Date: Jan 25th, 2023

    \n
      \n
    • Improved Foogra Theme support
    • \n
    \n

    Version 1.3.8

    \n

    Release Date: Dec 6th, 2022

    \n
      \n
    • Improved Rest response
    • \n
    • Improved Settings Page checks
    • \n
    • Improved Disable Themes & Plugins Editor
    • \n
    \n

    Version 1.3.7

    \n

    Release Date: Nov 15th, 2022

    \n
      \n
    • SG Security Dashboard bugfix
    • \n
    • Improved 2FA Encryption key validation
    • \n
    • Improved Custom Login/Register URL validation
    • \n
    • Improved LiteSpeed Cache support
    • \n
    • Option to use custom 2FA encryption key filepath
    • \n
    \n

    Version 1.3.6

    \n

    Release Date: Nov 8th, 2022

    \n
      \n
    • Improved 2FA security with encryption
    • \n
    • Improved Access Log filters
    • \n
    • New WP-CLI command: reset all users 2FA setup
    • \n
    \n

    Version 1.3.5

    \n

    Release Date: Oct 18th, 2022

    \n
      \n
    • Improved Custom Login URL
    • \n
    • Improved Activity log
    • \n
    \n

    Version 1.3.4

    \n

    Release Date: Oct 10th, 2022

    \n
      \n
    • Install service fix
    • \n
    \n

    Version 1.3.3

    \n

    Release Date: Oct 10th, 2022

    \n
      \n
    • New Manage Activity Log option
    • \n
    • New filter – Disable activity log
    • \n
    • Improved Custom login url
    • \n
    • Improved WP-CLI support
    • \n
    • Improved Jetpack plugin support
    • \n
    • Improved error handling
    • \n
    • Minor bug fixes
    • \n
    • Legacy code removed
    • \n
    \n

    Version 1.3.2

    \n

    Release Date: Sept 21st, 2022

    \n
      \n
    • 2FA Backup codes security strengthening
    • \n
    \n

    Version 1.3.1

    \n

    Release Date: Sept 13th, 2022

    \n
      \n
    • 2FA Authentication Security Strengthening
    • \n
    • IP Address detection Security Strengthening
    • \n
    \n

    Version 1.3.0

    \n

    Release Date: July 14th, 2022

    \n
      \n
    • Brand New Design
    • \n
    • Improved 2FA Authentication compatibility with Elementor custom login pages
    • \n
    • Improved data collection
    • \n
    • Minor fixes
    • \n
    \n

    Version 1.2.9

    \n

    Release Date: June 20th, 2022

    \n
      \n
    • NEW Filters for “Lock and Protect System Folders” excludes
    • \n
    • Improved IP Ranges support
    • \n
    • Improved Blocked IP addresses list
    • \n
    • Improved Delete the Default Readme.html
    • \n
    • Improved 2FA Authentication validation
    • \n
    • Improved 2FA Authentication support for “My Account” login
    • \n
    • Improved Data Collection
    • \n
    • Minor fixes
    • \n
    \n

    Version 1.2.8

    \n

    Release Date: May 18th, 2022

    \n
      \n
    • Improved plugin security
    • \n
    \n

    Version 1.2.7

    \n

    Release Date: April 8th, 2022

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    Version 1.2.6

    \n

    Release Date: April 7th, 2022

    \n
      \n
    • 2FA Refactoring
    • \n
    \n

    Version 1.2.5

    \n

    Release Date: April 6th, 2022

    \n
      \n
    • 2FA Authentication refactoring
    • \n
    • Improved Weekly Emails
    • \n
    • HTST service deprecated
    • \n
    \n

    Version 1.2.4

    \n

    Release Date: March 16th, 2022

    \n
      \n
    • Improved Weekly Emails
    • \n
    • Improved Woocommerce Payments plugin support
    • \n
    • 2FA Authentication Security Strengthening
    • \n
    \n

    Version 1.2.3

    \n

    Release Date: March 11th, 2022

    \n
      \n
    • 2FA Authentication Security Strengthening
    • \n
    \n

    Version 1.2.2

    \n

    Release Date: March 11th, 2022

    \n
      \n
    • 2FA Authentication Security Strengthening
    • \n
    \n

    Version 1.2.1

    \n

    Release Date: March 9th, 2022

    \n
      \n
    • Improved Weekly reports
    • \n
    • Improved HTTP Headers service
    • \n
    • Code Refactoring
    • \n
    \n

    Version 1.2.0

    \n

    Release Date: February 28th, 2022

    \n
      \n
    • NEW – Weekly Reports
    • \n
    • Code Refactoring and General Improvements
    • \n
    • Improved 2FA user role support
    • \n
    • Improved error handling
    • \n
    • Improved Limit Login IP Range support
    • \n
    • Improved Event log
    • \n
    • Improved Phlox theme support
    • \n
    • Minor fixes
    • \n
    • Improved WP-CLI support
    • \n
    • Environment data collection consent added
    • \n
    \n

    Version 1.1.3

    \n

    Release Date: October 1st, 2021
    \n* Improved Hide WP version functionality

    \n

    Version 1.1.2

    \n

    Release Date: August 20th, 2021
    \n* Improved Custom Login URL functionality
    \n* Improved 2FA
    \n* Improved success/error messages

    \n

    Version 1.1.1

    \n

    Release Date: August 12th, 2021
    \n* Improved 2FA
    \n* Improved logout functionality

    \n

    Version 1.1.0

    \n

    Release Date: July 27th, 2021
    \n* NEW! Added 2FA backup codes to the profile edit page
    \n* NEW! Custom login and registration URLs
    \n* NEW! Added automatic HSTS headers generation
    \n* Improved Disable common usernames functionality
    \n* Improved Mass Logout Service
    \n* Improved Activity Logging and added custom labeling
    \n* Improved Password Reset functionality

    \n

    Version 1.0.4

    \n
      \n
    • Improved Limit Login Attempts
    • \n
    \n

    Version 1.0.3

    \n
      \n
    • Fixed rating box bug on safari
    • \n
    • Improved RSS & ATOM Feed Disabler service
    • \n
    \n

    Version 1.0.2

    \n
      \n
    • Added filter to configure log lifetime
    • \n
    • Added WP CLI support
    • \n
    • Improved strings
    • \n
    \n

    Version 1.0.1

    \n
      \n
    • Added defaults on install
    • \n
    • Improved translation support
    • \n
    • Added cleanup on uninstall
    • \n
    \n

    Version 1.0.0

    \n
      \n
    • First stable release.
    • \n
    \n

    Version 0.1

    \n
      \n
    • Initial release.
    • \n
    \n", "description": "

    Bulletproof your website security in a few clicks against a range of security breaches, including brute-force attacks, malware threats and bots, with our free WordPress security plugin – Security Optimizer.

    \n

    Proactively monitor your site’s security to detect any suspicious activity and take immediate actions to protect your site and prevent further damage with these essential features:

    \n
      \n
    • Enable 2FA (Two-Factor Authentication) for an extra layer of website security
    • \n
    • Set Limit Login Attempts to deter malicious login attempts and brute-force attacks
    • \n
    • Change your default login URL to Custom Login URL to avoid attacks
    • \n
    • Activate Advanced XSS Protection to fortify your website against malicious attacks
    • \n
    • Lock and Protect System Folders to ensure no unauthorized or malicious scripts can be executed in your system folders
    • \n
    • Disable Themes & Plugins Editor to safeguard your website from unauthorized access via the WordPress editor
    • \n
    • Hide WordPress Version effortlessly, keeping it hidden from prying eyes
    • \n
    • Use Activity Log to monitor your site and quickly prevent malicious actions
    • \n
    • Post-Hack Actions to take immediate actions and prevent further damages
    • \n
    \n

    Developed by the website security experts at SiteGround and trusted by over 900,000 webmasters for its robust security shield and ease of use to safeguard WordPress applications from possible attacks on any hosting platform.

    \n

    AWARDS:

    \n

    Monster Awards 2022: Best WordPress Security Plugin 🥇
    \nMonster Awards 2021: Best WordPress Security Plugin 🥇

    \n

    Plugin Video

    \n\n

    Plugin Tutorial

    \n

    Unveil the vast array of features and unleash the full potential of our security plugin in our Security Optimizer Tutorial.

    \n

    SITE PROTECTION FEATURES

    \n

    Safeguard your WordPress application using our powerful site security toolset. Our comprehensive features are specifically designed to strengthen your website’s defenses against malware, exploits, and various malicious activities. With these tools at your disposal, you can ensure the utmost bot, malware and brute force protection for your website:

    \n

    Lock and Protect System Folders

    \n

    Ensure the maximum security for your application’s system folders by preventing the execution of any unauthorized or malicious scripts. The Lock and Protect System Folders feature acts as a powerful shield against potential threats.

    \n

    Hide WordPress Version

    \n

    Protect your website from mass attacks by hiding the WordPress version, which helps to mitigate version-specific vulnerabilities.

    \n

    Disable Themes & Plugins Editor

    \n

    Enhance the security of your WordPress admin area by disabling the Themes & Plugins Editor, preventing potential coding errors and unauthorized access through the editor.

    \n

    Disable XML-RPC

    \n

    Mitigate potential security risks by disabling the XML-RPC protocol, which has been exploited in various attacks. Please note that disabling XML-RPC will restrict WordPress from communicating with third-party systems. We recommend enabling this feature unless you have a specific need for it.

    \n

    Disable RSS and ATOM Feeds

    \n

    Prevent content scraping and specific attacks on your site by disabling RSS and ATOM feeds. Unless you have readers accessing your site via RSS readers, it is recommended to keep this feature enabled.

    \n

    Advanced XSS Protection

    \n

    Add an extra layer of website security against cross-site scripting (XSS) attacks by enabling Advanced XSS Protection, bolstering the overall security of your website.

    \n

    Delete Default Readme.html

    \n

    Eliminate potential vulnerabilities by deleting the default readme.txt file, which contains information about your website. By removing this file, you reduce the risk of your site being listed in vulnerable sites targeted by hackers.

    \n

    Login Security

    \n

    Custom Login Url

    \n

    Personalize your login URL to thwart potential attacks and create a strong entry point. Bid farewell to the default login URL and embrace a bespoke path of your choosing. Additionally, you have the freedom to modify the default sign-up URL as well.

    \n

    Login Access

    \n

    Restrict login page access to specific IP addresses or IP ranges, effectively thwarting malicious login attempts and deterring brute force attacks.

    \n

    2FA (Two-Factor Authentication)

    \n

    Immerse your website in an impenetrable shield of security with 2FA. This formidable feature demands that all admin users furnish a unique token, generated exclusively through the Google Authentication application, during the login process.

    \n

    Disable Common Usernames

    \n

    Don’t fall victim to predictable security breaches! The use of common usernames, such as ‘admin,’ poses a significant threat to the integrity of your website. Activate this option to disable the creation of common usernames. If any weak usernames already exist, we’ll prompt you to provide new, stronger alternatives.

    \n

    Limit Login Attempts

    \n

    Maintain control over unauthorized access attempts with Limit Login Attempts. Set a specific threshold for the number of login failures users can endure before consequences arise. After reaching the limit, the IP address associated with the unsuccessful login attempts will be blocked for one hour. Persistent failures will result in longer restrictions, starting with 24 hours and escalating to a week.

    \n

    ACTIVITY MONITORING

    \n

    Monitor your website and login page for unauthorized visitors and brute force attempts to prevent malicious actions

    \n

    Activity Log

    \n

    The Activity Log page provides you with a comprehensive view of the activities performed by registered, unknown, and blocked visitors. It allows you to closely monitor any suspicious behavior and take appropriate actions in case of a compromised user, plugin, or hacking attempt. You can leverage the quick tools available to swiftly block future attempts.

    \n

    Weekly Security Reports

    \n

    Receive a weekly traffic summary for your website directly to your inbox. This Weekly Security Report compiles data on both bot and human traffic, along with details about blocked login and visit attempts to proactively monitor traffic and promptly identify suspicious activity.

    \n

    POST-HACK ACTIONS

    \n

    Take immediate measures to protect your website if you suspect a compromise and prevent further damage. Here, you’ll find convenient solutions to address the situation effectively:

    \n

    Reinstall All Free Plugins

    \n

    In the event of a hack, utilizing the Reinstall All Free Plugins feature can help mitigate potential harm. This action reinstalls all of your free plugins, reducing the likelihood of additional exploits or the reuse of malicious code.

    \n

    Log Out All Users

    \n

    To prevent any further unauthorized activities by users or attackers, you can choose to log out all users instantly using the Log Out All Users feature.

    \n

    Force Password Reset

    \n

    By enforcing a password reset, you can ensure that all users are prompted to change their passwords during their next login. This not only strengthens the security of their accounts but also immediately logs out all currently logged-in users.

    \n

    Requirements

    \n
      \n
    • WordPress 4.7
    • \n
    • PHP 7.0
    • \n
    • Working .htaccess file
    • \n
    \n

    Data Collection

    \n

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    \n", "screenshots": "
    1. \"\"
    2. \"\"
    3. \"\"
    4. \"\"
    5. \"\"
    ", "installation": "

    Automatic Installation

    \n
      \n
    1. Go to Plugins -> Add New
    2. \n
    3. Search for “Security Optimizer by SiteGround”
    4. \n
    5. Click on the Install button under the Security Optimizer by SiteGround plugin
    6. \n
    7. Once the plugin is installed, click on the Activate plugin link
    8. \n
    \n

    Manual Installation

    \n
      \n
    1. Login to the WordPress admin panel and go to Plugins -> Add New
    2. \n
    3. Select the ‘Upload’ menu
    4. \n
    5. Click the ‘Choose File’ button and point your browser to the sg-security.zip file you’ve downloaded
    6. \n
    7. Click the ‘Install Now’ button
    8. \n
    9. Go to Plugins -> Installed Plugins and click the ‘Activate’ link under the WordPress Security Optimizer by SiteGround listing
    10. \n
    \n"}, "versions": {"1.5.2": "https://downloads.wordpress.org/plugin/sg-security.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/sg-security.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/sg-security.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/sg-security.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/sg-security.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/sg-security.1.5.7.zip", "trunk": "https://downloads.wordpress.org/plugin/sg-security.zip"}, "downloaded": 29858556, "description": "

    Bulletproof your website security in a few clicks against a range of security breaches, including brute-force attacks, malware threats and bots, with our free WordPress security plugin – Security Optimizer.

    \n

    Proactively monitor your site’s security to detect any suspicious activity and take immediate actions to protect your site and prevent further damage with these essential features:

    \n
      \n
    • Enable 2FA (Two-Factor Authentication) for an extra layer of website security
    • \n
    • Set Limit Login Attempts to deter malicious login attempts and brute-force attacks
    • \n
    • Change your default login URL to Custom Login URL to avoid attacks
    • \n
    • Activate Advanced XSS Protection to fortify your website against malicious attacks
    • \n
    • Lock and Protect System Folders to ensure no unauthorized or malicious scripts can be executed in your system folders
    • \n
    • Disable Themes & Plugins Editor to safeguard your website from unauthorized access via the WordPress editor
    • \n
    • Hide WordPress Version effortlessly, keeping it hidden from prying eyes
    • \n
    • Use Activity Log to monitor your site and quickly prevent malicious actions
    • \n
    • Post-Hack Actions to take immediate actions and prevent further damages
    • \n
    \n

    Developed by the website security experts at SiteGround and trusted by over 900,000 webmasters for its robust security shield and ease of use to safeguard WordPress applications from possible attacks on any hosting platform.

    \n

    AWARDS:

    \n

    Monster Awards 2022: Best WordPress Security Plugin 🥇
    \nMonster Awards 2021: Best WordPress Security Plugin 🥇

    \n

    Plugin Video

    \n\n

    Plugin Tutorial

    \n

    Unveil the vast array of features and unleash the full potential of our security plugin in our Security Optimizer Tutorial.

    \n

    SITE PROTECTION FEATURES

    \n

    Safeguard your WordPress application using our powerful site security toolset. Our comprehensive features are specifically designed to strengthen your website’s defenses against malware, exploits, and various malicious activities. With these tools at your disposal, you can ensure the utmost bot, malware and brute force protection for your website:

    \n

    Lock and Protect System Folders

    \n

    Ensure the maximum security for your application’s system folders by preventing the execution of any unauthorized or malicious scripts. The Lock and Protect System Folders feature acts as a powerful shield against potential threats.

    \n

    Hide WordPress Version

    \n

    Protect your website from mass attacks by hiding the WordPress version, which helps to mitigate version-specific vulnerabilities.

    \n

    Disable Themes & Plugins Editor

    \n

    Enhance the security of your WordPress admin area by disabling the Themes & Plugins Editor, preventing potential coding errors and unauthorized access through the editor.

    \n

    Disable XML-RPC

    \n

    Mitigate potential security risks by disabling the XML-RPC protocol, which has been exploited in various attacks. Please note that disabling XML-RPC will restrict WordPress from communicating with third-party systems. We recommend enabling this feature unless you have a specific need for it.

    \n

    Disable RSS and ATOM Feeds

    \n

    Prevent content scraping and specific attacks on your site by disabling RSS and ATOM feeds. Unless you have readers accessing your site via RSS readers, it is recommended to keep this feature enabled.

    \n

    Advanced XSS Protection

    \n

    Add an extra layer of website security against cross-site scripting (XSS) attacks by enabling Advanced XSS Protection, bolstering the overall security of your website.

    \n

    Delete Default Readme.html

    \n

    Eliminate potential vulnerabilities by deleting the default readme.txt file, which contains information about your website. By removing this file, you reduce the risk of your site being listed in vulnerable sites targeted by hackers.

    \n

    Login Security

    \n

    Custom Login Url

    \n

    Personalize your login URL to thwart potential attacks and create a strong entry point. Bid farewell to the default login URL and embrace a bespoke path of your choosing. Additionally, you have the freedom to modify the default sign-up URL as well.

    \n

    Login Access

    \n

    Restrict login page access to specific IP addresses or IP ranges, effectively thwarting malicious login attempts and deterring brute force attacks.

    \n

    2FA (Two-Factor Authentication)

    \n

    Immerse your website in an impenetrable shield of security with 2FA. This formidable feature demands that all admin users furnish a unique token, generated exclusively through the Google Authentication application, during the login process.

    \n

    Disable Common Usernames

    \n

    Don’t fall victim to predictable security breaches! The use of common usernames, such as ‘admin,’ poses a significant threat to the integrity of your website. Activate this option to disable the creation of common usernames. If any weak usernames already exist, we’ll prompt you to provide new, stronger alternatives.

    \n

    Limit Login Attempts

    \n

    Maintain control over unauthorized access attempts with Limit Login Attempts. Set a specific threshold for the number of login failures users can endure before consequences arise. After reaching the limit, the IP address associated with the unsuccessful login attempts will be blocked for one hour. Persistent failures will result in longer restrictions, starting with 24 hours and escalating to a week.

    \n

    ACTIVITY MONITORING

    \n

    Monitor your website and login page for unauthorized visitors and brute force attempts to prevent malicious actions

    \n

    Activity Log

    \n

    The Activity Log page provides you with a comprehensive view of the activities performed by registered, unknown, and blocked visitors. It allows you to closely monitor any suspicious behavior and take appropriate actions in case of a compromised user, plugin, or hacking attempt. You can leverage the quick tools available to swiftly block future attempts.

    \n

    Weekly Security Reports

    \n

    Receive a weekly traffic summary for your website directly to your inbox. This Weekly Security Report compiles data on both bot and human traffic, along with details about blocked login and visit attempts to proactively monitor traffic and promptly identify suspicious activity.

    \n

    POST-HACK ACTIONS

    \n

    Take immediate measures to protect your website if you suspect a compromise and prevent further damage. Here, you’ll find convenient solutions to address the situation effectively:

    \n

    Reinstall All Free Plugins

    \n

    In the event of a hack, utilizing the Reinstall All Free Plugins feature can help mitigate potential harm. This action reinstalls all of your free plugins, reducing the likelihood of additional exploits or the reuse of malicious code.

    \n

    Log Out All Users

    \n

    To prevent any further unauthorized activities by users or attackers, you can choose to log out all users instantly using the Log Out All Users feature.

    \n

    Force Password Reset

    \n

    By enforcing a password reset, you can ensure that all users are prompted to change their passwords during their next login. This not only strengthens the security of their accounts but also immediately logs out all currently logged-in users.

    \n

    Requirements

    \n
      \n
    • WordPress 4.7
    • \n
    • PHP 7.0
    • \n
    • Working .htaccess file
    • \n
    \n

    Data Collection

    \n

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    \n", "donate_link": "", "num_ratings": 149, "screenshots": {"1": {"src": "https://ps.w.org/sg-security/assets/screenshot-1.png?rev=2763283", "caption": ""}, "2": {"src": "https://ps.w.org/sg-security/assets/screenshot-2.png?rev=2763283", "caption": ""}, "3": {"src": "https://ps.w.org/sg-security/assets/screenshot-3.png?rev=2763283", "caption": ""}, "4": {"src": "https://ps.w.org/sg-security/assets/screenshot-4.png?rev=2763283", "caption": ""}, "5": {"src": "https://ps.w.org/sg-security/assets/screenshot-5.png?rev=2763283", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/sg-security/", "contributors": {"sstoqnov": {"avatar": "https://secure.gravatar.com/avatar/16c4db5a3e2228a8bd2115ceed9d4fbd784a9a884d3178ac1997e6f0f1598c6b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sstoqnov/", "display_name": "Stanimir Stoyanov"}, "hristo-sg": {"avatar": "https://secure.gravatar.com/avatar/e48e95eba4f298f73069e3545b63f3e6ac6c20104ff14e664afa6d787625918a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hristo-sg/", "display_name": "Hristo Pandjarov"}, "siteground": {"avatar": "https://secure.gravatar.com/avatar/9062b915cdcde9dbcc9a9462f2f7a030d40a76a3ed831d2a0973c30c02977a75?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/siteground/", "display_name": "SiteGround"}, "ignatggeorgiev": {"avatar": "https://secure.gravatar.com/avatar/44f0331e6cafbc984fe23d168888aea42eefaf2515e3ca8b7da80f736211d407?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ignatggeorgiev/", "display_name": "Ignat Georgiev"}, "stoyangeorgiev": {"avatar": "https://secure.gravatar.com/avatar/61bc666b338c57c8cfdab31b559c98507650a3ef3eb2687638de9318bff2e2c9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stoyangeorgiev/", "display_name": "Stoyan Georgiev"}, "elenachavdarova": {"avatar": "https://secure.gravatar.com/avatar/c5ec7321923222a44319137b21294bc18ce0456899974592c57718afac62cd80?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elenachavdarova/", "display_name": "Elena Chavdarova"}}, "last_updated": "2025-04-15 7:48am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/sg-security.1.5.7.zip", "author_profile": "https://profiles.wordpress.org/siteground/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fa41-7313-804f-49a2edd2ebab", "name": "Security Optimizer – The All-In-One Protection Plugin", "slug": "sg-security", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1744703280, "version": "1.5.7"}, "support_threads": 4, "requires_plugins": [], "short_description": "Secure your WordPress site from brute-force attacks, threats, malware, and bots. Free to use and easy to set up.", "author_block_count": 0, "author_block_rating": 92, "commercial_support_url": "", "support_threads_resolved": 3}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1dcf-72bb-bfc7-bce3b0a1e751', 'did:web:api.aspiredev.org:packages:wp-plugin:smart-slider-3', 'smart-slider-3', 'Smart Slider 3', ' -

    Homepage | Features | Templates | Videos | Docs | Support

    -

    Smart Slider 3 is the most powerful and intuitive WordPress plugin to create sliders which was never possible before. Fully responsive, SEO optimized and works with any WordPress theme. Create beautiful sliders and tell stories without any code.

    -

    Live slide editor

    -

    A beautiful interface makes creating slides fast and efficient. The complete freedom to build what you want, the way you want. Edit your slides as you used to in page builders. Drop layers after each other and structure them with rows and columns.

    -

    Unique Layouts with Layers

    -

    Enhance your slider with the layers and make your site even more unique and grandiose. Every heading, text, image, button and video can be edited easily with the customization options. Change all the details that really matter in typography and style.

    -

    Responsive, Mobile-Ready Sliders

    -

    Switch your slider to a different device mode and optimize your content for the resolution. Your site can be enjoyed in any environment, be it a mobile, tablet or desktop.

    -

    Beautiful Sliders to Start

    -

    No tech skills are needed, just pick a slider template. It works like magic! Choose from a variety of beautiful templates or start with a blank Slider. The simple way to build every kind: image, layer, video and post slider.

    -

    Most powerful features

    -
      -
    • Default position – Edit your slides as you used to in page builders.
    • -
    • Absolute position – Drag and drop your layers anywhere on the slide with absolute layers.
    • -
    • Slide LibrarySlide Library provides several pre-made slides to kickstart your work.
    • -
    • Totally integrated with WordPress – Media manager, shortcode, widget, post permalinks, post editor.
    • -
    • Page Builder support – Elementor, Divi, Beaver Builder, Page Builder by SiteOrigin, Visual Composer, WPBakery Page Builder, Gutenberg and many more…
    • -
    • Totally responsive and touch friendly – Sliders can be enjoyed on any device, be it a mobile, tablet or desktop.
    • -
    • Dynamic Slides – Available source: WordPress posts
    • -
    • Customizable controls – Arrows, Bullets, Autoplay, Bar, Thumbnails, Shadows
    • -
    • Slide backgrounds – 9 Super smooth background animations
    • -
    • Layers – Build unique designs with 6 varied layers: Image, Heading, Text, Button, Vimeo, YouTube
    • -
    • Font and Style manager system – Change easily all the details that really matter in typography and style.
    • -
    • Template sliders15 sliders to start
    • -
    -

    Features:

    -
      -
    • Import and Export sliders
    • -
    • Intuitive slide creation: choose images, select WordPress Posts or add YouTube and Vimeo videos
    • -
    • Static overlay
    • -
    • Touch swipe, scroll, keyboard navigation
    • -
    • Full-width and boxed responsive layouts
    • -
    • Slide-switching animations: Horizontal, Vertical, Fade
    • -
    • Slide background animations
    • -
    • Autoplay timing options
    • -
    • Slider controls: Arrow, Bullet, Autoplay, Bar, Thumbnail and Shadow
    • -
    • SEO optimized
    • -
    • Layers: Image, Heading, Text, Button, Vimeo, YouTube
    • -
    • Layer snap in visual slide editor
    • -
    • Adaptive layer font sizing
    • -
    • Hide layers on specific devices
    • -
    • Slide thumbnail image
    • -
    • WordPress Multi Site compatible
    • -
    • Custom responsive breakpoints
    • -
    -

    Testimonials

    -
    -

    “I can heartily recommend the free version. It already provides more functionality than any other slider plugin – even many premium ones.” – Daniel Pataki – WPMU DEV

    -

    “Having tried more than a few WordPress slider plugins, both free and paid, I can honestly say that this is one of the best that I’ve ever tested…” – Daryn Collier – WPKube

    -

    “Since Smart Slider is free to use, I do not have to really stress how good a plugin it is because you can download it yourself and see for yourself.” – Kevin Muldoon

    -

    “This plugin can be used for much more than a simple slider – being able to create whole sections of your website.” – Oliver Dale – WPLift

    -

    “Taking all this into consideration we can safely say that Smart Slider 3 is one of the top WordPress slider plugins.” – Mark Zahra – WP Mayor

    -
    -

    Support

    -

    Smart Slider 3 is a community-driven project that would not be the same without your feedback. If you have any problem or feature request for this plugin, please feel free to contact us!

    -

    Smart Slider 3 Pro Features:

    -
      -
    • All template sliders
    • -
    • Layer animation builder
    • -
    • Live animation timeline
    • -
    • 18 extra layers
    • -
    • 2 extra slider types
    • -
    • Full page responsive layout
    • -
    • All generators for dynamic slides
    • -
    • Extra background animations (more than 54)
    • -
    • Built-in lightbox
    • -
    • Advanced controls and many more control presets
    • -
    • A ton of customization options
    • -
    • Premium support
    • -
    • Full list of features
    • -
    -

    Unlock Your Full Potential with Smart Slider 3 Pro

    -

    Dynamic slide sources in the FREE version

    -
      -
    • WordPress Posts: WordPress posts by Category and Tag filter or only the specified posts.
    • -
    -

    Dynamic slide sources in PRO version

    -
      -
    • WordPress Custom Posts: WordPress posts from custom post types by custom taxonomy filter or only the specified custom posts
    • -
    • WooCommerce slider from products: Woocommerce products by Category, Tag, Featured, In Stock and downloadable filter or only the specified products.
    • -
    • NextGEN Gallery: displays the images and related meta from the selected source gallery.
    • -
    • Events: Events by Category and Tag filter. Supported plugins: All-in-One Event Calendar, Events Manager, The Events Calendar
    • -
    • Image slider: displays the images and related meta from the selected source gallery. Supported plugins: Gallery by BestWebSoft, Photo Gallery by WD
    • -
    • Social dynamic sources: Twitter, Facebook, Flickr, Picasa, YouTube, Pinterest
    • -
    -

    Translations

    -
      -
    • English
    • -
    • Spanish (es_ES) 99%
    • -
    • Portuguese (Brasil) (pt_BR) 60%
    • -
    • Polish (pl_PL) 60%
    • -
    • Russian (ru_RU) 59%
    • -
    • Italian (it_IT) 55%
    • -
    • French (fr_FR) 50%
    • -
    • Hungarian (hu_HU) 44%
    • -
    • Traditional Chinese (zh_TW) 42%
    • -
    • Finnish (fi_FI) 39%
    • -
    • Japanese (ja_JP) 37%
    • -
    • German (de_DE) 31%
    • -
    -

    Is Smart Slider 3 the tool you’ve been looking for?

    -
      -
    • Come hang out in our Facebook Community for tips and inspiration.
    • -
    • Dive into our fun YouTube tutorials and supercharge your skills.
    • -
    • Show some love on WordPress with a rating to support us.
    • -
    • Get inspired daily on Twitter by following us.
    • -
    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Smart Slider 3", "slug": "smart-slider-3", "tags": {"slider": "slider", "image-slider": "image slider", "layer-slider": "layer slider", "wordpress-slider": "wordpress slider", "responsive-slider": "responsive slider"}, "added": "2015-11-12", "icons": {"1x": "https://ps.w.org/smart-slider-3/assets/icon.svg?rev=2307688", "svg": "https://ps.w.org/smart-slider-3/assets/icon.svg?rev=2307688"}, "author": "Nextendweb", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/smart-slider-3/assets/banner-772x250.png?rev=2974547", "high": "https://ps.w.org/smart-slider-3/assets/banner-1544x500.png?rev=2974547"}, "ratings": {"1": 22, "2": 12, "3": 5, "4": 18, "5": 1056}, "version": "3.5.1.29", "homepage": "https://smartslider3.com/", "requires": "5.0", "sections": {"faq": "\n
    \n1. How do I add the slider to my site?\n\n

    \n

    You can add your slider by shortcode or via the widget control panel or PHP shortcode. Watch the 🎥 Publishing tutorial video to learn more about the topic.

    \n

    \n
    \n2. Where can I reach the documentation?\n\n

    \n

    https://smartslider.helpscoutdocs.com/

    \n

    \n
    \n3. Where is Canvas mode?\n\n

    \n

    Canvas mode was renamed to Absolute. You can add Absolute positioned layers using the toggle at the Add panel, and switch a Default layer to Absolute at layer window > Style tab > Position.

    \n

    But we recommend working with Default positioned layers because the responsive behavior is better, and the slide building is much faster. Most layouts people want to create can be done with Default positioned layers only. Absolute positioned layers should only be used for decoration.

    \n

    Want to learn more about Absolute positioned layers? 🎥 Check out the tutorial video!

    \n

    \n
    \n4. Why is there an empty space where the slider should be?\n\n

    \n

    It means that there is a JavaScript error on your site which blocks other scripts(for example Smart Slider’s scripts). You can open up the browser debugger window with F12 button and check the console if it shows error or not. If you solve these errors Smart Slider should work fine.

    \n

    Usual problem is that you have the latest WordPress version, but your theme loads very old jQuery version (1.7 or older) and the WordPress admin bar throws a JavaScript error. In this case, you have to remove the old jQuery from your theme’s functions.php.

    \n

    If you are unable to solve these problems, feel free to contact us!

    \n

    \n
    \n5. What should I do when I experience any problem?\n\n

    \n

    Contact us!

    \n

    \n
    \n6. Is Smart Slider 3 is totally responsive?\n\n

    \n

    Smart Slider 3 is 100% responsive with each items, so it will fit perfectly into your page, regardless of the size of your desktop screen or device.

    \n

    Be sure you check out the tutorial video about the 🎥 Responsive Settings.

    \n

    \n
    \n7. Can I customize the fonts of the slider?\n\n

    \n

    Yes you can customize everything for every state. (Hover, normal) The slider comes with Google Web Font support, allowing you to pick from over a dozen font families. You can also use your own font by simply writing its name to the font family field. Check out our tutorial video to learn how to use custom fonts.

    \n

    \n
    \n8. Can I show multiple instances of slider on one page?\n\n

    \n

    Yes, you can use as many sliders on a page as you want. But you can only use one slider once.

    \n

    \n
    \n9. How to include a slider in a post or a page?\n\n

    \n

    [smartslider3 slider=Here comes the slider id]

    \n

    \n
    \n10. How to include a slider into header.php or other PHP files?\n\n

    \n

    <?php echo do_shortcode('[smartslider3 slider=Here comes the slider id]'); ?>

    \n

    \n
    \n11. Does Smart Slider support sites with SSL?\n\n

    \n

    Of course! Smart Slider use protocol relative urls which works fine on http:// and on https:// too.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very satisifed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jwed on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We have been using Smartslider for about 5 years in many projects. It has just gotten better with the years.
    Smartslider has a steep learning curve and sometimes you might get stuck om a detail. But support is excellent and it is quickly resolved if you dont figure it out by yourself.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Très satisfaisant

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nourredine2007 on September 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Pour peu qu''on prenne le temps de se familiarise avec SMARTSlider 3 Version Pro, il devient un outil fascinant et performant et sans aller jusqu''à se compliquer la tache avec js ou autre, il s''avère utile à tout développeur de site web

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best application and support ever

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy niosme on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best slider out there. The app contains no bugs its my main app i install on every site and the support always there when you need them.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Smart Slider is the best!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stevecook6275 on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve tried just about every carousel/slider plugin out there, Smart Slider is the absolute best. I love it! I would recommend it to anyone looking for a top notch, easy to use plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Flexible and easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy elimelight on August 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Although shortcode driven, there''s not much you can''t do with this.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Waste of time

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy websitetalkingheads on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Poor Documentation, hides features, way to complicated for the little it does.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    SEO friendly, needs better documentation or....

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy artbild on July 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hey guys, I just purchased the Smart Slider 3 plugin and installed it today. So far so good. But right after choosing a caroussel layout, the trouble started. It is impossible to remove the spacing between the slides. Landscape images do not get scaled correctly, after the second scroll the slides have huge spaced in between. 2 or 3 demo sliders for most common use cases, would be really helpful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hegenberg on July 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simply the best. I thanks all the Gods and Goddesses for it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great (pricing, customization, loading) will be my go-to

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anonymous User (anonymized_23333692) on July 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is affordable and great to have!
    I seldomly post on reviews, but this plugin after a day of use I have to.

    \n\n\n\n
      \n
    1. Pricing: it is NOT A SUBSCRIPTION!!!!!!!!! OMG, subscription pricing has been a pain and it''s everywhere. To see a plugin where you pay per site once is a breath of fresh air and very welcoming.
    2. \n\n\n\n
    3. Customization: It gives the user good amount of customization to really take it to the next level. I wish I can copy paste some custom settings to the next, but so far it''s been a pleasure.
    4. \n\n\n\n
    5. Loading: It''s very light and fast!
    6. \n
    \n\n\n\n

    Overall, this will be my go to. I will be very happy to end some of my subscription to other site and replace it with this. Thank you!!! Keep up the good work. :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A delight to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy scottdot on July 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Smart Slider is one of the best overall plugins I''ve used. If I don''t know what some setting or parameter does, it offers good explanations. Best of all, it''s wildly responsive, fast, and fun to use. I''m spending a good chunk of my day building new sliders for a website and I wanted to share the love. Very much thinking about upgrading to Pro later this afternoon. Great work, Smart Slider team!

    \n
    \n
    \n", "changelog": "

    3.5.1.29 – 22. July 2025

    \n
      \n
    • Feature: webGL background animation image smoothing can be turned off using custom js codes.
    • \n
    • Fix: Vulnerability fix.
    • \n
    • Fix: Empty lines at Posts by IDs generator will be filtered out.
    • \n
    • Fix: PHP 8.2+ compatibility fixes.
    • \n
    • Fix: Vimeo layer, YouTube layer videos couldn’t be started in some cases.
    • \n
    \n

    3.5.1.28 – 19. May 2025

    \n
      \n
    • Feature: Accessibility improvements on bullets.
    • \n
    • Fix: Filtering out unnecessary data from WordPress post generators.
    • \n
    • Fix: Numpad enter triggers clicking actions too.
    • \n
    • Fix: Thumbnail images will use their settings given size in their width and height html attributes.
    • \n
    • Fix: On dynamic slides, the Youtube layer’s Cover image field turned its variable into the value.
    • \n
    \n

    3.5.1.27 – 20. February 2025

    \n
      \n
    • Feature: The latest background animation limitations are hardcoded now, to avoid wrong usage.
    • \n
    • Feature: Title attribute for slide thumbnail.
    • \n
    • Fix: At WordPress Posts generators taxonomies with the same name overwrote each other.
    • \n
    \n

    3.5.1.26 – 9. December 2024

    \n
      \n
    • Fix: Customizer breaks in some cases.
    • \n
    • Fix: Sliding main animation doesn’t moves slides together.
    • \n
    • Other: Black Friday sale notification removed.
    • \n
    \n

    3.5.1.25 – 21. November 2024

    \n
      \n
    • Feature: Improved accessibility.
    • \n
    • Other: Black Friday sale notification added.
    • \n
    \n

    3.5.1.24 – 30. September 2024

    \n
      \n
    • Feature: Hide layer when variable is not empty option at dynamic slides.
    • \n
    • Feature: Asset (css, js) injector code improved.
    • \n
    • Feature: Active thumbnails will get aria-current=”true” attribute.
    • \n
    • Feature: Container element of bullets will get role=”group” attribute.
    • \n
    • Feature: Aria-label option for the container element of bullets.
    • \n
    • Feature: Blockquote option for Heading layer.
    • \n
    • Fix: Some background animations are buggy in Chrome, so we rewrote them to use a different animation system.
    • \n
    • Fix: Post IDs option cleared the given post’s cache at every page visit.
    • \n
    • Fix: WordPress free installer will include unminified js and css files.
    • \n
    • Fix: Generic font family names won’t have quotemarks around them.
    • \n
    • Fix: Autoplay button didn’t have width and height attributes.
    • \n
    \n

    3.5.1.23 – 11. April 2024

    \n
      \n
    • Fix: At WordPress Posts generator if you have a meta data or ACF data with a name already used as a variable, it can get overwritten.
    • \n
    • Fix: Security improvements for image uploads.
    • \n
    • Fix: Only allow files with WordPress allowed mime types to be uploaded.
    • \n
    • Fix: The Resize and Convert to webp features could have issues with images from certain external servers.
    • \n
    \n

    3.5.1.22 – 27. February 2024

    \n
      \n
    • Feature: Youtube videos cannot be started until they fully loaded, but from now on, we will detect early click actions on them and try to start the video once it loaded, as long as it is not prevented by a browser limitation.
    • \n
    • Removed: Black Friday sale notification removed.
    • \n
    \n

    3.5.1.21 – 15. November 2023

    \n
      \n
    • Fix: Previous widget rendering fix undone. Our widget will render, even when the theme doesn’t supports it, because you can use widgets in themes that way too.
    • \n
    \n

    3.5.1.20 – 14. November 2023

    \n
      \n
    • Fix: WP Compress compatibility.
    • \n
    • Fix: Our widget won’t render, when the theme doesn’t supports it.
    • \n
    • Fix: YouTube layer’s video won’t start on mobiles when the video is started before the page completely loaded.
    • \n
    • Fix: Row and Column background colors can create an error message in PHP 8.1+, when their color codes only contain numbers.
    • \n
    • Fix: The path of some images created PHP errors.
    • \n
    • Fix: iOS devices opened parent element links twice, when a text layer was clicked on them.
    • \n
    • Feature: Iframe Title option for Vimeo layer.
    • \n
    • Other: Black Friday sale notification added.
    • \n
    • Other: Spanish translation update. Thanks Rodrigo!
    • \n
    • Removed: A fix for an old Safari bug won’t be needed anymore, as it got resolved quite a while ago.
    • \n
    \n

    3.5.1.19 – 14. August 2023

    \n
      \n
    • Fix: Some WordPress 6.3 block theme editors (site editor, widget manager or page editor) won’t load next to Smart Slider.
    • \n
    \n

    3.5.1.18 – 10. August 2023

    \n
      \n
    • Fix: WP Grid Builder conflict, which made WP Grid Builder’s checkbox filtering not work.
    • \n
    • Fix: Gutenberg compatibility for WordPress 6.3
    • \n
    • Fix: Extra mouse buttons (like “back” button) won’t open links in sliders any longer.
    • \n
    • Fix: PHP8 compatibility.
    • \n
    • Fix: Sliders did not show up on websites using Perfmatters plugin.
    • \n
    • Fix: Wrong slider titles were written out within SiteOrigin Page Builder.
    • \n
    • Fix: Sliders sometimes did not load on websites using WP Meteor plugin.
    • \n
    • Feature: The “Image Width” setting of arrows and autoplay buttons are now available in the Free version too.
    • \n
    • Feature: Playsinline attribute added to all videos, to avoid them being opened fullscreen by default on iOS devices.
    • \n
    \n

    3.5.1.17 – 12. June 2023

    \n
      \n
    • Feature: Google font list got updated.
    • \n
    • Feature: Norwegian language update.
    • \n
    • Fix: Jetpack conflict could cause 500 Internal Server Error, or PHP error message appear.
    • \n
    • Removed: JetPack Photon image optimizer option got deprecated, because it creates too many possible issues.
    • \n
    \n

    3.5.1.16 – 18. May 2023

    \n
      \n
    • Fix: Block themes only display shortcodes instead of sliders in WordPress 6.2.1.
    • \n
    • Fix: Beaver Builder row duplication issue, when Smart Slider is in the row.
    • \n
    \n

    3.5.1.15 – 12. May 2023

    \n
      \n
    • Feature: Database managing codes got updated.
    • \n
    • Feature: Norwegian translation.
    • \n
    • Feature: Hebrew translation.
    • \n
    • Fix: Gutenberg plugin conflict.
    • \n
    • Fix: PHP8.2.4+ compatibility code.
    • \n
    • Fix: Image layer alt tag and title was encoded twice.
    • \n
    • Fix: Show editor icon option did not work in Text Editor mode.
    • \n
    • Fix: Some database column length limitations got increased.
    • \n
    • Fix: Meta (FB, Instagram) image files don’t always have the extension, which is indicated in their filenames. This caused issues with the Resize option.
    • \n
    \n

    3.5.1.14 – 16. February 2023

    \n
      \n
    • Feature: PHP 8.2 compatibility.
    • \n
    • Fix: Touch JS codes won’t affect one slide sliders, for better scrolling experience.
    • \n
    • Fix: Shortcode sanitization to strengthen security.
    • \n
    • Other: Spanish translation update. Thanks Rodrigo!
    • \n
    \n

    3.5.1.13 – 30. January 2023

    \n
      \n
    • Feature: Google font list is updated.
    • \n
    • Feature: Youtube layer will support youtube-nocookie.com urls too. But you should note, that still the YouTube And Vimeo Privacy Enhanced Mode setting defines, whether your videos come from youtube.com or from youtube-nocookie.com!
    • \n
    • Feature: Private Vimeo url support for Lightbox.
    • \n
    • Fix: Not selecting a slider in Avada Builder could cause PHP errors.
    • \n
    • Fix: Compatibility fix for WoodMart theme.
    • \n
    • Fix: MySQL 8.0 compatibility fix, where “system” is a reserved keyword so we’ll no longer use it as a column name.
    • \n
    • Fix: Divi module changes ensure that Divi sets the proper slider. (You might need to re-pick your sliders, if you haven’t changed the default value at the Divi module, as in that case your slider was not saved.)
    • \n
    • Fix: Avada Builder compatibility fix to ensure that the slider loads properly into the builder.
    • \n
    • Fix: On the Smart Slider admin area the shortcode did not appear correctly when Gutenberg’s “edit slider” button was leading you to the slider settings page.
    • \n
    • Other: Russian translation update.
    • \n
    \n

    3.5.1.12 – 15. November 2022

    \n
      \n
    • Feature: New Slide Library theme: Nala.
    • \n
    • Fix: RankMath SEO compatibility that caused problems within the Media Library in certain configurations.
    • \n
    • Fix: The last column could be deleted from the row if the row had a nested layer causing errors.
    • \n
    • Fix: The notice at the Change Slider Type modal was fixed so it no longer writes out HTML code but actually bolds the texts.
    • \n
    • Fix: Output buffer fix to avoid WP-CLI issues.
    • \n
    • Fix: Ionos performance compatibility.
    • \n
    • Fix: Usercentrics cookie consent plugin compatibility.
    • \n
    • Fix: WP Rocket compatibility that makes Smart Slider automatically excluded from WP Rocket’s Delay JavaScript execution feature.
    • \n
    • Fix: Compatibility fix for Zoho CRM Lead Magnet plugin.
    • \n
    • Fix: Smart Slider will no longer break if CUSTOM_TAGS is defined.
    • \n
    • Fix: Default value is set to Smart Slider Divi module to ensure proper slider selection.
    • \n
    • Fix: Improved security to avoid Javascript codes from admin area fields.
    • \n
    \n

    3.5.1.11 – 03. October 2022

    \n
      \n
    • Feature: Notice, when NONCE_SALT constant is not defined.
    • \n
    • Feature: YouTube layer will support YouTube shorts URLs too.
    • \n
    • Feature: The Export at the Bulk Actions will no longer create a zip file when only one slider is exported.
    • \n
    • Feature: Notice when the Autoplay is enabled in a slider that contains a single slide.
    • \n
    • Fix: Improved security during slider import
    • \n
    • Fix: Analyze and Repair now fix auto_increment issues within the slider’s tables.
    • \n
    • Fix: Split by words advanced generator function caused PHP error, when the length of the word was shorter than the start value.
    • \n
    • Fix: Better specify Functions.php location to avoid problems in certain cases.
    • \n
    • Fix: Finish autoplay did not stop at last slide, when carousel was turned off.
    • \n
    • Fix: Improved check for minimum system requirements.
    • \n
    • Fix: Save Fonts Locally option at Google fonts didn’t work.
    • \n
    • Fix: ?ver query string added to the CSS file the Save Fonts Locally option generates.
    • \n
    • Other: The minimum WordPress version Smart Slider requires is now 5.0. (WordPress 6.x is supported, too.)
    • \n
    • Other: The Spanish translation is updated. Thanks, Rodrigo!
    • \n
    \n

    3.5.1.9 – 19. August 2022

    \n
      \n
    • Feature: Improved notice when the Autoplay is used on a single slide to avoid confusion.
    • \n
    • Feature: u tag is now allowed in text layer.
    • \n
    • Fix: PHP 8.1. compatibility fixes.
    • \n
    • Fix: Allow data protocol when Jetpack is active to avoid it removing the arrows and other base64 images.
    • \n
    • Fix: Major overhaul of the way the plugin deals with options. This should fix a some bugs and provide improved security.
    • \n
    • Other: Spanish translation updated. Thanks, Rodrigo!
    • \n
    • Other: Dutch translation updated. Thanks, Frank!
    • \n
    • Other: PHP related conflicts were renamed at the Debug Information to more accurately reflect the cause of the conflict.
    • \n
    \n

    3.5.1.7 – 26. May 2022

    \n
      \n
    • Fix: Major overhaul of the way the plugin deals with options. This should fix a some bugs and provide improved security. To enhance security the “JavaScript callbacks” option was removed. If you need to write custom codes to manipulate the slider follow this guide to learn how.
    • \n
    • Fix: Improved check for valid values at layer content and name.
    • \n
    • Fix: Aria-role attribute is renamed to role.
    • \n
    • Fix: UIPress.co compatibility.
    • \n
    • Fix: Grabbing cursor now properly displays when the slides are switching with mouse grabbing.
    • \n
    • Fix: Fix for a Deprecated: preg_match(): Passing null to parameter #4 error in rare cases.
    • \n
    • Fix: The CSS code that hides the Bullet thumbnail was strengthened to avoid 3rd party codes overriding it and messing up the layout.
    • \n
    • Fix: The style tag for the Slide CSS will only be added to the HTML if it has any content.
    • \n
    • Fix: The old default family, Montserrat is not used anymore at the backend so its call was removed.
    • \n
    • Fix: Elementor has deprecated the controls_registered method so from 3.6.0 and above we use the new register method to include the Smart Slider widget to Elementor.
    • \n
    • Fix: Compatibility fix for Divi on PHP 8.
    • \n
    • Other: Translation related improvements, including unifying texts that do the same action on different places.
    • \n
    • Other: Spanish translation is updated. Thanks, Rodrigo!
    • \n
    \n

    3.5.1.4 – 28. Feburary 2022

    \n
      \n
    • Feature: Save Fonts Locally option to cache Google Fonts.
    • \n
    • Fix: Updating from really old Smart Slider versions might caused a PHP notice to appear.
    • \n
    • Fix: Smart Slider element doesn’t work within Elementor Pro when WooCommerce is also installed on the website.
    • \n
    • Fix: Weglot plugin’s language switcher appeared in page builder created sliders.
    • \n
    • Fix: Mobile Firefox slide swiping didn’t worked well, as mobile Firefox won’t allow to stop page scroll any longer.
    • \n
    • Fix: Better error handling for cases when the WebP support is disabled on the server to avoid PHP errors.
    • \n
    • Fix: Dynamic slides didn’t accepted variables in color fields.
    • \n
    • Fix: WordPress posts generator code optimization and Elementor compatibility.
    • \n
    • Fix: n2-clear class added to the main div that contains the ss3-force-full-width and ss3-fullpage elements to make the Clear Before option work properly.
    • \n
    • Fix: Smart Slider display fixed in Tatsu builder.
    • \n
    • Fix: Compatibility fix for lower WordPress versions which use the classic widgets.
    • \n
    • Deprecated: Slider’s Inline JavaScript option.
    • \n
    • Other: Spanish translation updated. Thanks, Rodrigo!
    • \n
    • Other: Google font list updated with latest fonts
    • \n
    • Other: Links updated in the Help Section to point to more appropriate help articles.
    • \n
    \n

    3.5.1.3 – 18. January 2022

    \n
      \n
    • Feature: Pagination and Search options in the Dashboard.
    • \n
    • Feature: The variable selector is now available at the column and row background colors.
    • \n
    • Feature: We’ll use pointer cursor at the thumbnails to indicate that they’re clickable.
    • \n
    • Feature: Perfmatter compatibility improvements.
    • \n
    • Fix: Overflow hidden is added to vertical thumbnails to allow rounded borders.
    • \n
    • Fix: Firefox changed the default background color of the select tag, which creates less contrast between the text and background. We changed it back to white.
    • \n
    • Fix: The color picker allowed saving a 7 digit color code, which resulted a bad color.
    • \n
    • Fix: Margin and padding values are now translatable in the Slide editor UI.
    • \n
    • Fix: Optimize images option now works on full URLs.
    • \n
    • Fix: The YouTube layer didn’t always recognize the youtu.be URLs properly.
    • \n
    • Fix: Static Overlay background options caused error when the only slide in the slider is a Static Overlay.
    • \n
    • Fix: Smart Slider’s custom widget area will now properly display the publishing instructions.
    • \n
    • Fix: Background Blur could show up even if the fill mode was not set to Blur fit.
    • \n
    • Other: Spanish translation updated. Thanks, Rodrigo!
    • \n
    • Other: The es_ES.po and es_ES.mo renamed to es.po and es.mo respectively to support all Spanish languages.
    • \n
    \n

    3.5.1.2 – 18. November 2021

    \n
      \n
    • Feature: The old background animations are allowed again when the fill mode is not fill, but anything else.
    • \n
    • Feature: You can now customize the Loading animation delay time.
    • \n
    • Fix: Image layer box shadow now shows up in the Slide Editor.
    • \n
    • Fix: We fixed an error that happened because Elementor has deprecated the _content_template method we used to create our Elementor Widget.
    • \n
    • Fix: Compatibility fixes with Perfmatters.
    • \n
    • Fix: The old Smart Slider WordPress widget can be moved back to Elementor using the SMART_SLIDER_ELEMENTOR_WIDGET_ALLOWED constant. As a result the sliders won’t be missing after the 3.4.1.7 update.
    • \n
    • Fix: The slider resize didn’t always get triggered on mobile when the device was rotated.
    • \n
    • Fix: The When ended Go to next slide option will no longer trigger the Scroll to slider behavior at the video layers.
    • \n
    • Other: Dutch translation added. Thanks, Frank!
    • \n
    • Other: Spanish translation updated. Thanks, Rodrigo!
    • \n
    \n

    3.5.1.1 – 20. October 2021

    \n
      \n
    • Feature: Background blur option for the Blur fit fill mode.
    • \n
    • Fix: Divi Builder plugin has strong codes so we use a special ss-p tag to display the texts. An issue was fixed related to these ss-p tags that made them display incorrectly.
    • \n
    • Fix: Focus incorrectly stayed on the arrow after slide switching.
    • \n
    • Fix: Arrows could get highlighted in Safari.
    • \n
    • Other: Better handling of the translation files.
    • \n
    • Other: French translation added. Thanks, Jean-Francois!
    • \n
    \n

    3.5.1.0 – 5. October 2021

    \n
      \n
    • Fix: 100% wide image layer appeared wrong when it had a link on it.
    • \n
    • Fix: Text Scale option could create different result in Preview and Editor in extreme cases.
    • \n
    • Fix: Column calculation adjusted for better responsive accuracy.
    • \n
    • Fix: When the Autoplay is enabled and only one slide is available, this one slide is duplicated to allow the autoplay to work. From now on the dynamic slides are skipped from this process. If there’s a dynamic slide that displays a single slide only, that won’t be duplicated for the autoplay.
    • \n
    • Fix: Translate URL now works on the background image of the Content layer.
    • \n
    • Fix: We adjusted the strength of the CSS codes affecting the Thumbnail control’s images to avoid 3rd party codes hiding them.
    • \n
    • Fix: A wrong path could be generated for the resized thumbnail image at the backend in rare cases.
    • \n
    • Fix: Rank Math SEO integration adjusted to avoid possible JavaScript errors at custom post types.
    • \n
    • Other: Spanish translation has been updated. Thanks, Rodrigo!
    • \n
    \n

    3.5.0.11 – 13. September 2021

    \n
      \n
    • Feature: The “Block carousel” feature is now available for free users as well.
    • \n
    • Feature: Gutenberg block toolbar is available at the slider. Also, there’s an option to go to the slide editor directly from the block.
    • \n
    • Feature: Pressing enter on any control will trigger the control’s action, as if it was clicked.
    • \n
    • Fix: Force full width sliders weren’t always properly positioned in Divi.
    • \n
    • Fix: SVG paths were wrong in the HTML export of the slider.
    • \n
    • Fix: Fix for an output buffer problem related to Themeco Pro theme.
    • \n
    • Fix: Fix for a conflict between “Scroll To Slider” and “Use as Anchor > Smooth scroll” that created a weird scrolling.
    • \n
    • Fix: The image size box overlapped the thumbnail text on RTL UI.
    • \n
    • Fix: Long slider names are cropped when copied/duplicated, to ensure that the new slider can be created.
    • \n
    • Fix: PHP 8 compatibility fix to avoid Heading layers creating hdiv tag.
    • \n
    • Fix: On WordPress multisite installation only administrators can have unfiltered_html capability, which is required to be able to access the slider. We’ve modified the error message to reflect this.
    • \n
    • Fix: Some Google fonts contain space character, which wasn’t properly encoded.
    • \n
    • Fix: Minimum height CSS won’t be added if the value is 0 or smaller.
    • \n
    • Fix: We added 50MS timeout to HTMLImageElement.decode() as its promise wasn’t always resolved in Safari.
    • \n
    • Fix: Outer positioned controls could create scrollbar, especially on small screens.
    • \n
    • Removed: Google font subsets are now removed, as in a browser that supports unicode-range the subset is dynamically served, there’s no need to force it.
    • \n
    • Other: A couple of strings were not translate-able, which is now fixed. Want to translate Smart Slider?
    • \n
    \n

    3.5.0.10 – 21. June 2021

    \n
      \n
    • Feature: Smart Slider displays a preview image in Gutenberg’s Add Block panel
    • \n
    • Feature: New Google fonts added to the font suggestion list.
    • \n
    • Fix: Slide title and description are copped at Static Save to avoid reaching server limitation.
    • \n
    • Fix: From now on the Wrap After option won’t be available on non-fullwidth rows, as they break automatically based on the space they need.
    • \n
    • Fix: Smart Slider now properly appears on Google’s Mobile friendly test.
    • \n
    • Fix: Scale to left main animation didn’t appear properly in the Free version.
    • \n
    • Fix: Compatibility fix for Yandex.News Feed by Teplitsa which wrongly fetched certain slide data. From now on no part of the slider appears in their fetch.
    • \n
    • Fix: Text bar will display the HTML codes in the Slide title and description field again.
    • \n
    • Fix: Outer right control position was wrong on RTL.
    • \n
    • Fix: Better check for RankMath dependency, so it won’t be loaded on pages where RankMath doesn’t loads its codes.
    • \n
    • Fix: Outer left and right controls had wrong width. From now on they’ll have the same width as the slider.
    • \n
    • Fix: Themify builder conflict fixed with background videos
    • \n
    • Fix: The slider’s force fullwidth calculation could position the slider wrongly when the slider was placed into another “force fullwith” container.
    • \n
    • Fix: Error handling for cases when the Top or Bottom focus selector is invalid.
    • \n
    • Fix: Allow transparent color as hover background.
    • \n
    • Fix: Pixel bug on the bottom of the slide in certain cases.
    • \n
    • Fix: Z-index fixes for the Simple and Block type to avoid 3rd parties modify the z-index of the background images.
    • \n
    • Fix: Better error handling for cases when the installation didn’t run properly due to some database error.
    • \n
    • Fix: WP Bakery Frontend editor will display the slider again when Yoast is enabled.
    • \n
    • Fix: From now on the unfiltered_html capability is required to edit the slides on WordPress
    • \n
    \n

    3.5.0.9 – 10. June 2021

    \n
      \n
    • Feature: From now on your can set an Alt tag for the Slide Thumbnail.
    • \n
    • Fix: Absolute positioned layers didn’t rotate.
    • \n
    • Fix: Workaround adjusted for the Safari bug which makes non-fullwidth rows create unnecessary line wrap.
    • \n
    • Fix: Slider and slide title fields are sanitized.
    • \n
    • Fix: Arrow style didn’t work in preview.
    • \n
    • Fix: Empty background color caused PHP error.
    • \n
    • Fix: Force fullwidth slider might appeared offscreen in rare cases.
    • \n
    • Fix: Compatibility fix for Admin 2020 plugin.
    • \n
    • Fix: Slider flickered in Gutenberg editor in rare cases.
    • \n
    • Fix: Nested, not full width Absolute layer width couldn’t be changed.
    • \n
    • Other: Editor role no longer gets access to Smart Slider on new installations.
    • \n
    \n

    3.5.0.8 – 02. June 2021

    \n

    Warning: Smart Slider 3.5 is not backwards compatible! Before upgrading check the possible issues and their solutions you might see after updating to 3.5.

    \n
      \n
    • New: Speed improvements which help you make Smart Slider 3 pass Core Web Vitals.
    • \n
    • Removed: jQuery dependency is removed. From now on Smart Slider only uses vanilla JavaScript.
    • \n
    • Removed: px+ from padding and margin values. From now on everything will be fix px value.
    • \n
    • Removed: Non adaptive font resizing is removed, and from now on everything will be adaptive. If you need the adaptive scaling at the layers you created before the update which previously used non-adaptive scaling, turn on “Legacy Font Scale” at Slider settings > Developer tab.
    • \n
    • Feature: Async option for non-primary CSS files.
    • \n
    • Feature: Horizontal mouse wheel control option.
    • \n
    • Fix: Compatibility fix for Cachify plugin.
    • \n
    • Fix: Compatibility fix for WooCommerce Blocks plugin.
    • \n
    • Fix: Compatibility fix for A3 Lazy Loading plugin.
    • \n
    • Fix: Compatibility fix for Woodmart theme.
    • \n
    • Fix: Compatibility fix for Flatsome theme.
    • \n
    • Fix: Compatibility fix for Newspaper theme’s tagDiv Composer.
    • \n
    • Fix: LiteSpeed cache plugin’s Generate Critical CSS option.
    • \n
    • Fix: Twenty Seventeen theme conflict with Scroll to Slider option.
    • \n
    • Fix: Divi Builder plugin caused problems with the align and max width options.
    • \n
    • Fix: Fixes for RTL display that affected the Inner align, force full width calculation and arrow control positioning.
    • \n
    \n

    3.4.1.17 – 08. March 2021

    \n
      \n
    • Feature: Remove script type attributes
    • \n
    • Feature: Exclude certain Google fonts from loading
    • \n
    • Feature: Allow less than 1000ms slide duration values to override the autoplay duration.
    • \n
    • Fix: Compatibility with AMP for WP
    • \n
    • Fix: Polylang ajax issue
    • \n
    • Fix: WP Security Audit Log conflict
    • \n
    • Fix: Generator fill background color end
    • \n
    • Fix: WP Rocket 3.8.1 changes
    • \n
    • Fix: Mouse wheel events outside the slider
    • \n
    • Fix: Removal of jQuery deprecated functions
    • \n
    • Other: Simplified Chinese translation
    • \n
    \n

    3.4.1.16 – 18. January 2021

    \n
      \n
    • Fix: WP Rocket compatibility
    • \n
    • Fix: B tag line break in Chrome
    • \n
    \n

    3.4.1.15 – 13. January 2021

    \n
      \n
    • Feature: PHP 8 compatibility
    • \n
    • Fix: WordPress post generator dates
    • \n
    • Fix: Thumbnail hover switching
    • \n
    • Fix: WP Rocket compatibility
    • \n
    \n

    3.4.1.14 – 26. November 2020

    \n
      \n
    • Feature: Accessibility improvements
    • \n
    • Fix: WPRocket RocketCDN compatibility
    • \n
    • Fix: Jetpack lazy loading compatibility
    • \n
    • Fix: Elementor fix when no slider is selected
    • \n
    • Deprecated: PX+
    • \n
    \n

    3.4.1.13 – 11. November 2020

    \n
      \n
    • Fix: Themify themes output buffer issue
    • \n
    \n

    3.4.1.12 – 11. November 2020

    \n
      \n
    • Fix: Layer duplication
    • \n
    • Fix: Themify themes output buffer issue
    • \n
    • Fix: Remove sliders from AMP pages
    • \n
    • Other: Black Friday sale notice added
    • \n
    \n

    3.4.1.11 – 28. October 2020

    \n
      \n
    • Fix: Autoptimize lazy loading cause flickering background image
    • \n
    \n

    3.4.1.10 – 27. October 2020

    \n
      \n
    • Feature: Certain HTML tags are enabled in the Heading layer. See the full list of supported tags.
    • \n
    • Feature: Post slug variable for WordPress Post generator
    • \n
    • Fix: WP Rocket compatibility
    • \n
    • Fix: Alias switching
    • \n
    • Fix: Rename in layer list and Breakpoint value change in Safari
    • \n
    • Fix: Nested Absolute layers in column
    • \n
    • Fix: Output buffer for Speed Booster Pack cache
    • \n
    • Fix: Slider loading optimization
    • \n
    • Fix: Simply Exclude plugin added to conflict list.
    • \n
    • Fix: PageSpeed ninja plugin compatibility (enabled Gzip caused missing files.)
    • \n
    \n

    3.4.1.9 – 26. August 2020.

    \n
      \n
    • Feature: Placeholder uses Min height when its set
    • \n
    • Feature: BoldGrid Post and Page Builder compatibility
    • \n
    • Feature: Smart Slider 3 now renders the sliders via iframe in Brizy editor
    • \n
    • Fix: Clear device Keyboard Shortcuts
    • \n
    • Fix: Trashed sliders showed up in the dashboard in rare cases
    • \n
    • Fix: Slide Library remove localStorage slide cache to avoid quota exceeded errors.
    • \n
    • Fix: Text bar animates with correct opacity
    • \n
    • Fix: Firefox click with keyboard
    • \n
    • Fix: Beaver Builder compatibility
    • \n
    • Fix: Image variables might caused errors in a Dynamic slide
    • \n
    • Fix: table names changed for better JEvents compatibility
    • \n
    • Fix: Redux Framework compatibility
    • \n
    • Fix: Generator custom sized image variable names
    • \n
    • Fix: Parallax is disabled in Mac Safari to avoid browser issues
    • \n
    • Fix: Image box layer image vertical align
    • \n
    • Other: Google font list updated
    • \n
    \n

    3.4.1.8 – 10. June 2020.

    \n
      \n
    • Feature: Vimeo layer custom aspect ratio
    • \n
    • Feature: YouTube layer custom aspect ratio
    • \n
    • Fix: Iframe window of Smart Slider in Divi builder
    • \n
    • Fix: Iframe slider fix when load delayed
    • \n
    • Fix: Divi fix for shortcode
    • \n
    • Fix: Hide notice of Analytify in Slide Editor and preview
    • \n
    • Fix: Remove pixel snapping codes as it might cause Firefox shaking and Chrome does not need is since Chrome v75.
    • \n
    • Fix: Arrow control – Mirror with previous disabled fix
    • \n
    • Fix: Disabled arrows for types, where there was no disabled option earlier.
    • \n
    • Fix: Prevent opening multiple lightboxes at the same time
    • \n
    • Fix: Slider height when vertical thumbnail hidden
    • \n
    • Fix: Fix youtube cover image flicker
    • \n
    • Fix: Empty slide background image after saving a slide which was created in 3.3.x version
    • \n
    • Fix: Exclude Smart Slider images from A3 Lazy Load plugin to avoid problems
    • \n
    • Fix: Force iframe mode when HTTP_X_REQUESTED_WITH = swup
    • \n
    • Fix: Slide padding value spaces.
    • \n
    \n

    3.4.1.7 – 19. May 2020.

    \n
      \n
    • Fix: Horizontal bar is not showing
    • \n
    \n

    3.4.1.6 – 19. May 2020.

    \n
      \n
    • Warning: 3.4 version is not backwards compatible! After installing this version, you won’t be able to go back to 3.3.x.
    • \n
    • Smart Slider 3.4 no longer supports Internet Explorer browser at all!
    • \n
    • Feature: Content mode was renamed to Default and Canvas mode is now called Absolute.
    • \n
    • Feature: Completely redesigned UI
    • \n
    • Feature: Breakpoint system
    • \n
    • Feature: Nesting
    • \n
    • Feature: Layer list
    • \n
    • Feature: Focus selector for background images
    • \n
    • Feature: New Preview
    • \n
    • Feature: Contextual menu
    • \n
    • Feature: Orion theme updated for Slide Library
    • \n
    • Feature: More Slide Library templates are available for free users
    • \n
    • Feature: Block type available in Free version
    • \n
    • Feature: Slider trash
    • \n
    • Feature: Stop autoplay on added to the free version
    • \n
    • Feature: Hide controls on devices added to the free version
    • \n
    • Feature: Loading type options
    • \n
    • Feature: Sliders now render in Nimble Builder’s editor when their shortcode is used in the builder’s shortcode or rich text editor module
    • \n
    • Fix: WordPress Gutenberg editor language won’t change to English on non-English sites
    • \n
    • Fix: PHP 7.4 fixes
    • \n
    • Fix: Sliders will no longer run on pages which are optimized by AMP on WordPress – weeblrAMP CE
    • \n
    • Fix: Alias is removed from duplicated slider
    • \n
    • Fix: Compatibility with BuddyBoss theme
    • \n
    • Fix: Slider’s inline JavaScript – Into the slider
    • \n
    • Fix: Scroll on older iPad devices
    • \n
    • Fix: SG Optimizer compatibility (?ver= for assets)
    • \n
    • Fix: Slider not showing in the content in Thrive theme
    • \n
    • Fix: Essential Grid conflict
    • \n
    • Fix: Oxygen builder force iframe in editor
    • \n
    • Fix: Adding .intrinsic-ignore class to frontend iframes and videos to prevent TwentyTwenty bug
    • \n
    • Fix: Horizontal thumbnail JS error
    • \n
    • Fix: Updating from 3.3.x with an empty Max height will no longer cause 0px tall slider
    • \n
    • Fix: WordPress Multisite conflict with Network Media Library plugin
    • \n
    • Fix: WordPress Free line between slides during slide switching with dragging
    • \n
    • Fix: Thumbnail positioning width Minimum thumbnail count
    • \n
    • Fix: Slide background without background image in Layer window
    • \n
    • Fix: OceanWP notice removed from slide editor
    • \n
    • Fix: Cursor during canvas interactions at the Slide Editor
    • \n
    • Other: Gantry 4 Mootools conflict test added to Help Center
    • \n
    • Other: Debug info now shows opcache and opcache.revalidate_freq
    • \n
    \n

    3.3.28 – 25. March 2020.

    \n
      \n
    • Feature: Slide background image Focus X and Y accept variables
    • \n
    • Feature: Google Font list updated
    • \n
    • Fix: Alias slide switching
    • \n
    • Fix: Google Cloud Storage plugin compatibility
    • \n
    • Fix: YouTube layer uses the hqdefault as the cover image
    • \n
    • Fix: Jetpack Photon compatibility
    • \n
    • Fix: Slide manager thumbnail fix
    • \n
    \n

    3.3.27 – 12. February 2020.

    \n
      \n
    • Feature: Edge selector at Scroll to slider on user interaction
    • \n
    • Feature: Vimeo privacy enhanced mode
    • \n
    • Fix: Youtube video adding
    • \n
    • Fix: Wordfence array to string errors
    • \n
    • Fix: Twenty twenty theme video compatibility
    • \n
    • Fix: WP Rocket compatibility
    • \n
    • Fix: WordPress Post generator author URL and avatar image
    • \n
    • Fix: Exclude from OceanWP lightbox
    • \n
    • Fix: PHP 7.4.1 PHP notices fixed
    • \n
    \n

    3.3.26 – 8. January 2020.

    \n
      \n
    • Feature: Keyboard navigation detection improvement
    • \n
    • Feature: Control hover delay increased
    • \n
    • Feature: WordPress disable pointer events in iframe in page builders
    • \n
    • Fix: Multiselect CSS issue at generator settings
    • \n
    • Fix: MobileDetect issues in rare cases
    • \n
    • Fix: Slider loading in Elementor Popup
    • \n
    • Fix: wp_delete_site action is used on WordPress 5.1 or newer sites instead of the deprecated delete_blog
    • \n
    • Fix: YouTube video conflict with Revolution Slider
    • \n
    • Fix: Shape divider height
    • \n
    • Fix: imagesloaded library
    • \n
    • Fix: iPhone ligthbox scroll
    • \n
    • Fix: Rubenz theme AJAX compatibility
      \n…
    • \n
    \n", "description": "\n

    Homepage | Features | Templates | Videos | Docs | Support

    \n

    Smart Slider 3 is the most powerful and intuitive WordPress plugin to create sliders which was never possible before. Fully responsive, SEO optimized and works with any WordPress theme. Create beautiful sliders and tell stories without any code.

    \n

    Live slide editor

    \n

    A beautiful interface makes creating slides fast and efficient. The complete freedom to build what you want, the way you want. Edit your slides as you used to in page builders. Drop layers after each other and structure them with rows and columns.

    \n

    Unique Layouts with Layers

    \n

    Enhance your slider with the layers and make your site even more unique and grandiose. Every heading, text, image, button and video can be edited easily with the customization options. Change all the details that really matter in typography and style.

    \n

    Responsive, Mobile-Ready Sliders

    \n

    Switch your slider to a different device mode and optimize your content for the resolution. Your site can be enjoyed in any environment, be it a mobile, tablet or desktop.

    \n

    Beautiful Sliders to Start

    \n

    No tech skills are needed, just pick a slider template. It works like magic! Choose from a variety of beautiful templates or start with a blank Slider. The simple way to build every kind: image, layer, video and post slider.

    \n

    Most powerful features

    \n
      \n
    • Default position – Edit your slides as you used to in page builders.
    • \n
    • Absolute position – Drag and drop your layers anywhere on the slide with absolute layers.
    • \n
    • Slide LibrarySlide Library provides several pre-made slides to kickstart your work.
    • \n
    • Totally integrated with WordPress – Media manager, shortcode, widget, post permalinks, post editor.
    • \n
    • Page Builder support – Elementor, Divi, Beaver Builder, Page Builder by SiteOrigin, Visual Composer, WPBakery Page Builder, Gutenberg and many more…
    • \n
    • Totally responsive and touch friendly – Sliders can be enjoyed on any device, be it a mobile, tablet or desktop.
    • \n
    • Dynamic Slides – Available source: WordPress posts
    • \n
    • Customizable controls – Arrows, Bullets, Autoplay, Bar, Thumbnails, Shadows
    • \n
    • Slide backgrounds – 9 Super smooth background animations
    • \n
    • Layers – Build unique designs with 6 varied layers: Image, Heading, Text, Button, Vimeo, YouTube
    • \n
    • Font and Style manager system – Change easily all the details that really matter in typography and style.
    • \n
    • Template sliders15 sliders to start
    • \n
    \n

    Features:

    \n
      \n
    • Import and Export sliders
    • \n
    • Intuitive slide creation: choose images, select WordPress Posts or add YouTube and Vimeo videos
    • \n
    • Static overlay
    • \n
    • Touch swipe, scroll, keyboard navigation
    • \n
    • Full-width and boxed responsive layouts
    • \n
    • Slide-switching animations: Horizontal, Vertical, Fade
    • \n
    • Slide background animations
    • \n
    • Autoplay timing options
    • \n
    • Slider controls: Arrow, Bullet, Autoplay, Bar, Thumbnail and Shadow
    • \n
    • SEO optimized
    • \n
    • Layers: Image, Heading, Text, Button, Vimeo, YouTube
    • \n
    • Layer snap in visual slide editor
    • \n
    • Adaptive layer font sizing
    • \n
    • Hide layers on specific devices
    • \n
    • Slide thumbnail image
    • \n
    • WordPress Multi Site compatible
    • \n
    • Custom responsive breakpoints
    • \n
    \n

    Testimonials

    \n
    \n

    “I can heartily recommend the free version. It already provides more functionality than any other slider plugin – even many premium ones.” – Daniel Pataki – WPMU DEV

    \n

    “Having tried more than a few WordPress slider plugins, both free and paid, I can honestly say that this is one of the best that I’ve ever tested…” – Daryn Collier – WPKube

    \n

    “Since Smart Slider is free to use, I do not have to really stress how good a plugin it is because you can download it yourself and see for yourself.” – Kevin Muldoon

    \n

    “This plugin can be used for much more than a simple slider – being able to create whole sections of your website.” – Oliver Dale – WPLift

    \n

    “Taking all this into consideration we can safely say that Smart Slider 3 is one of the top WordPress slider plugins.” – Mark Zahra – WP Mayor

    \n
    \n

    Support

    \n

    Smart Slider 3 is a community-driven project that would not be the same without your feedback. If you have any problem or feature request for this plugin, please feel free to contact us!

    \n

    Smart Slider 3 Pro Features:

    \n
      \n
    • All template sliders
    • \n
    • Layer animation builder
    • \n
    • Live animation timeline
    • \n
    • 18 extra layers
    • \n
    • 2 extra slider types
    • \n
    • Full page responsive layout
    • \n
    • All generators for dynamic slides
    • \n
    • Extra background animations (more than 54)
    • \n
    • Built-in lightbox
    • \n
    • Advanced controls and many more control presets
    • \n
    • A ton of customization options
    • \n
    • Premium support
    • \n
    • Full list of features
    • \n
    \n

    Unlock Your Full Potential with Smart Slider 3 Pro

    \n

    Dynamic slide sources in the FREE version

    \n
      \n
    • WordPress Posts: WordPress posts by Category and Tag filter or only the specified posts.
    • \n
    \n

    Dynamic slide sources in PRO version

    \n
      \n
    • WordPress Custom Posts: WordPress posts from custom post types by custom taxonomy filter or only the specified custom posts
    • \n
    • WooCommerce slider from products: Woocommerce products by Category, Tag, Featured, In Stock and downloadable filter or only the specified products.
    • \n
    • NextGEN Gallery: displays the images and related meta from the selected source gallery.
    • \n
    • Events: Events by Category and Tag filter. Supported plugins: All-in-One Event Calendar, Events Manager, The Events Calendar
    • \n
    • Image slider: displays the images and related meta from the selected source gallery. Supported plugins: Gallery by BestWebSoft, Photo Gallery by WD
    • \n
    • Social dynamic sources: Twitter, Facebook, Flickr, Picasa, YouTube, Pinterest
    • \n
    \n

    Translations

    \n
      \n
    • English
    • \n
    • Spanish (es_ES) 99%
    • \n
    • Portuguese (Brasil) (pt_BR) 60%
    • \n
    • Polish (pl_PL) 60%
    • \n
    • Russian (ru_RU) 59%
    • \n
    • Italian (it_IT) 55%
    • \n
    • French (fr_FR) 50%
    • \n
    • Hungarian (hu_HU) 44%
    • \n
    • Traditional Chinese (zh_TW) 42%
    • \n
    • Finnish (fi_FI) 39%
    • \n
    • Japanese (ja_JP) 37%
    • \n
    • German (de_DE) 31%
    • \n
    \n

    Is Smart Slider 3 the tool you’ve been looking for?

    \n
      \n
    • Come hang out in our Facebook Community for tips and inspiration.
    • \n
    • Dive into our fun YouTube tutorials and supercharge your skills.
    • \n
    • Show some love on WordPress with a rating to support us.
    • \n
    • Get inspired daily on Twitter by following us.
    • \n
    \n", "screenshots": "
    1. \"User-friendly

      User-friendly dashboard in our slider plugin for seamless management.

    2. \"Effortlessly

      Effortlessly customize your WordPress slider with our intuitive settings page.

    3. \"Create

      Create captivating slides with ease, using our WordPress slider''s beginner-friendly editing tools.

    4. \"Enhance

      Enhance your site with our FREE full-width responsive slider, featuring gradients and layers.

    5. \"Discover

      Discover our FREE, easy-to-use image slider with captions and navigation arrows.

    6. \"Explore

      Explore our FREE Thumbnail Image Slider – a visually engaging addition to your website.

    7. \"Experience

      Experience the FREE version''s dynamic Image Slider with a captivating static slide.

    8. \"Enhance

      Enhance your site with our FREE Full-Width Content Post Slider.

    9. \"Enhance

      Enhance your site with our FREE Layer Slider''s stylish layers for a better user experience.

    10. \"\"
    ", "installation": "

    Check our official documentation for more information

    \n

    Automatic installation

    \n
      \n
    1. Search for Smart Slider 3 through ‘Plugins > Add New’ interface.
    2. \n
    3. Find the plugin box of Smart Slider 3 and click on the ‘Install Now’ button.
    4. \n
    5. Then activate the Smart Slider 3 plugin.
    6. \n
    7. Create a new slider: Click on the ‘Smart Slider’ menu, click on the create slider button. Then you can add images and videos as slide and you can customize your slides with layers.
    8. \n
    9. Then copy the shortcode from the Publish slider box and paste it into a post or a page.
    10. \n
    \n

    Manual installation

    \n
      \n
    1. Download Smart Slider 3
    2. \n
    3. Upload the Smart Slider 3 through ‘Plugins > Add New > Upload’ interface or upload smart-slider-3 folder to the ‘/wp-content/plugins/’ directory.
    4. \n
    5. Activate the Smart Slider 3 plugin through the ‘Plugins’ menu in WordPress.
    6. \n
    7. Create a new slider: Click on the ‘Smart Slider’ menu, click on the create slider button. Then you can add images and videos as slide and you can customize your slides with layers.
    8. \n
    9. Then copy the shortcode from the Publish slider box and paste it into a post or a page.
    10. \n
    \n"}, "versions": {"3.1.6": "https://downloads.wordpress.org/plugin/smart-slider-3.3.1.6.zip", "3.2.4": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.6.zip", "3.2.8": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.9.zip", "3.3.1": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.4.zip", "3.3.6": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.7.zip", "3.3.8": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.8.zip", "3.3.9": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.9.zip", "trunk": "https://downloads.wordpress.org/plugin/smart-slider-3.zip", "3.0.37": "https://downloads.wordpress.org/plugin/smart-slider-3.3.0.37.zip", "3.1.10": "https://downloads.wordpress.org/plugin/smart-slider-3.3.1.10.zip", "3.2.10": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.10.zip", "3.2.12": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.12.zip", "3.2.13": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.13.zip", "3.2.14": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.14.zip", "3.3.10": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.10.zip", "3.3.11": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.11.zip", "3.3.12": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.12.zip", "3.3.13": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.13.zip", "3.3.15": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.15.zip", "3.3.18": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.18.zip", "3.3.20": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.20.zip", "3.3.21": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.21.zip", "3.3.22": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.22.zip", "3.3.23": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.23.zip", "3.3.24": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.24.zip", "3.3.25": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.25.zip", "3.3.26": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.26.zip", "3.3.27": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.27.zip", "3.3.28": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.28.zip", "3.4.1.6": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.6.zip", "3.4.1.7": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.7.zip", "3.4.1.8": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.8.zip", "3.4.1.9": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.9.zip", "3.5.0.8": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.0.8.zip", "3.5.0.9": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.0.9.zip", "3.5.1.0": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.0.zip", "3.5.1.1": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.1.zip", "3.5.1.2": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.2.zip", "3.5.1.3": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.3.zip", "3.5.1.4": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.4.zip", "3.5.1.7": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.7.zip", "3.5.1.9": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.9.zip", "3.4.1.10": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.10.zip", "3.4.1.11": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.11.zip", "3.4.1.12": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.12.zip", "3.4.1.13": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.13.zip", "3.4.1.14": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.14.zip", "3.4.1.15": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.15.zip", "3.4.1.16": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.16.zip", "3.4.1.17": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.17.zip", "3.5.0.10": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.0.10.zip", "3.5.0.11": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.0.11.zip", "3.5.1.11": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.11.zip", "3.5.1.12": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.12.zip", "3.5.1.13": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.13.zip", "3.5.1.14": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.14.zip", "3.5.1.15": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.15.zip", "3.5.1.16": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.16.zip", "3.5.1.17": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.17.zip", "3.5.1.18": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.18.zip", "3.5.1.19": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.19.zip", "3.5.1.21": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.21.zip", "3.5.1.23": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.23.zip", "3.5.1.24": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.24.zip", "3.5.1.25": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.25.zip", "3.5.1.26": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.26.zip", "3.5.1.27": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.27.zip", "3.5.1.28": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.28.zip", "3.5.1.29": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.29.zip"}, "downloaded": 21216201, "description": "\n

    Homepage | Features | Templates | Videos | Docs | Support

    \n

    Smart Slider 3 is the most powerful and intuitive WordPress plugin to create sliders which was never possible before. Fully responsive, SEO optimized and works with any WordPress theme. Create beautiful sliders and tell stories without any code.

    \n

    Live slide editor

    \n

    A beautiful interface makes creating slides fast and efficient. The complete freedom to build what you want, the way you want. Edit your slides as you used to in page builders. Drop layers after each other and structure them with rows and columns.

    \n

    Unique Layouts with Layers

    \n

    Enhance your slider with the layers and make your site even more unique and grandiose. Every heading, text, image, button and video can be edited easily with the customization options. Change all the details that really matter in typography and style.

    \n

    Responsive, Mobile-Ready Sliders

    \n

    Switch your slider to a different device mode and optimize your content for the resolution. Your site can be enjoyed in any environment, be it a mobile, tablet or desktop.

    \n

    Beautiful Sliders to Start

    \n

    No tech skills are needed, just pick a slider template. It works like magic! Choose from a variety of beautiful templates or start with a blank Slider. The simple way to build every kind: image, layer, video and post slider.

    \n

    Most powerful features

    \n
      \n
    • Default position – Edit your slides as you used to in page builders.
    • \n
    • Absolute position – Drag and drop your layers anywhere on the slide with absolute layers.
    • \n
    • Slide LibrarySlide Library provides several pre-made slides to kickstart your work.
    • \n
    • Totally integrated with WordPress – Media manager, shortcode, widget, post permalinks, post editor.
    • \n
    • Page Builder support – Elementor, Divi, Beaver Builder, Page Builder by SiteOrigin, Visual Composer, WPBakery Page Builder, Gutenberg and many more…
    • \n
    • Totally responsive and touch friendly – Sliders can be enjoyed on any device, be it a mobile, tablet or desktop.
    • \n
    • Dynamic Slides – Available source: WordPress posts
    • \n
    • Customizable controls – Arrows, Bullets, Autoplay, Bar, Thumbnails, Shadows
    • \n
    • Slide backgrounds – 9 Super smooth background animations
    • \n
    • Layers – Build unique designs with 6 varied layers: Image, Heading, Text, Button, Vimeo, YouTube
    • \n
    • Font and Style manager system – Change easily all the details that really matter in typography and style.
    • \n
    • Template sliders15 sliders to start
    • \n
    \n

    Features:

    \n
      \n
    • Import and Export sliders
    • \n
    • Intuitive slide creation: choose images, select WordPress Posts or add YouTube and Vimeo videos
    • \n
    • Static overlay
    • \n
    • Touch swipe, scroll, keyboard navigation
    • \n
    • Full-width and boxed responsive layouts
    • \n
    • Slide-switching animations: Horizontal, Vertical, Fade
    • \n
    • Slide background animations
    • \n
    • Autoplay timing options
    • \n
    • Slider controls: Arrow, Bullet, Autoplay, Bar, Thumbnail and Shadow
    • \n
    • SEO optimized
    • \n
    • Layers: Image, Heading, Text, Button, Vimeo, YouTube
    • \n
    • Layer snap in visual slide editor
    • \n
    • Adaptive layer font sizing
    • \n
    • Hide layers on specific devices
    • \n
    • Slide thumbnail image
    • \n
    • WordPress Multi Site compatible
    • \n
    • Custom responsive breakpoints
    • \n
    \n

    Testimonials

    \n
    \n

    “I can heartily recommend the free version. It already provides more functionality than any other slider plugin – even many premium ones.” – Daniel Pataki – WPMU DEV

    \n

    “Having tried more than a few WordPress slider plugins, both free and paid, I can honestly say that this is one of the best that I’ve ever tested…” – Daryn Collier – WPKube

    \n

    “Since Smart Slider is free to use, I do not have to really stress how good a plugin it is because you can download it yourself and see for yourself.” – Kevin Muldoon

    \n

    “This plugin can be used for much more than a simple slider – being able to create whole sections of your website.” – Oliver Dale – WPLift

    \n

    “Taking all this into consideration we can safely say that Smart Slider 3 is one of the top WordPress slider plugins.” – Mark Zahra – WP Mayor

    \n
    \n

    Support

    \n

    Smart Slider 3 is a community-driven project that would not be the same without your feedback. If you have any problem or feature request for this plugin, please feel free to contact us!

    \n

    Smart Slider 3 Pro Features:

    \n
      \n
    • All template sliders
    • \n
    • Layer animation builder
    • \n
    • Live animation timeline
    • \n
    • 18 extra layers
    • \n
    • 2 extra slider types
    • \n
    • Full page responsive layout
    • \n
    • All generators for dynamic slides
    • \n
    • Extra background animations (more than 54)
    • \n
    • Built-in lightbox
    • \n
    • Advanced controls and many more control presets
    • \n
    • A ton of customization options
    • \n
    • Premium support
    • \n
    • Full list of features
    • \n
    \n

    Unlock Your Full Potential with Smart Slider 3 Pro

    \n

    Dynamic slide sources in the FREE version

    \n
      \n
    • WordPress Posts: WordPress posts by Category and Tag filter or only the specified posts.
    • \n
    \n

    Dynamic slide sources in PRO version

    \n
      \n
    • WordPress Custom Posts: WordPress posts from custom post types by custom taxonomy filter or only the specified custom posts
    • \n
    • WooCommerce slider from products: Woocommerce products by Category, Tag, Featured, In Stock and downloadable filter or only the specified products.
    • \n
    • NextGEN Gallery: displays the images and related meta from the selected source gallery.
    • \n
    • Events: Events by Category and Tag filter. Supported plugins: All-in-One Event Calendar, Events Manager, The Events Calendar
    • \n
    • Image slider: displays the images and related meta from the selected source gallery. Supported plugins: Gallery by BestWebSoft, Photo Gallery by WD
    • \n
    • Social dynamic sources: Twitter, Facebook, Flickr, Picasa, YouTube, Pinterest
    • \n
    \n

    Translations

    \n
      \n
    • English
    • \n
    • Spanish (es_ES) 99%
    • \n
    • Portuguese (Brasil) (pt_BR) 60%
    • \n
    • Polish (pl_PL) 60%
    • \n
    • Russian (ru_RU) 59%
    • \n
    • Italian (it_IT) 55%
    • \n
    • French (fr_FR) 50%
    • \n
    • Hungarian (hu_HU) 44%
    • \n
    • Traditional Chinese (zh_TW) 42%
    • \n
    • Finnish (fi_FI) 39%
    • \n
    • Japanese (ja_JP) 37%
    • \n
    • German (de_DE) 31%
    • \n
    \n

    Is Smart Slider 3 the tool you’ve been looking for?

    \n
      \n
    • Come hang out in our Facebook Community for tips and inspiration.
    • \n
    • Dive into our fun YouTube tutorials and supercharge your skills.
    • \n
    • Show some love on WordPress with a rating to support us.
    • \n
    • Get inspired daily on Twitter by following us.
    • \n
    \n", "donate_link": "https://sites.fastspring.com/nextend/product/smartslider3donate", "num_ratings": 1113, "screenshots": {"1": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-1.png?rev=2974547", "caption": "User-friendly dashboard in our slider plugin for seamless management."}, "2": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-2.png?rev=2974547", "caption": "Effortlessly customize your WordPress slider with our intuitive settings page."}, "3": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-3.png?rev=2974547", "caption": "Create captivating slides with ease, using our WordPress slider''s beginner-friendly editing tools."}, "4": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-4.png?rev=2974547", "caption": "Enhance your site with our FREE full-width responsive slider, featuring gradients and layers."}, "5": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-5.png?rev=2974547", "caption": "Discover our FREE, easy-to-use image slider with captions and navigation arrows."}, "6": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-6.png?rev=2974547", "caption": "Explore our FREE Thumbnail Image Slider – a visually engaging addition to your website."}, "7": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-7.png?rev=2974547", "caption": "Experience the FREE version''s dynamic Image Slider with a captivating static slide."}, "8": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-8.png?rev=2974547", "caption": "Enhance your site with our FREE Full-Width Content Post Slider."}, "9": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-9.png?rev=2974547", "caption": "Enhance your site with our FREE Layer Slider''s stylish layers for a better user experience."}, "10": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-10.png?rev=2974547", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/smart-slider-3/", "contributors": {"nextendweb": {"avatar": "https://secure.gravatar.com/avatar/1b8dc77ecf0638ffa4405990f13eee857003536f5e0361fd89a6866aca551ee3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nextendweb/", "display_name": "Nextendweb"}}, "last_updated": "2025-07-22 8:43am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.29.zip", "author_profile": "https://profiles.wordpress.org/nextendweb/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-fab5-705f-adf9-6e8e56a6ee67", "name": "Smart Slider 3", "slug": "smart-slider-3", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1753173780, "version": "3.5.1.29"}, "support_threads": 3, "requires_plugins": [], "short_description": "Responsive slider plugin to create sliders in visual editor easily. Build beautiful image slider, layer slider, video slider, post slider, and more.", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "https://smartslider3.com/help/", "support_threads_resolved": 2}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1de0-7351-94f8-3deec032bd7e', 'did:web:api.aspiredev.org:packages:wp-plugin:sucuri-scanner', 'sucuri-scanner', 'Sucuri Security – Auditing, Malware Scanner and Security Hardening', '

    At Sucuri, we are dedicated to keeping your website safe and secure. With a focus on protection and monitoring, we offer solutions that help you stay ahead of potential threats for your WordPress site.

    -

    Our services include everything from malware detection to performance optimization, all designed to give you peace of mind.

    -

    We understand the importance of your online presence and are here to support you every step of the way. Join us, and let’s work together to ensure your website remains secure and resilient.

    -

    The Sucuri Security Monitoring Plugin is designed to safeguard your WordPress site with ease and reliability. Our plugin offers a range of essential security features, including:

    -
      -
    • Security Activity Auditing: Keep track of every security-related event within your WordPress environment.
    • -
    • File Integrity Monitoring: Detect unauthorized changes to your files and protect your site from potential vulnerabilities.
    • -
    • Remote Malware Scanning: Regularly scan your site for malware with our remote scanner to ensure it’s clean and secure.
    • -
    • Blocklist Monitoring: Receive alerts if your site is blocklisted by any major services, allowing for quick resolution.
    • -
    • Security Hardening: Implement recommended security practices to fortify your site against threats.
    • -
    • Post-Hack Security Actions: If the worst happens, our plugin helps you recover your site easily.
    • -
    -

    With Sucuri, you can focus on what matters most—growing your website—while we handle the security. Our feature set provides a clear view of your site’s status, making it easy to manage, monitor and take action.

    -

    Contributors & Maintenance Notice

    -

    Our dedicated team of engineers and security analysts is continually working to enhance the Sucuri Security Monitoring Plugin.

    -

    We provide regular updates, address bugs, and actively incorporate user feedback to ensure your WordPress site maintains its highest security stance. Our growth roadmap underscores our commitment to keeping you protected against emerging threats.

    -

    To support you further, we offer a variety of resources, including prompt responses for the forum, our website’s various content types, and an extensive knowledge base.

    -

    Our content is designed to help you maximize your plugin feature usage and benefits with the support you need.

    -

    If you want to be ahead of possible threats and keep up-to-date with Plugin updates, subscribe to our content here.

    -

    Introducing the Sucuri Firewall + WordPress Security Plugin

    -

    We’re excited to introduce the Sucuri Firewall + WordPress Security Plugin, designed for those who seek advanced protection for their WordPress sites.

    -

    Building upon our trusted free plugin, this premium offering provides a robust suite of features to ensure comprehensive security and peace of mind.

    -

    Key features include:
    -* Web Application Firewall (WAF): Protect your site from malicious traffic with our powerful firewall solution.
    -* Brute Force Protection: Safeguard your site against unauthorized login attempts.
    -* Brute Force Audit & Reporting: Gain insights into login attempts with detailed auditing and reporting.
    -* DDoS Mitigation: Maintain site availability even during targeted attacks.
    -* Core Vulnerabilities Scanning: Identify and address security weaknesses in WordPress core files.
    -* Plugins Vulnerability Scanning: Ensure your installed plugins are secure and up to date.
    -* Themes Vulnerability Scanning: Protect your site by scanning for vulnerabilities in installed themes.
    -* PHP Vulnerability Scanning: Detect and address potential security issues in your PHP environment.

    -

    With the Sucuri Firewall + WordPress Security Plugin, you benefit from the expertise and dedication of our team, committed to keeping your digital assets secure.

    -

    Experience the next level of protection and support, and enjoy the peace of mind that comes with knowing your site is in good hands.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Sucuri Security – Auditing, Malware Scanner and Security Hardening", "slug": "sucuri-scanner", "tags": {"scan": "scan", "spam": "spam", "malware": "malware", "firewall": "firewall", "security": "security"}, "added": "2011-11-18", "icons": {"1x": "https://ps.w.org/sucuri-scanner/assets/icon-128x128.png?rev=2875755", "2x": "https://ps.w.org/sucuri-scanner/assets/icon-256x256.png?rev=2875755"}, "author": "Sucuri", "rating": 84, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/sucuri-scanner/assets/banner-772x250.png?rev=2875755", "high": false}, "ratings": {"1": 64, "2": 4, "3": 9, "4": 21, "5": 284}, "version": "2.5", "homepage": "https://wordpress.sucuri.net/", "requires": "3.6", "sections": {"faq": "

    More information on the Sucuri Security WordPress plugin can be found in our Knowledge Base.

    \n\n
    \nWhat is the security activity auditing?\n\n

    \n

    One of the standout features of our WordPress plugin is the comprehensive audit logging system. At Sucuri, we recognize that every change within your application can be a potential security event. From user logins to content modifications, our audit logs are designed to capture all security-related activities on your site.

    \n

    These logs provide you with crucial visibility into your website’s operations, answering key questions such as:
    \n* Who logged in? Understanding who accesses your site is fundamental to ensuring that only authorized users are logging in. This helps in identifying any unauthorized access attempts, allowing you to respond swiftly to potential security breaches.
    \n* What changes were made? Essential for maintaining its integrity and security. By knowing what modifications have been made, you can quickly pinpoint any suspicious activities or errors that need attention.

    \n

    With the release of version 1.9.6, we’ve enhanced this feature, allowing you to filter audit logs by event types and dates. This improvement offers you even greater insight into your site’s activities, enabling proactive security management.

    \n

    \n
    \nWhat is the file integrity monitoring\n\n

    \n

    Security File Integrity Monitoring has been fundamental to the world of security. It’s the act of comparing a known good with the current state. If the current state differs from the known good, you know you have a problem. This is the basis of a lot of host intrusion detection systems. We have built that into this plugin.

    \n

    It will create a known good the minute the plugin is installed. This will be of all the directories at the root of the install, including plugins, themes and core files.

    \n

    \n
    \nWhat is remote malware scanning?\n\n

    \n

    Once this plugin is installed and activated, we automatically scan your site searching for known malware, viruses, blacklisting status, website errors, out-of-date software, and malicious code.

    \n

    We access your site just like a regular visitor would as this helps us catch threats that try to stay hidden from bots or search engines. This feature is powered by our free website security scanner – SiteCheck.

    \n

    \n
    \nWhat is the blocklist monitoring?\n\n

    \n

    Another very interesting feature of the website Security Malware Scanner is that it checks various blocklist engines, including the following:

    \n
      \n
    • Sucuri Labs
    • \n
    • Google Safe Browsing
    • \n
    • Norton
    • \n
    • AVG
    • \n
    • Phish Tank
    • \n
    • ESET
    • \n
    • McAfee Site Advisor
    • \n
    • Yandex
    • \n
    • SpamHaus
    • \n
    • Bitdefender
    • \n
    \n

    These are some of the largest blocklisting entities, each having the ability to directly impact your brand’s online reputation. By synchronizing with their environments we’re able to tell you whether any of them are negatively flagging your website with a security related issue. If they do, then via our website security product, we’re able to help you get off of the security blocklist.

    \n

    \n
    \nWhat is effective security hardening?\n\n

    \n

    Our team cleans thousands of websites every day, giving us deep insight into the most effective ways to protect WordPress sites.

    \n

    We’ve used that experience to create a list of actionable recommendations available in the Hardening & Prevention section of this plugin.

    \n

    To name a few (note that this will depend on your environment), these actions are:

    \n
      \n
    • Enable Website Firewall Protection
    • \n
    • Remove WordPress Version
    • \n
    • Block PHP Files in Uploads, wp-content and wp-includes directories.
    • \n
    • Verify default admin account.
    • \n
    • Disable Plugin and Theme Editor.
    • \n
    • Automatic Secret Keys Updater.
    • \n
    \n

    \n
    \nWhat are the post-hack security actions?\n\n

    \n

    Even with the strongest security measures, no site is 100% safe from hacking. When a compromise occurs, the Post-Hack section of our plugin guides you through four critical steps to help you regain control of your site:

    \n
      \n
    • Update Secret Keys.
    • \n
    • Reset User Passwords.
    • \n
    • Reset Installed Plugins.
    • \n
    • Update Plugin and Themes.
    • \n
    \n

    These steps are designed to help you recover faster after a security incident.

    \n

    \n
    \nWhat are the security notifications?\n\n

    \n

    Security features only matter if you know when something’s wrong, that’s why we included a set of customizable security alerts inside our Settings > Alerts section. You can also customize how frequently you want to be alerted of security related events.

    \n

    \n
    \nWhat is the website firewall (premium)?\n\n

    \n

    This is by far the coolest security feature Sucuri has to offer everyday website owners. It’s an enterprise grade Website Firewall designed to give you the best security protection any website can hope for. It protects your website from a variety of website attacks, including:

    \n
      \n
    • Denial of Service (DOS / DDOS) Attacks.
    • \n
    • Exploitation of Software Vulnerabilities.
    • \n
    • Zero Day Disclosure Patches.
    • \n
    • Brute Force Attacks against your Access Control Mechanisms.
    • \n
    \n

    This is coupled with a number of features like:

    \n
      \n
    • Performance Optimization.
    • \n
    • Advanced Access Control Features.
    • \n
    • Failover and Redundancy.
    • \n
    \n

    This is not included as a free option of the plugin, but is integrated so that if purchased you are able to activate. If you prefer to leverage the Sucuri Firewall product by itself, you have the option to operate the Website Firewall WordPress Security plugin in standalone mode.

    \n

    The Sucuri WordPress Security plugin is built by the team that is known for their proactive approach to security. It is built using intelligence gathered from thousands upon thousands of remediation cases, millions of unique domain scans and 10’s of millions of website security attack blocks.

    \n

    \n
    \nWhat does this plugin do that other security plugins don’t do?\n\n

    \n

    Our expertise has given us deep insight into what truly helps prevent security incidents, and we’ve cooked that knowledge directly into this plugin.

    \n

    To give you a sense of what this security plugin offers, here are some of its most powerful features:

    \n
      \n
    • WordPress core, PHP, plugins and themes vulnerability scanners.
    • \n
    • Firewall Management.
    • \n
    • Events Reporting (auditlogs).
    • \n
    • Headers Management.
    • \n
    • Hardening & Prevention.
    • \n
    • Post-Hack Actions.
    • \n
    • Last Logins.
    • \n
    • And there’s more!
    • \n
    \n

    And while other security plugins may offer similar features, few deliver them as effectively as we do. Ask around! 🙂

    \n

    \n
    \nIf I install the Sucuri Security plugin do I get a Sucuri account?\n\n

    \n

    No, this is a free plugin that we offer at no charge. It does not mean you get a free account.

    \n

    \n
    \nIf I have the premium plugin, do I need the free plugin?\n\n

    \n

    Both the premium and the free version share the same codebase, however, this plugin has a few extra features that are only unlocked when you have a WAF account, some of these features include:

    \n
      \n
    • WordPress Core vulnerability scanning.
    • \n
    • PHP vulnerability scanning.
    • \n
    • Plugin vulnerability scanning.
    • \n
    • Themes vulnerability scanning.
    • \n
    • A beautiful dark theme!
    • \n
    \n

    To unlock these features you must go to Firewall Management and input a correct Sucuri Firewall API Key — In the Sucuri Dashboard you can find this key by going to the Sucuri WAF dashboard > API > API Key (for plugin).

    \n

    \n
    \nDo I still need Sucuri’s products if I have this plugin?\n\n

    \n

    Yes. This plugin compliments your existing security toolsets. It is not designed to replace the Sucuri Website Security or Firewall products.

    \n

    \n
    \nDo the logs get stored to my database?\n\n

    \n

    No, they do not.

    \n

    \n
    \nAre there any issues installing your plugin with any hosts?\n\n

    \n

    Not that we are aware of.

    \n

    \n
    \nDo I need this plugin to use the Website Firewall service?\n\n

    \n

    No, it is not required. The Website Firewall runs in the cloud without the need of anything installed. We recommend installing this plugin to see your firewall configuration and manage it from your WordPress dashboard.

    \n

    \n
    \nWhat information does Sucuri collect?\n\n

    \n

    We take your privacy seriously. For free plugin users without an API key, no information is collected by Sucuri. After activating an API key, Sucuri will store some information, such as logs. Please see our Terms of Service and Privacy Policy. Please email gdpr@sucuri.net if you have other questions about your privacy.

    \n

    \n
    \nHow do I configure the Cache-Control header?\n\n

    \n

    Go to the Headers Management page and enable Cache-Control header by selecting a mode according to your website’s need and click on submit.

    \n

    You can also activate the Cache-Control header by updating the cache header fields in one of the page types by using the “Edit” button in the table rows.

    \n

    Please remember to enable site caching on your WAF to use these settings. If you are a Sucuri client and require assistance, please create a ticket and reach out to the firewall team for support.

    \n

    \n
    \nHow do I configure the CORS headers?\n\n

    \n

    To enable CORS headers please visit the Headers Management page. For the time being, we only support “Report-Only” as these headers can break your site.

    \n

    \n
    \nHow do I configure the Content Security Policy (CSP) header?\n\n

    \n

    To enable CSP (Content Security Policy) headers please visit the Headers Management page.

    \n

    \n
    \nWhere do I get support for this plugin?\n\n

    \n

    The best place is to engage us via the Support Forum. If you are a client, you can submit a ticket here.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ♡ Sucuri

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bogdantd on March 16, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    No hack since Sucuri. Before hacked.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Must for Website Security

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dsitechmktg on January 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m really glad I set up this plugin because I was able to track suspicious logins and other security threats

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Слетел CSS после установки плагина

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy irinasaratov2 on January 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Плагин сразу нашел вирус, который был у меня на сайте, чем очень мне помог, т.к. другие плагины его не видели. Но плагин сломал мне админку Вордпресса, я теперь по сути не могу управлять своим сайтом, т.к. кнопки в админке не работают, все плагины отображаются косо и криво (слетели CSS стили). Что мне делать, чтобы восcтановить CSS?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The worst

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy richinberlin99 on June 19, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does not protect
    Does not detect.
    Paid service, does nothing, and does not fix.

    Absolute waste of time and money.

    Look elsewhere

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Abysmal support, plugin didn't install correctly

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy helen_wpd on May 11, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Absolutely rubbish support, couldn''t even help me with a relatively simple set up issue. Don''t even bother downloading this plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    DO NOT JOIN SUCURI DONT MAKE MY MISTAKE!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sgogroup42 on March 6, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    i am here to warn you not join sucuri .
    its all an advertisments of them but in the real world my site got blocked fro, all anti viruses and tons of ssl problems on there system.
    there support very pooor they only answer when you want to buy somthing but when you have a real problem with there product that its not working and caousing tons of problems they tellign you open a ticket.
    so i did open a ticket and for few monthes still 0 HELP and 0 solver problems ON SSL that they provide.
    Be aware.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Doesn't protect your site at all.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy locko69 on January 17, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The free version does not do what is advertised. Didn''t protect my site from malware and multiple sites (using this plugin) have been hacked.

    \n\n\n\n

    There''s much better alternatives to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Free & Pro Version

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jollygreen on December 28, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a great plugin for securing and monitoring your WordPress website. I have the free version installed on around 20 sites and the Pro Firewall through custom Name Servers on a handful of other sites (Pro costs around $199/year per site at the time of this review). I most often use the default version of the plugin for monitoring and logging with my own custom .htaccess rules and .htaccess firewall for hardening.

    \n\n\n\n

    NOTE: Be careful when setting up functionality and hardening your settings through the plugin. Most of the 1* reviews are from people breaking their sites and getting themselves locked out by not understanding what the plugin settings do/affect and how to properly use the plugin''s settings. When in doubt, don''t enable every single security setting and just use the bare minimum until you back test your own site.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The firewall is plain dumb

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Alex Spataru (alexandrubr) on December 3, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    I''m trying to upload a new website for a client of mine and I keep getting blocked by the firewall, even tho'' I''m the administrator of the website. \n\nI get it, you want to make the website as secure as possible, but c''mon, blocking the administrator from accessing even the media upload (for SVGs) it is too much.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy snippet24 on November 13, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    IMHO is better than other security plugins out there and has prevention measures / hardening and post hacking measures that are great :)\nI only hope is not abandoned\nRegards\n
    \n
    \n", "changelog": "

    2.5

    \n
      \n
    • Add support for two-factor authentication.
    • \n
    \n

    This plugin bundles qrcode-generator (MIT) by Kazuhiko Arase.
    \nVendored copy due to npm package-injection concerns. We’ll switch back to npm when feasible.
    \nSource: https://github.com/kazuhikoarase/qrcode-generator

    \n

    2.4

    \n
      \n
    • Update list of files to ignore in integrity check.
    • \n
    \n

    2.3

    \n
      \n
    • Add theme toggle switch.
    • \n
    • Remove an unnecessary section for users without WAF key.
    • \n
    \n

    2.2

    \n
      \n
    • Update integrity section.
    • \n
    • Add a warning when the configured WAF domain does not match site’s domain.
    • \n
    \n

    2.1

    \n
      \n
    • Fix dark theme conflicting with Woo styles.
    • \n
    \n

    2.0

    \n
      \n
    • Added support for WordPress Core vulnerability scanner.
    • \n
    • Added support for PHP vulnerability scanner.
    • \n
    • Added support for plugin’s vulnerability scanner.
    • \n
    • Added support for theme’s vulnerability scanner.
    • \n
    • Added support for dark theme!
    • \n
    \n

    1.9.10

    \n
      \n
    • Fix bug deleting failed logins.
    • \n
    • Fix bug causing WAF blocks due user-agent containing domain names with specific words.
    • \n
    \n

    1.9.9

    \n
      \n
    • Fix secret key updater bug: Sometimes API return last character to be “\\” breaking configuration file
    • \n
    • Fix Undefined array key “woocommerce_category” PHP warning
    • \n
    • Fix ErrorException caused by stripping all “/” characters from path to htaccess file
    • \n
    • Fix warning caused from malformed path to htaccess file
    • \n
    \n

    1.9.8

    \n
      \n
    • Add support for configuration of CORS header
    • \n
    \n

    1.9.7

    \n
      \n
    • Add support for configuration of CSP header (report only)
    • \n
    \n

    1.9.6

    \n
      \n
    • Added support for filters in the audit logs
    • \n
    • Updated messaging for infected sites
    • \n
    \n

    1.9.5

    \n
      \n
    • Updated how the allow PHP files are handled in the integrity tool
    • \n
    \n

    1.9.4

    \n
      \n
    • Fixed warning in php 8
    • \n
    \n

    1.9.3

    \n
      \n
    • Fixed email notifications error handling
    • \n
    \n

    1.9.2

    \n
      \n
    • Improve how the WordPress integrity tool displays added, modified, and removed files
    • \n
    \n

    1.9.1

    \n
      \n
    • Add support for configuration of Cache-Control header
    • \n
    \n

    1.8.44

    \n
      \n
    • Update Firewall settings page to improve privacy and offer new options to handle API keys
    • \n
    \n

    1.8.43

    \n
      \n
    • Update readme and main plugin file to specify license
    • \n
    • Update plugin’s transient name to address to best practices
    • \n
    \n

    1.8.42

    \n
      \n
    • Update malware cleanup notification
    • \n
    \n

    1.8.41

    \n
      \n
    • Updates navigation to include “More” dropdown
    • \n
    • Add further validation when trying to write HTACCESS
    • \n
    • Update WordPress.org links (redirected from codex)
    • \n
    \n

    1.8.40

    \n
      \n
    • Update list of Sucuri cleanup files
    • \n
    • Update successful login screen to show date time
    • \n
    \n

    1.8.39

    \n
      \n
    • Fixed API service messaging
    • \n
    \n

    1.8.38

    \n
      \n
    • Fixed API service handling when the SUCURISCAN_API_URL config value is not defined
    • \n
    • Fixed API service UI messaging
    • \n
    \n

    1.8.37

    \n
      \n
    • Fixed plugin image assets and screenshots to match new branding
    • \n
    • Fixed password reset email link protocol
    • \n
    • Fixed remote fonts usage
    • \n
    • Removed wordpress.sucuri.net API dependency
    • \n
    • Updated screenshots
    • \n
    \n

    1.8.36

    \n
      \n
    • Changed Branding fonts, colors and images to match the current Sucuri brand
    • \n
    \n

    1.8.35

    \n
      \n
    • Fixed “Early referer checks on admin hooks”
    • \n
    \n

    1.8.34

    \n
      \n
    • Added referer check on admin hooks
    • \n
    \n

    1.8.33

    \n
      \n
    • Fixed “Added option to clear cache by path”
    • \n
    \n

    1.8.32

    \n
      \n
    • Fixed “Empty wp-config file after automatic secret key updates”
    • \n
    \n

    1.8.31

    \n
      \n
    • Fixed “Path cannot be empty” error
    • \n
    \n

    1.8.30

    \n
      \n
    • Bump version
    • \n
    \n

    1.8.29

    \n
      \n
    • Changed ownership
    • \n
    \n

    1.8.28

    \n
      \n
    • Silence fopen warning
    • \n
    \n

    1.8.27

    \n
      \n
    • Add support for PHP 8
    • \n
    • Reduce memory requirements when reading a log file
    • \n
    • Fix DISALLOW_FILE_EDIT related notice
    • \n
    \n

    1.8.26

    \n
      \n
    • Replace the word “blacklist” with “blocklist” in the codebase
    • \n
    • Replace the word “whitelist” with “allowlist” in the codebase
    • \n
    \n

    1.8.25

    \n
      \n
    • Fix notice about MONTH_IN_SECONDS in WP < 4.4
    • \n
    • Update reset password workflow
    • \n
    \n

    1.8.24

    \n
      \n
    • Fix warning caused by humanTime function
    • \n
    • Fix fatal error caused by cron jobs with nested arguments
    • \n
    \n

    1.8.23

    \n
      \n
    • Add Automatic Secret Keys Updater
    • \n
    • Improve button’s and link’s messaging on Last Logins sections
    • \n
    • Improve messaging on Hardening page
    • \n
    • Improve messaging on IP Access page
    • \n
    \n

    1.8.22

    \n
      \n
    • Add “SSL existence check” to WordPress Security Recommendations
    • \n
    • Add “Salt & Security Keys existence check” to WordPress Security Recommendations
    • \n
    • Add “Salt & Security Keys age check” to WordPress Security Recommendations
    • \n
    • Add “Admin account check” to WordPress Security Recommendations
    • \n
    • Add “Single super-admin check” to WordPress Security Recommendations
    • \n
    • Add “Too many plugins check” to WordPress Security Recommendations
    • \n
    • Add “File editing check” to WordPress Security Recommendations
    • \n
    • Add “WordPress debug check” to WordPress Security Recommendations
    • \n
    • Add “Basic hardening check” to WordPress Security Recommendations
    • \n
    • Add a delete button on Last Logins sections
    • \n
    • Add register of logs removal on Audit Logs
    • \n
    • Fix display of Access File Integrity on NGINX/IIS servers
    • \n
    • Remove PHP version check from hardening page
    • \n
    \n

    1.8.21

    \n
      \n
    • Add WordPress Security Recommendations section in the dashboard
    • \n
    • Add PHP version check
    • \n
    • Fix goo.gl links
    • \n
    • Fix post_type pattern match to allow numbers and max of 20 chars
    • \n
    • Fix Audit Logs queue timezone issue
    • \n
    • Fix regex in template string replacement
    • \n
    • Update translation file to include WordPress Security Recommendations section fields
    • \n
    • Make the menu icon use the menu color styling
    • \n
    • Remove block button from failed logins page
    • \n
    \n

    1.8.20

    \n
      \n
    • Add dynamic core directories in the hardening allowlist options
    • \n
    • Modify scheduled tasks panel to load the table via Ajax
    • \n
    • Allow hosting details display to be filterable
    • \n
    • Preparation for translations
    • \n
    \n

    1.8.19

    \n
      \n
    • Add option to refresh the SiteCheck malware scan results
    • \n
    • Add support for a CLI command to ignore files in the core integrity check
    • \n
    • Fix text
    • \n
    \n

    1.8.18

    \n
      \n
    • Keep settings when the plugin is deactivated, unless the plugin is uninstalled
    • \n
    \n

    1.8.17

    \n\n

    1.8.15

    \n
      \n
    • Make default plugin options filterable
    • \n
    • Fix missing button to manually activate the advanced features
    • \n
    • Remove unnecessary tags from README per WordPress guidelines
    • \n
    • Modify resolution of the images to respect retina display
    • \n
    \n

    1.8.14

    \n
      \n
    • Add filter to allow automatic configuration of the settings
    • \n
    \n

    1.8.13

    \n
      \n
    • Add new version of the GPL v2 license file
    • \n
    • Remove unused option to reduce number of failed logins
    • \n
    • Fix multiple typos in the code found after a diff parse
    • \n
    • Modify name of the base library file for consistency
    • \n
    • Modify wording of the API key panel in the settings page
    • \n
    • Add option to include the hostname in the alert subject
    • \n
    • Fix open_basedir restriction was not considered on scans
    • \n
    • Remove firewall API key deletion on re-authentication
    • \n
    \n

    1.8.12

    \n
      \n
    • Fix invalid array when deselecting all security alerts
    • \n
    • Add language files to the list of ignored changes
    • \n
    • Modify internal response to the log file not found error
    • \n
    • Add option to force the firewall cache flush
    • \n
    • Fix unexpected exception when open_basedir is in place
    • \n
    • Add support to export and import trusted IP addresses
    • \n
    • Add link to the audit logs API endpoint for developers
    • \n
    • Add reverse ip address in all email alerts from visitor
    • \n
    • Remove API key from the settings that can be exported
    • \n
    • Modify code to make default plugin options filterable
    • \n
    • Add ability to store the settings in the object cache
    • \n
    • Add support for wp-cli and command to generate an API key
    • \n
    • Fix missing documentation tags in the command line library
    • \n
    • Fix format and coding standard in CSS and JavaScript files
    • \n
    • Add button to toggle the visibility of the post-types table
    • \n
    • Modify order of the added, modified, removed core files
    • \n
    • Fix relative file path when ABSPATH is point to root
    • \n
    • Add additional notifications for changes on users
    • \n
    \n

    1.8.11

    \n
      \n
    • Modify Sucuri firewall detection with regular expressions
    • \n
    • Modify option to force scanner to ignore directories
    • \n
    • Modify form to monitor and ignore post-types
    • \n
    • Modify miscellaneous changes in some alert messages
    • \n
    • Modify error message displaying for invalid CSRF validations
    • \n
    • Fix minor issues with the version detection code
    • \n
    • Remove internationalization support for consistency
    • \n
    • Add support for the RTL reading direction
    • \n
    • Add API key in admin notice when it is being deleted
    • \n
    • Fix modification date for corrupt core files
    • \n
    • Fix audit log parser for incompatible JSON data
    • \n
    • Fix password visibility when the option is changed
    • \n
    \n

    1.8.10

    \n
      \n
    • Version bump skipped
    • \n
    \n

    1.8.9

    \n
      \n
    • Remove duplicated failed user authentication log
    • \n
    • Remove trailing forward slash from asset URL
    • \n
    • Fix post-type ignore tool to allow hyphens in the ID
    • \n
    • Fix queries to the database in the last logins page
    • \n
    • Remove unnecessary option queries to the database
    • \n
    • Fix PHP notice for a string offset cast occurred
    • \n
    • Remove unnecessary data from the website info page
    • \n
    • Modify timing for the execution of the Ajax requests
    • \n
    \n

    1.8.8

    \n
      \n
    • Add smart limit to send logs from the queue to the API
    • \n
    • Add option to ignore events for post transitions
    • \n
    • Fix infinite loop with email alerts and SMTP plugin
    • \n
    • Add option to configure the malware scanner target URL
    • \n
    • Add option to enable the auto clear cache firewall function
    • \n
    • Modify status of the directory hardening using the Firewall
    • \n
    • Modify error message in audit logs when the API key is missing
    • \n
    • Modify timing for the dashboard alerts after an update
    • \n
    • Modify firewall clear cache button to execute via Ajax
    • \n
    • Modify firewall settings page to load data via Ajax
    • \n
    • Add option to blocklist IP addresses with the Firewall API
    • \n
    • Fix order of the audit logs when the queue is merged
    • \n
    • Add more directories to ignore during the scans
    • \n
    • Add option to customize the URL for the malware scans
    • \n
    • Fix error interception for Firewall API errors
    • \n
    • Add support for other English and Spanish based languages
    • \n
    • Modify mechanism to ignore files from integrity checks
    • \n
    • Add option to stop sending the failed login passwords
    • \n
    • Modify default value for some of the alert settings
    • \n
    • Remove unnecessary statistics panel for the audit logs
    • \n
    • Modify output for the malware results to simplify links
    • \n
    • Add option to override the timezone for the datetime
    • \n
    • Add option to configure the WordPress checksums API
    • \n
    • Add maximum execution time avoidance in the integrity tool
    • \n
    • Add support to run diff on deleted WordPress files
    • \n
    \n

    1.8.7

    \n
      \n
    • Fix multiple issues with the API calls
    • \n
    • Add queue system to fix website performance
    • \n
    • Fix non-dismissable newsletter invitation message
    • \n
    • Fix performance of the audit log parser without regexp
    • \n
    • Add conditional to check for the availability of SPL
    • \n
    • Add cache for the audit logs to make dashboard responsive
    • \n
    • Modify frequency of the file system scans to run daily
    • \n
    • Remove option to configure the maximum API timeout
    • \n
    • Modify location of the scanner options and scheduled tasks
    • \n
    • Add button to send the logs from the queue to the API
    • \n
    \n

    1.8.6

    \n
      \n
    • Add default language for internationalization fallback
    • \n
    \n

    1.8.5

    \n
      \n
    • Fix minor bugs after post-testing of the new release
    • \n
    • Add full support for internationalization with en_US locale
    • \n
    • Add full support for internationalization with es_ES locale
    • \n
    \n

    1.8.4

    \n
      \n
    • Modify the entire interface to offer a fresh design
    • \n
    • Add support for internationalization via gettext
    • \n
    • Modify the structure of the project for maintainability
    • \n
    • Remove minified files to facilitate future contributions
    • \n
    • Add warning message in the reset plugin tool page
    • \n
    • Fix loading sequence for additional PHP files
    • \n
    • Add restriction to prevent direct access to PHP files
    • \n
    • Fix file search by name when the directory is passed
    • \n
    • Add HTTP request parameters to track some settings
    • \n
    • Fix reset plugin tool with the new WordPress API
    • \n
    • Fix length of the pagination helper with many pages
    • \n
    • Add performance boost for the failed logins page
    • \n
    • Modify structure of the failed logins data analyzer
    • \n
    • Fix deactivation of all the scheduled tasks from settings
    • \n
    • Modify entire code base to enforce HTTPS over HTTP
    • \n
    • Remove heartbeat settings after performance improvement
    • \n
    • Remove unnecessary XHR event monitor and report
    • \n
    • Remove deprecated functions from previous releases
    • \n
    • Remove deprecated tool to scan for error_log files
    • \n
    • Modify failed logins logger with wrong passwords
    • \n
    • Remove plugin checksum dependency to avoid asset cache
    • \n
    • Modify minimum PHP version in hardening page
    • \n
    • Fix email alerts with non-existing site_url option
    • \n
    • Add tool to import and export the plugin settings
    • \n
    • Add uninstall instructions during deactivation of the plugin
    • \n
    • Fix plugin reinstall procedure with backup and prechecks
    • \n
    • Modify mechanism to ignore irrelevant WordPress core files
    • \n
    • Modify list of available scheduled task frequencies
    • \n
    • Fix lazy load of the CSS and Scripts on the correct pages
    • \n
    • Add audit log message fixer for the wpephpcompat_jobs event
    • \n
    • Fix website URL in the template for the email alerts
    • \n
    • Add message in the core integrity tool for false positives
    • \n
    • Add option to reset the content of some storage files
    • \n
    • Add mechanism to display self-hosting logs as fallback
    • \n
    • Fix incoherent failed login processor on pagination
    • \n
    • Add option to display differences in core integrity checks
    • \n
    • Modify the default and maximum timeout for the API
    • \n
    • Fix static data storage path to allow server migrations
    • \n
    • Add option to ignore non-registered custom post-types
    • \n
    • Add more details into the event that monitors post deletions
    • \n
    • Fix event monitor for plugin activation and deactivation
    • \n
    • Fix dynamic directory tree deletion with improved performance
    • \n
    • Fix automatic deletion of conflicting plugins
    • \n
    • Add event monitor for all supported post status transitions
    • \n
    • Add one-time newsletter invitation after plugin updates
    • \n
    • Add code to delete legacy plugin options from database
    • \n
    • Modify error on non-processed files in the integrity checks
    • \n
    • Fix overflow of HTTP requests to SiteCheck API on failures
    • \n
    • Fix handling of the actions in the core integrity checks
    • \n
    • Add message and button to reset the audit logs cache
    • \n
    • Add ajax request to load malware scans for performance
    • \n
    \n

    1.8.3

    \n
      \n
    • Removed goo.gl links
    • \n
    • Fixed fatal error when PHPMailer failed
    • \n
    • Fixed incorrect selected value in settings
    • \n
    • Added SiteCheck for arbitrary domain
    • \n
    • Various code cleanup
    • \n
    \n

    1.8.2

    \n
      \n
    • Modified logic of the settings in database checker
    • \n
    • Modified default value for the available updates alerts
    • \n
    • Fixed undefined array and object keys in audit logs
    • \n
    • Fixed incompatibilities with foreign API service responses
    • \n
    • Added development option to keep using the database
    • \n
    • Added panel with information about the plugin settings
    • \n
    • Added conditional to prevent redeclaration of class
    • \n
    • Fixed cache flush method used to delete datastore
    • \n
    \n

    1.8.1

    \n
      \n
    • Modified default setting for the core integrity alerts
    • \n
    • Added more files to the core integrity ignore list
    • \n
    • Fixed support for custom data storage directory
    • \n
    • Fixed admin notices after changing alert settings
    • \n
    • Fixed settings and audit logs for the firewall page
    • \n
    • Fixed regression with clear cache in firewall page
    • \n
    \n

    1.8.0

    \n
      \n
    • Added error message when storage is not writable
    • \n
    • Fixed option getter to migrate plugin settings if possible
    • \n
    • Fixed base directory name without PHP DIR constant
    • \n
    • Fixed user authentication denial when no blocked users
    • \n
    • Fixed htaccess standard rules checker with no WP_Rewrite
    • \n
    \n

    1.7.19

    \n
      \n
    • Added method to rescue HTTP requests using sockets
    • \n
    • Fixed mishandled JSON data in audit logs Ajax request
    • \n
    • Modified list of firewall features and promo video
    • \n
    \n

    1.7.18

    \n
      \n
    • Added options library using external file instead of the database
    • \n
    • Modified API calls using custom HTTP request using Curl
    • \n
    • Fixed core files marked as broken in a Windows server
    • \n
    • Fixed pagination links in last and failed logins page
    • \n
    • Fixed password with ampersands in email alert
    • \n
    • Fixed allowlist hardening using the authz_core module
    • \n
    • Removed unnecessary emails to reduce spam
    • \n
    • Added constant to stop execution of admin init hooks
    • \n
    • Added explanation for invalid emails and no MX records
    • \n
    • Added link to open the form to insert the API key manually
    • \n
    • Added more options in the IP discoverer setting
    • \n
    • Added option to configure malware scanner timeout
    • \n
    • Added option to configure the API communication protocol
    • \n
    • Added option to reset the malware scanner cache
    • \n
    • Added scheduled task and email alert for available updates
    • \n
    • Added tool to block user accounts from attempting a login
    • \n
    • Added tool to debug HTTP requests to the API services
    • \n
    • Various minor adjustments and fixes
    • \n
    \n

    1.7.17

    \n
      \n
    • Added API service failback mechanism
    • \n
    • Added core integrity email on force scan
    • \n
    • Slight interface redesign
    • \n
    • Various bugfixes and improvements
    • \n
    \n

    1.7.16

    \n
      \n
    • Fixing a low severity XSS (needs admin access to create it)
    • \n
    \n

    1.7.14

    \n
      \n
    • Added alternative method to send email alerts
    • \n
    • Added button to reset options with explanation
    • \n
    • Added suggestion for new users to check plugin settings
    • \n
    • Allow mark as fixed non-writable core files
    • \n
    • Fixed display menus items single or network panels
    • \n
    • Fixed handle boolean values in PHP config retrieval
    • \n
    • Fixed non-standard content location in core integrity
    • \n
    • Fixed user identifier as integer on password reset
    • \n
    • Modified css and js files to reduce size
    • \n
    • Modified do not load resources on hidden sidebar
    • \n
    • Modified fully redesign of general settings page
    • \n
    • Modified hide update warning if versions are the same
    • \n
    • Modified wording of post-types alert settings
    • \n
    • Removed ellipsis of long IPv6 addresses in last logins
    • \n
    • Removed unnecessary dns lookups in infosys page
    • \n
    • Removed unnecessary monospace fonts in settings status
    • \n
    • Removed unnecessary ssl verification option processor
    • \n
    \n

    1.7.13

    \n
      \n
    • Fixed issue affecting site performance
    • \n
    • Fixed clear hardening of previous versions
    • \n
    • Modified report and block non-processable ajax actions
    • \n
    • Added configure DNS lookups for reverse proxy detection
    • \n
    • Added option to configure comment monitor and logs
    • \n
    • Added option to configure the XHR monitor and logs
    • \n
    \n

    1.7.12

    \n
      \n
    • Improved hardening options
    • \n
    • Added more logging events
    • \n
    • Various bugfixes and improvements
    • \n
    \n

    1.7.11

    \n
      \n
    • Reverted change for firewall detection to protect legacy users
    • \n
    \n

    1.7.10

    \n
      \n
    • Added better checks for SSL issues
    • \n
    • Fix for audit log timezones
    • \n
    • Various bugfixes and improvements
    • \n
    \n

    1.7.9

    \n
      \n
    • Improved reinstallation process
    • \n
    • Updated sidebar banners
    • \n
    • Various bugfixes and improvements
    • \n
    \n

    1.7.8

    \n
      \n
    • Fixed bug on the secret keys hardening.
    • \n
    \n

    1.7.7

    \n
      \n
    • Added better support for directory separators
    • \n
    • Added option to remove API key from plugin
    • \n
    • Various bugfixes and improvements
    • \n
    \n

    1.7.6

    \n
      \n
    • Added audit log reporting.
    • \n
    • Added more settings for better control.
    • \n
    • Added support for more actions.
    • \n
    • Improved multisite support.
    • \n
    • Added support for reverse proxies.
    • \n
    • Various bugfixes and improvements.
    • \n
    \n

    1.7.5

    \n
      \n
    • Added better handling of API responses of remote scanner.
    • \n
    \n

    1.7.4

    \n
      \n
    • Added option for keeping failed logins until the user removes them.
    • \n
    • Bugfixes for user reported issues.
    • \n
    \n

    1.7.3

    \n
      \n
    • Error log panel.
    • \n
    • Various bug fixes.
    • \n
    \n

    1.7.2

    \n
      \n
    • Messaging and FAQ updates.
    • \n
    \n

    1.7.1

    \n
      \n
    • Fixed remote scanning that was not loading automatically on some installs.
    • \n
    \n

    1.7.0

    \n
      \n
    • Added Hardening option to remove error log files
    • \n
    • Bug fixes on some new registrations.
    • \n
    • Changed format of the internal logs to json.
    • \n
    \n

    1.6.9

    \n
      \n
    • Multiple bug fixes (as reported on the support forums).
    • \n
    • Added heartbeat for the file scans.
    • \n
    • Code cleanup.
    • \n
    \n

    1.6.8

    \n
      \n
    • Fixing interface.
    • \n
    \n

    1.6.7

    \n
      \n
    • Added Support for integrity checks on i18n installations.
    • \n
    • Fixed the setting change bug.
    • \n
    \n

    1.6.6

    \n
      \n
    • Internal code cleanup and re-organization.
    • \n
    • More white lists for the integrity checks.
    • \n
    • Additional settings to customize some of the warnings.
    • \n
    \n

    1.6.5

    \n
      \n
    • Fixed integrity checking display.
    • \n
    \n

    1.6.4

    \n
      \n
    • Fixed API generation bug.
    • \n
    \n

    1.6.3

    \n
      \n
    • Added proper brute force alerts.
    • \n
    • Added option to restrict number of emails.
    • \n
    • Added more description to the emails.
    • \n
    • Added a list of failed login attempts inside the last login tab.
    • \n
    \n

    1.6.2

    \n
      \n
    • Setting a maximum number of emails per hour.
    • \n
    • Fixing typos.
    • \n
    \n

    1.6.1

    \n
      \n
    • Initial release with new auditing options.
    • \n
    \n

    1.6.0

    \n
      \n
    • A new dashboard to welcome users to the new features of the plugin.
    • \n
    • Overall design of the interface of all the pages were modified.
    • \n
    • SiteCheck scanner results were filled with more information.
    • \n
    • SiteCheck scanner results markers when the site is infected/clean.
    • \n
    • System Info page were simplified with tabulation containers.
    • \n
    • Integrity check for administrator accounts was optimized.
    • \n
    • Integrity check for outdated plugins/themes was optimized and merged.
    • \n
    • IPv6 support in last logins statistics.
    • \n
    \n

    1.5.7

    \n
      \n
    • WordPress 3.9 compatibility
    • \n
    \n

    1.5.6

    \n
      \n
    • Added IPv6 support.
    • \n
    • Fixed links and messaging.
    • \n
    \n

    1.5.5

    \n
      \n
    • Added list of logged in users.
    • \n
    • Added system page.
    • \n
    • Change the integrity checking to use WP API.
    • \n
    \n

    1.5.4

    \n
      \n
    • Bug fixes.
    • \n
    \n

    1.5.2

    \n
      \n
    • Adding additional information about .htaccess hacks and the server environment.
    • \n
    \n

    1.5.0

    \n
      \n
    • Fixing last login and giving better warns on permission errors.
    • \n
    • Making the integrity check messages more clear.
    • \n
    \n

    1.4.8

    \n
      \n
    • New and clean design for the scan results.
    • \n
    • Adding a web firewall check on our hardening page.
    • \n
    \n

    1.4.7

    \n
      \n
    • Cleaning up the code a bit.
    • \n
    • Only displaying last login messages to admin users.
    • \n
    • Storing the logs into a log file instead of the db.
    • \n
    \n

    1.4.6

    \n
      \n
    • Increasing last login table to the last 100 entries.
    • \n
    \n

    1.4.5

    \n
      \n
    • Fixing some issues on the last login and allowing the option to disable it.
    • \n
    \n

    1.4.4

    \n
      \n
    • Small bug fixes + forcing a re-scan on every scan attempt (not using the cache anymore).
    • \n
    \n

    1.4.3

    \n
      \n
    • Fixing a few PHP warnings.
    • \n
    \n

    1.4.2

    \n
      \n
    • Fixing a few PHP warnings.
    • \n
    \n

    1.4.1

    \n
      \n
    • Small bug fixes.
    • \n
    • Adding last IP to the last login page.
    • \n
    \n

    1.4

    \n
      \n
    • Added post-hack options (reset all passwords).
    • \n
    • Added last-login.
    • \n
    • Added more hardening and the option to revert any hardening done.
    • \n
    \n

    1.3

    \n
      \n
    • Removed some PHP warnings and code clean up.
    • \n
    • Added WordPress integrity checks.
    • \n
    • Added plugin/theme/user checks.
    • \n
    \n

    1.2.2

    \n
      \n
    • Tested on WP 3.5.1
    • \n
    \n

    1.2.1

    \n
      \n
    • Tested on WP 3.5-RC4
    • \n
    • Style changes
    • \n
    \n

    1.2

    \n
      \n
    • Cleared PHP warnings
    • \n
    • Added /inc directory
    • \n
    • Added /lib directory
    • \n
    • Logo added
    • \n
    • Default stylesheet added
    • \n
    • Header area added
    • \n
    • Sidebar area added
    • \n
    • Restyled 1-click hardening page
    • \n
    • Removed old malware page
    • \n
    \n

    1.1.7

    \n
      \n
    • Tested on WP 3.5-RC3.
    • \n
    \n

    1.1.6

    \n
      \n
    • Upgrading for WP 3.3.
    • \n
    \n

    1.1.5

    \n
      \n
    • Removed PHP warnings / code cleaning.
    • \n
    \n

    1.1.3

    \n
      \n
    • Cleaning up the results.
    • \n
    • Added 1-click hardening.
    • \n
    \n

    1.1.2

    \n
      \n
    • First release that is good to be used (debugging code removed).
    • \n
    \n

    1.1.1

    \n
      \n
    • First public release.
    • \n
    \n", "description": "

    At Sucuri, we are dedicated to keeping your website safe and secure. With a focus on protection and monitoring, we offer solutions that help you stay ahead of potential threats for your WordPress site.

    \n

    Our services include everything from malware detection to performance optimization, all designed to give you peace of mind.

    \n

    We understand the importance of your online presence and are here to support you every step of the way. Join us, and let’s work together to ensure your website remains secure and resilient.

    \n

    The Sucuri Security Monitoring Plugin is designed to safeguard your WordPress site with ease and reliability. Our plugin offers a range of essential security features, including:

    \n
      \n
    • Security Activity Auditing: Keep track of every security-related event within your WordPress environment.
    • \n
    • File Integrity Monitoring: Detect unauthorized changes to your files and protect your site from potential vulnerabilities.
    • \n
    • Remote Malware Scanning: Regularly scan your site for malware with our remote scanner to ensure it’s clean and secure.
    • \n
    • Blocklist Monitoring: Receive alerts if your site is blocklisted by any major services, allowing for quick resolution.
    • \n
    • Security Hardening: Implement recommended security practices to fortify your site against threats.
    • \n
    • Post-Hack Security Actions: If the worst happens, our plugin helps you recover your site easily.
    • \n
    \n

    With Sucuri, you can focus on what matters most—growing your website—while we handle the security. Our feature set provides a clear view of your site’s status, making it easy to manage, monitor and take action.

    \n

    Contributors & Maintenance Notice

    \n

    Our dedicated team of engineers and security analysts is continually working to enhance the Sucuri Security Monitoring Plugin.

    \n

    We provide regular updates, address bugs, and actively incorporate user feedback to ensure your WordPress site maintains its highest security stance. Our growth roadmap underscores our commitment to keeping you protected against emerging threats.

    \n

    To support you further, we offer a variety of resources, including prompt responses for the forum, our website’s various content types, and an extensive knowledge base.

    \n

    Our content is designed to help you maximize your plugin feature usage and benefits with the support you need.

    \n

    If you want to be ahead of possible threats and keep up-to-date with Plugin updates, subscribe to our content here.

    \n

    Introducing the Sucuri Firewall + WordPress Security Plugin

    \n

    We’re excited to introduce the Sucuri Firewall + WordPress Security Plugin, designed for those who seek advanced protection for their WordPress sites.

    \n

    Building upon our trusted free plugin, this premium offering provides a robust suite of features to ensure comprehensive security and peace of mind.

    \n

    Key features include:
    \n* Web Application Firewall (WAF): Protect your site from malicious traffic with our powerful firewall solution.
    \n* Brute Force Protection: Safeguard your site against unauthorized login attempts.
    \n* Brute Force Audit & Reporting: Gain insights into login attempts with detailed auditing and reporting.
    \n* DDoS Mitigation: Maintain site availability even during targeted attacks.
    \n* Core Vulnerabilities Scanning: Identify and address security weaknesses in WordPress core files.
    \n* Plugins Vulnerability Scanning: Ensure your installed plugins are secure and up to date.
    \n* Themes Vulnerability Scanning: Protect your site by scanning for vulnerabilities in installed themes.
    \n* PHP Vulnerability Scanning: Detect and address potential security issues in your PHP environment.

    \n

    With the Sucuri Firewall + WordPress Security Plugin, you benefit from the expertise and dedication of our team, committed to keeping your digital assets secure.

    \n

    Experience the next level of protection and support, and enjoy the peace of mind that comes with knowing your site is in good hands.

    \n", "screenshots": "
    1. \"WordPress

      WordPress Integrity Tool - Detects added, modified, and removed files.

    2. \"Integrity

      Integrity Diff Utility - Shows differences in the core WordPress files.

    3. \"Audit

      Audit Logs and Malware Scanner - Reports suspicious events and malicious code.

    4. \"Sucuri

      Sucuri Firewall - Settings visibility, audit logs, IP blocklisting, and cache.

    5. \"Website

      Website Hardening - Offers multiple options to increase the security of the website.

    6. \"Failed

      Failed Logins - Shows failed login attempts, successful logins and online users.

    7. \"Post

      Post Hack Tools - Offers multiple tools to react after the suspiciousness of a hack.

    8. \"Settings

      Settings - Offers multiple settings to configure the functionality of the plugin.

    9. \"Cache

      Cache control headers - Offers multiple options to configure the cache control header.

    ", "installation": "

    The installation of the Sucuri WordPress Security plugin is very simple and straight forward. A detailed breakdown of the process is available here (including images), however, below we outline the bare minimum steps.

    \n

    To install Sucuri Security and complement your Security posture:

    \n
      \n
    1. Log into your WordPress administration panel,
    2. \n
    3. In the sidebar, choose “Plugins” and then “Add New”,
    4. \n
    5. Type “sucuri” or “sucuri-scanner” in the search box,
    6. \n
    7. Install the option with the “By Sucuri Inc.” at the foot,
    8. \n
    9. Once activated, you will find a new icon in the sidebar with the Sucuri logo. Go to the plugin’s dashboard and click the button that says “Generate API Key” to activate the event monitoring, this will generate a unique key to authenticate your website against the remote Sucuri WordPress API service,
    10. \n
    11. Feel free to visit the plugin’ settings page to configure other options including the security alerts, hardening options, file system scanner paths and API service communication.
    12. \n
    \n

    Visit the Support Forum to ask questions, suggest new features, or report bugs. And recommend the plugin to your friends and colleagues if you think it can help them.

    \n"}, "versions": {"1.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.zip", "2.0": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.5.zip", "1.1.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.1.6.zip", "1.4.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.2.zip", "1.5.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.7.zip", "1.6.0": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.1.zip", "1.6.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.6.zip", "1.6.8": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.1.zip", "1.8.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.9.zip", "1.9.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/sucuri-scanner.zip", "1.7.10": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.12.zip", "1.7.13": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.13.zip", "1.7.14": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.14.zip", "1.7.15": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.15.zip", "1.7.16": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.16.zip", "1.7.17": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.17.zip", "1.7.18": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.18.zip", "1.7.19": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.19.zip", "1.8.10": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.10.zip", "1.8.11": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.11.zip", "1.8.12": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.12.zip", "1.8.13": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.13.zip", "1.8.14": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.14.zip", "1.8.15": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.15.zip", "1.8.16": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.16.zip", "1.8.17": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.17.zip", "1.8.18": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.18.zip", "1.8.19": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.19.zip", "1.8.20": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.20.zip", "1.8.21": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.21.zip", "1.8.22": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.22.zip", "1.8.23": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.23.zip", "1.8.24": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.24.zip", "1.8.25": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.25.zip", "1.8.26": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.26.zip", "1.8.27": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.27.zip", "1.8.28": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.28.zip", "1.8.29": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.29.zip", "1.8.30": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.30.zip", "1.8.31": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.31.zip", "1.8.32": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.32.zip", "1.8.33": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.33.zip", "1.8.34": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.34.zip", "1.8.35": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.35.zip", "1.8.36": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.36.zip", "1.8.37": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.37.zip", "1.8.38": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.38.zip", "1.8.39": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.39.zip", "1.8.40": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.40.zip", "1.8.41": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.41.zip", "1.8.42": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.42.zip", "1.8.43": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.43.zip", "1.8.44": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.44.zip", "1.9.10": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.10.zip"}, "downloaded": 31415987, "description": "

    At Sucuri, we are dedicated to keeping your website safe and secure. With a focus on protection and monitoring, we offer solutions that help you stay ahead of potential threats for your WordPress site.

    \n

    Our services include everything from malware detection to performance optimization, all designed to give you peace of mind.

    \n

    We understand the importance of your online presence and are here to support you every step of the way. Join us, and let’s work together to ensure your website remains secure and resilient.

    \n

    The Sucuri Security Monitoring Plugin is designed to safeguard your WordPress site with ease and reliability. Our plugin offers a range of essential security features, including:

    \n
      \n
    • Security Activity Auditing: Keep track of every security-related event within your WordPress environment.
    • \n
    • File Integrity Monitoring: Detect unauthorized changes to your files and protect your site from potential vulnerabilities.
    • \n
    • Remote Malware Scanning: Regularly scan your site for malware with our remote scanner to ensure it’s clean and secure.
    • \n
    • Blocklist Monitoring: Receive alerts if your site is blocklisted by any major services, allowing for quick resolution.
    • \n
    • Security Hardening: Implement recommended security practices to fortify your site against threats.
    • \n
    • Post-Hack Security Actions: If the worst happens, our plugin helps you recover your site easily.
    • \n
    \n

    With Sucuri, you can focus on what matters most—growing your website—while we handle the security. Our feature set provides a clear view of your site’s status, making it easy to manage, monitor and take action.

    \n

    Contributors & Maintenance Notice

    \n

    Our dedicated team of engineers and security analysts is continually working to enhance the Sucuri Security Monitoring Plugin.

    \n

    We provide regular updates, address bugs, and actively incorporate user feedback to ensure your WordPress site maintains its highest security stance. Our growth roadmap underscores our commitment to keeping you protected against emerging threats.

    \n

    To support you further, we offer a variety of resources, including prompt responses for the forum, our website’s various content types, and an extensive knowledge base.

    \n

    Our content is designed to help you maximize your plugin feature usage and benefits with the support you need.

    \n

    If you want to be ahead of possible threats and keep up-to-date with Plugin updates, subscribe to our content here.

    \n

    Introducing the Sucuri Firewall + WordPress Security Plugin

    \n

    We’re excited to introduce the Sucuri Firewall + WordPress Security Plugin, designed for those who seek advanced protection for their WordPress sites.

    \n

    Building upon our trusted free plugin, this premium offering provides a robust suite of features to ensure comprehensive security and peace of mind.

    \n

    Key features include:
    \n* Web Application Firewall (WAF): Protect your site from malicious traffic with our powerful firewall solution.
    \n* Brute Force Protection: Safeguard your site against unauthorized login attempts.
    \n* Brute Force Audit & Reporting: Gain insights into login attempts with detailed auditing and reporting.
    \n* DDoS Mitigation: Maintain site availability even during targeted attacks.
    \n* Core Vulnerabilities Scanning: Identify and address security weaknesses in WordPress core files.
    \n* Plugins Vulnerability Scanning: Ensure your installed plugins are secure and up to date.
    \n* Themes Vulnerability Scanning: Protect your site by scanning for vulnerabilities in installed themes.
    \n* PHP Vulnerability Scanning: Detect and address potential security issues in your PHP environment.

    \n

    With the Sucuri Firewall + WordPress Security Plugin, you benefit from the expertise and dedication of our team, committed to keeping your digital assets secure.

    \n

    Experience the next level of protection and support, and enjoy the peace of mind that comes with knowing your site is in good hands.

    \n", "donate_link": "https://sucuri.net/", "num_ratings": 382, "screenshots": {"1": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-1.png?rev=3080515", "caption": "WordPress Integrity Tool - Detects added, modified, and removed files."}, "2": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-2.png?rev=3174473", "caption": "Integrity Diff Utility - Shows differences in the core WordPress files."}, "3": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-3.png?rev=2875755", "caption": "Audit Logs and Malware Scanner - Reports suspicious events and malicious code."}, "4": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-4.png?rev=2875755", "caption": "Sucuri Firewall - Settings visibility, audit logs, IP blocklisting, and cache."}, "5": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-5.png?rev=2875755", "caption": "Website Hardening - Offers multiple options to increase the security of the website."}, "6": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-6.png?rev=2875755", "caption": "Failed Logins - Shows failed login attempts, successful logins and online users."}, "7": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-7.png?rev=2875755", "caption": "Post Hack Tools - Offers multiple tools to react after the suspiciousness of a hack."}, "8": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-8.png?rev=2875755", "caption": "Settings - Offers multiple settings to configure the functionality of the plugin."}, "9": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-9.png?rev=3115119", "caption": "Cache control headers - Offers multiple options to configure the cache control header."}}, "support_url": "https://wordpress.org/support/plugin/sucuri-scanner/", "contributors": {"sucuri": {"avatar": "https://secure.gravatar.com/avatar/a8e8b6d0a2b41fae590a7416f0a19b87117268c04905339f08b8610432f8e1d5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sucuri/", "display_name": "Sucuri"}}, "last_updated": "2025-10-01 11:48am GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.5.zip", "author_profile": "https://profiles.wordpress.org/sucuri/", "business_model": false, "repository_url": "", "upgrade_notice": {"1.8.19": "

    This version adds an option to refresh the malware scan results on demand, as well as several small bug fixes and improvements.

    ", "1.8.37": "

    This version removes the API communication service dependency on https://wordpress.sucuri.net/api/, because this service has been discontinued until further notice. Users who have their custom APIs to use in place of https://wordpress.sucuri.net/api/ can still use the API communication service by adding the API endpoint as SUCURISCAN_API_URL on the wp-config.php file.

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fb0c-7398-84e8-0d22efc78a01", "name": "Sucuri Security – Auditing, Malware Scanner and Security Hardening", "slug": "sucuri-scanner", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1759319280, "version": "2.5"}, "support_threads": 2, "requires_plugins": [], "short_description": "The Sucuri WordPress Security plugin is a security toolset for security integrity monitoring, malware detection and security hardening.", "author_block_count": 0, "author_block_rating": 84, "commercial_support_url": "", "support_threads_resolved": 2}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1def-728f-bb2d-7e9d397aad61', 'did:web:api.aspiredev.org:packages:wp-plugin:svg-support', 'svg-support', 'SVG Support', '

    The complete SVG solution for WordPress – secure, flexible, and easy to use.

    -

    SVG Support enables secure SVG uploads with powerful features for both basic users and developers:

    -

    Key Features:
    -– Secure SVG uploads with automatic sanitization
    -– Inline rendering for direct CSS/JS manipulation
    -– File size optimization through minification
    -– Role-based access control
    -– Advanced developer options
    -– Multisite compatible
    -– Full Block Editor (Gutenberg) compatibility

    -

    🔒 Security First:
    -– Built-in sanitization removes potentially harmful code
    -– Role-based upload restrictions
    -– Comprehensive MIME type validation

    -

    🎨 Designer Friendly:
    -– Direct styling of SVG elements
    -– Animation support
    -– Custom class targeting
    -– Automatic dimension handling

    -

    💻 Developer Ready:
    -– Advanced mode for additional features
    -– REST API support
    -– Gutenberg compatible
    -– Extensive hooks and filters

    -

    Usage

    -

    Basic Usage:
    -– First, install and activate SVG Support via your WordPress dashboard
    -– Upload SVG files to your media library like any other image
    -– Works seamlessly with Image blocks, Cover blocks and featured images

    -

    Advanced Usage:
    -– Enable “Advanced Mode” for minification and inline rendering
    -– Customize with hooks and filters for tailored functionality

    -

    Block Editor Usage:
    -– Use Advanced Mode to enable inline rendering:
    - – Add the "style-svg" class to Image blocks
    - – Add the "style-svg" class to Cover blocks to render SVG backgrounds inline
    -– Use “Skip Nested SVGs” setting to control inline rendering of SVGs within Cover blocks

    -

    Classic Editor Usage:
    -– Use Advanced Mode to add the "style-svg" class to <img> tags for inline rendering
    -– Enable “Auto Insert Class” option for automatic class insertion in Classic Editor

    -

    Common Issues & Solutions:
    -– SVG not displaying? Ensure dimensions are set in CSS.
    -– Need help? Use the support tab and I will do my best to assist you.

    -

    Spin up a test site

    -

    With a single click, you can spin up a completely free test site to test SVG Support using TasteWP! No sign up, no cards, nothing! How cool is that? Give it a go:
    -Click Here to spin up a test site in seconds

    -

    Security

    -

    SVG Support prioritizes security with automatic sanitization and role-based restrictions. Only trusted users should have upload permissions. Configure settings to balance functionality and security.

    -

    Feedback

    -

    I’m open to your suggestions and feedback – Thanks for using SVG Support!

    -

    Follow @SVGSupport on Twitter
    -Follow @benbodhi on Twitter
    -Follow @benbodhi on Warpcast

    -

    Note: I hope you like this plugin! Please take a moment to rate it.

    -

    Development & Contributing

    -

    The development version of SVG Support is maintained on GitHub. Feel free to contribute:

    - -

    Translations

    -

    Contribute translations here. New to translating? Check the Translator Handbook.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "SVG Support", "slug": "svg-support", "tags": {"svg": "SVG", "vector": "Vector", "safe-svg": "safe svg", "mime-type": "mime type", "sanitization": "sanitization"}, "added": "2014-07-22", "icons": {"1x": "https://ps.w.org/svg-support/assets/icon.svg?rev=1417738", "svg": "https://ps.w.org/svg-support/assets/icon.svg?rev=1417738"}, "author": "Benbodhi", "rating": 96, "status": "open", "tested": "6.7.4", "banners": {"low": "https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377", "high": "https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377"}, "ratings": {"1": 11, "2": 5, "3": 6, "4": 2, "5": 327}, "version": "2.5.14", "homepage": "http://wordpress.org/plugins/svg-support/", "requires": "5.8", "sections": {"faq": "\n
    \nSVG not rendering inline since 2.3 update\n\n

    \n

    Ensure “Advanced Mode” is enabled in Settings > SVG Support.

    \n

    \n
    \nHow do I disable the Javascript on the front end if I am not using inline SVG?\n\n

    \n

    Disable “Advanced Mode” in the settings.

    \n

    \n
    \nI’m trying to use SVG in the customizer but it’s not working.\n\n

    \n

    To allow SVG to work in the customizer, you will need to modify/add some code in your child theme’s function file. Here is a great tutorial on how to do that. The important part is:

    \n
    ''flex-width''    => true\n''flex-height''   => true\n
    \n

    \n
    \nHow do I add animation to my SVG?\n\n

    \n

    You will need to edit your SVG file in a code editor so you can add CSS classes to each element you need to target within the SVG. Make sure that your IMG tag is being swapped out for your inline SVG and then you can use CSS or JS to apply animations to elements within your SVG file.

    \n

    \n
    \nWhy is SVG Support not working in multisite?\n\n

    \n

    If you installed multisite prior to WordPress 3.5, then you will need to remove your ms-files. Here is a couple of resources to help you: Dumping ms-files Removing ms-files after 3.5.

    \n

    \n
    \nWhy is my SVG not working in Visual Composer?\n\n

    \n

    If you are using SVG Support with Visual Composer or any other page builders, you will need to make sure that you can add your own class to the image. The easiest way to do this is by using a simple text or code block in the builder to put your image code in to. Additionally, there is now a setting to force all SVG files to be rendered inline.

    \n

    \n
    \nHow do I get this to work with the Media Library Assistant plugin?\n\n

    \n

    You need to add the mime type for svg and svgz to: “MLA Settings > Media Library Assistant > Uploads (tab)” and then it works.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works as advertised!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy atkulp on September 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I wanted to be able to use SVG files for logo and other assets and this plugin made it easy. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect plug-in

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Nandor (flashfabio) on August 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works well, happy to use. Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It works perfectly!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy viniferraz24 on July 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It did what it promised. I will definitely use it again in future projects!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does exactly what it claims

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy douglockyer64 on July 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Makes uploading and applying/styling custom svg icons a breeze. Integrates perfectly with elementor and font awesome.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ryan Tvenge (rtvenge) on April 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin we use on so many sites.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Causes significant memory spike

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy elaborate (Azinfiro) on April 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using this plugin on a client''s site for a while without thinking much of it, but after investigating a complaint of a sluggish UI, it turns out this plugin is responsible for a 500 MB memory increase when only two SVG files are displayed on the page.

    Enabling SVG support for the WordPress media library can be done with a dozen lines of PHP, so just switching form this plugin to a few lines in functions.php has returned RAM consumption back to normal again.

    I previously wrote that this plugin appears to convert SVG to HTML and CSS, but that''s not actually the case—that turned out to be the Safari LiveText implementation. The plugin does nevertheless trigger a memory leak. I haven''t investigated it further, but the developer is welcome to comment on it. I''ll update my review if necessary.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    svg

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy olegdvd on April 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    отлично молодцы

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Never failed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy luiggimon on April 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy garaldo22 on February 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Allows SVG uploads easily - 👌

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    File is not a valid SVG.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ssmx on February 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

     recall this plugin used to work correctly before. Why has it stopped uploading? Interestingly, if I upload a file from another plugin first, it seems the original plugin then properly converts it to inline SVG afterward.

    \n
    \n
    \n", "changelog": "

    2.5.14

    \n
      \n
    • \n

      Security Enhancements:

      \n
        \n
      • Remove default roles from the sanitizer bypass settings
      • \n
      \n
    • \n
    • \n

      Fixes:

      \n
        \n
      • More comprehensive upload checks, allowing generator tags and comment patterns
      • \n
      \n
    • \n
    • \n

      Performance Improvements:

      \n
        \n
      • Cleanup duplicate inline_featured_image meta entries more efficiently
      • \n
      • Remove inline_featured_image meta entries that aren’t explicitly set to 1 (enabled)
      • \n
      • Don’t store inline_featured_image meta for posts that previously had it enabled but don’t anymore
      • \n
      \n
    • \n
    • \n

      General Updates:

      \n
        \n
      • Restructured settings layout
      • \n
      • Better cleanup on uninstall when delete plugin data is selected
      • \n
      \n
    • \n
    \n

    2.5.13

    \n
      \n
    • Code Improvements:\n
        \n
      • Better PHP 8.3 compatibility – added null checks to prevent deprecated warnings in PHP 8.3
      • \n
      \n
    • \n
    \n

    2.5.12

    \n
      \n
    • \n

      General Updates:

      \n
        \n
      • Added blueprint.json for the live preview feature on wordpress.org
      • \n
      \n
    • \n
    • \n

      Fixes:

      \n
        \n
      • Fixed mime type check that was restricting SVG uploads without the XML tag in PHP 7.4
      • \n
      \n
    • \n
    \n

    2.5.11

    \n
      \n
    • Security Enhancement\n
        \n
      • Added more effective handling of sanitization for REST API uploads
      • \n
      \n
    • \n
    \n

    2.5.10

    \n
      \n
    • Fixes:\n
        \n
      • Fixed issue with upload checks preventing plugin uploads
      • \n
      \n
    • \n
    \n

    2.5.9

    \n
      \n
    • \n

      New Features:

      \n
        \n
      • Added new Advanced Mode setting “Skip Nested SVGs” to control inlining of SVGs within containers (for example: nested SVGs in Gutenberg Cover blocks)
      • \n
      • Added proper multisite support for SVG uploads across subsites
      • \n
      • Added network administrator support for SVG uploads on all subsites
      • \n
      \n
    • \n
    • \n

      Security Enhancements:

      \n
        \n
      • Updated DOMPurify library to version 2.5.8
      • \n
      • Updated enshrined/svg-sanitize to version 0.21.0
      • \n
      • Added nonce verification for non-REST uploads to prevent CSRF attacks
      • \n
      • Improved MIME type validation for SVG files
      • \n
      • Enhanced file content validation to ensure only valid SVG files are processed
      • \n
      • Moved security checks earlier in the upload process for better efficiency
      • \n
      • Updated and improved sanitization options for both frontend and admin
      • \n
      \n
    • \n
    • \n

      Code Improvements:

      \n
        \n
      • Changed synchronous XMLHttpRequest to asynchronous in vanilla JS version to improve performance and remove Chrome deprecation warnings
      • \n
      • Removed console logging statements from JavaScript files for cleaner browser console
      • \n
      • Reorganized upload validation flow for better performance
      • \n
      • Added proper error messages for failed security checks
      • \n
      • Improved handling of REST API uploads
      • \n
      • Enhanced code documentation and inline comments
      • \n
      • Added proper plugin asset handling and alt text for admin images
      • \n
      • Enhanced multisite compatibility with proper role and capability checks
      • \n
      • Added network-level upload permission validation
      • \n
      • Added AJAX hooks for featured image inline toggle
      • \n
      • Enqueue minified Gutenberg filters script instead of expanded version
      • \n
      • Added better version update handling
      • \n
      \n
    • \n
    • \n

      Fixes:

      \n
        \n
      • PHP Warning about undefined array key “css_target” in admin init.php
      • \n
      • Fixed “not allowed to upload this file type” error on multisite installations
      • \n
      • Fixed duplicate meta entries for inline featured images preventing post saves
      • \n
      • Added automatic cleanup of duplicate meta entries during plugin update
      • \n
      • Improved handling of featured image meta to prevent duplicate entries
      • \n
      • Updated and refactored Gutenberg featured image checkbox to use modern React hooks instead of deprecated withState
      • \n
      • Fixed missing file path in SVG attachment metadata causing issues with WPML Media Translation
      • \n
      • Fixed jQuery dependency only being required when not using vanilla JS option
      • \n
      \n
    • \n
    • \n

      General Updates:

      \n
        \n
      • Updated security documentation
      • \n
      • Refined error messaging for better user experience
      • \n
      \n
    • \n
    \n

    2.5.8

    \n
      \n
    • \n

      Security Enhancements:

      \n
        \n
      • Improved sanitization of SVG uploads and attachments for enhanced security.
      • \n
      • Ensured all output in the admin settings page is properly escaped.
      • \n
      • Replaced direct file handling functions with WordPress APIs for better security and compatibility.
      • \n
      • Improved translation support with added translators’ comments and ordered placeholders.
      • \n
      \n
    • \n
    • \n

      Admin Interface Improvements:

      \n
        \n
      • Updated admin-init.php with better escaping practices and enhanced security for the settings page.
      • \n
      • Added error logging to SVG processing to assist with debugging without disrupting the user experience.
      • \n
      \n
    • \n
    • \n

      Performance and Compatibility:

      \n
        \n
      • Updated enqueue functions to ensure scripts and styles are loaded efficiently with proper dependencies.
      • \n
      • Improved metadata handling for SVGs to prevent issues in the Media Library and with ACF integration.
      • \n
      • Optimized nonce verification and meta updates in the featured image functions to prevent unnecessary database writes.
      • \n
      \n
    • \n
    • \n

      General Code Improvements:

      \n
        \n
      • Refactored code to reduce redundancy and improve maintainability.
      • \n
      • Added detailed inline documentation for better code clarity and future development.
      • \n
      \n
    • \n
    • \n

      Experimental Integration with WP All Import:

      \n
        \n
      • Introduced integration with WP All Import for experimental SVG handling during imports.
      • \n
      • SVG files imported via WP All Import are sanitized, and their metadata is generated and updated correctly.
      • \n
      • Added error logging to track issues during SVG import processing.
      • \n
      • Note: This feature is experimental and commented out in the main plugin file for now. Feel free to uncomment the include lines to test it out, but please ensure you back up your data first.
      • \n
      \n
    • \n
    \n

    2.5.7

    \n
      \n
    • Compatibility with newer versions of php.
    • \n
    \n

    2.5.6

    \n
      \n
    • Addressed some security concerns.
    • \n
    \n

    2.5.5

    \n
      \n
    • More error fixes and general clean up.
    • \n
    \n

    2.5.4

    \n
      \n
    • Fixed errors.
    • \n
    \n

    2.5.3

    \n
      \n
    • Fixed fatal php error.
    • \n
    \n

    2.5.2

    \n
      \n
    • Added some defaults for better security by default.
    • \n
    \n

    2.5.1

    \n
      \n
    • Added missing quotes in uninstall.php.
    • \n
    \n

    2.5

    \n
      \n
    • Cleaned up spelling mistakes and general formatting.
    • \n
    • Addressed security concern.
    • \n
    • Added more sanitization options – frontend and admin both supported.
    • \n
    • Added support for SVG minification.
    • \n
    • Added ability to choose jQuery or vanilla JS.
    • \n
    • Added DB cleanup on uninstall.
    • \n
    • Fixed dimensions fallback.
    • \n
    \n

    2.4.2

    \n
      \n
    • Fixed srcset warning for some premium themes.
    • \n
    • Fixed original IMG IDs not getting preserved on replacement.
    • \n
    • Removed some rogue text from featured image box.
    • \n
    \n

    2.4.1

    \n
      \n
    • Fixed issue causing WP-CLI to break.
    • \n
    \n

    2.4

    \n
      \n
    • NEW FEATURE: Added optional SVG sanitization.
    • \n
    • NEW FEATURE: Added optional SVG minification.
    • \n
    • Added inline SVG checkbox to Gutenberg featured image.
    • \n
    • Better Gutenberg support in general.
    • \n
    • Modified class targeting to allow inline rendering of nested SVGs (any level deep) when you can’t set the IMG class directly.
    • \n
    • Modified JS to use vanilla JS instead of jQuery.
    • \n
    • Fixed accessibility issues on settings page.
    • \n
    • Fixed dimensions metadata issue.
    • \n
    • Fixed division by 0 issue when SVG had no width or height set.
    • \n
    • Fixed featured image spacing issue in both classic and block editor.
    • \n
    • Bumped required PHP version.
    • \n
    • Removed obsolete admin notice.
    • \n
    • Removed srcset for SVG files.
    • \n
    • Removed directory name from filepath metadata.
    • \n
    \n

    2.3.21

    \n
      \n
    • Fixed featured image SVG overlapping container.
    • \n
    \n

    2.3.20

    \n
      \n
    • Fixed admin setting not being escaped when output.
    • \n
    \n

    2.3.19

    \n
      \n
    • Fixed PHP Warning from localize_script in functions/enqueue.php.
    • \n
    • Added a check for SRC attribute in js/svgs-inline.js.
    • \n
    \n

    2.3.18

    \n
      \n
    • Updated author URL in main plugin file.
    • \n
    • Updated donate links.
    • \n
    • Cleaned up plugin action meta links and settings page.
    • \n
    • Rolled back a fix in functions/attachment.php due to it removing meta from other attachments.
    • \n
    \n

    2.3.17

    \n
      \n
    • Added setting to choose whether to load frontend CSS or not.
    • \n
    \n

    2.3.16

    \n
      \n
    • Fix for files that have the XML declaration.
    • \n
    • Fix for PHP warnings from image widget.
    • \n
    • Some small CSS changes to the frontend when displaying SVG media attachments.
    • \n
    \n

    2.3.15

    \n
      \n
    • Had to roll back a recent PHP warnings fix due to it breaking some theme compatibility.
    • \n
    \n

    2.3.14

    \n
      \n
    • Fixed: Fatal error in some cases when removing old option from the database.
    • \n
    \n

    2.3.13

    \n
      \n
    • Fixed: PHP warnings and notices from the image widget when using SVG files and wp_debug was on.
    • \n
    • Modified: Better front end CSS for displaying SVG attachments, both as images and inline.
    • \n
    • Removed: DB entry for deprecated admin notice.
    • \n
    \n

    2.3.12

    \n
      \n
    • New: Native “Help” tab on the SVG Support settings page.
    • \n
    • New: Wrapped the inline JS in a function so you can call it at will using bodhisvgsInlineSupport();.
    • \n
    • Modified: Admin CSS to target SVG src only.
    • \n
    • Modified: SVG Support settings page – cleaned it up a little.
    • \n
    • Removed: Version update admin notice.
    • \n
    \n

    2.3.11

    \n
      \n
    • New: Feature to use expanded JS file rather than the minified/compressed version (useful for bundling and minifying using external caching plugins).
    • \n
    • New: Force Inline SVG option. This feature allows you to force all of your SVG files to be rendered inline regardless of classes applied. Addresses issues where you can’t add your own class to an image for some reason. For example, some page builder image elements. Also addresses changing your target class in the settings and needing to change all of your already embedded media, allowing you to simply force render rather than update all of the classes.
    • \n
    • Modified the readme file and descriptions a bit.
    • \n
    • Refined some code in functions/featured-image.php line 69 to address a warning.
    • \n
    • Updated “Requires at least” tag to 4.8 (though it should still work in older versions, there was issues with core during the 4.7 phase and it’s time for you to update anyway).
    • \n
    \n

    2.3.10

    \n
      \n
    • Fixed missing links in settings page.
    • \n
    \n

    2.3.9

    \n
      \n
    • Modified plugin action meta link for settings page.
    • \n
    • Changed some language throughout the plugin.
    • \n
    • Added recommendation for ShortPixel Image Optimization.
    • \n
    • Added conditional to check post type supports thumbnail before setting meta data.
    • \n
    \n

    2.3.8

    \n
      \n
    • Added some CSS to make sure featured images show on WooCommerce products, Sensei Courses and Lessons.
    • \n
    • Fix: Auto insert class setting was stripping featured image HTML in some cases.
    • \n
    \n

    2.3.7

    \n
      \n
    • Added WP version check to wrap mime fix function needed for WP v4.7.1 – v4.7.2.
    • \n
    • Moved mime fix into mime type file.
    • \n
    • Modified admin notice code to make it neater.
    • \n
    • Fix: attachment-modal.php issues with some servers and external SVG files (props to @abstractourist & @malthejorgensen for providing fixes, as I could not consistently reproduce the issue).
    • \n
    • Compatibility: Changed a line to provide wider compatibility, specifically for WordPress Bedrock on a LEMP stack.
    • \n
    • Compatibility: Added another snippet to the JS to support IE11 (apparently people still use IE).
    • \n
    • Added more FAQ’s.
    • \n
    \n

    2.3.6

    \n
      \n
    • New: Added polyfill to make svgs-inline.js work with older browsers.
    • \n
    • New: Section to leave reviews on settings page.
    • \n
    • Removed: Redundant one time upgrade activate code.
    • \n
    • Fix: Errors reported on activation and on the settings page – Related Support Thread.
    • \n
    \n

    2.3.5

    \n
      \n
    • Revision and modification of the thumbnail display code.
    • \n
    \n

    2.3.4

    \n
      \n
    • Fix: Fatal error for some because a function wasn’t prefixed.
    • \n
    \n

    2.3.3

    \n
      \n
    • Fix: Missing arguments PHP warnings from new attribute control file.
    • \n
    • Update settings page text.
    • \n
    \n

    2.3.2

    \n
      \n
    • Modified the attribute control code that auto inserts our class to only apply to SVG files.
    • \n
    \n

    2.3.1

    \n
      \n
    • Fix: Fatal error in some cases due to admin notice.
    • \n
    \n

    2.3

    \n
      \n
    • New Feature – Advanced Mode: allows you to turn off the advanced features and simply upload SVG files like normal images. This addition also enables users to turn off the script added on front end by leaving Advanced Mode unchecked.
    • \n
    • New Feature – Featured Image Support: If your featured image is SVG, once the post is saved you will see a checkbox to render the SVG inline (advanced mode only).
    • \n
    • Performance – Stop inlining JS from running if image source is not SVG.
    • \n
    • Added new stylesheet for settings page.
    • \n
    • Moved SCSS files to their own folder.
    • \n
    • Changed donate link so I can track it and properly thank you for your generous donations.
    • \n
    • Added a rating link to the settings and media pages.
    • \n
    • Cleaned up code formatting, added more comments.
    • \n
    • Added a plugin version check.
    • \n
    • Added notice so people are aware they may need to turn on the advanced mode.
    • \n
    \n

    2.2.5

    \n
      \n
    • FIX: Display SVG thumbnails in attachment modals.
    • \n
    \n

    2.2.4

    \n
      \n
    • FIX: Added function to temporarily fix an issue with uploading in WP 4.7.1
    • \n
    \n

    2.2.32

    \n
      \n
    • Changed text domain to match plugin slug for localization.
    • \n
    \n

    2.2.31

    \n
      \n
    • Attempt to fix ability to translate
    • \n
    \n

    2.2.3

    \n
      \n
    • Modified code in svg-support/js/svg-inline.js and svg-support/js/min/svg-inline-min.js to allow JS control of the SVG elements and detect if they have been loaded (IMG tag swapped out). Thanks to laurosello for this suggestion and code contribution.
    • \n
    • Fixed SVG thumbnails not displaying correctly in list view of the media library.
    • \n
    • Cleaned up the code and comments a bit.
    • \n
    • Added translation for Spanish. Thanks to Apasionados del Marketing for the translation.
    • \n
    \n

    2.2.2

    \n
      \n
    • Changed another anonymous function in svg-support/functions/thumbnail-display.php that was causing errors for some.
    • \n
    \n

    2.2.1

    \n
      \n
    • Changed anonymous function in svg-support/functions/thumbnail-display.php line 15 to prevent fatal error in older PHP versions.
    • \n
    \n

    2.2

    \n
      \n
    • Added support to make SVG thumbnails visible in all media library screens.
    • \n
    • Added SVGZ to the mime types.
    • \n
    • Automatically removes the width and height attributes when inserting SVG files.
    • \n
    • Added ability to choose whether the target class is automatically inserted into img tags or not, stripping the default WordPress classes.
    • \n
    • Added ability to choose whether script is output in footer – true or false.
    • \n
    • Blocked direct access to PHP files.
    • \n
    • Added SCSS support using CodeKit – minified CSS + JS files.
    • \n
    • Updated spelling for incorrect function name.
    • \n
    • Changed comment formatting across all files for consistency.
    • \n
    • Added link to $25 Free credit at GoWebben on the settings page.
    • \n
    • Tested in WordPress 4.3.
    • \n
    • Updated Readme file.
    • \n
    \n

    2.1.7

    \n
      \n
    • Tested in WordPress 4.0 and added plugin icons for the new interface.
    • \n
    \n

    2.1.6

    \n
      \n
    • Added missing jQuery dependency in /functions/enqueue.php (pointed out by walbach) – was loading SVG Support JS before jQuery.
    • \n
    \n

    2.1.5

    \n
      \n
    • Added Serbian translation, submitted by Ogi Djuraskovic.
    • \n
    \n

    2.1.4

    \n
      \n
    • Fixed plugin settings link (on plugins page)
    • \n
    • Added more links – Support & Donate
    • \n
    • Modified the settings page a little
    • \n
    • Cleaned up settings page with CSS
    • \n
    • Satisfied my OCD tendencies a little
    • \n
    \n

    2.1.3

    \n
      \n
    • Added plugin_action_links file for custom menus on plugin page.
    • \n
    \n

    2.1.2

    \n
      \n
    • Cleaned up trunk, tags and readme.txt to show correct changelog and update notice.
    • \n
    \n

    2.1.1

    \n
      \n
    • Fixed JS file conditional – worked in local testing but not live.
    • \n
    \n

    2.1

    \n
      \n
    • Updates to language files for localization.
    • \n
    \n

    2.0

    \n
      \n
    • Added an admin settings page with instructions plus options for restricting to admin use only and setting a custom CSS target class.
    • \n
    • Whole plugin completely re-written and re-structured.
    • \n
    • Added option to restrict SVG uploads to administrators only.
    • \n
    • Added field for custom CSS target class.
    • \n
    • Added stylesheet to admin settings page.
    • \n
    \n

    1.0

    \n
      \n
    • Initial Release.
    • \n
    \n", "description": "

    The complete SVG solution for WordPress – secure, flexible, and easy to use.

    \n

    SVG Support enables secure SVG uploads with powerful features for both basic users and developers:

    \n

    Key Features:
    \n– Secure SVG uploads with automatic sanitization
    \n– Inline rendering for direct CSS/JS manipulation
    \n– File size optimization through minification
    \n– Role-based access control
    \n– Advanced developer options
    \n– Multisite compatible
    \n– Full Block Editor (Gutenberg) compatibility

    \n

    🔒 Security First:
    \n– Built-in sanitization removes potentially harmful code
    \n– Role-based upload restrictions
    \n– Comprehensive MIME type validation

    \n

    🎨 Designer Friendly:
    \n– Direct styling of SVG elements
    \n– Animation support
    \n– Custom class targeting
    \n– Automatic dimension handling

    \n

    💻 Developer Ready:
    \n– Advanced mode for additional features
    \n– REST API support
    \n– Gutenberg compatible
    \n– Extensive hooks and filters

    \n

    Usage

    \n

    Basic Usage:
    \n– First, install and activate SVG Support via your WordPress dashboard
    \n– Upload SVG files to your media library like any other image
    \n– Works seamlessly with Image blocks, Cover blocks and featured images

    \n

    Advanced Usage:
    \n– Enable “Advanced Mode” for minification and inline rendering
    \n– Customize with hooks and filters for tailored functionality

    \n

    Block Editor Usage:
    \n– Use Advanced Mode to enable inline rendering:
    \n – Add the \"style-svg\" class to Image blocks
    \n – Add the \"style-svg\" class to Cover blocks to render SVG backgrounds inline
    \n– Use “Skip Nested SVGs” setting to control inline rendering of SVGs within Cover blocks

    \n

    Classic Editor Usage:
    \n– Use Advanced Mode to add the \"style-svg\" class to <img> tags for inline rendering
    \n– Enable “Auto Insert Class” option for automatic class insertion in Classic Editor

    \n

    Common Issues & Solutions:
    \n– SVG not displaying? Ensure dimensions are set in CSS.
    \n– Need help? Use the support tab and I will do my best to assist you.

    \n

    Spin up a test site

    \n

    With a single click, you can spin up a completely free test site to test SVG Support using TasteWP! No sign up, no cards, nothing! How cool is that? Give it a go:
    \nClick Here to spin up a test site in seconds

    \n

    Security

    \n

    SVG Support prioritizes security with automatic sanitization and role-based restrictions. Only trusted users should have upload permissions. Configure settings to balance functionality and security.

    \n

    Feedback

    \n

    I’m open to your suggestions and feedback – Thanks for using SVG Support!

    \n

    Follow @SVGSupport on Twitter
    \nFollow @benbodhi on Twitter
    \nFollow @benbodhi on Warpcast

    \n

    Note: I hope you like this plugin! Please take a moment to rate it.

    \n

    Development & Contributing

    \n

    The development version of SVG Support is maintained on GitHub. Feel free to contribute:

    \n\n

    Translations

    \n

    Contribute translations here. New to translating? Check the Translator Handbook.

    \n", "screenshots": "
    1. \"Basic

      Basic Settings

    2. \"Advanced

      Advanced Settings

    3. \"Featured

      Featured Image checkbox to render SVG inline

    4. \"SVG

      SVG used in WP native Image Widget

    5. \"Inline

      Inline SVG in the front end markup

    6. \"Help

      Help tab - Overview

    7. \"Help

      Help tab - The Settings

    8. \"Help

      Help tab - Standard Usage

    9. \"Help

      Help tab - Render SVG Inline (advanced usage)

    10. \"\"
    11. \"\"
    "}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/svg-support.1.0.zip", "2.0": "https://downloads.wordpress.org/plugin/svg-support.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/svg-support.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/svg-support.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/svg-support.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/svg-support.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/svg-support.2.5.zip", "2.1.1": "https://downloads.wordpress.org/plugin/svg-support.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/svg-support.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/svg-support.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/svg-support.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/svg-support.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/svg-support.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/svg-support.2.1.7.zip", "2.2.1": "https://downloads.wordpress.org/plugin/svg-support.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/svg-support.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/svg-support.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/svg-support.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/svg-support.2.2.5.zip", "2.3.1": "https://downloads.wordpress.org/plugin/svg-support.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/svg-support.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/svg-support.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/svg-support.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/svg-support.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/svg-support.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/svg-support.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/svg-support.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/svg-support.2.3.9.zip", "2.4.1": "https://downloads.wordpress.org/plugin/svg-support.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/svg-support.2.4.2.zip", "2.5.1": "https://downloads.wordpress.org/plugin/svg-support.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/svg-support.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/svg-support.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/svg-support.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/svg-support.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/svg-support.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/svg-support.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/svg-support.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/plugin/svg-support.2.5.9.zip", "trunk": "https://downloads.wordpress.org/plugin/svg-support.zip", "2.3.10": "https://downloads.wordpress.org/plugin/svg-support.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/plugin/svg-support.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/plugin/svg-support.2.3.12.zip", "2.3.13": "https://downloads.wordpress.org/plugin/svg-support.2.3.13.zip", "2.3.14": "https://downloads.wordpress.org/plugin/svg-support.2.3.14.zip", "2.3.15": "https://downloads.wordpress.org/plugin/svg-support.2.3.15.zip", "2.3.16": "https://downloads.wordpress.org/plugin/svg-support.2.3.16.zip", "2.3.17": "https://downloads.wordpress.org/plugin/svg-support.2.3.17.zip", "2.3.18": "https://downloads.wordpress.org/plugin/svg-support.2.3.18.zip", "2.3.19": "https://downloads.wordpress.org/plugin/svg-support.2.3.19.zip", "2.3.20": "https://downloads.wordpress.org/plugin/svg-support.2.3.20.zip", "2.3.21": "https://downloads.wordpress.org/plugin/svg-support.2.3.21.zip", "2.5.10": "https://downloads.wordpress.org/plugin/svg-support.2.5.10.zip", "2.5.11": "https://downloads.wordpress.org/plugin/svg-support.2.5.11.zip", "2.5.12": "https://downloads.wordpress.org/plugin/svg-support.2.5.12.zip", "2.5.13": "https://downloads.wordpress.org/plugin/svg-support.2.5.13.zip", "2.5.14": "https://downloads.wordpress.org/plugin/svg-support.2.5.14.zip", "2.2.3.1": "https://downloads.wordpress.org/plugin/svg-support.2.2.3.1.zip", "2.2.3.2": "https://downloads.wordpress.org/plugin/svg-support.2.2.3.2.zip"}, "downloaded": 12273337, "description": "

    The complete SVG solution for WordPress – secure, flexible, and easy to use.

    \n

    SVG Support enables secure SVG uploads with powerful features for both basic users and developers:

    \n

    Key Features:
    \n– Secure SVG uploads with automatic sanitization
    \n– Inline rendering for direct CSS/JS manipulation
    \n– File size optimization through minification
    \n– Role-based access control
    \n– Advanced developer options
    \n– Multisite compatible
    \n– Full Block Editor (Gutenberg) compatibility

    \n

    🔒 Security First:
    \n– Built-in sanitization removes potentially harmful code
    \n– Role-based upload restrictions
    \n– Comprehensive MIME type validation

    \n

    🎨 Designer Friendly:
    \n– Direct styling of SVG elements
    \n– Animation support
    \n– Custom class targeting
    \n– Automatic dimension handling

    \n

    💻 Developer Ready:
    \n– Advanced mode for additional features
    \n– REST API support
    \n– Gutenberg compatible
    \n– Extensive hooks and filters

    \n

    Usage

    \n

    Basic Usage:
    \n– First, install and activate SVG Support via your WordPress dashboard
    \n– Upload SVG files to your media library like any other image
    \n– Works seamlessly with Image blocks, Cover blocks and featured images

    \n

    Advanced Usage:
    \n– Enable “Advanced Mode” for minification and inline rendering
    \n– Customize with hooks and filters for tailored functionality

    \n

    Block Editor Usage:
    \n– Use Advanced Mode to enable inline rendering:
    \n – Add the \"style-svg\" class to Image blocks
    \n – Add the \"style-svg\" class to Cover blocks to render SVG backgrounds inline
    \n– Use “Skip Nested SVGs” setting to control inline rendering of SVGs within Cover blocks

    \n

    Classic Editor Usage:
    \n– Use Advanced Mode to add the \"style-svg\" class to <img> tags for inline rendering
    \n– Enable “Auto Insert Class” option for automatic class insertion in Classic Editor

    \n

    Common Issues & Solutions:
    \n– SVG not displaying? Ensure dimensions are set in CSS.
    \n– Need help? Use the support tab and I will do my best to assist you.

    \n

    Spin up a test site

    \n

    With a single click, you can spin up a completely free test site to test SVG Support using TasteWP! No sign up, no cards, nothing! How cool is that? Give it a go:
    \nClick Here to spin up a test site in seconds

    \n

    Security

    \n

    SVG Support prioritizes security with automatic sanitization and role-based restrictions. Only trusted users should have upload permissions. Configure settings to balance functionality and security.

    \n

    Feedback

    \n

    I’m open to your suggestions and feedback – Thanks for using SVG Support!

    \n

    Follow @SVGSupport on Twitter
    \nFollow @benbodhi on Twitter
    \nFollow @benbodhi on Warpcast

    \n

    Note: I hope you like this plugin! Please take a moment to rate it.

    \n

    Development & Contributing

    \n

    The development version of SVG Support is maintained on GitHub. Feel free to contribute:

    \n\n

    Translations

    \n

    Contribute translations here. New to translating? Check the Translator Handbook.

    \n", "donate_link": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Z9R7JERS82EQQ", "num_ratings": 351, "screenshots": {"1": {"src": "https://ps.w.org/svg-support/assets/screenshot-1.png?rev=1860006", "caption": "Basic Settings"}, "2": {"src": "https://ps.w.org/svg-support/assets/screenshot-2.png?rev=1860006", "caption": "Advanced Settings"}, "3": {"src": "https://ps.w.org/svg-support/assets/screenshot-3.png?rev=1575314", "caption": "Featured Image checkbox to render SVG inline"}, "4": {"src": "https://ps.w.org/svg-support/assets/screenshot-4.png?rev=1860006", "caption": "SVG used in WP native Image Widget"}, "5": {"src": "https://ps.w.org/svg-support/assets/screenshot-5.png?rev=1860006", "caption": "Inline SVG in the front end markup"}, "6": {"src": "https://ps.w.org/svg-support/assets/screenshot-6.png?rev=1860724", "caption": "Help tab - Overview"}, "7": {"src": "https://ps.w.org/svg-support/assets/screenshot-7.png?rev=1860724", "caption": "Help tab - The Settings"}, "8": {"src": "https://ps.w.org/svg-support/assets/screenshot-8.png?rev=1860724", "caption": "Help tab - Standard Usage"}, "9": {"src": "https://ps.w.org/svg-support/assets/screenshot-9.png?rev=1860724", "caption": "Help tab - Render SVG Inline (advanced usage)"}, "91": {"src": "https://ps.w.org/svg-support/assets/screenshot-91.png?rev=1860724", "caption": ""}, "92": {"src": "https://ps.w.org/svg-support/assets/screenshot-92.png?rev=1860724", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/svg-support/", "contributors": {"benbodhi": {"avatar": "https://secure.gravatar.com/avatar/ca9922fd505e5086500482a586fb5ddb2fb374293304d9240401eca15e1709a3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/benbodhi/", "display_name": "Benbodhi"}}, "last_updated": "2025-02-25 8:34am GMT", "preview_link": "https://wordpress.org/plugins/svg-support/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/svg-support.2.5.14.zip", "author_profile": "https://profiles.wordpress.org/benbodhi/", "business_model": false, "repository_url": "", "upgrade_notice": {"1.0": "
      \n
    • Initial Release.
    • \n
    ", "2.0": "
      \n
    • SVG Support has been completely re-written and re-structured. It now includes an admin settings page with instructions, plus options for restricting to admin use only and setting a custom CSS target class.
    • \n
    ", "2.1": "
      \n
    • Updated language files for localization that were missed in version 2.0.
    • \n
    ", "2.2": "
      \n
    • Significant changes, added functionality, please BACKUP BEFORE UPDATING just in case.
    • \n
    ", "2.3": "

    IMPORTANT, MAJOR CHANGES, BACKUP BEFORE UPDATING: Users that are inlining SVG will need to make sure "Advanced Mode" is active under "Settings > SVG Support". Your settings should all still be there. Make sure you run a backup before updating just in case!!!

    ", "2.4": "

    Now featuring optional SVG sanitization and ability to target nested SVGs! This update contains a lot, please BACKUP YOUR DATABASE AND FILES BEFORE UPDATING!

    ", "2.5": "

    Adds new features and addresses a number of recent issues raised. Please take a backup before updating!

    ", "2.1.1": "
      \n
    • Update to conditional in JS file.
    • \n
    ", "2.1.2": "
      \n
    • A little bit of house cleaning, updates to changelog and readme.txt for correct output with current version.
    • \n
    ", "2.1.3": "
      \n
    • Added a link on the plugins page to the plugin settings page for easy access after install.
    • \n
    ", "2.1.4": "
      \n
    • Some more re-arranging, added a few helpful links, updated language files, tended to my OCD a bit.
    • \n
    ", "2.1.5": "
      \n
    • Added Serbian translation, submitted by Ogi Djuraskovic.
    • \n
    ", "2.1.6": "
      \n
    • Important update! Added missing jQuery dependency in /functions/enqueue.php - was loading SVG Support JS before jQuery.
    • \n
    ", "2.1.7": "
      \n
    • Tested in WordPress 4.0 and added plugin icons for the new interface.
    • \n
    ", "2.2.1": "
      \n
    • Minor change to remove anonymous function that triggered a fatal error in older PHP versions.
    • \n
    ", "2.2.2": "
      \n
    • Fix - Another change from anonymous function that was triggering errors for some.
    • \n
    ", "2.2.3": "
      \n
    • Feature - Changed code to allow JS detection if SVG has loaded and ability to control SVG using JS.
    • \n
    • Fix - Thumbnail display in media library list view.
    • \n
    • Added Spanish translation and cleaned up code/comments a bit.
    • \n
    ", "2.2.4": "
      \n
    • IMPORTANT: Fixes upload ability in WP 4.7.1
    • \n
    ", "2.2.5": "
      \n
    • Fix to display SVG thumbnails in attachment modals. (NOTE: You can not edit SVG files like other images in WordPress)
    • \n
    ", "2.3.1": "
      \n
    • Fixes fatal error in some cases due to admin notice in V2.3.
    • \n
    ", "2.3.2": "
      \n
    • Changes to the way the auto class insert works.
    • \n
    ", "2.3.3": "
      \n
    • This update fixes some PHP warnings introduced in 2.3.2 and also has updated settings page text.
    • \n
    ", "2.3.4": "
      \n
    • Fixes fatal error for some because a function wasn't prefixed.
    • \n
    ", "2.3.5": "
      \n
    • Modifications to thumbnail display code to prevent output buffer clash with another plugin.
    • \n
    ", "2.3.6": "
      \n
    • Adds support for older browsers, fixes a couple of seemingly isolated errors reported, removes some redundant code.
    • \n
    ", "2.3.7": "
      \n
    • Fixes issues with media library not loading for some, attachment-modal errors and adds some wider compatibility.
    • \n
    ", "2.3.8": "
      \n
    • Adds better support for WooCommerce and Sensei. Fixes issue with featured images not showing up when auto insert class setting is on.
    • \n
    ", "2.3.9": "
      \n
    • Cleaned up some code and language, now stores less meta when not needed and added a plugin recommendation for Image Optimization.
    • \n
    ", "2.4.1": "

    2.4.1 fixes broken WP-CLI. Now featuring optional SVG sanitization and ability to target nested SVGs! This update contains a lot, please BACKUP YOUR DATABASE AND FILES BEFORE UPDATING!

    ", "2.4.2": "

    2.4.2 fixes srcset issue firing PHP warnings for some themes and original image IDs missing on replacement to inline SVG.

    ", "2.5.1": "

    2.5 Adds new features and addresses a number of recent issues raised. Please take a backup before updating!\n2.5.1 fixes the uninstall file.

    ", "2.5.2": "

    Updating to 2.5+ Adds new features and addresses a number of earlier issues raised. Please take a backup before updating!\n2.5.2 introduces some defaults for better security.

    ", "2.5.3": "

    Updating to 2.5+ Adds new features and addresses a number of earlier issues raised. Please take a backup before updating!\n2.5.3 fixes fatal error in 2.5.2.

    ", "2.5.4": "

    Updating to 2.5+ Adds new features and addresses a number of earlier issues raised. Please take a backup before updating!\n2.5.4 fixes errors in the 2.5 series of updates.

    ", "2.5.5": "

    Updating to 2.5+ Adds new features and addresses a number of earlier issues raised. Please take a backup before updating!\n2.5.5 fixes more reported errors in the 2.5 series of updates.

    ", "2.5.6": "

    This update addresses some security concerns.

    ", "2.5.7": "

    This update addresses issues with newer PHP versions.

    ", "2.5.8": "

    Improved security, enhanced SVG processing, and updated admin interface. Includes better sanitization and escaping practices. Please take a backup before updating!

    ", "2.5.9": "

    Important security update that adds enhanced upload validation, MIME type checking, and CSRF protection. Please backup before updating. No configuration changes required - all security improvements work automatically.

    ", "2.2.31": "
      \n
    • This release attempts to fix translation issues.
    • \n
    ", "2.2.32": "
      \n
    • Changed text domain to match plugin slug for localization.
    • \n
    ", "2.3.10": "
      \n
    • Fixed missing links in settings page.
    • \n
    ", "2.3.11": "
      \n
    • New Features and Fixes: Added "Force Inline SVG" to render all SVG files inline with one click. Option to use an expanded JS version for separate minification with a caching plugin.
    • \n
    ", "2.3.12": "
      \n
    • Inline JS can now be called using bodhisvgsInlineSupport();. Added a native help tab and removed the admin update notice. General cleanup of code and settings page. Remember to back up your site before updating.
    • \n
    ", "2.3.13": "

    Update to address PHP warnings and notices on the image widget when wp_debug is enabled.

    ", "2.3.14": "

    Fixes fatal error in some cases when removing old option from the database.

    ", "2.3.15": "

    Had to roll back a recent PHP warnings fix due to it breaking some theme compatibility.

    ", "2.3.16": "

    This update addresses upload issues, PHP warnings and some frontend CSS changes with attachment display.

    ", "2.3.17": "

    Added a setting to choose whether to load the frontend CSS file or not. It was previously enabled by default, so you may want to flick that on after the update. This allows you to leave it out so your site has one less file to load :)

    ", "2.3.18": "

    General clean up of plugin, testing on latest nightly build plus fixed issue with metadata being removed from non SVG attachments.

    ", "2.3.19": "

    Quick update to address PHP warnings from localize_script and to add a SRC check.

    ", "2.3.20": "

    Added more security.

    ", "2.3.21": "

    Fixes featured image display on edit post screen.

    ", "2.5.10": "

    Fixed issue with upload checks preventing plugin uploads

    ", "2.5.11": "

    Security update: added more effective handling of sanitization for REST API uploads

    ", "2.5.12": "

    Fixes mime type check that was restricting SVG uploads without the XML tag in PHP 7.4

    ", "2.5.13": "

    Better PHP 8.3 compatibility (added null checks to prevent deprecated warnings in PHP 8.3)

    ", "2.5.14": "

    Better DB handling, better upload checks

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fb31-7212-8f63-9c0150083526", "name": "SVG Support", "slug": "svg-support", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1740472440, "version": "2.5.14"}, "support_threads": 3, "requires_plugins": [], "short_description": "Securely upload SVG files to your media library, with built-in sanitization and advanced features for styling and animation.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1dff-7347-8f15-815f9d473f1d', 'did:web:api.aspiredev.org:packages:wp-plugin:tablepress', 'tablepress', 'TablePress – Tables in WordPress made easy', '

    Boost your website with feature-rich tables that your visitors will love!

    -

    TablePress is the most popular and highest-rated WordPress table plugin.

    -
      -
    • Easily create, edit, and manage beautiful and modern data tables, no matter if small or large!
    • -
    • Add live sorting, pagination, searching, and more interactivity for your site’s visitors!
    • -
    • Use any type of data, insert images, links, and even math formulas!
    • -
    • Import and export tables from/to Excel, CSV, HTML, and JSON files or URLs.
    • -
    • Embed tables into posts, pages, or other site areas using the block editor, an Elementor widget, or Shortcodes.
    • -
    • All with no coding knowledge needed!
    • -
    -

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    -

    More information

    -

    Visit tablepress.org for more information, take a look at example tables, or try TablePress on a free test site. For latest news, follow @TablePress on Twitter/X or subscribe to the TablePress Newsletter.

    -

    How to use TablePress

    -

    After installing the plugin, you can create and manage tables on the “TablePress” screen in the WordPress Dashboard.

    -

    To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.

    -

    Beginner-friendly step-by-step tutorials, guides, and how-tos show how to achieve common and popular tasks with TablePress.
    -Examples for common styling changes via “Custom CSS” code can be found on the TablePress FAQ page.
    -You may also add certain features (like sorting, pagination, filtering, alternating row colors, row highlighting, print name and/or description, …) by enabling the corresponding checkboxes on a table’s “Edit” screen.

    -

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "TablePress – Tables in WordPress made easy", "slug": "tablepress", "tags": {"csv": "csv", "excel": "excel", "table": "table", "tables": "tables", "spreadsheet": "spreadsheet"}, "added": "2012-06-14", "icons": {"1x": "https://ps.w.org/tablepress/assets/icon.svg?rev=3192944", "svg": "https://ps.w.org/tablepress/assets/icon.svg?rev=3192944"}, "author": "Tobias Bäthge", "rating": 100, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/tablepress/assets/banner-772x250.png?rev=3192944", "high": "https://ps.w.org/tablepress/assets/banner-1544x500.png?rev=3192944"}, "ratings": {"1": 27, "2": 8, "3": 9, "4": 39, "5": 4531}, "version": "3.2.5", "homepage": "https://tablepress.org/", "requires": "6.2", "sections": {"faq": "\n
    \nWhere can I find answers to Frequently Asked Questions?\n\n

    \n

    Many questions, regarding different features or styling, have been answered on the FAQ page and in the extensive TablePress plugin documentation on the TablePress website.

    \n

    \n
    \nSupport?\n\n

    \n

    Premium Support

    \n

    Users with an active TablePress Premium license plan are eligible for Priority Email Support, directly from the plugin developer! Find out more!

    \n

    Community Support for users of the Free version

    \n

    For support questions, bug reports, or feature requests, please use the WordPress Support Forums. Please search through the forums first, and only create a new topic if you don’t find an existing answer. Thank you!

    \n

    \n
    \nRequirements?\n\n

    \n

    In short: WordPress 6.2 or higher, while the latest version of WordPress is always recommended. In addition, the server must be running PHP 7.4 or newer.

    \n

    \n
    \nLanguages and Localization?\n\n

    \n

    TablePress uses the “Translate WordPress” platform. Please see the sidebar on the TablePress page in the WordPress Plugin Directory for available translations.

    \n

    To make TablePress available in your language, go to the TablePress translations page, log in with a free wordpress.org account and start translating.

    \n

    \n
    \nDevelopment\n\n

    \n

    You can follow the development of TablePress more closely in its official GitHub repository.

    \n

    \n
    \nWhere do I report security issues?\n\n

    \n

    Please report security issues and bugs found in the source code of TablePress through the Patchstack Vulnerability Disclosure Program.
    \nThe Patchstack team will assist you with verification, CVE assignment, and notify the TablePress developer.

    \n

    \n
    \nWhere can I get more information?\n\n

    \n

    Visit the plugin website at tablepress.org for the latest news on TablePress, follow @TablePress on Twitter/X, or subscribe to the TablePress Newsletter.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent!!! | Excelente!!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ivison Ramos (ivisonramos) on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Muito bom, fácil de trabalhar, simples e eficiente.
    O melhor!

    \n\n\n\n

    Very good, easy to work with, simple and efficient.
    The best!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A top level support !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sturmy31 on August 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Not only does Tobias provide a powerful plugin, but he also provides highly responsive and efficient support, including for installations under free licenses!
    Thank you very much, Tobias, for my Volunteer Association.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very easy to use and style

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy creativeone on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    TablePress is a wonderful plugin that is exactly what we needed. My client is not tech-savvy, and he was able to create tables easily. Also, customer service is amazing.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brilliant plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Steve Davison on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very easy to use and extremely flexible. The Author is very responsive on the support forum.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent and well-supported product

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tobnddl on July 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin does exactly what it says it does - provides interactive, clear, and usable tables in wordpress sites. This is a great product but what makes it even better is the excellent support from the developer. This team is fast and helpful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Features Hands Down!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jdevon80 on July 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    As a “max” plan user, I use at least 80% of all the features offered. Pretty much everything one could ask for in a table plugin is available with TablePress. If tables are indispensable for your web site then you cannot go wrong in taking the TablePress plugin out for a test drive. With a free version also available, there is absolutely no risk involved. Hands down a no-brainer to at least consider this plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tablepress is great, but the support is amazing

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy studioblank on June 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have never encountered such a willingness to help and create solutions.
    Tobias spent so much time and patience helping me. I don''t think I''ve ever encountered such a good customer service in any field.
    If everyone was a little more Tobias, the world would be a better place. no doubt.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Handles tables like magic

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mikkolahi on May 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin (paid version) handles Excel imports like a charm. Support works excellent. Many features are already built-in. This is starting to sound like a paid add but it is not.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect for Styling and Sharing Apparel Size Charts

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Vivek Revi (vivekrevi) on May 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I use it to create size charts for different apparel and share them easily anywhere on my site using shortcodes. Let''s me style the tables with custom CSS so they match my website''s look perfectly. The user-friendly interface makes creating and managing tables hassle-free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Renato Allodi (accr2024) on May 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin with most of the features needed for real use.
    Sure, some improvements are possible, but for the free use necessary for a non-profit organization like ours, what is there is more than enough.
    For professional use, which requires advanced features, it is right to pay a reasonable fee, after all the developer must be remunerated in some way.
    Tobias helped me promptly to solve an interface problem with another plugin, even without the plus support of the paid version; it is commendable.

    \n
    \n
    \n", "changelog": "

    Changes in recent versions are shown below. For earlier changes, please see the changelog history.

    \n

    Version 3.2.5 (October 28, 2025)

    \n
      \n
    • Security fix: Authenticated Stored XSS (CVE-2025-12324). Thanks to Rafshanzani Suhada and the Wordfence team for following responsible disclosure policies when reporting this issue!
    • \n
    • Cleaned up and simplified code, for easier future maintenance, to follow WordPress Coding Standards, and to offer helpful inline documentation.
    • \n
    • Updated external libraries to benefit from enhancements and bug fixes.
    • \n
    • Improved support for PHP 8.5.
    • \n
    \n

    Version 3.2.4 (October 21, 2025)

    \n
      \n
    • Improvement: Improve table import when importing URLs from external services like Google Sheets, Microsoft OneDrive, and Dropbox.
    • \n
    • Bugfix: Elementor integration: Prevent an error with the “Element Cache”.
    • \n
    • Cleaned up and simplified code, for easier future maintenance, to follow WordPress Coding Standards, and to offer helpful inline documentation.
    • \n
    • Updated external libraries to benefit from enhancements and bug fixes.
    • \n
    \n

    Version 3.2.3 (September 23, 2025)

    \n
      \n
    • Elementor integration: Support for clearing the “Element Cache” was added.
    • \n
    • Elementor widget: The “Configuration Parameters” field is now shown properly again.
    • \n
    • Elementor widget: “Dynamic Tags” are now supported for the “Configuration Parameters” field.
    • \n
    • New feature: The “Advanced Pagination Settings” feature module now offers pagination with a select dropdown field. (TablePress Pro and Max only.)
    • \n
    • Improvement: The “Individual Column Filtering” search fields now support the native Clear button. (TablePress Pro and Max only.)
    • \n
    • Bug fix: Ensure that available premium translation files are loaded correctly. (TablePress Pro and Max only.)
    • \n
    • Cleaned up and simplified code, for easier future maintenance, to follow WordPress Coding Standards, and to offer helpful inline documentation.
    • \n
    • Updated external libraries to benefit from enhancements and bug fixes.
    • \n
    • Improved support for PHP 8.5.
    • \n
    \n

    Version 3.2.2 (September 23, 2025)

    \n

    This version was not released, due to issues in the release process.

    \n

    Version 3.2.1 (August 28, 2025)

    \n
      \n
    • Security fix: Authenticated Stored XSS (CVE-2025-9500). Thanks to Muhammad Yudha and the Wordfence team for following responsible disclosure policies when reporting this issue!
    • \n
    • Cleaned up and simplified code, for easier future maintenance, to follow WordPress Coding Standards, and to offer helpful inline documentation.
    • \n
    • Updated external libraries to benefit from enhancements and bug fixes.
    • \n
    • Improved support for PHP 8.5.
    • \n
    \n

    Version 3.2 (August 26, 2025)

    \n

    TablePress 3.2 is a feature, stability, maintenance, and compatibility update. Here are the highlights:

    \n

    Improved Frontend Table Performance

    \n
      \n
    • Tables and their interactivity features are more accessible for visitors with disabilities and users of assistive technologies, with improved labelling and easier-to-use keyboard navigation!
    • \n
    \n

    Many New Features and Enhancements for Existing Premium Features

    \n
      \n
    • Fixed Header\n
        \n
      • When combining the Fixed Header Row with Horizontal Scrolling, the header will scroll properly as well.
      • \n
      \n
    • \n
    • Server-side Processing\n
        \n
      • It is now possible to use the “Column Filter Dropdowns”, “Individual Column Filtering”, and “Inverted Filtering” feature modules while benefitting from the fast loading of large tables from the server!
      • \n
      \n
    • \n
    • Advanced Access Rights\n
        \n
      • The user interface now allows filtering for users and tables, to quickly find the right combination!
      • \n
      • Only user roles that are allowed to edit tables will be shown, making the overview much more lightweight!
      • \n
      \n
    • \n
    • Index or Counter Column\n
        \n
      • The rendering performance has been improved for large tables.
      • \n
      \n
    • \n
    • Row Order and Column Order\n
        \n
      • The “Random” option is now shown in the block’s feature section’s dropdown!
      • \n
      \n
    • \n
    • Advanced Pagination Settings\n
        \n
      • The “Show more” button shows better scrolling behavior when using it with long tables!
      • \n
      \n
    • \n
    • Column Filter Dropdowns\n
        \n
      • The filtering dropdowns can now be used with Server-side Processing, making it a great choice for large tables!
      • \n
      \n
    • \n
    • Individual Column Filtering\n
        \n
      • Besides text input fields, the dropdowns are now also supported when using Server-side Processing!
      • \n
      \n
    • \n
    • Inverted Filtering\n
        \n
      • Large tables now benefit from speed improvements, when using Server-side Processing and Inverted Filtering!
      • \n
      \n
    • \n
    \n

    Behind the scenes

    \n
      \n
    • Several minor bugs and inconsistencies have been fixed and improved!
    • \n
    • Cleaned up and simplified code, for easier future maintenance, to follow WordPress Coding Standards, and to offer helpful inline documentation.
    • \n
    • Updated external libraries to benefit from enhancements and bug fixes.
    • \n
    • Automated code compatibility checks and build tools simplify chores for easier development.
    • \n
    • Improved support for PHP 8.4.
    • \n
    \n

    Premium versions

    \n
      \n
    • Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!
    • \n
    \n", "description": "

    Boost your website with feature-rich tables that your visitors will love!

    \n

    TablePress is the most popular and highest-rated WordPress table plugin.

    \n
      \n
    • Easily create, edit, and manage beautiful and modern data tables, no matter if small or large!
    • \n
    • Add live sorting, pagination, searching, and more interactivity for your site’s visitors!
    • \n
    • Use any type of data, insert images, links, and even math formulas!
    • \n
    • Import and export tables from/to Excel, CSV, HTML, and JSON files or URLs.
    • \n
    • Embed tables into posts, pages, or other site areas using the block editor, an Elementor widget, or Shortcodes.
    • \n
    • All with no coding knowledge needed!
    • \n
    \n

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    \n

    More information

    \n

    Visit tablepress.org for more information, take a look at example tables, or try TablePress on a free test site. For latest news, follow @TablePress on Twitter/X or subscribe to the TablePress Newsletter.

    \n

    How to use TablePress

    \n

    After installing the plugin, you can create and manage tables on the “TablePress” screen in the WordPress Dashboard.

    \n

    To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.

    \n

    Beginner-friendly step-by-step tutorials, guides, and how-tos show how to achieve common and popular tasks with TablePress.
    \nExamples for common styling changes via “Custom CSS” code can be found on the TablePress FAQ page.
    \nYou may also add certain features (like sorting, pagination, filtering, alternating row colors, row highlighting, print name and/or description, …) by enabling the corresponding checkboxes on a table’s “Edit” screen.

    \n

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    \n", "screenshots": "
    1. \""All

      \"All Tables\" screen

    2. \""Edit"

      \"Edit\" screen

    3. \""Add

      \"Add new Table\" screen

    4. \""Import"

      \"Import\" screen

    5. \""Export"

      \"Export\" screen

    6. \""Plugin

      \"Plugin Options\" screen

    7. \""About"

      \"About\" screen

    8. \"The

      The “TablePress table” block in the block editor

    9. \"An

      An example table (as it can be seen on the TablePress website)

    ", "installation": "

    The easiest way to install TablePress is via your WordPress Dashboard:

    \n
      \n
    1. Go to the “Plugins” screen, click “Add Plugin”, and search for “TablePress” in the WordPress Plugin Directory.
    2. \n
    3. Click “Install Now” and after that’s complete, click “Activate”.
    4. \n
    5. Create and manage tables by going to the “TablePress” screen in the admin menu.
    6. \n
    7. To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.
    8. \n
    \n

    Manual installation works just as for other WordPress plugins:

    \n
      \n
    1. Download the TablePress ZIP file.
    2. \n
    3. Go to the “Plugins” screen on your site and upload it by clicking “Add Plugin” “Upload Plugin”.
    4. \n
    5. Or, extract the ZIP file and move the folder “tablepress” to the “wp-content/plugins/” directory of your WordPress installation, e.g. via FTP.
    6. \n
    7. Activate “TablePress” on the “Plugins” screen of your WordPress Dashboard.
    8. \n
    9. Create and manage tables by going to the “TablePress” screen in the admin menu.
    10. \n
    11. To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.
    12. \n
    \n"}, "versions": {"2.2": "https://downloads.wordpress.org/plugin/tablepress.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/tablepress.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/tablepress.2.4.zip", "3.0": "https://downloads.wordpress.org/plugin/tablepress.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/tablepress.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/tablepress.3.2.zip", "1.12": "https://downloads.wordpress.org/plugin/tablepress.1.12.zip", "1.14": "https://downloads.wordpress.org/plugin/tablepress.1.14.zip", "1.9.2": "https://downloads.wordpress.org/plugin/tablepress.1.9.2.zip", "2.0.4": "https://downloads.wordpress.org/plugin/tablepress.2.0.4.zip", "2.1.7": "https://downloads.wordpress.org/plugin/tablepress.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/tablepress.2.1.8.zip", "2.2.1": "https://downloads.wordpress.org/plugin/tablepress.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/tablepress.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/tablepress.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/tablepress.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/tablepress.2.2.5.zip", "2.3.1": "https://downloads.wordpress.org/plugin/tablepress.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/tablepress.2.3.2.zip", "2.4.1": "https://downloads.wordpress.org/plugin/tablepress.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/tablepress.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/tablepress.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/tablepress.2.4.4.zip", "3.0.1": "https://downloads.wordpress.org/plugin/tablepress.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/tablepress.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/tablepress.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/tablepress.3.0.4.zip", "3.1.1": "https://downloads.wordpress.org/plugin/tablepress.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/tablepress.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/tablepress.3.1.3.zip", "3.2.1": "https://downloads.wordpress.org/plugin/tablepress.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/tablepress.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/tablepress.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/tablepress.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/tablepress.3.2.5.zip", "trunk": "https://downloads.wordpress.org/plugin/tablepress.zip"}, "downloaded": 21686612, "description": "

    Boost your website with feature-rich tables that your visitors will love!

    \n

    TablePress is the most popular and highest-rated WordPress table plugin.

    \n
      \n
    • Easily create, edit, and manage beautiful and modern data tables, no matter if small or large!
    • \n
    • Add live sorting, pagination, searching, and more interactivity for your site’s visitors!
    • \n
    • Use any type of data, insert images, links, and even math formulas!
    • \n
    • Import and export tables from/to Excel, CSV, HTML, and JSON files or URLs.
    • \n
    • Embed tables into posts, pages, or other site areas using the block editor, an Elementor widget, or Shortcodes.
    • \n
    • All with no coding knowledge needed!
    • \n
    \n

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    \n

    More information

    \n

    Visit tablepress.org for more information, take a look at example tables, or try TablePress on a free test site. For latest news, follow @TablePress on Twitter/X or subscribe to the TablePress Newsletter.

    \n

    How to use TablePress

    \n

    After installing the plugin, you can create and manage tables on the “TablePress” screen in the WordPress Dashboard.

    \n

    To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.

    \n

    Beginner-friendly step-by-step tutorials, guides, and how-tos show how to achieve common and popular tasks with TablePress.
    \nExamples for common styling changes via “Custom CSS” code can be found on the TablePress FAQ page.
    \nYou may also add certain features (like sorting, pagination, filtering, alternating row colors, row highlighting, print name and/or description, …) by enabling the corresponding checkboxes on a table’s “Edit” screen.

    \n

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    \n", "donate_link": "https://tablepress.org/premium/?utm_source=wordpress.org&utm_medium=textlink&utm_content=donate-link", "num_ratings": 4614, "screenshots": {"1": {"src": "https://ps.w.org/tablepress/assets/screenshot-1.png?rev=3192944", "caption": "\"All Tables\" screen"}, "2": {"src": "https://ps.w.org/tablepress/assets/screenshot-2.png?rev=3192944", "caption": "\"Edit\" screen"}, "3": {"src": "https://ps.w.org/tablepress/assets/screenshot-3.png?rev=3192944", "caption": "\"Add new Table\" screen"}, "4": {"src": "https://ps.w.org/tablepress/assets/screenshot-4.png?rev=3192944", "caption": "\"Import\" screen"}, "5": {"src": "https://ps.w.org/tablepress/assets/screenshot-5.png?rev=3192944", "caption": "\"Export\" screen"}, "6": {"src": "https://ps.w.org/tablepress/assets/screenshot-6.png?rev=3192944", "caption": "\"Plugin Options\" screen"}, "7": {"src": "https://ps.w.org/tablepress/assets/screenshot-7.png?rev=3192944", "caption": "\"About\" screen"}, "8": {"src": "https://ps.w.org/tablepress/assets/screenshot-8.png?rev=3192944", "caption": "The “TablePress table” block in the block editor"}, "9": {"src": "https://ps.w.org/tablepress/assets/screenshot-9.png?rev=3192944", "caption": "An example table (as it can be seen on the TablePress website)"}}, "support_url": "https://wordpress.org/support/plugin/tablepress/", "contributors": {"tobiasbg": {"avatar": "https://secure.gravatar.com/avatar/510d10a58d13cb587658fbae740f95bc94958e902ebb488c33796ea4fbf1c0b9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tobiasbg/", "display_name": "Tobias Bäthge"}}, "last_updated": "2025-10-28 4:41am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/tablepress.3.2.5.zip", "author_profile": "https://profiles.wordpress.org/tobiasbg/", "business_model": "commercial", "repository_url": "", "upgrade_notice": {"3.2": "

    This update is a feature, stability, maintenance, and compatibility release. Updating is highly recommended!

    ", "3.2.5": "

    This update is a security, maintenance, and compatibility release. Updating is highly recommended!

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fb2a-73cd-98d2-c026d98402ce", "name": "TablePress – Tables in WordPress made easy", "slug": "tablepress", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761626460, "version": "3.2.5"}, "support_threads": 22, "requires_plugins": [], "short_description": "Embed beautiful, accessible, and interactive tables into your WordPress website’s posts and pages, without having to write code!", "author_block_count": 1, "author_block_rating": 100, "commercial_support_url": "https://tablepress.org/support/", "support_threads_resolved": 20}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1e0f-70d9-8c0a-f13661ea0e2d', 'did:web:api.aspiredev.org:packages:wp-plugin:the-events-calendar', 'the-events-calendar', 'The Events Calendar', '

    Easily create and manage an events calendar on your WordPress site with The Events Calendar free plugin. Whether your events are in-person or virtual events, this WordPress calendar plugin boasts professional features backed by our world-class team of developers and designers.

    -

    -

    See more videos on our YouTube channel

    -

    Packed with loads of features, The Events Calendar is ready to go out of the box. It’s also extensible, easy to use, and completely customizable.

    -

    📅 The #1 Calendar for WordPress

    -

    See the calendar in action on our demo experience. Just getting started? Read through the New User Primer to get set up.

    -

    Looking for additional features like recurring events, ticket sales, user-submitted events, automatic imports, and more?

    -

    Check out Events Calendar Pro, Event Aggregator, and more add-ons.

    -

    🔌🎨 Plug and Play or Customize

    -

    The Events Calendar is built to work out of the box. Simply install the plugin, configure your settings, and start creating events in minutes.

    -

    Want to add your personal touch? Use The Events Calendar as the foundation for customization. Personalize to your heart’s content with the help of a skeleton stylesheet, partial template overrides, template tags, hooks and filters, careful documentation, and a library of free extensions.

    -

    Whether your vision is big or small, you’re in good company. Hundreds of thousands of small businesses, musicians, venues, restaurants, and non-profits are publishing and promoting their in-person and virtual events with The Events Calendar. Our plugins have also been scaled to work on large networks for Fortune 100 companies, universities, and government institutions.

    -

    ✨ Features

    -

    Our feature-rich plugin comes with everything you need to create and manage your calendar.

    -

    ✔️ Rapidly create events
    -✔️ Saved venues & organizers
    -✔️ Calendar month view with tooltips
    -✔️ Event List view
    -✔️ Day view
    -✔️ Block Editor support
    -✔️ Event search
    -✔️ Google maps
    -✔️ Widget: Upcoming events list
    -✔️ Events Taxonomies (Categories & Tags)
    -✔️ Google Calendar and iCal exporting
    -✔️ WP REST API endpoints
    -✔️ Completely ajaxified for super smooth browsing
    -✔️ Completely responsive from mobile to tablet to desktop
    -✔️ Tested on the major theme frameworks such as Avada, Divi, Enfold, Genesis, and many more.
    -✔️ Increase your SEO with JSON-LD Structured Data
    -✔️ Internationalized & translated
    -✔️ Multiple stylesheets to improve integration
    -✔️ Extensive template tags for customization
    -✔️ Hooks & filters galore
    -✔️ Caching support
    -✔️ Debug mode for developers
    -✔️ Library of extensions

    -

    📃 Documentation

    -

    All of our documentation can be found in our Knowledgebase.

    -

    Additional helpful links:

    - -

    If you have any questions about this plugin, you can post a thread in the WordPress.org forum. Please search existing threads before starting a new one.

    -

    Add-Ons

    -

    Take your calendar to the next level by pairing it with our plugins for ticketing, crowdsourcing, email marketing, and more. Learn more about all our products on our website.

    -

    Our Free Plugins:

    -

    🎟️ Event Tickets
    -📐 Advanced Post Manager

    -

    Our Premium Plugins and Services:

    -

    Events Calendar PRO
    -↪️ Event Aggregator (service)
    -🎟️ Event Tickets Plus
    -✉️ Promoter
    -👥 Community Events
    -✏️ Filter Bar
    -🗓️ Eventbrite Tickets

    -

    Help

    -

    If you aren’t familiar with The Events Calendar, check out our New User Primer. It will have you creating events in no time.

    -

    Ready to dig deeper? Check out these resources:

    - -

    We check in on the The Events Calendar forum here on WordPress.org about once a week to help users with basic troubleshooting and identifying bugs. If you’re looking for premium, personalized support, consider upgrading to Events Calendar Pro.

    -

    Still have a question? Shoot us an email at support@theeventscalendar.com.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "The Events Calendar", "slug": "the-events-calendar", "tags": {"event": "Event", "events": "events", "calendar": "calendar", "schedule": "schedule", "organizer": "organizer"}, "added": "2010-01-19", "icons": {"1x": "https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440", "2x": "https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440"}, "author": "StellarWP", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622", "high": "https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622"}, "ratings": {"1": 311, "2": 71, "3": 89, "4": 137, "5": 1782}, "version": "6.15.10", "homepage": "", "requires": "6.6", "sections": {"faq": "\n
    \nAre there any troubleshooting steps you’d suggest I try that might resolve my issue before I post a new thread?\n\n

    \n

    First, make sure that you’re running the latest version of The Events Calendar. If you’re running Events Calendar PRO or any other add-ons, make sure those are current / running the latest code as well.

    \n

    The most common issues we see are either plugin or theme conflicts. You can test if a plugin or theme is conflicting by manually deactivating other plugins until just The Events Calendar is running on your site. If the issue persists from there, revert to the default Twenty Twenty theme. If the issue is resolved after deactivating a specific plugin or your theme, you’ll know that is the source of the conflict.

    \n

    Note that we aren’t going to say “tough luck” if you identify a plugin/theme conflict. While we can’t guarantee 100% integration with any plugin or theme out there, we will do our best (and reach out the plugin/theme author as needed) to figure out a solution that benefits everyone.

    \n

    \n
    \nI’m still stuck. Where do I go to file a bug or ask a question?\n\n

    \n

    Users of the free The Events Calendar should post their questions in the plugin’s WordPress.org forum, which we visit about once a week. Please make sure to read our sticky post providing an overview of the support we provide free users BEFORE posting. If you find you’re not getting support in as timely a fashion as you wish, you might want to consider purchasing a license for Events Calendar Pro.

    \n

    If you’re already an Events Calendar Pro user, you’re entitled access to our actively-monitored Premium Support on our website. We can provide a deeper level of support here and hit these forums on a daily basis during the work week. Generally, except in times of increased support loads, we reply to all tickets within 24-48 hours during the business week.

    \n

    \n
    \nWhat’s the difference between The Events Calendar and Events Calendar Pro?\n\n

    \n

    The Events Calendar is our cornerstone plugin, and it’s required in order to run any of our premium calendar add-ons, including Events Calendar Pro, Community Events, Filter Bar, and others.

    \n

    In other words, Events Calendar Pro runs alongside The Events Calendar and enhances it with extra features, including recurring events, additional calendar views, calendar shortcodes, advanced widgets, custom event fields and more.

    \n

    \n
    \nWhat add-ons are available for The Events Calendar, and where can I read more about them?\n\n

    \n

    The following add-ons are available for The Events Calendar:

    \n
      \n
    • Events Calendar Pro, for adding premium calendar features like recurring events, advanced views, cool widgets, shortcodes, additional fields, and more!
    • \n
    • Event Aggregator, a service that effortlessly fills your calendar with events from Meetup, Google Calendar, iCalendar, Eventbrite, CSV, and ICS.
    • \n
    • Event Tickets (free), which allows you to sell tickets and collect RSVPs to events. It can run alongside The Events Calendar or as a standalone plugin that adds ticket and RSVP functionality to WordPress posts and pages.
    • \n
    • Event Tickets Plus, which allows you to sell tickets for your events using your favorite e-commerce platform.
    • \n
    • Promoter, automated email communication made just for The Events Calendar and Event Tickets. Stay in touch with your attendees every step of the way.
    • \n
    • Community Events, for allowing frontend event submission from your readers.
    • \n
    • Filter Bar, for adding advanced frontend filtering capabilities to your events calendar.
    • \n
    • Eventbrite Tickets, for selling tickets to your event directly through Eventbrite.
    • \n
    \n

    \n
    \nCan I import events to my calendar?\n\n

    \n

    Yes! The Events Calendar has a built-in CSV import tool. If you want to step it up and automatically import events from Google Calendar, Meetup, Eventbrite and more, check out Event Aggregator.

    \n

    \n
    \nHow do I sell tickets to events on my calendar?\n\n

    \n

    You’ll want to use our Event Tickets plugin for that. This free plugin works alongside The Events Calendar and lets you create RSVPs and tickets for events. Event Tickets integrates with PayPal so you can collect payments for tickets, while our premium solution, Event Tickets Plus fully integrates with WooCommerce or Easy Digital Downloads. If you want to include digital tickets like Apple Wallet passes and PDF tickets check out Event Tickets Wallet Plus.

    \n

    \n
    \nCan I have more than one calendar on my site?\n\n

    \n

    Unfortunately, no. However, you can use event categories or tags to create calendar views that only display certain events. For example, you could create a direct link to a calendar view that only shows events categorized as “Fitness,” like this example from our demo site.

    \n

    With Events Calendar Pro, you can use shortcodes to embed your calendar on other WordPress pages and posts, then filter that calendar by category.

    \n

    \n
    \nCan I allow people to submit events to my calendar?\n\n

    \n

    This is available with the Community Events add-on to facilitate submissions. Install Community Events alongside The Events Calendar and a page will be added to your WordPress site with a form that visitors can use to submit events. As the calendar owner, you have full control over whether event submissions are published immediately or require moderation first.

    \n

    If you want to let users sell tickets for the events they submit, check out Community Tickets. It runs with The Events Calendar, Community Events, and Event Tickets and empowers visitors to create and sell tickets, splitting the profits with you.

    \n

    \n
    \nWhat’s the difference between The Events Calendar and Events Calendar Pro\n\n

    \n

    The Events Calendar is our cornerstone plugin, and it’s required in order to run any of our premium calendar add-ons, including Events Calendar Pro, Community Events, Filter Bar, and others.

    \n

    In other words, Events Calendar Pro runs alongside The Events Calendar and enhances it with extra features, including recurring events and event Series, additional calendar views, calendar shortcodes, advanced widgets, custom event fields, a duplicate event tool, and more.

    \n

    \n
    \nFound a security vulnerability?\n\n

    \n

    Make sure you are reporting in a safe and responsible way. We take security very seriously. If you discover a security issue, please bring it to our attention right away! Below you will find all the methods to report security vulnerabilities:

    \n\n

    \n
    \nI have a feature idea. What’s the best way to tell you about it?\n\n

    \n

    We’ve got an ideas page where we’re actively watching for feature ideas from the community. Vote up existing feature requests or add your own, and help us shape our roadmap.

    \n

    \n
    \nI’ve still got questions. Where can I find answers?\n\n

    \n

    Check out our extensive knowledgebase for articles on using, tweaking, and troubleshooting our plugins.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    best event calendar plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aryanrajseo on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple, easy and fast. Best plugin with infinite customization options. Currently i only want to support single event blocks on post type gp_elements.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Love Events Calendar

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy MaYoga on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using this for years on my website and had no problems. Recently I had an issue and the tech support was excellent. Highly recommend.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Klaas (klaaswporg) on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I received very quick and efficient assistance. I was given a wide range of options, which was very helpful!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tech support is great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tsteinh on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Problems arose with the category colors on a site whose main content revolves around events. The tech team used our staging site and helped address these issues in a way that pleased the client. We are so appreciative of the help!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Overdesigned and useless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alishaingram on September 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Even with all the paid add-ons, you''d still struggle to customise this plugin to suit your needs. So restrictive - it really sucks.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Customer Service Techs

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dougrooney on September 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    They''ve been very helpful in sorting out the CSS edits necessary for my particular application.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good one.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pat (patrickhaond) on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does the job.

    \n\n\n\n

    Sometimes a bit complex to configure and some small issues, but it is okay.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy codefisher on September 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Been using the free version for a long time. Just upgraded to pro. Support was very helpful with some of the issues I had getting it set up how I wanted.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Top Customer Suppport

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy itsyourbusinessatl on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Having support when setting up a new plugin on an old website is crucial. Thank you!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    the customer service is really good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy yvonnerethink on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    the customer service is really good!

    \n
    \n
    \n", "changelog": "

    [6.15.10] 2025-10-28

    \n
      \n
    • Security – Improve authorization checks in QR codes. [SVUL-28]
    • \n
    • Security – Improve ORDER BY clause validation. [SVUL-26]
    • \n
    \n

    [6.15.9] 2025-10-21

    \n
      \n
    • Fix – Alter logic so category colors CSS is ony enqueued on event archive pages. [TEC-5419]
    • \n
    • Tweak – Added actions: tec_conditional_content_assets
    • \n
    • Tweak – Add upsell banner for recurrence functionality in classic editor. [TEC-5589]
    • \n
    • Tweak – Add tec_is_valid_view() helper to check whether the current context represents a valid registered view. [TEC-5419]
    • \n
    • Tweak – Disable Yoast SEO pagination meta tags on Events Calendar views to prevent invalid rel=next/prev links. [TEC-5000]
    • \n
    • Tweak – Revert automatic CSS combination handling for Avada to restore default behavior. [TEC-5682]
    • \n
    • Language – 3 new strings added, 8 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.8] 2025-10-14

    \n
      \n
    • Fix – Tweak a few style rules to ensure Kadence overrides work. [TEC-5504]
    • \n
    • Tweak – Automatically disabled Avada’s “Combine Third Party CSS Files” option when The Events Calendar is active to prevent stylesheet conflicts. [TEC-5682]
    • \n
    • Tweak – Events list view structure updated to use proper list HTML. [TEC-5210]
    • \n
    • Tweak – Make Tooltips on calendar view dismissable with esc key. [TEC-5217]
    • \n
    • Language – 7 new strings added, 23 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    • Language – Fixed text domains and improved string translations across multiple components for better internationalization support.
    • \n
    • Language – Move ‘Free’ string to TEC text domain for improved i18n. [TEC-5603]
    • \n
    \n

    [6.15.7] 2025-10-07

    \n
      \n
    • Tweak – Added aria-label to nav tags to make page landmarks unique. [TEC-5208]
    • \n
    • Tweak – Event Date time block structure updated to improve accessibility. [TEC-5531]
    • \n
    • Tweak – Change default opt-in status to prevent false positives in checks when the value is not set. [TEC-5583]
    • \n
    • Tweak – Add ARIA landmark roles and aria-current attributes to breadcrumbs to improve screen reader support. [TEC-5205]
    • \n
    • Tweak – Replace breadcrumbs with a “Back to Events” link on Venue and Organizer single pages for clearer navigation and improved accessibility.[TEC-5207][TEC-5205]
    • \n
    • Tweak – Changed views: blocks/event-datetime, v2/components/backlink, v2/components/breadcrumbs, v2/components/breadcrumbs/breadcrumb, v2/components/breadcrumbs/linked-breadcrumb, v2/components/header, v2/list/nav, v2/list/top-bar/nav
    • \n
    • Language – 4 new strings added, 6 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.6] 2025-09-30

    \n
      \n
    • Version – The Events Calendar 6.15.6 is only compatible with Events Pro 7.7.6 and higher.
    • \n
    • Fix – Elementor Venue widget now shows the map show or hide option with proper styling options. [TEC-5092]
    • \n
    • Fix – Enhanced iCal feed timezone definitions to include extended DST transition data for better calendar compatibility. [TEC-5061]
    • \n
    • Fix – Onboarding wizard now shows loading spinner properly while waiting for Event Tickets installation. [TEC-5584]
    • \n
    • Fix – Prevent ICS download from redirecting when List view is disabled. [TEC-5609]
    • \n
    • Tweak – Added filters: tec_events_views_v2_should_redirect, tec_events_ical_timezone_extend_years
    • \n
    • Tweak – Changed views: v2/month/calendar-body/day/cell-title, v2/month/calendar-body/day/cell, v2/month/calendar-body/day/more-events, v2/month/mobile-events/mobile-day, v2/month/mobile-events/mobile-day/more-events
    • \n
    • Tweak – Hide the Event Tickets upsell on the currency page when Event Tickets is enabled. [TEC-5585]
    • \n
    • Tweak – Introduce subtabs for the Integration settings for better organization. [TEC-5681]
    • \n
    • Tweak – Updated Community Addon upsell link to go to the proper page. [TEC-5586]
    • \n
    • Accessibility – Add aria-label for the more events link in month view. [TEC-5216]
    • \n
    • Accessibility – Adjust aria-label for month view day link to use formatting from TEC settings. [TEC-5214]
    • \n
    • Compatibility – Conditionally remove template option if Elementor Pro is active to avoid conflicts. [TEC-5610]
    • \n
    • Language – 4 new strings added, 75 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.5] 2025-09-23

    \n
      \n
    • Tweak – Adds search capabilities to the countries dropdown in onboarding. [TEC-5581]
    • \n
    • Language – 0 new strings added, 0 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.4] 2025-09-16

    \n
      \n
    • Fix – Add more robust checking for dates to handle occurrences and similar non-post events. [TEC-1052]
    • \n
    • Fix – Fixed an issue where Venues and Organizers created via Community Events could have missing permalinks when events were published. [CE-330]
    • \n
    • Tweak – Changed views: blocks/event-venue, blocks/parts/map, blocks/parts/venue, modules/meta/map, modules/meta/organizer, modules/meta/venue, v2/components/header, v2/day/event/venue, v2/list, v2/list/event/venue
    • \n
    • Accessibility – Return keyboard focus to the triggering button after closing the datepicker for improved accessibility. [CE-278]
    • \n
    • Language – 0 new strings added, 13 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.3] 2025-09-10

    \n
      \n
    • Tweak – Changed views: blocks/event-venue, blocks/parts/map, blocks/parts/venue, modules/meta/map, modules/meta/organizer, modules/meta/venue, v2/components/header, v2/day, v2/day/event/venue, v2/list, v2/list/event/venue
    • \n
    • Security – Ensures password protected Venues and Organizers have their data protected. [SVUL-19]
    • \n
    • Language – 0 new strings added, 59 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.2] 2025-09-09

    \n
      \n
    • Fix – Corrected path for enqueuing ACF scripts to avoid 404 errors. [TEC-5604]
    • \n
    • Fix – Fix the process of updating event time zone data. [TEC-5423]
    • \n
    • Fix – Make sure the user is redirected to the correct settings page after clicking on the “Fix Time Zone Data” button. [TEC-5423]
    • \n
    • Tweak – Added search capabilities to the currency dropdown in onboarding. [TEC-5580]
    • \n
    • Tweak – Added search capabilities to the timezone dropdown in onboarding. [TEC-5579]
    • \n
    • Tweak – Changed views: blocks/parts/subscribe-list, v2/components/subscribe-links/item.
    • \n
    • Tweak – Hide unsupported items from the Subscribe to Calendar dropdown for archive pages. [TEC-4242]
    • \n
    • Tweak – Visual updates to the ECP teaser pill in TEC->Settings->Display.
    • \n
    • Language – 0 new strings added, 20 updated, 1 fuzzied, and 1 obsoleted.
    • \n
    \n

    [6.15.1.1] 2025-09-03

    \n
      \n
    • Security – Ensures only known values are accepted for the ORDER BY query clause. [SVUL-19]
    • \n
    \n

    [6.15.1] 2025-09-02

    \n
      \n
    • Fix – Figure out where assets are located in complex environments with a mix of symlinked or normally placed plugins. Resolving as a result issues with Recurring Events UI in WordPress.com. [ECP-1929]
    • \n
    • Tweak – Changed views: blocks/event-links, integrations/elementor/templates/starter, integrations/event-tickets/emails/template-parts/header/head/tec-styles
    • \n
    • Compatibility – PHP 8.3 compatibility improvements. [TEC-5571]
    • \n
    • Language – 0 new strings added, 2 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.0.1] 2025-08-20

    \n
      \n
    • Fix – Ensures the Actions Scheduler Logs table is present before attempting to use it. [TCMN-190]
    • \n
    • Fix – Resolves issues with Day breaking in multiple lines above the Calendar’s month view. [TEC-5590]
    • \n
    \n

    [6.15.0] 2025-08-19

    \n
      \n
    • Version – The Events Calendar 6.15.0 is only compatible with Event Tickets 5.26.0 and higher.
    • \n
    • [EXPERIMENTAL] Feature – Introduced new REST endpoints for managing your Events, Venues and Organizers. Note: This API is for experimental use only and requires the X-TEC-EEA header. It may be subject to breaking changes in upcoming releases.
    • \n
    • Language – 153 new strings added, 140 updated, 1 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.14.2] 2025-07-22

    \n
      \n
    • Tweak – Implemented an Enable setting for Category Colors. [TEC-5533]
    • \n
    • Tweak – Updated the Category Colors settings to add a tooltip to the Reset Button option that explains Superpowers must be enabled. [TEC-5534]
    • \n
    • Tweak – Changed views: v2/components/top-bar/category-color-picker, v2/day/event/featured-image, v2/list/event/featured-image, v2/month, v2/month/calendar-body/day, v2/month/calendar-body/day/calendar-events/calendar-event/featured-image, v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/featured-image, v2/month/calendar-body/day/cell-title, v2/month/calendar-header
    • \n
    • Performance – Avoid use of TIMESTAMPDIFF when fetching overlapping events. [TEC-5537]
    • \n
    • Accessibility – Updated day views with proper aria label and titles for event linked featured images. [TEC-5179]
    • \n
    • Language – 2 new strings added, 24 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.14.1] 2025-07-16

    \n
      \n
    • Fix – Ensure all featured images on calendar views have dimensions set to reduce layout shifts. [TEC-4715]
    • \n
    • Fix – Ensure views selector links have proper aria-current attributes.
      \nTweak – Changed views: v2/components/events-bar/views/list/item, v2/day/event/featured-image, v2/latest-past/event/featured-image, v2/list/event/featured-image, v2/month/calendar-body/day/calendar-events/calendar-event/featured-image, v2/month/mobile-events/mobile-day/mobile-event/featured-image
    • \n
    • Language – 0 new strings added, 1 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.14.0] 2025-07-03

    \n
      \n
    • Feature – Category Colors functionality has been merged into The Events Calendar. [TEC-5364]
    • \n
    • Feature – Events Variables for Yoast SEO [TEC-5437]
    • \n
    • Fix – Add width and height attributes on images displayed in our Events pages [TEC-4715]
    • \n
    • Fix – Disabled Event Views should redirect to default view [TEC-5427]
    • \n
    • Fix – Recognize when the theme is registering single or archive Event templates when using a Block theme, and avoid registering our own. [TEC-5525]
    • \n
    • Tweak – Added actions: tec_events_category_colors_saved, tec_events_category_colors_migration_status_updated, tec_events_category_colors_migration_reset, tribe_log, tec_events_category_colors_migration_preprocessor_start, tec_events_category_colors_migration_preprocessor_end, tec_events_category_colors_migration_validator_start, tec_events_category_colors_migration_validator_end, tec_events_category_colors_migration_runner_start, tec_events_category_colors_migration_runner_end, tec_events_category_colors_migration_post_schedule_action, tec_events_category_colors_migration_post_cancel_action, tec_events_settings_tab_display_category_colors, tec_conditional_content_header_notice
    • \n
    • Tweak – Added filters: tec_events_category_color_generator_batch_size, tec_events_category_colors_enabled, tec_events_category_colors_show_frontend_ui, tec_events_category_validate_meta_key, tec_events_category_validate_meta_value, tec_events_category_colors_force_migration_notice, tec_category_colors_is_tec_admin_page, tec_events_category_colors_migration_batch_size, tec_events_category_colors_migration_pre_schedule_action, tec_events_category_colors_migration_pre_execute_action, tec_events_category_colors_migration_, tec_events_category_colors_migration_pre_cancel_action, tec_events_category_color_enabled_views, tec_events_category_color_dropdown_categories, tec_events_category_color_raw_categories, tec_events_category_color_category_meta, tec_events_category_color_filtered_categories, tec_events_category_color_sorted_categories, tec_events_category_color_highest_priority_category, tec_events_category_color_event_categories, tec_events_category_color_category_priorities, tec_events_views_v2_view_template_vars
    • \n
    • Tweak – Add the conditional content notice to Event Aggregator pages [TEC-5530]
    • \n
    • Tweak – Changed views: blocks/classic-event-details, blocks/event-category, blocks/event-datetime, blocks/event-organizer, blocks/event-price, blocks/event-tags, blocks/event-venue, blocks/event-website, blocks/parts/subscribe-list, blocks/parts/subscribe-single, integrations/elementor/widgets/empty, integrations/elementor/widgets/event-calendar-link, integrations/elementor/widgets/event-categories, integrations/elementor/widgets/event-categories/header, integrations/elementor/widgets/event-cost, integrations/elementor/widgets/event-cost/header, integrations/elementor/widgets/event-datetime, integrations/elementor/widgets/event-datetime/all-day, integrations/elementor/widgets/event-datetime/end-date, integrations/elementor/widgets/event-datetime/end-time, integrations/elementor/widgets/event-datetime/header, integrations/elementor/widgets/event-datetime/range-separator, integrations/elementor/widgets/event-datetime/start-date, integrations/elementor/widgets/event-datetime/start-time, integrations/elementor/widgets/event-datetime/time-separator, integrations/elementor/widgets/event-export, integrations/elementor/widgets/event-export/button, integrations/elementor/widgets/event-export/link, integrations/elementor/widgets/event-export/list-item, integrations/elementor/widgets/event-image, integrations/elementor/widgets/event-navigation, integrations/elementor/widgets/event-navigation/next, integrations/elementor/widgets/event-navigation/previous, integrations/elementor/widgets/event-organizer, integrations/elementor/widgets/event-organizer/details, integrations/elementor/widgets/event-organizer/details/email, integrations/elementor/widgets/event-organizer/details/email/content, integrations/elementor/widgets/event-organizer/details/email/header, integrations/elementor/widgets/event-organizer/details/phone, integrations/elementor/widgets/event-organizer/details/phone/content, integrations/elementor/widgets/event-organizer/details/phone/header, integrations/elementor/widgets/event-organizer/details/website, integrations/elementor/widgets/event-organizer/details/website/content, integrations/elementor/widgets/event-organizer/details/website/header, integrations/elementor/widgets/event-organizer/header, integrations/elementor/widgets/event-organizer/names, integrations/elementor/widgets/event-status/passed, integrations/elementor/widgets/event-status/status, integrations/elementor/widgets/event-tags, integrations/elementor/widgets/event-tags/content, integrations/elementor/widgets/event-tags/header, integrations/elementor/widgets/event-title, integrations/elementor/widgets/event-venue, integrations/elementor/widgets/event-venue/address, integrations/elementor/widgets/event-venue/address/address, integrations/elementor/widgets/event-venue/address/header, integrations/elementor/widgets/event-venue/address/map_link, integrations/elementor/widgets/event-venue/header, integrations/elementor/widgets/event-venue/map, integrations/elementor/widgets/event-venue/name, integrations/elementor/widgets/event-venue/phone, integrations/elementor/widgets/event-venue/phone/header, integrations/elementor/widgets/event-venue/phone/phone, integrations/elementor/widgets/event-venue/single-venue, integrations/elementor/widgets/event-venue/website, integrations/elementor/widgets/event-venue/website/header, integrations/elementor/widgets/event-venue/website/website, integrations/elementor/widgets/event-website, integrations/elementor/widgets/event-website/header, integrations/elementor/widgets/event-website/link, modules/meta/venue, single-event, v2/components/events-bar, v2/components/events-bar/views, v2/components/header, v2/components/messages, v2/components/messages/error-icon, v2/components/messages/notice-icon, v2/components/top-bar/category-color-picker, v2/components/top-bar/today, v2/day, v2/day/event, v2/day/event/category, v2/day/event/date/featured, v2/day/event/featured-image, v2/day/top-bar, v2/day/top-bar/datepicker, v2/latest-past/event, v2/latest-past/event/date/featured, v2/latest-past/event/featured-image, v2/list, v2/list/event, v2/list/event/category, v2/list/event/date-tag, v2/list/event/date/featured, v2/list/nav/next-disabled, v2/list/nav/next, v2/list/nav/prev-disabled, v2/list/nav/prev, v2/list/top-bar, v2/list/top-bar/datepicker, v2/month, v2/month/calendar-body, v2/month/calendar-body/day, v2/month/calendar-body/day/calendar-events/calendar-event, v2/month/calendar-body/day/calendar-events/calendar-event/date/featured, v2/month/calendar-body/day/calendar-events/calendar-event/title, v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/date/featured, v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/title, v2/month/calendar-body/day/cell-title, v2/month/calendar-body/day/date-extras, v2/month/calendar-body/day/date, v2/month/calendar-body/day/multiday-events/multiday-event, v2/month/calendar-body/day/multiday-events/multiday-event/bar/featured, v2/month/calendar-body/day/multiday-events/multiday-event/bar/title, v2/month/calendar-body/day/multiday-events/multiday-event/hidden/link/featured, v2/month/calendar-body/day/multiday-events/multiday-event/hidden/link/title, v2/month/calendar-header, v2/month/mobile-events/mobile-day, v2/month/mobile-events/mobile-day/mobile-event, v2/month/mobile-events/mobile-day/mobile-event/date/featured, v2/month/mobile-events/mobile-day/mobile-event/featured-image, v2/month/mobile-events/mobile-day/mobile-event/title, v2/month/top-bar, v2/month/top-bar/datepicker, v2/widgets/widget-events-list, v2/widgets/widget-events-list/event, v2/widgets/widget-events-list/event/date/featured, v2/widgets/widget-events-qr-code
    • \n
    • Tweak – Update Month view templates to use a more semantically appropriate table structure. Developers are advised to carefully review any customizations for compatibility before updating. [TEC-5185]
    • \n
    • Accessibility – Changed aria-labels to aria-descriptions for WCAG compliance. [TEC-5524]
    • \n
    • Accessibility – Correct an issue where alert text was not announced by screen readers. [TEC-5184]
    • \n
    • Accessibility – Correct some heading uses that were confusing and/or misapplied. [TEC-5199]
    • \n
    • Accessibility – Correct some images where the alt text conflicted with the linked title. [TEC-5183]
    • \n
    • Accessibility – Improve the keyboard navigation of the Views menu. [TEC-5192]
    • \n
    • Accessibility – Remove redundant aria-label attributes where they duplicate existing visible text. [TEC-5197]
    • \n
    • Accessibility – Remove redundant title attributes on some images and links. [TEC-5194, TEC-5195]
    • \n
    • Accessibility – Updated featured icons in all calendar views to include accessible labels. Reorganized the Month view Feature icons to be more understandable when read by a screen reader. Reworked several icon applications to make them more accessible. [TEC-5190, TEC-5201]
    • \n
    • Language – 59 new strings added, 132 updated, 1 fuzzied, and 1 obsoleted.
    • \n
    \n

    [6.13.2.1] 2025-06-05

    \n
      \n
    • Fix – Fix some hardcoded asset paths. [TEC-5523]
    • \n
    • Fix – Utilize the newer version of our build process to ensure inline svgs are being handled properly. [TCMN-188]
    • \n
    • Security – Fixed an issue where some templates were not sanitized properly.
    • \n
    \n

    [6.13.2] 2025-06-03

    \n
      \n
    • Version – The Events Calendar 6.13.2 is only compatible with Event Tickets 5.24.0 and higher.
    • \n
    • Tweak – Updated Help Hub functionality to follow new standards.
    • \n
    • Language – 8 new strings added, 23 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.13.1] 2025-05-27

    \n
      \n
    • Fix – Add Domain Path to the plugin header to ensure installed files get read. [TEC-5520]
    • \n
    • Fix – Ensures symbolic links are followed on Assets Group Paths. [TCMN-187]
    • \n
    • Fix – Update aggregator scripts to ensure globals remain global. [TEC-5509]
    • \n
    • Language – 0 new strings added, 1 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.13.0] 2025-05-20

    \n
      \n
    • Version – The Events Calendar 6.13.0 is only compatible with Events Pro 7.6.0 and higher.
    • \n
    • Version – The Events Calendar 6.13.0 is only compatible with Events Community 5.0.7 and higher.
    • \n
    • Version – The Events Calendar 6.13.0 is only compatible with Event Tickets 5.23.0 and higher.
    • \n
    • Version – The Events Calendar 6.13.0 is only compatible with Event Tickets Plus 6.5.0 and higher.
    • \n
    • Feature – Add a Block_Trait to simplify block assets registration and avoid code duplication.
    • \n
    • Fix – Improve Settings UX by preventing unstyled error state when tab object does not exist.
    • \n
    • Fix – Update class steps to use namespaced class names consistently to improve class reusability.
    • \n
    • Fix – In the onboarding API, improve data management by merging new params instead of overwriting existing ones.
    • \n
    • Fix – Standardize asset loading by using a consistent function to load assets.
    • \n
    • Tweak – Alter Telemetry to allow classes to hook in and supress the modal for specific pages.
    • \n
    • Tweak – Hide Telemetry modal on the onboarding page.
    • \n
    • Tweak – Improve the onboarding wizard by properly storing current tab completion and adding filter to force redirect.
    • \n
    • Tweak – Replace tribe_asset with tec_asset function for proper asset pathing.
    • \n
    • Tweak – Add tec_events_onboarding_wizard_force_display filter to allow bypassing Guided Setup display checks.
    • \n
    • Tweak – Add tec_events_onboarding_force_redirect_to_guided_setup filter to bypass checks for redirecting to Guided Setup.
    • \n
    • Tweak – Move Country and Currency lists to Common for better code reuse.
    • \n
    • Tweak – Update asset handling to leverage group paths consistently.
    • \n
    • Language – 2 new strings added, 252 updated, 4 fuzzied, and 38 obsoleted.
    • \n
    \n

    [6.12.0.1] 2025-05-14

    \n
      \n
    • Fix – Prevents fatal if QR library in common has not loaded. [TEC-5497]
    • \n
    • Language – 10 new strings added, 247 updated, 1 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.12.0] 2025-05-13

    \n
      \n
    • Feature – Add an editor block to display an event QR code [TEC-5404]
    • \n
    • Feature – Add a widget to display a QR code for an event [TEC-5405]
    • \n
    • Feature – Add the [tec_event_qr] shortcode [TEC-5406]
    • \n
    • Feature – Generate QR Code link in the Events Admin Table [TEC-5428]
    • \n
    • Feature – QR Code metabox in Events Edit screen [TEC-5429]
    • \n
    • Feature – Support QR Codes in TEC [TEC-5396]
    • \n
    • Security – Harden backend requests to enforce user capabilities. [SVUL-15]
    • \n
    • Tweak – Added filters: tec_events_qr_enabled, tec_events_qr_valid_screens, tec_events_qr_code_supported_post_types, tec_events_qr_code_post_types, tec_events_qr_code_redirection_type, tec_events_qr_code_modal_vars, tec_events_qr_code_regenerate, tec_events_qr_current_event_url, tec_events_qr_upcoming_event_url, tec_events_qr_specific_event_url, tec_events_qr_redirection_url, tec_events_qr_widget_options, tec_events_qr_widget_fields, tec_events_qr_next_series_event_url,
    • \n
    • Tweak – Added actions: tec_events_fully_loaded
    • \n
    • Tweak – Changed views: blocks/parts/subscribe-list, v2/components/events-bar/views, v2/components/events-bar/views/list/item, v2/components/messages, v2/components/subscribe-links/single-event-list, v2/day, v2/list, v2/month, v2/widgets/widget-events-qr-code
    • \n
    • Accessibility – Add aria-labels to view options and aria-current to selected view. [TEC-5022]
    • \n
    • Accessibility – Add aria-label to view selector button. [TEC-5021]
    • \n
    • Accessibility – Add aria label to Add to calendar button. [TEC-5088]
    • \n
    • Accessibility – Change focus to results after filtering events/. [FBAR-332]
    • \n
    • Accessibility – Change wrapper div to a section tag to avoid multiple ‘banner’ landmarks. [TEC-3424]
    • \n
    • Accessibility – Small tweaks to improve accessibility of user-facing messages. [FBAR-333]
    • \n
    • Accessibility – Tweaked accordions so they will toggle and not submit when using keyboard navigation. [FBAR-343]
    • \n
    • Language – 61 new strings added, 145 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.11.2.1] 2025-04-28

    \n
      \n
    • Version – The Events Calendar 6.11.2.1 is only compatible with Event Tickets 5.21.1.1 or higher.
    • \n
    • Fix – Amend various callbacks of the External Calendar Embeds feature to not be so strict on the expected arguments, as a result fixing fatal errors when the arguments are not of the expected type. [TEC-5484]
    • \n
    • Security – Added more safety checks to telemetry opt-ins/opt-outs. [TCMN-186]
    • \n
    • Language – 0 new strings added, 186 updated, 0 fuzzied, and 61 obsoleted.
    • \n
    \n

    [6.11.2] 2025-04-09

    \n
      \n
    • Fix – Ensure that Copy and Render for our Legacy Widgets works for all Event related widgets [TEC-5447]
    • \n
    • Fix – Prevent language notice when loading Aggregator cron interval too early. props @peter8nss
    • \n
    • Language – 0 new strings added, 1 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.11.1] 2025-04-07

    \n
      \n
    • Version – The Events Calendar 6.11.1 is only compatible with Event Tickets 5.20.0 and higher
    • \n
    • Fix – Avoid running unbound queries, avoid too long queries being killed. [ECP-1898]
    • \n
    • Fix – Correct some text-domains copied from common
    • \n
    • Fix – Ensures the ajaxComplete callback is fired after AJAX has actually completed. [FBAR-344]
    • \n
    • Fix – Ensures delete_custom_tables_data method is called only for events. [TEC-5445]
    • \n
    • Fix – Ensures events_per_page is type casted to int before used. [TEC-5442]
    • \n
    • Fix – Include Label for viewing post type archives. props @mikeritter
    • \n
    • Fix – Makes sure that Custom Tables are loaded after our Common library is loaded. [TEC-5445]
    • \n
    • Fix – Prevent invalid argument supplied for foreach() warning, props to @zosterops-lateralis
    • \n
    • Tweak – Fixed typo in the First Time Setup page. [TEC-5415]
    • \n
    • Tweak – Improve our widgets to enable copying it in between different instances of the Block and Site editor.
    • \n
    • Tweak – Make sure our settings for showing comments is respected as much as possible. props @zosterops-lateralis
    • \n
    • Tweak – Modify the URL params for Views HTML REST Requests to enable usage of GET requests enabling caching
    • \n
    • Tweak – Modify the visibility of tribe-ea- statuses to prevent them from slowing down WP_Query that are unrelated to Aggregator
    • \n
    • Tweak – Prevent REST API notice from showing in certain cases of false positives.
    • \n
    • Performance – Aggregator query for Authors on the import form has better boundaries props @dilipbheda
    • \n
    • Performance – Avoid duplicate queries by caching model queries results. [ECP-1898]
    • \n
    • Language – 2 new strings added, 192 updated, 2 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.11.0.1] 2025-04-01

    \n
      \n
    • Fix – Ensures get_current_screen() function is only called if it exists, avoiding fatal error if called too early. [TEC-5439]
    • \n
    \n

    [6.11.0] 2025-03-31

    \n
      \n
    • Feature – Added External Calendar Embeds functionality. [TEC-5359]
    • \n
    • Tweak – Add auto-width to Subscribe to Calendar button to accommodate translations. Props to @huubl [TEC-5430]
    • \n
    • Tweak – Adjust CSS to make sure that onboarding wizard form elements are properly aligned on all WordPress versions. [TEC-5402]
    • \n
    • Tweak – Adjusted vertical spacing in the onboarding wizard to better fit the content on the screen. [TEC-5402]
    • \n
    • Tweak – Changed some organizer and venue fields in the onboarding wizard to not be required. [TEC-5408]
    • \n
    • Tweak – Make sure the Setup Guide page shows up only when asked for. [TEC-5411]
    • \n
    • Fix – Add check for single venue and single organizer to the Template_Bootstrap class. Use those checks for SEO titles and enable SEO plugins to overwrite their respective titles. [ECP-1059]
    • \n
    • Fix – Add notice that at least one view is required for Onboarding Wizard display tab. [TEC-5398]
    • \n
    • Fix – Add one time redirect to the Guided Setup page. [TEC-5401]
    • \n
    • Fix – Adjusted logic for when to reset isSaving state for Onboarding Wizard. [TEC-5409]
    • \n
    • Language – 49 new strings added, 158 updated, 0 fuzzied, and 2 obsoleted.
    • \n
    \n

    [6.10.3] 2025-03-25

    \n
      \n
    • Fix – Improved user experience by ensuring Event Tickets installation and activation notices only appear on TEC-related admin pages.
    • \n
    • Language – 0 new strings added, 5 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.10.2] 2025-03-04

    \n
      \n
    • Feature – Use the filter hook in TCMN to define the pages to show IAN notifications [ET-2294]
    • \n
    • Tweak – Added actions: tec_events_before_view_html_cache
    • \n
    • Tweak – Added check that $_FILES is set before setting the param on an HTTP request. [TEC-5363]
    • \n
    • Tweak – Added filters: tec_events_filter_wp_robots_meta_directives
    • \n
    • Tweak – Added link to Events Calendar Pro in onboarding wizard. [TEC-5397]
    • \n
    • Tweak – Changed views: v2/month/top-bar/datepicker, v2/widgets/widget-events-list/event/date-tag
    • \n
    • Tweak – Removed filters: tec_events_seo_robots_meta_content, tec_events_no_index_meta
    • \n
    • Tweak – Update docblocks in the Tribe__Events__iCal class.
    • \n
    • Fix – Corrected template override file path for Event List Widget date-tag. [ECP-1725]
    • \n
    • Fix – Fix past events shortcode attribute [TEC-5348]
    • \n
    • Fix – Fix the time zone blocks in the iCal feed to make sure the iCal feed is valid and the calendar can be subscribed to. [TEC-5360]
    • \n
    • Fix – Hide Not-Found notice in Astra Theme archive page [TEC-4853]
    • \n
    • Fix – Hook the noindex directives into a new hook before the View HTML cache check. [TEC-5354]
    • \n
    • Compatibility – Added 404 handling for day view when disabled or accessed outside the range of earliest and latest events, with an exception for the current month when no events exist. [TEC-5356]
    • \n
    • Compatibility – Added 404 handling for month view when disabled or accessed outside the range of earliest and latest events, with an exception for the current month when no events exist. [TEC-5356]
    • \n
    • Compatibility – Switched to using WordPress wp_robots for improved SEO plugin compatibility and to prevent duplicate meta robots tags. [TEC-5355]
    • \n
    • Language – 0 new strings added, 129 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.10.1.1] 2025-02-12

    \n
      \n
    • Fix – Updated common library to correct issues with notifications around licensing.
    • \n
    • Fix – Add a callback to remove the tribe_pue_key_notices once on upgrade to version 6.5.1.1 [TEC-5384]
    • \n
    • Fix – Adjustments were made to prevent a fatal error when tec_pue_checker_init was triggered too early, attempting to call tribe_is_truthy() before it was available. The license check and active plugin monitoring now run on admin_init to ensure proper loading. [TEC-5384]
    • \n
    • Fix – Update the license checker to ignore empty licenses. [TEC-5385]
    • \n
    • Language – 0 new strings added, 0 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.10.1] 2025-02-10

    \n
      \n
    • Fix – Added a check for $subscribe_links in single_event_links function. [TEC-5357]
    • \n
    • Fix – Added format_item() function so venues read from ORM are decorated objects. (props to @m8nmueller) [TEC-5353]
    • \n
    • Fix – Make Eventbrite import available when the Eventbrite Tickets plugin is installed [EBT-149]
    • \n
    • Fix – Replaced deprecated functions with their modern equivalents to maintain compatibility. [EA-476]
    • \n
    • Fix – Support Additional Fields in Events REST API [TEC-5015]
    • \n
    • Fix – Changed the way translations are loaded to work with the latest WordPress language changes.
    • \n
    • Accessibility – Increased pagination button sizes on the events page. [TEC-5176]
    • \n
    • Tweak – Added aliases for Venue ORM for show_map and show_map_link. (props to @m8nmueller) [TEC-5352]
    • \n
    • Tweak – Remove class_exists() and use register_on_action() for Notifications [TEC-5336]
    • \n
    • Tweak – Added filters: tribe_repository_venues_format_item
    • \n
    • Language – 0 new strings added, 8 updated, 1 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.10.0] 2025-01-30

    \n
      \n
    • Fix – Update asset, dependencies, customizations to align with WordPress 6.7 and React 18. [TEC-5322]
    • \n
    • Language – 0 new strings added, 44 updated, 0 fuzzied, and 1 obsoleted.
    • \n
    \n

    [6.9.1] 2025-01-22

    \n
      \n
    • Security – Ensure Elementor HTML tags are properly escaped to avoid potential Stored Cross Site Scripting. [SVUL-13]
    • \n
    • Fix – Added check to disable_blocks_on_display for if $content is null. [TEC-5343]
    • \n
    • Fix – Ensure Aggregator translations are not loaded before init. [TEC-5341]
    • \n
    • Fix – Fixes edge cases where the nonce_user_logged_out hook was returning a value when the user was logged out, causing the nonce validation to fail. [TEC-5340]
    • \n
    • Fix – Fix the filter name tec_views_v2_subscribe_links_{$slug}_label which was accidentally changed in a previous release. [TEC-5342]
    • \n
    • Fix – Re-add logic to add page template options from theme to Display Settings. [TEC-5337]
    • \n
    • Fix – Update Tribe__Events__Aggregator__Errors to ensure we don’t load translations before init. [TEC-5341]
    • \n
    • Fix – Update uses of unload_textdomain to ensure they allow JIT loading of translations afterwards. [TEC-5341]
    • \n
    • Tweak – Moved Action Scheduler loading into Common instead of TEC. [TEC-5345]
    • \n
    • Tweak – Updated Telemetry heading under Settings > Debugging. [TEC-5335]
    • \n
    • Tweak – Re-added filter: tec_views_v2_subscribe_links_{$slug}_label
    • \n
    • Tweak – Tweak – Removed duplicate filter: tec_views_v2_single_subscribe_links_{$slug}_label
    • \n
    • Tweak – Changed views: integrations/elementor/widgets/event-calendar-link, integrations/elementor/widgets/event-datetime/range-separator, v2/components/loader, v2/components/messages
    • \n
    • Accessibility – Updated the event search page to handle search results better for screen readers, with alerts noting the results of the search.[TEC-5175]
    • \n
    • Language – 3 new strings added, 84 updated, 0 fuzzied, and 2 obsoleted.
    • \n
    \n

    [6.9.0] 2024-12-17

    \n
      \n
    • Feature – Added new Onboarding Wizard and First Time Setup admin page for new installs. [TEC-5285]
    • \n
    • Fix – When importing events from Google Calendar when using Events Calendar Pro with a custom Google Maps API key, Provinces/States for non-US countries are now saved to the correct field. [ECP-1877]
    • \n
    • Fix – When using “Move to trash events older than”, trashed imported events are now ignored. [TEC-5319]
    • \n
    • Fix – Changed format method to format_i18n to allow for translations of dates in the TEC Elementor Widget. [TEC-5323]
    • \n
    • Fix – Correct template override path to match docblocks for event-export directory. [TEC-5326]
    • \n
    • Fix – Correct application of upsell classes in settings page.
    • \n
    • Tweak – Fix the integration with TEC Tweaks to avoid a fatal error when using the extension. [TEC-5316]
    • \n
    • Tweak – Updated the docblock for the tribe_get_previous_events_link, tribe_get_next_event_link, and tribe_get_gridview_link functions.
    • \n
    • Tweak – Improved documentation for the tribe_the_next_event_link, tribe_the_prev_event_link, and tribe_get_events_link functions.
    • \n
    • Tweak – Update docblocks in the Tribe__Events__Importer__File_Importer_Events class.
    • \n
    • Tweak – Added filters: tec_events_onboarding_wizard_permissions, tec_events_onboarding_wizard_handle, tec_events_onboarding_wizard_country_list, tec_events_onboarding_wizard_timezone_list, tec_events_onboarding_wizard_currencies_list, tribe_events_onboarding_wizard_initial_data, tec_events_admin_notice_event_tickets_should_display, tec_events_admin_notice_utc_timezone_should_display, tec_events_settings_should_filter_page_logo_source
    • \n
    • Tweak – Changed views: integrations/elementor/widgets/event-export, integrations/elementor/widgets/event-export/list-item
    • \n
    • Language – 87 new strings added, 156 updated, 2 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.8.3] 2024-12-05

    \n
      \n
    • Feature – In-App Notifications system. [TEC-5165]
    • \n
    • Tweak – Added actions: tec_ian_icon
    • \n
    • Language – 0 new strings added, 118 updated, 0 fuzzied, and 1 obsoleted.
    • \n
    \n

    [6.8.2.1] 2024-11-21

    \n
      \n
    • Tweak – Introduced filter tec_events_rest_api_password_protected_fields which can be used to control which event fields should be hidden in the REST API for password protected events. [SVUL-8]
    • \n
    • Security – Hide content fields from the archive REST endpoint for password protected events. [SVUL-8]
    • \n
    • Fix – Prevent notices on _load_textdomain_just_in_time due to Aggregator and Export links code.
    • \n
    \n

    [6.8.2] 2024-11-19

    \n
      \n
    • Feature – Introduced Help Hub, a centralized support and resource interface for enhanced user guidance and plugin assistance.
    • \n
    • Fix – Prevent a couple of instances where translations were loading too early, avoids notices with _load_textdomain_just_in_time on WordPress 6.7. [TEC-5325]
    • \n
    • Deprecated – Deprecated the unused update/activation page [TEC-5311]
    • \n
    • Language – 0 new strings added, 0 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.8.1] 2024-11-04

    \n
      \n
    • Fix – Order of past events in the list view when no future events exist. [TEC-5309]
    • \n
    • Fix – Prevent new Settings pages from over-sanitizing textarea fields, thus removing HTML from before/after in the Events UI. [TEC-5283]
    • \n
    • Fix – Include backwards compatibility for deprecated proprieties in the Settings class used in The Events Calendar and Event Tickets [TEC-5312]
    • \n
    \n

    [6.8.0] 2024-10-30

    \n
      \n
    • Version – The Events Calendar 6.8.0 is only compatible with Events Calendar Pro 7.3.0 and higher.
    • \n
    • Version – The Events Calendar 6.8.0 is only compatible with Events Tickets Plus 6.1.0 or higher.
    • \n
    • Version – The Events Calendar 6.8.0 is only compatible with Event Tickets 5.16.0 or higher.
    • \n
    • Feature – Added integration with new premium Seating product for Event Tickets.
    • \n
    • Language – 0 new strings added, 6 updated, 0 fuzzied, and 0 obsoleted
    • \n
    \n

    [6.7.1] 2024-10-21

    \n
      \n
    • Feature – Allow importing custom data when importing Organizers from a CSV file. [TEC-4846]
    • \n
    • Feature – Allow importing custom data when importing Venues from a CSV file. [TEC-5138]
    • \n
    • Security – Ensure restoring events from trash does not allow for unauthorized access. [SVUL-7] (props @patchstack)
    • \n
    • Fix – Ensure Latest Past Events appear properly in Category views [TEC-4991]
    • \n
    • Fix – Cast theme object to string to avoid a deprecation notice. [TEC-5062]
    • \n
    • Tweak – Removed the 6.0 welcome message. [TEC-5166]
    • \n
    • Tweak – Added filters: tribe_events_csv_import_organizer_additional_fields, tribe_events_csv_import_venue_additional_fields
    • \n
    • Tweak – Changed views: v2/latest-past
    • \n
    • Tweak – Updated docblocks in the Tribe__Events__Aggregator__Records, Tribe__Events__Importer__File_Importer, and Tribe__Events__Repositories__Organizer classes.
    • \n
    • Tweak – Improved documentation for the tribe_is_event, tribe_get_event_link, tribe_events_get_event_website_title, tribe_get_event_website_link, tribe_get_listview_display, tribe_get_listview_args, and tribe_get_listview_prev_link functions.
    • \n
    • Language – 3 new strings added, 218 updated, 0 fuzzied, and 32 obsoleted
    • \n
    \n

    [6.7.0] 2024-09-26

    \n
      \n
    • Version – The Events Calendar 6.7.0 is only compatible with Events Calendar Pro 7.1.0 and higher
    • \n
    • Version – The Events Calendar 6.7.0 is only compatible with Events Filterbar 5.5.7 and higher
    • \n
    • Version – The Events Calendar 6.7.0 is only compatible with Events Community 5.0.4 and higher
    • \n
    • Feature – New and improved settings layout and styles. [TEC-5124]
    • \n
    • Fix – Correct translation domains in a few templates. [6.7.2]
    • \n
    • Tweak – Added filters: tec_settings_gmaps_js_api_start, tec_events_settings_display_calendar_display_section, tec_general_settings_viewing_section, tec_events_aggregator_show_all_settings, tec_events_settings_tab_imports_fields
    • \n
    • Tweak – Removed filters: tec_events_should_display_events_template_setting, tec_events_display_settings_tab_fields, tribe_general_settings_tab_fields
    • \n
    • Tweak – Added actions: tec_events_settings_tab_display_additional_content, tec_events_settings_tab_display_calendar, tec_events_settings_tab_display_date_time, tec_events_settings_tab_display_maps, tec_events_settings_tab_general_debugging, tec_events_settings_tab_general_editing, tec_events_settings_tab_general_maintenance, tec_events_settings_tab_general_viewing, tec_settings_tab_addons, tec_events_settings_tab_display, tec_events_settings_tab_general, tec_events_settings_tab_imports
    • \n
    • Tweak – Changed views: v2/latest-past/event/venue
    • \n
    • Language – 6 new strings added, 356 updated, 3 fuzzied, and 29 obsoleted
    • \n
    \n

    [6.6.4.2] 2024-09-17

    \n
      \n
    • Fix – Resolve fatal errors happening when Events search was being used alongside query ordering. [TEC-5155]
    • \n
    \n

    [6.6.4.1] 2024-09-16

    \n
      \n
    • Security – Improve general escaping for ORM queries to prevent legacy Events methods to be used for SQL injections.
    • \n
    \n

    [6.6.4] 2024-09-11

    \n
      \n
    • Security – Improve handling of Date/Time Separator settings to prevent potential XSS vulnerabilities.
    • \n
    • Fix – Add an option to allow for duplicate Venue creation as part of creating/editing Events.
    • \n
    • Fix – Adding small adjustment to WPML integration to allow for location searches on a translated site. (props to @dgwatkins) [BTRIA-2353]
    • \n
    • Fix – Changed logic within the custom tables query to avoid a database error. (props @datadiver0x0) [ECP-1562]
    • \n
    • Fix – Update the logic that displays the “REST API blocked” banner to reduce false positives. [TEC-5105]
    • \n
    • Tweak – Include methods tec_events_get_date_time_separator and tec_events_get_time_range_separator and it’s respective filters.
    • \n
    • Tweak – Add docblock for make_select_box()
    • \n
    • Tweak – Add docblock for set_defaults() in the Tribe__Events__Importer__Column_Mapper class.
    • \n
    • Tweak – Add docblocks to the methods in the Tribe__Events__Importer__Column_Mapper class.
    • \n
    • Tweak – Add information and missing tags to tribe_get_listview_args() docblock.
    • \n
    • Tweak – Add information and missing tags to tribe_get_listview_dir_link() docblock.
    • \n
    • Tweak – Add information and missing tags to tribe_get_listview_link() docblock.
    • \n
    • Tweak – Add information and missing tags to tribe_get_listview_past_link() docblock.
    • \n
    • Tweak – Add information and missing tags to tribe_get_prev_event_link().
    • \n
    • Tweak – Made a string translatable in settings.php file. (props to @DAnn2012) [TEC-5142]
    • \n
    • Tweak – Update the docblock of the tribe_embed_google_map() method, change a variable name to match current naming conventions, and added a docblock to the tribe_embed_google_map filter.
    • \n
    • Tweak – Update the docblock of the tribe_embed_google_map_link() method, change a variable name to match current naming conventions, and added a docblock to the tribe_embed_google_map_link filter.
    • \n
    • Tweak – Changed views: silence, v2/month/calendar-body/day/calendar-events/calendar-event/date
    • \n
    • Language – 0 new strings added, 46 updated, 0 fuzzied, and 0 obsoleted
    • \n
    \n

    [6.6.3] 2024-08-29

    \n
      \n
    • Fix – Add an option to allow for duplicate Venue creation as part of creating/editing Events. [TEC-4941]
    • \n
    • Fix – Character encoding issues on subscribe URLs for Outlook. [TEC-5085, TEC-5094, TEC-5136]
    • \n
    • Fix – Update the logic that displays the “REST API blocked” banner to reduce false positives. [TEC-5105]
    • \n
    • Tweak – Add docblock for make_select_box()
    • \n
    • Tweak – Changed views: v2/month/calendar-body/day/calendar-events/calendar-event/date
    • \n
    • Language – 0 new strings added, 0 updated, 0 fuzzied, and 0 obsoleted
    • \n
    \n

    [6.6.2] 2024-09-20

    \n
      \n
    • Feature …
    • \n
    \n", "description": "

    Easily create and manage an events calendar on your WordPress site with The Events Calendar free plugin. Whether your events are in-person or virtual events, this WordPress calendar plugin boasts professional features backed by our world-class team of developers and designers.

    \n

    \n

    See more videos on our YouTube channel

    \n

    Packed with loads of features, The Events Calendar is ready to go out of the box. It’s also extensible, easy to use, and completely customizable.

    \n

    📅 The #1 Calendar for WordPress

    \n

    See the calendar in action on our demo experience. Just getting started? Read through the New User Primer to get set up.

    \n

    Looking for additional features like recurring events, ticket sales, user-submitted events, automatic imports, and more?

    \n

    Check out Events Calendar Pro, Event Aggregator, and more add-ons.

    \n

    🔌🎨 Plug and Play or Customize

    \n

    The Events Calendar is built to work out of the box. Simply install the plugin, configure your settings, and start creating events in minutes.

    \n

    Want to add your personal touch? Use The Events Calendar as the foundation for customization. Personalize to your heart’s content with the help of a skeleton stylesheet, partial template overrides, template tags, hooks and filters, careful documentation, and a library of free extensions.

    \n

    Whether your vision is big or small, you’re in good company. Hundreds of thousands of small businesses, musicians, venues, restaurants, and non-profits are publishing and promoting their in-person and virtual events with The Events Calendar. Our plugins have also been scaled to work on large networks for Fortune 100 companies, universities, and government institutions.

    \n

    ✨ Features

    \n

    Our feature-rich plugin comes with everything you need to create and manage your calendar.

    \n

    ✔️ Rapidly create events
    \n✔️ Saved venues & organizers
    \n✔️ Calendar month view with tooltips
    \n✔️ Event List view
    \n✔️ Day view
    \n✔️ Block Editor support
    \n✔️ Event search
    \n✔️ Google maps
    \n✔️ Widget: Upcoming events list
    \n✔️ Events Taxonomies (Categories & Tags)
    \n✔️ Google Calendar and iCal exporting
    \n✔️ WP REST API endpoints
    \n✔️ Completely ajaxified for super smooth browsing
    \n✔️ Completely responsive from mobile to tablet to desktop
    \n✔️ Tested on the major theme frameworks such as Avada, Divi, Enfold, Genesis, and many more.
    \n✔️ Increase your SEO with JSON-LD Structured Data
    \n✔️ Internationalized & translated
    \n✔️ Multiple stylesheets to improve integration
    \n✔️ Extensive template tags for customization
    \n✔️ Hooks & filters galore
    \n✔️ Caching support
    \n✔️ Debug mode for developers
    \n✔️ Library of extensions

    \n

    📃 Documentation

    \n

    All of our documentation can be found in our Knowledgebase.

    \n

    Additional helpful links:

    \n\n

    If you have any questions about this plugin, you can post a thread in the WordPress.org forum. Please search existing threads before starting a new one.

    \n

    Add-Ons

    \n

    Take your calendar to the next level by pairing it with our plugins for ticketing, crowdsourcing, email marketing, and more. Learn more about all our products on our website.

    \n

    Our Free Plugins:

    \n

    🎟️ Event Tickets
    \n📐 Advanced Post Manager

    \n

    Our Premium Plugins and Services:

    \n

    Events Calendar PRO
    \n↪️ Event Aggregator (service)
    \n🎟️ Event Tickets Plus
    \n✉️ Promoter
    \n👥 Community Events
    \n✏️ Filter Bar
    \n🗓️ Eventbrite Tickets

    \n

    Help

    \n

    If you aren’t familiar with The Events Calendar, check out our New User Primer. It will have you creating events in no time.

    \n

    Ready to dig deeper? Check out these resources:

    \n\n

    We check in on the The Events Calendar forum here on WordPress.org about once a week to help users with basic troubleshooting and identifying bugs. If you’re looking for premium, personalized support, consider upgrading to Events Calendar Pro.

    \n

    Still have a question? Shoot us an email at support@theeventscalendar.com.

    \n", "screenshots": "
    1. \"Month

      Month View with hover

    2. \"Mobile

      Mobile Views

    3. \"Single

      Single event

    4. \"List

      List View

    5. \"Event

      Event Editor

    6. \"Events

      Events admin listing

    7. \"General

      General Settings

    8. \"Display

      Display Settings

    9. \"CSV

      CSV Importer

    ", "installation": "

    Installing the plugin is easy. Just follow one of the following methods:

    \n

    Install The Events Calendar from within WordPress

    \n
      \n
    1. Visit the plugins page within your dashboard and select ‘Add New’
    2. \n
    3. Search for “Events Calendar”
    4. \n
    5. Activate The Events Calendar from your Plugins page
    6. \n
    7. You’re done!
    8. \n
    \n

    Install The Events Calendar Manually

    \n
      \n
    1. From the dashboard of your site, navigate to Plugins –> Add New.
    2. \n
    3. Select the Upload option and hit “Choose File.”
    4. \n
    5. When the popup appears select the the-events-calendar-x.x.zip file from your desktop. (The ‘x.x’ will change depending on the current version number).
    6. \n
    7. Follow the on-screen instructions and wait as the upload completes.
    8. \n
    9. When it’s finished, activate the plugin via the prompt. A message will show confirming activation was successful. A link to access the calendar directly on the frontend will be presented here as well.
    10. \n
    \n

    That’s it! Just configure your settings as you see fit, and you’re on your way to creating events in style. Need help getting things started? Check out our new user primer for help with settings and features.

    \n"}, "versions": {"1.5": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.zip", "2.0": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.zip", "3.0": "https://downloads.wordpress.org/plugin/the-events-calendar.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/the-events-calendar.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/the-events-calendar.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/the-events-calendar.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/the-events-calendar.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/the-events-calendar.3.6.zip", "3.7": "https://downloads.wordpress.org/plugin/the-events-calendar.3.7.zip", "3.8": "https://downloads.wordpress.org/plugin/the-events-calendar.3.8.zip", "3.9": "https://downloads.wordpress.org/plugin/the-events-calendar.3.9.zip", "4.0": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.zip", "4.5": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.zip", "4.7": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.zip", "4.8": "https://downloads.wordpress.org/plugin/the-events-calendar.4.8.zip", "3.10": "https://downloads.wordpress.org/plugin/the-events-calendar.3.10.zip", "3.11": "https://downloads.wordpress.org/plugin/the-events-calendar.3.11.zip", "3.12": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.zip", "1.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.6.zip", "1.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.5.zip", "2.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.9.zip", "3.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.3.0.3.zip", "3.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.3.1.zip", "3.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.4.1.zip", "3.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.5.1.zip", "3.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.6.1.zip", "3.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.8.1.zip", "3.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/the-events-calendar.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/the-events-calendar.3.9.3.zip", "4.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.7.zip", "4.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.4.zip", "4.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.5.zip", "4.2.6": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.6.zip", "4.2.7": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.7.zip", "4.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.1.zip", "4.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.2.zip", "4.5.8": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.8.zip", "4.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.1.zip", "4.9.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.zip", "5.0.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.zip", "5.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.zip", "5.1.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.6.zip", "5.2.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.zip", "5.3.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.zip", "5.4.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.zip", "5.5.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.zip", "5.6.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.6.0.zip", "5.7.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.7.1.zip", "5.8.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.8.2.zip", "5.9.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.9.2.zip", "6.0.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.8.zip", "6.0.9": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.9.zip", "6.1.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.4.zip", "6.2.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.5.zip", "6.2.6": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.6.zip", "6.2.7": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.7.zip", "6.2.8": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.8.zip", "6.2.9": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.9.zip", "6.3.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.3.zip", "6.3.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.4.zip", "6.3.5": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.5.zip", "6.3.6": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.6.zip", "6.3.7": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.7.zip", "6.4.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.4.0.zip", "6.5.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.zip", "6.5.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.2.zip", "6.6.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.1.zip", "6.6.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.2.zip", "6.6.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.3.zip", "6.6.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.4.zip", "6.7.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.7.0.zip", "6.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.7.1.zip", "6.8.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.8.0.zip", "6.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.8.1.zip", "6.8.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.8.2.zip", "6.8.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.8.3.zip", "6.9.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.9.1.zip", "trunk": "https://downloads.wordpress.org/plugin/the-events-calendar.zip", "2.0.10": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.11.zip", "3.10.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.10.1.zip", "3.11.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.11.1.zip", "3.11.2": "https://downloads.wordpress.org/plugin/the-events-calendar.3.11.2.zip", "3.12.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.1.zip", "3.12.2": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.2.zip", "3.12.3": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.3.zip", "3.12.4": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.4.zip", "3.12.5": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.5.zip", "3.12.6": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.6.zip", "4.5.10": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.10.zip", "4.5.12": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.zip", "4.6.10": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.10.zip", "4.6.11": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.11.zip", "4.6.14": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.14.zip", "4.6.20": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.20.zip", "4.6.22": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.22.zip", "4.6.24": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.24.zip", "4.6.26": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.26.zip", "5.10.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.10.0.zip", "5.10.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.10.1.zip", "5.11.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.11.0.zip", "5.12.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.12.0.zip", "5.12.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.12.1.zip", "5.12.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.12.2.zip", "5.12.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.12.3.zip", "5.12.4": "https://downloads.wordpress.org/plugin/the-events-calendar.5.12.4.zip", "5.13.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.13.0.zip", "5.14.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.zip", "5.14.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.1.zip", "5.14.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.2.zip", "5.15.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.15.0.zip", "5.16.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.0.zip", "5.16.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.1.zip", "5.16.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.2.zip", "5.16.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.3.zip", "5.16.4": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.4.zip", "6.0.10": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.10.zip", "6.0.11": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.11.zip", "6.0.12": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.12.zip", "6.0.13": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.13.zip", "6.10.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.10.0.zip", "6.10.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.10.1.zip", "6.10.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.10.2.zip", "6.10.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.10.3.zip", "6.11.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.11.0.zip", "6.11.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.11.1.zip", "6.11.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.11.2.zip", "6.12.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.12.0.zip", "6.13.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.13.0.zip", "6.13.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.13.1.zip", "6.13.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.13.2.zip", "6.14.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.14.0.zip", "6.14.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.14.1.zip", "6.14.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.14.2.zip", "6.15.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.0.zip", "6.15.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.1.zip", "6.15.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.2.zip", "6.15.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.3.zip", "6.15.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.4.zip", "6.15.5": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.5.zip", "6.15.6": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.6.zip", "6.15.7": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.7.zip", "6.15.8": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.8.zip", "6.15.9": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.9.zip", "4.1.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.0.1.zip", "4.1.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.1.1.zip", "4.2.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.1.1.zip", "4.3.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.0.2.zip", "4.3.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.1.2.zip", "4.3.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.2.1.zip", "4.3.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.3.1.zip", "4.3.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.1.zip", "4.3.4.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.3.zip", "4.3.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.5.1.zip", "4.4.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.0.2.zip", "4.4.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.1.2.zip", "4.4.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.2.1.zip", "4.4.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.3.1.zip", "4.4.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.4.1.zip", "4.4.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.5.1.zip", "4.5.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.0.1.zip", "4.5.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.0.3.zip", "4.5.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.1.1.zip", "4.5.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.2.2.zip", "4.5.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.3.1.zip", "4.5.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.4.1.zip", "4.5.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.5.1.zip", "4.5.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.6.1.zip", "4.5.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.7.1.zip", "4.5.8.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.8.2.zip", "4.5.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.9.1.zip", "4.6.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.0.1.zip", "4.6.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.1.1.zip", "4.6.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.2.1.zip", "4.6.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.3.1.zip", "4.6.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.4.1.zip", "4.6.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.5.1.zip", "4.6.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.6.1.zip", "4.6.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.7.1.zip", "4.6.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.8.1.zip", "4.6.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.9.1.zip", "4.7.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.0.2.zip", "4.7.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.1.1.zip", "4.7.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.2.1.zip", "4.7.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.3.1.zip", "4.7.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.4.1.zip", "4.8.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.8.0.2.zip", "4.8.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.8.1.1.zip", "4.8.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.8.2.1.zip", "4.9.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.1.zip", "4.9.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.2.zip", "4.9.0.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.4.zip", "4.9.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.1.2.zip", "4.9.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.2.1.zip", "4.9.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.1.zip", "4.9.3.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.3.zip", "4.9.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.4.1.zip", "4.9.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.5.1.zip", "4.9.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.6.1.zip", "4.9.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.7.1.zip", "4.9.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.8.1.zip", "4.9.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.9.1.zip", "5.0.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.1.zip", "5.0.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.3.zip", "5.0.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.1.1.zip", "5.0.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.1.2.zip", "5.0.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.2.zip", "5.0.2.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.3.zip", "5.0.3.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.2.zip", "5.0.3.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.3.zip", "5.1.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.0.1.zip", "5.1.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.0.2.zip", "5.1.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.1.1.zip", "5.1.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.1.2.zip", "5.1.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.2.1.zip", "5.1.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.2.2.zip", "5.1.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.3.1.zip", "5.1.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.4.1.zip", "5.1.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.5.1.zip", "5.1.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.6.1.zip", "5.2.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.2.0.1.zip", "5.2.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.1.zip", "5.2.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.2.zip", "5.3.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.0.1.zip", "5.3.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.1.zip", "5.3.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.2.zip", "5.3.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.1.zip", "5.3.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.2.zip", "5.4.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.1.zip", "5.4.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.2.zip", "5.4.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.3.zip", "5.5.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.1.zip", "5.5.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.2.zip", "6.0.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.0.1.zip", "6.0.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.1.1.zip", "6.0.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.3.1.zip", "6.0.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.6.1.zip", "6.0.6.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.6.2.zip", "6.0.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.7.1.zip", "6.1.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.0.1.zip", "6.1.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.0.2.zip", "6.1.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.2.1.zip", "6.1.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.2.2.zip", "6.15.10": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.10.zip", "6.2.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.0.1.zip", "6.2.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.2.1.zip", "6.2.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.3.1.zip", "6.2.3.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.3.2.zip", "6.2.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.6.1.zip", "6.2.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.8.1.zip", "6.2.8.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.8.2.zip", "6.3.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.3.1.zip", "6.4.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.4.0.1.zip", "6.5.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.0.1.zip", "6.5.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.1.zip", "6.5.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.2.zip", "6.5.1.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.3.zip", "6.5.1.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.4.zip", "6.5.1.5": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.5.zip", "6.5.1.6": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.6.zip", "6.6.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.0.1.zip", "6.6.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.0.2.zip", "6.6.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.4.1.zip", "6.6.4.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.4.2.zip", "6.8.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.8.2.1.zip", "4.5.10.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.10.2.zip", "4.5.11.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.11.1.zip", "4.5.12.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.1.zip", "4.5.12.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.2.zip", "4.5.12.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.4.zip", "4.5.13.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.13.1.zip", "4.6.10.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.10.2.zip", "4.6.11.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.11.2.zip", "4.6.12.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.12.1.zip", "4.6.13.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.13.1.zip", "4.6.14.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.14.2.zip", "4.6.15.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.15.1.zip", "4.6.16.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.16.1.zip", "4.6.17.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.17.1.zip", "4.6.18.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.18.1.zip", "4.6.19.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.19.1.zip", "4.6.20.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.20.2.zip", "4.6.21.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.21.1.zip", "4.6.22.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.22.2.zip", "4.6.23.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.23.1.zip", "4.6.24.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.24.2.zip", "4.6.25.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.25.1.zip", "4.6.26.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.26.2.zip", "4.9.10.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.10.1.zip", "4.9.11.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.11.1.zip", "4.9.12.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.12.1.zip", "4.9.13.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.13.1.zip", "4.9.14.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.14.1.zip", "5.14.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.1.zip", "5.14.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.2.zip", "5.14.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.3.zip", "5.14.0.4": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.4.zip", "5.14.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.2.1.zip", "5.15.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.15.0.1.zip", "5.16.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.1.1.zip", "5.16.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.2.1.zip", "5.16.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.3.1.zip", "5.16.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.4.1.zip", "6.0.13.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.13.1.zip", "6.10.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.10.1.1.zip", "6.11.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.11.0.1.zip", "6.11.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.11.2.1.zip", "6.12.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.12.0.1.zip", "6.13.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.13.2.1.zip", "6.15.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.0.1.zip", "6.15.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.1.1.zip"}, "downloaded": 76094565, "description": "

    Easily create and manage an events calendar on your WordPress site with The Events Calendar free plugin. Whether your events are in-person or virtual events, this WordPress calendar plugin boasts professional features backed by our world-class team of developers and designers.

    \n

    \n

    See more videos on our YouTube channel

    \n

    Packed with loads of features, The Events Calendar is ready to go out of the box. It’s also extensible, easy to use, and completely customizable.

    \n

    📅 The #1 Calendar for WordPress

    \n

    See the calendar in action on our demo experience. Just getting started? Read through the New User Primer to get set up.

    \n

    Looking for additional features like recurring events, ticket sales, user-submitted events, automatic imports, and more?

    \n

    Check out Events Calendar Pro, Event Aggregator, and more add-ons.

    \n

    🔌🎨 Plug and Play or Customize

    \n

    The Events Calendar is built to work out of the box. Simply install the plugin, configure your settings, and start creating events in minutes.

    \n

    Want to add your personal touch? Use The Events Calendar as the foundation for customization. Personalize to your heart’s content with the help of a skeleton stylesheet, partial template overrides, template tags, hooks and filters, careful documentation, and a library of free extensions.

    \n

    Whether your vision is big or small, you’re in good company. Hundreds of thousands of small businesses, musicians, venues, restaurants, and non-profits are publishing and promoting their in-person and virtual events with The Events Calendar. Our plugins have also been scaled to work on large networks for Fortune 100 companies, universities, and government institutions.

    \n

    ✨ Features

    \n

    Our feature-rich plugin comes with everything you need to create and manage your calendar.

    \n

    ✔️ Rapidly create events
    \n✔️ Saved venues & organizers
    \n✔️ Calendar month view with tooltips
    \n✔️ Event List view
    \n✔️ Day view
    \n✔️ Block Editor support
    \n✔️ Event search
    \n✔️ Google maps
    \n✔️ Widget: Upcoming events list
    \n✔️ Events Taxonomies (Categories & Tags)
    \n✔️ Google Calendar and iCal exporting
    \n✔️ WP REST API endpoints
    \n✔️ Completely ajaxified for super smooth browsing
    \n✔️ Completely responsive from mobile to tablet to desktop
    \n✔️ Tested on the major theme frameworks such as Avada, Divi, Enfold, Genesis, and many more.
    \n✔️ Increase your SEO with JSON-LD Structured Data
    \n✔️ Internationalized & translated
    \n✔️ Multiple stylesheets to improve integration
    \n✔️ Extensive template tags for customization
    \n✔️ Hooks & filters galore
    \n✔️ Caching support
    \n✔️ Debug mode for developers
    \n✔️ Library of extensions

    \n

    📃 Documentation

    \n

    All of our documentation can be found in our Knowledgebase.

    \n

    Additional helpful links:

    \n\n

    If you have any questions about this plugin, you can post a thread in the WordPress.org forum. Please search existing threads before starting a new one.

    \n

    Add-Ons

    \n

    Take your calendar to the next level by pairing it with our plugins for ticketing, crowdsourcing, email marketing, and more. Learn more about all our products on our website.

    \n

    Our Free Plugins:

    \n

    🎟️ Event Tickets
    \n📐 Advanced Post Manager

    \n

    Our Premium Plugins and Services:

    \n

    Events Calendar PRO
    \n↪️ Event Aggregator (service)
    \n🎟️ Event Tickets Plus
    \n✉️ Promoter
    \n👥 Community Events
    \n✏️ Filter Bar
    \n🗓️ Eventbrite Tickets

    \n

    Help

    \n

    If you aren’t familiar with The Events Calendar, check out our New User Primer. It will have you creating events in no time.

    \n

    Ready to dig deeper? Check out these resources:

    \n\n

    We check in on the The Events Calendar forum here on WordPress.org about once a week to help users with basic troubleshooting and identifying bugs. If you’re looking for premium, personalized support, consider upgrading to Events Calendar Pro.

    \n

    Still have a question? Shoot us an email at support@theeventscalendar.com.

    \n", "donate_link": "https://evnt.is/29", "num_ratings": 2390, "screenshots": {"1": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=2755131", "caption": "Month View with hover"}, "2": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=2755131", "caption": "Mobile Views"}, "3": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=2755131", "caption": "Single event"}, "4": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=2755131", "caption": "List View"}, "5": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-5.png?rev=2755131", "caption": "Event Editor"}, "6": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-6.png?rev=2755131", "caption": "Events admin listing"}, "7": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-7.png?rev=2755131", "caption": "General Settings"}, "8": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-8.png?rev=2755131", "caption": "Display Settings"}, "9": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=2755131", "caption": "CSV Importer"}}, "support_url": "https://wordpress.org/support/plugin/the-events-calendar/", "contributors": {"aguseo": {"avatar": "https://secure.gravatar.com/avatar/0de4fed4ea2fd2347884de250c661a0571a5e025c5952a981d49a06b4cf78b55?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aguseo/", "display_name": "András Guseo"}, "vicskf": {"avatar": "https://secure.gravatar.com/avatar/2a6151d990b5a3c45f1bebb25685cf1845f89e82ce29e2ec14a4f82a9785c4e9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/vicskf/", "display_name": "Victor Zarranz"}, "bordoni": {"avatar": "https://secure.gravatar.com/avatar/e3171496e198834c638911ad3c3220bec77871cdf6557eaa9e2a58d16600a1a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bordoni/", "display_name": "Gustavo Bordoni"}, "borkweb": {"avatar": "https://secure.gravatar.com/avatar/cc19377aa23016d5b6429e2420f71c551032c4397647ec1d418582ed3a8414b5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/borkweb/", "display_name": "Matthew Batchelder"}, "jentheo": {"avatar": "https://secure.gravatar.com/avatar/d7c75e17cffe14f16e231a807e0beb7400863d124cca6ac83ea5fffcaec1ce80?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jentheo/", "display_name": "Jennifer"}, "camwynsp": {"avatar": "https://secure.gravatar.com/avatar/825243412e57fee3f2ac012ed06dc585304018474c281384df5a35aa2f283926?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/camwynsp/", "display_name": "Stephen Page"}, "lucatume": {"avatar": "https://secure.gravatar.com/avatar/a4749105e66f40847bdffd6dc201f937280b9f54f4d348063a5728d17f5ca1dd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lucatume/", "display_name": "lucatume"}, "stellarwp": {"avatar": "https://secure.gravatar.com/avatar/d614d953044e11b41ac7023709e850df4db1005b6845af94909326b25137590c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stellarwp/", "display_name": "StellarWP"}, "zbtirrell": {"avatar": "https://secure.gravatar.com/avatar/9a7363c5cd50c59e5f55f1d528192c4dd240f37e69d6051265a6bbe2e5fbe773?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/zbtirrell/", "display_name": "Zach Tirrell"}, "brianjessee": {"avatar": "https://secure.gravatar.com/avatar/a2a3ad9f38044cc01967b3ae4dbb250282d1f82076b7a6c8c8384dd51e005ec4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brianjessee/", "display_name": "Brian"}, "leahkoerper": {"avatar": "https://secure.gravatar.com/avatar/82a33306f8c3ca72179178253a54f45ab037699e2fef7602f81df5b83b680d6c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/leahkoerper/", "display_name": "leahkoerper"}, "neillmcshea": {"avatar": "https://secure.gravatar.com/avatar/cf54e357ba7733d555025d50a854eac709957e900365460a686451419418b34f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/neillmcshea/", "display_name": "neillmcshea"}, "theeventscalendar": {"avatar": "https://secure.gravatar.com/avatar/435f23ee0f44cdd850b49b16431731ee9995dc2c3f66ce2da24fe11ba49e1dd5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/theeventscalendar/", "display_name": "The Events Calendar"}}, "last_updated": "2025-10-28 5:38pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.10.zip", "author_profile": "https://profiles.wordpress.org/stellarwp/", "business_model": false, "repository_url": "", "upgrade_notice": {"[6.0]": "

    Please see the changelog for the complete list of changes in this release.\nPrevious versions of The Events Calendar are not cross-compatible with 6.X add-ons.\nRemember to always make a backup of your database and files before updating!

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fbc1-70ed-9884-4fb09b307b3d", "name": "The Events Calendar", "slug": "the-events-calendar", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761673080, "version": "6.15.10"}, "support_threads": 92, "requires_plugins": [], "short_description": "The Events Calendar: #1 calendar plugin for WordPress. Create/manage events (virtual too!) on your site with the free plugin.", "author_block_count": 0, "author_block_rating": 86, "commercial_support_url": "", "support_threads_resolved": 86}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1e20-72e9-b13e-b1b963ff4934', 'did:web:api.aspiredev.org:packages:wp-plugin:tinymce-advanced', 'tinymce-advanced', 'Advanced Editor Tools', '

    Advanced Editor Tools (previously TinyMCE Advanced) introduces a “Classic Paragraph” block for the block editor (Gutenberg).
    -If you are not quite ready to switch to the block editor, or have plugins that cannot be used there (yet), using the Classic Paragraph block is your best option. It lets you to continue to use the familiar TinyMCE editor for most tasks, and at the same time gives you full access to all blocks and new features in the block editor.

    -

    Version 5.5 continues to improve and enhance the new features introduced in version 5.0 of the plugin. It includes an improved “Clear Formatting” button, several advanced settings for tables, and importing and exporting of the settings to a file.

    -

    If you want to continue to use the previous (“classic”) editor in WordPress 5.0 and newer, this plugin has an option to replace the new editor with the previous one. If you prefer to have access to both editors side by side or to allow your users to switch editors, it would be better to install the Classic Editor plugin. Advanced Editor Tools is fully compatible with the classic editor plugin and similar plugins that restore use of the previous WordPress editor.

    -

    As always this plugin will let you add, remove and arrange the buttons that are shown on the Visual Editor toolbar in the Classic Paragraph and Classic blocks in the block editor, and in the classic editor (when enabled by a plugin). There you can configure up to four rows of buttons including Font Sizes, Font Family, text and background colors, tables, etc.

    -

    It includes 15 plugins for TinyMCE that are automatically enabled or disabled depending on the buttons you have chosen.
    -In addition this plugin adds options for keeping the paragraph tags in text mode and importing the CSS classes from the theme’s editor-style.css.

    -

    Some of the features added by this plugin

    -
      -
    • “Classic Paragraph” block that can be used instead of or together with the standard Paragraph block.
    • -
    • An option to set the Classic Paragraph or Classic block as the default block in the block editor.
    • -
    • Supports converting of most default blocks to classic paragraphs, and from classic paragraphs back to the default blocks.
    • -
    • Support for creating and editing tables in the Classic blocks and the classic editor.
    • -
    • More options when inserting lists in the Classic blocks and the classic editor.
    • -
    • Search and Replace in the Classic blocks and the classic editor.
    • -
    • Ability to set Font Family and Font Sizes in the Classic blocks and the classic editor.
    • -
    • And many others.
    • -
    -

    Privacy

    -

    Advanced Editor Tools does not collect or store any user related data. It does not set cookies, and it does not connect to any third-party websites. It only uses functionality that is available in WordPress, and in the TinyMCE editor.

    -

    In that terms Advanced Editor Tools does not affect your website’s user privacy in any way.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Advanced Editor Tools", "slug": "tinymce-advanced", "tags": {"editor": "editor", "gutenberg": "gutenberg", "formatting": "formatting", "block-editor": "block-editor", "classic-editor": "classic editor"}, "added": "2007-06-22", "icons": {"1x": "https://ps.w.org/tinymce-advanced/assets/icon-128x128.png?rev=971511", "2x": "https://ps.w.org/tinymce-advanced/assets/icon-256x256.png?rev=971511"}, "author": "Andrew Ozz", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/tinymce-advanced/assets/banner-772x250.png?rev=2390186", "high": "https://ps.w.org/tinymce-advanced/assets/banner-1544x500.png?rev=2390186"}, "ratings": {"1": 28, "2": 3, "3": 10, "4": 25, "5": 284}, "version": "5.9.2", "homepage": "https://wordpress.org/plugins/tinymce-advanced/", "requires": "5.9", "sections": {"faq": "\n
    \nI see an error like: “Failed to load plugin from url…”\n\n

    \n

    These errors are usually caused by the file in question being blocked by some security setting on the server, or (rarely) by caching issues or wrong permissions.

    \n

    The first step to debug this is to try to access the file directly in the browser (i.e. copy the URL and paste in the browser and press Enter).

    \n

    If you see the file (that’s usually minified JS, so it is all on one line) chances are it was some sort of caching issue that is now resolved. Try using the editor again.

    \n

    If you see an HTTP error (like 403 or 500) best would be to contact your web hosting company for help. In some cases deleting and re-installing the plugin may help.

    \n

    \n
    \nTables look different (inline styles are missing) when I insert a table\n\n

    \n

    Please see the new (as of version 5.2.0) advanced settings for tables. It is possible to disable use of inline styles for tables but that would make the table non-resizable in the editor. If the advanced tabs on the table, row, and column dialogs are enabled (default), it will still be possible to enter width and height values which are set as inline styles.

    \n

    \n
    \nNo styles are imported in the Formats sub-menu\n\n

    \n

    These styles are imported from your current theme editor-style.css file. However some themes do not have this functionality. For these themes Advanced Editor Tools has the option to let you add a customized editor-style.css and import it into the editor.

    \n

    \n
    \nI have just installed this plugin, but it does not do anything\n\n

    \n

    Change some buttons on one of the toolbars, save your changes, clear your browser cache, and try again. If that does not work try reloading the Edit page several times while holding down Shift. There may also be a network cache somewhere between you and your host. You may need to wait for a few hours until this cache expires.

    \n

    \n
    \nWhen I add “Smilies”, they do not show in the editor\n\n

    \n

    The “Emoticons” button in TinyMCE adds the codes for the smilies. The actual images are added by WordPress when viewing the Post. Make sure the checkbox “Convert emoticons to graphics on display” in “Options – Writing” is checked.

    \n

    \n
    \nThe plugin does not add any buttons\n\n

    \n

    Make sure the “Disable the visual editor when writing” checkbox under “Users – Your Profile” is not checked.

    \n

    \n
    \nI still see the “old” buttons in the editor\n\n

    \n

    Re-save the settings or click the “Restore Default Settings” button on the plugin settings page and then set the buttons again and save.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Destroys your editing of website when deactivated.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gpotter on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Do not use this plugin. It create a sister paragraph and insert all your content in there. If the it is deactivated, all the content in their container (which they automatically integrate into every page) becomes uneditable - however still viewable to the public. You will have to manually change them all but I''m going to create a workaround.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Quick Take: Advanced Editor Tools - Your Gutenberg Safety Net

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Avir Media (avirmedia) on June 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hey! So I only see one plugin here - Advanced Editor Tools (formerly TinyMCE Advanced). It''s pretty solid if you''re not ready to fully embrace Gutenberg yet. The \"Classic Paragraph\" block is clever - lets you use the old familiar editor within the new one. Great for folks transitioning or with older plugins that don''t play nice with blocks. The table tools and formatting options are handy too. Worth a try if you miss the classic editor!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Helpful Tools

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kiyasugreen.com (kiyasu) on May 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like the added features that comes from this plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tkoc on April 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does exactly what it says on the box.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Time saver!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Matt Rock (mattrock1) on February 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Needed a way to remove some steps clearing formatting. Specifically, span tags in posts. This plugin does exactly what I need it to. Great addition to my Gutenburg toolbar.

    \n\n\n\n

    Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Best Classic Editor Plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Josh Journey (ljosh) on December 16, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Lots of great options for customizing the classic editor and bringing in features I didn''t have before Gutenberg in TinyMCE. Works on the frontend too which is a great treat. It makes for a very enjoyable WP experience.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very handy plugin, indeed!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nealumphred on November 30, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I use the Classic Editor along with the Advanced Editor Tools plugin, which allows me to eliminate redundant editing options in the editor.

    \n\n\n\n

    Very handy plugin, indeed!

    \n\n\n\n

    \n\n\n\n

    Keep on keepin'' on! ...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    very handy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy datto510 on November 11, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    handy little plugin if you need extra ways to improve how your written content looks

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Gives me more control than block editor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aaronlkh on September 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    While the simplicity of block editor is appealing, it just doesn''t give me the level of text formatting control that I''m used to from a word processor. This plug in brings back some word processor formatting functions without disabling Gutenberg. A little buggy at times but can''t write without it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useless plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sushil kumar (sushiltechvision) on July 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useless plugin, updating posts becomes very complicated when used

    \n
    \n
    \n", "changelog": "

    5.9.2

    \n
      \n
    • Fixed a typo in the plugin header version string.
    • \n
    \n

    5.9.1

    \n
      \n
    • Fixed a warning in PHP 8.0 and never.
    • \n
    \n

    5.9.0

    \n
      \n
    • Updated for WordPress 5.9 and newer.
    • \n
    • Removed the Inline text color and Inline text background color side-panels as this functionality is now available in the block editor.
    • \n
    • Removed the side-panel toolbar. The drop-down on the main rich-text toolbar serves the same purpose – to unclutter the toolbar.
    • \n
    • Fixed some small bugs and compatibility issues.
    • \n
    \n

    5.6.0

    \n
      \n
    • Updated for WordPress 5.6 and TinyMCE 4.9.11.
    • \n
    \n

    5.5.1

    \n
      \n
    • Renamed the plugin to Advanced Editor Tools to comply with trademark requirements.
    • \n
    \n

    5.5.0

    \n
      \n
    • Updated for WordPress 5.5 and TinyMCE 4.9.10.
    • \n
    • Updated/renamed the subscript and superscript buttons as these are now in Gutenberg.
    • \n
    • Minor CSS fixes and enhancements.
    • \n
    \n

    5.4.0

    \n
      \n
    • Updated for WordPress 5.4.
    • \n
    • Improved “Reset Table Size” to reset all table elements (tr, th, td, thead, tbody, tfoot).
    • \n
    • Improved “Remove Table Styling” to remove all current and deprecated styling attributes from all table elements.
    • \n
    \n

    5.3.0

    \n
      \n
    • Updated for WordPress 5.3 and TinyMCE 4.9.6.
    • \n
    \n

    5.2.1

    \n
      \n
    • Updated for WordPress 5.2.1 and TinyMCE 4.9.4.
    • \n
    • Fixed resetting of the advanced options on update when all were unselected.
    • \n
    • Fixed and improved keepig of paragraph tags in the Classic block.
    • \n
    \n

    5.2.0

    \n
      \n
    • Updated for WordPress 5.2.
    • \n
    • Updated the buttons settings for the block editor toolbar. There are a few new limitations there: most buttons are now hidden in a drop-down and the users are not allowed to arrange the buttons.
    • \n
    • Added a new advanced settings section for tables. Makes it possible to better configure how tables are edited and whether to disable use of inline CSS styles. Note that disabling inline styles would make the tables non-resizable in the editor.
    • \n
    • Removed the option to enable pasting of image sources in some browsers. It was not working correctly.
    • \n
    • Added a new option to always keep paragraph tags in the Classic Paragraph and Classic blocks in the block editor.
    • \n
    • Updated exporting and importing of the settings. Now settings are exported to a (downloaded) file, and can be restored by uploading a previously exported settings file.
    • \n
    • Improved the block editor Clear Formatting button. If some text is selected, it only clears the styling from that text. If no selection, all styling from the paragraph is cleared.
    • \n
    \n

    5.0.1

    \n
      \n
    • Fixed importing of backed-up settings.
    • \n
    • Updated the FAQ section in the readme.
    • \n
    \n

    5.0.0

    \n
      \n
    • Added several new buttons to the rich-text toolbar in the block editor.
    • \n
    • Added functionality to add, remove and arrange most buttons on the rich-text toolbar in the block editor.
    • \n
    • Added alternative location for buttons for the rich-text component. That lets users move buttons that are not used frequently out of the way.
    • \n
    • Added settings for selected text color and background color.
    • \n
    • Improved fixes and enhancements for the Classic block.
    • \n
    • Improved the Classic Paragraph block and added support for converting from most blocks to classic paragraphs, and converting a classic paragraph into separate blocks.
    • \n
    \n

    4.8.2

    \n
      \n
    • Fixes and improvements for 4.8.1.
    • \n
    • Added separate option to enable the Classic Paragraph block.
    • \n
    • Added converting of most default blocks to classic paragraphs, and from classic paragraphs to default blocks.
    • \n
    \n

    4.8.1

    \n
      \n
    • Updated for WordPress 5.0.
    • \n
    • Added Hybrid Mode for the block editor. Includes a Classic Paragraph block that replaces the default Paragraph block.
    • \n
    • Added option to replace the block editor with the classic editor.
    • \n
    • Added another settings section for configuring the toolbars in the Classic block and the Classic Paragraph block.
    • \n
    • Added some CSS fixed for the Classic block.
    • \n
    • Fixed (removed) setting of inline CSS for table cells when inserting a table. Inline CSS is still added when a table is resized by dragging.
    • \n
    \n

    4.8.0

    \n
      \n
    • Updated for WordPress 4.9.8 and TinyMCE 4.8.0.
    • \n
    \n

    4.7.13

    \n
      \n
    • Updated the table and anchor plugins to 4.7.13 (2018-05-16). Fixes a bug in the table plugin in Edge.
    • \n
    \n

    4.7.11

    \n
      \n
    • Updated for WordPress 4.9.6 and TinyMCE 4.7.11.
    • \n
    \n

    4.6.7

    \n
      \n
    • Fixed compatibility with Gutenberg freeform block.
    • \n
    • Forced refresh of the TinyMCE plugins after activation.
    • \n
    • Updated for WordPress 4.9 and TinyMCE 4.6.7.
    • \n
    \n

    4.6.3

    \n
      \n
    • Updated for WordPress 4.8 and TinyMCE 4.6.3.
    • \n
    \n

    4.5.6

    \n
      \n
    • Updated for WordPress 4.7.4 and TinyMCE 4.5.6.
    • \n
    • Fixed PHP notice after importing settings.
    • \n
    \n

    4.4.3

    \n
      \n
    • Updated for WordPress 4.7 and TinyMCE 4.4.3.
    • \n
    • Fixed missing “Source code” button bug.
    • \n
    \n

    4.4.1

    \n
      \n
    • Updated for WordPress 4.6 and TinyMCE 4.4.1.
    • \n
    • Fixed multisite saving bug.
    • \n
    • Added new button in the Text editor to add or reset the line breaks. Adds line breaks only between tags. Works only when it detects that line breaks are missing so it doesn’t reformat posts with removed paragraphs.
    • \n
    \n

    4.3.10.1

    \n
      \n
    • Fixed adding paragraph tags when loading posts that were saved before turning wpautop off.
    • \n
    • Disabled the (new) inline toolbar for tables as it was overlapping the table in some cases.
    • \n
    \n

    4.3.10

    \n
      \n
    • Updated for WordPress 4.5.1 and TinyMCE 4.3.10.
    • \n
    • Fixed support for adding editor-style.css to themes that don’t have it.
    • \n
    \n

    4.3.8

    \n
      \n
    • Updated for WordPress 4.5 and TinyMCE 4.3.8.
    • \n
    • Separated standard options and admin options.
    • \n
    • Added settings that can disable the plugin for the main editor, other editors in wp-admin or editors on the front-end.
    • \n
    • Korean translation by Josh Kim and Greek translation by Stathis Mellios.
    • \n
    \n

    4.2.8

    \n
      \n
    • Updated for WordPress 4.4 and TinyMCE 4.2.8.
    • \n
    • Japanese translation by Manabu Miwa.
    • \n
    \n

    4.2.5

    \n
      \n
    • Updated for WordPress 4.3.1 and TinyMCE 4.2.5.
    • \n
    • Fixed text domain and plugin headers.
    • \n
    \n

    4.2.3.1

    \n
      \n
    • Fix error with removing the textpattern plugin.
    • \n
    \n

    4.2.3

    \n
      \n
    • Updated for WordPress 4.3 and TinyMCE 4.2.3.
    • \n
    • Removed the textpattern plugin as WordPress 4.3 includes similar functionality by default.
    • \n
    • French translation by Nicolas Schneider.
    • \n
    \n

    4.1.9

    \n
      \n
    • Updated for WordPress 4.2 and TinyMCE 4.1.9.
    • \n
    • Fixed bugs with showing oEmbed previews when pasting an URL.
    • \n
    • Fixed bugs with getting the content from TinyMCE with line breaks.
    • \n
    \n

    4.1.7

    \n
      \n
    • Updated for WordPress 4.1 and TinyMCE 4.1.7.
    • \n
    • Fixed bug where consecutive caption shortcodes may be split with an empty paragraph tag.
    • \n
    \n

    4.1.1

    \n
      \n
    • Fix bug with image captions when wpautop is disabled.
    • \n
    • Add translation support to the settings page. Button names/descriptions are translated from JS using the existing WordPress translation, so this part of the settings page will be translated by default. The other text still needs separate translation.
    • \n
    \n

    4.1

    \n
      \n
    • Updated for WordPress 4.0 and TinyMCE 4.1.
    • \n
    • Add the textpattern plugin that supports some of the markdown syntax while typing, (more info).
    • \n
    • Add the updated ‘table’ plugin that supports background and border color.
    • \n
    \n

    4.0.2

    \n
      \n
    • Fix showing of the second, third and forth button rows when the Toolbar Toggle button is not used.
    • \n
    • Fix adding the directionality plugin when RTL or LTR button is selected.
    • \n
    • Show the ”Advanced Options” to super admins on multisite installs.
    • \n
    • Add the link plugin including link rel setting. Replaces the Insert/Edit Link dialog when enabled.
    • \n
    • Include updated ”table” plugin that has support for vertical align for cells.
    • \n
    \n

    4.0.1

    \n

    Fix warnings on pages other than Edit Post. Update the description.

    \n

    4.0

    \n

    Updated for WordPress 3.9 and TinyMCE 4.0. Refreshed the settings screen. Added support for exporting and importing of the settings.

    \n

    3.5.9.1

    \n

    Updated for WordPress 3.8, fixed auto-embedding of single line URLs when not removing paragraph tags.

    \n

    3.5.9

    \n

    Updated for WordPress 3.7 and TinyMCE 3.5.9.

    \n

    3.5.8

    \n

    Updated for WordPress 3.5 and TinyMCE 3.5.8.

    \n

    3.4.9

    \n

    Updated for WordPress 3.4 and TinyMCE 3.4.9.

    \n

    3.4.5.1

    \n

    Fixed a bug preventing TinyMCE from importing CSS classes from editor-style.css.

    \n

    3.4.5

    \n

    Updated for WordPress 3.3 or later and TinyMCE 3.4.5.

    \n

    3.4.2.1

    \n

    Fix the removal of the media plugin so it does not require re-saving the settings.

    \n

    3.4.2

    \n

    Compatibility with WordPress 3.2 and TinyMCE 3.4.2, removed the options for support for iframe and HTML 5.0 elements as they are supported by default in WordPress 3.2, removed the media plugin as it is included by default.

    \n

    3.3.9.1

    \n

    Added advanced options: stop removing iframes, stop removing HTML 5.0 elements, moved the support for custom editor styles to editor-style.css in the current theme.

    \n

    Attention: if you have a customized tadv-mce.css file and your theme doesn’t have editor-style.css, please download tadv-mce.css, rename it to editor-style.css and upload it to your current theme directory. Alternatively you can add there the editor-style.css from the Twenty Ten theme. If your theme has editor-style.css you can add any custom styles there.

    \n

    3.3.9

    \n

    Compatibility with WordPress 3.1 and TinyMCE 3.3.9, improved P and BR tags option.

    \n

    3.2.7

    \n

    Compatibility with WordPress 2.9 and TinyMCE 3.2.7, several minor bug fixes.

    \n

    3.2.4

    \n

    Compatibility with WordPress 2.8 and TinyMCE 3.2.4, minor bug fixes.

    \n

    3.2

    \n

    Compatibility with WordPress 2.7 and TinyMCE 3.2, minor bug fixes.

    \n

    3.1

    \n

    Compatibility with WordPress 2.6 and TinyMCE 3.1, keeps empty paragraphs when disabling the removal of P and BR tags, the buttons for MCImageManager and MCFileManager can be arranged (if installed).

    \n

    3.0.1

    \n

    Compatibility with WordPress 2.5.1 and TinyMCE 3.0.7, added option to disable the removal of P and BR tags when saving and in the HTML editor (wpautop), added two more buttons to the HTML editor: wpautop and undo, fixed the removal of non-default TinyMCE buttons.

    \n

    3.0

    \n

    Support for WordPress 2.5 and TinyMCE 3.0.

    \n

    2.2

    \n

    Deactivate/Uninstall option page, font size drop-down menu and other small changes.

    \n

    2.1

    \n

    Improved language selection, improved compatibility with WordPress 2.3 and TinyMCE 2.1.1.1, option to override some of the imported css classes and other small improvements and bugfixes.

    \n

    2.0

    \n

    Includes an admin page for arranging the TinyMCE toolbar buttons, easy installation, a lot of bugfixes, customized “Smilies” plugin that uses the built-in WordPress smilies, etc. The admin page uses jQuery and jQuery UI that lets you “drag and drop” the TinyMCE buttons to arrange your own toolbars and enables/disables the corresponding plugins depending on the used buttons.

    \n", "description": "

    Advanced Editor Tools (previously TinyMCE Advanced) introduces a “Classic Paragraph” block for the block editor (Gutenberg).
    \nIf you are not quite ready to switch to the block editor, or have plugins that cannot be used there (yet), using the Classic Paragraph block is your best option. It lets you to continue to use the familiar TinyMCE editor for most tasks, and at the same time gives you full access to all blocks and new features in the block editor.

    \n

    Version 5.5 continues to improve and enhance the new features introduced in version 5.0 of the plugin. It includes an improved “Clear Formatting” button, several advanced settings for tables, and importing and exporting of the settings to a file.

    \n

    If you want to continue to use the previous (“classic”) editor in WordPress 5.0 and newer, this plugin has an option to replace the new editor with the previous one. If you prefer to have access to both editors side by side or to allow your users to switch editors, it would be better to install the Classic Editor plugin. Advanced Editor Tools is fully compatible with the classic editor plugin and similar plugins that restore use of the previous WordPress editor.

    \n

    As always this plugin will let you add, remove and arrange the buttons that are shown on the Visual Editor toolbar in the Classic Paragraph and Classic blocks in the block editor, and in the classic editor (when enabled by a plugin). There you can configure up to four rows of buttons including Font Sizes, Font Family, text and background colors, tables, etc.

    \n

    It includes 15 plugins for TinyMCE that are automatically enabled or disabled depending on the buttons you have chosen.
    \nIn addition this plugin adds options for keeping the paragraph tags in text mode and importing the CSS classes from the theme’s editor-style.css.

    \n

    Some of the features added by this plugin

    \n
      \n
    • “Classic Paragraph” block that can be used instead of or together with the standard Paragraph block.
    • \n
    • An option to set the Classic Paragraph or Classic block as the default block in the block editor.
    • \n
    • Supports converting of most default blocks to classic paragraphs, and from classic paragraphs back to the default blocks.
    • \n
    • Support for creating and editing tables in the Classic blocks and the classic editor.
    • \n
    • More options when inserting lists in the Classic blocks and the classic editor.
    • \n
    • Search and Replace in the Classic blocks and the classic editor.
    • \n
    • Ability to set Font Family and Font Sizes in the Classic blocks and the classic editor.
    • \n
    • And many others.
    • \n
    \n

    Privacy

    \n

    Advanced Editor Tools does not collect or store any user related data. It does not set cookies, and it does not connect to any third-party websites. It only uses functionality that is available in WordPress, and in the TinyMCE editor.

    \n

    In that terms Advanced Editor Tools does not affect your website’s user privacy in any way.

    \n", "screenshots": "
    1. \"Rich-text

      Rich-text toolbar.

    2. \"Rich-text

      Rich-text toolbar and extra formatting buttons in the Inspector (sidebar).

    3. \"Many

      Many of the buttons can be moved to the Formatting section in the Inspector.

    4. \"Converting

      Converting the content of the Classic Paragraph block into separate blocks.

    5. \"Converting

      Converting several paragraph blocks into a Classic Paragraph block.

    6. \"Settings

      Settings for the Rich-text toolbar and the optional Formatting section in the Inspector.

    7. \"Settings

      Settings for the toolbars in Classic Paragraph and Classic blocks.

    8. \"Additional

      Additional options.

    9. \"Advanced

      Advanced options for tables.

    ", "installation": "

    If manual installation is required, please make sure that the plugin files are in a folder named “tinymce-advanced” (not two nested folders) in the WordPress plugins folder, usually “wp-content/plugins”.

    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.1.0.zip", "2.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.2.0.zip", "2.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.2.2.zip", "3.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.2.zip", "4.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.1.zip", "5.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.2.zip", "5.3": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.3.zip", "1.0.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.1.0.1.zip", "3.0.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.0.1.zip", "3.2.4": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.2.4.zip", "3.2.7": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.2.7.zip", "3.3.9": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.3.9.zip", "3.4.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.4.2.zip", "3.4.5": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.4.5.zip", "3.4.9": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.4.9.zip", "3.5.8": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.5.8.zip", "3.5.9": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.5.9.zip", "4.0.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.0.2.zip", "4.1.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.1.1.zip", "4.1.7": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.1.7.zip", "4.1.9": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.1.9.zip", "4.2.3": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.2.3.zip", "4.2.5": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.2.5.zip", "4.2.8": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.2.8.zip", "4.3.8": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.3.8.zip", "4.4.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.4.1.zip", "4.4.3": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.4.3.zip", "4.5.6": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.5.6.zip", "4.6.3": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.6.3.zip", "4.6.7": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.6.7.zip", "4.8.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.8.2.zip", "5.0.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.0.1.zip", "5.1.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.1.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.2.1.zip", "5.4.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.4.0.zip", "5.5.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.5.1.zip", "5.6.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.6.0.zip", "5.9.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/tinymce-advanced.zip", "4.3.10": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.3.10.zip", "4.7.11": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.7.11.zip", "3.3.9.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.3.9.1.zip", "3.3.9.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.3.9.2.zip", "3.4.2.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.4.2.1.zip", "3.4.5.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.4.5.1.zip", "3.5.9.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.5.9.1.zip", "4.2.3.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.2.3.1.zip", "4.3.10.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.3.10.1.zip"}, "downloaded": 34928077, "description": "

    Advanced Editor Tools (previously TinyMCE Advanced) introduces a “Classic Paragraph” block for the block editor (Gutenberg).
    \nIf you are not quite ready to switch to the block editor, or have plugins that cannot be used there (yet), using the Classic Paragraph block is your best option. It lets you to continue to use the familiar TinyMCE editor for most tasks, and at the same time gives you full access to all blocks and new features in the block editor.

    \n

    Version 5.5 continues to improve and enhance the new features introduced in version 5.0 of the plugin. It includes an improved “Clear Formatting” button, several advanced settings for tables, and importing and exporting of the settings to a file.

    \n

    If you want to continue to use the previous (“classic”) editor in WordPress 5.0 and newer, this plugin has an option to replace the new editor with the previous one. If you prefer to have access to both editors side by side or to allow your users to switch editors, it would be better to install the Classic Editor plugin. Advanced Editor Tools is fully compatible with the classic editor plugin and similar plugins that restore use of the previous WordPress editor.

    \n

    As always this plugin will let you add, remove and arrange the buttons that are shown on the Visual Editor toolbar in the Classic Paragraph and Classic blocks in the block editor, and in the classic editor (when enabled by a plugin). There you can configure up to four rows of buttons including Font Sizes, Font Family, text and background colors, tables, etc.

    \n

    It includes 15 plugins for TinyMCE that are automatically enabled or disabled depending on the buttons you have chosen.
    \nIn addition this plugin adds options for keeping the paragraph tags in text mode and importing the CSS classes from the theme’s editor-style.css.

    \n

    Some of the features added by this plugin

    \n
      \n
    • “Classic Paragraph” block that can be used instead of or together with the standard Paragraph block.
    • \n
    • An option to set the Classic Paragraph or Classic block as the default block in the block editor.
    • \n
    • Supports converting of most default blocks to classic paragraphs, and from classic paragraphs back to the default blocks.
    • \n
    • Support for creating and editing tables in the Classic blocks and the classic editor.
    • \n
    • More options when inserting lists in the Classic blocks and the classic editor.
    • \n
    • Search and Replace in the Classic blocks and the classic editor.
    • \n
    • Ability to set Font Family and Font Sizes in the Classic blocks and the classic editor.
    • \n
    • And many others.
    • \n
    \n

    Privacy

    \n

    Advanced Editor Tools does not collect or store any user related data. It does not set cookies, and it does not connect to any third-party websites. It only uses functionality that is available in WordPress, and in the TinyMCE editor.

    \n

    In that terms Advanced Editor Tools does not affect your website’s user privacy in any way.

    \n", "donate_link": "", "num_ratings": 350, "screenshots": {"1": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-1.jpg?rev=2390186", "caption": "Rich-text toolbar."}, "2": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-2.jpg?rev=2390186", "caption": "Rich-text toolbar and extra formatting buttons in the Inspector (sidebar)."}, "3": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-3.jpg?rev=2390186", "caption": "Many of the buttons can be moved to the Formatting section in the Inspector."}, "4": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-4.jpg?rev=2390186", "caption": "Converting the content of the Classic Paragraph block into separate blocks."}, "5": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-5.jpg?rev=2390186", "caption": "Converting several paragraph blocks into a Classic Paragraph block."}, "6": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-6.jpg?rev=2390186", "caption": "Settings for the Rich-text toolbar and the optional Formatting section in the Inspector."}, "7": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-7.jpg?rev=2390186", "caption": "Settings for the toolbars in Classic Paragraph and Classic blocks."}, "8": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-8.jpg?rev=2390186", "caption": "Additional options."}, "9": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-9.jpg?rev=2390186", "caption": "Advanced options for tables."}}, "support_url": "https://wordpress.org/support/plugin/tinymce-advanced/", "contributors": {"azaozz": {"avatar": "https://secure.gravatar.com/avatar/73c1045212929211deda7262005831319397c68d340a8c41d53633b3f7e7f129?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/azaozz/", "display_name": "Andrew Ozz"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}}, "last_updated": "2025-05-02 9:34pm GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.2.zip", "author_profile": "https://profiles.wordpress.org/azaozz/", "business_model": false, "repository_url": "", "upgrade_notice": {"5.2.0": "

    Another large upgrade. Includes advanced options for tables, updated import and export of settings, and further improvements for the block editor.

    "}, "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-fbab-7034-a30d-4eee7d019dcb", "name": "Advanced Editor Tools", "slug": "tinymce-advanced", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1746221640, "version": "5.9.2"}, "support_threads": 3, "requires_plugins": [], "short_description": "Extends and enhances the block editor (Gutenberg) and the classic editor (TinyMCE).", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1e2d-72e4-9cfe-9987a1eb31e1', 'did:web:api.aspiredev.org:packages:wp-plugin:ultimate-addons-for-gutenberg', 'ultimate-addons-for-gutenberg', 'Spectra Gutenberg Blocks – Website Builder for the Block Editor', '

    SPECTRA WEBSITE BUILDER – BEST GUTENBERG BLOCKS PLUGIN TO EXTEND THE WORDPRESS BLOCK EDITOR WITH PAGE EDITING FEATURES, 30+ FREE CUSTOMIZABLE BLOCKS, COMING SOON MODE, POPUP BUILDER

    -

    ★★★★★

    - -

    Most helpful links

    - -

    DESIGN BEAUTIFUL FAST LOADING WEBSITES DIRECTLY ON THE WORDPRESS BLOCK EDITOR (GUTENBERG EDITOR) WITHOUT CODING

    -

    Try the live demo of Spectra

    -

    Our mission is to empower web designers like you with an end-to-end solution for building stunning websites.

    -

    We aim to simplify the website creation process by providing a versatile toolkit within a single plugin, eliminating the need to install multiple plugins for various functionalities.

    -

    With Spectra, we strive to make it extremely easy to use for beginners and feature-rich for experienced designers.

    -

    Spectra equips designers with a wide range of pre-designed website templates, allowing them to effortlessly create professional websites tailored to their unique requirements.

    -

    Beyond just aesthetics, we are committed to optimizing website performance. Spectra offers efficient code and performance-focused features, ensuring that the websites built with our plugin are not only visually appealing but also deliver exceptional speed and smooth functionality.

    -

    By providing an all-in-one solution for building websites, we aim to streamline their workflow and enhance their productivity. We continuously innovate and improve Spectra, integrating cutting-edge technologies and staying ahead of the evolving web design landscape. We empower our users to build websites that captivate, engage, and impress their clients or themselves.

    -

    HERE’S THE IMPORTANT THING ⭐

    -

    Finally, a website builder which allows you to design beautiful and professional-looking websites using the power of the default block editor of WordPress.

    -

    With utmost attention, the developers have ensured that Spectra is easy to use and provides everything you need to design a fully functional website.

    -

    Guess what! 🤩
    -Users of page builders like Elementor and Beaver Builder absolutely LOVE Spectra because of 3 reasons –

    -
      -
    • The code of Spectra is extremely optimized for performance and speed
    • -
    • Spectra designs and features make you look like an expert web designer
    • -
    • There’s zero learning curve as Spectra works on top of the default WordPress block editor.
    • -
    -

    Introducing Spectra – the ultimate solution to revolutionize your web design experience.

    -

    With Spectra, you can power up the block editor with advanced and powerful blocks that simplify the entire process. Say goodbye to the hassle of coding and say hello to effortless website creation.

    -

    Spectra provides a wide range of unique and creative blocks on top of the default WordPress page editor, enabling you to build and design pages or posts without writing a single line of code.

    -

    It offers an easy-to-use interface, customization options, and a library of pre-built website templates to help you build awesome websites in minutes.

    -

    Whether you need to launch an online store or promote your services, Spectra empowers you to build pixel-perfect websites that captivate your audience.

    -

    Don’t let coding complexities hold you back – unlock the potential of block editor with Spectra and build faster, better-performing websites today!

    -

    SOME POWERFUL FEATURES OF SPECTRA 💪

    -
      -
    1. Layouts – Easily move, resize, and hide different sections, rows, columns, and blocks using convenient layout navigation to make your page designing process faster.
    2. -
    3. Designs powered by Starter Templates – Thinking about switching from Elementor templates to a more performance-friendly alternative? Spectra gives you the same level of design flexibility – without the bloat. Spectra offers hundreds of designs to choose from.
    4. -
    5. Wireframes – Before diving into the design process, it’s crucial to create a structure for your website. With Spectra’s Wireframe Blocks, you can quickly create page or website mockups, improving work efficiency and saving time.
    6. -
    7. Block patterns – Import and customize pre-designed block patterns for various sections on your website. Spectra provides a collection of these patterns that can be easily tailored to your preferences.
    8. -
    9. Advanced block presets – Not sure how to design blocks optimally? No worries! Our team of expert designers has created highly converting and visually appealing presets for you to use.
    10. -
    11. Spectra Copy Paste – If you’ve customized a block with specific fonts, colors, spacings, borders, shadows, and animations, you can effortlessly replicate the same design on another block using Spectra Copy Paste feature.
    12. -
    13. Container – Create stunning layouts using the Container block, powered by flexbox technology.
    14. -
    15. Global styling support – Spectra allows you to set the default content width for your website with just a single click. You can also inherit button styles from your theme, maintain consistent container padding throughout your site, and set a default gap between rows and columns.
    16. -
    17. Popup Builder – Grab your audience’s attention or share important notices by designing beautiful popups using our intuitive popup builder.
    18. -
    19. Coming soon mode – Is your website still under construction? Not ready for public viewing yet? Enable the coming soon mode, and only the selected page will be visible to those not logged in.
    20. -
    21. Animations – Add a touch of life and interactivity to your website with Spectra’s wide range of animations. Choose from fade, slide, zoom, flip, zoom in, zoom out, and more. Free users have access to a selection of animations that can be easily applied to any block.
    22. -
    23. Load Google Fonts locally – Optimize your website’s speed and ensure GDPR compliance by enabling this option to download and save Google fonts on your server.
    24. -
    -

    INCLUDES 30+ ESSENTIAL BLOCKS 🔥

    -
      -
    1. Core Blocks – Spectra offers essential blocks that every website and landing page needs. You’ll find blocks like Container, Heading, Image, Icon, Buttons, Info Box, Call To Action, and Countdown, which are crucial for crafting your pages.
    2. -
    3. Creative Blocks – Unleash your creativity with Spectra’s creative blocks. These include Star Ratings, Countdown, Marketing Button, Icon List, Image Gallery, and even support for Lottie Animations. Let your imagination run wild and make your designs truly stand out.
    4. -
    5. Content Blocks – Showcase your content beautifully with Spectra’s content blocks. From Sliders and Image blocks to Content Timelines, Google Maps, Inline Notices, Tabs, Taxonomy Lists, Price Lists, and more, these blocks offer diverse options to present your content in an engaging manner. And if you’re using Spectra Pro, you’ll even have access to the powerful Loop Builder.
    6. -
    7. Post Blocks – Enhance your blog posts with Spectra’s Post Blocks. Add a Counter, Modal Popup, Post Carousel, Post Grid, or Post Timeline to make your blog visually appealing and user-friendly.
    8. -
    9. Social Blocks – Spectra provides blocks that help you showcase your social status. You’ll find blocks like Instagram Feed, Blockquote, Social Share, Team, and Testimonials, which allow you to highlight social proof and engage with your audience effectively.
    10. -
    11. Form Blocks – Create interactive forms easily with Spectra’s Form Blocks. Whether it’s a contact form, newsletter signup, or suggestion form, you can collect valuable leads. You can even enable reCAPTCHA to ensure form security. With Spectra Pro, you can even enable user registration or login forms.
    12. -
    13. SEO Blocks – Boost your website’s search engine optimization with Spectra’s SEO Blocks. These blocks, such as FAQ, How-To, Review, and Table of Contents, are designed to improve your site’s visibility and enhance the user experience.
    14. -
    15. Dynamic Content – Take control of your website’s archive feed with Spectra’s Dynamic Content blocks. You can customize the feed based on dynamic parameters like date, name, category, page, posts, and more, giving you flexibility and customization options.
    16. -
    -

    WHO CAN BENEFIT FROM SPECTRA? 📈

    -
      -
    • Web designers – Want to enhance your website-building process without getting stuck in coding? Spectra’s got your back! With its advanced blocks, you can create stunning layouts and customize elements like a pro, all without writing a single line of code.
    • -
    • Small business owners – Building a professional website for your business just got easier with Spectra. Choose from the pre-built WordPress Templates and customize them to match your branding and content. Say goodbye to costly web development and hello to a beautiful online presence.
    • -
    • Bloggers – Spice up your blog posts with Spectra’s eye-catching elements. Add images, engaging call-to-actions, content timelines, and social sharing blocks to make your content pop. It’s time to captivate your readers and take your blog to the next level.
    • -
    • SEO Specialists – Spectra has schema markup blocks like FAQ, How-To, Review, and Table of Content to boost your website rankings and improve search engine representation. Plus, its lightweight and optimized code ensures your site performs at its best. Get ready to conquer the search results!
    • -
    • eCommerce store owners – Spectra helps you create visually stunning product listings, showcase star ratings and reviews, and display pricing information that will make your customers click that “buy” button. Get ready to take your online store to new heights.
    • -
    • Marketers – Spectra is your secret weapon for creating effective landing pages and promotional materials. Use attention-grabbing blocks like call-to-actions, marketing buttons, and testimonials to drive conversions and engage your target audience. Your campaigns just got a whole lot better.
    • -
    • Freelancers – We’ve got something special for you! Streamline your workflow and save time with Spectra. Quickly build websites for your clients using the pre-built website templates and customize them to meet their requirements. It’s the ultimate toolkit for freelancers.
    • -
    • Podcasters and YouTubers – With Spectra, you can enhance your website or blog with ease. Add a podcast player, embed videos, showcase a content timeline, and create engaging content using the various blocks offered. Let your creativity flow and captivate your audience.
    • -
    • Non-profit organizations – Create visually appealing websites to showcase your cause, share inspiring success stories, and collect donations. Spectra’s image blocks, forms, testimonials, and social sharing options will help you engage your audience and promote your mission effectively.
    • -
    • Restaurant owners – Spectra’s ready-to-use Starter Templates cater specifically to restaurants. Show off your menus, feature customer testimonials, and even integrate a reservation form using the forms block. It’s the secret ingredient to a mouth-watering online presence.
    • -
    • Beginner WordPress users – Spectra’s user-friendly interface, pre-designed WordPress Templates, and comprehensive tutorials make website creation a breeze. No coding skills are needed! You can create professional-looking websites and amaze everyone with your online presence.
    • -
    -

    Anyone thinking of moving away from traditional page builders like Elementor and Divi Builder in favor of WordPress Block Editor (also known as Gutenberg) for a better page-building experience without the need for traditional page builders like Elementor and Divi.

    -

    SOME OF THE WORDPRESS THEMES & PLUGINS SPECTRA SUPPORTS 🔗

    -

    Spectra works with any theme, including:

    -
      -
    • Spectra One
    • -
    • Astra
    • -
    • Blocksy
    • -
    • Flatsome
    • -
    • GeneratePress
    • -
    • Hestia
    • -
    • Kadence
    • -
    • Neve
    • -
    -

    Spectra is compatible with all plugins, including:

    -
      -
    • Easy Digital Downloads
    • -
    • FluentCRM
    • -
    • FluentForm
    • -
    • GiveWP
    • -
    • Gravity Forms
    • -
    • LearnDash
    • -
    • LifterLMS
    • -
    • MemberPress
    • -
    • PrestoPlayer
    • -
    • Restrict Content Pro
    • -
    • SureCart
    • -
    • SureMembers
    • -
    • The Events Calendar
    • -
    • TutorLMS
    • -
    • Wishlist Member
    • -
    • WooCommerce
    • -
    • Yoast SEO
    • -
    • And many more
    • -
    -

    Note: Spectra does not offer Elementor Templates.

    -

    SUPPORT THAT CARES! ⛑️

    -

    We understand the need for a quality product backed by dedicated support that cares. We are here to listen to all your queries and help you make the most out of our plugin.

    -

    Need help? We are just a click away!

    -

    CONNECT WITH OUR TEAM AND COMMUNITY 🌐

    - -

    WANT TO CONTRIBUTE TO THE PLUGIN? 🙋

    -

    You may now contribute to the plugin on Github: Spectra on Github

    -

    Credits

    -

    Our external packages use Rating Star Component that are distributed under the terms of the ISC. While Slick, Lottie and Striptags is distributed under the terms of the MIT. Additionally, we incorporate FontAwesome v6 under the CC BY 4.0 License, and dnd kit licensed under the MIT License.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Spectra Gutenberg Blocks – Website Builder for the Block Editor", "slug": "ultimate-addons-for-gutenberg", "tags": {"block": "block", "blocks": "blocks", "editor": "editor", "gutenberg": "gutenberg", "gutenberg-blocks": "gutenberg blocks"}, "added": "2018-06-13", "icons": {"1x": "https://ps.w.org/ultimate-addons-for-gutenberg/assets/icon-128x128.gif?rev=3240412", "2x": "https://ps.w.org/ultimate-addons-for-gutenberg/assets/icon-256x256.gif?rev=3240412"}, "author": "Brainstorm Force", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/ultimate-addons-for-gutenberg/assets/banner-772x250.jpg?rev=3166947", "high": "https://ps.w.org/ultimate-addons-for-gutenberg/assets/banner-1544x500.jpg?rev=3166947"}, "ratings": {"1": 96, "2": 20, "3": 24, "4": 67, "5": 1589}, "version": "2.19.15", "homepage": "https://www.brainstormforce.com", "requires": "5.6", "sections": {"faq": "\n
    \nWho should use the Spectra?\n\n

    \n

    The Spectra is a complete package of unique and creative blocks that help build beautiful pages and posts on a website. Therefore, it is certainly an asset for all those who love Gutenberg.

    \n

    \n
    \nWhat are the requirements to use the Spectra?\n\n

    \n

    You only need to have the latest version of WordPress on your website, to begin with. The Spectra is basically an addon for the default WordPress editor. Therefore, the latest WordPress installation along with a theme should be enough, to begin with.

    \n

    \n
    \nWhat themes does the Spectra work with?\n\n

    \n

    The Spectra is built to work great with all the themes. But, Astra being among the first ones to be Gutenberg ready, we recommend you to try using Astra since it is lightweight, fast, simple and comes with a lot of options.

    \n

    \n
    \nCan I use the Spectra even while having another Page Builder?\n\n

    \n

    The basic need of the Spectra is the latest WordPress version. We have also made it compatible with all major page builders and therefore, it won’t interfere in their working. Should you need help, you can get in touch with us.

    \n

    \n
    \nCan I use the Spectra on client websites?\n\n

    \n

    Yes! You can certainly use the Spectra on yours as well as your client’s websites.

    \n

    \n
    \nWill the Spectra slow down my website?\n\n

    \n

    Absolutely no! The Spectra is built with ease and performance in mind. Its module architecture and the clean code keep it lightweight and fast. Therefore, it will not affect your website speed and performance in any way.

    \n

    \n
    \nWhat more do I get with the Spectra?\n\n

    \n

    When you use the Spectra along with the free Astra theme, you get a huge library of ready-to-use starter sites that can be imported and used to build your own. Read an article about the Starter Sites with Gutenberg to know more.

    \n

    \n
    \nHow can I report a security bug?\n\n

    \n

    We take plugin security extremely seriously. If you discover a security vulnerability, please report it in a safe and responsible manner.

    \n

    You can report the issue through our Bug Bounty Program.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Muy escondido para actualizar a pro

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy herga on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    He comprado la versión pro completa pero no encuentro actualizar producto a pro, siempre me lleva a pasarela de venta y estoy cansado de tanto buscar. Nio la IA os encuentra. Si no encuentro como actualizar, lamentablemente tendré que disentir los intentos y devolverlo por PayPal. Espero me ayuden y pueda instalarlos. Saludos

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and perfect customer support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy newbusinessvision on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am a \"free\" user of [Spectra Gutenberg Blocks – Website Builder for the Block Editor] - and yet the support helped me very quickly after writing a ticket over the Support Website.
    I am very grateful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Update damages the site but not fixed for 3 months

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Alona Gomez (alonagomez) on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Since releasing version 2.19.11 last July 15, the Image in the slider do not show in the Tablet and Mobile views. I rollback to version 2.19.10 to make it work. This issue was verified by Support in version 2.19.11.

    \n\n\n\n

    Support promised to fix this issue in the next update, but after 3 months and 4 updates, it was not fixed on the latest update. Please fix it immediately, so that we can use the latest version. 

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and efficient support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cybereve on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been using Spectra for many years without any problems. Yesterday, after a mistake on my part, I ran into an issue. I contacted support, and they immediately provided the right solution to restore a stable environment. I really appreciate. thx

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support, beautiful website

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy brntbltz on September 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Spectra is a great plugin. It helped me put together a professional looking site quickly. The support team has been responsive and very helpful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I can't disable the plugin to remove it

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pixer on September 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    the disable button doesn''t work for this plugin.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Error lastest version

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bất động sản kiên giang (batdongsankiengiang) on September 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My website encountered an error after updating to the latest version. I hope the technical team can release a new update to fix the issue

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent and fast support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy indigozeta on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I would like to thank the Spectra team for their quick and helpful support. Thanks to the clear video tutorial, I was able to solve my problem easily even as a rather inexperienced user.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and efficient

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sashimi on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I had an issue with the Spectra plugin, and the support team helped me immediately, detecting and fixing the error on the spot.
    I''m impressed.

    \n\n\n\n

    Sasha

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A must have

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy psychflex on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The Spectra One theme and Spectra plugin are must-haves for full site editing, allowing you to easily create templates and assign them to different pages, among other things. Additionally, the support is excellent, assisting every step of the way in resolving issues that inevitably arise with any WordPress website.

    \n
    \n
    \n", "changelog": "

    2.19.15 – Friday, 3rd October 2025

    \n
      \n
    • This update addressed a security bug. Props to Wordfence for reporting it responsibly to our team.
      \nPlease make sure you are using the latest version on your website.
    • \n
    \n

    2.19.14 – Wednesday, 17th September 2025

    \n
      \n
    • Fix: Removed unused dependencies from the Block Stats Processor.
    • \n
    \n

    2.19.13 – Wednesday, 17th September 2025

    \n
      \n
    • Improvement: Popup Builder – Improved popup creation through REST with role flexibility.
    • \n
    \n

    2.19.12 – Wednesday, 3rd September 2025

    \n
      \n
    • Improvement: Info Box – Alignment options now hide smartly based on icon/image settings.
    • \n
    • Fix: Post – Corrected behavior where invalid pagination on single posts prevented expected redirects.
    • \n
    • Fix: Global – Resolved a conflict where editor upsell assets were interfering with the SureCart price selector block.
    • \n
    \n

    2.19.11 – Tuesday, 15th July 2025

    \n
      \n
    • Fix: Buttons – Resolved an issue wherein the gap between buttons would not work as intended for mobile.
    • \n
    • Fix: Container – Resolved an issue wherein the advanced gradient locations 1 & 2 would not be applied on mobile & tablet.
    • \n
    \n

    2.19.10 – Tuesday, 17th June 2025

    \n
      \n
    • Updated the Zip AI Library.
    • \n
    \n

    2.19.9 – Thursday, 1st May 2025

    \n
      \n
    • Improvement: Added a WP-CLI command for regenerate the assets.
    • \n
    \n

    2.19.8 – Monday, 28th April 2025

    \n
      \n
    • Fix: Container – Resolved an issue where dynamic content fallback images were not being properly applied in the frontend.
    • \n
    • Fix: File Generation documentation link now redirects correctly instead of showing a 404 error.
    • \n
    \n

    2.19.7 – Wednesdays, 16th April 2025

    \n
      \n
    • Improvement: Added compatibility with WordPress v6.8.
    • \n
    • Fix: Tabs – Resolved an issue where the tabs block headers, was not translatable.
    • \n
    • Global: Removed the Spectra banner from the editor based on user feedback to provide a cleaner editing experience.
    • \n
    \n

    2.19.6 – Thursday, 10th April 2025

    \n
      \n
    • Updated the Zip AI Library.
    • \n
    \n

    2.19.5 – Monday, 31st March 2025

    \n
      \n
    • Improvement: Improved code quality.
    • \n
    • Fix: Image Gallery – Resolved an issue wherein lightbox functionality was broken when Imagify’s Next-Gen format option enabled.
    • \n
    • Fix: Global – Optimized block ID processing logic to prevent Allowed memory size errors when nesting patterns.
    • \n
    • Fix: Global – Resolved an issue where custom CSS for background images was not applying correctly on the frontend.
    • \n
    • Fix: Global – Resolved an issue wherein assets were not loading in SureCart’s template parts.
    • \n
    \n

    2.19.4 – Tuesday, 18th March 2025

    \n
      \n
    • Updated the Astra Notices Library.
    • \n
    • Fix: Popup Builder – Resolved an issue wherein the Popup Builder pattern was giving block encountered error message.
    • \n
    \n

    2.19.3 – Tuesday, 11th March 2025

    \n
      \n
    • This update addressed a security bug. Please make sure you are using the latest version on your website.
    • \n
    • Fix: Resolved the asset loading conflict in the SureForms editor.
    • \n
    \n

    2.19.2 – Monday, 10th March 2025

    \n
      \n
    • Improvement: Lottie – Added help text to inform users about the ALLOW_UNFILTERED_UPLOADS constant for JSON file uploads.
    • \n
    • Fix: Forms – Resolved an issue wherein the submit button hover background color is not working as intended on frontend.
    • \n
    • Fix: Popup Builder – Resolved an issue wherein the popup builder page in the admin dashboard throws a console error.
    • \n
    • Fix: Post Masonry – Resolved an issue wherein the Post Masonry block was getting a block recovery issue.
    • \n
    • Fix: Global – Resolved an issue where the Pro installation was not detected when WPML CMS was active.
    • \n
    \n

    The full changelog is available here.

    \n", "description": "

    SPECTRA WEBSITE BUILDER – BEST GUTENBERG BLOCKS PLUGIN TO EXTEND THE WORDPRESS BLOCK EDITOR WITH PAGE EDITING FEATURES, 30+ FREE CUSTOMIZABLE BLOCKS, COMING SOON MODE, POPUP BUILDER

    \n

    ★★★★★

    \n\n

    Most helpful links

    \n\n

    DESIGN BEAUTIFUL FAST LOADING WEBSITES DIRECTLY ON THE WORDPRESS BLOCK EDITOR (GUTENBERG EDITOR) WITHOUT CODING

    \n

    Try the live demo of Spectra

    \n

    Our mission is to empower web designers like you with an end-to-end solution for building stunning websites.

    \n

    We aim to simplify the website creation process by providing a versatile toolkit within a single plugin, eliminating the need to install multiple plugins for various functionalities.

    \n

    With Spectra, we strive to make it extremely easy to use for beginners and feature-rich for experienced designers.

    \n

    Spectra equips designers with a wide range of pre-designed website templates, allowing them to effortlessly create professional websites tailored to their unique requirements.

    \n

    Beyond just aesthetics, we are committed to optimizing website performance. Spectra offers efficient code and performance-focused features, ensuring that the websites built with our plugin are not only visually appealing but also deliver exceptional speed and smooth functionality.

    \n

    By providing an all-in-one solution for building websites, we aim to streamline their workflow and enhance their productivity. We continuously innovate and improve Spectra, integrating cutting-edge technologies and staying ahead of the evolving web design landscape. We empower our users to build websites that captivate, engage, and impress their clients or themselves.

    \n

    HERE’S THE IMPORTANT THING ⭐

    \n

    Finally, a website builder which allows you to design beautiful and professional-looking websites using the power of the default block editor of WordPress.

    \n

    With utmost attention, the developers have ensured that Spectra is easy to use and provides everything you need to design a fully functional website.

    \n

    Guess what! 🤩
    \nUsers of page builders like Elementor and Beaver Builder absolutely LOVE Spectra because of 3 reasons –

    \n
      \n
    • The code of Spectra is extremely optimized for performance and speed
    • \n
    • Spectra designs and features make you look like an expert web designer
    • \n
    • There’s zero learning curve as Spectra works on top of the default WordPress block editor.
    • \n
    \n

    Introducing Spectra – the ultimate solution to revolutionize your web design experience.

    \n

    With Spectra, you can power up the block editor with advanced and powerful blocks that simplify the entire process. Say goodbye to the hassle of coding and say hello to effortless website creation.

    \n

    Spectra provides a wide range of unique and creative blocks on top of the default WordPress page editor, enabling you to build and design pages or posts without writing a single line of code.

    \n

    It offers an easy-to-use interface, customization options, and a library of pre-built website templates to help you build awesome websites in minutes.

    \n

    Whether you need to launch an online store or promote your services, Spectra empowers you to build pixel-perfect websites that captivate your audience.

    \n

    Don’t let coding complexities hold you back – unlock the potential of block editor with Spectra and build faster, better-performing websites today!

    \n

    SOME POWERFUL FEATURES OF SPECTRA 💪

    \n
      \n
    1. Layouts – Easily move, resize, and hide different sections, rows, columns, and blocks using convenient layout navigation to make your page designing process faster.
    2. \n
    3. Designs powered by Starter Templates – Thinking about switching from Elementor templates to a more performance-friendly alternative? Spectra gives you the same level of design flexibility – without the bloat. Spectra offers hundreds of designs to choose from.
    4. \n
    5. Wireframes – Before diving into the design process, it’s crucial to create a structure for your website. With Spectra’s Wireframe Blocks, you can quickly create page or website mockups, improving work efficiency and saving time.
    6. \n
    7. Block patterns – Import and customize pre-designed block patterns for various sections on your website. Spectra provides a collection of these patterns that can be easily tailored to your preferences.
    8. \n
    9. Advanced block presets – Not sure how to design blocks optimally? No worries! Our team of expert designers has created highly converting and visually appealing presets for you to use.
    10. \n
    11. Spectra Copy Paste – If you’ve customized a block with specific fonts, colors, spacings, borders, shadows, and animations, you can effortlessly replicate the same design on another block using Spectra Copy Paste feature.
    12. \n
    13. Container – Create stunning layouts using the Container block, powered by flexbox technology.
    14. \n
    15. Global styling support – Spectra allows you to set the default content width for your website with just a single click. You can also inherit button styles from your theme, maintain consistent container padding throughout your site, and set a default gap between rows and columns.
    16. \n
    17. Popup Builder – Grab your audience’s attention or share important notices by designing beautiful popups using our intuitive popup builder.
    18. \n
    19. Coming soon mode – Is your website still under construction? Not ready for public viewing yet? Enable the coming soon mode, and only the selected page will be visible to those not logged in.
    20. \n
    21. Animations – Add a touch of life and interactivity to your website with Spectra’s wide range of animations. Choose from fade, slide, zoom, flip, zoom in, zoom out, and more. Free users have access to a selection of animations that can be easily applied to any block.
    22. \n
    23. Load Google Fonts locally – Optimize your website’s speed and ensure GDPR compliance by enabling this option to download and save Google fonts on your server.
    24. \n
    \n

    INCLUDES 30+ ESSENTIAL BLOCKS 🔥

    \n
      \n
    1. Core Blocks – Spectra offers essential blocks that every website and landing page needs. You’ll find blocks like Container, Heading, Image, Icon, Buttons, Info Box, Call To Action, and Countdown, which are crucial for crafting your pages.
    2. \n
    3. Creative Blocks – Unleash your creativity with Spectra’s creative blocks. These include Star Ratings, Countdown, Marketing Button, Icon List, Image Gallery, and even support for Lottie Animations. Let your imagination run wild and make your designs truly stand out.
    4. \n
    5. Content Blocks – Showcase your content beautifully with Spectra’s content blocks. From Sliders and Image blocks to Content Timelines, Google Maps, Inline Notices, Tabs, Taxonomy Lists, Price Lists, and more, these blocks offer diverse options to present your content in an engaging manner. And if you’re using Spectra Pro, you’ll even have access to the powerful Loop Builder.
    6. \n
    7. Post Blocks – Enhance your blog posts with Spectra’s Post Blocks. Add a Counter, Modal Popup, Post Carousel, Post Grid, or Post Timeline to make your blog visually appealing and user-friendly.
    8. \n
    9. Social Blocks – Spectra provides blocks that help you showcase your social status. You’ll find blocks like Instagram Feed, Blockquote, Social Share, Team, and Testimonials, which allow you to highlight social proof and engage with your audience effectively.
    10. \n
    11. Form Blocks – Create interactive forms easily with Spectra’s Form Blocks. Whether it’s a contact form, newsletter signup, or suggestion form, you can collect valuable leads. You can even enable reCAPTCHA to ensure form security. With Spectra Pro, you can even enable user registration or login forms.
    12. \n
    13. SEO Blocks – Boost your website’s search engine optimization with Spectra’s SEO Blocks. These blocks, such as FAQ, How-To, Review, and Table of Contents, are designed to improve your site’s visibility and enhance the user experience.
    14. \n
    15. Dynamic Content – Take control of your website’s archive feed with Spectra’s Dynamic Content blocks. You can customize the feed based on dynamic parameters like date, name, category, page, posts, and more, giving you flexibility and customization options.
    16. \n
    \n

    WHO CAN BENEFIT FROM SPECTRA? 📈

    \n
      \n
    • Web designers – Want to enhance your website-building process without getting stuck in coding? Spectra’s got your back! With its advanced blocks, you can create stunning layouts and customize elements like a pro, all without writing a single line of code.
    • \n
    • Small business owners – Building a professional website for your business just got easier with Spectra. Choose from the pre-built WordPress Templates and customize them to match your branding and content. Say goodbye to costly web development and hello to a beautiful online presence.
    • \n
    • Bloggers – Spice up your blog posts with Spectra’s eye-catching elements. Add images, engaging call-to-actions, content timelines, and social sharing blocks to make your content pop. It’s time to captivate your readers and take your blog to the next level.
    • \n
    • SEO Specialists – Spectra has schema markup blocks like FAQ, How-To, Review, and Table of Content to boost your website rankings and improve search engine representation. Plus, its lightweight and optimized code ensures your site performs at its best. Get ready to conquer the search results!
    • \n
    • eCommerce store owners – Spectra helps you create visually stunning product listings, showcase star ratings and reviews, and display pricing information that will make your customers click that “buy” button. Get ready to take your online store to new heights.
    • \n
    • Marketers – Spectra is your secret weapon for creating effective landing pages and promotional materials. Use attention-grabbing blocks like call-to-actions, marketing buttons, and testimonials to drive conversions and engage your target audience. Your campaigns just got a whole lot better.
    • \n
    • Freelancers – We’ve got something special for you! Streamline your workflow and save time with Spectra. Quickly build websites for your clients using the pre-built website templates and customize them to meet their requirements. It’s the ultimate toolkit for freelancers.
    • \n
    • Podcasters and YouTubers – With Spectra, you can enhance your website or blog with ease. Add a podcast player, embed videos, showcase a content timeline, and create engaging content using the various blocks offered. Let your creativity flow and captivate your audience.
    • \n
    • Non-profit organizations – Create visually appealing websites to showcase your cause, share inspiring success stories, and collect donations. Spectra’s image blocks, forms, testimonials, and social sharing options will help you engage your audience and promote your mission effectively.
    • \n
    • Restaurant owners – Spectra’s ready-to-use Starter Templates cater specifically to restaurants. Show off your menus, feature customer testimonials, and even integrate a reservation form using the forms block. It’s the secret ingredient to a mouth-watering online presence.
    • \n
    • Beginner WordPress users – Spectra’s user-friendly interface, pre-designed WordPress Templates, and comprehensive tutorials make website creation a breeze. No coding skills are needed! You can create professional-looking websites and amaze everyone with your online presence.
    • \n
    \n

    Anyone thinking of moving away from traditional page builders like Elementor and Divi Builder in favor of WordPress Block Editor (also known as Gutenberg) for a better page-building experience without the need for traditional page builders like Elementor and Divi.

    \n

    SOME OF THE WORDPRESS THEMES & PLUGINS SPECTRA SUPPORTS 🔗

    \n

    Spectra works with any theme, including:

    \n
      \n
    • Spectra One
    • \n
    • Astra
    • \n
    • Blocksy
    • \n
    • Flatsome
    • \n
    • GeneratePress
    • \n
    • Hestia
    • \n
    • Kadence
    • \n
    • Neve
    • \n
    \n

    Spectra is compatible with all plugins, including:

    \n
      \n
    • Easy Digital Downloads
    • \n
    • FluentCRM
    • \n
    • FluentForm
    • \n
    • GiveWP
    • \n
    • Gravity Forms
    • \n
    • LearnDash
    • \n
    • LifterLMS
    • \n
    • MemberPress
    • \n
    • PrestoPlayer
    • \n
    • Restrict Content Pro
    • \n
    • SureCart
    • \n
    • SureMembers
    • \n
    • The Events Calendar
    • \n
    • TutorLMS
    • \n
    • Wishlist Member
    • \n
    • WooCommerce
    • \n
    • Yoast SEO
    • \n
    • And many more
    • \n
    \n

    Note: Spectra does not offer Elementor Templates.

    \n

    SUPPORT THAT CARES! ⛑️

    \n

    We understand the need for a quality product backed by dedicated support that cares. We are here to listen to all your queries and help you make the most out of our plugin.

    \n

    Need help? We are just a click away!

    \n

    CONNECT WITH OUR TEAM AND COMMUNITY 🌐

    \n\n

    WANT TO CONTRIBUTE TO THE PLUGIN? 🙋

    \n

    You may now contribute to the plugin on Github: Spectra on Github

    \n

    Credits

    \n

    Our external packages use Rating Star Component that are distributed under the terms of the ISC. While Slick, Lottie and Striptags is distributed under the terms of the MIT. Additionally, we incorporate FontAwesome v6 under the CC BY 4.0 License, and dnd kit licensed under the MIT License.

    \n", "installation": "

    Install the Spectra either via the WordPress plugin directory or by uploading the files to your server at wp-content/plugins.

    \n

    You can refer to our getting started article to know more.

    \n

    For more information, please visit our Knowledge Base.

    \n"}, "versions": {"0.0.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.0.0.1.zip", "1.0.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.4.0.zip", "1.5.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.6.2.zip", "1.7.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.7.0.zip", "1.8.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.8.2.zip", "1.9.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.9.1.zip", "2.0.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.2.0.zip", "2.3.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.5.zip", "2.4.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.4.2.zip", "2.5.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.5.1.zip", "2.6.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.8.zip", "2.7.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.9.zip", "2.8.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.8.0.zip", "2.9.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.9.1.zip", "trunk": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.zip", "1.10.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.10.0.zip", "1.11.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.11.0.zip", "1.11.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.11.1.zip", "1.12.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.2.zip", "1.12.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.3.zip", "1.12.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.4.zip", "1.12.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.5.zip", "1.13.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.1.zip", "1.13.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.2.zip", "1.13.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.3.zip", "1.13.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.4.zip", "1.13.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.5.zip", "1.13.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.6.zip", "1.14.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.0.zip", "1.14.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.1.zip", "1.14.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.2.zip", "1.14.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.3.zip", "1.14.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.4.zip", "1.14.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.5.zip", "1.14.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.6.zip", "1.14.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.7.zip", "1.14.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.8.zip", "1.14.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.9.zip", "1.15.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.15.0.zip", "1.15.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.15.1.zip", "1.15.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.15.2.zip", "1.16.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.16.0.zip", "1.16.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.16.1.zip", "1.17.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.17.0.zip", "1.18.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.18.0.zip", "1.18.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.18.1.zip", "1.18.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.18.2.zip", "1.19.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.19.0.zip", "1.20.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.20.0.zip", "1.20.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.20.1.zip", "1.21.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.21.0.zip", "1.21.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.21.1.zip", "1.22.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.0.zip", "1.22.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.1.zip", "1.22.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.2.zip", "1.22.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.3.zip", "1.22.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.4.zip", "1.22.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.5.zip", "1.23.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.0.zip", "1.23.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.1.zip", "1.23.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.2.zip", "1.23.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.3.zip", "1.23.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.4.zip", "1.23.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.5.zip", "1.24.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.24.0.zip", "1.24.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.24.1.zip", "1.24.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.24.2.zip", "1.25.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.0.zip", "1.25.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.1.zip", "1.25.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.2.zip", "1.25.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.3.zip", "1.25.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.4.zip", "1.25.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.5.zip", "1.25.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.6.zip", "2.0.10": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.16.zip", "2.10.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.0.zip", "2.10.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.1.zip", "2.10.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.2.zip", "2.10.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.3.zip", "2.10.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.4.zip", "2.10.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.5.zip", "2.11.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.11.0.zip", "2.11.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.11.1.zip", "2.11.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.11.2.zip", "2.11.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.11.3.zip", "2.11.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.11.4.zip", "2.12.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.0.zip", "2.12.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.1.zip", "2.12.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.2.zip", "2.12.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.3.zip", "2.12.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.4.zip", "2.12.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.5.zip", "2.12.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.6.zip", "2.12.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.7.zip", "2.12.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.8.zip", "2.12.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.9.zip", "2.13.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.0.zip", "2.13.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.1.zip", "2.13.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.2.zip", "2.13.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.3.zip", "2.13.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.4.zip", "2.13.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.5.zip", "2.13.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.6.zip", "2.13.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.7.zip", "2.13.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.8.zip", "2.13.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.9.zip", "2.14.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.14.0.zip", "2.14.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.14.1.zip", "2.15.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.15.0.zip", "2.15.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.15.1.zip", "2.15.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.15.2.zip", "2.15.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.15.3.zip", "2.16.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.0.zip", "2.16.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.1.zip", "2.16.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.2.zip", "2.16.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.3.zip", "2.16.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.4.zip", "2.16.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.5.zip", "2.17.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.17.0.zip", "2.18.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.18.0.zip", "2.18.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.18.1.zip", "2.18.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.18.2.zip", "2.18.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.18.3.zip", "2.19.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.0.zip", "2.19.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.1.zip", "2.19.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.2.zip", "2.19.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.3.zip", "2.19.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.4.zip", "2.19.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.5.zip", "2.19.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.6.zip", "2.19.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.7.zip", "2.19.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.8.zip", "2.19.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.9.zip", "2.7.10": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.10.zip", "2.7.11": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.11.zip", "1.14.10": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.10.zip", "1.14.11": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.11.zip", "2.19.10": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.10.zip", "2.19.11": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.11.zip", "2.19.12": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.12.zip", "2.19.13": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.13.zip", "2.19.14": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.14.zip", "2.19.15": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.15.zip", "2.19.11-beta.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.11-beta.1.zip"}, "downloaded": 36655144, "description": "

    SPECTRA WEBSITE BUILDER – BEST GUTENBERG BLOCKS PLUGIN TO EXTEND THE WORDPRESS BLOCK EDITOR WITH PAGE EDITING FEATURES, 30+ FREE CUSTOMIZABLE BLOCKS, COMING SOON MODE, POPUP BUILDER

    \n

    ★★★★★

    \n\n

    Most helpful links

    \n\n

    DESIGN BEAUTIFUL FAST LOADING WEBSITES DIRECTLY ON THE WORDPRESS BLOCK EDITOR (GUTENBERG EDITOR) WITHOUT CODING

    \n

    Try the live demo of Spectra

    \n

    Our mission is to empower web designers like you with an end-to-end solution for building stunning websites.

    \n

    We aim to simplify the website creation process by providing a versatile toolkit within a single plugin, eliminating the need to install multiple plugins for various functionalities.

    \n

    With Spectra, we strive to make it extremely easy to use for beginners and feature-rich for experienced designers.

    \n

    Spectra equips designers with a wide range of pre-designed website templates, allowing them to effortlessly create professional websites tailored to their unique requirements.

    \n

    Beyond just aesthetics, we are committed to optimizing website performance. Spectra offers efficient code and performance-focused features, ensuring that the websites built with our plugin are not only visually appealing but also deliver exceptional speed and smooth functionality.

    \n

    By providing an all-in-one solution for building websites, we aim to streamline their workflow and enhance their productivity. We continuously innovate and improve Spectra, integrating cutting-edge technologies and staying ahead of the evolving web design landscape. We empower our users to build websites that captivate, engage, and impress their clients or themselves.

    \n

    HERE’S THE IMPORTANT THING ⭐

    \n

    Finally, a website builder which allows you to design beautiful and professional-looking websites using the power of the default block editor of WordPress.

    \n

    With utmost attention, the developers have ensured that Spectra is easy to use and provides everything you need to design a fully functional website.

    \n

    Guess what! 🤩
    \nUsers of page builders like Elementor and Beaver Builder absolutely LOVE Spectra because of 3 reasons –

    \n
      \n
    • The code of Spectra is extremely optimized for performance and speed
    • \n
    • Spectra designs and features make you look like an expert web designer
    • \n
    • There’s zero learning curve as Spectra works on top of the default WordPress block editor.
    • \n
    \n

    Introducing Spectra – the ultimate solution to revolutionize your web design experience.

    \n

    With Spectra, you can power up the block editor with advanced and powerful blocks that simplify the entire process. Say goodbye to the hassle of coding and say hello to effortless website creation.

    \n

    Spectra provides a wide range of unique and creative blocks on top of the default WordPress page editor, enabling you to build and design pages or posts without writing a single line of code.

    \n

    It offers an easy-to-use interface, customization options, and a library of pre-built website templates to help you build awesome websites in minutes.

    \n

    Whether you need to launch an online store or promote your services, Spectra empowers you to build pixel-perfect websites that captivate your audience.

    \n

    Don’t let coding complexities hold you back – unlock the potential of block editor with Spectra and build faster, better-performing websites today!

    \n

    SOME POWERFUL FEATURES OF SPECTRA 💪

    \n
      \n
    1. Layouts – Easily move, resize, and hide different sections, rows, columns, and blocks using convenient layout navigation to make your page designing process faster.
    2. \n
    3. Designs powered by Starter Templates – Thinking about switching from Elementor templates to a more performance-friendly alternative? Spectra gives you the same level of design flexibility – without the bloat. Spectra offers hundreds of designs to choose from.
    4. \n
    5. Wireframes – Before diving into the design process, it’s crucial to create a structure for your website. With Spectra’s Wireframe Blocks, you can quickly create page or website mockups, improving work efficiency and saving time.
    6. \n
    7. Block patterns – Import and customize pre-designed block patterns for various sections on your website. Spectra provides a collection of these patterns that can be easily tailored to your preferences.
    8. \n
    9. Advanced block presets – Not sure how to design blocks optimally? No worries! Our team of expert designers has created highly converting and visually appealing presets for you to use.
    10. \n
    11. Spectra Copy Paste – If you’ve customized a block with specific fonts, colors, spacings, borders, shadows, and animations, you can effortlessly replicate the same design on another block using Spectra Copy Paste feature.
    12. \n
    13. Container – Create stunning layouts using the Container block, powered by flexbox technology.
    14. \n
    15. Global styling support – Spectra allows you to set the default content width for your website with just a single click. You can also inherit button styles from your theme, maintain consistent container padding throughout your site, and set a default gap between rows and columns.
    16. \n
    17. Popup Builder – Grab your audience’s attention or share important notices by designing beautiful popups using our intuitive popup builder.
    18. \n
    19. Coming soon mode – Is your website still under construction? Not ready for public viewing yet? Enable the coming soon mode, and only the selected page will be visible to those not logged in.
    20. \n
    21. Animations – Add a touch of life and interactivity to your website with Spectra’s wide range of animations. Choose from fade, slide, zoom, flip, zoom in, zoom out, and more. Free users have access to a selection of animations that can be easily applied to any block.
    22. \n
    23. Load Google Fonts locally – Optimize your website’s speed and ensure GDPR compliance by enabling this option to download and save Google fonts on your server.
    24. \n
    \n

    INCLUDES 30+ ESSENTIAL BLOCKS 🔥

    \n
      \n
    1. Core Blocks – Spectra offers essential blocks that every website and landing page needs. You’ll find blocks like Container, Heading, Image, Icon, Buttons, Info Box, Call To Action, and Countdown, which are crucial for crafting your pages.
    2. \n
    3. Creative Blocks – Unleash your creativity with Spectra’s creative blocks. These include Star Ratings, Countdown, Marketing Button, Icon List, Image Gallery, and even support for Lottie Animations. Let your imagination run wild and make your designs truly stand out.
    4. \n
    5. Content Blocks – Showcase your content beautifully with Spectra’s content blocks. From Sliders and Image blocks to Content Timelines, Google Maps, Inline Notices, Tabs, Taxonomy Lists, Price Lists, and more, these blocks offer diverse options to present your content in an engaging manner. And if you’re using Spectra Pro, you’ll even have access to the powerful Loop Builder.
    6. \n
    7. Post Blocks – Enhance your blog posts with Spectra’s Post Blocks. Add a Counter, Modal Popup, Post Carousel, Post Grid, or Post Timeline to make your blog visually appealing and user-friendly.
    8. \n
    9. Social Blocks – Spectra provides blocks that help you showcase your social status. You’ll find blocks like Instagram Feed, Blockquote, Social Share, Team, and Testimonials, which allow you to highlight social proof and engage with your audience effectively.
    10. \n
    11. Form Blocks – Create interactive forms easily with Spectra’s Form Blocks. Whether it’s a contact form, newsletter signup, or suggestion form, you can collect valuable leads. You can even enable reCAPTCHA to ensure form security. With Spectra Pro, you can even enable user registration or login forms.
    12. \n
    13. SEO Blocks – Boost your website’s search engine optimization with Spectra’s SEO Blocks. These blocks, such as FAQ, How-To, Review, and Table of Contents, are designed to improve your site’s visibility and enhance the user experience.
    14. \n
    15. Dynamic Content – Take control of your website’s archive feed with Spectra’s Dynamic Content blocks. You can customize the feed based on dynamic parameters like date, name, category, page, posts, and more, giving you flexibility and customization options.
    16. \n
    \n

    WHO CAN BENEFIT FROM SPECTRA? 📈

    \n
      \n
    • Web designers – Want to enhance your website-building process without getting stuck in coding? Spectra’s got your back! With its advanced blocks, you can create stunning layouts and customize elements like a pro, all without writing a single line of code.
    • \n
    • Small business owners – Building a professional website for your business just got easier with Spectra. Choose from the pre-built WordPress Templates and customize them to match your branding and content. Say goodbye to costly web development and hello to a beautiful online presence.
    • \n
    • Bloggers – Spice up your blog posts with Spectra’s eye-catching elements. Add images, engaging call-to-actions, content timelines, and social sharing blocks to make your content pop. It’s time to captivate your readers and take your blog to the next level.
    • \n
    • SEO Specialists – Spectra has schema markup blocks like FAQ, How-To, Review, and Table of Content to boost your website rankings and improve search engine representation. Plus, its lightweight and optimized code ensures your site performs at its best. Get ready to conquer the search results!
    • \n
    • eCommerce store owners – Spectra helps you create visually stunning product listings, showcase star ratings and reviews, and display pricing information that will make your customers click that “buy” button. Get ready to take your online store to new heights.
    • \n
    • Marketers – Spectra is your secret weapon for creating effective landing pages and promotional materials. Use attention-grabbing blocks like call-to-actions, marketing buttons, and testimonials to drive conversions and engage your target audience. Your campaigns just got a whole lot better.
    • \n
    • Freelancers – We’ve got something special for you! Streamline your workflow and save time with Spectra. Quickly build websites for your clients using the pre-built website templates and customize them to meet their requirements. It’s the ultimate toolkit for freelancers.
    • \n
    • Podcasters and YouTubers – With Spectra, you can enhance your website or blog with ease. Add a podcast player, embed videos, showcase a content timeline, and create engaging content using the various blocks offered. Let your creativity flow and captivate your audience.
    • \n
    • Non-profit organizations – Create visually appealing websites to showcase your cause, share inspiring success stories, and collect donations. Spectra’s image blocks, forms, testimonials, and social sharing options will help you engage your audience and promote your mission effectively.
    • \n
    • Restaurant owners – Spectra’s ready-to-use Starter Templates cater specifically to restaurants. Show off your menus, feature customer testimonials, and even integrate a reservation form using the forms block. It’s the secret ingredient to a mouth-watering online presence.
    • \n
    • Beginner WordPress users – Spectra’s user-friendly interface, pre-designed WordPress Templates, and comprehensive tutorials make website creation a breeze. No coding skills are needed! You can create professional-looking websites and amaze everyone with your online presence.
    • \n
    \n

    Anyone thinking of moving away from traditional page builders like Elementor and Divi Builder in favor of WordPress Block Editor (also known as Gutenberg) for a better page-building experience without the need for traditional page builders like Elementor and Divi.

    \n

    SOME OF THE WORDPRESS THEMES & PLUGINS SPECTRA SUPPORTS 🔗

    \n

    Spectra works with any theme, including:

    \n
      \n
    • Spectra One
    • \n
    • Astra
    • \n
    • Blocksy
    • \n
    • Flatsome
    • \n
    • GeneratePress
    • \n
    • Hestia
    • \n
    • Kadence
    • \n
    • Neve
    • \n
    \n

    Spectra is compatible with all plugins, including:

    \n
      \n
    • Easy Digital Downloads
    • \n
    • FluentCRM
    • \n
    • FluentForm
    • \n
    • GiveWP
    • \n
    • Gravity Forms
    • \n
    • LearnDash
    • \n
    • LifterLMS
    • \n
    • MemberPress
    • \n
    • PrestoPlayer
    • \n
    • Restrict Content Pro
    • \n
    • SureCart
    • \n
    • SureMembers
    • \n
    • The Events Calendar
    • \n
    • TutorLMS
    • \n
    • Wishlist Member
    • \n
    • WooCommerce
    • \n
    • Yoast SEO
    • \n
    • And many more
    • \n
    \n

    Note: Spectra does not offer Elementor Templates.

    \n

    SUPPORT THAT CARES! ⛑️

    \n

    We understand the need for a quality product backed by dedicated support that cares. We are here to listen to all your queries and help you make the most out of our plugin.

    \n

    Need help? We are just a click away!

    \n

    CONNECT WITH OUR TEAM AND COMMUNITY 🌐

    \n\n

    WANT TO CONTRIBUTE TO THE PLUGIN? 🙋

    \n

    You may now contribute to the plugin on Github: Spectra on Github

    \n

    Credits

    \n

    Our external packages use Rating Star Component that are distributed under the terms of the ISC. While Slick, Lottie and Striptags is distributed under the terms of the MIT. Additionally, we incorporate FontAwesome v6 under the CC BY 4.0 License, and dnd kit licensed under the MIT License.

    \n", "donate_link": "https://www.paypal.me/BrainstormForce", "num_ratings": 1796, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg/", "contributors": {"brainstormforce": {"avatar": "https://secure.gravatar.com/avatar/b9280ac641a862e2e148513dfb9567e56a273b649dbfad5df6867d4700a685d2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brainstormforce/", "display_name": "Brainstorm Force"}}, "last_updated": "2025-10-03 6:23am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.15.zip", "author_profile": "https://profiles.wordpress.org/brainstormforce/", "business_model": false, "repository_url": "", "upgrade_notice": {"2.7.3": "

    We've optimized the internal structure of Spectra in this update. To ensure your website's safety, We recommend that you backup your website before updating.

    ", "2.7.4": "

    With WordPress 6.3 no longer supporting older versions of PHP, the next Spectra release will also require a minimum of PHP 7.4. For websites running on older version of PHP, we strongly recommend upgrading to PHP 7.4 or above to ensure optimal performance and compatibility.

    ", "2.14.1": "

    With WordPress 6.6 introducing the command palette and taking a place at the top of the editor, we had to retire the 'Move Title to Top' functionality in Spectra. However, there's no need for concern. After updating Spectra, the title in your editor will gracefully return to its default position.

    ", "2.18.2": "

    The Google Fonts library in Spectra has been updated in this version. Please check your font selections to replace any deprecated fonts and explore the new additions.

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fbaf-714d-8974-da6f8401463b", "name": "Spectra Gutenberg Blocks – Website Builder for the Block Editor", "slug": "ultimate-addons-for-gutenberg", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1759472580, "version": "2.19.15"}, "support_threads": 17, "requires_plugins": [], "short_description": "Power-up Gutenberg with advanced blocks for faster website creation. Build your WordPress website effortlessly using powerful building blocks!", "author_block_count": 1, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 13}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1e3d-7338-a6ca-bd81b40f2a66', 'did:web:api.aspiredev.org:packages:wp-plugin:under-construction-page', 'under-construction-page', 'Under Construction', '

    Create an Under Construction Page, Maintenance Mode Page, Coming Soon Page or a Landing Page that takes less than a minute to install & configure. Under Construction won’t waste your time! It’s simple, fast, efficient & user-friendly with great templates users love. Under Construction uses Bunny Fonts for GDPR compatibility.

    - -
    -

    PRO version offers more than 50 extra features and options including the drag&drop builder, over a million hi-res searchable images, 300+ templates, affiliate&traffic tracking, advanced access control, MailChimp, Zapier & universal autoresponder integration, white-label license mode and priority support. Find out more on the official plugin site.

    -
    -

    A simple, no-nonsense under construction plugin for all those situations when you have to hide the site behind an Under Construction page for a while. Live examples are available on the Under Construction website. Give us a shout on Twitter @WebFactoryLtd or check out the video.

    -

    Thanks to our partnership with Weglot, UCP is fully multilanguage ready and you can instantly translate your under construction page to 100+ languages with one click.

    -

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL and fix SSL issues.

    -

    Options

    -
      -
    • Under construction mode – on / off
    • -
    • Automatic End date & time – automatically disable under construction mode on a set date
    • -
    • Google Analytics Tracking ID – enable tracking via Google Analytics
    • -
    • Theme – test all available themes (200+)
    • -
    • Custom CSS – adjust any part of the page to fit your needs
    • -
    • Title – page title, for SEO
    • -
    • Description – page description, for SEO
    • -
    • Headline – main headline/title
    • -
    • Content – anything you need to display
    • -
    • Optin box, optin popup – collect leads and emails and sync with MailChimp and other autoresponders
    • -
    • Login Button – show a discrete link to the login form, or WP admin if you’re logged in
    • -
    • Social icons/links – new ones are added with every update; let us know if we missed your favorite ones -
        -
      • Facebook
      • -
      • Twitter
      • -
      • LinkedIn
      • -
      • YouTube
      • -
      • Vimeo
      • -
      • Pinterest
      • -
      • Dribbble
      • -
      • Behance
      • -
      • Instagram
      • -
      • Email
      • -
      • Phone
      • -
      • Skype
      • -
      • Telegram
      • -
      • WhatsApp
      • -
      • Tumblr
      • -
      • VK
      • -
      -
    • -
    • Whitelisted User Roles – user roles who see the site, instead of under construction page
    • -
    • Whitelisted Users – users who see the site, instead of under construction page
    • -
    -

    Under Construction Page is compatible with the following caching plugins: W3 Total Cache, WP Super Cache, Endurance Page Cache, SiteGround SuperCacher, WP Fastest Cache, Swift Performance Cache, WP Rocket, Cache Enabler, and Hummingbird cache.

    -

    What are others saying about the Under Construction Page plugin

    -
      -
    • WHSR wrote an in-depth guide on how to “Grow Your Blog Before It Is Born” featuring Under Construction Page
    • -
    • John Fraskos from Codestag says it’s “very friendly and easy to use”
    • -
    • WP Pluginsify wrote a review
    • -
    • Erik from NoPassiveIncome points out: “plugin is so easy and quick to use”
    • -
    • Planet WP gave it 5/5 stars
    • -
    • FirstSiteGuide says: “a perfect choice”
    • -
    • WPblog wrote a review as well
    • -
    • WP TopDog had Daniel explain how to use the Under Construction Page
    • -
    -

    GDPR Compatibility
    -We are not lawyers. Please do not take any of the following as legal advice.
    -Under Construction plugin uses Bunny Fonts on the front end, and in the admin. Usage of the Google Analytics service is optional. No other resources are loaded from or shared with 3rd parties. Opting to use Bunny Fonts and/or Google Analytics will result in data sharing/tracking as described in their terms of service.
    -If you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Under Construction", "slug": "under-construction-page", "tags": {"coming-soon-mode": "coming soon mode", "coming-soon-page": "coming soon page", "under-construction": "under construction", "under-construction-mode": "under construction mode", "under-construction-page": "under construction page"}, "added": "2013-12-01", "icons": {"1x": "https://ps.w.org/under-construction-page/assets/icon-128x128.gif?rev=2284852", "2x": "https://ps.w.org/under-construction-page/assets/icon-256x256.gif?rev=2284849"}, "author": "WebFactory", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/under-construction-page/assets/banner-772x250.png?rev=1575797", "high": "https://ps.w.org/under-construction-page/assets/banner-1544x500.png?rev=1628376"}, "ratings": {"1": 44, "2": 9, "3": 9, "4": 54, "5": 1166}, "version": "4.03", "homepage": "https://underconstructionpage.com/", "requires": "4.0", "sections": {"faq": "\n
    \nWho is this plugin for?\n\n

    \n

    For anyone who wants to display a under construction / maintenance page while they’re doing work on their site.

    \n

    \n
    \nWill this plugin slow my site down?\n\n

    \n

    Absolutely not.

    \n

    \n
    \nWill it work on my theme?\n\n

    \n

    Sure! Under construction works 100% with all themes.

    \n

    \n
    \nWill it work with my plugins?\n\n

    \n

    Sure! It works 100% with all plugins.

    \n

    \n
    \nWhat changes will it make to my site?\n\n

    \n

    None. Once you disable the under construction page your site will function as it did before.

    \n

    \n
    \nIt’s not working!!! Arrrrrrrrr\n\n

    \n

    We did our very best to make Under Construction compatible with all plugins and themes, but problems can still happen. No worries, head over to the support forum open a new thread, and we’ll help you ASAP.

    \n

    \n
    \nHow can I work on my site while under construction mode is enabled?\n\n

    \n

    Make sure your user role (probably admin) is selected under Access – Whitelisted User Roles option and open the site while logged in.

    \n

    \n
    \nHow can I log in / access WordPress admin after under construction mode has been enabled?\n\n

    \n

    Enable the Login Button option (found in Content tab), and a login link will be shown in the lower right corner of the under construction page.

    \n

    \n
    \nHow do I add my logo to the page?\n\n

    \n

    Head over to the Content tab and click “Add Media”. Upload/select the logo, position it as you see fit and add other content.

    \n

    \n
    \nI’ve made changes to UCP, but they are not visible. What do I do?\n\n

    \n

    Click “Save Changes” one more time. Open your site and force refresh browser cache (Ctrl or Shift + F5). If that doesn’t help it means you have a caching plugin installed. Purge/delete cache in that plugin or disable it.

    \n

    \n
    \nHow can I get more designs? Where do I download them?\n\n

    \n

    We update the plugin every 7-10 days and each update comes with at least one new theme/design. There is no other way to get more designs nor a place to download them.

    \n

    \n
    \nHow can I edit designs?\n\n

    \n

    There is an option to add custom CSS. If you want more than that you will have to edit the source files located in /under-construction-page/themes/.

    \n

    \n
    \nI have disabled UCP but the under construction page is still visible. How do I remove it?\n\n

    \n

    Open your site and force refresh browser cache (Ctrl or Shift + F5). If that doesn’t help it means you have a caching plugin installed. Purge/delete cache in that plugin or disable it. If that fails too contact your hosting provider and ask them to empty the site cache for you.

    \n

    \n
    \nIs UCP compatible with caching plugins?\n\n

    \n

    UCP is compatible with all caching plugins. However, please note that we automatically empty cache when UCP status is changed only for the following plugins: W3 Total Cache, WP Super Cache, Endurance Page Cache, SiteGround SuperCacher and WP Fastest Cache.

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Valet Parking Companies templates are beautiful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy valetparkingdubai on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Never seen such beautiful websites in the category of cars and valet parking. As a part of 1st Class Valet parking company in Dubai, I must say all the web templates that are associated with hospitality, Dubai and cars are beautiful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    professional plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy matematikbitmistir on September 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    <font dir=\"auto\" style=\"vertical-align: inherit;\"><font dir=\"auto\" style=\"vertical-align: inherit;\">matematikbitmistir.com Websitem için kullandım ve harika bir deneyimdi.</font></font>

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy what1 on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin is great, fast and easy install and setup, works as it should. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Everything is PRO

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy markozi on August 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The free version is practically useless – key features, including basic things like the \"secret link\", are locked behind the PRO version. This feels more like bait to buy than an actual free tool. If they keep all the important features in PRO anyway, they should just clearly state it’s only a demo.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Too many settings

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Nicu Danciu on June 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Too many settings to setup a single Under Construction Page. Almost everybody needs a simple setup with one click and one row of text, but here you need to include or exclude list of people. No, these is not what we need.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Use it on all my sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sekirk on May 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just a great plugin, does the job well without much fuss.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    getting this annoying popup as the admin when editing the page

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bawa98 on March 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    im getting this annoying popup as the admin that the site is under construction when i edit the page with elementor, that can not be closed

    \n\n\n\n


    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    For building your own design need to be pro?

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy locker17 on February 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Honestly??

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    not working

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy azumadigital on February 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    not working at all

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    As a PRO user: Switch to CMP plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Eduardo Sans (mouskeen) on August 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I normally don''t leave such harsh reviews but man! is this bad.

    \n\n\n\n

    I make sites for a living so I take this very seriously. I made the mistake of buying the lifetime license (oh my god) and let me give you a crash course of my experience on working over approximately 20 sites this last year:

    \n\n\n\n

    1- Design breaking inside the page when enabling the plugin (there is a bug when interacting with Elements in Generatepress Pro). Imagine the implications: clients complaining about design magically looking different, etc... A definite red flag that has a very random behavior (sometimes it breaks, sometimes it doesn''t, just like that).
    2- Cookie notice popping up in front of the \"Under construction\" page -instead of hiding it- (you''ll find the same issue if you use CookieYes plugin)
    3- I asked support to review all these issues... and let me tell you, support sucks, the worst I had in a paid plugin. You know the kind of perdon that \"kind of\" reads whatever you send him and then they half-answer you with lies? well, his response was: \"this is a third party plugin issue\"... YES... of course, a third party plugin that crushes with your crappy old code.
    4- Also, check the changelog (one or two updates per year, that already tells you a lot about the work put behind).

    \n\n\n\n

    All in all, don''t make my mistake. This is what I did:

    \n\n\n\n

    Switch to CMP (Coming Soon & Maintenance Plugin) that is FREE (with no PRO or paid version). Once installed, it automatically solved all the issues with Generatepress and CookieYes from the get go.

    \n\n\n\n

    On top of that, offers way more customization and options are 10 times better. I guess that in the end, this was not a \"third party plugin issue\" huh Ivan? Lol

    \n
    \n
    \n", "changelog": "

    4.03

    \n
      \n
    • 2025/08/10
    • \n
    • expanded list of allowed CSS properties in Custom CSS
    • \n
    \n

    4.02

    \n
      \n
    • 2025/02/10
    • \n
    • fixed !doctype missing
    • \n
    • added robots meta tag
    • \n
    • minor security fixes
    • \n
    \n

    4.01

    \n
      \n
    • 2024/07/08
    • \n
    • minor security fixes
    • \n
    \n

    4.00

    \n
      \n
    • 2024/04/11
    • \n
    • updated Google Analytics tracking code
    • \n
    • fixed 2 templates so jquery is not loaded remotely
    • \n
    \n

    3.99

    \n
      \n
    • 2024/02/17
    • \n
    • fixed some template tags getting stripped by wp_kses
    • \n
    \n

    3.98

    \n
      \n
    • 2024/01/29
    • \n
    • fixed notice popup close button
    • \n
    \n

    3.97

    \n
      \n
    • 2023/02/10
    • \n
    • nonce fixes; thank you Wordfence!
    • \n
    \n

    3.96

    \n
      \n
    • 2023/01/16
    • \n
    • changes in PRO prices
    • \n
    • code cleanup
    • \n
    • minor compatibility fix
    • \n
    \n

    3.95

    \n
      \n
    • 2022/11/22
    • \n
    • Google Fonts replaced with GDPR friendly Bunny Fonts
    • \n
    \n

    3.93

    \n
      \n
    • 2022/04/13
    • \n
    • Fix for escaping HTML that shouldn’t be escaped
    • \n
    \n

    3.92

    \n
      \n
    • 2022/01/13
    • \n
    • Google Analytics fix
    • \n
    • sorry for the multiple updates 🙁
    • \n
    \n

    3.91

    \n
      \n
    • 2022/01/12
    • \n
    • fix for Weglot integration
    • \n
    \n

    3.90

    \n
      \n
    • 2022/01/05
    • \n
    • security fixes
    • \n
    • added ad for our WP Force SSL plugin
    • \n
    \n

    3.89

    \n
      \n
    • 2021/07/23
    • \n
    • bug fix for Weglot
    • \n
    \n

    3.88

    \n
      \n
    • 2021/02/20
    • \n
    • 500,000 installations hit on 2021/01/31
    • \n
    • added support for Cache Enabler plugin
    • \n
    \n

    3.87

    \n
      \n
    • 2021/01/30
    • \n
    • removed promo for WF plugins
    • \n
    \n

    3.86

    \n
      \n
    • 2021/01/20
    • \n
    • security fixes
    • \n
    • added quick links button
    • \n
    \n

    3.85

    \n
      \n
    • 2021/01/13
    • \n
    • removed Google+
    • \n
    • removed WP 301 Redirects promo campaign
    • \n
    \n

    3.83

    \n
      \n
    • 2020/10/27
    • \n
    • removed automatic PRO license activation
    • \n
    \n

    3.82

    \n
      \n
    • 2020/10/01
    • \n
    • minor fixes
    • \n
    • added promo for WP 301 Redirects
    • \n
    \n

    3.81

    \n
      \n
    • 2020/08/20
    • \n
    • bug fixes
    • \n
    \n

    3.80

    \n
      \n
    • 2020/06/17
    • \n
    • more cache handling improvements
    • \n
    • stripped HTML from page title and description
    • \n
    \n

    3.75

    \n
      \n
    • 2020/04/15
    • \n
    • better cache handling
    • \n
    \n

    3.70

    \n
      \n
    • 2020/03/27
    • \n
    • minor bug fixes
    • \n
    • removed Security Ninja ads
    • \n
    • 400,000 installations hit on 2019-12-06
    • \n
    • for older changelog entries please refer to https://underconstructionpage.com/old-changelog.txt
    • \n
    \n", "description": "

    Create an Under Construction Page, Maintenance Mode Page, Coming Soon Page or a Landing Page that takes less than a minute to install & configure. Under Construction won’t waste your time! It’s simple, fast, efficient & user-friendly with great templates users love. Under Construction uses Bunny Fonts for GDPR compatibility.

    \n\n
    \n

    PRO version offers more than 50 extra features and options including the drag&drop builder, over a million hi-res searchable images, 300+ templates, affiliate&traffic tracking, advanced access control, MailChimp, Zapier & universal autoresponder integration, white-label license mode and priority support. Find out more on the official plugin site.

    \n
    \n

    A simple, no-nonsense under construction plugin for all those situations when you have to hide the site behind an Under Construction page for a while. Live examples are available on the Under Construction website. Give us a shout on Twitter @WebFactoryLtd or check out the video.

    \n

    Thanks to our partnership with Weglot, UCP is fully multilanguage ready and you can instantly translate your under construction page to 100+ languages with one click.

    \n

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL and fix SSL issues.

    \n

    Options

    \n
      \n
    • Under construction mode – on / off
    • \n
    • Automatic End date & time – automatically disable under construction mode on a set date
    • \n
    • Google Analytics Tracking ID – enable tracking via Google Analytics
    • \n
    • Theme – test all available themes (200+)
    • \n
    • Custom CSS – adjust any part of the page to fit your needs
    • \n
    • Title – page title, for SEO
    • \n
    • Description – page description, for SEO
    • \n
    • Headline – main headline/title
    • \n
    • Content – anything you need to display
    • \n
    • Optin box, optin popup – collect leads and emails and sync with MailChimp and other autoresponders
    • \n
    • Login Button – show a discrete link to the login form, or WP admin if you’re logged in
    • \n
    • Social icons/links – new ones are added with every update; let us know if we missed your favorite ones\n
        \n
      • Facebook
      • \n
      • Twitter
      • \n
      • LinkedIn
      • \n
      • YouTube
      • \n
      • Vimeo
      • \n
      • Pinterest
      • \n
      • Dribbble
      • \n
      • Behance
      • \n
      • Instagram
      • \n
      • Email
      • \n
      • Phone
      • \n
      • Skype
      • \n
      • Telegram
      • \n
      • WhatsApp
      • \n
      • Tumblr
      • \n
      • VK
      • \n
      \n
    • \n
    • Whitelisted User Roles – user roles who see the site, instead of under construction page
    • \n
    • Whitelisted Users – users who see the site, instead of under construction page
    • \n
    \n

    Under Construction Page is compatible with the following caching plugins: W3 Total Cache, WP Super Cache, Endurance Page Cache, SiteGround SuperCacher, WP Fastest Cache, Swift Performance Cache, WP Rocket, Cache Enabler, and Hummingbird cache.

    \n

    What are others saying about the Under Construction Page plugin

    \n
      \n
    • WHSR wrote an in-depth guide on how to “Grow Your Blog Before It Is Born” featuring Under Construction Page
    • \n
    • John Fraskos from Codestag says it’s “very friendly and easy to use”
    • \n
    • WP Pluginsify wrote a review
    • \n
    • Erik from NoPassiveIncome points out: “plugin is so easy and quick to use”
    • \n
    • Planet WP gave it 5/5 stars
    • \n
    • FirstSiteGuide says: “a perfect choice”
    • \n
    • WPblog wrote a review as well
    • \n
    • WP TopDog had Daniel explain how to use the Under Construction Page
    • \n
    \n

    GDPR Compatibility
    \nWe are not lawyers. Please do not take any of the following as legal advice.
    \nUnder Construction plugin uses Bunny Fonts on the front end, and in the admin. Usage of the Google Analytics service is optional. No other resources are loaded from or shared with 3rd parties. Opting to use Bunny Fonts and/or Google Analytics will result in data sharing/tracking as described in their terms of service.
    \nIf you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    \n", "screenshots": "
    1. \"Build

      Build an under construction page in less than a minute with over 30 themes

    2. \"Under

      Under Construction Text theme

    3. \"Mad

      Mad Designer theme

    4. \"Plain

      Plain Text theme

    5. \"Under

      Under Construction theme

    6. \"Things

      Things Went Dark theme

    7. \"Forklift

      Forklift at Work theme

    8. \"Cyber

      Cyber Chick theme

    9. \"Rocket

      Rocket Launch theme

    10. \"Loader

      Loader at Work theme

    11. \"Cyber

      Cyber Chick Dark theme

    12. \"Safe

      Safe theme

    13. \"People

      People at Work theme

    14. \"Windmill

      Windmill theme

    15. \"Sad

      Sad Site theme

    16. \"Lighthouse\"

      Lighthouse

    17. \"Hot

      Hot Air Balloon

    18. \"People

      People at Work #2 theme

    19. \"Rocket

      Rocket Launch #2 theme

    20. \"Light

      Light Bulb theme

    21. \"Ambulance

      Ambulance theme

    22. \"Laptop

      Laptop theme

    23. \"Puzzles

      Puzzles theme contributed by Ralf Biester

    24. \"Internet

      Internet of Things

    25. \"Setup

      Setup theme

    26. \"Stop

      Stop theme

    27. \"Clock

      Clock theme

    28. \"Bulldozer

      Bulldozer theme

    29. \"Christmas

      Christmas theme

    30. \"Hard

      Hard Worker theme

    31. \"Temporarily

      Temporarily Closed theme

    32. \"Dumper

      Dumper Truck theme

    33. \"000webhost

      000webhost theme

    34. \"Work

      Work Desk theme

    35. \"Research

      Research theme

    36. \"Main

      Main settings

    37. \"Design

      Design settings

    38. \"Content

      Content settings

    39. \"Access

      Access settings

    40. \"Support\"

      Support

    ", "installation": "

    Follow the usual routine;

    \n
      \n
    1. Open WordPress admin, go to Plugins, click Add New
    2. \n
    3. Enter “under construction page” in search and hit Enter
    4. \n
    5. Plugin will show up as the first on the list, click “Install Now”
    6. \n
    7. Activate & open plugin’s settings page located under the Settings menu
    8. \n
    \n

    Or if needed, upload manually;

    \n
      \n
    1. Download the plugin.
    2. \n
    3. Unzip it and upload to /wp-content/plugins/
    4. \n
    5. Open WordPress admin – Plugins and click “Activate” next to the plugin
    6. \n
    7. Activate & open plugin’s settings page located under the Settings menu
    8. \n
    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/under-construction-page.1.1.zip", "2.0": "https://downloads.wordpress.org/plugin/under-construction-page.2.0.zip", "3.0": "https://downloads.wordpress.org/plugin/under-construction-page.3.0.zip", "4.0": "https://downloads.wordpress.org/plugin/under-construction-page.4.0.zip", "1.15": "https://downloads.wordpress.org/plugin/under-construction-page.1.15.zip", "1.20": "https://downloads.wordpress.org/plugin/under-construction-page.1.20.zip", "1.22": "https://downloads.wordpress.org/plugin/under-construction-page.1.22.zip", "1.24": "https://downloads.wordpress.org/plugin/under-construction-page.1.24.zip", "1.25": "https://downloads.wordpress.org/plugin/under-construction-page.1.25.zip", "1.30": "https://downloads.wordpress.org/plugin/under-construction-page.1.30.zip", "1.35": "https://downloads.wordpress.org/plugin/under-construction-page.1.35.zip", "1.40": "https://downloads.wordpress.org/plugin/under-construction-page.1.40.zip", "1.45": "https://downloads.wordpress.org/plugin/under-construction-page.1.45.zip", "1.50": "https://downloads.wordpress.org/plugin/under-construction-page.1.50.zip", "1.51": "https://downloads.wordpress.org/plugin/under-construction-page.1.51.zip", "1.55": "https://downloads.wordpress.org/plugin/under-construction-page.1.55.zip", "1.60": "https://downloads.wordpress.org/plugin/under-construction-page.1.60.zip", "1.65": "https://downloads.wordpress.org/plugin/under-construction-page.1.65.zip", "1.66": "https://downloads.wordpress.org/plugin/under-construction-page.1.66.zip", "1.70": "https://downloads.wordpress.org/plugin/under-construction-page.1.70.zip", "1.75": "https://downloads.wordpress.org/plugin/under-construction-page.1.75.zip", "1.80": "https://downloads.wordpress.org/plugin/under-construction-page.1.80.zip", "1.85": "https://downloads.wordpress.org/plugin/under-construction-page.1.85.zip", "1.90": "https://downloads.wordpress.org/plugin/under-construction-page.1.90.zip", "1.95": "https://downloads.wordpress.org/plugin/under-construction-page.1.95.zip", "1.96": "https://downloads.wordpress.org/plugin/under-construction-page.1.96.zip", "2.05": "https://downloads.wordpress.org/plugin/under-construction-page.2.05.zip", "2.10": "https://downloads.wordpress.org/plugin/under-construction-page.2.10.zip", "2.15": "https://downloads.wordpress.org/plugin/under-construction-page.2.15.zip", "2.20": "https://downloads.wordpress.org/plugin/under-construction-page.2.20.zip", "2.25": "https://downloads.wordpress.org/plugin/under-construction-page.2.25.zip", "2.30": "https://downloads.wordpress.org/plugin/under-construction-page.2.30.zip", "2.35": "https://downloads.wordpress.org/plugin/under-construction-page.2.35.zip", "2.40": "https://downloads.wordpress.org/plugin/under-construction-page.2.40.zip", "2.45": "https://downloads.wordpress.org/plugin/under-construction-page.2.45.zip", "2.50": "https://downloads.wordpress.org/plugin/under-construction-page.2.50.zip", "2.55": "https://downloads.wordpress.org/plugin/under-construction-page.2.55.zip", "2.60": "https://downloads.wordpress.org/plugin/under-construction-page.2.60.zip", "2.65": "https://downloads.wordpress.org/plugin/under-construction-page.2.65.zip", "2.66": "https://downloads.wordpress.org/plugin/under-construction-page.2.66.zip", "2.70": "https://downloads.wordpress.org/plugin/under-construction-page.2.70.zip", "2.75": "https://downloads.wordpress.org/plugin/under-construction-page.2.75.zip", "2.80": "https://downloads.wordpress.org/plugin/under-construction-page.2.80.zip", "2.85": "https://downloads.wordpress.org/plugin/under-construction-page.2.85.zip", "2.90": "https://downloads.wordpress.org/plugin/under-construction-page.2.90.zip", "2.95": "https://downloads.wordpress.org/plugin/under-construction-page.2.95.zip", "3.05": "https://downloads.wordpress.org/plugin/under-construction-page.3.05.zip", "3.10": "https://downloads.wordpress.org/plugin/under-construction-page.3.10.zip", "3.15": "https://downloads.wordpress.org/plugin/under-construction-page.3.15.zip", "3.20": "https://downloads.wordpress.org/plugin/under-construction-page.3.20.zip", "3.25": "https://downloads.wordpress.org/plugin/under-construction-page.3.25.zip", "3.30": "https://downloads.wordpress.org/plugin/under-construction-page.3.30.zip", "3.31": "https://downloads.wordpress.org/plugin/under-construction-page.3.31.zip", "3.35": "https://downloads.wordpress.org/plugin/under-construction-page.3.35.zip", "3.40": "https://downloads.wordpress.org/plugin/under-construction-page.3.40.zip", "3.45": "https://downloads.wordpress.org/plugin/under-construction-page.3.45.zip", "3.50": "https://downloads.wordpress.org/plugin/under-construction-page.3.50.zip", "3.55": "https://downloads.wordpress.org/plugin/under-construction-page.3.55.zip", "3.60": "https://downloads.wordpress.org/plugin/under-construction-page.3.60.zip", "3.65": "https://downloads.wordpress.org/plugin/under-construction-page.3.65.zip", "3.70": "https://downloads.wordpress.org/plugin/under-construction-page.3.70.zip", "3.75": "https://downloads.wordpress.org/plugin/under-construction-page.3.75.zip", "3.80": "https://downloads.wordpress.org/plugin/under-construction-page.3.80.zip", "3.81": "https://downloads.wordpress.org/plugin/under-construction-page.3.81.zip", "3.82": "https://downloads.wordpress.org/plugin/under-construction-page.3.82.zip", "3.83": "https://downloads.wordpress.org/plugin/under-construction-page.3.83.zip", "3.85": "https://downloads.wordpress.org/plugin/under-construction-page.3.85.zip", "3.86": "https://downloads.wordpress.org/plugin/under-construction-page.3.86.zip", "3.87": "https://downloads.wordpress.org/plugin/under-construction-page.3.87.zip", "3.88": "https://downloads.wordpress.org/plugin/under-construction-page.3.88.zip", "3.89": "https://downloads.wordpress.org/plugin/under-construction-page.3.89.zip", "3.90": "https://downloads.wordpress.org/plugin/under-construction-page.3.90.zip", "3.91": "https://downloads.wordpress.org/plugin/under-construction-page.3.91.zip", "3.92": "https://downloads.wordpress.org/plugin/under-construction-page.3.92.zip", "3.93": "https://downloads.wordpress.org/plugin/under-construction-page.3.93.zip", "3.95": "https://downloads.wordpress.org/plugin/under-construction-page.3.95.zip", "3.96": "https://downloads.wordpress.org/plugin/under-construction-page.3.96.zip", "3.97": "https://downloads.wordpress.org/plugin/under-construction-page.3.97.zip", "3.98": "https://downloads.wordpress.org/plugin/under-construction-page.3.98.zip", "3.99": "https://downloads.wordpress.org/plugin/under-construction-page.3.99.zip", "4.01": "https://downloads.wordpress.org/plugin/under-construction-page.4.01.zip", "4.02": "https://downloads.wordpress.org/plugin/under-construction-page.4.02.zip", "4.03": "https://downloads.wordpress.org/plugin/under-construction-page.4.03.zip", "trunk": "https://downloads.wordpress.org/plugin/under-construction-page.zip"}, "downloaded": 12180046, "description": "

    Create an Under Construction Page, Maintenance Mode Page, Coming Soon Page or a Landing Page that takes less than a minute to install & configure. Under Construction won’t waste your time! It’s simple, fast, efficient & user-friendly with great templates users love. Under Construction uses Bunny Fonts for GDPR compatibility.

    \n\n
    \n

    PRO version offers more than 50 extra features and options including the drag&drop builder, over a million hi-res searchable images, 300+ templates, affiliate&traffic tracking, advanced access control, MailChimp, Zapier & universal autoresponder integration, white-label license mode and priority support. Find out more on the official plugin site.

    \n
    \n

    A simple, no-nonsense under construction plugin for all those situations when you have to hide the site behind an Under Construction page for a while. Live examples are available on the Under Construction website. Give us a shout on Twitter @WebFactoryLtd or check out the video.

    \n

    Thanks to our partnership with Weglot, UCP is fully multilanguage ready and you can instantly translate your under construction page to 100+ languages with one click.

    \n

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL and fix SSL issues.

    \n

    Options

    \n
      \n
    • Under construction mode – on / off
    • \n
    • Automatic End date & time – automatically disable under construction mode on a set date
    • \n
    • Google Analytics Tracking ID – enable tracking via Google Analytics
    • \n
    • Theme – test all available themes (200+)
    • \n
    • Custom CSS – adjust any part of the page to fit your needs
    • \n
    • Title – page title, for SEO
    • \n
    • Description – page description, for SEO
    • \n
    • Headline – main headline/title
    • \n
    • Content – anything you need to display
    • \n
    • Optin box, optin popup – collect leads and emails and sync with MailChimp and other autoresponders
    • \n
    • Login Button – show a discrete link to the login form, or WP admin if you’re logged in
    • \n
    • Social icons/links – new ones are added with every update; let us know if we missed your favorite ones\n
        \n
      • Facebook
      • \n
      • Twitter
      • \n
      • LinkedIn
      • \n
      • YouTube
      • \n
      • Vimeo
      • \n
      • Pinterest
      • \n
      • Dribbble
      • \n
      • Behance
      • \n
      • Instagram
      • \n
      • Email
      • \n
      • Phone
      • \n
      • Skype
      • \n
      • Telegram
      • \n
      • WhatsApp
      • \n
      • Tumblr
      • \n
      • VK
      • \n
      \n
    • \n
    • Whitelisted User Roles – user roles who see the site, instead of under construction page
    • \n
    • Whitelisted Users – users who see the site, instead of under construction page
    • \n
    \n

    Under Construction Page is compatible with the following caching plugins: W3 Total Cache, WP Super Cache, Endurance Page Cache, SiteGround SuperCacher, WP Fastest Cache, Swift Performance Cache, WP Rocket, Cache Enabler, and Hummingbird cache.

    \n

    What are others saying about the Under Construction Page plugin

    \n
      \n
    • WHSR wrote an in-depth guide on how to “Grow Your Blog Before It Is Born” featuring Under Construction Page
    • \n
    • John Fraskos from Codestag says it’s “very friendly and easy to use”
    • \n
    • WP Pluginsify wrote a review
    • \n
    • Erik from NoPassiveIncome points out: “plugin is so easy and quick to use”
    • \n
    • Planet WP gave it 5/5 stars
    • \n
    • FirstSiteGuide says: “a perfect choice”
    • \n
    • WPblog wrote a review as well
    • \n
    • WP TopDog had Daniel explain how to use the Under Construction Page
    • \n
    \n

    GDPR Compatibility
    \nWe are not lawyers. Please do not take any of the following as legal advice.
    \nUnder Construction plugin uses Bunny Fonts on the front end, and in the admin. Usage of the Google Analytics service is optional. No other resources are loaded from or shared with 3rd parties. Opting to use Bunny Fonts and/or Google Analytics will result in data sharing/tracking as described in their terms of service.
    \nIf you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    \n", "donate_link": "", "num_ratings": 1282, "screenshots": {"1": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-1.gif?rev=1840052", "caption": "Build an under construction page in less than a minute with over 30 themes"}, "2": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-2.png?rev=1840052", "caption": "Under Construction Text theme"}, "3": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-3.png?rev=1840052", "caption": "Mad Designer theme"}, "4": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-4.png?rev=1840052", "caption": "Plain Text theme"}, "5": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-5.png?rev=1840052", "caption": "Under Construction theme"}, "6": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-6.png?rev=1840052", "caption": "Things Went Dark theme"}, "7": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-7.png?rev=1840052", "caption": "Forklift at Work theme"}, "8": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-8.png?rev=1840052", "caption": "Cyber Chick theme"}, "9": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-9.png?rev=1840052", "caption": "Rocket Launch theme"}, "10": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-10.png?rev=1840052", "caption": "Loader at Work theme"}, "11": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-11.png?rev=1840052", "caption": "Cyber Chick Dark theme"}, "12": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-12.png?rev=1840052", "caption": "Safe theme"}, "13": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-13.png?rev=1840052", "caption": "People at Work theme"}, "14": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-14.png?rev=1840052", "caption": "Windmill theme"}, "15": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-15.png?rev=1840052", "caption": "Sad Site theme"}, "16": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-16.png?rev=1840052", "caption": "Lighthouse"}, "17": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-17.png?rev=1840052", "caption": "Hot Air Balloon"}, "18": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-18.png?rev=1840052", "caption": "People at Work #2 theme"}, "19": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-19.png?rev=1840052", "caption": "Rocket Launch #2 theme"}, "20": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-20.png?rev=1840052", "caption": "Light Bulb theme"}, "21": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-21.png?rev=1840052", "caption": "Ambulance theme"}, "22": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-22.png?rev=1840052", "caption": "Laptop theme"}, "23": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-23.png?rev=1840052", "caption": "Puzzles theme contributed by Ralf Biester"}, "24": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-24.png?rev=1840052", "caption": "Internet of Things"}, "25": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-25.png?rev=1840052", "caption": "Setup theme"}, "26": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-26.png?rev=1840052", "caption": "Stop theme"}, "27": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-27.png?rev=1840052", "caption": "Clock theme"}, "28": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-28.png?rev=1840052", "caption": "Bulldozer theme"}, "29": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-29.png?rev=1840052", "caption": "Christmas theme"}, "30": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-30.png?rev=1846898", "caption": "Hard Worker theme"}, "31": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-31.png?rev=1862708", "caption": "Temporarily Closed theme"}, "32": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-32.png?rev=1883260", "caption": "Dumper Truck theme"}, "33": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-33.png?rev=1928264", "caption": "000webhost theme"}, "34": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-34.png?rev=1981084", "caption": "Work Desk theme"}, "35": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-35.png?rev=2158253", "caption": "Research theme"}, "36": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-36.png?rev=2158253", "caption": "Main settings"}, "37": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-37.png?rev=2158253", "caption": "Design settings"}, "38": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-38.png?rev=2158253", "caption": "Content settings"}, "39": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-39.png?rev=2158253", "caption": "Access settings"}, "40": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-40.png?rev=2158253", "caption": "Support"}}, "support_url": "https://wordpress.org/support/plugin/under-construction-page/", "contributors": {"webfactory": {"avatar": "https://secure.gravatar.com/avatar/0128e826bd2acd495936bf252a4f0f80a3263c656cb8d69d9e306e2ea741a251?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/webfactory/", "display_name": "WebFactory"}}, "last_updated": "2025-08-10 8:41pm GMT", "preview_link": "", "requires_php": "5.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/under-construction-page.4.03.zip", "author_profile": "https://profiles.wordpress.org/webfactory/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-fc20-7397-b27d-33df5ec06934", "name": "Under Construction", "slug": "under-construction-page", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1754858460, "version": "4.03"}, "support_threads": 4, "requires_plugins": [], "short_description": "Easy to use Under Construction Page & Coming Soon Page. Enable Under Construction Mode in seconds & show you're Under Construction!", "author_block_count": "1", "author_block_rating": 91.42857142857198, "commercial_support_url": "", "support_threads_resolved": 4}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1e4e-7272-8bd6-76ad6b905020', 'did:web:api.aspiredev.org:packages:wp-plugin:updraftplus', 'updraftplus', 'UpdraftPlus: WP Backup & Migration Plugin', '

    The UpdraftPlus Backup & Migration Plugin is trusted by the WordPress community to backup, restore and migrate their WordPress websites. UpdraftPlus is actively installed on more than 3 million websites around the world.

    -

    Backup with UpdraftPlus

    -

    UpdraftPlus is the world’s highest ranking and most popular scheduled backup and migration plugin. Backup to your preferred storage location and restore in just three clicks.

    -

    Backup to Dropbox, Google Drive, Amazon S3 (or compatible), Rackspace Cloud, FTP, DreamObjects, Openstack Swift or email.

    -

    The paid version also allows you to backup to Microsoft OneDrive, Microsoft Azure, Google Cloud, Backblaze B2, SFTP, SCP, pCloud, WebDAV or UpdraftVault, our integrated storage option for UpdraftPlus.

    -

    Backup manually or schedule to run every 2, 4, 8 or 12 hours, daily, weekly, monthly or fortnightly.

    -

    Restore with UpdraftPlus

    -

    Your WordPress website is vulnerable. Your site may get hacked. Something could go wrong with an update or your server could crash. You might need to reverse a change made or a mistake caused by human error.

    -

    Whatever the reason, you can restore your WordPress website in just a few clicks with UpdraftPlus. Choose which components to restore (e.g. plugins, themes, database etc.), click again to restore, then click again to return to the main screen.

    -

    Migrate with UpdraftPlus

    -

    It’s easy to migrate your WordPress website to another web host, server or domain with this free version of UpdraftPlus.

    -

    To migrate, simply download your database, plugins, themes etc. from the source site, then upload them into your destination site.

    -

    When migrating, a built-in search-and-replace engine identifies old strings and replaces these to reflect the new location. UpdraftPlus saves you time and reduces the risk of broken links or missing files associated with manual migrations.

    -

    Why UpdraftPlus?

    -

    Writing a reliable backup and migration plugin that ‘just works’ consistently across millions of different WordPress deployments is hard. UpdraftPlus is relied upon to do exactly that. We’re trusted and actively deployed on more websites around the world than any other WordPress backup and migration plugin.

    -

    UpdraftPlus:

    -
      -
    • Backs up, migrates and restores
    • -
    • Offers a huge number of remote storage locations
    • -
    • Allows you to schedule backups, so you can ‘set and forget’
    • -
    • Is comprehensive and easy to use
    • -
    • Is proven to work on over 3 million sites.
    • -
    -
    -

    UpdraftPlus Premium

    -

    The free version of UpdraftPlus will back up and migrate your website perfectly well. However if you need more features and options you can purchase our Premium version.

    -

    Backup and Migrate with UpdraftPlus Premium, and:

    -
      -
    • -

      Get automatic backups before updates. Restore the very latest version if a WordPress or plugin update breaks your site.

      -
    • -
    • -

      Backup Incrementally. Changes are added to the master, saving server resources vs repeatedly backing up in full.

      -
    • -
    • -

      Get more remote storage options including Microsoft OneDrive, SFTP, Microsoft Azure, WebDAV, Google Cloud, SCP, Backblaze and pCloud.

      -
    • -
    • -

      Get 1GB of integrated storage with UpdraftVault for 99.999% reliability, redundancy and scalability.

      -
    • -
    • -

      Get more control over how many backups are stored in a specified interval.
      -Restore from other backup plugins including BackWPup, BackupWordPress, Simple Backups and more.

      -
    • -
    • -

      Run backups at set times e.g. during periods of low traffic.

      -
    • -
    • -

      Backup to more than one location for added protection.

      -
    • -
    • -

      Get detailed reports. Includes cryptographic checksums so you can verify the integrity of the backup files and more.

      -
    • -
    • -

      Get Premium migration. Migrating to the destination site is more direct and can be done from the source site.

      -
    • -
    • -

      Get Multisite / multi-network compatibility.

      -
    • -
    • -

      Backup non-WP files and databases e.g. tables belonging to your e-commerce store or customisations to WordPress core.

      -
    • -
    • -

      Get database encryption.

      -
    • -
    • -

      Manage your backups and migrations from the WP-CLI.

      -
    • -
    • -

      Get Premium Support.

      -
    • -
    -

    Find out more on our comparison page. UpdraftPlus Premium is available for purchase here.

    -

    Managing multiple websites?

    -

    UpdraftCentral is a powerful remote control dashboard for WordPress that allows you to manage your backups, as well as updates, users, pages, posts, plugins and themes from one central location. Choose between:

    - -

    Optimize your sites centrally by combining the power of WP-Optimize and UpdraftCentral or manage your backups centrally by combining the power of UpdraftPlus with UpdraftCentral.

    -

    Need to create a temporary clone of your site?

    -

    UpdraftClone makes it quick and easy to create a temporary sandbox for changes you want to try out. Simply select the versions of WordPress and PHP that you want, and we’ll do the rest. More about UpdraftClone

    -

    The full suite of plugins from Team Updraft and friends

    -
      -
    • -

      UpdraftPlus.
      -Backup, migrate and restore. Rated 5* on the plugin directory and trusted by more than 3 million WordPress website owner

      -
    • -
    • -

      WP-Optimize.
      -Clean the database, compress images and caching. Optimize your WordPress website. 5* user rating. 1 million + active installs.

      -
    • -
    • -

      All-In-One Security (AIOS).
      -Secure your WordPress website. Comprehensive, feature rich and easy to use. 5* user rating and 1 million + active installs.

      -
    • -
    • -

      WP Overnight.
      -Quality Extensions for your WooCommerce store. 5* rated invoicing, order and product management, customer management solutions and more.

      -
    • -
    • -

      Easy Updates Manager.
      -Take control of updates. Lots of features for free, and a Premium version with even more – over 300,000 users.

      -
    • -
    • -

      Internal Link Juicer.Boost your SEO. Automate internal links within your WordPress website. Save time and rank higher in the search engines.

      -
    • -
    -

    For other useful, free plugins see our lead developer’s profile, here.

    -

    Are you multilingual? Can you translate?

    -

    Do you want to help people that speak your language to backup, migrate and restore their WordPress websites?

    -

    The UpdraftPlus backup, migration and restoration plugin is ready and waiting. The translation process is easy, and web-based – please go here for instructions: https://updraftplus.com/translate/.

    -

    Or, if you’re already an expert WordPress translator, just pick out the .pot file from the wp-content/plugins/updraftplus/languages/ directory – if you scan for translatable strings manually, then you need to get these functions: _x(), __(), _e(), _ex(), log_e().

    -

    Many thanks to our existing translators.

    -

    License

    -
    Copyright 2011-24 David Anderson
    -
    -This program is free software; you can redistribute it and/or modify
    -it under the terms of the GNU General Public License as published by
    -the Free Software Foundation; either version 3 of the License, or
    -(at your option) any later version.
    -
    -This program is distributed in the hope that it will be useful,
    -but WITHOUT ANY WARRANTY; without even the implied warranty of
    -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    -GNU General Public License for more details.
    -
    -You should have received a copy of the GNU General Public License
    -along with this program; if not, write to the Free Software
    -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    -
    -

    Non-English translators are provided by volunteers, and wordpress.org does not give plugin developers control over their translations; thus relying on them is at your own risk; UpdraftPlus cannot guarantee that translations from the original English are accurate.

    -

    We recognise and thank those mentioned at https://updraftplus.com/acknowledgements/ for code and/or libraries used and/or modified under the terms of their open source licences.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "UpdraftPlus: WP Backup & Migration Plugin", "slug": "updraftplus", "tags": {"backup": "backup", "migration": "migration", "cloud-backup": "cloud backup", "database-backup": "database backup", "wordpress-backup": "wordpress backup"}, "added": "2012-05-22", "icons": {"1x": "https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200", "2x": "https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200"}, "author": "David Anderson / Team Updraft", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200", "high": "https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200"}, "ratings": {"1": 242, "2": 43, "3": 49, "4": 153, "5": 7708}, "version": "1.25.8", "homepage": "https://updraftplus.com", "requires": "3.2", "sections": {"faq": "\n
    \nHow do I install the UpdraftPlus backup & migration plugin?\n\n

    \n

    Here are the installation guidelines from our YouTube channel or from our website.

    \n

    \n
    \nWhat if I have a problem / need support ?\n\n

    \n

    If you’re struggling to backup, migrate or restore there’s help available.

    \n

    Search existing topics on the WordPress support forum or post a new one. Our support and development teams check and respond to queries everyday.

    \n

    UpdraftPlus Premium customers can log a ticket directly with our support and development teams via the UpdraftPlus support hub.

    \n

    Before you get in touch, please ensure that you have read through our <a href=https://updraftplus.com/frequently-asked-questions/”>FAQs and that you’ve updated to the latest release of our plugin.

    \n

    It helps greatly if you can include the backup log and as much other information as possible in your report, for example the PHP version, your website, the error description, how you got to the page that caused it, any other relevant plugins you have installed, plus any other information that might be of use.

    \n

    To find the backup log: there are links to download the logs on the UpdraftPlus settings page in the plugin – or you may be emailed it. Failing that, FTP into the directory wp-content/updraft and look for it there.

    \n

    If you know how, please send your PHP error logs – just the few lines that appear when you run a backup, often the file called error_log, possibly in your wp-admin directory which you can check via FTP. If you’re a programmer that can debug and send a patch, that’s even better.

    \n

    \n
    \nWhen it comes to migration, what does the premium plugin do that the free plugin can’t?\n\n

    \n

    Migrating in the free plugin involves downloading the backups from the source site then uploading these to the destination site.

    \n

    To find the backup log: there are links to download the logs on the UpdraftPlus settings page- or you may be emailed it. Failing that, FTP into the directory wp-content/updraft and look for it there.

    \n

    Both free and Premium plugins include a built-in search-and-replace engine to replace old strings with the new location.

    \n

    If migration is all you require, and for simple single site migrations the free plugin will likely be enough to meet your needs. If you have additional needs around backups e.g. the ability to backup before updates, if you require more remote storage locations or if you have a WordPress multisite then we recommend UpdraftPlus Premium for the additional benefits that it brings.

    \n

    \n
    \nUpdraftPlus runs out of time when it’s trying to backup, after I have left it for some time to give it a good chance. What can I do?\n\n

    \n

    This problem is probably caused by your account being starved of resources by your (cheap) web host provider. This is far from ideal; although UpdraftPlus supports resuming backup runs right from the beginning to avoid everything having to be done at once, it has its limits. The best thing is to choose a more reputable web host. Failing this, try going into the “Expert settings” and reducing the size at which zip files are split. UpdraftPlus is known to successfully backup websites that run into the multiple-gigabytes on web servers that are not resource-starved.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Prima backup/restore tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rwerdmuller on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Deze tool heeft mij al diverse keren uit de brand geholpen. Tot nu toe altijd het verwachte en gewenste resultaat!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    All backed up

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mkehoss on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using UpdraftPlus, basic version for several years. It''s easy to create backups, and though I''ve never needed to perform a restoration, that looks pretty straightforward as well.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Maybe it's me, but...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy martinvie on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works well for backup on same site but troublesome for restoring backup from a different site.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Saved My Butt

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy DivaMom on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am in love since MON. Between Updraft back up and chap gpt, I am all good. Seriously, one of my top three plug-in''s.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy panduka on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excelente Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bancodeestagios on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very easy to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shivadattasougaijam on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    One of the best plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excelente Plugin para Backups

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pablo Scherpa (scherpablo) on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Super recomendable

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    LOVE THIS!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy katheevz on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It does exactly what I need it to and has since I started using it almost a year ago!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Goooood

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy diamtrade on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Super and free save mass ass few times. Always have a fresh update !!!

    \n
    \n
    \n", "changelog": "

    The UpdraftPlus backup blog is the best place to learn in more detail about any important changes.

    \n

    N.B. Paid versions of UpdraftPlus Backup / Restore have a version number which is 1 higher in the first digit, and has an extra component on the end, but the changelog below still applies. i.e. changes listed for 1.16.32.x of the free version correspond to changes made in 2.16.32.x of the paid version.

    \n

    1.25.8 – 07/Oct/2025

    \n
      \n
    • FIX: A fatal error in UpdraftCentral when trying to manage posts when no posts exist.
    • \n
    • FIX: During a failure in the file copy process while restoring, a directory was created with the same name as the file, and the restoration process persisted when it ought to have been stopped
    • \n
    • FIX: PHP fatal error in WP CLI commands for listing or scanning existing backups on PHP 8.0+ after a rescan
    • \n
    • TWEAK: Add UpdraftCentral support to import_settings function with return values
    • \n
    • TWEAK: Add support for new Amazon AWS S3 regions
    • \n
    • TWEAK: Added Burst Statistics to the family plugin list
    • \n
    • TWEAK: Adjust the backup logic to recognize invisible columns, and when that occurs, use a query that explicitly specifies the required columns instead of relying on “SELECT *”.
    • \n
    • TWEAK: Ensure the restore process terminates with an error when file copying/moving fails
    • \n
    • TWEAK: Improve the backup email report to better reflect the backup types and status.
    • \n
    • TWEAK: New endpoint for getting locked settings data for UpdraftCentral
    • \n
    • TWEAK: Perform a search and replace on __PHP_Incomplete_Class to make it work with unserialize() when object deserialization is not allowed.
    • \n
    • TWEAK: Refactoring site info section to deduplicate and read from single source
    • \n
    • TWEAK: Resolved a PHP warning triggered when uploading the plugin via the WP Plugins page — caused by translation functions (e.g. __()) being called too early.
    • \n
    • TWEAK: Some text was left out of the translation POT file, which meant that certain translator plugins and libraries could not find the text, making it impossible to translate.
    • \n
    • TWEAK: Update the db_size function to allow returning either data or html, depending on the argument that is passed in.
    • \n
    \n

    1.25.7 – 07/Aug/2025

    \n
      \n
    • FIX: A regression for verifying the presence of old folders in the backup directory; old folders created during the restoration of the “Others” entity were not detected correctly.
    • \n
    • FIX: The per-backup lock entries were not removed, resulting in an accumulation of these entries in the database over time. (Includes clean-up of old entries).
    • \n
    • TWEAK: Add IDrive e2 and MEGA to the S3-Compatible storage list
    • \n
    • TWEAK: Internal function call to prevent a PHP 8.1 deprecation notice on fresh WP installs
    • \n
    • TWEAK: Add wp-staging to the default uploads exclusion list
    • \n
    • TWEAK: Add UpdraftCentral handler for site icon upload request.
    • \n
    • TWEAK: Added support for the database view dashicon in WordPress versions prior to 5.5.
    • \n
    • TWEAK: Include site icon information in the ‘get_site_icon’ response of the UpdraftCentral core module.
    • \n
    • TWEAK: Resolve the empty list issue on the backup email reports created by the UpdraftPlus free version
    • \n
    • TWEAK: The “Get every feature of UpdraftPlus Premium” box shouldn’t be displayed after purchases got claimed/activated
    • \n
    • TWEAK: Remove seasonal (new year, summer, spring and plugin collection) sale notices
    • \n
    • TWEAK: Handle unsupported character set defined for table fields during database pre-restoration.
    • \n
    • TWEAK: Updated links in the Premium Extensions tab of the plugin’s admin menu page.
    • \n
    \n

    1.25.6 – 27/May/2025

    \n
      \n
    • FIX: A regression that prevented the remote storage label from being updated
    • \n
    • FIX: A regression that could cause unintended behaviour when restoring special files
    • \n
    • FIX: A fatal error when executing a standalone php backup script with “do_action(‘updraft_backup_all’)”.
    • \n
    • FIX: Regression that caused certain features (e.g. PHP Info) to break due to a missing HTML attribute on the triggering element
    • \n
    • FIX: An issue that caused migration failure for sites using the Performance Lab plugin or other plugins implementing an object cache drop-in
    • \n
    • TWEAK: handle non fatal file rename failure during restore
    • \n
    • TWEAK: The automatic backup feature is now disabled by default on new installs
    • \n
    • TWEAK: return post status and formatted date from UDC post API
    • \n
    • TWEAK: Replace a call to unserialize() in the Dropbox storage library
    • \n
    • TWEAK: Validate the DreamObjects endpoint to ensure only expected DreamObjects enpoint formats can pass through.
    • \n
    • TWEAK: Position the “includes all tables not listed below” option at the beginning of the first known table in the DB restoration widget.
    • \n
    • TWEAK: Add a new default endpoint in DreamObjects along with UI to allow users to add custom endpoint in the format “s3..dream.io”.
    • \n
    • TWEAK: The Azure Storage Service add-on now requires PHP 5.6 or higher to support the mandatory use of TLS 1.2, which will be enforced starting August 31, 2025.
    • \n
    \n

    1.25.5 – 17/Apr/2025

    \n
      \n
    • FIX: A bug that prevented the Rackspace “Create new API user and container” dialog from opening.
    • \n
    • TWEAK: An HTTP header intended to terminate the browser’s connection was incorrectly assigned a value that the header does not support.
    • \n
    • TWEAK: Ability to automatically choose the proper checkout page when the user is about to buy TeamUpdraft products from within the plugin
    • \n
    • TWEAK: Clear Divi theme CSS cache at the end of the restoration process
    • \n
    • TWEAK: Resolve PHP warning in pCloud addon when upgrading from free to premium version.
    • \n
    • TWEAK: Update error messages when the user fails to connect to their TeamUpdraft account on the ‘Premium/Extensions’ tab.
    • \n
    \n

    1.25.4 – 24/Mar/2025

    \n
      \n
    • FIX: Regression in 1.25.3 – missing database encryption input field due to the use of the “wp_kses_post” function that doesn’t allow “” tag to be rendered
    • \n
    • TWEAK: Add new fields to UpdraftCentral handler
    • \n
    \n

    1.25.3 – 21/Mar/2025

    \n
      \n
    • FIX: An issue that prevented an UpdraftClone backup from sending when attempting to boot an UpdraftClone from WP_CLI
    • \n
    • FIX: An issue that prevented changing the default UpdraftClone region when attempting to boot an UpdraftClone from WP_CLI
    • \n
    • TWEAK: The “x-amz-content-sha256” request header is now signed and included in the S3 signature version 4. Some S3-based providers mandate the signing of this header for accurate signature calculation.
    • \n
    • TWEAK: Introduce a new constant named “UPDRAFTPLUS_S3_EXCLUDE_SIGV4_CONTENT_SHA256_HEADER”. This constant allows for the exclusion of the “x-amz-content-sha256” headers from being signed if desired; it accepts a boolean value, defaulting to false.
    • \n
    • TWEAK: Add ‘noopener, noreferrer’ window features to the Javascript’s window.open() call to prevent the target page from changing content of the original page
    • \n
    • TWEAK: Favicon fetching feature for UpdraftCentral
    • \n
    • TWEAK: Minor tweak to “updates” module to include icons to plugin and screenshot url to theme update items
    • \n
    • TWEAK: New UpdraftCentral module for background fetching
    • \n
    • TWEAK: Revise the wording found in the expert settings regarding the deletion of local backup files
    • \n
    • TWEAK: Update seasonal notices
    • \n
    • TWEAK: Enhance the notifications to signify the introduction of other plugins that belong to the same plugin family
    • \n
    • TWEAK: To avoid CORS issues and ensure the UpdraftPlus plugin is functional and accessible via the UpdraftCentral dashboard, the hostname and/or domain origin is changed from updraftplus.com to teamupdraft.com.
    • \n
    • COMPATIBILITY: Resolved PHP deprecation warnings in lockadmin.php by eliminating the use of dynamic properties
    • \n
    \n

    1.25.2 – 26/Feb/2025

    \n
      \n
    • FEATURE: Added a “Cron events” tab in the Advanced Tools section to check for the presence of the UpdraftPlus cron job.
    • \n
    • FIX: Resolve the issue of uploads to pCloud failing after a folder name change by resetting the “folderid” whenever the folder name is updated.
    • \n
    • TWEAK: Add site information for WooCommerce and HPOS support to the database backup header.
    • \n
    • TWEAK: Create a log entry when a bot verification page appears during the file upload in the migration procedure.
    • \n
    • TWEAK: Improve error message clarity for failed connection tests in migration.
    • \n
    • TWEAK: Include details in the backup log file about the status and availability of the proxy configured in the system.
    • \n
    • TWEAK: Update the Google library to support the WP_PROXY_HOST and WP_PROXY_PORT constants.
    • \n
    • TWEAK: Update the link for Onedrive and Azure app creation
    • \n
    • COMPATIBILITY: Got rid of PHP 8.4 deprecation messages caused by the E_STRICT constant usage
    • \n
    \n

    1.25.1 – 11/Jan/2025

    \n
      \n
    • SECURITY: Fix a non-persistent reflected XSS vulnerability due to a missing nonce combined with missing sanitisation. This could allow an attacker, who persuaded you to click a personally-crafted link to your site’s dashboard whilst you were logged in, to once run JavaScript code in your dashboard. Thanks to Asaf Mozes for finding and responsibly disclosing this issue.
    • \n
    • FIX: Prevent the restoration from failing when there is a ‘sync-xhr=()’ permission policy on the response header.
    • \n
    • FIX: Improve the approach of acquiring a suggested region for Amazon AWS S3 if a failure arises during the getBucketLocation() call, particularly when the XML response fails to provide a field for the suggested region – this resolves issues with regions (e.g. us-east-2) which recently changed their response behaviour
    • \n
    • TWEAK: Broaden the support to incorporate the “ap-southeast-4” region of Amazon AWS S3 and additional recently updated regions
    • \n
    • TWEAK: A regression in the paid version update checker to version 4.13.2, resulting in non-appearance of notices concerning subscription status or WP version compatibility.
    • \n
    \n

    1.24.12 – 23/Dec/2024

    \n
      \n
    • FIX: The pre-restoration stage failed to properly address the tables that were to be excluded, which caused a logical error that misread the checked “include all tables not listed” option as an instruction to restore every table
    • \n
    • FIX: Update PHPSecLib library to version 2.0.48 which has the fixes for the “gmp_pow(): base and exponent overflow” on certain PHP versions and could cause backups to fail on the SFTP remote storage
    • \n
    • TWEAK: Complete the review and removal of calls to the unserialize() PHP function allowing class instantiation begun in 1.24.7. (The final removal involved a theoretical security defect, if your development site allowed an attacker to post content to it which you migrated to another site, and which contained customised code that could perform destructive actions which the attacker knew about, prior to you then cloning the site. The result of this removal is that some search-replaces, highly unlikely to be encountered in practice, will be skipped).
    • \n
    • TWEAK: Drop search and replace feature for PHP 5.2 users (to fulfil the preceding item)
    • \n
    • TWEAK: Tweak UpdraftCentral media module to add “has_image_editor” property to each media item
    • \n
    • TWEAK: On the restoration screen in a multisite configuration, the dropdown labeled “which site to restore” was covering other HTML elements, which caused some buttons to be positioned at the bottom instead of at the top
    • \n
    • TWEAK: Avoid deregistering jQuery-UI CSS if already printed by other plugins to prevent compatibility issues
    • \n
    • TWEAK: In the context of database restoration, the execution of LOCK and/or ALTER SQL statements must be avoided for any tables that are part of the “skipped tables” list
    • \n
    • TWEAK: openssl_free_key() is only needed on PHP < 8
    • \n
    • TWEAK: Various coding style changes to comply with “Plugin Check” rules
    • \n
    \n

    1.24.11 – 15/Nov/2024

    \n
      \n
    • TWEAK: Do not request drive.readonly scope on Google Drive connections, due to Google’s app permissions review (unannounced and requires us to create a Youtube video for their review process) – this means that (until the review completes) new connections to Google Drive can only access backups created by UpdraftPlus directly, and not backups which you manually upload to Google Drive. This restores the ability to make new connections to Google Drive.
    • \n
    • TWEAK: Adjustment of the UpdraftPlus_S3_Compat class to preserve compatibility with the external UpdraftPlus AWS SDK plugin (https://github.com/DavidAnderson684/updraftplus-aws-sdk).
    • \n
    \n

    1.24.9 – 14/Nov/2024

    \n
      \n
    • FIX: A regression in 1.24.8 when handling restoration of wp-config.php
    • \n
    • TWEAK: The changes in handling of loading text domains in 1.24.8 did not cover most cases
    • \n
    • TWEAK: Introduce the “updraftplus_use_builtin_wpcore_restoration” filter which can be used to restore WP-Core entity using a different WP-Core restoration mechanism especially in a case that the admin-ajax.php file couldn’t be deleted during the restoration
    • \n
    \n

    1.24.8 – 13/Nov/2024

    \n
      \n
    • TWEAK: Add descriptions for the ‘Clone Package’ dropdown when creating a clone.
    • \n
    • TWEAK: Move the “load_plugin_textdomain” call from being called through “plugins_loaded” action to being called via “init” action
    • \n
    • TWEAK: Update the log message to specify that backup files are marked as “processed” when no remote storage is selected, and as “uploaded” when remote storage is selected.
    • \n
    • TWEAK: Some code tidying in the restore class
    • \n
    \n

    1.24.7 – 04/Nov/2024

    \n
      \n
    • TWEAK: Include the .part file extension into the cleanup list, guaranteeing that files associated with this extension are regularly deleted from the backup directory
    • \n
    • TWEAK: The update functionalities in the WordPress plugin information box (6.5 and later) have been adjusted to stop updates from taking place in the same window, ensuring that the “auto-backup before update” dialog appears as intended
    • \n
    • TWEAK: Add customized “unserialized” method into the UpdraftPlus class which can handle the use of the “options” argument or its absence when running across different PHP versions
    • \n
    • TWEAK: Add the UPDRAFTPLUS_SEND_UNWRITABLE_BACKUP_DIRECTORY_EMAIL constant to disable the sending of unwritable backup directory emails to users.
    • \n
    • TWEAK: Clearer notifications to users regarding unconfigured remote storage settings and/or the selection of remote storage that are not part of their UpdraftPlus version
    • \n
    • TWEAK: During the resumption of OneDrive’s chunk uploads, the authorisation header and bearer token should not be included as it may lead to an unauthenticated error due to a different upload URL.
    • \n
    • TWEAK: Implement code to enable automatic activation of the UpdraftPlus plugin during the migration process from a multisite setup to a standalone site
    • \n
    • TWEAK: In a multisite environment, ensure that users can access the UpdraftPlus plugin page even in the absence of the WP_ALLOW_MULTISITE constant
    • \n
    • TWEAK: UpdraftClone now supports PHP 8.4
    • \n
    • TWEAK: Prevent a potential PHP deprecation notice when zip creation fails
    • \n
    \n

    1.24.6 – 25/Sep/2024

    \n
      \n
    • TWEAK: In 1.24.5, the browser title wrongly displayed as “UpdraftPlus” when accessing an unrelated plugin page using the main menu.
    • \n
    \n

    1.24.5 – 24/Sep/2024

    \n
      \n
    • FIX: Incorrect regular expression for DigitalOcean Spaces endpoint
    • \n
    • FIX: CSS conflicts with the LearnDash LMS Instructor Role Add-on plugin which caused some UI elements to disappear
    • \n
    • TWEAK: Reorganize UpdraftPlus in left-hand menu and rename it to “UpdraftPlus”; to disable it, follow this guide: https://updraftplus.com/new-location-of-updraftplus-in-the-wordpress-dashboard/
    • \n
    • TWEAK: Add span wrapper to UpdraftCentral connection failed message
    • \n
    • TWEAK: Add the “Go here to complete your settings” link into the appropriate admin notice that when clicked will jump to the UpdraftVault configuration if no settings are specified.
    • \n
    • TWEAK: Adjust regex patterns that didn’t match some temporary files, causing them to not be automatically removed
    • \n
    • TWEAK: After a restoration, clicking “Delete old folders” will also remove the wp-config-pre-ud-restore-backup.php file
    • \n
    • TWEAK: On the settings page/tab; prevent the floating “Save changes” button from getting clicked multiple times and/or sending multiple AJAX requests
    • \n
    • TWEAK: Remove pCloud from the add-ons list on the “Premium / Extensions” tab (there is no change in its availability)
    • \n
    • TWEAK: Renamed wp-config-backup.php to wp-config-pre-ud-restore-backup.php to clarify its purpose as a backup file created before restoring WordPress core entities, and it will only be generated if the user does not select the “Over-write wp-config.php” option during restoration, as the previous name was too generic and could cause confusion
    • \n
    • TWEAK: The popup modal for automatic plugin updates fails to retain the backup checkbox selection when the “remember” option is enabled in a Multisite environment.
    • \n
    • TWEAK: Updated autobackup selector to resolve issues caused by the missing “update-link” class in WPForms Pro plugin
    • \n
    \n

    1.24.4 – 2/Jul/2024

    \n
      \n
    • FIX: Case-sensitive issue of bit field type names in a table.
    • \n
    • FIX: Resolved issue where backup files could not be deleted from remote storage when either the root directory was active or no directory was specified in the OneDrive configuration form.
    • \n
    • FIX: When users attempt to update a plugin using the “View Version x.x.x Details” link instead of choosing “Update Now,” the plugin is successfully updated; however, the UI incorrectly displays an “Update Failed” message
    • \n
    • FIX: Conflict with the Gravity Forms plugin when there was an older version of jQuery UI presented on the “Installed Plugins” page.
    • \n
    • TWEAK: Ensure compliance with Google Granular Consent and check for required permissions during storage access authorisation of Google Drive and Google Cloud
    • \n
    • TWEAK: Prevent PHP warning and deprecation messages after completing access authorisation to Google Drive storage.
    • \n
    • TWEAK: Prevent PHP warning when Dropbox remote storage has been authenticated and the page is refreshed.
    • \n
    • TWEAK: Added filter updraftplus_working_dir_localpath to allow temporary unzip path to be modified by developers
    • \n
    • TWEAK: Modify the displayed title of the plugin from “WordPress Backup & Migration Plugin” to “WP Backup & Migration Plugin” as required by the plugin directory team
    • \n
    • TWEAK: Parse certain php events and log proper error messages
    • \n
    \n

    1.24.3 – 30/Apr/2024

    \n
      \n
    • FIX: Regression in 1.23.16 for improving logs which then caused incorrect_offset error reported by Dropbox wasn’t properly handled.
    • \n
    • TWEAK: The UpdraftVault remote storage can handle Wasabi as well as Amazon S3 storage in the background.
    • \n
    • TWEAK: Fix WP_Theme_JSON_Resolver::theme_has_support deprecation warning for UpdraftCentral
    • \n
    • TWEAK: Prevent “PHP Warning: Undefined property: UpdraftPlus_BackupModule_pcloud::$description” during rescan remote storage.
    • \n
    • TWEAK: Prevent PHP deprecation warnings during database backups when encountering null values in bit field types.
    • \n
    • TWEAK: Show a warning message when the WP_ACCESSIBLE_HOSTS constant is defined and updraftplus.com is not permitted by its value
    • \n
    • TWEAK: Update notices
    • \n
    • TWEAK: Split multiple sentences into separate translation function calls.
    • \n
    • TWEAK: Trim spaces from S3-Compatible (Generic) endpoint.
    • \n
    \n

    1.24.2 – 26/Mar/2024

    \n
      \n
    • FIX: The “Continue restoration” and “Dismiss” buttons on the unfinished restoration dialog were not responsive to being pressed due to a recent regression
    • \n
    • FIX: Conflict with other plugins due to different version of third party library (Guzzle) and the composer autoload.php was called too early
    • \n
    • FIX: Undefined “NET_SCP_LOCAL_FILE” constant when SCP was in use for the SFTP/SCP remote storage
    • \n
    • TWEAK: Add compatibility fields when returning plugins and themes to UpdraftCentral
    • \n
    • TWEAK: Due to issues in some cURL versions 7.x in handling HTTP/2 connections, all HTTP connections to the OneDrive API are now forced to use HTTP/1.1 version, on cURL versions after 7.61 and before 8.0. Also, a constant named UPDRAFTPLUS_ONEDRIVE_CURL_HTTP_VERSION can be set in the wp-config.php file to change the default HTTP version to another preferred version
    • \n
    • TWEAK: Adjust margin to fix broken UI for the ‘View logs’ button on backups.
    • \n
    • TWEAK: Ensure all “SET SQL_MODE” statements in the database backup file are internally handled and are subjected only to a restoration outside UpdraftPlus plugin
    • \n
    • TWEAK: Prevent PHP 8.2 coding style deprecation notices in the autobackup addon
    • \n
    • TWEAK: In the context of OneDrive’s chunk upload, authorisation header and bearer token should not be included during upload session as it may lead to 401 HTTP status due to different upload URL
    • \n
    • TWEAK: Remove default value for updraftplus_https_to_http_additional_warning and updraftplus_http_to_https_additional_warning filters.
    • \n
    • TWEAK: Set the SQL_MODE to ‘NO_AUTO_VALUE_ON_ZERO’ in the database backup file.
    • \n
    • TWEAK: Seasonal notice content update for 2024
    • \n
    • TWEAK: During the operations that require phpseclib, include the composer autoload.php only when the phpseclib is really needed
    • \n
    \n

    1.24.1 – 21/Feb/2024

    \n
      \n
    • FEATURE: Implement Backblaze Object Lock support (Premium version)
    • \n
    • FIX: The email backup and basic report setting didn’t work causing notification email confirming backup status couldn’t be delivered to admin’s email address (free version)
    • \n
    • FIX: Fix WP-Optimize premium discovery for UpdraftCentral
    • \n
    • FIX: Regression in 1.23.16 for correcting calls to translation functions which then caused some HTML attributes to be empty
    • \n
    • FIX: Restoring backup sets via Migrate/Clone tab had caused all associated backup entities being downloaded immediately ignoring user preferences about the entities they wanted to restore
    • \n
    • FIX: Third-party library conflict (phpseclib) with WP All Import Pro and AIO WP Migration plugins that caused failure in testing SFTP credentials and backing up to the SFTP remote storage
    • \n
    • FIX: Restore compatibility with WordPress multisite running on versions < 4.9 caused by use of function not present before then
    • \n
    • TWEAK: Add new translation entries for UpdraftCentral
    • \n
    • TWEAK: Got rid of PHP 8.2 deprecation messages caused by a null value being passed to the htmlspecialchars() function and creation of dynamic property
    • \n
    • TWEAK: Got rid of PHP 8.3 deprecation messages caused by calling get_class() without arguments.
    • \n
    • TWEAK: Refactor methods in UpdraftPlus_Database_Utility class
    • \n
    • TWEAK: Send an email if the backup directory is not writable.
    • \n
    • TWEAK: Add and set the filename_only parameter to reduce search times when looking for specific backup files in Dropbox.
    • \n
    • TWEAK: Autoload PHP secure communication library (phpseclib) in a better way that would prevent already-loaded phpseclib classes (by other plugin) from being used in certain operations
    • \n
    • TWEAK: Add updraftplus_backup_db_header_append filter to allow site owners to include arbitrary content in their database backup header
    • \n
    \n

    1.23.16 – 23/Dec/2023

    \n
      \n
    • TWEAK: Added demo link for the family plugin in advertisement
    • \n
    • TWEAK: Removed https / http prefix from s3generic endpoints
    • \n
    • TWEAK: Resolve PHP 8.0 compatibility with ob_implicit_flush function
    • \n
    • TWEAK: Dropbox error logs improvement
    • \n
    • TWEAK: As required by the wordpress.org plugin team, all UpdraftPlus news is forbidden to be displayed in the “WordPress News” section of the dashboard for users of the free plugin even if consent is first given.
    • \n
    • TWEAK: Fix some incorrect calls to translation functions
    • \n
    \n

    1.23.14 – 30/Nov/2023

    \n
      \n
    • FIX: Resolved Google Cloud remote storage authentication flow
    • \n
    • TWEAK: Changed updraftvault links functionality to open in different tab
    • \n
    • TWEAK: Clarify significance of warnings in report emails
    • \n
    • TWEAK: Make the news-consent’s layer fit with the confirmation text thus removing empty space that can reveal some of the UpdraftPlus news
    • \n
    • TWEAK: Declare a shim “php_uname” function when it’s found to be undefined to prevent a fatal error in the phpseclib library (which calls it)
    • \n
    \n

    1.23.13 – 22/Nov/2023

    \n
      \n
    • FIX: An issue that prevented incremental backups from running via WP-CLI or Cron when the option to backup mu-plugins was enabled but no mu-plugins existed
    • \n
    • FIX: OneDrive remote storage authentication was giving the error “Invalid input.”
    • \n
    • FIX: The option to back up additional, user-chosen files (i.e. the morefiles entity) was no longer present in the UI
    • \n
    • TWEAK: Remove unused “migrator-lite.php” string during search and replace operations
    • \n
    • TWEAK: Replace remaining hardcoded text domain with UPDRAFTCENTRAL_TEXT_DOMAIN placeholder within the central folder
    • \n
    • TWEAK: LiteSpeed admin dashboard warning is now displayed upon completion of migration on the destination site, even after dismissing the message on the source site.
    • \n
    • TWEAK: Do not show UpdraftPlus news in the WordPress events and news widget section without first gaining user consent
    • \n
    • TWEAK: Change order of checks when seeing if cPanel is present/accessible for asking about disk quota in order to prevent unwanted an PHP notice when safe_mode is active
    • \n
    • TWEAK: Prevent potential fatal error if something has modified an updates check’s ‘translation’ property to be invalid before passing on to UpdraftPlus
    • \n
    • TWEAK: Update bundled cacert.pem file
    • \n
    \n

    1.23.12 – 08/Nov/2023

    \n
      \n
    • FIX: Issue that prevented some database restores from completing due to a change in wpdb in WordPress 6.4
    • \n
    • TWEAK: Replace Javascript onchange event with oninput event to detect changes made for HTML tags on the settings page, also to add to the event handler so that unsaved changes can be detected
    • \n
    \n

    1.23.11 – 03/Nov/2023

    \n
      \n
    • SECURITY: Fix a vulnerability which could, if you had Google Drive storage enabled, and if an attacker targetted a logged-in administrator on your site and persuaded them to access a specific URL that the attacker creates, add the attacker’s own Google Drive account to the saved storage methods. Thanks to Nicolas Decayeux of Patrowl for finding and disclosing this issue.
    • \n
    • FEATURE: Add JSTree for Google Drive to select existing folder
    • \n
    • FEATURE: The “Must-use plugins” backup entity can be backed up and restored separately in a normal WordPress site
    • \n
    • FIX: OneDrive folder case sensitivity issue (successfully uploaded backup files to the remote storage but failed in pruning old backup files due to different letter capitalisation; also happened in manual deletions)
    • \n
    • FIX: When two instances of WebDav remote storage were sequentially added in the Premium version, filling some fields of the latest instance would break the WebDav URL of the previous instance
    • \n
    • TWEAK: Update phpseclib library from version 1 to 2. As previously advised, this also means that these features (Database Encryption, Dropbox & SFTP/SCP remote storage, and UpdraftCentral key creations) will no longer be available and can cause a fatal error when running on PHP 5.2
    • \n
    • TWEAK: Add a link to Trustpilot in the review prompt
    • \n
    • TWEAK: Added a warning message when the WP_HTTP_BLOCK_EXTERNAL is defined and set to true
    • \n
    • TWEAK: Added the “Copy to clipboard” button under the self-hosted central option
    • \n
    • TWEAK: File size is shown when pressing on the backup entity
    • \n
    • TWEAK: Fix the restore dialog to not display “plugins” checkbox when only there’s “mu-plugins” entity
    • \n
    • TWEAK: Fixed PHP 8.2 deprecation messages caused by a null value being passed to the rtrim() function
    • \n
    • TWEAK: Resolve PHP deprecations for the dynamic property access by declaring the variables in the class
    • \n
    • TWEAK: Includes the plugin.php file path if “get_mu_plugins” function does not exist.
    • \n
    • TWEAK: Provide default options for function UpdraftPlus::backup_all()
    • \n
    • TWEAK: Add and call the litespeed_finish_request() function to ensure the HTTP connection made from the browser gets closed immediately without having to wait the process to complete thus leaving it run in the background
    • \n
    • TWEAK: Ensure no PHP “Class not found” is showing up during credentials testing
    • \n
    • TWEAK: Add type checking in UpdraftPlus::handle_url_actions() to prevent plugin conflicts causing PHP errors on PHP 8+
    • \n
    \n

    1.23.10 – 05/Sep/2023

    \n
      \n
    • TWEAK: New S3 signature version setting is added to the S3-Compatible (Generic) configuration form, giving an opportunity for the user to choose which signature version to use (SigV2 or SigV4)
    • \n
    • TWEAK: Enable PHP 8.3 (see: https://stitcher.io/blog/new-in-php-83) support in UpdraftClone
    • \n
    • TWEAK: Adjust fread() sizes for better performance when uploading an archive via the widget
    • \n
    \n

    1.23.9 – 14/Aug/2023

    \n
      \n
    • FIX: Fatal error of Uncaught ArgumentCountError when the UpdraftPlus settings page is browsed from an IP-adressed site (i.e. no hostname) on PHP 7.1+
    • \n
    • FIX: Incorrect caching mechanism such that when multiple Google Drive storage back-ends were in use (Premium feature), uploading to a storage would fail due to unmatched folder ID taken from a different storage instance
    • \n
    • TWEAK: Define class properties in UpdraftPlus_Addons_Migrator class for PHP 8.2 compatibility
    • \n
    \n

    1.23.8 – 08/Aug/2023

    \n
      \n
    • FEATURE: Given the basic migration feature in the free plugin
    • \n
    • FIX: Content-MD5 and any V2-related headers were always included in the S3’s V4 SignedHeaders even though the headers were not presented in a HTTP request
    • \n
    • FIX: Generating URL-encoded queries for a canonical request should have used a method/mechanism which encoded query values according to RFC 3986 (for consistency and for not breaking the code)
    • \n
    • FIX: Search / replace database not working on Admin dashboard > Settings > UpdraftPlus Backups > Advanced Tools > Search / replace database on PHP 8.2 due to stricter type checking
    • \n
    • FIX: A newly added subsite that was restored from a normal site to the multisite was not listed in the site list in the multisite
    • \n
    • FIX: Manual deletion of backup sets appeared to skip some files when multiple instance and/or remote storage were in use
    • \n
    • FIX: The SFTP remote storage stopped working in the UpdraftPlus 2.23.6 release. Reverted the change “TWEAK: Validate SFTP key field on credential test and before save”
    • \n
    • TWEAK: Add a warning in the log file if AWS connection fails and a TLSv1.2 connection test fails
    • \n
    • TWEAK: Add warning for user if only PclZip available
    • \n
    • TWEAK: Fix unable to switch tab when a plugin (wrongly) loads certain CSS onto UD’s settings page
    • \n
    • TWEAK: Remove the word ‘apparently’ in the backup success message
    • \n
    • TWEAK: Update to latest phpseclib 1.0.X version (prevents deprecation notice on PHP 8.1+)
    • \n
    • TWEAK: Change “s3” property to “public” in UpdraftPlus_AWSRequest class for PHP 8.2 deprecation compatibility
    • \n
    • TWEAK: Fixed Missing/ broken links for the pCloud image in addons tab
    • \n
    • TWEAK: Buying UpdraftClone tokens through inline checkout
    • \n
    • TWEAK: Fixed Spelling errors in updraftplus repo
    • \n
    • TWEAK: Added save button at the top of setting tab content
    • \n
    • TWEAK: UpdraftCentral module now, by default, overwrites the same existing theme installed on the remote sites (if any), regardless of what version is currently installed or what version being uploaded and installed
    • \n
    • TWEAK: Define class properties in Updraft_Checkout_Embed class for PHP 8.2 deprecation compatibility
    • \n
    • TWEAK: Update the composer package yahnis-elsts/plugin-update-checker for PHP 8.2 compatibility
    • \n
    • TWEAK: Added username and email details for authenticated dropbox account in updraftplus settings
    • \n
    • TRANSLATIONS: Split sentences to make one sentence in any translation functions
    • \n
    \n

    1.23.7 – 04/Jul/2023

    \n
      \n
    • FIX: When Dropbox returns an error, this error was not always correctly passed up to the logging layer
    • \n
    • FIX: Search / replace database not working on Admin dashboard > Settings > UpdraftPlus Backups > Advanced Tools > Search / replace database on PHP 8.2 due to stricter type checking
    • \n
    • FIX: The SFTP remote storage stopped working in the UpdraftPlus 2.23.6 release. Reverted the change “TWEAK: Validate SFTP key field on credential test and before save”
    • \n
    • TWEAK: Fixed Missing/ broken links for the pCloud image in addons tab
    • \n
    • TWEAK: Buying UpdraftClone tokens through inline checkout
    • \n
    • TWEAK: Prevent PHP warning during some migrations when no table list provided
    • \n
    \n

    1.23.6 – 19/Jun/2023

    \n
      \n
    • FIX: Search / replace database not working on Admin dashboard > Settings > UpdraftPlus Backups > Advanced Tools > Search / replace database on PHP 8.2 due to stricter type checking
    • \n
    • TWEAK: Remove the incremental dropdown on incremental backup restore when the user selects only …
    • \n
    \n", "description": "

    The UpdraftPlus Backup & Migration Plugin is trusted by the WordPress community to backup, restore and migrate their WordPress websites. UpdraftPlus is actively installed on more than 3 million websites around the world.

    \n

    Backup with UpdraftPlus

    \n

    UpdraftPlus is the world’s highest ranking and most popular scheduled backup and migration plugin. Backup to your preferred storage location and restore in just three clicks.

    \n

    Backup to Dropbox, Google Drive, Amazon S3 (or compatible), Rackspace Cloud, FTP, DreamObjects, Openstack Swift or email.

    \n

    The paid version also allows you to backup to Microsoft OneDrive, Microsoft Azure, Google Cloud, Backblaze B2, SFTP, SCP, pCloud, WebDAV or UpdraftVault, our integrated storage option for UpdraftPlus.

    \n

    Backup manually or schedule to run every 2, 4, 8 or 12 hours, daily, weekly, monthly or fortnightly.

    \n

    Restore with UpdraftPlus

    \n

    Your WordPress website is vulnerable. Your site may get hacked. Something could go wrong with an update or your server could crash. You might need to reverse a change made or a mistake caused by human error.

    \n

    Whatever the reason, you can restore your WordPress website in just a few clicks with UpdraftPlus. Choose which components to restore (e.g. plugins, themes, database etc.), click again to restore, then click again to return to the main screen.

    \n

    Migrate with UpdraftPlus

    \n

    It’s easy to migrate your WordPress website to another web host, server or domain with this free version of UpdraftPlus.

    \n

    To migrate, simply download your database, plugins, themes etc. from the source site, then upload them into your destination site.

    \n

    When migrating, a built-in search-and-replace engine identifies old strings and replaces these to reflect the new location. UpdraftPlus saves you time and reduces the risk of broken links or missing files associated with manual migrations.

    \n

    Why UpdraftPlus?

    \n

    Writing a reliable backup and migration plugin that ‘just works’ consistently across millions of different WordPress deployments is hard. UpdraftPlus is relied upon to do exactly that. We’re trusted and actively deployed on more websites around the world than any other WordPress backup and migration plugin.

    \n

    UpdraftPlus:

    \n
      \n
    • Backs up, migrates and restores
    • \n
    • Offers a huge number of remote storage locations
    • \n
    • Allows you to schedule backups, so you can ‘set and forget’
    • \n
    • Is comprehensive and easy to use
    • \n
    • Is proven to work on over 3 million sites.
    • \n
    \n
    \n

    UpdraftPlus Premium

    \n

    The free version of UpdraftPlus will back up and migrate your website perfectly well. However if you need more features and options you can purchase our Premium version.

    \n

    Backup and Migrate with UpdraftPlus Premium, and:

    \n
      \n
    • \n

      Get automatic backups before updates. Restore the very latest version if a WordPress or plugin update breaks your site.

      \n
    • \n
    • \n

      Backup Incrementally. Changes are added to the master, saving server resources vs repeatedly backing up in full.

      \n
    • \n
    • \n

      Get more remote storage options including Microsoft OneDrive, SFTP, Microsoft Azure, WebDAV, Google Cloud, SCP, Backblaze and pCloud.

      \n
    • \n
    • \n

      Get 1GB of integrated storage with UpdraftVault for 99.999% reliability, redundancy and scalability.

      \n
    • \n
    • \n

      Get more control over how many backups are stored in a specified interval.
      \nRestore from other backup plugins including BackWPup, BackupWordPress, Simple Backups and more.

      \n
    • \n
    • \n

      Run backups at set times e.g. during periods of low traffic.

      \n
    • \n
    • \n

      Backup to more than one location for added protection.

      \n
    • \n
    • \n

      Get detailed reports. Includes cryptographic checksums so you can verify the integrity of the backup files and more.

      \n
    • \n
    • \n

      Get Premium migration. Migrating to the destination site is more direct and can be done from the source site.

      \n
    • \n
    • \n

      Get Multisite / multi-network compatibility.

      \n
    • \n
    • \n

      Backup non-WP files and databases e.g. tables belonging to your e-commerce store or customisations to WordPress core.

      \n
    • \n
    • \n

      Get database encryption.

      \n
    • \n
    • \n

      Manage your backups and migrations from the WP-CLI.

      \n
    • \n
    • \n

      Get Premium Support.

      \n
    • \n
    \n

    Find out more on our comparison page. UpdraftPlus Premium is available for purchase here.

    \n

    Managing multiple websites?

    \n

    UpdraftCentral is a powerful remote control dashboard for WordPress that allows you to manage your backups, as well as updates, users, pages, posts, plugins and themes from one central location. Choose between:

    \n\n

    Optimize your sites centrally by combining the power of WP-Optimize and UpdraftCentral or manage your backups centrally by combining the power of UpdraftPlus with UpdraftCentral.

    \n

    Need to create a temporary clone of your site?

    \n

    UpdraftClone makes it quick and easy to create a temporary sandbox for changes you want to try out. Simply select the versions of WordPress and PHP that you want, and we’ll do the rest. More about UpdraftClone

    \n

    The full suite of plugins from Team Updraft and friends

    \n
      \n
    • \n

      UpdraftPlus.
      \nBackup, migrate and restore. Rated 5* on the plugin directory and trusted by more than 3 million WordPress website owner

      \n
    • \n
    • \n

      WP-Optimize.
      \nClean the database, compress images and caching. Optimize your WordPress website. 5* user rating. 1 million + active installs.

      \n
    • \n
    • \n

      All-In-One Security (AIOS).
      \nSecure your WordPress website. Comprehensive, feature rich and easy to use. 5* user rating and 1 million + active installs.

      \n
    • \n
    • \n

      WP Overnight.
      \nQuality Extensions for your WooCommerce store. 5* rated invoicing, order and product management, customer management solutions and more.

      \n
    • \n
    • \n

      Easy Updates Manager.
      \nTake control of updates. Lots of features for free, and a Premium version with even more – over 300,000 users.

      \n
    • \n
    • \n

      Internal Link Juicer.Boost your SEO. Automate internal links within your WordPress website. Save time and rank higher in the search engines.

      \n
    • \n
    \n

    For other useful, free plugins see our lead developer’s profile, here.

    \n

    Are you multilingual? Can you translate?

    \n

    Do you want to help people that speak your language to backup, migrate and restore their WordPress websites?

    \n

    The UpdraftPlus backup, migration and restoration plugin is ready and waiting. The translation process is easy, and web-based – please go here for instructions: https://updraftplus.com/translate/.

    \n

    Or, if you’re already an expert WordPress translator, just pick out the .pot file from the wp-content/plugins/updraftplus/languages/ directory – if you scan for translatable strings manually, then you need to get these functions: _x(), __(), _e(), _ex(), log_e().

    \n

    Many thanks to our existing translators.

    \n

    License

    \n
    Copyright 2011-24 David Anderson\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\n
    \n

    Non-English translators are provided by volunteers, and wordpress.org does not give plugin developers control over their translations; thus relying on them is at your own risk; UpdraftPlus cannot guarantee that translations from the original English are accurate.

    \n

    We recognise and thank those mentioned at https://updraftplus.com/acknowledgements/ for code and/or libraries used and/or modified under the terms of their open source licences.

    \n", "screenshots": "
    1. \"<p>Main

      Main dashboard - screenshots are from UpdraftPlus Premium, so may reference some features that are not part of the free version

    2. \"<p>Configuring

      Configuring your backups

    3. \"<p>Take

      Take a backup

    4. \"<p>Choose

      Choose which components to restore

    "}, "versions": {"0.7.4": "https://downloads.wordpress.org/plugin/updraftplus.0.7.4.zip", "0.7.7": "https://downloads.wordpress.org/plugin/updraftplus.0.7.7.zip", "0.9.1": "https://downloads.wordpress.org/plugin/updraftplus.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/updraftplus.0.9.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/updraftplus.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/updraftplus.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/updraftplus.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/updraftplus.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/updraftplus.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/updraftplus.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/plugin/updraftplus.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/plugin/updraftplus.1.1.0.zip", "1.1.2": "https://downloads.wordpress.org/plugin/updraftplus.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/updraftplus.1.1.3.zip", "1.1.5": "https://downloads.wordpress.org/plugin/updraftplus.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/updraftplus.1.1.6.zip", "1.1.8": "https://downloads.wordpress.org/plugin/updraftplus.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/plugin/updraftplus.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/plugin/updraftplus.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/updraftplus.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/updraftplus.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/updraftplus.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/updraftplus.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/updraftplus.1.2.5.zip", "1.2.7": "https://downloads.wordpress.org/plugin/updraftplus.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/updraftplus.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/updraftplus.1.2.9.zip", "1.3.2": "https://downloads.wordpress.org/plugin/updraftplus.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/updraftplus.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/updraftplus.1.3.4.zip", "1.3.6": "https://downloads.wordpress.org/plugin/updraftplus.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/updraftplus.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/updraftplus.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/updraftplus.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/plugin/updraftplus.1.4.0.zip", "1.4.2": "https://downloads.wordpress.org/plugin/updraftplus.1.4.2.zip", "1.4.4": "https://downloads.wordpress.org/plugin/updraftplus.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/updraftplus.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/updraftplus.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/updraftplus.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/updraftplus.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/updraftplus.1.4.9.zip", "1.5.5": "https://downloads.wordpress.org/plugin/updraftplus.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/updraftplus.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/updraftplus.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/updraftplus.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/updraftplus.1.5.9.zip", "1.6.1": "https://downloads.wordpress.org/plugin/updraftplus.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/updraftplus.1.6.2.zip", "1.7.0": "https://downloads.wordpress.org/plugin/updraftplus.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/updraftplus.1.7.1.zip", "1.7.3": "https://downloads.wordpress.org/plugin/updraftplus.1.7.3.zip", "1.8.1": "https://downloads.wordpress.org/plugin/updraftplus.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/updraftplus.1.8.2.zip", "1.8.5": "https://downloads.wordpress.org/plugin/updraftplus.1.8.5.zip", "1.8.8": "https://downloads.wordpress.org/plugin/updraftplus.1.8.8.zip", "1.9.0": "https://downloads.wordpress.org/plugin/updraftplus.1.9.0.zip", "1.9.4": "https://downloads.wordpress.org/plugin/updraftplus.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/updraftplus.1.9.5.zip", "trunk": "https://downloads.wordpress.org/plugin/updraftplus.zip", "0.8.28": "https://downloads.wordpress.org/plugin/updraftplus.0.8.28.zip", "0.8.29": "https://downloads.wordpress.org/plugin/updraftplus.0.8.29.zip", "0.8.30": "https://downloads.wordpress.org/plugin/updraftplus.0.8.30.zip", "0.8.31": "https://downloads.wordpress.org/plugin/updraftplus.0.8.31.zip", "0.8.32": "https://downloads.wordpress.org/plugin/updraftplus.0.8.32.zip", "0.8.33": "https://downloads.wordpress.org/plugin/updraftplus.0.8.33.zip", "0.8.36": "https://downloads.wordpress.org/plugin/updraftplus.0.8.36.zip", "0.8.37": "https://downloads.wordpress.org/plugin/updraftplus.0.8.37.zip", "0.8.50": "https://downloads.wordpress.org/plugin/updraftplus.0.8.50.zip", "0.8.51": "https://downloads.wordpress.org/plugin/updraftplus.0.8.51.zip", "0.9.10": "https://downloads.wordpress.org/plugin/updraftplus.0.9.10.zip", "0.9.11": "https://downloads.wordpress.org/plugin/updraftplus.0.9.11.zip", "0.9.12": "https://downloads.wordpress.org/plugin/updraftplus.0.9.12.zip", "0.9.20": "https://downloads.wordpress.org/plugin/updraftplus.0.9.20.zip", "0.9.21": "https://downloads.wordpress.org/plugin/updraftplus.0.9.21.zip", "0.9.22": "https://downloads.wordpress.org/plugin/updraftplus.0.9.22.zip", "1.0.10": "https://downloads.wordpress.org/plugin/updraftplus.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/plugin/updraftplus.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/plugin/updraftplus.1.0.12.zip", "1.0.15": "https://downloads.wordpress.org/plugin/updraftplus.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/plugin/updraftplus.1.0.16.zip", "1.0.18": "https://downloads.wordpress.org/plugin/updraftplus.1.0.18.zip", "1.0.20": "https://downloads.wordpress.org/plugin/updraftplus.1.0.20.zip", "1.1.10": "https://downloads.wordpress.org/plugin/updraftplus.1.1.10.zip", "1.1.11": "https://downloads.wordpress.org/plugin/updraftplus.1.1.11.zip", "1.1.12": "https://downloads.wordpress.org/plugin/updraftplus.1.1.12.zip", "1.1.13": "https://downloads.wordpress.org/plugin/updraftplus.1.1.13.zip", "1.1.14": "https://downloads.wordpress.org/plugin/updraftplus.1.1.14.zip", "1.1.15": "https://downloads.wordpress.org/plugin/updraftplus.1.1.15.zip", "1.1.16": "https://downloads.wordpress.org/plugin/updraftplus.1.1.16.zip", "1.1.17": "https://downloads.wordpress.org/plugin/updraftplus.1.1.17.zip", "1.10.1": "https://downloads.wordpress.org/plugin/updraftplus.1.10.1.zip", "1.10.3": "https://downloads.wordpress.org/plugin/updraftplus.1.10.3.zip", "1.11.1": "https://downloads.wordpress.org/plugin/updraftplus.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/plugin/updraftplus.1.11.2.zip", "1.11.3": "https://downloads.wordpress.org/plugin/updraftplus.1.11.3.zip", "1.11.4": "https://downloads.wordpress.org/plugin/updraftplus.1.11.4.zip", "1.11.5": "https://downloads.wordpress.org/plugin/updraftplus.1.11.5.zip", "1.11.8": "https://downloads.wordpress.org/plugin/updraftplus.1.11.8.zip", "1.11.9": "https://downloads.wordpress.org/plugin/updraftplus.1.11.9.zip", "1.12.0": "https://downloads.wordpress.org/plugin/updraftplus.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/updraftplus.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/updraftplus.1.12.2.zip", "1.12.4": "https://downloads.wordpress.org/plugin/updraftplus.1.12.4.zip", "1.12.6": "https://downloads.wordpress.org/plugin/updraftplus.1.12.6.zip", "1.13.1": "https://downloads.wordpress.org/plugin/updraftplus.1.13.1.zip", "1.13.2": "https://downloads.wordpress.org/plugin/updraftplus.1.13.2.zip", "1.13.3": "https://downloads.wordpress.org/plugin/updraftplus.1.13.3.zip", "1.13.4": "https://downloads.wordpress.org/plugin/updraftplus.1.13.4.zip", "1.13.5": "https://downloads.wordpress.org/plugin/updraftplus.1.13.5.zip", "1.13.6": "https://downloads.wordpress.org/plugin/updraftplus.1.13.6.zip", "1.13.7": "https://downloads.wordpress.org/plugin/updraftplus.1.13.7.zip", "1.13.8": "https://downloads.wordpress.org/plugin/updraftplus.1.13.8.zip", "1.13.9": "https://downloads.wordpress.org/plugin/updraftplus.1.13.9.zip", "1.14.2": "https://downloads.wordpress.org/plugin/updraftplus.1.14.2.zip", "1.14.3": "https://downloads.wordpress.org/plugin/updraftplus.1.14.3.zip", "1.14.4": "https://downloads.wordpress.org/plugin/updraftplus.1.14.4.zip", "1.14.5": "https://downloads.wordpress.org/plugin/updraftplus.1.14.5.zip", "1.14.7": "https://downloads.wordpress.org/plugin/updraftplus.1.14.7.zip", "1.14.9": "https://downloads.wordpress.org/plugin/updraftplus.1.14.9.zip", "1.15.0": "https://downloads.wordpress.org/plugin/updraftplus.1.15.0.zip", "1.15.2": "https://downloads.wordpress.org/plugin/updraftplus.1.15.2.zip", "1.15.3": "https://downloads.wordpress.org/plugin/updraftplus.1.15.3.zip", "1.15.5": "https://downloads.wordpress.org/plugin/updraftplus.1.15.5.zip", "1.15.6": "https://downloads.wordpress.org/plugin/updraftplus.1.15.6.zip", "1.15.7": "https://downloads.wordpress.org/plugin/updraftplus.1.15.7.zip", "1.16.0": "https://downloads.wordpress.org/plugin/updraftplus.1.16.0.zip", "1.16.4": "https://downloads.wordpress.org/plugin/updraftplus.1.16.4.zip", "1.16.5": "https://downloads.wordpress.org/plugin/updraftplus.1.16.5.zip", "1.16.6": "https://downloads.wordpress.org/plugin/updraftplus.1.16.6.zip", "1.16.7": "https://downloads.wordpress.org/plugin/updraftplus.1.16.7.zip", "1.16.8": "https://downloads.wordpress.org/plugin/updraftplus.1.16.8.zip", "1.16.9": "https://downloads.wordpress.org/plugin/updraftplus.1.16.9.zip", "1.2.10": "https://downloads.wordpress.org/plugin/updraftplus.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/plugin/updraftplus.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/plugin/updraftplus.1.2.12.zip", "1.2.14": "https://downloads.wordpress.org/plugin/updraftplus.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/plugin/updraftplus.1.2.15.zip", "1.2.16": "https://downloads.wordpress.org/plugin/updraftplus.1.2.16.zip", "1.2.17": "https://downloads.wordpress.org/plugin/updraftplus.1.2.17.zip", "1.2.19": "https://downloads.wordpress.org/plugin/updraftplus.1.2.19.zip", "1.2.20": "https://downloads.wordpress.org/plugin/updraftplus.1.2.20.zip", "1.2.24": "https://downloads.wordpress.org/plugin/updraftplus.1.2.24.zip", "1.2.25": "https://downloads.wordpress.org/plugin/updraftplus.1.2.25.zip", "1.2.26": "https://downloads.wordpress.org/plugin/updraftplus.1.2.26.zip", "1.2.27": "https://downloads.wordpress.org/plugin/updraftplus.1.2.27.zip", "1.2.28": "https://downloads.wordpress.org/plugin/updraftplus.1.2.28.zip", "1.2.29": "https://downloads.wordpress.org/plugin/updraftplus.1.2.29.zip", "1.2.30": "https://downloads.wordpress.org/plugin/updraftplus.1.2.30.zip", "1.2.31": "https://downloads.wordpress.org/plugin/updraftplus.1.2.31.zip", "1.2.33": "https://downloads.wordpress.org/plugin/updraftplus.1.2.33.zip", "1.2.35": "https://downloads.wordpress.org/plugin/updraftplus.1.2.35.zip", "1.2.36": "https://downloads.wordpress.org/plugin/updraftplus.1.2.36.zip", "1.2.38": "https://downloads.wordpress.org/plugin/updraftplus.1.2.38.zip", "1.2.39": "https://downloads.wordpress.org/plugin/updraftplus.1.2.39.zip", "1.2.40": "https://downloads.wordpress.org/plugin/updraftplus.1.2.40.zip", "1.2.41": "https://downloads.wordpress.org/plugin/updraftplus.1.2.41.zip", "1.2.42": "https://downloads.wordpress.org/plugin/updraftplus.1.2.42.zip", "1.2.43": "https://downloads.wordpress.org/plugin/updraftplus.1.2.43.zip", "1.2.44": "https://downloads.wordpress.org/plugin/updraftplus.1.2.44.zip", "1.2.45": "https://downloads.wordpress.org/plugin/updraftplus.1.2.45.zip", "1.2.46": "https://downloads.wordpress.org/plugin/updraftplus.1.2.46.zip", "1.22.1": "https://downloads.wordpress.org/plugin/updraftplus.1.22.1.zip", "1.22.3": "https://downloads.wordpress.org/plugin/updraftplus.1.22.3.zip", "1.22.4": "https://downloads.wordpress.org/plugin/updraftplus.1.22.4.zip", "1.22.5": "https://downloads.wordpress.org/plugin/updraftplus.1.22.5.zip", "1.22.6": "https://downloads.wordpress.org/plugin/updraftplus.1.22.6.zip", "1.22.7": "https://downloads.wordpress.org/plugin/updraftplus.1.22.7.zip", "1.22.8": "https://downloads.wordpress.org/plugin/updraftplus.1.22.8.zip", "1.22.9": "https://downloads.wordpress.org/plugin/updraftplus.1.22.9.zip", "1.23.1": "https://downloads.wordpress.org/plugin/updraftplus.1.23.1.zip", "1.23.2": "https://downloads.wordpress.org/plugin/updraftplus.1.23.2.zip", "1.23.3": "https://downloads.wordpress.org/plugin/updraftplus.1.23.3.zip", "1.23.4": "https://downloads.wordpress.org/plugin/updraftplus.1.23.4.zip", "1.23.5": "https://downloads.wordpress.org/plugin/updraftplus.1.23.5.zip", "1.23.6": "https://downloads.wordpress.org/plugin/updraftplus.1.23.6.zip", "1.23.7": "https://downloads.wordpress.org/plugin/updraftplus.1.23.7.zip", "1.23.8": "https://downloads.wordpress.org/plugin/updraftplus.1.23.8.zip", "1.23.9": "https://downloads.wordpress.org/plugin/updraftplus.1.23.9.zip", "1.24.1": "https://downloads.wordpress.org/plugin/updraftplus.1.24.1.zip", "1.24.2": "https://downloads.wordpress.org/plugin/updraftplus.1.24.2.zip", "1.24.3": "https://downloads.wordpress.org/plugin/updraftplus.1.24.3.zip", "1.24.4": "https://downloads.wordpress.org/plugin/updraftplus.1.24.4.zip", "1.24.5": "https://downloads.wordpress.org/plugin/updraftplus.1.24.5.zip", "1.24.6": "https://downloads.wordpress.org/plugin/updraftplus.1.24.6.zip", "1.24.7": "https://downloads.wordpress.org/plugin/updraftplus.1.24.7.zip", "1.24.8": "https://downloads.wordpress.org/plugin/updraftplus.1.24.8.zip", "1.24.9": "https://downloads.wordpress.org/plugin/updraftplus.1.24.9.zip", "1.25.1": "https://downloads.wordpress.org/plugin/updraftplus.1.25.1.zip", "1.25.2": "https://downloads.wordpress.org/plugin/updraftplus.1.25.2.zip", "1.25.3": "https://downloads.wordpress.org/plugin/updraftplus.1.25.3.zip", "1.25.5": "https://downloads.wordpress.org/plugin/updraftplus.1.25.5.zip", "1.25.6": "https://downloads.wordpress.org/plugin/updraftplus.1.25.6.zip", "1.25.7": "https://downloads.wordpress.org/plugin/updraftplus.1.25.7.zip", "1.25.8": "https://downloads.wordpress.org/plugin/updraftplus.1.25.8.zip", "1.3.10": "https://downloads.wordpress.org/plugin/updraftplus.1.3.10.zip", "1.3.12": "https://downloads.wordpress.org/plugin/updraftplus.1.3.12.zip", "1.3.14": "https://downloads.wordpress.org/plugin/updraftplus.1.3.14.zip", "1.3.15": "https://downloads.wordpress.org/plugin/updraftplus.1.3.15.zip", "1.3.17": "https://downloads.wordpress.org/plugin/updraftplus.1.3.17.zip", "1.3.18": "https://downloads.wordpress.org/plugin/updraftplus.1.3.18.zip", "1.3.19": "https://downloads.wordpress.org/plugin/updraftplus.1.3.19.zip", "1.3.20": "https://downloads.wordpress.org/plugin/updraftplus.1.3.20.zip", "1.3.22": "https://downloads.wordpress.org/plugin/updraftplus.1.3.22.zip", "1.3.23": "https://downloads.wordpress.org/plugin/updraftplus.1.3.23.zip", "1.3.24": "https://downloads.wordpress.org/plugin/updraftplus.1.3.24.zip", "1.3.25": "https://downloads.wordpress.org/plugin/updraftplus.1.3.25.zip", "1.4.10": "https://downloads.wordpress.org/plugin/updraftplus.1.4.10.zip", "1.4.11": "https://downloads.wordpress.org/plugin/updraftplus.1.4.11.zip", "1.4.12": "https://downloads.wordpress.org/plugin/updraftplus.1.4.12.zip", "1.4.13": "https://downloads.wordpress.org/plugin/updraftplus.1.4.13.zip", "1.4.14": "https://downloads.wordpress.org/plugin/updraftplus.1.4.14.zip", "1.4.15": "https://downloads.wordpress.org/plugin/updraftplus.1.4.15.zip", "1.4.27": "https://downloads.wordpress.org/plugin/updraftplus.1.4.27.zip", "1.4.28": "https://downloads.wordpress.org/plugin/updraftplus.1.4.28.zip", "1.4.29": "https://downloads.wordpress.org/plugin/updraftplus.1.4.29.zip", "1.4.30": "https://downloads.wordpress.org/plugin/updraftplus.1.4.30.zip", "1.4.48": "https://downloads.wordpress.org/plugin/updraftplus.1.4.48.zip", "1.5.16": "https://downloads.wordpress.org/plugin/updraftplus.1.5.16.zip", "1.5.20": "https://downloads.wordpress.org/plugin/updraftplus.1.5.20.zip", "1.5.21": "https://downloads.wordpress.org/plugin/updraftplus.1.5.21.zip", "1.5.22": "https://downloads.wordpress.org/plugin/updraftplus.1.5.22.zip", "1.6.17": "https://downloads.wordpress.org/plugin/updraftplus.1.6.17.zip", "1.6.46": "https://downloads.wordpress.org/plugin/updraftplus.1.6.46.zip", "1.7.18": "https://downloads.wordpress.org/plugin/updraftplus.1.7.18.zip", "1.7.20": "https://downloads.wordpress.org/plugin/updraftplus.1.7.20.zip", "1.7.34": "https://downloads.wordpress.org/plugin/updraftplus.1.7.34.zip", "1.7.35": "https://downloads.wordpress.org/plugin/updraftplus.1.7.35.zip", "1.7.39": "https://downloads.wordpress.org/plugin/updraftplus.1.7.39.zip", "1.7.40": "https://downloads.wordpress.org/plugin/updraftplus.1.7.40.zip", "1.7.41": "https://downloads.wordpress.org/plugin/updraftplus.1.7.41.zip", "1.8.11": "https://downloads.wordpress.org/plugin/updraftplus.1.8.11.zip", "1.8.12": "https://downloads.wordpress.org/plugin/updraftplus.1.8.12.zip", "1.8.13": "https://downloads.wordpress.org/plugin/updraftplus.1.8.13.zip", "1.9.13": "https://downloads.wordpress.org/plugin/updraftplus.1.9.13.zip", "1.9.15": "https://downloads.wordpress.org/plugin/updraftplus.1.9.15.zip", "1.9.17": "https://downloads.wordpress.org/plugin/updraftplus.1.9.17.zip", "1.9.19": "https://downloads.wordpress.org/plugin/updraftplus.1.9.19.zip", "1.9.25": "https://downloads.wordpress.org/plugin/updraftplus.1.9.25.zip", "1.9.26": "https://downloads.wordpress.org/plugin/updraftplus.1.9.26.zip", "1.9.30": "https://downloads.wordpress.org/plugin/updraftplus.1.9.30.zip", "1.9.31": "https://downloads.wordpress.org/plugin/updraftplus.1.9.31.zip", "1.9.32": "https://downloads.wordpress.org/plugin/updraftplus.1.9.32.zip", "1.9.40": "https://downloads.wordpress.org/plugin/updraftplus.1.9.40.zip", "1.9.41": "https://downloads.wordpress.org/plugin/updraftplus.1.9.41.zip", "1.9.42": "https://downloads.wordpress.org/plugin/updraftplus.1.9.42.zip", "1.9.43": "https://downloads.wordpress.org/plugin/updraftplus.1.9.43.zip", "1.9.44": "https://downloads.wordpress.org/plugin/updraftplus.1.9.44.zip", "1.9.45": "https://downloads.wordpress.org/plugin/updraftplus.1.9.45.zip", "1.9.46": "https://downloads.wordpress.org/plugin/updraftplus.1.9.46.zip", "1.9.50": "https://downloads.wordpress.org/plugin/updraftplus.1.9.50.zip", "1.9.51": "https://downloads.wordpress.org/plugin/updraftplus.1.9.51.zip", "1.9.60": "https://downloads.wordpress.org/plugin/updraftplus.1.9.60.zip", "1.9.62": "https://downloads.wordpress.org/plugin/updraftplus.1.9.62.zip", "1.9.63": "https://downloads.wordpress.org/plugin/updraftplus.1.9.63.zip", "1.9.64": "https://downloads.wordpress.org/plugin/updraftplus.1.9.64.zip", "1.11.12": "https://downloads.wordpress.org/plugin/updraftplus.1.11.12.zip", "1.11.15": "https://downloads.wordpress.org/plugin/updraftplus.1.11.15.zip", "1.11.17": "https://downloads.wordpress.org/plugin/updraftplus.1.11.17.zip", "1.11.18": "https://downloads.wordpress.org/plugin/updraftplus.1.11.18.zip", "1.11.20": "https://downloads.wordpress.org/plugin/updraftplus.1.11.20.zip", "1.11.23": "https://downloads.wordpress.org/plugin/updraftplus.1.11.23.zip", "1.11.24": "https://downloads.wordpress.org/plugin/updraftplus.1.11.24.zip", "1.11.25": "https://downloads.wordpress.org/plugin/updraftplus.1.11.25.zip", "1.11.26": "https://downloads.wordpress.org/plugin/updraftplus.1.11.26.zip", "1.11.27": "https://downloads.wordpress.org/plugin/updraftplus.1.11.27.zip", "1.11.28": "https://downloads.wordpress.org/plugin/updraftplus.1.11.28.zip", "1.12.12": "https://downloads.wordpress.org/plugin/updraftplus.1.12.12.zip", "1.12.13": "https://downloads.wordpress.org/plugin/updraftplus.1.12.13.zip", "1.12.15": "https://downloads.wordpress.org/plugin/updraftplus.1.12.15.zip", "1.12.17": "https://downloads.wordpress.org/plugin/updraftplus.1.12.17.zip", "1.12.20": "https://downloads.wordpress.org/plugin/updraftplus.1.12.20.zip", "1.12.23": "https://downloads.wordpress.org/plugin/updraftplus.1.12.23.zip", "1.12.24": "https://downloads.wordpress.org/plugin/updraftplus.1.12.24.zip", "1.12.25": "https://downloads.wordpress.org/plugin/updraftplus.1.12.25.zip", "1.12.28": "https://downloads.wordpress.org/plugin/updraftplus.1.12.28.zip", "1.12.29": "https://downloads.wordpress.org/plugin/updraftplus.1.12.29.zip", "1.12.30": "https://downloads.wordpress.org/plugin/updraftplus.1.12.30.zip", "1.12.32": "https://downloads.wordpress.org/plugin/updraftplus.1.12.32.zip", "1.12.34": "https://downloads.wordpress.org/plugin/updraftplus.1.12.34.zip", "1.12.35": "https://downloads.wordpress.org/plugin/updraftplus.1.12.35.zip", "1.12.37": "https://downloads.wordpress.org/plugin/updraftplus.1.12.37.zip", "1.12.39": "https://downloads.wordpress.org/plugin/updraftplus.1.12.39.zip", "1.12.40": "https://downloads.wordpress.org/plugin/updraftplus.1.12.40.zip", "1.13.11": "https://downloads.wordpress.org/plugin/updraftplus.1.13.11.zip", "1.13.12": "https://downloads.wordpress.org/plugin/updraftplus.1.13.12.zip", "1.13.15": "https://downloads.wordpress.org/plugin/updraftplus.1.13.15.zip", "1.13.16": "https://downloads.wordpress.org/plugin/updraftplus.1.13.16.zip", "1.14.10": "https://downloads.wordpress.org/plugin/updraftplus.1.14.10.zip", "1.14.11": "https://downloads.wordpress.org/plugin/updraftplus.1.14.11.zip", "1.14.12": "https://downloads.wordpress.org/plugin/updraftplus.1.14.12.zip", "1.14.13": "https://downloads.wordpress.org/plugin/updraftplus.1.14.13.zip", "1.16.10": "https://downloads.wordpress.org/plugin/updraftplus.1.16.10.zip", "1.16.11": "https://downloads.wordpress.org/plugin/updraftplus.1.16.11.zip", "1.16.12": "https://downloads.wordpress.org/plugin/updraftplus.1.16.12.zip", "1.16.13": "https://downloads.wordpress.org/plugin/updraftplus.1.16.13.zip", "1.16.14": "https://downloads.wordpress.org/plugin/updraftplus.1.16.14.zip", "1.16.15": "https://downloads.wordpress.org/plugin/updraftplus.1.16.15.zip", "1.16.16": "https://downloads.wordpress.org/plugin/updraftplus.1.16.16.zip", "1.16.17": "https://downloads.wordpress.org/plugin/updraftplus.1.16.17.zip", "1.16.20": "https://downloads.wordpress.org/plugin/updraftplus.1.16.20.zip", "1.16.21": "https://downloads.wordpress.org/plugin/updraftplus.1.16.21.zip", "1.16.22": "https://downloads.wordpress.org/plugin/updraftplus.1.16.22.zip", "1.16.23": "https://downloads.wordpress.org/plugin/updraftplus.1.16.23.zip", "1.16.24": "https://downloads.wordpress.org/plugin/updraftplus.1.16.24.zip", "1.16.25": "https://downloads.wordpress.org/plugin/updraftplus.1.16.25.zip", "1.16.26": "https://downloads.wordpress.org/plugin/updraftplus.1.16.26.zip", "1.16.28": "https://downloads.wordpress.org/plugin/updraftplus.1.16.28.zip", "1.16.29": "https://downloads.wordpress.org/plugin/updraftplus.1.16.29.zip", "1.16.32": "https://downloads.wordpress.org/plugin/updraftplus.1.16.32.zip", "1.16.34": "https://downloads.wordpress.org/plugin/updraftplus.1.16.34.zip", "1.16.35": "https://downloads.wordpress.org/plugin/updraftplus.1.16.35.zip", "1.16.36": "https://downloads.wordpress.org/plugin/updraftplus.1.16.36.zip", "1.16.37": "https://downloads.wordpress.org/plugin/updraftplus.1.16.37.zip", "1.16.40": "https://downloads.wordpress.org/plugin/updraftplus.1.16.40.zip", "1.16.41": "https://downloads.wordpress.org/plugin/updraftplus.1.16.41.zip", "1.16.42": "https://downloads.wordpress.org/plugin/updraftplus.1.16.42.zip", "1.16.43": "https://downloads.wordpress.org/plugin/updraftplus.1.16.43.zip", "1.16.44": "https://downloads.wordpress.org/plugin/updraftplus.1.16.44.zip", "1.16.45": "https://downloads.wordpress.org/plugin/updraftplus.1.16.45.zip", "1.16.46": "https://downloads.wordpress.org/plugin/updraftplus.1.16.46.zip", "1.16.47": "https://downloads.wordpress.org/plugin/updraftplus.1.16.47.zip", "1.16.48": "https://downloads.wordpress.org/plugin/updraftplus.1.16.48.zip", "1.16.49": "https://downloads.wordpress.org/plugin/updraftplus.1.16.49.zip", "1.16.50": "https://downloads.wordpress.org/plugin/updraftplus.1.16.50.zip", "1.16.51": "https://downloads.wordpress.org/plugin/updraftplus.1.16.51.zip", "1.16.53": "https://downloads.wordpress.org/plugin/updraftplus.1.16.53.zip", "1.16.55": "https://downloads.wordpress.org/plugin/updraftplus.1.16.55.zip", "1.16.56": "https://downloads.wordpress.org/plugin/updraftplus.1.16.56.zip", "1.16.59": "https://downloads.wordpress.org/plugin/updraftplus.1.16.59.zip", "1.16.60": "https://downloads.wordpress.org/plugin/updraftplus.1.16.60.zip", "1.16.61": "https://downloads.wordpress.org/plugin/updraftplus.1.16.61.zip", "1.16.62": "https://downloads.wordpress.org/plugin/updraftplus.1.16.62.zip", "1.16.63": "https://downloads.wordpress.org/plugin/updraftplus.1.16.63.zip", "1.16.64": "https://downloads.wordpress.org/plugin/updraftplus.1.16.64.zip", "1.16.65": "https://downloads.wordpress.org/plugin/updraftplus.1.16.65.zip", "1.16.66": "https://downloads.wordpress.org/plugin/updraftplus.1.16.66.zip", "1.16.67": "https://downloads.wordpress.org/plugin/updraftplus.1.16.67.zip", "1.16.68": "https://downloads.wordpress.org/plugin/updraftplus.1.16.68.zip", "1.16.69": "https://downloads.wordpress.org/plugin/updraftplus.1.16.69.zip", "1.22.10": "https://downloads.wordpress.org/plugin/updraftplus.1.22.10.zip", "1.22.11": "https://downloads.wordpress.org/plugin/updraftplus.1.22.11.zip", "1.22.12": "https://downloads.wordpress.org/plugin/updraftplus.1.22.12.zip", "1.22.14": "https://downloads.wordpress.org/plugin/updraftplus.1.22.14.zip", "1.22.15": "https://downloads.wordpress.org/plugin/updraftplus.1.22.15.zip", "1.22.16": "https://downloads.wordpress.org/plugin/updraftplus.1.22.16.zip", "1.22.17": "https://downloads.wordpress.org/plugin/updraftplus.1.22.17.zip", "1.22.18": "https://downloads.wordpress.org/plugin/updraftplus.1.22.18.zip", "1.22.19": "https://downloads.wordpress.org/plugin/updraftplus.1.22.19.zip", "1.22.20": "https://downloads.wordpress.org/plugin/updraftplus.1.22.20.zip", "1.22.21": "https://downloads.wordpress.org/plugin/updraftplus.1.22.21.zip", "1.22.22": "https://downloads.wordpress.org/plugin/updraftplus.1.22.22.zip", "1.22.23": "https://downloads.wordpress.org/plugin/updraftplus.1.22.23.zip", "1.22.24": "https://downloads.wordpress.org/plugin/updraftplus.1.22.24.zip", "1.23.10": "https://downloads.wordpress.org/plugin/updraftplus.1.23.10.zip", "1.23.11": "https://downloads.wordpress.org/plugin/updraftplus.1.23.11.zip", "1.23.12": "https://downloads.wordpress.org/plugin/updraftplus.1.23.12.zip", "1.23.13": "https://downloads.wordpress.org/plugin/updraftplus.1.23.13.zip", "1.23.15": "https://downloads.wordpress.org/plugin/updraftplus.1.23.15.zip", "1.23.16": "https://downloads.wordpress.org/plugin/updraftplus.1.23.16.zip", "1.24.10": "https://downloads.wordpress.org/plugin/updraftplus.1.24.10.zip", "1.24.11": "https://downloads.wordpress.org/plugin/updraftplus.1.24.11.zip", "1.24.12": "https://downloads.wordpress.org/plugin/updraftplus.1.24.12.zip"}, "downloaded": 147298416, "description": "

    The UpdraftPlus Backup & Migration Plugin is trusted by the WordPress community to backup, restore and migrate their WordPress websites. UpdraftPlus is actively installed on more than 3 million websites around the world.

    \n

    Backup with UpdraftPlus

    \n

    UpdraftPlus is the world’s highest ranking and most popular scheduled backup and migration plugin. Backup to your preferred storage location and restore in just three clicks.

    \n

    Backup to Dropbox, Google Drive, Amazon S3 (or compatible), Rackspace Cloud, FTP, DreamObjects, Openstack Swift or email.

    \n

    The paid version also allows you to backup to Microsoft OneDrive, Microsoft Azure, Google Cloud, Backblaze B2, SFTP, SCP, pCloud, WebDAV or UpdraftVault, our integrated storage option for UpdraftPlus.

    \n

    Backup manually or schedule to run every 2, 4, 8 or 12 hours, daily, weekly, monthly or fortnightly.

    \n

    Restore with UpdraftPlus

    \n

    Your WordPress website is vulnerable. Your site may get hacked. Something could go wrong with an update or your server could crash. You might need to reverse a change made or a mistake caused by human error.

    \n

    Whatever the reason, you can restore your WordPress website in just a few clicks with UpdraftPlus. Choose which components to restore (e.g. plugins, themes, database etc.), click again to restore, then click again to return to the main screen.

    \n

    Migrate with UpdraftPlus

    \n

    It’s easy to migrate your WordPress website to another web host, server or domain with this free version of UpdraftPlus.

    \n

    To migrate, simply download your database, plugins, themes etc. from the source site, then upload them into your destination site.

    \n

    When migrating, a built-in search-and-replace engine identifies old strings and replaces these to reflect the new location. UpdraftPlus saves you time and reduces the risk of broken links or missing files associated with manual migrations.

    \n

    Why UpdraftPlus?

    \n

    Writing a reliable backup and migration plugin that ‘just works’ consistently across millions of different WordPress deployments is hard. UpdraftPlus is relied upon to do exactly that. We’re trusted and actively deployed on more websites around the world than any other WordPress backup and migration plugin.

    \n

    UpdraftPlus:

    \n
      \n
    • Backs up, migrates and restores
    • \n
    • Offers a huge number of remote storage locations
    • \n
    • Allows you to schedule backups, so you can ‘set and forget’
    • \n
    • Is comprehensive and easy to use
    • \n
    • Is proven to work on over 3 million sites.
    • \n
    \n
    \n

    UpdraftPlus Premium

    \n

    The free version of UpdraftPlus will back up and migrate your website perfectly well. However if you need more features and options you can purchase our Premium version.

    \n

    Backup and Migrate with UpdraftPlus Premium, and:

    \n
      \n
    • \n

      Get automatic backups before updates. Restore the very latest version if a WordPress or plugin update breaks your site.

      \n
    • \n
    • \n

      Backup Incrementally. Changes are added to the master, saving server resources vs repeatedly backing up in full.

      \n
    • \n
    • \n

      Get more remote storage options including Microsoft OneDrive, SFTP, Microsoft Azure, WebDAV, Google Cloud, SCP, Backblaze and pCloud.

      \n
    • \n
    • \n

      Get 1GB of integrated storage with UpdraftVault for 99.999% reliability, redundancy and scalability.

      \n
    • \n
    • \n

      Get more control over how many backups are stored in a specified interval.
      \nRestore from other backup plugins including BackWPup, BackupWordPress, Simple Backups and more.

      \n
    • \n
    • \n

      Run backups at set times e.g. during periods of low traffic.

      \n
    • \n
    • \n

      Backup to more than one location for added protection.

      \n
    • \n
    • \n

      Get detailed reports. Includes cryptographic checksums so you can verify the integrity of the backup files and more.

      \n
    • \n
    • \n

      Get Premium migration. Migrating to the destination site is more direct and can be done from the source site.

      \n
    • \n
    • \n

      Get Multisite / multi-network compatibility.

      \n
    • \n
    • \n

      Backup non-WP files and databases e.g. tables belonging to your e-commerce store or customisations to WordPress core.

      \n
    • \n
    • \n

      Get database encryption.

      \n
    • \n
    • \n

      Manage your backups and migrations from the WP-CLI.

      \n
    • \n
    • \n

      Get Premium Support.

      \n
    • \n
    \n

    Find out more on our comparison page. UpdraftPlus Premium is available for purchase here.

    \n

    Managing multiple websites?

    \n

    UpdraftCentral is a powerful remote control dashboard for WordPress that allows you to manage your backups, as well as updates, users, pages, posts, plugins and themes from one central location. Choose between:

    \n\n

    Optimize your sites centrally by combining the power of WP-Optimize and UpdraftCentral or manage your backups centrally by combining the power of UpdraftPlus with UpdraftCentral.

    \n

    Need to create a temporary clone of your site?

    \n

    UpdraftClone makes it quick and easy to create a temporary sandbox for changes you want to try out. Simply select the versions of WordPress and PHP that you want, and we’ll do the rest. More about UpdraftClone

    \n

    The full suite of plugins from Team Updraft and friends

    \n
      \n
    • \n

      UpdraftPlus.
      \nBackup, migrate and restore. Rated 5* on the plugin directory and trusted by more than 3 million WordPress website owner

      \n
    • \n
    • \n

      WP-Optimize.
      \nClean the database, compress images and caching. Optimize your WordPress website. 5* user rating. 1 million + active installs.

      \n
    • \n
    • \n

      All-In-One Security (AIOS).
      \nSecure your WordPress website. Comprehensive, feature rich and easy to use. 5* user rating and 1 million + active installs.

      \n
    • \n
    • \n

      WP Overnight.
      \nQuality Extensions for your WooCommerce store. 5* rated invoicing, order and product management, customer management solutions and more.

      \n
    • \n
    • \n

      Easy Updates Manager.
      \nTake control of updates. Lots of features for free, and a Premium version with even more – over 300,000 users.

      \n
    • \n
    • \n

      Internal Link Juicer.Boost your SEO. Automate internal links within your WordPress website. Save time and rank higher in the search engines.

      \n
    • \n
    \n

    For other useful, free plugins see our lead developer’s profile, here.

    \n

    Are you multilingual? Can you translate?

    \n

    Do you want to help people that speak your language to backup, migrate and restore their WordPress websites?

    \n

    The UpdraftPlus backup, migration and restoration plugin is ready and waiting. The translation process is easy, and web-based – please go here for instructions: https://updraftplus.com/translate/.

    \n

    Or, if you’re already an expert WordPress translator, just pick out the .pot file from the wp-content/plugins/updraftplus/languages/ directory – if you scan for translatable strings manually, then you need to get these functions: _x(), __(), _e(), _ex(), log_e().

    \n

    Many thanks to our existing translators.

    \n

    License

    \n
    Copyright 2011-24 David Anderson\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\n
    \n

    Non-English translators are provided by volunteers, and wordpress.org does not give plugin developers control over their translations; thus relying on them is at your own risk; UpdraftPlus cannot guarantee that translations from the original English are accurate.

    \n

    We recognise and thank those mentioned at https://updraftplus.com/acknowledgements/ for code and/or libraries used and/or modified under the terms of their open source licences.

    \n", "donate_link": "https://david.dw-perspective.org.uk/donate", "num_ratings": 8195, "screenshots": {"1": {"src": "https://ps.w.org/updraftplus/assets/screenshot-1.png?rev=1927660", "caption": "

    Main dashboard - screenshots are from UpdraftPlus Premium, so may reference some features that are not part of the free version

    "}, "2": {"src": "https://ps.w.org/updraftplus/assets/screenshot-2.png?rev=1927660", "caption": "

    Configuring your backups

    "}, "3": {"src": "https://ps.w.org/updraftplus/assets/screenshot-3.png?rev=1686200", "caption": "

    Take a backup

    "}, "4": {"src": "https://ps.w.org/updraftplus/assets/screenshot-4.png?rev=1686200", "caption": "

    Choose which components to restore

    "}}, "support_url": "https://wordpress.org/support/plugin/updraftplus/", "contributors": {"aporter": {"avatar": "https://secure.gravatar.com/avatar/e6022bd1050be79e76d099696b2e0e277c2b23ed227fca2453ba961b1e87f8e4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aporter/", "display_name": "aporter"}, "bcrodua": {"avatar": "https://secure.gravatar.com/avatar/21a37ce3323f1624488277ab7eb892e4fa93be3bc798b75437820a9618cf1a26?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bcrodua/", "display_name": "bcrodua"}, "pmbaldha": {"avatar": "https://secure.gravatar.com/avatar/c351da0b667baf3599ca3492cb29b3f872fca04ace42e252cd8bdc8f9eb059e9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pmbaldha/", "display_name": "Prashant Baldha"}, "dnutbourne": {"avatar": "https://secure.gravatar.com/avatar/9cb6b0d01619d3c87f8610d2d7e887f4cba4bd8c8056f56c898ec91086c5f94e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dnutbourne/", "display_name": "DNutbourne"}, "davidanderson": {"avatar": "https://secure.gravatar.com/avatar/8cf7655071f82970f9635a0c7e7646551756c333b57166083e506a72cad98916?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/davidanderson/", "display_name": "David Anderson / Team Updraft"}, "backup-with-updraftplus": {"avatar": "https://secure.gravatar.com/avatar/03e4c4f513274842a212a10e28e8235445f074f6de013a69b8aee6a0c82d63ed?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/backup-with-updraftplus/", "display_name": "Backup with UpdraftPlus"}}, "last_updated": "2025-10-06 3:23pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/updraftplus.1.25.8.zip", "author_profile": "https://profiles.wordpress.org/davidanderson/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "
      \n
    • 1.25.8: Support for new Amazon AWS S3 regions (New Zealand, Taipei and Mexico), better statuses in the backup email report, search and replace improvement for the __PHP_Incomplete_Class. Various fixes and small tweaks - see the changelog for details. A recommended update for all.
    • \n
    "}, "active_installs": 3000000, "aspiresync_meta": {"id": "019a30bf-fc2a-706f-9b7e-8e9cc4086bc2", "name": "UpdraftPlus: WP Backup & Migration Plugin", "slug": "updraftplus", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1759764180, "version": "1.25.8"}, "support_threads": 42, "requires_plugins": [], "short_description": "Backup, restore or migrate your WordPress website to another host or domain. Schedule backups or run manually. Migrate in minutes.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 31}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1e5e-70ce-941b-f4b98834a5be', 'did:web:api.aspiredev.org:packages:wp-plugin:user-role-editor', 'user-role-editor', 'User Role Editor', '

    User Role Editor WordPress plugin allows you to change user roles and capabilities easy.
    -Just turn on check boxes of capabilities you wish to add to the selected role and click “Update” button to save your changes. That’s done.
    -Add new roles and customize its capabilities according to your needs, from scratch of as a copy of other existing role.
    -Unnecessary self-made role can be deleted if there are no users whom such role is assigned.
    -Role assigned every new created user by default may be changed too.
    -Capabilities could be assigned on per user basis. Multiple roles could be assigned to user simultaneously.
    -You can add new capabilities and remove unnecessary capabilities which could be left from uninstalled plugins.
    -Multi-site support is provided.

    -

    Try it out on your free TasteWP test site.

    -

    To read more about ‘User Role Editor’ visit this page at shinephp.com

    -

    Do you need more functionality with quality support in a real time? Do you wish to remove advertisements from User Role Editor pages?
    -Buy Pro version.
    -User Role Editor Pro includes extra modules:

    -
      -
    • Block selected admin menu items for role.
    • -
    • Hide selected front-end menu items for no logged-in visitors, logged-in users, roles.
    • -
    • Block selected widgets under “Appearance” menu for role.
    • -
    • Show widgets at front-end for selected roles.
    • -
    • Block selected meta boxes (dashboard, posts, pages, custom post types) for role.
    • -
    • “Export/Import” module. You can export user role to the local file and import it to any WordPress site or other sites of the multi-site WordPress network.
    • -
    • Roles and Users permissions management via Network Admin for multisite configuration. One click Synchronization to the whole network.
    • -
    • “Other roles access” module allows to define which other roles user with current role may see at WordPress: dropdown menus, e.g assign role to user editing user profile, etc.
    • -
    • Manage user access to editing posts/pages/custom post type using posts/pages, authors, taxonomies ID list.
    • -
    • Per plugin users access management for plugins activate/deactivate operations.
    • -
    • Per form users access management for Gravity Forms plugin.
    • -
    • Shortcode to show enclosed content to the users with selected roles only.
    • -
    • Posts and pages view restrictions for selected roles.
    • -
    • Admin back-end pages permissions viewer
    • -
    -

    Pro version is advertisement free. Premium support is included.

    -

    Additional Documentation

    -

    You can find more information about “User Role Editor” plugin at this page

    -

    I am ready to answer on your questions about plugin usage. Use plugin page comments for that.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "User Role Editor", "slug": "user-role-editor", "tags": {"role": "role", "user": "user", "access": "access", "editor": "editor", "security": "security"}, "added": "2010-03-22", "icons": {"1x": "https://ps.w.org/user-role-editor/assets/icon-128x128.jpg?rev=1020390", "2x": "https://ps.w.org/user-role-editor/assets/icon-256x256.jpg?rev=1020390"}, "author": "Vladimir Garagulya", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/user-role-editor/assets/banner-772x250.png?rev=1263116", "high": false}, "ratings": {"1": 24, "2": 4, "3": 6, "4": 10, "5": 243}, "version": "4.64.5", "homepage": "https://www.role-editor.com", "requires": "4.4", "sections": {"faq": "
      \n
    • Does it work with WordPress in multi-site environment?
      \nYes, it works with WordPress multi-site. By default plugin works for every blog from your multi-site network as for locally installed blog.
      \nTo update selected role globally for the Network you should turn on the “Apply to All Sites” checkbox. You should have superadmin privileges to use User Role Editor under WordPress multi-site.
      \nPro version allows to manage roles of the whole network from the Netwok Admin.
    • \n
    \n

    To read full FAQ section visit this page at shinephp.com.

    \n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and works nicely

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pk Gibson (pkgibson101) on June 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is working well. Thank you for the developer who put lot of time into it. Very nice, lightest and most simple.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Worked great for my site

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy indivisible on April 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m a DIY self learner, and had a great experience with URE. It has vast capabilities and is organized to make it easy to navigate and apply so many customizations. Very intuitive. On the one occasion I needed guidance, the tech support was quick, personal and a success. Highly recommend.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wont save capabilities for custom role

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jen000 on April 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I hate giving bad reviews as I know how much work goes into these plugins, often by one person. But we have wasted so much time and lost orders because of a known bug. I can see that others have reported this bug from at least 4 months ago. So I want to warn others. The whole point of us using this plugin was to create a custom role and to assign specific capabilities to that role. For a short while it worked so we launched the site. And then it stopped working and caused chaos. We have spent FOREVER trying to figure this out. We will be moving to a different plugin asap.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Didn't work on multisite

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shirax on March 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Didn''t break my site, it just doesn''t work. On multisite, trying to give user permissions to install plugins--as it indicated in settings that it could do that. Appears to uninstall cleanly, at least.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin works great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy LambrosHatzini on November 6, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve tried two other plugins to no avail. This one works great!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    sadly give

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cicavizio on September 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    its set several user role randomly, and sadly the uninstall didnt fix

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Broke my entire multisite

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy RonnyDee on September 25, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Congratulations on this plugin. This destroyed my entire WP Multisite, so that the registration process could no longer assign the created websites to any user.

    \n\n\n\n

    There was no way to fix this error. Really great. Maybe you should think about how you can better a) save changes and b) restore them BEFORE you make any changes at all.

    \n\n\n\n

    A plugin like this should almost be banned!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best user role editing plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy skylabb on September 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like the simplicity of the UI making it easy to edit user roles.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works for me

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aaronlkh on September 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Used the free version and worked well for me. Thanks developer!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does not appear to copy role 100%

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rowland (jollyroger99) on April 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    If a user has shop manager rights, I use ure to copy the role to a new role name, the user with the new role does not have the same rights as shop manager. Moving the user back to shop manager restores their rights ?

    \n
    \n
    \n", "changelog": "

    [4.64.5] 16.04.2025

    \n
      \n
    • Update: Marked as compatible with WordPress 6.8
    • \n
    • Update: Minor changes were applied to the CSS/JS loading code to minimize “Plugin Check” tool warnings.
    • \n
    • Plugin headers were extended at role-editor.php and readme.txt files according to wordpress.org recommendations.
    • \n
    \n

    [4.64.4] 15.12.2024

    \n
      \n
    • Security Fix: Users – “Add Role”, “Revoke Role” buttons: Cross-Site request forgery to privilege escalation was possible due to missed nonce validation. This issue was discovered and responsibly reported by vgo0.
    • \n
    \n

    File changelog.txt contains the full list of changes.

    \n", "description": "

    User Role Editor WordPress plugin allows you to change user roles and capabilities easy.
    \nJust turn on check boxes of capabilities you wish to add to the selected role and click “Update” button to save your changes. That’s done.
    \nAdd new roles and customize its capabilities according to your needs, from scratch of as a copy of other existing role.
    \nUnnecessary self-made role can be deleted if there are no users whom such role is assigned.
    \nRole assigned every new created user by default may be changed too.
    \nCapabilities could be assigned on per user basis. Multiple roles could be assigned to user simultaneously.
    \nYou can add new capabilities and remove unnecessary capabilities which could be left from uninstalled plugins.
    \nMulti-site support is provided.

    \n

    Try it out on your free TasteWP test site.

    \n

    To read more about ‘User Role Editor’ visit this page at shinephp.com

    \n

    Do you need more functionality with quality support in a real time? Do you wish to remove advertisements from User Role Editor pages?
    \nBuy Pro version.
    \nUser Role Editor Pro includes extra modules:

    \n
      \n
    • Block selected admin menu items for role.
    • \n
    • Hide selected front-end menu items for no logged-in visitors, logged-in users, roles.
    • \n
    • Block selected widgets under “Appearance” menu for role.
    • \n
    • Show widgets at front-end for selected roles.
    • \n
    • Block selected meta boxes (dashboard, posts, pages, custom post types) for role.
    • \n
    • “Export/Import” module. You can export user role to the local file and import it to any WordPress site or other sites of the multi-site WordPress network.
    • \n
    • Roles and Users permissions management via Network Admin for multisite configuration. One click Synchronization to the whole network.
    • \n
    • “Other roles access” module allows to define which other roles user with current role may see at WordPress: dropdown menus, e.g assign role to user editing user profile, etc.
    • \n
    • Manage user access to editing posts/pages/custom post type using posts/pages, authors, taxonomies ID list.
    • \n
    • Per plugin users access management for plugins activate/deactivate operations.
    • \n
    • Per form users access management for Gravity Forms plugin.
    • \n
    • Shortcode to show enclosed content to the users with selected roles only.
    • \n
    • Posts and pages view restrictions for selected roles.
    • \n
    • Admin back-end pages permissions viewer
    • \n
    \n

    Pro version is advertisement free. Premium support is included.

    \n

    Additional Documentation

    \n

    You can find more information about “User Role Editor” plugin at this page

    \n

    I am ready to answer on your questions about plugin usage. Use plugin page comments for that.

    \n", "screenshots": "
    1. \"screenshot-1.png

      screenshot-1.png User Role Editor main form

    2. \"screenshot-2.png

      screenshot-2.png Add/Remove roles or capabilities

    3. \"screenshot-3.png

      screenshot-3.png User Capabilities link

    4. \"screenshot-4.png

      screenshot-4.png User Capabilities Editor

    5. \"screenshot-5.png

      screenshot-5.png Bulk change role for users without roles

    6. \"screenshot-6.png

      screenshot-6.png Assign multiple roles to the selected users

    ", "installation": "

    Installation procedure:

    \n
      \n
    1. Deactivate plugin if you have the previous version installed.
    2. \n
    3. Extract “user-role-editor.zip” archive content to the “/wp-content/plugins/user-role-editor” directory.
    4. \n
    5. Activate “User Role Editor” plugin via ‘Plugins’ menu in WordPress admin menu.
    6. \n
    7. Go to the “Users”-“User Role Editor” menu item and change your WordPress standard roles capabilities according to your needs.
    8. \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/user-role-editor.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/user-role-editor.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/user-role-editor.1.2.zip", "2.0": "https://downloads.wordpress.org/plugin/user-role-editor.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.zip", "3.0": "https://downloads.wordpress.org/plugin/user-role-editor.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/user-role-editor.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/user-role-editor.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/user-role-editor.3.6.zip", "3.8": "https://downloads.wordpress.org/plugin/user-role-editor.3.8.zip", "3.9": "https://downloads.wordpress.org/plugin/user-role-editor.3.9.zip", "4.0": "https://downloads.wordpress.org/plugin/user-role-editor.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/user-role-editor.4.4.zip", "4.6": "https://downloads.wordpress.org/plugin/user-role-editor.4.6.zip", "4.8": "https://downloads.wordpress.org/plugin/user-role-editor.4.8.zip", "4.9": "https://downloads.wordpress.org/plugin/user-role-editor.4.9.zip", "3.10": "https://downloads.wordpress.org/plugin/user-role-editor.3.10.zip", "3.12": "https://downloads.wordpress.org/plugin/user-role-editor.3.12.zip", "3.14": "https://downloads.wordpress.org/plugin/user-role-editor.3.14.zip", "4.10": "https://downloads.wordpress.org/plugin/user-role-editor.4.10.zip", "4.11": "https://downloads.wordpress.org/plugin/user-role-editor.4.11.zip", "4.12": "https://downloads.wordpress.org/plugin/user-role-editor.4.12.zip", "4.14": "https://downloads.wordpress.org/plugin/user-role-editor.4.14.zip", "4.15": "https://downloads.wordpress.org/plugin/user-role-editor.4.15.zip", "4.16": "https://downloads.wordpress.org/plugin/user-role-editor.4.16.zip", "4.17": "https://downloads.wordpress.org/plugin/user-role-editor.4.17.zip", "4.18": "https://downloads.wordpress.org/plugin/user-role-editor.4.18.zip", "4.19": "https://downloads.wordpress.org/plugin/user-role-editor.4.19.zip", "4.20": "https://downloads.wordpress.org/plugin/user-role-editor.4.20.zip", "4.21": "https://downloads.wordpress.org/plugin/user-role-editor.4.21.zip", "4.22": "https://downloads.wordpress.org/plugin/user-role-editor.4.22.zip", "4.23": "https://downloads.wordpress.org/plugin/user-role-editor.4.23.zip", "4.24": "https://downloads.wordpress.org/plugin/user-role-editor.4.24.zip", "4.25": "https://downloads.wordpress.org/plugin/user-role-editor.4.25.zip", "4.26": "https://downloads.wordpress.org/plugin/user-role-editor.4.26.zip", "4.27": "https://downloads.wordpress.org/plugin/user-role-editor.4.27.zip", "4.28": "https://downloads.wordpress.org/plugin/user-role-editor.4.28.zip", "4.29": "https://downloads.wordpress.org/plugin/user-role-editor.4.29.zip", "4.30": "https://downloads.wordpress.org/plugin/user-role-editor.4.30.zip", "4.31": "https://downloads.wordpress.org/plugin/user-role-editor.4.31.zip", "4.32": "https://downloads.wordpress.org/plugin/user-role-editor.4.32.zip", "4.33": "https://downloads.wordpress.org/plugin/user-role-editor.4.33.zip", "4.34": "https://downloads.wordpress.org/plugin/user-role-editor.4.34.zip", "4.35": "https://downloads.wordpress.org/plugin/user-role-editor.4.35.zip", "4.36": "https://downloads.wordpress.org/plugin/user-role-editor.4.36.zip", "4.37": "https://downloads.wordpress.org/plugin/user-role-editor.4.37.zip", "4.38": "https://downloads.wordpress.org/plugin/user-role-editor.4.38.zip", "4.39": "https://downloads.wordpress.org/plugin/user-role-editor.4.39.zip", "4.40": "https://downloads.wordpress.org/plugin/user-role-editor.4.40.zip", "4.41": "https://downloads.wordpress.org/plugin/user-role-editor.4.41.zip", "4.42": "https://downloads.wordpress.org/plugin/user-role-editor.4.42.zip", "4.43": "https://downloads.wordpress.org/plugin/user-role-editor.4.43.zip", "4.44": "https://downloads.wordpress.org/plugin/user-role-editor.4.44.zip", "4.45": "https://downloads.wordpress.org/plugin/user-role-editor.4.45.zip", "4.46": "https://downloads.wordpress.org/plugin/user-role-editor.4.46.zip", "4.47": "https://downloads.wordpress.org/plugin/user-role-editor.4.47.zip", "4.48": "https://downloads.wordpress.org/plugin/user-role-editor.4.48.zip", "4.49": "https://downloads.wordpress.org/plugin/user-role-editor.4.49.zip", "4.50": "https://downloads.wordpress.org/plugin/user-role-editor.4.50.zip", "4.51": "https://downloads.wordpress.org/plugin/user-role-editor.4.51.zip", "4.52": "https://downloads.wordpress.org/plugin/user-role-editor.4.52.zip", "4.53": "https://downloads.wordpress.org/plugin/user-role-editor.4.53.zip", "4.54": "https://downloads.wordpress.org/plugin/user-role-editor.4.54.zip", "4.55": "https://downloads.wordpress.org/plugin/user-role-editor.4.55.zip", "4.56": "https://downloads.wordpress.org/plugin/user-role-editor.4.56.zip", "4.57": "https://downloads.wordpress.org/plugin/user-role-editor.4.57.zip", "4.58": "https://downloads.wordpress.org/plugin/user-role-editor.4.58.zip", "4.59": "https://downloads.wordpress.org/plugin/user-role-editor.4.59.zip", "4.60": "https://downloads.wordpress.org/plugin/user-role-editor.4.60.zip", "4.61": "https://downloads.wordpress.org/plugin/user-role-editor.4.61.zip", "4.62": "https://downloads.wordpress.org/plugin/user-role-editor.4.62.zip", "4.63": "https://downloads.wordpress.org/plugin/user-role-editor.4.63.zip", "4.64": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.zip", "2.0.1": "https://downloads.wordpress.org/plugin/user-role-editor.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/user-role-editor.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/user-role-editor.2.0.3.zip", "2.1.1": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.9.zip", "2.2.1": "https://downloads.wordpress.org/plugin/user-role-editor.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/user-role-editor.2.2.2.zip", "3.0.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/user-role-editor.3.0.4.zip", "3.1.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.1.1.zip", "3.2.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.2.1.zip", "3.3.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.3.3.zip", "3.5.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/user-role-editor.3.5.4.zip", "3.6.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.6.2.zip", "3.7.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/plugin/user-role-editor.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/plugin/user-role-editor.3.7.5.zip", "3.8.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.8.3.zip", "4.1.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.1.1.zip", "4.5.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.5.2.zip", "4.7.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.7.1.zip", "trunk": "https://downloads.wordpress.org/plugin/user-role-editor.zip", "2.1.10": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.10.zip", "3.14.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.14.1.zip", "4.14.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.14.1.zip", "4.14.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.14.2.zip", "4.14.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.14.3.zip", "4.14.4": "https://downloads.wordpress.org/plugin/user-role-editor.4.14.4.zip", "4.17.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.17.1.zip", "4.17.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.17.2.zip", "4.17.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.17.3.zip", "4.18.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.18.1.zip", "4.18.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.18.2.zip", "4.18.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.18.3.zip", "4.18.4": "https://downloads.wordpress.org/plugin/user-role-editor.4.18.4.zip", "4.19.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.19.1.zip", "4.19.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.19.2.zip", "4.19.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.19.3.zip", "4.20.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.20.1.zip", "4.21.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.21.1.zip", "4.23.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.23.1.zip", "4.23.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.23.2.zip", "4.25.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.25.1.zip", "4.25.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.25.2.zip", "4.26.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.26.1.zip", "4.26.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.26.2.zip", "4.26.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.26.3.zip", "4.27.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.27.1.zip", "4.27.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.27.2.zip", "4.31.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.31.1.zip", "4.32.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.32.1.zip", "4.32.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.32.2.zip", "4.32.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.32.3.zip", "4.35.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.35.1.zip", "4.35.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.35.2.zip", "4.35.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.35.3.zip", "4.36.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.36.1.zip", "4.40.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.40.1.zip", "4.40.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.40.3.zip", "4.50.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.50.1.zip", "4.50.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.50.2.zip", "4.51.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.51.1.zip", "4.51.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.51.2.zip", "4.51.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.51.3.zip", "4.52.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.52.1.zip", "4.52.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.52.2.zip", "4.53.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.53.1.zip", "4.55.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.55.1.zip", "4.56.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.56.1.zip", "4.57.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.57.1.zip", "4.58.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.58.1.zip", "4.58.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.58.2.zip", "4.58.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.58.3.zip", "4.59.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.59.1.zip", "4.60.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.60.1.zip", "4.60.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.60.2.zip", "4.61.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.61.1.zip", "4.61.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.61.2.zip", "4.63.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.63.1.zip", "4.63.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.63.2.zip", "4.63.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.63.3.zip", "4.64.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.1.zip", "4.64.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.2.zip", "4.64.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.3.zip", "4.64.4": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.4.zip", "4.64.5": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.5.zip"}, "downloaded": 20757215, "description": "

    User Role Editor WordPress plugin allows you to change user roles and capabilities easy.
    \nJust turn on check boxes of capabilities you wish to add to the selected role and click “Update” button to save your changes. That’s done.
    \nAdd new roles and customize its capabilities according to your needs, from scratch of as a copy of other existing role.
    \nUnnecessary self-made role can be deleted if there are no users whom such role is assigned.
    \nRole assigned every new created user by default may be changed too.
    \nCapabilities could be assigned on per user basis. Multiple roles could be assigned to user simultaneously.
    \nYou can add new capabilities and remove unnecessary capabilities which could be left from uninstalled plugins.
    \nMulti-site support is provided.

    \n

    Try it out on your free TasteWP test site.

    \n

    To read more about ‘User Role Editor’ visit this page at shinephp.com

    \n

    Do you need more functionality with quality support in a real time? Do you wish to remove advertisements from User Role Editor pages?
    \nBuy Pro version.
    \nUser Role Editor Pro includes extra modules:

    \n
      \n
    • Block selected admin menu items for role.
    • \n
    • Hide selected front-end menu items for no logged-in visitors, logged-in users, roles.
    • \n
    • Block selected widgets under “Appearance” menu for role.
    • \n
    • Show widgets at front-end for selected roles.
    • \n
    • Block selected meta boxes (dashboard, posts, pages, custom post types) for role.
    • \n
    • “Export/Import” module. You can export user role to the local file and import it to any WordPress site or other sites of the multi-site WordPress network.
    • \n
    • Roles and Users permissions management via Network Admin for multisite configuration. One click Synchronization to the whole network.
    • \n
    • “Other roles access” module allows to define which other roles user with current role may see at WordPress: dropdown menus, e.g assign role to user editing user profile, etc.
    • \n
    • Manage user access to editing posts/pages/custom post type using posts/pages, authors, taxonomies ID list.
    • \n
    • Per plugin users access management for plugins activate/deactivate operations.
    • \n
    • Per form users access management for Gravity Forms plugin.
    • \n
    • Shortcode to show enclosed content to the users with selected roles only.
    • \n
    • Posts and pages view restrictions for selected roles.
    • \n
    • Admin back-end pages permissions viewer
    • \n
    \n

    Pro version is advertisement free. Premium support is included.

    \n

    Additional Documentation

    \n

    You can find more information about “User Role Editor” plugin at this page

    \n

    I am ready to answer on your questions about plugin usage. Use plugin page comments for that.

    \n", "donate_link": "", "num_ratings": 287, "screenshots": {"1": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-1.png?rev=3274698", "caption": "screenshot-1.png User Role Editor main form"}, "2": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-2.png?rev=3274698", "caption": "screenshot-2.png Add/Remove roles or capabilities"}, "3": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-3.png?rev=3274698", "caption": "screenshot-3.png User Capabilities link"}, "4": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-4.png?rev=3274698", "caption": "screenshot-4.png User Capabilities Editor"}, "5": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-5.png?rev=3274698", "caption": "screenshot-5.png Bulk change role for users without roles"}, "6": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-6.png?rev=3274698", "caption": "screenshot-6.png Assign multiple roles to the selected users"}}, "support_url": "https://wordpress.org/support/plugin/user-role-editor/", "contributors": {"shinephp": {"avatar": "https://secure.gravatar.com/avatar/5885f2ba31c290757d4e756971436b971adde9b0c95aae93b27bd93ac2fa8407?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/shinephp/", "display_name": "Vladimir Garagulya"}}, "last_updated": "2025-04-16 12:45pm GMT", "preview_link": "https://wordpress.org/plugins/user-role-editor/?preview=1", "requires_php": "7.3", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.5.zip", "author_profile": "https://profiles.wordpress.org/shinephp/", "business_model": false, "repository_url": "", "upgrade_notice": {"[4.64.5] 16.04.2025": "
      \n
    • Update: Marked as compatible with WordPress 6.8
    • \n
    • Update: Minor changes were applied to the CSS/JS loading code to minimize "Plugin Check" tool warnings.
    • \n
    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fc26-72c6-bddb-cdf62567f15f", "name": "User Role Editor", "slug": "user-role-editor", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1744807500, "version": "4.64.5"}, "support_threads": 3, "requires_plugins": [], "short_description": "User Role Editor WordPress plugin makes user roles and capabilities changing easy. Edit/add/delete WordPress user roles and capabilities.", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1e6d-71cd-ac45-8e708e781e22', 'did:web:api.aspiredev.org:packages:wp-plugin:w3-total-cache', 'w3-total-cache', 'W3 Total Cache', '

    W3 Total Cache (W3TC) improves the SEO, Core Web Vitals and overall user experience of your site by increasing website performance and reducing load times by leveraging features like content delivery network (CDN) integration and the latest best practices.

    -

    W3TC is the only web host agnostic Web Performance Optimization (WPO) framework for WordPress trusted by millions of publishers, web developers, and web hosts worldwide for more than a decade. It is the total performance solution for optimizing WordPress Websites.

    -

    BENEFITS

    -
      -
    • Improvements in search engine result page rankings, especially for mobile-friendly websites and sites that use SSL
    • -
    • At least 10x improvement in overall site performance (Grade A in WebPagetest or significant Google PageSpeed improvements) when fully configured
    • -
    • Improved conversion rates and “site performance” which affect your site’s rank on Google.com
    • -
    • “Instant” repeat page views: browser caching
    • -
    • Optimized progressive render: pages start rendering quickly and can be interacted with more quickly
    • -
    • Reduced page load time: increased visitor time on site; visitors view more pages
    • -
    • Improved web server performance; sustain high traffic periods
    • -
    • Up to 80% bandwidth savings when you minify HTML, minify CSS and minify JS files.
    • -
    -

    KEY FEATURES

    -
      -
    • Compatible with shared hosting, virtual private / dedicated servers and dedicated servers / clusters
    • -
    • Transparent content delivery network (CDN) management with Media Library, theme files and WordPress itself
    • -
    • Mobile support: respective caching of pages by referrer or groups of user agents including theme switching for groups of referrers or user agents
    • -
    • Accelerated Mobile Pages (AMP) support
    • -
    • Secure Socket Layer (SSL/TLS) support
    • -
    • Caching of (minified and compressed) pages and posts in memory or on disk or on (FSD) CDN (by user agent group)
    • -
    • Caching of (minified and compressed) CSS and JavaScript in memory, on disk or on CDN
    • -
    • Caching of feeds (site, categories, tags, comments, search results) in memory or on disk or on CDN
    • -
    • Caching of search results pages (i.e. URIs with query string variables) in memory or on disk
    • -
    • Caching of database objects in memory or on disk
    • -
    • Caching of objects in memory or on disk
    • -
    • Caching of fragments in memory or on disk
    • -
    • Caching methods include local Disk, Redis, Memcached, APC, APCu, eAccelerator, XCache, and WinCache
    • -
    • Minify CSS, Minify JavaScript and Minify HTML with granular control
    • -
    • Minification of posts and pages and RSS feeds
    • -
    • Minification of inline, embedded or 3rd party JavaScript with automated updates to assets
    • -
    • Minification of inline, embedded or 3rd party CSS with automated updates to assets
    • -
    • Defer non critical CSS and Javascript for rendering pages faster than ever before
    • -
    • Defer offscreen images using Lazy Load to improve the user experience
    • -
    • Browser caching using cache-control, future expire headers and entity tags (ETag) with “cache-busting”
    • -
    • JavaScript grouping by template (home page, post page etc) with embed location control
    • -
    • Non-blocking JavaScript embedding
    • -
    • Import post attachments directly into the Media Library (and CDN)
    • -
    • Leverage our multiple CDN integrations to optimize images
    • -
    • WP-CLI support for cache purging, query string updating and more
    • -
    • Various security features to help ensure website safety
    • -
    • Caching statistics for performance insights of any enabled feature
    • -
    • Extension framework for customization or extensibility for Cloudflare, WPML and much more
    • -
    • Reverse proxy integration via Nginx or Varnish
    • -
    • WebP Converter extension provides WebP image format conversion from common image formats (on upload and on demand)
    • -
    -

    W3 Total Cache Pro Features

    -

    With over a million active installs, W3 Total Cache is the most comprehensive WordPress caching plugin available and has robust premium features that help deliver an exceptional user experience.

    -
      -
    • Full Site Delivery: Serve your entire site from a Content Delivery Network (CDN), ensuring faster load times worldwide.
    • -
    • Fragment Cache: Optimize the caching of dynamic content while still improving performance.
    • -
    • REST API Caching: Speed up your headless WordPress site by caching REST API calls.
    • -
    • Eliminate Render-Blocking CSS: Ensure your CSS doesn’t hold up page loading, providing faster initial paint.
    • -
    • Delay Scripts: Improve performance by delaying the loading of non-essential scripts until they are needed.
    • -
    • Preload Requests: Boost page performance by preloading critical resources before they’re requested.
    • -
    • Remove CSS/JS: Clean up unnecessary CSS and JavaScript files that slow down your pages.
    • -
    • Lazy Load Google Maps: Load Google Maps only when it’s visible, reducing unnecessary requests.
    • -
    • WPML Extension: Optimize performance on multilingual sites powered by WPML.
    • -
    • Caching Statistics: Get detailed insights on cache usage and performance improvements.
    • -
    • Purge Logs: Keep your site clean by automatically purging unnecessary cache logs.
    • -
    -

    30-Day Money-Back Guarantee

    -

    Try W3 Total Cache Pro risk-free with our 30-day money-back guarantee. If you’re not satisfied, we will refund your purchase.

    -

    PAGESPEED SCORE IMPROVEMENTS

    -

    To help you understand the impact of individual features on your website’s performance, we’ve tested each feature separately to see its effect on Google PageSpeed scores. While optimal results come from configuring several different caching tools together, the following individual features also show significant improvements on their own:

    -

    Remove Unused CSS/JS

    -

    This feature removes CSS and JavaScript files that are not needed for the current page, reducing the load time.

    -
      -
    • Added over 27 points to the Google PageSpeed score (Before: 57.2 / After: 86.7)
    • -
    • Reduced the Potential Savings From Unused JavaScript from 127.5 KiB to 84 KiB
    • -
    • View the test results
    • -
    -

    Full Site Delivery

    -

    Full Site Delivery optimizes the delivery of your entire site, enhancing the server response time.

    -
      -
    • Added a 99% performance enhancement to the Average Server Response Time (Before: 3413 ms / After: 34 ms)
    • -
    • View the test results
    • -
    -

    Eliminate Render Blocking CSS

    -

    This feature eliminates CSS that blocks the rendering of your page, speeding up the initial load time.

    -
      -
    • Added over 17 points to the Google PageSpeed score (Before: 53.75 / After: 71)
    • -
    • Reduced the Potential Savings From Render-Blocking Resources by over 94% (Before: 2432.5 ms / After: 125 ms)
    • -
    • Improved the Largest Contentful Paint time by over 56% (Before: 7s / After: 3.04s)
    • -
    • View the test results
    • -
    -

    Delay Scripts

    -

    Delay Scripts postpones the loading of certain scripts until they are needed, reducing initial load times.

    -
      -
    • Added 14 points to the Google PageSpeed Performance score (Before: 54.25 / After: 68.5)
    • -
    • Reduced the Time Third-Party Code Blocked The Main Thread For by 62% (Before: 825 ms / After: 197.5 ms)
    • -
    • View the test results
    • -
    -

    Rest API Caching

    -

    This feature caches API responses, reducing server load and speeding up API interactions.

    -
      -
    • Reduced the Average Server Load by 40% (Before: 0.62 / After: 0.37)
    • -
    • Sped up API Responses by 84.5% (Before: 968ms / After: 150ms)
    • -
    • Reduced the Average Server Load by 24% under during a major traffic spike (Before: 34.55 / After: 26.19)
    • -
    • View the test results
    • -
    -

    WebP Images

    -

    Converts images to the WebP format, which is more efficient and faster to load.

    -
      -
    • Added over 9 points to the Google PageSpeed score (Before: 84.67 / After: 93.83)
    • -
    • View the test results
    • -
    -

    Lazy Load Google Maps

    -

    Delays the loading of Google Maps until the user interacts with them, reducing initial load time.

    -
      -
    • Added 10 points to the Google PageSpeed score (Before: 66 / After: 76)
    • -
    • Reduced the Total Blocking Time Performance score by 72% (Before: 287.5 ms / After: 80 ms)
    • -
    • View the test results
    • -
    -

    Speed up your site tremendously, improve core web vitals and the overall user experience for your visitors without having to change your WordPress host, theme, plugins or your content production workflow.

    -

    What users have to say:

    - -

    Who do I thank for all of this?

    -

    It’s quite difficult to recall all of the innovators that have shared their thoughts, code and experiences in the blogosphere over the years, but here are some names to get you started:

    - -

    Please reach out to all of these people and support their projects if you’re so inclined.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "W3 Total Cache", "slug": "w3-total-cache", "tags": {"cdn": "cdn", "caching": "caching", "optimize": "Optimize", "pagespeed": "pagespeed", "performance": "performance"}, "added": "2009-07-29", "icons": {"1x": "https://ps.w.org/w3-total-cache/assets/icon-128x128.png?rev=1041806", "2x": "https://ps.w.org/w3-total-cache/assets/icon-256x256.png?rev=1041806"}, "author": "BoldGrid", "rating": 88, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/w3-total-cache/assets/banner-772x250.jpg?rev=1041806", "high": false}, "ratings": {"1": 512, "2": 101, "3": 158, "4": 585, "5": 4053}, "version": "2.8.14", "homepage": "https://www.boldgrid.com/totalcache/", "requires": "5.3", "sections": {"faq": "\n
    \nWhy does speed matter?\n\n

    \n

    Search engines like Google, measure and factor in the speed of web sites in their ranking algorithm. When they recommend a site they want to make sure users find what they’re looking for quickly. So in effect you and Google should have the same objective.

    \n

    Speed is among the most significant success factors web sites face. In fact, your site’s speed directly affects your income (revenue) — it’s a fact. Some high traffic sites conducted research and uncovered the following:

    \n
      \n
    • Google.com: +500 ms (speed decrease) -> -20% traffic loss [1]
    • \n
    • Yahoo.com: +400 ms (speed decrease) -> -5-9% full-page traffic loss (visitor left before the page finished loading) [2]
    • \n
    • Amazon.com: +100 ms (speed decrease) -> -1% sales loss [1]
    • \n
    \n

    A thousandth of a second is not a long time, yet the impact is quite significant. Even if you’re not a large company (or just hope to become one), a loss is still a loss. W3 Total Cache is your solution for faster websites, happier visitors and better results.

    \n

    Many of the other consequences of poor performance were discovered more than a decade ago:

    \n
      \n
    • Lower perceived credibility (Fogg et al. 2001)
    • \n
    • Lower perceived quality (Bouch, Kuchinsky, and Bhatti 2000)
    • \n
    • Increased user frustration (Ceaparu et al. 2004)
    • \n
    • Increased blood pressure (Scheirer et al. 2002)
    • \n
    • Reduced flow rates (Novak, Hoffman, and Yung 200)
    • \n
    • Reduced conversion rates (Akamai 2007)
    • \n
    • Increased exit rates (Nielsen 2000)
    • \n
    • Are perceived as less interesting (Ramsay, Barbesi, and Preece 1998)
    • \n
    • Are perceived as less attractive (Skadberg and Kimmel 2004)
    • \n
    \n

    There are a number of resources that have been documenting the role of performance in success on the web, W3 Total Cache exists to give you a framework to tune your application or site without having to do years of research.

    \n

    \n
    \nWhy is W3 Total Cache better than other caching solutions?\n\n

    \n

    It’s a complete framework. Most cache plugins available do a great job at achieving a couple of performance gains. Total Cache is different because it remedies numerous performance reducing aspects of any web site. It goes farther than the basics, beyond merely reducing CPU usage (load) or bandwidth consumption for HTML pages. Equally important, the plugin requires no theme modifications, modifications to your .htaccess (mod_rewrite rules) or programming compromises to get started. Most importantly, it’s the only plugin designed to optimize all practical hosting environments small or large. The options are many and setup is easy.

    \n

    \n
    \nI’ve never heard of any of this stuff; my site is fine, no one complains about the speed. Why should I install this?\n\n

    \n

    Rarely do readers take the time to complain. They typically just stop browsing earlier than you’d prefer and may not return altogether. This is the only plugin specifically designed to make sure that all aspects of your site are as fast as possible. Google is placing more emphasis on the speed of a site as a factor in rankings; this plugin helps with that too.

    \n

    It’s in every web site owner’s best interest is to make sure that the performance of your site is not hindering its success.

    \n

    \n
    \nWhich WordPress versions are supported?\n\n

    \n

    To use all features in the suite, a minimum of version WordPress 5.3 with PHP 7.2.5 is required. Earlier versions will benefit from our Media Library Importer to get them back on the upgrade path and into a CDN of their choosing.

    \n

    \n
    \nWhy doesn’t minify work for me?\n\n

    \n

    Great question. W3 Total Cache uses several open source tools to attempt to combine and optimize CSS, JavaScript and HTML etc. Unfortunately some trial and error is required on the part of developers is required to make sure that their code can be successfully minified with the various libraries W3 Total Cache supports. Even still, if developers do test their code thoroughly, they cannot be sure that interoperability with other code your site may have. This fault does not lie with any single party here, because there are thousands of plugins and theme combinations that a given site can have, there are millions of possible combinations of CSS, JavaScript etc.

    \n

    A good rule of thumb is to try auto mode, work with a developer to identify the code that is not compatible and start with combine only mode (the safest optimization) and increase the optimization to the point just before functionality (JavaScript) or user interface / layout (CSS) breaks in your site.

    \n

    We’re always working to make this more simple and straight forward in future releases, but this is not an undertaking we can realize on our own. When you find a plugin, theme or file that is not compatible with minification reach out to the developer and ask them either to provide a minified version with their distribution or otherwise make sure their code is minification-friendly.

    \n

    \n
    \nWhat about comments? Does the plugin slow down the rate at which comments appear?\n\n

    \n

    On the contrary, as with any other action a user can perform on a site, faster performance will encourage more of it. The cache is so quickly rebuilt in memory that it’s no trouble to show visitors the most current version of a post that’s experiencing Digg, Slashdot, Drudge Report, Yahoo Buzz or Twitter effect.

    \n

    \n
    \nWill the plugin interfere with other plugins or widgets?\n\n

    \n

    No, on the contrary if you use the minify settings you will improve their performance by several times.

    \n

    \n
    \nDoes this plugin work with WordPress in network mode?\n\n

    \n

    Indeed it does.

    \n

    \n
    \nDoes this plugin work with BuddyPress (bbPress)?\n\n

    \n

    Yes.

    \n

    \n
    \nWill this plugin speed up WP Admin?\n\n

    \n

    Yes, indirectly – if you have a lot of bloggers working with you, you will find that it feels like you have a server dedicated only to WP Admin once this plugin is enabled; the result, increased productivity.

    \n

    \n
    \nWhich web servers do you support?\n\n

    \n

    We are aware of no incompatibilities with apache 1.3+, nginx 0.7+, IIS 5+ or litespeed 4.0.2+. If there’s a web server you feel we should be actively testing (e.g. lighttpd), we’re interested in hearing.

    \n

    \n
    \nIs this plugin server cluster and load balancer friendly?\n\n

    \n

    Yes, built from the ground up with scale and current hosting paradigms in mind.

    \n

    \n
    \nWhat is the purpose of the “Media Library Import” tool and how do I use it?\n\n

    \n

    The media library import tool is for old or “messy” WordPress installations that have attachments (images etc in posts or pages) scattered about the web server or “hot linked” to 3rd party sites instead of properly using the media library.

    \n

    The tool will scan your posts and pages for the cases above and copy them to your media library, update your posts to use the link addresses and produce a .htaccess file containing the list of of permanent redirects, so search engines can find the files in their new location.

    \n

    You should backup your database before performing this operation.

    \n

    \n
    \nHow do I find the JS and CSS to optimize (minify) them with this plugin?\n\n

    \n

    Use the “Help” button available on the Minify settings tab. Once open, the tool will look for and populate the CSS and JS files used in each template of the site for the active theme. To then add a file to the minify settings, click the checkbox next to that file. The embed location of JS files can also be specified to improve page render performance. Minify settings for all installed themes can be managed from the tool as well by selecting the theme from the drop down menu. Once done configuring minify settings, click the apply and close button, then save settings in the Minify settings tab.

    \n

    \n
    \nI don’t understand what a CDN has to do with caching, that’s completely different, no?\n\n

    \n

    Technically no, a CDN is a high performance cache that stores static assets (your theme files, media library etc) in various locations throughout the world in order to provide low latency access to them by readers in those regions. Use Total Cache to accelerate your site by putting your content closer to your users with our many CDN integrations including Cloudflare, StackPath, AWS and more.

    \n

    \n
    \nHow do I use an Origin Pull (Mirror) CDN?\n\n

    \n

    Login to your CDN providers control panel or account management area. Following any set up steps they provide, create a new “pull zone” or “bucket” for your site’s domain name. If there’s a set up wizard or any troubleshooting tips your provider offers, be sure to review them. In the CDN tab of the plugin, enter the hostname your CDN provider provided in the “replace site’s hostname with” field. You should always do a quick check by opening a test file from the CDN hostname, e.g. http://cdn.domain.com/favicon.ico. Troubleshoot with your CDN provider until this test is successful.

    \n

    Now go to the General tab and click the checkbox and save the settings to enable CDN functionality and empty the cache for the changes to take effect.

    \n

    \n
    \nHow do I configure Amazon Simple Storage Service (Amazon S3) or Amazon CloudFront as my CDN?\n\n

    \n

    First create an S3 account (unless using origin pull); it may take several hours for your account credentials to be functional. Next, you need to obtain your “Access key ID” and “Secret key” from the “Access Credentials” section of the “Security Credentials” page of “My Account.” Make sure the status is “active.” Next, make sure that “Amazon Simple Storage Service (Amazon S3)” is the selected “CDN type” on the “General Settings” tab, then save the changes. Now on the “Content Delivery Network Settings” tab enter your “Access key,” “Secret key” and enter a name (avoid special characters and spaces) for your bucket in the “Create a bucket” field by clicking the button of the same name. If using an existing bucket simply specify the bucket name in the “Bucket” field. Click the “Test S3 Upload” button and make sure that the test is successful, if not check your settings and try again. Save your settings.

    \n

    Unless you wish to use CloudFront, you’re almost done, skip to the next paragraph if you’re using CloudFront. Go to the “General Settings” tab and click the “Enable” checkbox and save the settings to enable CDN functionality. Empty the cache for the changes to take effect. If preview mode is active you will need to “deploy” your changes for them to take effect.

    \n

    To use CloudFront, perform all of the steps above, except select the “Amazon CloudFront” “CDN type” in the “Content Delivery Network” section of the “General Settings” tab. When creating a new bucket, the distribution ID will automatically be populated. Otherwise, proceed to the AWS Management Console and create a new distribution: select the S3 Bucket you created earlier as the “Origin,” enter a CNAME if you wish to add one or more to your DNS Zone. Make sure that “Distribution Status” is enabled and “State” is deployed. Now on “Content Delivery Network” tab of the plugin, copy the subdomain found in the AWS Management Console and enter the CNAME used for the distribution in the “CNAME” field.

    \n

    You may optionally, specify up to 10 hostnames to use rather than the default hostname, doing so will improve the render performance of your site’s pages. Additional hostnames should also be specified in the settings for the distribution you’re using in the AWS Management Console.

    \n

    Now go to the General tab and click the “Enable” checkbox and save the settings to enable CDN functionality and empty the cache for the changes to take effect. If preview mode is active you will need to “deploy” your changes for them to take effect.

    \n

    \n
    \nHow do I configure Rackspace Cloud Files as my CDN?\n\n

    \n

    First create an account. Next, in the “Content Delivery Network” section of the “General Settings” tab, select Rackspace Cloud Files as the “CDN Type.” Now, in the “Configuration” section of the “Content Delivery Network” tab, enter the “Username” and “API key” associated with your account (found in the API Access section of the rackspace cloud control panel) in the respective fields. Next enter a name for the container to use (avoid special characters and spaces). If the operation is successful, the container’s ID will automatically appear in the “Replace site’s hostname with” field. You may optionally, specify the container name and container ID of an existing container if you wish. Click the “Test Cloud Files Upload” button and make sure that the test is successful, if not check your settings and try again. Save your settings. You’re now ready to export your media library, theme and any other files to the CDN.

    \n

    You may optionally, specify up to 10 hostnames to use rather than the default hostname, doing so will improve the render performance of your site’s pages.

    \n

    Now go to the General tab and click the “Enable” checkbox and save the settings to enable CDN functionality and empty the cache for the changes to take effect. If preview mode is active you will need to “deploy” your changes for them to take effect.

    \n

    \n
    \nWhat is the purpose of the “modify attachment URLs” button?\n\n

    \n

    If the domain name of your site has changed, this tool is useful in updating your posts and pages to use the current addresses. For example, if your site used to be www.domain.com, and you decided to change it to domain.com, the result would either be many “broken” images or many unnecessary redirects (which slow down the visitor’s browsing experience). You can use this tool to correct this and similar cases. Correcting the URLs of your images also allows the plugin to do a better job of determining which images are actually hosted with the CDN.

    \n

    As always, it never hurts to back up your database first.

    \n

    \n
    \nIs this plugin comptatible with TDO Mini Forms?\n\n

    \n

    Captcha and recaptcha will work fine, however you will need to prevent any pages with forms from being cached. Add the page’s URI to the “Never cache the following pages” box on the Page Cache Settings tab.

    \n

    \n
    \nIs this plugin comptatible with GD Star Rating?\n\n

    \n

    Yes. Follow these steps:

    \n
      \n
    1. Enable dynamic loading of ratings by checking GD Star Rating -> Settings -> Features “Cache support option”
    2. \n
    3. If Database cache enabled in W3 Total Cache add wp_gdsr to “Ignored query stems” field in the Database Cache settings tab, otherwise ratings will not updated after voting
    4. \n
    5. Empty all caches
    6. \n
    \n

    \n
    \nI see garbage characters instead of the normal web site, what’s going on here?\n\n

    \n

    If a theme or it’s files use the call php_flush() or function flush() that will interfere with the plugins normal operation; making the plugin send cached files before essential operations have finished. The flush() call is no longer necessary and should be removed.

    \n

    \n
    \nHow do I cache only the home page?\n\n

    \n

    Add /.+ to page cache “Never cache the following pages” option on the page cache settings tab.

    \n

    \n
    \nI’m getting blank pages or 500 error codes when trying to upgrade on WordPress in network mode\n\n

    \n

    First, make sure the plugin is not active (disabled) network-wide. Then make sure it’s deactivated network-wide. Now you should be able to successful upgrade without breaking your site.

    \n

    \n
    \nA notification about file owner appears along with an FTP form, how can I resolve this?\n\n

    \n

    The plugin uses WordPress FileSystem functionality to write to files. It checks if the file owner, file owner group of created files match process owner. If this is not the case it cannot write or modify files.

    \n

    Typically, you should tell your web host about the permission issue and they should be able to resolve it.

    \n

    You can however try adding define(‘FS_METHOD’, ‘direct’); to wp-config.php to circumvent the file and folder checks.

    \n

    \n
    \nDoes the WebP Converter extension use a lot of resources to convert images to WebP?\n\n

    \n

    No. The WebP Converter extension converts common image file formats to the modern WebP format using our API services. The conversions occur on our API service, so that resource usage does not impact your website server.

    \n

    \n
    \nIs image data retained by the Total Cache WebP Converter API?\n\n

    \n

    Image data received by our API is destroyed after a converted image is generated. The converted iamges are destroyed once picked-up/downloaded to your website by the Total Cache plugin.

    \n

    \n
    \nThis is too good to be true, how can I test the results?\n\n

    \n

    You will be able to see the results instantly on each page load, but for tangible metrics, you should consider using the following tools:

    \n\n

    \n
    \nI don’t have time to deal with this, but I know I need it. Will you help me?\n\n

    \n

    Yes! Please reach out to us and we’ll get you acclimated so you can “set it and forget it.”

    \n

    Install the plugin to read the full FAQ on the plugins FAQ tab.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Ha creato migliaia di cartelle e milioni di file wp-content\\cache

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy salviodj on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Sto provando a scaricare il sito web in locale con Filezilla, è un giorno intero che sto scaricando solo la cache !!!

    \n\n\n\n

    Ho provato a disinstallare il Plugin, risultato Sito web distrutto. inaccessibile sia lato pubblico che lato sito!!!

    \n\n\n\n

    Cambiate mestiere!!!

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Complete Caching System

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shoulders1024 on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using Total Cache for a while and never had any issues with it and I run it on many sites.

    \n\n\n\n

    I use the free version which has all of the features that a small website needs. It is feature complete and no caching setting has been left out. I am am impressed in the amount of thought has gone into this plugin.

    \n\n\n\n

    When you first set it up there is a learning curve, but the documentation really helps with this and when you have the perfect setup you can export your settings and use them on your next site.

    \n\n\n\n

    I have asked on the support forum for a few things and the developers were kind enough to help me.

    \n\n\n\n

    I would not consider using any other caching software so when any of my sites grow enough and require better caching features, I will upgrade to Pro.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Bad performance and critical error after uninstalling

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy vegapchirinos on September 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just changed to another plugin recommended by my hosting provider and after a lot of changes and effort my pagespeed drastically improved. After that I obviously wanted to uninstall it... but then a critical error appeared, asking to erase one file from my server. When I did so, another critical error appeared, making it impossible to access my WP admin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Huge win

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mpeng7 on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WebP conversion alone boosted both performance and SEO rankings

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Chimera (haonas) on August 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am really satisfied with this plugin. It’s a powerful add-on that enhances my website, and the support provided even for the free version is truly top-notch.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    垃圾中的垃圾

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jonasoress on June 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    安装后在数据库产生了一堆垃圾文件,卸载后还直接导致网站错误!流氓垃圾插件。

    \n\n\n\n

    这么多好评应该是虚假评价吧!

    \n\n\n\n

    垃圾插件!!!

    \n\n\n\n

    千万别用!!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great help resolving a JS issue

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy panoramicpathways on June 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I got great and responsive help finding and fixing a JS minification issue with image enlargement functionality. This saved me a lot of time and helped to preserve the speed increases realized with the W3 Total Cache plug-in.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Supports a lot of caching methods

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy w-sky on May 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    W3 Total Cache was the best choice for my site because it makes best use of the server capabilities by choosing the appropriate caching methods.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best caching plugin I could find

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jaredatbrtc on May 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Spent the last several weeks testing out every free caching plugin with a decent rating in an attempt to find one that has the best results \"out of the box,\" and W3 Total Cache takes the cake. It is a little more complex to set up than others, but the level of control you do have - even in the free version - is wonderful. Enabling any minify settings caused me a significant decrease in speed, but the general speed increase without that option has still been substantial. My only real quibble is that once I installed this, the header banner images on each page of my site started loading in with a quick zoom in/out animation. Simple enough to fix with a manual application of a different, less visually obtrusive animation, but still strange and a difficult problem to track down setting-by-setting. But even then after enabling and disabling every available option, the only thing that fixed it was disabling the plugin altogether, but I can live with alternative image animations for now.

    All in all, a pretty solid caching plugin. Do take the time to go through each setting while wiping the caches and reloading a test page to figure out which setting work best for you. It''s definitely time-consuming, but totally worth it once you''re dialed-in.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Completely crashed my site!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy markjames1234 on April 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Made my entire site un-usable and I have had to spend hours tracing the error to this plugin, followed by ages having to remove it from all the nooks and crannies it had wormed its way into to make the site work again.

    \n
    \n
    \n", "changelog": "

    2.8.14

    \n
      \n
    • Fix: Better logic for mfunc/mclude processing
    • \n
    • Enhancement: More consistent purge notices
    • \n
    \n

    2.8.13

    \n
      \n
    • Fix: Sanitize mfunc/mclude content in REST calls
    • \n
    • Fix: Resolved plugin check errors
    • \n
    • Fix: Discard simplexml errors
    • \n
    • Fix: Missing text domains
    • \n
    • Fix: Ensure array type for filter “w3tc_footer_comment”
    • \n
    • Enhancement: WebP Converter: WP_Query optimizations
    • \n
    \n

    2.8.12

    \n
      \n
    • Fix: Lazy load background-image style handing
    • \n
    • Fix: Elementor: Also flush Object Cache after Page Cache is flushed
    • \n
    • Fix: Canonicalize Cache read path to avoid variants
    • \n
    \n

    2.8.11

    \n
      \n
    • Fix: Avoid redundant object cache misses in WP 6.4 – 6.7
    • \n
    • Fix: Admin bar: Do not show “Purge All Caches Except Cloudflare” if disabled after it was configured
    • \n
    • Fix: Error handling for URL downloads
    • \n
    • Fix: Menu items for non-administrators
    • \n
    • Update: Lazy load library: 12.2.0 => 19.1.2
    • \n
    • Enhancement: Use SimpleXMLElement to parse sitemaps and RSS feeds
    • \n
    • Enhancement: Flush Elementor cache when all caches are flushed
    • \n
    \n

    2.8.10

    \n
      \n
    • Fix: Exception handling on activation
    • \n
    • Fix: wp_resource_hint handling for arrays
    • \n
    • Enhancement: Added X-W3TC-CDN header
    • \n
    \n

    2.8.9

    \n
      \n
    • Fix: AWS S3 test
    • \n
    • Fix: Gravity Forms submissions
    • \n
    • Fix: Windows: Configuration import
    • \n
    • Fix: Redis: Fix PHP 8 warning for incrBy value not being an integer
    • \n
    • Fix: DbCache Cluster: Check for mysqli_result before using the object
    • \n
    • Fix: PHP 8 warnings
    • \n
    • Fix: Typos on settings pages
    • \n
    \n

    2.8.8

    \n
      \n
    • Fix: Usage Statistics JavaScript error
    • \n
    • Fix: Regex matching for Cookie Cache Groups
    • \n
    • Fix: Image Service: Error when get_current_screen() is run before admin_init
    • \n
    • Fix: _load_textdomain_just_in_time timing issue for WP-CLI and the Setup Guide
    • \n
    • Fix: “DOMDocument::loadHTML(): ID already defined in Entity” errors
    • \n
    • Fix: Cloudflare: Saving settings with a value of 0
    • \n
    • Update: Removed StackPath, Limelight, and Highwinds CDNs due to end of service
    • \n
    \n

    2.8.7

    \n
      \n
    • Fix: Exit survey email field submission
    • \n
    • Fix: Setup Guide analytics
    • \n
    • Update: Allow deleting plugin data when skipping the exit survey on deactivation
    • \n
    • Update: aws/aws-php-sns-message-validator (1.9.0 => 1.9.1)
    • \n
    \n

    2.8.6

    \n
      \n
    • Fix: Error deactivating when selected to delete plugin data
    • \n
    • Fix: WP-CLI: Enable Object Cache depending on settings
    • \n
    • Fix: Delete all plugin WordPress Options if selected on deactivation
    • \n
    • Enhancement: Automatically disable Object Cache after plugin update if set to Disk and display a notice
    • \n
    • Enhancement: WP-CLI: Added settings to enable Object and DB Cache for WP-CLI
    • \n
    • Enhancement: Added an email field to the exit survey for requesting help
    • \n
    • Enhancement: Added a popup modal to accept the risk when enabling Object Cache using Disk
    • \n
    \n

    2.8.5

    \n
      \n
    • Fix: CDN: Amazon S3 long hostname for default region
    • \n
    • Fix: WP-CLI: Error running “wp w3tc alwayscached_*” commands
    • \n
    • Fix: WP-CLI: Remove HTML in output
    • \n
    • Enhancement: Simplified license messsaging
    • \n
    \n

    2.8.4

    \n
      \n
    • Fix: Deactivation modal JS error
    • \n
    \n

    2.8.3

    \n
      \n
    • Fix: HTTP API calls for checking required files
    • \n
    • Fix: script-src-elem and style-src-attr security headers
    • \n
    • Fix: Handle multiple line srcset attributes for CDN URL replacement
    • \n
    • Fix: Fragment Cache: Fixed logic for navigation links
    • \n
    • Fix: Check for modified advanced-cache.php dropin/addin file
    • \n
    • Fix: Log directory name is made unique
    • \n
    • Enhancement: Added an exit survey with option to delete plugin data on deactivation
    • \n
    • Enhancement: Fragment Cache: Added notices for configuration
    • \n
    • Enhancement: Use admin-ajax for settings help tab content links
    • \n
    • Update: Handle XML MIME types in cache by default
    • \n
    • Update: Added “immutable” options for cache-control headers
    • \n
    • Update: Added WP-CLI command descriptions
    • \n
    • Update: CDN widget notices for BunnyCDN
    • \n
    • Update: WebP Converter widget notice
    • \n
    \n

    2.8.2

    \n
      \n
    • Fix: Added additional user capability checks
    • \n
    • Fix: Ensure Object Cache garbage collection (disk) WP Cron event is scheduled
    • \n
    • Fix: Added additional checks when loading the Object Cache dropin
    • \n
    • Fix: Disable Database, Object, and Fragment Cache when using WP-CLI
    • \n
    • Fix: Object Cache debug logging
    • \n
    • Fix: FAQ help tabs
    • \n
    • Update: Coding standards
    • \n
    \n

    = 2.8.1=
    \n* Fix: Ensure WP Cron events get scheduled when using the Setup Guide wizard and on upgrade
    \n* Fix: Undefined variable when the Object Cache purge debug log is enabled
    \n* Update: Added warnings in the Setup Guide and the General Settings page when using Disk for Database and Object Caches
    \n* Update: Skip Database and Object caches when using WP-CLI

    \n

    2.8.0

    \n
      \n
    • Feature: Always Cached extension
    • \n
    • Feature: Purge caches on WP-Cron schedules
    • \n
    • Fix: Cloudflare: Some settings were not saved correctly
    • \n
    • Fix: Check and update file mode/permissions for cache files
    • \n
    • Fix: Issue prompting for credentials for some non-direct filesystem types
    • \n
    • Enhancement: Added an admin notice if WP-Cron is not functioning correctly
    • \n
    • Enhancement: Added Browser Cache filters
    • \n
    • Update: Upgraded JSMin library to 2.4.3
    • \n
    • Update: Added Premium Services tabs
    • \n
    \n", "description": "

    W3 Total Cache (W3TC) improves the SEO, Core Web Vitals and overall user experience of your site by increasing website performance and reducing load times by leveraging features like content delivery network (CDN) integration and the latest best practices.

    \n

    W3TC is the only web host agnostic Web Performance Optimization (WPO) framework for WordPress trusted by millions of publishers, web developers, and web hosts worldwide for more than a decade. It is the total performance solution for optimizing WordPress Websites.

    \n

    BENEFITS

    \n
      \n
    • Improvements in search engine result page rankings, especially for mobile-friendly websites and sites that use SSL
    • \n
    • At least 10x improvement in overall site performance (Grade A in WebPagetest or significant Google PageSpeed improvements) when fully configured
    • \n
    • Improved conversion rates and “site performance” which affect your site’s rank on Google.com
    • \n
    • “Instant” repeat page views: browser caching
    • \n
    • Optimized progressive render: pages start rendering quickly and can be interacted with more quickly
    • \n
    • Reduced page load time: increased visitor time on site; visitors view more pages
    • \n
    • Improved web server performance; sustain high traffic periods
    • \n
    • Up to 80% bandwidth savings when you minify HTML, minify CSS and minify JS files.
    • \n
    \n

    KEY FEATURES

    \n
      \n
    • Compatible with shared hosting, virtual private / dedicated servers and dedicated servers / clusters
    • \n
    • Transparent content delivery network (CDN) management with Media Library, theme files and WordPress itself
    • \n
    • Mobile support: respective caching of pages by referrer or groups of user agents including theme switching for groups of referrers or user agents
    • \n
    • Accelerated Mobile Pages (AMP) support
    • \n
    • Secure Socket Layer (SSL/TLS) support
    • \n
    • Caching of (minified and compressed) pages and posts in memory or on disk or on (FSD) CDN (by user agent group)
    • \n
    • Caching of (minified and compressed) CSS and JavaScript in memory, on disk or on CDN
    • \n
    • Caching of feeds (site, categories, tags, comments, search results) in memory or on disk or on CDN
    • \n
    • Caching of search results pages (i.e. URIs with query string variables) in memory or on disk
    • \n
    • Caching of database objects in memory or on disk
    • \n
    • Caching of objects in memory or on disk
    • \n
    • Caching of fragments in memory or on disk
    • \n
    • Caching methods include local Disk, Redis, Memcached, APC, APCu, eAccelerator, XCache, and WinCache
    • \n
    • Minify CSS, Minify JavaScript and Minify HTML with granular control
    • \n
    • Minification of posts and pages and RSS feeds
    • \n
    • Minification of inline, embedded or 3rd party JavaScript with automated updates to assets
    • \n
    • Minification of inline, embedded or 3rd party CSS with automated updates to assets
    • \n
    • Defer non critical CSS and Javascript for rendering pages faster than ever before
    • \n
    • Defer offscreen images using Lazy Load to improve the user experience
    • \n
    • Browser caching using cache-control, future expire headers and entity tags (ETag) with “cache-busting”
    • \n
    • JavaScript grouping by template (home page, post page etc) with embed location control
    • \n
    • Non-blocking JavaScript embedding
    • \n
    • Import post attachments directly into the Media Library (and CDN)
    • \n
    • Leverage our multiple CDN integrations to optimize images
    • \n
    • WP-CLI support for cache purging, query string updating and more
    • \n
    • Various security features to help ensure website safety
    • \n
    • Caching statistics for performance insights of any enabled feature
    • \n
    • Extension framework for customization or extensibility for Cloudflare, WPML and much more
    • \n
    • Reverse proxy integration via Nginx or Varnish
    • \n
    • WebP Converter extension provides WebP image format conversion from common image formats (on upload and on demand)
    • \n
    \n

    W3 Total Cache Pro Features

    \n

    With over a million active installs, W3 Total Cache is the most comprehensive WordPress caching plugin available and has robust premium features that help deliver an exceptional user experience.

    \n
      \n
    • Full Site Delivery: Serve your entire site from a Content Delivery Network (CDN), ensuring faster load times worldwide.
    • \n
    • Fragment Cache: Optimize the caching of dynamic content while still improving performance.
    • \n
    • REST API Caching: Speed up your headless WordPress site by caching REST API calls.
    • \n
    • Eliminate Render-Blocking CSS: Ensure your CSS doesn’t hold up page loading, providing faster initial paint.
    • \n
    • Delay Scripts: Improve performance by delaying the loading of non-essential scripts until they are needed.
    • \n
    • Preload Requests: Boost page performance by preloading critical resources before they’re requested.
    • \n
    • Remove CSS/JS: Clean up unnecessary CSS and JavaScript files that slow down your pages.
    • \n
    • Lazy Load Google Maps: Load Google Maps only when it’s visible, reducing unnecessary requests.
    • \n
    • WPML Extension: Optimize performance on multilingual sites powered by WPML.
    • \n
    • Caching Statistics: Get detailed insights on cache usage and performance improvements.
    • \n
    • Purge Logs: Keep your site clean by automatically purging unnecessary cache logs.
    • \n
    \n

    30-Day Money-Back Guarantee

    \n

    Try W3 Total Cache Pro risk-free with our 30-day money-back guarantee. If you’re not satisfied, we will refund your purchase.

    \n

    PAGESPEED SCORE IMPROVEMENTS

    \n

    To help you understand the impact of individual features on your website’s performance, we’ve tested each feature separately to see its effect on Google PageSpeed scores. While optimal results come from configuring several different caching tools together, the following individual features also show significant improvements on their own:

    \n

    Remove Unused CSS/JS

    \n

    This feature removes CSS and JavaScript files that are not needed for the current page, reducing the load time.

    \n
      \n
    • Added over 27 points to the Google PageSpeed score (Before: 57.2 / After: 86.7)
    • \n
    • Reduced the Potential Savings From Unused JavaScript from 127.5 KiB to 84 KiB
    • \n
    • View the test results
    • \n
    \n

    Full Site Delivery

    \n

    Full Site Delivery optimizes the delivery of your entire site, enhancing the server response time.

    \n
      \n
    • Added a 99% performance enhancement to the Average Server Response Time (Before: 3413 ms / After: 34 ms)
    • \n
    • View the test results
    • \n
    \n

    Eliminate Render Blocking CSS

    \n

    This feature eliminates CSS that blocks the rendering of your page, speeding up the initial load time.

    \n
      \n
    • Added over 17 points to the Google PageSpeed score (Before: 53.75 / After: 71)
    • \n
    • Reduced the Potential Savings From Render-Blocking Resources by over 94% (Before: 2432.5 ms / After: 125 ms)
    • \n
    • Improved the Largest Contentful Paint time by over 56% (Before: 7s / After: 3.04s)
    • \n
    • View the test results
    • \n
    \n

    Delay Scripts

    \n

    Delay Scripts postpones the loading of certain scripts until they are needed, reducing initial load times.

    \n
      \n
    • Added 14 points to the Google PageSpeed Performance score (Before: 54.25 / After: 68.5)
    • \n
    • Reduced the Time Third-Party Code Blocked The Main Thread For by 62% (Before: 825 ms / After: 197.5 ms)
    • \n
    • View the test results
    • \n
    \n

    Rest API Caching

    \n

    This feature caches API responses, reducing server load and speeding up API interactions.

    \n
      \n
    • Reduced the Average Server Load by 40% (Before: 0.62 / After: 0.37)
    • \n
    • Sped up API Responses by 84.5% (Before: 968ms / After: 150ms)
    • \n
    • Reduced the Average Server Load by 24% under during a major traffic spike (Before: 34.55 / After: 26.19)
    • \n
    • View the test results
    • \n
    \n

    WebP Images

    \n

    Converts images to the WebP format, which is more efficient and faster to load.

    \n
      \n
    • Added over 9 points to the Google PageSpeed score (Before: 84.67 / After: 93.83)
    • \n
    • View the test results
    • \n
    \n

    Lazy Load Google Maps

    \n

    Delays the loading of Google Maps until the user interacts with them, reducing initial load time.

    \n
      \n
    • Added 10 points to the Google PageSpeed score (Before: 66 / After: 76)
    • \n
    • Reduced the Total Blocking Time Performance score by 72% (Before: 287.5 ms / After: 80 ms)
    • \n
    • View the test results
    • \n
    \n

    Speed up your site tremendously, improve core web vitals and the overall user experience for your visitors without having to change your WordPress host, theme, plugins or your content production workflow.

    \n

    What users have to say:

    \n\n

    Who do I thank for all of this?

    \n

    It’s quite difficult to recall all of the innovators that have shared their thoughts, code and experiences in the blogosphere over the years, but here are some names to get you started:

    \n\n

    Please reach out to all of these people and support their projects if you’re so inclined.

    \n", "installation": "
      \n
    1. Deactivate and uninstall any other caching plugin you may be using. Pay special attention if you have customized the rewrite rules for fancy permalinks, have previously installed a caching plugin or have any browser caching rules as W3TC will automate management of all best practices. Also make sure wp-content/ and wp-content/uploads/ (temporarily) have 777 permissions before proceeding, e.g. in the terminal: # chmod 777 /var/www/vhosts/domain.com/httpdocs/wp-content/ using your web hosting control panel or your FTP / SSH account.
    2. \n
    3. Login as an administrator to your WordPress Admin account. Using the “Add New” menu option under the “Plugins” section of the navigation, you can either search for: w3 total cache or if you’ve downloaded the plugin already, click the “Upload” link, find the .zip file you download and then click “Install Now”. Or you can unzip and FTP upload the plugin to your plugins directory (wp-content/plugins/). In either case, when done wp-content/plugins/w3-total-cache/ should exist.
    4. \n
    5. Locate and activate the plugin on the “Plugins” page. Page caching will automatically be running in basic mode. Set the permissions of wp-content and wp-content/uploads back to 755, e.g. in the terminal: # chmod 755 /var/www/vhosts/domain.com/httpdocs/wp-content/.
    6. \n
    7. Now click the “Settings” link to proceed to the “General Settings” tab; in most cases, “disk enhanced” mode for page cache is a “good” starting point.
    8. \n
    9. The “Compatibility mode” option found in the advanced section of the “Page Cache Settings” tab will enable functionality that optimizes the interoperablity of caching with WordPress, is disabled by default, but highly recommended. Years of testing in hundreds of thousands of installations have helped us learn how to make caching behave well with WordPress. The tradeoff is that disk enhanced page cache performance under load tests will be decreased by ~20% at scale.
    10. \n
    11. Recommended: On the “Minify Settings” tab, all of the recommended settings are preset. If auto mode causes issues with your web site’s layout, switch to manual mode and use the help button to simplify discovery of your CSS and JS files and groups. Pay close attention to the method and location of your JS group embeddings. See the plugin’s FAQ for more information on usage.
    12. \n
    13. Recommended: On the “Browser Cache” tab, HTTP compression is enabled by default. Make sure to enable other options to suit your goals.
    14. \n
    15. Recommended: If you already have a content delivery network (CDN) provider, proceed to the “Content Delivery Network” tab and populate the fields and set your preferences. If you do not use the Media Library, you will need to import your images etc into the default locations. Use the Media Library Import Tool on the “Content Delivery Network” tab to perform this task. If you do not have a CDN provider, you can still improve your site’s performance using the “Self-hosted” method. On your own server, create a subdomain and matching DNS Zone record; e.g. static.domain.com and configure FTP options on the “Content Delivery Network” tab accordingly. Be sure to FTP upload the appropriate files, using the available upload buttons.
    16. \n
    17. Optional: On the “Database Cache” tab, the recommended settings are preset. If using a shared hosting account use the “disk” method with caution, the response time of the disk may not be fast enough, so this option is disabled by default. Try object caching instead for shared hosting.
    18. \n
    19. Optional: On the “Object Cache” tab, all of the recommended settings are preset. If using a shared hosting account use the “disk” method with caution, the response time of the disk may not be fast enough, so this option is disabled by default. Test this option with and without database cache to ensure that it provides a performance increase.
    20. \n
    21. Optional: On the “User Agent Groups” tab, specify any user agents, like mobile phones if a mobile theme is used.
    22. \n
    \n"}, "versions": {"0.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/w3-total-cache.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/w3-total-cache.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/w3-total-cache.0.8.zip", "0.7.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.7.5.zip", "0.8.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.8.5.zip", "0.9.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.0.zip", "0.9.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.6.zip", "0.9.7": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.zip", "2.0.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.0.1.zip", "2.1.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.4.zip", "2.2.6": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.7.zip", "2.2.9": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.3.3.zip", "2.4.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.4.1.zip", "2.5.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.5.0.zip", "2.6.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.6.1.zip", "2.7.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.7.zip", "2.8.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.7.zip", "2.8.8": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.8.zip", "2.8.9": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.9.zip", "trunk": "https://downloads.wordpress.org/plugin/w3-total-cache.zip", "0.10.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.10.0.zip", "0.10.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.10.1.zip", "0.10.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.10.2.zip", "0.11.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.11.0.zip", "0.12.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.12.0.zip", "0.13.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.13.0.zip", "0.13.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.13.1.zip", "0.13.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.13.2.zip", "0.13.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.13.3.zip", "0.14.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.14.0.zip", "0.14.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.14.1.zip", "0.14.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.14.2.zip", "0.14.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.14.3.zip", "0.14.4": "https://downloads.wordpress.org/plugin/w3-total-cache.0.14.4.zip", "0.15.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.15.0.zip", "0.15.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.15.1.zip", "0.15.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.15.2.zip", "2.2.10": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.10.zip", "2.2.11": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.11.zip", "2.2.12": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.12.zip", "2.8.10": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.10.zip", "2.8.11": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.11.zip", "2.8.12": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.12.zip", "2.8.13": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.13.zip", "2.8.14": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.14.zip", "0.7.5.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.7.5.1.zip", "0.7.5.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.7.5.2.zip", "0.8.5.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.8.5.1.zip", "0.8.5.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.8.5.2.zip", "0.9.1.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.1.1.zip", "0.9.1.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.1.2.zip", "0.9.1.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.1.3.zip", "0.9.2.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.1.zip", "0.9.2.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.2.zip", "0.9.2.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.3.zip", "0.9.2.4": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.4.zip", "0.9.2.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.5.zip", "0.9.2.6": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.6.zip", "0.9.2.7": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.7.zip", "0.9.2.8": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.8.zip", "0.9.2.9": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.9.zip", "0.9.4.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.4.1.zip", "0.9.5.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.5.1.zip", "0.9.5.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.5.2.zip", "0.9.5.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.5.3.zip", "0.9.5.4": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.5.4.zip", "0.9.7.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.1.zip", "0.9.7.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.2.zip", "0.9.7.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.3.zip", "0.9.7.4": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.4.zip", "0.9.7.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.5.zip", "0.9.2.10": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.10.zip", "0.9.2.11": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.11.zip", "2.7.7-beta.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.7-beta.1.zip", "2.4.0-alpha.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.4.0-alpha.1.zip", "2.4.0-alpha.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.4.0-alpha.3.zip", "2.6.0-alpha.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.6.0-alpha.1.zip", "2.6.0-alpha.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.6.0-alpha.2.zip"}, "downloaded": 60000372, "description": "

    W3 Total Cache (W3TC) improves the SEO, Core Web Vitals and overall user experience of your site by increasing website performance and reducing load times by leveraging features like content delivery network (CDN) integration and the latest best practices.

    \n

    W3TC is the only web host agnostic Web Performance Optimization (WPO) framework for WordPress trusted by millions of publishers, web developers, and web hosts worldwide for more than a decade. It is the total performance solution for optimizing WordPress Websites.

    \n

    BENEFITS

    \n
      \n
    • Improvements in search engine result page rankings, especially for mobile-friendly websites and sites that use SSL
    • \n
    • At least 10x improvement in overall site performance (Grade A in WebPagetest or significant Google PageSpeed improvements) when fully configured
    • \n
    • Improved conversion rates and “site performance” which affect your site’s rank on Google.com
    • \n
    • “Instant” repeat page views: browser caching
    • \n
    • Optimized progressive render: pages start rendering quickly and can be interacted with more quickly
    • \n
    • Reduced page load time: increased visitor time on site; visitors view more pages
    • \n
    • Improved web server performance; sustain high traffic periods
    • \n
    • Up to 80% bandwidth savings when you minify HTML, minify CSS and minify JS files.
    • \n
    \n

    KEY FEATURES

    \n
      \n
    • Compatible with shared hosting, virtual private / dedicated servers and dedicated servers / clusters
    • \n
    • Transparent content delivery network (CDN) management with Media Library, theme files and WordPress itself
    • \n
    • Mobile support: respective caching of pages by referrer or groups of user agents including theme switching for groups of referrers or user agents
    • \n
    • Accelerated Mobile Pages (AMP) support
    • \n
    • Secure Socket Layer (SSL/TLS) support
    • \n
    • Caching of (minified and compressed) pages and posts in memory or on disk or on (FSD) CDN (by user agent group)
    • \n
    • Caching of (minified and compressed) CSS and JavaScript in memory, on disk or on CDN
    • \n
    • Caching of feeds (site, categories, tags, comments, search results) in memory or on disk or on CDN
    • \n
    • Caching of search results pages (i.e. URIs with query string variables) in memory or on disk
    • \n
    • Caching of database objects in memory or on disk
    • \n
    • Caching of objects in memory or on disk
    • \n
    • Caching of fragments in memory or on disk
    • \n
    • Caching methods include local Disk, Redis, Memcached, APC, APCu, eAccelerator, XCache, and WinCache
    • \n
    • Minify CSS, Minify JavaScript and Minify HTML with granular control
    • \n
    • Minification of posts and pages and RSS feeds
    • \n
    • Minification of inline, embedded or 3rd party JavaScript with automated updates to assets
    • \n
    • Minification of inline, embedded or 3rd party CSS with automated updates to assets
    • \n
    • Defer non critical CSS and Javascript for rendering pages faster than ever before
    • \n
    • Defer offscreen images using Lazy Load to improve the user experience
    • \n
    • Browser caching using cache-control, future expire headers and entity tags (ETag) with “cache-busting”
    • \n
    • JavaScript grouping by template (home page, post page etc) with embed location control
    • \n
    • Non-blocking JavaScript embedding
    • \n
    • Import post attachments directly into the Media Library (and CDN)
    • \n
    • Leverage our multiple CDN integrations to optimize images
    • \n
    • WP-CLI support for cache purging, query string updating and more
    • \n
    • Various security features to help ensure website safety
    • \n
    • Caching statistics for performance insights of any enabled feature
    • \n
    • Extension framework for customization or extensibility for Cloudflare, WPML and much more
    • \n
    • Reverse proxy integration via Nginx or Varnish
    • \n
    • WebP Converter extension provides WebP image format conversion from common image formats (on upload and on demand)
    • \n
    \n

    W3 Total Cache Pro Features

    \n

    With over a million active installs, W3 Total Cache is the most comprehensive WordPress caching plugin available and has robust premium features that help deliver an exceptional user experience.

    \n
      \n
    • Full Site Delivery: Serve your entire site from a Content Delivery Network (CDN), ensuring faster load times worldwide.
    • \n
    • Fragment Cache: Optimize the caching of dynamic content while still improving performance.
    • \n
    • REST API Caching: Speed up your headless WordPress site by caching REST API calls.
    • \n
    • Eliminate Render-Blocking CSS: Ensure your CSS doesn’t hold up page loading, providing faster initial paint.
    • \n
    • Delay Scripts: Improve performance by delaying the loading of non-essential scripts until they are needed.
    • \n
    • Preload Requests: Boost page performance by preloading critical resources before they’re requested.
    • \n
    • Remove CSS/JS: Clean up unnecessary CSS and JavaScript files that slow down your pages.
    • \n
    • Lazy Load Google Maps: Load Google Maps only when it’s visible, reducing unnecessary requests.
    • \n
    • WPML Extension: Optimize performance on multilingual sites powered by WPML.
    • \n
    • Caching Statistics: Get detailed insights on cache usage and performance improvements.
    • \n
    • Purge Logs: Keep your site clean by automatically purging unnecessary cache logs.
    • \n
    \n

    30-Day Money-Back Guarantee

    \n

    Try W3 Total Cache Pro risk-free with our 30-day money-back guarantee. If you’re not satisfied, we will refund your purchase.

    \n

    PAGESPEED SCORE IMPROVEMENTS

    \n

    To help you understand the impact of individual features on your website’s performance, we’ve tested each feature separately to see its effect on Google PageSpeed scores. While optimal results come from configuring several different caching tools together, the following individual features also show significant improvements on their own:

    \n

    Remove Unused CSS/JS

    \n

    This feature removes CSS and JavaScript files that are not needed for the current page, reducing the load time.

    \n
      \n
    • Added over 27 points to the Google PageSpeed score (Before: 57.2 / After: 86.7)
    • \n
    • Reduced the Potential Savings From Unused JavaScript from 127.5 KiB to 84 KiB
    • \n
    • View the test results
    • \n
    \n

    Full Site Delivery

    \n

    Full Site Delivery optimizes the delivery of your entire site, enhancing the server response time.

    \n
      \n
    • Added a 99% performance enhancement to the Average Server Response Time (Before: 3413 ms / After: 34 ms)
    • \n
    • View the test results
    • \n
    \n

    Eliminate Render Blocking CSS

    \n

    This feature eliminates CSS that blocks the rendering of your page, speeding up the initial load time.

    \n
      \n
    • Added over 17 points to the Google PageSpeed score (Before: 53.75 / After: 71)
    • \n
    • Reduced the Potential Savings From Render-Blocking Resources by over 94% (Before: 2432.5 ms / After: 125 ms)
    • \n
    • Improved the Largest Contentful Paint time by over 56% (Before: 7s / After: 3.04s)
    • \n
    • View the test results
    • \n
    \n

    Delay Scripts

    \n

    Delay Scripts postpones the loading of certain scripts until they are needed, reducing initial load times.

    \n
      \n
    • Added 14 points to the Google PageSpeed Performance score (Before: 54.25 / After: 68.5)
    • \n
    • Reduced the Time Third-Party Code Blocked The Main Thread For by 62% (Before: 825 ms / After: 197.5 ms)
    • \n
    • View the test results
    • \n
    \n

    Rest API Caching

    \n

    This feature caches API responses, reducing server load and speeding up API interactions.

    \n
      \n
    • Reduced the Average Server Load by 40% (Before: 0.62 / After: 0.37)
    • \n
    • Sped up API Responses by 84.5% (Before: 968ms / After: 150ms)
    • \n
    • Reduced the Average Server Load by 24% under during a major traffic spike (Before: 34.55 / After: 26.19)
    • \n
    • View the test results
    • \n
    \n

    WebP Images

    \n

    Converts images to the WebP format, which is more efficient and faster to load.

    \n
      \n
    • Added over 9 points to the Google PageSpeed score (Before: 84.67 / After: 93.83)
    • \n
    • View the test results
    • \n
    \n

    Lazy Load Google Maps

    \n

    Delays the loading of Google Maps until the user interacts with them, reducing initial load time.

    \n
      \n
    • Added 10 points to the Google PageSpeed score (Before: 66 / After: 76)
    • \n
    • Reduced the Total Blocking Time Performance score by 72% (Before: 287.5 ms / After: 80 ms)
    • \n
    • View the test results
    • \n
    \n

    Speed up your site tremendously, improve core web vitals and the overall user experience for your visitors without having to change your WordPress host, theme, plugins or your content production workflow.

    \n

    What users have to say:

    \n\n

    Who do I thank for all of this?

    \n

    It’s quite difficult to recall all of the innovators that have shared their thoughts, code and experiences in the blogosphere over the years, but here are some names to get you started:

    \n\n

    Please reach out to all of these people and support their projects if you’re so inclined.

    \n", "donate_link": "", "num_ratings": 5409, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/w3-total-cache/", "contributors": {"vmarko": {"avatar": "https://secure.gravatar.com/avatar/896c03c55533b1532318d6a19225328b336f03be0e94769e0bcb4a672aab12aa?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/vmarko/", "display_name": "Marko Vasiljevic"}, "joemoto": {"avatar": "https://secure.gravatar.com/avatar/731b7190cf9830d217ded7dae72f736a74a58eeefd4948821f9f0d15c2b933bc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/joemoto/", "display_name": "Joe Cartonia"}, "abrender": {"avatar": "https://secure.gravatar.com/avatar/f6ceb3cfb364a4f5fc8424a2bb08649716688fa721dec95bb4a04e219c63f52a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/abrender/", "display_name": "abrender"}, "boldgrid": {"avatar": "https://secure.gravatar.com/avatar/78be6bef3f4684608eb64a3de0f25bbc2a16e7d2df121231c673ae7a2281a904?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/boldgrid/", "display_name": "BoldGrid"}, "bwmarkle": {"avatar": "https://secure.gravatar.com/avatar/6a65abffba74bf56df8aa6fafebd473de4d6aa2cc9de5b7347b89385f62d9478?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bwmarkle/", "display_name": "Brad Markle"}, "jacobd91": {"avatar": "https://secure.gravatar.com/avatar/dfbd4f652d0ff51af04120dadeda78b1ada9c209c8e6c834ccba11fe071b90c2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jacobd91/", "display_name": "Jacob Dunn"}, "maxicusc": {"avatar": "https://secure.gravatar.com/avatar/a4a45ea19c4df45b59c528c1e9b1f85ab8a63df13937ab5ca06c0f5f8959b8bc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/maxicusc/", "display_name": "maxicusc"}, "avonville1": {"avatar": "https://secure.gravatar.com/avatar/b1bf1afc6134964eeb541460da2d7d0b35d180adf07d6c842aff1cdf01870db4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/avonville1/", "display_name": "avonville1"}, "gidomanders": {"avatar": "https://secure.gravatar.com/avatar/f6bb40c7cf1d8b14de04a88ee3e3d9dc57d42a9f766849916368c5148077391d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/gidomanders/", "display_name": "gidomanders"}, "jamesros161": {"avatar": "https://secure.gravatar.com/avatar/9b2623e2977abf227efae2d4839d39511ab3d0f0e89229aaf3535143332c5c80?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jamesros161/", "display_name": "James Rosado"}, "elanasparkle": {"avatar": "https://secure.gravatar.com/avatar/1cf2e31ee56014b99e1f906f7f309fd0b01cb87e37eb29cc30d672ec0fbed78a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elanasparkle/", "display_name": "Elana Davis"}, "fredericktownes": {"avatar": "https://secure.gravatar.com/avatar/8faea457ecdd43f344a7b5a5a92ee5654c08d7b9cf8ecd6e0c826a5651107b8a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/fredericktownes/", "display_name": "Frederick Townes"}, "harryjackson1221": {"avatar": "https://secure.gravatar.com/avatar/76eedc1f7ea3aa9e1cbda25574a6a46e4a25b8bc536cd208ce88e2c13b554395?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/harryjackson1221/", "display_name": "Harry Jackson"}}, "last_updated": "2025-10-20 4:29pm GMT", "preview_link": "", "requires_php": "7.2.5", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.14.zip", "author_profile": "https://profiles.wordpress.org/boldgrid/", "business_model": false, "repository_url": "", "upgrade_notice": {"0.9.4": "

    Thanks for using W3 Total Cache! This release introduces hundreds of well-tested stability fixes since the last release as well as a new mode called "edge mode," which allows us to make releases more often containing new features that are still undergoing testing or active iteration.

    ", "0.9.5": "

    Thanks for using W3 Total Cache! This release includes fixes for recent XSS security issues that have been reported. In addition, hundreds of other improvements are now yours!

    ", "2.7.3": "

    Thanks for using W3 Total Cache! The minimum required PHP version has been raised to PHP 7.2.5. We recommend using PHP 8. StackPath CDN has cased all operations and will be removed in a future release. We recommend switching to Bunny CDN.

    ", "2.8.1": "

    Users with Object Cache using Disk should upgrade to ensure proper garbage collection. A memory-based engine is recommended for database and object caches. Using Disk can lead to a large number of files. Hosting accounts with inode limits may experience issues, including downtime.

    ", "2.8.2": "

    This is a security update. All users are encouraged to update to this version.

    ", "2.8.13": "

    This is a security update. Users that implement mfunc/mclude should update to this version.

    ", "0.9.2.8": "

    WordPress attempts to use built-in support for managing files had issues. File management is a critical issue that will cause lots of issues if it doesn't work perfectly. This release is an attempt to restore file management back to the reliability of previous versions.

    ", "0.9.2.9": "

    This release addresses security issues for Cloudflare users as well as users that implement fragment caching via the mfunc functionality. For those using mfunc, temporarily disable page caching to allow yourself time to check the FAQ tab for new usage instructions.

    ", "0.9.5.1": "

    Thanks for using W3 Total Cache! This release includes security fixes that have been reported. In addition, numerous other improvements are now yours!

    ", "0.9.5.2": "

    Thanks for using W3 Total Cache! This release includes security fixes that have been reported. In addition, numerous other improvements are now yours!

    ", "0.9.5.3": "

    Thanks for using W3 Total Cache! This release includes compatibility fixes that have been reported. In addition, numerous other improvements are now yours!

    ", "0.9.7.5": "

    Users running Cloudflare CDN may experience issues beginning June 6th. Please upgrade to W3 Total Cache 0.9.7.5 for the latest Cloudflare patches.

    ", "0.9.2.10": "

    This release includes performance improvements for every type of caching and numerous bug fixes and stability / compatbility improvements. Make sure to keep W3TC updated to ensure optimal reliability and security.

    ", "0.9.2.11": "

    This release includes various fixes for MaxCDN and minify users. As always there are general stability / compatibility improvements. Make sure to test in a sandbox or staging environment and report any issues via the bug submission form available on the support tab of the plugin.

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fc7b-73c4-b6f7-60cfe04286dc", "name": "W3 Total Cache", "slug": "w3-total-cache", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1760977740, "version": "2.8.14"}, "support_threads": 25, "requires_plugins": [], "short_description": "Search Engine (SEO) & Performance Optimization (WPO) via caching. Integrated caching: CDN, Page, Minify, Object, Fragment, Database support.", "author_block_count": "1", "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 19}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1e7e-71e5-8917-849abc30a056', 'did:web:api.aspiredev.org:packages:wp-plugin:woocommerce', 'woocommerce', 'WooCommerce', '

    WooCommerce is the open-source ecommerce platform for WordPress.

    -

    Our core platform is free, flexible, and amplified by a global community. The freedom of open-source means you retain full ownership of your store’s content and data forever.

    -

    Whether you’re launching a business, taking brick-and-mortar retail online, or developing sites for clients, use WooCommerce for a store that powerfully blends content and commerce.

    - -

    ALL THE TOOLS YOU NEED TO SELL

    -

    Built-in tools and popular integrations help you efficiently manage your business operations. Many services are free to add with a single click via the optional Setup Wizard.

    -
      -
    • Choose how you want to get paid. Conveniently manage payments from the comfort of your store with WooPayments (Available in the U.S., U.K., Ireland, Australia, New Zealand, Canada, Spain, France, Germany, and Italy). Securely accept credit cards, mobile wallets, bank transfers, and cash thanks to 100+ payment gateways – including Stripe, PayPal, and Square.
    • -
    • Configure your shipping options. Print USPS labels right from your dashboard and even schedule a pickup with WooCommerce Shipping (U.S.-only). Connect with well-known carriers such as UPS and FedEx – plus a wide variety of delivery, inventory, and fulfillment solutions for your locale.
    • -
    • Simplify sales tax. Add WooCommerce Tax or similar integrated services to make automated calculations a reality.
    • -
    -

    Grow your business, add features, and monitor your store on the go

    -

    WooCommerce means business. Keep tabs on the performance metrics most important to you with a powerful and flexible central dashboard built into WooCommerce.

    -

    Expand your audience across marketing and social channels with Google Ads, HubSpot, Mailchimp, and Facebook integrations. You can always check out the in-dashboard Marketing Hub for fresh ideas and tips to help you succeed.

    -

    Enhance store functionality with hundreds of free and paid extensions from the WooCommerce Marketplace. Our developers vet each new extension and regularly review existing extensions to maintain Marketplace quality standards. We are actively looking for products that help store builders create successful stores.

    -

    Manage your store from anywhere with the free WooCommerce mobile app (Android and iOS). Spoiler alert: Keep an ear out for the slightly addictive “cha-ching” notification sound each time you make a new sale!

    -

    Own and control your store data – forever

    -

    With WooCommerce, your data belongs to you. Always.

    -

    If you opt to share usage data with us, you can feel confident knowing that it’s anonymized and kept secure. Choose to opt-out at any time without impacting your store.

    -

    Unlike hosted ecommerce solutions, WooCommerce store data is future-proof; you’re free to export all your content and take your site to any platform you choose. No restrictions.

    -

    Why developers choose (and love) WooCommerce

    -

    Developers can use WooCommerce to create, customize, and scale a store to meet a client’s exact specifications, making enhancements through extensions or custom solutions.

    -
      -
    • Leverage hooks and filters to modify or create functionality.
    • -
    • Integrate virtually any service using a robust REST API and webhooks.
    • -
    • Design and build custom content blocks with React.
    • -
    • Inspect and modify any aspect of the core plugin code.
    • -
    • Speed up development with a lightning-fast CLI.
    • -
    -

    The core platform is tested rigorously and often, supported by a dedicated development team working across time zones. Comprehensive documentation is updated with each release, empowering you to build exactly the store required.

    -

    Be part of our growing international community

    -

    WooCommerce has a large, passionate community dedicated to helping merchants succeed – and it’s growing fast.

    -

    There are WooCommerce Meetups in locations around the world that you can attend for free and even get involved in running. These events are a great way to learn from others, share your expertise, and connect with like-minded folks.

    -

    WooCommerce also has a regular presence at WordCamps across the globe – we’d love to meet you.

    -

    Contribute and translate

    -

    WooCommerce is developed and supported by Automattic, the creators of WordPress.com and Jetpack. We also have hundreds of independent contributors, and there’s always room for more. Head to the WooCommerce GitHub Repository to find out how you can pitch in.

    -

    WooCommerce is translated into multiple languages, including Danish, Ukrainian, and Persian. Help localize WooCommerce even further by adding your locale – visit translate.wordpress.org.

    -

    Connection to WooCommerce.com

    -

    You can connect your store to WooCommerce.com to manage your subscriptions on WooCommerce Marketplace and receive product updates without leaving WordPress admin. Connection also enables installation of purchased products right from WooCommerce.com and streamlines access to technical support. If you’d like to learn about what data is gathered and how it is used, please refer to our Privacy Policy.

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "WooCommerce", "slug": "woocommerce", "tags": {"shop": "shop", "ecommerce": "ecommerce", "sell-online": "sell online", "online-store": "online store", "shopping-cart": "shopping cart"}, "added": "2011-09-27", "icons": {"1x": "https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504", "svg": "https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504"}, "author": "Automattic", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504", "high": "https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504"}, "ratings": {"1": 405, "2": 109, "3": 104, "4": 189, "5": 3836}, "version": "10.3.3", "homepage": "https://woocommerce.com/", "requires": "6.7", "sections": {"faq": "\n
    \nWhere can I find WooCommerce documentation and user guides?\n\n

    \n

    For help setting up and configuring WooCommerce, please refer to Getting Started and the New WooCommerce Store Owner Guide.

    \n

    For extending or theming WooCommerce, see our documentation, as well as the Plugin Developer Best Practices.

    \n

    \n
    \nWhere can I get help or talk to other users about WooCommerce Core?\n\n

    \n

    If you get stuck, you can ask for help in the WooCommerce Support Forum by following these guidelines, reach out via the WooCommerce Community Slack, or post in the WooCommerce Community group on Facebook.

    \n

    \n
    \nWhere can I get help for extensions I have purchased from the WooCommerce Marketplace?\n\n

    \n

    For assistance with paid extensions from the WooCommerce Marketplace: first, review our self-service troubleshooting guide. If the problem persists, kindly log a support ticket via our helpdesk. Our dedicated Happiness Engineers aim to respond within 24 hours.

    \n

    \n
    \nI’m having trouble logging in to WooCommerce.com – what now?\n\n

    \n

    First, troubleshoot common login issues using this helpful step-by-step guide. Still not working? Get in touch with us.

    \n

    \n
    \nWill WooCommerce work with my theme?\n\n

    \n

    Yes! WooCommerce will work with any theme but may require some additional styling. If you’re looking for a theme featuring deep WooCommerce integration, we recommend Storefront.

    \n

    \n
    \nHow do I update WooCommerce?\n\n

    \n

    We have a detailed guide on How To Update WooCommerce.

    \n

    \n
    \nMy site broke – what do I do?\n\n

    \n

    Start by diagnosing the issue using our helpful troubleshooting guide.

    \n

    If you noticed the error after updating a theme or plugin, there might be compatibility issues between it and WooCommerce. If the issue appeared after updating WooCommerce, there could be a conflict between WooCommerce and an outdated theme or plugin.

    \n

    In both instances, we recommend running a conflict test using Health Check (which allows you to disable themes and plugins without affecting your visitors) or troubleshooting the issue using a staging site.

    \n

    \n
    \nWhere can I report bugs?\n\n

    \n

    Report bugs on the WooCommerce GitHub repository. You can also notify us via our support forum – be sure to search the forums to confirm that the error has not already been reported.

    \n

    \n
    \nWhere can I request new features, themes, and extensions?\n\n

    \n

    Request new features and extensions and vote on existing suggestions on our official feature request board. Our Product teams regularly review requests and consider them valuable for product planning.

    \n

    \n
    \nWooCommerce is awesome! Can I contribute?\n\n

    \n

    Yes, you can! Join in on our GitHub repository and follow the development blog to stay up-to-date with everything happening in the project.

    \n

    \n
    \nWhere can I find REST API documentation?\n\n

    \n

    Extensive WooCommerce REST API Documentation is available on GitHub.

    \n

    \n
    \nMy question is not listed here. Where can I find more answers?\n\n

    \n

    Check out Frequently Asked Questions for more.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Annoying without support: Use something else

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jeremywendell on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    With every woo update there''s new hassle and annoyance. Support doesn''t help but only tries to sell high-priced consultants. If you''re looking for either a stable ecommerce plugin, or one with support, i''d recommend not making the same mistake i did. Wordpress/woocommerce is not at all appropriate for a small ecommerce business.

    \n\n\n\n

    So today I discover woo has removed my ability to add/remove product pictures or edit SEO content etc. WTF?!!:

    \n\n\n\n

    \"In WooCommerce 10+, Automattic replaced the long-standing classic product editor with their new block-based “product editing experience.”
    That new interface is still incomplete — it doesn’t yet expose many essential controls site owners actually use every day, such as:

    \n\n\n\n
      \n
    • ✅ Product gallery management (multiple images)
    • \n\n\n\n
    • ✅ Product meta boxes (for SEO, custom fields, shipping classes, etc.)
    • \n\n\n\n
    • ✅ Integration points for plugins like Elementor, Yoast, Rank Math, ACF, etc.
    • \n
    \n\n\n\n

    Those pieces simply don’t appear unless plugin developers have explicitly rebuilt their integrations for the block editor.

    \n\n\n\n

    So yes — when WooCommerce silently switched everyone over, it effectively hid normal tools like “Product Image” and “Product Gallery.” That’s why it feels like those features just vanished.\"

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Working frontoffice fine, BUT backofice is incredible slow

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gletcher on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Order handling is really a drag, its so slow

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works fine

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy derubeistahoe on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works fine

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Best Support I’ve Ever Experienced!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy negotiatoruk on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve worked with many platforms over the years, but the WooCommerce support team truly stands out. Their response time is incredibly fast, and every interaction feels professional, knowledgeable, and genuinely helpful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jeiriart on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The support team responded quickly. Thank you very much.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fiona92 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The support was excellent — efficient, friendly, and truly went above and beyond. The issue I experienced wasn’t even related to their plugin, yet they still took the time to help me identify the problem, which turned out to be caused by another plugin. Exceptional service and support! Highly recommended.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    needs improvement

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dinos24 on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    pretty good for a free app. needs improvement in speed and appearance. very difficult menu, non-existent PLUGINS. menu in more languages

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    this is best ever

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy oocher on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this is best plugin ever. wonderful features. its obvious that it has some issues but who don''t?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Quick and helpful support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy breadf on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks for quick and helpful response.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent and patient support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy svitlana288 on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great support!
    They were patient, professional, and helped me identify the issue with my checkout page.
    Thank you for your clear and kind assistance! 🙏
    — Svitlana

    \n
    \n
    \n", "changelog": "

    10.3.3 2025-10-24

    \n

    WooCommerce

    \n
      \n
    • Dev – Add in deprecated script warnings and backwards compatibility for 3PDs #61599
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    WooCommerce is the open-source ecommerce platform for WordPress.

    \n

    Our core platform is free, flexible, and amplified by a global community. The freedom of open-source means you retain full ownership of your store’s content and data forever.

    \n

    Whether you’re launching a business, taking brick-and-mortar retail online, or developing sites for clients, use WooCommerce for a store that powerfully blends content and commerce.

    \n\n

    ALL THE TOOLS YOU NEED TO SELL

    \n

    Built-in tools and popular integrations help you efficiently manage your business operations. Many services are free to add with a single click via the optional Setup Wizard.

    \n
      \n
    • Choose how you want to get paid. Conveniently manage payments from the comfort of your store with WooPayments (Available in the U.S., U.K., Ireland, Australia, New Zealand, Canada, Spain, France, Germany, and Italy). Securely accept credit cards, mobile wallets, bank transfers, and cash thanks to 100+ payment gateways – including Stripe, PayPal, and Square.
    • \n
    • Configure your shipping options. Print USPS labels right from your dashboard and even schedule a pickup with WooCommerce Shipping (U.S.-only). Connect with well-known carriers such as UPS and FedEx – plus a wide variety of delivery, inventory, and fulfillment solutions for your locale.
    • \n
    • Simplify sales tax. Add WooCommerce Tax or similar integrated services to make automated calculations a reality.
    • \n
    \n

    Grow your business, add features, and monitor your store on the go

    \n

    WooCommerce means business. Keep tabs on the performance metrics most important to you with a powerful and flexible central dashboard built into WooCommerce.

    \n

    Expand your audience across marketing and social channels with Google Ads, HubSpot, Mailchimp, and Facebook integrations. You can always check out the in-dashboard Marketing Hub for fresh ideas and tips to help you succeed.

    \n

    Enhance store functionality with hundreds of free and paid extensions from the WooCommerce Marketplace. Our developers vet each new extension and regularly review existing extensions to maintain Marketplace quality standards. We are actively looking for products that help store builders create successful stores.

    \n

    Manage your store from anywhere with the free WooCommerce mobile app (Android and iOS). Spoiler alert: Keep an ear out for the slightly addictive “cha-ching” notification sound each time you make a new sale!

    \n

    Own and control your store data – forever

    \n

    With WooCommerce, your data belongs to you. Always.

    \n

    If you opt to share usage data with us, you can feel confident knowing that it’s anonymized and kept secure. Choose to opt-out at any time without impacting your store.

    \n

    Unlike hosted ecommerce solutions, WooCommerce store data is future-proof; you’re free to export all your content and take your site to any platform you choose. No restrictions.

    \n

    Why developers choose (and love) WooCommerce

    \n

    Developers can use WooCommerce to create, customize, and scale a store to meet a client’s exact specifications, making enhancements through extensions or custom solutions.

    \n
      \n
    • Leverage hooks and filters to modify or create functionality.
    • \n
    • Integrate virtually any service using a robust REST API and webhooks.
    • \n
    • Design and build custom content blocks with React.
    • \n
    • Inspect and modify any aspect of the core plugin code.
    • \n
    • Speed up development with a lightning-fast CLI.
    • \n
    \n

    The core platform is tested rigorously and often, supported by a dedicated development team working across time zones. Comprehensive documentation is updated with each release, empowering you to build exactly the store required.

    \n

    Be part of our growing international community

    \n

    WooCommerce has a large, passionate community dedicated to helping merchants succeed – and it’s growing fast.

    \n

    There are WooCommerce Meetups in locations around the world that you can attend for free and even get involved in running. These events are a great way to learn from others, share your expertise, and connect with like-minded folks.

    \n

    WooCommerce also has a regular presence at WordCamps across the globe – we’d love to meet you.

    \n

    Contribute and translate

    \n

    WooCommerce is developed and supported by Automattic, the creators of WordPress.com and Jetpack. We also have hundreds of independent contributors, and there’s always room for more. Head to the WooCommerce GitHub Repository to find out how you can pitch in.

    \n

    WooCommerce is translated into multiple languages, including Danish, Ukrainian, and Persian. Help localize WooCommerce even further by adding your locale – visit translate.wordpress.org.

    \n

    Connection to WooCommerce.com

    \n

    You can connect your store to WooCommerce.com to manage your subscriptions on WooCommerce Marketplace and receive product updates without leaving WordPress admin. Connection also enables installation of purchased products right from WooCommerce.com and streamlines access to technical support. If you’d like to learn about what data is gathered and how it is used, please refer to our Privacy Policy.

    \n", "screenshots": "
    1. \"\"
    2. \"\"
    3. \"\"
    4. \"\"
    5. \"\"
    6. \"\"
    ", "installation": "

    Minimum Requirements

    \n
      \n
    • PHP 7.4 or greater is required (PHP 8.0 or greater is recommended)
    • \n
    • MySQL 5.5.5 or greater, OR MariaDB version 10.1 or greater, is required
    • \n
    • WordPress 6.7 or greater
    • \n
    • (Recommended) WordPress memory limit of 256 MB or greater.
    • \n
    • (Recommended) HTTPS support.
    • \n
    \n

    Automatic installation

    \n

    Automatic installation is the easiest option — WordPress will handle the file transfer, and you won’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu, and click “Add New.”

    \n

    In the search field type “WooCommerce,” then click “Search Plugins.” Once you’ve found us, you can view details about it such as the point release, rating, and description. Most importantly of course, you can install it by! Click “Install Now,” and WordPress will take it from there.

    \n

    Manual installation

    \n

    Manual installation method requires downloading the WooCommerce plugin and uploading it to your web server via your favorite FTP application. The WordPress codex contains instructions on how to do this here.

    \n

    Updating

    \n

    Automatic updates should work smoothly, but we still recommend you back up your site.

    \n

    If you encounter issues with the shop/category pages after an update, flush the permalinks by going to WordPress > Settings > Permalinks and hitting “Save.” That should return things to normal.

    \n

    Sample data

    \n

    WooCommerce comes with some sample data you can use to see how products look; import sample_products.xml via the WordPress importer. You can also use the core CSV importer or our CSV Import Suite extension to import sample_products.csv

    \n"}, "versions": {"3.0.0": "https://downloads.wordpress.org/plugin/woocommerce.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/woocommerce.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/woocommerce.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/woocommerce.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/woocommerce.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/woocommerce.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/woocommerce.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/woocommerce.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/woocommerce.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/woocommerce.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/woocommerce.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/woocommerce.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/woocommerce.3.1.2.zip", "3.2.0": "https://downloads.wordpress.org/plugin/woocommerce.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/woocommerce.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/woocommerce.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/woocommerce.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/woocommerce.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/woocommerce.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/woocommerce.3.2.6.zip", "3.3.0": "https://downloads.wordpress.org/plugin/woocommerce.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/woocommerce.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/woocommerce.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/woocommerce.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/woocommerce.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/woocommerce.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/woocommerce.3.3.6.zip", "3.4.0": "https://downloads.wordpress.org/plugin/woocommerce.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/woocommerce.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/woocommerce.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/woocommerce.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/woocommerce.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/woocommerce.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/plugin/woocommerce.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/plugin/woocommerce.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/plugin/woocommerce.3.4.8.zip", "3.5.0": "https://downloads.wordpress.org/plugin/woocommerce.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/woocommerce.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/woocommerce.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/woocommerce.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/woocommerce.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/woocommerce.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/woocommerce.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/plugin/woocommerce.3.5.7.zip", "3.5.8": "https://downloads.wordpress.org/plugin/woocommerce.3.5.8.zip", "3.5.9": "https://downloads.wordpress.org/plugin/woocommerce.3.5.9.zip", "3.6.0": "https://downloads.wordpress.org/plugin/woocommerce.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/woocommerce.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/woocommerce.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/woocommerce.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/woocommerce.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/woocommerce.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/woocommerce.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/woocommerce.3.6.7.zip", "3.7.0": "https://downloads.wordpress.org/plugin/woocommerce.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/woocommerce.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/woocommerce.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/woocommerce.3.7.3.zip", "3.8.0": "https://downloads.wordpress.org/plugin/woocommerce.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/woocommerce.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/woocommerce.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/woocommerce.3.8.3.zip", "3.9.0": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/woocommerce.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/woocommerce.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/woocommerce.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/plugin/woocommerce.3.9.4.zip", "3.9.5": "https://downloads.wordpress.org/plugin/woocommerce.3.9.5.zip", "4.0.0": "https://downloads.wordpress.org/plugin/woocommerce.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/woocommerce.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/woocommerce.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/woocommerce.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/woocommerce.4.0.4.zip", "4.1.0": "https://downloads.wordpress.org/plugin/woocommerce.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/woocommerce.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/woocommerce.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/woocommerce.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/woocommerce.4.1.4.zip", "4.2.0": "https://downloads.wordpress.org/plugin/woocommerce.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/woocommerce.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/woocommerce.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/woocommerce.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/woocommerce.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/woocommerce.4.2.5.zip", "4.3.0": "https://downloads.wordpress.org/plugin/woocommerce.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/woocommerce.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/woocommerce.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/woocommerce.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/plugin/woocommerce.4.3.4.zip", "4.3.5": "https://downloads.wordpress.org/plugin/woocommerce.4.3.5.zip", "4.3.6": "https://downloads.wordpress.org/plugin/woocommerce.4.3.6.zip", "4.4.0": "https://downloads.wordpress.org/plugin/woocommerce.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/woocommerce.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/woocommerce.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/plugin/woocommerce.4.4.3.zip", "4.4.4": "https://downloads.wordpress.org/plugin/woocommerce.4.4.4.zip", "4.5.0": "https://downloads.wordpress.org/plugin/woocommerce.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/woocommerce.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/woocommerce.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/woocommerce.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/woocommerce.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/woocommerce.4.5.5.zip", "4.6.0": "https://downloads.wordpress.org/plugin/woocommerce.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/woocommerce.4.6.1.zip", "4.6.2": "https://downloads.wordpress.org/plugin/woocommerce.4.6.2.zip", "4.6.3": "https://downloads.wordpress.org/plugin/woocommerce.4.6.3.zip", "4.6.4": "https://downloads.wordpress.org/plugin/woocommerce.4.6.4.zip", "4.6.5": "https://downloads.wordpress.org/plugin/woocommerce.4.6.5.zip", "4.7.0": "https://downloads.wordpress.org/plugin/woocommerce.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/plugin/woocommerce.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/woocommerce.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/plugin/woocommerce.4.7.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/woocommerce.4.7.4.zip", "4.8.0": "https://downloads.wordpress.org/plugin/woocommerce.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/woocommerce.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/woocommerce.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/plugin/woocommerce.4.8.3.zip", "4.9.0": "https://downloads.wordpress.org/plugin/woocommerce.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/woocommerce.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/woocommerce.4.9.2.zip", "4.9.3": "https://downloads.wordpress.org/plugin/woocommerce.4.9.3.zip", "4.9.4": "https://downloads.wordpress.org/plugin/woocommerce.4.9.4.zip", "4.9.5": "https://downloads.wordpress.org/plugin/woocommerce.4.9.5.zip", "5.0.0": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/woocommerce.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/woocommerce.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/woocommerce.5.0.3.zip", "5.1.0": "https://downloads.wordpress.org/plugin/woocommerce.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/woocommerce.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/woocommerce.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/woocommerce.5.1.3.zip", "5.2.0": "https://downloads.wordpress.org/plugin/woocommerce.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/woocommerce.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/woocommerce.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/woocommerce.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/woocommerce.5.2.4.zip", "5.2.5": "https://downloads.wordpress.org/plugin/woocommerce.5.2.5.zip", "5.3.0": "https://downloads.wordpress.org/plugin/woocommerce.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/woocommerce.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/woocommerce.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/woocommerce.5.3.3.zip", "5.4.0": "https://downloads.wordpress.org/plugin/woocommerce.5.4.0.zip", "5.4.1": "https://downloads.wordpress.org/plugin/woocommerce.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/woocommerce.5.4.2.zip", "5.4.3": "https://downloads.wordpress.org/plugin/woocommerce.5.4.3.zip", "5.4.4": "https://downloads.wordpress.org/plugin/woocommerce.5.4.4.zip", "5.5.0": "https://downloads.wordpress.org/plugin/woocommerce.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/woocommerce.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/woocommerce.5.5.2.zip", "5.5.3": "https://downloads.wordpress.org/plugin/woocommerce.5.5.3.zip", "5.5.4": "https://downloads.wordpress.org/plugin/woocommerce.5.5.4.zip", "5.6.0": "https://downloads.wordpress.org/plugin/woocommerce.5.6.0.zip", "5.6.1": "https://downloads.wordpress.org/plugin/woocommerce.5.6.1.zip", "5.6.2": "https://downloads.wordpress.org/plugin/woocommerce.5.6.2.zip", "5.7.0": "https://downloads.wordpress.org/plugin/woocommerce.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/woocommerce.5.7.1.zip", "5.7.2": "https://downloads.wordpress.org/plugin/woocommerce.5.7.2.zip", "5.8.0": "https://downloads.wordpress.org/plugin/woocommerce.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/woocommerce.5.8.1.zip", "5.9.0": "https://downloads.wordpress.org/plugin/woocommerce.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/woocommerce.5.9.1.zip", "6.0.0": "https://downloads.wordpress.org/plugin/woocommerce.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/woocommerce.6.0.1.zip", "6.1.0": "https://downloads.wordpress.org/plugin/woocommerce.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/woocommerce.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/woocommerce.6.1.2.zip", "6.2.0": "https://downloads.wordpress.org/plugin/woocommerce.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/woocommerce.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/woocommerce.6.2.2.zip", "6.3.0": "https://downloads.wordpress.org/plugin/woocommerce.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/woocommerce.6.3.1.zip", "6.4.0": "https://downloads.wordpress.org/plugin/woocommerce.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/plugin/woocommerce.6.4.1.zip", "6.5.0": "https://downloads.wordpress.org/plugin/woocommerce.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/woocommerce.6.5.1.zip", "6.6.0": "https://downloads.wordpress.org/plugin/woocommerce.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/woocommerce.6.6.1.zip", "6.7.0": "https://downloads.wordpress.org/plugin/woocommerce.6.7.0.zip", "6.8.0": "https://downloads.wordpress.org/plugin/woocommerce.6.8.0.zip", "6.8.1": "https://downloads.wordpress.org/plugin/woocommerce.6.8.1.zip", "6.8.2": "https://downloads.wordpress.org/plugin/woocommerce.6.8.2.zip", "6.9.0": "https://downloads.wordpress.org/plugin/woocommerce.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/woocommerce.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/woocommerce.6.9.2.zip", "6.9.3": "https://downloads.wordpress.org/plugin/woocommerce.6.9.3.zip", "6.9.4": "https://downloads.wordpress.org/plugin/woocommerce.6.9.4.zip", "7.0.0": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0.zip", "7.0.1": "https://downloads.wordpress.org/plugin/woocommerce.7.0.1.zip", "7.1.0": "https://downloads.wordpress.org/plugin/woocommerce.7.1.0.zip", "7.1.1": "https://downloads.wordpress.org/plugin/woocommerce.7.1.1.zip", "7.2.0": "https://downloads.wordpress.org/plugin/woocommerce.7.2.0.zip", "7.2.1": "https://downloads.wordpress.org/plugin/woocommerce.7.2.1.zip", "7.2.2": "https://downloads.wordpress.org/plugin/woocommerce.7.2.2.zip", "7.2.3": "https://downloads.wordpress.org/plugin/woocommerce.7.2.3.zip", "7.3.0": "https://downloads.wordpress.org/plugin/woocommerce.7.3.0.zip", "7.4.0": "https://downloads.wordpress.org/plugin/woocommerce.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/woocommerce.7.4.1.zip", "7.5.0": "https://downloads.wordpress.org/plugin/woocommerce.7.5.0.zip", "7.5.1": "https://downloads.wordpress.org/plugin/woocommerce.7.5.1.zip", "7.6.0": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0.zip", "7.6.1": "https://downloads.wordpress.org/plugin/woocommerce.7.6.1.zip", "7.7.0": "https://downloads.wordpress.org/plugin/woocommerce.7.7.0.zip", "7.7.1": "https://downloads.wordpress.org/plugin/woocommerce.7.7.1.zip", "7.7.2": "https://downloads.wordpress.org/plugin/woocommerce.7.7.2.zip", "7.8.0": "https://downloads.wordpress.org/plugin/woocommerce.7.8.0.zip", "7.8.1": "https://downloads.wordpress.org/plugin/woocommerce.7.8.1.zip", "7.8.2": "https://downloads.wordpress.org/plugin/woocommerce.7.8.2.zip", "7.8.3": "https://downloads.wordpress.org/plugin/woocommerce.7.8.3.zip", "7.9.0": "https://downloads.wordpress.org/plugin/woocommerce.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/woocommerce.7.9.1.zip", "8.0.0": "https://downloads.wordpress.org/plugin/woocommerce.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/plugin/woocommerce.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/plugin/woocommerce.8.0.2.zip", "8.0.3": "https://downloads.wordpress.org/plugin/woocommerce.8.0.3.zip", "8.0.4": "https://downloads.wordpress.org/plugin/woocommerce.8.0.4.zip", "8.1.0": "https://downloads.wordpress.org/plugin/woocommerce.8.1.0.zip", "8.1.1": "https://downloads.wordpress.org/plugin/woocommerce.8.1.1.zip", "8.1.2": "https://downloads.wordpress.org/plugin/woocommerce.8.1.2.zip", "8.2.0": "https://downloads.wordpress.org/plugin/woocommerce.8.2.0.zip", "8.2.1": "https://downloads.wordpress.org/plugin/woocommerce.8.2.1.zip", "8.2.2": "https://downloads.wordpress.org/plugin/woocommerce.8.2.2.zip", "8.2.3": "https://downloads.wordpress.org/plugin/woocommerce.8.2.3.zip", "8.3.0": "https://downloads.wordpress.org/plugin/woocommerce.8.3.0.zip", "8.3.1": "https://downloads.wordpress.org/plugin/woocommerce.8.3.1.zip", "8.3.2": "https://downloads.wordpress.org/plugin/woocommerce.8.3.2.zip", "8.4.0": "https://downloads.wordpress.org/plugin/woocommerce.8.4.0.zip", "8.4.1": "https://downloads.wordpress.org/plugin/woocommerce.8.4.1.zip", "8.5.0": "https://downloads.wordpress.org/plugin/woocommerce.8.5.0.zip", "8.5.1": "https://downloads.wordpress.org/plugin/woocommerce.8.5.1.zip", "8.5.2": "https://downloads.wordpress.org/plugin/woocommerce.8.5.2.zip", "8.5.3": "https://downloads.wordpress.org/plugin/woocommerce.8.5.3.zip", "8.6.0": "https://downloads.wordpress.org/plugin/woocommerce.8.6.0.zip", "8.6.1": "https://downloads.wordpress.org/plugin/woocommerce.8.6.1.zip", "8.6.2": "https://downloads.wordpress.org/plugin/woocommerce.8.6.2.zip", "8.7.0": "https://downloads.wordpress.org/plugin/woocommerce.8.7.0.zip", "8.7.1": "https://downloads.wordpress.org/plugin/woocommerce.8.7.1.zip", "8.8.0": "https://downloads.wordpress.org/plugin/woocommerce.8.8.0.zip", "8.8.1": "https://downloads.wordpress.org/plugin/woocommerce.8.8.1.zip", "8.8.2": "https://downloads.wordpress.org/plugin/woocommerce.8.8.2.zip", "8.8.3": "https://downloads.wordpress.org/plugin/woocommerce.8.8.3.zip", "8.8.4": "https://downloads.wordpress.org/plugin/woocommerce.8.8.4.zip", "8.8.5": "https://downloads.wordpress.org/plugin/woocommerce.8.8.5.zip", "8.9.0": "https://downloads.wordpress.org/plugin/woocommerce.8.9.0.zip", "8.9.1": "https://downloads.wordpress.org/plugin/woocommerce.8.9.1.zip", "8.9.2": "https://downloads.wordpress.org/plugin/woocommerce.8.9.2.zip", "8.9.3": "https://downloads.wordpress.org/plugin/woocommerce.8.9.3.zip", "9.0.0": "https://downloads.wordpress.org/plugin/woocommerce.9.0.0.zip", "9.0.1": "https://downloads.wordpress.org/plugin/woocommerce.9.0.1.zip", "9.0.2": "https://downloads.wordpress.org/plugin/woocommerce.9.0.2.zip", "9.1.0": "https://downloads.wordpress.org/plugin/woocommerce.9.1.0.zip", "9.1.1": "https://downloads.wordpress.org/plugin/woocommerce.9.1.1.zip", "9.1.2": "https://downloads.wordpress.org/plugin/woocommerce.9.1.2.zip", "9.1.3": "https://downloads.wordpress.org/plugin/woocommerce.9.1.3.zip", "9.1.4": "https://downloads.wordpress.org/plugin/woocommerce.9.1.4.zip", "9.2.0": "https://downloads.wordpress.org/plugin/woocommerce.9.2.0.zip", "9.2.1": "https://downloads.wordpress.org/plugin/woocommerce.9.2.1.zip", "9.2.2": "https://downloads.wordpress.org/plugin/woocommerce.9.2.2.zip", "9.2.3": "https://downloads.wordpress.org/plugin/woocommerce.9.2.3.zip", "9.3.0": "https://downloads.wordpress.org/plugin/woocommerce.9.3.0.zip", "9.3.1": "https://downloads.wordpress.org/plugin/woocommerce.9.3.1.zip", "9.3.2": "https://downloads.wordpress.org/plugin/woocommerce.9.3.2.zip", "9.3.3": "https://downloads.wordpress.org/plugin/woocommerce.9.3.3.zip", "9.3.4": "https://downloads.wordpress.org/plugin/woocommerce.9.3.4.zip", "9.4.0": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0.zip", "9.4.1": "https://downloads.wordpress.org/plugin/woocommerce.9.4.1.zip", "9.4.2": "https://downloads.wordpress.org/plugin/woocommerce.9.4.2.zip", "9.4.3": "https://downloads.wordpress.org/plugin/woocommerce.9.4.3.zip", "9.5.0": "https://downloads.wordpress.org/plugin/woocommerce.9.5.0.zip", "9.5.1": "https://downloads.wordpress.org/plugin/woocommerce.9.5.1.zip", "9.5.2": "https://downloads.wordpress.org/plugin/woocommerce.9.5.2.zip", "9.6.0": "https://downloads.wordpress.org/plugin/woocommerce.9.6.0.zip", "9.6.1": "https://downloads.wordpress.org/plugin/woocommerce.9.6.1.zip", "9.6.2": "https://downloads.wordpress.org/plugin/woocommerce.9.6.2.zip", "9.7.0": "https://downloads.wordpress.org/plugin/woocommerce.9.7.0.zip", "9.7.1": "https://downloads.wordpress.org/plugin/woocommerce.9.7.1.zip", "9.8.0": "https://downloads.wordpress.org/plugin/woocommerce.9.8.0.zip", "9.8.1": "https://downloads.wordpress.org/plugin/woocommerce.9.8.1.zip", "9.8.2": "https://downloads.wordpress.org/plugin/woocommerce.9.8.2.zip", "9.8.3": "https://downloads.wordpress.org/plugin/woocommerce.9.8.3.zip", "9.8.4": "https://downloads.wordpress.org/plugin/woocommerce.9.8.4.zip", "9.8.5": "https://downloads.wordpress.org/plugin/woocommerce.9.8.5.zip", "9.9.0": "https://downloads.wordpress.org/plugin/woocommerce.9.9.0.zip", "9.9.1": "https://downloads.wordpress.org/plugin/woocommerce.9.9.1.zip", "9.9.2": "https://downloads.wordpress.org/plugin/woocommerce.9.9.2.zip", "9.9.3": "https://downloads.wordpress.org/plugin/woocommerce.9.9.3.zip", "9.9.4": "https://downloads.wordpress.org/plugin/woocommerce.9.9.4.zip", "9.9.5": "https://downloads.wordpress.org/plugin/woocommerce.9.9.5.zip", "trunk": "https://downloads.wordpress.org/plugin/woocommerce.zip", "10.0.0": "https://downloads.wordpress.org/plugin/woocommerce.10.0.0.zip", "10.0.1": "https://downloads.wordpress.org/plugin/woocommerce.10.0.1.zip", "10.0.2": "https://downloads.wordpress.org/plugin/woocommerce.10.0.2.zip", "10.0.3": "https://downloads.wordpress.org/plugin/woocommerce.10.0.3.zip", "10.0.4": "https://downloads.wordpress.org/plugin/woocommerce.10.0.4.zip", "10.1.0": "https://downloads.wordpress.org/plugin/woocommerce.10.1.0.zip", "10.1.1": "https://downloads.wordpress.org/plugin/woocommerce.10.1.1.zip", "10.1.2": "https://downloads.wordpress.org/plugin/woocommerce.10.1.2.zip", "10.2.0": "https://downloads.wordpress.org/plugin/woocommerce.10.2.0.zip", "10.2.1": "https://downloads.wordpress.org/plugin/woocommerce.10.2.1.zip", "10.2.2": "https://downloads.wordpress.org/plugin/woocommerce.10.2.2.zip", "10.3.0": "https://downloads.wordpress.org/plugin/woocommerce.10.3.0.zip", "10.3.1": "https://downloads.wordpress.org/plugin/woocommerce.10.3.1.zip", "10.3.2": "https://downloads.wordpress.org/plugin/woocommerce.10.3.2.zip", "10.3.3": "https://downloads.wordpress.org/plugin/woocommerce.10.3.3.zip", "3.5.10": "https://downloads.wordpress.org/plugin/woocommerce.3.5.10.zip", "3.3.2-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.3.2-rc.1.zip", "3.4.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.4.0-rc.2.zip", "3.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.1.zip", "3.5.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.2.zip", "3.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.1.zip", "3.6.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.2.zip", "3.6.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.3.zip", "3.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.1.zip", "3.7.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.2.zip", "3.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.1.zip", "3.8.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.2.zip", "3.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.1.zip", "3.9.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.2.zip", "3.9.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.3.zip", "3.9.0-rc.4": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.4.zip", "4.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.1.zip", "4.0.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.2.zip", "4.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.1.zip", "4.1.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.2.zip", "4.2.0-RC.1": "https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.1.zip", "4.2.0-RC.2": "https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.2.zip", "4.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.1.zip", "4.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.2.zip", "4.3.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.3.zip", "4.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.4.0-rc.1.zip", "4.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.1.zip", "4.5.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.3.zip", "4.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.6.0-rc.1.zip", "4.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.7.0-rc.1.zip", "4.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.1.zip", "4.8.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.2.zip", "4.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.1.zip", "4.9.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.2.zip", "5.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.1.zip", "5.0.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.2.zip", "5.0.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.3.zip", "5.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.1.0-rc.1.zip", "5.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.1.zip", "5.2.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.2.zip", "5.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.1.zip", "5.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.2.zip", "5.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.4.0-rc.1.zip", "5.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.1.zip", "5.5.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.2.zip", "5.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.1.zip", "5.6.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.2.zip", "5.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.7.0-rc.1.zip", "5.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.8.0-rc.1.zip", "5.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.1.zip", "5.9.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.2.zip", "6.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.0.0-rc.1.zip", "6.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.1.zip", "6.1.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.2.zip", "6.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.1.zip", "6.2.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.2.zip", "6.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.3.0-rc.1.zip", "6.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.6.3.0-rc.2.zip", "6.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.4.0-rc.1.zip", "6.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.5.0-rc.1.zip", "6.5.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.6.5.0-rc.2.zip", "6.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.6.0-rc.1.zip", "6.6.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.6.6.0-rc.2.zip", "6.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.7.0-rc.1.zip", "6.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.8.0-rc.1.zip", "6.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.9.0-rc.1.zip", "7.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0-rc.1.zip", "7.0.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0-rc.2.zip", "7.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.1.0-rc.1.zip", "7.1.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.1.0-rc.2.zip", "7.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.2.0-rc.1.zip", "7.2.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.2.0-rc.2.zip", "7.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.3.0-rc.1.zip", "7.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.3.0-rc.2.zip", "7.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.4.0-rc.1.zip", "7.4.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.4.0-rc.2.zip", "7.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.5.0-rc.1.zip", "7.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.1.zip", "7.6.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.2.zip", "7.6.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.3.zip", "7.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.7.0-rc.1.zip", "7.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.8.0-rc.1.zip", "7.8.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.8.0-rc.2.zip", "7.9.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.9.0-rc.2.zip", "7.9.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.7.9.0-rc.3.zip", "8.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.0.0-rc.1.zip", "8.0.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.8.0.0-rc.2.zip", "8.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.1.0-rc.1.zip", "8.1.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.8.1.0-rc.2.zip", "8.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.2.0-rc.1.zip", "8.2.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.8.2.0-rc.2.zip", "8.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.3.0-rc.1.zip", "8.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.8.3.0-rc.2.zip", "8.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.4.0-rc.1.zip", "8.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.5.0-rc.1.zip", "8.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.6.0-rc.1.zip", "8.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.7.0-rc.1.zip", "8.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.8.0-rc.1.zip", "8.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.9.0-rc.1.zip", "9.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.0.0-rc.1.zip", "9.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.1.0-rc.1.zip", "9.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.2.0-rc.1.zip", "9.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.3.0-rc.1.zip", "9.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.1.zip", "9.4.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.2.zip", "9.4.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.3.zip", "9.4.0-rc.4": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.4.zip", "9.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.5.0-rc.1.zip", "9.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.6.0-rc.1.zip", "9.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.7.0-rc.1.zip", "9.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.8.0-rc.1.zip", "9.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.9.0-rc.1.zip", "10.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.10.0.0-rc.1.zip", "10.0.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.10.0.0-rc.2.zip", "10.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.1.zip", "10.1.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.2.zip", "10.1.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.3.zip", "10.1.0-rc.4": "https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.4.zip", "10.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.10.2.0-rc.1.zip", "10.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.10.3.0-rc.1.zip", "10.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.10.3.0-rc.2.zip", "3.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.4.0-beta.1.zip", "3.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.5.0-beta.1.zip", "3.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.6.0-beta.1.zip", "3.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.7.0-beta.1.zip", "3.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.8.0-beta.1.zip", "3.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.1.zip", "3.9.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.2.zip", "4.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.0.0-beta.1.zip", "4.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.1.zip", "4.1.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.2.zip", "4.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.2.0-beta.1.zip", "4.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.3.0-beta.1.zip", "4.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.4.0-beta.1.zip", "4.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.5.0-beta.1.zip", "4.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.6.0-beta.1.zip", "4.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.1.zip", "4.7.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.2.zip", "4.7.1-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.7.1-beta.1.zip", "4.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.8.0-beta.1.zip", "4.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.9.0-beta.1.zip", "5.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.1.zip", "5.0.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.2.zip", "5.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.1.0-beta.1.zip", "5.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.2.0-beta.1.zip", "5.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.3.0-beta.1.zip", "5.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.4.0-beta.1.zip", "5.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.5.0-beta.1.zip", "5.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.6.0-beta.1.zip", "5.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.7.0-beta.1.zip", "5.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.1.zip", "5.8.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.2.zip", "5.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.9.0-beta.1.zip", "6.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.0.0-beta.1.zip", "6.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.1.0-beta.1.zip", "6.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.2.0-beta.1.zip", "6.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.3.0-beta.1.zip", "6.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.4.0-beta.1.zip", "6.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.5.0-beta.1.zip", "6.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.6.0-beta.1.zip", "6.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.7.0-beta.1.zip", "6.7.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.6.7.0-beta.2.zip", "6.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.8.0-beta.1.zip", "6.8.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.6.8.0-beta.2.zip", "6.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.9.0-beta.1.zip", "6.9.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.6.9.0-beta.2.zip", "7.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.1.zip", "7.0.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.2.zip", "7.0.0-beta.3": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.3.zip", "7.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.1.zip", "7.1.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.2.zip", "7.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.2.0-beta.1.zip", "7.2.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.2.0-beta.2.zip", "7.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.3.0-beta.1.zip", "7.3.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.3.0-beta.2.zip", "7.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.4.0-beta.1.zip", "7.4.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.4.0-beta.2.zip", "7.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.5.0-beta.1.zip", "7.5.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.5.0-beta.2.zip", "7.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0-beta.1.zip", "7.6.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0-beta.2.zip", "7.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.7.0-beta.1.zip", "7.7.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.7.0-beta.2.zip", "7.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.8.0-beta.1.zip", "7.8.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.8.0-beta.2.zip", "7.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.9.0-beta.1.zip", "7.9.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.9.0-beta.2.zip", "8.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.0.0-beta.1.zip", "8.0.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.8.0.0-beta.2.zip", "8.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.1.0-beta.1.zip", "8.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.2.0-beta.1.zip", "8.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.3.0-beta.1.zip", "8.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.4.0-beta.1.zip", "8.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.5.0-beta.1.zip", "8.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.6.0-beta.1.zip", "8.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.7.0-beta.1.zip", "8.7.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.8.7.0-beta.2.zip", "8.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.8.0-beta.1.zip", "8.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.9.0-beta.1.zip", "9.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.0.0-beta.1.zip", "9.0.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.9.0.0-beta.2.zip", "9.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.1.0-beta.1.zip", "9.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.2.0-beta.1.zip", "9.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.3.0-beta.1.zip", "9.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-beta.1.zip", "9.4.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-beta.2.zip", "9.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.5.0-beta.1.zip", "9.5.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.9.5.0-beta.2.zip", "9.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.6.0-beta.1.zip", "9.6.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.9.6.0-beta.2.zip", "9.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.7.0-beta.1.zip", "9.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.8.0-beta.1.zip", "9.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.9.0-beta.1.zip", "10.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.10.2.0-beta.1.zip", "10.2.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.10.2.0-beta.2.zip", "10.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.10.3.0-beta.1.zip", "10.3.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.10.3.0-beta.2.zip"}, "downloaded": 413365161, "description": "

    WooCommerce is the open-source ecommerce platform for WordPress.

    \n

    Our core platform is free, flexible, and amplified by a global community. The freedom of open-source means you retain full ownership of your store’s content and data forever.

    \n

    Whether you’re launching a business, taking brick-and-mortar retail online, or developing sites for clients, use WooCommerce for a store that powerfully blends content and commerce.

    \n\n

    ALL THE TOOLS YOU NEED TO SELL

    \n

    Built-in tools and popular integrations help you efficiently manage your business operations. Many services are free to add with a single click via the optional Setup Wizard.

    \n
      \n
    • Choose how you want to get paid. Conveniently manage payments from the comfort of your store with WooPayments (Available in the U.S., U.K., Ireland, Australia, New Zealand, Canada, Spain, France, Germany, and Italy). Securely accept credit cards, mobile wallets, bank transfers, and cash thanks to 100+ payment gateways – including Stripe, PayPal, and Square.
    • \n
    • Configure your shipping options. Print USPS labels right from your dashboard and even schedule a pickup with WooCommerce Shipping (U.S.-only). Connect with well-known carriers such as UPS and FedEx – plus a wide variety of delivery, inventory, and fulfillment solutions for your locale.
    • \n
    • Simplify sales tax. Add WooCommerce Tax or similar integrated services to make automated calculations a reality.
    • \n
    \n

    Grow your business, add features, and monitor your store on the go

    \n

    WooCommerce means business. Keep tabs on the performance metrics most important to you with a powerful and flexible central dashboard built into WooCommerce.

    \n

    Expand your audience across marketing and social channels with Google Ads, HubSpot, Mailchimp, and Facebook integrations. You can always check out the in-dashboard Marketing Hub for fresh ideas and tips to help you succeed.

    \n

    Enhance store functionality with hundreds of free and paid extensions from the WooCommerce Marketplace. Our developers vet each new extension and regularly review existing extensions to maintain Marketplace quality standards. We are actively looking for products that help store builders create successful stores.

    \n

    Manage your store from anywhere with the free WooCommerce mobile app (Android and iOS). Spoiler alert: Keep an ear out for the slightly addictive “cha-ching” notification sound each time you make a new sale!

    \n

    Own and control your store data – forever

    \n

    With WooCommerce, your data belongs to you. Always.

    \n

    If you opt to share usage data with us, you can feel confident knowing that it’s anonymized and kept secure. Choose to opt-out at any time without impacting your store.

    \n

    Unlike hosted ecommerce solutions, WooCommerce store data is future-proof; you’re free to export all your content and take your site to any platform you choose. No restrictions.

    \n

    Why developers choose (and love) WooCommerce

    \n

    Developers can use WooCommerce to create, customize, and scale a store to meet a client’s exact specifications, making enhancements through extensions or custom solutions.

    \n
      \n
    • Leverage hooks and filters to modify or create functionality.
    • \n
    • Integrate virtually any service using a robust REST API and webhooks.
    • \n
    • Design and build custom content blocks with React.
    • \n
    • Inspect and modify any aspect of the core plugin code.
    • \n
    • Speed up development with a lightning-fast CLI.
    • \n
    \n

    The core platform is tested rigorously and often, supported by a dedicated development team working across time zones. Comprehensive documentation is updated with each release, empowering you to build exactly the store required.

    \n

    Be part of our growing international community

    \n

    WooCommerce has a large, passionate community dedicated to helping merchants succeed – and it’s growing fast.

    \n

    There are WooCommerce Meetups in locations around the world that you can attend for free and even get involved in running. These events are a great way to learn from others, share your expertise, and connect with like-minded folks.

    \n

    WooCommerce also has a regular presence at WordCamps across the globe – we’d love to meet you.

    \n

    Contribute and translate

    \n

    WooCommerce is developed and supported by Automattic, the creators of WordPress.com and Jetpack. We also have hundreds of independent contributors, and there’s always room for more. Head to the WooCommerce GitHub Repository to find out how you can pitch in.

    \n

    WooCommerce is translated into multiple languages, including Danish, Ukrainian, and Persian. Help localize WooCommerce even further by adding your locale – visit translate.wordpress.org.

    \n

    Connection to WooCommerce.com

    \n

    You can connect your store to WooCommerce.com to manage your subscriptions on WooCommerce Marketplace and receive product updates without leaving WordPress admin. Connection also enables installation of purchased products right from WooCommerce.com and streamlines access to technical support. If you’d like to learn about what data is gathered and how it is used, please refer to our Privacy Policy.

    \n", "donate_link": "", "num_ratings": 4643, "screenshots": {"1": {"src": "https://ps.w.org/woocommerce/assets/screenshot-1.png?rev=3234504", "caption": ""}, "2": {"src": "https://ps.w.org/woocommerce/assets/screenshot-2.png?rev=3234504", "caption": ""}, "3": {"src": "https://ps.w.org/woocommerce/assets/screenshot-3.png?rev=3234504", "caption": ""}, "4": {"src": "https://ps.w.org/woocommerce/assets/screenshot-4.png?rev=3235205", "caption": ""}, "5": {"src": "https://ps.w.org/woocommerce/assets/screenshot-5.png?rev=3234504", "caption": ""}, "6": {"src": "https://ps.w.org/woocommerce/assets/screenshot-6.png?rev=3234504", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/woocommerce/", "contributors": {"bor0": {"avatar": "https://secure.gravatar.com/avatar/787d8ea71701ced680cd80411d656c20e0e600be5d34f6ce3478143d43dc9fd9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bor0/", "display_name": "Boro Sitnikovski"}, "kloon": {"avatar": "https://secure.gravatar.com/avatar/c7c708f5b0957714ab48e00220b0f74acccb43b70fa0d4b5ee091d59951ae751?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kloon/", "display_name": "Gerhard Potgieter"}, "opr18": {"avatar": "https://secure.gravatar.com/avatar/e083a0759b8ea01b11c1f154a3087ddfaf65a93011cf97a85fdbfc0cda709538?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/opr18/", "display_name": "opr18"}, "royho": {"avatar": "https://secure.gravatar.com/avatar/1beda14f19fa93030ba2c66359dc270286820af6c667cdfeb4e87833c747f3a0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/royho/", "display_name": "royho"}, "nerrad": {"avatar": "https://secure.gravatar.com/avatar/1bd692736861bd20949789e4a3d922736480efcacb0e44041616c5a79eaa54c0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nerrad/", "display_name": "Darren Ethier (nerrad)"}, "ryelle": {"avatar": "https://secure.gravatar.com/avatar/6d860975d8bd4b166268bba8da8c1ea0e861a7d7f4ef0aee52fa727fc69e12b2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ryelle/", "display_name": "Kelly Choyce-Dwan"}, "albarin": {"avatar": "https://secure.gravatar.com/avatar/0dd150b60949026a3c34f49d40089e3a8cf97dc331e2f5b27e805ffd34648e22?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/albarin/", "display_name": "albarin"}, "aljullu": {"avatar": "https://secure.gravatar.com/avatar/784f29a6d06799d1d40adc32b115da932cd1ee2b22d91cd8597e9fe6e4ee1420?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aljullu/", "display_name": "Albert Juhé Lluveras"}, "gigitux": {"avatar": "https://secure.gravatar.com/avatar/2dcd003f15403180364c56b093b48e6edca9a88c8f1470b965b87fc230c66d7f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/gigitux/", "display_name": "Luigi Teschio"}, "haszari": {"avatar": "https://secure.gravatar.com/avatar/5478c55437f47714a4dae1016cf521e803dfc4633ce5781b2f24d749d1623f69?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/haszari/", "display_name": "Rua Haszard"}, "vedjain": {"avatar": "https://secure.gravatar.com/avatar/eb19da24784b2f86d310a213b60c903b0a5464a6c725cf5fcabfd274383337c4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/vedjain/", "display_name": "Vedanshu - a11n"}, "jamosova": {"avatar": "https://secure.gravatar.com/avatar/73f150b0172cbb319293e372b3b20f4b78f0d5fbe70558318f69aad70908e95a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jamosova/", "display_name": "Julia Amosova"}, "sadowski": {"avatar": "https://secure.gravatar.com/avatar/cee318a6ec06e747df7f70f274da4e0cf4adba60c59e12d660d0f5a6ba78658a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sadowski/", "display_name": "sadowski"}, "wpmuguru": {"avatar": "https://secure.gravatar.com/avatar/23afb25faac780cb6ec9533b2ac9e5daedf7a1faf444b41db471b9529701f87e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpmuguru/", "display_name": "Ron Rennick"}, "konamiman": {"avatar": "https://secure.gravatar.com/avatar/ee97f225bf5be24cd3c3b04990b9fc3dfc67a2c9aaea418ec2bdd32e164ed9b1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/konamiman/", "display_name": "Néstor Soriano Vilchez"}, "neosinner": {"avatar": "https://secure.gravatar.com/avatar/68b52d53a3c6dd39841f697853a1965057c6f3aeb9e89f7d960d1921ffa90d29?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/neosinner/", "display_name": "Ján Mikláš"}, "ralucastn": {"avatar": "https://secure.gravatar.com/avatar/e65d79886499f47ee368495f5016117deef427d5abca9d3ed76c4bfaa42e7c0a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ralucastn/", "display_name": "Raluca"}, "saadtarhi": {"avatar": "https://secure.gravatar.com/avatar/f4fd0df69b8c7bf3a3e6526df3b42c3854de544904ef825bfd549afc9829f645?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/saadtarhi/", "display_name": "Saad T."}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "dinhtungdu": {"avatar": "https://secure.gravatar.com/avatar/07e79c32b1abba868f8c5e3ee0c85b9150c74e2c2a946088a268e6be486d9114?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dinhtungdu/", "display_name": "Tung Du"}, "imanish003": {"avatar": "https://secure.gravatar.com/avatar/59ff646ede2dd6475f24762ac21ee2afd7d72fdcade7b9d2915cf1c3c2d984a2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/imanish003/", "display_name": "Manish Menaria"}, "joshuawold": {"avatar": "https://secure.gravatar.com/avatar/f98224d78e12fcc0e9686dbf15f8c37b1967835212f25a92fceb6caafdc5b08d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/joshuawold/", "display_name": "Joshua Wold"}, "leifsinger": {"avatar": "https://secure.gravatar.com/avatar/8107603a6bbc5ff73e07e2450f260335af41a5adb2cccd80cba20cdd28b96651?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/leifsinger/", "display_name": "Leif Singer"}, "levinmedia": {"avatar": "https://secure.gravatar.com/avatar/657d301b3683f02c75e4b2363681518e94485770056cc51526f19818884ba6aa?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/levinmedia/", "display_name": "levinmedia"}, "mikejolley": {"avatar": "https://secure.gravatar.com/avatar/8295774fc174b6a5b9bd960709949f4de88cd0b8708d711dc5b6676693d41432?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mikejolley/", "display_name": "Mike Jolley"}, "mppfeiffer": {"avatar": "https://secure.gravatar.com/avatar/0fe64f1ef1e4abe1825653bcb17113a4a14c755f5b6f77d2f27494fe349d7081?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mppfeiffer/", "display_name": "Michael P. Pfeiffer"}, "nielslange": {"avatar": "https://secure.gravatar.com/avatar/0894ec0d7e5d70306a16431b36249b1928cad88a572de9b5211a54d75ad5d77a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nielslange/", "display_name": "Niels Lange"}, "jameskoster": {"avatar": "https://secure.gravatar.com/avatar/94b5473c03a46cb204f0a868dfe65f8199ef483242814ec1bcaf6770ba90d203?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jameskoster/", "display_name": "James Koster"}, "samueljseay": {"avatar": "https://secure.gravatar.com/avatar/4c4a5e8fd5b99749ed9ac735c31d0370254356e40feea46bcf51b2b607f8ab0e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/samueljseay/", "display_name": "Sam"}, "tjcafferkey": {"avatar": "https://secure.gravatar.com/avatar/23d134901eef453e721759c9d84810f5748a84fc8681ed230c7d78e53583c77a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tjcafferkey/", "display_name": "tjcafferkey"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}, "alexflorisca": {"avatar": "https://secure.gravatar.com/avatar/b68615471f527e6224909ce0726dda68b074e6cbcf89e0d4b5ecc483a96557ca?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alexflorisca/", "display_name": "Alex Florisca"}, "claudiulodro": {"avatar": "https://secure.gravatar.com/avatar/34a74527d3859bd9fb0b477cd80c9f78b3610259a251c32a31023ead285ac124?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/claudiulodro/", "display_name": "Claudiu Lodromanean"}, "coreymckrill": {"avatar": "https://secure.gravatar.com/avatar/9cc64cf0f650f165ac55f1294105259f82f2b72c4c24903a79af6d6cd1ad2a9a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/coreymckrill/", "display_name": "Corey McKrill"}, "danieldudzic": {"avatar": "https://secure.gravatar.com/avatar/b689767c4b308b8f5910cef3a2f44c2acdadcb3b63326b0d5c865d2c208c668e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/danieldudzic/", "display_name": "danieldudzic"}, "jorgeatorres": {"avatar": "https://secure.gravatar.com/avatar/33d6a063c7411775135383c5bae6cd4e45d094b72ec062c96ceafca5e2a4956f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jorgeatorres/", "display_name": "Jorge A. Torres"}, "karolmanijak": {"avatar": "https://secure.gravatar.com/avatar/42305d7047ca11d494b1912d687266a50edd05954fdec22e61ab1fe63cf2df6b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/karolmanijak/", "display_name": "Karol Manijak"}, "pauloarromba": {"avatar": "https://secure.gravatar.com/avatar/ab6034aa12c0e53f21978df9e470f161f06810d814082cbe3ab74450f0618818?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pauloarromba/", "display_name": "Paulo Arromba"}, "tarunvijwani": {"avatar": "https://secure.gravatar.com/avatar/fa4a4b2688afb8d238bb035f31fda4d07dabd67ccf41576276e5eb084463d617?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tarunvijwani/", "display_name": "tarunvijwani"}, "tiagonoronha": {"avatar": "https://secure.gravatar.com/avatar/0352cd451932c8a2ab15b8457933e6d90cc919bbf23db63e3bc35ee41d56577e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tiagonoronha/", "display_name": "Tiago Noronha"}, "alexandrelara": {"avatar": "https://secure.gravatar.com/avatar/1c0c71a072f798066e4661395461e73e0fb6692eaddcced2a0e457ef01a458e8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alexandrelara/", "display_name": "Alexandre Lara"}, "assassinateur": {"avatar": "https://secure.gravatar.com/avatar/00ec8d736cf51890768bcfd3614fc7eea91eec753262bc37cea7c8e988d4d3a3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/assassinateur/", "display_name": "Nadir Seghir"}, "barryhughes-1": {"avatar": "https://secure.gravatar.com/avatar/6ce0f4afb77f8d32da9c43e9a39c84fcfb3ed0e9cac24f440c46a151946cdec8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/barryhughes-1/", "display_name": "Barry"}, "danielwrobert": {"avatar": "https://secure.gravatar.com/avatar/f1f823ffbe2a6adb7f94c6998079fd6ae6636d3b6272dd8c54385783360e2cf8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/danielwrobert/", "display_name": "danielwrobert"}, "rodrigosprimo": {"avatar": "https://secure.gravatar.com/avatar/1dc85457417601db220b14e7fa96c842700fbd1cceecd21d65306c26fffb92cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rodrigosprimo/", "display_name": "Rodrigo Primo"}, "sunyatasattva": {"avatar": "https://secure.gravatar.com/avatar/73ce316f9775441698b601e6902728a80837f7fd6df0846e3c5a82448dce447c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sunyatasattva/", "display_name": "sunyatasattva (a11n)"}, "claudiosanches": {"avatar": "https://secure.gravatar.com/avatar/ac91c7d73bb4501567ab3790755bf001d53dac8d1f4311a2480a5fb62dfb180c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/claudiosanches/", "display_name": "Claudio Sanches"}, "peterfabian1000": {"avatar": "https://secure.gravatar.com/avatar/c25372df076206b9fe44dddd7ec6af6ba427d3fe2a457fa301fcb9cf90b23ddd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/peterfabian1000/", "display_name": "Peter Fabian"}, "obliviousharmony": {"avatar": "https://secure.gravatar.com/avatar/67851e0deeb2c6a7a4c238cf45c0e9694a919e2c5e02706c5852e67c4ad279c9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/obliviousharmony/", "display_name": "obliviousharmony"}, "patriciahillebrandt": {"avatar": "https://secure.gravatar.com/avatar/13f5707fad9a68e5cf9c3c0ebb9c7179c862dcb279c761d20c9b40bd2fff9f4a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/patriciahillebrandt/", "display_name": "patriciahillebrandt"}}, "last_updated": "2025-10-24 2:59pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/woocommerce.10.3.3.zip", "author_profile": "https://profiles.wordpress.org/automattic/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 7000000, "aspiresync_meta": {"id": "019a30bf-fcd1-719e-ba07-8e1385d33996", "name": "WooCommerce", "slug": "woocommerce", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761317940, "version": "10.3.3"}, "support_threads": 513, "requires_plugins": [], "short_description": "Everything you need to launch an online store in days and keep it growing for years. From your first sale to millions in revenue, Woo is with you.", "author_block_count": "6", "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 448}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1e8f-702a-93e9-7457d5dc12e0', 'did:web:api.aspiredev.org:packages:wp-plugin:woocommerce-gateway-stripe', 'woocommerce-gateway-stripe', 'WooCommerce Stripe Payment Gateway', '

    Changing consumer behavior has resulted in an explosion of payment methods and experiences, which are great for increasing conversion and lowering costs—but can be difficult for businesses to maintain. Give customers a best-in-class checkout experience while you remain focused on your core business. This is the official plugin created by Stripe and WooCommerce.

    -

    Drive 11.9% in revenue with an optimized checkout experience from Stripe

    -

    The enhanced checkout experience from Stripe can help customers:

    -
      -
    • Boost conversion: Provide an optimal experience across mobile, tablet, and desktop with a responsive checkout, and offer 23 payment methods, including Link, Apple Pay, and Google Pay, out of the box.
    • -
    • Expand your customer base: Convert customers who might otherwise abandon their cart with buy now, pay later methods like Klarna, Affirm, and Afterpay/Clearpay, wallets like Apple Pay, Google Pay, Alipay, and WeChat Pay, and local payment methods such as Bancontact in Europe and Alipay in Asia Pacific. Deliver a localized payment experience with out-of-the-box support for localized error messages, right-to-left languages, and automatic adjustment of input fields based on payment method and country.
    • -
    • Meet existing customer demand and localize the experience: Offer local payment methods, such as ACH Direct Debit, Bacs Direct Debit, Bancontact, BECS Direct Debit, BLIK, Boleto, Cash App Pay, EPS, iDEAL, Multibanco, OXXO, Pre-authorized debit payments, Przelewy 24, and SEPA Direct Debit.
    • -
    • Fight fraud: Detect and prevent fraud with Stripe Radar, which offers seamlessly integrated, powerful fraud-detection tools that use machine learning to detect and flag potentially fraudulent transactions.
    • -
    • Accept in-person payments for products and services: Use the Stripe Terminal M2 card reader or get started with no additional hardware using Tap to Pay on iPhone, or Tap to Pay on Android.
    • -
    • Support subscriptions: Support recurring payments with various payment methods via WooCommerce Subscriptions.
    • -
    • Manage cash flow: Get paid within minutes with Stripe Instant Payouts, if eligible.
    • -
    • Achieve PCI-DSS compliance with Stripe Elements hosted input fields.
    • -
    • Support Strong Customer Authentication (SCA).
    • -
    -

    Stripe is available for store owners and merchants in 46 countries worldwide, with more to come.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WooCommerce Stripe Payment Gateway", "slug": "woocommerce-gateway-stripe", "tags": {"woo": "woo", "stripe": "stripe", "payments": "payments", "credit-card": "credit card", "woocommerce": "woocommerce"}, "added": "2016-05-25", "icons": {"1x": "https://ps.w.org/woocommerce-gateway-stripe/assets/icon-128x128.png?rev=3177277", "2x": "https://ps.w.org/woocommerce-gateway-stripe/assets/icon-256x256.png?rev=3177277"}, "author": "WooCommerce", "rating": 60, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/woocommerce-gateway-stripe/assets/banner-772x250.png?rev=3234748", "high": "https://ps.w.org/woocommerce-gateway-stripe/assets/banner-1544x500.png?rev=3234748"}, "ratings": {"1": 87, "2": 13, "3": 12, "4": 12, "5": 92}, "version": "10.0.1", "homepage": "https://wordpress.org/plugins/woocommerce-gateway-stripe/", "requires": "6.6", "sections": {"faq": "\n
    \nIn which specific countries is Stripe available?\n\n

    \n

    Stripe is available in the following countries, with more to come:

    \n
      \n
    • Australia
    • \n
    • Austria
    • \n
    • Belgium
    • \n
    • Brazil
    • \n
    • Bulgaria
    • \n
    • Canada
    • \n
    • Croatia
    • \n
    • Cyprus
    • \n
    • Czech Republic
    • \n
    • Denmark
    • \n
    • Estonia
    • \n
    • Finland
    • \n
    • France
    • \n
    • Germany
    • \n
    • Gibraltar
    • \n
    • Greece
    • \n
    • Hong Kong
    • \n
    • Hungary
    • \n
    • India
    • \n
    • Ireland
    • \n
    • Italy
    • \n
    • Japan
    • \n
    • Latvia
    • \n
    • Liechtenstein
    • \n
    • Lithuania
    • \n
    • Luxembourg
    • \n
    • Malaysia
    • \n
    • Malta
    • \n
    • Mexico
    • \n
    • Netherlands
    • \n
    • New Zealand
    • \n
    • Norway
    • \n
    • Poland
    • \n
    • Portugal
    • \n
    • Romania
    • \n
    • Singapore
    • \n
    • Slovakia
    • \n
    • Slovenia
    • \n
    • Spain
    • \n
    • Sweden
    • \n
    • Switzerland
    • \n
    • Thailand
    • \n
    • United Arab Emirates
    • \n
    • United Kingdom
    • \n
    • United States
    • \n
    \n

    \n
    \nDoes this require an SSL certificate?\n\n

    \n

    Yes. In Live Mode, an SSL certificate must be installed on your site to use Stripe. In addition to SSL encryption, Stripe provides an extra JavaScript method to secure card data using Stripe Elements.

    \n

    \n
    \nDoes this support both production mode and sandbox mode for testing?\n\n

    \n

    Yes, it does. Both production and test (sandbox) modes are driven by the API keys you use with a checkbox in the admin settings to toggle between both.

    \n

    \n
    \nWhere can I find documentation?\n\n

    \n

    Refer to the Stripe WooCommerce Extension documentation for more information, including how to set up and configure the extension.

    \n

    \n
    \nWhere can I get support or talk to other users?\n\n

    \n

    If you get stuck, you can ask for help in the Plugin Forum.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fiona92 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Awesome support team! Super quick, really friendly, and they didn’t just stop at the basics — they went out of their way to help me figure out an issue that wasn’t even with their plugin. Couldn’t ask for better service!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very helpful from the Support team

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sudhev on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Had a very concerning doubt about the recent update of the plugin and the team really cleared my questions and was very helpful with every step. Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin and great support !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sielwolf on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin is very functional, always up to date and always supported in case of issues. I recommend it!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Save and Stable Integration

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Alex (alexanderkoch096) on September 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The WooCommerce Stripe Payment Gateway is easy to setup and works perfectly. NO issues perceived. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy oranto on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent!

    \n\n\n\n

    I had an issue with the checkout fields on my website. It was creating a conflict that made the user experience so difficult when making a purchase that they were leaving the page without completing it. Since I shared my issue on the forum, I received fantastic support. The excellent team was able to resolve my issue in record time. Thank you all!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Needs to include payment method id for block checkout but its missing there.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy awaisaezad on July 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Needs to include payment method id for block checkout but its missing there.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    OK

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jlc1964 on July 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Breaks down every other month

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Diana van de Laarschot (anaid) on July 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I don''t know how many times I''ve spent my afternoon reinstalling and reconfiguring this plugin. It breaks all the time.. Nonce errors, billing_address missing errors (the address is there, in plain sight), and other random errors just keep popping up. I don''t want to have to sign in to my own website every day and do a test run of the payment flow, just to make sure that it still works...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Slowed site down to a crawl

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy xunnamius on July 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Similar to what has been reported by other users in other threads:

    \n\n\n\n

    After upgrading this plugin a couple weeks ago, random page loads both admin and front end took >30 seconds to load (30 seconds is the max time limit for a single script on my systems). As with other frustrated reviewers of this plugin, I deactivated every plugin until I narrowed the misbehavior to this plugin.

    \n\n\n\n

    Unacceptable.

    \n\n\n\n

    Does this have to do with the \"legacy checkout experience\" being removed, and there being some sort of steps that need to be taken to upgrade to the new version that are not being communicated by the plugin?

    \n\n\n\n

    I can provide debugging information if necessary. It seems another plugin, \"PixelYourSite\", is causing the same sorts of slowdowns as this plugin. Whatever these plugins are doing in common is likely the source of the issue.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ho dovuto togliere l'aggiornamento

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Francesco Ciani (naturopata) on May 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ho dovuto togliere l’aggiornamento, e ripristinare il backup fatto pochi minuti prima, perché non mi faceva più accedere a Stripe con lo stesso account, e non cera modo di farlo funzionare,

    \n\n\n\n

    sono tornato al penultimo Plugin, ed ora tutto è tornato perfetto!

    \n\n\n\n

    Meglio aspettare la prossima volta e leggere anche le recensioni

    \n\n\n\n

    Francesco Ciani

    \n\n\n\n

    <font _mstmutation=\"1\"></font>

    \n
    \n
    \n", "changelog": "

    10.0.1 – 2025-10-15

    \n
      \n
    • Fix – Remove persistent reconnection notices
    • \n
    \n

    10.0.0 – 2025-10-14

    \n

    New Features

    \n
      \n
    • Add – Allow the purchase of free trials using the Express Payment methods when the product does not require shipping
    • \n
    • Update – Splits the “Enable SEPA for other methods” setting into two separate settings for Bancontact and iDEAL
    • \n
    \n

    Important Fixes and Updates

    \n
      \n
    • Update – Removing the wc_stripe_is_upe_checkout_enabled filter, as Legacy Checkout is no longer supported
    • \n
    • Update – Disable Payment Request Buttons and ensure Express Checkout is used when express checkout buttons are enabled
    • \n
    • Add – Introduce wc_stripe_preselect_payment_method_configuration filter for manual payment method configuration selection
    • \n
    • Update – Removes frontend code related to Payment Request Buttons in the checkout page
    • \n
    • Fix – Ensure Klarna payment tokens can be deleted and handled correctly
    • \n
    • Fix – Prevent fatal error when third-party plugins check for non-existent methods in payment method classes
    • \n
    • Add – Implement cache prefetch for payment method configuration
    • \n
    • Update – Shows the Stripe account connection modal in settings when the merchant did not connect via OAuth along with a new notice
    • \n
    • Update – The usage of SEPA Direct Debit as a saved payment method for iDEAL and Bancontact is now disabled by default
    • \n
    • Update – Reduce settings Javascript file size by using smaller image
    • \n
    \n

    Other Fixes

    \n
      \n
    • Fix – Minor fixes and code improvements for the saved payment methods comparison logic
    • \n
    • Update – Changes the documentation page URL for the Optimized Checkout feature to https://woocommerce.com/document/stripe/admin-experience/optimized-checkout-suite/
    • \n
    • Update – Changes the background color and spacing for the Woo logo shown in the account modal
    • \n
    \n

    Internal Changes and Upcoming Features

    \n
      \n
    • Tweak – Update PMC cache expiration time from 10 minutes to 20 minutes
    • \n
    • Dev – Expands the Stripe Order Helper class to handle source ID, refund ID, intent ID, and setup intent ID metas
    • \n
    • Dev – Upgrades jest to version 29.7.0, @wordpress/scripts to 26.19.0, and adds axios(version 1.12.2) to the JavaScript development dependencies
    • \n
    • Dev – Introduces a new helper class to handle Stripe orders
    • \n
    • Dev – Fixes a warning thrown when running Klarna payment token PHP Unit tests
    • \n
    • Dev – Fixes some possible warnings shown in the browser console when the Optimized Checkout payment element is instantiated with invalid parameters
    • \n
    • Dev – Renaming the Klarna payment token class to WC_Stripe_Klarna_Payment_Token
    • \n
    • Dev – Upgrades Node to v20
    • \n
    • Dev – Fix live reload issue with Webpack 5
    • \n
    • Dev – Upgrades the Webpack-related packages
    • \n
    • Dev – Upgrade the cross-env and rimraf NPM packages; remove chromedriver NPM dependency
    • \n
    • Dev – Removes three unused NPM script commands: test, test:grep, and test:single
    • \n
    • Dev – Upgrades the Babel-related packages
    • \n
    • Dev – Consolidate component used for unavailable payment methods
    • \n
    • Dev – Update webhook unit tests to be compatible with WooCommerce 10.2
    • \n
    • Dev – Update the @woocommerce/navigation dependency
    • \n
    • Dev – Update @wordpress/scripts to 30.24.0 and @wordpress/base-styles to 6.7.0
    • \n
    \n

    See changelog for full details across versions.

    \n", "description": "

    Changing consumer behavior has resulted in an explosion of payment methods and experiences, which are great for increasing conversion and lowering costs—but can be difficult for businesses to maintain. Give customers a best-in-class checkout experience while you remain focused on your core business. This is the official plugin created by Stripe and WooCommerce.

    \n

    Drive 11.9% in revenue with an optimized checkout experience from Stripe

    \n

    The enhanced checkout experience from Stripe can help customers:

    \n
      \n
    • Boost conversion: Provide an optimal experience across mobile, tablet, and desktop with a responsive checkout, and offer 23 payment methods, including Link, Apple Pay, and Google Pay, out of the box.
    • \n
    • Expand your customer base: Convert customers who might otherwise abandon their cart with buy now, pay later methods like Klarna, Affirm, and Afterpay/Clearpay, wallets like Apple Pay, Google Pay, Alipay, and WeChat Pay, and local payment methods such as Bancontact in Europe and Alipay in Asia Pacific. Deliver a localized payment experience with out-of-the-box support for localized error messages, right-to-left languages, and automatic adjustment of input fields based on payment method and country.
    • \n
    • Meet existing customer demand and localize the experience: Offer local payment methods, such as ACH Direct Debit, Bacs Direct Debit, Bancontact, BECS Direct Debit, BLIK, Boleto, Cash App Pay, EPS, iDEAL, Multibanco, OXXO, Pre-authorized debit payments, Przelewy 24, and SEPA Direct Debit.
    • \n
    • Fight fraud: Detect and prevent fraud with Stripe Radar, which offers seamlessly integrated, powerful fraud-detection tools that use machine learning to detect and flag potentially fraudulent transactions.
    • \n
    • Accept in-person payments for products and services: Use the Stripe Terminal M2 card reader or get started with no additional hardware using Tap to Pay on iPhone, or Tap to Pay on Android.
    • \n
    • Support subscriptions: Support recurring payments with various payment methods via WooCommerce Subscriptions.
    • \n
    • Manage cash flow: Get paid within minutes with Stripe Instant Payouts, if eligible.
    • \n
    • Achieve PCI-DSS compliance with Stripe Elements hosted input fields.
    • \n
    • Support Strong Customer Authentication (SCA).
    • \n
    \n

    Stripe is available for store owners and merchants in 46 countries worldwide, with more to come.

    \n", "screenshots": "
    1. \"With

      With the enhanced checkout from Stripe, you can surface 23 payment methods including buy now, pay later methods; and Link, an accelerated checkout experience.

    2. \"Link

      Link autofills your customers’ payment information to create an easy and secure checkout experience.

    3. \"Convert

      Convert customers who would usually abandon their cart and increase average order value with buy now, pay later options like Klarna, Afterpay, and Affirm. Accept credit and debit card payments from Visa, Mastercard, American Express, Discover, and Diners.

    4. \"Stripe

      Stripe Radar offers seamlessly integrated, powerful fraud-detection tools that use machine learning to detect and flag potentially fraudulent transactions.

    5. \"Accept

      Accept in-person payments for products and services using the Stripe Terminal M2 card reader.

    6. \"Get

      Get started with no additional hardware using Tap to Pay on iPhone, or Tap to Pay on Android.

    "}, "versions": {"3.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.7.zip", "3.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.9.zip", "3.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.2.3.zip", "4.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.7.zip", "4.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.9.zip", "4.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.5.zip", "4.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.3.3.zip", "4.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.4.0.zip", "4.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.5.zip", "4.5.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.6.zip", "4.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.6.1.zip", "4.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.7.1.zip", "4.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.8.1.zip", "4.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.9.1.zip", "5.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.0.1.zip", "5.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.1.1.zip", "5.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.2.4.zip", "5.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.3.1.zip", "5.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.4.0.zip", "5.4.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.4.2.zip", "5.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.5.2.zip", "5.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.6.0.zip", "5.6.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.6.1.zip", "5.6.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.6.2.zip", "5.6.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.6.3.zip", "5.6.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.6.4.zip", "5.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.7.1.zip", "5.7.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.7.2.zip", "5.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.8.2.zip", "5.8.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.8.3.zip", "5.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.9.2.zip", "6.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.0.2.zip", "6.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.1.2.zip", "6.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.2.2.zip", "6.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.3.3.zip", "6.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.2.zip", "6.4.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.3.zip", "6.4.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.4.zip", "6.4.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.5.zip", "6.4.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.6.zip", "6.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.5.1.zip", "6.5.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.5.2.zip", "6.5.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.5.3.zip", "6.5.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.5.4.zip", "6.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.6.1.zip", "6.6.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.6.2.zip", "6.6.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.6.3.zip", "6.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.7.0.zip", "6.7.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.7.1.zip", "6.7.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.7.2.zip", "6.7.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.7.3.zip", "6.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.8.0.zip", "6.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.8.1.zip", "6.8.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.8.2.zip", "6.8.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.8.3.zip", "6.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.9.2.zip", "6.9.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.9.3.zip", "7.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.0.zip", "7.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.2.zip", "7.0.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.3.zip", "7.0.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.4.zip", "7.0.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.5.zip", "7.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.1.0.zip", "7.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.1.1.zip", "7.1.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.1.2.zip", "7.1.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.1.3.zip", "7.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.2.0.zip", "7.2.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.2.1.zip", "7.2.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.2.2.zip", "7.2.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.2.3.zip", "7.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.3.0.zip", "7.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.3.1.zip", "7.3.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.3.2.zip", "7.3.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.3.3.zip", "7.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.4.1.zip", "7.4.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.4.2.zip", "7.4.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.4.3.zip", "7.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.5.0.zip", "7.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.5.1.zip", "7.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.6.0.zip", "7.6.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.6.1.zip", "7.6.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.6.2.zip", "7.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.7.0.zip", "7.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.8.0.zip", "7.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.8.1.zip", "7.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.9.1.zip", "7.9.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.9.2.zip", "7.9.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.9.3.zip", "8.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.0.1.zip", "8.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.1.0.zip", "8.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.1.1.zip", "8.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.2.0.zip", "8.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.3.0.zip", "8.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.3.1.zip", "8.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.4.0.zip", "8.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.5.0.zip", "8.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.5.1.zip", "8.5.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.5.2.zip", "8.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.6.0.zip", "8.6.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.6.1.zip", "8.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.7.0.zip", "8.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.8.0.zip", "8.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.8.1.zip", "8.8.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.8.2.zip", "8.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.9.0.zip", "9.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.0.0.zip", "9.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.1.0.zip", "9.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.1.1.zip", "9.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.2.0.zip", "9.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.3.0.zip", "9.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.3.1.zip", "9.3.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.3.2.zip", "9.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.4.0.zip", "9.4.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.4.1.zip", "9.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.5.0.zip", "9.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.5.1.zip", "9.5.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.5.2.zip", "9.5.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.5.3.zip", "9.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.6.0.zip", "9.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.7.0.zip", "9.7.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.7.1.zip", "9.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.8.0.zip", "9.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.8.1.zip", "9.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.9.0.zip", "9.9.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.9.1.zip", "9.9.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.zip", "10.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.10.0.0.zip", "10.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.10.0.1.zip", "4.1.10": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.10.zip", "4.1.11": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.11.zip", "4.1.12": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.12.zip", "4.1.13": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.13.zip", "4.1.14": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.14.zip", "4.1.15": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.15.zip", "4.1.16": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.16.zip"}, "downloaded": 44088801, "description": "

    Changing consumer behavior has resulted in an explosion of payment methods and experiences, which are great for increasing conversion and lowering costs—but can be difficult for businesses to maintain. Give customers a best-in-class checkout experience while you remain focused on your core business. This is the official plugin created by Stripe and WooCommerce.

    \n

    Drive 11.9% in revenue with an optimized checkout experience from Stripe

    \n

    The enhanced checkout experience from Stripe can help customers:

    \n
      \n
    • Boost conversion: Provide an optimal experience across mobile, tablet, and desktop with a responsive checkout, and offer 23 payment methods, including Link, Apple Pay, and Google Pay, out of the box.
    • \n
    • Expand your customer base: Convert customers who might otherwise abandon their cart with buy now, pay later methods like Klarna, Affirm, and Afterpay/Clearpay, wallets like Apple Pay, Google Pay, Alipay, and WeChat Pay, and local payment methods such as Bancontact in Europe and Alipay in Asia Pacific. Deliver a localized payment experience with out-of-the-box support for localized error messages, right-to-left languages, and automatic adjustment of input fields based on payment method and country.
    • \n
    • Meet existing customer demand and localize the experience: Offer local payment methods, such as ACH Direct Debit, Bacs Direct Debit, Bancontact, BECS Direct Debit, BLIK, Boleto, Cash App Pay, EPS, iDEAL, Multibanco, OXXO, Pre-authorized debit payments, Przelewy 24, and SEPA Direct Debit.
    • \n
    • Fight fraud: Detect and prevent fraud with Stripe Radar, which offers seamlessly integrated, powerful fraud-detection tools that use machine learning to detect and flag potentially fraudulent transactions.
    • \n
    • Accept in-person payments for products and services: Use the Stripe Terminal M2 card reader or get started with no additional hardware using Tap to Pay on iPhone, or Tap to Pay on Android.
    • \n
    • Support subscriptions: Support recurring payments with various payment methods via WooCommerce Subscriptions.
    • \n
    • Manage cash flow: Get paid within minutes with Stripe Instant Payouts, if eligible.
    • \n
    • Achieve PCI-DSS compliance with Stripe Elements hosted input fields.
    • \n
    • Support Strong Customer Authentication (SCA).
    • \n
    \n

    Stripe is available for store owners and merchants in 46 countries worldwide, with more to come.

    \n", "donate_link": "", "num_ratings": 216, "screenshots": {"1": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-1.png?rev=3177277", "caption": "With the enhanced checkout from Stripe, you can surface 23 payment methods including buy now, pay later methods; and Link, an accelerated checkout experience."}, "2": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-2.png?rev=3177277", "caption": "Link autofills your customers’ payment information to create an easy and secure checkout experience."}, "3": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-3.png?rev=3177277", "caption": "Convert customers who would usually abandon their cart and increase average order value with buy now, pay later options like Klarna, Afterpay, and Affirm. Accept credit and debit card payments from Visa, Mastercard, American Express, Discover, and Diners."}, "4": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-4.png?rev=3177277", "caption": "Stripe Radar offers seamlessly integrated, powerful fraud-detection tools that use machine learning to detect and flag potentially fraudulent transactions."}, "5": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-5.png?rev=3177279", "caption": "Accept in-person payments for products and services using the Stripe Terminal M2 card reader."}, "6": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-6.png?rev=3177279", "caption": "Get started with no additional hardware using Tap to Pay on iPhone, or Tap to Pay on Android."}}, "support_url": "https://wordpress.org/support/plugin/woocommerce-gateway-stripe/", "contributors": {"bor0": {"avatar": "https://secure.gravatar.com/avatar/787d8ea71701ced680cd80411d656c20e0e600be5d34f6ce3478143d43dc9fd9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bor0/", "display_name": "Boro Sitnikovski"}, "akeda": {"avatar": "https://secure.gravatar.com/avatar/dc9dd485942002d2de369dee002498b5e0811eac2bcf727b8984fa89a99be43c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/akeda/", "display_name": "Akeda Bagus"}, "royho": {"avatar": "https://secure.gravatar.com/avatar/1beda14f19fa93030ba2c66359dc270286820af6c667cdfeb4e87833c747f3a0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/royho/", "display_name": "royho"}, "mattyza": {"avatar": "https://secure.gravatar.com/avatar/17db271e5eb58a7716724ad4e276ab333596e1d57018e44c4a6a1c71ef32c75a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mattyza/", "display_name": "Matt Cohen"}, "woothemes": {"avatar": "https://secure.gravatar.com/avatar/954fd30b03a485d54b947afb3a55c4ebd563e42e6634e2c07101771cfd61d7d1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woothemes/", "display_name": "WooThemes"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}}, "last_updated": "2025-10-15 2:47pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.10.0.1.zip", "author_profile": "https://profiles.wordpress.org/woocommerce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fcd7-71fd-8460-d565816055b4", "name": "WooCommerce Stripe Payment Gateway", "slug": "woocommerce-gateway-stripe", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1760539620, "version": "10.0.1"}, "support_threads": 75, "requires_plugins": ["woocommerce"], "short_description": "Accept debit and credit cards in 135+ currencies, many local methods like Alipay, ACH, and SEPA, and express checkout with Apple Pay and Google Pay.", "author_block_count": 0, "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 60}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1e9d-72a4-85e4-a3f485b8a09d', 'did:web:api.aspiredev.org:packages:wp-plugin:woocommerce-payments', 'woocommerce-payments', 'WooPayments: Integrated WooCommerce Payments', '

    Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores.

    -

    Securely accept major credit and debit cards, and allow customers to pay you directly without leaving your WooCommerce store. View and manage transactions from one convenient place – your WordPress dashboard.

    -

    See payments, track cash flow into your bank account, manage refunds, and stay on top of disputes without the hassle of having to log into a separate payment processor.

    -

    Manage transactions from the comfort of your store

    -

    Features previously only available on your payment provider’s website are now part of your store’s integrated payments dashboard. This enables you to:

    - -

    Pay as you go

    -

    WooPayments is free to install, with no setup fees or monthly fees. Our pay-as-you-go pricing model means we’re incentivized to help you succeed! Read more about transaction fees.

    -

    Supported by the WooCommerce team

    -

    Our global support team is available to answer questions you may have about WooPayments installation, setup, or use. For assistance, open a ticket on woocommerce.com.

    -

    Getting Started

    -

    Requirements

    -
      -
    • WordPress 6.0 or newer.
    • -
    • WooCommerce 7.6 or newer.
    • -
    • PHP 7.3 or newer.
    • -
    -

    Try it now

    -

    To try WooPayments (previously WooCommerce Payments) on your store, simply install it and follow the prompts. Please see our Startup Guide for a full walkthrough of the process.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WooPayments: Integrated WooCommerce Payments", "slug": "woocommerce-payments", "tags": {"payment": "payment", "apple-pay": "apple pay", "google-pay": "google pay", "credit-card": "credit card", "woocommerce-payments": "woocommerce payments"}, "added": "2020-04-08", "icons": {"1x": "https://ps.w.org/woocommerce-payments/assets/icon-128x128.png?rev=3234740", "2x": "https://ps.w.org/woocommerce-payments/assets/icon-256x256.png?rev=3234740"}, "author": "WooCommerce", "rating": 60, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/woocommerce-payments/assets/banner-772x250.png?rev=3234740", "high": "https://ps.w.org/woocommerce-payments/assets/banner-1544x500.png?rev=3234740"}, "ratings": {"1": 55, "2": 5, "3": 3, "4": 3, "5": 55}, "version": "10.1.1", "homepage": "https://woocommerce.com/payments/", "requires": "6.0", "sections": {"faq": "\n
    \nWhat countries and currencies are supported?\n\n

    \n

    If you are an individual or business based in one of these countries, you can sign-up with WooPayments. After completing sign up, you can accept payments from customers anywhere in the world, as long as they are paying with a supported currency.

    \n

    We are actively planning to expand into additional countries based on your interest. Let us know where you would like to see WooPayments launch next.

    \n

    \n
    \nWhy is a WordPress.com account and connection required?\n\n

    \n

    WooPayments uses the WordPress.com connection to securely communicate with our payments server. This is necessary for WooPayments to function correctly, so it’s not possible to use WooPayments without connecting. Please see this document for more information.

    \n

    Note that you do not need to host your site itself on WordPress.com, nor do you need to host any site on WordPress.com at all. You only need an account.

    \n

    Note that you do not need to host your site itself on WordPress.com. You only need an account on WordPress.com to establish the connection. You can create a WordPress.com account at this link.

    \n

    \n
    \nHow do I set up a store for a client?\n\n

    \n

    If you are a developer or agency setting up a site for a client, please see this page of our documentation for some tips on how to install WooPayments on client sites.

    \n

    \n
    \nHow is WooPayments related to Stripe?\n\n

    \n

    WooPayments is built in partnership with Stripe Stripe. When you sign up for WooPayments, your personal and business information is verified with Stripe and stored in an account connected to the WooPayments service. This account is then used in the background for managing your business account information and activity via WooPayments. Learn more.

    \n

    \n
    \nAre there Terms of Service and data usage policies?\n\n

    \n

    You can read our Terms of Service and other policies here.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy monannivert on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Step by step we try to find a solution with the support, until it works ! Thank you !

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to set up

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy katiekoteen (selmasuzanne) on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I added WooPayment to start selling a simple downloadable product on my site. It was easy to setup and included all of the express pay option I was looking for.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pronsias7 on July 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you to Jake who sorted my issue within a short time. I should have contacted sooner! I appreciate your efficient and helpful manner.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works as expected!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy morrisayoder on July 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you for WooPayments. It works great for us!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    layoutshifts and not following wordpress best practices

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mcdeth on July 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Quite not surprised, cna you name one not woocommerce page where you can see payment button sliding down on every page load? yeah me neither. but who cares in automatic

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I love WooPayments!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy (SpiderSaid) on July 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using WooCommerce WooPayments for 10 months. It has been easy to use, very customizable for payout frequency/dates, and the fees are fine. Reports are easy to access and understand. Support is excellent.

    \n\n\n\n

    All together this has been a great solution for replacing PayPal. I have changed most of my WooCommerce PayPal websites to WooPayments.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Beware Poor Payouts

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy andyg20 on July 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We activated Woopayments on our site under the impression that we would have 7 days waiting period for the payments to be transferred to our account and then it would revert to every 3 days, as stated on the app page. After the 7 day waiting period it didn''t revert to the 3 day payment and when we contacted support we were informed that some sites have a longer timeframe to change the schedule, but couldn''t provide me with a timeframe!!

    \n\n\n\n

    It''s vitally important for any business to have a positive cashflow and to receive payments for goods or services in a timely manner, 7 days is ridiculous.

    \n\n\n\n

    We reverted back to Elavon, 24 hour payout and lower fees, shame on you Woopayments, pathetic!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Powerful and Flexible E-Commerce Solution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lucybbn on June 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WooCommerce has been a game changer for my online store. It’s incredibly flexible, letting me customize every part of the shopping experience, from product pages to the checkout, without needing to dive into code. It works seamlessly with WordPress, and the wide range of extensions makes it easy to add new features as my business grows.

    \n\n\n\n

    What I really appreciate is how easy it is to use, even if you’re not a developer. The documentation is clear, and there’s a strong community ready to help. Whether you’re starting small or scaling up, WooCommerce gives you the tools and control to build the kind of store you want.

    \n\n\n\n

    I highly recommend it to anyone looking for a reliable and customizable ecommerce platform.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fees are extortionate and payouts are very slow.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy williamdavies33 on June 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Anyone wanting to ship internationally expect to pay over 5% of revenue just for a single transaction. Fee (5.5% + $0.34).

    \n\n\n\n

    The payout takes a week.

    \n\n\n\n

    Use something else if you care about your profit.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Helpful Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sunithak on May 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The problem has not been resolved they but quickly identified the root cause and guided me with clear next steps. Much appreciated!

    \n
    \n
    \n", "changelog": "

    10.1.1 – 2025-10-27

    \n
      \n
    • Fix – Overrides the core AbstractAutomatticAddressProvider‘s load_scripts method to only run if the core setting (woocommerce_address_autocomplete_enabled is enabled).
    • \n
    \n

    10.1.0 – 2025-10-15

    \n
      \n
    • Add – Disputes – Add a loading state to the “Challenge dispute” flow
    • \n
    • Add – Pre-fill product type in dispute evidence form based on order products.
    • \n
    • Fix – Add caching to address autocomplete token
    • \n
    • Fix – Fix edge case when shipping information is added by mistake for digital products.
    • \n
    • Fix – Fix _load_textdomain_just_in_time error when loading a non-existing payment method
    • \n
    • Fix – Handle dispute counts for menu items between live and test mode
    • \n
    • Fix – Single use coupons issues on WooPay.
    • \n
    • Fix – Use Woo custom cap pay_for_order for validating the owner of order
    • \n
    • Update – Show message about bundled subscriptions until 10.2.0.
    • \n
    • Dev – Comment: Skip SSL verification when running the PHP tests locally.
    • \n
    • Dev – Removed clear_cache method from the mutli-currency interface
    • \n
    \n

    10.0.0 – 2025-09-24

    \n
      \n
    • Add – Add new feature flag for the dynamic checkout place order button, and new option on payment settings.
    • \n
    • Add – New AccountDetails: Add feature flag, TypeScript definition, and basic component
    • \n
    • Fix – Do not ask for shipping info for digital products dispute.
    • \n
    • Fix – Fix Google/Apple Pay “State / County is required” error during checkout for Saudi Arabia
    • \n
    • Fix – Fix possible errors when WooPay is enabled while the store is in Coming Soon mode
    • \n
    • Fix – Name is required for the Affirm payment method.
    • \n
    • Update – Improve messaging around test accounts and development mode on the Payments Overview page.
    • \n
    • Update – Introduce account.deleted webhook processing for a smoother experience when an account is deleted from the Transact Platform.
    • \n
    • Dev – Bump WC tested up to version to 10.2.0
    • \n
    • Dev – Fix flaky E2E test in addSavedCard function
    • \n
    \n

    9.9.0 – 2025-09-03

    \n
      \n
    • Fix – Conditionally set Stripe Link wallet option based on payment method configuration
    • \n
    • Fix – fix: adding some missing i18n wrappers
    • \n
    • Fix – Fix checks for the billing details for the BNPL methods on the Pay for Order page.
    • \n
    • Fix – Fixed WooPay terms and conditions text for merchants using blocks checkout.
    • \n
    • Fix – Fix margins for phone number input and add styling to match other inputs
    • \n
    • Fix – Fix VAT setup modal for unsupported merchants
    • \n
    • Fix – Generate payment method details in WooPayments instead of Woo core, cache them for performance improvements.
    • \n
    • Fix – Ignore webhooks whenever the order key in their body does not match the local order.
    • \n
    • Fix – Show Activate payments notice in WooPayments Settings only for test accounts.
    • \n
    • Update – update: label text on the support phone number in test mode
    • \n
    • Update – update: settings page design audit.
    • \n
    • Update – Update WP components for development and tests.
    • \n
    • Update – Update “Finish setting up WooPayments” task to redirect to NOX flow.
    • \n
    • Dev – Fix E2E subcription shopper test failures because the core changes text from “Sign up now” to “Add to cart”
    • \n
    • Dev – Update JS packages mini-css-extract-plugin and shelljs
    • \n
    \n

    9.8.0 – 2025-08-13

    \n
      \n
    • Add – Add address autocomplete to Checkout
    • \n
    • Add – Add support for small screens on the evidence submission form.
    • \n
    • Fix – Fix customer details section when name and/or email are very big.
    • \n
    • Fix – Fix Google/Apple Pay “State / County is required” error during checkout for Croatia
    • \n
    • Fix – Fix the icon border of the Steps component for a dispute.
    • \n
    • Fix – Reset the enabled payment methods to default value on account reset.
    • \n
    • Fix – Suppress sending completed-renewal-order email after dispute resolution
    • \n
    • Update – As of this change, we stop bundling WordPress Components in favor of using the wp.components available in the WordPress installation.
    • \n
    • Update – Make onboading pages use the pw.components available in the WordPress installation.
    • \n
    • Update – Make the connect acctount components use the wp.components from the installation.
    • \n
    • Update – Make the KYC onboarding use the WP components available in the installation.
    • \n
    • Update – update: ensure Google Pay/Apple Pay can check out w/ LT addresses
    • \n
    • Update – update: fraud protection rules to use WP components bundled within the WP installation
    • \n
    • Update – Update documents page to use WP components available in the WordPress installation.
    • \n
    • Update – Update loan page to use the installation WordPress components.
    • \n
    • Update – Update the “Learn more about disputes” link in the confirmation screen of the disputes documentation.
    • \n
    • Dev – Fix: enhances the robustness of the selectPaymentMethod method in end-to-end tests
    • \n
    • Dev – Fix: Respond to a dispute e2e tests
    • \n
    • Dev – Fix: select payment method shopper util
    • \n
    • Dev – Removed all the Progressive Onboarding (PO) code.
    • \n
    • Dev – update: use React 18
    • \n
    • Dev – Update tested WooCommerce version to 10.1.0
    • \n
    \n

    9.7.0 – 2025-07-24

    \n
      \n
    • Add – Add a confirmation screen to the new flow for submitting dispute evidence.
    • \n
    • Add – Add Credit not processed logic for the new evidence submission form.
    • \n
    • Add – Add external help link to the recomended documents section.
    • \n
    • Add – Add logic for Duplicate chargeback reason for the new evidence submission form.
    • \n
    • Add – Add logic for subscription cancelled for the new evidence form.
    • \n
    • Add – Add new transaction type fee_refund
    • \n
    • Add – File name should show size the extension
    • \n
    • Add – New evidence flow for the “General” dispute type.
    • \n
    • Fix – Accept TAP_TO_PAY_DEVICE as a valid card reader model to consider a transaction as TTP.
    • \n
    • Fix – Adjusted deactivation modal behavior to correctly resize when its content updates.
    • \n
    • Fix – Change copy to avoid leaving words alone.
    • \n
    • Fix – Consolidate test account notices in one in the WooPayments Settings page.
    • \n
    • Fix – Enable WooPay Direct Checkout on mini-cart.
    • \n
    • Fix – Fix – Remove unwanted animations and improve styling consistency on dispute evidence pages.
    • \n
    • Fix – Fix: Allow multiple authorization cancellations on the same order.
    • \n
    • Fix – Fix: Google Pay 3D Secure authentication being bypassed due to redirect URL extraction issue
    • \n
    • Fix – fix: remove BNPLs from PMME when BNPL method is not active
    • \n
    • Fix – Fix: Spinner alignment issues in cart checkout button and checkout address form email field.
    • \n
    • Fix – Fix border color of some items.
    • \n
    • Fix – Fix copy for the documents section and fix the font size of the content inside the accordion on top.
    • \n
    • Fix – Fix filename issue on the new evidence submission form.
    • \n
    • Fix – Fix margin of the shipping details title on the evidence submission form.
    • \n
    • Fix – Fix order notes after subscriptions’ payment method gets changed.
    • \n
    • Fix – Fix spacings on the envidence submission form
    • \n
    • Fix – Fix vertical UI shift when uploading a file
    • \n
    • Fix – Fix WooPay button spinner on some themes.
    • \n
    • Fix – Improve the cover letter save behavior.
    • \n
    • Fix – Provide correct language code when requesting CSV exports in a region-specific language
    • \n
    • Fix – Remove unnecessary gap
    • \n
    • Fix – Step back should also scroll the page to the top
    • \n
    • Fix – Support numbers starting from 4, 7, 8 for Hong Kong phones.
    • \n
    • Update – Disallow challenging the Visa compliance disputes.
    • \n
    • Update – ensure payments and transactions pages uses wp components that come with the WP installation.
    • \n
    • Update – Improve multicurrency caching and use new API endpoint.
    • \n
    • Update – Make the card reaaders page use the wp.components available in the WordPress installation.
    • \n
    • Update – Redirect merchant to the dispute detail screen
    • \n
    • Update – Redirects to the dispute list after save.
    • \n
    • Update – Removes the feature flag for the new evidence submission form.
    • \n
    • Update – update: deactivation survey to use WP components bundled within the WP installation
    • \n
    • Update – update: ensure multi-currency settings page uses wp components that come with the WP installation; updated some styles to use WP components, rather than bespoke components;
    • \n
    • Update – update: ensure settings page uses wp components that come with the WP installation
    • \n
    • Update – update: multi-currency widget to use WP components bundled within the WP installation
    • \n
    • Update – update: order page assets with wp components
    • \n
    • Update – update: RedirectToTransactionDetails to use Gutenberg components that come with the WP installation
    • \n
    • Update – update: removed the payment gateways confirmation dialog
    • \n
    • Update – update: subscription-product-onboarding to use WP components bundled within the WP installation
    • \n
    • Update – update: TOS agreement dialog to use WP Components bundled within the WP installation
    • \n
    • Update – Update client to use NOX surfaces instead of MOX/Connect page wherever possible.
    • \n
    • Update – Update copy for disputes
    • \n
    • Update – Update Multi-currency settings to use wp.components available in the WordPress installation.
    • \n
    • Update – Update the payments overview page to use the components available in the WP installation.
    • \n
    • Update – Update the payout list and payout details pages to use the WP components available on the WP installation.
    • \n
    • Dev – Fix imports for the unbundled components.
    • \n
    • Dev – Prevent “Evidence saved” toast from appearing multiple times.
    • \n
    • Dev – Remove conversion to the server locale, as it is done on the server.
    • \n
    • Dev – Remove feature flag _wcpay_feature_documents
    • \n
    • Dev – Remove old evidence submission code
    • \n
    • Dev – update: ensure wp-components-wrapped has individually exported components
    • \n
    \n

    9.6.0 – 2025-07-02

    \n
      \n
    • Add – Add cover letter for the new evidence submission screen for Product Unacceptable chargeback reason
    • \n
    • Add – Added a URL parameter to allow merchants to access the VAT details modal.
    • \n
    • Add – Show an admin notice when bundled subscriptions are in use
    • \n
    • Fix – Add NO VAT description for Norway in tax descriptions
    • \n
    • Fix – fix: ensure Google Pay/Apple Pay postcode matching for shipping zones works even when the provided postcode is redacted.
    • \n
    • Fix – Fix a layout shift when uploading evidence for a dispute on the new challenge dispute screen
    • \n
    • Fix – Fix mobile version of the StepperPanel and make the top navigation clickable.
    • \n
    • Fix – Fix padding on the recommended document section
    • \n
    • Fix – Fix payment methods logos width calculation in block editor preview
    • \n
    • Fix – Fix preselected Payment Methods ignored during account creation via KYC session.
    • \n
    • Fix – Fix spacing on disputes expandable block
    • \n
    • Fix – Fix state for the cover letter.
    • \n
    • Fix – Fix the browser print preview page on the payouts page.
    • \n
    • Fix – Prevent double stock reduction after (3DS) authentication.
    • \n
    • Fix – Prevent fatal error on the Pay for Order page upon deleted orders.
    • \n
    • Update – Change the copy of the cover letter notice.
    • \n
    • Update – Clicking on the Next button scroll the page position to the top.
    • \n
    • Update – Evidence submission form for product not received
    • \n
    • Update – fix: update Google Pay/Apple Pay buttons compatibility when multi-currency functionality is disabled – they’ll no longer throw an exception for logged-out customers
    • \n
    • Update – Refine “Temporarily Suspended” language, statuses and tooltip copy
    • \n
    • Update – update: add wcpay_express_checkout_js_params filter for express checkout JS params.
    • \n
    • Update – Updates the recomended documents section for the new disputes experience
    • \n
    • Dev – Add missing arrow icons from the new evidence form
    • \n
    • Dev – Ensure the submitted state is working as expected
    • \n
    • Dev – Fix the regexp checking for the loading state of the checkout button to cover changes in latest WooCommerce.
    • \n
    • Dev – Remove CTA from the new evidence “Evidence saved!” toast.
    • \n
    • Dev – Revert @woocommerce/onboarding upgrade in PR 10840
    • \n
    • Dev – Update reviewers for dependabot
    • \n
    • Dev – Update tested WooCommerce version to 10.0.0
    • \n
    \n

    9.5.0 – 2025-06-11

    \n
      \n
    • Add – Add specific texts for collecting Norway and New Zealand tax data
    • \n
    • Add – Add specific texts for collecting Singapore tax data
    • \n
    • Add – Add tax to the fee breakdown on order notes
    • \n
    • Add – Enable Australian merchants to add tax details (ABN) for generating tax documents.
    • \n
    • Add – New Filter: wcpay_woopay_enabled – Allows developers to conditionally disable WooPay based on custom logic, improving compatibility with themes and plugins.
    • \n
    • Fix – fix: ensure checkPaymentMethodIsAvailable cache key is correctly memoized on express checkout elements
    • \n
    • Fix – fix: formatting of currencies in the backend will always honor the merchant’s settings, rather than the currency locale.
    • \n
    • Fix – fix: set the correct payment method title when processing the payment with wechat pay, multibanco, and others
    • \n
    • Fix – Fixed handling of orders containing items with negative tax
    • \n
    • Fix – Handle state field requirements for Express Checkout in countries without states
    • \n
    • Fix – Prevent accounts scheduled for deletion from being accessible to the WooPayments client to avoid exposing stale or partial data.
    • \n
    • Update – Evidence submission form now should use the global wp.components
    • \n
    • Update – refactor: add data massaging from legacy google pay/apple pay for HK-based addresses
    • \n
    • Update – Refactor: Remove unused Props interface from AccountTools component
    • \n
    • Update – Remove WooPayments adding their sections into other gateways when enabled
    • \n
    • Update – update: Apple Pay domain verification file is no longer needed
    • \n
    • Update – update: remove _wcpay_feature_tokenized_cart_ece feature flag; remove client/express-checkout in favor of client/tokenized-express-checkout
    • \n
    • Dev – Add cover letter for fraudulent reason
    • \n
    • Dev – Add the components that will be used on the evidence form
    • \n
    • Dev – Add the logic “Save for later” when submitting evidence
    • \n
    • Dev – Add the new StepperPanel component.
    • \n
    • Dev – Bump WC tested up to version to 9.8.5
    • \n
    • Dev – chore: update @stripe/connect-js @stripe/react-connect-js @stripe/react-stripe-js @stripe/stripe-js dependencies
    • \n
    • Dev – Clean up database options after completing onboarding.
    • \n
    • Dev – Condition AliPay block tests under shouldRunWCBlocksTests
    • \n
    • Dev – Create a new feature flag for the evidence submission form
    • \n
    • Dev – Decouple the accordion component from the dispute details screen.
    • \n
    • Dev – fix: is_store_api_request utility on multisite with subdirectory install
    • \n
    • Dev – refactor: introduced MSW for mocking network requests in tests.
    • \n
    \n

    9.4.0 – 2025-05-21

    \n
      \n
    • Add – Add support for rendering fee tax details in the transaction timeline where available
    • \n
    • Fix – Keep the shipping costs structure intact when applying multi-currency adjustments.
    • \n
    • Fix – Only display the transaction URL for authorized intent statuses in WP Admin order page
    • \n
    • Fix – Optimize session handling by only setting cookies on cart and checkout pages, improving product page caching performance.
    • \n
    • Update – chore: remove “add payment methods” wizard task in favor of NOX flow.
    • \n
    • Update – chore: update “Tested up to” WordPress 6.8
    • \n
    • Update – Improve error message for embedded onboarding.
    • \n
    • Update – Improve the user experience of the WooCommerce Payments dispute management interface, focusing on visual clarity of the dispute steps component that guides merchants through the process of handling payment disputes and inquiries.
    • \n
    • Update – Perist payment method checkbox after capability request
    • \n
    • Update – refactor: adjust payment method settings UI to show inline notices and disabled checkboxes instead of (!) icon
    • \n
    • Update – Remove self-assessment fields from the onboarding flow
    • \n
    • Update – update: ensure Klarna is never part of ECE buttons
    • \n
    • Update – update: remove BNPL payment method messaging element/offering from checkout labels
    • \n
    • Update – Update ‘Activate payments’ task to use NOX flow when the reactify-settings-payments feature is enabled.
    • \n
    • Dev – refactor: created a “common” component for the payment method details on the transactions view, made for Affirm, Afterpay, Alipay, WeChat Pay, Grabpay, Multibanco
    • \n
    • Dev – Set payment method title for order before order status change to make it visible for status change actions.
    • \n
    • Dev – Unbundles wordpress/components for Dispute screens
    • \n
    • Dev – upgrade currency-switcher block to apiVersion 3
    • \n
    \n

    9.3.0 – 2025-05-05

    \n
      \n
    • Add – Add dedicated onboarding REST API endpoint for disabling test drive account, when possible.
    • \n
    • Add – Transaction Fees breakdown component in the Payment details.
    • \n
    • Fix – Disabled the Transactions Breakdown section to avoid misleading data in certain scenarios.
    • \n
    • Fix – fix: ensuring that Google Pay/Apple Pay buttons hide on shortcode cart & checkout when totals go to 0
    • \n
    • Fix – fix: Multibanco payment instructions font size adjustment on some block-based themes (e.g.: Twenty-Twenty-Four, Twenty-Twenty-Three)
    • \n
    • Fix – Fix a bug when the notice after downloading CSV that was mispositioned.
    • \n
    • Fix – Fix capabilities query param type
    • \n
    • Fix – Fixed inconsistent spacing between “Add to Cart” button and express checkout buttons on product pages.
    • \n
    • Fix – Fixes a styling issue when the payment method has a tooltip next to it, it was shifting the logo to the right.
    • \n
    • Fix – Fix for validation issue with POST params in some cases generating account session.
    • \n
    • Fix – Improve styling of the Embedded components to be closer to WPDS.
    • \n
    • Fix – Improve subscriptions code compatibility to avoid causing fatal errors.
    • \n
    • Fix – Remove the referrer check to update the fraud protection settings
    • \n
    • Fix – Set the onboarding test mode while creating test drive account with API
    • \n
    • Update – Add dedicated onboarding REST API endpoint for resetting onboarding, when possible.
    • \n
    • Update – Advanced fraud protection settings redesign.
    • \n
    • Update – chore: removed notices about the JCB capability request. JCB will be automatically requested for every new and existing merchant, regardless of the merchant country.
    • \n
    • Update – Include a failure message in the order notes when Stripe Billing subscription renewal has failed.
    • \n
    • Update – On the payment settings page, change the “Credit/Debit Cards” icon to a more generic icon and add a static list of card brands below the “Credit/Debit Cards” element.
    • \n
    • Update – Remove progressive onboarding eligibility check during embedded KYC session creation
    • \n
    • Update – Simplified refund handling with clear errors and standard reasons to aid resolution.
    • \n
    • Update – Updated the Stripe locales list.
    • \n
    • Update – Update log file format for better compatibility with the WooCommerce log viewer.
    • \n
    • Dev – Add Cursor config folder to .gitignore
    • \n
    • Dev – Bump WC tested up to version to 9.8.1
    • \n
    • Dev – Bump WC tested up to version to 9.8.2
    • \n
    • Dev – Delete NOX profile during account reset from Overview or Connect page.
    • \n
    • Dev – Fix Apple Pay and Google Pay not requested from NOX In-context flow.
    • \n
    • Dev – Merged WC_REST_Payments_Payment_Intents_Create_Controller back into WC_REST_Payments_Payment_Intents_Controller after confirming that the issue that caused the split was solved.
    • \n
    • Dev – Replace WCPay in messages with WooPayments
    • \n
    \n

    9.2.1 – 2025-04-23

    \n
      \n
    • Update – Update account session creation route definition to use POST rather than GET.
    • \n
    \n

    9.2.0 – 2025-04-09

    \n
      \n
    • Add – Add back button for tertiary+ level pages in WooPayments settings.
    • \n
    • Fix – fix: cancel GooglePay/ApplePay dialog on product page if add-to-cart product validation fails
    • \n
    • Fix – fix: fatal error when Klarna is enabled on an EU account and a non-EU currency is configured on the store.
    • \n
    • Fix – fix: Google Pay/Apple Pay display on pay-for-order pages.
    • \n
    • Fix – Fix deprecated hook woocommerce_rest_api_option_permissions
    • \n
    • Fix – Fix errors in WooCommerce email settings preview
    • \n
    • Fix – Fix Multi-currency conversion for WooCommerce Bookings range type cost adjustments
    • \n
    • Fix – Fix PMME display on shortcode cart with block-based themes.
    • \n
    • Fix – Fix WooPay enabled during NOX onboarding despite being disabled in recommended payment methods.
    • \n
    • Fix – Handle pending refunds properly
    • \n
    • Fix – Linked account ID to product ID to maintain consistency and prevent issues when the account ID changes.
    • \n
    • Fix – Prevent unsaved changes dialog when changes have been saved.
    • \n
    • Fix – Removed hard-coded lists of payment methods where possible.
    • \n
    • Fix – Remove unused wcpay_date_format_notice_dismissed option from the permission list
    • \n
    • Fix – Set background color to white for the Payments settings page
    • \n
    • Fix – update: ensure Google Pay/Apple Pay honor ‘Display prices during cart and checkout’ setting
    • \n
    • Fix – Update WooPay icon on order page.
    • \n
    • Update – Added _wcpay_net to the metadata.
    • \n
    • Update – Chore: check the array type in dismissed noticeces component.
    • \n
    • Update – chore: disable request of JCB capability
    • \n
    • Update – fix: Google Pay/Apple Pay HK test address override.
    • \n
    • Update – fix: parsing of error message for GooglePay/ApplePay buttons to be displayed to customer, instead of displaying generic error message on failure.
    • \n
    • Update – Improve the ECE container loading experience.
    • \n
    • Update – Move payment method map definition to the backend
    • \n
    • Update – Prevent creation of the renewal orders if original order was created in the different WooPayments mode.
    • \n
    • Update – refactor: delete temporary Google Pay/Apple Pay cart contents right after making the request, to improve performance and avoiding bots sending wrong session data in subsequent requests.
    • \n
    • Update – Remove fraud protection discoverability and update tour
    • \n
    • Update – Stripe Billing and Manual Capture incompatibility notice on the Settings page.
    • \n
    • Update – Update Settings page as per the new design
    • \n
    • Update – Update to Cash App Afterpay branding.
    • \n
    • Dev – Bump WC tested up to version to 9.7.1.
    • \n
    • Dev – Fix unneeded double square brackets in the post-merge script
    • \n
    • Dev – Removed the deprecated wcpay_exit_survey_dismissed option from the ALLOWED_OPTIONS list.
    • \n
    • Dev – Remove level3 retry logic and legacy request_with_level3_data method
    • \n
    • Dev – Updated the progressive parameter in the KYC session creation API to use a boolean type.
    • \n
    • Dev – We switch to using site instead of url as the key in the self assessment data to avoid XSS firewall false-positives.
    • \n
    \n

    9.1.0 – 2025-03-19

    \n
      \n
    • Add – Add a prompt to encourage merchants to provide feedback or leave a WordPress.org review for WooPayments
    • \n
    • Add – Add order failure message on Order Received page.
    • \n
    • Add – Add support to change payment method to 3DS card for subscriptions.
    • \n
    • Add – Add WeChat Pay response handling.
    • \n
    • Add – Implement Multibanco payment method
    • \n
    • Add – Implement specific handling for insufficient_balance_for_refund when refunding the admin order management
    • \n
    • Add – Inform Stripe when a store switch from coming soon to live mode
    • \n
    • Add – Show failure reason in details page for failed payout. This will help merchants get better support, or understand the next steps needed to fix the failing payouts.
    • \n
    • Fix – Add an order note when a recurring payment fails or when updating the payment method fails due to a missing or invalid payment token.
    • \n
    • Fix – Bypass enabled at checkout checks for rendering payment methods configs.
    • \n
    • Fix – Correct the dispute notice for Klarna Inquiries
    • \n
    • Fix – fix: GooglePay/ApplePay fail when there are more than 9 shipping options.
    • \n
    • Fix – fix: GooglePay/ApplePay script dependencies with WooCommerce 9.7
    • \n
    • Fix – Fix issue where survey modal is not scrollable on smaller screen sizes.
    • \n
    • Fix – Fix validation for support phone numbers for Singapore
    • \n
    • Fix – Improve payout failure messages for better clarity and accuracy
    • \n
    • Fix – Inconsitent Safe Mode notice with the latest Jetpack version
    • \n
    • Fix – Init PMME container in cart block so that it can be dynamically rendered once the requirements are met.
    • \n
    • Fix – Make sure that WooPayments gateways follow the main WooPayments card gateway in gateway ordering on the page.
    • \n
    • Fix – Manual capture fails in the transaction detail screen with a customized order number
    • \n
    • Fix – Properly extract styles when using the site editor.
    • \n
    • Fix – Renamed function parameters to avoid reserved keyword conflicts
    • \n
    • Fix – Resolved an issue on stores that had the Stripe Billing feature enabled (US-only) and then changed their store location to an ineligible country.
    • \n
    • Fix – Scoped CSS selectors for WP components to prevent unintended styling on other pages
    • \n
    • Fix – Show Express Checkout button previews in template editor
    • \n
    • Fix – Skip email input search in pay for order flow and use email provided in order data for WooPay iframe.
    • \n
    • Fix – Skip limits per currency check on admin pages
    • \n
    • Fix – Tests: Suppressed unexpected JSON output in maybe_handle_onboarding test by wrapping execution with ob_start() and ob_end_clean()
    • \n
    • Update – Better handling of HTTPs errors in embedded components.
    • \n
    • Update – Change wording for Sales Channel, Online Store, In-Person, and In-Person (POS)
    • \n
    • Update – Enhancements to country select field in onboarding.
    • \n
    • Update – feat: add compatibility notice for Google Pay with live mode accounts.
    • \n
    • Update – Jetpack packages in composer
    • \n
    • Update – Remove the 60 day survey admin note, since it will be redundant after we add the reviews prompt.
    • \n
    • Update – Track action complete event in Stripe Notification embedded component.
    • \n
    • Update – update: tokenize ECE initialization and update flow on pricing change.
    • \n
    • Dev – Add centralized payment method definitions to streamline implementation and maintenance of payment methods.
    • \n
    • Dev – Exclude playwright-report from eslint.
    • \n
    • Dev – Include transaction ID when requesting card reader fee charges summary.
    • \n
    • Dev – Refactors to the embedded compoennts logic.
    • \n
    • Dev – Update @wordpress/icons version to latest version 10.19.0
    • \n
    \n

    9.0.0 – 2025-02-26

    \n
      \n
    • Add – Add E2E tests for currency switching at checkout.
    • \n
    • Add – Add GrabPay payment method details to the View Transaction page.
    • \n
    • Add – Add GrabPay to the settings page when eligible.
    • \n
    • Add – Add loader indication for Stripe notifications banner component
    • \n
    • Add – Add payment method logos to checkout block card label.
    • \n
    • Add – Adds store_id property to body of WooPay tracker events.
    • \n
    • Add – Add Stripe embedded account notifications component on the Overview page
    • \n
    • Add – Add WeChat Pay settings.
    • \n
    • Add – Add WeChat Pay support to checkout.
    • \n
    • Add – feat: add initial support for Alipay settings
    • \n
    • Add – feat: add order notes to tokenized ECE GooglePay/ApplePay on blocks checkout
    • \n
    • Add – Implement checkout for GrabPay payments.
    • \n
    • Add – Pass the business name to the express checkout handler.
    • \n
    • Fix – Avoid duplicated payment methods detection notice on new stores.
    • \n
    • Fix – Avoid PMME init for unavailable BNPL use-cases.
    • \n
    • Fix – Ensure multi-currency widget markup getter don’t throw errors.
    • \n
    • Fix – Ensures that the tokenised cart for ECE implementation is disabled by default.
    • \n
    • Fix – fix: attribute selection from PDPs with tokenized ECE
    • \n
    • Fix – fix: tokenized ECE improvements with WC Deposits, Bookings, Bundles.
    • \n
    • Fix – Fixed an issue with the copy test card number on Astra theme
    • \n
    • Fix – Fixes incorrect defined statement for WC_Install::STORE_ID_OPTION constant.
    • \n
    • Fix – Fixes thrown PHP warning in checkout config.
    • \n
    • Fix – Fix Stripe KYC flow Woo color
    • \n
    • Fix – Fix the default value of the FRT advanced options.
    • \n
    • Fix – Improve how Stripe Billing integration is loaded to prevent unnecessary queries on every page load.
    • \n
    • Fix – Prevent fatal errors when subscription is deactivated due outdated version.
    • \n
    • Fix – Set orderby to none for order queries where checking if order exists.
    • \n
    • Fix – Update the size of Woo logo on the test drive onboarding page.
    • \n
    • Update – Add a notice indicating that overview page needs to be reloaded after completing the requirements in the embedded component.
    • \n
    • Update – Add JSON-formatted minimum amount details to the amount too small error message.
    • \n
    • Update – feat: GooglePay/ApplePay refactor to leverage Store API is enabled by default – second try.
    • \n
    • Update – Improve CSV export experience and deliver consistent reports via async transact platform service-based CSV exports.
    • \n
    • Update – Remove the receipt details tab in the card readers page.
    • \n
    • Update – update: add payment method functionality to honor WC rate limit.
    • \n
    • Update – update: tokenized ECE to exclude itemized items on rounding discrepancies of totals.
    • \n
    • Update – Update copy in the Woopayments Reset account modal for incomplete onboarding accounts
    • \n
    • Update – Update Credit Card / Debit Card label to Cards
    • \n
    • Update – Update handling for 0 feeAmount to be consistent with details page.
    • \n
    • Update – Update handling for refund processing in case of insufficient funds.
    • \n
    • Update – Update handling of PR as a country in the terminal locations endpoint.
    • \n
    • Update – Update the copy in the existing modal for resetting a WooPayments account.
    • \n
    • Dev – Add critical tag to tests that are part of the critical flows.
    • \n
    • Dev – Add new E2E tests to make sure a non-admin user, such as an editor, can access the wp-admin without errors.
    • \n
    • Dev – Add Slack integration to Playwright E2E tests.
    • \n
    • Dev – Cache calls to wc_get_orders in the incentives class
    • \n
    • Dev – Extract the Account Session logic from Embedded components onboarding into a reusable utility hook.
    • \n
    • Dev – Fix potential flakiness while creating a page with the checkout block.
    • \n
    • Dev – Remove Puppeteer references.
    • \n
    • Dev – Remove routing to the partially re-engineered payment process”
    • \n
    • Dev – Update E2E NPM scripts.
    • \n
    • Dev – Update E2E readme doc.
    • \n
    • Dev – Update E2E setup scripts to avoid conflicts with other containers and permissions.
    • \n
    • Dev – Update Github actions and workflows. Change e2e tests directory structure.
    • \n
    \n

    8.9.2 – 2025-02-21

    \n
      \n
    • Fix – Fixed WooPay opt-in race condition
    • \n
    \n

    8.9.1 – 2025-02-07

    \n
      \n
    • Fix – Ensures that the tokenised cart for ECE implementation is disabled by default.
    • \n
    \n

    8.9.0 – 2025-02-04

    \n
      \n
    • Add – Add a popover to WooPayments to present all possible payment methods
    • \n
    • Add – Added persistent column visibility preferences for reporting tables, allowing merchants to customize and save their preferred table view layouts across sessions.
    • \n
    • Add – Add support for WP_DEVELOPMENT_MODE. Any non-empty setting will force the plugin into development mode.
    • \n
    • Add – Add wcpay_capture_error_amount_too_small error type and minimum amount details when capturing payments below the supported …
    • \n
    \n", "description": "

    Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores.

    \n

    Securely accept major credit and debit cards, and allow customers to pay you directly without leaving your WooCommerce store. View and manage transactions from one convenient place – your WordPress dashboard.

    \n

    See payments, track cash flow into your bank account, manage refunds, and stay on top of disputes without the hassle of having to log into a separate payment processor.

    \n

    Manage transactions from the comfort of your store

    \n

    Features previously only available on your payment provider’s website are now part of your store’s integrated payments dashboard. This enables you to:

    \n\n

    Pay as you go

    \n

    WooPayments is free to install, with no setup fees or monthly fees. Our pay-as-you-go pricing model means we’re incentivized to help you succeed! Read more about transaction fees.

    \n

    Supported by the WooCommerce team

    \n

    Our global support team is available to answer questions you may have about WooPayments installation, setup, or use. For assistance, open a ticket on woocommerce.com.

    \n

    Getting Started

    \n

    Requirements

    \n
      \n
    • WordPress 6.0 or newer.
    • \n
    • WooCommerce 7.6 or newer.
    • \n
    • PHP 7.3 or newer.
    • \n
    \n

    Try it now

    \n

    To try WooPayments (previously WooCommerce Payments) on your store, simply install it and follow the prompts. Please see our Startup Guide for a full walkthrough of the process.

    \n", "screenshots": "
    1. \"View

      View Transactions

    2. \"View

      View Transaction Details

    3. \"Track

      Track Payouts

    4. \"Manage

      Manage Disputes

    ", "installation": "

    Install and activate the WooCommerce and WooPayments plugins, if you haven’t already done so, then go to “Payments” in the WordPress admin menu and follow the instructions there.

    \n"}, "versions": {"0.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.0.9.0.zip", "0.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.0.9.2.zip", "1.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.4.1.zip", "1.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.5.0.zip", "1.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.6.0.zip", "1.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.8.0.zip", "1.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.9.2.zip", "2.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.2.0.zip", "2.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.3.3.zip", "2.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.5.0.zip", "2.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.6.1.zip", "2.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.7.1.zip", "2.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.8.4.zip", "2.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.9.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.0.0.zip", "3.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.1.0.zip", "3.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.2.3.zip", "3.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.4.0.zip", "3.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.5.0.zip", "3.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.6.1.zip", "3.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.7.0.zip", "3.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.8.2.zip", "3.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.9.4.zip", "4.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.0.3.zip", "4.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.1.1.zip", "4.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.2.3.zip", "4.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.3.2.zip", "4.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.4.2.zip", "4.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.5.3.zip", "4.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.6.1.zip", "4.6.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.6.2.zip", "4.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.7.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.7.4.zip", "4.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.8.3.zip", "4.8.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.8.4.zip", "4.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.9.2.zip", "4.9.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.9.3.zip", "5.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.6.zip", "5.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.5.zip", "5.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.2.4.zip", "5.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.3.3.zip", "5.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.4.0.zip", "5.4.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.4.2.zip", "5.4.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.4.3.zip", "5.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.5.2.zip", "5.5.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.5.3.zip", "5.5.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.5.4.zip", "5.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.6.0.zip", "5.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.6.1.zip", "5.6.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.6.2.zip", "5.6.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.6.3.zip", "5.6.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.6.4.zip", "5.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.7.1.zip", "5.7.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.7.2.zip", "5.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.8.2.zip", "5.8.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.8.3.zip", "5.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.9.2.zip", "6.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.0.1.zip", "6.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.1.2.zip", "6.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.2.2.zip", "6.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.3.2.zip", "6.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.4.2.zip", "6.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.5.1.zip", "6.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.6.1.zip", "6.6.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.6.2.zip", "6.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.7.0.zip", "6.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.7.1.zip", "6.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.8.0.zip", "6.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.9.2.zip", "7.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.0.0.zip", "7.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.1.0.zip", "7.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.2.0.zip", "7.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.3.0.zip", "7.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.4.0.zip", "7.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.5.0.zip", "7.5.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.5.1.zip", "7.5.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.5.2.zip", "7.5.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.5.3.zip", "7.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.6.0.zip", "7.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.7.0.zip", "7.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.8.0.zip", "7.8.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.8.1.zip", "7.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.9.1.zip", "7.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.9.2.zip", "8.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.0.2.zip", "8.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.1.0.zip", "8.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.1.1.zip", "8.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.2.0.zip", "8.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.2.1.zip", "8.2.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.2.2.zip", "8.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.3.0.zip", "8.3.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.3.1.zip", "8.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.4.0.zip", "8.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.5.0.zip", "8.5.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.5.1.zip", "8.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.6.0.zip", "8.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.6.1.zip", "8.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.7.0.zip", "8.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.7.1.zip", "8.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.8.0.zip", "8.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.9.0.zip", "8.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.9.1.zip", "8.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.9.2.zip", "9.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.0.0.zip", "9.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.1.0.zip", "9.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.2.0.zip", "9.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.2.1.zip", "9.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.3.0.zip", "9.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.4.0.zip", "9.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.5.0.zip", "9.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.6.0.zip", "9.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.7.0.zip", "9.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.8.0.zip", "9.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.9.0.zip", "trunk": "https://downloads.wordpress.org/plugin/woocommerce-payments.zip", "10.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.10.0.0.zip", "10.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.10.1.0.zip", "10.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.10.1.1.zip"}, "downloaded": 38966728, "description": "

    Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores.

    \n

    Securely accept major credit and debit cards, and allow customers to pay you directly without leaving your WooCommerce store. View and manage transactions from one convenient place – your WordPress dashboard.

    \n

    See payments, track cash flow into your bank account, manage refunds, and stay on top of disputes without the hassle of having to log into a separate payment processor.

    \n

    Manage transactions from the comfort of your store

    \n

    Features previously only available on your payment provider’s website are now part of your store’s integrated payments dashboard. This enables you to:

    \n\n

    Pay as you go

    \n

    WooPayments is free to install, with no setup fees or monthly fees. Our pay-as-you-go pricing model means we’re incentivized to help you succeed! Read more about transaction fees.

    \n

    Supported by the WooCommerce team

    \n

    Our global support team is available to answer questions you may have about WooPayments installation, setup, or use. For assistance, open a ticket on woocommerce.com.

    \n

    Getting Started

    \n

    Requirements

    \n
      \n
    • WordPress 6.0 or newer.
    • \n
    • WooCommerce 7.6 or newer.
    • \n
    • PHP 7.3 or newer.
    • \n
    \n

    Try it now

    \n

    To try WooPayments (previously WooCommerce Payments) on your store, simply install it and follow the prompts. Please see our Startup Guide for a full walkthrough of the process.

    \n", "donate_link": "", "num_ratings": 121, "screenshots": {"1": {"src": "https://ps.w.org/woocommerce-payments/assets/screenshot-1.jpg?rev=3234740", "caption": "View Transactions"}, "2": {"src": "https://ps.w.org/woocommerce-payments/assets/screenshot-2.jpg?rev=3234740", "caption": "View Transaction Details"}, "3": {"src": "https://ps.w.org/woocommerce-payments/assets/screenshot-3.jpg?rev=3234740", "caption": "Track Payouts"}, "4": {"src": "https://ps.w.org/woocommerce-payments/assets/screenshot-4.jpg?rev=3234740", "caption": "Manage Disputes"}}, "support_url": "https://wordpress.org/support/plugin/woocommerce-payments/", "contributors": {"automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}}, "last_updated": "2025-10-27 6:20am GMT", "preview_link": "", "requires_php": "7.3", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/woocommerce-payments.10.1.1.zip", "author_profile": "https://profiles.wordpress.org/woocommerce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-fd2e-7205-aab2-8e14db3975e6", "name": "WooPayments: Integrated WooCommerce Payments", "slug": "woocommerce-payments", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761546000, "version": "10.1.1"}, "support_threads": 22, "requires_plugins": ["woocommerce"], "short_description": "Securely accept credit and debit cards on your WooCommerce store. Manage payments without leaving your WordPress dashboard. Only with WooPayments.", "author_block_count": 1, "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 15}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1eac-7382-925d-db0cc0a2d272', 'did:web:api.aspiredev.org:packages:wp-plugin:woocommerce-paypal-payments', 'woocommerce-paypal-payments', 'WooCommerce PayPal Payments', '

    WooCommerce PayPal Payments is an all-in-one solution to help you maximize conversions by offering PayPal, Venmo (US), Pay Later options, credit and debit cards, and more.

    -

    Features

    -
      -
    • Instant access to funds while payment is processing.
    • -
    • Fraud detection and global compliance (including PCI, PSD2, and 3D Secure).
    • -
    • Faster checkout via PayPal buttons on product pages and in-cart.
    • -
    • Convenience to pay over time with PayPal Pay Later.
    • -
    • Allow Venmo shoppers (US only) to share purchases with friends.
    • -
    • Standard and Advanced Card Processing options.
    • -
    • Country-specific payment methods to build global trust.
    • -
    • Multiple subscription payment options to help drive repeat business.
    • -
    -

    Get started

    -

    If you’re new to PayPal, add it to your store today. Existing user? Upgrade your integration now to access these exciting new features.

    -

    It pays to PayPal

    -

    Get instant access to funds in your PayPal business account while payment is processing. Save time and money with fraud detection and Seller Protection features†.

    -

    Plus, you’ll meet global compliance standards (such as PCI, PSD2, SCA, and 3D Secure), bringing international markets within reach.

    -

    †Available on eligible purchases. Limits apply.

    -

    Flexible payment options

    -

    Shoppers are nearly three times more likely to buy when you offer PayPal.¹ Increase conversions by automatically displaying PayPal buttons on product pages, in-cart, and at checkout.

    -

    PayPal Pay Later options help boost conversion rates and increase cart sizes by 39%.² Let customers pay over time while you get paid upfront — at no additional cost. Available in select countries. Learn more about Pay Later messaging.

    -

    Venmo users spend 2.2 times more annually on online purchases than other online buyers.³ Now you can reach Venmo shoppers (US only) and allow them to share their purchases with friends.

    -

    Country-specific payments

    -
      -
    • Standard Card Processing: Suitable for all business and personal seller accounts. Card transactions are managed via a prebuilt user experience, simplifying compliance.
    • -
    • Advanced Card Processing: Customize the look, feel, and placement of debit and credit card payment fields. You can also use fraud protection tools to set up personal risk tolerance filters.
    • -
    -

    Earn recurring revenue through subscriptions

    -

    Drive repeat business for stable, predictable income using WooCommerce Subscriptions or PayPal Subscriptions.

    -

    You can also use PayPal’s Vaulting feature to:

    -
      -
    • Offer flexible plans with fixed or quantity-based pricing.
    • -
    • Set billing cycles for any period.
    • -
    • Offer discounted trial periods or prorated payments.
    • -
    -

    With no monthly or setup fees, it’s simple for your customers — and great for your business (account approval required).

    -

    Legal Disclosures:

    -

    *For Australian users, the PayPal service is provided by PayPal Australia Pty Limited AFSL 304962. Any information provided is general only and does not take into account your objectives, financial situation, or needs. Please read and consider the CFSGPDS (paypal.com.au) before acquiring or using the service. See website for TMD.

    -
      -
    1. An online study commissioned by PayPal and conducted by Netfluential in November 2020, involving 1,000 US online shoppers ages 18-39.
    2. -
    3. PayPal Q2 Earnings 2021.
    4. -
    5. Edison Trends commissioned by PayPal, April 2020 to March 2021. Edison Trends conducted a behavioral panel of email receipts from 306,939 US consumers and 3.4+ M purchases at a vertical level between Pay with Venmo and non-Venmo users during a 12-month period.
    6. -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WooCommerce PayPal Payments", "slug": "woocommerce-paypal-payments", "tags": {"paypal": "paypal", "payments": "payments", "ecommerce": "ecommerce", "credit-card": "credit card", "woocommerce": "woocommerce"}, "added": "2020-10-15", "icons": {"1x": "https://ps.w.org/woocommerce-paypal-payments/assets/icon-128x128.png?rev=3234615", "2x": "https://ps.w.org/woocommerce-paypal-payments/assets/icon-256x256.png?rev=3234615"}, "author": "WooCommerce", "rating": 50, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/woocommerce-paypal-payments/assets/banner-772x250.png?rev=3234615", "high": "https://ps.w.org/woocommerce-paypal-payments/assets/banner-1544x500.png?rev=3234615"}, "ratings": {"1": 277, "2": 14, "3": 12, "4": 14, "5": 166}, "version": "3.2.1", "homepage": "https://woocommerce.com/products/woocommerce-paypal-payments/", "requires": "6.5", "sections": {"faq": "\n
    \nWhere can I find documentation and a setup guide?\n\n

    \n

    You’ve come to the right place. Our documentation for WooCommerce PayPal Payments includes detailed setup instructions, troubleshooting tips, and more.

    \n

    \n
    \nWhere can I get support, report bugs, or request new features?\n\n

    \n

    To start, review our troubleshooting tips for answers to common questions. Then, if you need further assistance, get in touch via the official support forum.

    \n

    Please report bugs via GitHub or the official support forum. You can request (or vote for) new features on our feature request board.

    \n

    \n
    \nWooCommerce PayPal Payments has stopped working — what should I do?\n\n

    \n

    First, diagnose the issue using our troubleshooting guide. If you notice an error after updating an extension or theme, there could be a compatibility issue.

    \n

    We recommend running a conflict test using Health Check (which allows you to disable themes and extensions without affecting your live store) or testing via a staging site.

    \n

    \n
    \nDoes this extension support subscriptions?\n\n

    \n

    Yes! WooCommerce PayPal Payments can be used with WooCommerce Subscriptions and PayPal Subscriptions. You can also use Vaulting to save customers’ payment methods for future transactions. Review our subscriptions FAQ.

    \n

    \n
    \nDoes this extension support WooCommerce Blocks?\n\n

    \n

    Yes! WooCommerce PayPal Payments offers experimental support for Cart and Checkout Blocks. Review our Blocks FAQ.

    \n

    \n
    \nAre there any new features in development?\n\n

    \n

    Yes! Review our feature previews FAQ for more details.

    \n

    \n
    \nCan I contribute to WooCommerce PayPal Payments?\n\n

    \n

    Yes, you can! Join our GitHub repository.

    \n

    If you like this extension, please leave a review on WordPress.org or WooCommerce.com — your valuable feedback is appreciated.

    \n

    \n
    \nMy question is not listed; where can I find more answers?\n\n

    \n

    Review our general or contact support.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support très professionnel

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kazam567 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Suite à un souci rencontré sur mon site j''ai fait appel au support qui m''a bien accompagné dans la résolution de mon problème.

    \n\n\n\n

    Réponses rapide et efficaces, au top !!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iweb365 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very good plugin. Easy to deploy and really good support.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works as advertised

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Schnazalope on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Had a bit of a hiccup when setting up this plugin in that the new settings look was not giving me all options. Contacted support and got things fixed quickly. Moved from the old Paypal standard plugin to this which allowed for more payment options like Google and Apple pay.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Card Testing issue

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cacnsa on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Jamie Ong responded very quickly and provided the support I needed to resolve my issue. So far, so good!

    \n\n\n\n

    Thanks again Jamie!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and Reliable Response

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy orthovet on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Our team sent in a ticket for an issue with the PayPal Advanced Card Proccessing and we were glad to see a response and a solution within a few hours. We were expecting it to take a while as we have experienced with support tickets for other programs, so our team was excited to get our issues resolved so quickly. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super helpful, quick response, and successful solution!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy KristiHugs (oceanbuddha) on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Krystian was so helpful and patient with me! He was able to quickly understand the issue and offered solutions to rectify the problem. He followed up quickly as well. Best customer service EVER! thank you!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Technical support Jamie is always very helpful to me.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shopofan on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My theme, Woodmart, conflicts with the payment plugin, preventing me from calling many interfaces. I consulted technician Jamie, whose patient and professional guidance was extremely helpful. Although the conflict persists, he provided an alternative solution enabling me to call interfaces normally. I am very grateful for Jamie''s assistance.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy awack on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Jamie Ong is on it. i am very impressed with the cs help they have offered. the plugin runs very well and offers options i did not know. like the fact that it will send your tracking info back to PayPal . I was only expecting the Plugin to allow my PayPal account connection for payments. But if you add the tracking info back to the woo com pp plugin it will then forward that to your PayPal account. Thank you for all the help and the great work on the plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    support is great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy philgo13 on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    krystian was very reactive and help me solve a big problem on my website thanks a lot

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super helpful support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Úrsula Estévez (uestevez) on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We had an issue with the discounts not being applied on the PayPal payment page (which was not caused by the PayPal plugin), and the support we received was wonderful — they went above and beyond to help us solve the problem.

    \n
    \n
    \n", "changelog": "

    3.2.1 – 2025-10-20

    \n
      \n
    • Enhancement – Make plugin upgrade hooks safer #3789
    • \n
    • Enhancement – Webhook transient lock #3790
    • \n
    \n

    3.2.0 – 2025-10-15

    \n
      \n
    • Enhancement – Enable AppSwitch and SSSC feature flags by default #3724
    • \n
    • Enhancement – Remove temporary Pay Later messaging auto-enablement logic #3680
    • \n
    • Enhancement – Align Fastlane currency support with ACDC matrix #3697
    • \n
    • Enhancement – Add hooks at the start of Create/Approve Order requests #3717
    • \n
    • Enhancement – Don’t filter tokens on changing payment method of a subscription (author @gedex) #3617
    • \n
    • Enhancement – Reorganize ACDC and Fastlane gateway settings modals #3652
    • \n
    • Enhancement – Update PayPal Package Tracking Carriers List #3630
    • \n
    • Enhancement – Display help center section #3587
    • \n
    • Enhancement – Update Fastlane card placeholder design #3625
    • \n
    • Enhancement – Add Fastlane session restoration post payment failure #3598
    • \n
    • Fix – Check for messages visibility setting before rendering #3686
    • \n
    • Fix – Fatal error where a callback expects \\WC_Payment_Gateway but got RequestHandler (author @gedex) #3660
    • \n
    • Fix – Continuation with PayPal subscriptions #3656
    • \n
    • Fix – Add fallback for getting subscription order address in classic contexts #3657
    • \n
    • Fix – Fastlane – UK and Australia – Add Fastlane to onboarding screen and four step #3635
    • \n
    • Fix – Check variation stock for all variable products #3605
    • \n
    • Fix – Google Pay button enabled state on variable product pages #3602
    • \n
    • Fix – Pay by link with PayPal error on front end when no shipping address #3627
    • \n
    • Fix – Sync checkout fields and headers in Fastlane flow #3628
    • \n
    • Fix – Classic checkout – Guest user – Trial vaulting subscription validation does not work #3663
    • \n
    • Fix – Prevent redirect on checkout failure for trial vaulting subscriptions #3644
    • \n
    • Fix – Contacts race condition in block #3518
    • \n
    • Fix – Add shipping-related filters to avoid MISSING_%field_name% errors #3586
    • \n
    • Fix – Continuation mode in Elementor checkout #3612
    • \n
    \n

    3.1.2 – 2025-09-30

    \n
      \n
    • Change – Make migration available again #3710
    • \n
    • Fix – Override flag to keep BCDC for ACDC merchants during migration #3712
    • \n
    • Fix – Prevent rare fatal error when shipping address is missing #3655
    • \n
    • In branded-only mode, every merchant has BCDC #3713
    • \n
    \n

    3.1.1 – 2025-09-27

    \n
      \n
    • Fix – Fix BCDC in branded-only mode #3699
    • \n
    • Fix – Restore BCDC button for ACDC merchants in legacy UI #3703
    • \n
    • Change – Remove all migration UX/notifications #3705
    • \n
    \n

    3.1.0 – 2025-09-02

    \n
      \n
    • Enhancement – Fastlane now available for British & Australian merchants #3589
    • \n
    • Enhancement – Pay Later messaging now auto-enabled for eligible merchants based on the STAY UPDATED preference. Review the Pay Later settings to customize or disable. #3600
    • \n
    • Enhancement – Add buttons to copy merchant credentials in the Settings tab #3561
    • \n
    • Enhancement – Skip “Payment Methods” step for branded-only + BCDC and casual sellers #3547
    • \n
    • Enhancement – Add “Things to do next” item after settings migration #3536
    • \n
    • Enhancement – Phase 2: Settings Migration – Add Woo Inbox item #3599
    • \n
    • Enhancement – Create an API function for adding tracking info #3588
    • \n
    • Enhancement – Add polling mechanism for renderer wrapper to prevent race condition for Pay Later messaging #3577
    • \n
    • Enhancement – Status report entry for “New UI active” and “Branded only” #3539
    • \n
    • Fix – Apple Pay does not update shipping method or address changes on Classic Checkout #3524
    • \n
    • Fix – Prevent early is_enabled() check for Google Pay button in new UI #3566
    • \n
    • Fix – Subscriptions migrated from PPEC plugin to PayPal Payments fails on renewal #3549
    • \n
    • Fix – Google Pay transaction from block pages #3542
    • \n
    • Fix – Remove redundant authorize call in subscription renewal handler #3543
    • \n
    • Fix – Empty description handling and logo display for PayPal gateway not working as expected #3527
    • \n
    • Fix – When Apple Pay is enabled, empty space for Apple Pay button is showing on all pages if buyer is not eligible #3550
    • \n
    • Fix – Undefined properties error in checkout block #3551
    • \n
    • Fix – Make the state address data optional to fix non US-CA compatibility for Fastlane #3535
    • \n
    • Fix – Disable the card button if BCDC is disabled #3532
    • \n
    • Fix – Remove data-sdk-client-token field when not needed #3540
    • \n
    • Fix – “No PayPal order ID found in order meta” logged after using “Proceed to PayPal” on block checkout #3189
    • \n
    • Fix – Use is_acdc_enabled() to prevent ACDC interference with BCDC in non-ACDC countries #3594
    • \n
    • Fix – Remove the specified gateway when the button is disabled #3556
    • \n
    \n

    3.0.9 – 2025-07-31

    \n
      \n
    • Fix – Payment via “Proceed to PayPal” may result in a redirect loop #3570
    • \n
    \n

    3.0.8 – 2025-07-28

    \n
      \n
    • Enhancement – Migration from Legacy Settings to New Settings as opt-in via banner & button #3491
    • \n
    • Enhancement – Replace call to billing-agreements/agreement-tokens with checking the capabilities for Reference Transactions #3495
    • \n
    • Enhancement – Add Fastlane 3D Secure support #3493
    • \n
    • Enhancement – Improved PHP 8.4 compatibility #3534
    • \n
    • Fix – INVALID_REQUEST error due to wrong landing_page value after upgrade to 3.0.7 #3521
    • \n
    • Fix – Incorrect Amount via Express Payment for WooCommerce Product Bundles #3516
    • \n
    • Fix – Onboarding failed via “Connect to PayPal” in new UI due to race condition #3385
    • \n
    • Fix – Fatal error when PayPal Payments is active without WooCommerce #3502
    • \n
    • Fix – PayPal Subscription transaction failed in various scenarios #3515
    • \n
    • Fix – Rounding differences potentially lead to order failure (author @luzat) #3373
    • \n
    • Fix – Google Pay payment on block checkout may fail when ACDC is default payment selection #3506
    • \n
    • Fix – Product Prices Disappear in some cases when WooCommerce Subscriptions is active #3519
    • \n
    \n

    3.0.7 – 2025-07-01

    \n
      \n
    • Enhancement – Remove application_context in favor of experience_context object #3431
      \nNOTE: If you were modifying the application_context object programmatically, you may need to update your code to utilize experience_context for your customizations.
    • \n
    • Enhancement – Add Contact Module feature
    • \n
    • Enhancement – Add WooCommerce Tracks integration
    • \n
    • Enhancement – Onboarding notification for Firefox browser #3433
    • \n
    • Enhancement – Reset BN code on plugin uninstall #3471
    • \n
    • Enhancement – Add “Stay updated with PayPal” option in the old and new settings UI #3430
    • \n
    • Enhancement – Add French Territories to the supported ACDC countries list #3438
    • \n
    • Enhancement – Auto-enable logging during onboarding #3369
    • \n
    • Fix – DUPLICATE_INVOICE_ID in Sandbox due to missing invoice prefix #3435
    • \n
    • Fix – Subscription product could not be unlinked from PayPal Subscription #3429
    • \n
    • Fix – PayPal button greyed out on single product page for variable products with >2 attributes #3395
    • \n
    • Fix – APMs automatically enabled despite selecting “No, …” during onboarding #3362
    • \n
    • Fix – Ditch items logic does not work when using saved card payment #3476
    • \n
    • Fix – billing-agreements endpoint called too frequently when not enabled for Reference Transactions #3459
    • \n
    \n

    3.0.6 – 2025-05-27

    \n
      \n
    • Enhancement – Implement 3D secure check for Google Pay #3163
    • \n
    • Enhancement – Add options for “Disable Credit Cards” and “Language” #3226
    • \n
    • Enhancement – Improve the loading experience for the new UI #3269
    • \n
    • Enhancement – Enhance the accessibility of the new Settings UI #3294
    • \n
    • Enhancement – Add capture pre-conditions for card payment source #3300
    • \n
    • Enhancement – Enable all/Disable all toggle next to Alternative Payment methods on Payment Methods tab #3321
    • \n
    • Enhancement – Add installment notifications for Mexico store locations #3404, #3405
    • \n
    • Fix – Various issues for Mexico store locations during onboarding & plugin configuration #3403
    • \n
    • Fix – APFS plugin triggers incorrect renewal date for simple products as subscriptions #3272
    • \n
    • Fix – PayPal Smart Button incompatible with WooCommerce Subscription Switching #3291
    • \n
    • Fix – Fastlane gateway visible on Pay for Order page #3293
    • \n
    • Fix – Pay Later Messaging configurator preview alignment #3305
    • \n
    • Fix – Product editing screen for variable products unresponsive (PayPal Subscriptions API error) #3311
    • \n
    • Fix – Update selector for hiding express checkout #3318
    • \n
    • Fix – ‘Ignoring unknown key’ console warnings when modifying payment gateway state #3322
    • \n
    • Fix – Ratepay Payment Option Not Available for Unassembled Product Bundles #3325
    • \n
    • Fix – “Disable Specific credit cards” shows “Select” as a possible value #3342
    • \n
    • Fix – Stripe not visible at checkout when PayPal Subscriptions API is enabled #3343
    • \n
    • Fix – Ensure correct ACDC behavior for non-ACDC countries (e.g., Vietnam) #3351
    • \n
    • Fix – ACDC payments for Subscriptions failing at checkout for new users #3355
    • \n
    • Fix – BCDC not enabled by default when cards selected during onboarding #3366
    • \n
    • Fix – Block checkout – Address form missing after payment on Product and Cart pages #3371
    • \n
    • Fix – Payments with Debit & Credit Cards failing #3376
    • \n
    • Fix – PayPalGateway::process_payment on completed order leads to order failure #3374
    • \n
    • Fix – New settings UI background color impacted by WooCommerce 9.9+ #3407
    • \n
    • Fix – Can not save payments if subscriptions is not selected when onboarding #3408
    • \n
    \n

    3.0.5 – 2025-04-23

    \n
      \n
    • Fix – Onboarding screen blank when WooPayments plugin is active #3312
    • \n
    \n

    3.0.3 – 2025-04-08

    \n
      \n
    • Fix – BN code was set before the installation path was initialized #3309
    • \n
    • Fix – Things to do next referenced Apple Pay while in branded-only mode #3308
    • \n
    • Fix – Disabled payment methods were not hidden in reactified WooCommerce Payments settings tab #3290
    • \n
    \n

    3.0.2 – 2025-04-03

    \n
      \n
    • Enhancement – Check the branded-only flag when settings-UI is loaded the first time #3278
    • \n
    • Enhancement – Implement a Cache-Flush API #3276
    • \n
    • Enhancement – Disable the mini-cart location by default #3284
    • \n
    • Enhancement – Remove branded-only flag when uninstalling PayPal Payments #3295
    • \n
    • Fix – Welcome screen lists “all major credit/debit cards, Apple Pay, Google Pay,” in branded-only mode #3281
    • \n
    • Fix – Correct heading in onboarding step 4 in branded-only mode #3282
    • \n
    • Fix – Hide the payment methods screen for personal user in branded-only mode #3286
    • \n
    • Fix – Enabling Save PayPal does not disable Pay Later messaging #3288
    • \n
    • Fix – Settings UI: Fix Feature button links #3285
    • \n
    • Fix – Create mapping for the 3d_secure_contingency setting #3262
    • \n
    • Fix – Enable Fastlane Watermark by default in new settings UI #3296
    • \n
    • Fix – Payment method screen is referencing credit cards, digital wallets in branded-only mode #3297
    • \n
    \n

    3.0.1 – 2025-03-26

    \n
      \n
    • Enhancement – Include Fastlane meta on homepage #3151
    • \n
    • Enhancement – Include Branded-only plugin configuration for certain installation paths
    • \n
    • Enhancement – Include UI status in system report #3248
    • \n
    • Enhancement – Minor enhancements in new UI scrolling & highlighting behavior #3240
    • \n
    • Fix – “Warning: Class ‘WooCommerce\\PayPalCommerce\\Vendor\\Stringable’ not found” after 3.0.0 update #3235
    • \n
    • Fix – ACDC does not work on the Classic Checkout when using the new UI #3219
    • \n
    • Fix – “Send only” country banner not displayed in the new UI #3236
    • \n
    • Fix – Typo in welcome screen #3258
    • \n
    • Fix – onboarding.js file from old UI enqueued in new UI #3263
    • \n
    • Fix – Onboarding in new UI with personal account does not hide all ineligible features #3254
    • \n
    • Fix – ACDC not defaulting on for eligible merchants after onboarding with Expanded Checkout selection #3250
    • \n
    • Fix – “Failed to fetch onboarding URL” error when onboarding with Subscriptions selected from non-Vault region #3242
    • \n
    • Fix – Fastlane SDK token requested when Fastlane is disabled #3009
    • \n
    • Fix – Subscription renewal payment via ACDC may fail in some cases due to 3D Secure #3098
    • \n
    • Fix – Error: _load_textdomain_just_in_time Called Incorrectly when running docker compose #3172
    • \n
    • Fix – Shipping callback not loading for guest users in some scenarios #3169
    • \n
    • Fix – Phone number not saved in WC order when using Pay Now experience #3160
    • \n
    • Fix – Phone number not pre-populated on Checkout block in continuation mode #3160
    • \n
    • Fix – “Unfortunately, your credit card details are not valid” shown with actually valid card during checkout with invalid postcode. #3067
    • \n
    • Fix – Incorrect Subscription Cancellation Handling with PayPal Subscriptions #3046
    • \n
    • Tweak – Added PayPal as contributor #3259
    • \n
    \n

    3.0.0 – 2025-03-17

    \n
      \n
    • Enhancement – Redesigned settings UI for new users #2908
    • \n
    • Enhancement – Enable Fastlane by default on new store setups when eligible #3199
    • \n
    • Enhancement – Enable support for advanced card payments and features for Hong Kong & Singapore #3089
    • \n
    • Fix – Dependency conflict with more recent psr/log versions on PHP8+ #2993
    • \n
    • Fix – PayPal Checkout Gateway subscription migration layer not renewing subscriptions #2699
    • \n
    • Fix – Fatal error when gateway settings initialized too early by third-party plugin #2766
    • \n
    • Fix – Next Payment date for Subscriptions not updating when processing a PayPal Subscriptions renewal order #2959
    • \n
    • Fix – Changing the subscription payment method to ACDC triggers error #2891
    • \n
    • Fix – Standard Card button not appearing in standalone gateway for free trial subscription products #2935
    • \n
    • Fix – Validation error when using Trustly payment method #3031
    • \n
    • Fix – Error in continuation mode due to wrong gateway selection on Checkout block #2996
    • \n
    • Fix – Error in error in PayLaterConfigurator #2989
    • \n
    • Tweak – Removed currency requirement for Vault v3 #2919
    • \n
    • Tweak – Update plugin author from WooCommerce to PayPal
    • \n
    \n

    2.9.6 – 2025-01-06

    \n
      \n
    • Fix – NOT_ENABLED_TO_VAULT_PAYMENT_SOURCE on PayPal transactions when using ACDC Vaulting without PayPal Vault approval #2955
    • \n
    • Fix – Express buttons for Free Trial Subscription products on Block Cart/Checkout trigger CANNOT_BE_ZERO_OR_NEGATIVE error #2872
    • \n
    • Fix – String translations not applied to Card Fields on Block Checkout #2934
    • \n
    • Fix – Fastlane component included in script when Fastlane is disabled #2911
    • \n
    • Fix – Zero amount line items may trigger CANNOT_BE_ZERO_OR_NEGATIVE error after rounding error #2906
    • \n
    • Fix – “Save changes” is grey and unclickable when switching from Sandbox to Live #2895
    • \n
    • Fix – plugin queries variations when button/messaging is disabled on single product page #2896
    • \n
    • Fix – Use get_id instead of get_order_number on setting custom_id (author @0verscore) #2930
    • \n
    • Enhancement – Improve fraud response order notes for Advanced Card Processing transactions #2905
    • \n
    • Tweak – Update the minimum plugin requirements to WordPress 6.5 & WooCommerce 9.2 #2920
    • \n
    \n

    2.9.5 – 2024-12-10

    \n
      \n
    • Fix – Early translation loading triggers Function _load_textdomain_just_in_time was called incorrectly. notice #2816
    • \n
    • Fix – ACDC card fields not loading and payment not successful when Classic Checkout Smart Button Location disabled #2852
    • \n
    • Fix – ACDC gateway does not appear for guests when is Fastlane enabled and a subscription product is in the cart #2745
    • \n
    • Fix – “Voide authorization” button does not appear for Apple Pay/Google Pay orders when payment buttons are separated #2752
    • \n
    • Fix – Additional payment tokens saved with new customer_id #2820
    • \n
    • Fix – Vaulted payment method may not be displayed in PayPal button for return buyer #2809
    • \n
    • Fix – Conflict with EasyShip plugin due to shipping methods loading too early #2845
    • \n
    • Fix – Restore accidentally removed ACDC currencies #2838
    • \n
    • Enhancement – Native gateway icon for PayPal & Pay upon Invoice gateways #2712
    • \n
    • Enhancement – Allow disabling specific card types for Fastlane #2704
    • \n
    • Enhancement – Fastlane Insights SDK implementation for block Checkout #2737
    • \n
    • Enhancement – Hide split local APMs in Payments settings tab when PayPal is not enabled #2703
    • \n
    • Enhancement – Do not load split local APMs on Checkout when PayPal is not enabled #2792
    • \n
    • Enhancement – Add support for Button Options in the Block Checkout for Apple Pay & Google Pay buttons #2797 #2772
    • \n
    • Enhancement – Disable “Add payment method” button while saving ACDC payment #2794
    • \n
    • Enhancement – Sanitize soft_descriptor field #2846 #2854
    • \n
    \n

    2.9.4 – 2024-11-11

    \n
      \n
    • Fix – Apple Pay button preview missing in Standard payment and Advanced Processing tabs #2755
    • \n
    • Fix – Set “Sold individually” only for subscription connected to PayPal #2710
    • \n
    • Fix – Ensure Google Pay button does not appear for subscriptions #2718
    • \n
    • Fix – PayPal Subscriptions API renewal order not created in WooCommerce #2612
    • \n
    • Fix – Apple Pay button disappears on Classic Checkout #2722
    • \n
    • Fix – Google Pay and Apple Pay as separate gateways does not show button when checkout remove from button locations #2756
    • \n
    • Fix – Add GW refund support for Apple Pay #2746
    • \n
    • Fix – PayPal Subscriptions cancel and suspend from Subscriptions list page does not work #2632
    • \n
    • Fix – Displaying of HTML tags in product title on choosing a product for tracking (2801) #2701
    • \n
    • Fix – Payment with OXXO cause continuation state for next payment #2702
    • \n
    • Fix – Fix problems with autoptimize plugin #2705
    • \n
    • Fix – Missing custom field PayPal Transaction Fee for OXXO #2700
    • \n
    • Enhancement – Add void button #2678
    • \n
    • Enhancement – Use basic redirect gateway when checkout smart buttons disabled #2714
    • \n
    • Enhancement – Receive button properties from the Checkout Block #2448
    • \n
    • Enhancement – Run PPEC\\DeactivateNote query only in backend #2719
    • \n
    • Enhancement – Prevent plugin use for “Send only” countries #2721
    • \n
    • Enhancement – Do not add pay later button in editor #2570
    • \n
    • Enhancement – Axo: Remove the submit button when Fastlane is disabled #2720
    • \n
    • Enhancement – Sync the PayPal product page button state to Apple/Google Pay buttons, show alerts #2742
    • \n
    \n

    2.9.3 – 2024-10-15

    \n
      \n
    • Fix – Multi-currency support #2667
    • \n
    • Fix – “0.00” amount in Google Pay for virtual products #2636
    • \n
    • Fix – Unsuccessfully payment from product page with Apple Pay button #2643
    • \n
    • Fix – Button Unlinking PayPal Subscriptions plan does not showing for simple subscription #2618
    • \n
    • Fix – Declare tokenization for ACDC only when vaulting enabled #2581
    • \n
    • Fix – Classic shortcode block type checks #2608
    • \n
    • Fix – PUI error in editor #2580
    • \n
    • Fix – Add a new namespaced script loader for ApplePay #2682 #2675
    • \n
    • Fix – Axo Block: Fix the Fastlane modal info message text overflow issue #2663
    • \n
    • Fix – Add Custom Placeholder Handling when rendering the card fields #2651
    • \n
    • Fix – Use the PayPal icons instead of WC ones #2639
    • \n
    • Fix – Google Pay preview config and style #2661
    • \n
    • Fix – Improve context detection #2631
    • \n
    • Fix – Check that get_the_ID is valid before using #2573
    • \n
    • Fix – Axo Block: Always display the Fastlane watermark in the includeAdditionalInfo mode #2690
    • \n
    • Fix – Axo Block: Display card fields for authenticated cardless profiles #2672
    • \n
    • Fix – Google Pay: Fix button preview in the editor #2688
    • \n
    • Fix – ACDC gateway not visible on the block Checkout for logged-out users #2693
    • \n
    • Enhancement – Enhancement – Add Fastlane support for Checkout block
    • \n
    • Enhancement – Multiple calls to POST /v1/oauth2/token?grant_type=client_credentials&response_type=id_token #2671
    • \n
    • Enhancement – Fastlane update shipping options & taxes when changing address #2665
    • \n
    • Enhancement – Axo: Remove Axo from the Checkout block in the editor and add an ACDC card preview #2662
    • \n
    • Enhancement – Set email when creating order for express payment #2577
    • \n
    \n

    2.9.2 – 2024-10-01

    \n
      \n
    • Enhancement – Add Fastlane support for Classic Checkout
    • \n
    • Fix – Fatal error when Pay Later messaging configurator was disabled with a code snippet
    • \n
    \n

    2.9.1 – 2024-09-24

    \n
      \n
    • Fix – Improve card fields hiding #2574
    • \n
    • Fix – Google Pay: Shipping callback not calculating totals correctly on Single Product page #2513
    • \n
    • Fix – Fix shipping callback condition in status report #2578
    • \n
    • Fix – Can’t Disconnect Account #2539
    • \n
    • Fix – Google Pay billing data without shipping callback #2525
    • \n
    • Fix – Standard payment tab – Google Pay and Apple Pay button – Shape from one location is applied to all until saving changes #2419
    • \n
    • Enhancement – Allow to override the list of Pay Later supported countries #2563
    • \n
    • Enhancement – Add more feature statuses into system report #2550
    • \n
    • Enhancement – Use SVG for APM gateway icons #2509
    • \n
    • Enhancement – Add inline notice to inform users about ACDC block Checkout support if the store uses a Classic Checkout setup #2422
    • \n
    • Enhancement – Remove leftover console.log #2589
    • \n
    • Enhancement – Require PHP 7.4+, WP 6.3+, WC 6.9+ #2556
    • \n
    • Enhancement – Modularity module migration #1944
    • \n
    • Enhancement – Keep only 5 tags in readme.txt #2562
    • \n
    • Enhancement – Select ACDC by default during onboarding for China store locations #2619
    • \n
    • Enhancement – Add title, description and gatewayId to the express payment method #2566
    • \n
    \n

    2.9.0 – 2024-09-02

    \n
      \n
    • Fix – Fatal error in Block Editor when using WooCommerce blocks #2534
    • \n
    • Fix – Can’t pay from block pages when the shipping callback is enabled and no shipping methods defined #2429
    • \n
    • Fix – Various Google Pay button fixes #2496
    • \n
    • Fix – Buying a free trial subscription with ACDC results in a $1 charge in the API call #2465
    • \n
    • Fix – Problem with Google Pay and Apple Pay button placement on Pay for Order page #2542
    • \n
    • Fix – When there isn’t any shipping option for the address the order is still created from classic cart #2437
    • \n
    • Fix – Patch the order with no shipping methods, instead of throwing an error #2435
    • \n
    • Enhancement – Separate Apple Pay button for Classic Checkout #2457
    • \n
    • Enhancement – Remove AMEX support for ACDC when store location is set to China #2526
    • \n
    • Enhancement – Inform users of Pay Later messaging configuration when Pay Later wasn’t recently enabled #2529
    • \n
    • Enhancement – Update ACDC signup URLs #2475
    • \n
    • Enhancement – Implement country based APMs via Orders API #2511
    • \n
    • Enhancement – Update PaymentsStatusHandlingTrait.php (author @callmeahmedr) #2523
    • \n
    • Enhancement – Disable PayPal Shipping callback by default #2527
    • \n
    • Enhancement – Change Apple Pay and Google Pay default button labels to plain #2476
    • \n
    • Enhancement – Add Package Tracking compatibility with DHL Shipping plugin #2463
    • \n
    • Enhancement – Add support for WC Bookings when skipping checkout confirmation #2452
    • \n
    • Enhancement – Remove currencies from country-currency matrix in card fields module #2441
    • \n
    \n

    2.8.3 – 2024-08-12

    \n
      \n
    • Fix – Google Pay: Prevent field validation from being triggered on checkout page load #2474
    • \n
    • Fix – Do not add tax info into order meta during order creation #2471
    • \n
    • Fix – PayPal declares subscription support when for Subscription mode is set Disable PayPal for subscription #2425
    • \n
    • Fix – PayPal js files loaded on non PayPal pages #2411
    • \n
    • Fix – Google Pay: Fix the incorrect popup triggering #2414
    • \n
    • Fix – Add tax configurator when programmatically creating WC orders #2431
    • \n
    • Fix – Shipping callback compatibility with WC Name Your Price plugin #2402
    • \n
    • Fix – Uncaught Error: Cannot use object of type …\\Settings as array in …/AbstractPaymentMethodType.php (3253) #2334
    • \n
    • Fix – Prevent displaying smart button multiple times on variable product page #2420
    • \n
    • Fix – Prevent enabling Standard Card Button when ACDC is enabled #2404
    • \n
    • Fix – Use client credentials for user tokens #2491
    • \n
    • Fix – Apple Pay: Fix the shipping callback #2492
    • \n
    • Enhancement – Separate Google Pay button for Classic Checkout #2430
    • \n
    • Enhancement – Add Apple Pay and Google Pay support for China, simplify country-currency matrix #2468
    • \n
    • Enhancement – Add AMEX support for Advanced Card Processing in China #2469
    • \n
    \n

    2.8.2 – 2024-07-22

    \n
      \n
    • Fix – Sold individually checkbox automatically disabled after adding product to the cart more than once #2415
    • \n
    • Fix – All products “Sold individually” when PayPal Subscriptions selected as Subscriptions Mode #2400
    • \n
    • Fix – W3 Total Cache: Remove type from file parameter as sometimes null gets passed causing errors #2403
    • \n
    • Fix – Shipping methods during callback not updated correctly #2421
    • \n
    • Fix – Preserve subscription renewal processing when switching Subscriptions Mode or disabling gateway #2394
    • \n
    • Fix – Remove shipping callback for Venmo express button #2374
    • \n
    • Fix – Google Pay: Fix issue with data.paymentSource being undefined #2390
    • \n
    • Fix – Loading of non-Order as a WC_Order causes warnings and potential data corruption #2343
    • \n
    • Fix – Apple Pay and Google Pay buttons don’t appear in PayPal Button stack on multi-step Checkout #2372
    • \n
    • Fix – Apple Pay: Fix when shipping is disabled #2391
    • \n
    • Fix – Wrong string in smart button preview on Standard Payments tab #2409
    • \n
    • Fix – Don’t break orders screen when there is an exception for package tracking #2369
    • \n
    • Fix – Pay Later button preview is missing #2371
    • \n
    • Fix – Apple Pay button layout #2367
    • \n
    • Enhancement – Remove BCDC button from block Express Checkout area #2381
    • \n
    • Enhancement – Extend Advanced Card Processing country eligibility for China #2397
    • \n
    \n

    2.8.1 – 2024-07-01

    \n
      \n
    • Fix – Don’t render tracking metabox if PayPal order does not belong to connected merchant #2360
    • \n
    • Fix – Fatal error when the ppcp-paylater-configurator module is disabled via code snippet #2327
    • \n
    • Fix – Apple Pay & Google Pay buttons no longer visible in Standard Payments button previews after moving the configuration to Advanced Card Processing tab #2325
    • \n
    • Fix – Fix Smart Buttons on Elementor checkout widget #2284
    • \n
    • Fix – Pay by link – Capturing order from guest user causing fatal error when Vaulting is enabled #2382
    • \n
    • Fix – Enable the gateway settings JS file on connection tab #2377
    • \n
    • Enhancement – Add filter for certain settings to allow gateway translation e.g. via WPML #2308
    • \n
    • Enhancement – Filter for adding more contexts in can_render_dcc checker #2346
    • \n
    • Enhancement – Do not request id_token for guest users #2283
    • \n
    • Enhancement – Prevent multiple PayPal Subscription products in the cart if PayPal Subscription API is active #2320
    • \n
    • Enhancement – Prevent script caching & minification from Litespeed Cache and W3 Total Cache plugins #2316
    • \n
    • Enhancement – Remove Giropay references due to deprecation #2379
    • \n
    \n

    2.8.0 – 2024-06-11

    \n
      \n
    • Fix – Calculate totals after adding shipping to include taxes #2296
    • \n
    • Fix – Package tracking integration throws error in 2.7.1 #2289
    • \n
    • Fix – Make PayPal Subscription products unique in cart #2265
    • \n
    • Fix – PayPal declares subscription support when merchant not enabled for Reference Transactions #2282
    • \n
    • Fix – Google Pay and Apple Pay Settings button from Connection tab have wrong links #2273
    • \n
    • Fix – Smart Buttons in Block Checkout not respecting the location setting (2830) #2278
    • \n
    • Fix – Disable Pay Upon Invoice if billing/shipping country not set #2281
    • \n
    • Fix – Critical error on pay for order page when we try to pay with ACDC gateway #2321
    • \n
    • Enhancement – Enable shipping callback for WC subscriptions #2259
    • \n
    • Enhancement – Disable the shipping callback for “venmo” when vaulting is active #2269
    • \n
    • Enhancement – Improve “Could not retrieve order” error message #2271
    • \n
    • Enhancement – Add block Checkout compatibility to Advanced Card Processing #2246
    • \n
    \n

    2.7.1 – 2024-05-28

    \n
      \n
    • Fix – Ensure package tracking data is sent to original PayPal transaction #2180
    • \n
    • Fix – Set the ‘Woo_PPCP’ as a default value for data-partner-attribution-id #2188
    • \n
    • Fix – Allow PUI Gateway for refund processor #2192
    • \n
    • Fix – Notice on newly created block cart checkout #2211
    • \n
    • Fix – Apple Pay button in the editor #2177
    • \n
    • Fix – Allow shipping callback and skipping confirmation page from any express button #2236
    • \n
    • Fix – Pay Later messaging configurator sometimes displays old settings after saving #2249
    • \n
    • Fix – Update the apple-developer-merchantid-domain-association validation strings for Apple Pay #2251
    • \n
    • Fix – Enable the Shipping Callback handlers #2266
    • \n
    • Enhancement – Use admin theme color #1602
    • \n
    \n

    2.7.0 – 2024-04-30

    \n
      \n
    • Fix – Zero sum subscriptions cause CANNOT_BE_ZERO_OR_NEGATIVE when using Vault v3 #2152
    • \n
    • Fix – Incorrect Pricing Issue with Variable Subscriptions in PayPal Subscriptions Mode #2156
    • \n
    • Fix – Wrong return_url in multisite setup when using subdomains #2157
    • \n
    • Fix – Fix the fundingSource is not defined error on Block Checkout #2185
    • \n
    • Enhancement – Add the data-page-type attribute for JS SDK #2161
    • \n
    • Enhancement – Save Card Last Digits in order meta for Advanced Card Payments #2149
    • \n
    • Enhancement – Refactor the Pay Later Messaging block and add dedicated Cart/Checkout blocks #2153
    • \n
    • Enhancement – “Next Payment” status not updated when using PayPal Subscriptions #2091
    • \n
    • Enhancement – Optimize default settings for new store configurations #2158
    • \n
    • Enhancement – Improve tooltip information for tagline #2154
    • \n
    • Enhancement – Improve error message on certain exceptions #1354
    • \n
    • Enhancement – Cart Pay Later block: Change the default insert position #2179
    • \n
    • Enhancement – Messages Bootstrap: Add a render retry functionality #2181
    • \n
    \n

    2.6.1 – 2024-04-09

    \n
      \n
    • Fix – Payment tokens fixes and adjustments #2106
    • \n
    • Fix – Pay upon Invoice: Add input validation to Experience Context fields #2092
    • \n
    • Fix – Disable markup in get_plugin_data() returns to fix an issue with wptexturize() #2094
    • \n
    • Fix – Problem changing the shipping option in block pages #2142
    • \n
    • Fix – Saved payment token deleted after payment with another saved payment token #2146
    • \n
    • Enhancement – Pay later messaging configurator improvements #2107
    • \n
    • Enhancement – Replace the middleware URL from connect.woocommerce.com to api.woocommerce.com/integrations #2130
    • \n
    • Enhancement – Remove all Sofort references as it has been deprecated #2124
    • \n
    • Enhancement – Improve funding source names #2118
    • \n
    • Enhancement – More fraud prevention capabilities by storing additional data in the order #2125
    • \n
    • Enhancement – Update ACDC currency eligibility for AMEX #2129
    • \n
    • Enhancement – Sync shipping options with Venmo when skipping final confirmation on Checkout #2108
    • \n
    • Enhancement – Card Fields: Add a filter for the CVC field and update the placeholder to match the label #2089
    • \n
    • Enhancement – Product Title: Sanitize before sending to PayPal #2090
    • \n
    • Enhancement – Add filter for disabling permit_multiple_payment_tokens vault attribute #2136
    • \n
    • Enhancement – Filter to hide PayPal email address not working on order detail #2137
    • \n
    \n

    2.6.0 – 2024-03-20

    \n
      \n
    • Fix – invoice_id not included in API call when creating payment with saved card #2086
    • \n
    • Fix – Typo in SCA indicators for ACDC Vault transactions #2083
    • \n
    • Fix – Payments with saved card tokens use Capture intent when Authorize is configured #2069
    • \n
    • Fix – WooPayments multi-currency causing currency mismatch error on Block Cart & Checkout pages #2054
    • \n
    • Fix – “Must pass createSubscription with intent=subscription” error with PayPal Subscriptions mode #2058
    • \n
    • Fix – “Proceed to PayPal” button displayed for Free …
    • \n
    \n", "description": "

    WooCommerce PayPal Payments is an all-in-one solution to help you maximize conversions by offering PayPal, Venmo (US), Pay Later options, credit and debit cards, and more.

    \n

    Features

    \n
      \n
    • Instant access to funds while payment is processing.
    • \n
    • Fraud detection and global compliance (including PCI, PSD2, and 3D Secure).
    • \n
    • Faster checkout via PayPal buttons on product pages and in-cart.
    • \n
    • Convenience to pay over time with PayPal Pay Later.
    • \n
    • Allow Venmo shoppers (US only) to share purchases with friends.
    • \n
    • Standard and Advanced Card Processing options.
    • \n
    • Country-specific payment methods to build global trust.
    • \n
    • Multiple subscription payment options to help drive repeat business.
    • \n
    \n

    Get started

    \n

    If you’re new to PayPal, add it to your store today. Existing user? Upgrade your integration now to access these exciting new features.

    \n

    It pays to PayPal

    \n

    Get instant access to funds in your PayPal business account while payment is processing. Save time and money with fraud detection and Seller Protection features†.

    \n

    Plus, you’ll meet global compliance standards (such as PCI, PSD2, SCA, and 3D Secure), bringing international markets within reach.

    \n

    †Available on eligible purchases. Limits apply.

    \n

    Flexible payment options

    \n

    Shoppers are nearly three times more likely to buy when you offer PayPal.¹ Increase conversions by automatically displaying PayPal buttons on product pages, in-cart, and at checkout.

    \n

    PayPal Pay Later options help boost conversion rates and increase cart sizes by 39%.² Let customers pay over time while you get paid upfront — at no additional cost. Available in select countries. Learn more about Pay Later messaging.

    \n

    Venmo users spend 2.2 times more annually on online purchases than other online buyers.³ Now you can reach Venmo shoppers (US only) and allow them to share their purchases with friends.

    \n

    Country-specific payments

    \n
      \n
    • Standard Card Processing: Suitable for all business and personal seller accounts. Card transactions are managed via a prebuilt user experience, simplifying compliance.
    • \n
    • Advanced Card Processing: Customize the look, feel, and placement of debit and credit card payment fields. You can also use fraud protection tools to set up personal risk tolerance filters.
    • \n
    \n

    Earn recurring revenue through subscriptions

    \n

    Drive repeat business for stable, predictable income using WooCommerce Subscriptions or PayPal Subscriptions.

    \n

    You can also use PayPal’s Vaulting feature to:

    \n
      \n
    • Offer flexible plans with fixed or quantity-based pricing.
    • \n
    • Set billing cycles for any period.
    • \n
    • Offer discounted trial periods or prorated payments.
    • \n
    \n

    With no monthly or setup fees, it’s simple for your customers — and great for your business (account approval required).

    \n

    Legal Disclosures:

    \n

    *For Australian users, the PayPal service is provided by PayPal Australia Pty Limited AFSL 304962. Any information provided is general only and does not take into account your objectives, financial situation, or needs. Please read and consider the CFSGPDS (paypal.com.au) before acquiring or using the service. See website for TMD.

    \n
      \n
    1. An online study commissioned by PayPal and conducted by Netfluential in November 2020, involving 1,000 US online shoppers ages 18-39.
    2. \n
    3. PayPal Q2 Earnings 2021.
    4. \n
    5. Edison Trends commissioned by PayPal, April 2020 to March 2021. Edison Trends conducted a behavioral panel of email receipts from 306,939 US consumers and 3.4+ M purchases at a vertical level between Pay with Venmo and non-Venmo users during a 12-month period.
    6. \n
    \n", "screenshots": "
    1. \"PayPal

      PayPal buttons on a single product page.

    2. \"Cart

      Cart page.

    3. \"Checkout

      Checkout page.

    4. \"Enable

      Enable \"PayPal\" on the Payment methods tab in WooCommerce.

    5. \"Click

      Click \"Connect to PayPal\" to link your site to your PayPal account.

    6. \"Main

      Main settings screen.

    ", "installation": "

    Requirements

    \n

    To install and configure WooCommerce PayPal Payments, you will need:

    \n
      \n
    • WordPress Version 6.3 or newer (installed)
    • \n
    • WooCommerce Version 9.6 or newer (installed and activated)
    • \n
    • PHP Version 7.4 or newer
    • \n
    • PayPal business or personal account
    • \n
    \n

    Installation instructions

    \n
      \n
    1. Log in to WordPress admin.
    2. \n
    3. Go to Plugins > Add New.
    4. \n
    5. Search for the WooCommerce PayPal Payments plugin.
    6. \n
    7. Click on Install Now and wait until the plugin is installed successfully.
    8. \n
    9. You can activate the plugin immediately by clicking on Activate now on the success page. If you want to activate it later, you can do so via Plugins > Installed Plugins.
    10. \n
    \n

    Setup and Configuration

    \n

    Follow the steps below to connect the plugin to your PayPal account:

    \n
      \n
    1. After you have activated the WooCommerce PayPal Payments plugin, go to WooCommerce > Settings.
    2. \n
    3. Click the Payments tab.
    4. \n
    5. The Payment methods list may include two PayPal options. Click on PayPal (not PayPal Standard).
    6. \n
    7. Click on the Activate PayPal button.
    8. \n
    9. Sign in to your PayPal account. If you do not have a PayPal account yet, sign up for a new PayPal business or personal account.
    10. \n
    11. After you have successfully connected your PayPal account, click on the Standard Payments tab and check the Enable Paypal features for your store checkbox to enable PayPal.
    12. \n
    13. Click Save changes.
    14. \n
    \n

    Complete onboarding instructions can be found in the documentation here.

    \n

    Updating

    \n

    Automatic updates should work generally smoothly, but we still recommend you back up your site.

    \n

    If you encounter issues with the PayPal buttons not appearing after an update, purge your website cache. Caching or JavaScript minification can impact PayPal Payments and should be disabled for the PayPal scripts or payment-related pages.

    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.0.4.zip", "1.1.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.2.1.zip", "1.3.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.3.2.zip", "1.4.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.4.0.zip", "1.5.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.5.zip", "1.7.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.8.1.zip", "1.9.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.5.zip", "2.0.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.5.zip", "2.1.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.2.2.zip", "2.3.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.4.3.zip", "2.5.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.5.4.zip", "2.6.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.6.1.zip", "2.7.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.7.1.zip", "2.8.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.8.3.zip", "2.9.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.6.zip", "3.0.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.1.2.zip", "3.2.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.2.1.zip", "trunk": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.zip"}, "downloaded": 21645724, "description": "

    WooCommerce PayPal Payments is an all-in-one solution to help you maximize conversions by offering PayPal, Venmo (US), Pay Later options, credit and debit cards, and more.

    \n

    Features

    \n
      \n
    • Instant access to funds while payment is processing.
    • \n
    • Fraud detection and global compliance (including PCI, PSD2, and 3D Secure).
    • \n
    • Faster checkout via PayPal buttons on product pages and in-cart.
    • \n
    • Convenience to pay over time with PayPal Pay Later.
    • \n
    • Allow Venmo shoppers (US only) to share purchases with friends.
    • \n
    • Standard and Advanced Card Processing options.
    • \n
    • Country-specific payment methods to build global trust.
    • \n
    • Multiple subscription payment options to help drive repeat business.
    • \n
    \n

    Get started

    \n

    If you’re new to PayPal, add it to your store today. Existing user? Upgrade your integration now to access these exciting new features.

    \n

    It pays to PayPal

    \n

    Get instant access to funds in your PayPal business account while payment is processing. Save time and money with fraud detection and Seller Protection features†.

    \n

    Plus, you’ll meet global compliance standards (such as PCI, PSD2, SCA, and 3D Secure), bringing international markets within reach.

    \n

    †Available on eligible purchases. Limits apply.

    \n

    Flexible payment options

    \n

    Shoppers are nearly three times more likely to buy when you offer PayPal.¹ Increase conversions by automatically displaying PayPal buttons on product pages, in-cart, and at checkout.

    \n

    PayPal Pay Later options help boost conversion rates and increase cart sizes by 39%.² Let customers pay over time while you get paid upfront — at no additional cost. Available in select countries. Learn more about Pay Later messaging.

    \n

    Venmo users spend 2.2 times more annually on online purchases than other online buyers.³ Now you can reach Venmo shoppers (US only) and allow them to share their purchases with friends.

    \n

    Country-specific payments

    \n
      \n
    • Standard Card Processing: Suitable for all business and personal seller accounts. Card transactions are managed via a prebuilt user experience, simplifying compliance.
    • \n
    • Advanced Card Processing: Customize the look, feel, and placement of debit and credit card payment fields. You can also use fraud protection tools to set up personal risk tolerance filters.
    • \n
    \n

    Earn recurring revenue through subscriptions

    \n

    Drive repeat business for stable, predictable income using WooCommerce Subscriptions or PayPal Subscriptions.

    \n

    You can also use PayPal’s Vaulting feature to:

    \n
      \n
    • Offer flexible plans with fixed or quantity-based pricing.
    • \n
    • Set billing cycles for any period.
    • \n
    • Offer discounted trial periods or prorated payments.
    • \n
    \n

    With no monthly or setup fees, it’s simple for your customers — and great for your business (account approval required).

    \n

    Legal Disclosures:

    \n

    *For Australian users, the PayPal service is provided by PayPal Australia Pty Limited AFSL 304962. Any information provided is general only and does not take into account your objectives, financial situation, or needs. Please read and consider the CFSGPDS (paypal.com.au) before acquiring or using the service. See website for TMD.

    \n
      \n
    1. An online study commissioned by PayPal and conducted by Netfluential in November 2020, involving 1,000 US online shoppers ages 18-39.
    2. \n
    3. PayPal Q2 Earnings 2021.
    4. \n
    5. Edison Trends commissioned by PayPal, April 2020 to March 2021. Edison Trends conducted a behavioral panel of email receipts from 306,939 US consumers and 3.4+ M purchases at a vertical level between Pay with Venmo and non-Venmo users during a 12-month period.
    6. \n
    \n", "donate_link": "", "num_ratings": 483, "screenshots": {"1": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-1.png?rev=3137725", "caption": "PayPal buttons on a single product page."}, "2": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-2.png?rev=3137725", "caption": "Cart page."}, "3": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-3.png?rev=3137725", "caption": "Checkout page."}, "4": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-4.png?rev=3262297", "caption": "Enable \"PayPal\" on the Payment methods tab in WooCommerce."}, "5": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-5.png?rev=3262297", "caption": "Click \"Connect to PayPal\" to link your site to your PayPal account."}, "6": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-6.png?rev=3262297", "caption": "Main settings screen."}}, "support_url": "https://wordpress.org/support/plugin/woocommerce-paypal-payments/", "contributors": {"syde": {"avatar": "https://secure.gravatar.com/avatar/27f8141d17958b4fe0e8eb7dee7793c49250a94a1d59ca636ec83196367e408a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/syde/", "display_name": "Syde"}, "paypal": {"avatar": "https://secure.gravatar.com/avatar/e8a3cfc2bb25a0b86a07213891b0e324729115b3b1a9d5534f71cc688bbfc094?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/paypal/", "display_name": "PayPal"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}}, "last_updated": "2025-10-20 1:47pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.2.1.zip", "author_profile": "https://profiles.wordpress.org/woocommerce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fd78-7003-8673-228c100ab296", "name": "WooCommerce PayPal Payments", "slug": "woocommerce-paypal-payments", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1760968020, "version": "3.2.1"}, "support_threads": 106, "requires_plugins": ["woocommerce"], "short_description": "PayPal's latest payment processing solution. Accept PayPal, Pay Later, credit/debit cards, alternative digital wallets and bank accounts.", "author_block_count": 1, "author_block_rating": 50, "commercial_support_url": "", "support_threads_resolved": 60}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-f0a3-73e4-b5ab-539e429b6f1b', 'did:web:api.aspiredev.org:packages:wp-theme:bloghash', 'bloghash', 'BlogHash', 'BlogHash is the perfect pick for bloggers seeking a lightweight, customizable theme that suits them just right. With plenty of options to adjust colors and typography, making your site unique is a breeze. It''s SEO friendly and fully compatible with WPML, Gutenberg, Elementor, WooCommerce, and supports translation and RTL. Live preview: https://peregrine-themes.com/bloghash/#demos.', 'wp', 'wp-theme', 'GPL', '{"name": "BlogHash", "slug": "bloghash", "tags": {"blog": "Blog", "news": "News", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "custom-colors": "Custom colors", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Peregrine themes", "avatar": "https://secure.gravatar.com/avatar/0633ecf3e923b0b844ecf8e5515609a2de8872f5948febafe8d4ff2e3b1eeb67?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/peregrinethemes/", "author_url": "https://peregrine-themes.com/", "display_name": "peregrinethemes", "user_nicename": "peregrinethemes"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 9}, "version": "1.0.25", "homepage": "https://wordpress.org/themes/bloghash/", "requires": "5.4", "sections": {"description": "BlogHash is the perfect pick for bloggers seeking a lightweight, customizable theme that suits them just right. With plenty of options to adjust colors and typography, making your site unique is a breeze. It''s SEO friendly and fully compatible with WPML, Gutenberg, Elementor, WooCommerce, and supports translation and RTL. Live preview: https://peregrine-themes.com/bloghash/#demos."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/bloghash.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/bloghash.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/bloghash.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/bloghash.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/bloghash.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/bloghash.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/bloghash.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/bloghash.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/bloghash.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/bloghash.1.0.9.zip", "1.0.10": "https://downloads.wordpress.org/theme/bloghash.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/bloghash.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/bloghash.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/bloghash.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/theme/bloghash.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/theme/bloghash.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/theme/bloghash.1.0.16.zip", "1.0.17": "https://downloads.wordpress.org/theme/bloghash.1.0.17.zip", "1.0.18": "https://downloads.wordpress.org/theme/bloghash.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/theme/bloghash.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/bloghash.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/bloghash.1.0.21.zip", "1.0.23": "https://downloads.wordpress.org/theme/bloghash.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/theme/bloghash.1.0.24.zip", "1.0.25": "https://downloads.wordpress.org/theme/bloghash.1.0.25.zip"}, "downloaded": 151658, "num_ratings": 9, "preview_url": "https://wp-themes.com/bloghash/", "reviews_url": "https://wordpress.org/support/theme/bloghash/reviews/", "is_community": false, "last_updated": "2025-08-29", "requires_php": "5.6", "creation_time": "2024-05-13 12:26:46", "download_link": "https://downloads.wordpress.org/theme/bloghash.1.0.25.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/bloghash/screenshot.jpg?ver=1.0.25", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-029f-7116-b50b-7a456769acf9", "name": "BlogHash", "slug": "bloghash", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1756425600, "version": "1.0.25"}, "last_updated_time": "2025-08-29 14:45:46", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f281-71a5-87fc-87e3c5fb6d0f', 'did:web:api.aspiredev.org:packages:wp-theme:go', 'go', 'Go', 'Go is an innovative, Gutenberg-first WordPress theme, hyper-focused on empowering makers to build beautifully rich websites with WordPress.', 'wp', 'wp-theme', 'GPL', '{"name": "Go", "slug": "go", "tags": {"e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "theme-options": "Theme options", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready"}, "author": {"author": "GoDaddy", "avatar": "https://secure.gravatar.com/avatar/c3a703eddf2a8c104602ebacd5bf0b1dcc33e639209c2dfefbcfca42aebca168?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/godaddy/", "author_url": "https://www.godaddy.com", "display_name": "GoDaddy", "user_nicename": "godaddy"}, "rating": 94, "status": "open", "ratings": {"1": 1, "2": 0, "3": 0, "4": 1, "5": 17}, "version": "1.8.18", "homepage": "https://wordpress.org/themes/go/", "requires": false, "sections": {"description": "Go is an innovative, Gutenberg-first WordPress theme, hyper-focused on empowering makers to build beautifully rich websites with WordPress."}, "versions": {"1.0.1": "https://downloads.wordpress.org/theme/go.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/theme/go.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/go.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/theme/go.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/go.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/go.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/go.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/go.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/go.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/go.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/go.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/go.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/go.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/go.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/go.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/go.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/go.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/go.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/go.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/go.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/go.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/go.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/go.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/go.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/go.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/go.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/go.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/go.1.4.4.zip", "1.5.0": "https://downloads.wordpress.org/theme/go.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/go.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/go.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/go.1.5.3.zip", "1.6.0": "https://downloads.wordpress.org/theme/go.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/go.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/go.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/go.1.6.3.zip", "1.6.5": "https://downloads.wordpress.org/theme/go.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/go.1.6.6.zip", "1.7.3": "https://downloads.wordpress.org/theme/go.1.7.3.zip", "1.8.0": "https://downloads.wordpress.org/theme/go.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/go.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/go.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/go.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/go.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/go.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/go.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/go.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/go.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/theme/go.1.8.9.zip", "1.2.10": "https://downloads.wordpress.org/theme/go.1.2.10.zip", "1.8.10": "https://downloads.wordpress.org/theme/go.1.8.10.zip", "1.8.11": "https://downloads.wordpress.org/theme/go.1.8.11.zip", "1.8.13": "https://downloads.wordpress.org/theme/go.1.8.13.zip", "1.8.14": "https://downloads.wordpress.org/theme/go.1.8.14.zip", "1.8.15": "https://downloads.wordpress.org/theme/go.1.8.15.zip", "1.8.16": "https://downloads.wordpress.org/theme/go.1.8.16.zip", "1.8.17": "https://downloads.wordpress.org/theme/go.1.8.17.zip", "1.8.18": "https://downloads.wordpress.org/theme/go.1.8.18.zip"}, "downloaded": 1247208, "num_ratings": 19, "preview_url": "https://wp-themes.com/go/", "reviews_url": "https://wordpress.org/support/theme/go/reviews/", "is_community": true, "last_updated": "2025-09-22", "requires_php": "5.6", "creation_time": "2020-01-16 17:08:20", "download_link": "https://downloads.wordpress.org/theme/go.1.8.18.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/go/screenshot.png?ver=1.8.18", "active_installs": 60000, "aspiresync_meta": {"id": "019a30c0-077c-710f-97d0-e8f8885466cc", "name": "Go", "slug": "go", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1758499200, "version": "1.8.18"}, "last_updated_time": "2025-09-22 18:57:07", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ebb-72ba-819c-74bf79fdce63', 'did:web:api.aspiredev.org:packages:wp-plugin:woocommerce-services', 'woocommerce-services', 'WooCommerce Tax (formerly WooCommerce Shipping & Tax)', '

    Attention: Shipping features have moved to a new dedicated plugin. Download WooCommerce Shipping.

    -

    Enable automated taxes
    -That’s it! Once you update your tax settings, your store will collect sales tax at checkout based on the store address in your WooCommerce Settings.

    -

    Eliminate the need to even think about sales taxes for your store
    -Automatically calculate how much sales tax should be collected for WooCommerce orders — by city, country, or state — at checkout.

    -

    External services

    -

    This plugin relies on the following external services:

    -
      -
    1. -

      WordPress.com connection:

      -
        -
      • Description: The plugin makes requests to our own endpoints at WordPress.com (proxied via https://api.woocommerce.com) to fetch automated tax calculations.
      • -
      • Website: https://wordpress.com/
      • -
      • Terms of Service: https://wordpress.com/tos/
      • -
      • Privacy Policy: https://automattic.com/privacy/
      • -
      -
    2. -
    3. -

      Usage Tracking:

      -
        -
      • Description: The plugin will send usage statistics to our own service, after the user has accepted our Terms of Service.
      • -
      • Script: https://stats.wp.com/w.js
      • -
      • Terms of Service: https://wordpress.com/tos/
      • -
      • Privacy Policy: https://automattic.com/privacy/
      • -
      -
    4. -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WooCommerce Tax (formerly WooCommerce Shipping & Tax)", "slug": "woocommerce-services", "tags": {"gst": "GST", "tax": "tax", "vat": "vat", "payment": "payment", "woocommerce": "woocommerce"}, "added": "2017-01-28", "icons": {"1x": "https://ps.w.org/woocommerce-services/assets/icon-128x128.png?rev=3234419", "2x": "https://ps.w.org/woocommerce-services/assets/icon-256x256.png?rev=3234419"}, "author": "WooCommerce", "rating": 40, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/woocommerce-services/assets/banner-772x250.png?rev=3234419", "high": "https://ps.w.org/woocommerce-services/assets/banner-1544x500.png?rev=3234419"}, "ratings": {"1": 69, "2": 7, "3": 5, "4": 3, "5": 20}, "version": "3.2.0", "homepage": "https://woocommerce.com/", "requires": "6.7", "sections": {"faq": "\n
    \nWhy is a WordPress.com account connection required?\n\n

    \n

    A WordPress.com connection is required to securely access our tax APIs, and to avoid API abuse.

    \n

    \n
    \nThis works with WooCommerce, right?\n\n

    \n

    Yep! We follow the L-2 policy, meaning if the latest version of WooCommerce is 8.7, we support back to WooCommerce version 8.5.

    \n

    \n
    \nAre there Terms of Service?\n\n

    \n

    Absolutely! You can read our Terms of Service here.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Hidden Jetpack dependency and blocked for “regulated” stores

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy indanvil on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nowhere in the description does it say the plugin depends on Jetpack, yet support informed me that it uses Jetpack’s backend services. That means I’m forced to follow Jetpack’s terms even though Jetpack isn’t installed on my site.

    \n\n\n\n

    On top of that, WooCommerce is often suggested as a good option for “high-risk” industries like CBD, alcohol, or firearms accessories, but in practice Automattic blocks exactly those merchants from using WooCommerce Tax. This makes it very difficult to actually run a store in these categories.

    \n\n\n\n

    When I asked for clarification, WooCommerce support told me I should abandon this plugin and instead go use Avalara or TaxJar. If that’s the real answer, then the dependency and restrictions should be clearly stated in the plugin description up front so merchants don’t waste their time.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Yay for No Jetpack

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jollygreen on September 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Title says all. Thanks for removing this dependency. Its the best change we''ve all been waiting for.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    My site went down after updates

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy casiyim on July 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It was reckless to update the plugin can caused error to my website, customers was so panic and they had to cancel my orders.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    fatal errors

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy justin-bigscoots on July 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Releases a plugin that isn''t properly tested which causes 100s of sites to go down, cool stuff

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Automated tax does not work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy timea4523 on March 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Don''t waste your time. automated tax does not work.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Requires wordpress.com connection, too bad

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Annonnimmo on October 28, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Automattic should stay far away from indipendent developers plugins.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useless without Paypal integration

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy drgonzo3000 on June 11, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin only allows you to pay for labels using the credit card on your wordpress account. Completely useless if business transactions are all done using a different merchant processor like Paypal. Zero thought was put into this and uninstalled it once I found this issue.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    add_sift_js_tracker

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jseutens on March 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Do not try to add things from 3party to your stuff , I do not need to have AI track me and what I do on my site.
    That site is on my blocklist now (cdn.sift.com) on the server side , host file for any *.sift.com to 127.0.0.10

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not working, requires Jetpack bloatware

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jsding on January 25, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin stopped working starting December 2023. It would still charge my card for the shipping labels but I would get an error before the label popped up to be printed. I couldn''t access the labels afterwards either. After WEEKS of trying to get help with support, they ended up saying it was an issue with my hosting service not having enough bandwidth. I''ve had the same hosting service for years with no issues. My thought is that they''ve continued to make the Jetpack plugin (which is required to make this plugin work) bigger and bigger, taking up more and more bandwidth to the point where you either have to increase your own hosting services or deal with it not working. Not worth it. Honestly would suggest new users go directly to Shopify instead of trying to deal with this nonsense.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not Working

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kryptonitecreative on January 15, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    There is no way to print a label, it keeps asking for a credit card, which it never registers....

    Updated - it turned out the wordpress.com account I had signed in with was different than the one trying to connect to pay and print the label. The plugin has been working great since support helped me figure out what the problem was.

    Also, you can pair this with \"USPS Simple Shipping for Woocommerce\" to calculate your shipping at the cart.

    \n
    \n
    \n", "changelog": "

    3.2.0 – 2025-10-14

    \n
      \n
    • Fix – No tax calculated for multi-word state/counties.
    • \n
    • Fix – Incorrect tax rate saved in Woo Tax Table when Cart total is 0.
    • \n
    • Fix – Compatibility issue with plugins and themes that use woocommerce_find_rates filter.
    • \n
    • Tweak – Update tax rate and tax nexus links.
    • \n
    • Tweak – Unify tax rate saving to always save itemized tax rates.
    • \n
    • Tweak – WooCommerce 10.3 Compatibility.
    • \n
    \n

    3.1.1 – 2025-09-29

    \n
      \n
    • Fix – Incorrect tax rate saved in Woo Tax Table when Cart total is 0.
    • \n
    • Fix – Compatibility issue with plugins and themes that use woocommerce_find_rates filter.
    • \n
    \n

    3.1.0 – 2025-09-16

    \n
      \n
    • Add – Increase cache time for address validation errors.
    • \n
    • Tweak – WooCommerce 10.2 Compatibility.
    • \n
    \n

    3.0.11 – 2025-09-08

    \n
      \n
    • Tweak – Bump jetpack autoloader version
    • \n
    \n

    3.0.10 – 2025-09-02

    \n
      \n
    • Fix – Corrected migration guide link in survey modal.
    • \n
    \n

    3.0.9 – 2025-08-26

    \n
      \n
    • Add – Migration survey to understand WooCommerce Shipping adoption blockers.
    • \n
    \n

    3.0.8 – 2025-08-13

    \n
      \n
    • Fix – Improves performance when WooCommerce Shipping is not active.
    • \n
    • Fix – Restore shipping label functionality for merchants with shipping features enabled.
    • \n
    • Tweak – WooCommerce 10.1 Compatibility.
    • \n
    \n

    3.0.7 – 2025-07-21

    \n
      \n
    • Fix – Missing release files.
    • \n
    \n

    3.0.6 – 2025-07-21

    \n
      \n
    • Add – Support for Itemized tax rates.
    • \n
    • Fix – TaxJar error notices displaying incorrectly on block cart and checkout.
    • \n
    \n

    3.0.5 – 2025-07-14

    \n
      \n
    • Tweak – WooCommerce 10.0 Compatibility.
    • \n
    \n

    3.0.4 – 2025-06-30

    \n
      \n
    • Fix – Corrected tax calculation for orders shipped within Arizona from stores based in Arizona.
    • \n
    \n

    3.0.3 – 2025-06-12

    \n
      \n
    • Tweak – Update Org store screenshots.
    • \n
    \n

    3.0.2 – 2025-06-02

    \n
      \n
    • Rename the plugin and updates the description in the Org store.
    • \n
    \n

    3.0.1 – 2025-05-22

    \n
      \n
    • Fix – Maintain label purchase functionality on iOS app for eligible installations.
    • \n
    \n

    3.0.0 – 2025-05-08

    \n
      \n
    • Add – Legacy site detection to maintain shipping functionality for existing installations.
    • \n
    • Tweak – Improve tax tracking.
    • \n
    \n

    2.8.9 – 2025-04-07

    \n
      \n
    • Tweak – WordPress 6.8 & WooCommerce 9.8 Compatibility.
    • \n
    \n

    2.8.8 – 2025-03-03

    \n
      \n
    • Tweak – WooCommerce 9.7 Compatibility.
    • \n
    \n

    2.8.7 – 2025-01-20

    \n
      \n
    • Add – Option to apply US Colorado Retail Delivery Fee tax by using wc_services_apply_us_co_retail_delivery_fee filter.
    • \n
    \n

    2.8.6 – 2025-01-06

    \n
      \n
    • Tweak – PHP 8.4 compatibility.
    • \n
    \n

    2.8.5 – 2024-12-10

    \n
      \n
    • Fix – Fixed an issue that prevented editing an order when automated tax is enabled.
    • \n
    \n

    2.8.4 – 2024-12-09

    \n
      \n
    • Fix – Support High-Performance Order Storage in shipping label reports.
    • \n
    \n

    2.8.3 – 2024-10-29

    \n
      \n
    • Tweak – WordPress 6.7 Compatibility.
    • \n
    \n

    2.8.2 – 2024-09-23

    \n
      \n
    • Fix – Keep live rates enabled for eligible stores when WCS&T is active alongside WooCommerce Shipping.
    • \n
    • Tweak – Hide shipping migration banner for all stores not eligible to buy shipping labels.
    • \n
    • Tweak – Try WooCommerce Shipping modal copy.
    • \n
    \n

    2.8.1 – 2024-09-09

    \n
      \n
    • Tweak – Hide migration banner for merchants still using legacy functionality.
    • \n
    \n

    2.8.0 – 2024-09-03

    \n
      \n
    • Add – A new shipping migration experience from this plugin to the newly released WooCommerce Shipping plugin.
    • \n
    \n

    2.7.0 – 2024-07-25

    \n
      \n
    • Add – Parallel compatibility with WooCommerce Shipping plugin.
    • \n
    \n

    2.6.2 – 2024-07-16

    \n
      \n
    • Fix – Require HS Tariff number on customs form for EU destination countries.
    • \n
    \n

    2.6.1 – 2024-07-02

    \n
      \n
    • Tweak – WooCommerce 9.0 and WordPress 6.6 compatibility.
    • \n
    \n

    2.6.0 – 2024-06-04

    \n
      \n
    • Add – Logger for “Live Rates” feature on the front-end.
    • \n
    \n

    2.5.7 – 2024-05-13

    \n
      \n
    • Add – wc_connect_shipment_item_quantity_threshold and wc_connect_max_shipments_if_quantity_exceeds_threshold filter hooks to be able to cap the number of shipment splits possible for an item with very large quantity.
    • \n
    \n

    2.5.6 – 2024-05-06

    \n
      \n
    • Tweak – WooCommerce 8.8 compatibility.
    • \n
    \n

    2.5.5 – 2024-04-29

    \n
      \n
    • Add – Prevent upcoming Woo Shipping and Woo Tax plugins from running in parallel with this plugin unless both are active, then they will take over for this plugin.
    • \n
    \n

    2.5.4 – 2024-03-25

    \n
      \n
    • Tweak – WordPress 6.5 compatibility.
    • \n
    \n

    2.5.3 – 2024-03-12

    \n
      \n
    • Fix – Colorado tax nexus workaround should only apply to Colorado from addresses.
    • \n
    \n

    2.5.2 – 2024-03-04

    \n
      \n
    • Fix – Miscalculation tax from TaxJar and decided to use nexus address.
    • \n
    \n

    2.5.1 – 2024-02-12

    \n
      \n
    • Fix – Cannot call constructor in classes/wc-api-dev/class-wc-rest-dev-data-continents-controller.php.
    • \n
    \n

    2.5.0 – 2024-01-08

    \n
      \n
    • Add – Ability to keep connected to WordPress.com after Jetpack is uninstalled.
    • \n
    • Fix – Deprecation notices for PHP 8.2.
    • \n
    \n

    2.4.2 – 2023-11-30

    \n
      \n
    • Fix – When automated taxes are enabled, the order refund button will fail
    • \n
    \n

    2.4.1 – 2023-11-28

    \n
      \n
    • Fix – Street address is not included when recalculating the tax in edit order page.
    • \n
    \n

    2.4.0 – 2023-10-31

    \n
      \n
    • Add – Ability to connect to WordPress.com without the Jetpack plugin.
    • \n
    • Fix – NUX banner display on Edit Order pages.
    • \n
    \n

    2.3.7 – 2023-10-23

    \n
      \n
    • Add – Load Sift when printing a label.
    • \n
    \n

    2.3.6 – 2023-10-10

    \n
      \n
    • Fix – Occasionally block user to checkout when using WooCommerce Blocks.
    • \n
    • Fix – Fix notice error when shipping location(s) is disabled in WooCommerce settings.
    • \n
    \n

    2.3.5 – 2023-09-20

    \n
      \n
    • Tweak – Move Jetpack Connection requirement to the top in FAQ.
    • \n
    \n

    2.3.4 – 2023-09-05

    \n
      \n
    • Fix – Shipping label reports to display proper HTML.
    • \n
    \n

    2.3.3 – 2023-08-22

    \n
      \n
    • Tweak – Update .org assets.
    • \n
    \n

    2.3.2 – 2023-08-09

    \n
      \n
    • Add – Added QIT tools for development.
    • \n
    \n

    2.3.1 – 2023-07-17

    \n
      \n
    • Fix – Fix notice error on the WooCommerce tax settings page.
    • \n
    \n

    2.3.0 – 2023-07-11

    \n
      \n
    • Add – Add USPS HAZMAT support.
    • \n
    \n

    2.2.5 – 2023-05-23

    \n
      \n
    • Update – Security update.
    • \n
    \n

    2.2.4 – 2023-03-14

    \n
      \n
    • Fix – Incompatibility with Kadence WooCommerce Email Designer.
    • \n
    \n

    2.2.3 – 2023-02-14

    \n
      \n
    • Fix – Link correction on Automated taxes description text.
    • \n
    \n

    2.2.2 – 2023-02-02

    \n
      \n
    • Fix – Adjust checkout US zipcode validation to run only when exactly 5 or 10 digits are typed.
    • \n
    \n

    2.2.1 – 2023-01-24

    \n
      \n
    • Fix – Fix warning on checkout page apper if zipcode doesn’t match selected state.
    • \n
    \n

    2.2.0 – 2023-01-19

    \n
      \n
    • Add – Add option to let user pick whether to save the last package & service or not.
    • \n
    \n

    2.1.1 – 2023-01-02

    \n
      \n
    • Fix – Save the selected package box and do not skip the package step.
    • \n
    \n

    2.1.0 – 2022-11-30

    \n
      \n
    • Tweak – Catch malformed zipcode and display WC notice.
    • \n
    \n

    2.0.0 – 2022-11-16

    \n
      \n
    • Add – High-Performance Order Storage compatibility.
    • \n
    • Add – Add list of tax rate backup files for merchants to click and download.
    • \n
    • Tweak – Transition version numbering from SemVer to WordPress versioning.
    • \n
    \n

    1.26.3 – 2022-08-03

    \n
      \n
    • Tweak – Always let the user to pick the package box.
    • \n
    • Add – Add filter to override TaxJar result.
    • \n
    • Fix – Uncatch error when installing/connecting the Jetpack.
    • \n
    \n

    1.26.2 – 2022-07-04

    \n
      \n
    • Fix – Change the wp-calypso commit to fix NPM Error when run npm run prepare.
    • \n
    • Fix – E2E Tests: npm ci, update puppeteer to v2
    • \n
    • Fix – JS Tests: npm ci
    • \n
    • Tweak – Replace colors npm package with chalk
    • \n
    \n

    1.26.1 – 2022-06-21

    \n
      \n
    • Add – Display warning if non-roman character is entered in address fields.
    • \n
    • Fix – “Division by Zero” fatal error on PHP 8.
    • \n
    \n

    1.26.0 – 2022-05-27

    \n
      \n
    • Add – Tool to clear cached Tax server responses from the transients.
    • \n
    • Tweak – Enable shipping tax by default if is Florida interstate shipping.
    • \n
    \n

    1.25.28 – 2022-05-12

    \n
      \n
    • Fix – Notice: Undefined index: ‘from_country’ when validating TaxJar request.
    • \n
    \n

    1.25.27 – 2022-05-03

    \n
      \n
    • Fix – Cart with non-taxable product still calculate the tax.
    • \n
    • Tweak – Validate the TaxJar request before calling the api and cache 404 and 400 TaxJar response error for 5 minutes.
    • \n
    \n

    1.25.26 – 2022-04-19

    \n
      \n
    • Fix – Display error on cart block and checkout block from WC Blocks plugin.
    • \n
    • Fix – TaxJar does not calculate Quebec Sales Tax when shipping from Canadian address.
    • \n
    \n

    1.25.25 – 2022-03-29

    \n
      \n
    • Fix – TaxJar does not get the tax if the cart has non-taxable on the first item.
    • \n
    • Tweak – Use regex to check on WC Rest API route for WooCommerce Blocks compatibility.
    • \n
    \n

    1.25.24 – 2022-03-17

    \n
      \n
    • Fix – Empty document is opened when Firefox is set to open PDF file using another program.
    • \n
    • Fix – Label purchase modal sections getting cut off.
    • \n
    \n

    1.25.23 – 2022-02-10

    \n
      \n
    • Tweak – Make “Name” field optional if “Company” field is not empty.
    • \n
    • Fix – Added “Delete California tax rates” tool.
    • \n
    • Fix – Extract WC_Connect_TaxJar_Integration::backup_existing_tax_rates() for re-usability.
    • \n
    \n

    1.25.22 – 2022-02-02

    \n
      \n
    • Fix – TaxJar does not get the tax if the cart has non-taxable item.
    • \n
    • Tweak – Bump WP tested version to 5.9 and WC tested version to 6.1.
    • \n
    \n

    1.25.21 – 2022-01-26

    \n
      \n
    • Fix – Use ‘native’ pdf support feature for Firefox version 94 or later.
    • \n
    • Fix – Only call WC Subscriptions API when “access_token_secret” value is saved in database.
    • \n
    • Fix – Add name field to fields sent for EasyPost API address verification.
    • \n
    • Fix – Display company name under origin and destination address when create shipping label.
    • \n
    • Fix – Don’t override general “Enable Tax” setting with WC Services Automated Taxes setting.
    • \n
    \n

    1.25.20 – 2021-11-15

    \n
      \n
    • Fix – Hide “Shipping Label” and “Shipment Tracking” metabox when the label setting is disabled.
    • \n
    • Fix – Wrap TaxJar API zipcodes with wc_normalize_postcode() before inserting into the database.
    • \n
    • Fix – Update shipping label to only show non-refunded order line items.
    • \n
    • Fix – Added 3 digits currency code on shipping label price for non USD.
    • \n
    \n

    1.25.19 – 2021-10-14

    \n
      \n
    • Add – Notice about tax nexus in settings.
    • \n
    • Fix – Country drop down list no longer showing currency name.
    • \n
    \n

    1.25.18 – 2021-08-16

    \n
      \n
    • Add – Added “Automated Taxes” health item on status page.
    • \n
    • Fix – Show error when missing required destination phone for international shipments.
    • \n
    • Fix – Prevent PHP notice when a label’s commercial_invoice_url value is null.
    • \n
    • Fix – Prevent fatal error when viewing draft order.
    • \n
    • Tweak – Bump WP tested version to 5.8.
    • \n
    • Tweak – Bump WC Tested version to 5.5.
    • \n
    \n

    1.25.17 – 2021-07-13

    \n
      \n
    • Tweak – Replace Calypso FormCheckbox with CheckboxControl.
    • \n
    \n

    1.25.16 – 2021-07-09

    \n
      \n
    • Tweak – Replace components with @wordpress/components.
    • \n
    \n

    1.25.15 – 2021-06-30

    \n
      \n
    • Fix – Ensure shipping label metabox is displayed to users with the correct capabilities.
    • \n
    • Add – Added wcship_user_can_manage_labels filter to check permissions to print shipping labels.
    • \n
    • Add – Added wcship_manage_labels capability to check permissions to print shipping labels.
    • \n
    \n

    1.25.14 – 2021-06-15

    \n
      \n
    • Fix – Issue with printing blank label in Safari.
    • \n
    • Fix – DHL Express labels – require customs form when shipping to Puerto Rico.
    • \n
    • Fix – Update DHL Express pickup link.
    • \n
    \n

    1.25.13 – 2021-05-20

    \n
      \n
    • Fix – Prevent new sites from retrying failed connections.
    • \n
    • Fix – Data encoding when entities are part of order meta.
    • \n
    • Tweak – Update WC version support in headers.
    • \n
    • Fix – Plugin deletion when WooCommerce core is not present.
    • \n
    • Tweak – Rename automatic tax names for US.
    • \n
    • Fix – Check Jetpack constant defined by name.
    • \n
    • Fix – Sometimes taxes charged on shipping when they should not.
    • \n
    \n

    1.25.12 – 2021-04-21

    \n
      \n
    • Fix – UPS account connection form retry on invalid submission.
    • \n
    • Fix – Fix PHP 5.6 compatibility issue.
    • \n
    • Tweak – Update plugin author name.
    • \n
    • Fix – Removes unnecessary subscription debug error logs.
    • \n
    \n

    1.25.11 – 2021-04-06

    \n
      \n
    • Fix – Ensure status page is displayed on new WC navigation menu.
    • \n
    • Add – Run phpcbf as a pre-commit rule.
    • \n
    • Fix – Fix PHPUnit tests. Rename test_ to test- to match our phpcs rules. Remove travis and move to github action.
    • \n
    • Tweak – Updated .nvmrc to use 10.16.0
    • \n
    • Tweak – Update the shipping label status endpoint to accept and return multiple ids.
    • \n
    • Tweak – Display spinner icon during service data refresh.
    • \n
    • Add – Adds Dockerized E2E tests with GitHub Action integration.
    • \n
    • Fix – Handle DHL live rates notice creation and deletion errors.
    • \n
    \n

    1.25.10 – 2021-03-24

    \n
      \n
    • Add – Add an endpoint for shipping label creation eligibility and share code for store eligibility.
    • \n
    • Fix – Shipping validation notice shown when no address entered.
    • \n
    • Tweak – Stop retrying to fetch /services when authentication fails on connect server.
    • \n
    \n

    1.25.9 – 2021-03-17

    \n
      \n
    • Add – WC Admin notice about DHL live rates.
    • \n
    • Add – Live rates section in settings page.
    • \n
    • Tweak – Cleanup stripe functionality.
    • \n
    • Tweak – Display better errors on checkout page when address fields are missing / invalid.
    • \n
    • Tweak – Refresh on status page does not reload page.
    • \n
    • Fix – UPS invoice number allows numbers and letters.
    • \n
    • Add – Tracks shipping services used at checkout.
    • \n
    • Add – Update the existing endpoint POST /connect/packages to create shipping label packages, and add an endpoint PUT /connect/packages to update shipping label packages.
    • \n
    • Fix – Only display shipping validation errors on the cart or checkout pages.
    • \n
    • Tweak – Removes deprecated Jetpack constant JETPACK_MASTER_USER
    • \n
    • Fix – Revert radio button dot offset in the “Create shipping label” modal.
    • \n
    \n

    1.25.8 – 2021-03-02

    \n
      \n
    • Tweak – Add support for new Jetpack 9.5 data connection.
    • \n
    • Tweak – Change minimum Jetpack version support to Jetpack 7.5.
    • \n
    \n

    1.25.7 – 2021-02-09

    \n
      \n
    • Fix – Prevent error notices on checkout page load.
    • \n
    • Tweak – Highlight rate call usage over limit on WooCommerce Shipping settings page.
    • \n
    • Fix – Connect carrier account link broken on subdirectory installs.
    • \n
    • Fix – Position dot in the center of radio buttons in “Create shipping label”.
    • \n
    • Fix – Adjust radio button dot style in “Create shipping label” in high contrast mode on Windows.
    • \n
    \n

    1.25.6 – 2021-01-26

    \n
      \n
    • Fix – Refreshes shipping methods after registering or removing carrier accounts.
    • \n
    • Tweak – Changed rates response caching method from cache to transient.
    • \n
    \n

    1.25.5 – 2021-01-11

    \n
      \n
    • Fix – Redux DevTools usage update.
    • \n
    • Add – Display subscriptions usage.
    • \n
    • Add – Subscription activation.
    • \n
    • Add – Uses same DHL logo for all registered DHL accounts.
    • \n
    • Tweak – Adds WCCom access token and site ID to connect server request headers.
    • \n
    \n

    1.25.4 – 2020-12-08

    \n
      \n
    • Tweak – Remove Stripe connect functionality.
    • \n
    • Tweak – Remove unused method in shipping settings view.
    • \n
    • Fix – Breaking behavior on account registration page.
    • \n
    • Add – Allows registration of additional accounts.
    • \n
    • Tweak – Carrier description on dynamic carrier registration form.
    • \n
    • Fix – Adjust documentation links.
    • \n
    \n

    1.25.3 – 2020-11-24

    \n
      \n
    • Add – Initial code for WooCommerce.com subscriptions API.
    • \n
    • Add – Dynamic carrier registration form.
    • \n
    • Fix – When adding “signature required” to some packages, prices were not updating.
    • \n
    • Add – DHL Schedule Pickup link within order notes.
    • \n
    • Fix – UI fix for input validation for package dimensions and weights.
    • \n
    • Fix – Correct validation for UPS fields in Carrier Account connect form.
    • \n
    • Tweak – Add message to explain automated tax requires tax-exclusive product pricing.
    • \n
    • Fix – Disable USPS refunds for untracked labels only.
    • \n
    \n", "description": "

    Attention: Shipping features have moved to a new dedicated plugin. Download WooCommerce Shipping.

    \n

    Enable automated taxes
    \nThat’s it! Once you update your tax settings, your store will collect sales tax at checkout based on the store address in your WooCommerce Settings.

    \n

    Eliminate the need to even think about sales taxes for your store
    \nAutomatically calculate how much sales tax should be collected for WooCommerce orders — by city, country, or state — at checkout.

    \n

    External services

    \n

    This plugin relies on the following external services:

    \n
      \n
    1. \n

      WordPress.com connection:

      \n
        \n
      • Description: The plugin makes requests to our own endpoints at WordPress.com (proxied via https://api.woocommerce.com) to fetch automated tax calculations.
      • \n
      • Website: https://wordpress.com/
      • \n
      • Terms of Service: https://wordpress.com/tos/
      • \n
      • Privacy Policy: https://automattic.com/privacy/
      • \n
      \n
    2. \n
    3. \n

      Usage Tracking:

      \n
        \n
      • Description: The plugin will send usage statistics to our own service, after the user has accepted our Terms of Service.
      • \n
      • Script: https://stats.wp.com/w.js
      • \n
      • Terms of Service: https://wordpress.com/tos/
      • \n
      • Privacy Policy: https://automattic.com/privacy/
      • \n
      \n
    4. \n
    \n", "screenshots": "
    1. \"Enabling

      Enabling automated taxes

    2. \"Checking

      Checking on the health of WooCommerce Tax

    ", "installation": "

    This section describes how to install the plugin and get it working.

    \n
      \n
    1. Install and activate WooCommerce if you haven’t already done so
    2. \n
    3. Upload the plugin files to the /wp-content/plugins/woocommerce-tax directory, or install the plugin through the WordPress plugins screen directly.
    4. \n
    5. Activate the plugin through the ‘Plugins’ screen in WordPress
    6. \n
    7. Install, activate and connect to your WordPress.com account if you haven’t already done so
    8. \n
    9. Enable automated taxes from WooCommerce > Settings > Tax (make sure “enable taxes” is checked in General settings first)
    10. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.3.2.zip", "1.4.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.4.1.zip", "1.5.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.5.0.zip", "1.6.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.6.2.zip", "1.7.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.8.3.zip", "1.9.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.9.1.zip", "2.0.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.5.zip", "2.3.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.7.zip", "2.4.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.4.2.zip", "2.5.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.7.zip", "2.6.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.6.2.zip", "2.7.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.7.0.zip", "2.8.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.7.zip", "2.8.8": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.8.zip", "2.8.9": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.9.zip", "3.0.0": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/woocommerce-services.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/woocommerce-services.3.1.1.zip", "3.2.0": "https://downloads.wordpress.org/plugin/woocommerce-services.3.2.0.zip", "trunk": "https://downloads.wordpress.org/plugin/woocommerce-services.zip", "1.10.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.10.0.zip", "1.10.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.10.1.zip", "1.11.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.11.0.zip", "1.12.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.12.2.zip", "1.12.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.12.3.zip", "1.13.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.13.1.zip", "1.13.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.13.2.zip", "1.13.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.13.3.zip", "1.14.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.14.0.zip", "1.14.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.14.1.zip", "1.15.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.15.0.zip", "1.15.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.15.1.zip", "1.16.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.16.0.zip", "1.16.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.16.1.zip", "1.17.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.17.0.zip", "1.17.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.17.1.zip", "1.18.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.18.0.zip", "1.19.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.19.0.zip", "1.20.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.20.0.zip", "1.21.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.21.0.zip", "1.21.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.21.1.zip", "1.22.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.0.zip", "1.22.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.1.zip", "1.22.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.2.zip", "1.22.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.3.zip", "1.22.4": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.4.zip", "1.22.5": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.5.zip", "1.23.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.23.0.zip", "1.23.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.23.1.zip", "1.23.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.23.2.zip", "1.24.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.24.0.zip", "1.24.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.24.1.zip", "1.24.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.24.2.zip", "1.24.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.24.3.zip", "1.25.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.0.zip", "1.25.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.1.zip", "1.25.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.2.zip", "1.25.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.3.zip", "1.25.4": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.4.zip", "1.25.5": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.5.zip", "1.25.6": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.6.zip", "1.25.7": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.7.zip", "1.25.8": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.8.zip", "1.25.9": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.9.zip", "1.26.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.26.0.zip", "1.26.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.26.1.zip", "1.26.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.26.2.zip", "1.26.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.26.3.zip", "3.0.10": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.11.zip", "1.25.10": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.10.zip", "1.25.11": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.11.zip", "1.25.12": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.12.zip", "1.25.13": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.13.zip", "1.25.14": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.14.zip", "1.25.15": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.15.zip", "1.25.16": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.16.zip", "1.25.17": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.17.zip", "1.25.18": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.18.zip", "1.25.19": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.19.zip", "1.25.20": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.20.zip", "1.25.21": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.21.zip", "1.25.22": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.22.zip", "1.25.23": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.23.zip", "1.25.24": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.24.zip", "1.25.25": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.25.zip", "1.25.26": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.26.zip", "1.25.27": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.27.zip", "1.25.28": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.28.zip"}, "downloaded": 45643841, "description": "

    Attention: Shipping features have moved to a new dedicated plugin. Download WooCommerce Shipping.

    \n

    Enable automated taxes
    \nThat’s it! Once you update your tax settings, your store will collect sales tax at checkout based on the store address in your WooCommerce Settings.

    \n

    Eliminate the need to even think about sales taxes for your store
    \nAutomatically calculate how much sales tax should be collected for WooCommerce orders — by city, country, or state — at checkout.

    \n

    External services

    \n

    This plugin relies on the following external services:

    \n
      \n
    1. \n

      WordPress.com connection:

      \n
        \n
      • Description: The plugin makes requests to our own endpoints at WordPress.com (proxied via https://api.woocommerce.com) to fetch automated tax calculations.
      • \n
      • Website: https://wordpress.com/
      • \n
      • Terms of Service: https://wordpress.com/tos/
      • \n
      • Privacy Policy: https://automattic.com/privacy/
      • \n
      \n
    2. \n
    3. \n

      Usage Tracking:

      \n
        \n
      • Description: The plugin will send usage statistics to our own service, after the user has accepted our Terms of Service.
      • \n
      • Script: https://stats.wp.com/w.js
      • \n
      • Terms of Service: https://wordpress.com/tos/
      • \n
      • Privacy Policy: https://automattic.com/privacy/
      • \n
      \n
    4. \n
    \n", "donate_link": "", "num_ratings": 104, "screenshots": {"1": {"src": "https://ps.w.org/woocommerce-services/assets/screenshot-1.png?rev=3312777", "caption": "Enabling automated taxes"}, "2": {"src": "https://ps.w.org/woocommerce-services/assets/screenshot-2.png?rev=3312777", "caption": "Checking on the health of WooCommerce Tax"}}, "support_url": "https://wordpress.org/support/plugin/woocommerce-services/", "contributors": {"bor0": {"avatar": "https://secure.gravatar.com/avatar/787d8ea71701ced680cd80411d656c20e0e600be5d34f6ce3478143d43dc9fd9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bor0/", "display_name": "Boro Sitnikovski"}, "royho": {"avatar": "https://secure.gravatar.com/avatar/1beda14f19fa93030ba2c66359dc270286820af6c667cdfeb4e87833c747f3a0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/royho/", "display_name": "royho"}, "ferdev": {"avatar": "https://secure.gravatar.com/avatar/97514e795a6ba717b20215ae0b24879d944210d409e33b86705337bb5cab6f5a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ferdev/", "display_name": "ferdev"}, "nabsul": {"avatar": "https://secure.gravatar.com/avatar/8d44c8af1dd6f21bc45fc0768a4381def5619fd4040e246d8cb3481fa5ed82af?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nabsul/", "display_name": "nabsul"}, "jkudish": {"avatar": "https://secure.gravatar.com/avatar/ca20d16a7871a44d060a80ad572c90be25dd5b73212b0a839fb0474e623ee357?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jkudish/", "display_name": "Joey Kudish"}, "allendav": {"avatar": "https://secure.gravatar.com/avatar/6c18ebc68e4e3734db0d22cc70dd578066e68d8e95adde397c3f49d2b0eaf634?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/allendav/", "display_name": "Allen Snook"}, "cshultz88": {"avatar": "https://secure.gravatar.com/avatar/240ded0dc0d41abeba516088e27382d09d0a8725ca0204a395dc4adaa5257a7d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cshultz88/", "display_name": "Chris Shultz"}, "danreylop": {"avatar": "https://secure.gravatar.com/avatar/7c538fe91aece87ffaccc21881f7b002248b4a511a2716e8e4ced0e67b8763ed?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/danreylop/", "display_name": "danreylop"}, "mikeyarce": {"avatar": "https://secure.gravatar.com/avatar/c874a094de3814e0b4b87674503fa440d6e9cfa95ab1ce03a6a4021f950a0d03?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mikeyarce/", "display_name": "Mikey Arce"}, "woothemes": {"avatar": "https://secure.gravatar.com/avatar/954fd30b03a485d54b947afb3a55c4ebd563e42e6634e2c07101771cfd61d7d1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woothemes/", "display_name": "WooThemes"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "harriswong": {"avatar": "https://secure.gravatar.com/avatar/c18d831ac4681be94ae87cb09021dcbb070d1d7a4c24c251235e2a363b34cd5a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/harriswong/", "display_name": "harriswong"}, "pauldechov": {"avatar": "https://secure.gravatar.com/avatar/67b5ee9a4f2ffb0dbf1c43072fc9935d4626f7d57ceee1756d340fbef08a3ccf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pauldechov/", "display_name": "Paul Dechov"}, "superdav42": {"avatar": "https://secure.gravatar.com/avatar/4db71383e65d04f6bb90aac13b03b1e3de7fece2a8e85de4ce1b35af5ca4128c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superdav42/", "display_name": "David Stone"}, "jeffstieler": {"avatar": "https://secure.gravatar.com/avatar/5d533a2924e93a7cd796d7755f6a32d0b96902fcd0da6a5eaec6e2694caf069b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jeffstieler/", "display_name": "Jeff Stieler"}, "robobot3000": {"avatar": "https://secure.gravatar.com/avatar/d9960a7b6278884b6856355cc7198bab8055d4ffeb37ba1b5edff68ecf0f64d7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/robobot3000/", "display_name": "Marcin"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}, "radogeorgiev": {"avatar": "https://secure.gravatar.com/avatar/755d8085894fa0a121ecfde2bcf6e2a24165c39f8638f6419c2250f5005dd162?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/radogeorgiev/", "display_name": "Radoslav Georgiev"}, "shaunkuschel": {"avatar": "https://secure.gravatar.com/avatar/e61511204badbee8ea543b8364a7fed627dd40f884a65de013196f12d4c66a75?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/shaunkuschel/", "display_name": "Shaun Kuschel a11n"}, "kellychoffman": {"avatar": "https://secure.gravatar.com/avatar/82b79ce0b96409d22b4a159f5a38cc52670b0ced251535297aa74ad7101a4ee0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kellychoffman/", "display_name": "Kelly Hoffman"}, "dappermountain": {"avatar": "https://secure.gravatar.com/avatar/ce8e00a0924cfe5769be851137ea8146fc0ce0ec80f23f17da9d1260b0c48cc4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dappermountain/", "display_name": "dappermountain"}, "orangesareorange": {"avatar": "https://secure.gravatar.com/avatar/f761c9c683a4f24e335a500a8f246b30413f596b57a95619c86a84139404f29f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/orangesareorange/", "display_name": "orangesareorange"}, "bartoszbudzanowski": {"avatar": "https://secure.gravatar.com/avatar/58c7507f9a698b1986d6231e7f2821dbdd89d98836a17cff459e1ee0ba50c942?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bartoszbudzanowski/", "display_name": "Bartosz B. a11n"}}, "last_updated": "2025-10-14 6:38pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/woocommerce-services.3.2.0.zip", "author_profile": "https://profiles.wordpress.org/woocommerce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-fd46-739b-91a5-6b5582aebe14", "name": "WooCommerce Tax (formerly WooCommerce Shipping & Tax)", "slug": "woocommerce-services", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1760467080, "version": "3.2.0"}, "support_threads": 3, "requires_plugins": ["woocommerce"], "short_description": "We’re here to help with tax rates: collect accurate sales tax, automatically.", "author_block_count": 0, "author_block_rating": 40, "commercial_support_url": "", "support_threads_resolved": 3}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ecc-7084-be59-0c2c477919e5', 'did:web:api.aspiredev.org:packages:wp-plugin:wordfence', 'wordfence', 'Wordfence Security – Firewall, Malware Scan, and Login Security', '

    -

    THE MOST POPULAR WORDPRESS FIREWALL & SECURITY SCANNER

    -

    WordPress security requires a team of dedicated analysts researching the latest malware variants and WordPress exploits, turning them into firewall rules and malware signatures, and releasing those to customers in real-time.

    -

    Choose the right protection for you: Wordfence Free, Premium, Care or Response

    -

    Wordfence is widely acknowledged as the number one WordPress security research team in the World. Our plugin provides a comprehensive suite of security features, and our team’s research is what powers our plugin and provides the level of security that we are known for.

    -

    At Wordfence, WordPress security isn’t a division of our business – WordPress security is all we do. We employ a global 24-hour dedicated incident response team that provides our priority customers with a 1 hour response time for any security incident.

    -

    The sun never sets on our global security team and we run a sophisticated threat intelligence platform to aggregate, analyze and produce ground breaking security research on the newest security threats.

    -

    Wordfence Security includes an endpoint firewall, malware scanner, robust login security features, live traffic views, and more. Our Threat Defense Feed arms Wordfence with the newest firewall rules, malware signatures, and malicious IP addresses it needs to keep your website safe.

    -

    Rounded out by 2FA and a suite of additional features, Wordfence is the most comprehensive WordPress security solution available.

    -

    🔥 WORDPRESS FIREWALL

    -
      -
    • Web Application Firewall identifies and blocks malicious traffic. Built and maintained by a large team focused 100% on WordPress security.
    • -
    • Real-time firewall rule and malware signature [Premium] updates via the Threat Defense Feed (free version is delayed by 30 days).
    • -
    • Real-time IP Blocklist [Premium] blocks all requests from the most malicious IPs, protecting your site while reducing load.
    • -
    • Protects your site at the endpoint, enabling deep integration with WordPress. Unlike cloud alternatives, it does not break encryption, cannot be bypassed and cannot leak data.
    • -
    • Integrated malware scanner blocks requests that include malicious code or content.
    • -
    • Protection from brute force attacks by limiting login attempts.
    • -
    -

    📡 WORDPRESS SECURITY SCANNER

    -
      -
    • Malware scanner checks core files, themes and plugins for malware, bad URLs, backdoors, SEO spam, malicious redirects and code injections.
    • -
    • Real-time malware signature updates [Premium] via the Threat Defense Feed (free version is delayed by 30 days).
    • -
    • Compares with WordPress.org repository your core files, themes and plugins, checking their integrity and reporting any changes to you.
    • -
    • Repair WordPress core, theme, and plugin files that have changed by overwriting them with a pristine, original version. Delete any files that don’t belong easily within the Wordfence interface.
    • -
    • **Malware Removal Tools: “Delete File” and “Delete All Deletable Files” options allow for efficient malware removal. Remember to investigate the scan results and backup files first!
    • -
    • Checks your site for known security vulnerabilities and alerts you to any issues. Also alerts you to potential security issues when a plugin has been closed or abandoned.
    • -
    • Checks your content safety by scanning file contents, posts and comments for dangerous URLs and suspicious content.
    • -
    • Checks to see if your site or IP have been blocklisted [Premium] for malicious activity, generating spam or other security issues.
    • -
    -

    🔒 LOGIN SECURITY

    - -

    📋 SECURITY AUDIT LOG [Premium]

    -
      -
    • The Audit Log monitors all changes and actions in security-sensitive areas of the site.
    • -
    • Remote tamper-proof data storage via Wordfence Central.
    • -
    • Monitor events and actions ranging from user creation and editing to plugin/theme installation and updates to post and page changes.
    • -
    • Configurable to log all events or significant events only, which includes all authentication, site configuration, and site functionality events.
    • -
    -

    🌐 WORDFENCE CENTRAL

    -
      -
    • Wordfence Central is a powerful and efficient way to manage the security for multiple sites in one place.
    • -
    • Centralized management: Efficiently assess the security status of all your websites in one view. View detailed security findings without leaving Wordfence Central.
    • -
    • Powerful templates make configuring Wordfence a breeze.
    • -
    • Highly configurable alerts can be delivered via email, SMS or Slack. Improve the signal to noise ratio by leveraging severity level options and a daily digest option.
    • -
    • Track and alert on important security events including administrator logins, breached password usage and surges in attack activity.
    • -
    • Free to use for unlimited sites.
    • -
    -

    🛠️ SECURITY TOOLS

    -
      -
    • Live Traffic monitors visits and hack attempts not shown in other analytics packages in real time; including origin, their IP address, the time of day and time spent on your site.
    • -
    • Block attackers by IP or build advanced rules based on IP Range, Hostname, User Agent and Referrer.
    • -
    • Country blocking available with Wordfence Premium.
    • -
    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Wordfence Security – Firewall, Malware Scan, and Login Security", "slug": "wordfence", "tags": {"2fa": "2FA", "malware": "malware", "scanner": "scanner", "firewall": "firewall", "security": "security"}, "added": "2012-04-21", "icons": {"1x": "https://ps.w.org/wordfence/assets/icon.svg?rev=2070865", "svg": "https://ps.w.org/wordfence/assets/icon.svg?rev=2070865"}, "author": "Mark Maunder", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102", "high": "https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102"}, "ratings": {"1": 254, "2": 43, "3": 65, "4": 105, "5": 4233}, "version": "8.1.0", "homepage": "https://www.wordfence.com/", "requires": "4.7", "sections": {"faq": "

    Visit our website to access our official documentation which includes security feature descriptions, common solutions and comprehensive help.

    \n\n
    \nHow does Wordfence Security protect sites from attackers?\n\n

    \n

    The WordPress security plugin provides the best protection available for your website. Powered by the constantly updated Threat Defense Feed, Wordfence Firewall stops you from getting hacked. Wordfence Scan leverages the same proprietary feed, alerting you quickly about security issues or if your site is compromised. The Live Traffic view gives you real-time visibility into traffic and hack attempts on your website. A deep set of additional tools round out the most comprehensive WordPress security solution available.

    \n

    \n
    \nWhat features does Wordfence Premium enable?\n\n

    \n

    We offer a Premium API key that gives you real-time updates to the Threat Defense Feed which includes a real-time IP blocklist, firewall rules, and malware signatures. Premium support, country blocking, more frequent scans, and spam and spamvertising checks are also included. Click here to sign-up for Wordfence Premium now or simply install Wordfence free and start protecting your website.

    \n

    \n
    \nHow does the Wordfence WordPress Firewall protect websites?\n\n

    \n

      \n
    • Web Application Firewall stops you from getting hacked by identifying malicious traffic, blocking attackers before they can access your website.
    • \n
    • Threat Defense Feed automatically updates firewall rules that protect you from the latest threats. Premium members receive the real-time version.
    • \n
    • Block common WordPress security threats like fake Googlebots, malicious scans from hackers and botnets.
    • \n
    \n

    \n
    \nWhat checks does the Wordfence Security Scanner perform?\n\n

    \n

      \n
    • Scans core files, themes and plugins against WordPress.org repository versions to check their integrity. Verify security of your source.
    • \n
    • See how files have changed. Optionally repair changed files that are security threats.
    • \n
    • Scans for signatures of over 44,000 known malware variants that are known WordPress security threats.
    • \n
    • Scans for many known backdoors that create security holes including C99, R57, RootShell, Crystal Shell, Matamu, Cybershell, W4cking, Sniper, Predator, Jackal, Phantasma, GFS, Dive, Dx and many more.
    • \n
    • Continuously scans for malware and phishing URL’s including all URLs on the Google Safe Browsing List in all your comments, posts and files that are security threats.
    • \n
    • Scans for heuristics of backdoors, trojans, suspicious code and other security issues.
    • \n
    \n

    \n
    \nWhat security monitoring features does Wordfence include?\n\n

    \n

      \n
    • See all your traffic in real-time, including robots, humans, 404 errors, logins and logouts and who is consuming most of your content. Enhances your situational awareness of which security threats your site is facing.
    • \n
    • A real-time view of all traffic including automated bots that often constitute security threats that Javascript analytics packages never show you.
    • \n
    • Real-time traffic includes reverse DNS and city-level geolocation. Know which geographic area security threats originate from.
    • \n
    • Monitors disk space which is related to security because many DDoS attacks attempt to consume all disk space to create denial of service.
    • \n
    \n

    \n
    \nWhat login security features are included\n\n

    \n

      \n
    • See all your traffic in real-time, including robots, humans, 404 errors, logins and logouts and who is consuming most of your content. Enhances your situational awareness of which security threats your site is facing.
    • \n
    • A real-time view of all traffic including automated bots that often constitute security threats that Javascript analytics packages never show you.
    • \n
    • Real-time traffic includes reverse DNS and city-level geolocation. Know which geographic area security threats originate from.
    • \n
    • Monitors disk space which is related to security because many DDoS attacks attempt to consume all disk space to create denial of service.
    • \n
    \n

    \n
    \nHow will I be alerted if my site has a security problem?\n\n

    \n

    Wordfence sends security alerts via email. Once you install Wordfence, you will configure a list of email addresses where security alerts will be sent. When you receive a security alert, make sure you deal with it promptly to ensure your site stays secure.

    \n

    \n
    \nDo I need a security plugin like Wordfence if I’m using a cloud based firewall (WAF)?\n\n

    \n

    Wordfence provides true endpoint security for your WordPress website. Unlike cloud based firewalls, Wordfence executes within the WordPress environment, giving it knowledge like whether the user is signed in, their identity and what access level they have. Wordfence uses the user’s access level in more than 80% of the firewall rules it uses to protect WordPress websites. Learn more about the Cloud WAF identity problem here. Additionally, cloud based firewalls can be bypassed, leaving your site exposed to attackers. Because Wordfence is an integral part of the endpoint (your WordPress website), it can’t be bypassed. Learn more about the Cloud WAF bypass problem here. To fully protect the investment you’ve made in your website you need to employ a defense in depth approach to security. Wordfence takes this approach.

    \n

    \n
    \nWhat blocking features does Wordfence include?\n\n

    \n

      \n
    • Real-time blocking of known attackers. If another site using Wordfence is attacked and blocks the attacker, your site is automatically protected.
    • \n
    • Block entire malicious networks. Includes advanced IP and Domain WHOIS to report malicious IP’s or networks and block entire networks using the firewall. Report WordPress security threats to network owner.
    • \n
    • Rate limit or block WordPress security threats like aggressive crawlers, scrapers and bots doing security scans for vulnerabilities in your site.
    • \n
    • Choose whether you want to block or throttle users and robots who break your WordPress security rules.
    • \n
    • Premium users can also block countries and schedule scans for specific times and a higher frequency.
    • \n
    \n

    \n
    \nWhat differentiates Wordfence from other WordPress Security plugins?\n\n

    \n

      \n
    • Wordfence Security provides a WordPress Firewall developed specifically for WordPress and blocks attackers looking for vulnerabilities on your site. The Firewall is powered by our Threat Defense Feed which is continually updated as new threats emerge. Premium customers receive updates in real-time.
    • \n
    • Wordfence verifies your website source code integrity against the official WordPress repository and shows you the changes.
    • \n
    • Wordfence scans check all your files, comments and posts for URLs in Google’s Safe Browsing list. We are the only plugin to offer this very important security enhancement.
    • \n
    • Wordfence scans do not consume large amounts of your bandwidth because all security scans happen on your web server which makes them very fast.
    • \n
    • Wordfence fully supports WordPress Multi-Site which means you can security scan every blog in your Multi-Site installation with one click.
    • \n
    • Wordfence includes Two-Factor authentication, the most secure way to stop brute force attackers in their tracks.
    • \n
    • Wordfence fully supports IPv6 including giving you the ability to look up the location of IPv6 addresses, block IPv6 ranges, detect IPv6 country and do a whois lookup on IPv6 addresses and more.
    • \n
    \n

    \n
    \nWill Wordfence slow down my website?\n\n

    \n

    No. Wordfence Security is extremely fast and uses techniques like caching its own configuration data to avoid database lookups and blocking malicious attacks that would slow down your site.

    \n

    \n
    \nWhat if my site has already been hacked?\n\n

    \n

    Wordfence Security is able to repair core files, themes and plugins on sites where security is already compromised. You can follow this guide on how to clean a hacked website using Wordfence. If you are cleaning your own site after a hack, note that site security cannot be assured unless you do a full reinstall if your site has been hacked. We recommend you only use Wordfence Security to get your site into a running state in order to recover the data you need to do a full reinstall. If you need help with a security issue, check out Wordfence Care, which offers hands-on support from our team, including dealing with a hacked site. For mission-critical sites, check out Wordfence Response.

    \n

    \n
    \nDoes Wordfence Security support IPv6?\n\n

    \n

    Yes. We fully support IPv6 with all security functions including country blocking, range blocking, city lookup, whois lookup and all other security functions. If you are not running IPv6, Wordfence will work great on your site too. We are fully compatible with both IPv4 and IPv6 whether you run both or only one addressing scheme.

    \n

    \n
    \nDoes Wordfence Security support Multi-Site installations?\n\n

    \n

    Yes. WordPress Multi-Site is fully supported. Using Wordfence you can scan every blog in your network for malware with one click. If one of your customers posts a page or post with a known malware URL that threatens your whole domain with being blocklisted by Google, we will alert you in the next scan.

    \n

    \n
    \nWhat support options are available for Wordfence users?\n\n

    \n

    Providing excellent customer service is very important to us. Our free users receive volunteer-level support in our support forums. Wordfence Premium customers get paid ticket-based support. Wordfence Care customers receive hands-on support including help with security incidents and a yearly security audit. Wordfence Response customers get 24/7/365 support from our incident response team, with a 1 hour response time, and a maximum of 24 hours to resolve a security issue.

    \n

    \n
    \nWhere can I learn more about WordPress security?\n\n

    \n

    Designed for every skill level, The WordPress Security Learning Center is dedicated to deepening users’ understanding of security best practices by providing free access to entry-level articles, in-depth articles, videos, industry survey results, graphics and more.

    \n

    \n
    \nWhere can I find the Wordfence Terms of Service and Privacy Policy?\n\n

    \n

    These are available on our website: Terms of Service and Privacy Policy

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    AWESOME PLUGIN

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ideaup on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m using WordFence on all of my client''s websites and I''m sure it helped me to avoid attacks and malware, perhaps if the premium license will be cheaper surely I buy some of them

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Das Beste

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hanspeterdohr on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Das Beste ;-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy venty12 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good solution to secure WordPress...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does what it says on the tin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy denisotoole2017 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very happy with this plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ridebt on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Il folosesc de 2 ani si sunt foarte multumit de el

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Safety and convenience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Maurizio Lombardo (maxmediapubblicita) on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The Best

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great helps me to be safe !!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sqwell on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I had a really hard time this year with all those hacking bots, they kept finding new ways to access things, but now with Wordfence, I feel like I''ve been helped considerably! They still keep trying to use old log-in data that was leaked at some point. Now I just monitor everything as closely as possible and automatically update plugins and themes. A backup is easier to restore after a bad update. Hackers nest in places that are often not easily noticed, and restoring a backup often doesn''t do much. \"Thank you for the free version, which I already like so much.\"

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Krzysztof (autori76) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hi. It seems to be doing its job. I am happy with it. Thanks :-)

    \n\n\n\n

    Wordfence Security

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alexanderviteria on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Free version works great

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Saving Grace

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy BJ Harrington (bj78spider) on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have used WordFence in the past at other companies. I recently started with a new company, and one morning found out our site had been hacked, and our traffic was being re-routed to an Instanbul Escort Service!

    \n\n\n\n

    I jumped into action, and immediately install the free WordFence plug in, and ran a scan. It found 4 infected file. I deleted/repaired, and instantly our site was restored! Thanks WordFence.

    \n\n\n\n

    I am currently working to centralize all of our websites and have WordFence protecting all of them.

    \n
    \n
    \n", "changelog": "

    8.1.0 – August 25, 2025

    \n
      \n
    • Improvement: Added password scanning support for WordPress 6.8 and later
    • \n
    • Improvement: Limited email alerts to 5 per hour by default and added notification when limit has been reached
    • \n
    • Improvement: Improved URL scanning performance
    • \n
    • Improvement: Updated GeoIP database
    • \n
    • Change: Reduced scan result severity for vulnerabilities with high attack complexity or required privileges
    • \n
    • Change: Added messaging around WAF support when NGINX Unit is detected
    • \n
    • Change: Added notice and scan result about Wordfence Assistant
    • \n
    • Change: Adjusted IPv6 connection issue message and appearance
    • \n
    • Fix: Prevented deprecation notice about calling base64_encode with null parameter
    • \n
    • Fix: Prevented deprecation message about calling preg_match with null parameter
    • \n
    • Fix: Corrected license type shown on dashboard when expiring
    • \n
    • Fix: Prevented disabled getmyuid function from causing fatal error
    • \n
    • Fix: Prevented disabled get_current_user function from causing fatal error
    • \n
    • Fix: Prevented notice about _load_textdomain_just_in_time being called incorrectly
    • \n
    \n

    8.0.5 – April 8, 2025

    \n
      \n
    • Fix: Compatibility fixes for WordPress 6.8
    • \n
    \n

    8.0.4 – March 19, 2025

    \n
      \n
    • Improvement: Improved error handling and messaging for some responses from our servers
    • \n
    • Improvement: Added messaging when a site may be using the same free license shared among multiple sites because it can cause the sites to use the same scan schedule rather than spreading out the load
    • \n
    • Improvement: Updated the readme content and formatting
    • \n
    \n

    8.0.3 – January 15, 2025

    \n
      \n
    • Improvement: Added support for hosts relocating the WAF’s auto-prepend file via the constant/envvar WORDFENCE_WAF_PREPEND_DIRECTORY
    • \n
    • Improvement: Added detection for non-repo plugins and themes to avoid the scanner reporting changes when the same slug + version exists within the wordpress.org repo
    • \n
    • Improvement: Messaging for Central disconnections now better reflects the user making the change
    • \n
    • Improvement: Scan errors due to unreachable Wordfence servers will now provide a link to our status page to check for outages
    • \n
    • Improvement: Reduced the number of network calls created to sync scan issues when updates are performed in bulk
    • \n
    • Change: Reworked setting caching to avoid issues with some object caches
    • \n
    • Change: Reworked cURL check to avoid using WP_Http_Curl, which has been deprecated
    • \n
    • Fix: Normalized all wordfence.com links to be https
    • \n
    • Fix: Fixed a rare error that could occur on the diagnostics page when displaying a list of error logs
    • \n
    • Fix: Removed the “back to top” button and related script block from emailed diagnostics
    • \n
    • Fix: Fixed some UI coloring that did not correctly reflect the license type in use
    • \n
    \n

    8.0.2 – January 2, 2025

    \n
      \n
    • Improvement: General compatibility improvements and better error handling for PHP 8+
    • \n
    • Improvement: Added audit log status to the plugin dashboard
    • \n
    • Change: Increased width of diagnostics text export for better legibility
    • \n
    • Fix: Addressed an error with mail hooks and the audit log when third party plugins send unexpected value types
    • \n
    \n

    8.0.1 – November 14, 2024

    \n
      \n
    • Improvement: Updated GeoIP database
    • \n
    • Change: Revised some help text related to the audit log to be more clear
    • \n
    • Fix: Improved audit log compatibility with some plugins that would cause excessive noise due to their behaviors around setting up user roles and capabilities
    • \n
    • Fix: Fixed a log notice that could occur when deactivating Wordfence with audit log events still pending and a broken Wordfence Central link
    • \n
    \n

    8.0.0 – November 4, 2024

    \n
      \n
    • Improvement: Introduced the Wordfence Audit Log, a new premium feature to monitor all changes and actions in security-sensitive areas of the site with remote tamper-proof data storage via Wordfence Central
    • \n
    • Change: Increased the minimum supported WordPress version to 4.7
    • \n
    • Change: Increased the minimum supported PHP version to 7.0
    • \n
    \n

    7.11.7 – July 29, 2024

    \n
      \n
    • Improvement: Optimized scan performance by reducing database queries by approximately 38% along with CPU usage
    • \n
    • Fix: Added translation support for “Page not found” string when viewing recent traffic
    • \n
    \n

    7.11.6 – June 6, 2024

    \n
      \n
    • Improvement: Revised the strong password requirements notice to be more readable
    • \n
    • Improvement: Removed unnecessary calls for the plugin and theme vulnerability checks
    • \n
    • Improvement: Reduced the frequency of calls to Wordfence Central during some operations where the values do not need to be synced
    • \n
    • Improvement: Refactored some queries to avoid the automatic SHOW FULL COLUMNS queries that WordPress performs to verify database encodings
    • \n
    • Improvement: Infrequently-used config values are no longer automatically loaded into memory and instead loaded only on demand
    • \n
    • Fix: Fixed an issue where multisite installations using the WAF mysqli storage engine could repeatedly attempt to update WAF rules when not in optimized mode
    • \n
    • Improvement: Updated the bundled GeoIP database
    • \n
    • Change: Revised the formatting of TOTP app URLs to prioritize the site’s own URL for better sorting and display
    • \n
    • Fix: Fixed the last captcha column in the users page so it no longer displays “(not required)” on 2FA users since that no longer applies
    • \n
    • Fix: Added a check in wflogs/rules.php to only run when within the WAF’s bootstrap stage when hosted behind nginx
    • \n
    \n

    7.11.5 – April 3, 2024

    \n
      \n
    • Fix: Revised the behavior of the reCAPTCHA verification to use the documented expiration period of the token and response to avoid sending verification requests too frequently, which could artificially lower scores in some circumstances
    • \n
    • Fix: Addressed PHP 8 deprecation notices in the file differ used by file changed scan results
    • \n
    • Fix: Reduced the frequency of Wordfence Central status update callbacks in sections of the scan that occur quickly in sequence
    • \n
    \n

    7.11.4 – March 11, 2024

    \n
      \n
    • Change: CAPTCHA verification when enabled now additionally applies to 2FA logins (may send an email verification on low scores) and no longer reveals whether a user exists for the submitted account credentials (credit: Raxis)
    • \n
    • Fix: Addressed a potential PHP 8 notice in the human/bot detection AJAX call
    • \n
    • Fix: Addressed a potential PHP 8 notice when requesting a lockout unlock verification email
    • \n
    • Fix: Fixed the emailed diagnostics view not showing the missing table information when applicable
    • \n
    • Fix: Improved quick scan logic to base timing on regular scans so they’re more evenly distributed
    • \n
    \n

    7.11.3 – February 15, 2024

    \n
      \n
    • Fix: Fixed an issue with sites containing invalid Wordfence Central site data where they could throw an error when viewing Wordfence pages
    • \n
    \n

    7.11.2 – February 14, 2024

    \n
      \n
    • Improvement: Enhanced the vulnerability scan to check and alert for WordPress core vulnerabilities and to adjust the severity of the scan result based on findings or available updates
    • \n
    • Improvement: Updated the bundled GeoIP database
    • \n
    • Improvement: Increased compatibility of brute force protection with plugins that override the normal login flow and omit traditional hooks
    • \n
    • Change: Adjusted the behavior of automatic quick scans to schedule themselves further away from full scans
    • \n
    • Fix: Added detection for a site being linked to a non-matching Wordfence Central record (e.g., when cloning the database to a staging site)
    • \n
    • Fix: Streamlined the license and terms of use installation flow to avoid unnecessary prompting
    • \n
    • Fix: Fixed an issue where user profiles with a selected locale different from the site itself could end up loading the site’s locale instead
    • \n
    \n

    7.11.1 – January 2, 2024

    \n
      \n
    • Improvement: Added “.env” to the files checked for “Scan for publicly accessible configuration, backup, or log files”
    • \n
    • Improvement: Provided better descriptive text for the option “Block IPs who send POST requests with blank User-Agent and Referer”
    • \n
    • Improvement: The diagnostics page now displays the contents of any auto_prepend_file .htaccess/.user.ini block for troubleshooting
    • \n
    • Fix: Fixed an issue where a login lockout on a WooCommerce login form could fail silently
    • \n
    • Fix: The scan result for abandoned plugins no longer states it has been removed from wordpress.org if it is still listed
    • \n
    • Fix: Addressed an exception parsing date information in non-repo plugins that have a bad last_updated value
    • \n
    • Fix: The URL scanner no longer generates a log warning when matching a potential URL fragment that ends up not being a valid URL
    • \n
    \n

    7.11.0 – November 28, 2023

    \n
      \n
    • Improvement: Added new functionality for trusted proxy presets to support proxies such as Amazon CloudFront, Ezoic, and Quic.cloud
    • \n
    • Improvement: WAF rule and malware signature updates are now signed with SHA-256 as well for hosts that no longer build SHA1 support
    • \n
    • Improvement: Updated the bundled trusted CA certificates
    • \n
    • Change: The WAF will no longer attempt to fetch rule or blocklist updates when run via WP-CLI
    • \n
    • Fix: Removed uses of SQL_CALC_FOUND_ROWS, which is deprecated as of MySQL 8.0.17
    • \n
    • Fix: Fixed an issue where final scan summary counts in some instances were not sent to Central
    • \n
    • Fix: Fixed a deprecation notice for get_class in PHP 8.3.0
    • \n
    • Fix: Corrected an output error in the connectivity section of Diagnostics in text mode
    • \n
    \n

    7.10.7 – November 6, 2023

    \n
      \n
    • Fix: Compatibility fix for WordPress 6.4 on the login page styling
    • \n
    \n

    7.10.6 – October 30, 2023

    \n
      \n
    • Fix: Addressed an issue with multisite installations when the wp_options tables had different encodings/collations
    • \n
    \n

    7.10.5 – October 23, 2023

    \n
      \n
    • Improvement: Updated the bundled GeoIP database
    • \n
    • Improvement: Added detection for Cloudflare reverse proxies blocking callbacks to the site
    • \n
    • Change: Files are no longer excluded from future scans if a previous scan stopped during their processing
    • \n
    • Fix: Added handling for the pending WordPress 6.4 change that removes $wpdb->use_mysqli
    • \n
    • Fix: The WAF MySQLi storage engine will now work correctly when either DB_COLLATE or DB_CHARSET are not defined
    • \n
    • Fix: Added additional error handling to Central calls to better handle request failures or conflicts
    • \n
    • Fix: Addressed a warning that would occur if a non-repo plugin update hook did not provide a last updated date
    • \n
    • Fix: Fixed an error in PHP 8 that could occur if the time correction offset was not numeric
    • \n
    • Fix: 2FA AJAX calls now use an absolute path rather than a full URL to avoid CORS issues on sites that do not canonicalize www and non-www requests
    • \n
    • Fix: Addressed a race condition where multiple concurrent hits on multisite could trigger overlapping role sync tasks
    • \n
    • Fix: Improved performance when viewing the user list on large multisites
    • \n
    • Fix: Fixed a UI bug where an invalid code on 2FA activation would leave the activate button disabled
    • \n
    • Fix: Reverted a change on error modals to bring back the additional close button for better accessibility
    • \n
    \n

    7.10.4 – September 25, 2023

    \n
      \n
    • Improvement: “Admin created outside of WordPress” scan results may now be reviewed and approved
    • \n
    • Improvement: The WAF storage engine may now be specified by setting the environmental variable “WFWAF_STORAGE_ENGINE”
    • \n
    • Improvement: Detect when a plugin or theme with a custom update handler is broken and blocking update version checks
    • \n
    • Change: Deprecated support for WordPress versions lower than 4.7.0
    • \n
    • Change: Exclude parse errors of a damaged compiled rules file from reporting
    • \n
    • Fix: Suppress PHP notices related to rule loading when running WP-CLI
    • \n
    • Fix: Fixed an issue with the scan monitor cron that could leave it running unnecessarily
    • \n
    \n

    7.10.3 – July 31, 2023

    \n
      \n
    • Improvement: Updated GeoIP database
    • \n
    • Fix: Added missing text domain to translation function call
    • \n
    • Fix: Corrected inconsistent styling of switch controls
    • \n
    • Change: Made MySQLi storage engine the default for Flywheel hosted sites
    • \n
    \n

    7.10.2 – July 17, 2023

    \n
      \n
    • Fix: Prevented bundled sodium_compat library from conflicting with versions included with older WordPress versions
    • \n
    \n

    7.10.1 – July 12, 2023

    \n
      \n
    • Improvement: Added support for processing arrays of files in the WAF
    • \n
    • Improvement: Refactored security event processing to send events in bulk
    • \n
    • Improvement: Updated bundled sodium_compat and random_compat libraries
    • \n
    • Fix: Prevented deprecation warning caused by dynamic property creation
    • \n
    • Fix: Added translation support for additional strings
    • \n
    • Change: Adjusted Wordfence registration UI
    • \n
    \n

    7.10.0 – June 21, 2023

    \n
      \n
    • Improvement: Added translation support for strings from login security plugin
    • \n
    • Improvement: Added translator notes regarding word order and hidden text
    • \n
    • Improvement: Added translation support for additional strings
    • \n
    • Improvement: Prevented scans from failing if unreadable directories are encountered
    • \n
    • Improvement: Added help link to IPv4 scan option
    • \n
    • Improvement: Updated scan result text to clarify meaning of plugins removed from wordpress.org
    • \n
    • Improvement: Made “Increased Attack Rate” emails actionable
    • \n
    • Improvement: Updated GeoIP database
    • \n
    • Improvement: Updated JavaScript libraries
    • \n
    • Fix: Corrected IPv6 address expansion
    • \n
    • Fix: Ensured long request payloads for malicious requests are recorded in live traffic
    • \n
    • Fix: Prevented “commands out of sync” database error messages when the database connection has failed
    • \n
    • Fix: Prevented rare JSON encoding issues from breaking free license registration
    • \n
    • Fix: Prevented PHP notice from being logged when request parameter is missing
    • \n
    • Fix: Prevented deprecation warning in PHP 8.1
    • \n
    • Change: Moved detection for old TimThumb files to malware signature
    • \n
    • Change: Moved translation file from .po to .pot
    • \n
    • Change: Renamed “Macedonia” to “North Macedonia, Republic of”
    • \n
    \n

    7.9.3 – May 31, 2023

    \n
      \n
    • Improvement: Added exception handling to prevent WAF errors from being fatal
    • \n
    • Fix: Corrected error caused by method call on null in WAF
    • \n
    • Change: Deprecated support for PHP 5.5 and 5.6, ended support for PHP 5.3 and 5.4
    • \n
    • Change: Specified WAF version parameter when requesting firewall rules
    • \n
    \n

    7.9.2 – March 27, 2023

    \n
      \n
    • Improvement: The vulnerability severity score (CVSS) is now shown with any vulnerability findings from the scanner
    • \n
    • Improvement: Changed several links during initial setup to open in a new window/tab so it doesn’t interrupt installation
    • \n
    • Change: Removed the non-https callback test to the Wordfence servers
    • \n
    • Fix: Fixed an error on PHP 8 that could occur when checking for plugin updates and another plugin has a broken hook
    • \n
    • Fix: Added a check for disabled functions when generating support diagnostics to avoid an error on PHP 8
    • \n
    • Fix: Prevent double-clicking when activating 2FA to avoid an “already set up” error
    • \n
    \n

    7.9.1 – March 1, 2023

    \n
      \n
    • Improvement: Further improved performance when viewing 2FA settings and hid user counts by default on sites with many users
    • \n
    • Fix: Adjusted style inclusion and usage to prevent missing icons
    • \n
    • Fix: Avoided using the ctype extension as it may not be enabled
    • \n
    • Fix: Prevented fatal errors caused by malformed Central keys
    • \n
    \n

    7.9.0 – February 14, 2023

    \n
      \n
    • Improvement: Added 2FA management shortcode and WooCommerce account integration
    • \n
    • Improvement: Improved performance when viewing 2FA settings on sites with many users
    • \n
    • Improvement: Updated GeoIP database
    • \n
    • Fix: Ensured Captcha and 2FA scripts load on WooCommerce when activated on a sub-site in multisite
    • \n
    • Fix: Prevented reCAPTCHA logo from being obscured by some themes
    • \n
    • Fix: Enabled wfls_registration_blocked_message filter support for WooCommerce integration
    • \n
    \n

    7.8.2 – December 13, 2022

    \n
      \n
    • Fix: Releasing same changes as 7.8.1, due to wordpress.org error
    • \n
    \n

    7.8.1 – December 13, 2022

    \n
      \n
    • Improvement: Added more granualar data deletion options to deactivation prompt
    • \n
    • Improvement: Allowed accessing diagnostics prior to completing registration
    • \n
    • Fix: Prevented installation prompt from displaying when a license key is already installed but the alert email address has been removed
    • \n
    \n

    7.8.0 – November 28, 2022

    \n
      \n
    • Improvement: Added feedback when login form is submitted with 2FA
    • \n
    • Fix: Restored click support on login button when using 2FA with WooCommerce
    • \n
    • Fix: Corrected display issue with reCAPTCHA score history graph
    • \n
    • Fix: Prevented errors on PHP caused by corrupted login timestamps
    • \n
    • Fix: Prevented deprecation notices on PHP 8.2 related to dynamic properties
    • \n
    • Change: Updated Wordfence registration workflow
    • \n
    \n

    7.7.1 – October 4, 2022

    \n
      \n
    • Fix: Prevented scan resume attempts from repeating indefinitely when the initial scan stage fails
    • \n
    \n

    7.7.0 – October 3, 2022

    \n
      \n
    • Improvement: Added configurable scan resume functionality to prevent scan failures on sites with intermittent connectivity issues
    • \n
    • Improvement: Added new scan result for vulnerabilities found in plugins that do not have patched versions available via WordPress.org
    • \n
    • Improvement: Implemented stand-alone MMDB reader for IP address lookups to prevent plugin conflicts and support additional PHP versions
    • \n
    • Improvement: Added option to disable looking up IP address locations via the Wordfence API
    • \n
    • Improvement: Prevented successful logins from resetting brute force counters
    • \n
    • Improvement: Clarified IPv6 diagnostic
    • \n
    • Improvement: Included maximum number of days in live traffic option text
    • \n
    • Fix: Made timezones consistent on firewall page
    • \n
    • Fix: Added “Use only IPv4 to start scans” option to search
    • \n
    • Fix: Prevented deprecation notices on PHP 8.1 when emailing the activity log
    • \n
    • Fix: Prevented warning on PHP 8 related to process owner diagnostic
    • \n
    • Fix: Prevented PHP Code Sniffer false positive related to T_BAD_CHARACTER
    • \n
    • Fix: Removed unsupported beta feed option
    • \n
    \n

    7.6.2 – September 19, 2022

    \n
      \n
    • Improvement: Hardened 2FA login flow to reduce exposure in cases where an attacker is able to obtain privileged information from the database
    • \n
    \n

    7.6.1 – September 6, 2022

    \n
      \n
    • Fix: Prevented XSS that would have required admin privileges to exploit (CVE-2022-3144)
    • \n
    \n

    7.6.0 – July 28, 2022

    \n
      \n
    • Improvement: Added option to start scans using only IPv4
    • \n
    • Improvement: Added diagnostic for internal IPv6 connectivity to site
    • \n
    • Improvement: Added AUTOMATIC_UPDATER_DISABLED diagnostic
    • \n
    • Improvement: Updated password strength check
    • \n
    • Improvement: Added support for scanning plugin/theme files in when using the WP_CONTENT_DIR/WP_PLUGIN_DIR constants
    • \n
    • Improvement: Updated GeoIP database
    • \n
    • Improvement: Made DISABLE_WP_CRON diagnostic more clear
    • \n
    • Improvement: Added “Hostname” to Live Traffic message displayed for hostname blocking
    • \n
    • Improvement: Improved compatibility with Flywheel hosting
    • \n
    • Improvement: Adopted semantic versioning
    • \n
    • Improvement: Added support for dynamic cookie redaction patterns when logging requests
    • \n
    • Fix: Prevented scanned paths from being displayed as skipped in rare cases
    • \n
    • Fix: Corrected indexed files count in scan messages
    • \n
    • Fix: Prevented overlapping AJAX requests when viewing Live Traffic on slower servers
    • \n
    • Fix: Corrected WP_DEBUG_DISPLAY diagnostic
    • \n
    • Fix: Prevented extraneous warnings caused by DNS resolution failures
    • \n
    • Fix: Corrected display issue with Save/Cancel buttons on All Options page
    • \n
    • Fix: Prevented errors caused by WHOIS searches for invalid values
    • \n
    \n

    7.5.11 – June 14, 2022

    \n
      \n
    • Improvement: Added option to toggle display of last login column on WP Users page
    • \n
    • Improvement: Improved autocomplete support for 2FA code on Apple devices
    • \n
    • Improvement: Prevented Batcache from caching block pages
    • \n
    • Improvement: Updated GeoIP database
    • \n
    • Fix: Prevented extraneous scan results when non-existent paths are configured using UPLOADS and related constants
    • \n
    • Fix: Corrected issue that prevented reCAPTCHA scores from being recorded
    • \n
    • Fix: Prevented invalid JSON setting values from triggering fatal errors
    • \n
    • Fix: Made text domains consistent for translation support
    • \n
    • Fix: Clarified that allowlisted IP addresses also bypass reCAPTCHA
    • \n
    \n

    7.5.10 – May 17, 2022

    \n
      \n
    • Improvement: Improved scan support for sites with non-standard directory structures
    • \n
    • Improvement: Increased accuracy of executable PHP upload detection
    • \n
    • Improvement: Addressed various deprecation notices with PHP 8.1
    • \n
    • Improvement: Improved handling of invalidated license keys
    • \n
    • Fix: Corrected lost password redirect URL when used with WooCommerce
    • \n
    • Fix: Prevented errors when live traffic data exceeds database column length
    • \n
    • Fix: Prevented bulk password resets from locking out admins
    • \n
    • Fix: Corrected issue that prevented saving country blocking settings in certain cases
    • \n
    • Change: Updated copyright information
    • \n
    \n

    7.5.9 – March 22, 2022

    \n
      \n
    • Improvement: Updated GeoIP database
    • \n
    • Improvement: Removed blocking data update logic in order to reduce timeouts
    • \n
    • Improvement: Increased timeout value for API calls in order to reduce timeouts
    • \n
    • Improvement: Clarified notification count on Wordfence menu
    • \n
    • Improvement: Improved scan compatibility with WooCommerce
    • \n
    • Improvement: Added messaging when application passwords are disabled
    • \n
    • Fix: Prevented warnings and errors when constants are defined based on the value of other constants in wp-config.php
    • \n
    • Fix: Corrected redundant escaping that prevented viewing or repairing files in scan results
    • \n
    \n

    7.5.8 – February 1, 2022

    \n
      \n
    • Launch of Wordfence Care and Wordfence Response
    • \n
    \n

    7.5.7 – November 22, 2021

    \n
      \n
    • Improvement: Made preliminary changes for compatibility with PHP 8.1
    • \n
    • Change: Added GPLv3 license and updated EULA
    • \n
    \n

    7.5.6 – October 18, 2021

    \n
      \n
    • Fix: Prevented login errors with WooCommerce integration when manual username entry is enabled on the WooCommerce registration form
    • \n
    • Fix: Corrected theme incompatibilities with WooCommerce integration
    • \n
    \n

    7.5.5 – August 16, 2021

    \n
      \n
    • Improvement: Enhanced accessibility
    • \n
    • Improvement: Replaced regex in scan log with signature ID
    • \n
    • Improvement: Updated Knockout JS dependency to version 3.5.1
    • \n
    • Improvement: Removed PHP 8 compatibility notice
    • \n
    • Improvement: Added NTP status for Login Security to Diagnostics
    • \n
    • Improvement: Updated plugin headers for compatibility with WordPress 5.8
    • \n
    • Improvement: Updated Nginx documentation links to HTTPS
    • \n
    • Improvement: Updated IP address geolocation database
    • \n
    • Improvement: Expanded WAF SQL syntax support
    • \n
    • Improvement: Added optional constants to configure WAF database connection
    • \n
    • Improvement: Added support for matching punycode domain names
    • \n
    • Improvement: Updated Wordfence install count
    • \n
    • Improvement: Deprecated support for WordPress versions older than 4.4.0
    • \n
    • Improvement: Added warning messages when blocking U.S.
    • \n
    • Improvement: Added MYSQLI_CLIENT_SSL support to WAF database connection
    • \n
    • Improvement: Added 2FA and reCAPTCHA support for WooCommerce login and registration forms
    • \n
    • Improvement: Added option to require 2FA for any role
    • \n
    • Improvement: Added logic to automatically disable NTP after repeated failures and option to manually disable NTP
    • \n
    • Improvement: Updated reCAPTCHA setup note
    • \n
    • Fix: Prevented issue where country blocking changes are not saved
    • \n
    • Fix: Corrected string placeholder
    • \n
    • Fix: Added missing text domain to translation calls
    • \n
    • Fix: Corrected warning about sprintf arguments on Central setup page
    • \n
    • Fix: Prevented lost password functionality from revealing valid logins
    • \n
    \n

    7.5.4 – June 7, 2021

    \n
      \n
    • Fix: Resolve conflict with woocommerce-gateway-amazon-payments-advanced plugin
    • \n
    \n

    7.5.3 – May 10, 2021

    \n
      \n
    • Improvement: Expanded WAF capabilities including better JSON and user permission handling
    • \n
    • Improvement: Switched to relative paths in WAF auto_prepend file to increase portability
    • \n
    • Improvement: Eliminated unnecessary calls to Wordfence servers
    • \n
    • Fix: Prevented errors on PHP 8.0 when disk_free_space and/or disk_total_space are included in disabled_functions
    • \n
    • Fix: Fixed PHP notices caused by unexpected plugin version data
    • \n
    • Fix: Gracefully handle unexpected responses from Wordfence servers
    • \n
    • Fix: Time field now displays correctly on “See Recent Traffic” overlay
    • \n
    • Fix: Corrected typo on Diagnostics page
    • \n
    • Fix: Corrected IP counts on activity report
    • \n
    • Fix: Added missing line break in scan result emails
    • \n
    • Fix: Sending test activity report now provides success/failure response
    • \n
    • Fix: Reduced SQLi false positives caused by comma-separated strings
    • \n
    • Fix: Fixed JS error when resolving last scan result
    • \n
    \n

    7.5.2 – March 24, 2021

    \n
      \n
    • Fix: Fixed fatal error on single-sites running WordPress <4.9.
    • \n
    \n

    7.5.1 – March 24, 2021

    \n

    \n
      \n
    • Fix: Fixed fatal error when viewing the Login Security settings page from an allowlisted IP.
    • \n
    \n

    7.5.0 – March 24, 2021

    \n
      \n
    • Improvement: Translation-readiness: All user-facing strings are now run through WordPress’s i18n functions.
    • \n
    • Improvement: Remove legacy admin functions no longer used within the UI.
    • \n
    • Improvement: Local GeoIP database update.
    • \n
    • Improvement: Remove Lynwood IP range from allowlist, and add new AWS IP range.
    • \n
    • Fix: Fixed bug with unlocking a locked out IP without correctly resetting its failure counters.
    • \n
    • Fix: Sites using deleted premium licenses correctly revert to free license behavior.
    • \n
    • Fix: When enabled, cookies are now set for the correct roles on previously used devices.
    • \n
    • Fix: WAF cron jobs are now skipped when running on the CLI.
    • \n
    • Fix: PHP 8.0 compatibility – prevent syntax error when linting files.
    • \n
    • Fix: Fixed issue where PHP 8 notice sometimes cannot be dismissed.
    • \n
    \n

    7.4.14 – December 3, 2020

    \n
      \n
    • Improvement: Added option to disable application passwords.
    • \n
    • Improvement: Updated site cleaning callout with 1-year guarantee.
    • \n
    • Improvement: Upgraded sodium_compat library to 1.13.0.
    • \n
    • Improvement: Replaced the terms whitelist and blacklist with allowlist and blocklist.
    • \n
    • Improvement: Made a number of WordPress 5.6 and jQuery 3.x compatibility improvements.
    • \n
    • Improvement: Made a number of PHP8 compatilibility improvements.
    • \n
    • Improvement: Added dismissable notice informing users of possible PHP8 compatibility issues.
    • \n
    \n

    7.4.12 – October 21, 2020

    \n
      \n
    • Improvement: Initial integration of i18n in Wordfence.
    • \n
    • Improvement: Prevent Wordfence from loading under <PHP 5.3.
    • \n
    • Improvement: Updated GeoIP database.
    • \n
    • Improvement: Prevented wildcard from running/saving for scan’s excluded files pattern.
    • \n
    • Improvement: Included Wordfence Login Security tables in diagnostics missing table list.
    • \n
    • Fix: Removed new scan issues when WordPress update occurs mid-scan.
    • \n
    • Fix: Specified category when saving whitelistedServiceIPs to WAF storage engine.
    • \n
    • Fix: Removed localhost IP for auto-update email alerts.
    • \n
    • Fix: Fixed broken message in Live Traffic with MySQLi storage engine for blocklisted hits.
    • \n
    • Fix: Removed optional parameter values for PHP 8 compatibility.
    • \n
    \n

    You can find a complete changelog on our documentation site.

    \n", "description": "

    \n

    THE MOST POPULAR WORDPRESS FIREWALL & SECURITY SCANNER

    \n

    WordPress security requires a team of dedicated analysts researching the latest malware variants and WordPress exploits, turning them into firewall rules and malware signatures, and releasing those to customers in real-time.

    \n

    Choose the right protection for you: Wordfence Free, Premium, Care or Response

    \n

    Wordfence is widely acknowledged as the number one WordPress security research team in the World. Our plugin provides a comprehensive suite of security features, and our team’s research is what powers our plugin and provides the level of security that we are known for.

    \n

    At Wordfence, WordPress security isn’t a division of our business – WordPress security is all we do. We employ a global 24-hour dedicated incident response team that provides our priority customers with a 1 hour response time for any security incident.

    \n

    The sun never sets on our global security team and we run a sophisticated threat intelligence platform to aggregate, analyze and produce ground breaking security research on the newest security threats.

    \n

    Wordfence Security includes an endpoint firewall, malware scanner, robust login security features, live traffic views, and more. Our Threat Defense Feed arms Wordfence with the newest firewall rules, malware signatures, and malicious IP addresses it needs to keep your website safe.

    \n

    Rounded out by 2FA and a suite of additional features, Wordfence is the most comprehensive WordPress security solution available.

    \n

    🔥 WORDPRESS FIREWALL

    \n
      \n
    • Web Application Firewall identifies and blocks malicious traffic. Built and maintained by a large team focused 100% on WordPress security.
    • \n
    • Real-time firewall rule and malware signature [Premium] updates via the Threat Defense Feed (free version is delayed by 30 days).
    • \n
    • Real-time IP Blocklist [Premium] blocks all requests from the most malicious IPs, protecting your site while reducing load.
    • \n
    • Protects your site at the endpoint, enabling deep integration with WordPress. Unlike cloud alternatives, it does not break encryption, cannot be bypassed and cannot leak data.
    • \n
    • Integrated malware scanner blocks requests that include malicious code or content.
    • \n
    • Protection from brute force attacks by limiting login attempts.
    • \n
    \n

    📡 WORDPRESS SECURITY SCANNER

    \n
      \n
    • Malware scanner checks core files, themes and plugins for malware, bad URLs, backdoors, SEO spam, malicious redirects and code injections.
    • \n
    • Real-time malware signature updates [Premium] via the Threat Defense Feed (free version is delayed by 30 days).
    • \n
    • Compares with WordPress.org repository your core files, themes and plugins, checking their integrity and reporting any changes to you.
    • \n
    • Repair WordPress core, theme, and plugin files that have changed by overwriting them with a pristine, original version. Delete any files that don’t belong easily within the Wordfence interface.
    • \n
    • **Malware Removal Tools: “Delete File” and “Delete All Deletable Files” options allow for efficient malware removal. Remember to investigate the scan results and backup files first!
    • \n
    • Checks your site for known security vulnerabilities and alerts you to any issues. Also alerts you to potential security issues when a plugin has been closed or abandoned.
    • \n
    • Checks your content safety by scanning file contents, posts and comments for dangerous URLs and suspicious content.
    • \n
    • Checks to see if your site or IP have been blocklisted [Premium] for malicious activity, generating spam or other security issues.
    • \n
    \n

    🔒 LOGIN SECURITY

    \n\n

    📋 SECURITY AUDIT LOG [Premium]

    \n
      \n
    • The Audit Log monitors all changes and actions in security-sensitive areas of the site.
    • \n
    • Remote tamper-proof data storage via Wordfence Central.
    • \n
    • Monitor events and actions ranging from user creation and editing to plugin/theme installation and updates to post and page changes.
    • \n
    • Configurable to log all events or significant events only, which includes all authentication, site configuration, and site functionality events.
    • \n
    \n

    🌐 WORDFENCE CENTRAL

    \n
      \n
    • Wordfence Central is a powerful and efficient way to manage the security for multiple sites in one place.
    • \n
    • Centralized management: Efficiently assess the security status of all your websites in one view. View detailed security findings without leaving Wordfence Central.
    • \n
    • Powerful templates make configuring Wordfence a breeze.
    • \n
    • Highly configurable alerts can be delivered via email, SMS or Slack. Improve the signal to noise ratio by leveraging severity level options and a daily digest option.
    • \n
    • Track and alert on important security events including administrator logins, breached password usage and surges in attack activity.
    • \n
    • Free to use for unlimited sites.
    • \n
    \n

    🛠️ SECURITY TOOLS

    \n
      \n
    • Live Traffic monitors visits and hack attempts not shown in other analytics packages in real time; including origin, their IP address, the time of day and time spent on your site.
    • \n
    • Block attackers by IP or build advanced rules based on IP Range, Hostname, User Agent and Referrer.
    • \n
    • Country blocking available with Wordfence Premium.
    • \n
    \n", "screenshots": "
    1. \"The

      The dashboard gives you an overview of your site''s security including notifications, attack statistics and Wordfence feature status.

    2. \"The

      The firewall protects your site from common types of attacks and known security vulnerabilities.

    3. \"The

      The Wordfence Security Scanner lets you know if your site has been compromised and alerts you to other security issues that need to be addressed.

    4. \"Wordfence

      Wordfence is highly configurable, with a deep set of options available for each feature. High level scan options are shown above.

    5. \"Brute

      Brute Force Protection features protect you from password guessing attacks.

    6. \"Block

      Block attackers by IP, Country, IP range, Hostname, Browser or Referrer.

    7. \"The

      The Wordfence Live Traffic view shows you real-time activity on your site including bot traffic and exploit attempts.

    8. \"Take

      Take login security to the next level with Two-Factor Authentication.

    9. \"Logging

      Logging in is easy with Wordfence 2FA.

    ", "installation": "

    Secure your website using the following steps to install Wordfence:

    \n
      \n
    1. Install Wordfence automatically or by uploading the ZIP file.
    2. \n
    3. Activate the Wordfence through the ‘Plugins’ menu in WordPress. Wordfence is now activated.
    4. \n
    5. Go to the scan menu and start your first scan. Scheduled scanning will also be enabled.
    6. \n
    7. Once your first scan has completed, a list of threats will appear. Go through them one by one to secure your site.
    8. \n
    9. Visit the Wordfence options page to enter your email address so that you can receive email security alerts.
    10. \n
    11. Optionally, change your security level or adjust the advanced options to set individual scanning and protection options for your site.
    12. \n
    13. Click the “Live Traffic” menu option to watch your site activity in real-time. Situational awareness is an important part of website security.
    14. \n
    \n

    To install Wordfence on WordPress Multi-Site installations:

    \n
      \n
    1. Install Wordfence via the plugin directory or by uploading the ZIP file.
    2. \n
    3. Network Activate Wordfence. This step is important because until you network activate it, your sites will see the plugin option on their plugins menu. Once activated that option disappears.
    4. \n
    5. Now that Wordfence is network activated it will appear on your Network Admin menu. Wordfence will not appear on any individual site’s menu.
    6. \n
    7. Go to the “Scan” menu and start your first scan.
    8. \n
    9. Wordfence will do a scan of all files in your WordPress installation including those in the blogs.dir directory of your individual sites.
    10. \n
    11. Live Traffic will appear for ALL sites in your network. If you have a heavily trafficked system you may want to disable live traffic which will stop logging to the DB.
    12. \n
    13. Firewall rules and login rules apply to the WHOLE system. So if you fail a login on site1.example.com and site2.example.com it counts as 2 failures. Crawler traffic is counted between blogs, so if you hit three sites in the network, all the hits are totalled and that counts as the rate you’re accessing the system.
    14. \n
    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/wordfence.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/wordfence.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/wordfence.1.3.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wordfence.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wordfence.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wordfence.1.3.3.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wordfence.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/wordfence.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/wordfence.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/wordfence.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/wordfence.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/wordfence.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/wordfence.1.4.8.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wordfence.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/wordfence.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/wordfence.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/wordfence.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/wordfence.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/wordfence.1.5.6.zip", "2.0.1": "https://downloads.wordpress.org/plugin/wordfence.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/wordfence.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/wordfence.2.0.3.zip", "2.0.5": "https://downloads.wordpress.org/plugin/wordfence.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/wordfence.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/wordfence.2.0.7.zip", "2.1.0": "https://downloads.wordpress.org/plugin/wordfence.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/wordfence.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/wordfence.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/wordfence.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/wordfence.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/wordfence.2.1.5.zip", "3.0.2": "https://downloads.wordpress.org/plugin/wordfence.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/wordfence.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/wordfence.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/wordfence.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/wordfence.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/wordfence.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/wordfence.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/wordfence.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/wordfence.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/wordfence.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/wordfence.3.1.2.zip", "3.1.4": "https://downloads.wordpress.org/plugin/wordfence.3.1.4.zip", "3.1.6": "https://downloads.wordpress.org/plugin/wordfence.3.1.6.zip", "3.2.1": "https://downloads.wordpress.org/plugin/wordfence.3.2.1.zip", "3.2.3": "https://downloads.wordpress.org/plugin/wordfence.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/wordfence.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/wordfence.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/wordfence.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/wordfence.3.2.7.zip", "3.3.2": "https://downloads.wordpress.org/plugin/wordfence.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/wordfence.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/wordfence.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/wordfence.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/wordfence.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/plugin/wordfence.3.3.7.zip", "3.4.1": "https://downloads.wordpress.org/plugin/wordfence.3.4.1.zip", "3.4.4": "https://downloads.wordpress.org/plugin/wordfence.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/wordfence.3.4.5.zip", "3.5.1": "https://downloads.wordpress.org/plugin/wordfence.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/wordfence.3.5.2.zip", "3.6.1": "https://downloads.wordpress.org/plugin/wordfence.3.6.1.zip", "3.6.3": "https://downloads.wordpress.org/plugin/wordfence.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/wordfence.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/wordfence.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/wordfence.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/wordfence.3.6.7.zip", "3.6.8": "https://downloads.wordpress.org/plugin/wordfence.3.6.8.zip", "3.6.9": "https://downloads.wordpress.org/plugin/wordfence.3.6.9.zip", "3.7.1": "https://downloads.wordpress.org/plugin/wordfence.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/wordfence.3.7.2.zip", "3.8.1": "https://downloads.wordpress.org/plugin/wordfence.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/wordfence.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/wordfence.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/wordfence.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/wordfence.3.8.5.zip", "3.8.6": "https://downloads.wordpress.org/plugin/wordfence.3.8.6.zip", "3.8.7": "https://downloads.wordpress.org/plugin/wordfence.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/plugin/wordfence.3.8.8.zip", "3.8.9": "https://downloads.wordpress.org/plugin/wordfence.3.8.9.zip", "3.9.1": "https://downloads.wordpress.org/plugin/wordfence.3.9.1.zip", "4.0.1": "https://downloads.wordpress.org/plugin/wordfence.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/wordfence.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/wordfence.4.0.3.zip", "5.0.1": "https://downloads.wordpress.org/plugin/wordfence.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/wordfence.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/wordfence.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/wordfence.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/wordfence.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/wordfence.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/plugin/wordfence.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/plugin/wordfence.5.0.8.zip", "5.0.9": "https://downloads.wordpress.org/plugin/wordfence.5.0.9.zip", "5.1.1": "https://downloads.wordpress.org/plugin/wordfence.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/wordfence.5.1.2.zip", "5.1.4": "https://downloads.wordpress.org/plugin/wordfence.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/wordfence.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/wordfence.5.1.6.zip", "5.1.7": "https://downloads.wordpress.org/plugin/wordfence.5.1.7.zip", "5.1.8": "https://downloads.wordpress.org/plugin/wordfence.5.1.8.zip", "5.1.9": "https://downloads.wordpress.org/plugin/wordfence.5.1.9.zip", "5.2.1": "https://downloads.wordpress.org/plugin/wordfence.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/wordfence.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/wordfence.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/wordfence.5.2.4.zip", "5.2.5": "https://downloads.wordpress.org/plugin/wordfence.5.2.5.zip", "5.2.6": "https://downloads.wordpress.org/plugin/wordfence.5.2.6.zip", "5.2.7": "https://downloads.wordpress.org/plugin/wordfence.5.2.7.zip", "5.2.8": "https://downloads.wordpress.org/plugin/wordfence.5.2.8.zip", "5.2.9": "https://downloads.wordpress.org/plugin/wordfence.5.2.9.zip", "5.3.1": "https://downloads.wordpress.org/plugin/wordfence.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/wordfence.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/wordfence.5.3.3.zip", "5.3.4": "https://downloads.wordpress.org/plugin/wordfence.5.3.4.zip", "5.3.5": "https://downloads.wordpress.org/plugin/wordfence.5.3.5.zip", "5.3.6": "https://downloads.wordpress.org/plugin/wordfence.5.3.6.zip", "5.3.7": "https://downloads.wordpress.org/plugin/wordfence.5.3.7.zip", "5.3.8": "https://downloads.wordpress.org/plugin/wordfence.5.3.8.zip", "5.3.9": "https://downloads.wordpress.org/plugin/wordfence.5.3.9.zip", "6.0.1": "https://downloads.wordpress.org/plugin/wordfence.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/wordfence.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/wordfence.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/wordfence.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/wordfence.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/wordfence.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/wordfence.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/wordfence.6.0.8.zip", "6.0.9": "https://downloads.wordpress.org/plugin/wordfence.6.0.9.zip", "6.1.1": "https://downloads.wordpress.org/plugin/wordfence.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/wordfence.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/wordfence.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/wordfence.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/wordfence.6.1.5.zip", "6.1.6": "https://downloads.wordpress.org/plugin/wordfence.6.1.6.zip", "6.1.7": "https://downloads.wordpress.org/plugin/wordfence.6.1.7.zip", "6.1.8": "https://downloads.wordpress.org/plugin/wordfence.6.1.8.zip", "6.1.9": "https://downloads.wordpress.org/plugin/wordfence.6.1.9.zip", "6.2.0": "https://downloads.wordpress.org/plugin/wordfence.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/wordfence.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/wordfence.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/wordfence.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/wordfence.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/wordfence.6.2.5.zip", "6.2.6": "https://downloads.wordpress.org/plugin/wordfence.6.2.6.zip", "6.2.7": "https://downloads.wordpress.org/plugin/wordfence.6.2.7.zip", "6.2.8": "https://downloads.wordpress.org/plugin/wordfence.6.2.8.zip", "6.2.9": "https://downloads.wordpress.org/plugin/wordfence.6.2.9.zip", "6.3.0": "https://downloads.wordpress.org/plugin/wordfence.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/wordfence.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/wordfence.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/wordfence.6.3.3.zip", "6.3.4": "https://downloads.wordpress.org/plugin/wordfence.6.3.4.zip", "6.3.5": "https://downloads.wordpress.org/plugin/wordfence.6.3.5.zip", "6.3.6": "https://downloads.wordpress.org/plugin/wordfence.6.3.6.zip", "6.3.7": "https://downloads.wordpress.org/plugin/wordfence.6.3.7.zip", "6.3.8": "https://downloads.wordpress.org/plugin/wordfence.6.3.8.zip", "6.3.9": "https://downloads.wordpress.org/plugin/wordfence.6.3.9.zip", "7.0.1": "https://downloads.wordpress.org/plugin/wordfence.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/wordfence.7.0.2.zip", "7.0.3": "https://downloads.wordpress.org/plugin/wordfence.7.0.3.zip", "7.0.4": "https://downloads.wordpress.org/plugin/wordfence.7.0.4.zip", "7.0.5": "https://downloads.wordpress.org/plugin/wordfence.7.0.5.zip", "7.1.0": "https://downloads.wordpress.org/plugin/wordfence.7.1.0.zip", "7.1.1": "https://downloads.wordpress.org/plugin/wordfence.7.1.1.zip", "7.1.2": "https://downloads.wordpress.org/plugin/wordfence.7.1.2.zip", "7.1.3": "https://downloads.wordpress.org/plugin/wordfence.7.1.3.zip", "7.1.4": "https://downloads.wordpress.org/plugin/wordfence.7.1.4.zip", "7.1.5": "https://downloads.wordpress.org/plugin/wordfence.7.1.5.zip", "7.1.6": "https://downloads.wordpress.org/plugin/wordfence.7.1.6.zip", "7.1.7": "https://downloads.wordpress.org/plugin/wordfence.7.1.7.zip", "7.1.8": "https://downloads.wordpress.org/plugin/wordfence.7.1.8.zip", "7.1.9": "https://downloads.wordpress.org/plugin/wordfence.7.1.9.zip", "7.2.1": "https://downloads.wordpress.org/plugin/wordfence.7.2.1.zip", "7.2.2": "https://downloads.wordpress.org/plugin/wordfence.7.2.2.zip", "7.2.3": "https://downloads.wordpress.org/plugin/wordfence.7.2.3.zip", "7.2.4": "https://downloads.wordpress.org/plugin/wordfence.7.2.4.zip", "7.2.5": "https://downloads.wordpress.org/plugin/wordfence.7.2.5.zip", "7.3.1": "https://downloads.wordpress.org/plugin/wordfence.7.3.1.zip", "7.3.2": "https://downloads.wordpress.org/plugin/wordfence.7.3.2.zip", "7.3.3": "https://downloads.wordpress.org/plugin/wordfence.7.3.3.zip", "7.3.4": "https://downloads.wordpress.org/plugin/wordfence.7.3.4.zip", "7.3.5": "https://downloads.wordpress.org/plugin/wordfence.7.3.5.zip", "7.3.6": "https://downloads.wordpress.org/plugin/wordfence.7.3.6.zip", "7.4.0": "https://downloads.wordpress.org/plugin/wordfence.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/wordfence.7.4.1.zip", "7.4.2": "https://downloads.wordpress.org/plugin/wordfence.7.4.2.zip", "7.4.3": "https://downloads.wordpress.org/plugin/wordfence.7.4.3.zip", "7.4.4": "https://downloads.wordpress.org/plugin/wordfence.7.4.4.zip", "7.4.5": "https://downloads.wordpress.org/plugin/wordfence.7.4.5.zip", "7.4.6": "https://downloads.wordpress.org/plugin/wordfence.7.4.6.zip", "7.4.7": "https://downloads.wordpress.org/plugin/wordfence.7.4.7.zip", "7.4.8": "https://downloads.wordpress.org/plugin/wordfence.7.4.8.zip", "7.4.9": "https://downloads.wordpress.org/plugin/wordfence.7.4.9.zip", "7.5.0": "https://downloads.wordpress.org/plugin/wordfence.7.5.0.zip", "7.5.1": "https://downloads.wordpress.org/plugin/wordfence.7.5.1.zip", "7.5.2": "https://downloads.wordpress.org/plugin/wordfence.7.5.2.zip", "7.5.3": "https://downloads.wordpress.org/plugin/wordfence.7.5.3.zip", "7.5.4": "https://downloads.wordpress.org/plugin/wordfence.7.5.4.zip", "7.5.5": "https://downloads.wordpress.org/plugin/wordfence.7.5.5.zip", "7.5.6": "https://downloads.wordpress.org/plugin/wordfence.7.5.6.zip", "7.5.7": "https://downloads.wordpress.org/plugin/wordfence.7.5.7.zip", "7.5.8": "https://downloads.wordpress.org/plugin/wordfence.7.5.8.zip", "7.5.9": "https://downloads.wordpress.org/plugin/wordfence.7.5.9.zip", "7.6.0": "https://downloads.wordpress.org/plugin/wordfence.7.6.0.zip", "7.6.1": "https://downloads.wordpress.org/plugin/wordfence.7.6.1.zip", "7.6.2": "https://downloads.wordpress.org/plugin/wordfence.7.6.2.zip", "7.7.0": "https://downloads.wordpress.org/plugin/wordfence.7.7.0.zip", "7.7.1": "https://downloads.wordpress.org/plugin/wordfence.7.7.1.zip", "7.8.0": "https://downloads.wordpress.org/plugin/wordfence.7.8.0.zip", "7.8.1": "https://downloads.wordpress.org/plugin/wordfence.7.8.1.zip", "7.8.2": "https://downloads.wordpress.org/plugin/wordfence.7.8.2.zip", "7.9.0": "https://downloads.wordpress.org/plugin/wordfence.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/wordfence.7.9.1.zip", "7.9.2": "https://downloads.wordpress.org/plugin/wordfence.7.9.2.zip", "7.9.3": "https://downloads.wordpress.org/plugin/wordfence.7.9.3.zip", "8.0.0": "https://downloads.wordpress.org/plugin/wordfence.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/plugin/wordfence.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/plugin/wordfence.8.0.2.zip", "8.0.3": "https://downloads.wordpress.org/plugin/wordfence.8.0.3.zip", "8.0.4": "https://downloads.wordpress.org/plugin/wordfence.8.0.4.zip", "8.0.5": "https://downloads.wordpress.org/plugin/wordfence.8.0.5.zip", "8.1.0": "https://downloads.wordpress.org/plugin/wordfence.8.1.0.zip", "trunk": "https://downloads.wordpress.org/plugin/wordfence.zip", "5.3.10": "https://downloads.wordpress.org/plugin/wordfence.5.3.10.zip", "5.3.11": "https://downloads.wordpress.org/plugin/wordfence.5.3.11.zip", "5.3.12": "https://downloads.wordpress.org/plugin/wordfence.5.3.12.zip", "6.0.10": "https://downloads.wordpress.org/plugin/wordfence.6.0.10.zip", "6.0.11": "https://downloads.wordpress.org/plugin/wordfence.6.0.11.zip", "6.0.12": "https://downloads.wordpress.org/plugin/wordfence.6.0.12.zip", "6.0.14": "https://downloads.wordpress.org/plugin/wordfence.6.0.14.zip", "6.0.15": "https://downloads.wordpress.org/plugin/wordfence.6.0.15.zip", "6.0.16": "https://downloads.wordpress.org/plugin/wordfence.6.0.16.zip", "6.0.17": "https://downloads.wordpress.org/plugin/wordfence.6.0.17.zip", "6.0.18": "https://downloads.wordpress.org/plugin/wordfence.6.0.18.zip", "6.0.19": "https://downloads.wordpress.org/plugin/wordfence.6.0.19.zip", "6.0.20": "https://downloads.wordpress.org/plugin/wordfence.6.0.20.zip", "6.0.21": "https://downloads.wordpress.org/plugin/wordfence.6.0.21.zip", "6.0.22": "https://downloads.wordpress.org/plugin/wordfence.6.0.22.zip", "6.0.23": "https://downloads.wordpress.org/plugin/wordfence.6.0.23.zip", "6.0.24": "https://downloads.wordpress.org/plugin/wordfence.6.0.24.zip", "6.0.25": "https://downloads.wordpress.org/plugin/wordfence.6.0.25.zip", "6.1.10": "https://downloads.wordpress.org/plugin/wordfence.6.1.10.zip", "6.1.11": "https://downloads.wordpress.org/plugin/wordfence.6.1.11.zip", "6.1.12": "https://downloads.wordpress.org/plugin/wordfence.6.1.12.zip", "6.1.14": "https://downloads.wordpress.org/plugin/wordfence.6.1.14.zip", "6.1.15": "https://downloads.wordpress.org/plugin/wordfence.6.1.15.zip", "6.1.16": "https://downloads.wordpress.org/plugin/wordfence.6.1.16.zip", "6.1.17": "https://downloads.wordpress.org/plugin/wordfence.6.1.17.zip", "6.2.10": "https://downloads.wordpress.org/plugin/wordfence.6.2.10.zip", "6.3.10": "https://downloads.wordpress.org/plugin/wordfence.6.3.10.zip", "6.3.11": "https://downloads.wordpress.org/plugin/wordfence.6.3.11.zip", "6.3.12": "https://downloads.wordpress.org/plugin/wordfence.6.3.12.zip", "6.3.14": "https://downloads.wordpress.org/plugin/wordfence.6.3.14.zip", "6.3.15": "https://downloads.wordpress.org/plugin/wordfence.6.3.15.zip", "6.3.16": "https://downloads.wordpress.org/plugin/wordfence.6.3.16.zip", "6.3.17": "https://downloads.wordpress.org/plugin/wordfence.6.3.17.zip", "6.3.18": "https://downloads.wordpress.org/plugin/wordfence.6.3.18.zip", "6.3.19": "https://downloads.wordpress.org/plugin/wordfence.6.3.19.zip", "6.3.20": "https://downloads.wordpress.org/plugin/wordfence.6.3.20.zip", "6.3.21": "https://downloads.wordpress.org/plugin/wordfence.6.3.21.zip", "6.3.22": "https://downloads.wordpress.org/plugin/wordfence.6.3.22.zip", "7.1.10": "https://downloads.wordpress.org/plugin/wordfence.7.1.10.zip", "7.1.11": "https://downloads.wordpress.org/plugin/wordfence.7.1.11.zip", "7.1.12": "https://downloads.wordpress.org/plugin/wordfence.7.1.12.zip", "7.1.14": "https://downloads.wordpress.org/plugin/wordfence.7.1.14.zip", "7.1.15": "https://downloads.wordpress.org/plugin/wordfence.7.1.15.zip", "7.1.16": "https://downloads.wordpress.org/plugin/wordfence.7.1.16.zip", "7.1.17": "https://downloads.wordpress.org/plugin/wordfence.7.1.17.zip", "7.1.18": "https://downloads.wordpress.org/plugin/wordfence.7.1.18.zip", "7.1.19": "https://downloads.wordpress.org/plugin/wordfence.7.1.19.zip", "7.1.20": "https://downloads.wordpress.org/plugin/wordfence.7.1.20.zip", "7.10.0": "https://downloads.wordpress.org/plugin/wordfence.7.10.0.zip", "7.10.1": "https://downloads.wordpress.org/plugin/wordfence.7.10.1.zip", "7.10.2": "https://downloads.wordpress.org/plugin/wordfence.7.10.2.zip", "7.10.3": "https://downloads.wordpress.org/plugin/wordfence.7.10.3.zip", "7.10.4": "https://downloads.wordpress.org/plugin/wordfence.7.10.4.zip", "7.10.5": "https://downloads.wordpress.org/plugin/wordfence.7.10.5.zip", "7.10.6": "https://downloads.wordpress.org/plugin/wordfence.7.10.6.zip", "7.10.7": "https://downloads.wordpress.org/plugin/wordfence.7.10.7.zip", "7.11.0": "https://downloads.wordpress.org/plugin/wordfence.7.11.0.zip", "7.11.1": "https://downloads.wordpress.org/plugin/wordfence.7.11.1.zip", "7.11.2": "https://downloads.wordpress.org/plugin/wordfence.7.11.2.zip", "7.11.3": "https://downloads.wordpress.org/plugin/wordfence.7.11.3.zip", "7.11.4": "https://downloads.wordpress.org/plugin/wordfence.7.11.4.zip", "7.11.5": "https://downloads.wordpress.org/plugin/wordfence.7.11.5.zip", "7.11.6": "https://downloads.wordpress.org/plugin/wordfence.7.11.6.zip", "7.11.7": "https://downloads.wordpress.org/plugin/wordfence.7.11.7.zip", "7.4.10": "https://downloads.wordpress.org/plugin/wordfence.7.4.10.zip", "7.4.11": "https://downloads.wordpress.org/plugin/wordfence.7.4.11.zip", "7.4.12": "https://downloads.wordpress.org/plugin/wordfence.7.4.12.zip", "7.4.14": "https://downloads.wordpress.org/plugin/wordfence.7.4.14.zip", "7.5.10": "https://downloads.wordpress.org/plugin/wordfence.7.5.10.zip", "7.5.11": "https://downloads.wordpress.org/plugin/wordfence.7.5.11.zip", "v1.4.1": "https://downloads.wordpress.org/plugin/wordfence.v1.4.1.zip"}, "downloaded": 390248510, "description": "

    \n

    THE MOST POPULAR WORDPRESS FIREWALL & SECURITY SCANNER

    \n

    WordPress security requires a team of dedicated analysts researching the latest malware variants and WordPress exploits, turning them into firewall rules and malware signatures, and releasing those to customers in real-time.

    \n

    Choose the right protection for you: Wordfence Free, Premium, Care or Response

    \n

    Wordfence is widely acknowledged as the number one WordPress security research team in the World. Our plugin provides a comprehensive suite of security features, and our team’s research is what powers our plugin and provides the level of security that we are known for.

    \n

    At Wordfence, WordPress security isn’t a division of our business – WordPress security is all we do. We employ a global 24-hour dedicated incident response team that provides our priority customers with a 1 hour response time for any security incident.

    \n

    The sun never sets on our global security team and we run a sophisticated threat intelligence platform to aggregate, analyze and produce ground breaking security research on the newest security threats.

    \n

    Wordfence Security includes an endpoint firewall, malware scanner, robust login security features, live traffic views, and more. Our Threat Defense Feed arms Wordfence with the newest firewall rules, malware signatures, and malicious IP addresses it needs to keep your website safe.

    \n

    Rounded out by 2FA and a suite of additional features, Wordfence is the most comprehensive WordPress security solution available.

    \n

    🔥 WORDPRESS FIREWALL

    \n
      \n
    • Web Application Firewall identifies and blocks malicious traffic. Built and maintained by a large team focused 100% on WordPress security.
    • \n
    • Real-time firewall rule and malware signature [Premium] updates via the Threat Defense Feed (free version is delayed by 30 days).
    • \n
    • Real-time IP Blocklist [Premium] blocks all requests from the most malicious IPs, protecting your site while reducing load.
    • \n
    • Protects your site at the endpoint, enabling deep integration with WordPress. Unlike cloud alternatives, it does not break encryption, cannot be bypassed and cannot leak data.
    • \n
    • Integrated malware scanner blocks requests that include malicious code or content.
    • \n
    • Protection from brute force attacks by limiting login attempts.
    • \n
    \n

    📡 WORDPRESS SECURITY SCANNER

    \n
      \n
    • Malware scanner checks core files, themes and plugins for malware, bad URLs, backdoors, SEO spam, malicious redirects and code injections.
    • \n
    • Real-time malware signature updates [Premium] via the Threat Defense Feed (free version is delayed by 30 days).
    • \n
    • Compares with WordPress.org repository your core files, themes and plugins, checking their integrity and reporting any changes to you.
    • \n
    • Repair WordPress core, theme, and plugin files that have changed by overwriting them with a pristine, original version. Delete any files that don’t belong easily within the Wordfence interface.
    • \n
    • **Malware Removal Tools: “Delete File” and “Delete All Deletable Files” options allow for efficient malware removal. Remember to investigate the scan results and backup files first!
    • \n
    • Checks your site for known security vulnerabilities and alerts you to any issues. Also alerts you to potential security issues when a plugin has been closed or abandoned.
    • \n
    • Checks your content safety by scanning file contents, posts and comments for dangerous URLs and suspicious content.
    • \n
    • Checks to see if your site or IP have been blocklisted [Premium] for malicious activity, generating spam or other security issues.
    • \n
    \n

    🔒 LOGIN SECURITY

    \n\n

    📋 SECURITY AUDIT LOG [Premium]

    \n
      \n
    • The Audit Log monitors all changes and actions in security-sensitive areas of the site.
    • \n
    • Remote tamper-proof data storage via Wordfence Central.
    • \n
    • Monitor events and actions ranging from user creation and editing to plugin/theme installation and updates to post and page changes.
    • \n
    • Configurable to log all events or significant events only, which includes all authentication, site configuration, and site functionality events.
    • \n
    \n

    🌐 WORDFENCE CENTRAL

    \n
      \n
    • Wordfence Central is a powerful and efficient way to manage the security for multiple sites in one place.
    • \n
    • Centralized management: Efficiently assess the security status of all your websites in one view. View detailed security findings without leaving Wordfence Central.
    • \n
    • Powerful templates make configuring Wordfence a breeze.
    • \n
    • Highly configurable alerts can be delivered via email, SMS or Slack. Improve the signal to noise ratio by leveraging severity level options and a daily digest option.
    • \n
    • Track and alert on important security events including administrator logins, breached password usage and surges in attack activity.
    • \n
    • Free to use for unlimited sites.
    • \n
    \n

    🛠️ SECURITY TOOLS

    \n
      \n
    • Live Traffic monitors visits and hack attempts not shown in other analytics packages in real time; including origin, their IP address, the time of day and time spent on your site.
    • \n
    • Block attackers by IP or build advanced rules based on IP Range, Hostname, User Agent and Referrer.
    • \n
    • Country blocking available with Wordfence Premium.
    • \n
    \n", "donate_link": "", "num_ratings": 4700, "screenshots": {"1": {"src": "https://ps.w.org/wordfence/assets/screenshot-1.png?rev=2087795", "caption": "The dashboard gives you an overview of your site''s security including notifications, attack statistics and Wordfence feature status."}, "2": {"src": "https://ps.w.org/wordfence/assets/screenshot-2.png?rev=2087795", "caption": "The firewall protects your site from common types of attacks and known security vulnerabilities."}, "3": {"src": "https://ps.w.org/wordfence/assets/screenshot-3.png?rev=2087795", "caption": "The Wordfence Security Scanner lets you know if your site has been compromised and alerts you to other security issues that need to be addressed."}, "4": {"src": "https://ps.w.org/wordfence/assets/screenshot-4.png?rev=2087795", "caption": "Wordfence is highly configurable, with a deep set of options available for each feature. High level scan options are shown above."}, "5": {"src": "https://ps.w.org/wordfence/assets/screenshot-5.png?rev=2087795", "caption": "Brute Force Protection features protect you from password guessing attacks."}, "6": {"src": "https://ps.w.org/wordfence/assets/screenshot-6.png?rev=2087795", "caption": "Block attackers by IP, Country, IP range, Hostname, Browser or Referrer."}, "7": {"src": "https://ps.w.org/wordfence/assets/screenshot-7.png?rev=2087795", "caption": "The Wordfence Live Traffic view shows you real-time activity on your site including bot traffic and exploit attempts."}, "8": {"src": "https://ps.w.org/wordfence/assets/screenshot-8.png?rev=2098106", "caption": "Take login security to the next level with Two-Factor Authentication."}, "9": {"src": "https://ps.w.org/wordfence/assets/screenshot-9.png?rev=2087795", "caption": "Logging in is easy with Wordfence 2FA."}}, "support_url": "https://wordpress.org/support/plugin/wordfence/", "contributors": {"wfmatt": {"avatar": "https://secure.gravatar.com/avatar/f40c4f6e89947faf787e5959c136745d45c07dd46495db373940028c51dc8d65?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wfmatt/", "display_name": "wfmatt"}, "wfryan": {"avatar": "https://secure.gravatar.com/avatar/4960c082f7752f49cb6bc9396d93152c0c0d1a4fafd79853900197f859d6e936?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wfryan/", "display_name": "wfryan"}, "wfmattr": {"avatar": "https://secure.gravatar.com/avatar/ab283e340c004a27f20fcbef7f76163a21ceb505d219fe8e5d0be65d784c84eb?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wfmattr/", "display_name": "WFMattR"}, "mmaunder": {"avatar": "https://secure.gravatar.com/avatar/d011a414483d64f738ccc873b40569fc6affab79e0b37ffa06941d0248f909e0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mmaunder/", "display_name": "Mark Maunder"}}, "last_updated": "2025-08-25 6:27pm GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wordfence.8.1.0.zip", "author_profile": "https://profiles.wordpress.org/mmaunder/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 5000000, "aspiresync_meta": {"id": "019a30bf-fd7e-7229-9fd7-0f2ce74b0dd3", "name": "Wordfence Security – Firewall, Malware Scan, and Login Security", "slug": "wordfence", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1756146420, "version": "8.1.0"}, "support_threads": 178, "requires_plugins": [], "short_description": "Firewall, Malware Scanner, Two Factor Auth, and Comprehensive Security Features, powered by our 24-hour team. Make security a priority with Wordfence.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "https://support.wordfence.com/", "support_threads_resolved": 161}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1edc-7236-898e-63683fe446bd', 'did:web:api.aspiredev.org:packages:wp-plugin:wordpress-importer', 'wordpress-importer', 'WordPress Importer', '

    The WordPress Importer will import the following content from a WordPress export file:

    -
      -
    • Posts, pages and other custom post types
    • -
    • Comments and comment meta
    • -
    • Custom fields and post meta
    • -
    • Categories, tags and terms from custom taxonomies and term meta
    • -
    • Authors
    • -
    -

    For further information and instructions please see the documention on Importing Content.

    -

    Filters

    -

    The importer has a couple of filters to allow you to completely enable/block certain features:

    -
      -
    • import_allow_create_users: return false if you only want to allow mapping to existing users
    • -
    • import_allow_fetch_attachments: return false if you do not wish to allow importing and downloading of attachments
    • -
    • import_attachment_size_limit: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)
    • -
    -

    There are also a few actions available to hook into:

    -
      -
    • import_start: occurs after the export file has been uploaded and author import settings have been chosen
    • -
    • import_end: called after the last output from the importer
    • -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WordPress Importer", "slug": "wordpress-importer", "tags": {"importer": "importer"}, "added": "2010-05-20", "icons": {"1x": "https://ps.w.org/wordpress-importer/assets/icon.svg?rev=2791650", "svg": "https://ps.w.org/wordpress-importer/assets/icon.svg?rev=2791650"}, "author": "WordPress.org", "rating": 62, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654", "high": false}, "ratings": {"1": 112, "2": 30, "3": 21, "4": 25, "5": 125}, "version": "0.9.4", "homepage": "https://wordpress.org/plugins/wordpress-importer/", "requires": "5.2", "sections": {"faq": "\n
    \nHelp! I’m getting out of memory errors or a blank screen.\n\n

    \n

    If your exported file is very large, the import script may run into your host’s configured memory limit for PHP.

    \n

    A message like “Fatal error: Allowed memory size of 8388608 bytes exhausted” indicates that the script can’t successfully import your XML file under the current PHP memory limit. If you have access to the php.ini file, you can manually increase the limit; if you do not (your WordPress installation is hosted on a shared server, for instance), you might have to break your exported XML file into several smaller pieces and run the import script one at a time.

    \n

    For those with shared hosting, the best alternative may be to consult hosting support to determine the safest approach for running the import. A host may be willing to temporarily lift the memory limit and/or run the process directly from their end.

    \n

    Support Article: Importing Content

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Might be OK for very small imports

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy B Eades (BrentEades) on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I keep waiting for this plugin to stop being so unreliable but it hasn''t. On every site and host where I use it, it can handle up to maybe 100 posts at a time, if I''m lucky, but after that it''s likely to freeze or fail. Not recommended for anything but small-scale imports/exports.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    sehr eingeschränkt bezüglich Export

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Tauchente (tauchente) on September 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    sehr eingeschränkt bezüglich Export

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    gar nicht so schlecht

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Maxim (mxfx) on March 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    gar nicht so schlecht wie die andere hier den Plugin bewerten.
    + Beiträge wurden vollständig importiert
    + die Seiten sehen schief aus, aber wenn man aus einem Theme in ein anderen importiert, rechnet man auch damit, dass die Seiten nicht perfekt aussehen.

    \n\n\n\n

    ..und dass alles übrigens war kostenlos ..

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    funktioniert

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Klaus Kullmann (amafino) on November 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    War beim Erstellen hilfreich. Produkte,Bilder und Kunden importiert; viel Handarbeit und Wissen nötig. Bestellungen lassen sich leider nicht importieren.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So much bugs

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy liamanderson1993 on July 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We tried this multiple times but not working. It has some conflict with hosting and our hosting company suggests not to use this plugin. It wasted so many hours in the process and now I need to find another alternative.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Getting better and better

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mrkenobi on November 4, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I remember the time when this plugin was partially useless, but today I managed to export all of my posts and images easily and import them to my new installation. So, there was no need for a 3rd party plugin.
    This is useful for cluttered databases: when you transfer all your posts and images to new installation, then your database will have nothing but posts and images. Light and fast.
    Bye

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ianpeterharding on October 24, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works very well indeed!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works well for moving posts between blogs.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kelson (Kelson) on October 6, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good for the main use cases: restore from backup, and moving posts between blogs. Unfortunately the image import doesn''t seem to work (WordPress 6.3 with plugin 0.8.1), which makes it a pain to clean up image-heavy posts.

    \n\n\n\n

    One thing I''d like to do with this that I can''t is to import another copy of a cross-post and merge the comment threads. As it is, the best I can do is import the duplicate copy and then use another plugin (or dig into the database) to move the comments around.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very helpful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bulat2 on August 10, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Needed to copy the content of the old website to the one which is developed from scratch - and it worked!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    PERFECT BACKUP for Categories Users Comments

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy JEFF BAYGENTS (jeffbaygents) on July 21, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve used this just a few times in the past 18 months. And one time it was an incredible, urgent need as there were no server backups available from a web host (not with them anymore). Another time I made a mistake and deleted some comments.

    \n\n\n\n

    Anyway, this is only the 2nd review for this plugin within the past year or so. And I see a lot of negative scored posts. After reading them, I noticed a number of the 1-star reviews seemed to be user error. I''ve been in IT Management, development, and consulting for 4 decades. I use very little custom coding on my sites because, in my past experience, there are far less issues during updates and upgrades. So, with that said, I have also noticed there are a lot of optional settings to decide when using this tool. And many are preselected that I unselect. I recommend taking your time when using this tool and defining your own settings every time you use it.

    \n\n\n\n

    I use about 20 plugins and there''s no interference with any of them. But, I am careful about which plugins I retain. Also, I use this plugin just create backups or to perform restores from them. Then, I uninstall it until I need it again. For example, I''m here today because I''m getting ready to use it again as I''m about to make some major category changes. It will be very handy to use this tool to perform backups (and any needed restores) instead of using a site restore that will reset recent work on posts or pages.

    \n\n\n\n

    I use this as an additional backup and as an archive for all my sites. It''s always saved me when I needed it and I''ve found it to be reliable and solid. It''s been absolutely perfect for me when performing work on tags and categories so I don''t have to use a site restore.

    \n
    \n
    \n", "changelog": "

    0.9.4

    \n
      \n
    • Fix a bug that caused self-closing blocks to be incorrectly serialized during URL rewriting.
    • \n
    \n

    0.9.3

    \n
      \n
    • Rewrite attachment URLs to the new URL structure
    • \n
    \n

    0.9.2

    \n
      \n
    • Rewrite site URLs in block attributes.
    • \n
    \n

    0.9.1

    \n
      \n
    • Add support for rewriting site URLs in post content and excerpts.
    • \n
    \n

    0.9.0

    \n
      \n
    • Introduce a new XML parser class WXR_Parser_XML_Processor that replaces the
      \ndeprecated WXR_Parser_Regex class.
    • \n
    \n

    0.8.4

    \n
      \n
    • Fix a bug on deserialization of untrusted input.
    • \n
    • Update compatibility tested-up-to to WordPress 6.7.2.
    • \n
    \n

    0.8.3

    \n
      \n
    • Update compatibility tested-up-to to WordPress 6.7.
    • \n
    • Update call to post_exists to include post_type in the query
    • \n
    • PHP 8.4 compatibility fixes.
    • \n
    \n

    0.8.2

    \n
      \n
    • Update compatibility tested-up-to to WordPress 6.4.2.
    • \n
    • Update doc URL references.
    • \n
    • Adjust workflow triggers.
    • \n
    \n

    0.8.1

    \n
      \n
    • Update compatibility tested-up-to to WordPress 6.2.
    • \n
    • Update paths to build status badges.
    • \n
    \n

    0.8

    \n
      \n
    • Update minimum WordPress requirement to 5.2.
    • \n
    • Update minimum PHP requirement to 5.6.
    • \n
    • Update compatibility tested-up-to to WordPress 6.1.
    • \n
    • PHP 8.0, 8.1, and 8.2 compatibility fixes.
    • \n
    • Fix a bug causing blank lines in content to be ignored when using the Regex Parser.
    • \n
    • Fix a bug resulting in a PHP fatal error when IMPORT_DEBUG is enabled and a category creation error occurs.
    • \n
    • Improved Unit testing & automated testing.
    • \n
    \n

    0.7

    \n
      \n
    • Update minimum WordPress requirement to 3.7 and ensure compatibility with PHP 7.4.
    • \n
    • Fix bug that caused not importing term meta.
    • \n
    • Fix bug that caused slashes to be stripped from imported meta data.
    • \n
    • Fix bug that prevented import of serialized meta data.
    • \n
    • Fix file size check after download of remote files with HTTP compression enabled.
    • \n
    • Improve accessibility of form fields by adding missing labels.
    • \n
    • Improve imports for remote file URLs without name and/or extension.
    • \n
    • Add support for wp:base_blog_url field to allow importing multiple files with WP-CLI.
    • \n
    • Add support for term meta parsing when using the regular expressions or XML parser.
    • \n
    • Developers: All PHP classes have been moved into their own files.
    • \n
    • Developers: Allow to change IMPORT_DEBUG via wp-config.php and change default value to the value of WP_DEBUG.
    • \n
    \n

    0.6.4

    \n
      \n
    • Improve PHP7 compatibility.
    • \n
    • Fix bug that caused slashes to be stripped from imported comments.
    • \n
    • Fix for various deprecation notices including wp_get_http() and screen_icon().
    • \n
    • Fix for importing export files with multiline term meta data.
    • \n
    \n

    0.6.3

    \n
      \n
    • Add support for import term metadata.
    • \n
    • Fix bug that caused slashes to be stripped from imported content.
    • \n
    • Fix bug that caused characters to be stripped inside of CDATA in some cases.
    • \n
    • Fix PHP notices.
    • \n
    \n

    0.6.2

    \n\n

    0.6

    \n
      \n
    • Support for WXR 1.2 and multiple CDATA sections
    • \n
    • Post aren’t duplicates if their post_type’s are different
    • \n
    \n

    0.5.2

    \n
      \n
    • Double check that the uploaded export file exists before processing it. This prevents incorrect error messages when
      \nan export file is uploaded to a server with bad permissions and WordPress 3.3 or 3.3.1 is being used.
    • \n
    \n

    0.5

    \n
      \n
    • Import comment meta (requires export from WordPress 3.2)
    • \n
    • Minor bugfixes and enhancements
    • \n
    \n

    0.4

    \n
      \n
    • Map comment user_id where possible
    • \n
    • Import attachments from wp:attachment_url
    • \n
    • Upload attachments to correct directory
    • \n
    • Remap resized image URLs correctly
    • \n
    \n

    0.3

    \n
      \n
    • Use an XML Parser if possible
    • \n
    • Proper import support for nav menus
    • \n
    • … and much more, see Trac ticket #15197
    • \n
    \n

    0.1

    \n
      \n
    • Initial release
    • \n
    \n", "description": "

    The WordPress Importer will import the following content from a WordPress export file:

    \n
      \n
    • Posts, pages and other custom post types
    • \n
    • Comments and comment meta
    • \n
    • Custom fields and post meta
    • \n
    • Categories, tags and terms from custom taxonomies and term meta
    • \n
    • Authors
    • \n
    \n

    For further information and instructions please see the documention on Importing Content.

    \n

    Filters

    \n

    The importer has a couple of filters to allow you to completely enable/block certain features:

    \n
      \n
    • import_allow_create_users: return false if you only want to allow mapping to existing users
    • \n
    • import_allow_fetch_attachments: return false if you do not wish to allow importing and downloading of attachments
    • \n
    • import_attachment_size_limit: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)
    • \n
    \n

    There are also a few actions available to hook into:

    \n
      \n
    • import_start: occurs after the export file has been uploaded and author import settings have been chosen
    • \n
    • import_end: called after the last output from the importer
    • \n
    \n", "installation": "

    The quickest method for installing the importer is:

    \n
      \n
    1. Visit Tools -> Import in the WordPress dashboard
    2. \n
    3. Click on the WordPress link in the list of importers
    4. \n
    5. Click “Install Now”
    6. \n
    7. Finally click “Activate Plugin & Run Importer”
    8. \n
    \n

    If you would prefer to do things manually then follow these instructions:

    \n
      \n
    1. Upload the wordpress-importer folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to the Tools -> Import screen, click on WordPress
    6. \n
    \n"}, "versions": {"0.2": "https://downloads.wordpress.org/plugin/wordpress-importer.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/wordpress-importer.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/wordpress-importer.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/wordpress-importer.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/wordpress-importer.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/wordpress-importer.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/wordpress-importer.0.8.zip", "0.5.2": "https://downloads.wordpress.org/plugin/wordpress-importer.0.5.2.zip", "0.6.1": "https://downloads.wordpress.org/plugin/wordpress-importer.0.6.1.zip", "0.6.2": "https://downloads.wordpress.org/plugin/wordpress-importer.0.6.2.zip", "0.6.3": "https://downloads.wordpress.org/plugin/wordpress-importer.0.6.3.zip", "0.6.4": "https://downloads.wordpress.org/plugin/wordpress-importer.0.6.4.zip", "0.8.1": "https://downloads.wordpress.org/plugin/wordpress-importer.0.8.1.zip", "0.8.2": "https://downloads.wordpress.org/plugin/wordpress-importer.0.8.2.zip", "0.8.3": "https://downloads.wordpress.org/plugin/wordpress-importer.0.8.3.zip", "0.8.4": "https://downloads.wordpress.org/plugin/wordpress-importer.0.8.4.zip", "0.9.0": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.0.zip", "0.9.1": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.4.zip", "trunk": "https://downloads.wordpress.org/plugin/wordpress-importer.zip"}, "downloaded": 64369385, "description": "

    The WordPress Importer will import the following content from a WordPress export file:

    \n
      \n
    • Posts, pages and other custom post types
    • \n
    • Comments and comment meta
    • \n
    • Custom fields and post meta
    • \n
    • Categories, tags and terms from custom taxonomies and term meta
    • \n
    • Authors
    • \n
    \n

    For further information and instructions please see the documention on Importing Content.

    \n

    Filters

    \n

    The importer has a couple of filters to allow you to completely enable/block certain features:

    \n
      \n
    • import_allow_create_users: return false if you only want to allow mapping to existing users
    • \n
    • import_allow_fetch_attachments: return false if you do not wish to allow importing and downloading of attachments
    • \n
    • import_attachment_size_limit: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)
    • \n
    \n

    There are also a few actions available to hook into:

    \n
      \n
    • import_start: occurs after the export file has been uploaded and author import settings have been chosen
    • \n
    • import_end: called after the last output from the importer
    • \n
    \n", "donate_link": "https://wordpressfoundation.org/donate/", "num_ratings": 313, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/wordpress-importer/", "contributors": {"wordpressdotorg": {"avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "display_name": "WordPress.org"}}, "last_updated": "2025-10-10 8:55pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.4.zip", "author_profile": "https://profiles.wordpress.org/wordpressdotorg/", "business_model": "community", "repository_url": "https://github.com/WordPress/wordpress-importer", "upgrade_notice": [], "active_installs": 3000000, "aspiresync_meta": {"id": "019a30bf-fd98-7042-9d47-e1924110f7d2", "name": "WordPress Importer", "slug": "wordpress-importer", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760129700, "version": "0.9.4"}, "support_threads": 6, "requires_plugins": [], "short_description": "Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.", "author_block_count": "1", "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 2}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ee7-7093-95b3-625a7a8da0cb', 'did:web:api.aspiredev.org:packages:wp-plugin:wordpress-seo', 'wordpress-seo', 'Yoast SEO – Advanced SEO with real-time guidance and built-in AI', '

    Improve your SEO with real-time feedback, schema, and clear guidance. Upgrade for AI tools, Google Docs integration, and 24/7 support, no hidden fees.

    -

    Yoast SEO: The #1 WordPress SEO Plugin

    -

    Since 2008, Yoast SEO has helped millions of websites worldwide improve their visibility and SEO performance.
    -Our mission is SEO for Everyone — from small local businesses to some of the most visited sites on the web.

    -

    Yoast SEO gives you everything you need to manage your on-site SEO effectively.
    -The Yoast SEO Premium plugin and its extensions unlock even more advanced and AI-powered tools.

    -

    Handing you the competitive edge

    -

    SEO is the most consistent and cost-effective source of website traffic — but it can be complex. Whether you’re just starting out or an advanced user, Yoast SEO helps you handle SEO confidently and efficiently.

    -

    Don’t have time to stay on top of AI search and best practices? Keeping Yoast SEO updated means you automatically benefit from ongoing technical improvements, schema updates, and AI advancements — all guided by our signature traffic light approach.

    -

    Empower search engines to better understand your website using Schema.org structured data integration, and access in-depth content and readability analysis tools that help you create content designed to perform well in search.

    -

    Quick and easy setup

    -

    Setting up Yoast SEO is quick and straightforward — no technical background required.
    -Our step-by-step configuration wizard walks you through essential setup details so Yoast SEO can generate accurate structured data that helps search engines understand your site.

    -

    Switching from another SEO plugin like Rank Math or AIOSEO? Migration is seamless.
    -Import your existing SEO data and settings safely with our built-in import/export tools.

    -

    Content and AI features

    -

    Unlock your content’s full potential with Yoast SEO’s advanced content analysis and AI-powered tools.

    -

    Content optimization features:
    -– Detailed SEO analysis to guide keyword targeting and site performance.
    -– Readability analysis for clear, engaging, and user-friendly writing.
    -– SERP previews for both desktop and mobile results.
    -– HowTo and FAQ blocks with built-in schema support.
    -– Breadcrumbs block for improved navigation.
    -– Inclusive Language Analysis to make your content more considerate and accessible.
    -– Semrush integration for keyword research directly in Yoast SEO.
    -– Wincher integration to track keyword performance inside your dashboard.
    -– Elementor integration for seamless optimization within your favorite builder.

    -

    AI features (included in Premium):
    -– Yoast AI Generate – Instantly create five SEO-friendly titles and meta descriptions, with one-click regeneration for more options.
    -– Yoast AI Optimize – Improve keyphrase placement (introduction, distribution, density) automatically.
    -– Yoast AI Summarize (New 2025) – Generate quick content summaries for briefs or social posts.
    -– All AI tools included – No extra accounts, limits, or hidden costs.

    -

    These tools help you craft optimized, helpful content that resonates with readers and performs strongly across search platforms.

    -

    Taking care of your technical SEO

    -

    Yoast SEO automatically handles much of your site’s technical SEO, freeing you to focus on your content.

    -

    Key technical SEO features:
    -– Automated meta tag optimization right out of the box.
    -– Canonical URLs to prevent duplicate content issues.
    -– Advanced XML sitemaps for clear site indexing.
    -– Best-in-class Schema.org integration to improve search understanding and appearance.
    -– Complete breadcrumb control for visitors and crawlers.
    -– Performance improvements that help reduce load times.
    -– Crawl settings to manage how bots access your site and reduce environmental impact.
    -– LLMs.txt management to guide how large language models interact with your content.

    -

    Every update delivers ongoing technical SEO enhancements automatically.

    -

    Keep your website in perfect shape

    -

    Whether you’re a creator, business owner, or developer, Yoast SEO helps maintain your website’s SEO health:

    -
      -
    • Cornerstone content tools to organize and prioritize key pages.
    • -
    • Front-end SEO inspector to view and edit titles, descriptions, and schema live.
    • -
    • SEO roles to delegate plugin access securely across teams.
    • -
    • Regular 2-week update cycle to ensure compatibility with the latest SEO standards and search engine changes.
    • -
    -

    Powerful integrations

    -

    Yoast SEO works seamlessly with popular WordPress tools to enhance your workflow and results:

    - -

    Yoast SEO Premium – AI-powered SEO for WordPress

    -

    Yoast SEO Premium enhances everything in Yoast SEO with advanced automation, AI tools, and professional support.
    -Trusted by millions, it helps you optimize efficiently for both traditional and AI-driven search.

    -

    Tackle your SEO challenges:
    -– Keep pace with algorithm and AI search updates.
    -– Target the right audience effectively.
    -– Automate redirects, crawl controls, and internal linking.
    -– Identify orphaned content and improve site structure.
    -– Get support when you need it.

    -

    Premium highlights:
    -– AI-generated titles and meta descriptions.
    -– Smart internal linking suggestions.
    -– Social previews for Facebook and X.
    -– Redirect Manager with bulk tools and automatic prompts.
    -– Bot Blocker for AI crawlers (GPTBot, CCBot, Google-Extended).
    -– IndexNow integration for fast content updates.
    -– Front-end SEO Inspector for real-time editing.
    -– SEO Workouts to improve orphaned and cornerstone content.
    -– Google Docs add-on for seamless SEO writing in Docs.
    -– 24/7 premium support from SEO specialists.

    -

    Includes at no extra cost:
    -– Yoast Local SEO: Optimize for local audiences and Google Maps.
    -– Yoast Video SEO: Ensure Google understands your videos with video sitemaps and schema.
    -– Yoast News SEO: Increase visibility in Google News and Top Stories.

    -

    Yoast WooCommerce SEO – Advanced SEO for Online Stores

    -

    Yoast WooCommerce SEO builds on Yoast SEO Premium with ecommerce-specific tools to improve your store’s visibility and conversion potential.

    -

    Key ecommerce SEO features:
    -– WooCommerce-specific XML sitemap excluding non-shopping content.
    -– Product structured data for enhanced rich results (price, reviews, availability).
    -– Canonical URL management to prevent duplicates.
    -– Ecommerce-focused content analysis for GTINs, SKUs, and short descriptions.
    -– AI Generate for ecommerce – Instantly create optimized titles and meta descriptions for product and category pages.

    -

    Benefits:
    -– Improve product visibility with automated structured data.
    -– Enhance crawl efficiency for large catalogs.
    -– Save time through metadata templates and automation.
    -– Increase engagement with AI-optimized ecommerce metadata.

    -

    Built for WooCommerce, trusted by thousands of online stores worldwide.

    -

    For Developers

    -

    Yoast SEO is built with developers in mind. With modern APIs, hooks, and a unified indexables system, you can extend or integrate SEO functionality across custom themes, plugins, or headless setups.

    -

    REST API

    -

    Retrieve SEO metadata for any post or URL, including meta tags, Open Graph, Twitter Cards, and Schema.org data.
    -Learn more about the REST API.

    -

    Surfaces API

    -

    Access SEO data directly in code via YoastSEO()->meta->for_current_page().
    -Supports titles, descriptions, canonicals, and schema.
    -Read the Surfaces API documentation.

    -

    Metadata API

    -

    Use the Metadata API to filter, override, or extend meta tags with WordPress hooks such as wpseo_title, wpseo_metadesc, and wpseo_canonical.

    -

    Schema API

    -

    The Schema API lets you modify or extend Schema.org graph pieces, including Article, Organization, Person, Breadcrumb, and WebPage entities.

    -

    Block Editor compatibility

    -

    Yoast SEO integrates directly with the WordPress Block Editor (Gutenberg).
    -It outputs schema for HowTo and FAQ blocks by default, and developers can extend schema for custom blocks.

    -

    Indexables

    -

    At the core of Yoast SEO lies the indexables system, unifying all SEO data for faster queries and consistent metadata across outputs.

    -

    Ongoing support and education

    -

    Yoast is powered by expert developers, testers, and SEO specialists who keep improving the plugin.
    -We’re committed to helping users grow their SEO skills with resources such as:

    - -

    Yoast SEO — built to make search optimization accessible, reliable, and ready for the future of AI search.

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Yoast SEO – Advanced SEO with real-time guidance and built-in AI", "slug": "wordpress-seo", "tags": {"seo": "seo", "schema": "schema", "readability": "Readability", "xml-sitemap": "xml sitemap", "content-analysis": "Content analysis"}, "added": "2010-10-11", "icons": {"1x": "https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3112542", "2x": "https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3112542"}, "author": "Yoast", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=3257862", "high": "https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=3257862"}, "ratings": {"1": 840, "2": 140, "3": 199, "4": 635, "5": 25965}, "version": "26.2", "homepage": "https://yoa.st/1uj", "requires": "6.7", "sections": {"faq": "\n
    \nHow do the XML Sitemaps in the Yoast SEO plugin work?\n\n

    \n

    Having an XML sitemap can be beneficial for SEO, as Google can retrieve essential pages of a website very fast, even if the internal linking of a site isn’t flawless.
    \nThe sitemap index and individual sitemaps are updated automatically as you add or remove content and will include the post types you want search engines to index. Post Types marked as noindex will not appear in the sitemap. Learn more about XML Sitemaps.

    \n

    \n
    \nHow can I add my website to Google Search Console?\n\n

    \n

    It is straightforward to add your website to Google Search Console.
    \n1. Create a Google Search Console account and login into your account.
    \n2. Click ‘Add a property’ under the search drop-down.
    \n3. Enter your website URL in the box and click ‘Continue’.
    \n4. Click the arrow next to ‘HTML tag’ to expand the option.
    \n5. Copy the meta tag.
    \n6. Log in to your WordPress website.
    \n7. Click on ‘SEO’ in the dashboard.
    \n8. Click on ‘General’.
    \n9. Click on the ‘Webmaster Tools’ tab.
    \n10. Paste the code in the Google field and click ‘Save Changes’.
    \n11. Go back to Google Search Console and click ‘Verify’.

    \n

    If you want more details steps, please visit our article on our help center.

    \n

    \n
    \nHow do I implement Yoast SEO breadcrumbs?\n\n

    \n

    The steps below are a temporary solution as manual edits made to theme files may be overwritten with future theme updates. Please contact the theme developer for a permanent solution. We’ve written an article about the importance of breadcrumbs for SEO.

    \n

    To implement the breadcrumbs function in Yoast SEO, you will have to edit your theme. We recommend that prior to any editing of the theme files, a backup is taken. Your host provider can help you take a backup.
    \nCopy the following code into your theme where you want the breadcrumbs to be. If you are not sure, you will need to experiment with placement:

    \n
    <?php\nif ( function_exists( ''yoast_breadcrumb'' ) ) {\n    yoast_breadcrumb( ''<p id=\"breadcrumbs\">'',''</p>'' );\n}\n?>\n
    \n

    Common places where you could place your breadcrumbs are inside your single.php and/or page.php file just above the page’s title. Another option that makes it really easy in some themes is by just pasting the code in header.php at the very end.

    \n

    In most non-WooTheme themes, this code snippet should not be added to your functions.php file.
    \nAlternatively, you can manually add the breadcrumb shortcode to individual posts or pages: [wpseo_breadcrumb]

    \n

    If you need more details or a step by step guide, read our Implementation guide for Yoast SEO breadcrumbs.

    \n

    \n
    \nHow do I noindex URLS?\n\n

    \n

    Yoast SEO provides multiple options for setting a URL or group of URLs to noindex. Read more about how to do this in this guide.

    \n

    \n
    \nGoogle shows the wrong description, how do I fix this?\n\n

    \n

    If you’ve crafted nice meta descriptions for your blog posts, nothing is more annoying than Google showing another description for your site completely in the search result snippet.

    \n

    Possible causes could be:
    \n1. wrong description in code
    \n2. Google cache is outdated
    \n3. Search term manipulation
    \n4. Google ignored the meta description

    \n

    You can read more here on how to solve the issue with the wrong description.

    \n

    \n
    \nHow often is Yoast SEO updated?\n\n

    \n

    Yoast SEO is updated every two weeks. If you want to know why, please read this post on why we release every two weeks!

    \n

    \n
    \nHow do I get support?\n\n

    \n

    As our free plugin is used by millions of people worldwide, we cannot offer you all one on one support. If you have trouble with the Yoast SEO for WordPress plugin, you can get help on the support forums here at wordpress.org or by checking out our help center at yoast.com/help/.

    \n

    The plugins you buy at Yoast are called ‘premium plugins’ (even if Premium isn’t in its name) and include a complete year of free updates and premium support. This means you can contact our support team if you have any questions about that plugin.

    \n

    Read more on how to get support

    \n

    \n
    \nWhat happens to my data if I enable usage tracking?\n\n

    \n

    This page on yoast.com explains what data we collect to improve Yoast SEO. We only collect data when you explicitly opt in. Read more about how we handle your data in our Privacy Policy.

    \n

    \n
    \nI have a different question than listed here\n\n

    \n

    Your question has most likely been answered on our help center: yoast.com/help/.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best Seo Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Sushyant Zavarzadeh (sushyant) on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I can confidently say this is the best SEO plugin ever made for WordPress. Its excellent features, regular updates, and step-by-step guidance set it apart from similar plugins. One of the things I like about this plugin is the checklist available in the post editing section, which guides you on how to optimise your content for the keyword. Green means excellent, orange means acceptable, and red means you need to work more seriously on the content. But with its guidance, you can handle it easily.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Still the Gold Standard for WordPress SEO

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shadowheezy on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yoast SEO continues to be one of the most essential plugins for anyone serious about growing their WordPress site. The setup is intuitive, and the content analysis tools make it easy to optimize posts for both readers and search engines.

    \n\n\n\n

    I especially love the readability checks, schema markup, and built-in XML sitemaps — everything just works seamlessly. The regular updates and documentation show how much care the team puts into keeping Yoast at the top of its game.

    \n\n\n\n

    If you want better rankings and cleaner on-page SEO, this is a must-have plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rar77 on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    SEO is not important apparently

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Frank (Frankoutsole) on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The developers are aware that their plugin does not send over the ''availibility'' information of variable products to Google. The fields ''availability'' and ''priceValidUntil'' showing for variable products are missing in our WooCommerce SEO schema, and it gives a warning in the Google Rich test tool.\" Hence about 70% visibility is limited. Not that important, right. THIS IS A SEO PLUGIN.

    \n\n\n\n

    Their help: \"Customizing the plugin to fit an individual site''s needs is outside the scope of support due to the required programming expertise.\"

    \n\n\n\n

    Yes, having decent rich snippets is super duper individual. Are you guys serious? That''s nuts! Going back to rankmath.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great for optimizing SEO

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fever100 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It helped me optimize SEO on my site. I like the meta data options for blog posts

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wow

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nickshkv on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have just installed it. But already have recommendations! That''s great! Thank you.
    The setup was incredibly smooth. The plugin walked me through the configuration step by step, so I was up and running in minutes.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Michael Fridrich (michaelfridrich) on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is a good guide, especially for new SEO. Gives a hint of improvement instantly and updates regularly.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Smooth Experience but Could Be Better Value

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Asif Hossain (asifhossain1) on September 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The interface is clean, friendly, and makes SEO feel less intimidating. It is a solid choice for beginners who want quick wins without a steep learning curve. That said, the premium price feels hard to justify when other plugins give you more for less.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Expensive for Premium Features

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rahul Basu (rahulbasu) on August 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After extensive use across dozens of projects, Yoast SEO remains the gold standard for WordPress SEO with its intuitive traffic light system and solid technical foundation. The new AI-powered meta descriptions are genuinely helpful, and the free version covers most small business needs effectively. However, the premium version at $99/year feels overpriced for what you get, and competitors like RankMath now offer similar features for free. The plugin can create a false sense of security - hitting all green lights doesn''t guarantee rankings.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    What a time saver and sooo much better than my efforts

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy trcs on August 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am not good at marketing and fancy words and SEO ... and this software has made life so much better. I am proud of the blurb now appearing in the search engines ... I am sure my sales have improved.

    \n
    \n
    \n", "changelog": "

    26.2

    \n

    Release date: 2025-10-21

    \n

    Yoast SEO 26.2 brings more enhancements and bugfixes. Find more information about our software releases and updates here.

    \n

    Enhancements

    \n
      \n
    • Adds a Pronouns field to the user profile and includes these pronouns in the Schema.org output. Props to jdevalk.
    • \n
    • Adds edit buttons next to the keyphrase in meta description, keyphrase in slug, and keyphrase in SEO title assessments when there is no keyphrase and/or no meta description, slug, or SEO title.
    • \n
    • Improves the transition words assessment for Arabic by expanding the list of recognized transition words. Props to Reem76-ar.
    • \n
    • Introduces Content blocks collapsible inside Yoast Metabox and Sidebar to improve Yoast custom blocks discoverability.
    • \n
    \n

    Other

    \n
      \n
    • Adapts the behavior of the Contact our support team button in the Support page to our new Premium and WooCommerce SEO subscription plans.
    • \n
    • Disables opcache invalidation on plugin upgrade for a subset of the userbase.
    • \n
    \n

    26.1.1

    \n

    Release date: 2025-10-08

    \n

    Other

    \n
      \n
    • Updates an outdated piece of copy.
    • \n
    \n

    26.1

    \n

    Release date: 2025-10-07

    \n

    Yoast SEO 26.1 brings more enhancements and bugfixes. Find more information about our software releases and updates here.

    \n

    Enhancements

    \n
      \n
    • Improves the UX of the llms.txt settings page, by informing the user that they have to save their changes in order for the file to be generated.
    • \n
    • Introduces the option to add an Ahrefs verification code via the Yoast Settings page.
    • \n
    \n

    Bugfixes

    \n
      \n
    • Fixes a bug where the llms.txt opt-in would hide behind the WordPress sidebar when on RTL language.
    • \n
    \n

    Other

    \n
      \n
    • Introduces the Yoast\\WP\\SEO\\should_invalidate_opcache filter that disables opcache invalidation on plugin upgrade.
    • \n
    • Lets users know about the new Yoast SEO AI+ plan and related features.
    • \n
    • Updates the Site features page to include icons instead of images.
    • \n
    \n

    Earlier versions

    \n

    For the changelog of earlier versions, please refer to the changelog on yoast.com.

    \n", "description": "

    Improve your SEO with real-time feedback, schema, and clear guidance. Upgrade for AI tools, Google Docs integration, and 24/7 support, no hidden fees.

    \n

    Yoast SEO: The #1 WordPress SEO Plugin

    \n

    Since 2008, Yoast SEO has helped millions of websites worldwide improve their visibility and SEO performance.
    \nOur mission is SEO for Everyone — from small local businesses to some of the most visited sites on the web.

    \n

    Yoast SEO gives you everything you need to manage your on-site SEO effectively.
    \nThe Yoast SEO Premium plugin and its extensions unlock even more advanced and AI-powered tools.

    \n

    Handing you the competitive edge

    \n

    SEO is the most consistent and cost-effective source of website traffic — but it can be complex. Whether you’re just starting out or an advanced user, Yoast SEO helps you handle SEO confidently and efficiently.

    \n

    Don’t have time to stay on top of AI search and best practices? Keeping Yoast SEO updated means you automatically benefit from ongoing technical improvements, schema updates, and AI advancements — all guided by our signature traffic light approach.

    \n

    Empower search engines to better understand your website using Schema.org structured data integration, and access in-depth content and readability analysis tools that help you create content designed to perform well in search.

    \n

    Quick and easy setup

    \n

    Setting up Yoast SEO is quick and straightforward — no technical background required.
    \nOur step-by-step configuration wizard walks you through essential setup details so Yoast SEO can generate accurate structured data that helps search engines understand your site.

    \n

    Switching from another SEO plugin like Rank Math or AIOSEO? Migration is seamless.
    \nImport your existing SEO data and settings safely with our built-in import/export tools.

    \n

    Content and AI features

    \n

    Unlock your content’s full potential with Yoast SEO’s advanced content analysis and AI-powered tools.

    \n

    Content optimization features:
    \n– Detailed SEO analysis to guide keyword targeting and site performance.
    \n– Readability analysis for clear, engaging, and user-friendly writing.
    \n– SERP previews for both desktop and mobile results.
    \n– HowTo and FAQ blocks with built-in schema support.
    \n– Breadcrumbs block for improved navigation.
    \n– Inclusive Language Analysis to make your content more considerate and accessible.
    \n– Semrush integration for keyword research directly in Yoast SEO.
    \n– Wincher integration to track keyword performance inside your dashboard.
    \n– Elementor integration for seamless optimization within your favorite builder.

    \n

    AI features (included in Premium):
    \n– Yoast AI Generate – Instantly create five SEO-friendly titles and meta descriptions, with one-click regeneration for more options.
    \n– Yoast AI Optimize – Improve keyphrase placement (introduction, distribution, density) automatically.
    \n– Yoast AI Summarize (New 2025) – Generate quick content summaries for briefs or social posts.
    \n– All AI tools included – No extra accounts, limits, or hidden costs.

    \n

    These tools help you craft optimized, helpful content that resonates with readers and performs strongly across search platforms.

    \n

    Taking care of your technical SEO

    \n

    Yoast SEO automatically handles much of your site’s technical SEO, freeing you to focus on your content.

    \n

    Key technical SEO features:
    \n– Automated meta tag optimization right out of the box.
    \n– Canonical URLs to prevent duplicate content issues.
    \n– Advanced XML sitemaps for clear site indexing.
    \n– Best-in-class Schema.org integration to improve search understanding and appearance.
    \n– Complete breadcrumb control for visitors and crawlers.
    \n– Performance improvements that help reduce load times.
    \n– Crawl settings to manage how bots access your site and reduce environmental impact.
    \n– LLMs.txt management to guide how large language models interact with your content.

    \n

    Every update delivers ongoing technical SEO enhancements automatically.

    \n

    Keep your website in perfect shape

    \n

    Whether you’re a creator, business owner, or developer, Yoast SEO helps maintain your website’s SEO health:

    \n
      \n
    • Cornerstone content tools to organize and prioritize key pages.
    • \n
    • Front-end SEO inspector to view and edit titles, descriptions, and schema live.
    • \n
    • SEO roles to delegate plugin access securely across teams.
    • \n
    • Regular 2-week update cycle to ensure compatibility with the latest SEO standards and search engine changes.
    • \n
    \n

    Powerful integrations

    \n

    Yoast SEO works seamlessly with popular WordPress tools to enhance your workflow and results:

    \n\n

    Yoast SEO Premium – AI-powered SEO for WordPress

    \n

    Yoast SEO Premium enhances everything in Yoast SEO with advanced automation, AI tools, and professional support.
    \nTrusted by millions, it helps you optimize efficiently for both traditional and AI-driven search.

    \n

    Tackle your SEO challenges:
    \n– Keep pace with algorithm and AI search updates.
    \n– Target the right audience effectively.
    \n– Automate redirects, crawl controls, and internal linking.
    \n– Identify orphaned content and improve site structure.
    \n– Get support when you need it.

    \n

    Premium highlights:
    \n– AI-generated titles and meta descriptions.
    \n– Smart internal linking suggestions.
    \n– Social previews for Facebook and X.
    \n– Redirect Manager with bulk tools and automatic prompts.
    \n– Bot Blocker for AI crawlers (GPTBot, CCBot, Google-Extended).
    \n– IndexNow integration for fast content updates.
    \n– Front-end SEO Inspector for real-time editing.
    \n– SEO Workouts to improve orphaned and cornerstone content.
    \n– Google Docs add-on for seamless SEO writing in Docs.
    \n– 24/7 premium support from SEO specialists.

    \n

    Includes at no extra cost:
    \n– Yoast Local SEO: Optimize for local audiences and Google Maps.
    \n– Yoast Video SEO: Ensure Google understands your videos with video sitemaps and schema.
    \n– Yoast News SEO: Increase visibility in Google News and Top Stories.

    \n

    Yoast WooCommerce SEO – Advanced SEO for Online Stores

    \n

    Yoast WooCommerce SEO builds on Yoast SEO Premium with ecommerce-specific tools to improve your store’s visibility and conversion potential.

    \n

    Key ecommerce SEO features:
    \n– WooCommerce-specific XML sitemap excluding non-shopping content.
    \n– Product structured data for enhanced rich results (price, reviews, availability).
    \n– Canonical URL management to prevent duplicates.
    \n– Ecommerce-focused content analysis for GTINs, SKUs, and short descriptions.
    \n– AI Generate for ecommerce – Instantly create optimized titles and meta descriptions for product and category pages.

    \n

    Benefits:
    \n– Improve product visibility with automated structured data.
    \n– Enhance crawl efficiency for large catalogs.
    \n– Save time through metadata templates and automation.
    \n– Increase engagement with AI-optimized ecommerce metadata.

    \n

    Built for WooCommerce, trusted by thousands of online stores worldwide.

    \n

    For Developers

    \n

    Yoast SEO is built with developers in mind. With modern APIs, hooks, and a unified indexables system, you can extend or integrate SEO functionality across custom themes, plugins, or headless setups.

    \n

    REST API

    \n

    Retrieve SEO metadata for any post or URL, including meta tags, Open Graph, Twitter Cards, and Schema.org data.
    \nLearn more about the REST API.

    \n

    Surfaces API

    \n

    Access SEO data directly in code via YoastSEO()->meta->for_current_page().
    \nSupports titles, descriptions, canonicals, and schema.
    \nRead the Surfaces API documentation.

    \n

    Metadata API

    \n

    Use the Metadata API to filter, override, or extend meta tags with WordPress hooks such as wpseo_title, wpseo_metadesc, and wpseo_canonical.

    \n

    Schema API

    \n

    The Schema API lets you modify or extend Schema.org graph pieces, including Article, Organization, Person, Breadcrumb, and WebPage entities.

    \n

    Block Editor compatibility

    \n

    Yoast SEO integrates directly with the WordPress Block Editor (Gutenberg).
    \nIt outputs schema for HowTo and FAQ blocks by default, and developers can extend schema for custom blocks.

    \n

    Indexables

    \n

    At the core of Yoast SEO lies the indexables system, unifying all SEO data for faster queries and consistent metadata across outputs.

    \n

    Ongoing support and education

    \n

    Yoast is powered by expert developers, testers, and SEO specialists who keep improving the plugin.
    \nWe’re committed to helping users grow their SEO skills with resources such as:

    \n\n

    Yoast SEO — built to make search optimization accessible, reliable, and ready for the future of AI search.

    \n", "screenshots": "
    1. \"The

      The modern interface makes Yoast SEO easy to work with.

    2. \"Easily

      Easily manage how your posts and pages appear in SERPs.

    3. \"Yoast

      Yoast SEO Premium has extra crawl optimization options.

    4. \"Yoast

      Yoast SEO integrates with tools like Semrush and Wincher.

    5. \"The

      The famous SEO and readability analyses in Yoast SEO.

    6. \"See

      See what your post looks like in Google.

    7. \"The

      The First-time configuration helps you get started quickly.

    8. \"The

      The inclusive language analysis in Yoast SEO.

    9. \"\"
    ", "installation": "

    Starting with Yoast SEO consists of just two steps: installing and setting up the plugin. Yoast SEO is designed to work with your site’s specific needs, so don’t forget to go through the Yoast SEO first-time configuration as explained in the ‘after activation’ step! For the most up-to-date guidance on how to install Yoast SEO products, please visit our help center.

    \n"}, "versions": {"18.0": "https://downloads.wordpress.org/plugin/wordpress-seo.18.0.zip", "18.1": "https://downloads.wordpress.org/plugin/wordpress-seo.18.1.zip", "18.2": "https://downloads.wordpress.org/plugin/wordpress-seo.18.2.zip", "18.3": "https://downloads.wordpress.org/plugin/wordpress-seo.18.3.zip", "18.4": "https://downloads.wordpress.org/plugin/wordpress-seo.18.4.zip", "18.5": "https://downloads.wordpress.org/plugin/wordpress-seo.18.5.zip", "18.6": "https://downloads.wordpress.org/plugin/wordpress-seo.18.6.zip", "18.7": "https://downloads.wordpress.org/plugin/wordpress-seo.18.7.zip", "18.8": "https://downloads.wordpress.org/plugin/wordpress-seo.18.8.zip", "18.9": "https://downloads.wordpress.org/plugin/wordpress-seo.18.9.zip", "19.0": "https://downloads.wordpress.org/plugin/wordpress-seo.19.0.zip", "19.1": "https://downloads.wordpress.org/plugin/wordpress-seo.19.1.zip", "19.2": "https://downloads.wordpress.org/plugin/wordpress-seo.19.2.zip", "19.3": "https://downloads.wordpress.org/plugin/wordpress-seo.19.3.zip", "19.4": "https://downloads.wordpress.org/plugin/wordpress-seo.19.4.zip", "19.5": "https://downloads.wordpress.org/plugin/wordpress-seo.19.5.zip", "19.6": "https://downloads.wordpress.org/plugin/wordpress-seo.19.6.zip", "19.7": "https://downloads.wordpress.org/plugin/wordpress-seo.19.7.zip", "19.8": "https://downloads.wordpress.org/plugin/wordpress-seo.19.8.zip", "19.9": "https://downloads.wordpress.org/plugin/wordpress-seo.19.9.zip", "20.0": "https://downloads.wordpress.org/plugin/wordpress-seo.20.0.zip", "20.1": "https://downloads.wordpress.org/plugin/wordpress-seo.20.1.zip", "20.2": "https://downloads.wordpress.org/plugin/wordpress-seo.20.2.zip", "20.3": "https://downloads.wordpress.org/plugin/wordpress-seo.20.3.zip", "20.4": "https://downloads.wordpress.org/plugin/wordpress-seo.20.4.zip", "20.5": "https://downloads.wordpress.org/plugin/wordpress-seo.20.5.zip", "20.6": "https://downloads.wordpress.org/plugin/wordpress-seo.20.6.zip", "20.7": "https://downloads.wordpress.org/plugin/wordpress-seo.20.7.zip", "20.8": "https://downloads.wordpress.org/plugin/wordpress-seo.20.8.zip", "20.9": "https://downloads.wordpress.org/plugin/wordpress-seo.20.9.zip", "21.0": "https://downloads.wordpress.org/plugin/wordpress-seo.21.0.zip", "21.1": "https://downloads.wordpress.org/plugin/wordpress-seo.21.1.zip", "21.2": "https://downloads.wordpress.org/plugin/wordpress-seo.21.2.zip", "21.3": "https://downloads.wordpress.org/plugin/wordpress-seo.21.3.zip", "21.4": "https://downloads.wordpress.org/plugin/wordpress-seo.21.4.zip", "21.5": "https://downloads.wordpress.org/plugin/wordpress-seo.21.5.zip", "21.6": "https://downloads.wordpress.org/plugin/wordpress-seo.21.6.zip", "21.7": "https://downloads.wordpress.org/plugin/wordpress-seo.21.7.zip", "21.8": "https://downloads.wordpress.org/plugin/wordpress-seo.21.8.zip", "21.9": "https://downloads.wordpress.org/plugin/wordpress-seo.21.9.zip", "22.0": "https://downloads.wordpress.org/plugin/wordpress-seo.22.0.zip", "22.1": "https://downloads.wordpress.org/plugin/wordpress-seo.22.1.zip", "22.2": "https://downloads.wordpress.org/plugin/wordpress-seo.22.2.zip", "22.3": "https://downloads.wordpress.org/plugin/wordpress-seo.22.3.zip", "22.4": "https://downloads.wordpress.org/plugin/wordpress-seo.22.4.zip", "22.5": "https://downloads.wordpress.org/plugin/wordpress-seo.22.5.zip", "22.6": "https://downloads.wordpress.org/plugin/wordpress-seo.22.6.zip", "22.7": "https://downloads.wordpress.org/plugin/wordpress-seo.22.7.zip", "22.8": "https://downloads.wordpress.org/plugin/wordpress-seo.22.8.zip", "22.9": "https://downloads.wordpress.org/plugin/wordpress-seo.22.9.zip", "23.0": "https://downloads.wordpress.org/plugin/wordpress-seo.23.0.zip", "23.1": "https://downloads.wordpress.org/plugin/wordpress-seo.23.1.zip", "23.2": "https://downloads.wordpress.org/plugin/wordpress-seo.23.2.zip", "23.3": "https://downloads.wordpress.org/plugin/wordpress-seo.23.3.zip", "23.4": "https://downloads.wordpress.org/plugin/wordpress-seo.23.4.zip", "23.5": "https://downloads.wordpress.org/plugin/wordpress-seo.23.5.zip", "23.6": "https://downloads.wordpress.org/plugin/wordpress-seo.23.6.zip", "23.7": "https://downloads.wordpress.org/plugin/wordpress-seo.23.7.zip", "23.8": "https://downloads.wordpress.org/plugin/wordpress-seo.23.8.zip", "23.9": "https://downloads.wordpress.org/plugin/wordpress-seo.23.9.zip", "24.0": "https://downloads.wordpress.org/plugin/wordpress-seo.24.0.zip", "24.1": "https://downloads.wordpress.org/plugin/wordpress-seo.24.1.zip", "24.2": "https://downloads.wordpress.org/plugin/wordpress-seo.24.2.zip", "24.3": "https://downloads.wordpress.org/plugin/wordpress-seo.24.3.zip", "24.4": "https://downloads.wordpress.org/plugin/wordpress-seo.24.4.zip", "24.5": "https://downloads.wordpress.org/plugin/wordpress-seo.24.5.zip", "24.6": "https://downloads.wordpress.org/plugin/wordpress-seo.24.6.zip", "24.7": "https://downloads.wordpress.org/plugin/wordpress-seo.24.7.zip", "24.8": "https://downloads.wordpress.org/plugin/wordpress-seo.24.8.zip", "24.9": "https://downloads.wordpress.org/plugin/wordpress-seo.24.9.zip", "25.0": "https://downloads.wordpress.org/plugin/wordpress-seo.25.0.zip", "25.1": "https://downloads.wordpress.org/plugin/wordpress-seo.25.1.zip", "25.2": "https://downloads.wordpress.org/plugin/wordpress-seo.25.2.zip", "25.3": "https://downloads.wordpress.org/plugin/wordpress-seo.25.3.zip", "25.4": "https://downloads.wordpress.org/plugin/wordpress-seo.25.4.zip", "25.5": "https://downloads.wordpress.org/plugin/wordpress-seo.25.5.zip", "25.6": "https://downloads.wordpress.org/plugin/wordpress-seo.25.6.zip", "25.7": "https://downloads.wordpress.org/plugin/wordpress-seo.25.7.zip", "25.8": "https://downloads.wordpress.org/plugin/wordpress-seo.25.8.zip", "25.9": "https://downloads.wordpress.org/plugin/wordpress-seo.25.9.zip", "26.0": "https://downloads.wordpress.org/plugin/wordpress-seo.26.0.zip", "26.1": "https://downloads.wordpress.org/plugin/wordpress-seo.26.1.zip", "26.2": "https://downloads.wordpress.org/plugin/wordpress-seo.26.2.zip", "19.10": "https://downloads.wordpress.org/plugin/wordpress-seo.19.10.zip", "19.11": "https://downloads.wordpress.org/plugin/wordpress-seo.19.11.zip", "19.12": "https://downloads.wordpress.org/plugin/wordpress-seo.19.12.zip", "19.13": "https://downloads.wordpress.org/plugin/wordpress-seo.19.13.zip", "19.14": "https://downloads.wordpress.org/plugin/wordpress-seo.19.14.zip", "20.10": "https://downloads.wordpress.org/plugin/wordpress-seo.20.10.zip", "20.11": "https://downloads.wordpress.org/plugin/wordpress-seo.20.11.zip", "20.12": "https://downloads.wordpress.org/plugin/wordpress-seo.20.12.zip", "20.13": "https://downloads.wordpress.org/plugin/wordpress-seo.20.13.zip", "trunk": "https://downloads.wordpress.org/plugin/wordpress-seo.zip", "18.4.1": "https://downloads.wordpress.org/plugin/wordpress-seo.18.4.1.zip", "18.5.1": "https://downloads.wordpress.org/plugin/wordpress-seo.18.5.1.zip", "19.5.1": "https://downloads.wordpress.org/plugin/wordpress-seo.19.5.1.zip", "19.6.1": "https://downloads.wordpress.org/plugin/wordpress-seo.19.6.1.zip", "19.7.1": "https://downloads.wordpress.org/plugin/wordpress-seo.19.7.1.zip", "19.7.2": "https://downloads.wordpress.org/plugin/wordpress-seo.19.7.2.zip", "20.2.1": "https://downloads.wordpress.org/plugin/wordpress-seo.20.2.1.zip", "21.8.1": "https://downloads.wordpress.org/plugin/wordpress-seo.21.8.1.zip", "21.9.1": "https://downloads.wordpress.org/plugin/wordpress-seo.21.9.1.zip", "24.8.1": "https://downloads.wordpress.org/plugin/wordpress-seo.24.8.1.zip", "25.3.1": "https://downloads.wordpress.org/plugin/wordpress-seo.25.3.1.zip", "26.1.1": "https://downloads.wordpress.org/plugin/wordpress-seo.26.1.1.zip"}, "downloaded": 876285068, "description": "

    Improve your SEO with real-time feedback, schema, and clear guidance. Upgrade for AI tools, Google Docs integration, and 24/7 support, no hidden fees.

    \n

    Yoast SEO: The #1 WordPress SEO Plugin

    \n

    Since 2008, Yoast SEO has helped millions of websites worldwide improve their visibility and SEO performance.
    \nOur mission is SEO for Everyone — from small local businesses to some of the most visited sites on the web.

    \n

    Yoast SEO gives you everything you need to manage your on-site SEO effectively.
    \nThe Yoast SEO Premium plugin and its extensions unlock even more advanced and AI-powered tools.

    \n

    Handing you the competitive edge

    \n

    SEO is the most consistent and cost-effective source of website traffic — but it can be complex. Whether you’re just starting out or an advanced user, Yoast SEO helps you handle SEO confidently and efficiently.

    \n

    Don’t have time to stay on top of AI search and best practices? Keeping Yoast SEO updated means you automatically benefit from ongoing technical improvements, schema updates, and AI advancements — all guided by our signature traffic light approach.

    \n

    Empower search engines to better understand your website using Schema.org structured data integration, and access in-depth content and readability analysis tools that help you create content designed to perform well in search.

    \n

    Quick and easy setup

    \n

    Setting up Yoast SEO is quick and straightforward — no technical background required.
    \nOur step-by-step configuration wizard walks you through essential setup details so Yoast SEO can generate accurate structured data that helps search engines understand your site.

    \n

    Switching from another SEO plugin like Rank Math or AIOSEO? Migration is seamless.
    \nImport your existing SEO data and settings safely with our built-in import/export tools.

    \n

    Content and AI features

    \n

    Unlock your content’s full potential with Yoast SEO’s advanced content analysis and AI-powered tools.

    \n

    Content optimization features:
    \n– Detailed SEO analysis to guide keyword targeting and site performance.
    \n– Readability analysis for clear, engaging, and user-friendly writing.
    \n– SERP previews for both desktop and mobile results.
    \n– HowTo and FAQ blocks with built-in schema support.
    \n– Breadcrumbs block for improved navigation.
    \n– Inclusive Language Analysis to make your content more considerate and accessible.
    \n– Semrush integration for keyword research directly in Yoast SEO.
    \n– Wincher integration to track keyword performance inside your dashboard.
    \n– Elementor integration for seamless optimization within your favorite builder.

    \n

    AI features (included in Premium):
    \n– Yoast AI Generate – Instantly create five SEO-friendly titles and meta descriptions, with one-click regeneration for more options.
    \n– Yoast AI Optimize – Improve keyphrase placement (introduction, distribution, density) automatically.
    \n– Yoast AI Summarize (New 2025) – Generate quick content summaries for briefs or social posts.
    \n– All AI tools included – No extra accounts, limits, or hidden costs.

    \n

    These tools help you craft optimized, helpful content that resonates with readers and performs strongly across search platforms.

    \n

    Taking care of your technical SEO

    \n

    Yoast SEO automatically handles much of your site’s technical SEO, freeing you to focus on your content.

    \n

    Key technical SEO features:
    \n– Automated meta tag optimization right out of the box.
    \n– Canonical URLs to prevent duplicate content issues.
    \n– Advanced XML sitemaps for clear site indexing.
    \n– Best-in-class Schema.org integration to improve search understanding and appearance.
    \n– Complete breadcrumb control for visitors and crawlers.
    \n– Performance improvements that help reduce load times.
    \n– Crawl settings to manage how bots access your site and reduce environmental impact.
    \n– LLMs.txt management to guide how large language models interact with your content.

    \n

    Every update delivers ongoing technical SEO enhancements automatically.

    \n

    Keep your website in perfect shape

    \n

    Whether you’re a creator, business owner, or developer, Yoast SEO helps maintain your website’s SEO health:

    \n
      \n
    • Cornerstone content tools to organize and prioritize key pages.
    • \n
    • Front-end SEO inspector to view and edit titles, descriptions, and schema live.
    • \n
    • SEO roles to delegate plugin access securely across teams.
    • \n
    • Regular 2-week update cycle to ensure compatibility with the latest SEO standards and search engine changes.
    • \n
    \n

    Powerful integrations

    \n

    Yoast SEO works seamlessly with popular WordPress tools to enhance your workflow and results:

    \n\n

    Yoast SEO Premium – AI-powered SEO for WordPress

    \n

    Yoast SEO Premium enhances everything in Yoast SEO with advanced automation, AI tools, and professional support.
    \nTrusted by millions, it helps you optimize efficiently for both traditional and AI-driven search.

    \n

    Tackle your SEO challenges:
    \n– Keep pace with algorithm and AI search updates.
    \n– Target the right audience effectively.
    \n– Automate redirects, crawl controls, and internal linking.
    \n– Identify orphaned content and improve site structure.
    \n– Get support when you need it.

    \n

    Premium highlights:
    \n– AI-generated titles and meta descriptions.
    \n– Smart internal linking suggestions.
    \n– Social previews for Facebook and X.
    \n– Redirect Manager with bulk tools and automatic prompts.
    \n– Bot Blocker for AI crawlers (GPTBot, CCBot, Google-Extended).
    \n– IndexNow integration for fast content updates.
    \n– Front-end SEO Inspector for real-time editing.
    \n– SEO Workouts to improve orphaned and cornerstone content.
    \n– Google Docs add-on for seamless SEO writing in Docs.
    \n– 24/7 premium support from SEO specialists.

    \n

    Includes at no extra cost:
    \n– Yoast Local SEO: Optimize for local audiences and Google Maps.
    \n– Yoast Video SEO: Ensure Google understands your videos with video sitemaps and schema.
    \n– Yoast News SEO: Increase visibility in Google News and Top Stories.

    \n

    Yoast WooCommerce SEO – Advanced SEO for Online Stores

    \n

    Yoast WooCommerce SEO builds on Yoast SEO Premium with ecommerce-specific tools to improve your store’s visibility and conversion potential.

    \n

    Key ecommerce SEO features:
    \n– WooCommerce-specific XML sitemap excluding non-shopping content.
    \n– Product structured data for enhanced rich results (price, reviews, availability).
    \n– Canonical URL management to prevent duplicates.
    \n– Ecommerce-focused content analysis for GTINs, SKUs, and short descriptions.
    \n– AI Generate for ecommerce – Instantly create optimized titles and meta descriptions for product and category pages.

    \n

    Benefits:
    \n– Improve product visibility with automated structured data.
    \n– Enhance crawl efficiency for large catalogs.
    \n– Save time through metadata templates and automation.
    \n– Increase engagement with AI-optimized ecommerce metadata.

    \n

    Built for WooCommerce, trusted by thousands of online stores worldwide.

    \n

    For Developers

    \n

    Yoast SEO is built with developers in mind. With modern APIs, hooks, and a unified indexables system, you can extend or integrate SEO functionality across custom themes, plugins, or headless setups.

    \n

    REST API

    \n

    Retrieve SEO metadata for any post or URL, including meta tags, Open Graph, Twitter Cards, and Schema.org data.
    \nLearn more about the REST API.

    \n

    Surfaces API

    \n

    Access SEO data directly in code via YoastSEO()->meta->for_current_page().
    \nSupports titles, descriptions, canonicals, and schema.
    \nRead the Surfaces API documentation.

    \n

    Metadata API

    \n

    Use the Metadata API to filter, override, or extend meta tags with WordPress hooks such as wpseo_title, wpseo_metadesc, and wpseo_canonical.

    \n

    Schema API

    \n

    The Schema API lets you modify or extend Schema.org graph pieces, including Article, Organization, Person, Breadcrumb, and WebPage entities.

    \n

    Block Editor compatibility

    \n

    Yoast SEO integrates directly with the WordPress Block Editor (Gutenberg).
    \nIt outputs schema for HowTo and FAQ blocks by default, and developers can extend schema for custom blocks.

    \n

    Indexables

    \n

    At the core of Yoast SEO lies the indexables system, unifying all SEO data for faster queries and consistent metadata across outputs.

    \n

    Ongoing support and education

    \n

    Yoast is powered by expert developers, testers, and SEO specialists who keep improving the plugin.
    \nWe’re committed to helping users grow their SEO skills with resources such as:

    \n\n

    Yoast SEO — built to make search optimization accessible, reliable, and ready for the future of AI search.

    \n", "donate_link": "https://yoa.st/1up", "num_ratings": 27779, "screenshots": {"1": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2853382", "caption": "The modern interface makes Yoast SEO easy to work with."}, "2": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2853382", "caption": "Easily manage how your posts and pages appear in SERPs."}, "3": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2853382", "caption": "Yoast SEO Premium has extra crawl optimization options."}, "4": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2853382", "caption": "Yoast SEO integrates with tools like Semrush and Wincher."}, "5": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2853382", "caption": "The famous SEO and readability analyses in Yoast SEO."}, "6": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2853382", "caption": "See what your post looks like in Google."}, "7": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-7.png?rev=2853382", "caption": "The First-time configuration helps you get started quickly."}, "8": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-8.png?rev=2853382", "caption": "The inclusive language analysis in Yoast SEO."}, "9": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-9.png?rev=2956588", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/wordpress-seo/", "contributors": {"yoast": {"avatar": "https://secure.gravatar.com/avatar/be9ad584631c908275babffbc3fd771d5879ace2c1e00305b17fd2d4361fe80d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/yoast/", "display_name": "Yoast"}, "tdevalk": {"avatar": "https://secure.gravatar.com/avatar/db267f34bf170602956a4e951f11a4c4e1c36f063a933fae36ee6626b8c55d88?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tdevalk/", "display_name": "tdevalk"}, "joostdevalk": {"avatar": "https://secure.gravatar.com/avatar/6b6d1c4d29f1b149da0008917c70b019408d5af404a46bca853e4dd33546e1ed?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/joostdevalk/", "display_name": "Joost de Valk"}}, "last_updated": "2025-10-21 7:47am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wordpress-seo.26.2.zip", "author_profile": "https://profiles.wordpress.org/yoast/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 10000000, "aspiresync_meta": {"id": "019a30bf-fdef-7025-8902-ec2029bd71f4", "name": "Yoast SEO – Advanced SEO with real-time guidance and built-in AI", "slug": "wordpress-seo", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1761032820, "version": "26.2"}, "support_threads": 100, "requires_plugins": [], "short_description": "Improve your SEO with real-time feedback, schema, and clear guidance. Upgrade for AI tools, Google Docs integration, and 24/7 support, no hidden fees.", "author_block_count": 1, "author_block_rating": 96, "commercial_support_url": "https://yoast.com/help/support/#premium", "support_threads_resolved": 81}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1ef6-73ec-a2ab-98686f8d36d5', 'did:web:api.aspiredev.org:packages:wp-plugin:worker', 'worker', 'ManageWP Worker', '

    So you’re looking for a better way to manage WordPress websites? We have you covered! ManageWP is a dashboard that helps you save time and nerves by automating your workflow, so you could focus on things that matter. It is fast, secure and free for an unlimited number of websites.

    -

    Everything in One Place

    -

    Just the hassle of logging into each of your websites is enough to ruin your day. ManageWP compiles the data from all of your sites on one dashboard, so you can check up on your websites in a single glance. And if you need to take a better look at a particular website, you’re just a click away. Read more

    -

    Bulk actions

    -

    57 updates on 12 sites? Update them all with a single click. And it’s not just updates. Clean spam, database overhead, run security checks and more – with just one click you can do these things on all your websites at once. Read more

    -

    Cloud Backup that just works

    -

    A reliable backup is the backbone of any business. And we have a free monthly backup for all of your websites. It’s, incremental, reliable, and works where other backup solutions fail. The free Backup includes monthly scheduled backup, off-site storage, 1-click restore, US/EU storage choice and the option to exclude files and folders. The premium Backup gives you on-demand backups, weekly/daily/hourly backup cycles & more.

    -

    Safe updates

    -

    Updating plugins & themes is a huge pain, so we came with this: a backup is automatically created before each update. After the update, the system checks the website and rolls back automatically if something’s wrong. And the best part is that you can set these updates to run at 3am, when the website traffic as its lowest.
    -Read more.

    -

    Client Report

    -

    Summarize your hard work in a professional looking report and send it to your clients to showcase your work. The free Client Report includes basic customization and on-demand reports. The premium Client Report lets you white label and automate your reports. Read more

    -

    Performance and Security Checks

    -

    Slow or infected websites are bad for business. Luckily, you can now keep tabs on your websites with regular performance & security checks. The free Security Check & Performance Check come with fully functional checks and logging. Premium versions let you fully automate the checks, and get an SMS or an email if something’s wrong.

    -

    Google Analytics integration

    -

    Connect multiple Google Analytics accounts, and keep track of all the important metrics from one place. Read more

    -

    Uptime Monitor (premium add-on)

    -

    Be the first to know when your website is down with both email and SMS notifications, and get your website back online before anyone else notices. Read more

    -

    Cloning & Migration (bundled with premium Backup add-on)

    -

    What used to take you hours of work and nerves of steel is now a one-click operation. Pick a source website, pick a destination website, click Go. Within minutes, your website will be alive and kicking on a new server. Yeah, it’s that easy. Read more

    -

    SEO Ranking (premium add-on)

    -

    Be on top of your website rankings and figure out which keywords work best for you, as well as keeping on eye on your competitors. This way you will know how well you stack up against them. Read more

    -

    White Label (premium add-on)

    -

    Rename or completely hide the ManageWP Worker plugin. Clients don’t need to know what you are using to manage their websites. Read more

    -

    Is This All?

    -

    No way! We’ve got a bunch of other awesome features, both free and premium, you can check out on our ManageWP features page

    -

    Check out the ManageWP promo video.

    -

    -

    License

    -

    This file is part of ManageWP Worker.

    -

    ManageWP Worker is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

    -

    ManageWP Worker is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

    -

    You should have received a copy of the GNU General Public License along with ManageWP Worker. If not, see https://www.gnu.org/licenses/.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "ManageWP Worker", "slug": "worker", "tags": {"backup": "backup", "migrate": "migrate", "security": "security", "performance": "performance", "manage-multiple-sites": "Manage Multiple Sites"}, "added": "2011-03-10", "icons": {"1x": "https://ps.w.org/worker/assets/icon.svg?rev=1015191", "svg": "https://ps.w.org/worker/assets/icon.svg?rev=1015191"}, "author": "Vladimir Prelovac", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/worker/assets/banner-772x250.jpg?rev=2035974", "high": "https://ps.w.org/worker/assets/banner-1544x500.jpg?rev=2035974"}, "ratings": {"1": 50, "2": 7, "3": 7, "4": 11, "5": 597}, "version": "4.9.25", "homepage": "https://managewp.com", "requires": "3.1", "sections": {"faq": "\n
    \nIs ManageWP free?\n\n

    \n

    ManageWP is using the freemium model. All the core features are free for an unlimited number of websites. And for those of you who need more, we have a set of premium features to help you out.

    \n

    \n
    \nDo you offer support for free users?\n\n

    \n

    Yes. No matter if you’re free or premium user, we are here for you 24/7. Expect a 1h average response time and a 65% answer resolution in the first reply.

    \n

    \n
    \nHow much do premium ManageWP features cost?\n\n

    \n

    Our pricing is highly flexible, we don’t charge anything upfront. The usage is calculated on a per-website, per-addon basis, like Amazon Web Services. Check out our pricing page for more info.

    \n

    \n
    \nIs ManageWP secure?\n\n

    \n

    Yes. All of our code is developed in-house and we have a top notch security team. With half a million websites managed since 2012 we did not have a single security incident. We’ve accomplished this through high standards, vigilance and the help of security researchers, through our white hat security program.

    \n

    \n
    \nI have websites on several different hosts. Will ManageWP work all of them?\n\n

    \n

    Yes. ManageWP plays nice with all major hosts, and 99% of the small ones.

    \n

    \n
    \nDoes ManageWP work with multisites?\n\n

    \n

    Yes, multisite networks are fully supported, including the ability to backup and clone a multisite network.

    \n

    \n
    \nDoes ManageWP work with WordPress.com sites?\n\n

    \n

    No. ManageWP works only with self-hosted WordPress sites.

    \n

    \n
    \nWorker plugin can connect to ManageWP and Pro Sites. What is the difference between the two?\n\n

    \n

    ManageWP is focused on the hosting-agnostic WordPress website management. Pro Sites is the GoDaddy version of the service. It’s part of the GoDaddy Pro program, which incorporates different tools for website & client management, lead generation, and tighter integration with other GoDaddy products.

    \n

    \n
    \nI have problems adding my site\n\n

    \n

    Make sure you use the latest version of the Worker plugin on the site you are trying to add. If you still have problems, check our dedicated FAQ page or contact us.

    \n

    \n
    \nHow does ManageWP compare to backup plugins like BackupBuddy, Backwpup, UpdraftPlus, WP-DB-Backup ?\n\n

    \n

    There is a limit to what a PHP based backup can do, that’s why we’ve built a completely different backup – cloud based, incremental, it keeps working long after others have failed.

    \n

    \n
    \nHow does ManageWP compare with clone plugins like Duplicator, WP Migrate DB, All-in-One WP Migration, XCloner ?\n\n

    \n

    These solutions are simple A-B cloning solutions that tend to break in critical moments. ManageWP does it more intelligently. We first upload the backup archive to a cloud infrastructure that we control, and then we transfer it to the destination website. This effectively compartmentalizes the process into two separate steps, making the whole cloning experience much more robust and stress free.

    \n

    \n
    \nIs Worker PHP7 compatible?\n\n

    \n

    Yes, ManageWP Worker is fully compatible with PHP7. We also have chunks of backward compatible code, that triggers in case you’re still running PHP5.x – if your code check comes up with a compatibility flag, just ignore it.

    \n

    Got more questions? Contact us!

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super saves you a lot of time

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cglaudel on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A site-related / plugin that saves you a lot of time when you have multiple sites to manage

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    They Were Trusted Partners, and Now They Aren't

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy portrayalteam on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We worked with these people for over 10 years, and then they were bought by the worst — GODADDY! And they have been worse and worse and worse every year. Now they are downright insulting...

    Their performance, their customer service, their loyalty, all flushed down the toilet. If you don''t pay them right on time, despite 12+ years of loyalty? They cut off services for every account.

    I mean, if they had any intelligence or business sense, they''d just block access, but no... if you get too busy and don''t change your payment details in time, you have to go in and activate EVERY SERVICE — one at a time, after you have added a new payment method.

    It''s idiotic, it''s bad business, and it''s going to force us to move to someone with better manners who actually appreciates loyalty and extended client relationships.

    SHAME ON YOU, ManageWP. We counted on you, and now we never will again. GoDaddy is bad. Everyone knows that. Now you are too... Sad. Predictable. NEXT!!!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    great plugin, has nice features

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Lucas Camara (lcamaramartins) on April 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    game changerr for reaall.. keep up the great work guys!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very satisfied

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy driu on March 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Using Manage-WP since more than 3 years now. It''s reliable and very helpful to maintain websites.

    \n\n\n\n

    I just would like to have a smaller description. It''s using 6 lines to describe itself while other plugins use 1 line - which is totally enough.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A game-changer for managing multiple WordPress sites!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Gerhard Peilstöcker (gerpei) on March 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ManageWP Worker is a game-changer for managing multiple WordPress sites! The interface is intuitive, and the ability to update plugins, themes, and backups across all sites from one dashboard saves me hours every week. The security features and performance checks give me peace of mind, and the pricing is very reasonable for the value it provides. Highly recommended for anyone managing multiple WordPress sites!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best free WordPress management tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Gennady Kurushin (hullukettu) on February 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s incredible what this plugin offers with a freemium subscription, especially considering monthly cloud backups regardless of size of the website. Reporting is really nice if that''s something you''re using with your clients.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fabulous plugin and support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ed Bernd Jr. (silvabooks) on February 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using this plugin for several years and it is easy to use, it is reliable, and it gives me peace of mind. On the rare occasions I''ve had a problem the support has been fast, easy to understand, accurate, and effective. Things I especially like are the ease of installing updates on our websites as soon as they are available, the regular site backups, and the very inexpensive link checker that has helped me find and fix the broken links on the sites. Highly recommended.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No more updates to a buggy app

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ShaktiHKI on January 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Former industry leader, nowadays a graveyard. In addition to an old look and UI/UX, the software hasn''t gotten any updates for almost three years, and they don''t fix bugs any more, although support tells you otherwise. For example, there''s a bug in scheduled reports that I reported immediately, and after five (!) months, they haven''t done anything to it. Tonight, I couldn''t even update my sites as the app doesn''t connect to any sites and doesn''t do anything. I managed to do a few simple plugin updates in three hours. Shame.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Missing Support and Doesn't work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy furtureplusweb on January 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Support is missing, they do not reply anymore. Finally, the plugin has way too many problems

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Life saver

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Michael Korte (michaelkorte) on December 17, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yes. This is it.

    \n\n\n\n

    With 20+ Websites, it was really hard to manage all of them separately. Now you have everything in sight at all times.

    \n\n\n\n

    Just wondering why the connection code is not directly in one of those boxes on the frontpage/dashboard and directly accessible from there!

    \n
    \n
    \n", "changelog": "

    4.9.25

    \n
      \n
    • Fix: Update Client Report URL
    • \n
    \n

    4.9.24

    \n
      \n
    • Fix: One Click SSL compatibility update
    • \n
    \n

    4.9.23

    \n
      \n
    • Fix: Use OpenSSL for SHA256 hashing
    • \n
    \n

    4.9.22

    \n
      \n
    • WordPress 6.8 compatibility bump
    • \n
    • Fix: Compatibility with OpenSSL 3+
    • \n
    \n

    4.9.21

    \n
      \n
    • WordPress 6.7 compatibility bump
    • \n
    \n

    4.9.20

    \n
      \n
    • WordPress 6.5 compatibility bump
    • \n
    \n

    4.9.19

    \n
      \n
    • Fix: Absolute path on Windows systems
    • \n
    • Code cleanup
    • \n
    \n

    4.9.18

    \n
      \n
    • Fix: PHP 8.X Compatibility notices
    • \n
    • WordPress 6.4 compatibility bump
    • \n
    \n

    4.9.17

    \n
      \n
    • Fix: PHP Notice – WP_User_Query::query()
    • \n
    • Fix: Call to undefined function php_uname when php_uname is disabled
    • \n
    • Fix: PHP Notice – ob_end_clean()
    • \n
    • Fix: PHP Deprecated – preg_match()
    • \n
    • Fix: PHP Deprecated – base64_decode()
    • \n
    • Fix: PHP 5.x compatibility introduced in 4.9.16
    • \n
    • WordPress 6.2 compatibility bump
    • \n
    \n

    4.9.16

    \n
      \n
    • Fix: PHP 8.0+ compatibility update
    • \n
    \n

    4.9.15

    \n
      \n
    • Fix: WordPress 6.1 compatibility
    • \n
    \n

    4.9.14

    \n
      \n
    • Worker update tested to the latest version of WordPress
    • \n
    • Minor logging changes
    • \n
    \n

    4.9.13

    \n
      \n
    • Fix: Resolved old PHP version compatibility issues.
    • \n
    \n

    4.9.12

    \n
      \n
    • Fix: Resolved Worker white-labeling not working as expected.
    • \n
    \n

    4.9.11

    \n
      \n
    • Fix: Ensure full compatibility with PHP 8.1
    • \n
    \n

    4.9.10

    \n
      \n
    • Fix: Resolved compatibility issue with WooCommerce payments
    • \n
    • Fix: Set plugin version for MU plugin loader
    • \n
    \n

    4.9.9

    \n
      \n
    • Fix: Resolved edge case compatibility issue with some sites
    • \n
    • New: Added “Disconnect all” option in the Connection Management in wp-admin
    • \n
    • Worker update tested to the latest version of WordPress
    • \n
    • Minor wording changes
    • \n
    \n

    4.9.7

    \n
      \n
    • Update logic for calculating table overhead
    • \n
    \n

    4.9.6

    \n
      \n
    • Updated logic for generating archive name for File Manager tool.
    • \n
    • Update tested up to version for the plugin.
    • \n
    • Fix: Edge case where a backup might fail due to root WP paths.
    • \n
    \n

    4.9.3

    \n
      \n
    • Update tested up to version for the plugin.
    • \n
    • Fix: Potential crash when the hit count option is not defined.
    • \n
    \n

    4.9.2

    \n
      \n
    • Added fallback for downloading/archiving files for the File Manager tool, when zip extension is not available
    • \n
    • Fix: Worker plugin branding within WP 5.2 Admin Site Health page plugins list
    • \n
    \n

    4.9.1

    \n
      \n
    • Fix: Handle updates on WP Engine hosted websites properly.
    • \n
    \n

    4.9.0

    \n
      \n
    • New: Support for a future release of file management.
    • \n
    • We will stop supporting PHP 5.2 in the next version.
    • \n
    \n

    4.8.1

    \n
      \n
    • Fix: Edge case where a backup might fail due to API call payload.
    • \n
    \n

    4.8.0

    \n
      \n
    • New: Support for automatic detection of post content changes for Link Monitoring.
    • \n
    \n

    4.7.8

    \n
      \n
    • Fix: Edge case when there are no plugins active, the plugin would cause a fatal error.
    • \n
    \n

    4.7.7

    \n
      \n
    • Fix: Edge cases where one click login might fail due to the Host header changing.
    • \n
    \n

    4.7.5

    \n
      \n
    • Fix: Edge cases where key fetching might fail and cause the connection to stop working.
    • \n
    \n

    4.7.0

    \n
      \n
    • Improvement: Translations for the new Connection Management dialog.
    • \n
    • Fix: An error that might occur when activating the Worker plugin.
    • \n
    \n

    4.6.6

    \n
      \n
    • Fix: Omit extra query parameters for One Click Login after a successful login.
    • \n
    \n

    4.6.5

    \n
      \n
    • Fix: Edge cases where the Worker plugin might not be able to communicate with our system.
    • \n
    \n

    4.6.4

    \n
      \n
    • New: Allow multiple ManageWP/Pro Sites accounts to connect to a single Worker plugin.
    • \n
    \n

    4.6.3

    \n
      \n
    • Fix: Edge cases when Local Sync was unsuccessful.
    • \n
    • Fix: WooCommerce database upgrade not showing up on the ManageWP/Pro Sites dashboard.
    • \n
    \n

    4.6.2

    \n
      \n
    • Fix: Local Sync tool improvements.
    • \n
    \n

    4.6.1

    \n
      \n
    • Fix: Worker auto-recovery on PHP 7.
    • \n
    • Fix: Replaced eval function that triggered false positives with some security plugins.
    • \n
    \n

    4.6.0

    \n
      \n
    • New: Localhost Sync has reached the closed beta stage. Stay tuned for more info!
    • \n
    \n

    4.5.0

    \n
      \n
    • Improvement: Removed deprecated ManageWP Classic code.
    • \n
    \n

    4.4.0

    \n
      \n
    • Fix: Communication failing with a website behind CloudFlare, that has warnings turned on, and currently has warnings.
    • \n
    \n

    4.3.4

    \n
      \n
    • Improvement: The Worker plugin can now only be activated network wide on multisite installs.
    • \n
    • Fix: Edge cases where the connection key was not visible.
    • \n
    • Fix: Edge cases with Multisite communication failure.
    • \n
    \n

    4.3.3

    \n
      \n
    • Improvement: Always force the correct charset for database backups.
    • \n
    • Improvement: The Worker plugin is now fully compatible with WordPress 4.9.
    • \n
    \n

    4.3.2

    \n
      \n
    • Fix: The Worker plugin threw an exception while recovering from failed update.
    • \n
    \n

    4.3.1

    \n
      \n
    • Fix: The Worker plugin could not fetch keys for the new communication system in some cases.
    • \n
    \n

    4.3.0

    \n
      \n
    • New: Ability to install/update Envato plugins and themes.
    • \n
    • New: WooCommerce database upgrade support.
    • \n
    • New: More secure and flexible communication between the Worker plugin and the ManageWP servers.
    • \n
    \n", "description": "

    So you’re looking for a better way to manage WordPress websites? We have you covered! ManageWP is a dashboard that helps you save time and nerves by automating your workflow, so you could focus on things that matter. It is fast, secure and free for an unlimited number of websites.

    \n

    Everything in One Place

    \n

    Just the hassle of logging into each of your websites is enough to ruin your day. ManageWP compiles the data from all of your sites on one dashboard, so you can check up on your websites in a single glance. And if you need to take a better look at a particular website, you’re just a click away. Read more

    \n

    Bulk actions

    \n

    57 updates on 12 sites? Update them all with a single click. And it’s not just updates. Clean spam, database overhead, run security checks and more – with just one click you can do these things on all your websites at once. Read more

    \n

    Cloud Backup that just works

    \n

    A reliable backup is the backbone of any business. And we have a free monthly backup for all of your websites. It’s, incremental, reliable, and works where other backup solutions fail. The free Backup includes monthly scheduled backup, off-site storage, 1-click restore, US/EU storage choice and the option to exclude files and folders. The premium Backup gives you on-demand backups, weekly/daily/hourly backup cycles & more.

    \n

    Safe updates

    \n

    Updating plugins & themes is a huge pain, so we came with this: a backup is automatically created before each update. After the update, the system checks the website and rolls back automatically if something’s wrong. And the best part is that you can set these updates to run at 3am, when the website traffic as its lowest.
    \nRead more.

    \n

    Client Report

    \n

    Summarize your hard work in a professional looking report and send it to your clients to showcase your work. The free Client Report includes basic customization and on-demand reports. The premium Client Report lets you white label and automate your reports. Read more

    \n

    Performance and Security Checks

    \n

    Slow or infected websites are bad for business. Luckily, you can now keep tabs on your websites with regular performance & security checks. The free Security Check & Performance Check come with fully functional checks and logging. Premium versions let you fully automate the checks, and get an SMS or an email if something’s wrong.

    \n

    Google Analytics integration

    \n

    Connect multiple Google Analytics accounts, and keep track of all the important metrics from one place. Read more

    \n

    Uptime Monitor (premium add-on)

    \n

    Be the first to know when your website is down with both email and SMS notifications, and get your website back online before anyone else notices. Read more

    \n

    Cloning & Migration (bundled with premium Backup add-on)

    \n

    What used to take you hours of work and nerves of steel is now a one-click operation. Pick a source website, pick a destination website, click Go. Within minutes, your website will be alive and kicking on a new server. Yeah, it’s that easy. Read more

    \n

    SEO Ranking (premium add-on)

    \n

    Be on top of your website rankings and figure out which keywords work best for you, as well as keeping on eye on your competitors. This way you will know how well you stack up against them. Read more

    \n

    White Label (premium add-on)

    \n

    Rename or completely hide the ManageWP Worker plugin. Clients don’t need to know what you are using to manage their websites. Read more

    \n

    Is This All?

    \n

    No way! We’ve got a bunch of other awesome features, both free and premium, you can check out on our ManageWP features page

    \n

    Check out the ManageWP promo video.

    \n

    \n

    License

    \n

    This file is part of ManageWP Worker.

    \n

    ManageWP Worker is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

    \n

    ManageWP Worker is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

    \n

    You should have received a copy of the GNU General Public License along with ManageWP Worker. If not, see https://www.gnu.org/licenses/.

    \n", "screenshots": "
    1. \"ManageWP

      ManageWP dashboard with a thumbnail view of 20 websites

    2. \"Tags

      Tags and stars help you organize your websites

    3. \"A

      A summary of available updates and health of all your websites

    4. \"Track

      Track your website performance regularly, so you could know right away if something goes wrong

    5. \"Managing

      Managing plugins and themes is just as easy with 100 websites as with 3 websites

    6. \"Client

      Client Report is an executive summary of everything you''ve done for your client

    7. \"Cloud

      Cloud backups with detailed information about each restore point

    8. \"Uptime

      Uptime Monitor logs up and down events, and notifies you via email and SMS

    9. \"Aside

      Aside from being able to white label the ManageWP Worker plugin, you can also add a support form on the client''s website

    ", "installation": "
      \n
    1. Create an account on ManageWP.com
    2. \n
    3. Follow the steps to add your first website
    4. \n
    5. Celebrate!
    6. \n
    \n

    Seriously, it’s that easy! If you want more detailed instructions, check out our User Guide

    \n"}, "versions": {"3.6.3": "https://downloads.wordpress.org/plugin/worker.3.6.3.zip", "3.8.0": "https://downloads.wordpress.org/plugin/worker.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/worker.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/worker.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/worker.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/worker.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/worker.3.8.5.zip", "3.8.6": "https://downloads.wordpress.org/plugin/worker.3.8.6.zip", "3.8.7": "https://downloads.wordpress.org/plugin/worker.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/plugin/worker.3.8.8.zip", "3.9.0": "https://downloads.wordpress.org/plugin/worker.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/worker.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/worker.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/worker.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/plugin/worker.3.9.4.zip", "3.9.5": "https://downloads.wordpress.org/plugin/worker.3.9.5.zip", "3.9.6": "https://downloads.wordpress.org/plugin/worker.3.9.6.zip", "3.9.7": "https://downloads.wordpress.org/plugin/worker.3.9.7.zip", "3.9.8": "https://downloads.wordpress.org/plugin/worker.3.9.8.zip", "3.9.9": "https://downloads.wordpress.org/plugin/worker.3.9.9.zip", "4.0.1": "https://downloads.wordpress.org/plugin/worker.4.0.1.zip", "4.1.0": "https://downloads.wordpress.org/plugin/worker.4.1.0.zip", "4.9.9": "https://downloads.wordpress.org/plugin/worker.4.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/worker.zip", "3.9.10": "https://downloads.wordpress.org/plugin/worker.3.9.10.zip", "3.9.11": "https://downloads.wordpress.org/plugin/worker.3.9.11.zip", "3.9.12": "https://downloads.wordpress.org/plugin/worker.3.9.12.zip", "3.9.13": "https://downloads.wordpress.org/plugin/worker.3.9.13.zip", "3.9.14": "https://downloads.wordpress.org/plugin/worker.3.9.14.zip", "3.9.15": "https://downloads.wordpress.org/plugin/worker.3.9.15.zip", "3.9.16": "https://downloads.wordpress.org/plugin/worker.3.9.16.zip", "3.9.17": "https://downloads.wordpress.org/plugin/worker.3.9.17.zip", "3.9.18": "https://downloads.wordpress.org/plugin/worker.3.9.18.zip", "3.9.19": "https://downloads.wordpress.org/plugin/worker.3.9.19.zip", "3.9.20": "https://downloads.wordpress.org/plugin/worker.3.9.20.zip", "3.9.21": "https://downloads.wordpress.org/plugin/worker.3.9.21.zip", "3.9.22": "https://downloads.wordpress.org/plugin/worker.3.9.22.zip", "3.9.23": "https://downloads.wordpress.org/plugin/worker.3.9.23.zip", "3.9.24": "https://downloads.wordpress.org/plugin/worker.3.9.24.zip", "3.9.25": "https://downloads.wordpress.org/plugin/worker.3.9.25.zip", "3.9.26": "https://downloads.wordpress.org/plugin/worker.3.9.26.zip", "3.9.27": "https://downloads.wordpress.org/plugin/worker.3.9.27.zip", "3.9.28": "https://downloads.wordpress.org/plugin/worker.3.9.28.zip", "3.9.29": "https://downloads.wordpress.org/plugin/worker.3.9.29.zip", "3.9.30": "https://downloads.wordpress.org/plugin/worker.3.9.30.zip", "4.9.10": "https://downloads.wordpress.org/plugin/worker.4.9.10.zip", "4.9.11": "https://downloads.wordpress.org/plugin/worker.4.9.11.zip", "4.9.12": "https://downloads.wordpress.org/plugin/worker.4.9.12.zip", "4.9.13": "https://downloads.wordpress.org/plugin/worker.4.9.13.zip", "4.9.14": "https://downloads.wordpress.org/plugin/worker.4.9.14.zip", "4.9.15": "https://downloads.wordpress.org/plugin/worker.4.9.15.zip", "4.9.16": "https://downloads.wordpress.org/plugin/worker.4.9.16.zip", "4.9.17": "https://downloads.wordpress.org/plugin/worker.4.9.17.zip", "4.9.18": "https://downloads.wordpress.org/plugin/worker.4.9.18.zip", "4.9.19": "https://downloads.wordpress.org/plugin/worker.4.9.19.zip", "4.9.20": "https://downloads.wordpress.org/plugin/worker.4.9.20.zip", "4.9.22": "https://downloads.wordpress.org/plugin/worker.4.9.22.zip", "4.9.23": "https://downloads.wordpress.org/plugin/worker.4.9.23.zip", "4.9.24": "https://downloads.wordpress.org/plugin/worker.4.9.24.zip", "4.9.25": "https://downloads.wordpress.org/plugin/worker.4.9.25.zip"}, "downloaded": 23423523, "description": "

    So you’re looking for a better way to manage WordPress websites? We have you covered! ManageWP is a dashboard that helps you save time and nerves by automating your workflow, so you could focus on things that matter. It is fast, secure and free for an unlimited number of websites.

    \n

    Everything in One Place

    \n

    Just the hassle of logging into each of your websites is enough to ruin your day. ManageWP compiles the data from all of your sites on one dashboard, so you can check up on your websites in a single glance. And if you need to take a better look at a particular website, you’re just a click away. Read more

    \n

    Bulk actions

    \n

    57 updates on 12 sites? Update them all with a single click. And it’s not just updates. Clean spam, database overhead, run security checks and more – with just one click you can do these things on all your websites at once. Read more

    \n

    Cloud Backup that just works

    \n

    A reliable backup is the backbone of any business. And we have a free monthly backup for all of your websites. It’s, incremental, reliable, and works where other backup solutions fail. The free Backup includes monthly scheduled backup, off-site storage, 1-click restore, US/EU storage choice and the option to exclude files and folders. The premium Backup gives you on-demand backups, weekly/daily/hourly backup cycles & more.

    \n

    Safe updates

    \n

    Updating plugins & themes is a huge pain, so we came with this: a backup is automatically created before each update. After the update, the system checks the website and rolls back automatically if something’s wrong. And the best part is that you can set these updates to run at 3am, when the website traffic as its lowest.
    \nRead more.

    \n

    Client Report

    \n

    Summarize your hard work in a professional looking report and send it to your clients to showcase your work. The free Client Report includes basic customization and on-demand reports. The premium Client Report lets you white label and automate your reports. Read more

    \n

    Performance and Security Checks

    \n

    Slow or infected websites are bad for business. Luckily, you can now keep tabs on your websites with regular performance & security checks. The free Security Check & Performance Check come with fully functional checks and logging. Premium versions let you fully automate the checks, and get an SMS or an email if something’s wrong.

    \n

    Google Analytics integration

    \n

    Connect multiple Google Analytics accounts, and keep track of all the important metrics from one place. Read more

    \n

    Uptime Monitor (premium add-on)

    \n

    Be the first to know when your website is down with both email and SMS notifications, and get your website back online before anyone else notices. Read more

    \n

    Cloning & Migration (bundled with premium Backup add-on)

    \n

    What used to take you hours of work and nerves of steel is now a one-click operation. Pick a source website, pick a destination website, click Go. Within minutes, your website will be alive and kicking on a new server. Yeah, it’s that easy. Read more

    \n

    SEO Ranking (premium add-on)

    \n

    Be on top of your website rankings and figure out which keywords work best for you, as well as keeping on eye on your competitors. This way you will know how well you stack up against them. Read more

    \n

    White Label (premium add-on)

    \n

    Rename or completely hide the ManageWP Worker plugin. Clients don’t need to know what you are using to manage their websites. Read more

    \n

    Is This All?

    \n

    No way! We’ve got a bunch of other awesome features, both free and premium, you can check out on our ManageWP features page

    \n

    Check out the ManageWP promo video.

    \n

    \n

    License

    \n

    This file is part of ManageWP Worker.

    \n

    ManageWP Worker is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

    \n

    ManageWP Worker is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

    \n

    You should have received a copy of the GNU General Public License along with ManageWP Worker. If not, see https://www.gnu.org/licenses/.

    \n", "donate_link": "", "num_ratings": 672, "screenshots": {"1": {"src": "https://ps.w.org/worker/assets/screenshot-1.png?rev=1460091", "caption": "ManageWP dashboard with a thumbnail view of 20 websites"}, "2": {"src": "https://ps.w.org/worker/assets/screenshot-2.png?rev=1460091", "caption": "Tags and stars help you organize your websites"}, "3": {"src": "https://ps.w.org/worker/assets/screenshot-3.png?rev=1460091", "caption": "A summary of available updates and health of all your websites"}, "4": {"src": "https://ps.w.org/worker/assets/screenshot-4.png?rev=1460091", "caption": "Track your website performance regularly, so you could know right away if something goes wrong"}, "5": {"src": "https://ps.w.org/worker/assets/screenshot-5.png?rev=1460091", "caption": "Managing plugins and themes is just as easy with 100 websites as with 3 websites"}, "6": {"src": "https://ps.w.org/worker/assets/screenshot-6.png?rev=1460091", "caption": "Client Report is an executive summary of everything you''ve done for your client"}, "7": {"src": "https://ps.w.org/worker/assets/screenshot-7.png?rev=1460091", "caption": "Cloud backups with detailed information about each restore point"}, "8": {"src": "https://ps.w.org/worker/assets/screenshot-8.png?rev=1460091", "caption": "Uptime Monitor logs up and down events, and notifies you via email and SMS"}, "9": {"src": "https://ps.w.org/worker/assets/screenshot-9.png?rev=1460091", "caption": "Aside from being able to white label the ManageWP Worker plugin, you can also add a support form on the client''s website"}}, "support_url": "https://wordpress.org/support/plugin/worker/", "contributors": {"managewp": {"avatar": "https://secure.gravatar.com/avatar/8c88e633afcc1a88ea2be2213563fe3386edc70f26f8a90593e8991657a2885e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/managewp/", "display_name": "ManageWP"}, "freediver": {"avatar": "https://secure.gravatar.com/avatar/e5715560585748738266301b0f3ece732f803f6d6417785f743299ba033942f9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/freediver/", "display_name": "Vladimir Prelovac"}}, "last_updated": "2025-10-16 7:56am GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/worker.4.9.25.zip", "author_profile": "https://profiles.wordpress.org/freediver/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fde9-7205-b08c-adccd3fc10e7", "name": "ManageWP Worker", "slug": "worker", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760601360, "version": "4.9.25"}, "support_threads": 1, "requires_plugins": [], "short_description": "A better way to manage dozens of WordPress websites.", "author_block_count": 0, "author_block_rating": 92, "commercial_support_url": "", "support_threads_resolved": 1}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1f06-7204-8c8b-0a3bdc74535c', 'did:web:api.aspiredev.org:packages:wp-plugin:wp-fastest-cache', 'wp-fastest-cache', 'WP Fastest Cache', '

    Official Website

    -

    You can find more information on our website (wpfastestcache.com)

    -

    Welcome to the page of the WP Fastest Cache plugin, a WordPress cache plugin developed to speed up WordPress sites.

    -

    In today’s world where every second counts, optimizing your website’s performance is very important. Meet WP Fastest Cache, your caching plugin that you can use to speed up WordPress websites.

    -

    Optimize the performance of your website with WP Fastest Cache. Improve Google PageSpeed, Core Web Vitals, GTmetrix and Pingdom score with our wp cache plugin.

    -

    In addition, page speed is a ranking factor in Google’s search algorithm. Therefore, using cache plugins helps improve your SEO ranking. Our WordPress optimization plugin not only accelerates your site but also boosts SEO rankings.

    -

    Features

    -
      -
    1. Mod_Rewrite which is the fastest method is used in this plugin
    2. -
    3. All cache files are deleted when a post or page is published
    4. -
    5. Admin can delete all cached files from the options page
    6. -
    7. Admin can delete minified css and js files from the options page
    8. -
    9. Block cache for specific page or post with Short Code
    10. -
    11. Cache Timeout – All cached files are deleted at the determinated time
    12. -
    13. Cache Timeout for specific pages
    14. -
    15. Enable/Disable cache option for mobile devices
    16. -
    17. Enable/Disable cache option for logged-in users
    18. -
    19. SSL support
    20. -
    21. CDN support – Effortlessly enhance website speed and performance with seamless CDN integration, supporting Bunny CDN, Cloudflare, and various other leading CDN providers. CDN integration modifies the URLs of static resources, enabling these assets to be served from your CDN service provider
    22. -
    23. Cloudflare support – Cloudflare integration triggers the clearing of the cache on Cloudflare through API when a cache purge is initiated. As a result, WP Fastest Cache and Cloudflare operate seamlessly in tandem
    24. -
    25. Preload Cache – Create the cache of all the site automatically
    26. -
    27. Exclude pages and user-agents
    28. -
    29. WP-CLI cache clearing
    30. -
    31. Proxy Cache – Varnish Cache Integration to clear proxy cached content automatically when the cache created by WP Fastest Cache is cleared
    32. -
    -

    Performance Optimization

    -

    WP Fastest Cache is not only a wp cache plugin but also a speed optimization wordpress cache plugin. There are many features such as Minify Html, Minify Css, Enable Gzip Compression, Leverage Browser Caching, Add Expires Headers, Combine CSS, Combine JS, Disable Emoji.

    -
      -
    1. Page Caching – Page caching feature generates and store static HTML files from your dynamic WordPress blog to reduce initial server response time, and improving page load times
    2. -
    3. Minify Html – Minify HTML is the process of reducing the size of page by removing unnecessary characters, spaces, and line breaks, optimizing it for faster webpage loading
    4. -
    5. Minify Css – Minify CSS is the process of reducing the size of CSS files by removing unnecessary characters, spaces, and comments to improve website loading performance
    6. -
    7. Enable Gzip Compression – Reduce the size of files sent from your server to increase the speed to which they are transferred to the browser
    8. -
    9. Leverage browser caching – Browser caching can help to reduce page load times by reducing the number of requests per page for repeat visitors
    10. -
    11. Combine CSS – Reduce number of HTTP round-trips by combining multiple CSS resources into one
    12. -
    13. Combine JS
    14. -
    15. Disable Emoji – You can remove the emoji inline css and wp-emoji-release.min.js
    16. -
    -

    Premium Performance Optimization

    -

    The free version is enough to speed up your site but in the premium version there are extra features such as Mobile Cache, Widget Cache, Minify HTML Plus, Minify CSS Plus, Minify JS, Combine JS Plus, Defer Javascript, Optimize Images, Convert WebP, Database Cleanup, Google Fonts Async, Lazy Load and Delay JS for super fast load times.

    -
      -
    1. Mobile Cache
    2. -
    3. Widget Cache
    4. -
    5. Minify HTML Plus
    6. -
    7. Minify CSS Plus
    8. -
    9. Minify Javascript – Minifying JavaScript files can reduce payload sizes and script parse time
    10. -
    11. Combine JS Plus
    12. -
    13. Defer Javascript – Eliminate render-blocking JavaScript resources. Consider delivering critical JS inline and deferring all non-critical JS
    14. -
    15. Optimize Images – Optimized images load faster and consume less cellular data
    16. -
    17. Convert WebP – Serve images in next-gen formats. Image formats like JPEG 2000, JPEG XR, and WebP often provide better compression than PNG or JPEG, which means faster downloads and less data consumption
    18. -
    19. Database Cleanup – The Database Cleanup feature clears out all of the garbage datas such as post revisions, trashed posts & pages, comments from trash & spam, trackbacks and pingbacks, transient options, orphaned post meta, comment meta, user meta, term meta, and term relationship etc.
    20. -
    21. Google Fonts Async
    22. -
    23. Lazy Load – Defer offscreen images. Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive
    24. -
    25. Delay JS – The Delay JavaScript feature helps reduce the ‘Reduce unused JavaScript’ warning in the Google PageSpeed Insights tool
    26. -
    -

    Information

    -

    It is very inconvenient to use multiple caching plugins at the same time. That’s why you need to disable plugins such as LiteSpeed Cache, WP-Optimize, W3 Total Cache, WP Super Cache, SiteGround Optimizer, Breeze while using WP Fastest Cache.

    -

    WP Fastest Cache is compatible with most popular plugins such as Contact Form 7, Yoast SEO, Elementor Website Builder, Classic Editor, Akismet Spam Protection, WooCommerce, Contact Form by WPForms, Really Simple SSL, All-in-One WP Migration, Yoast Duplicate Post, Wordfence Security – Firewall & Malware Scan, WordPress Importer, UpdraftPlus WordPress Backup Plugin, MonsterInsights, All in One SEO, WP Mail SMTP by WPForms.

    -

    Supported Languages

    -

    Although there are over 7000 languages spoken in the world today, we feel very lucky to support 30 languages for now.

    -

    However, localizing or adapting a plugin to another language or culture is time consuming and a demanding task. That’s where the amazing Translation Contributors team of WordPress comes into play. These selfless people spent their precious time without expecting anything in return so that other people can use the add-ons more easily. We sincerely thank all of them.

    -

    Chinese Simplified (China), Chinese Traditional (Taiwan), Czech, Dutch (Belgium), Dutch (Netherlands), English (South Africa), English (UK), Finnish, French (France), Galician, German (Germany), Hungarian, Indonesian, Italian, Japanese, Korean (Korea), Persian, Russian, Slovak (Slovakia), Slovenian, Spanish (Argentina), Spanish (Chile), Spanish (Colombia), Spanish (Ecuador), Spanish (Mexico), Spanish (Spain), Spanish (Venezuela), Swedish, Turkish, Ukrainian

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WP Fastest Cache", "slug": "wp-fastest-cache", "tags": {"cache": "cache", "optimize": "Optimize", "pagespeed": "pagespeed", "performance": "performance", "core-web-vitals": "core web vitals"}, "added": "2013-08-04", "icons": {"1x": "https://ps.w.org/wp-fastest-cache/assets/icon-128x128.png?rev=1068904", "2x": "https://ps.w.org/wp-fastest-cache/assets/icon-256x256.png?rev=2064586"}, "author": "Emre Vona", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-fastest-cache/assets/banner-772x250.jpg?rev=1064099", "high": false}, "ratings": {"1": 104, "2": 27, "3": 28, "4": 48, "5": 3975}, "version": "1.4.1", "homepage": "http://wordpress.org/plugins/wp-fastest-cache/", "requires": "5.3", "sections": {"faq": "\n
    \nHow do I know my blog is being cached?\n\n

    \n

    You need to refresh a page twice. If a page is cached, at the bottom of the page there is a text like “<!– WP Fastest Cache file was created in 0.330816984177 seconds, on 08-01-14 9:01:35 –>”.

    \n

    \n
    \nDoes it work with Nginx?\n\n

    \n

    Yes, it works with Nginx properly. Since Nginx doesn’t use an .htaccess file, you need to enable the Gzip compression and Browser Caching features manually. You can follow these tutorials: How to Enable Leverage Browser Caching on Nginx and How to Enable Gzip on Nginx

    \n

    \n
    \nDoes it work with IIS (Windows Server) ?\n\n

    \n

    Yes, it works with IIS properly.

    \n

    \n
    \nIs this plugin compatible with Multisite?\n\n

    \n

    Yes, it is compatible with Multisite.

    \n

    \n
    \nIs this plugin compatible with Subdirectory Installation?\n\n

    \n

    Yes, it is compatible with Subdirectory Installation.

    \n

    \n
    \nIs this plugin compatible with Http Secure (https) ?\n\n

    \n

    Yes, it is compatible with Http Secure (https).

    \n

    \n
    \nIs this plugin compatible with Adsense?\n\n

    \n

    Yes, it is compatible with Adsense 100%.

    \n

    \n
    \nIs this plugin compatible with CloudFlare?\n\n

    \n

    Yes, it is but you need to read the details. Click

    \n

    \n
    \nIs this plugin compatible with qTranslate?\n\n

    \n

    Yes, it is compatible with qTranslate 100%.

    \n

    \n
    \nIs this plugin compatible with WP Hide & Security Enhancer?\n\n

    \n

    Yes, it is compatible with WP Hide & Security Enhancer.

    \n

    \n
    \nIs this plugin compatible with WP-PostViews?\n\n

    \n

    Yes, it is compatible with WP-PostViews. The current post views appear on the admin panel. The visitors cannot see the current post views. The developer of WP-PostViews needs to fix this issue.

    \n

    \n
    \nIs this plugin compatible with WooCommerce Themes?\n\n

    \n

    Yes, it is compatible with WooCommerce Themes 100%.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Cache Plugin with even better 24/7 Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ascendinmotion on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve tried a bunch of cache plugins over the years, and this one is easily one of the best. It made a clear difference in our site speed right away, and the setup was super straightforward. But honestly, the real standout is the 24/7 support, they replied in under five minutes from when I emailed, and they were on it immediately, unlike so many other WordPress plugin support teams that take days just scratching their heads. Every time I’ve reached out, someone was there to help within minutes. It''s rare to find both a solid plugin and a support team that actually shows up. Definitely recommend it if you''re looking for speed and peace of mind.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome. Appreciate it!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy inpeaks on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent support from the team!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin, using it on mutliple websites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy banjavrujci on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello everyone,

    \n\n\n\n

    WP Fastest Cache is one the must have plugins for me.

    \n\n\n\n

    I am using it on a lot of my websites and it gives me great results.

    \n\n\n\n

    All the best from my side for the creators of this great plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Performance Low Mangalation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Robert Dinse on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have tried many cache plugins, most mangle my site if I enable javascript, css, and html minimization and combining, but Fastest Cache seems to work correctly. For maximum effect, I mounted a tmpfs where my cache directory is so that Fastest Cache can server out of RAM. Feel free to check out my site https://www.eskimo.com/

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very efficient and very easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Miguel (millote) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve used various caching systems and always come back to Fastest Cache. It''s very easy to use and has very positive results. I''ll definitely stick with it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Solid, Lightweight Caching That Just Works

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pavel Espinal (khratos) on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    As a developer, I appreciate plugins that deliver performance without bloat—and WP Fastest Cache nails it. It’s lightweight, easy to configure, and significantly boosts page load times out of the box. The minification, GZIP, and browser caching features just work as they should. If you need reliable caching without the overhead, this is your go-to.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin, simply, fast Websites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tbauerdigital on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Using the Plugin on more than 20 Websites (free and some with the paid version) and it works like a charm. Also the Support-Team was fast and helpful regarding an issue and quick fix with one other Plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not for Me

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy George (gbwallace) on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am on WordPress 6.8.3 and using font Hever (hever-wpcom) 1.5.30. This plugin was not compatible with this font and really messed up my site till the guys at Blue Host spent two days trying to figure out what was wrong!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin and very easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jedanbaja on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    All in title, easy to use, great options for both free and premium version.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good and powerful - Fast and accurate service

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hekupsch on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WP Fastest Cache is a powerful and easy to use plugin. The service is quick and precise. Many thanks

    \n
    \n
    \n", "changelog": "

    1.4.1

    \n
      \n
    • Added display of orphaned post meta, comment meta, user meta, term meta, and term relationship counts
    • \n
    • Added nonce verification and capability checks to the wpfc_db_fix AJAX action to prevent unauthorized database cleanup requests
    • \n
    • Added a validation to ensure Elementor’s CSS Print Method is set to “Internal Embedding,” displaying an error with a help link if misconfigured [Details]
    • \n
    \n

    1.4.0

    \n
      \n
    • Fixed: support both old (elementor_experiment-e_element_cache) and new (elementor_element_cache_ttl) Elementor cache options for compatibility
    • \n
    \n

    1.3.9

    \n
      \n
    • [Improvement] Replaced manual output in print_my_inline_script() with wp_print_inline_script_tag() for better compatibility and cleaner code
    • \n
    • Fixed: RewriteCond syntax to correctly detect HTTPS connections
    • \n
    \n

    1.3.8

    \n
      \n
    • Added a condition to exclude tags from js combining
    • \n
    • Fixed: Issue where the cache was not being cleared when a page was deleted
    • \n
    • Fixed: PHP fatal error caused by an undefined function current_datetime() in cache.php on line 1130
    • \n
    • Added support for fetching and processing multiple pages of Cloudflare zones to ensure all potential matches are considered
    • \n
    \n

    1.3.7

    \n
      \n
    • [Improvement] Serve cached content via .htaccess rules instead of PHP when URLs include the fbclid query string
    • \n
    • [FEATURE] Added support for Spanish (Chile) and Ukrainian languages
    • \n
    • to update translation files
    • \n
    • to fix PHP Fatal error: Uncaught TypeError: method_exists(): Argument #1 ($object_or_class) must be of type object|string, array given in cdn.php:383
    • \n
    • [Improvement] Added specific handling for BunnyCDN 403 errors
    • \n
    \n

    1.3.6

    \n
      \n
    • Prevented unnecessary cache deletion for pending comments marked as spam or moved to trash
    • \n
    • Updated caching behavior to serve URLs with Google Merchant Center query strings (e.g., /?srsltid) from the cache, improving performance
    • \n
    \n

    1.3.5

    \n
      \n
    • Updated cache creation time display to follow WordPress date and time format settings
    • \n
    • Removed the ‘Static CSS File Generation’ warning when using the Divi theme.
    • \n
    \n

    1.3.4

    \n
      \n
    • to fix PHP Fatal error: Class “VarnishWPFC” not found in preload.php
    • \n
    • to fix Undefined property: stdClass::$total in preload.php on line 753
    • \n
    \n

    1.3.3

    \n
      \n
    • [Improvement] Toolbar style adjusted to align with WordPress standard for better consistency and user experience
    • \n
    • to change the cache path for the Polylang-Pro plugin
    • \n
    • [Improvement] Modified the toolbar menu of WP Fastest Cache plugin to improve usability and navigation
    • \n
    • [FEATURE] Added a filter that allows users to easily remove the WP Fastest Cache menu from the admin toolbar [Details]
    • \n
    \n

    1.3.2

    \n
      \n
    • [Improvement] Added a new action to handle the addition of keyword items in the Preload Wizard
    • \n
    • Corrected typos in the Cloudflare CDN integration wizard and in the DB tab
    • \n
    • [FEATURE] Added a filter to define the token for preload functionality [Details]
    • \n
    \n

    1.3.1

    \n
      \n
    • [FEATURE] Added a filter that allows users to easily remove the cache creation comment from the footer [Details]
    • \n
    • [Improvement] Added a warning notification to alert users if the “Element Caching” option in the Elementor plugin is not inactive [Details]
    • \n
    • Refactored remove_url_parameters() for improved efficiency
    • \n
    • Fix issue: Logic to determine the $number variable based on the WPFC_PRELOAD_NUMBER constant for preload when a sitemap is used
    • \n
    \n

    1.3.0

    \n
      \n
    • Prevent caching of 403 Forbidden error pages
    • \n
    • Fix issue: Exclude JS files with the “data-no-minify” attribute from the combining process
    • \n
    • Fixed PHP Notice: Undefined index: HTTP_HOST in wpFastestCache.php on line 489
    • \n
    \n

    1.2.9

    \n
      \n
    • Refactored ‘Clear Cache via URL’ feature
    • \n
    • Added feature to clear post cache triggered via URL [Details]
    • \n
    \n

    1.2.8

    \n
      \n
    • refactoring for CSS minification feature
    • \n
    • refactoring for Cloudflare Integration
    • \n
    • to update translation files
    • \n
    \n

    1.2.7

    \n
      \n
    • to fix the issue of backslashes being removed in the <pre> tag after minifying HTML
    • \n
    \n

    1.2.6

    \n
      \n
    • refactoring for getABSPATH()
    • \n
    • to prevent clearing cache after deleting coupon which was created by YITH WooCommerce Coupon Email System Premium
    • \n
    • to check the REDIRECT_QUERY_STRING for the gtranslate plugin
    • \n
    \n

    1.2.5

    \n
      \n
    • to fix the creation of cache for URLs that end with .xml
    • \n
    • to use the native WordPress function current_time() instead of the date() function
    • \n
    • refactoring the purge_cache() function of Varnish Cache
    • \n
    \n

    1.2.4

    \n
      \n
    • refactoring for getABSPATH()
    • \n
    • to fix PHP Deprecated: Creation of dynamic property CssUtilities::$url is deprecated in css-utilities.php on line 348
    • \n
    • to fix PHP Deprecated: Creation of dynamic property CssUtilities::$url_for_fix is deprecated in css-utilities.php on line 412
    • \n
    • to remove duplicate extensions in the directive for the browser caching feature
    • \n
    \n

    1.2.3

    \n
      \n
    • Farewell, StackPath, and a warm welcome to BunnyCDN
    • \n
    • to update translation files
    • \n
    • to exclude script element from minification when data-no-minify attribute is set
    • \n
    • [FEATURE] to add Slovenian language
    • \n
    • refactroning of specificDeleteCache()
    • \n
    \n

    1.2.2

    \n
      \n
    • Security Enhancements
    • \n
    • to update translation files
    • \n
    \n

    1.2.1

    \n
      \n
    • refactroning of the condition that was added for Divi theme
    • \n
    • [FEATURE] Add a hook system for creating a post cache by id [Details]
    • \n
    • to fix the issue of obtaining the latest version of the sitemap after a restart
    • \n
    • to check if the intl extension is available for Cloudflare integration
    • \n
    • to fix Warning: Undefined property: stdClass::$zone_id in cdn.php on line 227
    • \n
    \n

    1.2.0

    \n
      \n
    • to make the Preload feature to be compatible with Sitemap Index
    • \n
    • to hide the premium tab for the premium users
    • \n
    • to show warning if the Static CSS File Generation option of Divi theme is enabled
    • \n
    • to update translation files
    • \n
    • to fix PHP Warning: Undefined array key “sitemaps” in preload.php on line 62
    • \n
    • to change the cache path for the Polylang-Pro plugin
    • \n
    • to check if the buffer has only one line (no line breaks)
    • \n
    • refactoring of checkHtml()
    • \n
    • to check that Cookie Notice & Compliance for GDPR / CCPA is active or not
    • \n
    \n

    1.1.9

    \n
      \n
    • to add gear button for the preload feature
    • \n
    • to remove image urls for sitemap preload
    • \n
    • to fix PHP Deprecated: Required parameter in preload.php on line 576
    • \n
    • [FEATURE] Moving the menu item under the settings menu [Details]
    • \n
    • to fix Warning: Undefined array key “action” in wpFastestCache.php on line 378 and 395
    • \n
    \n

    1.1.8

    \n
      \n
    • [FEATURE] to add Sitemap option for the preload feature [Details]
    • \n
    • to update translation files
    • \n
    • to fix PHP Warning: Attempt to read property “term_taxonomy_id” on bool in wpFastestCache.php on line 1638
    • \n
    \n

    1.1.7

    \n
      \n
    • to change the cache path for the Polylang plugin
    • \n
    • [FEATURE] to add Korean (Korea) language
    • \n
    • to update translation files
    • \n
    • refactoring of is_amp()
    • \n
    • to replace empty char which exist in the admin cookie with %20 for RewriteCond
    • \n
    \n

    1.1.6

    \n
      \n
    • to update translation files
    • \n
    • to fix problem that the first js source is not able to be excluded
    • \n
    • refactoring of set_cache_file_path()
    • \n
    • refactoring of Buffer Callback Filter [Details]
    • \n
    \n

    1.1.5

    \n
      \n
    • to replace wp_remote_get() with wp_safe_remote_get() in the check_url() function
    • \n
    • to update translation files
    • \n
    • to fix PHP Warning: Undefined array key “roles” in wpFastestCache.php on line 962
    • \n
    • to remove multiple slashes from url
    • \n
    • to fix PHP Warning: Attempt to read property “wpFastestCacheLanguage” on array in admin.php on line 23
    • \n
    \n

    1.1.4

    \n
      \n
    • to check trailing slash for query string cache
    • \n
    • refactoring process of clearing homepage cache by cache timeout
    • \n
    \n

    1.1.3

    \n
      \n
    • to change translation system [Details]
    • \n
    • refactoring of delete_author_page_cache()
    • \n
    • to add Czech, Dutch (Belgium), Galician, Hungarian, Indonesian, Japanese, Persian, Spanish (Colombia), Spanish (Ecuador), Spanish (Ecuador), Spanish (Venezuela), Spanish (Argentina), Spanish (Mexico) translations
    • \n
    • to enable the toolbar settings wizard for the Multisite installation [Details]
    • \n
    • to fix low level vulnerability
    • \n
    \n

    1.1.2

    \n
      \n
    • to clear cache of next/prev posts after updating or publishing a post
    • \n
    • to fix E_WARNING: file_get_contents(): No such file or directory in admin.php on line 377
    • \n
    • [FEATURE] Added ability to disable hook system [Details]
    • \n
    • to fix PHP Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in preload.php on line 546
    • \n
    • to fix Notice: Constant WPFC_CACHE_QUERYSTRING already defined
    • \n
    \n

    1.1.1

    \n
      \n
    • [FEATURE] Varnish Cache Integration [Details]
    • \n
    • to fix E_WARNING: unlink(): No such file or directory in wpFastestCache.php on line 1530
    • \n
    \n

    1.1.0

    \n
      \n
    • to show cache if the url contains a parameter of Yandex Click Identifier
    • \n
    • [FEATURE] Excluding Yandex Click Identifier [Details]
    • \n
    • [FEATURE] Adding “Regular Expression” option for the Exclude Pages feature [Details]
    • \n
    \n

    1.0.9

    \n
      \n
    • to improve the style of exclude feature wizard
    • \n
    • to fix hiding the toolbar when logged in
    • \n
    • to fix PHP Notice: Undefined offset: -1 in js-utilities.php on line 67
    • \n
    • to fix PHP Fatal error: Uncaught Error: Non-static method cannot be called statically in clearing-specific-pages.php on line 58
    • \n
    \n

    1.0.8

    \n
      \n
    • to stop showing the “DONOTCACHEPAGE is defined as TRUE” comment in the footer for the ajax requests
    • \n
    • [FEATURE] Clearing Specific Pages [Details]
    • \n
    • to fix the site url on the exclude page
    • \n
    • to fix PHP Notice: Function WP_User_Query::query was called incorrectly. User queries should not be run before the plugins_loaded hook
    • \n
    \n

    1.0.7

    \n
      \n
    • [FEATURE] Clearing Specific Pages (BETA) [Details]
    • \n
    • to add last-modified header when cache is served via php
    • \n
    \n

    1.0.6

    \n
      \n
    • to serve sources via cdn for excluded pages if cdn is enabled
    • \n
    • to fix PHP Notice: Undefined offset: -1 in js-utilities.php on line 48
    • \n
    \n

    1.0.5

    \n
      \n
    • to fix E_NOTICE: Undefined variable: path in wpFastestCache.php on line 2142
    • \n
    • to add excluding feature for Buffer Callback Filter [Details]
    • \n
    \n

    1.0.4

    \n
      \n
    • to add avif extensions for cdn
    • \n
    • to add WPFC_SERVE_ONLY_VIA_CACHE [Details]
    • \n
    \n

    1.0.3

    \n
      \n
    • Photon will no longer be supported [Details]
    • \n
    • to exclude category url for preload if any error occurs
    • \n
    \n

    1.0.2

    \n
      \n
    • to add WP-CLI command for clearing cache of a post [Details]
    • \n
    • to fix Warning scandir() at wpFastestCache.php:302
    • \n
    • to fix Warning file_put_contents(/cache/wpfc-minified/index.html) at cache.php:1090
    • \n
    • to fix Warning unlink(wp-cache-config.php) admin.php:885
    • \n
    \n

    1.0.1

    \n
      \n
    • to clear only cache of post/page even if the “update post” option is disabled
    • \n
    \n

    1.0.0

    \n
      \n
    • to define the save_settings() function of single preload feature as static function
    • \n
    \n

    EARLIER VERSIONS
    \nFor the changelog of earlier versions, please refer to [the changelog on wpfastestcache.com]

    \n", "description": "

    Official Website

    \n

    You can find more information on our website (wpfastestcache.com)

    \n

    Welcome to the page of the WP Fastest Cache plugin, a WordPress cache plugin developed to speed up WordPress sites.

    \n

    In today’s world where every second counts, optimizing your website’s performance is very important. Meet WP Fastest Cache, your caching plugin that you can use to speed up WordPress websites.

    \n

    Optimize the performance of your website with WP Fastest Cache. Improve Google PageSpeed, Core Web Vitals, GTmetrix and Pingdom score with our wp cache plugin.

    \n

    In addition, page speed is a ranking factor in Google’s search algorithm. Therefore, using cache plugins helps improve your SEO ranking. Our WordPress optimization plugin not only accelerates your site but also boosts SEO rankings.

    \n

    Features

    \n
      \n
    1. Mod_Rewrite which is the fastest method is used in this plugin
    2. \n
    3. All cache files are deleted when a post or page is published
    4. \n
    5. Admin can delete all cached files from the options page
    6. \n
    7. Admin can delete minified css and js files from the options page
    8. \n
    9. Block cache for specific page or post with Short Code
    10. \n
    11. Cache Timeout – All cached files are deleted at the determinated time
    12. \n
    13. Cache Timeout for specific pages
    14. \n
    15. Enable/Disable cache option for mobile devices
    16. \n
    17. Enable/Disable cache option for logged-in users
    18. \n
    19. SSL support
    20. \n
    21. CDN support – Effortlessly enhance website speed and performance with seamless CDN integration, supporting Bunny CDN, Cloudflare, and various other leading CDN providers. CDN integration modifies the URLs of static resources, enabling these assets to be served from your CDN service provider
    22. \n
    23. Cloudflare support – Cloudflare integration triggers the clearing of the cache on Cloudflare through API when a cache purge is initiated. As a result, WP Fastest Cache and Cloudflare operate seamlessly in tandem
    24. \n
    25. Preload Cache – Create the cache of all the site automatically
    26. \n
    27. Exclude pages and user-agents
    28. \n
    29. WP-CLI cache clearing
    30. \n
    31. Proxy Cache – Varnish Cache Integration to clear proxy cached content automatically when the cache created by WP Fastest Cache is cleared
    32. \n
    \n

    Performance Optimization

    \n

    WP Fastest Cache is not only a wp cache plugin but also a speed optimization wordpress cache plugin. There are many features such as Minify Html, Minify Css, Enable Gzip Compression, Leverage Browser Caching, Add Expires Headers, Combine CSS, Combine JS, Disable Emoji.

    \n
      \n
    1. Page Caching – Page caching feature generates and store static HTML files from your dynamic WordPress blog to reduce initial server response time, and improving page load times
    2. \n
    3. Minify Html – Minify HTML is the process of reducing the size of page by removing unnecessary characters, spaces, and line breaks, optimizing it for faster webpage loading
    4. \n
    5. Minify Css – Minify CSS is the process of reducing the size of CSS files by removing unnecessary characters, spaces, and comments to improve website loading performance
    6. \n
    7. Enable Gzip Compression – Reduce the size of files sent from your server to increase the speed to which they are transferred to the browser
    8. \n
    9. Leverage browser caching – Browser caching can help to reduce page load times by reducing the number of requests per page for repeat visitors
    10. \n
    11. Combine CSS – Reduce number of HTTP round-trips by combining multiple CSS resources into one
    12. \n
    13. Combine JS
    14. \n
    15. Disable Emoji – You can remove the emoji inline css and wp-emoji-release.min.js
    16. \n
    \n

    Premium Performance Optimization

    \n

    The free version is enough to speed up your site but in the premium version there are extra features such as Mobile Cache, Widget Cache, Minify HTML Plus, Minify CSS Plus, Minify JS, Combine JS Plus, Defer Javascript, Optimize Images, Convert WebP, Database Cleanup, Google Fonts Async, Lazy Load and Delay JS for super fast load times.

    \n
      \n
    1. Mobile Cache
    2. \n
    3. Widget Cache
    4. \n
    5. Minify HTML Plus
    6. \n
    7. Minify CSS Plus
    8. \n
    9. Minify Javascript – Minifying JavaScript files can reduce payload sizes and script parse time
    10. \n
    11. Combine JS Plus
    12. \n
    13. Defer Javascript – Eliminate render-blocking JavaScript resources. Consider delivering critical JS inline and deferring all non-critical JS
    14. \n
    15. Optimize Images – Optimized images load faster and consume less cellular data
    16. \n
    17. Convert WebP – Serve images in next-gen formats. Image formats like JPEG 2000, JPEG XR, and WebP often provide better compression than PNG or JPEG, which means faster downloads and less data consumption
    18. \n
    19. Database Cleanup – The Database Cleanup feature clears out all of the garbage datas such as post revisions, trashed posts & pages, comments from trash & spam, trackbacks and pingbacks, transient options, orphaned post meta, comment meta, user meta, term meta, and term relationship etc.
    20. \n
    21. Google Fonts Async
    22. \n
    23. Lazy Load – Defer offscreen images. Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive
    24. \n
    25. Delay JS – The Delay JavaScript feature helps reduce the ‘Reduce unused JavaScript’ warning in the Google PageSpeed Insights tool
    26. \n
    \n

    Information

    \n

    It is very inconvenient to use multiple caching plugins at the same time. That’s why you need to disable plugins such as LiteSpeed Cache, WP-Optimize, W3 Total Cache, WP Super Cache, SiteGround Optimizer, Breeze while using WP Fastest Cache.

    \n

    WP Fastest Cache is compatible with most popular plugins such as Contact Form 7, Yoast SEO, Elementor Website Builder, Classic Editor, Akismet Spam Protection, WooCommerce, Contact Form by WPForms, Really Simple SSL, All-in-One WP Migration, Yoast Duplicate Post, Wordfence Security – Firewall & Malware Scan, WordPress Importer, UpdraftPlus WordPress Backup Plugin, MonsterInsights, All in One SEO, WP Mail SMTP by WPForms.

    \n

    Supported Languages

    \n

    Although there are over 7000 languages spoken in the world today, we feel very lucky to support 30 languages for now.

    \n

    However, localizing or adapting a plugin to another language or culture is time consuming and a demanding task. That’s where the amazing Translation Contributors team of WordPress comes into play. These selfless people spent their precious time without expecting anything in return so that other people can use the add-ons more easily. We sincerely thank all of them.

    \n

    Chinese Simplified (China), Chinese Traditional (Taiwan), Czech, Dutch (Belgium), Dutch (Netherlands), English (South Africa), English (UK), Finnish, French (France), Galician, German (Germany), Hungarian, Indonesian, Italian, Japanese, Korean (Korea), Persian, Russian, Slovak (Slovakia), Slovenian, Spanish (Argentina), Spanish (Chile), Spanish (Colombia), Spanish (Ecuador), Spanish (Mexico), Spanish (Spain), Spanish (Venezuela), Swedish, Turkish, Ukrainian

    \n", "screenshots": "
    1. \"Performance

      Performance Comparison

    2. \"Other

      Other Performance Comparison

    3. \"Without

      Without Cache

    4. \"With

      With Cache

    5. \"Main

      Main Settings Page

    6. \"Preload\"

      Preload

    7. \"New

      New Post

    8. \"Update

      Update Cache

    9. \"Delete

      Delete Cache

    10. \"All

      All cached files are deleted at the determinated time

    11. \"Block

      Block caching for post and pages (TinyMCE)

    12. \"Clean

      Clean cached files via admin toolbar easily

    13. \"Exclude

      Exclude Page

    14. \"CDN\"

      CDN

    15. \"Enter

      Enter CDN Information

    16. \"File

      File Types

    17. \"Specify

      Specify Sources

    18. \"Database

      Database Cleanup

    ", "installation": "
      \n
    1. Upload wp-fastest-cache to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Permission of .htacces must 644
    6. \n
    7. Enable this plugin on option page
    8. \n
    \n"}, "versions": {"0.9.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.6.zip", "0.9.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.7.zip", "0.9.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.8.zip", "0.9.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.9.zip", "1.0.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.4.1.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-fastest-cache.zip", "0.8.6.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.6.6.zip", "0.8.6.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.6.7.zip", "0.8.6.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.6.8.zip", "0.8.6.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.6.9.zip", "0.8.7.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.0.zip", "0.8.7.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.1.zip", "0.8.7.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.2.zip", "0.8.7.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.3.zip", "0.8.7.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.4.zip", "0.8.7.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.5.zip", "0.8.7.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.6.zip", "0.8.7.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.7.zip", "0.8.7.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.8.zip", "0.8.7.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.9.zip", "0.8.8.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.0.zip", "0.8.8.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.1.zip", "0.8.8.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.2.zip", "0.8.8.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.3.zip", "0.8.8.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.4.zip", "0.8.8.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.5.zip", "0.8.8.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.6.zip", "0.8.8.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.7.zip", "0.8.8.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.8.zip", "0.8.8.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.9.zip", "0.8.9.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.0.zip", "0.8.9.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.1.zip", "0.8.9.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.2.zip", "0.8.9.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.3.zip", "0.8.9.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.4.zip", "0.8.9.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.5.zip", "0.8.9.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.6.zip", "0.8.9.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.7.zip", "0.8.9.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.8.zip", "0.8.9.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.9.zip", "0.9.0.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.0.zip", "0.9.0.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.1.zip", "0.9.0.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.2.zip", "0.9.0.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.3.zip", "0.9.0.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.4.zip", "0.9.0.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.5.zip", "0.9.0.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.6.zip", "0.9.0.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.7.zip", "0.9.0.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.8.zip", "0.9.0.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.9.zip", "0.9.1.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.0.zip", "0.9.1.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.1.zip", "0.9.1.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.2.zip", "0.9.1.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.3.zip", "0.9.1.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.4.zip", "0.9.1.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.5.zip", "0.9.1.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.6.zip", "0.9.1.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.7.zip", "0.9.1.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.8.zip", "0.9.1.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.9.zip"}, "downloaded": 60168274, "description": "

    Official Website

    \n

    You can find more information on our website (wpfastestcache.com)

    \n

    Welcome to the page of the WP Fastest Cache plugin, a WordPress cache plugin developed to speed up WordPress sites.

    \n

    In today’s world where every second counts, optimizing your website’s performance is very important. Meet WP Fastest Cache, your caching plugin that you can use to speed up WordPress websites.

    \n

    Optimize the performance of your website with WP Fastest Cache. Improve Google PageSpeed, Core Web Vitals, GTmetrix and Pingdom score with our wp cache plugin.

    \n

    In addition, page speed is a ranking factor in Google’s search algorithm. Therefore, using cache plugins helps improve your SEO ranking. Our WordPress optimization plugin not only accelerates your site but also boosts SEO rankings.

    \n

    Features

    \n
      \n
    1. Mod_Rewrite which is the fastest method is used in this plugin
    2. \n
    3. All cache files are deleted when a post or page is published
    4. \n
    5. Admin can delete all cached files from the options page
    6. \n
    7. Admin can delete minified css and js files from the options page
    8. \n
    9. Block cache for specific page or post with Short Code
    10. \n
    11. Cache Timeout – All cached files are deleted at the determinated time
    12. \n
    13. Cache Timeout for specific pages
    14. \n
    15. Enable/Disable cache option for mobile devices
    16. \n
    17. Enable/Disable cache option for logged-in users
    18. \n
    19. SSL support
    20. \n
    21. CDN support – Effortlessly enhance website speed and performance with seamless CDN integration, supporting Bunny CDN, Cloudflare, and various other leading CDN providers. CDN integration modifies the URLs of static resources, enabling these assets to be served from your CDN service provider
    22. \n
    23. Cloudflare support – Cloudflare integration triggers the clearing of the cache on Cloudflare through API when a cache purge is initiated. As a result, WP Fastest Cache and Cloudflare operate seamlessly in tandem
    24. \n
    25. Preload Cache – Create the cache of all the site automatically
    26. \n
    27. Exclude pages and user-agents
    28. \n
    29. WP-CLI cache clearing
    30. \n
    31. Proxy Cache – Varnish Cache Integration to clear proxy cached content automatically when the cache created by WP Fastest Cache is cleared
    32. \n
    \n

    Performance Optimization

    \n

    WP Fastest Cache is not only a wp cache plugin but also a speed optimization wordpress cache plugin. There are many features such as Minify Html, Minify Css, Enable Gzip Compression, Leverage Browser Caching, Add Expires Headers, Combine CSS, Combine JS, Disable Emoji.

    \n
      \n
    1. Page Caching – Page caching feature generates and store static HTML files from your dynamic WordPress blog to reduce initial server response time, and improving page load times
    2. \n
    3. Minify Html – Minify HTML is the process of reducing the size of page by removing unnecessary characters, spaces, and line breaks, optimizing it for faster webpage loading
    4. \n
    5. Minify Css – Minify CSS is the process of reducing the size of CSS files by removing unnecessary characters, spaces, and comments to improve website loading performance
    6. \n
    7. Enable Gzip Compression – Reduce the size of files sent from your server to increase the speed to which they are transferred to the browser
    8. \n
    9. Leverage browser caching – Browser caching can help to reduce page load times by reducing the number of requests per page for repeat visitors
    10. \n
    11. Combine CSS – Reduce number of HTTP round-trips by combining multiple CSS resources into one
    12. \n
    13. Combine JS
    14. \n
    15. Disable Emoji – You can remove the emoji inline css and wp-emoji-release.min.js
    16. \n
    \n

    Premium Performance Optimization

    \n

    The free version is enough to speed up your site but in the premium version there are extra features such as Mobile Cache, Widget Cache, Minify HTML Plus, Minify CSS Plus, Minify JS, Combine JS Plus, Defer Javascript, Optimize Images, Convert WebP, Database Cleanup, Google Fonts Async, Lazy Load and Delay JS for super fast load times.

    \n
      \n
    1. Mobile Cache
    2. \n
    3. Widget Cache
    4. \n
    5. Minify HTML Plus
    6. \n
    7. Minify CSS Plus
    8. \n
    9. Minify Javascript – Minifying JavaScript files can reduce payload sizes and script parse time
    10. \n
    11. Combine JS Plus
    12. \n
    13. Defer Javascript – Eliminate render-blocking JavaScript resources. Consider delivering critical JS inline and deferring all non-critical JS
    14. \n
    15. Optimize Images – Optimized images load faster and consume less cellular data
    16. \n
    17. Convert WebP – Serve images in next-gen formats. Image formats like JPEG 2000, JPEG XR, and WebP often provide better compression than PNG or JPEG, which means faster downloads and less data consumption
    18. \n
    19. Database Cleanup – The Database Cleanup feature clears out all of the garbage datas such as post revisions, trashed posts & pages, comments from trash & spam, trackbacks and pingbacks, transient options, orphaned post meta, comment meta, user meta, term meta, and term relationship etc.
    20. \n
    21. Google Fonts Async
    22. \n
    23. Lazy Load – Defer offscreen images. Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive
    24. \n
    25. Delay JS – The Delay JavaScript feature helps reduce the ‘Reduce unused JavaScript’ warning in the Google PageSpeed Insights tool
    26. \n
    \n

    Information

    \n

    It is very inconvenient to use multiple caching plugins at the same time. That’s why you need to disable plugins such as LiteSpeed Cache, WP-Optimize, W3 Total Cache, WP Super Cache, SiteGround Optimizer, Breeze while using WP Fastest Cache.

    \n

    WP Fastest Cache is compatible with most popular plugins such as Contact Form 7, Yoast SEO, Elementor Website Builder, Classic Editor, Akismet Spam Protection, WooCommerce, Contact Form by WPForms, Really Simple SSL, All-in-One WP Migration, Yoast Duplicate Post, Wordfence Security – Firewall & Malware Scan, WordPress Importer, UpdraftPlus WordPress Backup Plugin, MonsterInsights, All in One SEO, WP Mail SMTP by WPForms.

    \n

    Supported Languages

    \n

    Although there are over 7000 languages spoken in the world today, we feel very lucky to support 30 languages for now.

    \n

    However, localizing or adapting a plugin to another language or culture is time consuming and a demanding task. That’s where the amazing Translation Contributors team of WordPress comes into play. These selfless people spent their precious time without expecting anything in return so that other people can use the add-ons more easily. We sincerely thank all of them.

    \n

    Chinese Simplified (China), Chinese Traditional (Taiwan), Czech, Dutch (Belgium), Dutch (Netherlands), English (South Africa), English (UK), Finnish, French (France), Galician, German (Germany), Hungarian, Indonesian, Italian, Japanese, Korean (Korea), Persian, Russian, Slovak (Slovakia), Slovenian, Spanish (Argentina), Spanish (Chile), Spanish (Colombia), Spanish (Ecuador), Spanish (Mexico), Spanish (Spain), Spanish (Venezuela), Swedish, Turkish, Ukrainian

    \n", "donate_link": "https://profiles.wordpress.org/emrevona/", "num_ratings": 4182, "screenshots": {"1": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-1.jpg?rev=1474077", "caption": "Performance Comparison"}, "2": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-2.jpg?rev=1474073", "caption": "Other Performance Comparison"}, "3": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-3.jpg?rev=1474073", "caption": "Without Cache"}, "4": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-4.jpg?rev=1474073", "caption": "With Cache"}, "5": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-5.jpg?rev=2838692", "caption": "Main Settings Page"}, "6": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-6.jpg?rev=2838692", "caption": "Preload"}, "7": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-7.jpg?rev=2010915", "caption": "New Post"}, "8": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-8.jpg?rev=1592065", "caption": "Update Cache"}, "9": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-9.jpg?rev=2850073", "caption": "Delete Cache"}, "10": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-10.jpg?rev=2136433", "caption": "All cached files are deleted at the determinated time"}, "11": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-11.jpg?rev=1474073", "caption": "Block caching for post and pages (TinyMCE)"}, "12": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-12.jpg?rev=1474073", "caption": "Clean cached files via admin toolbar easily"}, "13": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-13.jpg?rev=2838701", "caption": "Exclude Page"}, "14": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-14.jpg?rev=3004623", "caption": "CDN"}, "15": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-15.jpg?rev=1474073", "caption": "Enter CDN Information"}, "16": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-16.jpg?rev=1474073", "caption": "File Types"}, "17": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-17.jpg?rev=1474073", "caption": "Specify Sources"}, "18": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-18.jpg?rev=2838698", "caption": "Database Cleanup"}}, "support_url": "https://wordpress.org/support/plugin/wp-fastest-cache/", "contributors": {"emrevona": {"avatar": "https://secure.gravatar.com/avatar/045e687cd5f0f0e70cf92a2e75e65d9914f8e5c1be3d7cb668febccc35bc08c3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/emrevona/", "display_name": "Emre Vona"}}, "last_updated": "2025-10-20 6:51pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.4.1.zip", "author_profile": "https://profiles.wordpress.org/emrevona/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    ....

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fdf5-7042-915a-8dd4103477fc", "name": "WP Fastest Cache", "slug": "wp-fastest-cache", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760986260, "version": "1.4.1"}, "support_threads": 32, "requires_plugins": [], "short_description": "The simplest and fastest WP Cache system", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 17}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1f16-732d-b142-da3ebc7f3492', 'did:web:api.aspiredev.org:packages:wp-plugin:wp-file-manager', 'wp-file-manager', 'File Manager', '

    File Manager allows you to edit, delete, upload, download, zip, copy and paste files and folders directly from the WordPress backend. Don’t bother with FTP to manage and move your files from location to location. The most powerful, flexible, and easiest WordPress file management solution ever built!

    -

    -

    Key Features in File Manager free Version Plugin

    -

    Key Features in the Free File Manager plugin include:
    -* Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete, etc.)
    -* Move/Copy: Admin can Move/Copy files with Drag & Drop. Also includes multi file selection.
    -* Archives: Admin can create, archive and extract files(zip, rar, tar, gzip).
    -* File Size: Admin/User can upload any size files.
    -* File Type: Control what files can be uploaded and what file can be downloaded.
    -* Code Editor: File Manager comes with a built in integrated development environment (IDE) – New Feature
    -* Syntax Checker: File Manager now can complete code reviews before saving files to ensure your site will not go down when updating code. Reviewing code for errors has never been so easy! – New Feature
    -* Multiple Themes: Multiple File Manager Themes Available – New Feature
    -* Get Info: All file details, properties, information is now available by simply right clicking a file and selecting Get Info – New Feature
    -* Share Files by Email: With File Manager you can easily and quickly share files by Email. Simply right click a file and press share, that’s it! – New Feature
    -* Private Folder: Available only for File Manager Pro Edition
    -* Shortcode: Available only for File Manager Pro Edition
    -* Root Directory: Quickly and easily edit your root path directory. With this feature you can access files inside and outside of WordPress
    -* PDF Support: Preview PDF files easily
    -* Built-in Trash: Delete files by moving them to trash
    -* File View: Icon and list view both available for easy navigation
    -* Preview Support: Easily preview common file types including media (video, audio, mp3, thumbnails, etc)
    -* Search: Search functionality is built directly into File Manager making it simple to find your files.
    -* Shortcut Support: Common shortcuts are available in File Manager
    -* Automatic File Resize: automatically resize files once uploaded.
    -* Responsive UI: File Manager works on tablet and mobile devices
    -* Browsing History: File and folders browsing history
    -* Trash function: Move to Trash Folder Feature
    -* PDF Preview: PDF Preview feature available
    -* FTP/SFTP Support: Alternative to FTP or Cpanel
    -* File Preview: preview for common MIMEs and file types
    -* Directory Size: Calculate directory size
    -* Icon View: List and Icons view available for files and files
    -* Keyboard shortcuts: Keyboard shortcuts available e.g. copy,paste,drag & drop
    -* Drag and drop: File Drag & Drop file upload function available
    -* Functions Toolbar: Rich context menu and file manager functions toolbar
    -* Thumbnails: Thumbnails for all types of image files
    -* Upload to Media Library: We have now included the ability to enable images, pdf’s, and zip files to be uploaded to you folders and as well be available via the native WordPress Media Library
    -* Backup/Restore: Backup and restore themes files, plugins files,uploads folder and db data on server.
    -* Multi Languages Added

    -

    Key Features in File Manager Pro Editions

    -
      -
    • File Type: Control what files can be uploaded and what file can be downloaded.**
    • -
    • Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete etc.)
    • -
    • Shortcode: Available with custom attributes for frontend.
    • -
    • Private Folder: Admin can give access of same and different folder to different users roles and different users.
    • -
    • Move/Copy: Admin can Move/Copy files with Drag & Drop.
    • -
    • Archives: Admin can create/extract files(zip, rar, tar, gzip).
    • -
    • File Size: Admin/User can control file upload size.
    • -
    • Fullscreen View: Admin can control code editor fullscreen view.
    • -
    • Editor: There are a lots of themes available for code editor. Admin can control code editor themes.
    • -
    • Hide Files/Folder: Here admin is able to hide files and folders for user roles and for users.
    • -
    • File Type: Control what files can be uploaded and what file can be downloaded.
    • -
    • User Role: admin is able to control file operations and hide and lock Files and Folders for user roles .
    • -
    • Users: admin is able to control file operations and hide and lock Files and Folders for particular user .
    • -
    • High performance: High performance server backend and light client UI.
    • -
    • File system: Local file system storage drivers.
    • -
    • Edit file: User can edit text files and images.
    • -
    • Frontend Access: User can access frontend using shortcode.
    • -
    • Admin Email Notifications. Admin will get a Notification whenever a file is updated.
    • -
    • Admin Email Notifications. Admin will get a Notification whenever a file is Downloaded.
    • -
    • Admin Email Notifications. Admin will get a Notification whenever a file is Edited.
    • -
    • Google Drive Integration drag drop, copy paste all other operations between file manager and google drive.
    • -
    • Dropbox Integration drag drop, copy paste all other operations between file manager and dropbox.
    • -
    -
    -

    Buy Pro Version with various features & support.
    - Contact us for Support Only Pro Version Users.
    - Documentation Click Here.
    - Addons with various features & support.
    - Upgrade to Pro Version

    -
    -

    Premium Addons

    -

    File Manager Cloudflare R2 provides you ability to edit, delete, upload, download, copy and paste files and folders in Cloudflare R2 bucket.
    -File Manager Digital Ocean provides you ability to edit, delete, upload, download, copy and paste files and folders in Digital Ocean.
    -File Manager Google Drive provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Drive.
    -File Manager OneDrive provides you ability to edit, delete, upload, download, copy and paste files and folders in OneDrive from File Manager.
    -File Manager Dropbox provides you ability to edit, delete, upload, download, copy and paste files and folders in dropbox.
    -File Manager Box provides you ability to edit, delete, upload, download, copy and paste files and folders in Box.
    -File Manager AWS S3 provides you ability to edit, delete, upload, download, copy and paste files and folders in AWS S3 bucket.
    -File Manager Git Github integration for file manager.
    -File Manager Slack Slack incoming webhook integration to file manager.
    -File Manager Google Cloud provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Cloud bucket.

    -

    Support

    -
      -
    • If any problem occurs, please contact us at https://filemanagerpro.io/contact/
    • -
    -

    How to use

    -
      -
    1. First Activate Plugin.
    2. -
    3. Then Click on ” WP File Manager ” menu. Then do with files what you want to do.= Minimum requirements for File Manager =
    4. -
    -

    * WordPress 3.3+
    -* PHP 5.x
    -* MySQL 5.x

    -

    If any problem occurs, please contact us at https://filemanagerpro.io/contact/

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "File Manager", "slug": "wp-file-manager", "tags": {"ftp": "ftp", "elfinder": "elfinder", "file-manager": "file manager", "wp-filemanager": "wp-filemanager", "wp-file-manager": "wp file manager"}, "added": "2016-08-09", "icons": {"1x": "https://ps.w.org/wp-file-manager/assets/icon-128x128.png?rev=2491299"}, "author": "mndpsingh287", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-file-manager/assets/banner-772x250.jpg?rev=2491299", "high": false}, "ratings": {"1": 101, "2": 13, "3": 13, "4": 28, "5": 1273}, "version": "8.0.2", "homepage": "https://wordpress.org/plugins/wp-file-manager", "requires": "4.0", "sections": {"faq": "\n
    \nCan we make zip of any folder or file and download it ?\n\n

    \n

    Yes, You can archive any files and folders as zip then simple download it. Please view screenshots.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really Helpful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy robotlawnmowersaustralia on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A convenient way to manage WordPress files directly from the dashboard, especially if you don’t have FTP access.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A really helpful plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jaribali1 on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Gets the job done when you need it to without obvious restrictions. I love this!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    THE BEST

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ovniccius on September 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    uSO MUITO

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy plutarch87 on September 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really useful plugin, if not the most useful for us, webdevs.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    great tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Tai (taikiser) on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    great assistance with plug ins

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Exactly what i needed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy leijmin on September 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks . Exactly what i needed

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Far better than the FTP

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy biturboyamato on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin has everything I need - the intuitive UI and the built-in text editor saved my time a lot.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Site hacked using 8.0.2 and vulnerabilities were reported a few weeks ago

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy amityweb on September 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A site of ours was hacked using File Manager 8.0.2

    \n\n\n\n

    I can see lots of reports of vulnerability so its not good this was a few weeks ago and no update ti patch it yet

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Every Time My Website is Down Thi Plugin Is Installed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy radulepy on September 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hackers use this plugin to gain access to my files.
    Every time there is a unauthorized change on my websites this plugin is installed.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So Helpful & Convenient

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Hannah West Design (vesica) on September 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    As a website designer/developer who manages a lot of sites, I find File Manager is greatly helpful in a number of scenarios, including when a client is not available for 2FA on their hosting account and I need to add, remove, or edit a file on the server in order to get something working properly. It is also convenient for anyone to be able to access files on the server without leaving the admin of their website. Thanks for a great product!

    \n
    \n
    \n", "changelog": "

    8.0.2 (26th May, 2025)

    \n
      \n
    • Core libraries updated.
    • \n
    \n

    8.0.1 (08th Jan, 2025)

    \n
      \n
    • Checked compatibility with WordPress 6.7.1
    • \n
    \n

    8.0 (06th Aug, 2024)

    \n
      \n
    • Broken Image Fixes
    • \n
    \n

    7.2.10 (29th July, 2024)

    \n
      \n
    • Compatible with WordPress 6.6.1
    • \n
    \n

    7.2.9 (6th June, 2024)

    \n
      \n
    • Trash Folder & Security Fixes.
    • \n
    \n

    7.2.8 (31 May, 2024)

    \n
      \n
    • Security Fixes.
    • \n
    \n

    7.2.7 (07 May, 2024)

    \n
      \n
    • Fixed image preview issue.
    • \n
    • Checked compatibility with WordPress 6.5.2
    • \n
    \n

    7.2.6 (01 April, 2024)

    \n
      \n
    • Directory Traversal issue resolved.
    • \n
    \n

    7.2.5 (14 Mar, 2024)

    \n
      \n
    • Improved Language check.
    • \n
    \n

    7.2.4 (28 Feb, 2024)

    \n
      \n
    • Fixed Language issue.
    • \n
    \n

    7.2.3 (26 Feb, 2024)

    \n
      \n
    • Fixed Language issue.
    • \n
    \n

    7.2.2 (18 Jan, 2024)

    \n
      \n
    • Fixed Security issue.
    • \n
    \n

    7.2.1 (26th Oct, 2023)

    \n
      \n
    • Directory Traversal issue resolved.
    • \n
    • Checked compatibility with wordpress 6.3.2
    • \n
    \n

    7.2 (18th August, 2023)

    \n
      \n
    • Api Update
    • \n
    • Checked compatibility with wordpress 6.3
    • \n
    \n

    7.1.9 (4th May, 2023)

    \n
      \n
    • Minor updations
    • \n
    • Checked compatibility with wordpress 6.2
    • \n
    \n

    7.1.8 (8th Feb, 2023)

    \n
      \n
    • Fixed confliction with pro version
    • \n
    • Minor updations
    • \n
    \n

    7.1.7 (5th December, 2022)

    \n
      \n
    • Removed Google Fonts External links
    • \n
    • Issue Resolved for zip download folder
    • \n
    • Checked compatibility with wordpress 6.1.1
    • \n
    \n

    7.1.6 (28th June, 2022)

    \n
      \n
    • Checked compatibility with wordpress 5.8.2
    • \n
    • Updated APIs
    • \n
    \n

    7.1.5 (19th Apr, 2022)

    \n
      \n
    • Updated translations
    • \n
    • Fixed zip extract issue
    • \n
    • Minor other bug fixes
    • \n
    \n

    7.1.4 (27th Jan, 2022)

    \n
      \n
    • Fixed compatibility issue with PHP > 8
    • \n
    • Fixed issue of fatal error on activating plugin
    • \n
    • Fixed compatibility issue of restore backup in multisite
    • \n
    • Fixed autohide toolbar issue for Ipad
    • \n
    \n

    7.1.3 (28th Dec, 2021)

    \n
      \n
    • Elfinder Library Updated
    • \n
    • Checked compatibility with wordpress 5.8.2
    • \n
    • Enhanced backup and restore process
    • \n
    \n

    7.1.2 (20th July, 2021)

    \n
      \n
    • Checked compatibility with wordpress 5.8
    • \n
    • Fixed minor bugs
    • \n
    • Checked compatibility with Query Monitor plugin
    • \n
    • Updated Translations
    • \n
    \n

    7.1.1 (30th March, 2021)

    \n
      \n
    • Checked compatibility with wordpress 5.7
    • \n
    \n

    7.1 (18th Feb, 2021)

    \n
      \n
    • Fixed Cross site scripting (XSS) issue
    • \n
    \n

    7.0 (8th Feb, 2021)

    \n
      \n
    • Confliction issue fixed with wordpress 5.6 version
    • \n
    • Fixed download backups links not works on some servers issue
    • \n
    • Fixed PHP warnings issue
    • \n
    • Add support to tiff extension images
    • \n
    \n

    6.9 (1st Sept, 2020)

    \n
      \n
    • Security issue fixed
    • \n
    \n

    6.8 (31st Aug, 2020)

    \n
      \n
    • Fixed design compatibility issues with wordpress 5.5 version
    • \n
    \n

    6.7 (20th Aug, 2020)

    \n
      \n
    • Fixed issue of deprecated function of jquery
    • \n
    • Updated messages text
    • \n
    \n

    6.6 (18th Aug, 2020)

    \n
      \n
    • Updated Translations
    • \n
    • Added media title to the uploaded file when Files Upload to Media Library is enabled
    • \n
    \n

    6.5 (18th Jun, 2020)

    \n
      \n
    • Security Fix
    • \n
    \n

    6.4 (25th May, 2020)

    \n
      \n
    • $ confliction fixes
    • \n
    \n

    6.3 (22nd May, 2020)

    \n
      \n
    • Files extract issues fixes
    • \n
    \n

    6.2 (15th May, 2020)

    \n
      \n
    • jQuery confliction fixes
    • \n
    \n

    6.1 (14th May, 2020)

    \n
      \n
    • Compatibility issues
    • \n
    \n

    6.0 (14th May, 2020)

    \n
      \n
    • Google doc preview feature added and Library Updates – Major Update
    • \n
    \n

    5.9 (13th APR, 2020)

    \n
      \n
    • Fixed Errors Deprecated Unparenthesized
    • \n
    \n

    5.8 (31st MARCH, 2020)

    \n
      \n
    • Tested with WordPress 5.4 version.
    • \n
    \n

    5.7 (23rd JAN, 2020)

    \n
      \n
    • Media library js fixes
    • \n
    \n

    5.6 (14th JAN, 2020)

    \n
      \n
    • Media library option fixes
    • \n
    \n

    5.5 (2nd DEC, 2019)

    \n
      \n
    • Unparenthesized issue fixes.
    • \n
    \n

    5.4 (16th AUGUST, 2019)

    \n
      \n
    • Minor fixes and added logs demo screenshots.
    • \n
    \n

    5.3 (20th AUGUST, 2019)

    \n
      \n
    • Rate us bar repetition removed.
    • \n
    \n

    5.2 (12th JULY, 2019)

    \n
      \n
    • Security fixes addressed by wordpress.
    • \n
    \n

    5.1 (11th JULY, 2019)

    \n
      \n
    • Security fixes.
    • \n
    \n

    5.0 (10th JULY, 2019)

    \n
      \n
    • Search outline issue fixed, Restore feature bugs fixes
    • \n
    \n

    4.9 (8th JULY, 2019)

    \n
      \n
    • Media library multiple file extensions allowed, backup feature admin authorized issue fixes
    • \n
    \n

    4.8 (13th MAY, 2019)

    \n
      \n
    • Minor fixes
    • \n
    \n

    4.7 (13th MAY, 2019)

    \n
      \n
    • Files and Database backup – restore feature added
    • \n
    \n

    4.6 (18th APR, 2019)

    \n
      \n
    • Elfinder Library Updated, Security Fixes
    • \n
    \n

    4.5 (17th APR, 2019)

    \n
      \n
    • PHP 7 issues fixes
    • \n
    \n

    4.4 (22nd FEB, 2019)

    \n
      \n
    • Extract issue fixed
    • \n
    \n

    4.3 (21st FEB, 2019)

    \n
      \n
    • Syntax checker feature removed for now
    • \n
    \n

    4.2 (21st FEB, 2019)

    \n
      \n
    • elFinder Library Updated
    • \n
    \n

    4.1 (21st JAN, 2019)

    \n
      \n
    • Syntax Error Feature Added
    • \n
    \n

    4.0 (10th JAN, 2019)

    \n
      \n
    • Http API fixes
    • \n
    \n

    3.9 (10th JAN, 2019)

    \n
      \n
    • CURL issue fixes
    • \n
    \n

    3.8 (20th DEC, 2018)

    \n
      \n
    • php 7.2 warnings fixes
    • \n
    \n

    3.7 (3rd DEC, 2018)

    \n
      \n
    • Header issue fixed
    • \n
    \n

    3.6 (3rd DEC, 2018)

    \n
      \n
    • Security Fixes
    • \n
    \n

    3.5 (3rd DEC, 2018)

    \n
      \n
    • Zip extract issue fixes
    • \n
    \n

    3.4 (30th Nov, 2018)

    \n
      \n
    • Minor Fixes
    • \n
    \n

    3.3 (30th Nov, 2018)

    \n
      \n
    • Library updated
    • \n
    \n

    3.2 (20th Oct, 2018)

    \n
      \n
    • CompaNovle with php 7.3 and wordpress 5.0
    • \n
    \n

    3.1 (17th Sep, 2018)

    \n
      \n
    • Security fixes and design fixes
    • \n
    \n

    3.0 (5th Sep, 2018)

    \n
      \n
    • Security issues fixed
    • \n
    \n

    2.9 (27th Aug ,2018)

    \n
      \n
    • \n

      Russian Translations added. Credit: @ivan192

      \n
    • \n
    • \n

      Code editor lines number added.

      \n
    • \n
    • \n

      Minimized window buttons collapsing issue fixed

      \n
    • \n
    \n

    2.8 (15th Jun ,2018)

    \n
      \n
    • minor Performence fix
    • \n
    \n

    2.7 (2th Jun ,2018)

    \n

    major Performence fix

    \n

    2.6 (18th May ,2018)

    \n
      \n
    • ‘/’ error Fix,major fix
    • \n
    \n

    2.5 (16th May ,2018)

    \n
      \n
    • Upload File issue Fix
    • \n
    \n

    2.4 (16th Apr ,2018)

    \n
      \n
    • On extract Invaild Backend issue
    • \n
    \n

    2.3 (16th Apr ,2018)

    \n
      \n
    • Extract Issue Resolved
    • \n
    \n

    2.2 (9th Apr ,2018)

    \n
      \n
    • PHP 7 Compatibility Issues Resolved
    • \n
    \n

    2.1 (26th March ,2018)

    \n
      \n
    • major design fixes
    • \n
    \n

    2.0 (1st March ,2018)

    \n
      \n
    • Edit Root Directory Path Feature – Major Update
    • \n
    \n

    1.9 (8th Jan ,2018)

    \n
      \n
    • fix Console en js missing error
    • \n
    • Now WP File Manager has various themes. – Major Update
    • \n
    \n

    1.8 (20th Sep ,2017)

    \n
      \n
    • fix some Bug in 1.7 – Minor Update
    • \n
    • Now WP File Manager is in various languages. – Major Update
    • \n
    • WP File Manager Translations Available. Compatible with any wordpress language. – Major Update
    • \n
    \n

    1.7 (18th Aug ,2017)

    \n
      \n
    • fix some Bug in 1.6 – Minor Update
    • \n
    • System Properties Menu – Added(New)
    • \n
    \n

    1.6 (20th Apr ,2017)

    \n
      \n
    • fix some Bug in 1.5 – Minor Update
    • \n
    \n

    1.5 (01th Mar ,2017)

    \n
      \n
    • fix some Bug in 1.4 – Major Update
    • \n
    \n

    1.4 (09th Jan ,2017)

    \n
      \n
    • fix some Bug in 1.3 – Major Update
    • \n
    • fix File edit auto slash add problem
    • \n
    \n

    1.3 (23th Nov ,2016)

    \n
      \n
    • fix some Bug in 1.2 – Minor Update
    • \n
    • fix max upload size problem
    • \n
    \n

    1.2 (17th Sep ,2016)

    \n
      \n
    • fix some Bug in 1.1 – Minor Update
    • \n
    • Compatible upto wordpress 4.6.1
    • \n
    \n

    1.1 (26th Aug ,2016)

    \n
      \n
    • fix some Bug in 1.0 – Minor Update
    • \n
    • Compatible upto wordpress 4.6
    • \n
    \n", "description": "

    File Manager allows you to edit, delete, upload, download, zip, copy and paste files and folders directly from the WordPress backend. Don’t bother with FTP to manage and move your files from location to location. The most powerful, flexible, and easiest WordPress file management solution ever built!

    \n

    \n

    Key Features in File Manager free Version Plugin

    \n

    Key Features in the Free File Manager plugin include:
    \n* Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete, etc.)
    \n* Move/Copy: Admin can Move/Copy files with Drag & Drop. Also includes multi file selection.
    \n* Archives: Admin can create, archive and extract files(zip, rar, tar, gzip).
    \n* File Size: Admin/User can upload any size files.
    \n* File Type: Control what files can be uploaded and what file can be downloaded.
    \n* Code Editor: File Manager comes with a built in integrated development environment (IDE) – New Feature
    \n* Syntax Checker: File Manager now can complete code reviews before saving files to ensure your site will not go down when updating code. Reviewing code for errors has never been so easy! – New Feature
    \n* Multiple Themes: Multiple File Manager Themes Available – New Feature
    \n* Get Info: All file details, properties, information is now available by simply right clicking a file and selecting Get Info – New Feature
    \n* Share Files by Email: With File Manager you can easily and quickly share files by Email. Simply right click a file and press share, that’s it! – New Feature
    \n* Private Folder: Available only for File Manager Pro Edition
    \n* Shortcode: Available only for File Manager Pro Edition
    \n* Root Directory: Quickly and easily edit your root path directory. With this feature you can access files inside and outside of WordPress
    \n* PDF Support: Preview PDF files easily
    \n* Built-in Trash: Delete files by moving them to trash
    \n* File View: Icon and list view both available for easy navigation
    \n* Preview Support: Easily preview common file types including media (video, audio, mp3, thumbnails, etc)
    \n* Search: Search functionality is built directly into File Manager making it simple to find your files.
    \n* Shortcut Support: Common shortcuts are available in File Manager
    \n* Automatic File Resize: automatically resize files once uploaded.
    \n* Responsive UI: File Manager works on tablet and mobile devices
    \n* Browsing History: File and folders browsing history
    \n* Trash function: Move to Trash Folder Feature
    \n* PDF Preview: PDF Preview feature available
    \n* FTP/SFTP Support: Alternative to FTP or Cpanel
    \n* File Preview: preview for common MIMEs and file types
    \n* Directory Size: Calculate directory size
    \n* Icon View: List and Icons view available for files and files
    \n* Keyboard shortcuts: Keyboard shortcuts available e.g. copy,paste,drag & drop
    \n* Drag and drop: File Drag & Drop file upload function available
    \n* Functions Toolbar: Rich context menu and file manager functions toolbar
    \n* Thumbnails: Thumbnails for all types of image files
    \n* Upload to Media Library: We have now included the ability to enable images, pdf’s, and zip files to be uploaded to you folders and as well be available via the native WordPress Media Library
    \n* Backup/Restore: Backup and restore themes files, plugins files,uploads folder and db data on server.
    \n* Multi Languages Added

    \n

    Key Features in File Manager Pro Editions

    \n
      \n
    • File Type: Control what files can be uploaded and what file can be downloaded.**
    • \n
    • Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete etc.)
    • \n
    • Shortcode: Available with custom attributes for frontend.
    • \n
    • Private Folder: Admin can give access of same and different folder to different users roles and different users.
    • \n
    • Move/Copy: Admin can Move/Copy files with Drag & Drop.
    • \n
    • Archives: Admin can create/extract files(zip, rar, tar, gzip).
    • \n
    • File Size: Admin/User can control file upload size.
    • \n
    • Fullscreen View: Admin can control code editor fullscreen view.
    • \n
    • Editor: There are a lots of themes available for code editor. Admin can control code editor themes.
    • \n
    • Hide Files/Folder: Here admin is able to hide files and folders for user roles and for users.
    • \n
    • File Type: Control what files can be uploaded and what file can be downloaded.
    • \n
    • User Role: admin is able to control file operations and hide and lock Files and Folders for user roles .
    • \n
    • Users: admin is able to control file operations and hide and lock Files and Folders for particular user .
    • \n
    • High performance: High performance server backend and light client UI.
    • \n
    • File system: Local file system storage drivers.
    • \n
    • Edit file: User can edit text files and images.
    • \n
    • Frontend Access: User can access frontend using shortcode.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is updated.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is Downloaded.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is Edited.
    • \n
    • Google Drive Integration drag drop, copy paste all other operations between file manager and google drive.
    • \n
    • Dropbox Integration drag drop, copy paste all other operations between file manager and dropbox.
    • \n
    \n
    \n

    Buy Pro Version with various features & support.
    \n Contact us for Support Only Pro Version Users.
    \n Documentation Click Here.
    \n Addons with various features & support.
    \n Upgrade to Pro Version

    \n
    \n

    Premium Addons

    \n

    File Manager Cloudflare R2 provides you ability to edit, delete, upload, download, copy and paste files and folders in Cloudflare R2 bucket.
    \nFile Manager Digital Ocean provides you ability to edit, delete, upload, download, copy and paste files and folders in Digital Ocean.
    \nFile Manager Google Drive provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Drive.
    \nFile Manager OneDrive provides you ability to edit, delete, upload, download, copy and paste files and folders in OneDrive from File Manager.
    \nFile Manager Dropbox provides you ability to edit, delete, upload, download, copy and paste files and folders in dropbox.
    \nFile Manager Box provides you ability to edit, delete, upload, download, copy and paste files and folders in Box.
    \nFile Manager AWS S3 provides you ability to edit, delete, upload, download, copy and paste files and folders in AWS S3 bucket.
    \nFile Manager Git Github integration for file manager.
    \nFile Manager Slack Slack incoming webhook integration to file manager.
    \nFile Manager Google Cloud provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Cloud bucket.

    \n

    Support

    \n
      \n
    • If any problem occurs, please contact us at https://filemanagerpro.io/contact/
    • \n
    \n

    How to use

    \n
      \n
    1. First Activate Plugin.
    2. \n
    3. Then Click on ” WP File Manager ” menu. Then do with files what you want to do.= Minimum requirements for File Manager =
    4. \n
    \n

    * WordPress 3.3+
    \n* PHP 5.x
    \n* MySQL 5.x

    \n

    If any problem occurs, please contact us at https://filemanagerpro.io/contact/

    \n", "screenshots": "
    1. \"File

      File Manager File View Screen.

    2. \"Make

      Make a folder or file archive as zip.

    3. \"Download

      Download archived zip file.

    4. \"PRO:

      PRO: In File Manager Pro version user is able to give accessibility to user roles by just one click and Control File upload size.

    5. \"PRO:

      PRO: In File manager pro version admin is able to control file operations for user roles and also hide any file and folder. Admin also lock any file to prevent from edit.

    6. \"PRO:

      PRO: In File manager pro version admin is able to control file operations for particular user and also hide any file and folder. Admin also lock any file to prevent from edit.

    7. \"PRO:

      PRO: Admin can control code editor fullscreen view & code editor themes.

    8. \"PRO:

      PRO: Code editor fullscreen view with selected theme.

    9. \"PRO:

      PRO: Private Folder Access

    10. \"File

      File Manager with Multiple Languages

    11. \"File

      File Manager with Multiple Themes - Light Theme

    12. \"Dark

      Dark Theme View

    13. \"Grey

      Grey Theme View

    14. \"Window

      Window 10 Theme View

    15. \"Edit

      Edit Root Directory Path

    ", "installation": "
      \n
    1. Upload the wp-file-manager folder to the directory /wp-content/plugins/.
    2. \n
    3. Activate the plugin using the ‘Plugins’ menu in WordPress.
    4. \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/wp-file-manager.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/wp-file-manager.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/wp-file-manager.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/wp-file-manager.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/wp-file-manager.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/wp-file-manager.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/wp-file-manager.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/wp-file-manager.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/wp-file-manager.1.8.zip", "5.9": "https://downloads.wordpress.org/plugin/wp-file-manager.5.9.zip", "6.0": "https://downloads.wordpress.org/plugin/wp-file-manager.6.0.zip"}, "downloaded": 30440382, "description": "

    File Manager allows you to edit, delete, upload, download, zip, copy and paste files and folders directly from the WordPress backend. Don’t bother with FTP to manage and move your files from location to location. The most powerful, flexible, and easiest WordPress file management solution ever built!

    \n

    \n

    Key Features in File Manager free Version Plugin

    \n

    Key Features in the Free File Manager plugin include:
    \n* Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete, etc.)
    \n* Move/Copy: Admin can Move/Copy files with Drag & Drop. Also includes multi file selection.
    \n* Archives: Admin can create, archive and extract files(zip, rar, tar, gzip).
    \n* File Size: Admin/User can upload any size files.
    \n* File Type: Control what files can be uploaded and what file can be downloaded.
    \n* Code Editor: File Manager comes with a built in integrated development environment (IDE) – New Feature
    \n* Syntax Checker: File Manager now can complete code reviews before saving files to ensure your site will not go down when updating code. Reviewing code for errors has never been so easy! – New Feature
    \n* Multiple Themes: Multiple File Manager Themes Available – New Feature
    \n* Get Info: All file details, properties, information is now available by simply right clicking a file and selecting Get Info – New Feature
    \n* Share Files by Email: With File Manager you can easily and quickly share files by Email. Simply right click a file and press share, that’s it! – New Feature
    \n* Private Folder: Available only for File Manager Pro Edition
    \n* Shortcode: Available only for File Manager Pro Edition
    \n* Root Directory: Quickly and easily edit your root path directory. With this feature you can access files inside and outside of WordPress
    \n* PDF Support: Preview PDF files easily
    \n* Built-in Trash: Delete files by moving them to trash
    \n* File View: Icon and list view both available for easy navigation
    \n* Preview Support: Easily preview common file types including media (video, audio, mp3, thumbnails, etc)
    \n* Search: Search functionality is built directly into File Manager making it simple to find your files.
    \n* Shortcut Support: Common shortcuts are available in File Manager
    \n* Automatic File Resize: automatically resize files once uploaded.
    \n* Responsive UI: File Manager works on tablet and mobile devices
    \n* Browsing History: File and folders browsing history
    \n* Trash function: Move to Trash Folder Feature
    \n* PDF Preview: PDF Preview feature available
    \n* FTP/SFTP Support: Alternative to FTP or Cpanel
    \n* File Preview: preview for common MIMEs and file types
    \n* Directory Size: Calculate directory size
    \n* Icon View: List and Icons view available for files and files
    \n* Keyboard shortcuts: Keyboard shortcuts available e.g. copy,paste,drag & drop
    \n* Drag and drop: File Drag & Drop file upload function available
    \n* Functions Toolbar: Rich context menu and file manager functions toolbar
    \n* Thumbnails: Thumbnails for all types of image files
    \n* Upload to Media Library: We have now included the ability to enable images, pdf’s, and zip files to be uploaded to you folders and as well be available via the native WordPress Media Library
    \n* Backup/Restore: Backup and restore themes files, plugins files,uploads folder and db data on server.
    \n* Multi Languages Added

    \n

    Key Features in File Manager Pro Editions

    \n
      \n
    • File Type: Control what files can be uploaded and what file can be downloaded.**
    • \n
    • Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete etc.)
    • \n
    • Shortcode: Available with custom attributes for frontend.
    • \n
    • Private Folder: Admin can give access of same and different folder to different users roles and different users.
    • \n
    • Move/Copy: Admin can Move/Copy files with Drag & Drop.
    • \n
    • Archives: Admin can create/extract files(zip, rar, tar, gzip).
    • \n
    • File Size: Admin/User can control file upload size.
    • \n
    • Fullscreen View: Admin can control code editor fullscreen view.
    • \n
    • Editor: There are a lots of themes available for code editor. Admin can control code editor themes.
    • \n
    • Hide Files/Folder: Here admin is able to hide files and folders for user roles and for users.
    • \n
    • File Type: Control what files can be uploaded and what file can be downloaded.
    • \n
    • User Role: admin is able to control file operations and hide and lock Files and Folders for user roles .
    • \n
    • Users: admin is able to control file operations and hide and lock Files and Folders for particular user .
    • \n
    • High performance: High performance server backend and light client UI.
    • \n
    • File system: Local file system storage drivers.
    • \n
    • Edit file: User can edit text files and images.
    • \n
    • Frontend Access: User can access frontend using shortcode.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is updated.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is Downloaded.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is Edited.
    • \n
    • Google Drive Integration drag drop, copy paste all other operations between file manager and google drive.
    • \n
    • Dropbox Integration drag drop, copy paste all other operations between file manager and dropbox.
    • \n
    \n
    \n

    Buy Pro Version with various features & support.
    \n Contact us for Support Only Pro Version Users.
    \n Documentation Click Here.
    \n Addons with various features & support.
    \n Upgrade to Pro Version

    \n
    \n

    Premium Addons

    \n

    File Manager Cloudflare R2 provides you ability to edit, delete, upload, download, copy and paste files and folders in Cloudflare R2 bucket.
    \nFile Manager Digital Ocean provides you ability to edit, delete, upload, download, copy and paste files and folders in Digital Ocean.
    \nFile Manager Google Drive provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Drive.
    \nFile Manager OneDrive provides you ability to edit, delete, upload, download, copy and paste files and folders in OneDrive from File Manager.
    \nFile Manager Dropbox provides you ability to edit, delete, upload, download, copy and paste files and folders in dropbox.
    \nFile Manager Box provides you ability to edit, delete, upload, download, copy and paste files and folders in Box.
    \nFile Manager AWS S3 provides you ability to edit, delete, upload, download, copy and paste files and folders in AWS S3 bucket.
    \nFile Manager Git Github integration for file manager.
    \nFile Manager Slack Slack incoming webhook integration to file manager.
    \nFile Manager Google Cloud provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Cloud bucket.

    \n

    Support

    \n
      \n
    • If any problem occurs, please contact us at https://filemanagerpro.io/contact/
    • \n
    \n

    How to use

    \n
      \n
    1. First Activate Plugin.
    2. \n
    3. Then Click on ” WP File Manager ” menu. Then do with files what you want to do.= Minimum requirements for File Manager =
    4. \n
    \n

    * WordPress 3.3+
    \n* PHP 5.x
    \n* MySQL 5.x

    \n

    If any problem occurs, please contact us at https://filemanagerpro.io/contact/

    \n", "donate_link": "", "num_ratings": 1428, "screenshots": {"1": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-1.png?rev=1470488", "caption": "File Manager File View Screen."}, "2": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-2.jpg?rev=1470488", "caption": "Make a folder or file archive as zip."}, "3": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-3.jpg?rev=1470488", "caption": "Download archived zip file."}, "4": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-4.jpg?rev=1626459", "caption": "PRO: In File Manager Pro version user is able to give accessibility to user roles by just one click and Control File upload size."}, "5": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-5.jpg?rev=1585022", "caption": "PRO: In File manager pro version admin is able to control file operations for user roles and also hide any file and folder. Admin also lock any file to prevent from edit."}, "6": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-6.jpg?rev=1585022", "caption": "PRO: In File manager pro version admin is able to control file operations for particular user and also hide any file and folder. Admin also lock any file to prevent from edit."}, "7": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-7.jpg?rev=1585022", "caption": "PRO: Admin can control code editor fullscreen view & code editor themes."}, "8": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-8.jpg?rev=1483891", "caption": "PRO: Code editor fullscreen view with selected theme."}, "9": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-9.jpg?rev=1497902", "caption": "PRO: Private Folder Access"}, "10": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-10.jpg?rev=1799430", "caption": "File Manager with Multiple Languages"}, "11": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-11.jpg?rev=1799430", "caption": "File Manager with Multiple Themes - Light Theme"}, "12": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-12.jpg?rev=1799430", "caption": "Dark Theme View"}, "13": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-13.jpg?rev=1799430", "caption": "Grey Theme View"}, "14": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-14.jpg?rev=1799430", "caption": "Window 10 Theme View"}, "15": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-15.jpg?rev=1831243", "caption": "Edit Root Directory Path"}}, "support_url": "https://wordpress.org/support/plugin/wp-file-manager/", "contributors": {"mndpsingh287": {"avatar": "https://secure.gravatar.com/avatar/f45d3518db13edc49526efa590ebce2f3f53a6461ef2000a5d3f7197daf7cf9e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mndpsingh287/", "display_name": "mndpsingh287"}}, "last_updated": "2025-06-04 11:21am GMT", "preview_link": "", "requires_php": "5.2.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-file-manager.zip", "author_profile": "https://profiles.wordpress.org/mndpsingh287/", "business_model": false, "repository_url": "", "upgrade_notice": {"Upgrade your old version to 3.2": ""}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fe59-73e1-996b-a0a086ced33e", "name": "File Manager", "slug": "wp-file-manager", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1749036060, "version": "8.0.2"}, "support_threads": 5, "requires_plugins": [], "short_description": "file manager provides you ability to edit, delete, upload, download, copy and paste files and folders.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 1}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1f27-71b2-bf8c-93849122b7db', 'did:web:api.aspiredev.org:packages:wp-plugin:wpforms-lite', 'wpforms-lite', 'WPForms – Easy Form Builder for WordPress – Contact Forms, Payment Forms, Surveys, & More', '

    WordPress Contact Form Builder Plugin

    -

    WPForms is a drag & drop WordPress form builder that’s EASY and POWERFUL. Create contact forms, feedback forms, subscription forms, payment forms (including Stripe, Square & PayPal), and other types of forms for your site in minutes with just a few clicks!

    -

    At WPForms, user experience is our #1 priority. Our pre-built form templates and workflows make WPForms the most beginner-friendly contact form plugin on the market. You don’t have to hire a developer. Create a form in less than 5 minutes with our drag & drop form builder or use a template to get a head start.

    -
    -

    WPForms Pro
    - This plugin is the Lite version of WPForms Pro, which comes with email subscription forms, multi-page contact forms, file uploads, conditional logic, and extra payment integrations. Click here to purchase the best premium WordPress contact form plugin now!

    -
    -

    -

    Drag & Drop Contact Form Builder

    -

    Create custom contact forms in minutes with our easy-to-use drag and drop online form builder. But don’t just take our word for it. See what WordPress experts are saying:

    -
    -

    WPForms is by far the easiest form plugin to use. My clients love WPForms and it’s one of the few plugins they can use without any training. As a developer I appreciate how fast, modern, clean and extensible it is.
    - Bill Erickson – Expert WordPress Consultant

    -
    -

    Pre-built Form Templates

    -

    WPForms comes with 2000+ pre-built form templates.

    -

    Whether you’re looking to create a simple contact form, marketing form, request a quote form, donation form, payment order form, registration form, Stripe payment form, or a subscription form, we have a form template already prepared and ready to use.

    -

    Mobile Ready, SEO Friendly, and Optimized for Speed

    -

    WPForms contact forms are 100% responsive and mobile-friendly. We optimized every query on the frontend and the backend to ensure that it’s one of the fastest WordPress contact form plugins.

    -

    You can embed your contact form on any page with an optimized title and description, so WPForms is one of the most SEO friendly contact form plugins too.

    -

    Fields & Features You Need to Succeed

    -

    With star ratings, file uploads, repeater fields, survey fields, and multi-page contact forms, you can easily build the right custom form for your site’s needs. Plus, integrate your contact forms with an email marketing service in just a few steps and collect payments with Stripe, PayPal, and Square for bookings and orders without the need for a dedicated eCommerce plugin.

    -

    See what one business owner has to say about their WPForms contact form:

    -
    -

    As a business owner, time is my most valuable asset. WPForms allows me to create smart contact forms with just a few clicks. With their pre-built form templates and the drag & drop builder, I can create a new form that works in less than 2 minutes without writing a single line of code. Well worth the investment.
    - David Henzel – Co-founder of MaxCDN

    -
    -

    Surveys & Polls

    -

    Create custom survey forms like Survey Monkey. Our WordPress survey plugin addon comes with smart survey fields including Likert scale, star ratings, and NPS. Embed your surveys and polls anywhere in WordPress.

    -

    Use our survey reporting tools to customize graphs, export them for presentations, and display aggregate results. You can also share poll results instantly when collecting votes.

    -

    Default WordPress Forms

    -

    Aside from building simple contact forms, WPForms also helps you create better default WordPress forms, like custom WordPress login forms and custom WordPress user registration forms. Create a password-protected contact form or even a members-only contact form.

    -

    Bloggers and publishers can use our WordPress post submission forms to accept guest posts, testimonials, and more.

    -

    Payment Forms, Donation Forms, Booking Forms, and More

    -

    While WPForms started out as a contact form plugin, it has evolved into a powerful custom forms solution for any type of payment or booking form.

    -

    WPForms integrates with PayPal, Stripe, Square Payments, and Authorize.Net so you can easily accept credit card payments or take payments via PayPal. Bonus: you can also take signatures.

    -

    We’re proud to be a Stripe Verified Partner. This partnership allows us to build the best Stripe integration with early access to features. You can use our Stripe integration to accept both one-time payments as well as recurring payments while syncing all form data to your Stripe account.

    -

    Custom Calculator Forms

    -

    Using the WPForms Calculations addon, you can build custom formulas and display results on the frontend.

    -

    Create simple arithmetic calculations or build complex conditional calculations with rounded values, averages, time ranges, and more! It’s the best calculator plugin for WordPress.

    -

    Forms Optimized for Conversions

    -

    With our Form Pages addon, you can create distraction-free custom form landing pages to increase conversions.

    -

    To improve form completion rates, we created Conversational Forms which helps you make your feedback forms feel more human by adding an interactive layout. (See Conversational Forms Demo).

    -

    Easy to Customize and Extend

    -

    You can easily customize your contact forms with our section dividers, HTML blocks, and CSS. Embedding forms in Elementor and Divi has never been easier thanks to our native integrations.

    -

    We also know that our developer friends may want more control, so we added tons of hooks and filters.

    -

    Full WPForms Feature List

    - -

    Integrations

    - -

    You can see why WPForms is the best WordPress contact form plugin on the market! Want to unlock these features? Upgrade to our Pro version.

    -

    Credits

    -

    This plugin is created by Jared Atchison and Syed Balkhi.

    -

    Branding Guidelines

    -

    WPForms® is a registered trademark of WPForms LLC. When writing about the contact form plugin by WPForms, please make sure to uppercase the initial 3 letters.

    -
      -
    • WPForms (correct)
    • -
    • WP Forms (incorrect)
    • -
    • wpforms (incorrect)
    • -
    • wpform (incorrect)
    • -
    -

    Notes

    -

    WPForms is absolutely, positively the most beginner-friendly WordPress contact form plugin on the market. It is both easy and powerful.

    -

    We took the pain out of creating online forms and made it easy. Check out all WPForms features.

    -

    Also, I’m the founder of WPBeginner, the largest WordPress resource site for beginners. It was a huge priority for me to make a WordPress contact form plugin that beginners can use without any training.

    -

    I feel that we have done that here. I hope you enjoy using WPForms.

    -

    Thank you,

    -

    Syed Balkhi

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WPForms – Easy Form Builder for WordPress – Contact Forms, Payment Forms, Surveys, & More", "slug": "wpforms-lite", "tags": {"forms": "forms", "custom-form": "custom form", "contact-form": "contact form", "form-builder": "form builder", "contact-form-plugin": "contact form plugin"}, "added": "2016-03-14", "icons": {"1x": "https://ps.w.org/wpforms-lite/assets/icon.svg?rev=3254748", "svg": "https://ps.w.org/wpforms-lite/assets/icon.svg?rev=3254748"}, "author": "Syed Balkhi", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=3091364", "high": "https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=3091364"}, "ratings": {"1": 358, "2": 76, "3": 101, "4": 302, "5": 13379}, "version": "1.9.8.2", "homepage": "https://wpforms.com", "requires": "5.5", "sections": {"faq": "\n
    \nWho should use WPForms?\n\n

    \n

    WPForms is perfect for business owners, bloggers, designers, developers, photographers, and basically everyone else. If you want to create a custom WordPress form, then you need to use the WPForms drag & drop form builder.

    \n

    \n
    \nDo I need to have coding skills to use WPForms?\n\n

    \n

    Absolutely not. You can create and manage forms without any coding knowledge (100% drag & drop form builder). WPForms is the most beginner-friendly contact form plugin on the market.

    \n

    \n
    \nWhat type of WordPress forms can I build with WPForms?\n\n

    \n

    WPForms drag & drop form builder combined with our addons is the most powerful WordPress contact form plugin on the market. Here are some types of WordPress forms you can create:

    \n
      \n
    • Simple Contact Forms
    • \n
    • Job Application Contact Form
    • \n
    • Feedback Survey Contact Form
    • \n
    • Make a Suggestion Contact Form
    • \n
    • Change Request Forms
    • \n
    • Online Booking Forms
    • \n
    • Event Booking Form
    • \n
    • Video Release Forms
    • \n
    • PTO Request Contact Form
    • \n
    • Maintenance Request Contact Form
    • \n
    • Scholarship Application Forms
    • \n
    • File Download Forms
    • \n
    • Employment Verification Forms
    • \n
    • Make a Referral Contact Form
    • \n
    • Volunteer Registration Contact Form
    • \n
    • Offline Contact Form
    • \n
    \n

    To see a full list, visit our Form Template Gallery, which has over 2000+ pre-made contact form templates.

    \n

    \n
    \nWhich Form Fields Does WPForms offer?\n\n

    \n

    We made the WPForms form builder to be both easy and powerful.

    \n

    Here are the contact form fields that come with WPForms Form Builder (also known as Standard Fields):

    \n
      \n
    • Text Field
    • \n
    • Paragraph Text (Textarea)
    • \n
    • Dropdown Field
    • \n
    • Multiple Choice (Radio Buttons)
    • \n
    • Checkboxes
    • \n
    • Numbers Field
    • \n
    • Name Field
    • \n
    • Email Address Field
    • \n
    • Number Slider Field
    • \n
    \n

    Here is a list of our advanced contact form builder fields (Fancy Fields):

    \n
      \n
    • Smart Phone Field with international format verification
    • \n
    • Address Field
    • \n
    • Date / Time Field
    • \n
    • Website / URL Field
    • \n
    • File Upload – Great for File Upload Form
    • \n
    • Password Field
    • \n
    • Rich Text – Add a WYSIWYG field, perfect for guest blog post forms
    • \n
    • Layout Field – Position form fields inside columns using custom or premade layouts
    • \n
    • Repeater Field – Allow users to duplicate fields or groups of fields in your forms
    • \n
    • Page Break Field – Great for Multi-Page Contact Form with Progress Bar
    • \n
    • Section Divider – Great for Long Contact Forms
    • \n
    • HTML Field – add Custom HTML inside your form
    • \n
    • Content Field – Add headings, lists, and media to your forms without writing code
    • \n
    • Entry Preview – Allow your form users to preview their form entries before they’ve submitted them
    • \n
    • Star Rating – Great for Survey Forms and Polls
    • \n
    • Hidden Field
    • \n
    • Questions CAPTCHA – Great for Preventing Contact Form Spam
    • \n
    • Math CAPTCHA – Great for Preventing Contact Form Spam
    • \n
    • Likert Scale – Great for Survey Forms
    • \n
    • hCAPTCHA – Great for Preventing Contact Form Spam
    • \n
    • Cloudflare Turnstile – Great for Preventing Contact Form Spam
    • \n
    • Signature Field – Great for Contracts and Booking Forms
    • \n
    • Net Promoter Score (NPS Field) – Great for Survey Forms
    • \n
    • Google ReCAPTCHA – Great for Preventing Contact Form Spam
    • \n
    \n

    Here is a list of our Payment Fields that will help you create an order form, donation form, booking form, and other payment forms:

    \n
      \n
    • Single Item
    • \n
    • Multiple Items
    • \n
    • Checkbox Items
    • \n
    • Dropdown Items
    • \n
    • Total (Calculation Field)
    • \n
    • Credit Card (Stripe, Square, and Authorize.Net)
    • \n
    • PayPal
    • \n
    \n

    \n
    \nCan I integrate WPForms with my CRM or Email Marketing Service?\n\n

    \n

    Yes, WPForms offers seamless integration with over 1,000+ popular email marketing and CRM software.

    \n

    You can easily send data from your contact form and other WordPress forms to your favorite CRM, email newsletter, and other marketing platforms.

    \n

    Here is a list of our popular marketing integrations:

    \n
      \n
    • Mailchimp
    • \n
    • Constant Contact
    • \n
    • AWeber
    • \n
    • Drip
    • \n
    • Campaign Monitor
    • \n
    • GetResponse
    • \n
    • ActiveCampaign
    • \n
    • Zapier
    • \n
    • Salesforce CRM
    • \n
    • Brevo (ex Sendinblue)
    • \n
    • MailerLite
    • \n
    • MailPoet
    • \n
    \n

    Using our Zapier integration, you can easily connect WPForms with over 7,000+ marketing apps including:

    \n
      \n
    • PipeDrive CRM
    • \n
    • Google Sheets
    • \n
    • Active Campaign
    • \n
    • Zoho CRM
    • \n
    • Zoho Mail
    • \n
    • Zoho Invoice
    • \n
    • Agile CRM
    • \n
    • Slack
    • \n
    • Trello
    • \n
    • Infusionsoft by Keap
    • \n
    • Microsoft Excel
    • \n
    • Dropbox
    • \n
    • HelpScout
    • \n
    • Zendesk
    • \n
    • Freshbooks
    • \n
    • Freshsales
    • \n
    • Intercom
    • \n
    • Click Funnels
    • \n
    • Microsoft Dynamics 365 CRM
    • \n
    • Capsule CRM
    • \n
    • Insightly CRM
    • \n
    • Printfection
    • \n
    • Acuity Scheduling
    • \n
    • Quickbooks Online
    • \n
    \n

    See all WPForms Zapier Integrations.

    \n

    Note: WPForms was voted Zapier’s 6th fastest-growing app in the world.

    \n

    \n
    \nCan I create a Payment Form with WPForms?\n\n

    \n

    Yes, WPForms is not your average contact form plugin. You can use it to create any type of form including payment forms.

    \n

    We make it easy for you to accept payments using Stripe, Square, Authorize.Net, and PayPal Commerce.

    \n

    Both our Stripe and Authorize.Net integrations help you easily accept credit card payments online.

    \n

    Our PayPal integration allows you to accept PayPal payments online.

    \n

    \n
    \nCan I Import / Export Forms with WPForms?\n\n

    \n

    Yes, WPForms makes it easy to import / export your contact forms and other WordPress forms created with the WPForms form builder. This is incredibly useful for developers and agencies who are building websites for clients.

    \n

    You can also create custom form templates that you can use on client websites. For more see our documentation.

    \n

    Aside from that, WPForms also allows you to import forms from other WordPress Contact Form plugins such as Contact Form 7, Ninja Forms, and Pirate Forms.

    \n

    If you’re not happy with your WordPress contact form plugin, then definitely give WPForms a try!

    \n

    \n
    \nI’d like access to all features. How can I get them?\n\n

    \n

    You can get access to more features, addons, and support by upgrading to our Pro version. Purchasing a Pro license gets you access to the full version of WPForms, automatic updates, priority support, and all WPForms Addons!

    \n

    \n
    \nIs WPForms translation ready?\n\n

    \n

    Yes, WPForms has full translation and localization support via the wpforms textdomain. Based on your site language, required .mo and .po translation files will be downloaded and placed into the default WordPress languages directory. The same is true for every WPForms Addon, as well.

    \n

    \n
    \nDoes WPForms include spam protection?\n\n

    \n

    Yes, WPForms includes spam protection which is enabled on all forms by default in the form settings.

    \n

    Additionally, Google reCAPTCHA, hCaptcha, and Cloudflare Turnstile are also supported and can be set up at WPForms > Settings > CAPTCHA.

    \n

    WPForms is fully compatible with all versions of Google reCAPTCHA:

    \n
      \n
    • Checkbox reCAPTCHA v2
    • \n
    • Invisible reCAPTCHA v2
    • \n
    • reCAPTCHA v3
    • \n
    \n

    Lastly, Custom Captchas are available which allow you to create math- or question-based CAPTCHAs for your contact forms.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent Plugin and Outstanding Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ouwens on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been using WPForms for a while now, and it’s been an absolute pleasure. The plugin is very intuitive, easy to set up, and works flawlessly for my needs. What really impressed me, though, was the amazing support. Even though I’m using the free version, the team went above and beyond to help me quickly and professionally.

    \n\n\n\n

    It’s rare to see such dedication to users who aren’t on a paid plan — that really says a lot about the company and their values. Highly recommended to anyone looking for a reliable and user-friendly form solution for WordPress!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    easy to use! favourite one :)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy antonioevangelisti on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    nothing to say than 5 stars

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect tool for any WP Dev !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy robotob78 on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Free contact form should have editable look.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Belle Extension

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hexactementgmailcom on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Je trouve cette extension vraiment très utile, elle est belle et bien faite. Merci

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy abuhumhum on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    That is great to work together

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wonderfully Easy & Elegant

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sabya85 on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have used this plugin and it appealed to me instantly. It''s quite neat and elegant and suits the basic necessity for new bloggers.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Just Perfect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jim Tzimas (kernelion) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best choice for my site’s contacts forms. I installed it and it did the trick. Deeply impressed!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Product 5 STARS

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy slikr on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WPForms does just what I need it to do, it saved the day!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wpforms

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy John Pezza (johnpezza) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was thrilled to discover this great plug-in. My site''s contacts form was needing some sort of enhancement. I installed the lite version and it did the trick. The tutorials I found on the web made me realize what the Pro version can do. Deeply impressed!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy&powerful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alaramark on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy&powerful

    \n
    \n
    \n", "changelog": "

    1.9.8.2

    \n
      \n
    • Fixed: Form Builder preview container height with empty state.
    • \n
    \n

    1.9.8.1

    \n
      \n
    • Added: Ability to disconnect Stripe accounts through the Settings > Payments admin page.
    • \n
    • Added: Ability to set how many times a Stripe recurring payment will be repeated.
    • \n
    • Added: Back To Previous Page option for Confirmation Page Redirect.
    • \n
    • Changed: Improved accessibility for the Modern Dropdown field by adding ARIA attributes to support VoiceOver navigation.
    • \n
    • Changed: Notification email fields in the Form Builder now only display email-compatible Smart Tags.
    • \n
    • Fixed: PHP warnings might be generated for new forms created from a template by non-admin users.
    • \n
    • Fixed: Disabled fields (read-only) didn’t look disabled.
    • \n
    • Fixed: Smart Tag fields in the sidebar had incorrect height.
    • \n
    • Fixed: The last step of the WPForms Challenge wasn’t shown up for users in some cases.
    • \n
    • Fixed: Header Menu Links position has been adjusted to be on the same level on every screen.
    • \n
    • Fixed: Duplicated Square field button existed in the Form Builder.
    • \n
    • Fixed: Form authors with no capabilities to install addons did not get information about missing privileges.
    • \n
    • Fixed: HTMLPurifier threw a deprecated API call notice.
    • \n
    • Fixed: Users with no sufficient access permissions were able to display a broken Themes settings panel.
    • \n
    • Fixed: Custom CSS with quotes in selectors now displays correctly instead of showing broken HTML entities.
    • \n
    • Fixed: Pinned AI Chat layout in the Form Builder.
    • \n
    • Fixed: Log titles having apostrophes in them were not displayed correctly in the Log Viewer.
    • \n
    • Fixed: There might be errors when processing Stripe payments with customer metadata containing empty keys.
    • \n
    \n

    1.9.7.2

    \n
      \n
    • Fixed: JS errors might affect the form submission on some environments with installed plugins for caching.
    • \n
    \n

    1.9.7.1

    \n
      \n
    • Added: Ability to apply Styles and Themes directly within the WPForms Form Builder.
    • \n
    • Added: Ability to copy whole Smart Tags input content if it contains smart tags.
    • \n
    • Added: Number field validation messages control on the Settings > Validation page.
    • \n
    • Added: The Choices Limit option for the Payment Checkbox Items field.
    • \n
    • Added: Warning message in case corrupted form data is detected in the form builder.
    • \n
    • Changed: Optimized the calculation process of the total amount on payment forms.
    • \n
    • Changed: Improved compatibility with PHP 8.4.
    • \n
    • Changed: Improved error message in case 403 error occurred while saving a form.
    • \n
    • Changed: Improved compatibility with the Paid Memberships Pro plugin.
    • \n
    • Fixed: The spacing between the template badge and the form name was too small.
    • \n
    • Fixed: Square Credit Card field error was still displayed after entering valid details.
    • \n
    • Fixed: Various RTL problems on the form builder screen.
    • \n
    \n

    1.9.6.2

    \n
      \n
    • Fixed: “Please enable JavaScript” message was displayed over a form even when JavaScript was enabled.
    • \n
    \n

    1.9.6.1

    \n
      \n
    • Added: Smart Tags support in the Default Value setting for Name field subfields.
    • \n
    • Fixed: WPForms updates did not work consistently with the WP Umbrella plugin.
    • \n
    • Fixed: The layout of the Order Summary table was broken on Windows operating systems.
    • \n
    • Fixed: The layout of the Stripe custom fields mapping table was broken in the form builder.
    • \n
    \n

    1.9.6

    \n
      \n
    • Added: Form Themes for Elementor.
    • \n
    • Added: Customer phone, Payment, and Customer metadata can now be configured on the Form Builder > Payments > Stripe screen.
    • \n
    • Changed: Improved styles on Tools > Scheduled Actions page with reset search filter.
    • \n
    • Changed: Improved Form Builder loading.
    • \n
    • Changed: Required select fields have default placeholder text to prevent the submission of default values.
    • \n
    • Changed: Improved message about missing PHP extensions.
    • \n
    • Changed: Updated DOMPurify library to 3.2.6.
    • \n
    • Fixed: Captcha verification was skipped for payment forms.
    • \n
    • Fixed: Email notification was malformed when a form had a Total field with the “Order Summary” enabled.
    • \n
    • Fixed: The marketing provider’s name was not specified in the warning popup when a field with conditional logic was removed.
    • \n
    • Fixed: An error occurred when installing a plugin through the Gutenberg block.
    • \n
    • Fixed: Addon fields were not rendered on the front-end on multisite if addons were not activated site-wide.
    • \n
    • Fixed: Missing popup about unsaved changes when closing the form from the Marketing tab.
    • \n
    • Fixed: Compatibility with Elementor editor.
    • \n
    • Fixed: The “Plugin is in the Latest Version” error occurred when updating several addons using bulk update on the Plugins page.
    • \n
    • Fixed: There was no popup about unsaved changes displayed after typing into the MCE editor.
    • \n
    • Fixed: Layout issues of the Square credit card field.
    • \n
    • Fixed: JavaScript error occurred when a form was added in the Elementor popup.
    • \n
    • Fixed: Fields were added to the form in the wrong order under some conditions.
    • \n
    \n

    1.9.5.2

    \n
      \n
    • Fixed: Issue sending form notifications using email fields that had ID=0.
    • \n
    \n

    1.9.5.1

    \n
      \n
    • Fixed: AJAX request for Stripe payments was sent twice, which might lead to missed entries and payment records.
    • \n
    • Fixed: {field_id=\"#\"} smart tag didn’t work for CC field in email notifications.
    • \n
    • Fixed: Email notification was misformatted when the form had a Total field with the “Order Summary” enabled.
    • \n
    \n

    1.9.5

    \n
      \n
    • IMPORTANT: Support for PHP 7.1 has been discontinued. If you are running PHP 7.1, you MUST upgrade PHP before installing WPForms 1.9.5. Failure to do that will disable WPForms core functionality.
    • \n
    • Added: Users can connect their Square accounts and receive payments via their payment forms.
    • \n
    • Added: New design for Smart Tags.
    • \n
    • Added: The ability to activate and deactivate email notifications through a status button in the form builder.
    • \n
    • Changed: Enhancing the prevention of duplicate form submissions.
    • \n
    • Changed: Improved the error messaging when creating new provider connections in the form builder.
    • \n
    • Changed: Improved the “From Email” setting validation in the Notifications screen.
    • \n
    • Changed: AI Chat Modal can be docked to the right of the builder.
    • \n
    • Changed: The order of the admin bar menu items.
    • \n
    • Changed: Improved compatibility with PHP 8.1.
    • \n
    • Changed: Improved UX for Dropdown and Dropdown Items fields.
    • \n
    • Fixed: Hidden by conditional logic items in the Order Summary table were shown in the Editors.
    • \n
    • Fixed: Stripe settings were active when the credit card field was removed from the form.
    • \n
    • Fixed: The notice for the minimum and maximum valid values of the Number Slider field is now correct.
    • \n
    • Fixed: WPForms Challenge RTL issues.
    • \n
    • Fixed: Incorrect wpforms_htaccess_file transient name generation.
    • \n
    • Fixed: Console error when users tried to embed a form into an existing page on the last step of the WPForms Challenge.
    • \n
    • Fixed: The submit button stays disabled after Stripe payment fails in some cases.
    • \n
    • Fixed: The Dropdown and Dropdown Items fields displayed placeholders instead of default values in the Form Builder.
    • \n
    • Fixed: Wrong paddings in the Form Builder sidebar on Windows in the RTL mode.
    • \n
    • Fixed: Improved the From Email notification setting. The Email field is detected now by a smart tag.
    • \n
    • Fixed: Improved notification template for the {entry_geolocation} smart tag.
    • \n
    \n

    1.9.4.2

    \n
      \n
    • Fixed: Fatal error when trying to delete the plugin.
    • \n
    • Fixed: Character encoding issues in Email notifications when viewed on some Apple devices.
    • \n
    \n

    1.9.4.1

    \n
      \n
    • Added: Minimum and maximum value validation for the Numbers field.
    • \n
    • Added: Implemented password protection and user access restrictions for uploaded files.
    • \n
    • Added: Automatic preview page reload was added after saving.
    • \n
    • Changed: Improved Gutenberg block UI by hiding settings when no form is selected.
    • \n
    • Changed: Updated stripe/stripe-php library to 16.5.0.
    • \n
    • Changed: Enhanced Tools > Scheduled Actions visibility for better compatibility with Action Scheduler, WooCommerce, and WP Rocket plugins.
    • \n
    • Changed: Improved Stripe payments customer address handling.
    • \n
    • Changed: Optimized number slider calculations for better decimal precision.
    • \n
    • Changed: Improved Numbers and Number Slider fields settings interface in the form builder.
    • \n
    • Fixed: Stripe Credit Card field payment element console warnings.
    • \n
    • Fixed: Resolved form submission debug log warnings.
    • \n
    • Fixed: URL referer smart tag functionality for external websites.
    • \n
    • Fixed: Addressed GDPR enhancements setting flashings on refresh.
    • \n
    • Fixed: Resolved Stripe payments processing for Indian accounts.
    • \n
    • Fixed: Corrected Payments Summary chart tooltip display.
    • \n
    • Fixed: Improved decimal precision in number slider field calculations.
    • \n
    • Fixed: Enhanced WPForms admin pages performance.
    • \n
    • Fixed: Backslash handling in form data after saving.
    • \n
    • Fixed: Prevented duplicate entry submissions with reCAPTCHA v3.
    • \n
    • Fixed: Restored missing Order Summary item names for hidden label fields.
    • \n
    • Fixed: Improved Order Summary performance with conditional Multiple Items fields.
    • \n
    • Fixed: Dynamic Choice fields button behavior.
    • \n
    • Fixed: Display of zero-price Payment Checkbox items.
    • \n
    • Fixed: Stripe Credit Card field styling in Divi builder.
    • \n
    • Fixed: Fatal error with a custom country address scheme.
    • \n
    \n

    1.9.3.2

    \n
      \n
    • Fixed: GDPR enhancements sub-setting briefly flashed on the WPForms > Settings admin page after refresh.
    • \n
    \n

    1.9.3.1

    \n
      \n
    • IMPORTANT: Support for PHP 7.0 has been discontinued. If you are running PHP 7.0, you MUST upgrade PHP before installing WPForms 1.9.3. Failure to do that will disable WPForms core functionality.
    • \n
    • Added: Ability to open the Form Builder with a specific section via URL parameter.
    • \n
    • Added: Support for Block API versions 2 and 3.
    • \n
    • Added: Support for the Constant Contact API v3.
    • \n
    • Added: Quick page navigation on the Forms Overview page.
    • \n
    • Added: Direct access to Tools sections from WPForms top admin menu.
    • \n
    • Changed: Updated stripe/stripe-php library to 16.3.0.
    • \n
    • Changed: Updated DOMPurify library to 3.2.3.
    • \n
    • Changed: Optimized Order Summary table display on mobile devices.
    • \n
    • Changed: Improved date formatting consistency in payments table.
    • \n
    • Changed: Removed dynamic missing translation fix to improve performance.
    • \n
    • Fixed: Tooltip text overlap in Choices.js dropdowns with long tags.
    • \n
    • Fixed: Default payment choice label visibility in order summary table.
    • \n
    • Fixed: Hidden single item field visibility in Order Summary table.
    • \n
    • Fixed: Unnecessary CSS variables output on pages without forms.
    • \n
    • Fixed: Toggle icon status glitch on the payments settings section.
    • \n
    • Fixed: Submit button text handling with empty values.
    • \n
    • Fixed: Non-Latin characters have been stripped from the URL when used in {page_url} and {url_referer} smart tags.
    • \n
    • Fixed: Block Editor field compatibility.
    • \n
    • Fixed: Warning appeared in the debug.log when non-string data were erroneously sent to translation.
    • \n
    • Fixed: Custom validation message display for sub-fields.
    • \n
    • Fixed: Stripe Credit Card field in Elementor popups.
    • \n
    • Fixed: Submit button default label handling.
    • \n
    • Fixed: An error was happening when removing “Copy / Paste Style Settings” in Elementor and Block editor.
    • \n
    • Fixed: The “Copy / Paste Style Settings” field default value was empty when adding an Elementor WPForms block.
    • \n
    • Fixed: Error handler improvements.
    • \n
    • Fixed: Some emails were not added to Constant Contact integration.
    • \n
    • Fixed: The WPForms Challenge steps were shown in the AI Form Generator panel.
    • \n
    • Fixed: PHP 7.1 and 7.2 compatibility.
    • \n
    \n

    1.9.2.3

    \n
      \n
    • Changed: Creating a custom form theme is now available only to Administrators.
    • \n
    • Fixed: Translated form action notices had an “s” letter appended to the form/template translated name.
    • \n
    • Fixed: The Minimum time to submit setting consistently blocked form submissions on sites created in WordPress Studio.
    • \n
    • Fixed: The ‘_load_textdomain_just_in_time was called incorrectly’ error with child themes.
    • \n
    • Fixed: In rare cases, a fatal error could happen on plugin activation.
    • \n
    \n

    1.9.2.2

    \n
      \n
    • Fixed: _load_textdomain_just_in_time notice with WordPress 6.7.
    • \n
    • Fixed: Some translations were empty with WordPress 6.5+.
    • \n
    \n

    1.9.2.1

    \n
      \n
    • Added: The Settings section in the WPForms admin bar menu.
    • \n
    • Added: Update Stripe payments status after canceling a refund in the Stripe dashboard.
    • \n
    • Added: Open the URL in the new tab for Confirmations.
    • \n
    • Added: New $row_id parameter to the wpforms_pre_update_{$type} and wpforms_post_update_{$type} actions.
    • \n
    • Added: AI chat warning messages if prohibited code has been removed.
    • \n
    • Changed: Updated jquery.validate library to 1.21.0.
    • \n
    • Changed: Updated stripe/stripe-php library to 16.1.0.
    • \n
    • Changed: Updated DOMPurify library to 3.1.7.
    • \n
    • Changed: Updated woocommerce/action-scheduler library to 3.8.2.
    • \n
    • Changed: Updated Chart.js library to v4.4.4.
    • \n
    • Changed: Smart tags are no longer processed in WordPress builders, such as Gutenberg, Elementor, Divi Builder, etc.
    • \n
    • Fixed: There was a potential infinite recursion in error handling.
    • \n
    • Fixed: Improved performance on the Templates page in the Form Builder.
    • \n
    • Fixed: Field labels were printed in the Order Summary table when the Hide Label option was enabled.
    • \n
    • Fixed: In some cases, adding a new account in Form Builder did not load the account data correctly.
    • \n
    • Fixed: Improved translation handling for addon names and descriptions.
    • \n
    • Fixed: Order Summary performance issue on large forms containing numerous payment conditional logic fields.
    • \n
    • Fixed: Mapped First/Last Name sub-fields were replaced by another after the initial field was deleted.
    • \n
    • Fixed: An extra field was displayed when WPForms were embedded using a shortcode in the Footer.
    • \n
    • Fixed: The non-Latin characters were not supported for the AI Choices prompt.
    • \n
    \n

    1.9.1.6

    \n
      \n
    • Fixed: The Dropdown field placeholder was disabled on the Divi Builder preview screen.
    • \n
    • Fixed: When sending a form with an incorrect nonce field, no error was displayed.
    • \n
    • Fixed: An extra field was displayed when a form was embedded using a shortcode in the Footer.
    • \n
    \n

    1.9.1.5

    \n
      \n
    • Fixed: PHP warnings appeared with WordPress widgets.
    • \n
    \n

    1.9.1.4

    \n
      \n
    • Fixed: Multiple sending of weekly summary emails.
    • \n
    \n

    1.9.1.3

    \n
      \n
    • Fixed: HTML tags didn’t work in an agreement text of the GDPR field when a field’s label was hidden.
    • \n
    • Fixed: HTML tags in choices of the Checkboxes, Multiple Choice, and Dropdown fields were escaped and didn’t work as expected.
    • \n
    \n

    1.9.1.2

    \n
      \n
    • Fixed: There was a conflict with the WooCommerce Subscriptions plugin.
    • \n
    \n

    1.9.1.1

    \n
      \n
    • Added: State-of-the-art generative AI can help to build forms even faster.
    • \n
    • Added: New supported currencies.
    • \n
    • Added: New wpforms_html_field_name filter that allows modifying field labels in email notifications.
    • \n
    • Changed: Improved the UI for multiple dropdown elements in various places of the admin area.
    • \n
    • Changed: Updated Stripe Subscription to use the plan name as the description.
    • \n
    • Changed: Notice in the WPForms > Settings > Payments admin page when a selected currency is not supported by Stripe.
    • \n
    • Changed: WPForms admin notices are now sorted by type.
    • \n
    • Changed: Improved the Modern Dropdown field UI across the Block and Elementor editors.
    • \n
    • Changed: Updated DOMPurify library to 3.1.6.
    • \n
    • Changed: Updated stripe/stripe-php library to 15.8.0.
    • \n
    • Changed: Improved RTL support of plugin admin pages.
    • \n
    • Changed: Improved compatibility with Full Site Editor and Gutenberg plugin.
    • \n
    • Changed: Improved performance on admin pages.
    • \n
    • Changed: Form Builder: Alt+S shortcut toggles the sidebar on Windows and Linux. Ctrl+F shortcut has been improved to always open search field.
    • \n
    • Fixed: Resolved W3C validation error for the Order Summary table.
    • \n
    • Fixed: Fixed RTL display issues for submit spinner and payment fields with quantity enabled.
    • \n
    • Fixed: Resolved pagination button issues for WordPress versions 6.6 and higher.
    • \n
    • Fixed: Incorrect price was displayed in the Order Summary table for some currencies when the Single Item field with ‘user defined’ type was used.
    • \n
    • Fixed: Improved mobile responsiveness of the price column in the Order Summary table.
    • \n
    • Fixed: “The cron event list could not be saved” error could appear in the debug.log file in certain cases.
    • \n
    • Fixed: WPForms script was not defined in the Elementor popup.
    • \n
    • Fixed: Compatibility with the Jetpack Boost plugin.
    • \n
    • Fixed: PHP notice generated on the Single Payment screen in some cases.
    • \n
    • Fixed: Search on WPForms –> Tools –> Scheduled Actions page redirected users to the Import Screen.
    • \n
    • Fixed: The wpforms_weekly_entries_count_cron task was reporting an error in the debug log.
    • \n
    • Fixed: Resolved W3C errors and warnings reported for the Standard fields.
    • \n
    • Fixed: The browser tab could crash if the WPForms block was used with patterns.
    • \n
    • Fixed: The Order Summary text was not readable in some form themes when the {order_summary} smart tag was used in the Confirmation message.
    • \n
    • Fixed: Submit button hover styles were overridden in some themes and Elementor.
    • \n
    • Fixed: The “Missing ‘wpforms’ dependency” error appeared on pages without a form.
    • \n
    \n

    1.9.0.4

    \n
      \n
    • Fixed: Unable to send a form with Constant Contact integration and fatal errors in the admin.
    • \n
    \n

    1.9.0.3

    \n
      \n
    • Fixed: Compatibility issues with menus and popups on Elementor.
    • \n
    • Fixed: A fatal error with wp_remote_retrieve_headers occurred in CacheBase.php in some cases.
    • \n
    • Fixed: Compatibility with the Jetpack Boost plugin.
    • \n
    \n

    1.9.0.2

    \n
      \n
    • Added: Modern Antispam protection for new forms.
    • \n
    • Added: Support conditional logic in the Layout field and add the ability to render the label and description for this field.
    • \n
    • Added: The notification to check prices is added when the currency is switched.
    • \n
    • Added: The new filter wpforms_sanitize_amount_before to filter a raw price amount before sanitization.
    • \n
    • Added: The new filter wpforms_sanitize_amount to filter a sanitized price amount.
    • \n
    • Added: The new filter wpforms_enable_form_data_slashing to enable the form data slashing.
    • \n
    • Added: The new filter wpforms_frontend_js_header_force_loadallows the loading of JS assets in the header.
    • \n
    • Changed: Improved automatic recreation of custom database tables.
    • \n
    • Changed: Improved RTL support of plugin admin pages on desktop and mobile screens.
    • \n
    • Changed: Smart Tags for the Name field now allow retrieving partial data, such as Last Name.
    • \n
    • Changed: Improved layout of the Settings > Integrations page on small screens.
    • \n
    • Changed: Added notices for the Default value and Allowlist/Denylist settings on the Email field in case some values were invalid and have been removed.
    • \n
    • Changed: Improved the multi-select dropdowns UI across the Builder UI.
    • \n
    • Changed: Updated stripe/stripe-php library to v15.1.0.
    • \n
    • Changed: Updated woocommerce/action-scheduler library to v3.8.1.
    • \n
    • Changed: Allowed using the & symbol in Modern style Dropdown field choices.
    • \n
    • Changed: Improved compatibility with the WP JobSearch plugin.
    • \n
    • Changed: Updated jQuery.Validate library to v1.20.1.
    • \n
    • Changed: Updated inputmask library to v5.0.9.
    • \n
    • Fixed: Stripe payment form couldn’t be submitted in the Elementor popup preview.
    • \n
    • Fixed: The Trash, Duplicate, Restore, and Delete actions for templates and forms now display a notice with the correct type.
    • \n
    • Fixed: Multiple Choice, Checkboxes, and Dropdown fields with empty values were displayed incorrectly in email notifications.
    • \n
    • Fixed: Database error on a single network site after creating a form if the plugin was network activated.
    • \n
    • Fixed: Fields reacted by hovering over them with the cursor on the Elementor editor screen.
    • \n
    • Fixed: Modern Dropdown fields were not appropriately loaded on Block (Gutenberg) and Elementor editors.
    • \n
    • Fixed: Forms with hidden labels had a big horizontal scrollbar when displayed on mobile with RTL languages.
    • \n
    • Fixed: Conditional logic affected the print page, which did not display hidden fields.
    • \n
    • Fixed: The RTE field was broken in the Elementor editor preview when the left menu was collapsed.
    • \n
    • Fixed: Rare exception with how we registered translations for download using the respective transient.
    • \n
    • Fixed: Pre-populating fields from another form with confirmation redirect URL was not handling multi-select fields.
    • \n
    • Fixed: The Gutenberg editor was not displaying the page title using Smart Tags.
    • \n
    • Fixed: The {page_url}Smart Tag value was wrong on the Gutenberg editor’s page.
    • \n
    • Fixed: When all the provider’s connections were removed, the check icon remained in the provider title.
    • \n
    • Fixed: The {page_url}Smart Tag was incorrect in the Divi builder.
    • \n
    • Fixed: Modern Dropdown fields didn’t preview correctly for multiple instances of WPForms block on the Gutenberg editor’s page.
    • \n
    • Fixed: The choice-based payment field Smart Tags didn’t work in the prefilled URL.
    • \n
    • Fixed: In Dropdown, the & symbol was rendered as the corresponding HTML entity &amp; for Modern Style.
    • \n
    • Fixed: The modern dropdown field was not loading correctly on the Elementor popup.
    • \n
    • Fixed: Empty forms couldn’t be submitted without enabling the “Minimum time for submit” setting.
    • \n
    • Fixed: Switching to Live mode on the Payments Overview screen was impossible when all test payments were deleted.
    • \n
    • Fixed: Dropdown and Checkbox fields with multiple values were inline in email notifications.
    • \n
    • Fixed: Pressing the Enter key triggered the WPForms Insert Form modal in the Classic editor.
    • \n
    • Fixed: Dropdown field in forms with the inline-fields class had cropped dropdowns on Safari.
    • \n
    • Fixed: Payment quantity text was not centered on some themes.
    • \n
    • Fixed: Some fields were visible in the email notifications even if they were hidden by Conditional Logic.
    • \n
    • Fixed: The Robots.txt file wasn’t valid due to the WPForms disallow rule.
    • \n
    • Fixed: After embedding to the new page, the {page_title} Smart Tag was empty in the Block Editor (Gutenberg).
    • \n
    \n

    1.8.9.6

    \n
      \n
    • Changed: Improved compatibility with OceanWP theme.
    • \n
    • Fixed: Dropdown fields in forms with the inline-fields class had cropped dropdowns.
    • \n
    • Fixed: Button’s hover color was wrong on the Ocean WP theme.
    • \n
    • Fixed: Form couldn’t be submitted when Cloudflare Turnstile anti-spam integration was configured.
    • \n
    \n

    1.8.9.5

    \n
      \n
    • Fixed: Stripe payment wasn’t created when the Credit Card field was optional and users paid through Google Pay / Apple Pay.
    • \n
    \n

    1.8.9.4

    \n
      \n
    • Added: New filter wpforms_sanitize_amount_before to filter a raw price amount before sanitization.
    • \n
    • Added: New filter wpforms_sanitize_amount to filter a sanitized price amount.
    • \n
    \n

    1.8.9.2

    \n
      \n
    • Fixed: Reply-to field was not returning the correct email address.
    • \n
    \n

    1.8.9.1

    \n
      \n
    • Added: Complex fields now can have separate error messages for each field.
    • \n
    • Added: Recommended, New, and Featured addons are now displayed first on the addons page.
    • \n
    • Changed: The Campaign Monitor, ConstantContact, GetResponse and ConvertKit logos were updated.
    • \n
    • Changed: Users can now see the category and subcategory of the selected template on the Setup panel.
    • \n
    • Changed: If Akismet is installed and configured for the form, marking entries as spam or not spam helps Akismet learn.
    • \n
    • Changed: Improved the behavior of Tools > Logs page and settings controls.
    • \n
    • Changed: Improved compatibility with the Hello Elementor theme.
    • \n
    • Changed: Process empty selected values for Choices, Checkbox, and Dropdown fields when Show Values option is selected.
    • \n
    • Changed: Choices.js library has been updated to v10.2.0.
    • \n
    • Changed: Modern multiple select field with search enabled now is more user-friendly across the admin area.
    • \n
    • Changed: Improved rendering of Payment Fields according to W3C requirements.
    • \n
    • Changed: Always display templates added by addons, even if the addon is not installed or activated.
    • \n
    • Changed: The form builder now hides the placeholder label for Image and Icon choices when left empty, while retaining the placeholder for Payment Choices and Checkboxes to maintain consistency with frontend behavior.
    • \n
    • Fixed: Incorrect alert modal was shown on the subscription plan removal in some cases.
    • \n
    • Fixed: Various RTL problems on the form builder screen.
    • \n
    • Fixed: The minimum payment amount for the Single Item field was not functioning correctly with currencies that use a comma as a decimal separator.
    • \n
    • Fixed: Validation error for the Postal code of the Stripe Credit Card field displayed twice.
    • \n
    • Fixed: Inconsistent spacing of Dropdown field in different browsers on desktop and mobile.
    • \n
    • Fixed: Stripe Credit Card field had incorrect placeholder color with Classic Markup.
    • \n
    • Fixed: Updated the WPForms Challenge to only start counting when you actually begin creating a form on the Forms Overview page.
    • \n
    • Fixed: User templates were not deleted on plugin uninstall.
    • \n
    • Fixed: The radio of the Multiple Choice field wasn’t centered in Firefox.
    • \n
    • Fixed: Stripe processing error occurred on a multi-payments form when all credit card fields were hidden by conditional logic.
    • \n
    • Fixed: Color of validation errors was incorrect for the Stripe Credit Card field when Payment Element mode was used.
    • \n
    • Fixed: Additional padding was added for the form title on the Forms Overview page on mobile.
    • \n
    • Fixed: The plugin update process redirected to the Update page and did not redirect back to the Plugins page after the update.
    • \n
    • Fixed: The fetching of the new plugin version number and new plugin description has been run not-synchronously.
    • \n
    • Fixed: MySQL errors occurred when creating a table in some unique configurations.
    • \n
    • Fixed: Multiple Choice field with Icon Choices could not be selected in Firefox after reloading the page.
    • \n
    • Fixed: Inline javascript code could be parsed improperly and displayed as text on top pages for some configurations.
    • \n
    • Fixed: Cached token was not updated properly.
    • \n
    • Fixed: The Spinner layout of the Save button in the Form Builder was not centered.
    • \n
    • Fixed: In some exceptions, one-time payments appeared in the Stripe dashboard even though a payment form wasn’t submitted.
    • \n
    • Fixed: Email notifications were not sent when a subject was empty after smart tag processing.
    • \n
    • Fixed: PHP warnings might have occurred in some cases on PHP 8.0+.
    • \n
    • Fixed: Upgrade to the Pro link had wrong styling on Bluehost hosted sites.
    • \n
    • Fixed: WPForms block in the editor showed an error when the selected form was trashed or deleted.
    • \n
    • Fixed: Some Stripe transactions were refunded almost immediately as the transactions were labeled fraudulent.
    • \n
    • Fixed: The validation process of Number Slider field could throw a fatal error on PHP 8.0+.
    • \n
    \n

    1.8.8.3

    \n
      \n
    • Changed: Updated jQuery.Validate library to v1.20.0.
    • \n
    • Fixed: Screen Options on the Forms Overview and Entries Overview pages could cause PHP error in rare cases due to conflict with 3rd-party code.
    • \n
    • Fixed: Post Statuses on legacy Nav Menu management page could cause PHP error in rare cases due to conflict with 3rd-party code.
    • \n
    • Fixed: users couldn’t duplicate their forms.
    • \n
    \n

    1.8.8.2

    \n
      \n
    • Added: Forms can now be saved as user templates for future use.
    • \n
    • Added: New Price Display option was added for Single Item payment field.
    • \n
    • Added: Shipping and Billing addresses can now be configured on the Form Builder > Payments > Stripe screen.
    • \n
    • Added: New filter wpforms_integrations_stripe_api_common_create_plan_name to filter Stripe subscription plan name.
    • \n
    • Added: New filter wpforms_integrations_lite_connect_api_request_timeout to filter Lite Connect request timeout.
    • \n
    • Added: New styling/theming settings in the Block editor.
    • \n
    • Added: New context menu in the Form Builder for quick actions.
    • \n
    • Changed: New design for the Email Summaries email template with a weekly total and entry submission trends.
    • \n
    • Changed: The state of selected stat cards on the Payments Overview chart is preserved when applying date filtering.
    • \n
    • Changed: Updated stripe/stripe-php library to v13.15.0.
    • \n
    • Changed: Updated woocommerce/action-scheduler library to v3.7.2.
    • \n
    • Changed: Updated DOMPurify library to 3.0.9.
    • \n
    • Changed: Adjusted notifications on the empty forms screen.
    • \n
    • Changed: HTML tags are allowed in the Order Summary for the Total payment field.
    • \n
    • Changed: When the entry is marked as not spam, submit data to Akismet for learning and help make the Web a better place for everyone.
    • \n
    • Changed: Improved error handling when creating or updating a form.
    • \n
    • Changed: Improved fields layout on the frontend for better user experience on mobile devices.
    • \n
    • Changed: Bring the frontend markup of the form more in line with the W3C standards to reduce validator errors.
    • \n
    • Fixed: Various RTL problems in the admin dashboard, form builder and a form preview page.
    • \n
    • Fixed: Various responsive issues on admin pages.
    • \n
    • Fixed: The Paragraph field was allowed horizontal resizing.
    • \n
    • Fixed: Make sure we output valid robots.txt file rules if the file is empty.
    • \n
    • Fixed: PHP notices were thrown in some cases when Stripe subscription renewals were created.
    • \n
    • Fixed: Customer email was shown instead of customer name on the Payments Overview screen for Stripe subscription renewals in some cases.
    • \n
    • Fixed: The builder sidebar was hidden on the context menu edit actions.
    • \n
    • Fixed: Fatal error was thrown on the frontend with corrupted form data.
    • \n
    • Fixed: 0 (zero) as a choices field raw value was not saved.
    • \n
    • Fixed: The payment single field had the wrong spacing with enabled quantities.
    • \n
    • Fixed: Long placeholders being broken into multiple lines after Safari 17.3.1 update.
    • \n
    • Fixed: Media upload did not work in some cases on mobile devices.
    • \n
    • Fixed: Placeholder option was hidden for the Single Item field with ‘user defined’ type.
    • \n
    • Fixed: Incorrect prices in the Order Summary table when items in the Checkbox Items field had the hyphen symbol.
    • \n
    • Fixed: Modern multiple select fields with long placeholder text overlapped a drop-down arrow.
    • \n
    • Fixed: Infinite loading button was shown on mobile devices in some cases.
    • \n
    • Fixed: Multisite activation: plugin should stay activated on a single site after user activated it on a network level.
    • \n
    • Fixed: There was a race condition with invisible reCaptcha v2, preventing form submission in some edge cases.
    • \n
    • Fixed: Elementor widget styles were broken due to a conflict with the Gutenberg block.
    • \n
    • Fixed: Some unnecessary inline styles were applied for email notifications with HTML tags.
    • \n
    • Fixed: Payment fields weren’t reflected properly in the Order Summary table in some cases.
    • \n
    • Fixed: WPCode Install/Activate modal and Entries Education Modal now look better on mobile screens.
    • \n
    • Fixed: {author_*} smart tags were returning incorrect results in some cases.
    • \n
    • Fixed: Incorrect styles were applied for “Order Summary” table in some cases.
    • \n
    • Fixed: Improved handling of corrupted payment submission data.
    • \n
    \n

    1.8.7.2

    \n
      \n
    • Changed: “What’s New” modal should be displayed based on the major version of the plugin.
    • \n
    • Changed: Improved Akismet integration efficiency.
    • \n
    • Fixed: Antispam token was passed as a simple form field, not protected from spam bots.
    • \n
    • Fixed: PHP warning was thrown in case of anonymous form submission when User ID smart tag was used.
    • \n
    • Fixed: Image positioning in the “What’s New” blocks wasn’t always correct.
    • \n
    • Fixed: Modal windows were not displayed on small screens.
    • \n
    • Fixed: The animation for opening the “What’s New” modal worked improperly when the modal had small content.
    • \n
    • Fixed: The background was not entirely dimmed when scrolling the “What’s New” popup.
    • \n
    \n

    1.8.7.1

    \n
      \n
    • Added: The Announcements block in the Community page.
    • \n
    • Added: New way to expand the Form Templates subcategories list in the templates list sidebar.
    • \n
    • Added: New splash screen outlining notable features and changes in the release.
    • \n
    • Added: The user can see an overview of what they are purchasing by enabling the Order Summary for the …
    • \n
    \n", "description": "

    WordPress Contact Form Builder Plugin

    \n

    WPForms is a drag & drop WordPress form builder that’s EASY and POWERFUL. Create contact forms, feedback forms, subscription forms, payment forms (including Stripe, Square & PayPal), and other types of forms for your site in minutes with just a few clicks!

    \n

    At WPForms, user experience is our #1 priority. Our pre-built form templates and workflows make WPForms the most beginner-friendly contact form plugin on the market. You don’t have to hire a developer. Create a form in less than 5 minutes with our drag & drop form builder or use a template to get a head start.

    \n
    \n

    WPForms Pro
    \n This plugin is the Lite version of WPForms Pro, which comes with email subscription forms, multi-page contact forms, file uploads, conditional logic, and extra payment integrations. Click here to purchase the best premium WordPress contact form plugin now!

    \n
    \n

    \n

    Drag & Drop Contact Form Builder

    \n

    Create custom contact forms in minutes with our easy-to-use drag and drop online form builder. But don’t just take our word for it. See what WordPress experts are saying:

    \n
    \n

    WPForms is by far the easiest form plugin to use. My clients love WPForms and it’s one of the few plugins they can use without any training. As a developer I appreciate how fast, modern, clean and extensible it is.
    \n Bill Erickson – Expert WordPress Consultant

    \n
    \n

    Pre-built Form Templates

    \n

    WPForms comes with 2000+ pre-built form templates.

    \n

    Whether you’re looking to create a simple contact form, marketing form, request a quote form, donation form, payment order form, registration form, Stripe payment form, or a subscription form, we have a form template already prepared and ready to use.

    \n

    Mobile Ready, SEO Friendly, and Optimized for Speed

    \n

    WPForms contact forms are 100% responsive and mobile-friendly. We optimized every query on the frontend and the backend to ensure that it’s one of the fastest WordPress contact form plugins.

    \n

    You can embed your contact form on any page with an optimized title and description, so WPForms is one of the most SEO friendly contact form plugins too.

    \n

    Fields & Features You Need to Succeed

    \n

    With star ratings, file uploads, repeater fields, survey fields, and multi-page contact forms, you can easily build the right custom form for your site’s needs. Plus, integrate your contact forms with an email marketing service in just a few steps and collect payments with Stripe, PayPal, and Square for bookings and orders without the need for a dedicated eCommerce plugin.

    \n

    See what one business owner has to say about their WPForms contact form:

    \n
    \n

    As a business owner, time is my most valuable asset. WPForms allows me to create smart contact forms with just a few clicks. With their pre-built form templates and the drag & drop builder, I can create a new form that works in less than 2 minutes without writing a single line of code. Well worth the investment.
    \n David Henzel – Co-founder of MaxCDN

    \n
    \n

    Surveys & Polls

    \n

    Create custom survey forms like Survey Monkey. Our WordPress survey plugin addon comes with smart survey fields including Likert scale, star ratings, and NPS. Embed your surveys and polls anywhere in WordPress.

    \n

    Use our survey reporting tools to customize graphs, export them for presentations, and display aggregate results. You can also share poll results instantly when collecting votes.

    \n

    Default WordPress Forms

    \n

    Aside from building simple contact forms, WPForms also helps you create better default WordPress forms, like custom WordPress login forms and custom WordPress user registration forms. Create a password-protected contact form or even a members-only contact form.

    \n

    Bloggers and publishers can use our WordPress post submission forms to accept guest posts, testimonials, and more.

    \n

    Payment Forms, Donation Forms, Booking Forms, and More

    \n

    While WPForms started out as a contact form plugin, it has evolved into a powerful custom forms solution for any type of payment or booking form.

    \n

    WPForms integrates with PayPal, Stripe, Square Payments, and Authorize.Net so you can easily accept credit card payments or take payments via PayPal. Bonus: you can also take signatures.

    \n

    We’re proud to be a Stripe Verified Partner. This partnership allows us to build the best Stripe integration with early access to features. You can use our Stripe integration to accept both one-time payments as well as recurring payments while syncing all form data to your Stripe account.

    \n

    Custom Calculator Forms

    \n

    Using the WPForms Calculations addon, you can build custom formulas and display results on the frontend.

    \n

    Create simple arithmetic calculations or build complex conditional calculations with rounded values, averages, time ranges, and more! It’s the best calculator plugin for WordPress.

    \n

    Forms Optimized for Conversions

    \n

    With our Form Pages addon, you can create distraction-free custom form landing pages to increase conversions.

    \n

    To improve form completion rates, we created Conversational Forms which helps you make your feedback forms feel more human by adding an interactive layout. (See Conversational Forms Demo).

    \n

    Easy to Customize and Extend

    \n

    You can easily customize your contact forms with our section dividers, HTML blocks, and CSS. Embedding forms in Elementor and Divi has never been easier thanks to our native integrations.

    \n

    We also know that our developer friends may want more control, so we added tons of hooks and filters.

    \n

    Full WPForms Feature List

    \n\n

    Integrations

    \n\n

    You can see why WPForms is the best WordPress contact form plugin on the market! Want to unlock these features? Upgrade to our Pro version.

    \n

    Credits

    \n

    This plugin is created by Jared Atchison and Syed Balkhi.

    \n

    Branding Guidelines

    \n

    WPForms® is a registered trademark of WPForms LLC. When writing about the contact form plugin by WPForms, please make sure to uppercase the initial 3 letters.

    \n
      \n
    • WPForms (correct)
    • \n
    • WP Forms (incorrect)
    • \n
    • wpforms (incorrect)
    • \n
    • wpform (incorrect)
    • \n
    \n

    Notes

    \n

    WPForms is absolutely, positively the most beginner-friendly WordPress contact form plugin on the market. It is both easy and powerful.

    \n

    We took the pain out of creating online forms and made it easy. Check out all WPForms features.

    \n

    Also, I’m the founder of WPBeginner, the largest WordPress resource site for beginners. It was a huge priority for me to make a WordPress contact form plugin that beginners can use without any training.

    \n

    I feel that we have done that here. I hope you enjoy using WPForms.

    \n

    Thank you,

    \n

    Syed Balkhi

    \n", "screenshots": "
    1. \"WPForms

      WPForms Drag & Drop Form Builder

    2. \"Adding

      Adding New Fields

    3. \"Generate

      Generate choices using AI

    4. \"Form

      Form Templates

    5. \"WPForms

      WPForms Block With Style Options

    6. \"Payments

      Payments Overview

    7. \"Single

      Single Payment

    8. \"Form

      Form Preview

    9. \"Form

      Form Pages with Multiple Styles

    10. \"Conversational

      Conversational Form

    ", "installation": "
      \n
    1. Install WPForms Lite either via the WordPress.org plugin repository or by uploading the files to your server. (See instructions on how to install a WordPress plugin)
    2. \n
    3. Activate WPForms Lite.
    4. \n
    5. Navigate to the WPForms tab at the bottom of your admin menu and click the “Add New” button to begin creating your new WordPress contact form.
    6. \n
    7. Want more features? Purchase the full version of WPForms!
    8. \n
    \n"}, "versions": {"1.1.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.8.zip", "1.2.0": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.3.zip", "1.3.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.6.zip", "1.3.8": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.8.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.6.zip", "1.4.9": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.9.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.1.zip", "1.5.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.3.zip", "1.5.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.7.zip", "1.6.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.1.zip", "1.6.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.0.zip", "1.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.4.zip", "1.7.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.9.zip", "1.8.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.6.zip", "trunk": "https://downloads.wordpress.org/plugin/wpforms-lite.zip", "1.1.4.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.4.2.zip", "1.1.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.5.1.zip", "1.1.6.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.6.1.zip", "1.1.7.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.7.1.zip", "1.1.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.7.2.zip", "1.1.8.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.8.1.zip", "1.1.8.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.8.2.zip", "1.1.8.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.8.3.zip", "1.1.8.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.8.4.zip", "1.2.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.0.1.zip", "1.2.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.2.1.zip", "1.2.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.2.2.zip", "1.2.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.3.1.zip", "1.2.3.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.3.2.zip", "1.2.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.4.1.zip", "1.2.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.5.1.zip", "1.2.8.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.8.1.zip", "1.3.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.1.1.zip", "1.3.1.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.1.2.zip", "1.3.6.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.6.1.zip", "1.3.6.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.6.2.zip", "1.3.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.7.2.zip", "1.3.7.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.7.3.zip", "1.3.7.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.7.4.zip", "1.3.9.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.9.1.zip", "1.4.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.0.1.zip", "1.4.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.1.1.zip", "1.4.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.2.1.zip", "1.4.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.2.2.zip", "1.4.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.4.1.zip", "1.4.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.5.1.zip", "1.4.5.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.5.2.zip", "1.4.5.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.5.3.zip", "1.4.7.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.7.1.zip", "1.4.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.7.2.zip", "1.4.8.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.8.1.zip", "1.5.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.0.1.zip", "1.5.0.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.0.3.zip", "1.5.0.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.0.4.zip", "1.5.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.1.1.zip", "1.5.1.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.1.3.zip", "1.5.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.2.1.zip", "1.5.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.2.2.zip", "1.5.2.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.2.3.zip", "1.5.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.3.1.zip", "1.5.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.4.1.zip", "1.5.4.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.4.2.zip", "1.5.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.5.1.zip", "1.5.6.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.6.2.zip", "1.5.8.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.8.2.zip", "1.5.9.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.9.1.zip", "1.5.9.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.9.4.zip", "1.5.9.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.9.5.zip", "1.6.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.0.1.zip", "1.6.0.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.0.2.zip", "1.6.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.2.2.zip", "1.6.2.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.2.3.zip", "1.6.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.3.1.zip", "1.6.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.4.1.zip", "1.6.7.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.7.1.zip", "1.6.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.7.2.zip", "1.6.7.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.7.3.zip", "1.6.8.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.8.1.zip", "1.7.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.1.1.zip", "1.7.1.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.1.2.zip", "1.7.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.2.1.zip", "1.7.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.4.1.zip", "1.7.4.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.4.2.zip", "1.7.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.5.1.zip", "1.7.5.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.5.2.zip", "1.7.5.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.5.3.zip", "1.7.5.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.5.5.zip", "1.7.7.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.7.1.zip", "1.7.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.7.2.zip", "1.7.9.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.9.1.zip", "1.8.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.0.1.zip", "1.8.0.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.0.2.zip", "1.8.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.1.1.zip", "1.8.1.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.1.2.zip", "1.8.1.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.1.3.zip", "1.8.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.2.1.zip", "1.8.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.2.2.zip", "1.8.2.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.2.3.zip", "1.8.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.3.1.zip", "1.8.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.4.1.zip", "1.8.5.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.5.2.zip", "1.8.5.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.5.3.zip", "1.8.5.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.5.4.zip", "1.8.6.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.6.2.zip", "1.8.6.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.6.3.zip", "1.8.6.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.6.4.zip", "1.8.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.7.2.zip", "1.8.8.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.8.2.zip", "1.8.8.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.8.3.zip", "1.8.9.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.9.1.zip", "1.8.9.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.9.2.zip", "1.8.9.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.9.4.zip", "1.8.9.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.9.5.zip", "1.8.9.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.9.6.zip", "1.9.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.0.1.zip", "1.9.0.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.0.2.zip", "1.9.0.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.0.3.zip", "1.9.0.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.0.4.zip", "1.9.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.1.zip", "1.9.1.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.2.zip", "1.9.1.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.3.zip", "1.9.1.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.4.zip", "1.9.1.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.5.zip", "1.9.1.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.6.zip", "1.9.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.2.1.zip", "1.9.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.2.2.zip", "1.9.2.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.2.3.zip", "1.9.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.3.1.zip", "1.9.3.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.3.2.zip", "1.9.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.4.1.zip", "1.9.4.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.4.2.zip", "1.9.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.5.1.zip", "1.9.5.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.5.2.zip", "1.9.6.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.6.1.zip", "1.9.6.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.6.2.zip", "1.9.7.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.7.1.zip", "1.9.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.7.2.zip", "1.9.7.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.7.3.zip", "1.9.8.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.8.1.zip", "1.9.8.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.8.2.zip"}, "downloaded": 298566930, "description": "

    WordPress Contact Form Builder Plugin

    \n

    WPForms is a drag & drop WordPress form builder that’s EASY and POWERFUL. Create contact forms, feedback forms, subscription forms, payment forms (including Stripe, Square & PayPal), and other types of forms for your site in minutes with just a few clicks!

    \n

    At WPForms, user experience is our #1 priority. Our pre-built form templates and workflows make WPForms the most beginner-friendly contact form plugin on the market. You don’t have to hire a developer. Create a form in less than 5 minutes with our drag & drop form builder or use a template to get a head start.

    \n
    \n

    WPForms Pro
    \n This plugin is the Lite version of WPForms Pro, which comes with email subscription forms, multi-page contact forms, file uploads, conditional logic, and extra payment integrations. Click here to purchase the best premium WordPress contact form plugin now!

    \n
    \n

    \n

    Drag & Drop Contact Form Builder

    \n

    Create custom contact forms in minutes with our easy-to-use drag and drop online form builder. But don’t just take our word for it. See what WordPress experts are saying:

    \n
    \n

    WPForms is by far the easiest form plugin to use. My clients love WPForms and it’s one of the few plugins they can use without any training. As a developer I appreciate how fast, modern, clean and extensible it is.
    \n Bill Erickson – Expert WordPress Consultant

    \n
    \n

    Pre-built Form Templates

    \n

    WPForms comes with 2000+ pre-built form templates.

    \n

    Whether you’re looking to create a simple contact form, marketing form, request a quote form, donation form, payment order form, registration form, Stripe payment form, or a subscription form, we have a form template already prepared and ready to use.

    \n

    Mobile Ready, SEO Friendly, and Optimized for Speed

    \n

    WPForms contact forms are 100% responsive and mobile-friendly. We optimized every query on the frontend and the backend to ensure that it’s one of the fastest WordPress contact form plugins.

    \n

    You can embed your contact form on any page with an optimized title and description, so WPForms is one of the most SEO friendly contact form plugins too.

    \n

    Fields & Features You Need to Succeed

    \n

    With star ratings, file uploads, repeater fields, survey fields, and multi-page contact forms, you can easily build the right custom form for your site’s needs. Plus, integrate your contact forms with an email marketing service in just a few steps and collect payments with Stripe, PayPal, and Square for bookings and orders without the need for a dedicated eCommerce plugin.

    \n

    See what one business owner has to say about their WPForms contact form:

    \n
    \n

    As a business owner, time is my most valuable asset. WPForms allows me to create smart contact forms with just a few clicks. With their pre-built form templates and the drag & drop builder, I can create a new form that works in less than 2 minutes without writing a single line of code. Well worth the investment.
    \n David Henzel – Co-founder of MaxCDN

    \n
    \n

    Surveys & Polls

    \n

    Create custom survey forms like Survey Monkey. Our WordPress survey plugin addon comes with smart survey fields including Likert scale, star ratings, and NPS. Embed your surveys and polls anywhere in WordPress.

    \n

    Use our survey reporting tools to customize graphs, export them for presentations, and display aggregate results. You can also share poll results instantly when collecting votes.

    \n

    Default WordPress Forms

    \n

    Aside from building simple contact forms, WPForms also helps you create better default WordPress forms, like custom WordPress login forms and custom WordPress user registration forms. Create a password-protected contact form or even a members-only contact form.

    \n

    Bloggers and publishers can use our WordPress post submission forms to accept guest posts, testimonials, and more.

    \n

    Payment Forms, Donation Forms, Booking Forms, and More

    \n

    While WPForms started out as a contact form plugin, it has evolved into a powerful custom forms solution for any type of payment or booking form.

    \n

    WPForms integrates with PayPal, Stripe, Square Payments, and Authorize.Net so you can easily accept credit card payments or take payments via PayPal. Bonus: you can also take signatures.

    \n

    We’re proud to be a Stripe Verified Partner. This partnership allows us to build the best Stripe integration with early access to features. You can use our Stripe integration to accept both one-time payments as well as recurring payments while syncing all form data to your Stripe account.

    \n

    Custom Calculator Forms

    \n

    Using the WPForms Calculations addon, you can build custom formulas and display results on the frontend.

    \n

    Create simple arithmetic calculations or build complex conditional calculations with rounded values, averages, time ranges, and more! It’s the best calculator plugin for WordPress.

    \n

    Forms Optimized for Conversions

    \n

    With our Form Pages addon, you can create distraction-free custom form landing pages to increase conversions.

    \n

    To improve form completion rates, we created Conversational Forms which helps you make your feedback forms feel more human by adding an interactive layout. (See Conversational Forms Demo).

    \n

    Easy to Customize and Extend

    \n

    You can easily customize your contact forms with our section dividers, HTML blocks, and CSS. Embedding forms in Elementor and Divi has never been easier thanks to our native integrations.

    \n

    We also know that our developer friends may want more control, so we added tons of hooks and filters.

    \n

    Full WPForms Feature List

    \n\n

    Integrations

    \n\n

    You can see why WPForms is the best WordPress contact form plugin on the market! Want to unlock these features? Upgrade to our Pro version.

    \n

    Credits

    \n

    This plugin is created by Jared Atchison and Syed Balkhi.

    \n

    Branding Guidelines

    \n

    WPForms® is a registered trademark of WPForms LLC. When writing about the contact form plugin by WPForms, please make sure to uppercase the initial 3 letters.

    \n
      \n
    • WPForms (correct)
    • \n
    • WP Forms (incorrect)
    • \n
    • wpforms (incorrect)
    • \n
    • wpform (incorrect)
    • \n
    \n

    Notes

    \n

    WPForms is absolutely, positively the most beginner-friendly WordPress contact form plugin on the market. It is both easy and powerful.

    \n

    We took the pain out of creating online forms and made it easy. Check out all WPForms features.

    \n

    Also, I’m the founder of WPBeginner, the largest WordPress resource site for beginners. It was a huge priority for me to make a WordPress contact form plugin that beginners can use without any training.

    \n

    I feel that we have done that here. I hope you enjoy using WPForms.

    \n

    Thank you,

    \n

    Syed Balkhi

    \n", "donate_link": "", "num_ratings": 14216, "screenshots": {"1": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-1.png?rev=3102297", "caption": "WPForms Drag & Drop Form Builder"}, "2": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-2.gif?rev=3254748", "caption": "Adding New Fields"}, "3": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-3.png?rev=3254748", "caption": "Generate choices using AI"}, "4": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-4.png?rev=3254748", "caption": "Form Templates"}, "5": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-5.png?rev=3254748", "caption": "WPForms Block With Style Options"}, "6": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-6.png?rev=3254748", "caption": "Payments Overview"}, "7": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-7.png?rev=3254748", "caption": "Single Payment"}, "8": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-8.png?rev=3254748", "caption": "Form Preview"}, "9": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-9.png?rev=3254748", "caption": "Form Pages with Multiple Styles"}, "10": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-10.gif?rev=3254748", "caption": "Conversational Form"}}, "support_url": "https://wordpress.org/support/plugin/wpforms-lite/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "slaffik": {"avatar": "https://secure.gravatar.com/avatar/1d442bc94c6f4198991d0886f34c9d6482710d5a15ad5e358ef802e2a41818be?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/slaffik/", "display_name": "Slava Abakumov"}, "wpforms": {"avatar": "https://secure.gravatar.com/avatar/7fb6cd90cbb1ee023c8c977fdbf7a3d719607d75d998a3a54642fe19cbd87896?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpforms/", "display_name": "WPForms"}, "jaredatch": {"avatar": "https://secure.gravatar.com/avatar/e48b918fcf7b3ef806516402e3b78524138f1a0c713fe5c0d835a7b6d8ae35a2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jaredatch/", "display_name": "Jared Atchison"}}, "last_updated": "2025-10-14 11:49am GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.8.2.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 6000000, "aspiresync_meta": {"id": "019a30bf-ff86-73fc-92cb-918e03d6d0a8", "name": "WPForms – Easy Form Builder for WordPress – Contact Forms, Payment Forms, Surveys, & More", "slug": "wpforms-lite", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760442540, "version": "1.9.8.2"}, "support_threads": 50, "requires_plugins": [], "short_description": "The best WordPress contact form plugin. Drag & Drop form builder to create beautiful contact forms, payment forms, & other custom forms.", "author_block_count": 1, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 47}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1f38-7251-aa45-9b89125137ca', 'did:web:api.aspiredev.org:packages:wp-plugin:wp-mail-smtp', 'wp-mail-smtp', 'WP Mail SMTP by WPForms – The Most Popular SMTP and Email Log Plugin', '

    WordPress Mail SMTP Plugin

    -

    Is your WordPress site not sending emails? You’re not alone. 3+ million websites use WP Mail SMTP to send emails reliably.

    -

    Our goal is to make email deliverability easy so that your emails always reach the inbox.

    -

    WP Mail SMTP fixes your email deliverability issues by reconfiguring WordPress to use a proper SMTP provider when sending emails.

    -

    Best of all, our easy-to-use Setup Wizard and detailed documentation guide you through the process.

    -

    WP Mail SMTP is free and has everything you need to reliably send your WordPress emails!

    -

    WP Mail SMTP Pro unlocks even more powerful features like email logging, advanced email reporting and stats, backup connections, email alerts, smart conditional routing, and much more.

    -

    -

    What is SMTP?

    -

    SMTP (Simple Mail Transfer Protocol) is an industry-standard for sending emails. Proper SMTP configuration helps increase email deliverability by adding authentication to the emails sent from your site.

    -

    Popular email clients like Gmail, Yahoo, Office 365, and Zoho are in a constant battle with email spammers, so they check whether emails are originating from a genuine sender. If the proper authentication isn’t there, emails either go in the SPAM folder or, worse, disappear.

    -

    This is a problem for a lot of WordPress sites. By default, WordPress uses the PHP mail function to send emails generated by WordPress or any contact form plugin like WPForms.

    -

    But most WordPress hosting companies don’t have their servers properly configured for sending PHP emails.

    -

    This is why WordPress emails aren’t delivered.

    -

    How does WP Mail SMTP work?

    -

    WP Mail SMTP plugin easily resolves email delivery problems by changing the way your WordPress site sends email. We reconfigure the wp_mail() function to use proper SMTP host credentials or an SMTP mail provider.

    -

    With our built-in SMTP mail provider integrations (recommended), emails are sent using the provider’s direct API. Even if your web host is blocking SMTP ports, your emails will still be sent successfully.

    -

    This helps you fix all WordPress not sending email issues.

    -

    WP Mail SMTP plugin includes many different SMTP mailers:

    -
      -
    1. SendLayer (#1 Recommended)
    2. -
    3. SMTP.com (Recommended)
    4. -
    5. Brevo (formerly Sendinblue) SMTP (Recommended)
    6. -
    7. Gmail SMTP (Gmail, Google Workspace, G Suite)
    8. -
    9. Elastic Email
    10. -
    11. Mailgun SMTP
    12. -
    13. Mailjet SMTP
    14. -
    15. SendGrid SMTP
    16. -
    17. Postmark SMTP
    18. -
    19. SparkPost SMTP
    20. -
    21. SMTP2GO
    22. -
    23. Microsoft SMTP One-Click Setup (Outlook.com and Office 365) [Pro]
    24. -
    25. Amazon SES SMTP [Pro]
    26. -
    27. Zoho Mail SMTP [Pro]
    28. -
    29. Other SMTP
    30. -
    -

    For most options, you can specify the “from name” and “email address” for outgoing emails too.

    -

    All of these powerful features make WP Mail SMTP the best SMTP solution for WordPress.

    -

    If you don’t know which mailer to choose, see our Complete Guide to WP Mail SMTP Mailers.

    -

    SendLayer

    -

    SendLayer is our #1 recommended transactional email service.

    -

    Its affordable pricing and simple setup make it the perfect choice for sending emails from WordPress. It also has open and click tracking and email logs.

    -

    SendLayer is reliable, fast, and easy to set up. You can send hundreds of emails for free when you sign up for a trial.

    -

    Read our SendLayer documentation for more details.

    -

    SMTP.COM

    -

    SMTP.com is a recommended transactional email service.

    -

    With over 22 years of email delivery expertise, SMTP.com has a reputation for being one of the most reliable senders on the internet.

    -

    You can start sending emails in minutes and benefit from 50,000 free emails in your first 30 days.

    -

    Read our SMTP.com documentation for more details.

    -

    Brevo (formerly Sendinblue) SMTP

    -

    Brevo is a recommended transactional email service. It serves 80,000+ companies worldwide.

    -

    Brevo is reliable, fast, and gives you 300 free emails per day.

    -

    Read our Brevo documentation for more details.

    -

    WP Mail SMTP PRO

    -

    In addition to native Microsoft, Amazon SES, and Zoho Mail integrations, WP Mail SMTP Pro provides access to many other powerful features.

    -

    Click here to purchase WP Mail SMTP Pro now!

    -

    Email Log

    -

    Email logging is a powerful feature that keeps a record of all sent emails in WordPress. Email logging helps you to archive, audit, resend, or test email delivery and formatting.

    -

    Our WordPress email logs also include:

    -

    Email Log Details

    -

    Our email logs provide a complete history of all emails sent from WordPress. View the subject, sender, recipients, content, headers, open and click rates, delivery status, source plugin, and more!

    -

    Resend Emails

    -

    Resend emails individually or in bulk, whether they failed or were delivered successfully. You can also forward important emails to an alternative email address.

    -

    And many more Email Log Features

    -

    Store all email attachments, export email logs, print emails, see delivery status, and more.

    -

    Email Reports

    -

    Review weekly sent and failed emails in a dashboard chart.

    -

    Email reports make it easy to track deliverability and engagement. Open rates and click-through rates are grouped by subject line, making it easy to see the performance of your campaigns or notifications.

    -

    Weekly Email Summary

    -

    Get statistics about WordPress emails, including how many emails are being sent and which ones are being opened and clicked. The Summary also shows you deliverability statistics without the need to log in to WordPress to check them.

    -

    Track Email Opens and Clicks

    -

    View open and click stats for WordPress emails, grouped by subject line in your Email Report.

    -

    Email Alerts

    -

    If your emails stop sending, get notified instantly via Slack, Microsoft Teams, Discord, SMS/ Twilio, webhooks, or email (via secure API).

    -

    In combination with our email logging and resending features, Email Alerts ensure that no important email will ever be lost.

    -

    Backup Connection

    -

    Configure an extra connection that kicks in if your primary connection fails. WP Mail SMTP automatically detects connection issues and automatically switches to the backup mailer. It will also automatically retry emails that failed.

    -

    Smart Conditional Routing

    -

    Create criteria to send different types of emails using different mailers. Filter by the contents of the email Subject or Message, From or To addresses, the plugin that generated the email, and more.

    -

    This allows you to mix transactional and marketing providers to improve deliverability.

    -

    Rate Limiting

    -

    Control the number of emails your WordPress site sends in a specific amount of time so you stay within your SMTP provider’s rate limits.

    -

    WP Mail SMTP allows you to specify the maximum number of emails that will be sent every minute, hour, day, week, or month and automatically queues emails to stay within those limits.

    -

    Optimized Email Sending

    -

    Are emails slowing down your site? Let WP Mail SMTP queue your emails for better performance.

    -

    With optimized sending, emails are queued in the background and sent when your server has sufficient resources, avoiding bottlenecks that can slow down your site.

    -

    Manage WordPress Emails and Notifications

    -

    Control the default notifications WordPress sends. Use a simple switch to disable specific types of notifications if you don’t want to receive them.

    -

    WordPress Multisite

    -

    WordPress Multisite Network Settings

    -

    For users running a multisite network, save time with a centralized location to easily configure your SMTP settings for all sites.

    -

    Manage Multisite Email Logs Easily

    -

    Network Admins can view and manage email logs for subsites with easy switching and dashboard views.

    -

    Expert Support

    -

    We provide limited support on the WordPress.org forums. World-class one-on-one email support is available to WP Mail SMTP Pro users.

    -

    White Glove Setup

    -

    If you’re not sure how to fix your emails, sit back and relax. We’ll set up WP Mail SMTP for you!

    -

    White Glove Setup includes installation, configuration in WordPress, DNS configuration, full mailer setup, and testing. White Glove Setup is available for our recommended mailers: SendLayer, Brevo, and SMTP.com.

    -

    Credits

    -

    WP Mail SMTP plugin was originally created by Callum Macdonald. It is now owned and maintained by the team behind WPForms – the best drag & drop form builder for WordPress.

    -

    You can try the free version of WPForms plugin to see why it’s the best in the market.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WP Mail SMTP by WPForms – The Most Popular SMTP and Email Log Plugin", "slug": "wp-mail-smtp", "tags": {"smtp": "smtp", "email": "email", "gmail": "gmail", "outlook": "outlook", "email-logs": "email logs"}, "added": "2007-09-12", "icons": {"1x": "https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440", "2x": "https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440"}, "author": "Syed Balkhi", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=3206423", "high": "https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=3206423"}, "ratings": {"1": 154, "2": 26, "3": 36, "4": 64, "5": 4661}, "version": "4.6.0", "homepage": "https://wpmailsmtp.com/", "requires": "5.5", "sections": {"faq": "\n
    \nWhich email providers does WP Mail SMTP support?\n\n

    \n

    SendLayer

    \n

    SendLayer is our #1 recommended transactional email service.

    \n

    Its affordable pricing and simple setup make it the perfect choice for sending emails from WordPress. It also has open and click tracking, email logs, and email list management.
    \nSendLayer is the best choice if you want a mailer that’s reliable, fast, and easy to set up. You can send hundreds of emails for free when you sign up for a trial.

    \n

    Read our SendLayer documentation for more details.

    \n

    SMTP.COM

    \n

    SMTP.com is a recommended transactional email service.

    \n

    With over 22 years of email delivery expertise, SMTP.com has been around for almost as long as email itself. They are known among internet providers as one of the most reliable senders on the internet.

    \n

    Their easy integration process lets you start sending emails in minutes and benefit from years of experience. SMTP.com provides users 50,000 free emails the first 30 days.

    \n

    Read our SMTP.com documentation for more details.

    \n

    Brevo (formerly Sendinblue) SMTP

    \n

    Brevo is a recommended transactional email service.

    \n

    They serve 80,000+ growing companies around the world and send over 30 million emails each day.

    \n

    Their email deliverability experts are constantly at work optimizing the reliability and speed of their SMTP infrastructure. Brevo provides users 300 free emails per day.

    \n

    Read our Brevo documentation for more details.

    \n

    Gmail SMTP (Gmail, Google Workspace, G Suite)

    \n

    Often bloggers and small business owners don’t want to use third-party SMTP services. Well you can use your Gmail or Google Workspace (also known as G Suite/Google Apps) account for SMTP emails.

    \n

    This allows you to use your professional email address and improve email deliverability.

    \n

    Unlike other Gmail SMTP plugins, our Gmail SMTP option uses OAuth to authenticate your Google account, keeping your login information 100% secure.

    \n

    Our plugin also offers the “One-Click Setup” option, which allows you to start sending emails from your Gmail account with just a few clicks. It eliminates the need to manually configure your own Google App, which is a technical and time-consuming process.

    \n

    Read our Gmail documentation for more details.

    \n

    Elastic Email

    \n

    Elastic Email is a cloud-based email marketing platform offering tools for email campaigns, automation, transactional emails, and analytics, designed for businesses of all sizes. Elastic Email offers a limited free plan where you can send emails to your verified addresses.

    \n

    Read our Elastic Email documentation for more details.

    \n

    Mailgun SMTP

    \n

    Mailgun SMTP is a popular SMTP service provider that allows you to send large quantities of emails. They provide 5,000 free emails per month for 3 months.

    \n

    WP Mail SMTP plugin offers a native integration with MailGun. All you have to do is connect your Mailgun account, and you will improve your email deliverability.

    \n

    Read our Mailgun documentation for more details.

    \n

    Mailjet SMTP

    \n

    Mailjet is a global email sending service that allows you to design, send, and track marketing and transactional emails. They provide 6,000 free emails per month (up to 200 emails per day).

    \n

    WP Mail SMTP plugin offers seamless integration with Mailjet. By connecting your Mailjet account, you can enhance your email deliverability and ensure your WordPress emails reach your recipients’ inboxes.

    \n

    Read our Mailjet documentation for more details.

    \n

    SendGrid SMTP

    \n

    SendGrid has a free SMTP plan that you can use to send up to 100 emails per day. With our native SendGrid SMTP integration, you can easily and securely set up SendGrid SMTP on your WordPress site.

    \n

    Read our SendGrid documentation for more details.

    \n

    Postmark SMTP

    \n

    Send emails securely using your Postmark account with our API integration. You can sign up for a free trial without a credit card, which allows you to send up to 100 emails per month.

    \n

    Read our Postmark documentation for more details.

    \n

    SparkPost SMTP

    \n

    SparkPost is a transactional email provider that’s trusted by big brands and small businesses. It sends more than 4 trillion emails each year and reports 99.9% uptime. You can get started with the free test account that lets you send up to 500 emails per month.

    \n

    Read our SparkPost documentation for more details.

    \n

    SMTP2GO

    \n

    SMTP2GO is a transactional email provider that offers a robust and reliable email delivery service with global infrastructure, real-time analytics, and advanced security features. If you’re just starting out, you can use SMTP2GO’s free plan to send up to 1000 emails per month.

    \n

    Read our SMTP2GO documentation for more details.

    \n

    Microsoft SMTP (Outlook.com and Office 365)

    \n

    The Microsoft 365 / Outlook mailer is a great choice if you already use Microsoft’s email services (Outlook, Office 365, Microsoft 365, or Hotmail). Due to the fairly complex manual Microsoft App configuration, we recommend the One-Click Setup, which will get you up and running in just a few seconds.

    \n

    Read our Outlook and Microsoft 365 documentation for more details.

    \n

    Amazon SES SMTP

    \n

    Advanced or technical users can harness the power of Amazon AWS (Amazon Web Services) with the Amazon SES mailer. With this integration, you can send a high volume of emails at a very reasonable rate.

    \n

    Read our Amazon SES documentation for more details.

    \n

    Zoho Mail SMTP

    \n

    Send emails using your personal or business Zoho Mail account, all while keeping your login credentials safe.

    \n

    Read our Zoho Mail documentation for more details.

    \n

    Other SMTP

    \n

    WP Mail SMTP plugin also works with all major email services such as Gmail, Yahoo, Outlook, Microsoft Live, and any other email sending service that offers SMTP.

    \n

    You can set the following options:

    \n
      \n
    • Specify an SMTP host.
    • \n
    • Specify an SMTP port.
    • \n
    • Choose SSL / TLS encryption.
    • \n
    • Choose to use SMTP authentication or not.
    • \n
    • Specify an SMTP username and password.
    • \n
    \n

    To see recommended settings for the popular services as well as troubleshooting tips, check out our SMTP documentation.

    \n

    \n
    \nCan I use this plugin to send email via Gmail, G Suite, Outlook.com, Office 365, Hotmail, Yahoo, or AOL SMTP?\n\n

    \n

    Yes! We have extensive documentation that covers setting up SMTP most popular email services.

    \n

    Read our docs to see the correct SMTP settings for each service.

    \n

    \n
    \nHelp! I need support or have an issue.\n\n

    \n

    Please read our support policy for more information.

    \n

    Limited support is available for WP Mail SMTP users via WordPress.org support forums.

    \n

    Email support and set up assistance is available to WP Mail SMTP Pro users.

    \n

    \n
    \nHow can I migrate from a different SMTP plugin to WP Mail SMTP?\n\n

    \n

    Want to switch from your old SMTP plugin to WP Mail SMTP? We made it easy for you to migrate your SMTP settings in one click!

    \n

    WP Mail SMTP will automatically detect your existing SMTP plugin (Easy WP SMTP, FluentSMTP, etc) when you run our easy Setup Wizard. Just click Import to copy your settings over.

    \n

    Our one-click migration tool supports all of these plugins:

    \n
      \n
    • Easy WP SMTP
    • \n
    • FluentSMTP
    • \n
    • Post SMTP Mailer
    • \n
    • SMTP Mailer
    • \n
    • WP SMTP
    • \n
    \n

    \n
    \nIs WP Mail SMTP available in other languages?\n\n

    \n

    We know that majority of people do not speak English, so we professionally translated WP Mail SMTP and WP Mail SMTP Pro into the following languages:

    \n
      \n
    • Spanish (Spain),
    • \n
    • German,
    • \n
    • Portuguese (Brazil),
    • \n
    • Italian,
    • \n
    • French,
    • \n
    • Japanese,
    • \n
    • Polish,
    • \n
    • Dutch,
    • \n
    • Russian,
    • \n
    • Turkish
    • \n
    \n

    \n
    \nHow can I increase plugin security?\n\n

    \n

    The WP Mail SMTP team takes security very seriously. Not only does the plugin follow all security best practices, but we have several options available to ensure your site is safe and secure.

    \n
      \n
    • \n

      Direct SMTP mailer integrations (recommended), such as SendLayer, SMTP.com, Brevo (formerly Sendinblue), Mailgun, SendGrid, Postmark, SparkPost and SMTP2GO, use the official provider APIs. This means you never enter your username or password in the plugin settings and these credentials are not stored in the database. Instead, we use tokens or API keys which are much more secure.

      \n
    • \n
    • \n

      When using Other SMTP mailer, we provide the option to insert your password in your wp-config.php file, so it’s not visible in your WordPress settings or saved in the database.

      \n
    • \n
    \n

    \n
    \nI found a bug, now what?\n\n

    \n

    If you’ve stumbled upon a bug, the best place to report it is in the WP Mail SMTP GitHub repository. GitHub is where the plugin is actively developed, and posting there will get your issue quickly seen by our developers (myself and Slava). Once posted, we’ll review your bug report and triage the bug. When creating an issue, the more details you can add to your report, the faster the bug can be solved.

    \n

    \n
    \nCan you add feature x, y or z to the plugin?\n\n

    \n

    Short answer: maybe.

    \n

    By all means please contact us to discuss features or options you’d like to see added to the plugin. We can’t guarantee to add all of them, but we will consider all sensible requests. We can be contacted here:
    \nhttps://wpmailsmtp.com/contact/.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works, but the vast majority of features are paid

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kazerniel on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Almost every settings page and dropdown menu are greyed out, because pay pay pay us.

    \n\n\n\n

    Plus large upsell banners on various settings pages, it all just feels pushy to the extreme.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy floartgraphy on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s a very good plugin that does what it''s supposed to do. I haven''t had any problems with any site I''ve installed it on. It''s very well-adapted for wordpress, doesn''t conflict with other plugins. Good job!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works perfectly

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fufy on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works perfectly. Easy setup. Very well documented. Solved my email sending problem.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    WP Mail SMTP simply works

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy 5oclockmktg on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Solved a very frustrating issue with MS/365 and Outlook.com emails from WordPress. Thank you all for this great plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    What a wounderful plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy msdan73 on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It is a very nice plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Mail test button is buried somewhere it can't be found easiiy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy David Favor (dfavor) on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Place the test button on the front page.

    \n\n\n\n

    Don''t flash a message where it''s buried, because the message disappears and can''t be found again.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    WP plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gregolly on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very good plugin, useful and easy to set up.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy helenbutt on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve used this on a number of websites alongside Brevo to ensure deliverability of emails and it has worked really well for me. Thank you.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Funktioniert bisher immer

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy eva (evaschild) on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Bereits mehrere andere Plugins ausprobiert und bin wieder zu Mail SMTP zurück gekehrt. Das hat bisher immer funktioniert.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jessebrightman on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Useless. Used to actually work

    \n
    \n
    \n", "changelog": "

    4.6.0 – 2025-08-26

    \n
      \n
    • Added: New transactional mailer: Mandrill integration.
    • \n
    • Fixed: References and In-Reply-To email headers are now correctly preserved for API-based mailers.
    • \n
    \n

    4.5.0 – 2025-06-05

    \n
      \n
    • IMPORTANT: Support for PHP 7.2 has been discontinued. If you are running this version, you MUST upgrade PHP before installing or upgrading to WP Mail SMTP v4.5. Failure to do that will disable WP Mail SMTP functionality.
    • \n
    • Added: New transactional mailer: MailerSend integration.
    • \n
    • Fixed: Microsoft Outlook basic auth deprecation notice dismissal.
    • \n
    • Changed: Updated the list of conflicting plugins (added Site Mailer, SureMail, Gravity SMTP).
    • \n
    \n

    4.4.0 – 2025-03-05

    \n
      \n
    • Fixed: Emails queue runner Action Scheduler task deadlock issue.
    • \n
    • Fixed: Undefined array key “wp_mail_smtp_reports_widget_lite” warning in the dashboard widget.
    • \n
    \n

    4.3.0 – 2024-12-11

    \n
      \n
    • Added: New transactional mailer: Elastic Email integration.
    • \n
    • Changed: The “Tools -> Scheduled Actions” menu is now always visible when WooCommerce or the Action Scheduler plugin is active.
    • \n
    • Fixed: SMTP password and username fields ignored WPMS_SMTP_AUTH constant.
    • \n
    \n

    4.2.0 – 2024-11-06

    \n
      \n
    • Added: New transactional mailer: Mailjet integration.
    • \n
    • Changed: Improved security for sensitive data (API keys).
    • \n
    • Fixed: SMTP2GO mailer special characters handling in from name.
    • \n
    \n

    4.1.1 – 2024-08-15

    \n
      \n
    • Changed: Delete wp-mail-smtp uploads folder on plugin uninstall, if the “Misc > Uninstall” option is enabled.
    • \n
    • Changed: Decreased PHPMailer timeout value to 30 seconds from 5 minutes.
    • \n
    • Changed: Improved Weekly Summary Email sending.
    • \n
    • Fixed: Missing Reply-To support in SMTP2GO mailer.
    • \n
    • Fixed: Setup Wizard translations not working correctly.
    • \n
    \n

    4.1.0 – 2024-07-17

    \n
      \n
    • Added: New transactional mailer: SMTP2GO.
    • \n
    • Changed: Recurring email queue tasks are now removed after completion.
    • \n
    • Fixed: Wrong namespace in PHP 8.0x Symfony polyfills.
    • \n
    • Fixed: All pending background tasks are now canceled on plugin deactivation.
    • \n
    \n

    4.0.1 – 2024-02-29

    \n
      \n
    • Added: Optimized Email Sending – move email sending requests in the background process and speed up your site.
    • \n
    • Added: Automatic database table structure migrations after plugin update.
    • \n
    • Changed: Improved error handling when sending emails.
    • \n
    • Fixed: Database error while adding debug events if the wpmailsmtp_debug_events table does not exist.
    • \n
    \n

    3.11.1 – 2024-01-22

    \n
      \n
    • Fixed: Setup Wizard texts.
    • \n
    • Fixed: Compatibility for List-Unsubscribe header.
    • \n
    \n

    3.11.0 – 2023-12-13

    \n
      \n
    • Added: Filter to customize the capability required for managing the plugin.
    • \n
    • Changed: Hide test tab movement notice for new users.
    • \n
    • Changed: Improved keyboard navigation styles for the Setup Wizard.
    • \n
    • Changed: Removed WPMailSMTP\\Admin\\PluginsInstallUpgrader class and switched to the WordPress Core Plugin_Upgrader class.
    • \n
    • Changed: The “From email” dropdown to the input field in the Gmail mailer.
    • \n
    • Fixed: PHP deprecation notices in the Setup Wizard on WordPress 6.4 and above.
    • \n
    • Fixed: Compatibility issue with Action Scheduler lower than 3.3.0.
    • \n
    \n

    3.10.0 – 2023-11-08

    \n
      \n
    • Added: Filter that allows to use your website’s URL for Google OAuth redirect URL.
    • \n
    • Changed: Improve plugin settings UI, by changing checkboxes to toggles and some dividers cleanup.
    • \n
    • Changed: Replaced moment.js library to the WP Core’s bundled one.
    • \n
    • Fixed: Translation strings on the Dashboard widget.
    • \n
    \n

    3.9.0 – 2023-08-30

    \n
      \n
    • Changed: Moved the Email Test tab from the settings page to the tools page.
    • \n
    • Changed: Removed Sendinblue SDK library because it was deprecated.
    • \n
    • Changed: Mailgun API instructions.
    • \n
    • Fixed: Debug Event details popup scrolling.
    • \n
    • Fixed: Conflict with other plugins (Alt Manager) that made the WP Plugins install page unusable.
    • \n
    \n

    3.8.2 – 2023-07-20

    \n
      \n
    • Changed: Improved notifications formatting and styles.
    • \n
    • Changed: Sendinblue rebranded to Brevo.
    • \n
    • Fixed: Explicitly set “Content-Type” header for the HTML test email.
    • \n
    \n

    3.8.0 – 2023-04-26

    \n
      \n
    • IMPORTANT: Support for PHP 5.6, 7.0, and 7.1 has been discontinued. If you are running one of those versions, you MUST upgrade PHP before installing or upgrading to WP Mail SMTP v3.8. Failure to do that will disable WP Mail SMTP functionality.
    • \n
    • Changed: Updated Moment.js library to 2.29.4.
    • \n
    • Changed: Removed unneeded sodium_compat library.
    • \n
    • Fixed: Email address with apostrophes in the Email Test page.
    • \n
    • Fixed: Review request notice display on subsites admin area in WP Multisite installation.
    • \n
    • Fixed: Setup Wizard playing UA anthem for certain WP sites.
    • \n
    \n

    3.7.0 – 2022-12-15

    \n
      \n
    • Changed: Improved Action Scheduler data cleanup on plugin uninstall.
    • \n
    • Changed: Improved performance for database table validation checks.
    • \n
    • Fixed: Tasks meta database table error.
    • \n
    • Fixed: Gmail mailer authorization error if the oAuth app already had other non mail scopes attached.
    • \n
    • Fixed: Email address validation in Setup wizard.
    • \n
    • Fixed: Removed unneeded composer libraries autoload code.
    • \n
    • Fixed: Conflict detection for plugin Sendinblue – WooCommerce Email Marketing (v3.0+)
    • \n
    \n

    3.6.1 – 2022-10-06

    \n
      \n
    • Added: The wp_mail function call backtrace to the Debug Events if the “Debug Email Sending” option is enabled.
    • \n
    • Added: Plugin’s DB tables re-creation process in WP Site Health.
    • \n
    • Added: Debug Events retention period setting.
    • \n
    • Changed: Updated the list of conflicting plugins (added Zoho Mail).
    • \n
    • Changed: Improved conflicting plugins’ admin notices (display multiple at once)
    • \n
    • Changed: Switched to the WP Core function is_email for verifying email addresses.
    • \n
    • Changed: Improved the detection if wp_mail function is overwritten.
    • \n
    • Fixed: Gmail mailer not using the correct From Email Address in Domain Checker.
    • \n
    • Fixed: Setup Wizard steps navigation, when going backwards.
    • \n
    \n

    3.5.2 – 2022-08-17

    \n
      \n
    • Fixed: The check if wp_mail function is overwritten on Windows servers.
    • \n
    \n

    3.5.1 – 2022-07-14

    \n
      \n
    • Changed: Removed MailPoet from the list of conflicting plugins.
    • \n
    • Fixed: PHP warning for undefined variable when using the Default (none) mailer.
    • \n
    \n

    3.5.0 – 2022-07-14

    \n
      \n
    • Added: Check if wp_mail function is overwritten.
    • \n
    • Added: DB table (wpmailsmtp_tasks_meta) cleanup after scheduled actions execution. Keeps DB size small.
    • \n
    • Changed: Updated the list of conflicting plugins (added Branda and MailPoet).
    • \n
    • Changed: Updated Action Scheduler library to 3.4.2.
    • \n
    • Fixed: SMTP.com mailer email content-encoding.
    • \n
    • Fixed: Dashboard widget graph when there is no email logs data.
    • \n
    • Fixed: Missing Sendinblue email body WP filter.
    • \n
    • Fixed: Chart.js library conflicts with other plugins.
    • \n
    \n

    3.4.0 – 2022-04-27

    \n
      \n
    • Added: New transactional mailer: SendLayer integration.
    • \n
    • Changed: Improved Mailgun API error message extraction.
    • \n
    • Changed: Standardized error messages format and improved WP remote request errors extraction.
    • \n
    • Fixed: Lite plugin uninstall actions clearing plugin options while Pro version is active.
    • \n
    • Fixed: Hiding unrelated network admin notices on WP Mail SMTP pages.
    • \n
    \n

    3.3.0 – 2022-02-17

    \n
      \n
    • IMPORTANT: Support for WordPress versions 5.1.x or lower has been discontinued. If you are using one of those versions, you MUST upgrade WordPress before installing or upgrading to WP Mail SMTP v3.3. Failure to do that will disable WP Mail SMTP functionality.
    • \n
    • Added: PHP 8.1 compatibility.
    • \n
    • Changed: Updated the list of conflicting plugins (added FluentSMTP and WP HTML Mail).
    • \n
    • Changed: Improved debug error message for the Other SMTP mailer in Debug Events.
    • \n
    • Changed: Updated Action Scheduler library to 3.4.0.
    • \n
    • Changed: Improved Action Scheduler performance.
    • \n
    • Fixed: PHP deprecated notices in Sendinblue library (PHP 7.4+).
    • \n
    • Fixed: DB tables row in Site Health Info section is now private.
    • \n
    • Fixed: Debug Events’ screen options visible on general Tools page.
    • \n
    • Fixed: Screen Options right alignment.
    • \n
    \n

    3.2.1 – 2021-11-17

    \n
      \n
    • Fixed: PHP 8 compatibility when existing Gmail mailer connection is revoked.
    • \n
    \n

    3.2.0 – 2021-11-11

    \n
      \n
    • Added: New transactional mailer – SparkPost integration.
    • \n
    • Added: One-click migration from FluentSMTP plugin.
    • \n
    • Added: Plugin constants integration in Setup Wizard.
    • \n
    • Fixed: Early plugin deactivation issue with activity log plugins.
    • \n
    \n

    3.1.0 – 2021-09-28

    \n
      \n
    • Added: New transactional mailer – Postmark integration.
    • \n
    • Added: Support for string attachments (added via PHPMailer object).
    • \n
    • Changed: Improved Email Source detection in Debug Events for WP Core sent emails.
    • \n
    • Changed: Improved uninstall process. It now removes all plugin DB data and tables.
    • \n
    • Fixed: Email Source detection in Debug Events for file paths with backslashes.
    • \n
    • Fixed: Blurry image assets in Weekly Email Summary.
    • \n
    • Fixed: PHP extension mb_strings not polyfilled correctly.
    • \n
    • Fixed: Added missing is_email_sent filters for Sendinblue, Mailgun, and Gmail mailers.
    • \n
    • Fixed: Debug Events double-entry DB save, because of a bug in is_email_sent method for certain mailers.
    • \n
    \n

    3.0.3 – 2021-08-09

    \n
      \n
    • Fixed: Weekly Summary Email sending when migration code didn’t trigger yet.
    • \n
    \n

    3.0.2 – 2021-08-05

    \n
      \n
    • Fixed: Fatal PHP error on WP version 5.2 and lower (missing wp_timezone function).
    • \n
    \n

    3.0.1 – 2021-08-05

    \n
      \n
    • Added: Weekly Email Summary – email sending statistics sent to your inbox.
    • \n
    • Added: Debug Events – logging all email sending errors and debug events.
    • \n
    • Added: Quick admin area links.
    • \n
    • Changed: Updated the successful Email Test screen.
    • \n
    • Changed: Updated Action Scheduler library to 3.2.1.
    • \n
    • Fixed: WP core admin spinner for the dashboard widget.
    • \n
    • Fixed: PHP error when objects implementing __invoke() method were used as hook callbacks for admin notices.
    • \n
    \n", "description": "

    WordPress Mail SMTP Plugin

    \n

    Is your WordPress site not sending emails? You’re not alone. 3+ million websites use WP Mail SMTP to send emails reliably.

    \n

    Our goal is to make email deliverability easy so that your emails always reach the inbox.

    \n

    WP Mail SMTP fixes your email deliverability issues by reconfiguring WordPress to use a proper SMTP provider when sending emails.

    \n

    Best of all, our easy-to-use Setup Wizard and detailed documentation guide you through the process.

    \n

    WP Mail SMTP is free and has everything you need to reliably send your WordPress emails!

    \n

    WP Mail SMTP Pro unlocks even more powerful features like email logging, advanced email reporting and stats, backup connections, email alerts, smart conditional routing, and much more.

    \n

    \n

    What is SMTP?

    \n

    SMTP (Simple Mail Transfer Protocol) is an industry-standard for sending emails. Proper SMTP configuration helps increase email deliverability by adding authentication to the emails sent from your site.

    \n

    Popular email clients like Gmail, Yahoo, Office 365, and Zoho are in a constant battle with email spammers, so they check whether emails are originating from a genuine sender. If the proper authentication isn’t there, emails either go in the SPAM folder or, worse, disappear.

    \n

    This is a problem for a lot of WordPress sites. By default, WordPress uses the PHP mail function to send emails generated by WordPress or any contact form plugin like WPForms.

    \n

    But most WordPress hosting companies don’t have their servers properly configured for sending PHP emails.

    \n

    This is why WordPress emails aren’t delivered.

    \n

    How does WP Mail SMTP work?

    \n

    WP Mail SMTP plugin easily resolves email delivery problems by changing the way your WordPress site sends email. We reconfigure the wp_mail() function to use proper SMTP host credentials or an SMTP mail provider.

    \n

    With our built-in SMTP mail provider integrations (recommended), emails are sent using the provider’s direct API. Even if your web host is blocking SMTP ports, your emails will still be sent successfully.

    \n

    This helps you fix all WordPress not sending email issues.

    \n

    WP Mail SMTP plugin includes many different SMTP mailers:

    \n
      \n
    1. SendLayer (#1 Recommended)
    2. \n
    3. SMTP.com (Recommended)
    4. \n
    5. Brevo (formerly Sendinblue) SMTP (Recommended)
    6. \n
    7. Gmail SMTP (Gmail, Google Workspace, G Suite)
    8. \n
    9. Elastic Email
    10. \n
    11. Mailgun SMTP
    12. \n
    13. Mailjet SMTP
    14. \n
    15. SendGrid SMTP
    16. \n
    17. Postmark SMTP
    18. \n
    19. SparkPost SMTP
    20. \n
    21. SMTP2GO
    22. \n
    23. Microsoft SMTP One-Click Setup (Outlook.com and Office 365) [Pro]
    24. \n
    25. Amazon SES SMTP [Pro]
    26. \n
    27. Zoho Mail SMTP [Pro]
    28. \n
    29. Other SMTP
    30. \n
    \n

    For most options, you can specify the “from name” and “email address” for outgoing emails too.

    \n

    All of these powerful features make WP Mail SMTP the best SMTP solution for WordPress.

    \n

    If you don’t know which mailer to choose, see our Complete Guide to WP Mail SMTP Mailers.

    \n

    SendLayer

    \n

    SendLayer is our #1 recommended transactional email service.

    \n

    Its affordable pricing and simple setup make it the perfect choice for sending emails from WordPress. It also has open and click tracking and email logs.

    \n

    SendLayer is reliable, fast, and easy to set up. You can send hundreds of emails for free when you sign up for a trial.

    \n

    Read our SendLayer documentation for more details.

    \n

    SMTP.COM

    \n

    SMTP.com is a recommended transactional email service.

    \n

    With over 22 years of email delivery expertise, SMTP.com has a reputation for being one of the most reliable senders on the internet.

    \n

    You can start sending emails in minutes and benefit from 50,000 free emails in your first 30 days.

    \n

    Read our SMTP.com documentation for more details.

    \n

    Brevo (formerly Sendinblue) SMTP

    \n

    Brevo is a recommended transactional email service. It serves 80,000+ companies worldwide.

    \n

    Brevo is reliable, fast, and gives you 300 free emails per day.

    \n

    Read our Brevo documentation for more details.

    \n

    WP Mail SMTP PRO

    \n

    In addition to native Microsoft, Amazon SES, and Zoho Mail integrations, WP Mail SMTP Pro provides access to many other powerful features.

    \n

    Click here to purchase WP Mail SMTP Pro now!

    \n

    Email Log

    \n

    Email logging is a powerful feature that keeps a record of all sent emails in WordPress. Email logging helps you to archive, audit, resend, or test email delivery and formatting.

    \n

    Our WordPress email logs also include:

    \n

    Email Log Details

    \n

    Our email logs provide a complete history of all emails sent from WordPress. View the subject, sender, recipients, content, headers, open and click rates, delivery status, source plugin, and more!

    \n

    Resend Emails

    \n

    Resend emails individually or in bulk, whether they failed or were delivered successfully. You can also forward important emails to an alternative email address.

    \n

    And many more Email Log Features

    \n

    Store all email attachments, export email logs, print emails, see delivery status, and more.

    \n

    Email Reports

    \n

    Review weekly sent and failed emails in a dashboard chart.

    \n

    Email reports make it easy to track deliverability and engagement. Open rates and click-through rates are grouped by subject line, making it easy to see the performance of your campaigns or notifications.

    \n

    Weekly Email Summary

    \n

    Get statistics about WordPress emails, including how many emails are being sent and which ones are being opened and clicked. The Summary also shows you deliverability statistics without the need to log in to WordPress to check them.

    \n

    Track Email Opens and Clicks

    \n

    View open and click stats for WordPress emails, grouped by subject line in your Email Report.

    \n

    Email Alerts

    \n

    If your emails stop sending, get notified instantly via Slack, Microsoft Teams, Discord, SMS/ Twilio, webhooks, or email (via secure API).

    \n

    In combination with our email logging and resending features, Email Alerts ensure that no important email will ever be lost.

    \n

    Backup Connection

    \n

    Configure an extra connection that kicks in if your primary connection fails. WP Mail SMTP automatically detects connection issues and automatically switches to the backup mailer. It will also automatically retry emails that failed.

    \n

    Smart Conditional Routing

    \n

    Create criteria to send different types of emails using different mailers. Filter by the contents of the email Subject or Message, From or To addresses, the plugin that generated the email, and more.

    \n

    This allows you to mix transactional and marketing providers to improve deliverability.

    \n

    Rate Limiting

    \n

    Control the number of emails your WordPress site sends in a specific amount of time so you stay within your SMTP provider’s rate limits.

    \n

    WP Mail SMTP allows you to specify the maximum number of emails that will be sent every minute, hour, day, week, or month and automatically queues emails to stay within those limits.

    \n

    Optimized Email Sending

    \n

    Are emails slowing down your site? Let WP Mail SMTP queue your emails for better performance.

    \n

    With optimized sending, emails are queued in the background and sent when your server has sufficient resources, avoiding bottlenecks that can slow down your site.

    \n

    Manage WordPress Emails and Notifications

    \n

    Control the default notifications WordPress sends. Use a simple switch to disable specific types of notifications if you don’t want to receive them.

    \n

    WordPress Multisite

    \n

    WordPress Multisite Network Settings

    \n

    For users running a multisite network, save time with a centralized location to easily configure your SMTP settings for all sites.

    \n

    Manage Multisite Email Logs Easily

    \n

    Network Admins can view and manage email logs for subsites with easy switching and dashboard views.

    \n

    Expert Support

    \n

    We provide limited support on the WordPress.org forums. World-class one-on-one email support is available to WP Mail SMTP Pro users.

    \n

    White Glove Setup

    \n

    If you’re not sure how to fix your emails, sit back and relax. We’ll set up WP Mail SMTP for you!

    \n

    White Glove Setup includes installation, configuration in WordPress, DNS configuration, full mailer setup, and testing. White Glove Setup is available for our recommended mailers: SendLayer, Brevo, and SMTP.com.

    \n

    Credits

    \n

    WP Mail SMTP plugin was originally created by Callum Macdonald. It is now owned and maintained by the team behind WPForms – the best drag & drop form builder for WordPress.

    \n

    You can try the free version of WPForms plugin to see why it’s the best in the market.

    \n", "screenshots": "
    1. \"WP

      WP Mail SMTP Settings page

    2. \"List

      List of mailers with Other SMTP settings example

    3. \"Backup

      Backup Connection (Pro)

    4. \"Setup

      Setup Wizard - Select your mailer

    5. \"Setup

      Setup Wizard - Example mailer settings

    6. \"Email

      Email Test page

    7. \"Email

      Email Log settings page (Pro)

    8. \"Email

      Email Controls settings page (Pro)

    9. \"Email

      Email Log archive page (Pro)

    10. \"Email

      Email Log single page (Pro)

    11. \"Email

      Email Reports - Email Log statistics grouped by email subject (Pro)

    12. \"Email

      Email Log bulk Export (Pro)

    13. \"Email

      Email Alerts - Get notified about failed emails (Pro)

    14. \"Additional

      Additional Connections - List of connections (Pro)

    15. \"Additional

      Additional Connections - Configuration page (Pro)

    16. \"Smart

      Smart Routing - Conditional logic for email sending (Pro)

    ", "installation": "
      \n
    1. Install WP Mail SMTP by WPForms either via the WordPress.org plugin repository or by uploading the files to your server. (See instructions on how to install a WordPress plugin)
    2. \n
    3. Activate WP Mail SMTP by WPForms.
    4. \n
    5. Navigate to the Settings area of WP Mail SMTP in the WordPress admin.
    6. \n
    7. Choose your SMTP option (SendLayer, SMTP.com, Brevo (formerly Sendinblue), Gmail SMTP, Elastic Email, Mailgun SMTP, Mailjet, SendGrid SMTP, Postmark, SparkPost, SMTP2GO, or Other SMTP) and follow the instructions to set it up.
    8. \n
    9. Need more help? Get support with WP Mail SMTP PRO.
    10. \n
    \n"}, "versions": {"0.4": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.4.zip", "0.6": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.zip", "0.3.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.3.1.zip", "0.3.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.3.2.zip", "0.4.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.4.1.zip", "0.4.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.4.2.zip", "0.5.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.5.0.zip", "0.5.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.5.1.zip", "0.5.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.5.2.zip", "0.8.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.2.zip", "0.8.3": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.3.zip", "0.8.4": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.4.zip", "0.8.5": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.5.zip", "0.8.6": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.6.zip", "0.8.7": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.7.zip", "0.9.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.0.zip", "0.9.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.6.zip", "1.0.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.0.2.zip", "1.1.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.5.zip", "1.3.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.3.3.zip", "1.4.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.4.2.zip", "1.5.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.5.2.zip", "1.6.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.6.0.zip", "1.6.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.6.2.zip", "1.7.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.8.1.zip", "1.9.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.9.0.zip", "2.0.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.0.1.zip", "2.1.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.1.1.zip", "2.2.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.2.1.zip", "2.3.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.5.1.zip", "2.6.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.6.0.zip", "2.7.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.7.0.zip", "2.8.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.8.0.zip", "2.9.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.9.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.0.3.zip", "3.1.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.1.0.zip", "3.2.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.2.1.zip", "3.3.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.4.0.zip", "3.5.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.5.2.zip", "3.6.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.6.1.zip", "3.7.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.7.0.zip", "3.8.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.8.0.zip", "3.8.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.8.2.zip", "3.9.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.9.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.0.1.zip", "4.1.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.1.1.zip", "4.2.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.2.0.zip", "4.3.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.3.0.zip", "4.4.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.4.0.zip", "4.5.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.5.0.zip", "4.6.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.6.0.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-mail-smtp.zip", "0.10.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.10.0.zip", "0.10.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.10.1.zip", "0.11.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.11.1.zip", "0.11.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.11.2.zip", "3.10.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.10.0.zip", "3.11.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.11.0.zip", "3.11.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.11.1.zip"}, "downloaded": 71356427, "description": "

    WordPress Mail SMTP Plugin

    \n

    Is your WordPress site not sending emails? You’re not alone. 3+ million websites use WP Mail SMTP to send emails reliably.

    \n

    Our goal is to make email deliverability easy so that your emails always reach the inbox.

    \n

    WP Mail SMTP fixes your email deliverability issues by reconfiguring WordPress to use a proper SMTP provider when sending emails.

    \n

    Best of all, our easy-to-use Setup Wizard and detailed documentation guide you through the process.

    \n

    WP Mail SMTP is free and has everything you need to reliably send your WordPress emails!

    \n

    WP Mail SMTP Pro unlocks even more powerful features like email logging, advanced email reporting and stats, backup connections, email alerts, smart conditional routing, and much more.

    \n

    \n

    What is SMTP?

    \n

    SMTP (Simple Mail Transfer Protocol) is an industry-standard for sending emails. Proper SMTP configuration helps increase email deliverability by adding authentication to the emails sent from your site.

    \n

    Popular email clients like Gmail, Yahoo, Office 365, and Zoho are in a constant battle with email spammers, so they check whether emails are originating from a genuine sender. If the proper authentication isn’t there, emails either go in the SPAM folder or, worse, disappear.

    \n

    This is a problem for a lot of WordPress sites. By default, WordPress uses the PHP mail function to send emails generated by WordPress or any contact form plugin like WPForms.

    \n

    But most WordPress hosting companies don’t have their servers properly configured for sending PHP emails.

    \n

    This is why WordPress emails aren’t delivered.

    \n

    How does WP Mail SMTP work?

    \n

    WP Mail SMTP plugin easily resolves email delivery problems by changing the way your WordPress site sends email. We reconfigure the wp_mail() function to use proper SMTP host credentials or an SMTP mail provider.

    \n

    With our built-in SMTP mail provider integrations (recommended), emails are sent using the provider’s direct API. Even if your web host is blocking SMTP ports, your emails will still be sent successfully.

    \n

    This helps you fix all WordPress not sending email issues.

    \n

    WP Mail SMTP plugin includes many different SMTP mailers:

    \n
      \n
    1. SendLayer (#1 Recommended)
    2. \n
    3. SMTP.com (Recommended)
    4. \n
    5. Brevo (formerly Sendinblue) SMTP (Recommended)
    6. \n
    7. Gmail SMTP (Gmail, Google Workspace, G Suite)
    8. \n
    9. Elastic Email
    10. \n
    11. Mailgun SMTP
    12. \n
    13. Mailjet SMTP
    14. \n
    15. SendGrid SMTP
    16. \n
    17. Postmark SMTP
    18. \n
    19. SparkPost SMTP
    20. \n
    21. SMTP2GO
    22. \n
    23. Microsoft SMTP One-Click Setup (Outlook.com and Office 365) [Pro]
    24. \n
    25. Amazon SES SMTP [Pro]
    26. \n
    27. Zoho Mail SMTP [Pro]
    28. \n
    29. Other SMTP
    30. \n
    \n

    For most options, you can specify the “from name” and “email address” for outgoing emails too.

    \n

    All of these powerful features make WP Mail SMTP the best SMTP solution for WordPress.

    \n

    If you don’t know which mailer to choose, see our Complete Guide to WP Mail SMTP Mailers.

    \n

    SendLayer

    \n

    SendLayer is our #1 recommended transactional email service.

    \n

    Its affordable pricing and simple setup make it the perfect choice for sending emails from WordPress. It also has open and click tracking and email logs.

    \n

    SendLayer is reliable, fast, and easy to set up. You can send hundreds of emails for free when you sign up for a trial.

    \n

    Read our SendLayer documentation for more details.

    \n

    SMTP.COM

    \n

    SMTP.com is a recommended transactional email service.

    \n

    With over 22 years of email delivery expertise, SMTP.com has a reputation for being one of the most reliable senders on the internet.

    \n

    You can start sending emails in minutes and benefit from 50,000 free emails in your first 30 days.

    \n

    Read our SMTP.com documentation for more details.

    \n

    Brevo (formerly Sendinblue) SMTP

    \n

    Brevo is a recommended transactional email service. It serves 80,000+ companies worldwide.

    \n

    Brevo is reliable, fast, and gives you 300 free emails per day.

    \n

    Read our Brevo documentation for more details.

    \n

    WP Mail SMTP PRO

    \n

    In addition to native Microsoft, Amazon SES, and Zoho Mail integrations, WP Mail SMTP Pro provides access to many other powerful features.

    \n

    Click here to purchase WP Mail SMTP Pro now!

    \n

    Email Log

    \n

    Email logging is a powerful feature that keeps a record of all sent emails in WordPress. Email logging helps you to archive, audit, resend, or test email delivery and formatting.

    \n

    Our WordPress email logs also include:

    \n

    Email Log Details

    \n

    Our email logs provide a complete history of all emails sent from WordPress. View the subject, sender, recipients, content, headers, open and click rates, delivery status, source plugin, and more!

    \n

    Resend Emails

    \n

    Resend emails individually or in bulk, whether they failed or were delivered successfully. You can also forward important emails to an alternative email address.

    \n

    And many more Email Log Features

    \n

    Store all email attachments, export email logs, print emails, see delivery status, and more.

    \n

    Email Reports

    \n

    Review weekly sent and failed emails in a dashboard chart.

    \n

    Email reports make it easy to track deliverability and engagement. Open rates and click-through rates are grouped by subject line, making it easy to see the performance of your campaigns or notifications.

    \n

    Weekly Email Summary

    \n

    Get statistics about WordPress emails, including how many emails are being sent and which ones are being opened and clicked. The Summary also shows you deliverability statistics without the need to log in to WordPress to check them.

    \n

    Track Email Opens and Clicks

    \n

    View open and click stats for WordPress emails, grouped by subject line in your Email Report.

    \n

    Email Alerts

    \n

    If your emails stop sending, get notified instantly via Slack, Microsoft Teams, Discord, SMS/ Twilio, webhooks, or email (via secure API).

    \n

    In combination with our email logging and resending features, Email Alerts ensure that no important email will ever be lost.

    \n

    Backup Connection

    \n

    Configure an extra connection that kicks in if your primary connection fails. WP Mail SMTP automatically detects connection issues and automatically switches to the backup mailer. It will also automatically retry emails that failed.

    \n

    Smart Conditional Routing

    \n

    Create criteria to send different types of emails using different mailers. Filter by the contents of the email Subject or Message, From or To addresses, the plugin that generated the email, and more.

    \n

    This allows you to mix transactional and marketing providers to improve deliverability.

    \n

    Rate Limiting

    \n

    Control the number of emails your WordPress site sends in a specific amount of time so you stay within your SMTP provider’s rate limits.

    \n

    WP Mail SMTP allows you to specify the maximum number of emails that will be sent every minute, hour, day, week, or month and automatically queues emails to stay within those limits.

    \n

    Optimized Email Sending

    \n

    Are emails slowing down your site? Let WP Mail SMTP queue your emails for better performance.

    \n

    With optimized sending, emails are queued in the background and sent when your server has sufficient resources, avoiding bottlenecks that can slow down your site.

    \n

    Manage WordPress Emails and Notifications

    \n

    Control the default notifications WordPress sends. Use a simple switch to disable specific types of notifications if you don’t want to receive them.

    \n

    WordPress Multisite

    \n

    WordPress Multisite Network Settings

    \n

    For users running a multisite network, save time with a centralized location to easily configure your SMTP settings for all sites.

    \n

    Manage Multisite Email Logs Easily

    \n

    Network Admins can view and manage email logs for subsites with easy switching and dashboard views.

    \n

    Expert Support

    \n

    We provide limited support on the WordPress.org forums. World-class one-on-one email support is available to WP Mail SMTP Pro users.

    \n

    White Glove Setup

    \n

    If you’re not sure how to fix your emails, sit back and relax. We’ll set up WP Mail SMTP for you!

    \n

    White Glove Setup includes installation, configuration in WordPress, DNS configuration, full mailer setup, and testing. White Glove Setup is available for our recommended mailers: SendLayer, Brevo, and SMTP.com.

    \n

    Credits

    \n

    WP Mail SMTP plugin was originally created by Callum Macdonald. It is now owned and maintained by the team behind WPForms – the best drag & drop form builder for WordPress.

    \n

    You can try the free version of WPForms plugin to see why it’s the best in the market.

    \n", "donate_link": "", "num_ratings": 4941, "screenshots": {"1": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-1.png?rev=2834385", "caption": "WP Mail SMTP Settings page"}, "2": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-2.png?rev=2834385", "caption": "List of mailers with Other SMTP settings example"}, "3": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-3.png?rev=2834385", "caption": "Backup Connection (Pro)"}, "4": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-4.png?rev=2715420", "caption": "Setup Wizard - Select your mailer"}, "5": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-5.png?rev=2715420", "caption": "Setup Wizard - Example mailer settings"}, "6": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-6.png?rev=2834385", "caption": "Email Test page"}, "7": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-7.png?rev=2834385", "caption": "Email Log settings page (Pro)"}, "8": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-8.png?rev=2834385", "caption": "Email Controls settings page (Pro)"}, "9": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-9.png?rev=2834385", "caption": "Email Log archive page (Pro)"}, "10": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-10.png?rev=2834385", "caption": "Email Log single page (Pro)"}, "11": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-11.png?rev=2578698", "caption": "Email Reports - Email Log statistics grouped by email subject (Pro)"}, "12": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-12.png?rev=2578698", "caption": "Email Log bulk Export (Pro)"}, "13": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-13.png?rev=2834385", "caption": "Email Alerts - Get notified about failed emails (Pro)"}, "14": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-14.png?rev=2834385", "caption": "Additional Connections - List of connections (Pro)"}, "15": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-15.png?rev=2834385", "caption": "Additional Connections - Configuration page (Pro)"}, "16": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-16.png?rev=2834385", "caption": "Smart Routing - Conditional logic for email sending (Pro)"}}, "support_url": "https://wordpress.org/support/plugin/wp-mail-smtp/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "slaffik": {"avatar": "https://secure.gravatar.com/avatar/1d442bc94c6f4198991d0886f34c9d6482710d5a15ad5e358ef802e2a41818be?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/slaffik/", "display_name": "Slava Abakumov"}, "wpforms": {"avatar": "https://secure.gravatar.com/avatar/7fb6cd90cbb1ee023c8c977fdbf7a3d719607d75d998a3a54642fe19cbd87896?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpforms/", "display_name": "WPForms"}, "capuderg": {"avatar": "https://secure.gravatar.com/avatar/7f3dce4f4cf2b11cb8652edba21dd6171ad81c4acd28fd5728f012e38e6d658f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/capuderg/", "display_name": "Gregor Capuder"}, "jaredatch": {"avatar": "https://secure.gravatar.com/avatar/e48b918fcf7b3ef806516402e3b78524138f1a0c713fe5c0d835a7b6d8ae35a2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jaredatch/", "display_name": "Jared Atchison"}}, "last_updated": "2025-08-29 7:57am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.6.0.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 4000000, "aspiresync_meta": {"id": "019a30bf-fe98-702f-ba65-93200e35b954", "name": "WP Mail SMTP by WPForms – The Most Popular SMTP and Email Log Plugin", "slug": "wp-mail-smtp", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1756454220, "version": "4.6.0"}, "support_threads": 33, "requires_plugins": [], "short_description": "Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, SendGrid, Mailgun, SES, Zoho, + more. Rated #1 WordPress SMTP Email plugin.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 28}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1f47-71f6-ab9e-3220566959c0', 'did:web:api.aspiredev.org:packages:wp-plugin:wp-multibyte-patch', 'wp-multibyte-patch', 'WP Multibyte Patch', '

    Multibyte functionality enhancement for the WordPress Japanese package.
    -日本語の説明を読む

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WP Multibyte Patch", "slug": "wp-multibyte-patch", "tags": {"i18n": "i18n", "japanese": "Japanese", "multibyte": "multibyte", "wp-multibyte-patch": "wp-multibyte-patch"}, "added": "2011-07-14", "icons": {"default": "https://s.w.org/plugins/geopattern-icon/wp-multibyte-patch.svg"}, "author": "Seisuke Kuraishi", "rating": 100, "status": "open", "tested": "6.8.3", "banners": [], "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 23}, "version": "2.9.2", "homepage": "https://eastcoder.com/code/wp-multibyte-patch/", "requires": "5.2", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    MUST HAVE for Japanese sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy skillsharejp on May 4, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    MUST HAVE plugin if you use Japanese on your sites!
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wordpress 5以降でも必須

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy armdroid on December 31, 2019\t\t\t

    \n\t\t
    \n\t
    \n\t
    Wordpress5からデフォルトでなくなったので「もういらない」と思ったら大間違い。\n現在でも日本語ファイルのアップロードなどでも困らないように対処してくれます。
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    とりあえずで入れている

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nosann on February 28, 2019\t\t\t

    \n\t\t
    \n\t
    \n\t
    最新のバージョンにも対応しているのでとりあえず入れて使ってる\nこのプラグインでエラーの原因になった覚えはないし\nサポートされ続ける限り入れたままにするだろう
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Susumu Seino (musus) on June 19, 2018\t\t\t

    \n\t\t
    \n\t
    \n\t
    It was a great plugin in Japanese.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    使わせて頂いています。

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy itigo100 on January 7, 2018\t\t\t

    \n\t\t
    \n\t
    \n\t
    有用なプラグインを開発して頂いてありがとうございます。
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not bad

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy larrysmorgan37 on December 24, 2017\t\t\t

    \n\t\t
    \n\t
    \n\t
    Insightful
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks You!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kutsu on October 13, 2017\t\t\t

    \n\t\t
    \n\t
    \n\t
    いつも大変お世話になってます!ありがとうございます!
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy megane9988 on September 15, 2017\t\t\t

    \n\t\t
    \n\t
    \n\t
    Thanks ありがとうございます。
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    thakns a lot!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Sai (saimelt) on July 9, 2017\t\t\t

    \n\t\t
    \n\t
    \n\t
    thank you always for everything!(いつもありがとうございます、活用させていただいています!)
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ありがとうございます

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ryow30 on July 9, 2017\t\t\t

    \n\t\t
    \n\t
    \n\t
    日本語でWordPressが使えるのも WP MultiByte Patch があってこそ。\n開発いただきありがとうございます。
    \n
    \n", "description": "

    Multibyte functionality enhancement for the WordPress Japanese package.
    \n日本語の説明を読む

    \n", "installation": "
      \n
    1. Upload the wp-multibyte-patch folder to the /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the Plugins menu in WordPress.
    4. \n
    \n"}, "versions": {"1.5": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.0.zip", "2.2": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.9.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.4.2.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.5.1.zip", "1.6.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.6.4.zip", "2.1.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.1.1.zip", "2.3.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.3.1.zip", "2.8.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.5.zip", "2.9.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.zip"}, "downloaded": 7334500, "description": "

    Multibyte functionality enhancement for the WordPress Japanese package.
    \n日本語の説明を読む

    \n", "donate_link": "", "num_ratings": 23, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/wp-multibyte-patch/", "contributors": {"tenpura": {"avatar": "https://secure.gravatar.com/avatar/17def5dd78fa60b396713eb0d40c53961f9e6193e3f3ccf2a44b5abd34c9acd9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tenpura/", "display_name": "Seisuke Kuraishi"}}, "last_updated": "2025-04-14 3:11pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.9.2.zip", "author_profile": "https://profiles.wordpress.org/tenpura/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fea8-7228-8714-e8ef96f1c9af", "name": "WP Multibyte Patch", "slug": "wp-multibyte-patch", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1744643460, "version": "2.9.2"}, "support_threads": 0, "requires_plugins": [], "short_description": "Multibyte functionality enhancement for the WordPress Japanese package.", "author_block_count": 0, "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 0}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1f56-715c-8263-4da1db4b35ac', 'did:web:api.aspiredev.org:packages:wp-plugin:wp-optimize', 'wp-optimize', 'WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance', '

    MORE THAN A CACHING PLUGIN

    -

    WP-Optimize is trusted by more than 1 million WordPress website owners to boost performance and reduce page load times to improve your site’s user experiences and SERP rankings in Google.

    -

    It does this in four clever ways:

    -

    1. It caches your site

    -

    Caching is the process of storing a temporary HTML version of your site on the server so it can be retrieved more quickly for the user.

    -

    It’s a sure-fire way to ensure web pages load at lightning-fast speed. Turn it on in just one click.

    -

    2. It compresses images

    -

    Large images can really impact page speed load times. WP-Optimize makes it easy to identify and compress images to your preferred lossy / lossless settings in a couple of clicks.

    -

    3. It cleans the database

    -

    Your WordPress database stores everything that you need, plus some things that you don’t. WP-Optimize cleans and optimizes the database to speed up your site and save server resources.

    -

    4. It minifies

    -

    On top of its three main features, WP-Optimize Cache also has the more advanced minification feature.

    -

    Together with caching, minification dramatically improves performance and page speed load time.

    -

    1. CACHE YOUR SITE

    -

    Turn on caching in just one click:

    -

    WP-Optimize automatically and optimally configures itself for your WordPress site. Turn it on in one-click or refine its settings if you prefer.

    -

    More cache features:

    -
      -
    • -

      Cache preloading: This feature emulates a visit to your site, meaning cached files are served straight away, speeding up your site from the very first visit.

      -
    • -
    • -

      GZIP Compression: When the server isn’t configured to do so, WP-Optimize delivers HTML, CSS and JS files to the user’s browser as smaller, compressed files, reducing the size of pages and style sheets by up to 90%!

      -
    • -
    • -

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster [Premium].

      -
    • -
    -

    Use cache settings to:

    -
      -
    • -

      Serve cached content to logged in users: Turn this on if content stays the same for logged in users (or turn on and exclude URLs where content does change e.g. my account areas).

      -
    • -
    • -

      Exclude content from cache: Exclude by URL, conditional tags, browser agent strings or list cookies that should prevent caching when set (advanced user settings).

      -
    • -
    • -

      Deliver device-specific cache: Serve separate cache files to desktop and mobile devices . This ensures that responsive features e.g. desktop and mobile menus are cached separately and served correctly.

      -
    • -
    • -

      User per role cache: Useful if your website delivers different content to different user roles. e.g. an e-commerce site that displays different content to resellers or consumers [Premium].

      -
    • -
    • -

      User specific cache: Serves separate cache files to individual users. Useful for websites with personalised content e.g. Learning management systems [Premium].

      -
    • -
    • -

      Cache purging permissions: Select which user roles are allowed to purge the cache e.g. admin only or perhaps a ‘teacher’ role in an LMS setting only [Premium].

      -
    • -
    -

    2. COMPRESS IMAGES

    -
      -
    • -

      Lossy or lossless compression options: Choose between maximum space saving, best image quality or somewhere in-between.

      -
    • -
    • -

      WebP conversion: Recommended by Google, WebP can achieve up to 34% smaller file sizes compared to JPEG and up to 26% compared to PNG.

      -
    • -
    • -

      Auto-compress: Check a box and every new image you upload will automatically be compressed to your preferred lossy / lossless settings.

      -
    • -
    • -

      Bulk compression: Compress every existing image on your site with the press of a button.

      -
    • -
    • -

      Restore original: Gone too far? Revert images back to their original in one click.

      -
    • -
    • -

      Retain EXIF image data: Check a box to retain EXIF image data during compression.

      -
    • -
    • -

      Lazy Load: Webpages load much faster by loading web parts gradually, when they’re needed vs simultaneous loading of everything, all at once [Premium].

      -
    • -
    • -

      Delete orphaned images: Identify and delete unused images from your WordPress website, saving disk space [Premium].

      -
    • -
    • -

      Delete unused image sizes: WordPress creates multiple sizes for every uploaded image causing the uploads folder to become bloated. Scan for image sizes not in use and remove them to save further disk space [Premium].

      -
    • -
    -

    3. CLEAN AND OPTIMIZE THE DATABASE

    -

    Cleans-up database tables, post revisions, auto draft posts, trashed posts, spam, trashed comments and more. Choose what to optimize or it’s one click to clean out the lot.

    -
      -
    • -

      Schedule clean-ups: So you can set and forget. Choose from daily, weekly, fortnightly or monthly.

      -
    • -
    • -

      Flexible clean-up schedules: You may wish to optimize database tables more frequently than you remove unapproved comments (for example). Choose the specific time and day when tasks should run [Premium].

      -
    • -
    • -

      Retain a set number of weeks’ data during clean-ups: Just in case you need to retrieve something.

      -
    • -
    • -

      Back up before clean-ups: If you delete something you shouldn’t, restore it in a couple of clicks with UpdraftPlus.

      -
    • -
    • -

      Power tweak – Turbo boost for WooCommerce: Unique to WP-Optimize, this power tweak boosts performance by replacing a slow query in WooCommerce with two much more efficient queries. E-commerce sites transacting high numbers of orders stand to gain here [Premium].

      -
    • -
    • -

      Power tweak – Boost performance by indexing the postmeta table: This unique power tweak works by allowing the WordPress postmeta table to be indexed, improving performance [Premium].

      -
    • -
    -

    4. MINIFY AND COMBINE HTML, CSS AND JAVASCRIPT

    -
      -
    • -

      Minify in just one click: Minifies HTML, JavaScript and CSS. Toggle on or off or customise each one under ‘settings’.

      -
    • -
    • -

      Customise minification: Minify only (removing unnecessary code e.g line breaks and white spacing) or minify and merge. Apply the same or different settings to HTML, CSS and JavaScript.

      -
    • -
    • -

      Asynchronous loading: Choose non-critical CSS and JavaScript files to load in the background and independently of other resources e.g. analytics or pixel scripts. Loading asynchronously eliminates render blocking and improves page speed.

      -
    • -
    • -

      Exclude files from being minified: Specify CSS and JavaScript files to exclude from minification.

      -
    • -
    • -

      Optimize fonts: Optimize Font Awesome and Google Fonts. Inline the font files, inherit from CSS settings or load CSS / Javascript asynchronously instead.

      -
    • -
    • -

      Preload assets: WP-Optimize visits each web page on your site so the code is minified and preloaded for real life users, right from their very first visit.

      -
    • -
    • -

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster.

      -
    • -
    -

    WHY WP-OPTIMIZE?

    -
      -
    • It’s brought to you by TeamUpdraft, the team behind the world’s most trusted backup, migration and restoration plugin.
    • -
    • It’s easy to use.
    • -
    • It packs a punch for a free plugin.
    • -
    -

    WP-Optimize brings the best cache and optimization technology together into one single, seamless plugin to make your WordPress site fast, lean and efficient.

    -

    PREMIUM FEATURES AT A GLANCE

    -

    Our free version of WP-Optimize Cache is great, but we also have an even more powerful Premium version with extra features that offer the ultimate in freedom and flexibility:

    -
      -
    • Multisite Support: extends database optimisations so they function for multiple WordPress sites at a time. If you manage more than one website, you will need WP-Optimize Cache Premium.
    • -
    • Flexibility and Control: gives you the power to optimize select individual tables or a particular combination of tables on one or more WordPress websites, rather than having to optimize all database tables.
    • -
    • Deleting unused and unwanted images: removes orphaned images from your WordPress site, plus images of a certain, pre-defined size.
    • -
    • Sophisticated Scheduling: offers a wide range of options for scheduling automatic optimization. Specify an exact time and run clean-ups daily, weekly, fortnightly or monthly and perform any number of additional once off optimizations.
    • -
    • Seamless Graphical User Interface: for superb clarity in scheduling and managing of multi-site optimizations.
    • -
    • WP-CLI support: provides a way to manage optimizations from command-line interface if you have lots of sites
    • -
    • Lazy Loading: load only the images and part of a web-page when it is visible to the user so they can see something very quickly.
    • -
    • Optimization Preview: gives users the ability to preview, select and remove data and records available for optimization from the database.
    • -
    • Preload key requests: preload assets such as web fonts and icon fonts, as recommended by Google PageSpeed Insights.
    • -
    • Premium support – caching is one of the most complex things you can do for a website, so premium support offers you peace of mind there’s someone to talk quickly to if you need any technical answers or help configuring the optimizations of cache settings for your website.
    • -
    -

    Translations

    -

    Translators are welcome to contribute to the plugin. Please use the WordPress translation website.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance", "slug": "wp-optimize", "tags": {"cache": "cache", "minify": "minify", "caching": "caching", "image-cache": "image cache", "performance-cache": "performance cache"}, "added": "2009-01-21", "icons": {"1x": "https://ps.w.org/wp-optimize/assets/icon-128x128.png?rev=1552899", "2x": "https://ps.w.org/wp-optimize/assets/icon-256x256.png?rev=1552899"}, "author": "David Anderson / Team Updraft", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-optimize/assets/banner-772x250.png?rev=2125385", "high": "https://ps.w.org/wp-optimize/assets/banner-1544x500.png?rev=2125385"}, "ratings": {"1": 84, "2": 24, "3": 23, "4": 75, "5": 2302}, "version": "4.3.0", "homepage": "https://teamupdraft.com/wp-optimize", "requires": "4.9", "sections": {"faq": "\n
    \nIsn’t it better to use a dedicated caching plugin to cache my site?\n\n

    \n

    We’ve built WP-Optimize Cache around the most advanced and powerful caching technology. Our caching tests and feedback from real-world users show that the caching feature alone can make your site faster than any other cache plugin or optimization. See these speed test results.

    \n

    \n
    \nIs optimizing my database safe?\n\n

    \n

    Yes; optimizing does not involve any “tricks” or poking around in dangerous ways. It involves running routine clean-up operations using well-defined, common MySQL commands. Nevertheless, we always recommend backups, which cover every possibility; not just database malfunctions, but hackers, human errors, etc. We recommend UpdraftPlus.

    \n

    \n
    \nWhat savings can I expect to make?\n\n

    \n

    This is a “how long is string?” sort of question. It depends completely on your site – how big it is, how many users interact on it, how long it has been running, and when you last optimised it. However, the savings and speed-ups can be substantial; it is always worth making sure that your database is optimised.

    \n

    \n
    \nHow do I get support?\n\n

    \n

    In our support forum, here: https://wordpress.org/support/plugin/wp-optimize/

    \n

    \n
    \nWP-Optimize does not make large savings on my database\n\n

    \n

    This is rare; it’s probably because you’re with a shared web hosting company that doesn’t allow scripts to run an optimize command via SQL statements (SQL “OPTIMIZE” instruction). Please consult your web hosting company on this matter.

    \n

    \n
    \nIs the plugin tried and tested?\n\n

    \n

    Yes – WP-Optimize Cache is WordPress’s #1 most-installed optimisation plugin, with over 800,000 users and a pedigree going back over 8 years.

    \n

    \n
    \nDoes WP-Optimize support InnoDB tables?\n\n

    \n

    WP-Optimize will disable some features if it detects InnoDB tables. Optimization of the database tables on-disk is not available, but other clean up features would work.

    \n

    \n
    \nCan you help me restore my database?\n\n

    \n

    Not unless you have an existing backup. Please ensure that you make a backup of your entire database before using WP-Optimize for the first time, and when you upgrade to a major new version of it. We recommend UpdraftPlus.

    \n

    \n
    \nAre there any bugs in this plugin?\n\n

    \n

    The plugin is an ongoing work; that means that it is impossible to rule out unforeseen situations and bugs. So I would recommend you to test it out on your local system or make a backup of your database (just to be extra careful).

    \n

    \n
    \nHow do I stop transient options from coming back automatically each time I clear them?\n\n

    \n

    When WordPress uses a particular transient, that specific transient is re-created automatically. So, it’s normally for ones which are in active use to gradually re-appear. The best way to keep things optimal is to clear the transient options on a scheduled basis. For example, WordPress may create 50 transient option in a week. If you schedule WP-Optimize Cache to clear these options on a weekly basis, you’ll have far fewer building up.

    \n

    \n
    \nThe table size shows wrong / Not optimizing\n\n

    \n

    Please check your database for corrupted tables. That can happen, usually your web hosting company can run the repair command on the db.

    \n

    \n
    \nWhich WordPress and PHP versions are supported?\n\n

    \n

    To use all features in the plugin, a minimum of version WordPress 4.9 with PHP 7.2 are required. But we do recommend to use the latest version of WordPress. Using PHP 7.2+ is also highly recommended, as our caching feature will work even faster.

    \n

    \n
    \nWhich optimisation will make the biggest difference?\n\n

    \n

    This depends on your setup (theme, number and quality of plugins used, etc…), but generally, caching will make the biggest visible difference to your website’s performance. Indeed, the cache functionality bypasses most of WordPress code to serve your pre-optimised cached pages directly to your visitor, significantly increasing the speed.

    \n

    \n
    \nWhat is caching, or page caching?\n\n

    \n

    “Caching”, from Wikipedia: “In computing, a cache is a hardware or software component that stores data so that future requests for that data can be served faster; the data stored in a cache might be the result of an earlier computation or a copy of data stored elsewhere. A cache hit occurs when the requested data can be found in a cache, while a cache miss occurs when it cannot.” — WP-Optimize cache does this by saving the page computed by WordPress on the disk. When a user visits a page, WP-Optimize will serve the cached page before WordPress is loaded. If the page wasn’t cached before, it will be computed by WordPress, and WP-Optimize will then save the result to the cache.

    \n

    \n
    \nWhy should I use a caching plugin on my website?\n\n

    \n

    You think your site is fast without caching? A caching plugin will make your website even faster. A faster cached website will increase SEO, it will improve your visitors experience. Caching will also save your server’s resources.

    \n

    \n
    \nIs the WP-Optimize page cache compatible with Gutenberg and WordPress 5.0+?\n\n

    \n

    Yes, your Gutenberg pages will be cached, as well as those created with page builder plugins such as Elementor.

    \n

    \n
    \nHow do I know my webpage is being cached (or why it isn’t)?\n\n

    \n

    If cache is enabled, and in order to see if your page is cached, use the “View Source” function in your web browser to view the page source. To find caching information, scroll down to the bottom, and you should see a line added by the cache: <!-- Cached by WP Optimize - https://teamupdraft.com/wp-optimize/ - Last modified: Sat, 20 Jul 2019 21:17:19 GMT ->
    \nHowever, note that if you are using a further service that minifies HTML (e.g. Cloudflare), then this line may have been removed. Another method is to inspect the contents of the directory wpo-cache inside your wp-content directory. <a href=”https://teamupdraft.com/documentation/wp-optimize/topics/caching/faqs/how-do-i-know-my-webpage-is-being-cached/>Further information can be read here
    \nAlso note that if you do not preload the cache, a page or post will have to be visited once for the cache file to be generated.

    \n

    \n
    \nHow do I configure the page cache?\n\n

    \n

    Go to WP-Optimize -> Cache and enable caching. For most people, that will be enough. If you run an e-commerce, have a custom login page or any page that has dynamic content, you might want to exclude certain urls from the cache. Visit documentation for help.

    \n

    \n
    \nIs the caching feature compatible with e-commerce plugins?\n\n

    \n

    Yes, caching with WP-Optimize Cache allows you to safely cache your products, with plugins like WooCommerce or Easy Digital Downloads, or any e-commerce that uses DONOTCACHEPAGE to exclude sensitive pages from caching (e.g. my account, cart or checkout pages).

    \n

    \n
    \nIs the caching feature compatible with multilingual plugins?\n\n

    \n

    Yes, WP-Optimize works with popular multilingual plugins like WPML or Polylang. However, it’s important to note that when using WP-Optimize with multilingual plugins, the URL format for different languages should not include any query parameters, for example https://example.com/?lang=en. Instead, it should be in a pretty permalink format, such as https://example.com/en.

    \n

    \n
    \nDo I need a special setup to use the caching feature?\n\n

    \n

    No, if WordPress works properly, WP-Optimize will be able to cache your pages and posts.

    \n

    \n
    \nCan I use the page caching feature together with another cache plugin?\n\n

    \n

    No, because both cache plugins would need to use the drop-in plugin advanced-cache.php. If you turn off caching on WP-Optimize Cache, you can use any other caching plugin and still use the other features of WP-Optimize. But we do recommend using our caching solution.

    \n

    \n
    \nIs WP-Optimize caching compatible with Cloudflare?\n\n

    \n

    Yes! No special cache configuration is needed. Page caching on the WP site (that done by WP-Optimize Cache) is independent of proxy caching (e.g. Cloudflare) – you can use both, or neither, and they will complement each other and not interfere.
    Just one thing to note – Cloudflare will strip out the special HTML comment at the bottom of the source of a page that is helpful to confirm that page caching is working, so, don’t be confused by that – it’s absence doesn’t indicate the cache is not working.

    \n

    \n
    \nCan I empty the cache automatically when performing a custom action?\n\n

    \n

    Yes, you can trigger a cache purge action using WP-Optimize Cache public functions. If you want to clear the whole cache, use the function wpo_cache_flush(). If you want to clear the cache files for a specific page or post, use WPO_Page_Cache::delete_single_post_cache($post_id);. Those cache options are available after WP action plugins_loaded.

    \n

    \n
    \nWill the comments work even when page caching is enabled?\n\n

    \n

    Yes, when using WordPress’ commenting system, your users will still be able to post comments. Every time a comment is approved, the cache for that page or post will be cleared, allowing the next visitor to see an up to date list of comments.

    \n

    \n
    \nWhat is “cache preloading”?\n\n

    \n

    Usually, a page is cached when a user visits it. So the first user visiting won’t be served a cached version of the page, and will wait longer than the next users. The cache preloading functionality will go through all your pages and posts, and simulate a visit by a user, allowing WP-Optimize to cache the pages before anyone visits them. Your first visitor will thus be served a cached version of the page, increasing its performance.

    \n

    \n
    \nWhat frequency should I choose for the cache preloading schedule?\n\n

    \n

    Choosing a frequency for the cache preloading schedule will depend on factors such as the frequency at which the website content is updated, the number of pages in the cache, the resources of the server and more.
    \nFor example a site with hundreds of pages will require more resources to preload its cache. So choosing a high frequency will mean that the cache will be recreated often, and the resource usage will be higher.
    \nOn a website where updates aren’t as frequent, you can even disable the cache preloading schedule, or set a high cache lifespan and set the cache preloading schedule to follow it.

    \n

    \n
    \nHow do I cache only the home page?\n\n

    \n

    Add /.+ to the cache option “URLs to exclude from cache” on the advanced settings tab.

    \n

    \n
    \nHow do I prevent WP-Optimize Cache from caching a certain page\n\n

    \n

    To prevent a page from being cached, you can add the URL to the field “URLs to exclude from cache” in the cache “Advanced settings” tab. If you are developing a plugin and want to prevent a page from being cached, you can define the “DONOTCACHEPAGE” constant on the pages you need. Any request where “DONOTCACHEPAGE” is defined will not be cached.

    \n

    \n
    \nIs the caching feature of WP-Optimize free?\n\n

    \n

    Yes the caching feature is free. You will always be able to cache your website for free using WP-Optimize and we are constantly working on improving the existing cache feature. We will add more caching options to the free version and develop more specific caching options in the premium version to enable you to taylor the caching functionality to your needs.

    \n

    \n
    \nWhere does WP-Optimize Cache store the cached files?\n\n

    \n

    The cached files are stored in the common “wp-content/cache” folder, inside a “wpo-cache” folder. Removing the “cache” folder will delete all of WP-Optimize’s cache, as well as those from other plugins.
    \nDeleting the “cache” folder is generally safe, as those cached files will be regenerated.

    \n

    \n
    \nHow do I disable caching?\n\n

    \n

    Go to WP-Optimize settings > Cache and toggle the “Enable page caching” option to on/off.

    \n

    \n
    \nWill caching slow down my server?\n\n

    \n

    No, caching will actually reduce the load on your server, by reducing the amount of PHP and mysql used. You might see a peak in resource usage when using the cache preloader, as this functionality will create the cache files for all your pages in a short amount of time. But once this is done, performance should increase and the load on your server will decrease. Every single major site uses caching to serve cached pages faster by using fewer resources.

    \n

    \n
    \nCan I make certain parts of the page stay dynamic when cache is enabled?\n\n

    \n

    The cached page is sent to the user before most of WordPress was loaded. The plugins aren’t loaded yet, making it impossible for them to change the cached content at every request.
    \nSo at the moment if you want to keep parts of your page dynamic (e.g. adverts, widgets, shopping cart…) AND keep it cached, you will have to use custom solutions using javascript and AJAX to fetch those dynamic parts from the server.

    \n

    \n
    \nHow do I delete the WP_CACHE define from wp-config.php?\n\n

    \n

    WP-Optimize Cache will remove the “WP_CACHE” constant from wp-config.php when you disable page caching, or when you deactivate the cache plugin. If you need to remove it manually, you can use FTP to edit wp-config.php and delete the line define (‘WP_CACHE’, true );
    \nIf page caching is still enabled in the settings, WP-Optimize Cache will attempt to add the line again, as it is required for the caching functionality to work.

    \n

    \n
    \nMy filesystem is not writable to increase security. What do I need to do to make it compatible with the caching functionality?\n\n

    \n

    WP-Optimize caching feature needs write access to the ‘wp-content/cache’ folder, as this is where the cache files will be stored. It also needs to define the constant ‘WP_CACHE’ in ‘wp-config.php’, it will need access once to ‘wp-content/advanced-cache.php’, as well as to the folder ‘wp-content/wpo-cache’ to write the cache settings.

    \n

    \n
    \nHow do I change file permissions?\n\n

    \n

    If you need to change file permissions to enable caching, you can follow the instructions on this page https://wordpress.org/support/article/changing-file-permissions/

    \n

    \n
    \nWhat is the maximum number of pages I can cache?\n\n

    \n

    There is no limit to the number of pages you can cache. The only limit is the space on your server and the maximum number of subdirectories allowed by your server, as caching will write files in subdirectories following the permalink structure.
    \nIf you were to reach a caching limit, it probably means that your server is not fit for the size of your website and caching needs.

    \n

    \n
    \nHow do I serve cached pages to people using a phone or tablet?\n\n

    \n

    You can generate a separate cache by selecting “Generate separate files for mobile devices” in the page cache settings. This cache setting is only necessary if you use a specific theme for mobile devices, or for certain AMP plugins.

    \n

    \n
    \nDoes WP-Optimize Cache work with Nginx?\n\n

    \n

    Yes, the cache feature works with Nginx. Should you want to enable browser caching or GZIP compression, you will have to do this yourself directly on the server settings.

    \n

    \n
    \nDoes caching work with Windows Server (IIS) ?\n\n

    \n

    Yes, the cache feature works with IIS. As with Nginx, if you need to enable browser caching or GZIP compression, you will have to do this yourself on the server.

    \n

    \n
    \nDoes the WP-Optimize page cache work with non-pretty (query parameter-based) permalinks?\n\n

    \n

    No. It’s necessary to have pretty permalinks of the type http://xxxxx.com/my-post/ rather than http://xxxxx.com/?p=1234 for cache to work. Pretty permalinks are the WordPress default setting, and there is no good reason to turn them off, so you should not have a problem with this.
    \nNote that cache will work with permalinks including /index.php/. It is only those based upon query parameters (?…) where cache won’t work.

    \n

    \n
    \nWhen does WP-Optimize clear the page cache?\n\n

    \n

      \n
    • When you publish new content or update/edit existing content, the cache for that post/page will be cleared.
    • \n
    • Changing/updating current themes and parent themes (of child themes) will purge the cache.
    • \n
    • When turning off the cache feature in WP-Optimize
    • \n
    \n

    \n
    \nWill pages in the WP admin dashboard be cached?\n\n

    \n

    No, WP dashboard pages are not cached. The cache functionality is only meant to cache frontend pages.

    \n

    \n
    \nWhat is cache lifespan?\n\n

    \n

    The cache lifespan is the time a cached file will be kept before being regenerated.
    \nOne of the main reason for setting a lifespan to your cache is that some plugins and themes use nonces, which are printed in the source code of the page (Read more about nonces here). These nonces cannot be reused and are valid for 12 hours by default (developers can change that value). The cache plugin will store the nonce in the page, and this one will become invalid after that perdiod of time, which can affect certain functionalities of your plugins and themes. Setting a cache lifespan to under 10 hours ensures the cache is flushed automatically before the nonce expires. This way you can use WP-Optimize’s cache feature on sites which use nonces.
    \nAn other reason is that you may want your pages to reflect some changes without having to clear the whole cache. Indeed if you have many pages and posts, you might not want to clear every cache file with every change, but rather set an interval at which they will expire and be regenerated.

    \n

    \n
    \nWhat value should the cache lifespan be?\n\n

    \n

    A lower cache lifespan value will result in more frequent cache update activity on your server, and thus more preload processes, if activated.
    \nIf your site does not use nonces, and your site’s cache doesn’t need to be updated often, you can set the cache lifespan to a high value or to 0 to give it an infinite lifespan.
    \nThe cache lifespan option is set to 10 hours by default, but you may go down to 8 or even less.
    \nIf you notice any issues due to high server load, set a higher interval for the preloader.

    \n

    \n
    \nCan WP-Optimize Cache minify JavaScript, CSS and HTML?\n\n

    \n

    Yes, the newly added Minify enables you to minify JavaScript and CSS. It also enables you to minify HTML.

    \n

    \n
    \nWhy minify my WordPress site?\n\n

    \n

    WP-Optimize Cache’s Minify feature is all about increasing the speed of your WordPress site for your users.
    \nOne way Minify does this is by reducing the size of your HTML, CSS and JavaScript files by removing unnecessary spaces and lines from the files and shortening long names internally within the code.
    \nAnother way is that your files are merged into as few files as possible. This reduces the amount of load on your web server and can be quicker to load fewer files.
    \nYou can also defer the loading of any CSS or JavaScript file. This means any large or extraneous CSS or JavaScript file can be loaded independently from the core of your WordPress site; giving your users quicker access to your site.

    \n

    \n
    \nWhat does “Reset the minified files” actually do?\n\n

    \n

    Pressing the “Reset the minified files” does:
    \n* delete the temporary files used when generating the minified assets
    \n* delete old minified files (more than 30 days old)
    \n* add a folder for the new minified files, which will be generated when visiting a page
    \nThe previously minified CSS files will remain on the server until they expire, or until they’re deleted using the button “Delete all the files generated by minify”.

    \n

    \n
    \nCan I defer CSS and JavaScript using WP-Optimize Cache?\n\n

    \n

    Yes, the newly added minification feature (a.k.a. Minify) allows you to defer parsing of JavaScript and CSS.

    \n

    \n
    \nGoogle’s PageSpeed Insights says to leverage the font-display CSS feature to ensure text is user-visible while webfonts are loading. Can WP-Optimize Cache do that?\n\n

    \n

    Leveraging the font-display CSS feature is currently possible when using Google Fonts. The default parameter is “swap”, but can be changed using the WordPress filter “wpo_minify_gfont_display_type”.

    \n

    \n
    \nWhen enabling minify, my site’s layout is broken. How can I fix it?\n\n

    \n

    This usually means one or more of your CSS files are incompatible with the minification or merging process. It can also be caused by errors in the CSS’s syntax.
    \nYou can check the CSS’s syntax by using an online CSS syntax checker such as csslint.net.
    \nIf your syntax is not causing the issue, or you cannot change the file with an issue, you can either exclude the problematic CSS files from the minification and merging process.
    \nTo exclude individual CSS files from the minification and merging process, you can go to WP-Optimize > Minify > CSS and go to the “Exclude the following CSS files from processing” section.

    \n

    \n
    \nWhen enabling minify, some functionality is broken. How can I fix it?\n\n

    \n

    This usually means one or more of your JavaScript files are incompatible with the minification or merging process. It can also be caused by errors in the JavaScript’s syntax.
    \nThe first thing to try is to enable the setting “Contain each included file in its own block” in the JavaScript options (WP-Optimize > Minify > Javascript > JavaScript options). This could “catch” an error, and prevent the rest of the code to be broken.
    \nIf the first option didn’t work, try disabling merging of JavaScript files.
    \nIf none of the above works, disable processing of JavaScript files in the minify settings, and open a support thread with details about your issue. We’ll do our best to help you troubleshoot the issue.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    easy to handle

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dr-motte (dr. motte) on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WP-Optimize is a great plugin for my self hosted wordpress website. it can handle security, speed and optimisation like compress images, minify code, cache, website performance, database, and more. i will delete other plugins for it. thank you very much.
    i am very happy -> drmotte.de

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A versatile, well-designed plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy room34 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I try to avoid overloading the sites I build with a lot of plugins. I''ve got a carefully curated short list of plugins I rely on for every site, and this is one of them. I really like the fact that this plugin includes database optimization, caching, and image compression features all in one well-designed and easy-to-use interface. A must-have plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    🌟 5-Star Review: WP-Optimize – The Magic Plugin for Your Website's Speed!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iMedia stores (imediastores) on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    \n\n\n\n

    I just had to share my amazing experience with the WP-Optimize plugin, which has made a dramatic difference in my website''s performance! If you are looking for a simple and effective way to turbocharge your WordPress site, I highly recommend this plugin.🚀 Why I Recommend WP-Optimize:

    \n\n\n\n
      \n
    • Noticeable Speed Boost: After using the plugin to clean and optimize my database, I immediately noticed a significant improvement in page loading speed. The site feels much lighter and more responsive.
    • \n\n\n\n
    • Comprehensive Database Cleanup: The most valuable feature for me is its ability to thoroughly clean the database, removing unnecessary post revisions, transient data, and other clutter that quietly slows down your site.
    • \n\n\n\n
    • Ease of Use: The interface is incredibly user-friendly. Anyone, even beginners, can use it and apply the necessary optimizations with just a single click. No complex technical expertise is required.
    • \n\n\n\n
    • Valuable Extra Features: The plugin also offers excellent options for image compression and caching, which complement the optimization process and ensure the best possible performance.
    • \n
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very easy to use and works perfect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Christer Edman (cremaninnovation) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using it for a year now and it is stable and working perfect!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Pretty good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Vishy Moghan on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It would be 5 stars if they removed this subscription nonsense. Tech companies need to realise that if Adobe goes down it''s at least 80% because of that stupid decision. No one like buying things and not owning them outright.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kiprokoparis on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Perfect to gain control over your database weight

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dareko on October 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It works smoothly

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Работает

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fedor77 on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Пользуюсь больше года.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    very helpful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mykha on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    very helpful

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent Choice

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fabwolf (936awdiary) on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very happy with this plugin and its reliable service!

    \n
    \n
    \n", "changelog": "

    4.3.0 – 22/Sep/2025

    \n
      \n
    • FEATURE: Premium – Cache – Cache REST API requests
    • \n
    • FEATURE: Premium – Further reduce CSS files sizes by removing unused CSS rules
    • \n
    • FIX: Added backward compatibility for timezone and datetime functions and improved status report support for older WordPress versions like 4.9.
    • \n
    • FIX: PHP Warning file_exists(): open_basedir restriction in effect
    • \n
    • FIX: Prevented buffer initialization during wp-cron when HTML DOM is unavailable.
    • \n
    • REFACTOR: Database – Table Usage – Refactored execute_query_analysis() function
    • \n
    • TWEAK: Added new UpdraftCentral endpoints
    • \n
    • TWEAK: Enhanced multisite support: added performance widget to Network Dashboard and fixed sub-site widgets to show only site-specific 404 request counts.
    • \n
    • TWEAK: Fix external loading of Gtag analytics script
    • \n
    • TWEAK: Moved the tooltip tag outside the tag
    • \n
    • TWEAK: Performance – 404 Detector (Not Found Requests) added a button to clear all logs.
    • \n
    • TWEAK: Publishing a post or custom post type (CPT) no longer clears the cache of all posts of the same type.
    • \n
    • TWEAK: Removed return statements from constructors and added checks at the point of class instantiation.
    • \n
    • TWEAK: Smush – Enhanced compatibility and performance with EWWW Image Optimizer installed
    • \n
    • TWEAK: Premium – Added cache support for Nelio A/B Testing plugin
    • \n
    • TWEAK: Added a hook to trigger custom code when a page is not cached
    • \n
    \n

    4.2.4 – 30/Jul/2025

    \n
      \n
    • FIX: Potential PHP fatal error when no site is selected during database optimization in multisite
    • \n
    • FIX: Issue where the database optimization spinner remained indefinitely active
    • \n
    • FIX: PHP 8.4 compatibility warnings
    • \n
    • FIX: Minify default exclusions fatal error
    • \n
    • FIX: Premium – Potential PHP fatal error – type hinting error in the database table usage feature
    • \n
    • FIX: Premium – Page cache and lazy load meta boxes no longer display on post edit screen when their respective options are disabled
    • \n
    • FIX: Only purge relevant files when a published post is saved; also purge the author archive cache upon post save
    • \n
    • FIX: Premium – Fixed compatibility of Table usage with WordPress versions earlier than 5.3
    • \n
    • REFACTOR: Premium – Database – Table Usage – added missed translation functions
    • \n
    • TWEAK: Purged content will preload only when cache is enabled, and the user-agent has been updated to a modern browser and OS version
    • \n
    • TWEAK: Update seasonal advert banner logos, texts and links
    • \n
    • TWEAK: Update plugin readme text and links
    • \n
    • TWEAK: Premium – Cache – Add UI element to ignore query variables
    • \n
    • TWEAK: Premium – Database – Table Usage – replaced loading state with native modal
    • \n
    • TWEAK: Removed seasonal discount ads except Black Friday
    • \n
    \n

    4.2.3 – 15/Jul/2025

    \n
      \n
    • FIX: Cache – Resolved PHP warning caused by excessively long cache file names
    • \n
    • FIX: Corrected typo from meta data to metadata
    • \n
    • FIX: Cron reschedule event error for hook wpo_prune_404_log when is_minimum_requirement_met is false
    • \n
    • FIX: Premium – Fixed a rare PHP warning that could occur when saving a post
    • \n
    • FIX: Unused image – incorrect image filtering in multisite
    • \n
    • FIX: WP Remote sync conflict caused in v4.2.1 and v4.2.2 By replacing wp_salt with core PHP functions
    • \n
    • FIX: YouTube lazy-load – Thumbnail image now falls back to JPG if browser doesn’t support WebP
    • \n
    • FIX: WebP images were not being served in Firefox on certain environments
    • \n
    • TWEAK: 404 detector logs URLs on mobile screens goes out of viewport fixed.
    • \n
    • TWEAK: CSS Improvements, better font size handling, remove duplication, and SASS instead of import
    • \n
    • TWEAK: Delay YouTube preview image cache purging
    • \n
    • TWEAK: Display notice when server does not allow database optimizations
    • \n
    • TWEAK: Enhanced database optimization compatibility with jQuery 4
    • \n
    • TWEAK: Fixed incorrect transients count in database optimizations UI
    • \n
    • TWEAK: Improved sanitization of incoming data in Updraft_Smush_Manager_Commands
    • \n
    • TWEAK: Minify – Improved compatibility with Divi theme’s dynamically generated assets
    • \n
    • TWEAK: Multisite corrected site count in database optimizations UI.
    • \n
    • TWEAK: Preserve EXIF data is set to false by default in all places at codebase level.
    • \n
    • TWEAK: Update URLs of links and images to point to https://teamupdraft.com
    • \n
    \n

    4.2.2 – 02/June/2025

    \n
      \n
    • FIX: Cache – Resolved unwanted output in WP-CLI and fatal error related to WooCommerce’s country-specific files, introduced in v4.2.0
    • \n
    • TWEAK: Premium – Cache – Compatibility with WordPress 6.8
    • \n
    \n

    4.2.1 – 05/May/2025

    \n
      \n
    • FIX: Cache – Compatibility issue with other plugins due to late start of output buffering
    • \n
    • TWEAK: Improved array handling in get_active_plugins(), potentially avoiding edge-case fatal error
    • \n
    \n

    4.2.0 – 01/May/2025

    \n
      \n
    • SECURITY: On multisite installs (only), a logged-in site administrator could use an unsanitised parameter to inject unwanted content into SQL queries. Thanks to Marc Montpas for the responsible disclosure.
    • \n
    • FEATURE: Premium – Replace YouTube Iframes with preview images to improve page speed
    • \n
    • FIX: Fix conflict with the WPML plugin
    • \n
    • FIX: Smush – Fixed PHP warning on the Media Library page
    • \n
    • FIX: Smush – Fixed issue where the Smush popup would freeze
    • \n
    • FIX: WebP images not served after WP-Optimize reactivation
    • \n
    • REFACTOR: Smush option removed from media upload modal
    • \n
    • TWEAK: Update advert banner logos, texts and links
    • \n
    • TWEAK: Add missing separator between compression items in media library
    • \n
    • TWEAK: Avoid PHP warning thrown by Page Speed Ninja plugin
    • \n
    • TWEAK: Cache – Start caching after plugins loaded
    • \n
    • TWEAK: Fix PHP deprecation warning in PHPSQLParser for PHP 8.4
    • \n
    • TWEAK: Fix deprecation warning in Updraft_Logger class for PHP 8.4
    • \n
    • TWEAK: Fixes absence of checkbox to remove all transients
    • \n
    • TWEAK: Premium – Support and feedback links in Help tab now point to getwpo.com
    • \n
    \n

    4.1.1 – 05/Mar/2025

    \n
      \n
    • FIX: Page builders not working with Delay JS option enabled
    • \n
    \n

    4.1.0 – 03/Mar/2025

    \n
      \n
    • FEATURE: Premium – Improve performance by caching Gravatar images locally.
    • \n
    • FIX: Premium – Unused images – Fixed warnings when moving non existing image to trash
    • \n
    \n

    4.0.1 – 17/Feb/2025

    \n
      \n
    • FIX: File system usage issue
    • \n
    \n

    4.0.0 – 10/Feb/2025

    \n
      \n
    • FEATURE: Delay JavaScript execution
    • \n
    • FIX: Cache – Fixed PHP warning “Cannot modify header information”
    • \n
    • FIX: Minify – Unusual behavior occurs when the “Disable Google Fonts processing” option is enabled
    • \n
    • FIX: Smush – Fixed image compression actions in Media Library
    • \n
    • REFACTOR: Replacing jQuery Tablesorter with ‘sortable-tablesort’ package
    • \n
    • TWEAK: Cache – Enhance ActivityPub compatibility
    • \n
    • TWEAK: Fix PHP notice caused by subscriben plugin advert
    • \n
    • TWEAK: Minimum requirements were updated to PHP version 7.2 and WordPress version 4.9
    • \n
    • TWEAK: Remove uses of unserialize without restriction of allowed_classes
    • \n
    • TWEAK: Recognise Independent Analytics Pro plugin tables in database optimization
    • \n
    \n

    3.8.0 – 09/Dec/2024

    \n
      \n
    • FEATURE: Added a system status page
    • \n
    • FEATURE: Logs frequent and highly recurrent 404 requests; introduces a new Performance tab.
    • \n
    • FIX: Cache – Legacy Widgets visibility issue with WP-Optimize Cache enabled
    • \n
    • FIX: Cache – UI issue: Preload “Cancel” option is gone after reloading the WPO settings page instantly
    • \n
    • FIX: Database – optimizing any item also changes the status of other items
    • \n
    • REFACTOR: Minify – Removal of the WPO_MINIFY_PHP_VERSION_MET constant
    • \n
    • TWEAK: Add a warning message before deleting post metadata or orphaned relationship data.
    • \n
    • TWEAK: Bailout early if the minimum PHP version is not met
    • \n
    • TWEAK: Introduced logging for cache purge operations, available under uploads/wpo/logs/cache-*.log
    • \n
    • TWEAK: Open CRON overdue guide in new tab
    • \n
    • TWEAK: Persist Analytics Tab when minification is disabled
    • \n
    • TWEAK: Premium – Unused Images – Improved detection of images not present in the Media Library, marking them as used
    • \n
    • TWEAK: UI improvements in Analytics section
    • \n
    • TWEAK: Wrapped checkboxes inside label tags in the confirmation popup that appears when clicking the “Remove” button on the Database > Tables tab.
    • \n
    \n

    3.7.1 – 20/Nov/2024

    \n
      \n
    • TWEAK: Resolved a PHP notice caused by translation loading too early when caching is enabled, introduced in WordPress 6.7
    • \n
    \n

    3.7.0 – 21/Oct/2024

    \n
      \n
    • FEATURE: Added an option to automatically preload URLs immediately after cache content is purged
    • \n
    • FEATURE: Premium – Gather data about table usage by filtering query event
    • \n
    • FIX: Cache – Scheduled preloading wasn’t working
    • \n
    • FIX: Inconsistency in smush_manager_send_command function
    • \n
    • REFACTOR: Smush – Popup styles, remove unused code
    • \n
    • TWEAK: Fix fatal implode error when updating to v3.5.0
    • \n
    • TWEAK: Image compression – Issue with cancelling smush image compression
    • \n
    • TWEAK: Improve module minification logic
    • \n
    • TWEAK: Premium – Unused images – Fixed popup when moving images to or restoring images from the trash
    • \n
    • TWEAK: Premium – Unused images – Placeholder images in unused images section
    • \n
    • TWEAK: Added security.md file with information to report security issues
    • \n
    \n

    3.6.0 – 12/Sep/2024

    \n
      \n
    • FEATURE: Premium – Auto-detect images lacking dimension attributes and add them to improve CLS
    • \n
    • FIX: Fixed the issue that disabled WebP conversion due to checking all shell commands for WebP compression
    • \n
    • FIX: Premium – Unused Images – The unused image size deletion functionality does not work when images are not in the /yyyy/mm/ folder
    • \n
    • REFACTOR: Removed unnecessary static methods in WebP class
    • \n
    • TWEAK: Image compression – Rolled back to using popup error notices as in versions prior to 3.4.0
    • \n
    • TWEAK: Added a more descriptive error with resolution proposals for failed gzip compression and browser cache tests
    • \n
    • TWEAK: Fix broken unused image list thumbnails and download as csv link in Multisite
    • \n
    • TWEAK: Fix the singleton pattern in Heartbeat class
    • \n
    • TWEAK: Image compression functionality added to the Media Library page
    • \n
    • TWEAK: Premium – Cache – Added support for Aelia Currency Switcher plugin
    • \n
    • TWEAK: Premium – Unused images – improve clarity in UI for images in post revisions
    • \n
    • TWEAK: Added additional checks to the implode() function to mitigate the risk of fatal errors on certain instances
    • \n
    \n

    3.5.0 – 14/Aug/2024

    \n
      \n
    • FEATURE: Premium – Host Google and minimal analytics scripts locally
    • \n
    • FIX: Premium – Cache – Single page cache purge/preload feature isn’t working
    • \n
    • TWEAK: Add logging for the WebP feature
    • \n
    • TWEAK: Allow minification of script modules
    • \n
    • TWEAK: Cache – Purge the cache when the site is migrated
    • \n
    • TWEAK: Improvements to asset minification cache logic
    • \n
    • TWEAK: Improvements to reSmushIt curl error message
    • \n
    • TWEAK: Minify – Added an option to disable Google Fonts processing when it causes conflicts with other plugins
    • \n
    • TWEAK: Move all WPO files from the uploads folder to uploads/wpo
    • \n
    • TWEAK: Style improvement of the loading modals
    • \n
    \n

    3.4.2 – 03/Jul/2024

    \n
      \n
    • FIX: Removes unnecessary heartbeat calls for retrieving information about images
    • \n
    \n

    3.4.1 – 26/Jun/2024

    \n
      \n
    • FIX: Issue with bulk editing on the posts and pages edit screen
    • \n
    \n

    3.4.0 – 25/Jun/2024

    \n
      \n
    • FEATURE: Premium – Smush – Bulk compress / restore from media library
    • \n
    • FIX: Deactivate the form for minifying JS/CSS settings when the corresponding option is disabled
    • \n
    • REFACTOR: The functionality for the ‘Unused Images’ feature in ACF has been moved to a separate class
    • \n
    • TWEAK: Add UpdraftCentral commands for the latest WP-Optimize features
    • \n
    • TWEAK: Adjusted the scheduled preload time for improved performance
    • \n
    • TWEAK: Auto-update advanced-cache.php settings during site migration
    • \n
    • TWEAK: Cache – Human-readable file names for the cache directory
    • \n
    • TWEAK: Caching related cron jobs are activated even though cache is disabled
    • \n
    • TWEAK: Image compression – Updated message for restoring images action
    • \n
    • TWEAK: Implement Heartbeat API for image compression progress updates
    • \n
    • TWEAK: Improving vendor autoload
    • \n
    • TWEAK: Introduces a hook (wpo_force_webp_serve_using_altered_html) for changing WebP serving method
    • \n
    • TWEAK: Minify – Exclude .min files from minification
    • \n
    • TWEAK: Minify – Improve list of processed files UI
    • \n
    • TWEAK: Optimization of the get_uncompressed_image query
    • \n
    • TWEAK: Persist script loading strategy when minifying JS files
    • \n
    • TWEAK: Premium – Compatibility with Curcy WooCommerce multi currency plugin
    • \n
    • TWEAK: Premium – Unused Images – Added an option to delete original images when scaled versions exist
    • \n
    \n

    3.3.2 – 16/Apr/2024

    \n
      \n
    • FIX: Ensure the admin bar is not cached when caching is enabled for both logged-in and guest users
    • \n
    • REFACTOR: Remove unused code
    • \n
    • TWEAK: Cache – Prevent sitemaps being cached
    • \n
    • TWEAK: Display a notice when static browser cache is enabled but not working
    • \n
    • TWEAK: Premium – Added “Lost your password?” link on plugin’s page
    • \n
    • TWEAK: Premium – Unused images – Detect Elementor’s ‘Video’ widget’s image
    • \n
    • TWEAK: Recognise Rank Math plugin tables as used in database optimization
    • \n
    • TWEAK: Reduce .htaccess file write operations when WebP is enabled
    • \n
    • TWEAK: Seasonal notice content update for 2024
    • \n
    • TWEAK: Unused Images – Unused tab displays multiple images for compressed images with WebP Conversion
    • \n
    • TWEAK: Prevent multiple AJAX requests being generated by repeated clicks on the “Purge Cache” button
    • \n
    • TWEAK: Call the litespeed_finish_request() function when attempting to close browser connection on LiteSpeed servers
    • \n
    \n

    3.3.1 – 06/Mar/2024

    \n
      \n
    • FIX: Cache – Compatibility issue with Jetpack’s infinity scroll feature
    • \n
    • FIX: Cache – Don’t cache activity stream (ActivityPub plugin compatibility)
    • \n
    • FIX: Cache – Page not cached comment is added to robots.txt
    • \n
    • TWEAK: Fix PHP warnings when server variables are not available
    • \n
    • TWEAK: Fix Unexpected response alert and PHP warning when cache preloading is triggered manually
    • \n
    • TWEAK: Migrate from setInterval to WP heartbeat API to refresh information about backend tasks
    • \n
    • TWEAK: Optimization of the WebP Implementation
    • \n
    • TWEAK: Update dashboard notice to include all of our plugins
    • \n
    • TWEAK: Update the footer review prompt
    • \n
    \n

    3.3.0 – 31/Jan/2024

    \n
      \n
    • FEATURE: Premium – Ability to preload and purge caches from individual post/page
    • \n
    • FIX: Premium – Unused Images – Recognise Elementor’s Container, and Section widget background images
    • \n
    • FIX: Avoid having repeated minified scripts in the same bundle, it breaks the code in some specific cases
    • \n
    • FIX: Cache – TranslatePress compatibility – Post updates purges cache for all related translated languages
    • \n
    • FIX: Only try to parse canonical URLs if there is a path or querystring, needed for WPML with multi-domain compatibility
    • \n
    • TWEAK: Add cron de-scheduling of all wpo_* events during plugin uninstall
    • \n
    • TWEAK: Cache – Always add source code comment about page not being cached, but only add details when WP_DEBUG is ON
    • \n
    • TWEAK: Cache – Fix issue with excluding encoded (non-latin) URLs
    • \n
    • TWEAK: Do not attempt to close browser connection when the context is not an AJAX action
    • \n
    • TWEAK: Minify – Logging more information about why minify static assets cache gets invalidated and regenerated
    • \n
    • TWEAK: Revert to the original matthiasmullie/minify repository after confirming resolution of previous issues
    • \n
    • TWEAK: Setup Cron job to clear failed smush tasks from DB
    • \n
    • TWEAK: Using clear text user agent strings instead of regular expressions to identify web browsers for improved clarity
    • \n
    • TWEAK: Updater library in the Premium version updated to the current release series
    • \n
    \n

    3.2.22 – 23/Nov/2023

    \n
      \n
    • TWEAK: Cache – Show a notice in the admin if the config file is missing and caching is enabled
    • \n
    • TWEAK: Added support for new emoji styles related hooks introduced in WordPress 6.4
    • \n
    • TWEAK: Database – Fix “Optimize database tables” stuck loading state
    • \n
    • TWEAK: Premium – Cache – Style improvement for the select2 box from advanced cache settings
    • \n
    • TWEAK: Premium – Images – Fix issues with avif images in the unused images feature
    • \n
    • REFACTOR: Wrapping most of the external links in the WPO settings pages with the appropriate function
    • \n
    • REFACTOR: Remove unused code
    • \n
    \n

    3.2.21 – 18/Oct/2023

    \n
      \n
    • FIX: Prevent PHP fatal error when updating from older versions of WP-Optimize
    • \n
    \n

    3.2.20 – 16/Oct/2023

    \n
      \n
    • FIX: WebP – Performance issue because of possible infinite loop
    • \n
    • FIX: Cache purging occurred prior to the cache lifespan expiration
    • \n
    • FIX: Premium – Smush – Do not consider images in trashed posts as unused
    • \n
    • TWEAK – Remove extra slash from plugin asset urls and paths
    • \n
    • TWEAK: Image – Add a tooltip next to the restore button on the edit media screen
    • \n
    • TWEAK: Premium – Prevent PHP deprecated warning when generating variations from attributes for new WooCommerce variable products
    • \n
    • TWEAK: Premium – Purge cache when the Variation Swatches for WooCommerce plugin settings get updated
    • \n
    • TWEAK: Premium – Settings – Style improvement for the Purge cache permissions select2 box
    • \n
    • TWEAK: Recognise LearnDash plugin tables in database optimization
    • \n
    • TWEAK: Remove empty uploads/.htaccess file and remaining cron events
    • \n
    • TWEAK: Smush – Disable server info in smush logs by default
    • \n
    • TWEAK: Smush – Resolve double log entries when compressing a single image from the media library metabox
    • \n
    • TWEAK: Prevent unwanted PHP notice upon update
    • \n
    \n

    3.2.19 – 15/Sep/2023

    \n
      \n
    • FIX: Cache – Relevant caches are now purged upon updating homepage display settings and posts per page settings
    • \n
    • FIX: Minify – Multiline content inside textareas break after exporting and importing settings
    • \n
    • FIX: Smush – Images are not compressed with default (image quality = 100) settings
    • \n
    • FIX: Premium – Cache – Caching stops working when WordPress salt keys contain backslash () character
    • \n
    • FIX: Premium – User per role cache not working when tables do not have wp prefix
    • \n
    • FIX: Premium – When lazy loading is enabled, the picture tag in initial viewport is not visible
    • \n
    • TWEAK: Fixed date format and timezone in the cache last modification comment according to the site configuration
    • \n
    • TWEAK: Fixed spelling errors in the repository
    • \n
    • TWEAK: Minify – The process of purging cache for 3rd party caching solutions now works properly when multiple other solutions are present
    • \n
    • TWEAK: Premium – Lazy load – Added Jetpack, Optimole, Rocket Lazy Load, and Smush (WPMU Dev) plugins to the incompatibility notice
    • \n
    • TWEAK: Prevent PHP warning upon installing themes from the WordPress repository
    • \n
    • TWEAK: Update the composer package yahnis-elsts/plugin-update-checker for PHP 8.2 compatibility
    • \n
    \n

    3.2.18 – 11/Aug/2023

    \n
      \n
    • FIX: A bug in the v3.2.17 release that caused certain database optimization buttons to be disabled has been fixed
    • \n
    • TWEAK: Reset WebP serving method upon updating to version 3.2.18
    • \n
    \n

    3.2.17 – 08/Aug/2023

    \n
      \n
    • FIX: Automatically compress newly-added images feature now works on multisite in case of attachment ID is the same in both sites
    • \n
    • FIX: Minify – No separate try-catch blocks for same handle
    • \n
    • FIX: Premium – Unused Images – Recognise Elementor Carousel, Slides, Flip Box, and Site logo widget images
    • \n
    • FIX: Premium – Prevent memory exhausted PHP fatal error when using unused images feature with Elementor
    • \n
    • TWEAK: External links will open in new tab/window
    • \n
    • TWEAK: Remove htaccess-capability-tester dependency
    • \n
    • TWEAK: Remove residue folders in uploads/wpo
    • \n
    \n

    3.2.16 – 06/Jul/2023

    \n
      \n
    • FIX: HTML minify should not remove title tag added by AIOSEO
    • \n
    • FIX: Premium – Fetching unused images data is incorrect when previous task queue is not properly unlocked
    • \n
    • FIX: Premium – Unused Images – Recognise Elementor background images
    • \n
    • TWEAK: Premium – Prevent conflicts between the minify feature and the YITH Point of Sale for WooCommerce plugin
    • \n
    • TWEAK: Premium – Compatibility issue with Smart Slider 3
    • \n
    • TWEAK: Suppress PHP warnings caused by WebP converter
    • \n
    • TWEAK: Database optimization – Prevent duplicate AJAX requests, minor code improvements
    • \n
    • TWEAK: Smush – Add a cron job to run pending image compressions, ensuring completion of the process even if bulk image compression encounters interruptions or failures
    • \n
    • TWEAK: Clean up files on uninstall
    • \n
    • TWEAK: Added compatibility for Custom Permalinks plugin
    • \n
    • TWEAK: If minifying is enabled, then check that the purge cron event exists (not only upon plugin activation)
    • \n
    • REFACTOR: Premium – Unused Images – Separate classes for Beaver Builder, Estatik, and Yoast SEO plugins
    • \n
    • FIX: Premium – WP CLI commands permission issues solved
    • \n
    \n

    3.2.15 – 09/May/2023

    \n
      \n
    • FEATURE: Premium – Cache – Added compatibility with the “WooCommerce Multilingual & Multicurrency” plugin’s multi-currency feature
    • \n
    • FIX: Premium – Above the folder elements should not be loaded lazily
    • \n
    • FIX: Prevents minify cache invalidation when asset version is changed but content is same
    • \n
    • FIX: Prevent PHP 8 uncaught exception TypeError when using CloudFlare
    • \n
    • FIX: Add logging destination UI
    • \n
    • FIX: Premium – Cache – Prevents a PHP fatal error that occurs when user cache is enabled on sites running on MariaDB with a version prefix of ‘5.5.5-‘ and PHP versions prior to 8.0
    • \n
    • FIX: Serving WebP images only to supported browsers wasn’t working properly when page caching is enabled
    • \n
    • FIX: Minify – inherit Google fonts method is not working
    • \n
    • TWEAK: Prevent PHP deprecation notice when purging minify cache
    • \n
    • TWEAK: Cache – Prevent PHP warning when deleting cache
    • \n
    • TWEAK: Suppress PHP notice when cannot write to .htaccess file
    • \n
    • TWEAK: Add user capability check for smush task manager ajax handling method
    • \n
    • TWEAK: Minify – Do not send cache control and last modified headers if already present
    • \n
    • TWEAK: Smush – clean up log entries
    • \n
    • TWEAK: Correctly handle XX and T1 country codes in Cloudflare’s IP country header
    • \n
    • REFACTOR: Separate classes for activation, deactivation and uninstall actions
    • \n
    \n

    3.2.14 – 30/Mar/2023

    \n
      \n
    • FIX: Compatibility with WordPress 6.2 when using PHP 8.x
    • \n
    • FIX: Divi builder’s edit mode when WebP serving is using the “alter HTML” method
    • \n
    • FIX: Premium – Unused images feature – improve compatibility with Beaver Builder and its addons
    • \n
    • FIX: Cache – Page caching wasn’t working on the IIS webserver
    • \n
    • TWEAK: Update seasonal notices
    • \n
    • TWEAK: Prevent deprecation notices in PHP 8.2+
    • \n
    \n

    3.2.13 – 13/Mar/2023

    \n
      \n
    • FEATURE: WebP – Ability to convert to webp format from media library
    • \n
    • FIX: Prevent PHP warning when minify-log files are missing or corrupted, also added appropriate error message
    • \n
    • FIX: Delete webp files and uncompressed file when media is deleted
    • \n
    • FIX: Polylang compatibility – now upon updating any post, caches for all translated languages are cleared
    • \n
    • FIX: Prevent adding unsupported media types to the smush task list
    • \n
    • FIX: WebP – Unsupported formats throws a fatal error
    • \n
    • FIX: Compress image UI for webp images
    • \n
    • FIX: Premium – WebP Images are marked as unused images
    • \n
    • FIX: Resolved an issue where Beaver Builder’s edit mode was not functioning properly when WebP conversion was enabled
    • \n
    • FIX: Prevent creating multiple cache directories for URLs that contain non-English characters
    • \n
    • TWEAK: Preload allowed time difference is set to be the same as max execution time
    • \n
    • TWEAK: Premium – Unused images feature – Add compatibility with Yoast SEO social images
    • \n
    • TWEAK: Prevent jQuery deprecation notices
    • \n
    • SECURITY: Fixed a non-persistent XSS vulnerability that could occur on certain servers when the WebP conversion option was enabled. This vulnerability could allow an attacker to execute arbitrary JavaScript code in the victim’s browser by tricking them into clicking on a specially crafted link. Thanks to Paolo Elia for reporting this.
    • \n
    \n

    3.2.12 – 06/Feb/2023

    \n
      \n
    • SECURITY: Today’s 3.2.11 release (free version only – there was no 3.2.11 Premium release) checked nonces incorrectly, opening up the possibility of an attacker tricking an admin into clicking links crafted to perform unauthorised actions on the WP Optimize configuration on his site.
    • \n
    \n

    3.2.11 – 06/Feb/2023

    \n
      \n
    • FIX: Empty query string updates cache
    • \n
    • FIX: Cache – Purge cache after string translation update in WPML
    • \n
    • FIX: Cache – Preload stuck and fails to complete
    • \n
    • FIX: Prevent PHP warning when .htaccess files don’t have write permission
    • \n
    • FIX: Premium – Fixed compatibility issue with WP Hide plugin
    • \n
    • FIX: Minify – Less than 20KB stylesheets loading order
    • \n
    • TWEAK: Add cron event only if clear backup images is enabled
    • \n
    • TWEAK: Cache – Use WordPress GMT offset for cache comment
    • \n
    • TWEAK: Only allow image types that can be compressed
    • \n
    • TWEAK: Cached page is not served for sites that have own directory for WordPress files
    • \n
    \n

    3.2.10 – 28/Nov/2022

    \n
      \n
    • FIX: Prevent php warning and increase SendInBlue mailin plugin compatibility
    • \n
    • FIX: Avoid screen juggling while selecting optimizations from dropdown in scheduled clean up
    • \n
    • FIX: Prevent cache purge upon deactivation using filter
    • \n
    • FIX: Cache purge ability of all registered user
    • \n
    • FIX: Recognise WooCommerce product category images as used images
    • \n
    • FIX: Multisite support in cached-file-log.php template
    • \n
    • TWEAK: Improve Optimization Schedule UI
    • \n
    • TWEAK: Consolidated error notices by the use of a global WPO notice object.
    • \n
    • TWEAK: Remove Reset WebP serving method button when there are no webp conversion tools
    • \n
    • TWEAK: Remove query strings from scripts
    • \n
    • TWEAK: Add Restrict Content Pro plugin slug to plugin.json
    • \n
    • TWEAK: Add option to remove orphaned user meta data upon run optimization
    • \n
    • TWEAK: Add no-cache headers when minify is enabled and page caching is not
    • \n
    • TWEAK: Ability to remove .htaccess rules when gzip compression is not available
    • \n
    • TWEAK: WebP: Avoid PHP warnings when using hot linked images (Alter HTML method)
    • \n
    • TWEAK: WebP conversion is unavailable when php shell functions do not exist
    • \n
    • TWEAK: Improved UI settings for asynchronous loading and page speed testing exclusion tools
    • \n
    • TWEAK: Add a constant to enable/disable webp feature
    • \n
    • TWEAK: Set a global context for $wp_file_descriptions context so that it gets assigned to correctly, preventing a subtle visual change in the theme editor
    • \n
    • TWEAK: Prevent php warning from webp-convert library
    • \n
    • TWEAK: Update currently-active installs number in thank you for installing notice.
    • \n
    • TWEAK: Replaced deprecated use of jQuery.change()
    • \n
    \n

    3.2.9 – 06/Sep/2022

    \n
      \n
    • FEATURE: Import and export settings
    • \n
    • FIX: Avoid infinite loop while using unused images export csv
    • \n
    • FIX: Scheduled cache preloading issue
    • \n
    • FIX: WebP testing making unnecessary background HTTP checks
    • \n
    • FIX: Google fonts compatibility with The7 theme
    • \n
    • FIX: Prevent console error for undefined wp_optimize for smush scripts
    • \n
    • TWEAK: Avoid PHP warnings on cache cleanup
    • \n
    • FIX: Ability to disable webp serving while caching is on
    • \n
    • TWEAK: Reset webp conversion method flags daily using cron job
    • \n
    • TWEAK: Remove orphaned wpo_weekly_cron_tasks cron job upon uninstallation
    • \n
    \n

    3.2.8 – 23/Aug/2022

    \n
      \n
    • FIX: Build system error led to a missing file in 3.2.7 which could cause an error when using related functions
    • \n
    • FIX: Fix incorrect function name in admin class
    • \n
    \n

    3.2.7 – 15/Aug/2022

    \n
      \n
    • FEATURE: A CLI command for generating lists of unused images as a CSV file (Premium)
    • \n
    • FIX: The unused images CSV downloads have a few redundant images listed
    • \n
    • FIX: ACF block field images are listed as unused images
    • \n
    • FIX: Correctly recognize inherit in google fonts async loading
    • \n
    • FIX: Cache – Do not purge when wp_update_nav_menu is removed from wpo_purge_cache_hooks array
    • \n
    • TWEAK: Prevent PHP warnings when using json_decode result
    • \n
    • TWEAK: Create cache config file if not present because of site migration
    • \n
    • TWEAK: Update notice class
    • \n
    • TWEAK: Recognize WooCommerce scheduled sales and cache accordingly
    • \n
    • TWEAK: Prevent duplicate wp-optimize entry in tables optimization list
    • \n
    • TWEAK: Test htaccess capability only when needed by webp feature
    • \n
    • TWEAK: Increase compatibility with Aelia plugins
    • \n
    \n

    3.2.6 – 15/Jun/2022

    \n
      \n
    • FIX: Incorrect static method calling causes parse Error in PHP 5.6.36
    • \n
    • FIX: WebP – Trailing slash file creation issue in PHP 8
    • \n
    • FIX: PHP warning in cache rules file
    • \n
    • FIX: Asynchronous google fonts loaded twice
    • \n
    • TWEAK: Conditional Tags anchor tag fix
    • \n
    \n

    3.2.5 – 03/Jun/2022

    \n
      \n
    • FIX: Fix a fatal error that could occur in 3.2.4 if settings had not been saved
    • \n
    \n

    3.2.4 – 24/May/2022

    \n
      \n
    • FEATURE: Create a cron job to delete expired cache files
    • \n
    • FEATURE: WebP image format can be used to serve images
    • \n
    • FIX: Incorrect record count after importing
    • \n
    • FIX: Image smushing issues
    • \n
    • FIX: Problem with Redirect – Trailing Slash on URLs
    • \n
    • FIX: Unused images issue with ACF repeater and nested fields
    • \n
    • TWEAK: Added functionality for exclude caching based on conditional tags
    • \n
    • TWEAK: Update last optimized time for scheduled optimizations
    • \n
    • TWEAK: Cache – Prevent already header sent warnings while importing posts
    • \n
    • TWEAK: Improved UI for actionscheduler_ tables
    • \n
    • TWEAK: Add filter to allow/disallow gz file generation
    • \n
    • TWEAK: Show error message to user when WP_CACHE constant can’t be removed from wp-config.php due to file permission issue.
    • \n
    \n

    3.2.3 – 09/Mar/2022

    \n
      \n
    • FEATURE: Minify: Pre-generate assets
    • \n
    • FIX: Cache – ‘Purge cache permissions’ setting does not allow additional roles to access the purge cache tool
    • \n
    • TWEAK: Make smush details button work in media modal window
    • \n
    • TWEAK: Do not show overhead in red when the amount is small
    • \n
    • TWEAK: Avoid PHP Notices caused by “upgrader_process_complete” action
    • \n
    • TWEAK: Force monolog 2.3.* in order to avoid PHP 7.2+ dependency
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    MORE THAN A CACHING PLUGIN

    \n

    WP-Optimize is trusted by more than 1 million WordPress website owners to boost performance and reduce page load times to improve your site’s user experiences and SERP rankings in Google.

    \n

    It does this in four clever ways:

    \n

    1. It caches your site

    \n

    Caching is the process of storing a temporary HTML version of your site on the server so it can be retrieved more quickly for the user.

    \n

    It’s a sure-fire way to ensure web pages load at lightning-fast speed. Turn it on in just one click.

    \n

    2. It compresses images

    \n

    Large images can really impact page speed load times. WP-Optimize makes it easy to identify and compress images to your preferred lossy / lossless settings in a couple of clicks.

    \n

    3. It cleans the database

    \n

    Your WordPress database stores everything that you need, plus some things that you don’t. WP-Optimize cleans and optimizes the database to speed up your site and save server resources.

    \n

    4. It minifies

    \n

    On top of its three main features, WP-Optimize Cache also has the more advanced minification feature.

    \n

    Together with caching, minification dramatically improves performance and page speed load time.

    \n

    1. CACHE YOUR SITE

    \n

    Turn on caching in just one click:

    \n

    WP-Optimize automatically and optimally configures itself for your WordPress site. Turn it on in one-click or refine its settings if you prefer.

    \n

    More cache features:

    \n
      \n
    • \n

      Cache preloading: This feature emulates a visit to your site, meaning cached files are served straight away, speeding up your site from the very first visit.

      \n
    • \n
    • \n

      GZIP Compression: When the server isn’t configured to do so, WP-Optimize delivers HTML, CSS and JS files to the user’s browser as smaller, compressed files, reducing the size of pages and style sheets by up to 90%!

      \n
    • \n
    • \n

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster [Premium].

      \n
    • \n
    \n

    Use cache settings to:

    \n
      \n
    • \n

      Serve cached content to logged in users: Turn this on if content stays the same for logged in users (or turn on and exclude URLs where content does change e.g. my account areas).

      \n
    • \n
    • \n

      Exclude content from cache: Exclude by URL, conditional tags, browser agent strings or list cookies that should prevent caching when set (advanced user settings).

      \n
    • \n
    • \n

      Deliver device-specific cache: Serve separate cache files to desktop and mobile devices . This ensures that responsive features e.g. desktop and mobile menus are cached separately and served correctly.

      \n
    • \n
    • \n

      User per role cache: Useful if your website delivers different content to different user roles. e.g. an e-commerce site that displays different content to resellers or consumers [Premium].

      \n
    • \n
    • \n

      User specific cache: Serves separate cache files to individual users. Useful for websites with personalised content e.g. Learning management systems [Premium].

      \n
    • \n
    • \n

      Cache purging permissions: Select which user roles are allowed to purge the cache e.g. admin only or perhaps a ‘teacher’ role in an LMS setting only [Premium].

      \n
    • \n
    \n

    2. COMPRESS IMAGES

    \n
      \n
    • \n

      Lossy or lossless compression options: Choose between maximum space saving, best image quality or somewhere in-between.

      \n
    • \n
    • \n

      WebP conversion: Recommended by Google, WebP can achieve up to 34% smaller file sizes compared to JPEG and up to 26% compared to PNG.

      \n
    • \n
    • \n

      Auto-compress: Check a box and every new image you upload will automatically be compressed to your preferred lossy / lossless settings.

      \n
    • \n
    • \n

      Bulk compression: Compress every existing image on your site with the press of a button.

      \n
    • \n
    • \n

      Restore original: Gone too far? Revert images back to their original in one click.

      \n
    • \n
    • \n

      Retain EXIF image data: Check a box to retain EXIF image data during compression.

      \n
    • \n
    • \n

      Lazy Load: Webpages load much faster by loading web parts gradually, when they’re needed vs simultaneous loading of everything, all at once [Premium].

      \n
    • \n
    • \n

      Delete orphaned images: Identify and delete unused images from your WordPress website, saving disk space [Premium].

      \n
    • \n
    • \n

      Delete unused image sizes: WordPress creates multiple sizes for every uploaded image causing the uploads folder to become bloated. Scan for image sizes not in use and remove them to save further disk space [Premium].

      \n
    • \n
    \n

    3. CLEAN AND OPTIMIZE THE DATABASE

    \n

    Cleans-up database tables, post revisions, auto draft posts, trashed posts, spam, trashed comments and more. Choose what to optimize or it’s one click to clean out the lot.

    \n
      \n
    • \n

      Schedule clean-ups: So you can set and forget. Choose from daily, weekly, fortnightly or monthly.

      \n
    • \n
    • \n

      Flexible clean-up schedules: You may wish to optimize database tables more frequently than you remove unapproved comments (for example). Choose the specific time and day when tasks should run [Premium].

      \n
    • \n
    • \n

      Retain a set number of weeks’ data during clean-ups: Just in case you need to retrieve something.

      \n
    • \n
    • \n

      Back up before clean-ups: If you delete something you shouldn’t, restore it in a couple of clicks with UpdraftPlus.

      \n
    • \n
    • \n

      Power tweak – Turbo boost for WooCommerce: Unique to WP-Optimize, this power tweak boosts performance by replacing a slow query in WooCommerce with two much more efficient queries. E-commerce sites transacting high numbers of orders stand to gain here [Premium].

      \n
    • \n
    • \n

      Power tweak – Boost performance by indexing the postmeta table: This unique power tweak works by allowing the WordPress postmeta table to be indexed, improving performance [Premium].

      \n
    • \n
    \n

    4. MINIFY AND COMBINE HTML, CSS AND JAVASCRIPT

    \n
      \n
    • \n

      Minify in just one click: Minifies HTML, JavaScript and CSS. Toggle on or off or customise each one under ‘settings’.

      \n
    • \n
    • \n

      Customise minification: Minify only (removing unnecessary code e.g line breaks and white spacing) or minify and merge. Apply the same or different settings to HTML, CSS and JavaScript.

      \n
    • \n
    • \n

      Asynchronous loading: Choose non-critical CSS and JavaScript files to load in the background and independently of other resources e.g. analytics or pixel scripts. Loading asynchronously eliminates render blocking and improves page speed.

      \n
    • \n
    • \n

      Exclude files from being minified: Specify CSS and JavaScript files to exclude from minification.

      \n
    • \n
    • \n

      Optimize fonts: Optimize Font Awesome and Google Fonts. Inline the font files, inherit from CSS settings or load CSS / Javascript asynchronously instead.

      \n
    • \n
    • \n

      Preload assets: WP-Optimize visits each web page on your site so the code is minified and preloaded for real life users, right from their very first visit.

      \n
    • \n
    • \n

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster.

      \n
    • \n
    \n

    WHY WP-OPTIMIZE?

    \n
      \n
    • It’s brought to you by TeamUpdraft, the team behind the world’s most trusted backup, migration and restoration plugin.
    • \n
    • It’s easy to use.
    • \n
    • It packs a punch for a free plugin.
    • \n
    \n

    WP-Optimize brings the best cache and optimization technology together into one single, seamless plugin to make your WordPress site fast, lean and efficient.

    \n

    PREMIUM FEATURES AT A GLANCE

    \n

    Our free version of WP-Optimize Cache is great, but we also have an even more powerful Premium version with extra features that offer the ultimate in freedom and flexibility:

    \n
      \n
    • Multisite Support: extends database optimisations so they function for multiple WordPress sites at a time. If you manage more than one website, you will need WP-Optimize Cache Premium.
    • \n
    • Flexibility and Control: gives you the power to optimize select individual tables or a particular combination of tables on one or more WordPress websites, rather than having to optimize all database tables.
    • \n
    • Deleting unused and unwanted images: removes orphaned images from your WordPress site, plus images of a certain, pre-defined size.
    • \n
    • Sophisticated Scheduling: offers a wide range of options for scheduling automatic optimization. Specify an exact time and run clean-ups daily, weekly, fortnightly or monthly and perform any number of additional once off optimizations.
    • \n
    • Seamless Graphical User Interface: for superb clarity in scheduling and managing of multi-site optimizations.
    • \n
    • WP-CLI support: provides a way to manage optimizations from command-line interface if you have lots of sites
    • \n
    • Lazy Loading: load only the images and part of a web-page when it is visible to the user so they can see something very quickly.
    • \n
    • Optimization Preview: gives users the ability to preview, select and remove data and records available for optimization from the database.
    • \n
    • Preload key requests: preload assets such as web fonts and icon fonts, as recommended by Google PageSpeed Insights.
    • \n
    • Premium support – caching is one of the most complex things you can do for a website, so premium support offers you peace of mind there’s someone to talk quickly to if you need any technical answers or help configuring the optimizations of cache settings for your website.
    • \n
    \n

    Translations

    \n

    Translators are welcome to contribute to the plugin. Please use the WordPress translation website.

    \n", "screenshots": "
    1. \"Cache

      Cache - plugins comparison benchmark

    2. \"Database

      Database optimization

    3. \"UpdraftPlus

      UpdraftPlus running a backup before an optimization proceeds

    4. \"Table

      Table Report

    5. \"Image

      Image compression

    6. \"Main

      Main cache screen

    ", "installation": "

    There are 3 different ways to install WP-Optimize Cache, as with any other wordpress.org plugin.

    \n

    Using the WordPress dashboard

    \n
      \n
    1. Navigate to the ‘Add New’ in the plugins dashboard
    2. \n
    3. Search for ‘WP-Optimize’
    4. \n
    5. Click ‘Install Now’
    6. \n
    7. Activate the plugin on the Plugin dashboard
    8. \n
    \n

    Uploading in WordPress Dashboard

    \n
      \n
    1. Download the latest version of this plugin from https://wordpress.org/plugins/wp-optimize/
    2. \n
    3. Navigate to the ‘Add New’ in the plugins dashboard
    4. \n
    5. Navigate to the ‘Upload’ area
    6. \n
    7. Select the zip file (from step 1.) from your computer
    8. \n
    9. Click ‘Install Now’
    10. \n
    11. Activate the plugin in the Plugin dashboard
    12. \n
    \n

    Using FTP

    \n
      \n
    1. Download the latest version of this plugin from https://wordpress.org/plugins/wp-optimize/
    2. \n
    3. Unzip the zip file, which will extract the wp-optimize directory to your computer
    4. \n
    5. Upload the wp-optimize directory to the /wp-content/plugins/ directory in your web space
    6. \n
    7. Activate the plugin in the Plugin dashboard
    8. \n
    \n"}, "versions": {"1.9": "https://downloads.wordpress.org/plugin/wp-optimize.1.9.zip", "0.7.0": "https://downloads.wordpress.org/plugin/wp-optimize.0.7.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/wp-optimize.1.9.1.zip", "2.0.1": "https://downloads.wordpress.org/plugin/wp-optimize.2.0.1.zip", "2.1.0": "https://downloads.wordpress.org/plugin/wp-optimize.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/wp-optimize.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.4.zip", "2.2.6": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.6.zip", "2.2.8": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/plugin/wp-optimize.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/wp-optimize.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/wp-optimize.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/wp-optimize.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/wp-optimize.2.3.4.zip", "3.0.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.5.zip", "3.0.7": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.2.zip", "3.1.4": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.9.zip", "3.2.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.3.zip", "3.2.5": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.7.zip", "3.2.9": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/wp-optimize.3.3.2.zip", "3.4.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/wp-optimize.3.4.2.zip", "3.5.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.5.0.zip", "3.6.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.6.0.zip", "3.7.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.7.1.zip", "3.8.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.8.0.zip", "4.0.0": "https://downloads.wordpress.org/plugin/wp-optimize.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/wp-optimize.4.0.1.zip", "4.1.0": "https://downloads.wordpress.org/plugin/wp-optimize.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/wp-optimize.4.1.1.zip", "4.2.0": "https://downloads.wordpress.org/plugin/wp-optimize.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/wp-optimize.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/wp-optimize.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/wp-optimize.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/wp-optimize.4.2.4.zip", "4.3.0": "https://downloads.wordpress.org/plugin/wp-optimize.4.3.0.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-optimize.zip", "2.2.10": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.10.zip", "2.2.11": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.11.zip", "2.2.12": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.12.zip", "2.2.13": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.13.zip", "3.0.10": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.12.zip", "3.0.13": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.14.zip", "3.0.15": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.15.zip", "3.0.16": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.16.zip", "3.0.18": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.18.zip", "3.0.19": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.19.zip", "3.1.10": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.10.zip", "3.1.11": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.11.zip", "3.1.12": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.12.zip", "3.2.10": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.10.zip", "3.2.11": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.11.zip", "3.2.12": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.12.zip", "3.2.13": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.13.zip", "3.2.14": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.14.zip", "3.2.15": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.15.zip", "3.2.16": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.16.zip", "3.2.17": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.17.zip", "3.2.18": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.18.zip", "3.2.19": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.19.zip", "3.2.20": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.20.zip", "3.2.21": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.21.zip", "3.2.22": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.22.zip", "1.8.9.7": "https://downloads.wordpress.org/plugin/wp-optimize.1.8.9.7.zip", "1.8.9.8": "https://downloads.wordpress.org/plugin/wp-optimize.1.8.9.8.zip", "1.8.9.9": "https://downloads.wordpress.org/plugin/wp-optimize.1.8.9.9.zip", "1.8.9.10": "https://downloads.wordpress.org/plugin/wp-optimize.1.8.9.10.zip"}, "downloaded": 51272106, "description": "

    MORE THAN A CACHING PLUGIN

    \n

    WP-Optimize is trusted by more than 1 million WordPress website owners to boost performance and reduce page load times to improve your site’s user experiences and SERP rankings in Google.

    \n

    It does this in four clever ways:

    \n

    1. It caches your site

    \n

    Caching is the process of storing a temporary HTML version of your site on the server so it can be retrieved more quickly for the user.

    \n

    It’s a sure-fire way to ensure web pages load at lightning-fast speed. Turn it on in just one click.

    \n

    2. It compresses images

    \n

    Large images can really impact page speed load times. WP-Optimize makes it easy to identify and compress images to your preferred lossy / lossless settings in a couple of clicks.

    \n

    3. It cleans the database

    \n

    Your WordPress database stores everything that you need, plus some things that you don’t. WP-Optimize cleans and optimizes the database to speed up your site and save server resources.

    \n

    4. It minifies

    \n

    On top of its three main features, WP-Optimize Cache also has the more advanced minification feature.

    \n

    Together with caching, minification dramatically improves performance and page speed load time.

    \n

    1. CACHE YOUR SITE

    \n

    Turn on caching in just one click:

    \n

    WP-Optimize automatically and optimally configures itself for your WordPress site. Turn it on in one-click or refine its settings if you prefer.

    \n

    More cache features:

    \n
      \n
    • \n

      Cache preloading: This feature emulates a visit to your site, meaning cached files are served straight away, speeding up your site from the very first visit.

      \n
    • \n
    • \n

      GZIP Compression: When the server isn’t configured to do so, WP-Optimize delivers HTML, CSS and JS files to the user’s browser as smaller, compressed files, reducing the size of pages and style sheets by up to 90%!

      \n
    • \n
    • \n

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster [Premium].

      \n
    • \n
    \n

    Use cache settings to:

    \n
      \n
    • \n

      Serve cached content to logged in users: Turn this on if content stays the same for logged in users (or turn on and exclude URLs where content does change e.g. my account areas).

      \n
    • \n
    • \n

      Exclude content from cache: Exclude by URL, conditional tags, browser agent strings or list cookies that should prevent caching when set (advanced user settings).

      \n
    • \n
    • \n

      Deliver device-specific cache: Serve separate cache files to desktop and mobile devices . This ensures that responsive features e.g. desktop and mobile menus are cached separately and served correctly.

      \n
    • \n
    • \n

      User per role cache: Useful if your website delivers different content to different user roles. e.g. an e-commerce site that displays different content to resellers or consumers [Premium].

      \n
    • \n
    • \n

      User specific cache: Serves separate cache files to individual users. Useful for websites with personalised content e.g. Learning management systems [Premium].

      \n
    • \n
    • \n

      Cache purging permissions: Select which user roles are allowed to purge the cache e.g. admin only or perhaps a ‘teacher’ role in an LMS setting only [Premium].

      \n
    • \n
    \n

    2. COMPRESS IMAGES

    \n
      \n
    • \n

      Lossy or lossless compression options: Choose between maximum space saving, best image quality or somewhere in-between.

      \n
    • \n
    • \n

      WebP conversion: Recommended by Google, WebP can achieve up to 34% smaller file sizes compared to JPEG and up to 26% compared to PNG.

      \n
    • \n
    • \n

      Auto-compress: Check a box and every new image you upload will automatically be compressed to your preferred lossy / lossless settings.

      \n
    • \n
    • \n

      Bulk compression: Compress every existing image on your site with the press of a button.

      \n
    • \n
    • \n

      Restore original: Gone too far? Revert images back to their original in one click.

      \n
    • \n
    • \n

      Retain EXIF image data: Check a box to retain EXIF image data during compression.

      \n
    • \n
    • \n

      Lazy Load: Webpages load much faster by loading web parts gradually, when they’re needed vs simultaneous loading of everything, all at once [Premium].

      \n
    • \n
    • \n

      Delete orphaned images: Identify and delete unused images from your WordPress website, saving disk space [Premium].

      \n
    • \n
    • \n

      Delete unused image sizes: WordPress creates multiple sizes for every uploaded image causing the uploads folder to become bloated. Scan for image sizes not in use and remove them to save further disk space [Premium].

      \n
    • \n
    \n

    3. CLEAN AND OPTIMIZE THE DATABASE

    \n

    Cleans-up database tables, post revisions, auto draft posts, trashed posts, spam, trashed comments and more. Choose what to optimize or it’s one click to clean out the lot.

    \n
      \n
    • \n

      Schedule clean-ups: So you can set and forget. Choose from daily, weekly, fortnightly or monthly.

      \n
    • \n
    • \n

      Flexible clean-up schedules: You may wish to optimize database tables more frequently than you remove unapproved comments (for example). Choose the specific time and day when tasks should run [Premium].

      \n
    • \n
    • \n

      Retain a set number of weeks’ data during clean-ups: Just in case you need to retrieve something.

      \n
    • \n
    • \n

      Back up before clean-ups: If you delete something you shouldn’t, restore it in a couple of clicks with UpdraftPlus.

      \n
    • \n
    • \n

      Power tweak – Turbo boost for WooCommerce: Unique to WP-Optimize, this power tweak boosts performance by replacing a slow query in WooCommerce with two much more efficient queries. E-commerce sites transacting high numbers of orders stand to gain here [Premium].

      \n
    • \n
    • \n

      Power tweak – Boost performance by indexing the postmeta table: This unique power tweak works by allowing the WordPress postmeta table to be indexed, improving performance [Premium].

      \n
    • \n
    \n

    4. MINIFY AND COMBINE HTML, CSS AND JAVASCRIPT

    \n
      \n
    • \n

      Minify in just one click: Minifies HTML, JavaScript and CSS. Toggle on or off or customise each one under ‘settings’.

      \n
    • \n
    • \n

      Customise minification: Minify only (removing unnecessary code e.g line breaks and white spacing) or minify and merge. Apply the same or different settings to HTML, CSS and JavaScript.

      \n
    • \n
    • \n

      Asynchronous loading: Choose non-critical CSS and JavaScript files to load in the background and independently of other resources e.g. analytics or pixel scripts. Loading asynchronously eliminates render blocking and improves page speed.

      \n
    • \n
    • \n

      Exclude files from being minified: Specify CSS and JavaScript files to exclude from minification.

      \n
    • \n
    • \n

      Optimize fonts: Optimize Font Awesome and Google Fonts. Inline the font files, inherit from CSS settings or load CSS / Javascript asynchronously instead.

      \n
    • \n
    • \n

      Preload assets: WP-Optimize visits each web page on your site so the code is minified and preloaded for real life users, right from their very first visit.

      \n
    • \n
    • \n

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster.

      \n
    • \n
    \n

    WHY WP-OPTIMIZE?

    \n
      \n
    • It’s brought to you by TeamUpdraft, the team behind the world’s most trusted backup, migration and restoration plugin.
    • \n
    • It’s easy to use.
    • \n
    • It packs a punch for a free plugin.
    • \n
    \n

    WP-Optimize brings the best cache and optimization technology together into one single, seamless plugin to make your WordPress site fast, lean and efficient.

    \n

    PREMIUM FEATURES AT A GLANCE

    \n

    Our free version of WP-Optimize Cache is great, but we also have an even more powerful Premium version with extra features that offer the ultimate in freedom and flexibility:

    \n
      \n
    • Multisite Support: extends database optimisations so they function for multiple WordPress sites at a time. If you manage more than one website, you will need WP-Optimize Cache Premium.
    • \n
    • Flexibility and Control: gives you the power to optimize select individual tables or a particular combination of tables on one or more WordPress websites, rather than having to optimize all database tables.
    • \n
    • Deleting unused and unwanted images: removes orphaned images from your WordPress site, plus images of a certain, pre-defined size.
    • \n
    • Sophisticated Scheduling: offers a wide range of options for scheduling automatic optimization. Specify an exact time and run clean-ups daily, weekly, fortnightly or monthly and perform any number of additional once off optimizations.
    • \n
    • Seamless Graphical User Interface: for superb clarity in scheduling and managing of multi-site optimizations.
    • \n
    • WP-CLI support: provides a way to manage optimizations from command-line interface if you have lots of sites
    • \n
    • Lazy Loading: load only the images and part of a web-page when it is visible to the user so they can see something very quickly.
    • \n
    • Optimization Preview: gives users the ability to preview, select and remove data and records available for optimization from the database.
    • \n
    • Preload key requests: preload assets such as web fonts and icon fonts, as recommended by Google PageSpeed Insights.
    • \n
    • Premium support – caching is one of the most complex things you can do for a website, so premium support offers you peace of mind there’s someone to talk quickly to if you need any technical answers or help configuring the optimizations of cache settings for your website.
    • \n
    \n

    Translations

    \n

    Translators are welcome to contribute to the plugin. Please use the WordPress translation website.

    \n", "donate_link": "https://david.dw-perspective.org.uk/donate", "num_ratings": 2508, "screenshots": {"1": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-1.png?rev=2143870", "caption": "Cache - plugins comparison benchmark"}, "2": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-2.png?rev=2143870", "caption": "Database optimization"}, "3": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-3.png?rev=2143870", "caption": "UpdraftPlus running a backup before an optimization proceeds"}, "4": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-4.png?rev=2143870", "caption": "Table Report"}, "5": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-5.png?rev=2143870", "caption": "Image compression"}, "6": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-6.png?rev=2143870", "caption": "Main cache screen"}}, "support_url": "https://wordpress.org/support/plugin/wp-optimize/", "contributors": {"aporter": {"avatar": "https://secure.gravatar.com/avatar/e6022bd1050be79e76d099696b2e0e277c2b23ed227fca2453ba961b1e87f8e4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aporter/", "display_name": "aporter"}, "webulous": {"avatar": "https://secure.gravatar.com/avatar/9d27225969d6c60ef591694d648dc3e78d7fa61741892a90514acf01e4af7035?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/webulous/", "display_name": "Venkat Raj"}, "dnutbourne": {"avatar": "https://secure.gravatar.com/avatar/9cb6b0d01619d3c87f8610d2d7e887f4cba4bd8c8056f56c898ec91086c5f94e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dnutbourne/", "display_name": "DNutbourne"}, "lumberhack": {"avatar": "https://secure.gravatar.com/avatar/53a878926e0a72d870bc83a3a9862708ad664237d9d259840076adf9c7064daa?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lumberhack/", "display_name": "LumberHack"}, "ruhanirabin": {"avatar": "https://secure.gravatar.com/avatar/9d0261aa75c90766e67fcb537aecf46d5d877c8d42e6b7ce4aa2274cbfc61e4b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ruhanirabin/", "display_name": "Ruhani Rabin"}, "snightingale": {"avatar": "https://secure.gravatar.com/avatar/b256c78dd5aeecbec3f651bef6cd5802e2982eb32701b5210ed87b6e9a9f31e5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/snightingale/", "display_name": "snightingale"}, "davidanderson": {"avatar": "https://secure.gravatar.com/avatar/8cf7655071f82970f9635a0c7e7646551756c333b57166083e506a72cad98916?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/davidanderson/", "display_name": "David Anderson / Team Updraft"}}, "last_updated": "2025-09-24 10:29pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-optimize.4.3.0.zip", "author_profile": "https://profiles.wordpress.org/davidanderson/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "
      \n
    • 4.3.0: Two new features for Premium users, and lot of bug fixes and tweaks - a recommended update for all
    • \n
    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fee5-7084-b775-e0bef7ccbafe", "name": "WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance", "slug": "wp-optimize", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1758752940, "version": "4.3.0"}, "support_threads": 32, "requires_plugins": [], "short_description": "Get caching and more with this powerful cache plugin. Cache, optimize images, clean your database and minify for maximum performance.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 22}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1f67-7166-9651-1f47053d576e', 'did:web:api.aspiredev.org:packages:wp-plugin:wp-reviews-plugin-for-google', 'wp-reviews-plugin-for-google', 'Widgets for Google Reviews', '

    Display your Google Reviews for free with our responsive widgets in 2 minutes.

    -

    The plugin displays your Google Reviews in amazing predesigned widgets. You can simply create and display your own widgets, and filter your reviews to build customers’ trust and increase SEO.

    -
    -

    With Google reviews WordPress plugin, you can proudly display customer feedback on your business website. The widget comes in many eye-catching styles and designs, so you can choose the settings that best suit your company image. If you are growing your business or even if you’ve already established roots in your niche, a widget like this can further develop your online reputation and lead to more conversion.

    -

    Without reviews, a business is left to fend for itself. Even if your company offers excellent products or streamlined services, you may always struggle to reach a broad audience if you don’t have consumers who would vouch for you. Consumers often make purchase decisions on the back of Google reviews, so don’t miss out on this free form of marketing that can skyrocket your sales and boost your online reputation.

    -

    Our Google reviews plugin is straightforward to implement directly into your website, so you can focus your energy on other aspects of the business. All it takes is two minutes, and you’re all set up. Simply copy your business website’s link into the widget, then follow the simple process outlined in the video above to display it on your WordPress page.

    -

    Google Reviews WordPress Plugin

    -

    Many successful businesses use WordPress plugins to show off rave reviews left by customers, in the hope that it persuades other consumers to give them a shot. Unless you’re not interested in free marketing, displaying Google reviews for your business is a no-brainer.

    -

    Google reviews, in particular, have a significant influence on consumer purchase decisions, given the massive popularity of the search engine and the number of people with Google accounts. Many consumers claim that Google is the first place they go to assess a business based on reviews, which makes Google reviews more reliable than those from other websites.

    -

    You can leverage Google to catapult your business to further success if you try to secure as many four and five-star reviews as possible. The more reviews you have, the more prominent your business will become in a Google search, meaning more consumers will consider using your services.

    -

    If you don’t yet have any Google reviews, there’s no need to panic; simply start requesting of your existing customers that they leave one when they get a chance. Get into the habit of soliciting reviews through email and SMS since by making it a regular practice you increase your chances of getting more of them.

    -

    Free plugin features

    -

    The Google Reviews WordPress plugin offers various layouts and styles to choose from and allows for easy integration into any WordPress page.

    -
      -
    • Free usage
    • -
    • Display up to 10 Google Reviews
    • -
    • 40+ Widget layouts
    • -
    • 25+ Pre-designed widget styles
    • -
    • 1 Review widget
    • -
    • Filter reviews by rating
    • -
    • Display review reply
    • -
    • Hide any reviews
    • -
    • Anonymize reviewer name
    • -
    • Language support
    • -
    • Shortcode integration
    • -
    • Keep all reviews in a WordPress database
    • -
    • SEO boost
    • -
    • Dark website support
    • -
    • Use in any page builder: Gutenberg, Elementor, Page Origin, Beaver Builder, WPBakery, Divi, Classic, …
    • -
    • Widget lazy load
    • -
    • Zero loading time
    • -
    • Use of assets stored in CDN
    • -
    • Linux & Windows (XAMPP, WAMP,…) compatible
    • -
    • Multisite compatibility
    • -
    -

    Get more features with our professional review software

    -

    Create a Free Account for More Features

    -

    With the professional package, you’ll be able to display reviews from many of the top review websites, including Facebook, Yelp, Tripadvisor, and Airbnb. You’ll also be able to edit the widget image with a wide range of options, so you can cater to your demographic and increase the likelihood of conversion.

    -

    If you want to stand out from your competitors, a great way to do so is to make the most of the free marketing reviews can offer. The professional review management software gives you access to a whole host of tools that simplify the process, leaving you more time and energy for running the business.

    -

    Here are the features included in the software:

    -
      -
    • Display all reviews from Google, Facebook, Yelp, Amazon, Tripadvisor, Booking.com, AirBnb, Hotels.com, …
    • -
    • Display reviews from different platforms in a widget
    • -
    • Display reviews with photos
    • -
    • Customizable design
    • -
    • Unlimited number of widgets
    • -
    • Management of multiple businesses
    • -
    • Option to hide a review or mark as spam
    • -
    • Professional review tagging system
    • -
    • Widgets are updated when you receive a new review
    • -
    • Widget link modification
    • -
    • Edit review order
    • -
    • Review shortening
    • -
    • Automated review invitation system
    • -
    • Review widgets for your email signatures
    • -
    • Generate amazing images from your reviews to Instagram, Facebook, Twitter, Pinterest
    • -
    • Shortcode & HTML/JavaScript support
    • -
    • Detailed statistics
    • -
    • Priority support
    • -
    • AMP support
    • -
    -

    Create a Free Account for More Features

    -

    Additional free review plugins

    -

    Why not display your other ratings, too? Check out our other free review plugins:

    - -

    Languages

    -

    If your company does business globally, it’s in your interest to cater to various languages.

    -

    Our Widgets for Google Reviews supports the following languages:
    -Afrikaans, Albanian, Arabic, Armenian, Azerbaijani, Bengali, Bosnian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hindi, Hungarian, Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian, Macedonian, Malay, Norwegian, Persian, Polish, Portuguese, Romanian, Russian, Scottish Gaelic, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukranian, Vietnamese, Welsh

    -

    Support

    -

    If you have any issues at all setting up the Google Reviews WordPress Plugin for your business, you can contact our customer support team in various ways.

    -

    We offer 24/7 email support in English.

    -

    We recommend the following order when searching for answers:
    -1. Plugin FAQ here at the bottom – if you don’t already know why it’s worth displaying Google Reviews
    -2. You can find more info and Troubleshooting in the plugin’s admin dashboard after install.
    -3. Trustindex FAQ
    -4. Check topics or ask a new question here: Support Forum
    -5. Join our Community on Facebook: https://www.facebook.com/groups/990874785532977
    -6. If you still can’t find the answer, feel free to email us: support@trustindex.io

    -

    To find out more about who we are and what we do, here are some useful links:

    - -', 'wp', 'wp-plugin', 'GPL', '{"name": "Widgets for Google Reviews", "slug": "wp-reviews-plugin-for-google", "tags": {"google": "google", "widget": "widget", "reviews": "reviews", "google-business": "google business", "google-places-reviews": "google places reviews"}, "added": "2019-11-13", "icons": {"1x": "https://ps.w.org/wp-reviews-plugin-for-google/assets/icon-128x128.png?rev=2721569", "2x": "https://ps.w.org/wp-reviews-plugin-for-google/assets/icon-256x256.png?rev=2721569"}, "author": "Trustindex", "rating": 98, "status": "open", "tested": "6.9", "banners": {"low": "https://ps.w.org/wp-reviews-plugin-for-google/assets/banner-772x250.png?rev=3029963", "high": "https://ps.w.org/wp-reviews-plugin-for-google/assets/banner-1544x500.png?rev=3029963"}, "ratings": {"1": 59, "2": 14, "3": 17, "4": 35, "5": 2213}, "version": "13.2.2", "homepage": "https://wordpress.org/plugins/wp-reviews-plugin-for-google/", "requires": "6.2", "sections": {"faq": "\n
    \nWhat is the Google reviews WordPress Plugin?\n\n

    \n

    A Google Reviews WordPress Plugin is a tool that you can use to display customer reviews on your WordPress page or website. It can help you establish an online reputation and build customer loyalty and trust.

    \n

    \n
    \nCan you use the plugin free without subscribing?\n\n

    \n

    Yes, the Google Reviews Widget plugin is completely free to download for all users.

    \n

    \n
    \nHow can you get the widget’s code?\n\n

    \n

    You will gain access to the widget’s code as soon as you’ve finished setting up the plugin. You are then free to use it across your company websites as you see fit.

    \n

    \n
    \nWhat are the major features of the free plugin?\n\n

    \n

    With the free plugin, you’ll have access to as many as 40 widget layouts and 25 predesigned styles. You’ll be able to display up to 10 Google reviews, support various languages, and filter the reviews according to criteria such as star rating and date.

    \n

    \n
    \nWhich website CMS or site builder are the widgets compatible with?\n\n

    \n

    The widgets are compatible with just about every website CMS or site builder, including but not limited to Adobe Muse, Blogger, Elementor, HTML, and Squarespace.

    \n

    \n
    \nHow to embed Google reviews on your Website?\n\n

    \n

    To embed Google reviews on your website, simply position the widget on the website by copying the html shortcode directly to the desired page.

    \n

    \n
    \nHow to display Google my Business reviews on your website?\n\n

    \n

    To display Google my Business reviews on your website, you need to copy and paste your Google Place URL into the plugin. Then you can easily generate the widget.

    \n

    \n
    \nHow can you filter your Google Business reviews?\n\n

    \n

    To filter Google Business reviews, you can use the ‘filter your ratings’ drop-down menu during the widget setup process.

    \n

    \n
    \nAre the Google review widgets mobile responsive?\n\n

    \n

    Yes, the Google review widgets will be responsive on all devices.

    \n

    \n
    \nCan you display Google reviews in a slider widget?\n\n

    \n

    Yes, absolutely! In the layout screen of the setup process, the first few options you’ll see are slider widgets.

    \n

    \n
    \nCan you make modifications after the widget went live?\n\n

    \n

    Yes, you can. If you need to make changes after publishing the widget, you can do so through the admin board.

    \n

    \n
    \nWhy are Google reviews important?\n\n

    \n

    Google reviews are important because they lend credibility to your business and help you establish your reputation online, influencing consumer purchase decisions.

    \n

    \n
    \nAre Google reviews more reliable than other reviews?\n\n

    \n

    While it’s hard to say definitively, Google reviews are most likely the first source many consumers turn to for advice about a purchase decision.

    \n

    \n
    \nHow can you make the most out of Google reviews for your business?\n\n

    \n

    To make the most out of Google reviews, display the widget somewhere prominent on your homepage so visitors can see upfront how impressive your customer service is.

    \n

    \n
    \nCan your website visitors leave reviews in the widget?\n\n

    \n

    Yes we have widgets with this option, should visitors wish to have their review displayed in the widget, they can click the CTA (Call To Action) button which will lead them to the relevant review page on Google.

    \n

    \n
    \nWhat is the easiest way to collect Google reviews?\n\n

    \n

    A good rule to follow to collect more Google reviews is: if you don’t ask, you don’t get.

    \n

    When you communicate with your clients, use this as an opportunity to insert a link to your Google review page or mention leaving a review, whether it’s in an email, an SMS, or an in-person interaction.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    excellent and good view

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jose (bazkaesnwyllt) on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent and good view, I just wanted to show how grateful I am to the whole team for their good work, I am really impressed and I hope the result is exact, thank you and best regards, good job!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy minteyewear on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    good plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    excellent plugin and easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy leewaye on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    excellent plugin and easy to use. nice for my local business website. thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Rock solid and good for service area businesses

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy TopLocal-org (bizpower) on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I chose TrustIndex because of its credibility. But I have a service area business and couldn''t figure out how to use it because I don''t have a maps place ID. I tried all of the complicated inspection, looking through lines of code, etc and nothing worked. Then I read something tiny in the plugin and used the GBP url in guest mode. That worked beautifully! It''s light weight too so thumbs up from me.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastisch

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tigerannabelle on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Sehr gute Plugin, leichte Einrichtung

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best ever

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy zimozimo on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy, perfect, free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Gallery Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cpetitclerc on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does what it says it does and no issues. Great product.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excelente

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy feraltamirano on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Muy facil de configurar

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy atlantchiro on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin. Very easy to use. Installed it on two sites. No issues so far. Highly recommomend.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin and easy to use!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy appzade on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    So simple to set up and the free version does exactly what I need it to do!

    \n
    \n
    \n", "changelog": "

    The change log and upgrade notices can be found here: https://admin.trustindex.io/page/static/content/wp-changelog

    \n", "description": "

    Display your Google Reviews for free with our responsive widgets in 2 minutes.

    \n

    The plugin displays your Google Reviews in amazing predesigned widgets. You can simply create and display your own widgets, and filter your reviews to build customers’ trust and increase SEO.

    \n
    \n

    With Google reviews WordPress plugin, you can proudly display customer feedback on your business website. The widget comes in many eye-catching styles and designs, so you can choose the settings that best suit your company image. If you are growing your business or even if you’ve already established roots in your niche, a widget like this can further develop your online reputation and lead to more conversion.

    \n

    Without reviews, a business is left to fend for itself. Even if your company offers excellent products or streamlined services, you may always struggle to reach a broad audience if you don’t have consumers who would vouch for you. Consumers often make purchase decisions on the back of Google reviews, so don’t miss out on this free form of marketing that can skyrocket your sales and boost your online reputation.

    \n

    Our Google reviews plugin is straightforward to implement directly into your website, so you can focus your energy on other aspects of the business. All it takes is two minutes, and you’re all set up. Simply copy your business website’s link into the widget, then follow the simple process outlined in the video above to display it on your WordPress page.

    \n

    Google Reviews WordPress Plugin

    \n

    Many successful businesses use WordPress plugins to show off rave reviews left by customers, in the hope that it persuades other consumers to give them a shot. Unless you’re not interested in free marketing, displaying Google reviews for your business is a no-brainer.

    \n

    Google reviews, in particular, have a significant influence on consumer purchase decisions, given the massive popularity of the search engine and the number of people with Google accounts. Many consumers claim that Google is the first place they go to assess a business based on reviews, which makes Google reviews more reliable than those from other websites.

    \n

    You can leverage Google to catapult your business to further success if you try to secure as many four and five-star reviews as possible. The more reviews you have, the more prominent your business will become in a Google search, meaning more consumers will consider using your services.

    \n

    If you don’t yet have any Google reviews, there’s no need to panic; simply start requesting of your existing customers that they leave one when they get a chance. Get into the habit of soliciting reviews through email and SMS since by making it a regular practice you increase your chances of getting more of them.

    \n

    Free plugin features

    \n

    The Google Reviews WordPress plugin offers various layouts and styles to choose from and allows for easy integration into any WordPress page.

    \n
      \n
    • Free usage
    • \n
    • Display up to 10 Google Reviews
    • \n
    • 40+ Widget layouts
    • \n
    • 25+ Pre-designed widget styles
    • \n
    • 1 Review widget
    • \n
    • Filter reviews by rating
    • \n
    • Display review reply
    • \n
    • Hide any reviews
    • \n
    • Anonymize reviewer name
    • \n
    • Language support
    • \n
    • Shortcode integration
    • \n
    • Keep all reviews in a WordPress database
    • \n
    • SEO boost
    • \n
    • Dark website support
    • \n
    • Use in any page builder: Gutenberg, Elementor, Page Origin, Beaver Builder, WPBakery, Divi, Classic, …
    • \n
    • Widget lazy load
    • \n
    • Zero loading time
    • \n
    • Use of assets stored in CDN
    • \n
    • Linux & Windows (XAMPP, WAMP,…) compatible
    • \n
    • Multisite compatibility
    • \n
    \n

    Get more features with our professional review software

    \n

    Create a Free Account for More Features

    \n

    With the professional package, you’ll be able to display reviews from many of the top review websites, including Facebook, Yelp, Tripadvisor, and Airbnb. You’ll also be able to edit the widget image with a wide range of options, so you can cater to your demographic and increase the likelihood of conversion.

    \n

    If you want to stand out from your competitors, a great way to do so is to make the most of the free marketing reviews can offer. The professional review management software gives you access to a whole host of tools that simplify the process, leaving you more time and energy for running the business.

    \n

    Here are the features included in the software:

    \n
      \n
    • Display all reviews from Google, Facebook, Yelp, Amazon, Tripadvisor, Booking.com, AirBnb, Hotels.com, …
    • \n
    • Display reviews from different platforms in a widget
    • \n
    • Display reviews with photos
    • \n
    • Customizable design
    • \n
    • Unlimited number of widgets
    • \n
    • Management of multiple businesses
    • \n
    • Option to hide a review or mark as spam
    • \n
    • Professional review tagging system
    • \n
    • Widgets are updated when you receive a new review
    • \n
    • Widget link modification
    • \n
    • Edit review order
    • \n
    • Review shortening
    • \n
    • Automated review invitation system
    • \n
    • Review widgets for your email signatures
    • \n
    • Generate amazing images from your reviews to Instagram, Facebook, Twitter, Pinterest
    • \n
    • Shortcode & HTML/JavaScript support
    • \n
    • Detailed statistics
    • \n
    • Priority support
    • \n
    • AMP support
    • \n
    \n

    Create a Free Account for More Features

    \n

    Additional free review plugins

    \n

    Why not display your other ratings, too? Check out our other free review plugins:

    \n\n

    Languages

    \n

    If your company does business globally, it’s in your interest to cater to various languages.

    \n

    Our Widgets for Google Reviews supports the following languages:
    \nAfrikaans, Albanian, Arabic, Armenian, Azerbaijani, Bengali, Bosnian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hindi, Hungarian, Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian, Macedonian, Malay, Norwegian, Persian, Polish, Portuguese, Romanian, Russian, Scottish Gaelic, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukranian, Vietnamese, Welsh

    \n

    Support

    \n

    If you have any issues at all setting up the Google Reviews WordPress Plugin for your business, you can contact our customer support team in various ways.

    \n

    We offer 24/7 email support in English.

    \n

    We recommend the following order when searching for answers:
    \n1. Plugin FAQ here at the bottom – if you don’t already know why it’s worth displaying Google Reviews
    \n2. You can find more info and Troubleshooting in the plugin’s admin dashboard after install.
    \n3. Trustindex FAQ
    \n4. Check topics or ask a new question here: Support Forum
    \n5. Join our Community on Facebook: https://www.facebook.com/groups/990874785532977
    \n6. If you still can’t find the answer, feel free to email us: support@trustindex.io

    \n

    To find out more about who we are and what we do, here are some useful links:

    \n\n", "screenshots": "
    1. \"Sample

      Sample widget - Slider (light background)

    2. \"Sample

      Sample widget - Grid (light background)

    3. \"Sample

      Sample widget - List (light background)

    4. \"Connect

      Connect platform easily

    5. \"Select

      Select layouts easily

    6. \"\"
    7. \"\"
    8. \"\"
    9. \"\"
    10. \"\"
    11. \"\"
    ", "installation": "
      \n
    1. Upload the plugin files to the /wp-content/plugins/ directory, or install the plugin through the WordPress plugins screen directly.
    2. \n
    3. Activate the plugin through the ‘Plugins’ screen in WordPress
    4. \n
    5. Use the Trustindex.io menu item on the left to configure the plugin.
    6. \n
    7. You can get premium features under the “Get more Features” tab!
    8. \n
    \n"}, "versions": {"11.9": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.11.9.zip", "12.0": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.0.zip", "12.2": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.2.zip", "12.3": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.3.zip", "12.5": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.5.zip", "12.8": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.8.zip", "12.9": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.9.zip", "13.0": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.0.zip", "13.1": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.1.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.zip", "10.9.1": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.10.9.1.zip", "12.1.2": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.1.2.zip", "12.4.7": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.4.7.zip", "12.6.1": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.6.1.zip", "12.7.6": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.7.6.zip", "13.2.1": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.2.1.zip", "13.2.2": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.2.2.zip"}, "downloaded": 15065595, "description": "

    Display your Google Reviews for free with our responsive widgets in 2 minutes.

    \n

    The plugin displays your Google Reviews in amazing predesigned widgets. You can simply create and display your own widgets, and filter your reviews to build customers’ trust and increase SEO.

    \n
    \n

    With Google reviews WordPress plugin, you can proudly display customer feedback on your business website. The widget comes in many eye-catching styles and designs, so you can choose the settings that best suit your company image. If you are growing your business or even if you’ve already established roots in your niche, a widget like this can further develop your online reputation and lead to more conversion.

    \n

    Without reviews, a business is left to fend for itself. Even if your company offers excellent products or streamlined services, you may always struggle to reach a broad audience if you don’t have consumers who would vouch for you. Consumers often make purchase decisions on the back of Google reviews, so don’t miss out on this free form of marketing that can skyrocket your sales and boost your online reputation.

    \n

    Our Google reviews plugin is straightforward to implement directly into your website, so you can focus your energy on other aspects of the business. All it takes is two minutes, and you’re all set up. Simply copy your business website’s link into the widget, then follow the simple process outlined in the video above to display it on your WordPress page.

    \n

    Google Reviews WordPress Plugin

    \n

    Many successful businesses use WordPress plugins to show off rave reviews left by customers, in the hope that it persuades other consumers to give them a shot. Unless you’re not interested in free marketing, displaying Google reviews for your business is a no-brainer.

    \n

    Google reviews, in particular, have a significant influence on consumer purchase decisions, given the massive popularity of the search engine and the number of people with Google accounts. Many consumers claim that Google is the first place they go to assess a business based on reviews, which makes Google reviews more reliable than those from other websites.

    \n

    You can leverage Google to catapult your business to further success if you try to secure as many four and five-star reviews as possible. The more reviews you have, the more prominent your business will become in a Google search, meaning more consumers will consider using your services.

    \n

    If you don’t yet have any Google reviews, there’s no need to panic; simply start requesting of your existing customers that they leave one when they get a chance. Get into the habit of soliciting reviews through email and SMS since by making it a regular practice you increase your chances of getting more of them.

    \n

    Free plugin features

    \n

    The Google Reviews WordPress plugin offers various layouts and styles to choose from and allows for easy integration into any WordPress page.

    \n
      \n
    • Free usage
    • \n
    • Display up to 10 Google Reviews
    • \n
    • 40+ Widget layouts
    • \n
    • 25+ Pre-designed widget styles
    • \n
    • 1 Review widget
    • \n
    • Filter reviews by rating
    • \n
    • Display review reply
    • \n
    • Hide any reviews
    • \n
    • Anonymize reviewer name
    • \n
    • Language support
    • \n
    • Shortcode integration
    • \n
    • Keep all reviews in a WordPress database
    • \n
    • SEO boost
    • \n
    • Dark website support
    • \n
    • Use in any page builder: Gutenberg, Elementor, Page Origin, Beaver Builder, WPBakery, Divi, Classic, …
    • \n
    • Widget lazy load
    • \n
    • Zero loading time
    • \n
    • Use of assets stored in CDN
    • \n
    • Linux & Windows (XAMPP, WAMP,…) compatible
    • \n
    • Multisite compatibility
    • \n
    \n

    Get more features with our professional review software

    \n

    Create a Free Account for More Features

    \n

    With the professional package, you’ll be able to display reviews from many of the top review websites, including Facebook, Yelp, Tripadvisor, and Airbnb. You’ll also be able to edit the widget image with a wide range of options, so you can cater to your demographic and increase the likelihood of conversion.

    \n

    If you want to stand out from your competitors, a great way to do so is to make the most of the free marketing reviews can offer. The professional review management software gives you access to a whole host of tools that simplify the process, leaving you more time and energy for running the business.

    \n

    Here are the features included in the software:

    \n
      \n
    • Display all reviews from Google, Facebook, Yelp, Amazon, Tripadvisor, Booking.com, AirBnb, Hotels.com, …
    • \n
    • Display reviews from different platforms in a widget
    • \n
    • Display reviews with photos
    • \n
    • Customizable design
    • \n
    • Unlimited number of widgets
    • \n
    • Management of multiple businesses
    • \n
    • Option to hide a review or mark as spam
    • \n
    • Professional review tagging system
    • \n
    • Widgets are updated when you receive a new review
    • \n
    • Widget link modification
    • \n
    • Edit review order
    • \n
    • Review shortening
    • \n
    • Automated review invitation system
    • \n
    • Review widgets for your email signatures
    • \n
    • Generate amazing images from your reviews to Instagram, Facebook, Twitter, Pinterest
    • \n
    • Shortcode & HTML/JavaScript support
    • \n
    • Detailed statistics
    • \n
    • Priority support
    • \n
    • AMP support
    • \n
    \n

    Create a Free Account for More Features

    \n

    Additional free review plugins

    \n

    Why not display your other ratings, too? Check out our other free review plugins:

    \n\n

    Languages

    \n

    If your company does business globally, it’s in your interest to cater to various languages.

    \n

    Our Widgets for Google Reviews supports the following languages:
    \nAfrikaans, Albanian, Arabic, Armenian, Azerbaijani, Bengali, Bosnian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hindi, Hungarian, Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian, Macedonian, Malay, Norwegian, Persian, Polish, Portuguese, Romanian, Russian, Scottish Gaelic, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukranian, Vietnamese, Welsh

    \n

    Support

    \n

    If you have any issues at all setting up the Google Reviews WordPress Plugin for your business, you can contact our customer support team in various ways.

    \n

    We offer 24/7 email support in English.

    \n

    We recommend the following order when searching for answers:
    \n1. Plugin FAQ here at the bottom – if you don’t already know why it’s worth displaying Google Reviews
    \n2. You can find more info and Troubleshooting in the plugin’s admin dashboard after install.
    \n3. Trustindex FAQ
    \n4. Check topics or ask a new question here: Support Forum
    \n5. Join our Community on Facebook: https://www.facebook.com/groups/990874785532977
    \n6. If you still can’t find the answer, feel free to email us: support@trustindex.io

    \n

    To find out more about who we are and what we do, here are some useful links:

    \n\n", "donate_link": "https://www.trustindex.io/prices/", "num_ratings": 2338, "screenshots": {"1": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-1.png?rev=3032086", "caption": "Sample widget - Slider (light background)"}, "2": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-2.png?rev=3032086", "caption": "Sample widget - Grid (light background)"}, "3": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-3.png?rev=3032086", "caption": "Sample widget - List (light background)"}, "4": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-4.png?rev=3032086", "caption": "Connect platform easily"}, "5": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-5.png?rev=3032086", "caption": "Select layouts easily"}, "6": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-6.png?rev=3032086", "caption": ""}, "7": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-7.png?rev=3032086", "caption": ""}, "8": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-8.png?rev=3032086", "caption": ""}, "9": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-9.png?rev=3032086", "caption": ""}, "10": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-10.png?rev=3032086", "caption": ""}, "11": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-11.png?rev=3032086", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/wp-reviews-plugin-for-google/", "contributors": {"trustindex": {"avatar": "https://secure.gravatar.com/avatar/8da64826006a2477b7eaed28970af12d9a9585fbecb2db27ba78337924410abf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/trustindex/", "display_name": "Trustindex"}}, "last_updated": "2025-10-29 1:29pm GMT", "preview_link": "https://wordpress.org/plugins/wp-reviews-plugin-for-google/?preview=1", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.2.2.zip", "author_profile": "https://profiles.wordpress.org/trustindex/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-ff0a-7200-b48c-4378873cc7fb", "name": "Widgets for Google Reviews", "slug": "wp-reviews-plugin-for-google", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1761744540, "version": "13.2.2"}, "support_threads": 31, "requires_plugins": [], "short_description": "Embed Google reviews fast and easily into your WordPress site. Increase SEO, trust and sales using Google reviews.", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 26}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1f76-7110-ab33-383daf386d4e', 'did:web:api.aspiredev.org:packages:wp-plugin:wps-hide-login', 'wps-hide-login', 'WPS Hide Login', '

    English

    -

    WPS Hide Login is a very light plugin that lets you easily and safely change the url of the login form page to anything you want. It doesn’t literally rename or change files in core, nor does it add rewrite rules. It simply intercepts page requests and works on any WordPress website. The wp-admin directory and wp-login.php page become inaccessible, so you should bookmark or remember the url. Deactivating this plugin brings your site back exactly to the state it was before.

    -

    This plugin is kindly proposed by WPServeur the specialized WordPress web host.

    -

    Discover also our other free extensions:
    -– WPS Limit Login to block brute force attacks.
    -– WPS Bidouille to optimize your WordPress and get more info.
    -– WPS Cleaner to clean your WordPress site.

    -

    This plugin is only maintained, which means we do not guarantee free support. Consider reporting a problem and be patient.

    -

    Français

    -

    WPS Hide Login est un plugin très léger qui vous permet de changer facilement et en toute sécurité l’url de la page de formulaire de connexion. Il ne renomme pas littéralement ou ne modifie pas les fichiers dans le noyau, ni n’ajoute des règles de réécriture. Il intercepte simplement les demandes de pages et fonctionne sur n’importe quel site WordPress. Le répertoire wp-admin et la page wp-login.php deviennent inaccessibles, vous devez donc ajouter un signet ou vous souvenir de l’URL. Désactiver ce plugin ramène votre site exactement à l’état dans lequel il était auparavant.

    -

    Ce plugin vous est gentiment proposé par WPServeur l’hébergeur spécialisé WordPress.

    -

    Plus d’infos sur son utilisation : https://wpformation.com/wps-hide-login-url-connexion-wordpress/

    -

    Découvrez également nos autres extensions gratuites :
    -– WPS Limit Login pour bloquer les attaques par force brute.
    -– WPS Bidouille pour optimiser votre WordPress et faire le plein d’infos.
    -– WPS Cleaner pour nettoyer votre site WordPress.

    -

    Ce plugin est seulement maintenu, ce qui signifie que nous ne garantissons pas un support gratuit. Envisagez de signaler un problème et soyez patient.

    -

    Compatibility

    -

    English

    -

    Requires WordPress 4.1 or higher. All login related things such as the registration form, lost password form, login widget and expired sessions just keep working.

    -

    It’s also compatible with any plugin that hooks in the login form, including:

    -
      -
    • BuddyPress,
    • -
    • bbPress,
    • -
    • Jetpack,
    • -
    • WPS Limit Login,
    • -
    • and User Switching.
    • -
    -

    Obviously it doesn’t work with plugins or themes that hardcoded wp-login.php.

    -

    Works with multisite, with subdomains and subfolders. Activating it for a network allows you to set a networkwide default. Individual sites can still rename their login page to something else.

    -

    If you’re using a page caching plugin other than WP Rocket, you should add the slug of the new login url to the list of pages not to cache. WP Rocket is already fully compatible with the plugin.

    -

    Français

    -

    Nécessite WordPress 4.1 ou supérieur. Toutes les choses liées à la connexion telles que le formulaire d’inscription, le formulaire de mot de passe perdu, le widget de connexion et les sessions expirées continuent de fonctionner.

    -

    Il est également compatible avec tout plugin qui se connecte au formulaire de connexion, notamment:

    -
      -
    • BuddyPress,
    • -
    • bbPress,
    • -
    • Jetpack,
    • -
    • WPS Limit Login,
    • -
    • and User Switching.
    • -
    -

    Évidemment, cela ne fonctionne pas avec les plugins ou les thèmes hardcoded wp-login.php.

    -

    Fonctionne en multisite, avec sous-domaines ou sous dossiers. L’activer pour un réseau vous permet de définir une valeur par défaut pour l’ensemble du réseau. Les sites individuels peuvent toujours renommer leur page de connexion pour autre chose.

    -

    Si vous utilisez un plugin de mise en cache de pages autre que WP Rocket, vous devez ajouter le slug de la nouvelle URL de connexion à la liste des pages à ne pas mettre en cache. WP Rocket est déjà entièrement compatible avec le plugin.

    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WPS Hide Login", "slug": "wps-hide-login", "tags": {"login": "login", "rename": "rename", "wp-login": "wp login", "wp-login-php": "wp-login.php", "custom-login-url": "custom login url"}, "added": "2015-04-23", "icons": {"1x": "https://ps.w.org/wps-hide-login/assets/icon-128x128.png?rev=1820667", "2x": "https://ps.w.org/wps-hide-login/assets/icon-256x256.png?rev=1820667"}, "author": "Remy Perona", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wps-hide-login/assets/banner-772x250.jpg?rev=1820667", "high": "https://ps.w.org/wps-hide-login/assets/banner-1544x500.jpg?rev=1820667"}, "ratings": {"1": 60, "2": 8, "3": 15, "4": 32, "5": 1983}, "version": "1.9.17.2", "homepage": "", "requires": "4.1", "sections": {"faq": "\n
    \nI forgot my login url!\n\n

    \n

    Either go to your MySQL database and look for the value of whl_page in the options table, or remove the wps-hide-login folder from your plugins folder, log in through wp-login.php and reinstall the plugin.

    \n

    On a multisite install the whl_page option will be in the sitemeta table, if there is no such option in the options table.

    \n

    \n
    \nRegistration and lost password URL\n\n

    \n

    You have to give the url. example: /login?action=register or /login?action=lostpassword
    \nBut there is no redirection via the plugin, the default URL of WordPress (/wp-login.php?action=register or /wp-login.php?action=lostpassword) otherwise everyone could know the url of administration of your site.

    \n

    \n
    \nI’m locked out!\n\n

    \n

    This case can come from plugins modifying your .htaccess files to add or change rules, or from an old WordPress MU configuration not updated since Multisite was added.

    \n

    First step is to check your .htaccess file and compare it to a regular one, to see if the problem comes from it.

    \n

    \n
    \nJ’ai oublié mon identifiant de connexion !\n\n

    \n

    Allez dans votre base de données MySQL et recherchez la valeur de ‘whl_page’ dans la table des options, ou supprimez le dossier ‘wps-hide-login’ de votre dossier ‘plugins’, connectez-vous via wp-login.php et réinstallez le plugin .

    \n

    Sur une installation multisite, l’option ‘whl_page’ sera dans la table de sitemeta, si l’option n’existe pas dans la table des options.

    \n

    \n
    \nURL d’inscription et de mot de passe oublié\n\n

    \n

    Il vous faut donner l’url. exemple : /login?action=register ou /login?action=lostpassword
    \nMais il n’y pas de redirection via le plugin, de l’url par défaut de WordPress (/wp-login.php?action=register ou /wp-login.php?action=lostpassword) sinon tout le monde pourrait connaître l’url d’administration de votre site.

    \n

    \n
    \nJe suis bloqué !\n\n

    \n

    Ce cas peut provenir de plugins modifiant vos fichiers .htaccess pour ajouter ou modifier des règles, ou d’une ancienne configuration de WordPress MU non mise à jour depuis l’ajout de Multisite.

    \n

    La première étape consiste à vérifier votre fichier .htaccess et à le comparer à un fichier .htaccess normal, pour voir si le problème provient de ce fichier.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Still getting log in attempts

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy webify24 on August 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    On most of my sites this plugin works but there are still sites that gets log in attempts from the admin log in screen. How is this possible?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Your Plugin crashes 200 websites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy davidperezh on June 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After activating the plugin I can no longer log in any of my customers sites. It returns:

    \n\n\n\n

    Not Found

    \n\n\n\n

    The requested URL was not found on this server.

    \n\n\n\n

    I''m be foreced to deactivate your plugin in all the sites to recover the admin access.

    \n\n\n\n

    Please take not of this error and please do your best ASAP to fix the issue to activate the plugin.

    \n\n\n\n

    Thank you.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Broke my site and leaves admin logged in always

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy HudsonValleyWebDesign (jaycbrf) on June 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After activating the plugin I can no longer log out of my site. The admin bar is always visible for all to see and get access to the back end. Site is now redirecting to my blog page with a 404 error and can not get back into the site with normal wp-login url or the replaced login url.
    Using Oxygen Builder with no-theme.
    Plugin is useless.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Beware! Custom login URL redirects to 404.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Brad (braads) on May 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The (new) login URL redirects to 404.
    I could no longer log in... Had to deactivate the plugin on the server.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So Easy, Perfect Results

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stephgphotos on May 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was plagued by bot and hacker logins, all failing until locked out - so many every day! I installed this plug-in, changed my custom url path, and voila! Not a single hack!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy and helps stop bots

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jason Ball (jasonfintips) on May 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy plugin that should be on a starter pack to hide your login from bots. Seems light and easy.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Failed with WP 6.7

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alanlivtech on March 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I tried to download the latest version of the WP (6.7.2), I set up the site than install the WPS Hide Login plugin. I active the plugin and change the path as /system-login/ and save my change

    However, I would failed to logout the admin.
    I cannot redirect to login page with another browser
    I tried to type the path as. <domain>/system-login , <domain>/system-login/wp-login.php , <domain>/system-login/login or other path, all the link are not available

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does exactly what it should do, nice!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy zielniok on March 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It does just one thing right. It works. Not a matter of course these days for plugins. Thank you very much for it. BTW: if you ask for review, don''t use a Google MyBusiness link. I can''t rate your company, but I like to do it here. 🙏🏽

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy milmotor on March 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    non funziona

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pagrob on January 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Se clicchi su recupera password espone tutto come prima

    \n
    \n
    \n", "changelog": "

    1.9.17.2

    \n
      \n
    • Tested up to 6.8
    • \n
    \n

    1.9.17.1

    \n
      \n
    • Fix link dashboard in admin network > sites
    • \n
    \n

    1.9.17

    \n
      \n
    • Tested up to 6.6
    • \n
    • Fix link dashboard in admin network > sites
    • \n
    \n

    1.9.16.7

    \n
      \n
    • Fix Fatal Error with BuddyBoss
    • \n
    \n

    1.9.16.6

    \n
      \n
    • Fix Fatal Error with BuddyBoss Platform
    • \n
    \n

    1.9.16.5

    \n
      \n
    • Fix Fatal Error with BuddyBoss
    • \n
    \n

    1.9.16.4

    \n
      \n
    • Fix vulnerability : https://www.sprocketsecurity.com/resources/discovering-wp-admin-urls-in-wordpress-with-gravityforms
    • \n
    \n

    1.9.16.3

    \n
      \n
    • Fix NOTICE: PHP message: PHP Warning: Private methods cannot be final as they are never overridden by other classes (https://wordpress.org/support/topic/private-methods-cannot-be-final-as-they-are-never-overridden-by-other-classes-2/)
    • \n
    \n

    1.9.16.2

    \n
      \n
    • Fix post_password if already logged in
    • \n
    \n

    1.9.16.1

    \n
      \n
    • Change section desc
    • \n
    \n

    1.9.16

    \n
      \n
    • Fix vulnerability : Login Page Disclosure
    • \n
    \n

    1.9.15.2

    \n
      \n
    • Fix number tags
    • \n
    \n

    1.9.15.1

    \n
      \n
    • Revert fix
    • \n
    \n

    1.9.15

    \n
      \n
    • Fix vulnerability (Thanks @petitphp) : Login Page Disclosure
    • \n
    \n

    1.9.14

    \n
      \n
    • Tested up to 6.5
    • \n
    \n

    1.9.13.2

    \n
      \n
    • Remove admin notice
    • \n
    \n

    1.9.13.1

    \n
      \n
    • Remove admin notice
    • \n
    \n

    1.9.13

    \n
      \n
    • Fix dismiss admin notice
    • \n
    \n

    1.9.12

    \n
      \n
    • Fix vulnerability (Thanks Naveen Muthusamy – Patchstack) : Bypass Vulnerability with multisite WordPress /wp-admin/install.php.
    • \n
    • Add warning in options discussions settings.
    • \n
    • Add warning in dashboard if comment_registration option is activated.
    • \n
    \n

    1.9.11

    \n
      \n
    • Tested up to 6.4
    • \n
    \n

    1.9.9

    \n
      \n
    • Tested up to 6.3
    • \n
    \n

    1.9.8

    \n
      \n
    • Update readme
    • \n
    \n

    1.9.7

    \n
      \n
    • Tested up to 6.1
    • \n
    • Fix : is_login (Thanks @container)
    • \n
    \n

    1.9.6

    \n
      \n
    • Tested up to 6.0
    • \n
    \n

    1.9.4

    \n
      \n
    • Tested up to 5.9
    • \n
    \n

    1.9.3

    \n
      \n
    • Fix : PHP Warning: Undefined array key “path”
    • \n
    \n

    1.9.2

    \n
      \n
    • Add action before redirect
    • \n
    • Fix redirect with wp-cli (Thanks @netson)
    • \n
    \n

    1.9.1

    \n
      \n
    • Fix : by-pass security issue allowing an unauthenticated user to get login page by setting a random referer string via curl request.
    • \n
    \n

    1.9

    \n
      \n
    • Fix : redirect ajax add_to_cart
    • \n
    \n

    1.8.8

    \n
      \n
    • Fix : redirect_url (Thanks Don)
    • \n
    \n

    1.8.7

    \n
      \n
    • Fix : remove redirect in doing cron
    • \n
    \n

    1.8.6

    \n
      \n
    • Tested up to 5.8
    • \n
    \n

    1.8.5

    \n
      \n
    • Fix : Force refresh permalinks update option ‘whl_page’
    • \n
    \n

    1.8.4

    \n
      \n
    • Tested up to 5.7
    • \n
    \n

    1.8.3

    \n
      \n
    • Fix : remove WP_Review
    • \n
    \n

    1.8.2

    \n
      \n
    • Fix notice “Notice: Trying to get property ‘href’ of non-object”
    • \n
    \n

    1.8.1

    \n
      \n
    • Fix fatal error with vendor wp-dismissible-notices-handler and wp-review-me
    • \n
    \n

    1.8

    \n
      \n
    • Fix multisite subdomain for website menu (Thanks Eric Celeste)
    • \n
    \n

    1.7

    \n
      \n
    • Fix vulnerability (Thanks Sebastian Schmitt) : Posting “post_password” with arbitrary content to /wp-login.php reveals the normal wordpress login page.
    • \n
    \n

    1.6.1

    \n
      \n
    • Fix : loopback request site-health
    • \n
    \n

    1.6

    \n
      \n
    • Tested up to 5.6
    • \n
    • Add compatibility with PHP8
    • \n
    \n

    1.5.7

    \n
      \n
    • Fix : Text Domain Issue
    • \n
    \n

    1.5.6

    \n
      \n
    • Fix : flush rewrite rules after install or update option
    • \n
    • Tested up to 5.4
    • \n
    \n

    1.5.5

    \n
      \n
    • Add filter to redirect in cases where the user is already logged in.
    • \n
    • Fix : add rawurldecode for all $_SERVER[‘REQUEST_URI’] (Thanks @nintechnet)
    • \n
    \n

    1.5.4.2

    \n
      \n
    • Revert to code in tag 1.5.3
    • \n
    \n

    1.5.4.1

    \n
      \n
    • Fix : home_url / site_url
    • \n
    \n

    1.5.4

    \n
      \n
    • Fix : Compatibility with WPML (Thanks @susansiow)
    • \n
    \n

    1.5.3

    \n
      \n
    • Fix : Security vulnerabilities (Thanks @juliobox)
    • \n
    \n

    1.5.2.2

    \n
      \n
    • Tested up to 5.2
    • \n
    • Fix : Domain language
    • \n
    \n

    1.5.2.1

    \n
      \n
    • Fix : Notice: Undefined index: query
    • \n
    \n

    1.5.2

    \n
      \n
    • Fix : Action URL wp_send_user_request()
    • \n
    \n

    1.5.1

    \n
      \n
    • Fix : Action URL get_the_password_form()
    • \n
    \n

    1.5

    \n
      \n
    • Enhancement: Add custom redirection URL
    • \n
    \n

    1.4.5

    \n
      \n
    • Fix : function wp_login_url on page 404 now returns an empty link
    • \n
    \n

    1.4.4

    \n
      \n
    • Fix : Too many redirects when a user clicks “Log in with WordPress.com”
    • \n
    \n

    1.4.3

    \n
      \n
    • Fix : Fatal Error with multisite WP
    • \n
    \n

    1.4.2

    \n
      \n
    • Fix : Error with library for compat WordPress and PHP
    • \n
    \n

    1.4.1

    \n
      \n
    • Fix : Remove message review if PHP is too old
    • \n
    \n

    1.4

    \n
      \n
    • Enhancement code with composer, namespace and autoload
    • \n
    \n

    1.3.4.2

    \n
      \n
    • Fix : Remove message review if PHP is too old
    • \n
    \n

    1.3.4.1

    \n
      \n
    • Fix : Deprecated method
    • \n
    \n

    1.3.4

    \n
      \n
    • Add : Review message
    • \n
    • Fix : Redirect url wp-admin/options.php
    • \n
    \n

    1.3.3

    \n
      \n
    • Add : Filter hook for enable wp-signup (@sumobi)
    • \n
    \n

    1.3.2

    \n
      \n
    • Fix : Encoding of the login with a space in the emails
    • \n
    \n

    1.3.1

    \n
      \n
    • Fix : redirect change admin email
    • \n
    \n

    1.3

    \n
      \n
    • Fix : redirect wp-register.php
    • \n
    \n

    1.2.7

    \n
      \n
    • Enhancement for Woocommerce email notification
    • \n
    \n

    1.2.6.1

    \n
      \n
    • Revert redirect after login
    • \n
    \n

    1.2.6

    \n
      \n
    • Fix : redirect after login
    • \n
    \n

    1.2.5.1

    \n
      \n
    • Fix : add action in hook activate
    • \n
    \n

    1.2.5

    \n
      \n
    • Remove : redirect activate
    • \n
    \n

    1.2.4

    \n
      \n
    • Remove: Third party wpserveur
    • \n
    \n

    1.2.3.1

    \n
      \n
    • Enhancement: Add translations cs_CZ, da_DK, es_ES, it_IT, ru_RU
    • \n
    • Fix: Parse error classes/plugin.php l.530
    • \n
    \n

    1.2.3

    \n
      \n
    • Fix: change 403 to 404 error on wp-admin
    • \n
    • Fix: activate plugin
    • \n
    • Enhancement: Third party wpserveur
    • \n
    \n

    1.2.2

    \n
      \n
    • Enhancement: Compatibility 4.9.x
    • \n
    \n

    1.2.1

    \n
      \n
    • Enhancement: Prevent access to the login page by using the URL encoded version of wp-login.php
    • \n
    \n

    1.2

    \n
      \n
    • Enhancement: Prevent redirection to login URL when accessing /wp-admin/customize.php directly
    • \n
    • Enhancement: Redirect to admin URL when already logged-in and accessing login URL without the action query string
    • \n
    \n

    1.1.7

    \n
      \n
    • Fix: change fake 404 on wp-admin when not logged-in to a 403 forbidden to prevent fatal errors with various themes & plugins
    • \n
    \n

    1.1.6

    \n
      \n
    • Fix: bug with Yoast SEO causing a Fatal Error and blank screen when loading /wp-admin/ without being logged-in
    • \n
    \n

    1.1.5

    \n
      \n
    • Fix: Stop displaying the new login url notice everywhere when settings are updated (thanks @ kmelia on GitHub)
    • \n
    • Improvement: better way of retrieving the 404 template
    • \n
    \n

    1.1.4

    \n
      \n
    • Fix: bypass the plugin when $pagenow is admin-post.php
    • \n
    \n

    1.1.3

    \n
      \n
    • Fix: issue if no 404 template in active theme directory
    • \n
    \n

    1.1.2

    \n
      \n
    • Modified priority on hooks to fix a problem with some configurations
    • \n
    \n

    1.1.1

    \n
      \n
    • Check for Rename wp-login.php activation before activating WPS Hide Login to prevent conflict
    • \n
    \n

    1.1

    \n
      \n
    • Fix : CSRF security issue when saving option value in single site and multisite mode. Thanks to @Secupress
    • \n
    • Improvement : changed option location from permalinks to general, because register_setting doesn’t work on permalinks page.
    • \n
    • Improvement : notice after saving is now dismissible (compatibility with WP 4.2)
    • \n
    • Uninstall function is now in it’s separate file uninstall.php
    • \n
    • Some cleaning and reordering of code
    • \n
    \n

    1.0

    \n
      \n
    • Initial version. This is a fork of the Rename wp-login.php plugin, which is unmaintained https://wordpress.org/plugins/rename-wp-login/. All previous changelogs can be found there.
    • \n
    \n", "description": "

    English

    \n

    WPS Hide Login is a very light plugin that lets you easily and safely change the url of the login form page to anything you want. It doesn’t literally rename or change files in core, nor does it add rewrite rules. It simply intercepts page requests and works on any WordPress website. The wp-admin directory and wp-login.php page become inaccessible, so you should bookmark or remember the url. Deactivating this plugin brings your site back exactly to the state it was before.

    \n

    This plugin is kindly proposed by WPServeur the specialized WordPress web host.

    \n

    Discover also our other free extensions:
    \n– WPS Limit Login to block brute force attacks.
    \n– WPS Bidouille to optimize your WordPress and get more info.
    \n– WPS Cleaner to clean your WordPress site.

    \n

    This plugin is only maintained, which means we do not guarantee free support. Consider reporting a problem and be patient.

    \n

    Français

    \n

    WPS Hide Login est un plugin très léger qui vous permet de changer facilement et en toute sécurité l’url de la page de formulaire de connexion. Il ne renomme pas littéralement ou ne modifie pas les fichiers dans le noyau, ni n’ajoute des règles de réécriture. Il intercepte simplement les demandes de pages et fonctionne sur n’importe quel site WordPress. Le répertoire wp-admin et la page wp-login.php deviennent inaccessibles, vous devez donc ajouter un signet ou vous souvenir de l’URL. Désactiver ce plugin ramène votre site exactement à l’état dans lequel il était auparavant.

    \n

    Ce plugin vous est gentiment proposé par WPServeur l’hébergeur spécialisé WordPress.

    \n

    Plus d’infos sur son utilisation : https://wpformation.com/wps-hide-login-url-connexion-wordpress/

    \n

    Découvrez également nos autres extensions gratuites :
    \n– WPS Limit Login pour bloquer les attaques par force brute.
    \n– WPS Bidouille pour optimiser votre WordPress et faire le plein d’infos.
    \n– WPS Cleaner pour nettoyer votre site WordPress.

    \n

    Ce plugin est seulement maintenu, ce qui signifie que nous ne garantissons pas un support gratuit. Envisagez de signaler un problème et soyez patient.

    \n

    Compatibility

    \n

    English

    \n

    Requires WordPress 4.1 or higher. All login related things such as the registration form, lost password form, login widget and expired sessions just keep working.

    \n

    It’s also compatible with any plugin that hooks in the login form, including:

    \n
      \n
    • BuddyPress,
    • \n
    • bbPress,
    • \n
    • Jetpack,
    • \n
    • WPS Limit Login,
    • \n
    • and User Switching.
    • \n
    \n

    Obviously it doesn’t work with plugins or themes that hardcoded wp-login.php.

    \n

    Works with multisite, with subdomains and subfolders. Activating it for a network allows you to set a networkwide default. Individual sites can still rename their login page to something else.

    \n

    If you’re using a page caching plugin other than WP Rocket, you should add the slug of the new login url to the list of pages not to cache. WP Rocket is already fully compatible with the plugin.

    \n

    Français

    \n

    Nécessite WordPress 4.1 ou supérieur. Toutes les choses liées à la connexion telles que le formulaire d’inscription, le formulaire de mot de passe perdu, le widget de connexion et les sessions expirées continuent de fonctionner.

    \n

    Il est également compatible avec tout plugin qui se connecte au formulaire de connexion, notamment:

    \n
      \n
    • BuddyPress,
    • \n
    • bbPress,
    • \n
    • Jetpack,
    • \n
    • WPS Limit Login,
    • \n
    • and User Switching.
    • \n
    \n

    Évidemment, cela ne fonctionne pas avec les plugins ou les thèmes hardcoded wp-login.php.

    \n

    Fonctionne en multisite, avec sous-domaines ou sous dossiers. L’activer pour un réseau vous permet de définir une valeur par défaut pour l’ensemble du réseau. Les sites individuels peuvent toujours renommer leur page de connexion pour autre chose.

    \n

    Si vous utilisez un plugin de mise en cache de pages autre que WP Rocket, vous devez ajouter le slug de la nouvelle URL de connexion à la liste des pages à ne pas mettre en cache. WP Rocket est déjà entièrement compatible avec le plugin.

    \n", "screenshots": "
    1. \"Setting

      Setting on single site installation

    2. \"Setting

      Setting for network wide

    ", "installation": "

    English

    \n
      \n
    1. Go to Plugins › Add New.
    2. \n
    3. Search for WPS Hide Login.
    4. \n
    5. Look for this plugin, download and activate it.
    6. \n
    7. The page will redirect you to the settings. Change your login url there.
    8. \n
    9. You can change this option any time you want, just go back to Settings › WPS Hide Login.
    10. \n
    \n

    Français

    \n
      \n
    1. Aller dans Extensions › Ajouter.
    2. \n
    3. Rechercher WPS Hide Login.
    4. \n
    5. Recherchez ce plugin, téléchargez-le et activez-le.
    6. \n
    7. La page vous redirigera vers les paramètres. Changez votre URL de connexion.
    8. \n
    9. Vous pouvez changer cette option quand vous le souhaitez, il vous suffit de retourner dans Paramètres > WPS Hide Login.
    10. \n
    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.zip", "1.1.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.7.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.7.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.4.zip", "1.4.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.5.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.7.zip", "1.6.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.6.1.zip", "1.8.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.8.zip", "1.9.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/wps-hide-login.zip", "1.9.10": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.10.zip", "1.9.11": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.11.zip", "1.9.12": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.12.zip", "1.9.13": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.13.zip", "1.9.15": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.15.zip", "1.9.16": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.zip", "1.9.17": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.17.zip", "1.2.3.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.3.1.zip", "1.2.5.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.5.1.zip", "1.2.6.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.6.1.zip", "1.3.4.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.4.1.zip", "1.3.4.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.4.2.zip", "1.5.2.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.2.1.zip", "1.5.2.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.2.2.zip", "1.5.4.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.4.1.zip", "1.5.4.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.4.2.zip", "1.9.13.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.13.1.zip", "1.9.13.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.13.2.zip", "1.9.15.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.15.1.zip", "1.9.15.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.15.2.zip", "1.9.16.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.1.zip", "1.9.16.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.2.zip", "1.9.16.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.3.zip", "1.9.16.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.4.zip", "1.9.16.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.5.zip", "1.9.16.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.6.zip", "1.9.16.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.7.zip", "1.9.17.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.17.1.zip", "1.9.17.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.17.2.zip"}, "downloaded": 28923889, "description": "

    English

    \n

    WPS Hide Login is a very light plugin that lets you easily and safely change the url of the login form page to anything you want. It doesn’t literally rename or change files in core, nor does it add rewrite rules. It simply intercepts page requests and works on any WordPress website. The wp-admin directory and wp-login.php page become inaccessible, so you should bookmark or remember the url. Deactivating this plugin brings your site back exactly to the state it was before.

    \n

    This plugin is kindly proposed by WPServeur the specialized WordPress web host.

    \n

    Discover also our other free extensions:
    \n– WPS Limit Login to block brute force attacks.
    \n– WPS Bidouille to optimize your WordPress and get more info.
    \n– WPS Cleaner to clean your WordPress site.

    \n

    This plugin is only maintained, which means we do not guarantee free support. Consider reporting a problem and be patient.

    \n

    Français

    \n

    WPS Hide Login est un plugin très léger qui vous permet de changer facilement et en toute sécurité l’url de la page de formulaire de connexion. Il ne renomme pas littéralement ou ne modifie pas les fichiers dans le noyau, ni n’ajoute des règles de réécriture. Il intercepte simplement les demandes de pages et fonctionne sur n’importe quel site WordPress. Le répertoire wp-admin et la page wp-login.php deviennent inaccessibles, vous devez donc ajouter un signet ou vous souvenir de l’URL. Désactiver ce plugin ramène votre site exactement à l’état dans lequel il était auparavant.

    \n

    Ce plugin vous est gentiment proposé par WPServeur l’hébergeur spécialisé WordPress.

    \n

    Plus d’infos sur son utilisation : https://wpformation.com/wps-hide-login-url-connexion-wordpress/

    \n

    Découvrez également nos autres extensions gratuites :
    \n– WPS Limit Login pour bloquer les attaques par force brute.
    \n– WPS Bidouille pour optimiser votre WordPress et faire le plein d’infos.
    \n– WPS Cleaner pour nettoyer votre site WordPress.

    \n

    Ce plugin est seulement maintenu, ce qui signifie que nous ne garantissons pas un support gratuit. Envisagez de signaler un problème et soyez patient.

    \n

    Compatibility

    \n

    English

    \n

    Requires WordPress 4.1 or higher. All login related things such as the registration form, lost password form, login widget and expired sessions just keep working.

    \n

    It’s also compatible with any plugin that hooks in the login form, including:

    \n
      \n
    • BuddyPress,
    • \n
    • bbPress,
    • \n
    • Jetpack,
    • \n
    • WPS Limit Login,
    • \n
    • and User Switching.
    • \n
    \n

    Obviously it doesn’t work with plugins or themes that hardcoded wp-login.php.

    \n

    Works with multisite, with subdomains and subfolders. Activating it for a network allows you to set a networkwide default. Individual sites can still rename their login page to something else.

    \n

    If you’re using a page caching plugin other than WP Rocket, you should add the slug of the new login url to the list of pages not to cache. WP Rocket is already fully compatible with the plugin.

    \n

    Français

    \n

    Nécessite WordPress 4.1 ou supérieur. Toutes les choses liées à la connexion telles que le formulaire d’inscription, le formulaire de mot de passe perdu, le widget de connexion et les sessions expirées continuent de fonctionner.

    \n

    Il est également compatible avec tout plugin qui se connecte au formulaire de connexion, notamment:

    \n
      \n
    • BuddyPress,
    • \n
    • bbPress,
    • \n
    • Jetpack,
    • \n
    • WPS Limit Login,
    • \n
    • and User Switching.
    • \n
    \n

    Évidemment, cela ne fonctionne pas avec les plugins ou les thèmes hardcoded wp-login.php.

    \n

    Fonctionne en multisite, avec sous-domaines ou sous dossiers. L’activer pour un réseau vous permet de définir une valeur par défaut pour l’ensemble du réseau. Les sites individuels peuvent toujours renommer leur page de connexion pour autre chose.

    \n

    Si vous utilisez un plugin de mise en cache de pages autre que WP Rocket, vous devez ajouter le slug de la nouvelle URL de connexion à la liste des pages à ne pas mettre en cache. WP Rocket est déjà entièrement compatible avec le plugin.

    \n", "donate_link": "https://www.paypal.me/donateKulkaNicolas", "num_ratings": 2098, "screenshots": {"1": {"src": "https://ps.w.org/wps-hide-login/assets/screenshot-1.jpg?rev=1146909", "caption": "Setting on single site installation"}, "2": {"src": "https://ps.w.org/wps-hide-login/assets/screenshot-2.png?rev=1143480", "caption": "Setting for network wide"}}, "support_url": "https://wordpress.org/support/plugin/wps-hide-login/", "contributors": {"wpserveur": {"avatar": "https://secure.gravatar.com/avatar/f04351fff97b5f1197e75c6df38d183e3533ccd1f5c654c181f08e57e74be785?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpserveur/", "display_name": "WPServeur"}, "wpformation": {"avatar": "https://secure.gravatar.com/avatar/adaffd3b99cdee00f98fbf3e9be064a0f007c199250638333e6dea50049068b4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpformation/", "display_name": "wpformation"}, "nicolaskulka": {"avatar": "https://secure.gravatar.com/avatar/e5c50e75685e7a1bff6c81dec404cb64d71b5eeca1e52c041d84ccefbb070ea7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nicolaskulka/", "display_name": "NicolasKulka"}}, "last_updated": "2025-04-11 7:15am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.17.2.zip", "author_profile": "https://profiles.wordpress.org/tabrisrp/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-ff5b-7327-b7d5-490a90a6a541", "name": "WPS Hide Login", "slug": "wps-hide-login", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1744355700, "version": "1.9.17.2"}, "support_threads": 8, "requires_plugins": [], "short_description": "Change wp-login.php to anything you want.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 2}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1f86-71c9-96ee-f7f658d86be5', 'did:web:api.aspiredev.org:packages:wp-plugin:wp-smushit', 'wp-smushit', 'Smush Image Optimization – Optimize Images | Compress & Lazy Load Images | Convert WebP & AVIF | Image CDN', '

    The #1 Image Optimization Plugin for WordPress

    -

    Smush is the leading image optimization plugin – optimize, resize, and compress images, as well as convert images to WebP or AVIF format for faster loading web pages.

    -

    Brought to you by the WPMU DEV team – founded in 2007 and trusted by web professionals from freelancer to agency worldwide ever since.

    -

    Whether you spell it ‘optimise’ or ‘optimize’ – with Smush’s image optimizer you can compress images and serve images in next-gen formats (convert to WebP or AVIF), all without introducing a visible drop in quality.

    -

    Enjoy uninterrupted bulk image optimization with Smush Pro.

    -

    Level up immediately with exclusive Pro benefits like uninterrupted image optimization, 5x more image compression, and 119-point global image CDN. Learn more about Pro.

    -

    Award-Winning Image Optimizer

    -

    Smush has been benchmarked and tested number one for speed and quality. Beyond that, it’s also the award-winning, back-to-back proven crowd-favorite WordPress image optimizer trusted by over 1M+ worldwide to:

    -
      -
    • Optimize images
    • -
    • Compress images
    • -
    • Lazy load images & videos
    • -
    • Preload critical images
    • -
    • Automatic resizing
    • -
    • Resize larger images
    • -
    • Convert to WebP or AVIF
    • -
    • And more…
    • -
    -

    Why Use Smush To Optimize Images (The Smush Difference)

    -

    Smush was built from the ground up to make it easy for WordPress users to optimize images, activate lazy loading, compress media files, and more – whether they’re just getting started, or a seasoned pro who’s developed thousands of websites.

    -

    Improve website performance (along with Google PageSpeed Insights scores) with compressed and optimized images and lazy loading – all while actually delivering a better user experience because the rollout of Core Web Vitals has proven one thing: performance is about far more than just scoring well on performance testing tools. Visitor experience matters.

    -

    Discover the features that set Smush apart from other image optimization plugins:

    -
      -
    • Lossless compression (Basic Smush) – Strip unused data and compress images without affecting image quality.
    • -
    • Lossy compression (Super Smush) – Optimize images up to 2x more than lossless compression with our cutting-edge, multi-pass lossy image compression.
    • -
    • Ultra Smush (Pro Only) – Take performance to the next level with 5x image compressing power! Your images will be as light and fast as possible, while still preserving remarkable image quality.
    • -
    • Built-In Lazy Loading – Lazy load images to defer loading of offscreen images & videos with the flip of a switch.
    • -
    • Convert to WebP or AVIF (Pro Only) – Use the Next-Gen Formats feature to convert and automatically serve images in next-gen WebP or AVIF format.
    • -
    • Preload Critical Images (Pro Only) – Improve Google Pagespeed scores by automatically preloading Largest Contentful Paint (LCP) images.
    • -
    • Bulk Smush – Bulk optimize and compress images with one click.
    • -
    • Background Optimization (Pro Only) – Smush’s powerful image optimization features will continue to run in the background even when the plugin is closed.
    • -
    • Automatic Resizing (Pro Only) – Speeds up your site by automatically resizing images to fit their containers, eliminating “Properly size images” PageSpeed warnings.
    • -
    • Resize Larger Images – Set a maximum width and height, and add missing image sizes to allow the browser to make intelligent decisions about which image to load.
    • -
    • 119-point global CDN (Pro Only) – Ensure blazing-fast image delivery anywhere in the world. Includes automatic WebP/AVIF conversion and image resizing, plus, GIF / Rest API support.
    • -
    • Incorrect Image Size Detection – Quickly locate images that are slowing down your site.
    • -
    • Directory Smush – Optimize images even if they aren’t in the default WordPress media library.
    • -
    • Automated Optimization – Asynchronously auto-smush your attachments for super fast compression on upload.
    • -
    • No Monthly Limits – Optimize all of your images (up to 5 MB in size) free forever (no daily, monthly, or annual limits).
    • -
    • Gutenberg Block Integration – View image compression information directly in image blocks.
    • -
    • Multisite Compatible – Flexible global and subsite settings for multisite installations.
    • -
    • Optimize All Image Files – Smush supports optimization for all of your PNG and JPEG files.
    • -
    • No Performance Impact On Your Server – Image optimization is not run on your website’s server to prevent wasting server resources (that you pay for) and is instead run using the fast, reliable WPMU DEV Smush API.
    • -
    • Configs – Set your preferred Smush settings, save them as a config, and instantly upload to any other site.
    • -
    • And many, many, more!
    • -
    -

    Learn More With These Hands-On Image Optimization & Performance Tutorials

    - -

    Next-Gen Formats – Serve Images In WebP or AVIF format

    -

    With Smush, you can take advantage of next-gen image formats by converting all of your images to WebP or AVIF. WebP & AVIF are file formats that enable superior image compression and quality retention. All major performance testing solutions, including Google PageSpeed Insights, assess your site’s ability to serve images in these next-gen formats due to the significant impact on visitor experience.

    -

    WebP lossless images are 26% smaller in size compared to PNGs. WebP lossy images are 25-34% smaller than comparable JPG images. AVIF images are up to 60% smaller than comparable JPG or PNG images. More information can be found in this Google developers article and this web.dev article.

    -

    The best part: Smush’s Next-Gen Formats feature makes this incredibly easy to set up with the ability to host all images locally (not requiring the use of a CDN). Our Next-Gen Formats feature includes automatically replacing PNG and JPEG images on your website’s frontend to serve WebP or AVIF images – with the necessary fallbacks for browsers that don’t support next-gen formats yet.

    -

    Learn more: How To Convert Images to WebP In WordPress

    -

    Note: Yes, Smush supports next-gen conversion for all image formats, including JPEG to WebP/AVIF, and PNG to WebP/AVIF.

    -

    With the best image optimization plugin for WordPress – you can finally stop worrying about the performance impact of using the images you want on your website.

    -

    Compress Images While Preserving Image Quality

    -

    Image compression plugins don’t have to destroy images with a visible, 30% loss in quality. Smush strips hidden information from your images (that can often be bulky), and reduces image file sizes without introducing a visible impact on appearance.

    -

    Smush meticulously scans every image you upload – or have already added to your site – cuts all the unnecessary data, and scales it for you before adding it to your media library. And it can serve images in WebP or AVIF format.

    -

    Compress Images While You Sleep With Background Image Optimization

    -

    Have a large number of images to compress? Smush’s powerful optimization features will continue to work their magic in the background, even when you’ve closed the plugin completely. You’ll receive an email when image optimization has been completed – with a full report.

    -

    Compress Any Image in Any Directory

    -

    As well as smushing your media uploads, you may want to compress the images stored in other folders. Smush now lets you compress any image in any directory – so that you can optimize all the images on your site – including NextGEN images, images stored on Amazon S3 using WP Offload Media and images in EVERY WordPress plugin and theme package!

    -

    Compatible with Your Favorite Themes, Page Builders, and Media Library Plugins

    -

    No matter what theme or plugins you use to manage your WordPress media library, Smush has you covered. Check out just a few of the popular products Smush is working with to help make your site faster and more efficient:

    - -

    Incorrect Image Size Detection

    -

    Smush includes a wrong-size image finder. Activate this feature, and your images will be highlighted with smart tips to let you easily resize your images. Quickly locate the images that are keeping you from getting that perfect 100 on your Google PageSpeed test.

    -

    Defer Offscreen Images & Videos (Lazy Load)

    -

    Smush includes built-in lazy loading. If your page has a bunch of images & videos below the fold, lazy loading will drastically speed up your page by serving only the images being viewed, and delaying others further down the page.

    -

    Save time with Smush Configs

    -

    Configs allow you to save your preferred Smush configuration settings and apply them to your other sites in a few clicks. You can create unlimited configs.

    -

    Here’s What Our Users Are Saying

    -

    ★★★★★

    -
    -

    “I had no idea that my page load time was being dragged down by the images. The plugin nearly halved the time it took.” – karlcw

    -
    -

    ★★★★★

    -
    -

    “I optimise my photos in Photoshop, but Smush makes it so easy – it does it automatically. I can just sit back and enjoy the speed.” – helen432

    -
    -

    ★★★★★

    -
    -

    “Smush helped reduce the total files size on my site and increased browsing speed. Well done guys!” – pdci

    -
    -

    ★★★★★

    -
    -

    “It’s very discrete and does not bother me with an API key or other additional installation steps. The main dashboard of the plugin gives me nice insight. Overall it really fits my needs and I’ll be willing to upgrade to pro if my needs change. I’d recommend it to clients/friends without hesitation. Keep it up!” – tarkan_

    -
    -

    What about Multisite?

    -

    Smush can be used to optimize all images across your entire network! Use global settings, or configure each site individually.

    -

    Smush is super easy to use – no confusing image compression software settings. Smush lets you optimize all images in your library either one at a time, or all together. Plus, configure auto-smush to asynchronously scale and compress some or all of your images as they are being uploaded – it’s incredibly fast.

    -

    The faster your site loads, the more Google, Bing, Yahoo, and other search engines will like it. Your site will load faster and rank higher.

    -

    Shameless Plug(ins)

    -
      -
    • Hummingbird – Page Speed Optimization
    • -
    • SmartCrawl – SEO Optimizer
    • -
    • Forminator – Form, Poll, and Quiz Builder
    • -
    • Defender – Security, Monitoring, and Hack Protection
    • -
    • Hustle – Pop-ups, Slide-ins and Email Opt-ins
    • -
    • Beehive – Customizable Google Analytics Dashboards
    • -
    -

    Smush can take care of all your image compression needs… all for free!

    -

    However, if you’d like fast CDN image delivery, WebP/AVIF conversion, automatic image resizing, the ability to optimize (or optimise) images up to 256MB, bulk smush optimization for all your images in just one-click, auto-convert PNG to JPEG, the ability to make a copy of your full-sized images (to restore them at any point), you can always take the next step with WP Smush Pro. And get even more with her whole team of WordPress optimization hero friends (security, SEO, performance, support, and maintenance automation) – trusted by thousands of agencies and freelancers offering site maintenance services.

    -

    Privacy

    -

    Smush does not interact with end users on your website. The only input option Smush has is to a newsletter subscription for site admins only.

    -

    Smush uses a third-party email service (Mailchimp) to send informational emails (opt-in) to the site administrator. The administrator’s email address is sent to Mailchimp and a cookie is set by the service. Only administrator information is collected by Mailchimp.

    -

    Smush sends images to the WPMU DEV servers to optimize them for web use. This includes the transfer of EXIF data. The EXIF data will either be stripped or returned as it is. It is not stored on the WPMU DEV servers.

    -

    About Us

    -

    WPMU DEV is a premium supplier of quality WordPress plugins, services and support. Learn more here:
    -https://wpmudev.com/

    -

    Don’t forget to stay up to date on everything WordPress from the Internet’s number one resource:
    -WPMU DEV Blog

    -

    Hey, one more thing… we hope you enjoy our free offerings as much as we’ve loved making them for you!

    -

    Contact and Credits

    -

    Originally written by Alex Dunae at Dialect (dialect.ca, e-mail ‘alex’ at ‘dialect dot ca’), 2008-11.

    -', 'wp', 'wp-plugin', 'proprietary', '{"name": "Smush Image Optimization – Optimize Images | Compress & Lazy Load Images | Convert WebP & AVIF | Image CDN", "slug": "wp-smushit", "tags": {"webp": "webp", "convert-webp": "convert webp", "compress-images": "compress images", "optimize-images": "optimize images", "image-optimization": "image optimization"}, "added": "2008-12-05", "icons": {"1x": "https://ps.w.org/wp-smushit/assets/icon-128x128.png?rev=2746115", "2x": "https://ps.w.org/wp-smushit/assets/icon-256x256.png?rev=2746115"}, "author": "WPMU DEV - Your All-in-One WordPress Platform", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=2624292", "high": "https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=2624292"}, "ratings": {"1": 162, "2": 31, "3": 52, "4": 338, "5": 5441}, "version": "3.22.1", "homepage": "https://wpmudev.com/project/wp-smush-pro/", "requires": "6.4", "sections": {"faq": "\n
    \nI just finished running Smush, but Google PageSpeed still says my images need compressing and resizing. How do I fix it?\n\n

    \n

    This means your images were not properly scaled for where they are being displayed. Scaling images before uploading them can be time-consuming, but can save space and speed up load time. First, determine what size your image needs to be. You can use the built-in images size detector included in the free version of Smush to find what height and width your image should be. Once you know how large the image should be, scale your images to the right size.

    \n

    \n
    \nPageSpeed Insights is telling me to defer offscreen images. Can Smush fix that?\n\n

    \n

    Lazy Load will defer your offscreen images from loading until they are needed. From the Smush Dashboard, select Lazy Load and click Activate. Smush Lazy Load works out of the box or can be customized based on your needs.

    \n

    Tip: If you’re having any issues or want to save a ton of time, the Smush Pro CDN includes auto-resizing of images.

    \n

    \n
    \nDoes Smush delete or replace my original full-size images?\n\n

    \n

    Nope. WordPress crops and resizes every image you upload for embedding on your site. By default, Smush only compresses these cropped and resized images, not your original full-size images. To compress your original full-sized images, use Smush Pro.

    \n

    \n
    \nWhat type of file should I use for my images (GIF, PNG, JPG)?\n\n

    \n

    GIF files are large and can’t be optimized much. They should only be used if the image is animated.

    \n

    PNG is best for computer generated graphics (vectors, logos, fonts, etc.), images with few colors, or images with transparency.

    \n

    JPG should be used for photography or images with a lot of color variation.

    \n

    Tip: The Smush Pro CDN includes WebP/AVIF compression – sharper images that are 25 to 60 percent smaller than JPEG and PNG files.

    \n

    \n
    \nI’m a photographer. Can I keep all my EXIF data?\n\n

    \n

    Yes! EXIF data stores camera settings, focal length, date, time, and location information in image files. EXIF data makes image files larger, but if you are a photographer you may want to preserve this information. We have included the option to preserve EXIF image data with Smush.

    \n

    \n
    \nI just ran Bulk Smush and some of my images didn’t get compressed. Why would this happen?\n\n

    \n

    First, check to see if you’re receiving any server errors. If your images seem to be processing correctly, check the file size of the images being skipped. Images over 5mb will not be processed by the free version of Smush. To compress images up to 256mb, get Smush Pro.

    \n

    \n
    \nI activated Smush, but I don’t see any difference in image quality. How am I supposed to know if Smush is working?\n\n

    \n

    Great question! It is important to understand Smush is an image optimization tool that uses lossless image compression to save disk storage space and speed up your site. Smush squeezes data out from your image files that will save space, resize huge images, and improve speed – all without changing quality.

    \n

    You can track file size changes in your media library, individual image savings, directory savings, and Smush total savings with Smush stats. If you want to see some additional magic, run before-and-after page-speed tests with Google PageSpeed Insights. Every little bit of resource savings is important when it comes to page-speed!

    \n

    \n
    \nCan’t I just use Photoshop or another image editing application to optimize my images?\n\n

    \n

    Optimizing all the image sizes generated by WordPress, images being imported from plugins and themes, and images from other web sites is a painful and time-consuming process.

    \n

    Smush automatically handles optimizing all your images no matter where they come from, and can be used either as a standalone tool or alongside Photoshop.

    \n

    \n
    \nMy Google PageSpeed test is telling me to serve images in Next-Gen formats. Can Smush do that?\n\n

    \n

    Yes, Smush can help you serve images in next-gen formats. Smush Pro offers both WebP and AVIF conversion, allowing you to optimize your images for better performance and meet Google PageSpeed recommendations. This feature is exclusive to Smush Pro.

    \n

    \n
    \nIs it optimize or optimise?\n\n

    \n

    It depends what side of the pond you live on… but whether you say optimize, optimise, optimizer, or Smush goddess of speed, this plugin will make sure your images are loading lightning fast.

    \n

    \n
    \nHow can I report security issues or bugs?\n\n

    \n

    We take plugin security incredibly seriously; if you have a bug or vulnerability to report, you can do so through the Patchstack Vulnerability Disclosure Program. It’s fast, easy, and you will be notified when the issue is fixed. Report a vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Congurgulations for 1 rating

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ammoti on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Normally i am lazy person, but for giving 1 star to you, i would everything :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wondeful plugin but now demands for registration

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dionysios on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used to use this plugin a lot. For free quick image optimizations. I loved it but recently in order to use it you MUST register with an account. I hate this; At first you need our installations and positive reviews and after some time you are changing the rules the way you want. Not accepted from me;

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It's ok so far,

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dancool1975 on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Although this product is great, I need more time to give an honest review

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works perfectly

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy oscarugarte on September 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Zero problem, thank you very much

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Image Optimizing Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cinesist on September 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks for the excellent plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy egholami on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    What an absolutely great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iyc612 on September 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    what really put the icing on the cake is that after you install, it compresses automatically what a time saver for a solopreneur.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin, very easy to use!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Tatomixes (tatomixes) on September 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin, very easy to use!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    finer

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Lukwago james (newslexpoint) on July 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy academiaqi on July 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple to install and get ready, great optimization of resources. THX!!!

    \n
    \n
    \n", "changelog": "

    3.22.1 ( 2025-10-06 )

    \n
      \n
    • Fix: Memory issues caused by Elementor integration
    • \n
    \n

    3.22.0 ( 2025-10-06 )

    \n
      \n
    • Improvement: More accurate use of fetchpriority=high based on LCP data
    • \n
    • Improvement: General UI enhancements
    • \n
    • Fix: LCP image not lazy-loaded after disabling preload
    • \n
    • Fix: Incorrect Preload Critical Images status shown in summary box
    • \n
    • Fix: Wrong retina image size applied by the auto-resize module
    • \n
    • Fix: Incorrect LCP image detected on mobile in certain cases
    • \n
    \n

    3.21.1 ( 2025-09-03 )

    \n
      \n
    • Fix: Auto-resize module using incorrect aspect ratio for cropped images
    • \n
    • Fix: Auto-resize module using lower quality version in certain situations
    • \n
    • Fix: Images using width or height attributes with percentage values resized incorrectly
    • \n
    • Fix: Images in Divi shrinking on page scroll in mobile devices
    • \n
    \n

    3.21.0 ( 2025-09-03 )

    \n
      \n
    • New: Automatic image resizing option in Lazy Loading to make sure every image fits its container size
    • \n
    • New: Add Missing Dimensions option in Lazy Loading to resolve Pagespeed audit of “Ensure images have explicit height and width”
    • \n
    • Improvement: Changed “Automatic Resizing” feature name in CDN to “Dynamic Image Sizing”
    • \n
    • Improvement: Added an Advanced section on the Bulk Smush page to streamline the experience
    • \n
    • Improvement: Added an Advanced section on the Lazy Load page to streamline the experience
    • \n
    • Fix: Minor code improvements
    • \n
    \n

    3.20.0 ( 2025-06-25 )

    \n
      \n
    • New: Lazy load YouTube and Vimeo videos to improve page load speed
    • \n
    • Fix: Resize Detection feature sometimes doesn’t work correctly with Lazy Load
    • \n
    • Fix: Layout shift with lazy loading
    • \n
    • Fix: Timeout error is returned for some transparent PNGs when Smush Mode is set to Basic
    • \n
    • Fix: Not all options are deleted from the database after uninstalling
    • \n
    • Fix: All-In-One Security incorrectly reporting issue due to Smush loopback check
    • \n
    \n

    3.19.1 ( 2025-05-29 )

    \n
      \n
    • Improvement: Only detect LCP element above the fold
    • \n
    • Improvement: Add fetchpriority high to LCP element
    • \n
    • Improvement: Ensure compatibility of LCP feature with popular caching plugins
    • \n
    • Improvement: Ability to exclude pages from LCP preloading
    • \n
    • Improvement: Ability to clear LCP cache
    • \n
    • Fix: LCP element not located in certain scenarios
    • \n
    \n

    3.19.0 ( 2025-05-12 )

    \n
      \n
    • New: Preload critical images to improve page load speed and resolve LCP (Largest Contentful Paint) warnings
    • \n
    • Fix: Filenames with Chinese characters were automatically converted to Unicode, causing display issues
    • \n
    • Fix: Lazyload module removes the background size attribute from inline CSS
    • \n
    • Fix: Picture tags are lazy loaded even in excluded areas
    • \n
    \n

    3.18.1 ( 2025-04-24 )

    \n
      \n
    • Improvement: WP 6.8 compatibility
    • \n
    • Improvement: Add a new menu item to help you discover other free plugins by WPMU DEV and more
    • \n
    \n

    3.18.0 ( 2025-03-19 )

    \n
      \n
    • New: Reduced image filesize at better visual quality with new AVIF conversion!
    • \n
    • Improvement: White label improvements
    • \n
    • Improvement: Better stats for WebP conversion
    • \n
    • Improvement: Compatibility check and minor fixes for PHP 8.4
    • \n
    • Fix: Some images listed as not optimized after Local WebP conversion
    • \n
    • Fix: CDN forcing browsers to load full-sized images for smaller container size
    • \n
    \n

    3.17.1 ( 2025-02-10 )

    \n
      \n
    • Improvement: Security hardening
    • \n
    • Improvement: Minor code improvements
    • \n
    \n

    3.17.0 ( 2025-02-03 )

    \n
      \n
    • New: Added a UI option to exclude specific images from Smush CDN.
    • \n
    • Improvement: Use streams to send full image to the Smush API
    • \n
    • Improvement: Disabled Noscript tags by default to prevent broken images and potential performance regressions.
    • \n
    • Improvement: Improved WPML compatibility for seamless multilingual support.
    • \n
    • Improvement: Reduced memory consumption during the Smush process
    • \n
    • Improvement: Better directory Smush compatibility with Flywheel
    • \n
    • Fix: Number of optimized images inaccurate
    • \n
    • Fix: When Local WebP Direct Method and Lazy Load are enabled, images inside picture tags not being served as WebP
    • \n
    • Fix: Error “Server configurations haven’t been applied yet” shown unnecessarily sometimes
    • \n
    • Fix: CDN slowing down page load due to unnecessary DB queries
    • \n
    • Fix: Divi breaking Smush CDN image resizing
    • \n
    • Fix: Auto-resize feature not adding new sizes when srcset is already present in img tag
    • \n
    • Fix: Excluded lazy loading placeholders from the CDN to resolve conflicts and prevent broken images.
    • \n
    • Fix: Added WP 6.7 compatibility fixes.
    • \n
    • Fix: Prevent broken images on Smush CDN when using relative links
    • \n
    • Fix: Hummingbird Performance Test conflicts
    • \n
    • Fix: Missing thumbnails when using PNG to JPG conversions
    • \n
    • Fix: Unicode characters in image URLs causing issues
    • \n
    • Fix: Improved compatibility with native lazy loading
    • \n
    • Fix: PHP errors and warnings
    • \n
    • Fix: Conflict with Formidable Forms
    • \n
    • Fix: Avoid image fetch errors
    • \n
    \n

    3.16.6 ( 2024-07-30 )

    \n
      \n
    • Fix: PHP warnings
    • \n
    • Improvement: Compatibility with WP 6.6
    • \n
    \n

    3.16.5 ( 2024-06-20 )

    \n
      \n
    • Improvement: Security improvements
    • \n
    • Fix: Compatibility issue with Divi
    • \n
    \n

    3.16.4 ( 2024-05-23 )

    \n
      \n
    • Fix: Loopback error shown unnecessarily for some sites
    • \n
    • Improvement: Better UI for the loopback error
    • \n
    \n

    3.16.3 ( 2024-05-15 )

    \n
      \n
    • Improvement: Better handling of rotated images
    • \n
    • Improvement: Better pre-flight checks before bulk Smush is started
    • \n
    • Fix: Performance issues in CDN and webp link replacement functionality
    • \n
    • Fix: Bulk Smush performance issues
    • \n
    • Fix: Compatibility issue with wp.com
    • \n
    \n

    3.16.2 ( 2024-04-17 )

    \n
      \n
    • Fix: LazyLoad module not working correctly for picture elements in certain situations
    • \n
    • Fix: LazyLoad module not working correctly for some CSS variables
    • \n
    • Fix: Better handling of !important CSS rules by the LazyLoad module
    • \n
    • Fix: Performance issues on some WooCommerce pages
    • \n
    \n

    3.16.1 ( 2024-03-27 )

    \n
      \n
    • Improvement: Better compatibility with page builders
    • \n
    • Improvement: General code improvements
    • \n
    • Fix: WP Offload integration preventing some formats from getting offloaded
    • \n
    \n

    3.16.0 ( 2024-03-06 )

    \n
      \n
    • New: Directly serve Local Webp images, no rewrite rules required!
    • \n
    • New: Support for inline style tags in CDN and Local WebP modules
    • \n
    • New: Support for multiple background images in CDN and Local WebP modules
    • \n
    • New: Better support for relative links in CDN and Local WebP modules
    • \n
    • New: Better REST API support in CDN and Local WebP modules
    • \n
    • New: CDN and Local WebP images served in WooCommerce REST API responses
    • \n
    • New: Local WebP compatibility with Windows IIS servers
    • \n
    • New: Local WebP compatibility with bedrock
    • \n
    • New: Local WebP compatibility with Litespeed
    • \n
    • New: Local WebP compatibility with Cloudways
    • \n
    • New: Lazy loading of background images
    • \n
    • Fix: Local WebP redirection doesn’t work for images with special characters
    • \n
    • Fix: Free version of Smush creating smush-webp folder when activated
    • \n
    • Fix: Extra slash added to image URLs during optimization
    • \n
    • Fix: WP 6.3 compatibility – Skip lazyload for high priority images
    • \n
    \n

    3.15.5 ( 2024-02-06 )

    \n
      \n
    • Improvement: Update the number of CDN locations
    • \n
    • Improvement: Minor copy and UI adjustments
    • \n
    \n

    3.15.4 ( 2024-01-23 )

    \n
      \n
    • Fix: Media library scan gets stuck on some websites
    • \n
    • Improvement: Minor copy and UI changes
    • \n
    \n

    3.15.3 ( 2023-12-20 )

    \n
      \n
    • Improvement: Code stability improvements
    • \n
    \n

    3.15.2 ( 2023-12-06 )

    \n
      \n
    • Fix: Compatibility issues with WP Offload Media integration
    • \n
    • Fix: Resize module deletes thumbnail when there is a naming conflict
    • \n
    \n

    3.15.1 ( 2023-11-15 )

    \n
      \n
    • Improvement: Code stability improvements
    • \n
    \n

    3.15.0 ( 2023-10-11 )

    \n
      \n
    • Improvement: Image size limit increased for pro version
    • \n
    • Fix: Query running frequently and causing performance issues on some sites
    • \n
    \n

    3.14.2 ( 2023-08-23 )

    \n
      \n
    • Fix: Media library scanner not identifying some MariaDB versions correctly
    • \n
    • Improvement: Code improvements
    • \n
    \n

    3.14.1 ( 2023-07-24 )

    \n
      \n
    • Improvement: Minor code improvements and fixes
    • \n
    \n

    3.14.0 ( 2023-07-17 )

    \n
      \n
    • New: Ultra Smush – Level up your image compression, while preserving remarkable image quality
    • \n
    • Fix: Resolved issue with image resize in WP versions < 6.0
    • \n
    • Fix: Resolved PHP 8.x error on GoDaddy Managed WP Hosting
    • \n
    • Fix: Other minor bug fixes and UI improvements
    • \n
    \n

    3.13.2 ( 2023-07-05 )

    \n
      \n
    • Improvement: Small code and text improvements
    • \n
    \n

    3.13.1 ( 2023-06-13 )

    \n
      \n
    • Improvement: Better memory management during scans
    • \n
    • Fix: Dot added to file path when year and month directories disabled
    • \n
    • Fix: Compatibility issue with WP.com
    • \n
    • Fix: Rename config functionality not working
    • \n
    • Fix: Compatibility issue with WP Offload Media
    • \n
    • Fix: PHP warnings
    • \n
    • Fix: Duplicate query
    • \n
    \n

    3.13.0 ( 2023-05-30 )

    \n
      \n
    • New: Scan for detecting changes in the media library
    • \n
    • Improvement: Performance improvements on large sites
    • \n
    • Improvement: Code refactoring
    • \n
    • Fix: PHP warnings and notices
    • \n
    • Fix: Missing comments for translation strings that have placeholders in them
    • \n
    • Fix: Compatibility issues with WP Offload Media
    • \n
    • Fix: Timeout on Smush pages when there are more than 200k images
    • \n
    • Fix: Images incorrectly marked as requiring resmush
    • \n
    • Fix: Ignore link stuck in Grid Layout mode in the media library
    • \n
    \n

    3.12.6 ( 2023-03-09 )

    \n
      \n
    • Enhance: Compatibility with WordPress 6.2.
    • \n
    • Fix: Upgrade modal reappears after closing
    • \n
    \n

    3.12.5 ( 2023-01-18 )

    \n
      \n
    • Fix: CDN notice issue
    • \n
    • Fix: PHP 8.2 compatibility warnings
    • \n
    • Fix: Smush acting as free on staging
    • \n
    \n

    3.12.4 ( 2022-11-17 )

    \n
      \n
    • Improvement: Code and compatibility improvements
    • \n
    \n

    3.12.3 ( 2022-10-24 )

    \n
      \n
    • Fix: Free to pro upgrade issue
    • \n
    \n

    3.12.2 ( 2022-10-19 )

    \n
      \n
    • Improvement: Security hardening
    • \n
    • Fix: Issues on older PHP versions
    • \n
    \n

    3.12.1 ( 2022-10-11 )

    \n
      \n
    • Fix: PHP error on non-English language sites
    • \n
    \n

    3.12.0 ( 2022-10-11 )

    \n
      \n
    • New: Bulk smush images in the background!
    • \n
    • New: Revised limits on bulk image optimization
    • \n
    • New: Better GDPR compliance by replacing Google fonts with Bunny fonts
    • \n
    • New: Filter on media library page to view media items with errors
    • \n
    • New: Option to receive an email once bulk smush is complete
    • \n
    • Fix: Some images incorrectly selected for resmush
    • \n
    • Fix: Database error while converting PNG to JPG on WordPress 6.1 Beta
    • \n
    \n

    3.11.1 ( 2022-08-19 )

    \n
      \n
    • Fix: Fallback to sequential processing when parallel processing not possible
    • \n
    \n

    3.11.0 ( 2022-08-11 )

    \n
      \n
    • New: Smush all image sizes in parallel for improved performance
    • \n
    • Improvement: Code improvements
    • \n
    \n

    3.10.3 ( 2022-07-14 )

    \n
      \n
    • Enhance: CDN activation process
    • \n
    • Enhance: Improve media library image filters
    • \n
    • Enhance: CDN compatibility with Avada theme
    • \n
    • Enhance: Add notice about disabled folders in directory Smush module
    • \n
    • Fix: Errors table UI on bulk smush page
    • \n
    • Fix: Bulk smush UI when images have been removed when page was already loaded
    • \n
    • Fix: Cron job of logger library not running properly
    • \n
    • Fix: Remove tools meta box from dashboard page
    • \n
    • Fix: Recover image from NextGen Gallery button does not reset Smush data
    • \n
    • Fix: Image dimensions meta does not reset after restoring a resized image in NextGen Gallery
    • \n
    • Fix: Incorrect percent of total savings on Dashboard page
    • \n
    • Fix: Pro feature enable/disable toggles are clickable in free version
    • \n
    \n

    3.10.2 ( 2022-06-16 )

    \n
      \n
    • Enhance: Data processing
    • \n
    • Enhance: Database calls
    • \n
    • Fix: Loading images from remote location
    • \n
    \n

    3.10.1 ( 2022-06-09 )

    \n
      \n
    • Fix: PHP error on dash page
    • \n
    \n

    3.10.0 ( 2022-06-09 )

    \n
      \n
    • New: Lossy compression is now free for all users
    • \n
    • New: Summary meta box
    • \n
    • Enhance: Move out image restore to bulk smush module
    • \n
    • Enhance: Move out image resize detection to settings module
    • \n
    • Enhance: Update opt-in notice design
    • \n
    • Fix: Upsell notice logic
    • \n
    • Fix: Skip image sizes not in WordPress format
    • \n
    • Fix: Skip onboarding wizard if a config has been applied
    • \n
    • Fix: Image sizes selector
    • \n
    • Fix: Rename “Basic” config to “Default”
    • \n
    • Fix: Do not show WebP notice in case of error
    • \n
    • Fix: Auto compression does not work for NextGen Gallery
    • \n
    • Fix: Settings link on Plugins page
    • \n
    • Fix: Welcome modal does not close when we go to the Bulk Smush page
    • \n
    \n

    3.9.11 ( 2022-05-23 )

    \n
      \n
    • Enhance: Code quality
    • \n
    • Fix: Minor code quality issues
    • \n
    • Fix: Update internal libraries
    • \n
    \n

    3.9.10 ( 2022-05-17 )

    \n
      \n
    • New: Gravity Forms integration
    • \n
    • New: smush_background_images_regex and smush_images_from_content_regex filters to adjust regex rules for finding images on the page
    • \n
    • New: smush_cdn_before_process_background_src filter to adjust background image src
    • \n
    • New: Add additional parameters to smush_skip_adding_srcset filter to allow disabling auto-resize for selected images
    • \n
    • Enhance: Compatibility with WPBakery page builder
    • \n
    • Enhance: Compatibility with Offload Media plugin
    • \n
    • Enhance: Handling images via REST API endpoints
    • \n
    • Fix: Directory Smush savings cached and not updated
    • \n
    • Fix: “What’s new” modal not hiding if white label is enabled
    • \n
    • Fix: Missing primary key on smush_dir_images table
    • \n
    • Fix: Scaled images not being resized on resize settings change
    • \n
    • Fix: Bulk Smush will now show all errors, instead of just the first 5
    • \n
    • Fix: Animated GIF images not being excluded from bulk Smush
    • \n
    • Fix: Only allow network wide activation of Smush
    • \n
    \n

    3.9.9 ( 2022-05-03 )

    \n
      \n
    • Enhance: Code quality
    • \n
    • Enhance: Handling user input
    • \n
    • Enhance: Update React modules to latest versions
    • \n
    • Fix: XSS vulnerability when uploading modified configs
    • \n
    \n

    3.9.8 ( 2022-03-22 )

    \n
      \n
    • New: Add expiry header to Nginx template for WebP
    • \n
    • New: Add wp_smush_webp_dir filter to customize WebP directory
    • \n
    • Fix: XSS vulnerability
    • \n
    • Fix: Disable submit button on Integrations page when no integrations available
    • \n
    • Fix: CDN bandwidth limit status message
    • \n
    • Fix: Text alignment issue on Bulk Smush page
    • \n
    • Fix: Highlighting selected lazy load spinner with color accessibility
    • \n
    • Fix: Compatibility issue with WP Offload Media 2.6.0
    • \n
    • Fix: Undefined offset notice with certain WooCommerce themes
    • \n
    \n

    3.9.7 ( 2022-03-01 )

    \n
      \n
    • Fix: Local WebP is not activated on applying config after reset settings
    • \n
    • Fix: Missing WebP file for WP scaled images
    • \n
    • Fix: Fatal error on PHP 5.6
    • \n
    • Fix: Compatibility issue with WP Offload Media
    • \n
    \n

    3.9.6 ( 2022-02-09 )

    \n
      \n
    • Enhance: Do not close the Directory Smush modal in case of error
    • \n
    • Enhance: Tooltips in CDN module
    • \n
    • Fix: Compatibility issue with PHP 8.1
    • \n
    • Fix: “Choose Directory” button loading state in case of error
    • \n
    • Fix: PNG to JPG conversion leaves behind some thumbnails after deleting the image
    • \n
    • Fix: PNG images that need resizing don’t get converted to JPG
    • \n
    • Fix: Issue creating the WebP test files
    • \n
    • Fix: Incorrect unique file names during PNG to JPG conversion
    • \n
    • Fix: Duplicate thumbnails while converting PNG to JPG
    • \n
    • Fix: Auto refresh API status when updating to Pro version
    • \n
    \n

    3.9.5 ( 2022-01-25 )

    \n
      \n
    • Fix: Translation strings
    • \n
    • Fix: Remove upsells
    • \n
    • Enhance: Update admin menu icon
    • \n
    \n

    Changelog for previous versions.

    \n", "description": "

    The #1 Image Optimization Plugin for WordPress

    \n

    Smush is the leading image optimization plugin – optimize, resize, and compress images, as well as convert images to WebP or AVIF format for faster loading web pages.

    \n

    Brought to you by the WPMU DEV team – founded in 2007 and trusted by web professionals from freelancer to agency worldwide ever since.

    \n

    Whether you spell it ‘optimise’ or ‘optimize’ – with Smush’s image optimizer you can compress images and serve images in next-gen formats (convert to WebP or AVIF), all without introducing a visible drop in quality.

    \n

    Enjoy uninterrupted bulk image optimization with Smush Pro.

    \n

    Level up immediately with exclusive Pro benefits like uninterrupted image optimization, 5x more image compression, and 119-point global image CDN. Learn more about Pro.

    \n

    Award-Winning Image Optimizer

    \n

    Smush has been benchmarked and tested number one for speed and quality. Beyond that, it’s also the award-winning, back-to-back proven crowd-favorite WordPress image optimizer trusted by over 1M+ worldwide to:

    \n
      \n
    • Optimize images
    • \n
    • Compress images
    • \n
    • Lazy load images & videos
    • \n
    • Preload critical images
    • \n
    • Automatic resizing
    • \n
    • Resize larger images
    • \n
    • Convert to WebP or AVIF
    • \n
    • And more…
    • \n
    \n

    Why Use Smush To Optimize Images (The Smush Difference)

    \n

    Smush was built from the ground up to make it easy for WordPress users to optimize images, activate lazy loading, compress media files, and more – whether they’re just getting started, or a seasoned pro who’s developed thousands of websites.

    \n

    Improve website performance (along with Google PageSpeed Insights scores) with compressed and optimized images and lazy loading – all while actually delivering a better user experience because the rollout of Core Web Vitals has proven one thing: performance is about far more than just scoring well on performance testing tools. Visitor experience matters.

    \n

    Discover the features that set Smush apart from other image optimization plugins:

    \n
      \n
    • Lossless compression (Basic Smush) – Strip unused data and compress images without affecting image quality.
    • \n
    • Lossy compression (Super Smush) – Optimize images up to 2x more than lossless compression with our cutting-edge, multi-pass lossy image compression.
    • \n
    • Ultra Smush (Pro Only) – Take performance to the next level with 5x image compressing power! Your images will be as light and fast as possible, while still preserving remarkable image quality.
    • \n
    • Built-In Lazy Loading – Lazy load images to defer loading of offscreen images & videos with the flip of a switch.
    • \n
    • Convert to WebP or AVIF (Pro Only) – Use the Next-Gen Formats feature to convert and automatically serve images in next-gen WebP or AVIF format.
    • \n
    • Preload Critical Images (Pro Only) – Improve Google Pagespeed scores by automatically preloading Largest Contentful Paint (LCP) images.
    • \n
    • Bulk Smush – Bulk optimize and compress images with one click.
    • \n
    • Background Optimization (Pro Only) – Smush’s powerful image optimization features will continue to run in the background even when the plugin is closed.
    • \n
    • Automatic Resizing (Pro Only) – Speeds up your site by automatically resizing images to fit their containers, eliminating “Properly size images” PageSpeed warnings.
    • \n
    • Resize Larger Images – Set a maximum width and height, and add missing image sizes to allow the browser to make intelligent decisions about which image to load.
    • \n
    • 119-point global CDN (Pro Only) – Ensure blazing-fast image delivery anywhere in the world. Includes automatic WebP/AVIF conversion and image resizing, plus, GIF / Rest API support.
    • \n
    • Incorrect Image Size Detection – Quickly locate images that are slowing down your site.
    • \n
    • Directory Smush – Optimize images even if they aren’t in the default WordPress media library.
    • \n
    • Automated Optimization – Asynchronously auto-smush your attachments for super fast compression on upload.
    • \n
    • No Monthly Limits – Optimize all of your images (up to 5 MB in size) free forever (no daily, monthly, or annual limits).
    • \n
    • Gutenberg Block Integration – View image compression information directly in image blocks.
    • \n
    • Multisite Compatible – Flexible global and subsite settings for multisite installations.
    • \n
    • Optimize All Image Files – Smush supports optimization for all of your PNG and JPEG files.
    • \n
    • No Performance Impact On Your Server – Image optimization is not run on your website’s server to prevent wasting server resources (that you pay for) and is instead run using the fast, reliable WPMU DEV Smush API.
    • \n
    • Configs – Set your preferred Smush settings, save them as a config, and instantly upload to any other site.
    • \n
    • And many, many, more!
    • \n
    \n

    Learn More With These Hands-On Image Optimization & Performance Tutorials

    \n\n

    Next-Gen Formats – Serve Images In WebP or AVIF format

    \n

    With Smush, you can take advantage of next-gen image formats by converting all of your images to WebP or AVIF. WebP & AVIF are file formats that enable superior image compression and quality retention. All major performance testing solutions, including Google PageSpeed Insights, assess your site’s ability to serve images in these next-gen formats due to the significant impact on visitor experience.

    \n

    WebP lossless images are 26% smaller in size compared to PNGs. WebP lossy images are 25-34% smaller than comparable JPG images. AVIF images are up to 60% smaller than comparable JPG or PNG images. More information can be found in this Google developers article and this web.dev article.

    \n

    The best part: Smush’s Next-Gen Formats feature makes this incredibly easy to set up with the ability to host all images locally (not requiring the use of a CDN). Our Next-Gen Formats feature includes automatically replacing PNG and JPEG images on your website’s frontend to serve WebP or AVIF images – with the necessary fallbacks for browsers that don’t support next-gen formats yet.

    \n

    Learn more: How To Convert Images to WebP In WordPress

    \n

    Note: Yes, Smush supports next-gen conversion for all image formats, including JPEG to WebP/AVIF, and PNG to WebP/AVIF.

    \n

    With the best image optimization plugin for WordPress – you can finally stop worrying about the performance impact of using the images you want on your website.

    \n

    Compress Images While Preserving Image Quality

    \n

    Image compression plugins don’t have to destroy images with a visible, 30% loss in quality. Smush strips hidden information from your images (that can often be bulky), and reduces image file sizes without introducing a visible impact on appearance.

    \n

    Smush meticulously scans every image you upload – or have already added to your site – cuts all the unnecessary data, and scales it for you before adding it to your media library. And it can serve images in WebP or AVIF format.

    \n

    Compress Images While You Sleep With Background Image Optimization

    \n

    Have a large number of images to compress? Smush’s powerful optimization features will continue to work their magic in the background, even when you’ve closed the plugin completely. You’ll receive an email when image optimization has been completed – with a full report.

    \n

    Compress Any Image in Any Directory

    \n

    As well as smushing your media uploads, you may want to compress the images stored in other folders. Smush now lets you compress any image in any directory – so that you can optimize all the images on your site – including NextGEN images, images stored on Amazon S3 using WP Offload Media and images in EVERY WordPress plugin and theme package!

    \n

    Compatible with Your Favorite Themes, Page Builders, and Media Library Plugins

    \n

    No matter what theme or plugins you use to manage your WordPress media library, Smush has you covered. Check out just a few of the popular products Smush is working with to help make your site faster and more efficient:

    \n\n

    Incorrect Image Size Detection

    \n

    Smush includes a wrong-size image finder. Activate this feature, and your images will be highlighted with smart tips to let you easily resize your images. Quickly locate the images that are keeping you from getting that perfect 100 on your Google PageSpeed test.

    \n

    Defer Offscreen Images & Videos (Lazy Load)

    \n

    Smush includes built-in lazy loading. If your page has a bunch of images & videos below the fold, lazy loading will drastically speed up your page by serving only the images being viewed, and delaying others further down the page.

    \n

    Save time with Smush Configs

    \n

    Configs allow you to save your preferred Smush configuration settings and apply them to your other sites in a few clicks. You can create unlimited configs.

    \n

    Here’s What Our Users Are Saying

    \n

    ★★★★★

    \n
    \n

    “I had no idea that my page load time was being dragged down by the images. The plugin nearly halved the time it took.” – karlcw

    \n
    \n

    ★★★★★

    \n
    \n

    “I optimise my photos in Photoshop, but Smush makes it so easy – it does it automatically. I can just sit back and enjoy the speed.” – helen432

    \n
    \n

    ★★★★★

    \n
    \n

    “Smush helped reduce the total files size on my site and increased browsing speed. Well done guys!” – pdci

    \n
    \n

    ★★★★★

    \n
    \n

    “It’s very discrete and does not bother me with an API key or other additional installation steps. The main dashboard of the plugin gives me nice insight. Overall it really fits my needs and I’ll be willing to upgrade to pro if my needs change. I’d recommend it to clients/friends without hesitation. Keep it up!” – tarkan_

    \n
    \n

    What about Multisite?

    \n

    Smush can be used to optimize all images across your entire network! Use global settings, or configure each site individually.

    \n

    Smush is super easy to use – no confusing image compression software settings. Smush lets you optimize all images in your library either one at a time, or all together. Plus, configure auto-smush to asynchronously scale and compress some or all of your images as they are being uploaded – it’s incredibly fast.

    \n

    The faster your site loads, the more Google, Bing, Yahoo, and other search engines will like it. Your site will load faster and rank higher.

    \n

    Shameless Plug(ins)

    \n
      \n
    • Hummingbird – Page Speed Optimization
    • \n
    • SmartCrawl – SEO Optimizer
    • \n
    • Forminator – Form, Poll, and Quiz Builder
    • \n
    • Defender – Security, Monitoring, and Hack Protection
    • \n
    • Hustle – Pop-ups, Slide-ins and Email Opt-ins
    • \n
    • Beehive – Customizable Google Analytics Dashboards
    • \n
    \n

    Smush can take care of all your image compression needs… all for free!

    \n

    However, if you’d like fast CDN image delivery, WebP/AVIF conversion, automatic image resizing, the ability to optimize (or optimise) images up to 256MB, bulk smush optimization for all your images in just one-click, auto-convert PNG to JPEG, the ability to make a copy of your full-sized images (to restore them at any point), you can always take the next step with WP Smush Pro. And get even more with her whole team of WordPress optimization hero friends (security, SEO, performance, support, and maintenance automation) – trusted by thousands of agencies and freelancers offering site maintenance services.

    \n

    Privacy

    \n

    Smush does not interact with end users on your website. The only input option Smush has is to a newsletter subscription for site admins only.

    \n

    Smush uses a third-party email service (Mailchimp) to send informational emails (opt-in) to the site administrator. The administrator’s email address is sent to Mailchimp and a cookie is set by the service. Only administrator information is collected by Mailchimp.

    \n

    Smush sends images to the WPMU DEV servers to optimize them for web use. This includes the transfer of EXIF data. The EXIF data will either be stripped or returned as it is. It is not stored on the WPMU DEV servers.

    \n

    About Us

    \n

    WPMU DEV is a premium supplier of quality WordPress plugins, services and support. Learn more here:
    \nhttps://wpmudev.com/

    \n

    Don’t forget to stay up to date on everything WordPress from the Internet’s number one resource:
    \nWPMU DEV Blog

    \n

    Hey, one more thing… we hope you enjoy our free offerings as much as we’ve loved making them for you!

    \n

    Contact and Credits

    \n

    Originally written by Alex Dunae at Dialect (dialect.ca, e-mail ‘alex’ at ‘dialect dot ca’), 2008-11.

    \n", "screenshots": "
    1. \"Bulk

      Bulk Image Compression.

    2. \"Smush

      Smush detects images that need compression.

    3. \"Compress

      Compress unlimited images in the background.

    4. \"Compress

      Compress images like a pro with single Smush settings.

    5. \"Make

      Make your page load faster with lazy loading.

    "}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.zip", "1.7": "https://downloads.wordpress.org/plugin/wp-smushit.1.7.zip", "2.0": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/wp-smushit.2.4.zip", "2.7": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.zip", "1.0.0": "https://downloads.wordpress.org/plugin/wp-smushit.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.0.2.zip", "1.1.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.1.3.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.9.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/wp-smushit.1.3.4.zip", "1.4.0": "https://downloads.wordpress.org/plugin/wp-smushit.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.4.3.zip", "1.5.0": "https://downloads.wordpress.org/plugin/wp-smushit.1.5.0.zip", "1.6.0": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.5.zip", "1.7.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.7.1.zip", "2.0.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.1.zip", "2.0.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.7.zip", "2.1.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.5.zip", "2.2.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.2.2.zip", "2.3.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.3.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/wp-smushit.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/wp-smushit.2.4.5.zip", "2.5.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.5.3.zip", "2.6.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.6.3.zip", "2.7.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.1.zip", "2.7.4": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.6.zip", "2.7.8": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.8.zip", "2.8.0": "https://downloads.wordpress.org/plugin/wp-smushit.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.8.1.zip", "2.9.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.9.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.0.2.zip", "3.1.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.1.1.zip", "3.2.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.2.1.zip", "3.2.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.2.4.zip", "3.3.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.3.2.zip", "3.4.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.4.2.zip", "3.6.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.6.1.zip", "3.6.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.6.3.zip", "3.7.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.7.3.zip", "3.8.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.5.zip", "3.8.7": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.8.zip", "3.9.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.2.zip", "3.9.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.4.zip", "3.9.5": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.5.zip", "3.9.8": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.8.zip", "3.9.9": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-smushit.zip", "1.2.10": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.10.zip", "3.10.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.10.1.zip", "3.10.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.10.2.zip", "3.10.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.10.3.zip", "3.11.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.11.1.zip", "3.12.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.12.3.zip", "3.12.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.12.4.zip", "3.12.5": "https://downloads.wordpress.org/plugin/wp-smushit.3.12.5.zip", "3.12.6": "https://downloads.wordpress.org/plugin/wp-smushit.3.12.6.zip", "3.13.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.13.0.zip", "3.13.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.13.1.zip", "3.13.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.13.2.zip", "3.14.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.14.0.zip", "3.14.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.14.1.zip", "3.14.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.14.2.zip", "3.15.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.0.zip", "3.15.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.1.zip", "3.15.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.2.zip", "3.15.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.3.zip", "3.15.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.4.zip", "3.15.5": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.5.zip", "3.16.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.16.2.zip", "3.16.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.16.4.zip", "3.16.5": "https://downloads.wordpress.org/plugin/wp-smushit.3.16.5.zip", "3.16.6": "https://downloads.wordpress.org/plugin/wp-smushit.3.16.6.zip", "3.17.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.17.0.zip", "3.17.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.17.1.zip", "3.18.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.18.0.zip", "3.18.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.18.1.zip", "3.20.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.20.0.zip", "3.21.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.21.1.zip", "3.22.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.22.1.zip", "3.9.11": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.11.zip", "1.6.5.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.5.1.zip", "1.6.5.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.5.2.zip", "1.6.5.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.5.3.zip", "1.6.5.4": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.5.4.zip", "1.7.1.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.7.1.1.zip", "2.0.6.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.6.2.zip", "2.0.6.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.6.3.zip", "2.0.6.5": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.6.5.zip", "2.0.7.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.7.1.zip", "2.7.4.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.4.1.zip", "2.7.8.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.8.1.zip", "2.7.9.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.9.1.zip", "2.8.0.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.8.0.1.zip", "3.2.0.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.2.0.1.zip", "3.2.2.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.2.2.1.zip"}, "downloaded": 61144202, "description": "

    The #1 Image Optimization Plugin for WordPress

    \n

    Smush is the leading image optimization plugin – optimize, resize, and compress images, as well as convert images to WebP or AVIF format for faster loading web pages.

    \n

    Brought to you by the WPMU DEV team – founded in 2007 and trusted by web professionals from freelancer to agency worldwide ever since.

    \n

    Whether you spell it ‘optimise’ or ‘optimize’ – with Smush’s image optimizer you can compress images and serve images in next-gen formats (convert to WebP or AVIF), all without introducing a visible drop in quality.

    \n

    Enjoy uninterrupted bulk image optimization with Smush Pro.

    \n

    Level up immediately with exclusive Pro benefits like uninterrupted image optimization, 5x more image compression, and 119-point global image CDN. Learn more about Pro.

    \n

    Award-Winning Image Optimizer

    \n

    Smush has been benchmarked and tested number one for speed and quality. Beyond that, it’s also the award-winning, back-to-back proven crowd-favorite WordPress image optimizer trusted by over 1M+ worldwide to:

    \n
      \n
    • Optimize images
    • \n
    • Compress images
    • \n
    • Lazy load images & videos
    • \n
    • Preload critical images
    • \n
    • Automatic resizing
    • \n
    • Resize larger images
    • \n
    • Convert to WebP or AVIF
    • \n
    • And more…
    • \n
    \n

    Why Use Smush To Optimize Images (The Smush Difference)

    \n

    Smush was built from the ground up to make it easy for WordPress users to optimize images, activate lazy loading, compress media files, and more – whether they’re just getting started, or a seasoned pro who’s developed thousands of websites.

    \n

    Improve website performance (along with Google PageSpeed Insights scores) with compressed and optimized images and lazy loading – all while actually delivering a better user experience because the rollout of Core Web Vitals has proven one thing: performance is about far more than just scoring well on performance testing tools. Visitor experience matters.

    \n

    Discover the features that set Smush apart from other image optimization plugins:

    \n
      \n
    • Lossless compression (Basic Smush) – Strip unused data and compress images without affecting image quality.
    • \n
    • Lossy compression (Super Smush) – Optimize images up to 2x more than lossless compression with our cutting-edge, multi-pass lossy image compression.
    • \n
    • Ultra Smush (Pro Only) – Take performance to the next level with 5x image compressing power! Your images will be as light and fast as possible, while still preserving remarkable image quality.
    • \n
    • Built-In Lazy Loading – Lazy load images to defer loading of offscreen images & videos with the flip of a switch.
    • \n
    • Convert to WebP or AVIF (Pro Only) – Use the Next-Gen Formats feature to convert and automatically serve images in next-gen WebP or AVIF format.
    • \n
    • Preload Critical Images (Pro Only) – Improve Google Pagespeed scores by automatically preloading Largest Contentful Paint (LCP) images.
    • \n
    • Bulk Smush – Bulk optimize and compress images with one click.
    • \n
    • Background Optimization (Pro Only) – Smush’s powerful image optimization features will continue to run in the background even when the plugin is closed.
    • \n
    • Automatic Resizing (Pro Only) – Speeds up your site by automatically resizing images to fit their containers, eliminating “Properly size images” PageSpeed warnings.
    • \n
    • Resize Larger Images – Set a maximum width and height, and add missing image sizes to allow the browser to make intelligent decisions about which image to load.
    • \n
    • 119-point global CDN (Pro Only) – Ensure blazing-fast image delivery anywhere in the world. Includes automatic WebP/AVIF conversion and image resizing, plus, GIF / Rest API support.
    • \n
    • Incorrect Image Size Detection – Quickly locate images that are slowing down your site.
    • \n
    • Directory Smush – Optimize images even if they aren’t in the default WordPress media library.
    • \n
    • Automated Optimization – Asynchronously auto-smush your attachments for super fast compression on upload.
    • \n
    • No Monthly Limits – Optimize all of your images (up to 5 MB in size) free forever (no daily, monthly, or annual limits).
    • \n
    • Gutenberg Block Integration – View image compression information directly in image blocks.
    • \n
    • Multisite Compatible – Flexible global and subsite settings for multisite installations.
    • \n
    • Optimize All Image Files – Smush supports optimization for all of your PNG and JPEG files.
    • \n
    • No Performance Impact On Your Server – Image optimization is not run on your website’s server to prevent wasting server resources (that you pay for) and is instead run using the fast, reliable WPMU DEV Smush API.
    • \n
    • Configs – Set your preferred Smush settings, save them as a config, and instantly upload to any other site.
    • \n
    • And many, many, more!
    • \n
    \n

    Learn More With These Hands-On Image Optimization & Performance Tutorials

    \n\n

    Next-Gen Formats – Serve Images In WebP or AVIF format

    \n

    With Smush, you can take advantage of next-gen image formats by converting all of your images to WebP or AVIF. WebP & AVIF are file formats that enable superior image compression and quality retention. All major performance testing solutions, including Google PageSpeed Insights, assess your site’s ability to serve images in these next-gen formats due to the significant impact on visitor experience.

    \n

    WebP lossless images are 26% smaller in size compared to PNGs. WebP lossy images are 25-34% smaller than comparable JPG images. AVIF images are up to 60% smaller than comparable JPG or PNG images. More information can be found in this Google developers article and this web.dev article.

    \n

    The best part: Smush’s Next-Gen Formats feature makes this incredibly easy to set up with the ability to host all images locally (not requiring the use of a CDN). Our Next-Gen Formats feature includes automatically replacing PNG and JPEG images on your website’s frontend to serve WebP or AVIF images – with the necessary fallbacks for browsers that don’t support next-gen formats yet.

    \n

    Learn more: How To Convert Images to WebP In WordPress

    \n

    Note: Yes, Smush supports next-gen conversion for all image formats, including JPEG to WebP/AVIF, and PNG to WebP/AVIF.

    \n

    With the best image optimization plugin for WordPress – you can finally stop worrying about the performance impact of using the images you want on your website.

    \n

    Compress Images While Preserving Image Quality

    \n

    Image compression plugins don’t have to destroy images with a visible, 30% loss in quality. Smush strips hidden information from your images (that can often be bulky), and reduces image file sizes without introducing a visible impact on appearance.

    \n

    Smush meticulously scans every image you upload – or have already added to your site – cuts all the unnecessary data, and scales it for you before adding it to your media library. And it can serve images in WebP or AVIF format.

    \n

    Compress Images While You Sleep With Background Image Optimization

    \n

    Have a large number of images to compress? Smush’s powerful optimization features will continue to work their magic in the background, even when you’ve closed the plugin completely. You’ll receive an email when image optimization has been completed – with a full report.

    \n

    Compress Any Image in Any Directory

    \n

    As well as smushing your media uploads, you may want to compress the images stored in other folders. Smush now lets you compress any image in any directory – so that you can optimize all the images on your site – including NextGEN images, images stored on Amazon S3 using WP Offload Media and images in EVERY WordPress plugin and theme package!

    \n

    Compatible with Your Favorite Themes, Page Builders, and Media Library Plugins

    \n

    No matter what theme or plugins you use to manage your WordPress media library, Smush has you covered. Check out just a few of the popular products Smush is working with to help make your site faster and more efficient:

    \n\n

    Incorrect Image Size Detection

    \n

    Smush includes a wrong-size image finder. Activate this feature, and your images will be highlighted with smart tips to let you easily resize your images. Quickly locate the images that are keeping you from getting that perfect 100 on your Google PageSpeed test.

    \n

    Defer Offscreen Images & Videos (Lazy Load)

    \n

    Smush includes built-in lazy loading. If your page has a bunch of images & videos below the fold, lazy loading will drastically speed up your page by serving only the images being viewed, and delaying others further down the page.

    \n

    Save time with Smush Configs

    \n

    Configs allow you to save your preferred Smush configuration settings and apply them to your other sites in a few clicks. You can create unlimited configs.

    \n

    Here’s What Our Users Are Saying

    \n

    ★★★★★

    \n
    \n

    “I had no idea that my page load time was being dragged down by the images. The plugin nearly halved the time it took.” – karlcw

    \n
    \n

    ★★★★★

    \n
    \n

    “I optimise my photos in Photoshop, but Smush makes it so easy – it does it automatically. I can just sit back and enjoy the speed.” – helen432

    \n
    \n

    ★★★★★

    \n
    \n

    “Smush helped reduce the total files size on my site and increased browsing speed. Well done guys!” – pdci

    \n
    \n

    ★★★★★

    \n
    \n

    “It’s very discrete and does not bother me with an API key or other additional installation steps. The main dashboard of the plugin gives me nice insight. Overall it really fits my needs and I’ll be willing to upgrade to pro if my needs change. I’d recommend it to clients/friends without hesitation. Keep it up!” – tarkan_

    \n
    \n

    What about Multisite?

    \n

    Smush can be used to optimize all images across your entire network! Use global settings, or configure each site individually.

    \n

    Smush is super easy to use – no confusing image compression software settings. Smush lets you optimize all images in your library either one at a time, or all together. Plus, configure auto-smush to asynchronously scale and compress some or all of your images as they are being uploaded – it’s incredibly fast.

    \n

    The faster your site loads, the more Google, Bing, Yahoo, and other search engines will like it. Your site will load faster and rank higher.

    \n

    Shameless Plug(ins)

    \n
      \n
    • Hummingbird – Page Speed Optimization
    • \n
    • SmartCrawl – SEO Optimizer
    • \n
    • Forminator – Form, Poll, and Quiz Builder
    • \n
    • Defender – Security, Monitoring, and Hack Protection
    • \n
    • Hustle – Pop-ups, Slide-ins and Email Opt-ins
    • \n
    • Beehive – Customizable Google Analytics Dashboards
    • \n
    \n

    Smush can take care of all your image compression needs… all for free!

    \n

    However, if you’d like fast CDN image delivery, WebP/AVIF conversion, automatic image resizing, the ability to optimize (or optimise) images up to 256MB, bulk smush optimization for all your images in just one-click, auto-convert PNG to JPEG, the ability to make a copy of your full-sized images (to restore them at any point), you can always take the next step with WP Smush Pro. And get even more with her whole team of WordPress optimization hero friends (security, SEO, performance, support, and maintenance automation) – trusted by thousands of agencies and freelancers offering site maintenance services.

    \n

    Privacy

    \n

    Smush does not interact with end users on your website. The only input option Smush has is to a newsletter subscription for site admins only.

    \n

    Smush uses a third-party email service (Mailchimp) to send informational emails (opt-in) to the site administrator. The administrator’s email address is sent to Mailchimp and a cookie is set by the service. Only administrator information is collected by Mailchimp.

    \n

    Smush sends images to the WPMU DEV servers to optimize them for web use. This includes the transfer of EXIF data. The EXIF data will either be stripped or returned as it is. It is not stored on the WPMU DEV servers.

    \n

    About Us

    \n

    WPMU DEV is a premium supplier of quality WordPress plugins, services and support. Learn more here:
    \nhttps://wpmudev.com/

    \n

    Don’t forget to stay up to date on everything WordPress from the Internet’s number one resource:
    \nWPMU DEV Blog

    \n

    Hey, one more thing… we hope you enjoy our free offerings as much as we’ve loved making them for you!

    \n

    Contact and Credits

    \n

    Originally written by Alex Dunae at Dialect (dialect.ca, e-mail ‘alex’ at ‘dialect dot ca’), 2008-11.

    \n", "donate_link": "", "num_ratings": 6024, "screenshots": {"1": {"src": "https://ps.w.org/wp-smushit/assets/screenshot-1.gif?rev=3281715", "caption": "Bulk Image Compression."}, "2": {"src": "https://ps.w.org/wp-smushit/assets/screenshot-2.png?rev=3281715", "caption": "Smush detects images that need compression."}, "3": {"src": "https://ps.w.org/wp-smushit/assets/screenshot-3.png?rev=3281715", "caption": "Compress unlimited images in the background."}, "4": {"src": "https://ps.w.org/wp-smushit/assets/screenshot-4.png?rev=3281715", "caption": "Compress images like a pro with single Smush settings."}, "5": {"src": "https://ps.w.org/wp-smushit/assets/screenshot-5.png?rev=3281715", "caption": "Make your page load faster with lazy loading."}}, "support_url": "https://wordpress.org/support/plugin/wp-smushit/", "contributors": {"wpmudev": {"avatar": "https://secure.gravatar.com/avatar/76b74b052c98504b5989e983d0c5fbe671c1535ec3b01024f520f0709cb9b2d9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpmudev/", "display_name": "WPMU DEV - Your All-in-One WordPress Platform"}, "alexdunae": {"avatar": "https://secure.gravatar.com/avatar/ac75c9e4912a0765eef18917d25c7340bab2dc253cd23b85191768b8c9f4207d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alexdunae/", "display_name": "Alex Dunae"}}, "last_updated": "2025-10-06 2:47pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-smushit.3.22.1.zip", "author_profile": "https://profiles.wordpress.org/wpmudev/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-ff2c-72bb-aef5-479610fee18c", "name": "Smush Image Optimization – Optimize Images | Compress & Lazy Load Images | Convert WebP & AVIF | Image CDN", "slug": "wp-smushit", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1759762020, "version": "3.22.1"}, "support_threads": 6, "requires_plugins": [], "short_description": "Optimize images & bulk compress images with lossless compression, lazy load, convert to WebP or AVIF, and properly size images via CDN for incredi …", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "https://wpmudev.com/project/wp-smush-pro/", "support_threads_resolved": 5}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1f99-7002-a150-9bba94c7d050', 'did:web:api.aspiredev.org:packages:wp-plugin:wp-super-cache', 'wp-super-cache', 'WP Super Cache', '

    This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.

    -

    The static html files will be served to the vast majority of your users:

    -
      -
    • Users who are not logged in.
    • -
    • Users who have not left a comment on your blog.
    • -
    • Or users who have not viewed a password protected post.
    • -
    -

    99% of your visitors will be served static html files. One cached file can be served thousands of times. Other visitors will be served custom cached files tailored to their visit. If they are logged in, or have left comments those details will be displayed and cached for them.

    -

    The plugin serves cached files in 3 ways (ranked by speed):

    -
      -
    1. Expert. The fastest method is by using Apache mod_rewrite (or whatever similar module your web server supports) to serve “supercached” static html files. This completely bypasses PHP and is extremely quick. If your server is hit by a deluge of traffic it is more likely to cope as the requests are “lighter”. This does require the Apache mod_rewrite module (which is probably installed if you have custom permalinks) and a modification of your .htaccess file which is risky and may take down your site if modified incorrectly.
    2. -
    3. Simple. Supercached static files can be served by PHP and this is the recommended way of using the plugin. The plugin will serve a “supercached” file if it exists and it’s almost as fast as the mod_rewrite method. It’s easier to configure as the .htaccess file doesn’t need to be changed. You still need a custom permalink. You can keep portions of your page dynamic in this caching mode.
    4. -
    5. WP-Cache caching. This is mainly used to cache pages for known users, URLs with parameters and feeds. Known users are logged in users, visitors who leave comments or those who should be shown custom per-user data. It’s the most flexible caching method and slightly slower. WP-Cache caching will also cache visits by unknown users if supercaching is disabled. You can have dynamic parts to your page in this mode too. This mode is always enabled but you can disable caching for known users, URLs with parameters, or feeds separately. Set the constant “DISABLE_SUPERCACHE” to 1 in your wp-config.php if you want to only use WP-Cache caching.
    6. -
    -

    If you’re not comfortable with editing PHP files then use simple mode. It’s easy to set up and very fast.

    -

    Recommended Settings

    -
      -
    1. Simple caching.
    2. -
    3. Compress pages.
    4. -
    5. Don’t cache pages for known users.
    6. -
    7. Cache rebuild.
    8. -
    9. CDN support.
    10. -
    11. Extra homepage checks.
    12. -
    -

    Garbage collection is the act of cleaning up cache files that are out of date and stale. There’s no correct value for the expiry time but a good starting point is 1800 seconds.

    -

    Consider deleting the contents of the “Rejected User Agents” text box and allow search engines to cache files for you.

    -

    Preload as many posts as you can and enable “Preload Mode”. Garbage collection of old cached files will be disabled. If you don’t care about sidebar widgets updating often set the preload interval to 2880 minutes (2 days) so all your posts aren’t recached very often. When the preload occurs the cache files for the post being refreshed is deleted and then regenerated. Afterwards a garbage collection of all old files is performed to clean out stale cache files.
    -Even with preload mode enabled cached files will still be deleted when posts are modified or comments made.

    -

    Development

    -
      -
    • Active development of this plugin is handled on GitHub.
    • -
    • Translation of the plugin into different languages is on the translation page.
    • -
    -

    Documentation

    -

    If you need more information than the following, you can have a look at the wiki or the Developer documentation.

    -

    Preloading

    -

    You can generate cached files for the posts, categories and tags of your site by preloading. Preloading will visit each page of your site generating a cached page as it goes along, just like any other visitor to the site. Due to the sequential nature of this function, it can take some time to preload a complete site if there are many posts.
    -To make preloading more effective it can be useful to disable garbage collection so that older cache files are not deleted. This is done by enabling “Preload Mode” in the settings. Be aware however, that pages will go out of date eventually but that updates by submitting comments or editing posts will clear portions of the cache.

    -

    Garbage Collection

    -

    Your cache directory fills up over time, which takes up space on your server. If space is limited or billed by capacity, or if you worry that the cached pages of your site will go stale then garbage collection has to be done. Garbage collection happens on a regular basis and deletes old files in the cache directory. On the advanced settings page you can specify:
    -1. Cache timeout. How long cache files are considered fresh for. After this time they are stale and can be deleted.
    -2. Scheduler. Setup how often garbage collection should be done.
    -3. Notification emails. You can be informed on garbage collection job progress.
    -There’s no right or wrong settings for garbage collection. It depends on your own site.
    -If your site gets regular updates, or comments then set the timeout to 1800 seconds, and set the timer to 600 seconds.
    -If your site is mostly static you can disable garbage collection by entering 0 as the timeout, or use a really large timeout value.

    -

    The cache directory, usually wp-content/cache/ is only for temporary files. Do not ever put important files or symlinks to important files or directories in that directory. They will be deleted if the plugin has write access to them.

    -

    CDN

    -

    A Content Delivery Network (CDN) is usually a network of computers situated around the world that will serve the content of your website faster by using servers close to you. Static files like images, Javascript and CSS files can be served through these networks to speed up how fast your site loads. You can also create a “poor man’s CDN” by using a sub domain of your domain to serve static files too.

    -

    OSSDL CDN off-linker has been integrated into WP Super Cache to provide basic CDN support. It works by rewriting the URLs of files (excluding .php files) in wp-content and wp-includes on your server so they point at a different hostname. Many CDNs support origin pull. This means the CDN will download the file automatically from your server when it’s first requested, and will continue to serve it for a configurable length of time before downloading it again from your server.

    -

    Configure this on the “CDN” tab of the plugin settings page. This is an advanced technique and requires a basic understanding of how your webserver or CDNs work. Please be sure to clear the file cache after you configure the CDN.

    -

    REST API

    -

    There are now REST API endpoints for accessing the settings of this plugin. You’ll need to be authenticated as an admin user with permission to view the settings page to use it. This has not been documented yet but you can find all the code that deals with this in the “rest” directory.

    -

    Custom Caching

    -

    It is now possible to hook into the caching process using the add_cacheaction() function.

    -

    Three hooks are available:

    -
      -
    1. ‘wp_cache_get_cookies_values’ – modify the key used by WP Cache.
    2. -
    3. ‘add_cacheaction’ – runs in phase2. Allows a plugin to add WordPress hooks.
    4. -
    5. ‘cache_admin_page’ – runs in the admin page. Use it to modify that page, perhaps by adding new configuration options.
    6. -
    -

    There is one regular WordPress filter too. Use the “do_createsupercache” filter
    -to customize the checks made before caching. The filter accepts one parameter.
    -The output of WP-Cache’s wp_cache_get_cookies_values() function.

    -

    WP Super Cache has its own plugin system. This code is loaded when WP Super Cache loads and can be used to change how caching is done. This is before most of WordPress loads so some functionality will not be available. Plugins can be located anywhere that PHP can load them. Add your own plugin either:

    -
      -
    • by putting your plugin in the wp-content/plugins/wp-super-cache-plugins directory, or
    • -
    • by calling wpsc_add_plugin( $name ) where $name is the full filename and path to the plugin. You only need to call that function once to add it. Use wpsc_delete_plugin( $name ) to remove it from the list of loaded plugins.
    • -
    -

    The cookies WP Super Cache uses to identify “known users” can be modified now by adding the names of those cookies to a list in the plugin configuration. Use wpsc_add_cookie( $name ) to add a new cookie, and wpsc_delete_cookie( $name ) to remove it. The cookie names also modify the mod_rewrite rules used by the plugin but I recommend using Simple mode caching to avoid complications with updating the .htaccess file.
    -The cookie name and value are used to differenciate users so you can have one cookie, but different values for each type of user on your site for example. They’ll be served different cache files.

    -

    See plugins/searchengine.php as an example I use for my No Adverts for Friends plugin.

    -

    Troubleshooting

    -

    If things don’t work when you installed the plugin here are a few things to check:

    -
      -
    1. Is wp-content writable by the web server?
    2. -
    3. Is there a wp-content/wp-cache-config.php ? If not, copy the file wp-super-cache/wp-cache-config-sample.php to wp-content/wp-cache-config.php and make sure WPCACHEHOME points at the right place.
    4. -
    5. Is there a wp-content/advanced-cache.php ? If not, then you must copy wp-super-cache/advanced-cache.php into wp-content/. You must edit the file and change the path so it points at the wp-super-cache folder.
    6. -
    7. If pages are not cached at all, remove wp-content/advanced-cache.php and recreate it, following the advice above.
    8. -
    9. -

      Make sure the following line is in wp-config.php and it is ABOVE the “require_once(ABSPATH.’wp-settings.php’);” line:

      -
      define( ''WP_CACHE'', true );
      -
      -
    10. -
    11. Try the Settings->WP Super Cache page again and enable cache.
    12. -
    13. Look in wp-content/cache/supercache/. Are there directories and files there?
    14. -
    15. Anything in your php error_log?
    16. -
    17. If your browser keeps asking you to save the file after the super cache is installed you must disable Super Cache compression. Go to the Settings->WP Super Cache page and disable it there.
    18. -
    19. The plugin does not work very well when PHP’s safe mode is active. This must be disabled by your administrator.
    20. -
    21. If pages are randomly super cached and sometimes not, your blog can probably be viewed with and without the “www” prefix on the URL. You should choose one way and install the Enforce www preference plugin if you are using an old WordPress install. The latest versions redirect themselves (you should always be running the latest version of WordPress anyway!)
    22. -
    23. Private Server users at Dreamhost should edit wp-content/wp-cache-config.php and set the cache dir to “/tmp/” if they are getting errors about increasing CPU usage. See this discussion for more.
    24. -
    25. File locking errors such as “failed to acquire key 0x152b: Permission denied in…” or “Page not cached by WP Super Cache. Could not get mutex lock.” are a sign that you may have to use file locking. Edit wp-content/wp-cache-config.php and uncomment “$use_flock = true” or set $sem_id to a different value. You can also disable file locking from the Admin screen as a last resort.
    26. -
    27. Make sure cache/wp_cache_mutex.lock is writable by the web server if using coarse file locking.
    28. -
    29. The cache folder cannot be put on an NFS or Samba or NAS share. It has to be on a local disk. File locking and deleting expired files will not work properly unless the cache folder is on the local machine.
    30. -
    31. -

      Garbage collection of old cache files won’t work if WordPress can’t find wp-cron.php. If your hostname resolves to 127.0.0.1 it could be preventing the garbage collection from working. Check your access_logs for wp-cron.php entries. Do they return a 404 (file not found) or 200 code? If it’s 404 or you don’t see wp-cron.php anywhere WordPress may be looking for that script in the wrong place. You should speak to your server administator to correct this or edit /etc/hosts on Unix servers and remove the following line. Your hostname must resolve to the external IP address other servers on the network/Internet use. See http://yoast.com/wp-cron-issues/ for more. A line like “127.0.0.1 localhost localhost.localdomain” is ok.

      -
      127.0.0.1 example.com
      -
      -
    32. -
    33. If old pages are being served to your visitors via the supercache, you may be missing Apache modules (or their equivalents if you don’t use Apache). 3 modules are required: mod_mime, mod_headers and mod_expires. The last two are especially important for making sure browsers load new versions of existing pages on your site.
    34. -
    35. The error message, “WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed!” appears at the end of every page. Open the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? This file will normally be in wp-content/plugins/wp-super-cache/. If it is not correct the caching engine will not load.
    36. -
    37. Caching doesn’t work. The timestamp on my blog keeps changing when I reload. Check that the path in your .htaccess rules matches where the supercache directory is. You may have to hardcode it. Try disabling supercache mode.
    38. -
    39. -

      If supercache cache files are generated but not served, check the permissions on all your wp-content/cache/supercache folders (and each of wp-content cache and supercache folders) and wp-content/cache/.htaccess. If your PHP runs as a different user to Apache and permissions are strict Apache may not be able to read the PHP generated cache files. To fix you must add the following line to your wp-config.php (Add it above the WP_CACHE define.) Then clear your cache.

      -
      umask( 0022 );
      -
      -
    40. -
    41. -

      If you see garbage in your browser after enabling compression in the plugin, compression may already be enabled in your web server. In Apache you must disable mod_deflate, or in PHP zlib compression may be enabled. You can disable that in three ways. If you have root access, edit your php.ini and find the zlib.output_compression setting and make sure it’s “Off” or add this line to your .htaccess:

      -
      php_flag zlib.output_compression off
      -
      -

      If that doesn’t work, add this line to your wp-config.php:

      -
      ini_set(''zlib.output_compression'', 0);
      -
      -
    42. -
    43. The “white screen of death” or a blank page when you visit your site is almost always caused by a PHP error but it may also be caused by APC. Disable that PHP extension if you have trouble and replace with eAccelerator or Xcache.
    44. -
    45. After uninstalling, your permalinks may break if you remove the WordPress mod_rewrite rules too. Regenerate those rules by visiting the Settings->Permalink page and saving that form again.
    46. -
    47. If your blog refuses to load make sure your wp-config.php is correct. Are you missing an opening or closing PHP tag?
    48. -
    49. Your front …
    50. -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "WP Super Cache", "slug": "wp-super-cache", "tags": {"cache": "cache", "caching": "caching", "wp-cache": "WP Cache", "performance": "performance", "wp-super-cache": "WP Super Cache"}, "added": "2007-11-05", "icons": {"1x": "https://ps.w.org/wp-super-cache/assets/icon-128x128.png?rev=1095422", "2x": "https://ps.w.org/wp-super-cache/assets/icon-256x256.png?rev=1095422"}, "author": "Automattic", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-super-cache/assets/banner-772x250.png?rev=1082414", "high": "https://ps.w.org/wp-super-cache/assets/banner-1544x500.png?rev=1082414"}, "ratings": {"1": 175, "2": 23, "3": 47, "4": 107, "5": 989}, "version": "3.0.2", "homepage": "https://wordpress.org/plugins/wp-super-cache/", "requires": "6.7", "sections": {"faq": "\n
    \nHow do I know my blog is being cached?\n\n

    \n

    Go to Settings -> WP Super Cache and look for the “Cache Tester” form on the easy settings page. Click “Test Cache” and the plugin will request the front page of the site twice, comparing a timestamp on each to make sure they match.

    \n

    If you want to do it manually, enable debugging in the plugin settings page and load the log file in a new browser tab. Then view your blog while logged in and logged out. You should see activity in the log. View the source of any page on your site. When a page is first created, you’ll see the text “Dynamic page generated in XXXX seconds.” and “Cached page generated by WP-Super-Cache on YYYY-MM-DD HH:MM:SS” at the end of the source code. On reload, a cached page will show the same timestamp so wait a few seconds before checking.
    \nIf Supercaching is disabled and you have compression enabled, the text “Compression = gzip” will be added. If compression is disabled and the page is served as a static html file, the text “super cache” will be added. The only other way to check if your cached file was served by PHP script or from the static cache is by looking at the HTTP headers. PHP cached pages will have the header “WP-Super-Cache: Served supercache file from PHP”. WPCache cached files will have the header, “WP-Super-Cache: Served WPCache cache file”. You should also check your cache directory in wp-content/cache/supercache/hostname/ for static cache files.
    \nIf the plugin rules are missing from your .htaccess file, the plugin will attempt to serve the super cached page if it’s found. The header “WP-Super-Cache: Served supercache file from PHP” if this happens.
    \nThe pagespeed module for Apache may cause problems when testing. Disable it if you notice any problems running the cache tester.

    \n

    \n
    \nHow do I disable Supercaching?\n\n

    \n

    If you only want to use the WP-Cache engine then edit your wp-config.php or create an mu-plugin that sets the constant ‘DISABLE_SUPERCACHE’ to 1.

    \n

    \n
    \nWP-Cache vs Supercache files\n\n

    \n

    All cache files are stored in wp-content/cache/supercache/HOSTNAME/ where HOSTNANE is your domain name. The files are stored in directories matching your site’s permalink structure. Supercache files are index.html or some variant of that, depending on what type of visitor hit the blog. Other files are named wp-cache-XXXXXXXXXXXXXXXXX.php. Associated meta filesnames start with “meta”. Those files contain information about the cached file. These files are generated by the “WPCache caching” engine in the plugin.

    \n

    \n
    \nWill comments and other dynamic parts of my blog update immediately?\n\n

    \n

    Comments will show as soon as they are moderated, depending on the comment policy of the blog owner. Other dynamic elements on a page may not update unless they are written in Javascript, Flash, Java or another client side browser language. The plugin really produces static html pages. No PHP is executed when those pages are served. “Popularity Contest” is one such plugin that will not work.

    \n

    \n
    \nWill the Super Cache compression slow down my server?\n\n

    \n

    No, it will do the opposite. Super Cache files are compressed and stored that way so the heavy compression is done only once. These files are generally much smaller and are sent to a visitor’s browser much more quickly than uncompressed html. As a result, your server spends less time talking over the network which saves CPU time and bandwidth, and can also serve the next request much more quickly.

    \n

    \n
    \nHow do I make certain parts of the page stay dynamic?\n\n

    \n

    Note: this functionality is disabled by default. You will have to enable it on the Advanced Settings page.

    \n

    There are 2 ways of doing this. You can use Javascript to draw the part of the page you want to keep dynamic. That’s what Google Adsense and many widgets from external sites do and is the recommended way. Or you can use a WP Super Cache filter to do the job but you can’t use mod_rewrite mode caching. You have to use the “simple” delivery method or disable supercaching.

    \n

    WP Super Cache 1.4 introduced a cacheaction filter called wpsc_cachedata. The cached page to be displayed goes through this filter and allows modification of the page. If the page contains a placeholder tag the filter can be used to replace that tag with your dynamically generated html.
    \nThe function that hooks on to the wpsc_cachedata filter should be put in a file in the WP Super Cache plugins folder unless you use the late_init feature. An example plugin is included. Edit dynamic-cache-test.php to see the example code.
    \nThere are two example functions there. There’s a simple function that replaces a string (or tag) you define when the cached page is served. The other example function uses an output buffer to generate the dynamic content. Due to a limitation in how PHP works the output buffer code MUST run before the wpsc_cachedata filter is hit, at least for when a page is cached. It doesn’t matter when serving cached pages. See this post for a more technical and longer explanation.
    \nTo execute WordPress functions you must enable the ‘Late init’ feature on the advanced settings page.

    \n

    \n
    \nHow do I delay serving the cache until the “init” action fires?\n\n

    \n

    Cached files are served before almost all of WordPress is loaded. While that’s great for performance it’s a pain when you want to extend the plugin using a core part of WordPress. Enable ‘Late init’ mode on the Advanced settings page and cached files will be served when “init” fires. WordPress and it’s plugins will be loaded now.

    \n

    \n
    \nWhy don’t WP UserOnline, Popularity Contest, WP Postratings or plugin X not work or update on my blog now?\n\n

    \n

    This plugin caches entire pages but some plugins think they can run PHP code every time a page loads. To fix this, the plugin needs to use Javascript/AJAX methods or the wpsc_cachedata filter described in the previous answer to update or display dynamic information.

    \n

    \n
    \nWhy do my WP Super Cache plugins disappear when I upgrade the plugin?\n\n

    \n

    WordPress deletes the plugin folder when it updates a plugin. This is the same with WP Super Cache so any modified files in wp-super-cache/plugins/ will be deleted. You can put your custom plugins in a different directory in a number of ways. You can define the variable $wp_cache_plugins_dir in wp-config.php or wp-content/wp-cache-config.php and point it at a directory outside of the wp-super-cache folder. The plugin will look there for it’s plugins. Or if you distribute a plugin that needs to load early you can use the function wpsc_add_plugin( $filename ) to add a new plugin wherever it may be. Use wpsc_delete_plugin( $filename ) to remove the plugin file. See #574 or this post on writing WP Super Cache plugins.

    \n

    \n
    \nWhat does the Cache Rebuild feature do?\n\n

    \n

    When a visitor leaves a comment the cached file for that page is deleted and the next visitor recreates the cached page. A page takes time to load so what happens if it receives 100 visitors during this time? There won’t be a cached page so WordPress will serve a fresh page for each user and the plugin will try to create a cached page for each of those 100 visitors causing a huge load on your server. This feature stops this happening. The cached page is not cleared when a comment is left. It is marked for rebuilding instead. The next visitor within the next 10 seconds will regenerate the cached page while the old page is served to the other 99 visitors. The page is eventually loaded by the first visitor and the cached page updated. See this post for more.

    \n

    \n
    \nWhy doesn’t the plugin cache requests by search engine bots by default?\n\n

    \n

    Those bots usually only visit each page once and if the page is not popular there’s no point creating a cache file that will sit idle on your server. However you can allow these visits to be cached by removing the list of bots from “Rejected User Agents” on the Advanced settings page.

    \n

    \n
    \nA category page is showing instead of my homepage\n\n

    \n

    A tiny proportion of websites will have problems with the following configuration:

    \n
      \n
    1. Uses a static page for the front page.
    2. \n
    3. Uses /%category%/%postname%/ permalink structure.
    4. \n
    \n

    Sometimes a category page is cached as the homepage of the site instead of the static page. I can’t replicate the problem but a simple solution is to use the “Simple” mode. You can also enable “Extra homepage checks” on the Advanced Settings page.

    \n

    \n
    \nWhy do I get warnings about caching from http://ismyblogworking.com/\n\n

    \n

    “Your blog doesn’t support client caching (no 304 response to If-modified-since).”
    \n“Your feed doesn’t support caching (no 304 response to If-modified-since)”

    \n

    Supercache doesn’t support 304 header checks in Expert mode but does support it in Simple mode. This is caching done by your browser, not the server. It is a check your browser does to ask the server if an updated version of the current page is available. If not, it doesn’t download the old version again. The page is still cached by your server, just not by your visitors’ browsers.
    \nTry the Cacheability Engine at http://www.ircache.net/cgi-bin/cacheability.py or https://redbot.org/ for further analysis.

    \n

    \n
    \nHow should I best use the utm_source tracking tools in Google Analytics with this plugin?\n\n

    \n

    That tracking adds a query string to each url linked from various sources like Twitter and feedreaders. Unfortunately it stops pages being supercached. See Joost’s comment here for how to turn it into an anchor tag which can be supercached.

    \n

    \n
    \nThe plugin complains that wp-content is writable! htdocs is writable!\n\n

    \n

    It’s not good when the web server can write to these directories but sometimes shared hosting accounts are set up in this way to make administration easier. Use chmod 755 directory to fix the permissions or find the permissions section of your ftp client. This Google search will lead you to more information on this topic and there’s also this codex page too. Unfortunately some hosts require that those directories be writable. If that’s the case just ignore this warning.

    \n

    \n
    \nHow do I delete the WP_CACHE define from wp-config.php?\n\n

    \n

    Load your desktop ftp client and connect to your site. Navigate to the root (or the directory below it) of your site where you’ll find wp-config.php. Download that file and edit it in a text editor. Delete the line define( ''WP_CACHE'', true ); and save the file. Now upload it, overwriting the wp-config.php on your server.

    \n

    \n
    \nHow do I delete the Super Cache rules from the .htaccess file?\n\n

    \n

    Load your desktop ftp client and connect to your site. You may need to enable “Show hidden files” in the preferences of the ftp client. Navigate to the root of your site where you’ll find the .htaccess file. Download that file and edit it in a text editor. Delete the lines between “# BEGIN WPSuperCache” and “# END WPSuperCache” and save the file. Now upload it, overwriting the .htaccess file on your server.

    \n

    \n
    \nHow do I change file permissions?\n\n

    \n

    This page on the WordPress Codex explains everything you need to know about file permissions on your server and various ways of changing them.

    \n

    \n
    \nWhy do I get load spikes when new posts are made?\n\n

    \n

    You may have the “clear all cached files when new posts are made” option set. Clearing those files can take time plus your visitors will now be visiting uncached pages. Are you using Google Analytics campaign tracking with utm_source in the url? Those pages aren’t cached. See the question, “How should I best use the utm_source tracking tools in Google Analytics with this plugin” above for how to use them properly.
    \nCached pages have to be refreshed when posts are made. Perhaps your server just isn’t up to the job of serving the amount of traffic you get. Enable the “cache rebuild” feature as that may help.

    \n

    \n
    \nHow many pages can I cache?\n\n

    \n

    The only real limit are limits defined by your server. For example, EXT2 and EXT3 allow a maximum of 31,999 sub directories so if you have a flat permalink structure (like /%POSTNAME%/) and more than 32,000 posts you may run into problems. Likewise, if you run a multisite network and have more than 31,999 sites (blogs) you won’t be able to cache all of them. Realistically if you had that many active sites you wouldn’t be running on one server.

    \n

    \n
    \nI can see that the www version of my site is cached separately. How do I stop that?\n\n

    \n

    WordPress should redirect to the canonical URL of your site but if it doesn’t, add this to your .htaccess above the Supercache and WordPress rules. Change example.com to your own hostname.
    \n RewriteCond %{HTTP_HOST} www.example.com$ [NC]
    \n RewriteRule ^(.*)$ https://example.com/$1 [L,R=301]

    \n

    \n
    \nHow do I serve cached mobile pages to clients on small screens like phones and tablets?\n\n

    \n

    Your theme is probably responsive which means it resizes the page to suit whatever device is displaying the page. If it’s not responsive, you’ll have to use a separate mobile plugin to render a page formatted for those visitors. The following plugins have been tested but YMMV depending on mobile client. You’ll have to enable mobile browser support as well on the Advanced settings page.

    \n\n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast, Simple, and Effective

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Willem Jurka (jurka) on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    First experience is very positive. WP Super Cache works immediately and makes the site noticeably faster. The plugin is straightforward, simple to use, and does exactly what it should without any hassle. Hopefully, it will stay this way.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This really sucks

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy biodracula on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    when I deactivated it , Internal Server Error

    \n\n\n\n

    would never use again!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A good functional plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy weboosteg on August 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    the plugin works good and the team of it answer questions and support whenever needed. Keep it up!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very helpful tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rene Maurer (rene.maurer) on May 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It is very easy to use and optimally accelerates the website(s). Many thanks for the free version, it''s simply brilliant.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Warning

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bjorne51 on November 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin caused our web hotel to cash coz the cache files allows to increase without stop

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Billboard voor Jetpack Boost

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy elco.vanberkel on November 11, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s one big advertisement for Jetpack Boost.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and Useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy labsii on October 21, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to setup and has effect.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Zufrieden - Vielen Dank

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mehralsheidi on August 3, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ich bin Laie und kann nicht beurteilen, wie gut das PlugIn ist - aber ich habs und alles funkt :-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does everything a page-caching plugin should.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy grdesign (grogers42) on July 5, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A staple of my website-making toolkit.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Most important SEO plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Michael Schustereder (schustereder) on June 10, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The first plugin I install on any site. The difference between slow and blazing fast.

    \n
    \n
    \n", "changelog": "

    3.0.2 – 2025-10-10

    \n

    Added

    \n
      \n
    • Add typecheck support for E2E tests.
    • \n
    \n

    Changed

    \n
      \n
    • Update package dependencies.
    • \n
    • Use wp_rand() instead of rand() and mt_rand().
    • \n
    \n

    Fixed

    \n
      \n
    • Code: Resolve PhanImpossibleCondition violations.
    • \n
    \n

    See the previous changelogs here

    \n", "description": "

    This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.

    \n

    The static html files will be served to the vast majority of your users:

    \n
      \n
    • Users who are not logged in.
    • \n
    • Users who have not left a comment on your blog.
    • \n
    • Or users who have not viewed a password protected post.
    • \n
    \n

    99% of your visitors will be served static html files. One cached file can be served thousands of times. Other visitors will be served custom cached files tailored to their visit. If they are logged in, or have left comments those details will be displayed and cached for them.

    \n

    The plugin serves cached files in 3 ways (ranked by speed):

    \n
      \n
    1. Expert. The fastest method is by using Apache mod_rewrite (or whatever similar module your web server supports) to serve “supercached” static html files. This completely bypasses PHP and is extremely quick. If your server is hit by a deluge of traffic it is more likely to cope as the requests are “lighter”. This does require the Apache mod_rewrite module (which is probably installed if you have custom permalinks) and a modification of your .htaccess file which is risky and may take down your site if modified incorrectly.
    2. \n
    3. Simple. Supercached static files can be served by PHP and this is the recommended way of using the plugin. The plugin will serve a “supercached” file if it exists and it’s almost as fast as the mod_rewrite method. It’s easier to configure as the .htaccess file doesn’t need to be changed. You still need a custom permalink. You can keep portions of your page dynamic in this caching mode.
    4. \n
    5. WP-Cache caching. This is mainly used to cache pages for known users, URLs with parameters and feeds. Known users are logged in users, visitors who leave comments or those who should be shown custom per-user data. It’s the most flexible caching method and slightly slower. WP-Cache caching will also cache visits by unknown users if supercaching is disabled. You can have dynamic parts to your page in this mode too. This mode is always enabled but you can disable caching for known users, URLs with parameters, or feeds separately. Set the constant “DISABLE_SUPERCACHE” to 1 in your wp-config.php if you want to only use WP-Cache caching.
    6. \n
    \n

    If you’re not comfortable with editing PHP files then use simple mode. It’s easy to set up and very fast.

    \n

    Recommended Settings

    \n
      \n
    1. Simple caching.
    2. \n
    3. Compress pages.
    4. \n
    5. Don’t cache pages for known users.
    6. \n
    7. Cache rebuild.
    8. \n
    9. CDN support.
    10. \n
    11. Extra homepage checks.
    12. \n
    \n

    Garbage collection is the act of cleaning up cache files that are out of date and stale. There’s no correct value for the expiry time but a good starting point is 1800 seconds.

    \n

    Consider deleting the contents of the “Rejected User Agents” text box and allow search engines to cache files for you.

    \n

    Preload as many posts as you can and enable “Preload Mode”. Garbage collection of old cached files will be disabled. If you don’t care about sidebar widgets updating often set the preload interval to 2880 minutes (2 days) so all your posts aren’t recached very often. When the preload occurs the cache files for the post being refreshed is deleted and then regenerated. Afterwards a garbage collection of all old files is performed to clean out stale cache files.
    \nEven with preload mode enabled cached files will still be deleted when posts are modified or comments made.

    \n

    Development

    \n
      \n
    • Active development of this plugin is handled on GitHub.
    • \n
    • Translation of the plugin into different languages is on the translation page.
    • \n
    \n

    Documentation

    \n

    If you need more information than the following, you can have a look at the wiki or the Developer documentation.

    \n

    Preloading

    \n

    You can generate cached files for the posts, categories and tags of your site by preloading. Preloading will visit each page of your site generating a cached page as it goes along, just like any other visitor to the site. Due to the sequential nature of this function, it can take some time to preload a complete site if there are many posts.
    \nTo make preloading more effective it can be useful to disable garbage collection so that older cache files are not deleted. This is done by enabling “Preload Mode” in the settings. Be aware however, that pages will go out of date eventually but that updates by submitting comments or editing posts will clear portions of the cache.

    \n

    Garbage Collection

    \n

    Your cache directory fills up over time, which takes up space on your server. If space is limited or billed by capacity, or if you worry that the cached pages of your site will go stale then garbage collection has to be done. Garbage collection happens on a regular basis and deletes old files in the cache directory. On the advanced settings page you can specify:
    \n1. Cache timeout. How long cache files are considered fresh for. After this time they are stale and can be deleted.
    \n2. Scheduler. Setup how often garbage collection should be done.
    \n3. Notification emails. You can be informed on garbage collection job progress.
    \nThere’s no right or wrong settings for garbage collection. It depends on your own site.
    \nIf your site gets regular updates, or comments then set the timeout to 1800 seconds, and set the timer to 600 seconds.
    \nIf your site is mostly static you can disable garbage collection by entering 0 as the timeout, or use a really large timeout value.

    \n

    The cache directory, usually wp-content/cache/ is only for temporary files. Do not ever put important files or symlinks to important files or directories in that directory. They will be deleted if the plugin has write access to them.

    \n

    CDN

    \n

    A Content Delivery Network (CDN) is usually a network of computers situated around the world that will serve the content of your website faster by using servers close to you. Static files like images, Javascript and CSS files can be served through these networks to speed up how fast your site loads. You can also create a “poor man’s CDN” by using a sub domain of your domain to serve static files too.

    \n

    OSSDL CDN off-linker has been integrated into WP Super Cache to provide basic CDN support. It works by rewriting the URLs of files (excluding .php files) in wp-content and wp-includes on your server so they point at a different hostname. Many CDNs support origin pull. This means the CDN will download the file automatically from your server when it’s first requested, and will continue to serve it for a configurable length of time before downloading it again from your server.

    \n

    Configure this on the “CDN” tab of the plugin settings page. This is an advanced technique and requires a basic understanding of how your webserver or CDNs work. Please be sure to clear the file cache after you configure the CDN.

    \n

    REST API

    \n

    There are now REST API endpoints for accessing the settings of this plugin. You’ll need to be authenticated as an admin user with permission to view the settings page to use it. This has not been documented yet but you can find all the code that deals with this in the “rest” directory.

    \n

    Custom Caching

    \n

    It is now possible to hook into the caching process using the add_cacheaction() function.

    \n

    Three hooks are available:

    \n
      \n
    1. ‘wp_cache_get_cookies_values’ – modify the key used by WP Cache.
    2. \n
    3. ‘add_cacheaction’ – runs in phase2. Allows a plugin to add WordPress hooks.
    4. \n
    5. ‘cache_admin_page’ – runs in the admin page. Use it to modify that page, perhaps by adding new configuration options.
    6. \n
    \n

    There is one regular WordPress filter too. Use the “do_createsupercache” filter
    \nto customize the checks made before caching. The filter accepts one parameter.
    \nThe output of WP-Cache’s wp_cache_get_cookies_values() function.

    \n

    WP Super Cache has its own plugin system. This code is loaded when WP Super Cache loads and can be used to change how caching is done. This is before most of WordPress loads so some functionality will not be available. Plugins can be located anywhere that PHP can load them. Add your own plugin either:

    \n
      \n
    • by putting your plugin in the wp-content/plugins/wp-super-cache-plugins directory, or
    • \n
    • by calling wpsc_add_plugin( $name ) where $name is the full filename and path to the plugin. You only need to call that function once to add it. Use wpsc_delete_plugin( $name ) to remove it from the list of loaded plugins.
    • \n
    \n

    The cookies WP Super Cache uses to identify “known users” can be modified now by adding the names of those cookies to a list in the plugin configuration. Use wpsc_add_cookie( $name ) to add a new cookie, and wpsc_delete_cookie( $name ) to remove it. The cookie names also modify the mod_rewrite rules used by the plugin but I recommend using Simple mode caching to avoid complications with updating the .htaccess file.
    \nThe cookie name and value are used to differenciate users so you can have one cookie, but different values for each type of user on your site for example. They’ll be served different cache files.

    \n

    See plugins/searchengine.php as an example I use for my No Adverts for Friends plugin.

    \n

    Troubleshooting

    \n

    If things don’t work when you installed the plugin here are a few things to check:

    \n
      \n
    1. Is wp-content writable by the web server?
    2. \n
    3. Is there a wp-content/wp-cache-config.php ? If not, copy the file wp-super-cache/wp-cache-config-sample.php to wp-content/wp-cache-config.php and make sure WPCACHEHOME points at the right place.
    4. \n
    5. Is there a wp-content/advanced-cache.php ? If not, then you must copy wp-super-cache/advanced-cache.php into wp-content/. You must edit the file and change the path so it points at the wp-super-cache folder.
    6. \n
    7. If pages are not cached at all, remove wp-content/advanced-cache.php and recreate it, following the advice above.
    8. \n
    9. \n

      Make sure the following line is in wp-config.php and it is ABOVE the “require_once(ABSPATH.’wp-settings.php’);” line:

      \n
      define( ''WP_CACHE'', true );\n
      \n
    10. \n
    11. Try the Settings->WP Super Cache page again and enable cache.
    12. \n
    13. Look in wp-content/cache/supercache/. Are there directories and files there?
    14. \n
    15. Anything in your php error_log?
    16. \n
    17. If your browser keeps asking you to save the file after the super cache is installed you must disable Super Cache compression. Go to the Settings->WP Super Cache page and disable it there.
    18. \n
    19. The plugin does not work very well when PHP’s safe mode is active. This must be disabled by your administrator.
    20. \n
    21. If pages are randomly super cached and sometimes not, your blog can probably be viewed with and without the “www” prefix on the URL. You should choose one way and install the Enforce www preference plugin if you are using an old WordPress install. The latest versions redirect themselves (you should always be running the latest version of WordPress anyway!)
    22. \n
    23. Private Server users at Dreamhost should edit wp-content/wp-cache-config.php and set the cache dir to “/tmp/” if they are getting errors about increasing CPU usage. See this discussion for more.
    24. \n
    25. File locking errors such as “failed to acquire key 0x152b: Permission denied in…” or “Page not cached by WP Super Cache. Could not get mutex lock.” are a sign that you may have to use file locking. Edit wp-content/wp-cache-config.php and uncomment “$use_flock = true” or set $sem_id to a different value. You can also disable file locking from the Admin screen as a last resort.
    26. \n
    27. Make sure cache/wp_cache_mutex.lock is writable by the web server if using coarse file locking.
    28. \n
    29. The cache folder cannot be put on an NFS or Samba or NAS share. It has to be on a local disk. File locking and deleting expired files will not work properly unless the cache folder is on the local machine.
    30. \n
    31. \n

      Garbage collection of old cache files won’t work if WordPress can’t find wp-cron.php. If your hostname resolves to 127.0.0.1 it could be preventing the garbage collection from working. Check your access_logs for wp-cron.php entries. Do they return a 404 (file not found) or 200 code? If it’s 404 or you don’t see wp-cron.php anywhere WordPress may be looking for that script in the wrong place. You should speak to your server administator to correct this or edit /etc/hosts on Unix servers and remove the following line. Your hostname must resolve to the external IP address other servers on the network/Internet use. See http://yoast.com/wp-cron-issues/ for more. A line like “127.0.0.1 localhost localhost.localdomain” is ok.

      \n
      127.0.0.1 example.com\n
      \n
    32. \n
    33. If old pages are being served to your visitors via the supercache, you may be missing Apache modules (or their equivalents if you don’t use Apache). 3 modules are required: mod_mime, mod_headers and mod_expires. The last two are especially important for making sure browsers load new versions of existing pages on your site.
    34. \n
    35. The error message, “WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed!” appears at the end of every page. Open the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? This file will normally be in wp-content/plugins/wp-super-cache/. If it is not correct the caching engine will not load.
    36. \n
    37. Caching doesn’t work. The timestamp on my blog keeps changing when I reload. Check that the path in your .htaccess rules matches where the supercache directory is. You may have to hardcode it. Try disabling supercache mode.
    38. \n
    39. \n

      If supercache cache files are generated but not served, check the permissions on all your wp-content/cache/supercache folders (and each of wp-content cache and supercache folders) and wp-content/cache/.htaccess. If your PHP runs as a different user to Apache and permissions are strict Apache may not be able to read the PHP generated cache files. To fix you must add the following line to your wp-config.php (Add it above the WP_CACHE define.) Then clear your cache.

      \n
      umask( 0022 );\n
      \n
    40. \n
    41. \n

      If you see garbage in your browser after enabling compression in the plugin, compression may already be enabled in your web server. In Apache you must disable mod_deflate, or in PHP zlib compression may be enabled. You can disable that in three ways. If you have root access, edit your php.ini and find the zlib.output_compression setting and make sure it’s “Off” or add this line to your .htaccess:

      \n
      php_flag zlib.output_compression off\n
      \n

      If that doesn’t work, add this line to your wp-config.php:

      \n
      ini_set(''zlib.output_compression'', 0);\n
      \n
    42. \n
    43. The “white screen of death” or a blank page when you visit your site is almost always caused by a PHP error but it may also be caused by APC. Disable that PHP extension if you have trouble and replace with eAccelerator or Xcache.
    44. \n
    45. After uninstalling, your permalinks may break if you remove the WordPress mod_rewrite rules too. Regenerate those rules by visiting the Settings->Permalink page and saving that form again.
    46. \n
    47. If your blog refuses to load make sure your wp-config.php is correct. Are you missing an opening or closing PHP tag?
    48. \n
    49. Your front …
    50. \n
    \n", "installation": "

    Install like any other plugin, directly from your plugins page but make sure you have custom permalinks enabled. Go to the plugin settings page at Settings->WP Super Cache and enable caching.

    \n

    How to uninstall WP Super Cache

    \n

    Almost all you have to do is deactivate the plugin on the plugins page. The plugin should clean up most of the files it created and modified, but it doesn’t as yet remove the mod_rewrite rules from the .htaccess file. Look for the section in that file marked by SuperCache BEGIN and END tags. The plugin doesn’t remove those because some people add the WordPress rules in that block too.

    \n

    To manually uninstall:

    \n
      \n
    1. Turn off caching on the plugin settings page and clear the cache.
    2. \n
    3. Deactivate the plugin on the plugins page.
    4. \n
    5. Remove the WP_CACHE define from wp-config.php. It looks like define( ''WP_CACHE'', true );
    6. \n
    7. Remove the Super Cache mod_rewrite rules from your .htaccess file.
    8. \n
    9. Remove the files wp-content/advanced-cache.php and wp-content/wp-cache-config.php
    10. \n
    11. Remove the directory wp-content/cache/
    12. \n
    13. Remove the directory wp-super-cache from your plugins directory.
    14. \n
    \n

    If all else fails and your site is broken

    \n
      \n
    1. Remove the WP_CACHE define from wp-config.php. It looks like define( ''WP_CACHE'', true );
    2. \n
    3. Remove the rules (see above) that the plugin wrote to the .htaccess file in your root directory.
    4. \n
    5. Delete the wp-super-cache folder in the plugins folder.
    6. \n
    7. Optionally delete advanced-cache.php, wp-cache-config.php and the cache folder in wp-content/.
    8. \n
    \n"}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/wp-super-cache.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/wp-super-cache.0.5.zip", "0.7": "https://downloads.wordpress.org/plugin/wp-super-cache.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.zip", "0.9": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.zip", "1.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.zip", "1.8": "https://downloads.wordpress.org/plugin/wp-super-cache.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/wp-super-cache.1.9.zip", "0.3.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.3.1.zip", "0.5.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.5.1.zip", "0.5.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.5.2.zip", "0.5.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.5.3.zip", "0.6.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.2.zip", "0.6.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.3.zip", "0.6.4": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.4.zip", "0.6.5": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.5.zip", "0.6.6": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.6.zip", "0.6.7": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.7.zip", "0.6.8": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.8.zip", "0.7.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.7.1.zip", "0.8.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.1.zip", "0.8.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.2.zip", "0.8.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.3.zip", "0.8.4": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.4.zip", "0.8.5": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.5.zip", "0.8.6": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.6.zip", "0.8.7": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.7.zip", "0.8.8": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.8.zip", "0.8.9": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.9.zip", "0.9.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.6.zip", "0.9.7": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.7.zip", "0.9.8": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.8.zip", "0.9.9": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.zip", "1.0.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.0.1.zip", "1.1.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.1.1.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.2.1.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.3.3.zip", "1.4.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.9.zip", "1.9.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.9.4.zip", "2.0.0": "https://downloads.wordpress.org/plugin/wp-super-cache.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/wp-super-cache.2.0.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/wp-super-cache.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/wp-super-cache.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/wp-super-cache.3.0.2.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-super-cache.zip", "1.10.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.10.0.zip", "1.11.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.11.0.zip", "1.12.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.12.2.zip", "1.12.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.12.3.zip", "1.12.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.12.4.zip", "0.9.3.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.3.1.zip", "0.9.4.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.4.1.zip", "0.9.4.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.4.2.zip", "0.9.4.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.4.3.zip", "0.9.6.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.6.1.zip", "0.9.9.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.1.zip", "0.9.9.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.2.zip", "0.9.9.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.3.zip", "0.9.9.4": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.4.zip", "0.9.9.5": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.5.zip", "0.9.9.6": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.6.zip", "0.9.9.7": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.7.zip", "0.9.9.8": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.8.zip", "0.9.9.9": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.9.zip", "1.5.7.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.7.1.zip"}, "downloaded": 60394201, "description": "

    This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.

    \n

    The static html files will be served to the vast majority of your users:

    \n
      \n
    • Users who are not logged in.
    • \n
    • Users who have not left a comment on your blog.
    • \n
    • Or users who have not viewed a password protected post.
    • \n
    \n

    99% of your visitors will be served static html files. One cached file can be served thousands of times. Other visitors will be served custom cached files tailored to their visit. If they are logged in, or have left comments those details will be displayed and cached for them.

    \n

    The plugin serves cached files in 3 ways (ranked by speed):

    \n
      \n
    1. Expert. The fastest method is by using Apache mod_rewrite (or whatever similar module your web server supports) to serve “supercached” static html files. This completely bypasses PHP and is extremely quick. If your server is hit by a deluge of traffic it is more likely to cope as the requests are “lighter”. This does require the Apache mod_rewrite module (which is probably installed if you have custom permalinks) and a modification of your .htaccess file which is risky and may take down your site if modified incorrectly.
    2. \n
    3. Simple. Supercached static files can be served by PHP and this is the recommended way of using the plugin. The plugin will serve a “supercached” file if it exists and it’s almost as fast as the mod_rewrite method. It’s easier to configure as the .htaccess file doesn’t need to be changed. You still need a custom permalink. You can keep portions of your page dynamic in this caching mode.
    4. \n
    5. WP-Cache caching. This is mainly used to cache pages for known users, URLs with parameters and feeds. Known users are logged in users, visitors who leave comments or those who should be shown custom per-user data. It’s the most flexible caching method and slightly slower. WP-Cache caching will also cache visits by unknown users if supercaching is disabled. You can have dynamic parts to your page in this mode too. This mode is always enabled but you can disable caching for known users, URLs with parameters, or feeds separately. Set the constant “DISABLE_SUPERCACHE” to 1 in your wp-config.php if you want to only use WP-Cache caching.
    6. \n
    \n

    If you’re not comfortable with editing PHP files then use simple mode. It’s easy to set up and very fast.

    \n

    Recommended Settings

    \n
      \n
    1. Simple caching.
    2. \n
    3. Compress pages.
    4. \n
    5. Don’t cache pages for known users.
    6. \n
    7. Cache rebuild.
    8. \n
    9. CDN support.
    10. \n
    11. Extra homepage checks.
    12. \n
    \n

    Garbage collection is the act of cleaning up cache files that are out of date and stale. There’s no correct value for the expiry time but a good starting point is 1800 seconds.

    \n

    Consider deleting the contents of the “Rejected User Agents” text box and allow search engines to cache files for you.

    \n

    Preload as many posts as you can and enable “Preload Mode”. Garbage collection of old cached files will be disabled. If you don’t care about sidebar widgets updating often set the preload interval to 2880 minutes (2 days) so all your posts aren’t recached very often. When the preload occurs the cache files for the post being refreshed is deleted and then regenerated. Afterwards a garbage collection of all old files is performed to clean out stale cache files.
    \nEven with preload mode enabled cached files will still be deleted when posts are modified or comments made.

    \n

    Development

    \n
      \n
    • Active development of this plugin is handled on GitHub.
    • \n
    • Translation of the plugin into different languages is on the translation page.
    • \n
    \n

    Documentation

    \n

    If you need more information than the following, you can have a look at the wiki or the Developer documentation.

    \n

    Preloading

    \n

    You can generate cached files for the posts, categories and tags of your site by preloading. Preloading will visit each page of your site generating a cached page as it goes along, just like any other visitor to the site. Due to the sequential nature of this function, it can take some time to preload a complete site if there are many posts.
    \nTo make preloading more effective it can be useful to disable garbage collection so that older cache files are not deleted. This is done by enabling “Preload Mode” in the settings. Be aware however, that pages will go out of date eventually but that updates by submitting comments or editing posts will clear portions of the cache.

    \n

    Garbage Collection

    \n

    Your cache directory fills up over time, which takes up space on your server. If space is limited or billed by capacity, or if you worry that the cached pages of your site will go stale then garbage collection has to be done. Garbage collection happens on a regular basis and deletes old files in the cache directory. On the advanced settings page you can specify:
    \n1. Cache timeout. How long cache files are considered fresh for. After this time they are stale and can be deleted.
    \n2. Scheduler. Setup how often garbage collection should be done.
    \n3. Notification emails. You can be informed on garbage collection job progress.
    \nThere’s no right or wrong settings for garbage collection. It depends on your own site.
    \nIf your site gets regular updates, or comments then set the timeout to 1800 seconds, and set the timer to 600 seconds.
    \nIf your site is mostly static you can disable garbage collection by entering 0 as the timeout, or use a really large timeout value.

    \n

    The cache directory, usually wp-content/cache/ is only for temporary files. Do not ever put important files or symlinks to important files or directories in that directory. They will be deleted if the plugin has write access to them.

    \n

    CDN

    \n

    A Content Delivery Network (CDN) is usually a network of computers situated around the world that will serve the content of your website faster by using servers close to you. Static files like images, Javascript and CSS files can be served through these networks to speed up how fast your site loads. You can also create a “poor man’s CDN” by using a sub domain of your domain to serve static files too.

    \n

    OSSDL CDN off-linker has been integrated into WP Super Cache to provide basic CDN support. It works by rewriting the URLs of files (excluding .php files) in wp-content and wp-includes on your server so they point at a different hostname. Many CDNs support origin pull. This means the CDN will download the file automatically from your server when it’s first requested, and will continue to serve it for a configurable length of time before downloading it again from your server.

    \n

    Configure this on the “CDN” tab of the plugin settings page. This is an advanced technique and requires a basic understanding of how your webserver or CDNs work. Please be sure to clear the file cache after you configure the CDN.

    \n

    REST API

    \n

    There are now REST API endpoints for accessing the settings of this plugin. You’ll need to be authenticated as an admin user with permission to view the settings page to use it. This has not been documented yet but you can find all the code that deals with this in the “rest” directory.

    \n

    Custom Caching

    \n

    It is now possible to hook into the caching process using the add_cacheaction() function.

    \n

    Three hooks are available:

    \n
      \n
    1. ‘wp_cache_get_cookies_values’ – modify the key used by WP Cache.
    2. \n
    3. ‘add_cacheaction’ – runs in phase2. Allows a plugin to add WordPress hooks.
    4. \n
    5. ‘cache_admin_page’ – runs in the admin page. Use it to modify that page, perhaps by adding new configuration options.
    6. \n
    \n

    There is one regular WordPress filter too. Use the “do_createsupercache” filter
    \nto customize the checks made before caching. The filter accepts one parameter.
    \nThe output of WP-Cache’s wp_cache_get_cookies_values() function.

    \n

    WP Super Cache has its own plugin system. This code is loaded when WP Super Cache loads and can be used to change how caching is done. This is before most of WordPress loads so some functionality will not be available. Plugins can be located anywhere that PHP can load them. Add your own plugin either:

    \n
      \n
    • by putting your plugin in the wp-content/plugins/wp-super-cache-plugins directory, or
    • \n
    • by calling wpsc_add_plugin( $name ) where $name is the full filename and path to the plugin. You only need to call that function once to add it. Use wpsc_delete_plugin( $name ) to remove it from the list of loaded plugins.
    • \n
    \n

    The cookies WP Super Cache uses to identify “known users” can be modified now by adding the names of those cookies to a list in the plugin configuration. Use wpsc_add_cookie( $name ) to add a new cookie, and wpsc_delete_cookie( $name ) to remove it. The cookie names also modify the mod_rewrite rules used by the plugin but I recommend using Simple mode caching to avoid complications with updating the .htaccess file.
    \nThe cookie name and value are used to differenciate users so you can have one cookie, but different values for each type of user on your site for example. They’ll be served different cache files.

    \n

    See plugins/searchengine.php as an example I use for my No Adverts for Friends plugin.

    \n

    Troubleshooting

    \n

    If things don’t work when you installed the plugin here are a few things to check:

    \n
      \n
    1. Is wp-content writable by the web server?
    2. \n
    3. Is there a wp-content/wp-cache-config.php ? If not, copy the file wp-super-cache/wp-cache-config-sample.php to wp-content/wp-cache-config.php and make sure WPCACHEHOME points at the right place.
    4. \n
    5. Is there a wp-content/advanced-cache.php ? If not, then you must copy wp-super-cache/advanced-cache.php into wp-content/. You must edit the file and change the path so it points at the wp-super-cache folder.
    6. \n
    7. If pages are not cached at all, remove wp-content/advanced-cache.php and recreate it, following the advice above.
    8. \n
    9. \n

      Make sure the following line is in wp-config.php and it is ABOVE the “require_once(ABSPATH.’wp-settings.php’);” line:

      \n
      define( ''WP_CACHE'', true );\n
      \n
    10. \n
    11. Try the Settings->WP Super Cache page again and enable cache.
    12. \n
    13. Look in wp-content/cache/supercache/. Are there directories and files there?
    14. \n
    15. Anything in your php error_log?
    16. \n
    17. If your browser keeps asking you to save the file after the super cache is installed you must disable Super Cache compression. Go to the Settings->WP Super Cache page and disable it there.
    18. \n
    19. The plugin does not work very well when PHP’s safe mode is active. This must be disabled by your administrator.
    20. \n
    21. If pages are randomly super cached and sometimes not, your blog can probably be viewed with and without the “www” prefix on the URL. You should choose one way and install the Enforce www preference plugin if you are using an old WordPress install. The latest versions redirect themselves (you should always be running the latest version of WordPress anyway!)
    22. \n
    23. Private Server users at Dreamhost should edit wp-content/wp-cache-config.php and set the cache dir to “/tmp/” if they are getting errors about increasing CPU usage. See this discussion for more.
    24. \n
    25. File locking errors such as “failed to acquire key 0x152b: Permission denied in…” or “Page not cached by WP Super Cache. Could not get mutex lock.” are a sign that you may have to use file locking. Edit wp-content/wp-cache-config.php and uncomment “$use_flock = true” or set $sem_id to a different value. You can also disable file locking from the Admin screen as a last resort.
    26. \n
    27. Make sure cache/wp_cache_mutex.lock is writable by the web server if using coarse file locking.
    28. \n
    29. The cache folder cannot be put on an NFS or Samba or NAS share. It has to be on a local disk. File locking and deleting expired files will not work properly unless the cache folder is on the local machine.
    30. \n
    31. \n

      Garbage collection of old cache files won’t work if WordPress can’t find wp-cron.php. If your hostname resolves to 127.0.0.1 it could be preventing the garbage collection from working. Check your access_logs for wp-cron.php entries. Do they return a 404 (file not found) or 200 code? If it’s 404 or you don’t see wp-cron.php anywhere WordPress may be looking for that script in the wrong place. You should speak to your server administator to correct this or edit /etc/hosts on Unix servers and remove the following line. Your hostname must resolve to the external IP address other servers on the network/Internet use. See http://yoast.com/wp-cron-issues/ for more. A line like “127.0.0.1 localhost localhost.localdomain” is ok.

      \n
      127.0.0.1 example.com\n
      \n
    32. \n
    33. If old pages are being served to your visitors via the supercache, you may be missing Apache modules (or their equivalents if you don’t use Apache). 3 modules are required: mod_mime, mod_headers and mod_expires. The last two are especially important for making sure browsers load new versions of existing pages on your site.
    34. \n
    35. The error message, “WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed!” appears at the end of every page. Open the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? This file will normally be in wp-content/plugins/wp-super-cache/. If it is not correct the caching engine will not load.
    36. \n
    37. Caching doesn’t work. The timestamp on my blog keeps changing when I reload. Check that the path in your .htaccess rules matches where the supercache directory is. You may have to hardcode it. Try disabling supercache mode.
    38. \n
    39. \n

      If supercache cache files are generated but not served, check the permissions on all your wp-content/cache/supercache folders (and each of wp-content cache and supercache folders) and wp-content/cache/.htaccess. If your PHP runs as a different user to Apache and permissions are strict Apache may not be able to read the PHP generated cache files. To fix you must add the following line to your wp-config.php (Add it above the WP_CACHE define.) Then clear your cache.

      \n
      umask( 0022 );\n
      \n
    40. \n
    41. \n

      If you see garbage in your browser after enabling compression in the plugin, compression may already be enabled in your web server. In Apache you must disable mod_deflate, or in PHP zlib compression may be enabled. You can disable that in three ways. If you have root access, edit your php.ini and find the zlib.output_compression setting and make sure it’s “Off” or add this line to your .htaccess:

      \n
      php_flag zlib.output_compression off\n
      \n

      If that doesn’t work, add this line to your wp-config.php:

      \n
      ini_set(''zlib.output_compression'', 0);\n
      \n
    42. \n
    43. The “white screen of death” or a blank page when you visit your site is almost always caused by a PHP error but it may also be caused by APC. Disable that PHP extension if you have trouble and replace with eAccelerator or Xcache.
    44. \n
    45. After uninstalling, your permalinks may break if you remove the WordPress mod_rewrite rules too. Regenerate those rules by visiting the Settings->Permalink page and saving that form again.
    46. \n
    47. If your blog refuses to load make sure your wp-config.php is correct. Are you missing an opening or closing PHP tag?
    48. \n
    49. Your front …
    50. \n
    \n", "donate_link": "", "num_ratings": 1341, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/wp-super-cache/", "contributors": {"donncha": {"avatar": "https://secure.gravatar.com/avatar/bd49e83ad7955a8732fcac194fb035a4cae423f662f6ee2c96f6433c34621291?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/donncha/", "display_name": "Donncha O Caoimh (a11n)"}, "adnan007": {"avatar": "https://secure.gravatar.com/avatar/130557a1b0a4d1c3ede8f4018e88f45724faf744cd1a115870114c0bb23b763d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/adnan007/", "display_name": "Adnan Haque (a11n)"}, "dilirity": {"avatar": "https://secure.gravatar.com/avatar/ea6ff881798bef7600fe76082938efc9a340e57b8991c16c9ee4d54da00d7a1c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dilirity/", "display_name": "Pete (a11n)"}, "pyronaur": {"avatar": "https://secure.gravatar.com/avatar/b47fd1aa0481b56faaddae036ddfd2ebbd9cde742f4cebad406383e44c536fa0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pyronaur/", "display_name": "Nauris"}, "thingalon": {"avatar": "https://secure.gravatar.com/avatar/d4bd1d33834cadecd96bb3e2262deba03d4315588295cd330dbc6d95d6c7c72c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/thingalon/", "display_name": "Mark (a11n)"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "mikemayhem3030": {"avatar": "https://secure.gravatar.com/avatar/8f62b5f0504ec03407527b7256e540bd6eae48d6116ad58b503c54a59cad8f74?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mikemayhem3030/", "display_name": "Mike Stott"}}, "last_updated": "2025-10-10 6:12pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-super-cache.3.0.2.zip", "author_profile": "https://profiles.wordpress.org/automattic/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-ff32-71ab-9161-d10eed8e72cd", "name": "WP Super Cache", "slug": "wp-super-cache", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760119920, "version": "3.0.2"}, "support_threads": 5, "requires_plugins": [], "short_description": "A very fast caching engine for WordPress that produces static html files.", "author_block_count": "6", "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 3}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1fa9-720f-b424-10b42fcd010d', 'did:web:api.aspiredev.org:packages:wp-plugin:wpvivid-backuprestore', 'wpvivid-backuprestore', 'Migration, Backup, Staging – WPvivid Backup & Migration', '

    WPvivid Backup & Migration Plugin offers backup, migration, and staging (create a staging site on a subdirectory to safely test WordPress, plugins, themes and website changes) as basic features.

    -

    WPvivid Backup & Migration for MainWP

    -

    WPvivid Backup & Migration for MainWP is now available to download.
    -WPvivid Backup & Migration for MainWP allows you to set up and control WPvivid Backup & Migration plugins for all child sites directly from your MainWP dashboard.

    -

    WPvivid Backup & Migration Pro is Now Available

    -
      -
    • Customize everything to backup
    • -
    • Create staging sites and push staging sites to live
    • -
    • Incremental backups
    • -
    • Database backup encryption
    • -
    • Auto backup WordPress, themes, and plugins
    • -
    • WordPress multisite backup
    • -
    • WordPress multisite staging
    • -
    • Create a fresh WP install
    • -
    • Advanced remote backups
    • -
    • Advanced backup schedules
    • -
    • Restore remote backups
    • -
    • Migrate a site via remote storage
    • -
    • Migrate a childsite (MU) to a single WordPress install
    • -
    • White label WPvivid Backup & Migration Pro
    • -
    • Control user access to WPvivid Backup & Migration Pro
    • -
    • More amazing features
    • -
    -

    See a review video on WPvivid Backup & Migration Pro:

    -

    -

    Get WPvivid Backup & Migration Pro

    -

    Core Features

    -

    1. Easy Backups

    -

    Easily create a backup of your WordPress site. You can choose to backup the entire site(database+files), all files, or database only.

    -

    2. Auto Migration

    -

    Clone and migrate your WordPress site to a new domain with a single click. WPvivid Backup & Migration Plugin supports site migration from dev environment to a new server, from dev environment to a new domain or from a live server to another.

    -

    3. Create A Staging Site

    -

    Create a staging site on a subdirectory of your production site to safely test WordPress, plugins, themes and website changes. You can choose what to copy from the the live site to the staging site.

    -

    4. Scheduled Backups

    -

    Set a schedule to run backups automatically on your website. You can set the backups to run every 12 hours, daily, weekly, fortnightly, monthly, choose backup items and destination.

    -

    5. Offsite Backup to Remote Storage

    -

    Send your backups offsite to a remote location. WPvivid Backup & Migration Plugin supports the leading cloud storage providers: Dropbox, Google Drive, Amazon S3, Microsoft OneDrive, DigitalOcean Spaces, FTP and SFTP.

    -

    6. One-Click Restore

    -

    Restore your WordPress site from a backup with a single click.

    -

    7. Cloud Storage Supported

    -

    WPvivid Backup & Migration plugin supports Dropbox, Google Drive, Microsoft OneDrive, Amazon S3, DigitalOcean Spaces, SFTP, FTP. WPvivid Backup & Migration Pro also supports Wasabi, pCloud, Backblaze, WebDav and more.

    -

    Minimum Requirements to use WPvivid Backup & Migration plugin

    -
      -
    • Character Encoding UTF-8
    • -
    • PHP version 5.3
    • -
    • MySQL version 4.1
    • -
    • WordPress 4.5
    • -
    -', 'wp', 'wp-plugin', 'GPL', '{"name": "Migration, Backup, Staging – WPvivid Backup & Migration", "slug": "wpvivid-backuprestore", "tags": {"clone": "clone", "backup": "backup", "migrate": "migrate", "staging": "staging", "duplicate": "duplicate"}, "added": "2019-01-04", "icons": {"1x": "https://ps.w.org/wpvivid-backuprestore/assets/icon-128x128.png?rev=2899202", "2x": "https://ps.w.org/wpvivid-backuprestore/assets/icon-256x256.png?rev=2899202"}, "author": "wpvividplugins", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wpvivid-backuprestore/assets/banner-772x250.png?rev=2899202", "high": "https://ps.w.org/wpvivid-backuprestore/assets/banner-1544x500.png?rev=2899202"}, "ratings": {"1": 25, "2": 2, "3": 11, "4": 20, "5": 1277}, "version": "0.9.120", "homepage": "", "requires": "4.5", "sections": {"faq": "\n
    \nWhat does WPvivid Backup & Migration Plugin do?\n\n

    \n

    As the name says, WPvivid Backup & Migration Plugin is an all in one free WP backup & migration plugin that enables you to easily clone and migrate a WordPress site to a new domain, to perform manual backups and schedule automatic backups of your WordPress site, to backup to cloud storage and restore backups directly from your sites admin dashboard.

    \n

    \n
    \nDoes WPvivid Backup & Migration Plugin also migrate my site? Is it a free feature?\n\n

    \n

    Yes, WPvivid Backup & Migration Plugin supports migration of a WordPress site.
    \nYes, the migration feature is completely free.

    \n

    \n
    \nHow many cloud options does WPvivid Backup & Migration Plugin support? Are they free to access?\n\n

    \n

    Out of the box WPvivid Backup & Migration Plugin supports Dropbox, Google Drive, Amazon S3, Microsoft OneDrive, DigitalOcean Spaces, FTP, and SFTP.
    \nYes, all the cloud access is free.

    \n

    \n
    \nCan I use WPvivid Backup & Migration Plugin to restore my site?\n\n

    \n

    Yes, you can use WPvivid Backup & Migration Plugin to restore a WordPress site from a backup. With no limits, no strings attached.

    \n

    \n
    \nDo you provide support for WPvivid Backup & Migration Plugin? Where?\n\n

    \n

    Yes, absolutely. Whenever you need help, start a thread on the support forum for WPvivid Backup & Migration Plugin, or contact us.

    \n

    \n
    \nDo you have any get-started guides/docs?\n\n

    \n

    Yes, we do. Here are the guides for migrating your site to a new host, creating a manual backup, restoring your site from a backup, and more on our docs page.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    rock solid backup/migration tool that has never failed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy modoseyoum on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    i''ve been using WP Vivid so long i can''t remember who first turned me on to it, but after a couple hundred migrations with minimal issues, it''s become my backup/migration tool of choice. like Ashford & Simpson in the eighties, WP Vivid is solid as a rock.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best solution for Website Clone or Migration

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy farrouh on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A real great Plugin, I Highly recommended for backup, Clone or migration

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best migration plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy helena123 on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Came here to add 5 stars while migrating several sites, just because this plugins is so helpful, efficient and works without glitches. Thanks, plugin team, for the amazing product.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Простой и замечательный плагин

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy licos on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Очень простой и понятный интерфейс. Все работает на ура!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Melhor plugin de Backup

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy amydarlley on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Usei por anos um concorrente dele, mas trava muito e vivia dando problema. Esse é excepcional!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin Highly recommended for site backup and migration

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy samtopiano on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is one of the best free plugins out there. highly recommended if you are intending to backup or migrate your site without stress.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The migration process was a bit bumpy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy webtrommel on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This review refers to the free version of the plugin. The migration process was a bit bumpy. I had to perform the restoration manually. I created a backup in my WordPress development environment, uploaded it to the new site, and restored it there. However, WordPress initially couldn’t display some pages: about half worked as expected, while the others were missing, not ideal.
    The solution was to restore the already uploaded backup a second time. After that, everything worked perfectly, but a slightly uneasy feeling remains.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Génial

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dev1313 on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Facile d’utilisation (même pour un créatif), efficace... et en français.
    Que demander de plus ?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Вердикт

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy royal0511 on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Очень хороший и удобный плагин

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Feels very solid, migrated 5GB site no problem

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy altimac on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Definitely one of the best migration plugins out there, and it takes a unique approach with its \"auto-migration\" by creating an archive on the source site first, then pushing that archive to the destination site. Then, on the destination site, the Restore process is used to create the copy of the source site. This seems more efficient and less prone to errors, as it''s super-simple to configure. I have not tried the backup options yet, but since the plugin is already installed on the source site, I''m definitely going to give that a whirl as well.

    \n
    \n
    \n", "changelog": "

    0.9.120

    \n
      \n
    • Successfully tested with PHP 8.4.13.
    • \n
    • Successfully tested with WordPress 6.8.3.
    • \n
    \n

    0.9.119

    \n
      \n
    • Changed backup schedule’s start time to a random time between 00:00:00 and 00:15:00 UTC to prevent possible server overload from the simultaneous backup of many sites.
    • \n
    \n

    0.9.118

    \n
      \n
    • Fixed: Downloading backups could fail on servers where Output Buffering was enabled.
    • \n
    \n

    0.9.117

    \n
      \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed: Pages in some Elementor sites could not be properly migrated.
    • \n
    \n

    0.9.116

    \n
      \n
    • Fixed: Backup to OneDrive might fail in some cases.
    • \n
    • Successfully tested with WordPress 6.8.1.
    • \n
    \n

    0.9.115

    \n
      \n
    • Successfully tested with WordPress 6.8.
    • \n
    \n

    0.9.114

    \n
      \n
    • Fixed: Restore could fail when restoring from a lower WordPress version in some cases.
    • \n
    • Fixed: Adding SFTP storage could fail in PHP 8.4 environment.
    • \n
    • Optimized the plugin UI.
    • \n
    \n

    0.9.113

    \n
      \n
    • Added 4 backup performance modes for different scenarios.
    • \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Successfully tested with WordPress 6.7.2.
    • \n
    \n

    0.9.112

    \n
      \n
    • Fixed: Backup status could not be properly caught on LocalWP sites with Nginx server.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.111

    \n
      \n
    • Fixed: Backups to SFTP would fail on sites of PHP 8.2.26-nmm1 and 8.3.14-nmm1.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.110

    \n
      \n
    • Added an option to include symlink folders in a backup.
    • \n
    • Fixed: Could not connect to SFTP on sites of PHP 8.2.26 and 8.3.14.
    • \n
    • Fixed: Quick Snapshot popup would appear upon each page loading.
    • \n
    • Successfully tested with WordPress 6.7.1.
    • \n
    \n

    0.9.109

    \n
      \n
    • Fixed a warning that would appear with WordPress 6.7.0.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.7.0.
    • \n
    \n

    0.9.108

    \n
      \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed: WP Cerber plugin was excluded from a backup by default.
    • \n
    \n

    0.9.107

    \n
      \n
    • Fixed: Backups to GoogleDrive could fail with an error of ‘Will not follow more than 5 redirects’ in some environments.
    • \n
    • Fixed some PHP warnings of ‘Return type of WPvivid_Google_Collection’ that would appear in some environments.
    • \n
    • Fixed a vulnerability in the plugin code.
    • \n
    \n

    0.9.106

    \n
      \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed: Could not send email report when the address contain ‘-‘.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.105

    \n
      \n
    • Fixed: Uploading backups to OneDrive failed with a 401 error in some environments.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.104

    \n
      \n
    • Updated: Autoload of WPvivid options is set to ‘No’ by default.
    • \n
    • Fixed: Downloading backup files could fail in some environments.
    • \n
    • Fixed: Uploading backups to GoogleDrive could fail in some environments.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.103

    \n
      \n
    • Fixed: Restore would fail when a backup contained mu-plugins/wp-stack-cache.php.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Refined and optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.6.
    • \n
    \n

    0.9.102

    \n
      \n
    • Added: Cloud storage tokens are now encrypted in the database.
    • \n
    • Added: lotties folder (if any) will be included in backups by default.
    • \n
    • Fixed: Domain could not be replaced during migration in some cases.
    • \n
    • Fixed: Adding Digital Ocean Space would fail in some cases.
    • \n
    • Fixed: Images added via ACF plugin would be scanned as unused.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.101

    \n
      \n
    • Fixed: Retention settings did not work for scheduled backups.
    • \n
    • Fixed: Scanning unused images would fail in some cases.
    • \n
    \n

    0.9.100

    \n
      \n
    • Added a column to the backup list to show the backup size.
    • \n
    • Fixed: URLs could not be replaced during migration in some cases.
    • \n
    • Fixed: Adding SFTP remote storage could fail in some cases.
    • \n
    • Fixed a vulnerability in the plugin code.
    • \n
    \n

    0.9.99

    \n
      \n
    • Fixed: Scheduled database backups could fail in some cases.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.5.
    • \n
    \n

    0.9.98

    \n
      \n
    • Fixed: Backups to OneDrive failed in some environments.
    • \n
    • Fixed some PHP warnings.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.97

    \n
      \n
    • Fixed some vulnerable code and optimized the plugin code.
    • \n
    • Fixed: The option ‘Keep backups in local after uploading them to cloud’ could not take effect.
    • \n
    • Successfully tested with WordPress 6.4.3.
    • \n
    \n

    0.9.96

    \n
      \n
    • Fixed: Restore could fail when max_allowe_packet of the server is low.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.4.3.
    • \n
    \n

    0.9.95

    \n
      \n
    • Fixed: Backup to SFTP would fail in some environments.
    • \n
    • Fixed: Backup to Google Drive would fail in some environments.
    • \n
    • Fixed: Creating a staging site would fail in some cases.
    • \n
    • Fixed: Some special characters would not display properly after website migration.
    • \n
    • Fixed some vulnerabilities in the plugin code.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.94

    \n
      \n
    • Fixed: Prefix of tables with foreign keys would not be replaced in a migration process.
    • \n
    • Fixed: Corrupted backups would not be detected in some environments.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.93

    \n
      \n
    • Added support for migration of sites without a database prefix.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.92

    \n
      \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.91

    \n
      \n
    • Fixed: Error logs would not be attached to backup email reports.
    • \n
    • Fixed: Uploading backups to OneDrive would fail in some environments.
    • \n
    • Fixed a compatibility issue with JetBackup plugin.
    • \n
    • Fixed some vulnerabilities in the plugin code.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.90

    \n
      \n
    • Successfully tested with WordPress 6.3.
    • \n
    • Fixed: restore would fail when a backup contained zero dates ‘0000-00-00’.
    • \n
    • Fixed: Customized site icons and logos would be falsely scanned as unused.
    • \n
    • Added an option to exclude folders from unused image scan.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.89

    \n
      \n
    • Excluded backup-migration and backups-dup-lite from a backup.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.88

    \n
      \n
    • Fixed: Database restoration would fail in some environments.
    • \n
    • Fixed: Staging creation would fail when the database contained the aiowps_debug_log table.
    • \n
    • Fixed a library conflict with the Skaut Google Drive Gallery plugin.
    • \n
    • Fixed some PHP warnings that appeared on sites with newer PHP versions.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.87

    \n
      \n
    • Fixed: Uploading backups to GoogleDrive failed because of an ‘invalid credential’ error in some cases.
    • \n
    • Fixed: Backup email report did not display properly in Outlook emails.
    • \n
    • Fixed some PHP warnings that appeared on sites with newer PHP versions.
    • \n
    • Fixed: Non admin users could see the plugin menus in the top admin bar.
    • \n
    • Fixed: Locked backups would not be deleted by backup retention.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.86

    \n
      \n
    • Fixed a library conflict with the ElementsKit plugin.
    • \n
    • Fixed a library conflict with the YaySMTP plugin.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.85

    \n
      \n
    • Added breakpoint resume for GoogleDrive, OneDrive and Dropbox upload.
    • \n
    • Optimized the process of uploading backups to cloud storage.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.84

    \n
      \n
    • Upgraded the version of guzzlehttp/psr7 library in the plugin to 1.8.4.
    • \n
    • Fixed a bug of false positive backup failed email notifications.
    • \n
    • Fixed: Backup to Dropbox failed in some environments.
    • \n
    • Fixed a PHP warning of ‘WPvivid_S3Request’.
    • \n
    • Fixed: some used images were falsely scanned as unused.
    • \n
    • Fixed some UI bugs.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.83

    \n
      \n
    • Upgraded the backup and restore engine to improve the backup and restore success rate.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Fixed some UI bugs.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.82

    \n
      \n
    • Fixed: Backup failed when php_uname is disabled on the server.
    • \n
    • Fixed: ‘Quick Snapshot’ did not work on non-wpvivid pages.
    • \n
    • Fixed some PHP warnings on PHP 8.2 sites.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.81

    \n
      \n
    • Fixed the compatibility issue with servers that have phpinfo() function disabled.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.80

    \n
      \n
    • Optimized backup process on Litespeed web server.
    • \n
    • Staging error logs were not included in the Debug zip.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.1.1.
    • \n
    \n

    0.9.79

    \n
      \n
    • Fixed: All target pages except for home page showed 404 error in some cases after migration.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.1.
    • \n
    \n

    0.9.78

    \n
      \n
    • Added an option to create quick database snapshots.
    • \n
    • Added a check for siteurl and home in a restore process.
    • \n
    • Fixed: Some used images were falsely scanned as unused.
    • \n
    • Fixed some bugs in the plugin code and optimized the plugin code.
    • \n
    \n

    0.9.77

    \n
      \n
    • Updated: Transferred files will be deleted automatically when auto migration fails.
    • \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.76

    \n
      \n
    • Added a check to the integrity of uploaded backups.
    • \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.75

    \n
      \n
    • Fixed: Page styling got lost after importing the page in some cases.
    • \n
    • Fixed: Some used images were falsely scanned as unused.
    • \n
    • Fixed some UI bugs.
    • \n
    • Fixed some bugs in the plugin code and optimized the plugin code.
    • \n
    \n

    0.9.74

    \n
      \n
    • Fixed some i18n issues in the plugin code.
    • \n
    • Updated: Last backup time will be updated once the backup schedule is triggered.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.73

    \n
      \n
    • Fixed some bugs in the plugin code and UI.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.0.
    • \n
    \n

    0.9.72

    \n
      \n
    • Improved the upload function. Now when uploading a zip(part) failed, you will be notified immediately, and you can continue to upload the problematic zip rather than uploading all zips again.
    • \n
    • Added: Cloud storage credentials in the database are encrypted now.
    • \n
    • Changed: Cloud storage credentials are not showing in the storage edit page.
    • \n
    • Fixed: Selected themes were not copied when creating a fresh install in some cases.
    • \n
    • Fixed the wpvivid_request error that could appear in some cases when scanning unused images.
    • \n
    • Fixed: some used images were falsely scanned as unused.
    • \n
    • Optimized the plugin code to reduce server consumption.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.71

    \n
      \n
    • Fixed the warning: Undefined array key “page” when editing pages in some cases.
    • \n
    • Fixed: Creating a fresh install failed when Elementor plugin is enabled.
    • \n
    • Fixed some vulnerabilities in the plugin code.
    • \n
    • Fixed some UI bugs.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.70

    \n
      \n
    • Fixed: There was no notification after restoration in some environments.
    • \n
    • Fixed some vulnerabilities in the plugin code.
    • \n
    • Fixed: Backup information of live site would be copied to the staging site when creating a staging site.
    • \n
    • Changed staging site creation time to local time.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Successfully tested with WordPress 5.9.2.
    • \n
    \n

    0.9.69

    \n
      \n
    • Updated: For security reasons, adding Google Drive, Dropbox, OneDrive now needs to get authentication first.
    • \n
    • Updated: Changed time in a log file to local time.
    • \n
    • Fixed the curl 60 error that could appear when backing up to Google Drive in some cases.
    • \n
    • Fixed: Disabling backup splitting did not take effect on PHP 8 sites.
    • \n
    • Fixed: Uploading backups to Dropbox failed in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.68

    \n
      \n
    • Fixed: Failed to upload backups to Dropbox in some cases.
    • \n
    • Updated: Changed timezone in email report title to local time.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.67

    \n
      \n
    • Fixed: The object-cache.php file and protection files generated by Wordfence were not excluded during restore.
    • \n
    • Fixed: Some used images were falsely identified as unused.
    • \n
    • Added creation time for a staging site.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.66

    \n
      \n
    • Fixed a Dropbox folder bug.
    • \n
    • Fixed a conflict between the unused image cleaner and some themes.
    • \n
    • Fixed a problem that some used images in Elementor were identified as unused.
    • \n
    • Fixed: Downloading backup would failed in some cases.
    • \n
    • Added a check to Nginx server when creating a staging site.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.65

    \n
      \n
    • Fixed: Some WPvivid Backup Plugin settings were reset to default after restore.
    • \n
    • Fixed: Some urls could not be replaced because of escape format problems after restore.
    • \n
    • Fixed: Unused image could not be scanned in PHP 8.
    • \n
    • Fixed: Staging site admin url did not display correctly when the live site has a ‘custom login url’.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.64

    \n
      \n
    • Fixed: Failed to refresh Dropbox token in some cases.
    • \n
    • Fixed: Custom menu style could not be properly migrated in some cases.
    • \n
    • Optimized the process of creating a staging site.
    • \n
    • Added an option to resume the task of creating a staging site when it was interrupted.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.63

    \n
      \n
    • Added support for Dropbox’s new API.
    • \n
    • Fixed: some images used in Elementor would be scanned as ‘unused’.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.62

    \n
      \n
    • Added a check to the permissions of the staging folder before creating a staging site.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 5.8.1.
    • \n
    \n

    0.9.61

    \n
      \n
    • Added support for migration of unconventional save of the media paths.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.60

    \n
      \n
    • Fixed: Failed to back up files of 0 KB in PHP 8 environment.
    • \n
    • Changed: The information of backup folder name will not be included when you export the plugin settings.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.59

    \n
      \n
    • Fixed the PHP Guzzle library support compatibility issue which could cause backup failure in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.58

    \n
      \n
    • Fixed a fatal error with the last update.
    • \n
    \n

    0.9.57

    \n
      \n
    • Added a new feature of creating a staging site.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.56

    \n
      \n
    • Fixed: Some used images would show up in the image cleaner results in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.55

    \n
      \n
    • Successfully tested with WordPress 5.8.
    • \n
    • Fixed: Creating tables failed when restoring the database in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.54

    \n
      \n
    • Added support for PHP 8.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.53

    \n
      \n
    • Fixed a SQL injection vulnerability.
    • \n
    • Fixed some bugs in the plugin code and optimized the plugin code.
    • \n
    \n

    0.9.52

    \n
      \n
    • Fixed a fatal error occurred during website transfer in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.51

    \n
      \n
    • Added: Once a backup is created, the plugin will check whether the zip is good and will prompt you if it is corrupted.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Successfully tested with WordPress 5.7.
    • \n
    \n

    0.9.50

    \n
      \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 5.6.1.
    • \n
    \n

    0.9.49

    \n
      \n
    • Fixed: A 404 error would returned when sending a request to wp-cron.php in some multilingual websites.
    • \n
    • Fixed: Could not turn pages in the backup list.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.48

    \n
      \n
    • Redesigned the Download section for better UX.
    • \n
    • Fixed the insufficient permission error that occurred when authenticating FTP in some cases.
    • \n
    • Fixed the incorrect credential error that occurred when authenticating SFTP in some cases.
    • \n
    • Successfully tested with WordPress 5.6.
    • \n
    \n

    0.9.47

    \n
      \n
    • Added support for Amazon S3 South Africa region.
    • \n
    • Fixed: Folder would not be backed up when it’s name matches regex: ^uploads.*$.
    • \n
    • Successfully tested with WordPress 5.5.3.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.46

    \n
      \n
    • Fixed: Some special characters in database could not be restored properly.
    • \n
    • Fixed: Only 1000 backups stored on Amazon S3 could be displayed.
    • \n
    • Fixed: Unused image cleaner also isolated images used in CSS files.
    • \n
    • Successfully tested with WordPress 5.5.1.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.45

    \n
      \n
    • New feature Added: Find and clean unused images in your WP media library.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.44

    \n
      \n
    • Successfully tested with WordPress 5.5.
    • \n
    • Fixed: Refreshing Google Drive token failed in some cases.
    • \n
    \n

    0.9.43

    \n
      \n
    • Optimized migration process.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.42

    \n
      \n
    • Added Bulgarian language translation.
    • \n
    • Fixed a fatal error occurred during website transfer in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.41

    \n
      \n
    • Added an option in the plugin settings to delete the WPvivid directory when deleting the plugin.
    • \n
    • Added Italian language translation.
    • \n
    • Optimized the plugin UI.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.40

    \n
      \n
    • Fixed: Backup schedules failed in some cases.
    • \n
    • Excluded the session_mm_cgi-fcgi file when creating a backup.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.39

    \n
      \n
    • Excluded the /wphb-cache directory when creating a backup.
    • \n
    • Fixed: Root directory is now forbidden to set to ‘/’ when connecting to a FTP server.
    • \n
    • Fixed the pagination issue in the process of exporting pages.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.38

    \n
      \n
    • Successfully tested with WordPress 5.4.
    • \n
    • Added a new language template for translators.
    • \n
    \n

    0.9.37

    \n
      \n
    • Changed the time in the name of the backup zip to the sites local time.
    • \n
    • Changed the time showed in the backup list and log list to the sites local time.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.36

    \n
      \n
    • Added an option to overwrite existing pages in an import.
    • \n
    • Fixed: Could not retrieve posts list on a multilingual site in an export.
    • \n
    • Fixed some bugs in the plugin code and optimized the plugin code.
    • \n
    \n

    0.9.35

    \n
      \n
    • Fixed a bug occurred when connecting with remote storage in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin UI.
    • \n
    \n

    0.9.34

    \n
      \n
    • Fixed the PHP 7.4 compatibility issue.
    • \n
    • Fixed: Backing up upload directory failed in some cases.
    • \n
    • Fixed: Backup filenames did not match the downloads part numbers.
    • \n
    • Updated the API for WPvivid Backup for MainWP extension.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.33

    \n
      \n
    • Fixed:Replacing domain failed after migrating on servers using innodb database engine.
    • \n
    • Fixed: Compressed packages were lost in some cases.
    • \n
    • Added a column to the backup list to display backup content type.
    • \n
    • Temporarily removed translation files.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.32

    \n
      \n
    • Updated the plugin code for WPvivid Backup for MainWP extension.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.31

    \n
      \n
    • Successfully tested with WordPress 5.3.2.
    • \n
    • Fixed: Backup could fail when the split file size was set to 0 MB in the shared hosting optimization mode.
    • \n
    • Fixed some small bugs in the plugin code.
    • \n
    • Optimized the process of restoring large amounts of data.
    • \n
    • Optimized the split backup file size to bring it closer to the value you set.
    • \n
    • Added Japanese language translation.
    • \n
    \n

    0.9.30

    \n
      \n
    • Added an option to select database accessing method for a backup or restore process.
    • \n
    • Optimized plugin code and set the autoload attribute to no.
    • \n
    • Improved the success rate of backing up the uploads folder when the optimization mode for web hosting/shared hosting is enabled.
    • \n
    • Fixed some bugs in plugin code.
    • \n
    \n

    0.9.29

    \n
      \n
    • Successfully tested with WordPress 5.3.
    • \n
    • Fixed: Locked backups were deleted automatically.
    • \n
    • Changed: Backups will now be split every 200MB by default.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.28

    \n
      \n
    • New feature Added: Export and import posts or pages with images in bulk.
    • \n
    • Fixed: URL replacement failures after website migration in some cases.
    • \n
    • Fixed: Too many resumption attempts error that occurred when uploading backups in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.27

    \n
      \n
    • Fixed a fatal error that could be triggered by some firewall or security plugins.
    • \n
    • Refined and simplified the plugin menu in admin menu and top admin bar.
    • \n
    • Optimized the plugin code.
    • \n
    • Added Polish language translation.
    • \n
    \n

    0.9.26

    \n
      \n
    • Optimized the plugin’s UI.
    • \n
    • Added a new tab for downloading WPvivid Backup for MainWP.
    • \n
    \n

    0.9.25

    \n
      \n
    • Fixed: Could not restore websites in some cases.
    • \n
    • Fixed: The setting of PHP version that had been changed in .htaccess was lost after restoration.
    • \n
    • Added an option to merge all backup files into a package when a backup completes. This can increase backup and migration success rate in a website with insufficient server resources.
    • \n
    • Upgraded: Amazon S3 and DigitalOcean Space have upgraded their connection methods, so you will need to delete the previous connections and re-add your Amazon S3/DigtalOcean Space accounts to make sure the connections work.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.24

    \n
      \n
    • Fixed some bugs in the plugin code.
    • \n
    • Fixed: Could not restore files to proper directories if one had customized the sites file structure.
    • \n
    • Fixed: The page could not properly display when one chose Remote Storage option from the admin sidebar menu.
    • \n
    • Optimized backup process, now it saves more disk space.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.23

    \n
      \n
    • Added an option to hide the plugin menu on the top admin bar.
    • \n
    • Fixed: Always sent email notifications even the Only send an email notification when a backup fails option was selected.
    • \n
    • Fixed: The plugin menu on the top admin bar is visible to all users.
    • \n
    • Refined some error messages.
    • \n
    \n

    0.9.22

    \n
      \n
    • Fixed: Backup created in web hosting/shared hosting optimization mode was incomplete in some cases.
    • \n
    • Fixed: Backup actually failed but was reported as a success in some cases.
    • \n
    • Refined error messages of migration process.
    • \n
    • Added a notice to the situation where backup schedules were unusable because the WP Cron on the server was disabled.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.21

    \n
      \n
    • Fixed: Special data in some database tables could not be replaced during a restore, which would cause failure of the restore.
    • \n
    • Fixed: Migration between sites that have different backup storage directories would fail.
    • \n
    • Fixed: The error establishing database connection occurred in some cases while loading the plugin page.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.20

    \n
      \n
    • Added an advanced section in settings page.
    • \n
    • Optimized the layout of settings page and display of some settings.
    • \n
    • Added an option of enabling optimization mode for web hosting/shared hosting in advanced settings.
    • \n
    • Added a memory_limit option in advanced settings.
    • \n
    • Added a chunk size option in advanced settings.
    • \n
    • Added an option to cancel a running migration.
    • \n
    • Provided the WPDB as the interface with the database for the sites missing PDO_MYSQL.
    • \n
    • Fixed a timeout error occurred in some cases during backup process.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.19

    \n
      \n
    • Added a php memory limit option to settings, you can use it to temporarily increase php memory limit when encountering a memory exhausted error in backup process.
    • \n
    • Fixed: Backup does not exist error that occurred in some cases when downloading the backup to local.
    • \n
    • Fixed: Backup error that occurred when the wp-content/plugins folder on a web server was moved or renamed.
    • \n
    • Fixed: Restore error that occurred in some cases when restoring a backup to a different domain.
    • \n
    • Enhanced the clean backup cache option in settings.
    • \n
    • Optimized backup process.
    • \n
    \n

    0.9.18

    \n
      \n
    • Optimized migration process, improved compatibility for migration. Old keys will be expired after you update to the new version.
    • \n
    • Added an option to retry the backup operation when encountering a timeout error.
    • \n
    • Added an option to hide settings in admin menu.
    • \n
    • Changed the plugin icon showing in admin menu.
    • \n
    • Included more info in the error log when sending to support.
    • \n
    • Improved compatibility with some hosting like GoDaddy.
    • \n
    • Optimized the cache directory in backup process.
    • \n
    • Fixed errors occurred in some cases during the authentication process with Google Drive, Dropbox, Microsoft OneDrive.
    • \n
    • Optimized plugin code.
    • \n
    \n

    0.9.17

    \n
      \n
    • Added a sole tab for backup schedules.
    • \n
    • Refined descriptions in the UI.
    • \n
    • Fixed a few UI bugs.
    • \n
    • Successfully tested with WordPress 5.2.
    • \n
    \n

    0.9.16

    \n
      \n
    • Fixed a fatal error occurred during website transfer.
    • \n
    \n

    0.9.15

    \n
      \n
    • Fixed: Scheduled backups failed to run as configured after the last update.
    • \n
    • Improved the Restore UI.
    • \n
    • Refined some descriptions in the UI.
    • \n
    \n

    0.9.14

    \n
      \n
    • Added free website transfer feature. We highly recommend all our users to update.
    • \n
    • Added backup upload feature. Now you can upload a backup to restore or transfer.
    • \n
    \n

    0.9.13

    \n
      \n
    • Fixed: Sometimes could not correctly determine database privileges when backing up.
    • \n
    \n

    0.9.12

    \n
      \n
    • Added an ‘Send Debug Information to Us’ button in Website Info page.
    • \n
    • Improved the compatibility with PHP v5.3 to v5.5.
    • \n
    • Fixed the compatibility issue with MainWP plugin.
    • \n
    • Fixed: Could not correctly calculate files size when backing up.
    • \n
    • Fixed: Could not back up to SFTP server sometimes.
    • \n
    • Fixed: Database backup failure because of insufficient privileges.
    • \n
    • Enriched backup logs with more details.
    • \n
    • Refined some descriptions on user interface.
    • \n
    • Optimized code of the plugin.
    • \n
    \n

    0.9.11

    \n
      \n
    • Added support for DigitalOcean Spaces.
    • \n
    • Added an HTML email template to backup reports.
    • \n
    \n

    0.9.10

    \n
      \n
    • Fixed: Some icons were missing in UI.
    • \n
    \n

    0.9.9

    \n
      \n
    • Fixed a packaging error which might cause the failure of activating the plugin.
    • \n
    \n

    0.9.8

    \n
      \n
    • Added support for Google Drive, Micosoft OneDrive, Dropbox cloud storage.
    • \n
    • Fixed: Could not restore a backup from cloud storage.
    • \n
    • Optimized code of the plugin.
    • \n
    \n

    0.9.7

    \n
      \n
    • Fixed data type errors caused by the last update. The errors would cause the failure of running of scheduled backup tasks. We highly recommend you upgrade.
    • \n
    • Fixed a bug where the last backup information was not displayed in backup schedule list.
    • \n
    • Changed a few error messages that appear during the backup process.
    • \n
    • Optimized code of the plugin.
    • \n
    \n

    0.9.6

    \n
      \n
    • Optimized code of the plugin.
    • \n
    • A more lightweight Amazon S3 library has been used, so that you do not need to fill in Region field while configuring a S3 storage account.
    • \n
    \n

    0.9.5

    \n
      \n
    • Refined descriptions on user interface.
    • \n
    • Fixed a few UI bugs.
    • \n
    • Fixed a bug where backups were runnable in some cases during the process of a restoration.
    • \n
    \n

    0.9.4

    \n
      \n
    • Added support for responsive design. Now the plugin is compatible with smartphones, tablets and PC.
    • \n
    • Fixed some UI bugs.
    • \n
    \n

    0.9.3

    \n
      \n
    • Fixed some display errors on user interface.
    • \n
    • Fixed a bug where backups could not be completed in exceptional cases.
    • \n
    \n

    0.9.2

    \n
      \n
    • Fixed image path display error.
    • \n
    \n

    0.9.1

    \n
      \n
    • Initial release of the plugin. Now you see it.
    • \n
    \n", "description": "

    WPvivid Backup & Migration Plugin offers backup, migration, and staging (create a staging site on a subdirectory to safely test WordPress, plugins, themes and website changes) as basic features.

    \n

    WPvivid Backup & Migration for MainWP

    \n

    WPvivid Backup & Migration for MainWP is now available to download.
    \nWPvivid Backup & Migration for MainWP allows you to set up and control WPvivid Backup & Migration plugins for all child sites directly from your MainWP dashboard.

    \n

    WPvivid Backup & Migration Pro is Now Available

    \n
      \n
    • Customize everything to backup
    • \n
    • Create staging sites and push staging sites to live
    • \n
    • Incremental backups
    • \n
    • Database backup encryption
    • \n
    • Auto backup WordPress, themes, and plugins
    • \n
    • WordPress multisite backup
    • \n
    • WordPress multisite staging
    • \n
    • Create a fresh WP install
    • \n
    • Advanced remote backups
    • \n
    • Advanced backup schedules
    • \n
    • Restore remote backups
    • \n
    • Migrate a site via remote storage
    • \n
    • Migrate a childsite (MU) to a single WordPress install
    • \n
    • White label WPvivid Backup & Migration Pro
    • \n
    • Control user access to WPvivid Backup & Migration Pro
    • \n
    • More amazing features
    • \n
    \n

    See a review video on WPvivid Backup & Migration Pro:

    \n

    \n

    Get WPvivid Backup & Migration Pro

    \n

    Core Features

    \n

    1. Easy Backups

    \n

    Easily create a backup of your WordPress site. You can choose to backup the entire site(database+files), all files, or database only.

    \n

    2. Auto Migration

    \n

    Clone and migrate your WordPress site to a new domain with a single click. WPvivid Backup & Migration Plugin supports site migration from dev environment to a new server, from dev environment to a new domain or from a live server to another.

    \n

    3. Create A Staging Site

    \n

    Create a staging site on a subdirectory of your production site to safely test WordPress, plugins, themes and website changes. You can choose what to copy from the the live site to the staging site.

    \n

    4. Scheduled Backups

    \n

    Set a schedule to run backups automatically on your website. You can set the backups to run every 12 hours, daily, weekly, fortnightly, monthly, choose backup items and destination.

    \n

    5. Offsite Backup to Remote Storage

    \n

    Send your backups offsite to a remote location. WPvivid Backup & Migration Plugin supports the leading cloud storage providers: Dropbox, Google Drive, Amazon S3, Microsoft OneDrive, DigitalOcean Spaces, FTP and SFTP.

    \n

    6. One-Click Restore

    \n

    Restore your WordPress site from a backup with a single click.

    \n

    7. Cloud Storage Supported

    \n

    WPvivid Backup & Migration plugin supports Dropbox, Google Drive, Microsoft OneDrive, Amazon S3, DigitalOcean Spaces, SFTP, FTP. WPvivid Backup & Migration Pro also supports Wasabi, pCloud, Backblaze, WebDav and more.

    \n

    Minimum Requirements to use WPvivid Backup & Migration plugin

    \n
      \n
    • Character Encoding UTF-8
    • \n
    • PHP version 5.3
    • \n
    • MySQL version 4.1
    • \n
    • WordPress 4.5
    • \n
    \n", "screenshots": "
    1. \"Backing

      Backing up a site

    2. \"Backup

      Backup list

    3. \"WPvivid

      WPvivid Backup & Migration plugin Dashboard

    4. \"Configure

      Configure remote backups

    5. \"Migrate

      Migrate a WordPress site to a new domain

    6. \"Upload

      Upload a backup to restore or migrate

    ", "installation": "

    Install WPvivid Backup & Migration Plugin

    \n

    1.Go to your sites admin dashboard.
    \n2.Navigate to Plugins Menu and search for WPvivid Backup & Migration.
    \n3.Find WPvivid Backup & Migration and click Install Now.
    \n4. Click Activate.

    \n"}, "versions": {"0.9.1": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.6.zip", "0.9.7": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.7.zip", "0.9.8": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.8.zip", "0.9.9": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.zip", "0.9.10": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.10.zip", "0.9.11": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.11.zip", "0.9.12": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.12.zip", "0.9.13": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.13.zip", "0.9.14": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.14.zip", "0.9.15": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.15.zip", "0.9.16": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.16.zip", "0.9.17": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.17.zip", "0.9.18": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.18.zip", "0.9.19": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.19.zip", "0.9.20": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.20.zip", "0.9.21": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.21.zip", "0.9.22": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.22.zip", "0.9.23": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.23.zip", "0.9.24": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.24.zip", "0.9.25": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.25.zip", "0.9.26": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.26.zip", "0.9.27": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.27.zip", "0.9.28": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.28.zip", "0.9.29": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.29.zip", "0.9.30": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.30.zip", "0.9.31": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.31.zip", "0.9.32": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.32.zip", "0.9.33": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.33.zip", "0.9.34": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.34.zip", "0.9.35": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.35.zip", "0.9.36": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.36.zip", "0.9.37": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.37.zip", "0.9.38": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.38.zip", "0.9.39": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.39.zip", "0.9.40": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.40.zip", "0.9.41": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.41.zip", "0.9.42": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.42.zip", "0.9.43": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.43.zip", "0.9.44": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.44.zip", "0.9.45": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.45.zip", "0.9.46": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.46.zip", "0.9.47": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.47.zip", "0.9.48": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.48.zip", "0.9.49": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.49.zip", "0.9.50": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.50.zip", "0.9.51": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.51.zip", "0.9.52": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.52.zip", "0.9.53": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.53.zip", "0.9.54": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.54.zip", "0.9.55": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.55.zip", "0.9.56": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.56.zip", "0.9.57": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.57.zip", "0.9.58": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.58.zip", "0.9.59": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.59.zip", "0.9.60": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.60.zip", "0.9.61": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.61.zip", "0.9.62": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.62.zip", "0.9.63": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.63.zip", "0.9.64": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.64.zip", "0.9.65": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.65.zip", "0.9.66": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.66.zip", "0.9.67": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.67.zip", "0.9.68": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.68.zip", "0.9.69": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.69.zip", "0.9.70": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.70.zip", "0.9.71": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.71.zip", "0.9.72": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.72.zip", "0.9.73": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.73.zip", "0.9.74": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.74.zip", "0.9.75": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.75.zip", "0.9.76": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.76.zip", "0.9.77": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.77.zip", "0.9.78": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.78.zip", "0.9.79": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.79.zip", "0.9.80": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.80.zip", "0.9.81": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.81.zip", "0.9.82": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.82.zip", "0.9.83": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.83.zip", "0.9.84": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.84.zip", "0.9.85": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.85.zip", "0.9.86": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.86.zip", "0.9.87": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.87.zip", "0.9.88": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.88.zip", "0.9.89": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.89.zip", "0.9.90": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.90.zip", "0.9.91": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.91.zip", "0.9.92": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.92.zip", "0.9.93": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.93.zip", "0.9.94": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.94.zip", "0.9.95": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.95.zip", "0.9.96": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.96.zip", "0.9.97": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.97.zip", "0.9.98": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.98.zip", "0.9.99": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.99.zip", "0.9.100": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.100.zip", "0.9.101": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.101.zip", "0.9.102": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.102.zip", "0.9.103": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.103.zip", "0.9.104": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.104.zip", "0.9.105": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.105.zip", "0.9.106": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.106.zip", "0.9.107": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.107.zip", "0.9.108": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.108.zip", "0.9.109": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.109.zip", "0.9.110": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.110.zip", "0.9.111": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.111.zip", "0.9.112": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.112.zip", "0.9.113": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.113.zip", "0.9.114": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.114.zip", "0.9.115": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.115.zip", "0.9.116": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.116.zip", "0.9.117": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.117.zip", "0.9.118": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.118.zip", "0.9.119": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.119.zip", "0.9.120": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.120.zip"}, "downloaded": 14023622, "description": "

    WPvivid Backup & Migration Plugin offers backup, migration, and staging (create a staging site on a subdirectory to safely test WordPress, plugins, themes and website changes) as basic features.

    \n

    WPvivid Backup & Migration for MainWP

    \n

    WPvivid Backup & Migration for MainWP is now available to download.
    \nWPvivid Backup & Migration for MainWP allows you to set up and control WPvivid Backup & Migration plugins for all child sites directly from your MainWP dashboard.

    \n

    WPvivid Backup & Migration Pro is Now Available

    \n
      \n
    • Customize everything to backup
    • \n
    • Create staging sites and push staging sites to live
    • \n
    • Incremental backups
    • \n
    • Database backup encryption
    • \n
    • Auto backup WordPress, themes, and plugins
    • \n
    • WordPress multisite backup
    • \n
    • WordPress multisite staging
    • \n
    • Create a fresh WP install
    • \n
    • Advanced remote backups
    • \n
    • Advanced backup schedules
    • \n
    • Restore remote backups
    • \n
    • Migrate a site via remote storage
    • \n
    • Migrate a childsite (MU) to a single WordPress install
    • \n
    • White label WPvivid Backup & Migration Pro
    • \n
    • Control user access to WPvivid Backup & Migration Pro
    • \n
    • More amazing features
    • \n
    \n

    See a review video on WPvivid Backup & Migration Pro:

    \n

    \n

    Get WPvivid Backup & Migration Pro

    \n

    Core Features

    \n

    1. Easy Backups

    \n

    Easily create a backup of your WordPress site. You can choose to backup the entire site(database+files), all files, or database only.

    \n

    2. Auto Migration

    \n

    Clone and migrate your WordPress site to a new domain with a single click. WPvivid Backup & Migration Plugin supports site migration from dev environment to a new server, from dev environment to a new domain or from a live server to another.

    \n

    3. Create A Staging Site

    \n

    Create a staging site on a subdirectory of your production site to safely test WordPress, plugins, themes and website changes. You can choose what to copy from the the live site to the staging site.

    \n

    4. Scheduled Backups

    \n

    Set a schedule to run backups automatically on your website. You can set the backups to run every 12 hours, daily, weekly, fortnightly, monthly, choose backup items and destination.

    \n

    5. Offsite Backup to Remote Storage

    \n

    Send your backups offsite to a remote location. WPvivid Backup & Migration Plugin supports the leading cloud storage providers: Dropbox, Google Drive, Amazon S3, Microsoft OneDrive, DigitalOcean Spaces, FTP and SFTP.

    \n

    6. One-Click Restore

    \n

    Restore your WordPress site from a backup with a single click.

    \n

    7. Cloud Storage Supported

    \n

    WPvivid Backup & Migration plugin supports Dropbox, Google Drive, Microsoft OneDrive, Amazon S3, DigitalOcean Spaces, SFTP, FTP. WPvivid Backup & Migration Pro also supports Wasabi, pCloud, Backblaze, WebDav and more.

    \n

    Minimum Requirements to use WPvivid Backup & Migration plugin

    \n
      \n
    • Character Encoding UTF-8
    • \n
    • PHP version 5.3
    • \n
    • MySQL version 4.1
    • \n
    • WordPress 4.5
    • \n
    \n", "donate_link": "", "num_ratings": 1335, "screenshots": {"1": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-1.png?rev=2099721", "caption": "Backing up a site"}, "2": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-2.png?rev=2099721", "caption": "Backup list"}, "3": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-3.png?rev=2099721", "caption": "WPvivid Backup & Migration plugin Dashboard"}, "4": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-4.png?rev=2099721", "caption": "Configure remote backups"}, "5": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-5.png?rev=2099721", "caption": "Migrate a WordPress site to a new domain"}, "6": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-6.png?rev=2099721", "caption": "Upload a backup to restore or migrate"}}, "support_url": "https://wordpress.org/support/plugin/wpvivid-backuprestore/", "contributors": {"wpvivid": {"avatar": "https://secure.gravatar.com/avatar/d8c4be2a404cba4860aa14c087c9ac77c6b23ea9e8683d6d27ea5f56226eae29?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpvivid/", "display_name": "wpvivid"}}, "last_updated": "2025-10-16 12:42am GMT", "preview_link": "", "requires_php": "5.3", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.120.zip", "author_profile": "https://profiles.wordpress.org/wpvividplugins/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    Latest version 0.9.120:

    ", "0.9.120": "
      \n
    • Successfully tested with PHP 8.4.13.
    • \n
    • Successfully tested with WordPress 6.8.3.
    • \n
    "}, "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-ff74-737e-8700-2246b25a2eb1", "name": "Migration, Backup, Staging – WPvivid Backup & Migration", "slug": "wpvivid-backuprestore", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760575320, "version": "0.9.120"}, "support_threads": 5, "requires_plugins": [], "short_description": "Migrate, staging, backup WordPress, all in one.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 2}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1fb9-7330-8563-2bf73e319c72', 'did:web:api.aspiredev.org:packages:wp-plugin:fair-plugin', 'fair-plugin', 'FAIR - Federated and Independent Repositories', '', 'wp', 'wp-plugin', 'GPL', '{"did": "", "git": "github", "url": "https://github.com/fairpm/fair-plugin", "name": "FAIR - Federated and Independent Repositories", "slug": "fair-plugin", "tags": [], "type": "plugin", "added": "2025-06-05", "icons": {"1x": "https://raw.githubusercontent.com/fairpm/fair-plugin/main/assets/icon-128x128.png", "2x": "https://raw.githubusercontent.com/fairpm/fair-plugin/main/assets/icon-256x256.png", "default": "https://s.w.org/plugins/geopattern-icon/fair-plugin.svg"}, "author": "FAIR Contributors", "branch": "main", "rating": 0, "tested": "", "banners": {"low": "https://raw.githubusercontent.com/fairpm/fair-plugin/main/assets/banner-772x250.png", "high": "https://raw.githubusercontent.com/fairpm/fair-plugin/main/assets/banner-1544x500.png"}, "dot_org": true, "license": "GPLv2", "version": "1.0.0", "external": "xxx", "homepage": "", "requires": "", "sections": {"description": "

    Many features in WordPress rely on requests to WordPress.org services, including update checks, translations, emojis, and more. Services on WordPress.org are expensive to maintain and centralized. In order to help strengthen the future of the whole WordPress ecosystem, FAIR was built to reduce reliance and burden on the central WordPress.org services.

    \n

    This plugin configures your site to use FAIR implementations of the key services that are currently centralized on WordPress.org.

    \n

    Installation

    \n

    FAIR can be installed manually by downloading the latest zip from releases and install it via your WordPress admin dashboard.

    \n\n

    Uninstallation

    \n

    To remove the FAIR plugin and its features, you can deactivate and delete the plugin. There are no changes made to your database outside of the plugin settings, and no external files are edited. FAIR is a self-contained plugin, using the accepted WordPress standards and practices.

    \n

    Features

    \n
    \n

    [!NOTE]\nThe FAIR project is brand new. This plugin is a pre-release and some features are yet to be fully implemented.

    \n
    \n

    The FAIR plugin implements federated or local versions of the following features in WordPress:

    \n
      \n
    • Version checks and updates to WordPress, plugins, and themes
    • \n
    • Language packs and translations
    • \n
    • Events and News feeds in the dashboard
    • \n
    • Images used on the About screen, Credits screen, and elsewhere
    • \n
    • Browser and server health checks
    • \n
    • Other APIs such as the Credits API, Secret Keys API, and Importers API
    • \n
    • Twemoji images for emojis
    • \n
    • Installation and updating of packages direct from their source repository, without talking to any centralized server
    • \n
    \n

    The default FAIR provider in this plugin is AspireCloud from AspirePress. The AspirePress team were key in helping the FAIR project get off the ground. As the FAIR project grows and other providers come online you will be able to configure your chosen FAIR provider within the plugin.

    \n

    In addition to the key FAIR implementations, a few other features in WordPress are configured by this plugin to reduce reliance and burden on other centralized external services:

    \n
      \n
    • User avatars can optionally be uploaded locally as an alternative to the Gravatar service
    • \n
    • Media features provided by OpenVerse are disabled, pending discussion and work by the FAIR working group
    • \n
    • Ping services are configured to use IndexNow in place of Pingomatic

      Data Privacy

    • \n
    • See Also: Linux Foundation Projects Privacy Policy
    • \n
    \n

    FAIR is built to reduce external dependencies and keep your site as self-contained as possible. However, some essential features require connecting to remote services in order to function correctly. This section details which features involve remote requests, what data may be transmitted, and the specific third-party providers involved. Review the list below to understand exactly where and why your site may communicate with external endpoints.

    \n
      \n
    • Search engine pings when a post is published are handled by IndexNow.
    • \n
    • Installation and updates of all WordPress Packages (core, plugins, themes) are via AspireCloud from AspirePress (or other mirror as configured).
    • \n
    • PHP versions are provided by php.net
    • \n
    • Twemoji (emoji assets) are retrieved by jsDeliver
    • \n
    \n

    In addition we self-host certain features that could not be properly protected on our API servers as an intermediary. All data collected from FAIR servers fall under the Linux Foundation Policies and Terms of Use for Hosted Projects; additionally, the server itself is open source. These services include:

    \n
      \n
    • WordPress Events (https://api.fair.pm/fair/v1/events) - Retrieved from The WP World hourly and then cached on our servers. No user data is sent to The WP World.
    • \n
    • WordPress Planet/News (https://planet.fair.pm/atom.xml)

      Contributing

      \nSee CONTRIBUTING.md for information on contributing.
    • \n
    \n

    The FAIR plugin is currently maintained by the Technical Independence Working Group, in conjunction with the FAIR Working Group.

    \n

    FAIR is licensed under the GNU General Public License, v2 or later. Copyright 2025 the contributors.

    \n

    WordPress is a registered trademark of the WordPress Foundation. FAIR is not endorsed by, or affiliated with, the WordPress Foundation.

    "}, "security": "", "slug_did": null, "versions": {"0.2.0": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/261645550", "0.3.0": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/264872287", "0.4.0": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/277562364", "0.4.1": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/278207423", "1.0.0": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/296544621"}, "author_uri": "", "is_private": false, "update_uri": "https://api.fair.pm", "auth_header": {"headers": {"Accept": "application/octet-stream"}}, "donate_link": "", "num_ratings": 0, "contributors": [], "last_updated": "2025-10-28 10:58pm GMT", "requires_php": "", "download_link": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/296544621", "release_asset": true, "primary_branch": "main", "active_installs": 0, "aspiresync_meta": {"slug": "fair-plugin", "type": "plugin", "origin": "gu", "status": "open", "gu_base": "https://api.fair.pm/wp-json/git-updater/v1"}, "requires_plugins": [], "short_description": "Many features in WordPress rely on requests to WordPress.org services, including update checks, translations, emojis, and more. Services on WordPre..."}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-1fc2-72d1-90d5-8f3f1035f933', 'did:web:api.aspiredev.org:packages:wp-plugin:git-updater', 'git-updater', 'Git Updater', '', 'wp', 'wp-plugin', 'GPL', '{"did": "did:plc:afjf7gsjzsqmgc7dlhb553mv", "git": "github", "url": "https://github.com/afragen/git-updater", "name": "Git Updater", "slug": "git-updater", "tags": {"theme": "theme", "updater": "updater", "language-pack": "language pack"}, "type": "plugin", "added": "2013-07-07", "icons": {"svg": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "default": "https://s.w.org/plugins/geopattern-icon/git-updater.svg"}, "author": "Andy Fragen", "branch": "master", "rating": 0, "tested": "6.9.3", "banners": {"low": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "high": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png"}, "dot_org": false, "license": "MIT", "version": "12.19.0", "external": "xxx", "homepage": "https://git-updater.com", "requires": "5.9", "sections": {"faq": "

    Knowledge Base

    \n

    Comprehensive information regarding Git Updater is available in the Knowledge Base.

    \n

    Slack

    \n

    We now have a Slack team for Git Updater. Please click here for an invite. You will be automatically added to the #general and #support channels. Please take a look at other channels too.

    \n

    Translations

    \n

    If you are a polyglot I would greatly appreciate translation contributions to GlotPress for Git Updater.

    \n", "changelog": "

    [unreleased]

    \n

    12.19.0 / 2025-09-29

    \n
      \n
    • setup for Gitea release assets
    • \n
    • use mcaskill/composer-exclude-files to exclude autoload of freemius/wordpress-sdk/start.php
    • \n
    • harden parse_meta_response()
    • \n
    • modify dot org check for package added to mirror like AspireCloud
    • \n
    • don''t overwrite requires and requires_php data from readme.txt if already exists
    • \n
    • correctly parse for multiple release assets per release
    • \n
    • update POT GitHub Action
    • \n
    • refactor add_accept_header()
    • \n
    • set release_assets and release_asset_download for latest release asset
    • \n
    \n

    12.18.1 / 2025-08-06

    \n
      \n
    • data check on release assets
    • \n
    \n

    12.18.0 / 2025-08-04

    \n
      \n
    • update cache delete and don''t use wp_cache_flush
    • \n
    • always show download link in REST endpoint
    • \n
    • improved reverse sort for branch/tag versions
    • \n
    • get all release assets from GitHub API and pick release asset download from release assets array, other APIs get latest release asset only
    • \n
    • update parse_tag() and sort_tags()
    • \n
    • update branch switching tags
    • \n
    \n

    12.17.3 / 2025-07-31

    \n
      \n
    • add new Security header with value of email or URI
    • \n
    \n

    12.17.2 / 2025-07-26

    \n
      \n
    • update GU_Freemius for FAIR installation
    • \n
    \n

    12.17.1 / 2025-07-20

    \n
      \n
    • add remote data for did, slug_hash if added via Additions
    • \n
    • use Bearer for token with GitHub API
    • \n
    \n

    12.17.0 / 2025-07-14

    \n
      \n
    • un-escape stuff, more uses of use
    • \n
    • add License header info
    • \n
    • add Update URI header info
    • \n
    • add get_did_hash() to get hash of DID
    • \n
    • add get_file_without_did_hash()
    • \n
    • simplify check for rename_on_activation()
    • \n
    • update freemius/wordpress-sdk
    • \n
    \n

    12.16.1 / 2025-06-12

    \n
      \n
    • add DID
    • \n
    • update rollback sort
    • \n
    • update banner image
    • \n
    \n

    12.16.0 / 2025-06-09

    \n
      \n
    • change callback from new REST_API() to $this
    • \n
    • collect Author URI from headers.
    • \n
    • add action hook to Base::get_remote_repo_meta
    • \n
    • get all versions of release assets, similar to tags/rollbacks
    • \n
    • add compatibility check for AspireUpdate and FAIR Package Manager
    • \n
    \n

    12.15.1 / 2025-05-20

    \n
      \n
    • update stability of composer requirements
    • \n
    \n

    12.15.0 / 2025-05-20

    \n
      \n
    • update to correct format of readme tags
    • \n
    • add correctly formated date/time for update-api REST endpoint
    • \n
    • remove deprecated hooks from v10 and earlier
    • \n
    • add error checking to parse_contents_response()
    • \n
    • update Freemius/wordpress-sdk
    • \n
    • add support for Plugin ID and Theme ID headers for FAIR
    • \n
    • update composer.json
    • \n
    \n

    12.14.0 / 2025-02-26

    \n
      \n
    • make sure proper release asset headers are added even if access token not set
    • \n
    • ensure short description is 150 characters or less
    • \n
    \n

    12.13.0 / 2025-02-21

    \n
      \n
    • update caching
    • \n
    • add versions to REST endpoint for {plugins|themes|update}-api
    • \n
    • update generate POT workflow
    • \n
    \n

    12.12.1 / 2025-02-12

    \n
      \n
    • revert uninstall back to Freemius
    • \n
    \n

    12.12.0 / 2025-02-10

    \n
      \n
    • save source with Additions
    • \n
    • update Additions::deduplicate()
    • \n
    • update Base::upgrader_source_selection() rename to allow for AJAX installation, thanks @costdev
    • \n
    • add git-updater-collectionsto Add-Ons
    • \n
    • make list table show all elements
    • \n
    • add Private Package option for Additions, these private packages are not to be shared with aggregators
    • \n
    • switch to standard uninstall.php as issue with calling Freemius during their after_uninstall hook
    • \n
    • add early exit in get_repo_slugs() during AJAX installation for Add-Ons
    • \n
    • remove soft match in get_repo_slugs()
    • \n
    • removed Add_Ons::upgrader_source_selection no longer needed
    • \n
    • save/export tags from readme.txt for REST endpoint
    • \n
    \n

    12.11.0 / 2025-02-02

    \n
      \n
    • update Additions to add additional listings
    • \n
    • more updates for possibly passing null
    • \n
    • update REST_API::get_api_data
    • \n
    • update Theme to add theme_uri to update transient
    • \n
    • update to pass complete data for multiple uses of gu_additions hook
    • \n
    \n

    12.10.1 / 2025-01-30

    \n
      \n
    • fix issue with release asset
    • \n
    • add guard to Add-Ons
    • \n
    • remove git-updater-federation from Add-Ons
    • \n
    \n

    12.10.0 / 2025-01-29

    \n
      \n
    • refactor Add_Ons to use plugins-api REST endpoint and standard plugin card
    • \n
    • added features by @costdev for AJAXifying
    • \n
    • added parsing of Update URI and Requires Plugins headers
    • \n
    • increase requirements to PHP 8+
    • \n
    • added REST endpoint to export data from Additions
    • \n
    • added REST endpoint to export Update API data from Additions
    • \n
    • update Freemius/wordpress-sdk
    • \n
    • change ''API Add-Ons'' to ''Add-Ons''
    • \n
    \n

    12.9.0 / 2025-01-07

    \n
      \n
    • add API get for repo root contents for efficiency
    • \n
    • add feature to virtually add repos via Additions tab to server REST update-api endpoint
    • \n
    • switch to getting most data via API calls and not from locally installed files
    • \n
    • add REST endpoint to individually flush repo cache
    • \n
    • fix Basic_Auth_Loader::get_slug_for_credentials() to get slug for gist
    • \n
    • update $release_asset_parts in Basic_Auth_Loader::unset_release_asset_auth() for AWS download link
    • \n
    • improved release asset handling
    • \n
    \n

    12.8.0 / 2024-12-21

    \n
      \n
    • update GitHub release asset parsing
    • \n
    • update REST_API for Bitbucket update link
    • \n
    • update REST_API for update-api route
    • \n
    \n

    12.7.2 / 2024-12-18

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • use mcaskill/composer-exclude-files to exclude autoloading start.php from Freemius, issues arise
    • \n
    • update REST_API::get_api_data() to always get current release asset redirect as appropriate
    • \n
    \n

    12.7.1 / 2024-12-02

    \n
      \n
    • use get_file_date() to return plugin version
    • \n
    • fix API::get_dot_org_data() to work with WPE mirror
    • \n
    \n

    12.7.0 / 2024-11-30

    \n
      \n
    • fix missing/incorrect textdomains
    • \n
    • look for __() functions loading in hooks before init
    • \n
    • remove load_plugin_textdomain()
    • \n
    • add git host icon to single site theme description
    • \n
    • don''t save to GitHub.com access token from single repo remote install
    • \n
    • fix PHP 8.1 creation dynamic variable from class REST_API
    • \n
    • update REST API response to return plugins_api() or themes_api() style response
    • \n
    \n

    12.6.0 / 2024-10-13

    \n
      \n
    • check existence of FS__RESOLVE_CLONE_AS before setting
    • \n
    • add filter hook gu_api_domain to set domain for default API updating
    • \n
    • add filter hook gu_ignore_dot_org to completely ignore updates from dot org. Works as if every plugin/theme is in the gu_override_dot_org hook
    • \n
    \n

    12.5.0 / 2024-08-16

    \n
      \n
    • update class-parser.php
    • \n
    • update Requires PHP to 7.4 for class-parser.php
    • \n
    • update Requires WP to 5.9
    • \n
    • update freemius/wordpress-sdk
    • \n
    • update printf() in class Branches
    • \n
    • fix old git-updater-pro and git-updater-additions textdomains
    • \n
    • update Base::upgrader_source_selection() when trying to update $source and $new_source when destination directories are identical
    • \n
    • remove unused parameters in certain functions
    • \n
    \n

    12.4.0 / 2024-03-04

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • update class-parser.php
    • \n
    • use is_wp_version_compatible() and is_php_version_compatible() in GU_Trait::can_update_repo()
    • \n
    • update gu-loader.php with generic loader
    • \n
    • update Readme_Parser::trim_length
    • \n
    \n

    12.3.1 / 2023-10-19

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • WPCS 3.0.0 linting
    • \n
    • popup on icon for "Updates via Git Updater", thanks @BrianHenryIE
    • \n
    \n

    12.3.0 / 2023-08-10

    \n
      \n
    • update Bitbucket Add-on message for consistency
    • \n
    • ensure Shim available during register_activation_hook()
    • \n
    • add conditional to get_remote_api_branches() to ensure $response is not a scalar
    • \n
    • use null coalescing operator
    • \n
    • update for PHP 8.2
    • \n
    \n

    12.2.3 / 2023-06-27

    \n
      \n
    • composer update
    • \n
    • get gu_disable_cron hook result once per repository
    • \n
    • ensure git class is instantiated when checking waiting_for_background_update()
    • \n
    • add check for $response->error to API::validate_response()
    • \n
    • update freemius/wordpress-sdk to 2.5.10
    • \n
    \n

    12.2.2 /2023-05-22

    \n
      \n
    • add back Network only activate for multisite, may cause issue where post-license activation Freemius doesn''t re-direct to network admin
    • \n
    • update anonymous functions as static functions for better performance
    • \n
    • composer update
    • \n
    \n

    12.2.1 / 2023-04-21

    \n
      \n
    • ensure $wp_filesystem set for Bootstrap::rename_on_activation()
    • \n
    • uninstall tested to function correctly
    • \n
    \n

    12.2.0 / 2023-04-20

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • update afragen/wp-dismiss-notice
    • \n
    • don''t save unused data from API_Common::parse_release_asset()
    • \n
    • don''t use Freemius uninstall, use previous uninstall.php
    • \n
    • more PHP 8.2 compatibility
    • \n
    • composer update
    • \n
    • update REST_API::get_plugins_api_data() to return response without download link using boolean value in download query arg
    • \n
    • hide Freemius menus with gu_hide_settings filter
    • \n
    • more specific hiding of Git Updater settings
    • \n
    \n

    12.1.3 / 2023-03-20

    \n
      \n
    • improved setting/default of $options[''bypass_background_processing'']
    • \n
    • improved setting/default of $options[''branch_switch'']
    • \n
    • display upgrade notice on update-core.php
    • \n
    • composer update afragen/singleton for PHP 8.2 compat
    • \n
    \n

    12.1.2 / 2023-02-08

    \n
      \n
    • fix for webhook updating issue if $branches not defined, thanks @awunsch
    • \n
    \n

    12.1.1 / 2023-02-07

    \n
      \n
    • remove force of Network activation, messes up Freemius license activation on multisite
    • \n
    • composer update
    • \n
    \n

    12.1.0 / 2023-02-06

    \n
      \n
    • further limit log of HTTP errors, trying for only once per plugin
    • \n
    • eliminate Freemius clone resolution popup
    • \n
    • update Shim:move_dir() for improved error messaging
    • \n
    • update comparison in Base::upgrader_source_selection of $source and $new_source
    • \n
    \n

    12.0.4 / 2023-01-27

    \n
      \n
    • update to use str_contains()
    • \n
    • log HTTP errors only hourly
    • \n
    • update Shim::move_dir() to exit early if source and destination differ only by case or trailing slash
    • \n
    \n

    12.0.3 / 2023-01-19

    \n
      \n
    • update Shim for move_dir() and wp_opcache_invalidate_directory()
    • \n
    • composer update
    • \n
    \n

    12.0.2 / 2023-01-12

    \n
      \n
    • PHP 8.1 compatibility fix, thanks @chesio
    • \n
    • other PHP 8.1 fixes
    • \n
    • declare class API variable $type, avoid future PHP issues, thanks @chesio
    • \n
    \n

    12.0.1 / 2023-01-02

    \n
      \n
    • cleanup parsing of GitHub release assets
    • \n
    • composer update to fix dependency conflict
    • \n
    \n

    12.0.0 / 2022-12-12

    \n
      \n
    • ensure $wp_filesystem is available
    • \n
    • re-integrate Git Updater PRO
    • \n
    • integrate Git Updater Additions
    • \n
    • add git logo to subtab, hide for now
    • \n
    • load API tabs of installed/active API plugins
    • \n
    • set Git Updater to auto-update with new $db_version
    • \n
    • replace Appsero SDK with Freemius SDK
    • \n
    • suspend Freemius plugin updating for Git Updater
    • \n
    • fix uninstall.php for Freemius
    • \n
    ", "description": "

    This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket, GitLab, Gitea, or Gist are also supported via additional API plugins. Additionally, self-hosted git servers are supported.

    \n

    Your plugin or theme must contain a header in the style.css header or in the plugin''s header denoting the location on GitHub. The format is as follows.

    \n
    GitHub Plugin URI: afragen/git-updater\nGitHub Plugin URI: https://github.com/afragen/git-updater
    \n

    or

    \n
    GitHub Theme URI: afragen/test-child\nGitHub Theme URI: https://github.com/afragen/test-child
    \n

    ...where the above URI leads to the owner/repository of your theme or plugin. The URI may be in the format https://github.com/<owner>/<repo> or the short format <owner>/<repo>. You do not need both. Only one Plugin or Theme URI is required. You must not include any extensions like .git.

    \n

    API Plugins

    \n

    API plugins for Bitbucket, GitLab, Gitea, and Gist are available. API plugins are available for a one-click install from the Add-Ons tab.

    \n\n

    Sponsor

    \n

    Purchase a license at the Git Updater Store. An unlimited yearly license is very reasonable and allows for authenticated API requests. There is an initial free trial period. After the trial period Git Updater will not be able to make authenticated API requests.

    \n

    You can sponsor me on GitHub to help with continued development and support.

    \n

    Headers

    \n

    The following headers are available for use depending upon your hosting source.

    \n

    GitHub

    \n
      \n
    • GitHub Plugin URI
    • \n
    • GitHub Theme URI
    • \n
    • GitHub Languages
    • \n
    ", "installation": "

    Go to git-updater.com to download and install the latest version.

    "}, "security": "andy+security@git-updater.com", "slug_did": "git-updater-f27e06", "versions": {"12.2.2": "https://api.github.com/repos/afragen/git-updater/zipball/12.2.2", "12.2.3": "https://api.github.com/repos/afragen/git-updater/zipball/12.2.3", "12.3.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.3.0", "12.3.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.3.1", "12.4.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.4.0", "12.5.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.5.0", "12.6.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.6.0", "12.7.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.7.0", "12.7.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.7.1", "12.7.2": "https://api.github.com/repos/afragen/git-updater/zipball/12.7.2", "12.8.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.8.0", "12.9.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.9.0", "12.10.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.10.0", "12.10.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.10.1", "12.11.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.11.0", "12.12.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.12.0", "12.12.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.12.1", "12.13.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.13.0", "12.14.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.14.0", "12.15.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.15.0", "12.15.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.15.1", "12.16.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.16.0", "12.16.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.16.1", "12.17.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.0", "12.17.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.1", "12.17.2": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.2", "12.17.3": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.3", "12.18.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.18.0", "12.18.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.18.1", "12.19.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.19.0"}, "author_uri": "https://thefragens.com", "is_private": false, "update_uri": "afragen/git-updater", "donate_link": "https://thefragens.com/git-updater-donate", "num_ratings": 0, "contributors": {"afragen": {"avatar": "https://wordpress.org/grav-redirect.php?user=afragen", "profile": "//profiles.wordpress.org/afragen", "display_name": "afragen"}}, "last_updated": "2025-10-03 05:49pm GMT", "requires_php": "8.0", "download_link": "https://api.github.com/repos/afragen/git-updater/zipball/12.19.0", "release_asset": false, "primary_branch": "master", "active_installs": 0, "aspiresync_meta": {"slug": "git-updater", "type": "plugin", "origin": "gu", "status": "open", "gu_base": "https://fair.git-updater.com/wp-json/git-updater/v1"}, "requires_plugins": [], "short_description": "This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket,..."}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-f0bf-7234-b95f-9ccfaa78a145', 'did:web:api.aspiredev.org:packages:wp-theme:blogmate', 'blogmate', 'Blogmate', 'BlogMate, a child theme of Bloglo, features a boxed width design with an animated background pattern. With a horizontal blog list style, it offers extensive customization options for colors and typography. Lightweight and moderate, BlogMate is a customizable News Magazine WordPress theme with one-click demo importer. Perfect for personal and multi-author bloggers, it''s ideal for dynamic news, magazines, blogs, and creative sites. SEO friendly, WPML, Gutenberg, WooCommerce, and RTL ready, it''s suitable for various content publishers and online magazines. Live preview : https://demo.peregrine-themes.com/bloglo/blogmate/', 'wp', 'wp-theme', 'GPL', '{"name": "Blogmate", "slug": "blogmate", "tags": {"blog": "Blog", "news": "News", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Peregrine themes", "avatar": "https://secure.gravatar.com/avatar/0633ecf3e923b0b844ecf8e5515609a2de8872f5948febafe8d4ff2e3b1eeb67?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/peregrinethemes/", "author_url": "https://peregrine-themes.com/", "display_name": "peregrinethemes", "user_nicename": "peregrinethemes"}, "parent": {"name": "Bloglo", "slug": "bloglo", "homepage": "https://wordpress.org/themes/bloglo/"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 3}, "version": "1.0.10", "homepage": "https://wordpress.org/themes/blogmate/", "requires": "5.4", "sections": {"description": "BlogMate, a child theme of Bloglo, features a boxed width design with an animated background pattern. With a horizontal blog list style, it offers extensive customization options for colors and typography. Lightweight and moderate, BlogMate is a customizable News Magazine WordPress theme with one-click demo importer. Perfect for personal and multi-author bloggers, it''s ideal for dynamic news, magazines, blogs, and creative sites. SEO friendly, WPML, Gutenberg, WooCommerce, and RTL ready, it''s suitable for various content publishers and online magazines. Live preview : https://demo.peregrine-themes.com/bloglo/blogmate/"}, "template": "bloglo", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/blogmate.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/blogmate.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/blogmate.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/blogmate.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/blogmate.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/blogmate.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/blogmate.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/blogmate.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/blogmate.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/blogmate.1.0.9.zip", "1.0.10": "https://downloads.wordpress.org/theme/blogmate.1.0.10.zip"}, "downloaded": 71951, "num_ratings": 3, "preview_url": "https://wp-themes.com/blogmate/", "reviews_url": "https://wordpress.org/support/theme/blogmate/reviews/", "is_community": false, "last_updated": "2024-08-18", "requires_php": "5.6", "creation_time": "2024-01-09 07:11:46", "download_link": "https://downloads.wordpress.org/theme/blogmate.1.0.10.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/blogmate/screenshot.png?ver=1.0.10", "active_installs": 7000, "aspiresync_meta": {"id": "019a30c0-02a2-73a4-9ae8-5c990bf408f1", "name": "Blogmate", "slug": "blogmate", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1723939200, "version": "1.0.10"}, "last_updated_time": "2024-08-18 15:51:32", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-1fcf-73a1-952d-985c09da7dbe', 'did:web:api.aspiredev.org:packages:wp-plugin:handbook-callout-blocks', 'handbook-callout-blocks', 'Handbook Callout Blocks', '', 'wp', 'wp-plugin', 'GPL', '{"did": "did:plc:deoui6ztyx6paqajconl67rz", "git": "github", "url": "https://github.com/afragen/handbook-callout-blocks", "name": "Handbook Callout Blocks", "slug": "handbook-callout-blocks", "tags": {"wporg": "wporg", "callout": "callout", "handbook": "handbook"}, "type": "plugin", "added": "2022-08-26", "icons": {"default": "https://s.w.org/plugins/geopattern-icon/handbook-callout-blocks.svg"}, "author": "WordPress.org, Andy Fragen", "branch": "main", "rating": 0, "tested": "6.7.3", "banners": [], "dot_org": false, "license": "", "version": "1.0.3", "external": "xxx", "homepage": "https://github.com/afragen/handbook-callout-blocks", "requires": "5.9", "sections": {"changelog": "

    [unreleased]

    \n
      \n
    • add support for core/list
    • \n
    • refactor for current standards and practices courtesy of @Clorith
    • \n
    • make editor padding match
    • \n
    • load dashicons for non-logged in users
    • \n
    • initial release
    • \n
    • add composer.json
    • \n
    ", "description": "

    The make.wordpress.org blog has wonderful callout blocks but they seem to be baked in as part of the WP.org Handbook plugin.

    \n

    I was able to strip out the relevant parts of the Handbook plugin retaining only the callout blocks.

    \n

    Special Thanks

    \n
      \n
    • @Ipstenu for her terrific sleuthing skills.
    • \n
    • @Clorith for bringing code up to current standards and best practices.
    • \n
    "}, "security": "", "slug_did": "handbook-callout-blocks-c9ecf6", "versions": {"1.0.3": "https://api.github.com/repos/afragen/handbook-callout-blocks/releases/assets/274184925"}, "author_uri": "", "is_private": false, "update_uri": "", "auth_header": {"headers": {"Accept": "application/octet-stream"}}, "donate_link": "", "num_ratings": 0, "contributors": {"wporg": {"avatar": "https://wordpress.org/grav-redirect.php?user=wporg", "profile": "//profiles.wordpress.org/wporg", "display_name": "wporg"}, "Clorith": {"avatar": "https://wordpress.org/grav-redirect.php?user=Clorith", "profile": "//profiles.wordpress.org/Clorith", "display_name": "Clorith"}, "afragen": {"avatar": "https://wordpress.org/grav-redirect.php?user=afragen", "profile": "//profiles.wordpress.org/afragen", "display_name": "afragen"}}, "last_updated": "2025-07-18 06:57pm GMT", "requires_php": "7.4", "download_link": "https://api.github.com/repos/afragen/handbook-callout-blocks/releases/assets/274184925", "release_asset": true, "primary_branch": "main", "active_installs": 0, "aspiresync_meta": {"slug": "handbook-callout-blocks", "type": "plugin", "origin": "gu", "status": "open", "gu_base": "https://fair.git-updater.com/wp-json/git-updater/v1"}, "requires_plugins": [], "short_description": "The make.wordpress.org blog has wonderful callout blocks but they seem to be baked in as part of the WP.org Handbook plugin.\nI was able to strip ou..."}', '2025-10-29 16:18:05+00'); -INSERT INTO public.packages VALUES ('019a30c3-efd7-7165-802d-851a99ac1751', 'did:web:api.aspiredev.org:packages:wp-theme:altr', 'altr', 'Altr', 'Altr is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/altr/', 'wp', 'wp-theme', 'GPL', '{"name": "Altr", "slug": "altr", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "EnvoThemes", "avatar": "https://secure.gravatar.com/avatar/fbfb6069115a2880669be42a480c105d8702f5ba9930b034b3a4223a495931a5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/envothemes/", "author_url": "https://envothemes.com/", "display_name": "EnvoThemes", "user_nicename": "envothemes"}, "parent": {"name": "Entr", "slug": "entr", "homepage": "https://wordpress.org/themes/entr/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.2", "homepage": "https://wordpress.org/themes/altr/", "requires": false, "sections": {"description": "Altr is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/altr/"}, "template": "entr", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/altr.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/altr.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/altr.1.0.2.zip"}, "downloaded": 76917, "num_ratings": 0, "preview_url": "https://wp-themes.com/altr/", "reviews_url": "https://wordpress.org/support/theme/altr/reviews/", "is_community": false, "last_updated": "2024-11-12", "requires_php": "5.6", "creation_time": "2023-06-12 04:26:41", "download_link": "https://downloads.wordpress.org/theme/altr.1.0.2.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/altr/screenshot.png?ver=1.0.2", "active_installs": 9000, "aspiresync_meta": {"id": "019a30c0-027d-72cf-9ef5-0f8354725b16", "name": "Altr", "slug": "altr", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1731369600, "version": "1.0.2"}, "last_updated_time": "2024-11-12 11:47:57", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f000-725d-9bf4-aeaf3987c1f7', 'did:web:api.aspiredev.org:packages:wp-theme:ashe', 'ashe', 'Ashe', 'Personal and Multi-Author Free WordPress Blog Theme. Perfect for personal, lifestyle, health & fitness, food, cooking, bakery, travel, beauty, fashion, wedding, photography, news, quotes blog, auto blog, small business website and any other kind of amazing blogs. Minimal, elegant & mobile friendly layout with WooCommerce shop (storefront) support will WOW and inspire your visitors. Well documented and very easy to use even for WordPress beginners. Clean and Modern Responsive design will perfectly showcase your content on any device, even on tablet, mobile & retina displays. Very fast, compatibility with many popular plugins & of course translation & RTL (right to left language) ready, coded with best SEO practices. The theme has features like Text & Image logo, Fullscreen Slider, Header image, Instagram slider widget support, footer menu support, GDPR compatibility plugins support and many more. Works perfectly with all major drag and drop page builders like Elementor, Beaver Builder, Visual Composer, SiteOrigin, Divi. You just need to write and be awesome! TEMPLATE DEMO: https://ashe-free.wp-royal-themes.com/demo/', 'wp', 'wp-theme', 'GPL', '{"name": "Ashe", "slug": "ashe", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "food-and-drink": "Food & drink", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "WP Royal", "avatar": "https://secure.gravatar.com/avatar/078c5c148dcfcc4983cb3fce756683ce03d7aebb69f1fb9e8ea08232e4b01fea?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wproyal/", "author_url": "https://wp-royal-themes.com/", "display_name": "WP Royal", "user_nicename": "wproyal"}, "rating": 98, "status": "open", "ratings": {"1": 5, "2": 1, "3": 0, "4": 5, "5": 281}, "version": "2.262", "homepage": "https://wordpress.org/themes/ashe/", "requires": "4.7", "sections": {"description": "Personal and Multi-Author Free WordPress Blog Theme. Perfect for personal, lifestyle, health & fitness, food, cooking, bakery, travel, beauty, fashion, wedding, photography, news, quotes blog, auto blog, small business website and any other kind of amazing blogs. Minimal, elegant & mobile friendly layout with WooCommerce shop (storefront) support will WOW and inspire your visitors. Well documented and very easy to use even for WordPress beginners. Clean and Modern Responsive design will perfectly showcase your content on any device, even on tablet, mobile & retina displays. Very fast, compatibility with many popular plugins & of course translation & RTL (right to left language) ready, coded with best SEO practices. The theme has features like Text & Image logo, Fullscreen Slider, Header image, Instagram slider widget support, footer menu support, GDPR compatibility plugins support and many more. Works perfectly with all major drag and drop page builders like Elementor, Beaver Builder, Visual Composer, SiteOrigin, Divi. You just need to write and be awesome! TEMPLATE DEMO: https://ashe-free.wp-royal-themes.com/demo/"}, "versions": {"0.1": "https://downloads.wordpress.org/theme/ashe.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/ashe.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/ashe.0.3.zip", "0.4": "https://downloads.wordpress.org/theme/ashe.0.4.zip", "0.5": "https://downloads.wordpress.org/theme/ashe.0.5.zip", "0.6": "https://downloads.wordpress.org/theme/ashe.0.6.zip", "0.7": "https://downloads.wordpress.org/theme/ashe.0.7.zip", "0.8": "https://downloads.wordpress.org/theme/ashe.0.8.zip", "0.9": "https://downloads.wordpress.org/theme/ashe.0.9.zip", "1.0": "https://downloads.wordpress.org/theme/ashe.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/ashe.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/ashe.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/ashe.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/ashe.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/ashe.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/ashe.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/ashe.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/ashe.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/ashe.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/ashe.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/ashe.2.1.zip", "2.11": "https://downloads.wordpress.org/theme/ashe.2.11.zip", "2.12": "https://downloads.wordpress.org/theme/ashe.2.12.zip", "2.13": "https://downloads.wordpress.org/theme/ashe.2.13.zip", "2.14": "https://downloads.wordpress.org/theme/ashe.2.14.zip", "2.15": "https://downloads.wordpress.org/theme/ashe.2.15.zip", "2.16": "https://downloads.wordpress.org/theme/ashe.2.16.zip", "2.17": "https://downloads.wordpress.org/theme/ashe.2.17.zip", "2.18": "https://downloads.wordpress.org/theme/ashe.2.18.zip", "2.19": "https://downloads.wordpress.org/theme/ashe.2.19.zip", "0.9.1": "https://downloads.wordpress.org/theme/ashe.0.9.1.zip", "1.0.1": "https://downloads.wordpress.org/theme/ashe.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/ashe.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/ashe.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/ashe.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/ashe.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/ashe.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/ashe.1.0.7.zip", "1.2.1": "https://downloads.wordpress.org/theme/ashe.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/ashe.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/ashe.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/ashe.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/ashe.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/ashe.1.2.6.zip", "1.3.1": "https://downloads.wordpress.org/theme/ashe.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/ashe.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/ashe.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/ashe.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/ashe.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/ashe.1.3.6.zip", "1.5.1": "https://downloads.wordpress.org/theme/ashe.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/ashe.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/ashe.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/ashe.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/ashe.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/ashe.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/ashe.1.5.7.zip", "1.6.1": "https://downloads.wordpress.org/theme/ashe.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/ashe.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/ashe.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/ashe.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/ashe.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/ashe.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/ashe.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/ashe.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/ashe.1.6.9.zip", "1.7.1": "https://downloads.wordpress.org/theme/ashe.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/ashe.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/ashe.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/ashe.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/ashe.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/ashe.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/ashe.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/ashe.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/ashe.1.7.9.zip", "1.8.1": "https://downloads.wordpress.org/theme/ashe.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/ashe.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/ashe.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/ashe.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/ashe.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/ashe.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/ashe.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/ashe.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/theme/ashe.1.8.9.zip", "1.9.1": "https://downloads.wordpress.org/theme/ashe.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/theme/ashe.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/theme/ashe.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/theme/ashe.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/theme/ashe.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/theme/ashe.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/theme/ashe.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/theme/ashe.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/theme/ashe.1.9.9.zip", "2.191": "https://downloads.wordpress.org/theme/ashe.2.191.zip", "2.192": "https://downloads.wordpress.org/theme/ashe.2.192.zip", "2.193": "https://downloads.wordpress.org/theme/ashe.2.193.zip", "2.194": "https://downloads.wordpress.org/theme/ashe.2.194.zip", "2.195": "https://downloads.wordpress.org/theme/ashe.2.195.zip", "2.196": "https://downloads.wordpress.org/theme/ashe.2.196.zip", "2.197": "https://downloads.wordpress.org/theme/ashe.2.197.zip", "2.198": "https://downloads.wordpress.org/theme/ashe.2.198.zip", "2.199": "https://downloads.wordpress.org/theme/ashe.2.199.zip", "2.200": "https://downloads.wordpress.org/theme/ashe.2.200.zip", "2.201": "https://downloads.wordpress.org/theme/ashe.2.201.zip", "2.202": "https://downloads.wordpress.org/theme/ashe.2.202.zip", "2.203": "https://downloads.wordpress.org/theme/ashe.2.203.zip", "2.204": "https://downloads.wordpress.org/theme/ashe.2.204.zip", "2.205": "https://downloads.wordpress.org/theme/ashe.2.205.zip", "2.206": "https://downloads.wordpress.org/theme/ashe.2.206.zip", "2.207": "https://downloads.wordpress.org/theme/ashe.2.207.zip", "2.208": "https://downloads.wordpress.org/theme/ashe.2.208.zip", "2.209": "https://downloads.wordpress.org/theme/ashe.2.209.zip", "2.210": "https://downloads.wordpress.org/theme/ashe.2.210.zip", "2.211": "https://downloads.wordpress.org/theme/ashe.2.211.zip", "2.212": "https://downloads.wordpress.org/theme/ashe.2.212.zip", "2.213": "https://downloads.wordpress.org/theme/ashe.2.213.zip", "2.214": "https://downloads.wordpress.org/theme/ashe.2.214.zip", "2.215": "https://downloads.wordpress.org/theme/ashe.2.215.zip", "2.216": "https://downloads.wordpress.org/theme/ashe.2.216.zip", "2.217": "https://downloads.wordpress.org/theme/ashe.2.217.zip", "2.218": "https://downloads.wordpress.org/theme/ashe.2.218.zip", "2.219": "https://downloads.wordpress.org/theme/ashe.2.219.zip", "2.220": "https://downloads.wordpress.org/theme/ashe.2.220.zip", "2.221": "https://downloads.wordpress.org/theme/ashe.2.221.zip", "2.222": "https://downloads.wordpress.org/theme/ashe.2.222.zip", "2.223": "https://downloads.wordpress.org/theme/ashe.2.223.zip", "2.224": "https://downloads.wordpress.org/theme/ashe.2.224.zip", "2.225": "https://downloads.wordpress.org/theme/ashe.2.225.zip", "2.226": "https://downloads.wordpress.org/theme/ashe.2.226.zip", "2.227": "https://downloads.wordpress.org/theme/ashe.2.227.zip", "2.228": "https://downloads.wordpress.org/theme/ashe.2.228.zip", "2.229": "https://downloads.wordpress.org/theme/ashe.2.229.zip", "2.230": "https://downloads.wordpress.org/theme/ashe.2.230.zip", "2.231": "https://downloads.wordpress.org/theme/ashe.2.231.zip", "2.232": "https://downloads.wordpress.org/theme/ashe.2.232.zip", "2.233": "https://downloads.wordpress.org/theme/ashe.2.233.zip", "2.234": "https://downloads.wordpress.org/theme/ashe.2.234.zip", "2.235": "https://downloads.wordpress.org/theme/ashe.2.235.zip", "2.236": "https://downloads.wordpress.org/theme/ashe.2.236.zip", "2.237": "https://downloads.wordpress.org/theme/ashe.2.237.zip", "2.238": "https://downloads.wordpress.org/theme/ashe.2.238.zip", "2.239": "https://downloads.wordpress.org/theme/ashe.2.239.zip", "2.240": "https://downloads.wordpress.org/theme/ashe.2.240.zip", "2.241": "https://downloads.wordpress.org/theme/ashe.2.241.zip", "2.242": "https://downloads.wordpress.org/theme/ashe.2.242.zip", "2.243": "https://downloads.wordpress.org/theme/ashe.2.243.zip", "2.244": "https://downloads.wordpress.org/theme/ashe.2.244.zip", "2.245": "https://downloads.wordpress.org/theme/ashe.2.245.zip", "2.246": "https://downloads.wordpress.org/theme/ashe.2.246.zip", "2.247": "https://downloads.wordpress.org/theme/ashe.2.247.zip", "2.248": "https://downloads.wordpress.org/theme/ashe.2.248.zip", "2.249": "https://downloads.wordpress.org/theme/ashe.2.249.zip", "2.250": "https://downloads.wordpress.org/theme/ashe.2.250.zip", "2.251": "https://downloads.wordpress.org/theme/ashe.2.251.zip", "2.252": "https://downloads.wordpress.org/theme/ashe.2.252.zip", "2.253": "https://downloads.wordpress.org/theme/ashe.2.253.zip", "2.254": "https://downloads.wordpress.org/theme/ashe.2.254.zip", "2.255": "https://downloads.wordpress.org/theme/ashe.2.255.zip", "2.256": "https://downloads.wordpress.org/theme/ashe.2.256.zip", "2.257": "https://downloads.wordpress.org/theme/ashe.2.257.zip", "2.258": "https://downloads.wordpress.org/theme/ashe.2.258.zip", "2.259": "https://downloads.wordpress.org/theme/ashe.2.259.zip", "2.260": "https://downloads.wordpress.org/theme/ashe.2.260.zip", "2.261": "https://downloads.wordpress.org/theme/ashe.2.261.zip", "2.262": "https://downloads.wordpress.org/theme/ashe.2.262.zip", "1.7.9.1": "https://downloads.wordpress.org/theme/ashe.1.7.9.1.zip", "1.7.9.2": "https://downloads.wordpress.org/theme/ashe.1.7.9.2.zip", "1.7.9.3": "https://downloads.wordpress.org/theme/ashe.1.7.9.3.zip", "1.9.7.1": "https://downloads.wordpress.org/theme/ashe.1.9.7.1.zip", "1.9.7.2": "https://downloads.wordpress.org/theme/ashe.1.9.7.2.zip", "1.9.7.3": "https://downloads.wordpress.org/theme/ashe.1.9.7.3.zip", "1.9.7.4": "https://downloads.wordpress.org/theme/ashe.1.9.7.4.zip", "1.9.7.5": "https://downloads.wordpress.org/theme/ashe.1.9.7.5.zip", "1.9.7.6": "https://downloads.wordpress.org/theme/ashe.1.9.7.6.zip", "1.9.7.7": "https://downloads.wordpress.org/theme/ashe.1.9.7.7.zip", "1.9.7.8": "https://downloads.wordpress.org/theme/ashe.1.9.7.8.zip", "1.9.7.9": "https://downloads.wordpress.org/theme/ashe.1.9.7.9.zip", "1.9.9.1": "https://downloads.wordpress.org/theme/ashe.1.9.9.1.zip", "1.9.9.2": "https://downloads.wordpress.org/theme/ashe.1.9.9.2.zip", "1.9.9.3": "https://downloads.wordpress.org/theme/ashe.1.9.9.3.zip", "1.9.9.4": "https://downloads.wordpress.org/theme/ashe.1.9.9.4.zip", "1.9.9.5": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.zip", "1.9.7.91": "https://downloads.wordpress.org/theme/ashe.1.9.7.91.zip", "1.9.7.92": "https://downloads.wordpress.org/theme/ashe.1.9.7.92.zip", "1.9.7.93": "https://downloads.wordpress.org/theme/ashe.1.9.7.93.zip", "1.9.7.94": "https://downloads.wordpress.org/theme/ashe.1.9.7.94.zip", "1.9.7.95": "https://downloads.wordpress.org/theme/ashe.1.9.7.95.zip", "1.9.7.96": "https://downloads.wordpress.org/theme/ashe.1.9.7.96.zip", "1.9.7.97": "https://downloads.wordpress.org/theme/ashe.1.9.7.97.zip", "1.9.7.98": "https://downloads.wordpress.org/theme/ashe.1.9.7.98.zip", "1.9.7.99": "https://downloads.wordpress.org/theme/ashe.1.9.7.99.zip", "1.9.9.5.1": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.1.zip", "1.9.9.5.2": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.2.zip", "1.9.9.5.3": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.3.zip", "1.9.9.5.4": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.4.zip", "1.9.9.5.5": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.5.zip", "1.9.9.5.6": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.6.zip", "1.9.9.5.7": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.7.zip", "1.9.9.5.8": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.8.zip", "1.9.9.5.9": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.9.zip", "1.9.7.99.01": "https://downloads.wordpress.org/theme/ashe.1.9.7.99.01.zip", "1.9.7.99.02": "https://downloads.wordpress.org/theme/ashe.1.9.7.99.02.zip", "1.9.7.99.03": "https://downloads.wordpress.org/theme/ashe.1.9.7.99.03.zip"}, "downloaded": 2232118, "num_ratings": 292, "preview_url": "https://wp-themes.com/ashe/", "reviews_url": "https://wordpress.org/support/theme/ashe/reviews/", "is_community": false, "last_updated": "2025-10-01", "requires_php": "5.2.4", "creation_time": "2018-01-22 12:52:23", "download_link": "https://downloads.wordpress.org/theme/ashe.2.262.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/ashe/screenshot.jpg?ver=2.262", "active_installs": 30000, "aspiresync_meta": {"id": "019a30c0-02ac-73d4-8ab6-ea74ed6c4bfa", "name": "Ashe", "slug": "ashe", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1759276800, "version": "2.262"}, "last_updated_time": "2025-10-01 05:39:23", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f01b-7057-a052-7b09a09beeef', 'did:web:api.aspiredev.org:packages:wp-theme:astra', 'astra', 'Astra', 'The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/', 'wp', 'wp-theme', 'proprietary', '{"name": "Astra", "slug": "astra", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "custom-colors": "Custom colors", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Brainstorm Force", "avatar": "https://secure.gravatar.com/avatar/b9280ac641a862e2e148513dfb9567e56a273b649dbfad5df6867d4700a685d2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brainstormforce/", "author_url": "https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme", "display_name": "Brainstorm Force", "user_nicename": "brainstormforce"}, "rating": 98, "status": "open", "ratings": {"1": 102, "2": 17, "3": 27, "4": 91, "5": 6043}, "version": "4.11.13", "homepage": "https://wordpress.org/themes/astra/", "requires": "5.3", "sections": {"description": "The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/astra.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/astra.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/astra.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/astra.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/astra.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/astra.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/astra.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/astra.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/astra.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/astra.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/astra.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/astra.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/astra.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/astra.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/astra.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/astra.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/astra.1.1.6.zip", "1.2.0": "https://downloads.wordpress.org/theme/astra.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/astra.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/astra.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/astra.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/astra.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/astra.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/astra.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/astra.1.2.7.zip", "1.3.0": "https://downloads.wordpress.org/theme/astra.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/astra.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/astra.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/astra.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/astra.1.3.4.zip", "1.4.0": "https://downloads.wordpress.org/theme/astra.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/astra.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/astra.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/astra.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/astra.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/astra.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/astra.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/astra.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/astra.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/astra.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/astra.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/astra.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/astra.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/astra.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/astra.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/astra.1.5.5.zip", "1.6.0": "https://downloads.wordpress.org/theme/astra.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/astra.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/astra.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/astra.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/astra.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/astra.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/astra.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/astra.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/astra.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/astra.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/astra.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/astra.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/astra.1.7.2.zip", "1.8.0": "https://downloads.wordpress.org/theme/astra.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/astra.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/astra.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/astra.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/astra.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/astra.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/astra.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/astra.1.8.7.zip", "2.0.0": "https://downloads.wordpress.org/theme/astra.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/astra.2.0.1.zip", "2.1.0": "https://downloads.wordpress.org/theme/astra.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/astra.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/astra.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/astra.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/astra.2.1.4.zip", "2.2.0": "https://downloads.wordpress.org/theme/astra.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/astra.2.2.1.zip", "2.3.0": "https://downloads.wordpress.org/theme/astra.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/astra.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/astra.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/astra.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/astra.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/astra.2.3.5.zip", "2.4.0": "https://downloads.wordpress.org/theme/astra.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/astra.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/astra.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/astra.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/theme/astra.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/theme/astra.2.4.5.zip", "2.5.0": "https://downloads.wordpress.org/theme/astra.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/theme/astra.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/theme/astra.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/theme/astra.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/astra.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/theme/astra.2.5.5.zip", "2.6.0": "https://downloads.wordpress.org/theme/astra.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/astra.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/theme/astra.2.6.2.zip", "3.0.0": "https://downloads.wordpress.org/theme/astra.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/astra.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/astra.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/astra.3.0.3.zip", "3.1.0": "https://downloads.wordpress.org/theme/astra.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/astra.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/astra.3.1.2.zip", "3.2.0": "https://downloads.wordpress.org/theme/astra.3.2.0.zip", "3.3.0": "https://downloads.wordpress.org/theme/astra.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/astra.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/theme/astra.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/theme/astra.3.3.3.zip", "3.4.0": "https://downloads.wordpress.org/theme/astra.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/theme/astra.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/theme/astra.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/theme/astra.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/theme/astra.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/theme/astra.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/theme/astra.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/theme/astra.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/theme/astra.3.4.8.zip", "3.5.0": "https://downloads.wordpress.org/theme/astra.3.5.0.zip", "3.6.0": "https://downloads.wordpress.org/theme/astra.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/theme/astra.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/theme/astra.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/theme/astra.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/theme/astra.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/theme/astra.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/theme/astra.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/theme/astra.3.6.7.zip", "3.6.8": "https://downloads.wordpress.org/theme/astra.3.6.8.zip", "3.6.9": "https://downloads.wordpress.org/theme/astra.3.6.9.zip", "3.7.0": "https://downloads.wordpress.org/theme/astra.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/theme/astra.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/theme/astra.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/theme/astra.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/theme/astra.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/theme/astra.3.7.5.zip", "3.7.6": "https://downloads.wordpress.org/theme/astra.3.7.6.zip", "3.7.7": "https://downloads.wordpress.org/theme/astra.3.7.7.zip", "3.7.8": "https://downloads.wordpress.org/theme/astra.3.7.8.zip", "3.7.9": "https://downloads.wordpress.org/theme/astra.3.7.9.zip", "3.8.0": "https://downloads.wordpress.org/theme/astra.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/theme/astra.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/theme/astra.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/theme/astra.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/theme/astra.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/theme/astra.3.8.5.zip", "3.9.0": "https://downloads.wordpress.org/theme/astra.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/theme/astra.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/theme/astra.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/theme/astra.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/theme/astra.3.9.4.zip", "4.0.0": "https://downloads.wordpress.org/theme/astra.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/astra.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/astra.4.0.2.zip", "4.1.0": "https://downloads.wordpress.org/theme/astra.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/astra.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/astra.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/astra.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/theme/astra.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/theme/astra.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/theme/astra.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/theme/astra.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/theme/astra.4.1.8.zip", "4.2.0": "https://downloads.wordpress.org/theme/astra.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/theme/astra.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/theme/astra.4.2.2.zip", "4.3.0": "https://downloads.wordpress.org/theme/astra.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/theme/astra.4.3.1.zip", "4.4.0": "https://downloads.wordpress.org/theme/astra.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/theme/astra.4.4.1.zip", "4.5.0": "https://downloads.wordpress.org/theme/astra.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/theme/astra.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/theme/astra.4.5.2.zip", "4.6.0": "https://downloads.wordpress.org/theme/astra.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/theme/astra.4.6.1.zip", "4.6.2": "https://downloads.wordpress.org/theme/astra.4.6.2.zip", "4.6.3": "https://downloads.wordpress.org/theme/astra.4.6.3.zip", "4.6.4": "https://downloads.wordpress.org/theme/astra.4.6.4.zip", "4.6.5": "https://downloads.wordpress.org/theme/astra.4.6.5.zip", "4.6.6": "https://downloads.wordpress.org/theme/astra.4.6.6.zip", "4.6.7": "https://downloads.wordpress.org/theme/astra.4.6.7.zip", "4.6.8": "https://downloads.wordpress.org/theme/astra.4.6.8.zip", "4.6.9": "https://downloads.wordpress.org/theme/astra.4.6.9.zip", "4.7.0": "https://downloads.wordpress.org/theme/astra.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/theme/astra.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/theme/astra.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/theme/astra.4.7.3.zip", "4.8.0": "https://downloads.wordpress.org/theme/astra.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/theme/astra.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/theme/astra.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/theme/astra.4.8.3.zip", "4.8.4": "https://downloads.wordpress.org/theme/astra.4.8.4.zip", "4.8.5": "https://downloads.wordpress.org/theme/astra.4.8.5.zip", "4.8.6": "https://downloads.wordpress.org/theme/astra.4.8.6.zip", "4.8.7": "https://downloads.wordpress.org/theme/astra.4.8.7.zip", "4.8.8": "https://downloads.wordpress.org/theme/astra.4.8.8.zip", "4.8.9": "https://downloads.wordpress.org/theme/astra.4.8.9.zip", "4.9.0": "https://downloads.wordpress.org/theme/astra.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/theme/astra.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/theme/astra.4.9.2.zip", "1.0.10": "https://downloads.wordpress.org/theme/astra.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/astra.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/astra.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/astra.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/theme/astra.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/theme/astra.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/theme/astra.1.0.16.zip", "1.0.17": "https://downloads.wordpress.org/theme/astra.1.0.17.zip", "1.0.18": "https://downloads.wordpress.org/theme/astra.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/theme/astra.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/astra.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/astra.1.0.21.zip", "1.0.22": "https://downloads.wordpress.org/theme/astra.1.0.22.zip", "1.0.23": "https://downloads.wordpress.org/theme/astra.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/theme/astra.1.0.24.zip", "1.0.25": "https://downloads.wordpress.org/theme/astra.1.0.25.zip", "1.0.26": "https://downloads.wordpress.org/theme/astra.1.0.26.zip", "1.0.27": "https://downloads.wordpress.org/theme/astra.1.0.27.zip", "1.0.28": "https://downloads.wordpress.org/theme/astra.1.0.28.zip", "1.0.29": "https://downloads.wordpress.org/theme/astra.1.0.29.zip", "1.0.30": "https://downloads.wordpress.org/theme/astra.1.0.30.zip", "1.0.31": "https://downloads.wordpress.org/theme/astra.1.0.31.zip", "1.0.32": "https://downloads.wordpress.org/theme/astra.1.0.32.zip", "1.4.10": "https://downloads.wordpress.org/theme/astra.1.4.10.zip", "3.7.10": "https://downloads.wordpress.org/theme/astra.3.7.10.zip", "4.10.0": "https://downloads.wordpress.org/theme/astra.4.10.0.zip", "4.10.1": "https://downloads.wordpress.org/theme/astra.4.10.1.zip", "4.11.0": "https://downloads.wordpress.org/theme/astra.4.11.0.zip", "4.11.1": "https://downloads.wordpress.org/theme/astra.4.11.1.zip", "4.11.2": "https://downloads.wordpress.org/theme/astra.4.11.2.zip", "4.11.3": "https://downloads.wordpress.org/theme/astra.4.11.3.zip", "4.11.4": "https://downloads.wordpress.org/theme/astra.4.11.4.zip", "4.11.5": "https://downloads.wordpress.org/theme/astra.4.11.5.zip", "4.11.6": "https://downloads.wordpress.org/theme/astra.4.11.6.zip", "4.11.7": "https://downloads.wordpress.org/theme/astra.4.11.7.zip", "4.11.8": "https://downloads.wordpress.org/theme/astra.4.11.8.zip", "4.11.9": "https://downloads.wordpress.org/theme/astra.4.11.9.zip", "4.6.10": "https://downloads.wordpress.org/theme/astra.4.6.10.zip", "4.6.11": "https://downloads.wordpress.org/theme/astra.4.6.11.zip", "4.6.12": "https://downloads.wordpress.org/theme/astra.4.6.12.zip", "4.6.13": "https://downloads.wordpress.org/theme/astra.4.6.13.zip", "4.6.14": "https://downloads.wordpress.org/theme/astra.4.6.14.zip", "4.6.15": "https://downloads.wordpress.org/theme/astra.4.6.15.zip", "4.6.16": "https://downloads.wordpress.org/theme/astra.4.6.16.zip", "4.8.10": "https://downloads.wordpress.org/theme/astra.4.8.10.zip", "4.8.11": "https://downloads.wordpress.org/theme/astra.4.8.11.zip", "4.8.12": "https://downloads.wordpress.org/theme/astra.4.8.12.zip", "4.8.13": "https://downloads.wordpress.org/theme/astra.4.8.13.zip", "1.0.3.1": "https://downloads.wordpress.org/theme/astra.1.0.3.1.zip", "1.0.4.1": "https://downloads.wordpress.org/theme/astra.1.0.4.1.zip", "1.0.5.1": "https://downloads.wordpress.org/theme/astra.1.0.5.1.zip", "1.0.5.2": "https://downloads.wordpress.org/theme/astra.1.0.5.2.zip", "1.2.7.1": "https://downloads.wordpress.org/theme/astra.1.2.7.1.zip", "1.2.7.2": "https://downloads.wordpress.org/theme/astra.1.2.7.2.zip", "4.11.10": "https://downloads.wordpress.org/theme/astra.4.11.10.zip", "4.11.11": "https://downloads.wordpress.org/theme/astra.4.11.11.zip", "4.11.12": "https://downloads.wordpress.org/theme/astra.4.11.12.zip", "4.11.13": "https://downloads.wordpress.org/theme/astra.4.11.13.zip"}, "downloaded": 17921462, "num_ratings": 6280, "preview_url": "https://wp-themes.com/astra/", "reviews_url": "https://wordpress.org/support/theme/astra/reviews/", "is_community": false, "last_updated": "2025-10-07", "requires_php": "5.3", "creation_time": "2017-05-30 15:45:06", "download_link": "https://downloads.wordpress.org/theme/astra.4.11.13.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/astra/screenshot.jpg?ver=4.11.13", "active_installs": 1000000, "aspiresync_meta": {"id": "019a30c0-028f-71f1-acbb-b4d0fa6db53f", "name": "Astra", "slug": "astra", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1759795200, "version": "4.11.13"}, "last_updated_time": "2025-10-07 09:34:04", "external_support_url": "https://wpastra.com/contact/", "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f033-71f8-b942-32afa59f8e5d', 'did:web:api.aspiredev.org:packages:wp-theme:bizora', 'bizora', 'Bizora', 'Bizora is a sleek and professional Full Site Editing (FSE) WordPress theme crafted for modern businesses, startups, agencies, consulting firms, corporate websites, digital marketing companies, finance, IT solutions, SaaS, and technology-driven projects. With its intuitive design and no-coding customization, you can effortlessly build and tailor every part of your site—from headers to footers. Packed with pre-built templates, block patterns, and multiple style variations, Bizora ensures your website looks polished, responsive, and ready to impress clients. Perfect for creating a strong online presence with speed, flexibility, and style. Check the real demo: https://demos.trendthemeswp.com/bizora', 'wp', 'wp-theme', 'proprietary', '{"name": "Bizora", "slug": "bizora", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Trendthemeswp", "avatar": "https://secure.gravatar.com/avatar/26b40ba9be0990132fd6aa8d0fe4896dac201d320aa8cd73559bb62d80c614c3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/trendsthemeswp/", "author_url": "https://trendthemeswp.com", "display_name": "trendsthemeswp", "user_nicename": "trendsthemeswp"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 1}, "version": "1.0.2", "homepage": "https://wordpress.org/themes/bizora/", "requires": "5.9", "sections": {"description": "Bizora is a sleek and professional Full Site Editing (FSE) WordPress theme crafted for modern businesses, startups, agencies, consulting firms, corporate websites, digital marketing companies, finance, IT solutions, SaaS, and technology-driven projects. With its intuitive design and no-coding customization, you can effortlessly build and tailor every part of your site—from headers to footers. Packed with pre-built templates, block patterns, and multiple style variations, Bizora ensures your website looks polished, responsive, and ready to impress clients. Perfect for creating a strong online presence with speed, flexibility, and style. Check the real demo: https://demos.trendthemeswp.com/bizora"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/bizora.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/bizora.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/bizora.1.0.2.zip"}, "downloaded": 4642, "num_ratings": 1, "preview_url": "https://wp-themes.com/bizora/", "reviews_url": "https://wordpress.org/support/theme/bizora/reviews/", "is_community": false, "last_updated": "2025-09-18", "requires_php": "7.4", "creation_time": "2025-09-07 23:31:37", "download_link": "https://downloads.wordpress.org/theme/bizora.1.0.2.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/bizora/screenshot.png?ver=1.0.2", "active_installs": 700, "aspiresync_meta": {"id": "019a30c0-0295-72e0-93b6-03b3adf643bb", "name": "Bizora", "slug": "bizora", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1758153600, "version": "1.0.2"}, "last_updated_time": "2025-09-18 05:15:40", "external_support_url": "", "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f04e-72a9-9e3a-297edd72eef9', 'did:web:api.aspiredev.org:packages:wp-theme:blocksy', 'blocksy', 'Blocksy', 'Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor.', 'wp', 'wp-theme', 'proprietary', '{"name": "Blocksy", "slug": "blocksy", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template"}, "author": {"author": "CreativeThemes", "avatar": "https://secure.gravatar.com/avatar/679bab9304179db1c86bd6c2b263379ec4d2c2ecbd3839830ebd15b23aa7d311?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/creativethemeshq/", "author_url": "https://creativethemes.com", "display_name": "Creative Themes", "user_nicename": "creativethemeshq"}, "rating": 100, "status": "open", "ratings": {"1": 4, "2": 2, "3": 2, "4": 2, "5": 850}, "version": "2.1.17", "homepage": "https://wordpress.org/themes/blocksy/", "requires": "6.5", "sections": {"description": "Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor."}, "versions": {"1.0.4": "https://downloads.wordpress.org/theme/blocksy.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/blocksy.1.0.5.zip", "1.0.7": "https://downloads.wordpress.org/theme/blocksy.1.0.7.zip", "1.1.2": "https://downloads.wordpress.org/theme/blocksy.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/blocksy.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/blocksy.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/blocksy.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/blocksy.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/blocksy.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/blocksy.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/blocksy.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/blocksy.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/blocksy.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/blocksy.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/blocksy.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/blocksy.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/blocksy.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/blocksy.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/blocksy.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/blocksy.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/blocksy.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/blocksy.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/blocksy.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/blocksy.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/blocksy.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/blocksy.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/blocksy.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/blocksy.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/blocksy.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/blocksy.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/blocksy.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/blocksy.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/blocksy.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/blocksy.1.4.2.zip", "1.5.0": "https://downloads.wordpress.org/theme/blocksy.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/blocksy.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/blocksy.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/blocksy.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/blocksy.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/blocksy.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/blocksy.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/blocksy.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/blocksy.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/blocksy.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/blocksy.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/blocksy.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/blocksy.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/blocksy.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/blocksy.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/blocksy.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/blocksy.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/blocksy.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/blocksy.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/blocksy.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/blocksy.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/blocksy.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/blocksy.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/blocksy.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/blocksy.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/blocksy.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/blocksy.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/blocksy.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/blocksy.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/blocksy.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/theme/blocksy.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/blocksy.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/blocksy.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/blocksy.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/blocksy.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/blocksy.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/blocksy.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/blocksy.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/blocksy.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/theme/blocksy.1.8.9.zip", "1.9.0": "https://downloads.wordpress.org/theme/blocksy.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/theme/blocksy.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/theme/blocksy.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/theme/blocksy.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/theme/blocksy.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/theme/blocksy.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/theme/blocksy.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/theme/blocksy.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/theme/blocksy.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/theme/blocksy.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/theme/blocksy.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/blocksy.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/blocksy.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/blocksy.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/blocksy.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/blocksy.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/blocksy.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/blocksy.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/blocksy.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/blocksy.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/blocksy.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/blocksy.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/blocksy.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/blocksy.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/blocksy.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/blocksy.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/blocksy.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/blocksy.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/blocksy.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/theme/blocksy.2.1.9.zip", "1.1.10": "https://downloads.wordpress.org/theme/blocksy.1.1.10.zip", "1.1.11": "https://downloads.wordpress.org/theme/blocksy.1.1.11.zip", "1.1.12": "https://downloads.wordpress.org/theme/blocksy.1.1.12.zip", "1.1.13": "https://downloads.wordpress.org/theme/blocksy.1.1.13.zip", "1.1.14": "https://downloads.wordpress.org/theme/blocksy.1.1.14.zip", "1.1.16": "https://downloads.wordpress.org/theme/blocksy.1.1.16.zip", "1.1.17": "https://downloads.wordpress.org/theme/blocksy.1.1.17.zip", "1.1.18": "https://downloads.wordpress.org/theme/blocksy.1.1.18.zip", "1.1.19": "https://downloads.wordpress.org/theme/blocksy.1.1.19.zip", "1.2.10": "https://downloads.wordpress.org/theme/blocksy.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/theme/blocksy.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/theme/blocksy.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/theme/blocksy.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/theme/blocksy.1.2.14.zip", "1.5.10": "https://downloads.wordpress.org/theme/blocksy.1.5.10.zip", "1.6.10": "https://downloads.wordpress.org/theme/blocksy.1.6.10.zip", "1.6.11": "https://downloads.wordpress.org/theme/blocksy.1.6.11.zip", "1.6.12": "https://downloads.wordpress.org/theme/blocksy.1.6.12.zip", "1.6.13": "https://downloads.wordpress.org/theme/blocksy.1.6.13.zip", "1.6.14": "https://downloads.wordpress.org/theme/blocksy.1.6.14.zip", "1.6.15": "https://downloads.wordpress.org/theme/blocksy.1.6.15.zip", "1.6.16": "https://downloads.wordpress.org/theme/blocksy.1.6.16.zip", "1.7.10": "https://downloads.wordpress.org/theme/blocksy.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/theme/blocksy.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/theme/blocksy.1.7.12.zip", "1.7.13": "https://downloads.wordpress.org/theme/blocksy.1.7.13.zip", "1.7.14": "https://downloads.wordpress.org/theme/blocksy.1.7.14.zip", "1.7.15": "https://downloads.wordpress.org/theme/blocksy.1.7.15.zip", "1.7.16": "https://downloads.wordpress.org/theme/blocksy.1.7.16.zip", "1.7.17": "https://downloads.wordpress.org/theme/blocksy.1.7.17.zip", "1.7.18": "https://downloads.wordpress.org/theme/blocksy.1.7.18.zip", "1.7.19": "https://downloads.wordpress.org/theme/blocksy.1.7.19.zip", "1.7.20": "https://downloads.wordpress.org/theme/blocksy.1.7.20.zip", "1.7.21": "https://downloads.wordpress.org/theme/blocksy.1.7.21.zip", "1.7.22": "https://downloads.wordpress.org/theme/blocksy.1.7.22.zip", "1.7.23": "https://downloads.wordpress.org/theme/blocksy.1.7.23.zip", "1.7.24": "https://downloads.wordpress.org/theme/blocksy.1.7.24.zip", "1.7.25": "https://downloads.wordpress.org/theme/blocksy.1.7.25.zip", "1.7.26": "https://downloads.wordpress.org/theme/blocksy.1.7.26.zip", "1.7.27": "https://downloads.wordpress.org/theme/blocksy.1.7.27.zip", "1.7.28": "https://downloads.wordpress.org/theme/blocksy.1.7.28.zip", "1.7.29": "https://downloads.wordpress.org/theme/blocksy.1.7.29.zip", "1.7.30": "https://downloads.wordpress.org/theme/blocksy.1.7.30.zip", "1.7.31": "https://downloads.wordpress.org/theme/blocksy.1.7.31.zip", "1.7.32": "https://downloads.wordpress.org/theme/blocksy.1.7.32.zip", "1.7.33": "https://downloads.wordpress.org/theme/blocksy.1.7.33.zip", "1.7.34": "https://downloads.wordpress.org/theme/blocksy.1.7.34.zip", "1.7.35": "https://downloads.wordpress.org/theme/blocksy.1.7.35.zip", "1.7.36": "https://downloads.wordpress.org/theme/blocksy.1.7.36.zip", "1.7.37": "https://downloads.wordpress.org/theme/blocksy.1.7.37.zip", "1.7.38": "https://downloads.wordpress.org/theme/blocksy.1.7.38.zip", "1.7.39": "https://downloads.wordpress.org/theme/blocksy.1.7.39.zip", "1.7.40": "https://downloads.wordpress.org/theme/blocksy.1.7.40.zip", "1.7.41": "https://downloads.wordpress.org/theme/blocksy.1.7.41.zip", "1.7.42": "https://downloads.wordpress.org/theme/blocksy.1.7.42.zip", "1.7.43": "https://downloads.wordpress.org/theme/blocksy.1.7.43.zip", "1.7.44": "https://downloads.wordpress.org/theme/blocksy.1.7.44.zip", "1.7.45": "https://downloads.wordpress.org/theme/blocksy.1.7.45.zip", "1.7.46": "https://downloads.wordpress.org/theme/blocksy.1.7.46.zip", "1.7.47": "https://downloads.wordpress.org/theme/blocksy.1.7.47.zip", "1.7.48": "https://downloads.wordpress.org/theme/blocksy.1.7.48.zip", "1.7.49": "https://downloads.wordpress.org/theme/blocksy.1.7.49.zip", "1.7.50": "https://downloads.wordpress.org/theme/blocksy.1.7.50.zip", "1.7.51": "https://downloads.wordpress.org/theme/blocksy.1.7.51.zip", "1.7.52": "https://downloads.wordpress.org/theme/blocksy.1.7.52.zip", "1.7.53": "https://downloads.wordpress.org/theme/blocksy.1.7.53.zip", "1.7.54": "https://downloads.wordpress.org/theme/blocksy.1.7.54.zip", "1.7.55": "https://downloads.wordpress.org/theme/blocksy.1.7.55.zip", "1.7.56": "https://downloads.wordpress.org/theme/blocksy.1.7.56.zip", "1.7.57": "https://downloads.wordpress.org/theme/blocksy.1.7.57.zip", "1.7.58": "https://downloads.wordpress.org/theme/blocksy.1.7.58.zip", "1.7.59": "https://downloads.wordpress.org/theme/blocksy.1.7.59.zip", "1.7.60": "https://downloads.wordpress.org/theme/blocksy.1.7.60.zip", "1.7.61": "https://downloads.wordpress.org/theme/blocksy.1.7.61.zip", "1.7.62": "https://downloads.wordpress.org/theme/blocksy.1.7.62.zip", "1.7.63": "https://downloads.wordpress.org/theme/blocksy.1.7.63.zip", "1.7.64": "https://downloads.wordpress.org/theme/blocksy.1.7.64.zip", "1.7.65": "https://downloads.wordpress.org/theme/blocksy.1.7.65.zip", "1.7.66": "https://downloads.wordpress.org/theme/blocksy.1.7.66.zip", "1.7.67": "https://downloads.wordpress.org/theme/blocksy.1.7.67.zip", "1.7.68": "https://downloads.wordpress.org/theme/blocksy.1.7.68.zip", "1.7.69": "https://downloads.wordpress.org/theme/blocksy.1.7.69.zip", "1.7.70": "https://downloads.wordpress.org/theme/blocksy.1.7.70.zip", "1.7.71": "https://downloads.wordpress.org/theme/blocksy.1.7.71.zip", "1.8.10": "https://downloads.wordpress.org/theme/blocksy.1.8.10.zip", "1.8.11": "https://downloads.wordpress.org/theme/blocksy.1.8.11.zip", "1.8.12": "https://downloads.wordpress.org/theme/blocksy.1.8.12.zip", "1.8.13": "https://downloads.wordpress.org/theme/blocksy.1.8.13.zip", "1.8.14": "https://downloads.wordpress.org/theme/blocksy.1.8.14.zip", "1.8.15": "https://downloads.wordpress.org/theme/blocksy.1.8.15.zip", "1.8.16": "https://downloads.wordpress.org/theme/blocksy.1.8.16.zip", "1.8.17": "https://downloads.wordpress.org/theme/blocksy.1.8.17.zip", "1.8.18": "https://downloads.wordpress.org/theme/blocksy.1.8.18.zip", "1.8.19": "https://downloads.wordpress.org/theme/blocksy.1.8.19.zip", "1.8.20": "https://downloads.wordpress.org/theme/blocksy.1.8.20.zip", "1.8.21": "https://downloads.wordpress.org/theme/blocksy.1.8.21.zip", "1.8.22": "https://downloads.wordpress.org/theme/blocksy.1.8.22.zip", "1.8.23": "https://downloads.wordpress.org/theme/blocksy.1.8.23.zip", "1.8.24": "https://downloads.wordpress.org/theme/blocksy.1.8.24.zip", "1.8.25": "https://downloads.wordpress.org/theme/blocksy.1.8.25.zip", "1.8.26": "https://downloads.wordpress.org/theme/blocksy.1.8.26.zip", "1.8.27": "https://downloads.wordpress.org/theme/blocksy.1.8.27.zip", "1.8.28": "https://downloads.wordpress.org/theme/blocksy.1.8.28.zip", "1.8.29": "https://downloads.wordpress.org/theme/blocksy.1.8.29.zip", "1.8.30": "https://downloads.wordpress.org/theme/blocksy.1.8.30.zip", "1.8.31": "https://downloads.wordpress.org/theme/blocksy.1.8.31.zip", "1.8.32": "https://downloads.wordpress.org/theme/blocksy.1.8.32.zip", "1.8.33": "https://downloads.wordpress.org/theme/blocksy.1.8.33.zip", "1.8.34": "https://downloads.wordpress.org/theme/blocksy.1.8.34.zip", "1.8.35": "https://downloads.wordpress.org/theme/blocksy.1.8.35.zip", "1.8.36": "https://downloads.wordpress.org/theme/blocksy.1.8.36.zip", "1.8.37": "https://downloads.wordpress.org/theme/blocksy.1.8.37.zip", "1.8.38": "https://downloads.wordpress.org/theme/blocksy.1.8.38.zip", "1.8.39": "https://downloads.wordpress.org/theme/blocksy.1.8.39.zip", "1.8.40": "https://downloads.wordpress.org/theme/blocksy.1.8.40.zip", "1.8.41": "https://downloads.wordpress.org/theme/blocksy.1.8.41.zip", "1.8.42": "https://downloads.wordpress.org/theme/blocksy.1.8.42.zip", "1.8.43": "https://downloads.wordpress.org/theme/blocksy.1.8.43.zip", "1.8.44": "https://downloads.wordpress.org/theme/blocksy.1.8.44.zip", "1.8.45": "https://downloads.wordpress.org/theme/blocksy.1.8.45.zip", "1.8.46": "https://downloads.wordpress.org/theme/blocksy.1.8.46.zip", "1.8.47": "https://downloads.wordpress.org/theme/blocksy.1.8.47.zip", "1.8.49": "https://downloads.wordpress.org/theme/blocksy.1.8.49.zip", "1.8.50": "https://downloads.wordpress.org/theme/blocksy.1.8.50.zip", "1.8.51": "https://downloads.wordpress.org/theme/blocksy.1.8.51.zip", "1.8.52": "https://downloads.wordpress.org/theme/blocksy.1.8.52.zip", "1.8.53": "https://downloads.wordpress.org/theme/blocksy.1.8.53.zip", "1.8.54": "https://downloads.wordpress.org/theme/blocksy.1.8.54.zip", "1.8.55": "https://downloads.wordpress.org/theme/blocksy.1.8.55.zip", "1.8.56": "https://downloads.wordpress.org/theme/blocksy.1.8.56.zip", "1.8.57": "https://downloads.wordpress.org/theme/blocksy.1.8.57.zip", "1.8.58": "https://downloads.wordpress.org/theme/blocksy.1.8.58.zip", "1.8.59": "https://downloads.wordpress.org/theme/blocksy.1.8.59.zip", "1.8.60": "https://downloads.wordpress.org/theme/blocksy.1.8.60.zip", "1.8.61": "https://downloads.wordpress.org/theme/blocksy.1.8.61.zip", "1.8.62": "https://downloads.wordpress.org/theme/blocksy.1.8.62.zip", "1.8.63": "https://downloads.wordpress.org/theme/blocksy.1.8.63.zip", "1.8.64": "https://downloads.wordpress.org/theme/blocksy.1.8.64.zip", "1.8.65": "https://downloads.wordpress.org/theme/blocksy.1.8.65.zip", "1.8.66": "https://downloads.wordpress.org/theme/blocksy.1.8.66.zip", "1.8.67": "https://downloads.wordpress.org/theme/blocksy.1.8.67.zip", "1.8.68": "https://downloads.wordpress.org/theme/blocksy.1.8.68.zip", "1.8.69": "https://downloads.wordpress.org/theme/blocksy.1.8.69.zip", "1.8.70": "https://downloads.wordpress.org/theme/blocksy.1.8.70.zip", "1.8.71": "https://downloads.wordpress.org/theme/blocksy.1.8.71.zip", "1.8.72": "https://downloads.wordpress.org/theme/blocksy.1.8.72.zip", "1.8.73": "https://downloads.wordpress.org/theme/blocksy.1.8.73.zip", "1.8.74": "https://downloads.wordpress.org/theme/blocksy.1.8.74.zip", "1.8.75": "https://downloads.wordpress.org/theme/blocksy.1.8.75.zip", "1.8.76": "https://downloads.wordpress.org/theme/blocksy.1.8.76.zip", "1.8.77": "https://downloads.wordpress.org/theme/blocksy.1.8.77.zip", "1.8.78": "https://downloads.wordpress.org/theme/blocksy.1.8.78.zip", "1.8.79": "https://downloads.wordpress.org/theme/blocksy.1.8.79.zip", "1.8.80": "https://downloads.wordpress.org/theme/blocksy.1.8.80.zip", "1.8.81": "https://downloads.wordpress.org/theme/blocksy.1.8.81.zip", "1.8.82": "https://downloads.wordpress.org/theme/blocksy.1.8.82.zip", "1.8.83": "https://downloads.wordpress.org/theme/blocksy.1.8.83.zip", "1.8.84": "https://downloads.wordpress.org/theme/blocksy.1.8.84.zip", "1.8.85": "https://downloads.wordpress.org/theme/blocksy.1.8.85.zip", "1.8.86": "https://downloads.wordpress.org/theme/blocksy.1.8.86.zip", "1.8.87": "https://downloads.wordpress.org/theme/blocksy.1.8.87.zip", "1.8.88": "https://downloads.wordpress.org/theme/blocksy.1.8.88.zip", "1.8.89": "https://downloads.wordpress.org/theme/blocksy.1.8.89.zip", "1.8.90": "https://downloads.wordpress.org/theme/blocksy.1.8.90.zip", "1.8.91": "https://downloads.wordpress.org/theme/blocksy.1.8.91.zip", "1.8.92": "https://downloads.wordpress.org/theme/blocksy.1.8.92.zip", "1.8.93": "https://downloads.wordpress.org/theme/blocksy.1.8.93.zip", "1.8.94": "https://downloads.wordpress.org/theme/blocksy.1.8.94.zip", "1.8.95": "https://downloads.wordpress.org/theme/blocksy.1.8.95.zip", "1.8.96": "https://downloads.wordpress.org/theme/blocksy.1.8.96.zip", "1.8.97": "https://downloads.wordpress.org/theme/blocksy.1.8.97.zip", "1.8.98": "https://downloads.wordpress.org/theme/blocksy.1.8.98.zip", "1.8.99": "https://downloads.wordpress.org/theme/blocksy.1.8.99.zip", "1.9.10": "https://downloads.wordpress.org/theme/blocksy.1.9.10.zip", "1.9.11": "https://downloads.wordpress.org/theme/blocksy.1.9.11.zip", "2.0.10": "https://downloads.wordpress.org/theme/blocksy.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/theme/blocksy.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/theme/blocksy.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/theme/blocksy.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/theme/blocksy.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/theme/blocksy.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/theme/blocksy.2.0.16.zip", "2.0.17": "https://downloads.wordpress.org/theme/blocksy.2.0.17.zip", "2.0.18": "https://downloads.wordpress.org/theme/blocksy.2.0.18.zip", "2.0.19": "https://downloads.wordpress.org/theme/blocksy.2.0.19.zip", "2.0.20": "https://downloads.wordpress.org/theme/blocksy.2.0.20.zip", "2.0.21": "https://downloads.wordpress.org/theme/blocksy.2.0.21.zip", "2.0.22": "https://downloads.wordpress.org/theme/blocksy.2.0.22.zip", "2.0.23": "https://downloads.wordpress.org/theme/blocksy.2.0.23.zip", "2.0.24": "https://downloads.wordpress.org/theme/blocksy.2.0.24.zip", "2.0.25": "https://downloads.wordpress.org/theme/blocksy.2.0.25.zip", "2.0.26": "https://downloads.wordpress.org/theme/blocksy.2.0.26.zip", "2.0.27": "https://downloads.wordpress.org/theme/blocksy.2.0.27.zip", "2.0.28": "https://downloads.wordpress.org/theme/blocksy.2.0.28.zip", "2.0.29": "https://downloads.wordpress.org/theme/blocksy.2.0.29.zip", "2.0.30": "https://downloads.wordpress.org/theme/blocksy.2.0.30.zip", "2.0.31": "https://downloads.wordpress.org/theme/blocksy.2.0.31.zip", "2.0.32": "https://downloads.wordpress.org/theme/blocksy.2.0.32.zip", "2.0.33": "https://downloads.wordpress.org/theme/blocksy.2.0.33.zip", "2.0.34": "https://downloads.wordpress.org/theme/blocksy.2.0.34.zip", "2.0.35": "https://downloads.wordpress.org/theme/blocksy.2.0.35.zip", "2.0.36": "https://downloads.wordpress.org/theme/blocksy.2.0.36.zip", "2.0.37": "https://downloads.wordpress.org/theme/blocksy.2.0.37.zip", "2.0.38": "https://downloads.wordpress.org/theme/blocksy.2.0.38.zip", "2.0.39": "https://downloads.wordpress.org/theme/blocksy.2.0.39.zip", "2.0.40": "https://downloads.wordpress.org/theme/blocksy.2.0.40.zip", "2.0.41": "https://downloads.wordpress.org/theme/blocksy.2.0.41.zip", "2.0.42": "https://downloads.wordpress.org/theme/blocksy.2.0.42.zip", "2.0.43": "https://downloads.wordpress.org/theme/blocksy.2.0.43.zip", "2.0.44": "https://downloads.wordpress.org/theme/blocksy.2.0.44.zip", "2.0.45": "https://downloads.wordpress.org/theme/blocksy.2.0.45.zip", "2.0.46": "https://downloads.wordpress.org/theme/blocksy.2.0.46.zip", "2.0.47": "https://downloads.wordpress.org/theme/blocksy.2.0.47.zip", "2.0.48": "https://downloads.wordpress.org/theme/blocksy.2.0.48.zip", "2.0.49": "https://downloads.wordpress.org/theme/blocksy.2.0.49.zip", "2.0.50": "https://downloads.wordpress.org/theme/blocksy.2.0.50.zip", "2.0.51": "https://downloads.wordpress.org/theme/blocksy.2.0.51.zip", "2.0.52": "https://downloads.wordpress.org/theme/blocksy.2.0.52.zip", "2.0.53": "https://downloads.wordpress.org/theme/blocksy.2.0.53.zip", "2.0.54": "https://downloads.wordpress.org/theme/blocksy.2.0.54.zip", "2.0.55": "https://downloads.wordpress.org/theme/blocksy.2.0.55.zip", "2.0.56": "https://downloads.wordpress.org/theme/blocksy.2.0.56.zip", "2.0.57": "https://downloads.wordpress.org/theme/blocksy.2.0.57.zip", "2.0.58": "https://downloads.wordpress.org/theme/blocksy.2.0.58.zip", "2.0.59": "https://downloads.wordpress.org/theme/blocksy.2.0.59.zip", "2.0.60": "https://downloads.wordpress.org/theme/blocksy.2.0.60.zip", "2.0.61": "https://downloads.wordpress.org/theme/blocksy.2.0.61.zip", "2.0.62": "https://downloads.wordpress.org/theme/blocksy.2.0.62.zip", "2.0.63": "https://downloads.wordpress.org/theme/blocksy.2.0.63.zip", "2.0.64": "https://downloads.wordpress.org/theme/blocksy.2.0.64.zip", "2.0.65": "https://downloads.wordpress.org/theme/blocksy.2.0.65.zip", "2.0.66": "https://downloads.wordpress.org/theme/blocksy.2.0.66.zip", "2.0.67": "https://downloads.wordpress.org/theme/blocksy.2.0.67.zip", "2.0.68": "https://downloads.wordpress.org/theme/blocksy.2.0.68.zip", "2.0.69": "https://downloads.wordpress.org/theme/blocksy.2.0.69.zip", "2.0.70": "https://downloads.wordpress.org/theme/blocksy.2.0.70.zip", "2.0.71": "https://downloads.wordpress.org/theme/blocksy.2.0.71.zip", "2.0.72": "https://downloads.wordpress.org/theme/blocksy.2.0.72.zip", "2.0.73": "https://downloads.wordpress.org/theme/blocksy.2.0.73.zip", "2.0.74": "https://downloads.wordpress.org/theme/blocksy.2.0.74.zip", "2.0.75": "https://downloads.wordpress.org/theme/blocksy.2.0.75.zip", "2.0.76": "https://downloads.wordpress.org/theme/blocksy.2.0.76.zip", "2.0.77": "https://downloads.wordpress.org/theme/blocksy.2.0.77.zip", "2.0.78": "https://downloads.wordpress.org/theme/blocksy.2.0.78.zip", "2.0.79": "https://downloads.wordpress.org/theme/blocksy.2.0.79.zip", "2.0.80": "https://downloads.wordpress.org/theme/blocksy.2.0.80.zip", "2.0.81": "https://downloads.wordpress.org/theme/blocksy.2.0.81.zip", "2.0.82": "https://downloads.wordpress.org/theme/blocksy.2.0.82.zip", "2.0.83": "https://downloads.wordpress.org/theme/blocksy.2.0.83.zip", "2.0.84": "https://downloads.wordpress.org/theme/blocksy.2.0.84.zip", "2.0.85": "https://downloads.wordpress.org/theme/blocksy.2.0.85.zip", "2.0.86": "https://downloads.wordpress.org/theme/blocksy.2.0.86.zip", "2.0.87": "https://downloads.wordpress.org/theme/blocksy.2.0.87.zip", "2.0.88": "https://downloads.wordpress.org/theme/blocksy.2.0.88.zip", "2.0.89": "https://downloads.wordpress.org/theme/blocksy.2.0.89.zip", "2.0.90": "https://downloads.wordpress.org/theme/blocksy.2.0.90.zip", "2.0.91": "https://downloads.wordpress.org/theme/blocksy.2.0.91.zip", "2.0.92": "https://downloads.wordpress.org/theme/blocksy.2.0.92.zip", "2.0.93": "https://downloads.wordpress.org/theme/blocksy.2.0.93.zip", "2.0.94": "https://downloads.wordpress.org/theme/blocksy.2.0.94.zip", "2.0.95": "https://downloads.wordpress.org/theme/blocksy.2.0.95.zip", "2.0.96": "https://downloads.wordpress.org/theme/blocksy.2.0.96.zip", "2.0.97": "https://downloads.wordpress.org/theme/blocksy.2.0.97.zip", "2.0.98": "https://downloads.wordpress.org/theme/blocksy.2.0.98.zip", "2.0.99": "https://downloads.wordpress.org/theme/blocksy.2.0.99.zip", "2.1.10": "https://downloads.wordpress.org/theme/blocksy.2.1.10.zip", "2.1.11": "https://downloads.wordpress.org/theme/blocksy.2.1.11.zip", "2.1.12": "https://downloads.wordpress.org/theme/blocksy.2.1.12.zip", "2.1.13": "https://downloads.wordpress.org/theme/blocksy.2.1.13.zip", "2.1.14": "https://downloads.wordpress.org/theme/blocksy.2.1.14.zip", "2.1.15": "https://downloads.wordpress.org/theme/blocksy.2.1.15.zip", "2.1.16": "https://downloads.wordpress.org/theme/blocksy.2.1.16.zip", "2.1.17": "https://downloads.wordpress.org/theme/blocksy.2.1.17.zip", "1.8.3.1": "https://downloads.wordpress.org/theme/blocksy.1.8.3.1.zip", "1.8.3.2": "https://downloads.wordpress.org/theme/blocksy.1.8.3.2.zip", "1.8.3.3": "https://downloads.wordpress.org/theme/blocksy.1.8.3.3.zip", "1.8.3.4": "https://downloads.wordpress.org/theme/blocksy.1.8.3.4.zip", "1.8.4.1": "https://downloads.wordpress.org/theme/blocksy.1.8.4.1.zip", "1.8.4.2": "https://downloads.wordpress.org/theme/blocksy.1.8.4.2.zip", "1.8.4.3": "https://downloads.wordpress.org/theme/blocksy.1.8.4.3.zip", "1.8.4.4": "https://downloads.wordpress.org/theme/blocksy.1.8.4.4.zip", "1.8.4.5": "https://downloads.wordpress.org/theme/blocksy.1.8.4.5.zip", "1.8.5.1": "https://downloads.wordpress.org/theme/blocksy.1.8.5.1.zip", "1.8.5.2": "https://downloads.wordpress.org/theme/blocksy.1.8.5.2.zip", "1.8.5.3": "https://downloads.wordpress.org/theme/blocksy.1.8.5.3.zip", "1.8.5.4": "https://downloads.wordpress.org/theme/blocksy.1.8.5.4.zip", "1.8.5.5": "https://downloads.wordpress.org/theme/blocksy.1.8.5.5.zip", "1.8.5.6": "https://downloads.wordpress.org/theme/blocksy.1.8.5.6.zip", "1.8.5.7": "https://downloads.wordpress.org/theme/blocksy.1.8.5.7.zip", "1.8.5.8": "https://downloads.wordpress.org/theme/blocksy.1.8.5.8.zip", "1.8.5.9": "https://downloads.wordpress.org/theme/blocksy.1.8.5.9.zip", "1.8.6.1": "https://downloads.wordpress.org/theme/blocksy.1.8.6.1.zip", "1.8.6.2": "https://downloads.wordpress.org/theme/blocksy.1.8.6.2.zip", "1.8.6.3": "https://downloads.wordpress.org/theme/blocksy.1.8.6.3.zip", "1.8.6.4": "https://downloads.wordpress.org/theme/blocksy.1.8.6.4.zip", "1.8.6.5": "https://downloads.wordpress.org/theme/blocksy.1.8.6.5.zip", "1.8.6.6": "https://downloads.wordpress.org/theme/blocksy.1.8.6.6.zip", "1.8.6.7": "https://downloads.wordpress.org/theme/blocksy.1.8.6.7.zip", "1.8.6.8": "https://downloads.wordpress.org/theme/blocksy.1.8.6.8.zip", "1.8.6.9": "https://downloads.wordpress.org/theme/blocksy.1.8.6.9.zip", "1.8.59.1": "https://downloads.wordpress.org/theme/blocksy.1.8.59.1.zip"}, "downloaded": 5385745, "num_ratings": 860, "preview_url": "https://wp-themes.com/blocksy/", "reviews_url": "https://wordpress.org/support/theme/blocksy/reviews/", "is_community": false, "last_updated": "2025-10-17", "requires_php": "7.0", "creation_time": "2019-05-10 06:18:06", "download_link": "https://downloads.wordpress.org/theme/blocksy.2.1.17.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/blocksy/screenshot.jpg?ver=2.1.17", "active_installs": 200000, "aspiresync_meta": {"id": "019a30c0-02b0-73b5-949e-1d2ecf76680c", "name": "Blocksy", "slug": "blocksy", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1760659200, "version": "2.1.17"}, "last_updated_time": "2025-10-17 16:13:10", "external_support_url": "https://creativethemes.com/blocksy/support/", "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f069-7225-aa8d-ea45b49aea4f', 'did:web:api.aspiredev.org:packages:wp-theme:blogfull', 'blogfull', 'Blogfull', 'Blogfull is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Blogfull is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Blogfull is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogus/blogfull/ and documentation at https://docs.themeansar.com/docs/blogus/', 'wp', 'wp-theme', 'GPL', '{"name": "Blogfull", "slug": "blogfull", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "parent": {"name": "Blogus", "slug": "blogus", "homepage": "https://wordpress.org/themes/blogus/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "0.7", "homepage": "https://wordpress.org/themes/blogfull/", "requires": "6.7", "sections": {"description": "Blogfull is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Blogfull is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Blogfull is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogus/blogfull/ and documentation at https://docs.themeansar.com/docs/blogus/"}, "template": "blogus", "versions": {"0.1": "https://downloads.wordpress.org/theme/blogfull.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/blogfull.0.2.zip", "0.4": "https://downloads.wordpress.org/theme/blogfull.0.4.zip", "0.5": "https://downloads.wordpress.org/theme/blogfull.0.5.zip", "0.6": "https://downloads.wordpress.org/theme/blogfull.0.6.zip", "0.7": "https://downloads.wordpress.org/theme/blogfull.0.7.zip"}, "downloaded": 6251, "num_ratings": 0, "preview_url": "https://wp-themes.com/blogfull/", "reviews_url": "https://wordpress.org/support/theme/blogfull/reviews/", "is_community": false, "last_updated": "2025-08-11", "requires_php": "7.4", "creation_time": "2025-07-06 22:01:22", "download_link": "https://downloads.wordpress.org/theme/blogfull.0.7.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/blogfull/screenshot.jpg?ver=0.7", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-029c-71c9-b08e-81b734d230b0", "name": "Blogfull", "slug": "blogfull", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1754870400, "version": "0.7"}, "last_updated_time": "2025-08-11 04:09:25", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f085-7025-b277-dc0dffcdd4e3', 'did:web:api.aspiredev.org:packages:wp-theme:bloggers', 'bloggers', 'Bloggers', 'Bloggers is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Bloggers is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Bloggers is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogarise/bloggers/ and documentation at https://docs.themeansar.com/docs/blogarise/', 'wp', 'wp-theme', 'GPL', '{"name": "Bloggers", "slug": "bloggers", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "parent": {"name": "BlogArise", "slug": "blogarise", "homepage": "https://wordpress.org/themes/blogarise/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "0.3", "homepage": "https://wordpress.org/themes/bloggers/", "requires": false, "sections": {"description": "Bloggers is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Bloggers is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Bloggers is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogarise/bloggers/ and documentation at https://docs.themeansar.com/docs/blogarise/"}, "template": "blogarise", "versions": {"0.1": "https://downloads.wordpress.org/theme/bloggers.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/bloggers.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/bloggers.0.3.zip"}, "downloaded": 3872, "num_ratings": 0, "preview_url": "https://wp-themes.com/bloggers/", "reviews_url": "https://wordpress.org/support/theme/bloggers/reviews/", "is_community": false, "last_updated": "2025-09-18", "requires_php": "7.4", "creation_time": "2025-08-27 10:32:14", "download_link": "https://downloads.wordpress.org/theme/bloggers.0.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/bloggers/screenshot.jpg?ver=0.3", "active_installs": 800, "aspiresync_meta": {"id": "019a30c0-0298-721f-89ef-051cadeeba63", "name": "Bloggers", "slug": "bloggers", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1758153600, "version": "0.3"}, "last_updated_time": "2025-09-18 05:13:46", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f0d8-700a-b885-194f667f66c9', 'did:web:api.aspiredev.org:packages:wp-theme:blogus', 'blogus', 'Blogus', 'Blogus is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Blogus is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Blogus is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogus-demos/ and documentation at https://docs.themeansar.com/docs/blogus/', 'wp', 'wp-theme', 'GPL', '{"name": "Blogus", "slug": "blogus", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "custom-logo": "Custom logo", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "rating": 98, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 1, "5": 12}, "version": "2.7.1", "homepage": "https://wordpress.org/themes/blogus/", "requires": "6.7", "sections": {"description": "Blogus is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Blogus is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Blogus is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogus-demos/ and documentation at https://docs.themeansar.com/docs/blogus/"}, "versions": {"0.1": "https://downloads.wordpress.org/theme/blogus.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/blogus.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/blogus.0.3.zip", "0.4": "https://downloads.wordpress.org/theme/blogus.0.4.zip", "0.5": "https://downloads.wordpress.org/theme/blogus.0.5.zip", "0.6": "https://downloads.wordpress.org/theme/blogus.0.6.zip", "0.7": "https://downloads.wordpress.org/theme/blogus.0.7.zip", "0.8": "https://downloads.wordpress.org/theme/blogus.0.8.zip", "0.9": "https://downloads.wordpress.org/theme/blogus.0.9.zip", "2.2.1": "https://downloads.wordpress.org/theme/blogus.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/blogus.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/blogus.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/blogus.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/blogus.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/blogus.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/theme/blogus.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/theme/blogus.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/theme/blogus.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/theme/blogus.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/blogus.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/blogus.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/blogus.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/blogus.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/blogus.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/blogus.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/blogus.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/blogus.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/theme/blogus.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/theme/blogus.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/blogus.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/blogus.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/blogus.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/theme/blogus.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/theme/blogus.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/theme/blogus.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/theme/blogus.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/theme/blogus.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/theme/blogus.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/theme/blogus.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/theme/blogus.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/theme/blogus.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/theme/blogus.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/blogus.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/theme/blogus.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/theme/blogus.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/theme/blogus.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/theme/blogus.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/theme/blogus.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/theme/blogus.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/blogus.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/theme/blogus.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/theme/blogus.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/theme/blogus.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/theme/blogus.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/theme/blogus.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/theme/blogus.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/theme/blogus.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/theme/blogus.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/theme/blogus.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/theme/blogus.2.7.1.zip", "1.0.0.1": "https://downloads.wordpress.org/theme/blogus.1.0.0.1.zip", "1.0.0.2": "https://downloads.wordpress.org/theme/blogus.1.0.0.2.zip", "1.0.0.3": "https://downloads.wordpress.org/theme/blogus.1.0.0.3.zip", "1.0.0.4": "https://downloads.wordpress.org/theme/blogus.1.0.0.4.zip", "1.0.0.5": "https://downloads.wordpress.org/theme/blogus.1.0.0.5.zip", "1.0.0.6": "https://downloads.wordpress.org/theme/blogus.1.0.0.6.zip", "1.0.0.7": "https://downloads.wordpress.org/theme/blogus.1.0.0.7.zip", "1.0.0.8": "https://downloads.wordpress.org/theme/blogus.1.0.0.8.zip", "1.0.0.9": "https://downloads.wordpress.org/theme/blogus.1.0.0.9.zip", "2.0.0.0": "https://downloads.wordpress.org/theme/blogus.2.0.0.0.zip", "2.0.0.1": "https://downloads.wordpress.org/theme/blogus.2.0.0.1.zip", "2.0.0.2": "https://downloads.wordpress.org/theme/blogus.2.0.0.2.zip", "2.0.0.3": "https://downloads.wordpress.org/theme/blogus.2.0.0.3.zip", "2.0.0.4": "https://downloads.wordpress.org/theme/blogus.2.0.0.4.zip", "2.0.0.5": "https://downloads.wordpress.org/theme/blogus.2.0.0.5.zip", "2.0.0.6": "https://downloads.wordpress.org/theme/blogus.2.0.0.6.zip", "2.0.0.7": "https://downloads.wordpress.org/theme/blogus.2.0.0.7.zip", "2.0.0.8": "https://downloads.wordpress.org/theme/blogus.2.0.0.8.zip", "2.0.0.9": "https://downloads.wordpress.org/theme/blogus.2.0.0.9.zip", "2.0.1.1": "https://downloads.wordpress.org/theme/blogus.2.0.1.1.zip", "2.0.1.2": "https://downloads.wordpress.org/theme/blogus.2.0.1.2.zip", "2.0.1.3": "https://downloads.wordpress.org/theme/blogus.2.0.1.3.zip", "2.0.1.4": "https://downloads.wordpress.org/theme/blogus.2.0.1.4.zip", "2.0.1.5": "https://downloads.wordpress.org/theme/blogus.2.0.1.5.zip", "2.0.1.6": "https://downloads.wordpress.org/theme/blogus.2.0.1.6.zip", "2.0.1.7": "https://downloads.wordpress.org/theme/blogus.2.0.1.7.zip", "2.0.1.8": "https://downloads.wordpress.org/theme/blogus.2.0.1.8.zip", "2.0.1.9": "https://downloads.wordpress.org/theme/blogus.2.0.1.9.zip", "2.0.2.0": "https://downloads.wordpress.org/theme/blogus.2.0.2.0.zip", "1.0.0.10": "https://downloads.wordpress.org/theme/blogus.1.0.0.10.zip", "1.0.0.11": "https://downloads.wordpress.org/theme/blogus.1.0.0.11.zip", "1.0.0.12": "https://downloads.wordpress.org/theme/blogus.1.0.0.12.zip", "1.0.0.13": "https://downloads.wordpress.org/theme/blogus.1.0.0.13.zip", "1.0.0.14": "https://downloads.wordpress.org/theme/blogus.1.0.0.14.zip", "1.0.0.15": "https://downloads.wordpress.org/theme/blogus.1.0.0.15.zip", "1.0.0.16": "https://downloads.wordpress.org/theme/blogus.1.0.0.16.zip", "1.0.0.17": "https://downloads.wordpress.org/theme/blogus.1.0.0.17.zip", "1.0.0.18": "https://downloads.wordpress.org/theme/blogus.1.0.0.18.zip", "1.0.0.19": "https://downloads.wordpress.org/theme/blogus.1.0.0.19.zip", "1.0.0.20": "https://downloads.wordpress.org/theme/blogus.1.0.0.20.zip", "1.0.0.21": "https://downloads.wordpress.org/theme/blogus.1.0.0.21.zip", "1.0.0.22": "https://downloads.wordpress.org/theme/blogus.1.0.0.22.zip", "1.0.0.23": "https://downloads.wordpress.org/theme/blogus.1.0.0.23.zip", "1.0.0.24": "https://downloads.wordpress.org/theme/blogus.1.0.0.24.zip", "1.0.0.25": "https://downloads.wordpress.org/theme/blogus.1.0.0.25.zip", "1.0.0.26": "https://downloads.wordpress.org/theme/blogus.1.0.0.26.zip", "1.0.0.27": "https://downloads.wordpress.org/theme/blogus.1.0.0.27.zip", "1.0.0.28": "https://downloads.wordpress.org/theme/blogus.1.0.0.28.zip", "1.0.0.29": "https://downloads.wordpress.org/theme/blogus.1.0.0.29.zip", "1.0.0.30": "https://downloads.wordpress.org/theme/blogus.1.0.0.30.zip", "1.0.0.31": "https://downloads.wordpress.org/theme/blogus.1.0.0.31.zip", "1.0.0.32": "https://downloads.wordpress.org/theme/blogus.1.0.0.32.zip", "1.0.0.33": "https://downloads.wordpress.org/theme/blogus.1.0.0.33.zip", "1.0.0.34": "https://downloads.wordpress.org/theme/blogus.1.0.0.34.zip", "1.0.0.35": "https://downloads.wordpress.org/theme/blogus.1.0.0.35.zip", "1.0.0.36": "https://downloads.wordpress.org/theme/blogus.1.0.0.36.zip", "1.0.0.37": "https://downloads.wordpress.org/theme/blogus.1.0.0.37.zip", "1.0.0.38": "https://downloads.wordpress.org/theme/blogus.1.0.0.38.zip", "1.0.0.39": "https://downloads.wordpress.org/theme/blogus.1.0.0.39.zip", "1.0.0.40": "https://downloads.wordpress.org/theme/blogus.1.0.0.40.zip", "1.0.0.41": "https://downloads.wordpress.org/theme/blogus.1.0.0.41.zip", "1.0.0.42": "https://downloads.wordpress.org/theme/blogus.1.0.0.42.zip", "1.0.0.43": "https://downloads.wordpress.org/theme/blogus.1.0.0.43.zip", "1.0.0.44": "https://downloads.wordpress.org/theme/blogus.1.0.0.44.zip", "1.0.0.45": "https://downloads.wordpress.org/theme/blogus.1.0.0.45.zip", "1.0.0.46": "https://downloads.wordpress.org/theme/blogus.1.0.0.46.zip", "1.0.0.48": "https://downloads.wordpress.org/theme/blogus.1.0.0.48.zip", "1.0.0.49": "https://downloads.wordpress.org/theme/blogus.1.0.0.49.zip", "1.0.0.50": "https://downloads.wordpress.org/theme/blogus.1.0.0.50.zip", "1.0.0.51": "https://downloads.wordpress.org/theme/blogus.1.0.0.51.zip", "1.0.0.52": "https://downloads.wordpress.org/theme/blogus.1.0.0.52.zip", "1.0.0.53": "https://downloads.wordpress.org/theme/blogus.1.0.0.53.zip", "1.0.0.54": "https://downloads.wordpress.org/theme/blogus.1.0.0.54.zip", "1.0.0.55": "https://downloads.wordpress.org/theme/blogus.1.0.0.55.zip", "1.0.0.56": "https://downloads.wordpress.org/theme/blogus.1.0.0.56.zip", "1.0.0.57": "https://downloads.wordpress.org/theme/blogus.1.0.0.57.zip", "1.0.0.58": "https://downloads.wordpress.org/theme/blogus.1.0.0.58.zip", "1.0.0.59": "https://downloads.wordpress.org/theme/blogus.1.0.0.59.zip", "1.0.0.60": "https://downloads.wordpress.org/theme/blogus.1.0.0.60.zip", "1.0.0.61": "https://downloads.wordpress.org/theme/blogus.1.0.0.61.zip", "1.0.0.62": "https://downloads.wordpress.org/theme/blogus.1.0.0.62.zip", "1.0.0.63": "https://downloads.wordpress.org/theme/blogus.1.0.0.63.zip", "1.0.0.64": "https://downloads.wordpress.org/theme/blogus.1.0.0.64.zip", "1.0.0.65": "https://downloads.wordpress.org/theme/blogus.1.0.0.65.zip", "1.0.0.66": "https://downloads.wordpress.org/theme/blogus.1.0.0.66.zip", "1.0.0.67": "https://downloads.wordpress.org/theme/blogus.1.0.0.67.zip", "1.0.0.68": "https://downloads.wordpress.org/theme/blogus.1.0.0.68.zip", "1.0.0.69": "https://downloads.wordpress.org/theme/blogus.1.0.0.69.zip", "1.0.0.70": "https://downloads.wordpress.org/theme/blogus.1.0.0.70.zip", "1.0.0.71": "https://downloads.wordpress.org/theme/blogus.1.0.0.71.zip", "1.0.0.72": "https://downloads.wordpress.org/theme/blogus.1.0.0.72.zip", "1.0.0.73": "https://downloads.wordpress.org/theme/blogus.1.0.0.73.zip", "1.0.0.74": "https://downloads.wordpress.org/theme/blogus.1.0.0.74.zip", "1.0.0.75": "https://downloads.wordpress.org/theme/blogus.1.0.0.75.zip", "1.0.0.76": "https://downloads.wordpress.org/theme/blogus.1.0.0.76.zip", "1.0.0.77": "https://downloads.wordpress.org/theme/blogus.1.0.0.77.zip", "1.0.0.78": "https://downloads.wordpress.org/theme/blogus.1.0.0.78.zip", "1.0.0.79": "https://downloads.wordpress.org/theme/blogus.1.0.0.79.zip", "1.0.0.80": "https://downloads.wordpress.org/theme/blogus.1.0.0.80.zip", "1.0.0.81": "https://downloads.wordpress.org/theme/blogus.1.0.0.81.zip", "1.0.0.82": "https://downloads.wordpress.org/theme/blogus.1.0.0.82.zip", "1.0.0.83": "https://downloads.wordpress.org/theme/blogus.1.0.0.83.zip", "1.0.0.84": "https://downloads.wordpress.org/theme/blogus.1.0.0.84.zip", "1.0.0.85": "https://downloads.wordpress.org/theme/blogus.1.0.0.85.zip", "1.0.0.86": "https://downloads.wordpress.org/theme/blogus.1.0.0.86.zip", "1.0.0.87": "https://downloads.wordpress.org/theme/blogus.1.0.0.87.zip", "1.0.0.88": "https://downloads.wordpress.org/theme/blogus.1.0.0.88.zip", "1.0.0.89": "https://downloads.wordpress.org/theme/blogus.1.0.0.89.zip", "1.0.0.90": "https://downloads.wordpress.org/theme/blogus.1.0.0.90.zip", "1.0.0.91": "https://downloads.wordpress.org/theme/blogus.1.0.0.91.zip", "1.0.0.92": "https://downloads.wordpress.org/theme/blogus.1.0.0.92.zip", "1.0.0.93": "https://downloads.wordpress.org/theme/blogus.1.0.0.93.zip", "1.0.0.94": "https://downloads.wordpress.org/theme/blogus.1.0.0.94.zip", "1.0.0.95": "https://downloads.wordpress.org/theme/blogus.1.0.0.95.zip", "1.0.0.96": "https://downloads.wordpress.org/theme/blogus.1.0.0.96.zip", "1.0.0.97": "https://downloads.wordpress.org/theme/blogus.1.0.0.97.zip", "1.0.0.98": "https://downloads.wordpress.org/theme/blogus.1.0.0.98.zip", "1.0.0.99": "https://downloads.wordpress.org/theme/blogus.1.0.0.99.zip"}, "downloaded": 843703, "num_ratings": 13, "preview_url": "https://wp-themes.com/blogus/", "reviews_url": "https://wordpress.org/support/theme/blogus/reviews/", "is_community": false, "last_updated": "2025-10-28", "requires_php": "7.4", "creation_time": "2022-12-29 16:41:42", "download_link": "https://downloads.wordpress.org/theme/blogus.2.7.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/blogus/screenshot.jpg?ver=2.7.1", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-02b5-722a-bfa2-10ea7bf68106", "name": "Blogus", "slug": "blogus", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1761609600, "version": "2.7.1"}, "last_updated_time": "2025-10-28 04:21:05", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f0eb-732d-b065-aadcab22b774', 'did:web:api.aspiredev.org:packages:wp-theme:bluehost-blueprint', 'bluehost-blueprint', 'Bluehost Blueprint', 'Bluehost Blueprint is a block-based, multi-purpose, WordPress theme. Compose your pages to fit any design you like with the power of Full Site Editing (FSE) and the included wide range of Block Patterns. The pre-built pages will help you populate and transform your website into a wonderful website. Customize colors and font pairings to create your own unique look and feel.', 'wp', 'wp-theme', 'GPL', '{"name": "Bluehost Blueprint", "slug": "bluehost-blueprint", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Bluehost", "avatar": "https://secure.gravatar.com/avatar/1e9ea306bada71982b42b989fd2d915aaa4d74ad92ed217cb1744e3cafac8187?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bluehost/", "author_url": "https://bluehost.com", "display_name": "Bluehost", "user_nicename": "bluehost"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.0", "homepage": "https://wordpress.org/themes/bluehost-blueprint/", "requires": "6.6", "sections": {"description": "Bluehost Blueprint is a block-based, multi-purpose, WordPress theme. Compose your pages to fit any design you like with the power of Full Site Editing (FSE) and the included wide range of Block Patterns. The pre-built pages will help you populate and transform your website into a wonderful website. Customize colors and font pairings to create your own unique look and feel."}, "versions": {"0.2.0": "https://downloads.wordpress.org/theme/bluehost-blueprint.0.2.0.zip", "0.3.0": "https://downloads.wordpress.org/theme/bluehost-blueprint.0.3.0.zip", "1.0.0": "https://downloads.wordpress.org/theme/bluehost-blueprint.1.0.0.zip"}, "downloaded": 22082, "num_ratings": 0, "preview_url": "https://wp-themes.com/bluehost-blueprint/", "reviews_url": "https://wordpress.org/support/theme/bluehost-blueprint/reviews/", "is_community": false, "last_updated": "2025-10-03", "requires_php": "7.2", "creation_time": "2025-07-29 18:46:09", "download_link": "https://downloads.wordpress.org/theme/bluehost-blueprint.1.0.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/bluehost-blueprint/screenshot.jpg?ver=1.0.0", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-04ea-7378-9785-7c15f7563b5a", "name": "Bluehost Blueprint", "slug": "bluehost-blueprint", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1759449600, "version": "1.0.0"}, "last_updated_time": "2025-10-03 08:26:48", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f104-72dd-90c3-c9d48a0b91ae', 'did:web:api.aspiredev.org:packages:wp-theme:botiga', 'botiga', 'Botiga', 'Launch your store with Botiga. A beautiful theme that is optimized for both the block editor and Elementor. We proudly introduce Botiga, with a modern and clean design that will effortlessly match your brand. Botiga has been developed from the ground up with clean code for optimal performance. You’ll get a mobile-optimized theme that looks and works great on any device and comes with plenty of customization options as well. Discover the theme that will transform your online business.', 'wp', 'wp-theme', 'proprietary', '{"name": "Botiga", "slug": "botiga", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "aThemes", "avatar": "https://secure.gravatar.com/avatar/93b101ca07f6a293920800acffe5bbfcc4bdbaba03d7f0fe25e03ea54238d21b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/athemes/", "author_url": "https://athemes.com", "display_name": "aThemes", "user_nicename": "athemes"}, "rating": 96, "status": "open", "ratings": {"1": 4, "2": 2, "3": 0, "4": 2, "5": 149}, "version": "2.3.8", "homepage": "https://wordpress.org/themes/botiga/", "requires": false, "sections": {"description": "Launch your store with Botiga. A beautiful theme that is optimized for both the block editor and Elementor. We proudly introduce Botiga, with a modern and clean design that will effortlessly match your brand. Botiga has been developed from the ground up with clean code for optimal performance. You’ll get a mobile-optimized theme that looks and works great on any device and comes with plenty of customization options as well. Discover the theme that will transform your online business."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/botiga.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/botiga.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/botiga.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/botiga.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/botiga.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/botiga.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/botiga.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/botiga.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/botiga.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/botiga.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/botiga.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/botiga.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/botiga.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/botiga.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/botiga.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/botiga.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/botiga.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/botiga.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/botiga.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/botiga.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/botiga.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/botiga.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/botiga.1.2.2.zip", "2.0.0": "https://downloads.wordpress.org/theme/botiga.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/botiga.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/botiga.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/botiga.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/botiga.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/botiga.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/botiga.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/botiga.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/botiga.2.0.8.zip", "2.1.0": "https://downloads.wordpress.org/theme/botiga.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/botiga.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/botiga.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/botiga.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/botiga.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/botiga.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/botiga.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/botiga.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/botiga.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/theme/botiga.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/theme/botiga.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/botiga.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/botiga.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/botiga.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/botiga.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/botiga.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/botiga.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/theme/botiga.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/theme/botiga.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/theme/botiga.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/theme/botiga.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/botiga.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/botiga.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/botiga.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/botiga.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/botiga.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/botiga.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/botiga.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/botiga.2.3.8.zip", "2.2.10": "https://downloads.wordpress.org/theme/botiga.2.2.10.zip", "2.2.11": "https://downloads.wordpress.org/theme/botiga.2.2.11.zip", "2.2.12": "https://downloads.wordpress.org/theme/botiga.2.2.12.zip", "2.2.13": "https://downloads.wordpress.org/theme/botiga.2.2.13.zip", "2.2.14": "https://downloads.wordpress.org/theme/botiga.2.2.14.zip", "2.2.15": "https://downloads.wordpress.org/theme/botiga.2.2.15.zip", "2.2.16": "https://downloads.wordpress.org/theme/botiga.2.2.16.zip", "2.2.17": "https://downloads.wordpress.org/theme/botiga.2.2.17.zip", "2.2.18": "https://downloads.wordpress.org/theme/botiga.2.2.18.zip"}, "downloaded": 577816, "num_ratings": 157, "preview_url": "https://wp-themes.com/botiga/", "reviews_url": "https://wordpress.org/support/theme/botiga/reviews/", "is_community": false, "last_updated": "2025-10-27", "requires_php": "7.0", "creation_time": "2021-08-11 01:45:43", "download_link": "https://downloads.wordpress.org/theme/botiga.2.3.8.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/botiga/screenshot.png?ver=2.3.8", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-054c-7368-864f-335987f12545", "name": "Botiga", "slug": "botiga", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1761523200, "version": "2.3.8"}, "last_updated_time": "2025-10-27 13:00:05", "external_support_url": "https://athemes.com/support/", "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f11c-721f-98b2-8d77e016c313', 'did:web:api.aspiredev.org:packages:wp-theme:breevia', 'breevia', 'Breevia', 'An innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. It is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', 'wp', 'wp-theme', 'GPL', '{"name": "Breevia", "slug": "breevia", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.6", "homepage": "https://wordpress.org/themes/breevia/", "requires": "5.8", "sections": {"description": "An innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. It is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.6": "https://downloads.wordpress.org/theme/breevia.1.0.6.zip"}, "downloaded": 8565, "num_ratings": 0, "preview_url": "https://wp-themes.com/breevia/", "reviews_url": "https://wordpress.org/support/theme/breevia/reviews/", "is_community": false, "last_updated": "2025-05-29", "requires_php": "7.1", "creation_time": "2025-05-29 05:46:12", "download_link": "https://downloads.wordpress.org/theme/breevia.1.0.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/breevia/screenshot.jpg?ver=1.0.6", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-04ef-7195-96a0-d74b061f9b95", "name": "Breevia", "slug": "breevia", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1748476800, "version": "1.0.6"}, "last_updated_time": "2025-05-29 05:46:12", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f132-7386-8d48-36392a1855e8', 'did:web:api.aspiredev.org:packages:wp-theme:celebnews', 'celebnews', 'CelebNews', 'CelebNews is a specialized WordPress child theme on the MoreNews platform designed for celebrity blogs, music and entertainment magazines, artist portfolios and multimedia portals; it focuses on showbiz-ready layouts with banner placements, bold visual styles, social media integration and media-friendly sections (audio/video galleries, event lists, artist profiles), while inheriting MoreNews’ header & footer builder, starter sites and block patterns for fast setup and custom layouts using Gutenberg, Elementor, Brizy, Beaver Builder, Visual Composer or Divi; CelebNews is AMP-ready, SEO and Core Web Vitals optimized, GDPR and WCAG-conscious, includes custom widgets and WooCommerce support for merch or ticket sales, and ships with multilingual starter content (Spanish, German, French, Portuguese, Russian, Italian, Japanese, Dutch, Arabic and more) plus RTL support — choose CelebNews when you need a high-style, performance-focused theme for entertainment and pop-culture publishing. https://afthemes.com/products/celebnews/', 'wp', 'wp-theme', 'GPL', '{"name": "CelebNews", "slug": "celebnews", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "AF themes", "avatar": "https://secure.gravatar.com/avatar/6840fee6f0abb67c899d7a7e34d50303ea8ab21678293a3b41f0268faaf8a05a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/afthemes/", "author_url": "https://afthemes.com/", "display_name": "AF themes", "user_nicename": "afthemes"}, "parent": {"name": "MoreNews", "slug": "morenews", "homepage": "https://wordpress.org/themes/morenews/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.1.6", "homepage": "https://wordpress.org/themes/celebnews/", "requires": "5.0", "sections": {"description": "CelebNews is a specialized WordPress child theme on the MoreNews platform designed for celebrity blogs, music and entertainment magazines, artist portfolios and multimedia portals; it focuses on showbiz-ready layouts with banner placements, bold visual styles, social media integration and media-friendly sections (audio/video galleries, event lists, artist profiles), while inheriting MoreNews’ header & footer builder, starter sites and block patterns for fast setup and custom layouts using Gutenberg, Elementor, Brizy, Beaver Builder, Visual Composer or Divi; CelebNews is AMP-ready, SEO and Core Web Vitals optimized, GDPR and WCAG-conscious, includes custom widgets and WooCommerce support for merch or ticket sales, and ships with multilingual starter content (Spanish, German, French, Portuguese, Russian, Italian, Japanese, Dutch, Arabic and more) plus RTL support — choose CelebNews when you need a high-style, performance-focused theme for entertainment and pop-culture publishing. https://afthemes.com/products/celebnews/"}, "template": "morenews", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/celebnews.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/celebnews.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/celebnews.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/celebnews.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/celebnews.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/celebnews.1.0.5.zip", "1.1.0": "https://downloads.wordpress.org/theme/celebnews.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/celebnews.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/celebnews.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/celebnews.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/celebnews.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/celebnews.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/celebnews.1.1.6.zip"}, "downloaded": 7764, "num_ratings": 0, "preview_url": "https://wp-themes.com/celebnews/", "reviews_url": "https://wordpress.org/support/theme/celebnews/reviews/", "is_community": false, "last_updated": "2025-10-25", "requires_php": "5.0", "creation_time": "2025-07-03 22:01:21", "download_link": "https://downloads.wordpress.org/theme/celebnews.1.1.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/celebnews/screenshot.png?ver=1.1.6", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-04f4-71ed-9c81-ed3a76d27c78", "name": "CelebNews", "slug": "celebnews", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1761350400, "version": "1.1.6"}, "last_updated_time": "2025-10-25 07:46:34", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f155-70fd-9432-5a5c032c796f', 'did:web:api.aspiredev.org:packages:wp-theme:colibri-wp', 'colibri-wp', 'Colibri WP', 'A beautiful, very customizable, multipurpose theme that you can use to create amazing websites through drag and drop. It comes with a pre-designed home page, 5 header designs and over 35 ready-to-use content blocks that you can easily customize. You can also design your own custom blocks by combining more than 25 drag and drop components. It offers lots of customization options (video background, slideshow background, header content types, etc) to help you create a website that stands out in no time. It is also designed with responsiveness, to work on mobile devices right out of the box. It is the only theme you will ever need! CHECK OUT THE DEMOS: https://colibriwp.com/go/demos', 'wp', 'wp-theme', 'proprietary', '{"name": "Colibri WP", "slug": "colibri-wp", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://colibriwp.com/", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 96, "status": "open", "ratings": {"1": 12, "2": 0, "3": 3, "4": 4, "5": 246}, "version": "1.0.140", "homepage": "https://wordpress.org/themes/colibri-wp/", "requires": false, "sections": {"description": "A beautiful, very customizable, multipurpose theme that you can use to create amazing websites through drag and drop. It comes with a pre-designed home page, 5 header designs and over 35 ready-to-use content blocks that you can easily customize. You can also design your own custom blocks by combining more than 25 drag and drop components. It offers lots of customization options (video background, slideshow background, header content types, etc) to help you create a website that stands out in no time. It is also designed with responsiveness, to work on mobile devices right out of the box. It is the only theme you will ever need! CHECK OUT THE DEMOS: https://colibriwp.com/go/demos"}, "versions": {"1.0.20": "https://downloads.wordpress.org/theme/colibri-wp.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/colibri-wp.1.0.21.zip", "1.0.30": "https://downloads.wordpress.org/theme/colibri-wp.1.0.30.zip", "1.0.31": "https://downloads.wordpress.org/theme/colibri-wp.1.0.31.zip", "1.0.35": "https://downloads.wordpress.org/theme/colibri-wp.1.0.35.zip", "1.0.44": "https://downloads.wordpress.org/theme/colibri-wp.1.0.44.zip", "1.0.49": "https://downloads.wordpress.org/theme/colibri-wp.1.0.49.zip", "1.0.53": "https://downloads.wordpress.org/theme/colibri-wp.1.0.53.zip", "1.0.60": "https://downloads.wordpress.org/theme/colibri-wp.1.0.60.zip", "1.0.61": "https://downloads.wordpress.org/theme/colibri-wp.1.0.61.zip", "1.0.72": "https://downloads.wordpress.org/theme/colibri-wp.1.0.72.zip", "1.0.77": "https://downloads.wordpress.org/theme/colibri-wp.1.0.77.zip", "1.0.78": "https://downloads.wordpress.org/theme/colibri-wp.1.0.78.zip", "1.0.80": "https://downloads.wordpress.org/theme/colibri-wp.1.0.80.zip", "1.0.81": "https://downloads.wordpress.org/theme/colibri-wp.1.0.81.zip", "1.0.82": "https://downloads.wordpress.org/theme/colibri-wp.1.0.82.zip", "1.0.86": "https://downloads.wordpress.org/theme/colibri-wp.1.0.86.zip", "1.0.87": "https://downloads.wordpress.org/theme/colibri-wp.1.0.87.zip", "1.0.88": "https://downloads.wordpress.org/theme/colibri-wp.1.0.88.zip", "1.0.89": "https://downloads.wordpress.org/theme/colibri-wp.1.0.89.zip", "1.0.92": "https://downloads.wordpress.org/theme/colibri-wp.1.0.92.zip", "1.0.93": "https://downloads.wordpress.org/theme/colibri-wp.1.0.93.zip", "1.0.94": "https://downloads.wordpress.org/theme/colibri-wp.1.0.94.zip", "1.0.99": "https://downloads.wordpress.org/theme/colibri-wp.1.0.99.zip", "1.0.101": "https://downloads.wordpress.org/theme/colibri-wp.1.0.101.zip", "1.0.102": "https://downloads.wordpress.org/theme/colibri-wp.1.0.102.zip", "1.0.105": "https://downloads.wordpress.org/theme/colibri-wp.1.0.105.zip", "1.0.107": "https://downloads.wordpress.org/theme/colibri-wp.1.0.107.zip", "1.0.109": "https://downloads.wordpress.org/theme/colibri-wp.1.0.109.zip", "1.0.125": "https://downloads.wordpress.org/theme/colibri-wp.1.0.125.zip", "1.0.137": "https://downloads.wordpress.org/theme/colibri-wp.1.0.137.zip", "1.0.138": "https://downloads.wordpress.org/theme/colibri-wp.1.0.138.zip", "1.0.140": "https://downloads.wordpress.org/theme/colibri-wp.1.0.140.zip"}, "downloaded": 1490234, "num_ratings": 265, "preview_url": "https://wp-themes.com/colibri-wp/", "reviews_url": "https://wordpress.org/support/theme/colibri-wp/reviews/", "is_community": false, "last_updated": "2025-04-14", "requires_php": "5.6", "creation_time": "2019-08-13 02:33:06", "download_link": "https://downloads.wordpress.org/theme/colibri-wp.1.0.140.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/colibri-wp/screenshot.jpg?ver=1.0.140", "active_installs": 50000, "aspiresync_meta": {"id": "019a30c0-04df-70f9-9323-fccac1d06820", "name": "Colibri WP", "slug": "colibri-wp", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1744588800, "version": "1.0.140"}, "last_updated_time": "2025-04-14 11:39:59", "external_support_url": "https://colibriwp.com/#support", "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f16e-7078-941d-b6ee8bcd7e08', 'did:web:api.aspiredev.org:packages:wp-theme:colormag', 'colormag', 'ColorMag', 'ColorMag is always the best choice when it comes to magazine, news, and blog WordPress themes. You can create elegant and modern websites for news portals, online magazines, and publishing sites. With ColorMag’s 8 and counting free starter demos for health, food, entertainment, sports, and fashion industries, building a magazine style website is super easy. Best of all, the ColorMag WordPress theme offers multiple ad spaces in its layout. So, you can monetize your website by displaying ads in these slots without any fuss. And if you plan to sell products and services online, you can rely on the theme’s compatibility with WooCommerce. Some of its key features are: >> SEO Optimized >> Translation & RTL Ready >> Cross-browser Compatible >> Custom Widgets >> Responsive Design >> Sticky Menu. So, download the free ColorMag theme and create professional magazine websites quickly. You can get free support for ColorMag at https://themegrill.com/contact/ and check our demos at https://themegrilldemos.com/colormag/', 'wp', 'wp-theme', 'proprietary', '{"name": "ColorMag", "slug": "colormag", "tags": {"blog": "Blog", "news": "News", "e-commerce": "E-commerce", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemeGrill", "avatar": "https://secure.gravatar.com/avatar/b5b178b46e95643a63e3db65d40db4d6e09e60e45957316291fd5f798083e76b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themegrill/", "author_url": "https://themegrill.com", "display_name": "ThemeGrill", "user_nicename": "themegrill"}, "rating": 98, "status": "open", "ratings": {"1": 17, "2": 3, "3": 6, "4": 41, "5": 1490}, "version": "4.1.1", "homepage": "https://wordpress.org/themes/colormag/", "requires": "5.0", "sections": {"description": "ColorMag is always the best choice when it comes to magazine, news, and blog WordPress themes. You can create elegant and modern websites for news portals, online magazines, and publishing sites. With ColorMag’s 8 and counting free starter demos for health, food, entertainment, sports, and fashion industries, building a magazine style website is super easy. Best of all, the ColorMag WordPress theme offers multiple ad spaces in its layout. So, you can monetize your website by displaying ads in these slots without any fuss. And if you plan to sell products and services online, you can rely on the theme’s compatibility with WooCommerce. Some of its key features are: >> SEO Optimized >> Translation & RTL Ready >> Cross-browser Compatible >> Custom Widgets >> Responsive Design >> Sticky Menu. So, download the free ColorMag theme and create professional magazine websites quickly. You can get free support for ColorMag at https://themegrill.com/contact/ and check our demos at https://themegrilldemos.com/colormag/"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/colormag.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/colormag.1.1.zip", "3.0": "https://downloads.wordpress.org/theme/colormag.3.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/colormag.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/colormag.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/colormag.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/colormag.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/colormag.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/colormag.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/colormag.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/colormag.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/colormag.1.0.9.zip", "1.1.1": "https://downloads.wordpress.org/theme/colormag.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/colormag.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/colormag.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/colormag.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/colormag.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/colormag.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/colormag.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/colormag.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/colormag.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/colormag.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/colormag.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/colormag.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/colormag.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/colormag.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/colormag.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/colormag.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/colormag.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/colormag.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/colormag.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/colormag.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/colormag.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/colormag.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/colormag.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/colormag.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/colormag.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/colormag.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/colormag.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/colormag.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/colormag.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/colormag.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/colormag.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/colormag.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/colormag.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/colormag.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/colormag.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/colormag.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/colormag.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/colormag.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/colormag.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/colormag.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/colormag.1.5.1.zip", "2.0.0": "https://downloads.wordpress.org/theme/colormag.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/colormag.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/colormag.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/colormag.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/colormag.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/colormag.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/colormag.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/colormag.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/colormag.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/colormag.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/colormag.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/colormag.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/colormag.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/colormag.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/colormag.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/colormag.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/colormag.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/colormag.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/colormag.2.1.8.zip", "3.0.1": "https://downloads.wordpress.org/theme/colormag.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/colormag.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/colormag.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/colormag.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/theme/colormag.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/theme/colormag.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/theme/colormag.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/theme/colormag.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/theme/colormag.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/theme/colormag.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/colormag.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/colormag.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/theme/colormag.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/theme/colormag.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/theme/colormag.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/theme/colormag.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/theme/colormag.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/theme/colormag.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/theme/colormag.3.1.9.zip", "4.0.0": "https://downloads.wordpress.org/theme/colormag.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/colormag.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/colormag.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/theme/colormag.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/theme/colormag.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/theme/colormag.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/theme/colormag.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/theme/colormag.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/theme/colormag.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/theme/colormag.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/theme/colormag.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/colormag.4.1.1.zip", "3.1.10": "https://downloads.wordpress.org/theme/colormag.3.1.10.zip", "3.1.11": "https://downloads.wordpress.org/theme/colormag.3.1.11.zip", "4.0.10": "https://downloads.wordpress.org/theme/colormag.4.0.10.zip", "4.0.11": "https://downloads.wordpress.org/theme/colormag.4.0.11.zip", "4.0.12": "https://downloads.wordpress.org/theme/colormag.4.0.12.zip", "4.0.13": "https://downloads.wordpress.org/theme/colormag.4.0.13.zip", "4.0.14": "https://downloads.wordpress.org/theme/colormag.4.0.14.zip", "4.0.15": "https://downloads.wordpress.org/theme/colormag.4.0.15.zip", "4.0.16": "https://downloads.wordpress.org/theme/colormag.4.0.16.zip", "4.0.17": "https://downloads.wordpress.org/theme/colormag.4.0.17.zip", "4.0.18": "https://downloads.wordpress.org/theme/colormag.4.0.18.zip", "4.0.19": "https://downloads.wordpress.org/theme/colormag.4.0.19.zip", "4.0.20": "https://downloads.wordpress.org/theme/colormag.4.0.20.zip", "2.0.0.1": "https://downloads.wordpress.org/theme/colormag.2.0.0.1.zip", "2.0.0.2": "https://downloads.wordpress.org/theme/colormag.2.0.0.2.zip", "2.0.0.3": "https://downloads.wordpress.org/theme/colormag.2.0.0.3.zip", "2.0.5.1": "https://downloads.wordpress.org/theme/colormag.2.0.5.1.zip", "3.0.0.1": "https://downloads.wordpress.org/theme/colormag.3.0.0.1.zip", "3.0.0.2": "https://downloads.wordpress.org/theme/colormag.3.0.0.2.zip", "3.0.0.3": "https://downloads.wordpress.org/theme/colormag.3.0.0.3.zip", "3.0.0.4": "https://downloads.wordpress.org/theme/colormag.3.0.0.4.zip", "3.0.0.5": "https://downloads.wordpress.org/theme/colormag.3.0.0.5.zip", "3.0.0.6": "https://downloads.wordpress.org/theme/colormag.3.0.0.6.zip", "3.0.0.7": "https://downloads.wordpress.org/theme/colormag.3.0.0.7.zip", "3.1.7.1": "https://downloads.wordpress.org/theme/colormag.3.1.7.1.zip"}, "downloaded": 4311368, "num_ratings": 1557, "preview_url": "https://wp-themes.com/colormag/", "reviews_url": "https://wordpress.org/support/theme/colormag/reviews/", "is_community": false, "last_updated": "2025-09-26", "requires_php": "7.4", "creation_time": "2015-05-30 13:30:21", "download_link": "https://downloads.wordpress.org/theme/colormag.4.1.1.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/colormag/screenshot.jpg?ver=4.1.1", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-0550-72fb-a858-9efe4b312aed", "name": "ColorMag", "slug": "colormag", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1758844800, "version": "4.1.1"}, "last_updated_time": "2025-09-26 10:24:22", "external_support_url": "https://themegrill.com/contact/", "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f188-726d-8916-8fb3f7b8764e', 'did:web:api.aspiredev.org:packages:wp-theme:corpnews', 'corpnews', 'CorpNews', 'CorpNews is a professional, enterprise-style dark WordPress child theme built on MoreNews for online newspapers, editorial organizations, magazines and high-traffic publishing platforms; it bundles pre-built starter templates and 1-click demo import, flexible header/footer builder options, block patterns and template kits, multiple banner layouts, and deep page-builder support (Gutenberg, Elementor, Beaver Builder, Divi, Brizy) so editorial teams can deploy complex sections, category hubs and custom homepages without code; CorpNews is responsive, AMP-ready, SEO and Core Web Vitals optimized for speed and ranking, integrates with WooCommerce for paywalls or stores and supports Jetpack, Contact Form 7 and Yoast SEO, plus multilingual and RTL demos (English, Spanish, French, Japanese, Arabic) — choose CorpNews for newspaper-grade layouts, template kit flexibility, and professional publishing workflows. https://afthemes.com/products/corpnews/', 'wp', 'wp-theme', 'GPL', '{"name": "CorpNews", "slug": "corpnews", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "AF themes", "avatar": "https://secure.gravatar.com/avatar/6840fee6f0abb67c899d7a7e34d50303ea8ab21678293a3b41f0268faaf8a05a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/afthemes/", "author_url": "https://afthemes.com/", "display_name": "AF themes", "user_nicename": "afthemes"}, "parent": {"name": "MoreNews", "slug": "morenews", "homepage": "https://wordpress.org/themes/morenews/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.3", "homepage": "https://wordpress.org/themes/corpnews/", "requires": "5.0", "sections": {"description": "CorpNews is a professional, enterprise-style dark WordPress child theme built on MoreNews for online newspapers, editorial organizations, magazines and high-traffic publishing platforms; it bundles pre-built starter templates and 1-click demo import, flexible header/footer builder options, block patterns and template kits, multiple banner layouts, and deep page-builder support (Gutenberg, Elementor, Beaver Builder, Divi, Brizy) so editorial teams can deploy complex sections, category hubs and custom homepages without code; CorpNews is responsive, AMP-ready, SEO and Core Web Vitals optimized for speed and ranking, integrates with WooCommerce for paywalls or stores and supports Jetpack, Contact Form 7 and Yoast SEO, plus multilingual and RTL demos (English, Spanish, French, Japanese, Arabic) — choose CorpNews for newspaper-grade layouts, template kit flexibility, and professional publishing workflows. https://afthemes.com/products/corpnews/"}, "template": "morenews", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/corpnews.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/corpnews.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/corpnews.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/corpnews.1.0.3.zip"}, "downloaded": 1755, "num_ratings": 0, "preview_url": "https://wp-themes.com/corpnews/", "reviews_url": "https://wordpress.org/support/theme/corpnews/reviews/", "is_community": false, "last_updated": "2025-10-25", "requires_php": "5.0", "creation_time": "2025-10-08 22:15:53", "download_link": "https://downloads.wordpress.org/theme/corpnews.1.0.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/corpnews/screenshot.png?ver=1.0.3", "active_installs": 400, "aspiresync_meta": {"id": "019a30c0-04d6-7013-8144-12f4b3c70750", "name": "CorpNews", "slug": "corpnews", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1761350400, "version": "1.0.3"}, "last_updated_time": "2025-10-25 07:45:45", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f268-7116-9252-9519958a263b', 'did:web:api.aspiredev.org:packages:wp-theme:generatepress', 'generatepress', 'GeneratePress', 'GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com', 'wp', 'wp-theme', 'proprietary', '{"name": "GeneratePress", "slug": "generatepress", "tags": {"blog": "Blog", "buddypress": "BuddyPress", "e-commerce": "E-commerce", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Tom Usborne", "avatar": "https://secure.gravatar.com/avatar/832996feff7f2a7772a7f484ea19995de0c8128620504dff5e146519d98e6bea?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/edge22/", "author_url": "https://generatepress.com/about", "display_name": "Tom", "user_nicename": "edge22"}, "rating": 100, "status": "open", "ratings": {"1": 10, "2": 2, "3": 4, "4": 16, "5": 1395}, "version": "3.6.0", "homepage": "https://wordpress.org/themes/generatepress/", "requires": "6.5", "sections": {"description": "GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com"}, "versions": {"0.1": "https://downloads.wordpress.org/theme/generatepress.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/generatepress.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/generatepress.0.3.zip", "0.4": "https://downloads.wordpress.org/theme/generatepress.0.4.zip", "1.0": "https://downloads.wordpress.org/theme/generatepress.1.0.zip", "1.4": "https://downloads.wordpress.org/theme/generatepress.1.4.zip", "2.0": "https://downloads.wordpress.org/theme/generatepress.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/generatepress.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/generatepress.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/generatepress.2.3.zip", "1.0.1": "https://downloads.wordpress.org/theme/generatepress.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/generatepress.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/generatepress.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/generatepress.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/generatepress.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/generatepress.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/generatepress.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/generatepress.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/generatepress.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/generatepress.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/generatepress.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/generatepress.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/generatepress.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/generatepress.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/generatepress.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/generatepress.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/generatepress.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/generatepress.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/generatepress.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/generatepress.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/generatepress.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/generatepress.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/generatepress.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/generatepress.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/generatepress.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/generatepress.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/generatepress.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/generatepress.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/generatepress.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/generatepress.1.3.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/generatepress.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/generatepress.2.0.2.zip", "2.1.1": "https://downloads.wordpress.org/theme/generatepress.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/generatepress.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/generatepress.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/generatepress.2.1.4.zip", "2.2.1": "https://downloads.wordpress.org/theme/generatepress.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/generatepress.2.2.2.zip", "2.3.1": "https://downloads.wordpress.org/theme/generatepress.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/generatepress.2.3.2.zip", "2.4.0": "https://downloads.wordpress.org/theme/generatepress.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/generatepress.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/generatepress.2.4.2.zip", "3.0.0": "https://downloads.wordpress.org/theme/generatepress.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/generatepress.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/generatepress.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/generatepress.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/generatepress.3.0.4.zip", "3.1.0": "https://downloads.wordpress.org/theme/generatepress.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/generatepress.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/generatepress.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/theme/generatepress.3.1.3.zip", "3.2.0": "https://downloads.wordpress.org/theme/generatepress.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/theme/generatepress.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/theme/generatepress.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/theme/generatepress.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/theme/generatepress.3.2.4.zip", "3.3.0": "https://downloads.wordpress.org/theme/generatepress.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/generatepress.3.3.1.zip", "3.4.0": "https://downloads.wordpress.org/theme/generatepress.3.4.0.zip", "3.5.0": "https://downloads.wordpress.org/theme/generatepress.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/theme/generatepress.3.5.1.zip", "3.6.0": "https://downloads.wordpress.org/theme/generatepress.3.6.0.zip", "1.3.01": "https://downloads.wordpress.org/theme/generatepress.1.3.01.zip", "1.3.02": "https://downloads.wordpress.org/theme/generatepress.1.3.02.zip", "1.3.03": "https://downloads.wordpress.org/theme/generatepress.1.3.03.zip", "1.3.04": "https://downloads.wordpress.org/theme/generatepress.1.3.04.zip", "1.3.05": "https://downloads.wordpress.org/theme/generatepress.1.3.05.zip", "1.3.06": "https://downloads.wordpress.org/theme/generatepress.1.3.06.zip", "1.3.07": "https://downloads.wordpress.org/theme/generatepress.1.3.07.zip", "1.3.08": "https://downloads.wordpress.org/theme/generatepress.1.3.08.zip", "1.3.09": "https://downloads.wordpress.org/theme/generatepress.1.3.09.zip", "1.3.10": "https://downloads.wordpress.org/theme/generatepress.1.3.10.zip", "1.3.11": "https://downloads.wordpress.org/theme/generatepress.1.3.11.zip", "1.3.12": "https://downloads.wordpress.org/theme/generatepress.1.3.12.zip", "1.3.13": "https://downloads.wordpress.org/theme/generatepress.1.3.13.zip", "1.3.14": "https://downloads.wordpress.org/theme/generatepress.1.3.14.zip", "1.3.15": "https://downloads.wordpress.org/theme/generatepress.1.3.15.zip", "1.3.16": "https://downloads.wordpress.org/theme/generatepress.1.3.16.zip", "1.3.17": "https://downloads.wordpress.org/theme/generatepress.1.3.17.zip", "1.3.18": "https://downloads.wordpress.org/theme/generatepress.1.3.18.zip", "1.3.19": "https://downloads.wordpress.org/theme/generatepress.1.3.19.zip", "1.3.20": "https://downloads.wordpress.org/theme/generatepress.1.3.20.zip", "1.3.21": "https://downloads.wordpress.org/theme/generatepress.1.3.21.zip", "1.3.22": "https://downloads.wordpress.org/theme/generatepress.1.3.22.zip", "1.3.23": "https://downloads.wordpress.org/theme/generatepress.1.3.23.zip", "1.3.24": "https://downloads.wordpress.org/theme/generatepress.1.3.24.zip", "1.3.25": "https://downloads.wordpress.org/theme/generatepress.1.3.25.zip", "1.3.26": "https://downloads.wordpress.org/theme/generatepress.1.3.26.zip", "1.3.27": "https://downloads.wordpress.org/theme/generatepress.1.3.27.zip", "1.3.28": "https://downloads.wordpress.org/theme/generatepress.1.3.28.zip", "1.3.29": "https://downloads.wordpress.org/theme/generatepress.1.3.29.zip", "1.3.30": "https://downloads.wordpress.org/theme/generatepress.1.3.30.zip", "1.3.31": "https://downloads.wordpress.org/theme/generatepress.1.3.31.zip", "1.3.32": "https://downloads.wordpress.org/theme/generatepress.1.3.32.zip", "1.3.33": "https://downloads.wordpress.org/theme/generatepress.1.3.33.zip", "1.3.34": "https://downloads.wordpress.org/theme/generatepress.1.3.34.zip", "1.3.35": "https://downloads.wordpress.org/theme/generatepress.1.3.35.zip", "1.3.36": "https://downloads.wordpress.org/theme/generatepress.1.3.36.zip", "1.3.37": "https://downloads.wordpress.org/theme/generatepress.1.3.37.zip", "1.3.38": "https://downloads.wordpress.org/theme/generatepress.1.3.38.zip", "1.3.39": "https://downloads.wordpress.org/theme/generatepress.1.3.39.zip", "1.3.40": "https://downloads.wordpress.org/theme/generatepress.1.3.40.zip", "1.3.41": "https://downloads.wordpress.org/theme/generatepress.1.3.41.zip", "1.3.42": "https://downloads.wordpress.org/theme/generatepress.1.3.42.zip", "1.3.43": "https://downloads.wordpress.org/theme/generatepress.1.3.43.zip", "1.3.44": "https://downloads.wordpress.org/theme/generatepress.1.3.44.zip", "1.3.45": "https://downloads.wordpress.org/theme/generatepress.1.3.45.zip", "1.3.46": "https://downloads.wordpress.org/theme/generatepress.1.3.46.zip", "1.3.47": "https://downloads.wordpress.org/theme/generatepress.1.3.47.zip", "1.3.48": "https://downloads.wordpress.org/theme/generatepress.1.3.48.zip", "1.2.9.1": "https://downloads.wordpress.org/theme/generatepress.1.2.9.1.zip", "1.2.9.2": "https://downloads.wordpress.org/theme/generatepress.1.2.9.2.zip", "1.2.9.3": "https://downloads.wordpress.org/theme/generatepress.1.2.9.3.zip", "1.2.9.4": "https://downloads.wordpress.org/theme/generatepress.1.2.9.4.zip", "1.2.9.5": "https://downloads.wordpress.org/theme/generatepress.1.2.9.5.zip", "1.2.9.6": "https://downloads.wordpress.org/theme/generatepress.1.2.9.6.zip", "1.2.9.7": "https://downloads.wordpress.org/theme/generatepress.1.2.9.7.zip", "1.2.9.8": "https://downloads.wordpress.org/theme/generatepress.1.2.9.8.zip"}, "downloaded": 6705392, "num_ratings": 1427, "preview_url": "https://wp-themes.com/generatepress/", "reviews_url": "https://wordpress.org/support/theme/generatepress/reviews/", "is_community": false, "last_updated": "2025-05-06", "requires_php": "7.4", "creation_time": "2014-05-15 03:45:18", "download_link": "https://downloads.wordpress.org/theme/generatepress.3.6.0.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/generatepress/screenshot.png?ver=3.6.0", "active_installs": 500000, "aspiresync_meta": {"id": "019a30c0-076f-7266-ad4f-f37d395ff0e6", "name": "GeneratePress", "slug": "generatepress", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1746489600, "version": "3.6.0"}, "last_updated_time": "2025-05-06 15:28:41", "external_support_url": "https://generatepress.com/support", "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f1a7-70a5-be71-1517d13462e2', 'did:web:api.aspiredev.org:packages:wp-theme:creative-minimalist', 'creative-minimalist', 'Creative Minimalist', 'Creative Minimalist is the best free WordPress theme for creatives, bloggers, and businesses who value clean design and high conversion rates. Whether you''re running a lifestyle, travel, fashion, or photography blog—or managing a marketing agency, startup, or corporate company—this minimalist theme adapts easily. Built for speed, it’s one of the fastest and most mobile friendly themes available. Fully responsive, translation ready, and FSE compatible, it works with page builders like Gutenberg, Brizy, Elementor, Visual Composer, and Divi Builder. With support for adsense, advertisement, affiliate banners, and schema markup, it''s perfect for magazine, news, or newspaper publishing. Customize your sidebar, block, template, and color options easily. Use it as a journal, portfolio, writing, or review site, or build a high-converting landing page or one page ecommerce store with WooCommerce. SEO-optimized and simple to use, Creative Minimalist helps your WordPress site get found by search engines—and loved by your audience. Includes dark mode and blogging tools for writers. It''s easy to create a website with Creative Minimalist.', 'wp', 'wp-theme', 'GPL', '{"name": "Creative Minimalist", "slug": "creative-minimalist", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "food-and-drink": "Food & drink", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbthemescom", "avatar": "https://secure.gravatar.com/avatar/64e0df7601781a06ac84aef62b02deb12e2283ddf03073931e6a6a1c4e972988?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbthemescom/", "author_url": "https://superbthemes.com/", "display_name": "SuperbThemes", "user_nicename": "superbthemescom"}, "parent": {"name": "Bakery and Pastry", "slug": "bakery-and-pastry", "homepage": "https://wordpress.org/themes/bakery-and-pastry/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.3", "homepage": "https://wordpress.org/themes/creative-minimalist/", "requires": "6.1", "sections": {"description": "Creative Minimalist is the best free WordPress theme for creatives, bloggers, and businesses who value clean design and high conversion rates. Whether you''re running a lifestyle, travel, fashion, or photography blog—or managing a marketing agency, startup, or corporate company—this minimalist theme adapts easily. Built for speed, it’s one of the fastest and most mobile friendly themes available. Fully responsive, translation ready, and FSE compatible, it works with page builders like Gutenberg, Brizy, Elementor, Visual Composer, and Divi Builder. With support for adsense, advertisement, affiliate banners, and schema markup, it''s perfect for magazine, news, or newspaper publishing. Customize your sidebar, block, template, and color options easily. Use it as a journal, portfolio, writing, or review site, or build a high-converting landing page or one page ecommerce store with WooCommerce. SEO-optimized and simple to use, Creative Minimalist helps your WordPress site get found by search engines—and loved by your audience. Includes dark mode and blogging tools for writers. It''s easy to create a website with Creative Minimalist."}, "template": "bakery-and-pastry", "versions": {"1.0": "https://downloads.wordpress.org/theme/creative-minimalist.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/creative-minimalist.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/creative-minimalist.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/creative-minimalist.1.3.zip"}, "downloaded": 7856, "num_ratings": 0, "preview_url": "https://wp-themes.com/creative-minimalist/", "reviews_url": "https://wordpress.org/support/theme/creative-minimalist/reviews/", "is_community": false, "last_updated": "2025-07-02", "requires_php": "5.6", "creation_time": "2025-07-02 12:01:15", "download_link": "https://downloads.wordpress.org/theme/creative-minimalist.1.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/creative-minimalist/screenshot.png?ver=1.3", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-0558-72cf-b885-feec8a5c3975", "name": "Creative Minimalist", "slug": "creative-minimalist", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1751414400, "version": "1.3"}, "last_updated_time": "2025-07-02 12:18:56", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f1c3-704e-8c16-c36480f4947e', 'did:web:api.aspiredev.org:packages:wp-theme:customify', 'customify', 'Customify', 'Customify is fast, lightweight, responsive and super flexible multipurpose theme built with SEO, speed, and usability in mind. Unleash the power of your imagination with a true WYSIWYG Header & Footer builder (inside the WordPress Customizer) built exclusively for this theme. The theme works great with any of your favorite page builder likes Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Combined with the Header & Footer builder, you can build any type of websites like shop, business agencies, corporate, portfolio, education, university portal, consulting, church, restaurant, medical and so on. Customify is compatible with all well-coded plugins, including major ones like WooCommerce, OrbitFox, Yoast, BuddyPress, bbPress, etc. Learn more about the theme and ready to import demo sites at https://pressmaximum.com/customify', 'wp', 'wp-theme', 'GPL', '{"name": "Customify", "slug": "customify", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "WPCustomify", "avatar": "https://secure.gravatar.com/avatar/b49fdec59392d8fb53bc6d9e3b3c23b0806fc2dfeee280f979f4e8c2c791ae73?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pressmaximum/", "author_url": "https://pressmaximum.com", "display_name": "PressMaximum", "user_nicename": "pressmaximum"}, "rating": 94, "status": "open", "ratings": {"1": 9, "2": 1, "3": 2, "4": 2, "5": 127}, "version": "0.4.12", "homepage": "https://wordpress.org/themes/customify/", "requires": false, "sections": {"description": "Customify is fast, lightweight, responsive and super flexible multipurpose theme built with SEO, speed, and usability in mind. Unleash the power of your imagination with a true WYSIWYG Header & Footer builder (inside the WordPress Customizer) built exclusively for this theme. The theme works great with any of your favorite page builder likes Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Combined with the Header & Footer builder, you can build any type of websites like shop, business agencies, corporate, portfolio, education, university portal, consulting, church, restaurant, medical and so on. Customify is compatible with all well-coded plugins, including major ones like WooCommerce, OrbitFox, Yoast, BuddyPress, bbPress, etc. Learn more about the theme and ready to import demo sites at https://pressmaximum.com/customify"}, "versions": {"0.0.1": "https://downloads.wordpress.org/theme/customify.0.0.1.zip", "0.0.2": "https://downloads.wordpress.org/theme/customify.0.0.2.zip", "0.0.3": "https://downloads.wordpress.org/theme/customify.0.0.3.zip", "0.0.4": "https://downloads.wordpress.org/theme/customify.0.0.4.zip", "0.0.5": "https://downloads.wordpress.org/theme/customify.0.0.5.zip", "0.0.6": "https://downloads.wordpress.org/theme/customify.0.0.6.zip", "0.0.7": "https://downloads.wordpress.org/theme/customify.0.0.7.zip", "0.0.8": "https://downloads.wordpress.org/theme/customify.0.0.8.zip", "0.0.9": "https://downloads.wordpress.org/theme/customify.0.0.9.zip", "0.1.0": "https://downloads.wordpress.org/theme/customify.0.1.0.zip", "0.1.1": "https://downloads.wordpress.org/theme/customify.0.1.1.zip", "0.1.2": "https://downloads.wordpress.org/theme/customify.0.1.2.zip", "0.2.0": "https://downloads.wordpress.org/theme/customify.0.2.0.zip", "0.2.1": "https://downloads.wordpress.org/theme/customify.0.2.1.zip", "0.2.2": "https://downloads.wordpress.org/theme/customify.0.2.2.zip", "0.2.3": "https://downloads.wordpress.org/theme/customify.0.2.3.zip", "0.2.4": "https://downloads.wordpress.org/theme/customify.0.2.4.zip", "0.2.5": "https://downloads.wordpress.org/theme/customify.0.2.5.zip", "0.2.6": "https://downloads.wordpress.org/theme/customify.0.2.6.zip", "0.2.7": "https://downloads.wordpress.org/theme/customify.0.2.7.zip", "0.2.8": "https://downloads.wordpress.org/theme/customify.0.2.8.zip", "0.2.9": "https://downloads.wordpress.org/theme/customify.0.2.9.zip", "0.3.0": "https://downloads.wordpress.org/theme/customify.0.3.0.zip", "0.3.1": "https://downloads.wordpress.org/theme/customify.0.3.1.zip", "0.3.2": "https://downloads.wordpress.org/theme/customify.0.3.2.zip", "0.3.3": "https://downloads.wordpress.org/theme/customify.0.3.3.zip", "0.3.4": "https://downloads.wordpress.org/theme/customify.0.3.4.zip", "0.3.5": "https://downloads.wordpress.org/theme/customify.0.3.5.zip", "0.3.6": "https://downloads.wordpress.org/theme/customify.0.3.6.zip", "0.3.7": "https://downloads.wordpress.org/theme/customify.0.3.7.zip", "0.3.9": "https://downloads.wordpress.org/theme/customify.0.3.9.zip", "0.4.0": "https://downloads.wordpress.org/theme/customify.0.4.0.zip", "0.4.1": "https://downloads.wordpress.org/theme/customify.0.4.1.zip", "0.4.2": "https://downloads.wordpress.org/theme/customify.0.4.2.zip", "0.4.4": "https://downloads.wordpress.org/theme/customify.0.4.4.zip", "0.4.5": "https://downloads.wordpress.org/theme/customify.0.4.5.zip", "0.4.6": "https://downloads.wordpress.org/theme/customify.0.4.6.zip", "0.4.7": "https://downloads.wordpress.org/theme/customify.0.4.7.zip", "0.4.8": "https://downloads.wordpress.org/theme/customify.0.4.8.zip", "0.4.10": "https://downloads.wordpress.org/theme/customify.0.4.10.zip", "0.4.11": "https://downloads.wordpress.org/theme/customify.0.4.11.zip", "0.4.12": "https://downloads.wordpress.org/theme/customify.0.4.12.zip"}, "downloaded": 1243621, "num_ratings": 141, "preview_url": "https://wp-themes.com/customify/", "reviews_url": "https://wordpress.org/support/theme/customify/reviews/", "is_community": false, "last_updated": "2025-10-07", "requires_php": "5.6", "creation_time": "2018-05-10 03:37:12", "download_link": "https://downloads.wordpress.org/theme/customify.0.4.12.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/customify/screenshot.png?ver=0.4.12", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-055c-7256-91e2-cd9ea1698873", "name": "Customify", "slug": "customify", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1759795200, "version": "0.4.12"}, "last_updated_time": "2025-10-07 02:55:35", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f1d9-73c3-bcc0-d4e90a54c121', 'did:web:api.aspiredev.org:packages:wp-theme:dacnis', 'dacnis', 'Dacnis', 'Dacnis is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Dacnis is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', 'wp', 'wp-theme', 'GPL', '{"name": "Dacnis", "slug": "dacnis", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.28", "homepage": "https://wordpress.org/themes/dacnis/", "requires": "5.8", "sections": {"description": "Dacnis is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Dacnis is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.5": "https://downloads.wordpress.org/theme/dacnis.1.0.5.zip", "1.0.15": "https://downloads.wordpress.org/theme/dacnis.1.0.15.zip", "1.0.19": "https://downloads.wordpress.org/theme/dacnis.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/dacnis.1.0.20.zip", "1.0.28": "https://downloads.wordpress.org/theme/dacnis.1.0.28.zip"}, "downloaded": 31041, "num_ratings": 0, "preview_url": "https://wp-themes.com/dacnis/", "reviews_url": "https://wordpress.org/support/theme/dacnis/reviews/", "is_community": false, "last_updated": "2025-04-15", "requires_php": "7.1", "creation_time": "2024-09-11 03:56:48", "download_link": "https://downloads.wordpress.org/theme/dacnis.1.0.28.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/dacnis/screenshot.jpg?ver=1.0.28", "active_installs": 5000, "aspiresync_meta": {"id": "019a30c0-05af-7324-b948-36af0fbb4005", "name": "Dacnis", "slug": "dacnis", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1744675200, "version": "1.0.28"}, "last_updated_time": "2025-04-15 08:42:57", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f1eb-7101-be8f-dcf043cc832c', 'did:web:api.aspiredev.org:packages:wp-theme:daily-news-blog', 'daily-news-blog', 'Daily News Blog', 'Daily News Blog is an elegant WordPress block theme for bloggers, writers, and anyone seeking a clean, modern, and responsive design. This free theme offers a minimalist design that''s ideal for blogging, news magaines, and personal portfolios, making it a top choice for writers and journalists in various niches like food, fashion, travel, and lifestyle. It''s not just beautiful, but also fast and highly search engine optimized (SEO). It supports popular page builders like Elementor, Divi Builder, SiteOrigin, Brizy, Visual Composer, and Beaver Builder, ensuring easy customization for startups, agency firms, and businesses of all sizes. You can easily install WooCommerce for lightweight ecommerce shops. It''s mainly made for Gutenberg where you can easily change colors, fonts, activate dark mode and much more. With its mobile friendly templates, Daily News Blog is perfect for beginners, offering a customizable sidebar, and easy integration with advertisement banners, Adsense and affiliate links. Whether you''re a writer, photographer, game reviewer or newspaper, Daily News Blog offers endless possibilities.', 'wp', 'wp-theme', 'GPL', '{"name": "Daily News Blog", "slug": "daily-news-blog", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbthemescom", "avatar": "https://secure.gravatar.com/avatar/64e0df7601781a06ac84aef62b02deb12e2283ddf03073931e6a6a1c4e972988?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbthemescom/", "author_url": "http://superbthemes.com/", "display_name": "SuperbThemes", "user_nicename": "superbthemescom"}, "parent": {"name": "Minimalistix", "slug": "minimalistix", "homepage": "https://wordpress.org/themes/minimalistix/"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 1}, "version": "1.1", "homepage": "https://wordpress.org/themes/daily-news-blog/", "requires": "6.1", "sections": {"description": "Daily News Blog is an elegant WordPress block theme for bloggers, writers, and anyone seeking a clean, modern, and responsive design. This free theme offers a minimalist design that''s ideal for blogging, news magaines, and personal portfolios, making it a top choice for writers and journalists in various niches like food, fashion, travel, and lifestyle. It''s not just beautiful, but also fast and highly search engine optimized (SEO). It supports popular page builders like Elementor, Divi Builder, SiteOrigin, Brizy, Visual Composer, and Beaver Builder, ensuring easy customization for startups, agency firms, and businesses of all sizes. You can easily install WooCommerce for lightweight ecommerce shops. It''s mainly made for Gutenberg where you can easily change colors, fonts, activate dark mode and much more. With its mobile friendly templates, Daily News Blog is perfect for beginners, offering a customizable sidebar, and easy integration with advertisement banners, Adsense and affiliate links. Whether you''re a writer, photographer, game reviewer or newspaper, Daily News Blog offers endless possibilities."}, "template": "minimalistix", "versions": {"1.0": "https://downloads.wordpress.org/theme/daily-news-blog.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/daily-news-blog.1.1.zip"}, "downloaded": 3603, "num_ratings": 1, "preview_url": "https://wp-themes.com/daily-news-blog/", "reviews_url": "https://wordpress.org/support/theme/daily-news-blog/reviews/", "is_community": false, "last_updated": "2025-08-20", "requires_php": "5.6", "creation_time": "2025-08-20 16:32:01", "download_link": "https://downloads.wordpress.org/theme/daily-news-blog.1.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/daily-news-blog/screenshot.png?ver=1.1", "active_installs": 700, "aspiresync_meta": {"id": "019a30c0-0711-7204-a848-323b0e70e928", "name": "Daily News Blog", "slug": "daily-news-blog", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1755648000, "version": "1.1"}, "last_updated_time": "2025-08-20 16:32:01", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f204-73a9-8e5c-288e47c6632d', 'did:web:api.aspiredev.org:packages:wp-theme:envo-one', 'envo-one', 'Envo One', 'Envo One is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/envo-one/', 'wp', 'wp-theme', 'GPL', '{"name": "Envo One", "slug": "envo-one", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "EnvoThemes", "avatar": "https://secure.gravatar.com/avatar/fbfb6069115a2880669be42a480c105d8702f5ba9930b034b3a4223a495931a5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/envothemes/", "author_url": "https://envothemes.com/", "display_name": "EnvoThemes", "user_nicename": "envothemes"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 1}, "version": "1.0.4", "homepage": "https://wordpress.org/themes/envo-one/", "requires": false, "sections": {"description": "Envo One is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/envo-one/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/envo-one.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/envo-one.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/envo-one.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/envo-one.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/envo-one.1.0.4.zip"}, "downloaded": 51272, "num_ratings": 1, "preview_url": "https://wp-themes.com/envo-one/", "reviews_url": "https://wordpress.org/support/theme/envo-one/reviews/", "is_community": false, "last_updated": "2025-08-18", "requires_php": "5.6", "creation_time": "2024-10-25 10:26:48", "download_link": "https://downloads.wordpress.org/theme/envo-one.1.0.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/envo-one/screenshot.png?ver=1.0.4", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-0735-7160-9772-920849537fb3", "name": "Envo One", "slug": "envo-one", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1755475200, "version": "1.0.4"}, "last_updated_time": "2025-08-18 10:30:48", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f219-73a0-9d31-793734f52042', 'did:web:api.aspiredev.org:packages:wp-theme:envo-royal', 'envo-royal', 'Envo Royal', 'Envo Royal is a fast, clean, lightweight, customizable and modern-looking free responsive multipurpose WordPress theme. Suitable for blog, creative, portfolio or business website and WooCommerce storefront. Theme supports popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer, Gutenberg etc. Envo Royal comes with unique WooCommerce Features and it is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Documentation: https://envothemes.com/docs/envo-royal/ Theme demos ready to import: https://envothemes.com/envo-royal-free-wp-theme/#demos', 'wp', 'wp-theme', 'GPL', '{"name": "Envo Royal", "slug": "envo-royal", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "EnvoThemes", "avatar": "https://secure.gravatar.com/avatar/fbfb6069115a2880669be42a480c105d8702f5ba9930b034b3a4223a495931a5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/envothemes/", "author_url": "https://envothemes.com/", "display_name": "EnvoThemes", "user_nicename": "envothemes"}, "rating": 74, "status": "open", "ratings": {"1": 1, "2": 0, "3": 0, "4": 0, "5": 2}, "version": "1.0.13", "homepage": "https://wordpress.org/themes/envo-royal/", "requires": false, "sections": {"description": "Envo Royal is a fast, clean, lightweight, customizable and modern-looking free responsive multipurpose WordPress theme. Suitable for blog, creative, portfolio or business website and WooCommerce storefront. Theme supports popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer, Gutenberg etc. Envo Royal comes with unique WooCommerce Features and it is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Documentation: https://envothemes.com/docs/envo-royal/ Theme demos ready to import: https://envothemes.com/envo-royal-free-wp-theme/#demos"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/envo-royal.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/envo-royal.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/envo-royal.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/envo-royal.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/envo-royal.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/envo-royal.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/envo-royal.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/envo-royal.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/envo-royal.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/envo-royal.1.0.9.zip", "1.0.10": "https://downloads.wordpress.org/theme/envo-royal.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/envo-royal.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/envo-royal.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/envo-royal.1.0.13.zip"}, "downloaded": 103739, "num_ratings": 3, "preview_url": "https://wp-themes.com/envo-royal/", "reviews_url": "https://wordpress.org/support/theme/envo-royal/reviews/", "is_community": false, "last_updated": "2025-05-28", "requires_php": "5.6", "creation_time": "2024-04-26 09:27:37", "download_link": "https://downloads.wordpress.org/theme/envo-royal.1.0.13.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/envo-royal/screenshot.png?ver=1.0.13", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-073c-7033-8e5e-805842877ecb", "name": "Envo Royal", "slug": "envo-royal", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1748390400, "version": "1.0.13"}, "last_updated_time": "2025-05-28 08:03:13", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f22d-724c-a8a1-8f7b4caebbf3', 'did:web:api.aspiredev.org:packages:wp-theme:extendable', 'extendable', 'Extendable', 'Extendable is a distinct, dynamic block theme designed as a canvas for your next online venture. Sporting multiple style variations, Extendable is the most expressive block theme yet. Go fresh, bold, bohemian or minimal — with a single click.', 'wp', 'wp-theme', 'GPL', '{"name": "Extendable", "slug": "extendable", "tags": {"e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "rtl-language-support": "RTL language support"}, "author": {"author": "Extendify", "avatar": "https://secure.gravatar.com/avatar/9b4ed677f2b4b5411a1245c1996f7f162b453820496b93426789a6d6d8c5bb59?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendify/", "author_url": "https://extendify.com", "display_name": "Extendify", "user_nicename": "extendify"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 4}, "version": "2.0.30", "homepage": "https://wordpress.org/themes/extendable/", "requires": "6.6", "sections": {"description": "Extendable is a distinct, dynamic block theme designed as a canvas for your next online venture. Sporting multiple style variations, Extendable is the most expressive block theme yet. Go fresh, bold, bohemian or minimal — with a single click."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/extendable.1.0.zip", "1.0.4": "https://downloads.wordpress.org/theme/extendable.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/extendable.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/extendable.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/extendable.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/extendable.1.0.8.zip", "1.1.0": "https://downloads.wordpress.org/theme/extendable.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/theme/extendable.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/theme/extendable.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/theme/extendable.1.4.0.zip", "1.5.0": "https://downloads.wordpress.org/theme/extendable.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/extendable.1.5.1.zip", "2.0.0": "https://downloads.wordpress.org/theme/extendable.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/extendable.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/extendable.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/extendable.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/extendable.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/extendable.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/extendable.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/extendable.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/extendable.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/extendable.2.0.9.zip", "2.0.10": "https://downloads.wordpress.org/theme/extendable.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/theme/extendable.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/theme/extendable.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/theme/extendable.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/theme/extendable.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/theme/extendable.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/theme/extendable.2.0.16.zip", "2.0.17": "https://downloads.wordpress.org/theme/extendable.2.0.17.zip", "2.0.18": "https://downloads.wordpress.org/theme/extendable.2.0.18.zip", "2.0.19": "https://downloads.wordpress.org/theme/extendable.2.0.19.zip", "2.0.20": "https://downloads.wordpress.org/theme/extendable.2.0.20.zip", "2.0.21": "https://downloads.wordpress.org/theme/extendable.2.0.21.zip", "2.0.22": "https://downloads.wordpress.org/theme/extendable.2.0.22.zip", "2.0.23": "https://downloads.wordpress.org/theme/extendable.2.0.23.zip", "2.0.24": "https://downloads.wordpress.org/theme/extendable.2.0.24.zip", "2.0.25": "https://downloads.wordpress.org/theme/extendable.2.0.25.zip", "2.0.26": "https://downloads.wordpress.org/theme/extendable.2.0.26.zip", "2.0.27": "https://downloads.wordpress.org/theme/extendable.2.0.27.zip", "2.0.28": "https://downloads.wordpress.org/theme/extendable.2.0.28.zip", "2.0.29": "https://downloads.wordpress.org/theme/extendable.2.0.29.zip", "2.0.30": "https://downloads.wordpress.org/theme/extendable.2.0.30.zip"}, "downloaded": 480418, "num_ratings": 4, "preview_url": "https://wp-themes.com/extendable/", "reviews_url": "https://wordpress.org/support/theme/extendable/reviews/", "is_community": false, "last_updated": "2025-10-28", "requires_php": "7.4", "creation_time": "2022-06-11 06:20:40", "download_link": "https://downloads.wordpress.org/theme/extendable.2.0.30.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/extendable/screenshot.png?ver=2.0.30", "active_installs": 200000, "aspiresync_meta": {"id": "019a30c0-0740-72de-b783-c8c33a120b91", "name": "Extendable", "slug": "extendable", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1761609600, "version": "2.0.30"}, "last_updated_time": "2025-10-28 21:40:29", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f23e-72b6-9e69-7ddec7390fef', 'did:web:api.aspiredev.org:packages:wp-theme:frontis', 'frontis', 'Frontis', 'Meet Frontis, the lightweight WordPress block theme built for speed and flexibility. Perfect for any project, Frontis offers unlimited customizability through its simple block editor, empowering you to create stunning, fast-loading websites with no hassle. Whether for a blog, business, or portfolio, Frontis provides a robust foundation that scales with your needs, while maintaining great SEO performance. Make a bold statement with Frontis, where speed meets sophistication. A Fast, Highly Customizable Block Theme for WordPress.', 'wp', 'wp-theme', 'GPL', '{"name": "Frontis", "slug": "frontis", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "WP Messiah", "avatar": "https://secure.gravatar.com/avatar/73203a2e8b58f3480003c839ef83f75f6b2fa485802df17e693320818b32c0cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpmessiah/", "author_url": "https://wpmessiah.com/", "display_name": "WP Messiah", "user_nicename": "wpmessiah"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.1.19", "homepage": "https://wordpress.org/themes/frontis/", "requires": "6.4", "sections": {"description": "Meet Frontis, the lightweight WordPress block theme built for speed and flexibility. Perfect for any project, Frontis offers unlimited customizability through its simple block editor, empowering you to create stunning, fast-loading websites with no hassle. Whether for a blog, business, or portfolio, Frontis provides a robust foundation that scales with your needs, while maintaining great SEO performance. Make a bold statement with Frontis, where speed meets sophistication. A Fast, Highly Customizable Block Theme for WordPress."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/frontis.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/frontis.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/frontis.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/frontis.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/frontis.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/frontis.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/frontis.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/frontis.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/frontis.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/frontis.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/frontis.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/frontis.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/frontis.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/frontis.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/frontis.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/frontis.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/frontis.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/frontis.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/frontis.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/frontis.1.1.9.zip", "1.1.10": "https://downloads.wordpress.org/theme/frontis.1.1.10.zip", "1.1.11": "https://downloads.wordpress.org/theme/frontis.1.1.11.zip", "1.1.12": "https://downloads.wordpress.org/theme/frontis.1.1.12.zip", "1.1.13": "https://downloads.wordpress.org/theme/frontis.1.1.13.zip", "1.1.14": "https://downloads.wordpress.org/theme/frontis.1.1.14.zip", "1.1.15": "https://downloads.wordpress.org/theme/frontis.1.1.15.zip", "1.1.16": "https://downloads.wordpress.org/theme/frontis.1.1.16.zip", "1.1.17": "https://downloads.wordpress.org/theme/frontis.1.1.17.zip", "1.1.18": "https://downloads.wordpress.org/theme/frontis.1.1.18.zip", "1.1.19": "https://downloads.wordpress.org/theme/frontis.1.1.19.zip"}, "downloaded": 14971, "num_ratings": 0, "preview_url": "https://wp-themes.com/frontis/", "reviews_url": "https://wordpress.org/support/theme/frontis/reviews/", "is_community": false, "last_updated": "2025-09-05", "requires_php": "7.4", "creation_time": "2025-02-02 17:41:49", "download_link": "https://downloads.wordpress.org/theme/frontis.1.1.19.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/frontis/screenshot.png?ver=1.1.19", "active_installs": 4000, "aspiresync_meta": {"id": "019a30c0-0745-725f-a911-03e1a4f603e5", "name": "Frontis", "slug": "frontis", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1757030400, "version": "1.1.19"}, "last_updated_time": "2025-09-05 06:03:58", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f253-7240-8890-699aed182abb', 'did:web:api.aspiredev.org:packages:wp-theme:futurio-storefront', 'futurio-storefront', 'Futurio Storefront', 'Futurio Storefront is a lightweight, fast and customizable free multi-purpose and WooCommerce WordPress theme, suitable for business, portfolio, creative, and photography sites, eCommerce shops, landing pages, blogs or WooCommerce storefronts. Futurio Storefront works perfectly with all page builders, like Elementor, Beaver Builder, Brizy, Visual Composer, SiteOrigin, Divi or Gutenberg, and supports most free and premium WordPress plugins, like WooCommerce, Jetpack, Contact Form 7, Yoast SEO and many more. Futurio Storefront is responsive, SEO friendly, WPML, translation and RTL ready, and comes with a 1-click-demo-import feature. Demos ready for download: https://futuriowp.com/futurio-storefront/', 'wp', 'wp-theme', 'GPL', '{"name": "Futurio Storefront", "slug": "futurio-storefront", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "FuturioWP", "avatar": "https://secure.gravatar.com/avatar/4c6cdd8613497cb1f03b7759969d6b0549a2a7ef3e1b06c80b6b0746f016a52a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/futuriowp/", "author_url": "https://futuriowp.com/", "display_name": "FuturioWP", "user_nicename": "futuriowp"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.3", "homepage": "https://wordpress.org/themes/futurio-storefront/", "requires": false, "sections": {"description": "Futurio Storefront is a lightweight, fast and customizable free multi-purpose and WooCommerce WordPress theme, suitable for business, portfolio, creative, and photography sites, eCommerce shops, landing pages, blogs or WooCommerce storefronts. Futurio Storefront works perfectly with all page builders, like Elementor, Beaver Builder, Brizy, Visual Composer, SiteOrigin, Divi or Gutenberg, and supports most free and premium WordPress plugins, like WooCommerce, Jetpack, Contact Form 7, Yoast SEO and many more. Futurio Storefront is responsive, SEO friendly, WPML, translation and RTL ready, and comes with a 1-click-demo-import feature. Demos ready for download: https://futuriowp.com/futurio-storefront/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/futurio-storefront.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/futurio-storefront.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/futurio-storefront.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/futurio-storefront.1.0.3.zip"}, "downloaded": 28314, "num_ratings": 0, "preview_url": "https://wp-themes.com/futurio-storefront/", "reviews_url": "https://wordpress.org/support/theme/futurio-storefront/reviews/", "is_community": false, "last_updated": "2024-10-27", "requires_php": "5.6", "creation_time": "2024-10-26 13:27:03", "download_link": "https://downloads.wordpress.org/theme/futurio-storefront.1.0.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/futurio-storefront/screenshot.png?ver=1.0.3", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-076a-71e2-981e-c1e97f18ea8f", "name": "Futurio Storefront", "slug": "futurio-storefront", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1729987200, "version": "1.0.3"}, "last_updated_time": "2024-10-27 12:02:00", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f291-72d4-8780-147a6e37be62', 'did:web:api.aspiredev.org:packages:wp-theme:graceful-gold-blog', 'graceful-gold-blog', 'Graceful Gold Blog', 'Graceful Gold Blog is a stylish and versatile free WordPress theme designed for a wide range of blogs and websites, including fashion, lifestyle, travel, tech, health, fitness, beauty, food, news, and online magazines. With its fully responsive and Retina-ready design, this theme ensures a seamless and visually stunning experience across all devices. Featuring a clean, modern, and minimalistic layout, Graceful Gold Blog is both user-friendly and highly customizable. It is WooCommerce compatible, allowing you to create an online store effortlessly, and supports Right-to-Left (RTL) languages for greater accessibility. Additionally, it is SEO-optimized, ensuring better search engine rankings and improved visibility. Whether you''re a blogger, entrepreneur, or business owner, Graceful Gold Blog provides the perfect foundation for building a professional and engaging website.', 'wp', 'wp-theme', 'GPL', '{"name": "Graceful Gold Blog", "slug": "graceful-gold-blog", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Aslam", "avatar": "https://secure.gravatar.com/avatar/a34a7b6a5976ebd0439b9156d6c0b5175013969eaa0de93601a025b52bb467a6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aslamnaik/", "author_url": "http://optimathemes.com/", "display_name": "Aslam", "user_nicename": "aslamnaik"}, "parent": {"name": "Graceful", "slug": "graceful", "homepage": "https://wordpress.org/themes/graceful/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.5", "homepage": "https://wordpress.org/themes/graceful-gold-blog/", "requires": "5.3", "sections": {"description": "Graceful Gold Blog is a stylish and versatile free WordPress theme designed for a wide range of blogs and websites, including fashion, lifestyle, travel, tech, health, fitness, beauty, food, news, and online magazines. With its fully responsive and Retina-ready design, this theme ensures a seamless and visually stunning experience across all devices. Featuring a clean, modern, and minimalistic layout, Graceful Gold Blog is both user-friendly and highly customizable. It is WooCommerce compatible, allowing you to create an online store effortlessly, and supports Right-to-Left (RTL) languages for greater accessibility. Additionally, it is SEO-optimized, ensuring better search engine rankings and improved visibility. Whether you''re a blogger, entrepreneur, or business owner, Graceful Gold Blog provides the perfect foundation for building a professional and engaging website."}, "template": "graceful", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.5.zip"}, "downloaded": 6550, "num_ratings": 0, "preview_url": "https://wp-themes.com/graceful-gold-blog/", "reviews_url": "https://wordpress.org/support/theme/graceful-gold-blog/reviews/", "is_community": false, "last_updated": "2025-08-27", "requires_php": "5.6", "creation_time": "2025-04-08 15:26:51", "download_link": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.5.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/graceful-gold-blog/screenshot.png?ver=1.0.5", "active_installs": 2000, "aspiresync_meta": {"id": "019a30c0-0774-70c4-982f-e0f82f072a3b", "name": "Graceful Gold Blog", "slug": "graceful-gold-blog", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1756252800, "version": "1.0.5"}, "last_updated_time": "2025-08-27 16:34:25", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f2a9-739a-8bb3-f80d38960e11', 'did:web:api.aspiredev.org:packages:wp-theme:graceful-halo-blog', 'graceful-halo-blog', 'Graceful Halo Blog', 'Graceful Halo Blog is a free, elegant, and versatile WordPress theme crafted for bloggers, creators, and storytellers. Whether you write about lifestyle, fashion, travel, beauty, food, fitness, health, tech, or news, this theme adapts perfectly to your niche. Featuring a clean, modern, and minimal design, Graceful Halo Blog ensures your content shines across all devices with its fully responsive and Retina-ready layout. Built with performance, accessibility, and SEO best practices in mind, it delivers both speed and visibility. The theme is WooCommerce compatible, translation-ready, and supports RTL languages, making it ideal for a global audience. Whether you’re starting a personal blog or building a professional online platform, Graceful Halo Blog blends sophisticated style with powerful functionality to help your voice stand out and your audience grow.', 'wp', 'wp-theme', 'GPL', '{"name": "Graceful Halo Blog", "slug": "graceful-halo-blog", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Aslam", "avatar": "https://secure.gravatar.com/avatar/a34a7b6a5976ebd0439b9156d6c0b5175013969eaa0de93601a025b52bb467a6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aslamnaik/", "author_url": "http://optimathemes.com/", "display_name": "Aslam", "user_nicename": "aslamnaik"}, "parent": {"name": "Graceful", "slug": "graceful", "homepage": "https://wordpress.org/themes/graceful/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.0", "homepage": "https://wordpress.org/themes/graceful-halo-blog/", "requires": "5.3", "sections": {"description": "Graceful Halo Blog is a free, elegant, and versatile WordPress theme crafted for bloggers, creators, and storytellers. Whether you write about lifestyle, fashion, travel, beauty, food, fitness, health, tech, or news, this theme adapts perfectly to your niche. Featuring a clean, modern, and minimal design, Graceful Halo Blog ensures your content shines across all devices with its fully responsive and Retina-ready layout. Built with performance, accessibility, and SEO best practices in mind, it delivers both speed and visibility. The theme is WooCommerce compatible, translation-ready, and supports RTL languages, making it ideal for a global audience. Whether you’re starting a personal blog or building a professional online platform, Graceful Halo Blog blends sophisticated style with powerful functionality to help your voice stand out and your audience grow."}, "template": "graceful", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/graceful-halo-blog.1.0.0.zip"}, "downloaded": 1399, "num_ratings": 0, "preview_url": "https://wp-themes.com/graceful-halo-blog/", "reviews_url": "https://wordpress.org/support/theme/graceful-halo-blog/reviews/", "is_community": false, "last_updated": "2025-10-10", "requires_php": "5.6", "creation_time": "2025-10-10 08:01:11", "download_link": "https://downloads.wordpress.org/theme/graceful-halo-blog.1.0.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/graceful-halo-blog/screenshot.png?ver=1.0.0", "active_installs": 200, "aspiresync_meta": {"id": "019a30c0-07f2-7305-8b60-9b597929850e", "name": "Graceful Halo Blog", "slug": "graceful-halo-blog", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1760054400, "version": "1.0.0"}, "last_updated_time": "2025-10-10 08:01:11", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f2c0-7393-a443-934899fb89a7', 'did:web:api.aspiredev.org:packages:wp-theme:graceful-modern-blog', 'graceful-modern-blog', 'Graceful Modern Blog', 'Graceful Modern Blog is a free and versatile WordPress theme crafted for bloggers, creators, and storytellers. Ideal for niches like lifestyle, fashion, travel, beauty, food, fitness, health, tech, and news, it offers a clean, minimal, and modern design that keeps the focus on your content. The theme is fully responsive and Retina-ready, ensuring a seamless reading experience on all devices. Optimized for performance, accessibility, and SEO, Graceful Modern Blog is also WooCommerce compatible, translation-ready, and supports RTL languages. Whether you’re starting a personal blog or creating a professional online presence, this theme blends elegant design with powerful features to help your site grow with ease.', 'wp', 'wp-theme', 'GPL', '{"name": "Graceful Modern Blog", "slug": "graceful-modern-blog", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Aslam", "avatar": "https://secure.gravatar.com/avatar/a34a7b6a5976ebd0439b9156d6c0b5175013969eaa0de93601a025b52bb467a6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aslamnaik/", "author_url": "http://optimathemes.com/", "display_name": "Aslam", "user_nicename": "aslamnaik"}, "parent": {"name": "Graceful", "slug": "graceful", "homepage": "https://wordpress.org/themes/graceful/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.2", "homepage": "https://wordpress.org/themes/graceful-modern-blog/", "requires": "5.3", "sections": {"description": "Graceful Modern Blog is a free and versatile WordPress theme crafted for bloggers, creators, and storytellers. Ideal for niches like lifestyle, fashion, travel, beauty, food, fitness, health, tech, and news, it offers a clean, minimal, and modern design that keeps the focus on your content. The theme is fully responsive and Retina-ready, ensuring a seamless reading experience on all devices. Optimized for performance, accessibility, and SEO, Graceful Modern Blog is also WooCommerce compatible, translation-ready, and supports RTL languages. Whether you’re starting a personal blog or creating a professional online presence, this theme blends elegant design with powerful features to help your site grow with ease."}, "template": "graceful", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/graceful-modern-blog.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/graceful-modern-blog.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/graceful-modern-blog.1.0.2.zip"}, "downloaded": 2129, "num_ratings": 0, "preview_url": "https://wp-themes.com/graceful-modern-blog/", "reviews_url": "https://wordpress.org/support/theme/graceful-modern-blog/reviews/", "is_community": false, "last_updated": "2025-09-27", "requires_php": "5.6", "creation_time": "2025-09-27 06:31:40", "download_link": "https://downloads.wordpress.org/theme/graceful-modern-blog.1.0.2.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/graceful-modern-blog/screenshot.png?ver=1.0.2", "active_installs": 400, "aspiresync_meta": {"id": "019a30c0-0935-7018-9c03-c09f328ddd53", "name": "Graceful Modern Blog", "slug": "graceful-modern-blog", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1758931200, "version": "1.0.2"}, "last_updated_time": "2025-09-27 17:53:13", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f2d6-7115-8094-80462a574f75', 'did:web:api.aspiredev.org:packages:wp-theme:hello-biz', 'hello-biz', 'Hello Biz', 'Hello Biz is a free, user-friendly Hybrid WordPress Theme that was crafted for seamless integration with the Elementor site builder and tailored specifically for business websites. Perfect for beginners, but far from limited to just them, it features a dedicated beginner-oriented “Home” screen to simplify and streamline the web-building process. Hello Biz also integrates with Elementor’s premium features, giving you access to tools like AI, and accessibility enhancements in one place. Whether launching a startup site or refining a company portfolio, Hello Biz offers a solid, responsive foundation for all web creators. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here: https://patchstack.com/database/wordpress/theme/hello-biz/vdp.', 'wp', 'wp-theme', 'GPL', '{"name": "Hello Biz", "slug": "hello-biz", "tags": {"custom-logo": "Custom logo", "custom-menu": "Custom menu", "custom-colors": "Custom colors", "featured-images": "Featured images", "flexible-header": "Flexible header", "style-variations": "Style variations", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Elementor Team", "avatar": "https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elemntor/", "author_url": "https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash", "display_name": "Elementor", "user_nicename": "elemntor"}, "rating": 48, "status": "open", "ratings": {"1": 2, "2": 1, "3": 1, "4": 0, "5": 1}, "version": "1.2.0", "homepage": "https://wordpress.org/themes/hello-biz/", "requires": "6.0", "sections": {"description": "Hello Biz is a free, user-friendly Hybrid WordPress Theme that was crafted for seamless integration with the Elementor site builder and tailored specifically for business websites. Perfect for beginners, but far from limited to just them, it features a dedicated beginner-oriented “Home” screen to simplify and streamline the web-building process. Hello Biz also integrates with Elementor’s premium features, giving you access to tools like AI, and accessibility enhancements in one place. Whether launching a startup site or refining a company portfolio, Hello Biz offers a solid, responsive foundation for all web creators. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here: https://patchstack.com/database/wordpress/theme/hello-biz/vdp."}, "versions": {"0.0.1": "https://downloads.wordpress.org/theme/hello-biz.0.0.1.zip", "0.0.2": "https://downloads.wordpress.org/theme/hello-biz.0.0.2.zip", "0.0.3": "https://downloads.wordpress.org/theme/hello-biz.0.0.3.zip", "0.0.4": "https://downloads.wordpress.org/theme/hello-biz.0.0.4.zip", "0.0.5": "https://downloads.wordpress.org/theme/hello-biz.0.0.5.zip", "0.0.6": "https://downloads.wordpress.org/theme/hello-biz.0.0.6.zip", "1.0.0": "https://downloads.wordpress.org/theme/hello-biz.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/hello-biz.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/hello-biz.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/hello-biz.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/hello-biz.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/hello-biz.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/hello-biz.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/hello-biz.1.0.7.zip", "1.1.0": "https://downloads.wordpress.org/theme/hello-biz.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/hello-biz.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/theme/hello-biz.1.2.0.zip"}, "downloaded": 305482, "num_ratings": 5, "preview_url": "https://wp-themes.com/hello-biz/", "reviews_url": "https://wordpress.org/support/theme/hello-biz/reviews/", "is_community": false, "last_updated": "2025-09-18", "requires_php": "7.4", "creation_time": "2024-11-22 14:41:51", "download_link": "https://downloads.wordpress.org/theme/hello-biz.1.2.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/hello-biz/screenshot.png?ver=1.2.0", "active_installs": 80000, "aspiresync_meta": {"id": "019a30c0-09c5-7339-9c80-26bd700326a2", "name": "Hello Biz", "slug": "hello-biz", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1758153600, "version": "1.2.0"}, "last_updated_time": "2025-09-18 17:07:27", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f2e5-728c-b291-27ef5cdd6666', 'did:web:api.aspiredev.org:packages:wp-theme:hello-commerce', 'hello-commerce', 'Hello Commerce', 'Sell smart from the start with Hello Commerce. Hello Commerce is a free WordPress ecommerce theme designed to help you launch your online store quickly and professionally. Built for WooCommerce and powered by the flexibility of Elementor, it offers a lightweight, responsive foundation that’s perfect for beginners and growing businesses alike. Whether you''re selling products or services, the Hello Commerce theme gives you the freedom to build your store your way, launch fast, and scale with confidence. Start strong with a guided setup, ready-made shop templates, and intuitive styling controls. Customize your storefront’s style and layout, including product grids, cart, and checkout pages, with intuitive controls, directly within the Elementor ecosystem without code. Manage your site efficiently using the dedicated Home screen that brings key tools and actions together. Why Hello Commerce? - Seamless integration with Elementor and WooCommerce - Fast, flexible, and performance-optimized - Beginner-friendly, no code or technical skills required - Complete site template kits to launch your store quickly. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here https://patchstack.com/database.', 'wp', 'wp-theme', 'GPL', '{"name": "Hello Commerce", "slug": "hello-commerce", "tags": {"custom-logo": "Custom logo", "custom-menu": "Custom menu", "custom-colors": "Custom colors", "featured-images": "Featured images", "flexible-header": "Flexible header", "style-variations": "Style variations", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Elementor Team", "avatar": "https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elemntor/", "author_url": "https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash", "display_name": "Elementor", "user_nicename": "elemntor"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.1", "homepage": "https://wordpress.org/themes/hello-commerce/", "requires": "6.0", "sections": {"description": "Sell smart from the start with Hello Commerce. Hello Commerce is a free WordPress ecommerce theme designed to help you launch your online store quickly and professionally. Built for WooCommerce and powered by the flexibility of Elementor, it offers a lightweight, responsive foundation that’s perfect for beginners and growing businesses alike. Whether you''re selling products or services, the Hello Commerce theme gives you the freedom to build your store your way, launch fast, and scale with confidence. Start strong with a guided setup, ready-made shop templates, and intuitive styling controls. Customize your storefront’s style and layout, including product grids, cart, and checkout pages, with intuitive controls, directly within the Elementor ecosystem without code. Manage your site efficiently using the dedicated Home screen that brings key tools and actions together. Why Hello Commerce? - Seamless integration with Elementor and WooCommerce - Fast, flexible, and performance-optimized - Beginner-friendly, no code or technical skills required - Complete site template kits to launch your store quickly. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here https://patchstack.com/database."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/hello-commerce.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/hello-commerce.1.0.1.zip"}, "downloaded": 8127, "num_ratings": 0, "preview_url": "https://wp-themes.com/hello-commerce/", "reviews_url": "https://wordpress.org/support/theme/hello-commerce/reviews/", "is_community": false, "last_updated": "2025-08-07", "requires_php": "7.4", "creation_time": "2025-08-07 20:32:33", "download_link": "https://downloads.wordpress.org/theme/hello-commerce.1.0.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/hello-commerce/screenshot.png?ver=1.0.1", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-09a6-73c9-9fe5-79656ca7ae0a", "name": "Hello Commerce", "slug": "hello-commerce", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1754524800, "version": "1.0.1"}, "last_updated_time": "2025-08-07 23:46:02", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f2f3-72d1-811a-57eca65c8f7a', 'did:web:api.aspiredev.org:packages:wp-theme:hello-elementor', 'hello-elementor', 'Hello Elementor', 'Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.', 'wp', 'wp-theme', 'proprietary', '{"name": "Hello Elementor", "slug": "hello-elementor", "tags": {"custom-logo": "Custom logo", "custom-menu": "Custom menu", "custom-colors": "Custom colors", "featured-images": "Featured images", "flexible-header": "Flexible header", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Elementor Team", "avatar": "https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elemntor/", "author_url": "https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash", "display_name": "Elementor", "user_nicename": "elemntor"}, "rating": 84, "status": "open", "ratings": {"1": 21, "2": 0, "3": 2, "4": 3, "5": 95}, "version": "3.4.5", "homepage": "https://wordpress.org/themes/hello-elementor/", "requires": "6.0", "sections": {"description": "Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators."}, "versions": {"1.1.0": "https://downloads.wordpress.org/theme/hello-elementor.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/theme/hello-elementor.1.2.0.zip", "2.0.0": "https://downloads.wordpress.org/theme/hello-elementor.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/hello-elementor.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/hello-elementor.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/hello-elementor.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/hello-elementor.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/hello-elementor.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/hello-elementor.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/hello-elementor.2.0.7.zip", "2.1.0": "https://downloads.wordpress.org/theme/hello-elementor.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/hello-elementor.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/hello-elementor.2.1.2.zip", "2.2.0": "https://downloads.wordpress.org/theme/hello-elementor.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/hello-elementor.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/hello-elementor.2.2.2.zip", "2.3.0": "https://downloads.wordpress.org/theme/hello-elementor.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/hello-elementor.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/theme/hello-elementor.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/hello-elementor.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/hello-elementor.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/hello-elementor.2.4.3.zip", "2.5.0": "https://downloads.wordpress.org/theme/hello-elementor.2.5.0.zip", "2.6.0": "https://downloads.wordpress.org/theme/hello-elementor.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/hello-elementor.2.6.1.zip", "2.7.0": "https://downloads.wordpress.org/theme/hello-elementor.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/theme/hello-elementor.2.7.1.zip", "2.8.0": "https://downloads.wordpress.org/theme/hello-elementor.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/theme/hello-elementor.2.8.1.zip", "2.9.0": "https://downloads.wordpress.org/theme/hello-elementor.2.9.0.zip", "3.0.0": "https://downloads.wordpress.org/theme/hello-elementor.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/hello-elementor.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/hello-elementor.3.0.2.zip", "3.1.0": "https://downloads.wordpress.org/theme/hello-elementor.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/hello-elementor.3.1.1.zip", "3.2.0": "https://downloads.wordpress.org/theme/hello-elementor.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/theme/hello-elementor.3.2.1.zip", "3.3.0": "https://downloads.wordpress.org/theme/hello-elementor.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/theme/hello-elementor.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/theme/hello-elementor.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/theme/hello-elementor.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/theme/hello-elementor.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/theme/hello-elementor.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/theme/hello-elementor.3.4.5.zip"}, "downloaded": 10942423, "num_ratings": 121, "preview_url": "https://wp-themes.com/hello-elementor/", "reviews_url": "https://wordpress.org/support/theme/hello-elementor/reviews/", "is_community": false, "last_updated": "2025-10-27", "requires_php": "7.4", "creation_time": "2019-05-13 08:18:04", "download_link": "https://downloads.wordpress.org/theme/hello-elementor.3.4.5.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/hello-elementor/screenshot.png?ver=3.4.5", "active_installs": 1000000, "aspiresync_meta": {"id": "019a30c0-09ac-70e0-856e-db7d6cd50fcd", "name": "Hello Elementor", "slug": "hello-elementor", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1761523200, "version": "3.4.5"}, "last_updated_time": "2025-10-27 12:46:46", "external_support_url": "", "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f303-735c-9a3b-272ea82a0207', 'did:web:api.aspiredev.org:packages:wp-theme:hestia', 'hestia', 'Hestia', 'Hestia is a modern WordPress theme for professionals. It fits creative business, small businesses (restaurants, wedding planners, sport/medical shops), startups, corporate businesses, online agencies and firms, portfolios, ecommerce (WooCommerce), and freelancers. It has a multipurpose one-page design, widgetized footer, blog/news page and a clean look, is compatible with: Flat Parallax Slider, Photo Gallery, Travel Map and Elementor Page Builder . The theme is responsive, WPML, Retina ready, SEO friendly, and uses Material Kit for design.', 'wp', 'wp-theme', 'proprietary', '{"name": "Hestia", "slug": "hestia", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "ThemeIsle", "avatar": "https://secure.gravatar.com/avatar/91e46225a693950a8f2350674124a8e3ceddb0f705fa988377646322729e3d7c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeisle/", "author_url": "https://themeisle.com", "display_name": "Themeisle", "user_nicename": "themeisle"}, "rating": 96, "status": "open", "ratings": {"1": 13, "2": 8, "3": 6, "4": 39, "5": 493}, "version": "3.3.3", "homepage": "https://wordpress.org/themes/hestia/", "requires": false, "sections": {"description": "Hestia is a modern WordPress theme for professionals. It fits creative business, small businesses (restaurants, wedding planners, sport/medical shops), startups, corporate businesses, online agencies and firms, portfolios, ecommerce (WooCommerce), and freelancers. It has a multipurpose one-page design, widgetized footer, blog/news page and a clean look, is compatible with: Flat Parallax Slider, Photo Gallery, Travel Map and Elementor Page Builder . The theme is responsive, WPML, Retina ready, SEO friendly, and uses Material Kit for design."}, "versions": {"1.0.6": "https://downloads.wordpress.org/theme/hestia.1.0.6.zip", "1.0.8": "https://downloads.wordpress.org/theme/hestia.1.0.8.zip", "2.0.3": "https://downloads.wordpress.org/theme/hestia.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/hestia.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/hestia.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/hestia.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/hestia.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/hestia.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/hestia.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/hestia.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/hestia.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/theme/hestia.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/hestia.2.2.1.zip", "2.3.0": "https://downloads.wordpress.org/theme/hestia.2.3.0.zip", "2.4.0": "https://downloads.wordpress.org/theme/hestia.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/hestia.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/hestia.2.4.2.zip", "2.4.4": "https://downloads.wordpress.org/theme/hestia.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/theme/hestia.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/theme/hestia.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/theme/hestia.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/theme/hestia.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/theme/hestia.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/theme/hestia.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/theme/hestia.2.5.1.zip", "2.5.3": "https://downloads.wordpress.org/theme/hestia.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/hestia.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/theme/hestia.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/theme/hestia.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/theme/hestia.2.5.7.zip", "3.0.0": "https://downloads.wordpress.org/theme/hestia.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/hestia.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/hestia.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/hestia.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/hestia.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/theme/hestia.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/theme/hestia.3.0.6.zip", "3.0.8": "https://downloads.wordpress.org/theme/hestia.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/theme/hestia.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/theme/hestia.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/hestia.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/hestia.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/theme/hestia.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/theme/hestia.3.1.4.zip", "3.1.6": "https://downloads.wordpress.org/theme/hestia.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/theme/hestia.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/theme/hestia.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/theme/hestia.3.1.9.zip", "3.2.0": "https://downloads.wordpress.org/theme/hestia.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/theme/hestia.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/theme/hestia.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/theme/hestia.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/theme/hestia.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/theme/hestia.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/theme/hestia.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/theme/hestia.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/theme/hestia.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/theme/hestia.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/theme/hestia.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/hestia.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/theme/hestia.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/theme/hestia.3.3.3.zip", "1.0.11": "https://downloads.wordpress.org/theme/hestia.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/hestia.1.0.12.zip", "1.1.19": "https://downloads.wordpress.org/theme/hestia.1.1.19.zip", "1.1.20": "https://downloads.wordpress.org/theme/hestia.1.1.20.zip", "1.1.21": "https://downloads.wordpress.org/theme/hestia.1.1.21.zip", "1.1.22": "https://downloads.wordpress.org/theme/hestia.1.1.22.zip", "1.1.23": "https://downloads.wordpress.org/theme/hestia.1.1.23.zip", "1.1.24": "https://downloads.wordpress.org/theme/hestia.1.1.24.zip", "1.1.25": "https://downloads.wordpress.org/theme/hestia.1.1.25.zip", "1.1.28": "https://downloads.wordpress.org/theme/hestia.1.1.28.zip", "1.1.29": "https://downloads.wordpress.org/theme/hestia.1.1.29.zip", "1.1.30": "https://downloads.wordpress.org/theme/hestia.1.1.30.zip", "1.1.31": "https://downloads.wordpress.org/theme/hestia.1.1.31.zip", "1.1.32": "https://downloads.wordpress.org/theme/hestia.1.1.32.zip", "1.1.33": "https://downloads.wordpress.org/theme/hestia.1.1.33.zip", "1.1.36": "https://downloads.wordpress.org/theme/hestia.1.1.36.zip", "1.1.37": "https://downloads.wordpress.org/theme/hestia.1.1.37.zip", "1.1.38": "https://downloads.wordpress.org/theme/hestia.1.1.38.zip", "1.1.39": "https://downloads.wordpress.org/theme/hestia.1.1.39.zip", "1.1.40": "https://downloads.wordpress.org/theme/hestia.1.1.40.zip", "1.1.41": "https://downloads.wordpress.org/theme/hestia.1.1.41.zip", "1.1.42": "https://downloads.wordpress.org/theme/hestia.1.1.42.zip", "1.1.43": "https://downloads.wordpress.org/theme/hestia.1.1.43.zip", "1.1.44": "https://downloads.wordpress.org/theme/hestia.1.1.44.zip", "1.1.45": "https://downloads.wordpress.org/theme/hestia.1.1.45.zip", "1.1.46": "https://downloads.wordpress.org/theme/hestia.1.1.46.zip", "1.1.47": "https://downloads.wordpress.org/theme/hestia.1.1.47.zip", "1.1.48": "https://downloads.wordpress.org/theme/hestia.1.1.48.zip", "1.1.50": "https://downloads.wordpress.org/theme/hestia.1.1.50.zip", "1.1.51": "https://downloads.wordpress.org/theme/hestia.1.1.51.zip", "1.1.52": "https://downloads.wordpress.org/theme/hestia.1.1.52.zip", "1.1.53": "https://downloads.wordpress.org/theme/hestia.1.1.53.zip", "1.1.54": "https://downloads.wordpress.org/theme/hestia.1.1.54.zip", "1.1.55": "https://downloads.wordpress.org/theme/hestia.1.1.55.zip", "1.1.56": "https://downloads.wordpress.org/theme/hestia.1.1.56.zip", "1.1.57": "https://downloads.wordpress.org/theme/hestia.1.1.57.zip", "1.1.58": "https://downloads.wordpress.org/theme/hestia.1.1.58.zip", "1.1.59": "https://downloads.wordpress.org/theme/hestia.1.1.59.zip", "1.1.60": "https://downloads.wordpress.org/theme/hestia.1.1.60.zip", "1.1.61": "https://downloads.wordpress.org/theme/hestia.1.1.61.zip", "1.1.62": "https://downloads.wordpress.org/theme/hestia.1.1.62.zip", "1.1.63": "https://downloads.wordpress.org/theme/hestia.1.1.63.zip", "1.1.65": "https://downloads.wordpress.org/theme/hestia.1.1.65.zip", "1.1.66": "https://downloads.wordpress.org/theme/hestia.1.1.66.zip", "1.1.70": "https://downloads.wordpress.org/theme/hestia.1.1.70.zip", "1.1.71": "https://downloads.wordpress.org/theme/hestia.1.1.71.zip", "1.1.72": "https://downloads.wordpress.org/theme/hestia.1.1.72.zip", "1.1.73": "https://downloads.wordpress.org/theme/hestia.1.1.73.zip", "1.1.74": "https://downloads.wordpress.org/theme/hestia.1.1.74.zip", "1.1.76": "https://downloads.wordpress.org/theme/hestia.1.1.76.zip", "1.1.77": "https://downloads.wordpress.org/theme/hestia.1.1.77.zip", "1.1.79": "https://downloads.wordpress.org/theme/hestia.1.1.79.zip", "1.1.80": "https://downloads.wordpress.org/theme/hestia.1.1.80.zip", "1.1.81": "https://downloads.wordpress.org/theme/hestia.1.1.81.zip", "1.1.82": "https://downloads.wordpress.org/theme/hestia.1.1.82.zip", "1.1.83": "https://downloads.wordpress.org/theme/hestia.1.1.83.zip", "1.1.84": "https://downloads.wordpress.org/theme/hestia.1.1.84.zip", "1.1.85": "https://downloads.wordpress.org/theme/hestia.1.1.85.zip", "1.1.86": "https://downloads.wordpress.org/theme/hestia.1.1.86.zip", "2.0.10": "https://downloads.wordpress.org/theme/hestia.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/theme/hestia.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/theme/hestia.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/theme/hestia.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/theme/hestia.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/theme/hestia.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/theme/hestia.2.0.16.zip", "2.0.17": "https://downloads.wordpress.org/theme/hestia.2.0.17.zip", "2.0.18": "https://downloads.wordpress.org/theme/hestia.2.0.18.zip", "2.0.19": "https://downloads.wordpress.org/theme/hestia.2.0.19.zip", "3.0.10": "https://downloads.wordpress.org/theme/hestia.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/theme/hestia.3.0.11.zip", "3.0.13": "https://downloads.wordpress.org/theme/hestia.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/theme/hestia.3.0.14.zip", "3.0.16": "https://downloads.wordpress.org/theme/hestia.3.0.16.zip", "3.0.17": "https://downloads.wordpress.org/theme/hestia.3.0.17.zip", "3.0.18": "https://downloads.wordpress.org/theme/hestia.3.0.18.zip", "3.0.19": "https://downloads.wordpress.org/theme/hestia.3.0.19.zip", "3.0.20": "https://downloads.wordpress.org/theme/hestia.3.0.20.zip", "3.0.21": "https://downloads.wordpress.org/theme/hestia.3.0.21.zip", "3.0.22": "https://downloads.wordpress.org/theme/hestia.3.0.22.zip", "3.0.23": "https://downloads.wordpress.org/theme/hestia.3.0.23.zip", "3.0.24": "https://downloads.wordpress.org/theme/hestia.3.0.24.zip", "3.0.25": "https://downloads.wordpress.org/theme/hestia.3.0.25.zip", "3.0.26": "https://downloads.wordpress.org/theme/hestia.3.0.26.zip", "3.0.27": "https://downloads.wordpress.org/theme/hestia.3.0.27.zip", "3.0.29": "https://downloads.wordpress.org/theme/hestia.3.0.29.zip", "3.0.30": "https://downloads.wordpress.org/theme/hestia.3.0.30.zip", "3.1.10": "https://downloads.wordpress.org/theme/hestia.3.1.10.zip", "3.2.10": "https://downloads.wordpress.org/theme/hestia.3.2.10.zip", "3.2.11": "https://downloads.wordpress.org/theme/hestia.3.2.11.zip"}, "downloaded": 4550974, "num_ratings": 559, "preview_url": "https://wp-themes.com/hestia/", "reviews_url": "https://wordpress.org/support/theme/hestia/reviews/", "is_community": false, "last_updated": "2025-09-04", "requires_php": "5.4.0", "creation_time": "2017-05-19 03:30:07", "download_link": "https://downloads.wordpress.org/theme/hestia.3.3.3.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/hestia/screenshot.png?ver=3.3.3", "active_installs": 90000, "aspiresync_meta": {"id": "019a30c0-09bc-705b-b696-28590c4cca59", "name": "Hestia", "slug": "hestia", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1756944000, "version": "3.3.3"}, "last_updated_time": "2025-09-04 11:05:36", "external_support_url": "https://themeisle.com/contact", "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f31f-728a-8858-bb38eed6876d', 'did:web:api.aspiredev.org:packages:wp-theme:homelancer', 'homelancer', 'HomeLancer', 'HomeLancer is a fast, SEO-friendly Full Site Editing (FSE) WordPress theme built for all home services businesses like handyman, plumbing, HVAC, electrician, cleaning, roofing, painting, pest control, renovation, and more. Ideal for creating professional websites to showcase your services, portfolio, and service booking—all with ease. With 50+ ready-to-use block patterns including headers, footers, hero, about, services, testimonials, pricing, FAQs, and portfolio, plus pre-built templates for homepage, about, services, blog, and contact pages, it offers full drag-and-drop customization and 100% control of every part of your site—no coding needed. Ideal for agencies or solo service providers to build a modern, high-converting, mobile-ready website instantly. Explorefeatures and live demos at https://cozythemes.com/homelancer/', 'wp', 'wp-theme', 'proprietary', '{"name": "HomeLancer", "slug": "homelancer", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "CozyThemes", "avatar": "https://secure.gravatar.com/avatar/7b14e71b9c952a96a4cdb7cbb93ab704ef0c368b08d5ea8323ed4bb506655311?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cozythemes/", "author_url": "https://cozythemes.com/", "display_name": "CozyThemes", "user_nicename": "cozythemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.2", "homepage": "https://wordpress.org/themes/homelancer/", "requires": "5.9", "sections": {"description": "HomeLancer is a fast, SEO-friendly Full Site Editing (FSE) WordPress theme built for all home services businesses like handyman, plumbing, HVAC, electrician, cleaning, roofing, painting, pest control, renovation, and more. Ideal for creating professional websites to showcase your services, portfolio, and service booking—all with ease. With 50+ ready-to-use block patterns including headers, footers, hero, about, services, testimonials, pricing, FAQs, and portfolio, plus pre-built templates for homepage, about, services, blog, and contact pages, it offers full drag-and-drop customization and 100% control of every part of your site—no coding needed. Ideal for agencies or solo service providers to build a modern, high-converting, mobile-ready website instantly. Explorefeatures and live demos at https://cozythemes.com/homelancer/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/homelancer.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/homelancer.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/homelancer.1.0.2.zip"}, "downloaded": 4109, "num_ratings": 0, "preview_url": "https://wp-themes.com/homelancer/", "reviews_url": "https://wordpress.org/support/theme/homelancer/reviews/", "is_community": false, "last_updated": "2025-10-16", "requires_php": "7.4", "creation_time": "2025-08-01 05:01:10", "download_link": "https://downloads.wordpress.org/theme/homelancer.1.0.2.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/homelancer/screenshot.png?ver=1.0.2", "active_installs": 800, "aspiresync_meta": {"id": "019a30c0-09b4-7365-b15e-36caf2826298", "name": "HomeLancer", "slug": "homelancer", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1760572800, "version": "1.0.2"}, "last_updated_time": "2025-10-16 09:54:02", "external_support_url": "https://cozythemes.com/homelancer/", "external_repository_url": ""}', '2025-10-29 16:18:59+00'); -INSERT INTO public.packages VALUES ('019a30c3-f335-709b-9e7e-5a2bb82c43c6', 'did:web:api.aspiredev.org:packages:wp-theme:hybridmag', 'hybridmag', 'HybridMag', 'HybridMag is a modern and stylish WordPress theme for blogs, newspapers, and magazine websites. The advanced options provided with HybridMag allow you to tailor every aspect of your website to match your brand, making it the best choice for online publishers.', 'wp', 'wp-theme', 'GPL', '{"name": "HybridMag", "slug": "hybridmag", "tags": {"blog": "Blog", "news": "News", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemezHut", "avatar": "https://secure.gravatar.com/avatar/57c16af1ed4f5c03aa9b87dcefdfdc82f8efd4bf7d55fc115b42e7b8877d655d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pubudu-malalasekara/", "author_url": "https://themezhut.com", "display_name": "ThemezHut", "user_nicename": "pubudu-malalasekara"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 2}, "version": "1.0.8", "homepage": "https://wordpress.org/themes/hybridmag/", "requires": false, "sections": {"description": "HybridMag is a modern and stylish WordPress theme for blogs, newspapers, and magazine websites. The advanced options provided with HybridMag allow you to tailor every aspect of your website to match your brand, making it the best choice for online publishers."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/hybridmag.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/hybridmag.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/hybridmag.1.0.2.zip", "1.0.4": "https://downloads.wordpress.org/theme/hybridmag.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/hybridmag.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/hybridmag.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/hybridmag.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/hybridmag.1.0.8.zip"}, "downloaded": 16661, "num_ratings": 2, "preview_url": "https://wp-themes.com/hybridmag/", "reviews_url": "https://wordpress.org/support/theme/hybridmag/reviews/", "is_community": false, "last_updated": "2025-10-02", "requires_php": "7.0", "creation_time": "2025-01-27 05:41:48", "download_link": "https://downloads.wordpress.org/theme/hybridmag.1.0.8.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/hybridmag/screenshot.png?ver=1.0.8", "active_installs": 4000, "aspiresync_meta": {"id": "019a30c0-09c1-72c4-abab-251fcae2467c", "name": "HybridMag", "slug": "hybridmag", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1759363200, "version": "1.0.8"}, "last_updated_time": "2025-10-02 06:04:49", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f348-734b-a1b8-81b261ea363c', 'did:web:api.aspiredev.org:packages:wp-theme:idea-flow', 'idea-flow', 'Idea Flow', 'Idea Flow is the perfect WordPress theme for you, if you''re a company, agency, or business, it''s also versatile enough for landing pages, one pages and bloggers. Create with Gutenberg Block Editor, Brizy Page Builder, Elementor Website Builder, or Divi Builder. Idea Flow ensures your website creation is both easy and fast. Perfect for marketing, ecommerce, and affiliate review websites, since it supports AdSense and banner advertisements and have a blog with sidebar template. With a clean, minimalist design, Idea Flow is the best choice for startups, corporate businesses, writers, and creative agencies. It’s fully responsive and mobile friendly, ensuring your site looks great on any device. The theme is Gutenberg and WooCommerce ready, making it ideal for photography, blogging, writing, news, magazine, or newspaper sites. Idea Flow boosts your SEO with built-in schema markup compatibility, helping you rank higher in search engines. Whether you’re a writer, photographer, or running a portfolio, this theme is a fast and simple way to build a professional website. It has a cool red and blue color scheme Plus, dark mode and it’s free! Elevate your business with Idea Flow – the minimal theme that makes conversion easy.', 'wp', 'wp-theme', 'GPL', '{"name": "Idea Flow", "slug": "idea-flow", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbaddons", "avatar": "https://secure.gravatar.com/avatar/e225f22f91c86191b0236db6735e8d504cee5ed3dc2caaf3e8f35b108e4353aa?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbaddons/", "author_url": "https://superbthemes.com/", "display_name": "Superb Addons", "user_nicename": "superbaddons"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "2.0", "homepage": "https://wordpress.org/themes/idea-flow/", "requires": "6.0", "sections": {"description": "Idea Flow is the perfect WordPress theme for you, if you''re a company, agency, or business, it''s also versatile enough for landing pages, one pages and bloggers. Create with Gutenberg Block Editor, Brizy Page Builder, Elementor Website Builder, or Divi Builder. Idea Flow ensures your website creation is both easy and fast. Perfect for marketing, ecommerce, and affiliate review websites, since it supports AdSense and banner advertisements and have a blog with sidebar template. With a clean, minimalist design, Idea Flow is the best choice for startups, corporate businesses, writers, and creative agencies. It’s fully responsive and mobile friendly, ensuring your site looks great on any device. The theme is Gutenberg and WooCommerce ready, making it ideal for photography, blogging, writing, news, magazine, or newspaper sites. Idea Flow boosts your SEO with built-in schema markup compatibility, helping you rank higher in search engines. Whether you’re a writer, photographer, or running a portfolio, this theme is a fast and simple way to build a professional website. It has a cool red and blue color scheme Plus, dark mode and it’s free! Elevate your business with Idea Flow – the minimal theme that makes conversion easy."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/idea-flow.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/idea-flow.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/idea-flow.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/idea-flow.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/idea-flow.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/idea-flow.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/idea-flow.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/idea-flow.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/idea-flow.1.8.zip", "2.0": "https://downloads.wordpress.org/theme/idea-flow.2.0.zip"}, "downloaded": 66223, "num_ratings": 0, "preview_url": "https://wp-themes.com/idea-flow/", "reviews_url": "https://wordpress.org/support/theme/idea-flow/reviews/", "is_community": false, "last_updated": "2025-04-18", "requires_php": "5.9", "creation_time": "2024-06-24 11:26:47", "download_link": "https://downloads.wordpress.org/theme/idea-flow.2.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/idea-flow/screenshot.png?ver=2.0", "active_installs": 4000, "aspiresync_meta": {"id": "019a30c0-0a1c-73c5-aed6-de083d216f3f", "name": "Idea Flow", "slug": "idea-flow", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1744934400, "version": "2.0"}, "last_updated_time": "2025-04-18 18:16:23", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f363-7062-8e21-23d3675fb3df', 'did:web:api.aspiredev.org:packages:wp-theme:inspiro', 'inspiro', 'Inspiro', 'Inspiro is a versatile, ultra-lightweight WordPress theme ideal for small businesses, creative professionals, and visual portfolios. Combining modern aesthetics with lightning-fast performance, it enhances user experience and boosts SEO rankings. Get started instantly with 10+ beautiful starter sites crafted for specific business niches, letting you launch your website quickly. Inspiro features unique fullscreen video backgrounds supporting Vimeo, YouTube, and self-hosted videos, perfect for photography and multimedia projects. It integrates seamlessly with popular page builders (Elementor, Beaver Builder) and WooCommerce, making it effortless to create any type of site, from business and agency websites to online shops and blogs. Fully responsive, GDPR-compliant, and privacy-focused (no external Google fonts), Inspiro looks perfect on every device. Explore more powerful features in our Premium version: https://www.wpzoom.com/themes/inspiro/', 'wp', 'wp-theme', 'proprietary', '{"name": "Inspiro", "slug": "inspiro", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "WPZOOM", "avatar": "https://secure.gravatar.com/avatar/41e28f10c68eb784ee08301cbe4074ce6083f5bcc0bae19639145550a8b84519?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpzoom/", "author_url": "https://www.wpzoom.com/", "display_name": "WPZOOM", "user_nicename": "wpzoom"}, "rating": 94, "status": "open", "ratings": {"1": 5, "2": 2, "3": 0, "4": 7, "5": 110}, "version": "2.1.4", "homepage": "https://wordpress.org/themes/inspiro/", "requires": "6.0", "sections": {"description": "Inspiro is a versatile, ultra-lightweight WordPress theme ideal for small businesses, creative professionals, and visual portfolios. Combining modern aesthetics with lightning-fast performance, it enhances user experience and boosts SEO rankings. Get started instantly with 10+ beautiful starter sites crafted for specific business niches, letting you launch your website quickly. Inspiro features unique fullscreen video backgrounds supporting Vimeo, YouTube, and self-hosted videos, perfect for photography and multimedia projects. It integrates seamlessly with popular page builders (Elementor, Beaver Builder) and WooCommerce, making it effortless to create any type of site, from business and agency websites to online shops and blogs. Fully responsive, GDPR-compliant, and privacy-focused (no external Google fonts), Inspiro looks perfect on every device. Explore more powerful features in our Premium version: https://www.wpzoom.com/themes/inspiro/"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/inspiro.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/inspiro.1.1.zip", "1.2.0": "https://downloads.wordpress.org/theme/inspiro.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/inspiro.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/inspiro.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/inspiro.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/inspiro.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/inspiro.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/inspiro.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/inspiro.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/inspiro.1.2.8.zip", "1.3.0": "https://downloads.wordpress.org/theme/inspiro.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/inspiro.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/inspiro.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/inspiro.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/inspiro.1.3.4.zip", "1.4.0": "https://downloads.wordpress.org/theme/inspiro.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/inspiro.1.4.1.zip", "1.5.0": "https://downloads.wordpress.org/theme/inspiro.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/inspiro.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/inspiro.1.5.2.zip", "1.6.0": "https://downloads.wordpress.org/theme/inspiro.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/inspiro.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/inspiro.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/inspiro.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/inspiro.1.6.4.zip", "1.7.0": "https://downloads.wordpress.org/theme/inspiro.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/inspiro.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/inspiro.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/inspiro.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/inspiro.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/inspiro.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/inspiro.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/inspiro.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/inspiro.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/inspiro.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/theme/inspiro.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/inspiro.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/inspiro.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/inspiro.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/inspiro.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/inspiro.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/inspiro.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/inspiro.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/inspiro.1.8.8.zip", "1.9.0": "https://downloads.wordpress.org/theme/inspiro.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/theme/inspiro.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/theme/inspiro.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/theme/inspiro.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/theme/inspiro.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/theme/inspiro.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/theme/inspiro.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/theme/inspiro.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/theme/inspiro.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/theme/inspiro.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/theme/inspiro.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/inspiro.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/inspiro.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/inspiro.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/inspiro.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/inspiro.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/inspiro.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/inspiro.2.0.7.zip", "2.1.0": "https://downloads.wordpress.org/theme/inspiro.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/inspiro.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/inspiro.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/inspiro.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/inspiro.2.1.4.zip", "1.7.10": "https://downloads.wordpress.org/theme/inspiro.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/theme/inspiro.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/theme/inspiro.1.7.12.zip", "1.7.13": "https://downloads.wordpress.org/theme/inspiro.1.7.13.zip", "1.9.10": "https://downloads.wordpress.org/theme/inspiro.1.9.10.zip"}, "downloaded": 1218560, "num_ratings": 124, "preview_url": "https://wp-themes.com/inspiro/", "reviews_url": "https://wordpress.org/support/theme/inspiro/reviews/", "is_community": false, "last_updated": "2025-10-01", "requires_php": "7.4", "creation_time": "2021-04-05 10:50:39", "download_link": "https://downloads.wordpress.org/theme/inspiro.2.1.4.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/inspiro/screenshot.png?ver=2.1.4", "active_installs": 70000, "aspiresync_meta": {"id": "019a30c0-099d-70fe-b462-7c1c3ffb3d65", "name": "Inspiro", "slug": "inspiro", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1759276800, "version": "2.1.4"}, "last_updated_time": "2025-10-01 07:31:32", "external_support_url": "https://www.wpzoom.com/contact/", "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f380-72ec-ad5d-d017fbc92fac', 'did:web:api.aspiredev.org:packages:wp-theme:iris-wp', 'iris-wp', 'Iris WP', 'Iris WP is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Iris WP is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', 'wp', 'wp-theme', 'GPL', '{"name": "Iris WP", "slug": "iris-wp", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.29", "homepage": "https://wordpress.org/themes/iris-wp/", "requires": "5.8", "sections": {"description": "Iris WP is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Iris WP is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.12": "https://downloads.wordpress.org/theme/iris-wp.1.0.12.zip", "1.0.15": "https://downloads.wordpress.org/theme/iris-wp.1.0.15.zip", "1.0.23": "https://downloads.wordpress.org/theme/iris-wp.1.0.23.zip", "1.0.27": "https://downloads.wordpress.org/theme/iris-wp.1.0.27.zip", "1.0.28": "https://downloads.wordpress.org/theme/iris-wp.1.0.28.zip", "1.0.29": "https://downloads.wordpress.org/theme/iris-wp.1.0.29.zip"}, "downloaded": 40770, "num_ratings": 0, "preview_url": "https://wp-themes.com/iris-wp/", "reviews_url": "https://wordpress.org/support/theme/iris-wp/reviews/", "is_community": false, "last_updated": "2025-04-15", "requires_php": "7.1", "creation_time": "2024-06-13 09:11:46", "download_link": "https://downloads.wordpress.org/theme/iris-wp.1.0.29.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/iris-wp/screenshot.jpg?ver=1.0.29", "active_installs": 7000, "aspiresync_meta": {"id": "019a30c0-0a20-7222-9bcd-4ab082e4feb7", "name": "Iris WP", "slug": "iris-wp", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1744675200, "version": "1.0.29"}, "last_updated_time": "2025-04-15 08:24:48", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f394-7235-b3eb-5dce4164778a', 'did:web:api.aspiredev.org:packages:wp-theme:irvine-news', 'irvine-news', 'Irvine News', 'Irvine News is an ideal and modern WordPress theme for blogs, magazines, newspapers, news portals, and publishing websites. It has a unique design for a visually stunning layout that makes your content displays beautiful and easy to read for any media device. It is even user-friendly, SEO-ready, effortlessly, lightweight, and optimized for top performance and Core Web Vitals. The theme is best suitable for news, magazines, publishers, editors, news portals, newspapers, personal blogs, news editorials, guides, journalism, travel blogs, niche blogs, affiliate blogs, guest blogging, and reviews websites. It also has flexible and versatile layouts that are enough for essential needs, with unlimited colors, unlimited Google fonts, typography, responsive design, and Rtl language support. It is designed to be highly SEO-friendly that can help optimize your website on search engine performance, making it easier to find for potential visitors and the theme provides predefined beautiful demos that can be imported with one click in less time. Irvine News also supports popular free and premium WordPress plugins such as Elementor, Yoast SEO, WooCommerce, Gutenberg, Contact Form 7, Jetpack, Google Analytics, and much more. Check the demo of Irvine News Pro https://newsexo-pro-nine.themearile.com/.', 'wp', 'wp-theme', 'proprietary', '{"name": "Irvine News", "slug": "irvine-news", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "post-formats": "Post formats", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemeArile", "avatar": "https://secure.gravatar.com/avatar/0f6e38c902df3bb62577440c4d3bf00829dd4f5a5f19ca5ea5c80a9afe3c588d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themearile/", "author_url": "https://themearile.com", "display_name": "Theme Arile", "user_nicename": "themearile"}, "parent": {"name": "NewsExo", "slug": "newsexo", "homepage": "https://wordpress.org/themes/newsexo/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.6", "homepage": "https://wordpress.org/themes/irvine-news/", "requires": false, "sections": {"description": "Irvine News is an ideal and modern WordPress theme for blogs, magazines, newspapers, news portals, and publishing websites. It has a unique design for a visually stunning layout that makes your content displays beautiful and easy to read for any media device. It is even user-friendly, SEO-ready, effortlessly, lightweight, and optimized for top performance and Core Web Vitals. The theme is best suitable for news, magazines, publishers, editors, news portals, newspapers, personal blogs, news editorials, guides, journalism, travel blogs, niche blogs, affiliate blogs, guest blogging, and reviews websites. It also has flexible and versatile layouts that are enough for essential needs, with unlimited colors, unlimited Google fonts, typography, responsive design, and Rtl language support. It is designed to be highly SEO-friendly that can help optimize your website on search engine performance, making it easier to find for potential visitors and the theme provides predefined beautiful demos that can be imported with one click in less time. Irvine News also supports popular free and premium WordPress plugins such as Elementor, Yoast SEO, WooCommerce, Gutenberg, Contact Form 7, Jetpack, Google Analytics, and much more. Check the demo of Irvine News Pro https://newsexo-pro-nine.themearile.com/."}, "template": "newsexo", "versions": {"1.0": "https://downloads.wordpress.org/theme/irvine-news.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/irvine-news.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/irvine-news.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/irvine-news.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/irvine-news.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/irvine-news.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/irvine-news.1.6.zip"}, "downloaded": 3855, "num_ratings": 0, "preview_url": "https://wp-themes.com/irvine-news/", "reviews_url": "https://wordpress.org/support/theme/irvine-news/reviews/", "is_community": false, "last_updated": "2025-10-08", "requires_php": "5.6", "creation_time": "2025-08-19 02:32:03", "download_link": "https://downloads.wordpress.org/theme/irvine-news.1.6.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/irvine-news/screenshot.png?ver=1.6", "active_installs": 600, "aspiresync_meta": {"id": "019a30c0-0b2f-70ca-9bd0-da12a8112313", "name": "Irvine News", "slug": "irvine-news", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1759881600, "version": "1.6"}, "last_updated_time": "2025-10-08 06:25:10", "external_support_url": "https://themearile.com/newsexo-pro-theme/", "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f3ac-73de-ae8e-156307dbbe97', 'did:web:api.aspiredev.org:packages:wp-theme:kadence', 'kadence', 'Kadence', 'Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.', 'wp', 'wp-theme', 'proprietary', '{"name": "Kadence", "slug": "kadence", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Kadence WP", "avatar": "https://secure.gravatar.com/avatar/d614d953044e11b41ac7023709e850df4db1005b6845af94909326b25137590c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stellarwp/", "author_url": "https://www.kadencewp.com/", "display_name": "StellarWP", "user_nicename": "stellarwp"}, "rating": 98, "status": "open", "ratings": {"1": 8, "2": 2, "3": 1, "4": 7, "5": 409}, "version": "1.3.6", "homepage": "https://wordpress.org/themes/kadence/", "requires": "6.3", "sections": {"description": "Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more."}, "versions": {"0.8.4": "https://downloads.wordpress.org/theme/kadence.0.8.4.zip", "0.8.7": "https://downloads.wordpress.org/theme/kadence.0.8.7.zip", "0.9.7": "https://downloads.wordpress.org/theme/kadence.0.9.7.zip", "0.9.8": "https://downloads.wordpress.org/theme/kadence.0.9.8.zip", "1.0.0": "https://downloads.wordpress.org/theme/kadence.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/kadence.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/kadence.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/kadence.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/kadence.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/kadence.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/kadence.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/kadence.1.0.7.zip", "1.0.9": "https://downloads.wordpress.org/theme/kadence.1.0.9.zip", "1.1.1": "https://downloads.wordpress.org/theme/kadence.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/kadence.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/kadence.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/kadence.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/kadence.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/kadence.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/kadence.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/kadence.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/kadence.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/kadence.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/kadence.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/kadence.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/kadence.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/kadence.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/kadence.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/kadence.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/kadence.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/kadence.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/kadence.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/kadence.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/kadence.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/kadence.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/kadence.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/kadence.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/kadence.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/kadence.1.3.6.zip", "0.8.16": "https://downloads.wordpress.org/theme/kadence.0.8.16.zip", "1.0.10": "https://downloads.wordpress.org/theme/kadence.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/kadence.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/kadence.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/kadence.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/theme/kadence.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/theme/kadence.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/theme/kadence.1.0.16.zip", "1.0.17": "https://downloads.wordpress.org/theme/kadence.1.0.17.zip", "1.0.18": "https://downloads.wordpress.org/theme/kadence.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/theme/kadence.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/kadence.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/kadence.1.0.21.zip", "1.0.22": "https://downloads.wordpress.org/theme/kadence.1.0.22.zip", "1.0.23": "https://downloads.wordpress.org/theme/kadence.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/theme/kadence.1.0.24.zip", "1.0.25": "https://downloads.wordpress.org/theme/kadence.1.0.25.zip", "1.0.26": "https://downloads.wordpress.org/theme/kadence.1.0.26.zip", "1.0.27": "https://downloads.wordpress.org/theme/kadence.1.0.27.zip", "1.0.28": "https://downloads.wordpress.org/theme/kadence.1.0.28.zip", "1.0.29": "https://downloads.wordpress.org/theme/kadence.1.0.29.zip", "1.0.30": "https://downloads.wordpress.org/theme/kadence.1.0.30.zip", "1.1.10": "https://downloads.wordpress.org/theme/kadence.1.1.10.zip", "1.1.11": "https://downloads.wordpress.org/theme/kadence.1.1.11.zip", "1.1.12": "https://downloads.wordpress.org/theme/kadence.1.1.12.zip", "1.1.13": "https://downloads.wordpress.org/theme/kadence.1.1.13.zip", "1.1.14": "https://downloads.wordpress.org/theme/kadence.1.1.14.zip", "1.1.15": "https://downloads.wordpress.org/theme/kadence.1.1.15.zip", "1.1.16": "https://downloads.wordpress.org/theme/kadence.1.1.16.zip", "1.1.17": "https://downloads.wordpress.org/theme/kadence.1.1.17.zip", "1.1.18": "https://downloads.wordpress.org/theme/kadence.1.1.18.zip", "1.1.19": "https://downloads.wordpress.org/theme/kadence.1.1.19.zip", "1.1.20": "https://downloads.wordpress.org/theme/kadence.1.1.20.zip", "1.1.21": "https://downloads.wordpress.org/theme/kadence.1.1.21.zip", "1.1.22": "https://downloads.wordpress.org/theme/kadence.1.1.22.zip", "1.1.23": "https://downloads.wordpress.org/theme/kadence.1.1.23.zip", "1.1.24": "https://downloads.wordpress.org/theme/kadence.1.1.24.zip", "1.1.25": "https://downloads.wordpress.org/theme/kadence.1.1.25.zip", "1.1.26": "https://downloads.wordpress.org/theme/kadence.1.1.26.zip", "1.1.27": "https://downloads.wordpress.org/theme/kadence.1.1.27.zip", "1.1.28": "https://downloads.wordpress.org/theme/kadence.1.1.28.zip", "1.1.29": "https://downloads.wordpress.org/theme/kadence.1.1.29.zip", "1.1.30": "https://downloads.wordpress.org/theme/kadence.1.1.30.zip", "1.1.31": "https://downloads.wordpress.org/theme/kadence.1.1.31.zip", "1.1.32": "https://downloads.wordpress.org/theme/kadence.1.1.32.zip", "1.1.33": "https://downloads.wordpress.org/theme/kadence.1.1.33.zip", "1.1.34": "https://downloads.wordpress.org/theme/kadence.1.1.34.zip", "1.1.35": "https://downloads.wordpress.org/theme/kadence.1.1.35.zip", "1.1.36": "https://downloads.wordpress.org/theme/kadence.1.1.36.zip", "1.1.38": "https://downloads.wordpress.org/theme/kadence.1.1.38.zip", "1.1.39": "https://downloads.wordpress.org/theme/kadence.1.1.39.zip", "1.1.40": "https://downloads.wordpress.org/theme/kadence.1.1.40.zip", "1.1.41": "https://downloads.wordpress.org/theme/kadence.1.1.41.zip", "1.1.42": "https://downloads.wordpress.org/theme/kadence.1.1.42.zip", "1.1.43": "https://downloads.wordpress.org/theme/kadence.1.1.43.zip", "1.1.44": "https://downloads.wordpress.org/theme/kadence.1.1.44.zip", "1.1.45": "https://downloads.wordpress.org/theme/kadence.1.1.45.zip", "1.1.46": "https://downloads.wordpress.org/theme/kadence.1.1.46.zip", "1.1.47": "https://downloads.wordpress.org/theme/kadence.1.1.47.zip", "1.1.48": "https://downloads.wordpress.org/theme/kadence.1.1.48.zip", "1.1.49": "https://downloads.wordpress.org/theme/kadence.1.1.49.zip", "1.1.50": "https://downloads.wordpress.org/theme/kadence.1.1.50.zip", "1.1.51": "https://downloads.wordpress.org/theme/kadence.1.1.51.zip", "1.2.10": "https://downloads.wordpress.org/theme/kadence.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/theme/kadence.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/theme/kadence.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/theme/kadence.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/theme/kadence.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/theme/kadence.1.2.15.zip", "1.2.16": "https://downloads.wordpress.org/theme/kadence.1.2.16.zip", "1.2.17": "https://downloads.wordpress.org/theme/kadence.1.2.17.zip", "1.2.18": "https://downloads.wordpress.org/theme/kadence.1.2.18.zip", "1.2.19": "https://downloads.wordpress.org/theme/kadence.1.2.19.zip", "1.2.20": "https://downloads.wordpress.org/theme/kadence.1.2.20.zip", "1.2.21": "https://downloads.wordpress.org/theme/kadence.1.2.21.zip", "1.2.22": "https://downloads.wordpress.org/theme/kadence.1.2.22.zip", "1.2.24": "https://downloads.wordpress.org/theme/kadence.1.2.24.zip", "1.2.25": "https://downloads.wordpress.org/theme/kadence.1.2.25.zip", "1.2.26": "https://downloads.wordpress.org/theme/kadence.1.2.26.zip", "1.2.27": "https://downloads.wordpress.org/theme/kadence.1.2.27.zip", "1.2.28": "https://downloads.wordpress.org/theme/kadence.1.2.28.zip"}, "downloaded": 4559782, "num_ratings": 427, "preview_url": "https://wp-themes.com/kadence/", "reviews_url": "https://wordpress.org/support/theme/kadence/reviews/", "is_community": false, "last_updated": "2025-10-27", "requires_php": "7.4", "creation_time": "2020-11-02 10:37:27", "download_link": "https://downloads.wordpress.org/theme/kadence.1.3.6.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/kadence/screenshot.png?ver=1.3.6", "active_installs": 400000, "aspiresync_meta": {"id": "019a30c0-0bce-71f4-81ce-ab749f51c536", "name": "Kadence", "slug": "kadence", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1761523200, "version": "1.3.6"}, "last_updated_time": "2025-10-27 19:59:59", "external_support_url": "", "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f3c3-72dc-879f-d38a168778e0', 'did:web:api.aspiredev.org:packages:wp-theme:kubio', 'kubio', 'Kubio', 'Kubio is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Kubio is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', 'wp', 'wp-theme', 'GPL', '{"name": "Kubio", "slug": "kubio", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 86, "status": "open", "ratings": {"1": 1, "2": 0, "3": 0, "4": 0, "5": 5}, "version": "1.0.56", "homepage": "https://wordpress.org/themes/kubio/", "requires": "5.8.3", "sections": {"description": "Kubio is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Kubio is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.9": "https://downloads.wordpress.org/theme/kubio.1.0.9.zip", "1.0.18": "https://downloads.wordpress.org/theme/kubio.1.0.18.zip", "1.0.23": "https://downloads.wordpress.org/theme/kubio.1.0.23.zip", "1.0.25": "https://downloads.wordpress.org/theme/kubio.1.0.25.zip", "1.0.33": "https://downloads.wordpress.org/theme/kubio.1.0.33.zip", "1.0.39": "https://downloads.wordpress.org/theme/kubio.1.0.39.zip", "1.0.40": "https://downloads.wordpress.org/theme/kubio.1.0.40.zip", "1.0.43": "https://downloads.wordpress.org/theme/kubio.1.0.43.zip", "1.0.52": "https://downloads.wordpress.org/theme/kubio.1.0.52.zip", "1.0.53": "https://downloads.wordpress.org/theme/kubio.1.0.53.zip", "1.0.55": "https://downloads.wordpress.org/theme/kubio.1.0.55.zip", "1.0.56": "https://downloads.wordpress.org/theme/kubio.1.0.56.zip"}, "downloaded": 229220, "num_ratings": 6, "preview_url": "https://wp-themes.com/kubio/", "reviews_url": "https://wordpress.org/support/theme/kubio/reviews/", "is_community": false, "last_updated": "2025-05-08", "requires_php": "7.1", "creation_time": "2024-02-05 09:56:48", "download_link": "https://downloads.wordpress.org/theme/kubio.1.0.56.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/kubio/screenshot.jpg?ver=1.0.56", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-0ba1-7302-9098-a1817347c648", "name": "Kubio", "slug": "kubio", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1746662400, "version": "1.0.56"}, "last_updated_time": "2025-05-08 11:17:20", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f3d7-7151-8387-f2a2c204e374', 'did:web:api.aspiredev.org:packages:wp-theme:lightning', 'lightning', 'Lightning', 'Lightning is a very simple & easy to customize theme which is based on the Bootstrap. It is also very friendly with custom post types and custom taxonomies. When you add a new one, the breadcrumbs will be adjusted and posts will look beautifully without editing or adding a template files.', 'wp', 'wp-theme', 'GPL', '{"name": "Lightning", "slug": "lightning", "tags": {"blog": "Blog", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Vektor,Inc.", "avatar": "https://secure.gravatar.com/avatar/3a4eedfdaf403dbe8dabfd7ea20341c5ac3f3da5812c354894331c585bbd4e0a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kurudrive/", "author_url": "https://www.vektor-inc.co.jp", "display_name": "Hidekazu Ishikawa", "user_nicename": "kurudrive"}, "rating": 94, "status": "open", "ratings": {"1": 0, "2": 0, "3": 1, "4": 1, "5": 9}, "version": "15.32.1", "homepage": "https://wordpress.org/themes/lightning/", "requires": "6.4", "sections": {"description": "Lightning is a very simple & easy to customize theme which is based on the Bootstrap. It is also very friendly with custom post types and custom taxonomies. When you add a new one, the breadcrumbs will be adjusted and posts will look beautifully without editing or adding a template files."}, "versions": {"0.0.0": "https://downloads.wordpress.org/theme/lightning.0.0.0.zip", "0.0.1": "https://downloads.wordpress.org/theme/lightning.0.0.1.zip", "0.1.0": "https://downloads.wordpress.org/theme/lightning.0.1.0.zip", "0.1.1": "https://downloads.wordpress.org/theme/lightning.0.1.1.zip", "0.1.2": "https://downloads.wordpress.org/theme/lightning.0.1.2.zip", "0.1.3": "https://downloads.wordpress.org/theme/lightning.0.1.3.zip", "0.1.4": "https://downloads.wordpress.org/theme/lightning.0.1.4.zip", "0.1.5": "https://downloads.wordpress.org/theme/lightning.0.1.5.zip", "0.1.6": "https://downloads.wordpress.org/theme/lightning.0.1.6.zip", "0.1.7": "https://downloads.wordpress.org/theme/lightning.0.1.7.zip", "0.1.8": "https://downloads.wordpress.org/theme/lightning.0.1.8.zip", "0.1.9": "https://downloads.wordpress.org/theme/lightning.0.1.9.zip", "0.2.0": "https://downloads.wordpress.org/theme/lightning.0.2.0.zip", "0.2.1": "https://downloads.wordpress.org/theme/lightning.0.2.1.zip", "0.2.2": "https://downloads.wordpress.org/theme/lightning.0.2.2.zip", "0.2.3": "https://downloads.wordpress.org/theme/lightning.0.2.3.zip", "0.2.4": "https://downloads.wordpress.org/theme/lightning.0.2.4.zip", "0.2.5": "https://downloads.wordpress.org/theme/lightning.0.2.5.zip", "0.3.0": "https://downloads.wordpress.org/theme/lightning.0.3.0.zip", "1.0.0": "https://downloads.wordpress.org/theme/lightning.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/lightning.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/theme/lightning.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/theme/lightning.1.2.0.zip", "2.0.0": "https://downloads.wordpress.org/theme/lightning.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/lightning.2.0.1.zip", "2.1.0": "https://downloads.wordpress.org/theme/lightning.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/theme/lightning.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/lightning.2.2.1.zip", "2.3.0": "https://downloads.wordpress.org/theme/lightning.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/lightning.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/theme/lightning.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/theme/lightning.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/theme/lightning.2.5.1.zip", "2.6.0": "https://downloads.wordpress.org/theme/lightning.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/lightning.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/theme/lightning.2.6.2.zip", "2.7.0": "https://downloads.wordpress.org/theme/lightning.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/theme/lightning.2.7.1.zip", "2.7.3": "https://downloads.wordpress.org/theme/lightning.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/theme/lightning.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/theme/lightning.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/theme/lightning.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/theme/lightning.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/theme/lightning.2.7.8.zip", "2.7.9": "https://downloads.wordpress.org/theme/lightning.2.7.9.zip", "3.0.0": "https://downloads.wordpress.org/theme/lightning.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/lightning.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/lightning.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/lightning.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/lightning.3.0.4.zip", "3.0.6": "https://downloads.wordpress.org/theme/lightning.3.0.6.zip", "3.1.0": "https://downloads.wordpress.org/theme/lightning.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/lightning.3.1.1.zip", "3.2.0": "https://downloads.wordpress.org/theme/lightning.3.2.0.zip", "3.3.0": "https://downloads.wordpress.org/theme/lightning.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/lightning.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/theme/lightning.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/theme/lightning.3.3.3.zip", "3.4.0": "https://downloads.wordpress.org/theme/lightning.3.4.0.zip", "4.0.0": "https://downloads.wordpress.org/theme/lightning.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/lightning.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/lightning.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/theme/lightning.4.0.3.zip", "4.1.0": "https://downloads.wordpress.org/theme/lightning.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/lightning.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/lightning.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/lightning.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/theme/lightning.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/theme/lightning.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/theme/lightning.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/theme/lightning.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/theme/lightning.4.1.8.zip", "4.2.0": "https://downloads.wordpress.org/theme/lightning.4.2.0.zip", "4.3.0": "https://downloads.wordpress.org/theme/lightning.4.3.0.zip", "4.4.0": "https://downloads.wordpress.org/theme/lightning.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/theme/lightning.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/theme/lightning.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/theme/lightning.4.4.3.zip", "4.4.4": "https://downloads.wordpress.org/theme/lightning.4.4.4.zip", "4.4.5": "https://downloads.wordpress.org/theme/lightning.4.4.5.zip", "4.4.6": "https://downloads.wordpress.org/theme/lightning.4.4.6.zip", "4.4.7": "https://downloads.wordpress.org/theme/lightning.4.4.7.zip", "4.4.8": "https://downloads.wordpress.org/theme/lightning.4.4.8.zip", "4.4.9": "https://downloads.wordpress.org/theme/lightning.4.4.9.zip", "5.0.0": "https://downloads.wordpress.org/theme/lightning.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/theme/lightning.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/theme/lightning.5.0.2.zip", "5.1.0": "https://downloads.wordpress.org/theme/lightning.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/theme/lightning.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/theme/lightning.5.1.2.zip", "5.3.2": "https://downloads.wordpress.org/theme/lightning.5.3.2.zip", "6.0.0": "https://downloads.wordpress.org/theme/lightning.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/theme/lightning.6.0.1.zip", "6.1.0": "https://downloads.wordpress.org/theme/lightning.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/theme/lightning.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/theme/lightning.6.1.2.zip", "6.2.0": "https://downloads.wordpress.org/theme/lightning.6.2.0.zip", "6.3.0": "https://downloads.wordpress.org/theme/lightning.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/theme/lightning.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/theme/lightning.6.3.2.zip", "6.4.0": "https://downloads.wordpress.org/theme/lightning.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/theme/lightning.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/theme/lightning.6.4.2.zip", "6.5.0": "https://downloads.wordpress.org/theme/lightning.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/theme/lightning.6.5.1.zip", "6.5.2": "https://downloads.wordpress.org/theme/lightning.6.5.2.zip", "6.6.0": "https://downloads.wordpress.org/theme/lightning.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/theme/lightning.6.6.1.zip", "6.6.3": "https://downloads.wordpress.org/theme/lightning.6.6.3.zip", "6.6.4": "https://downloads.wordpress.org/theme/lightning.6.6.4.zip", "6.6.5": "https://downloads.wordpress.org/theme/lightning.6.6.5.zip", "6.6.6": "https://downloads.wordpress.org/theme/lightning.6.6.6.zip", "6.7.0": "https://downloads.wordpress.org/theme/lightning.6.7.0.zip", "6.7.1": "https://downloads.wordpress.org/theme/lightning.6.7.1.zip", "6.8.0": "https://downloads.wordpress.org/theme/lightning.6.8.0.zip", "6.9.0": "https://downloads.wordpress.org/theme/lightning.6.9.0.zip", "7.0.5": "https://downloads.wordpress.org/theme/lightning.7.0.5.zip", "7.0.6": "https://downloads.wordpress.org/theme/lightning.7.0.6.zip", "7.0.7": "https://downloads.wordpress.org/theme/lightning.7.0.7.zip", "7.0.8": "https://downloads.wordpress.org/theme/lightning.7.0.8.zip", "7.0.9": "https://downloads.wordpress.org/theme/lightning.7.0.9.zip", "7.1.0": "https://downloads.wordpress.org/theme/lightning.7.1.0.zip", "7.1.1": "https://downloads.wordpress.org/theme/lightning.7.1.1.zip", "7.1.4": "https://downloads.wordpress.org/theme/lightning.7.1.4.zip", "7.2.0": "https://downloads.wordpress.org/theme/lightning.7.2.0.zip", "7.2.1": "https://downloads.wordpress.org/theme/lightning.7.2.1.zip", "7.2.4": "https://downloads.wordpress.org/theme/lightning.7.2.4.zip", "7.2.6": "https://downloads.wordpress.org/theme/lightning.7.2.6.zip", "7.2.7": "https://downloads.wordpress.org/theme/lightning.7.2.7.zip", "7.3.0": "https://downloads.wordpress.org/theme/lightning.7.3.0.zip", "7.4.0": "https://downloads.wordpress.org/theme/lightning.7.4.0.zip", "7.5.0": "https://downloads.wordpress.org/theme/lightning.7.5.0.zip", "7.6.1": "https://downloads.wordpress.org/theme/lightning.7.6.1.zip", "7.6.3": "https://downloads.wordpress.org/theme/lightning.7.6.3.zip", "8.0.0": "https://downloads.wordpress.org/theme/lightning.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/theme/lightning.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/theme/lightning.8.0.2.zip", "8.0.3": "https://downloads.wordpress.org/theme/lightning.8.0.3.zip", "8.0.4": "https://downloads.wordpress.org/theme/lightning.8.0.4.zip", "8.1.0": "https://downloads.wordpress.org/theme/lightning.8.1.0.zip", "8.2.0": "https://downloads.wordpress.org/theme/lightning.8.2.0.zip", "8.2.1": "https://downloads.wordpress.org/theme/lightning.8.2.1.zip", "8.2.2": "https://downloads.wordpress.org/theme/lightning.8.2.2.zip", "8.2.3": "https://downloads.wordpress.org/theme/lightning.8.2.3.zip", "8.2.4": "https://downloads.wordpress.org/theme/lightning.8.2.4.zip", "9.0.0": "https://downloads.wordpress.org/theme/lightning.9.0.0.zip", "9.0.1": "https://downloads.wordpress.org/theme/lightning.9.0.1.zip", "9.0.2": "https://downloads.wordpress.org/theme/lightning.9.0.2.zip", "9.0.3": "https://downloads.wordpress.org/theme/lightning.9.0.3.zip", "9.0.4": "https://downloads.wordpress.org/theme/lightning.9.0.4.zip", "9.0.5": "https://downloads.wordpress.org/theme/lightning.9.0.5.zip", "9.0.6": "https://downloads.wordpress.org/theme/lightning.9.0.6.zip", "9.0.7": "https://downloads.wordpress.org/theme/lightning.9.0.7.zip", "9.1.0": "https://downloads.wordpress.org/theme/lightning.9.1.0.zip", "9.1.1": "https://downloads.wordpress.org/theme/lightning.9.1.1.zip", "9.3.3": "https://downloads.wordpress.org/theme/lightning.9.3.3.zip", "9.4.1": "https://downloads.wordpress.org/theme/lightning.9.4.1.zip", "9.6.0": "https://downloads.wordpress.org/theme/lightning.9.6.0.zip", "9.6.1": "https://downloads.wordpress.org/theme/lightning.9.6.1.zip", "9.8.0": "https://downloads.wordpress.org/theme/lightning.9.8.0.zip", "9.8.1": "https://downloads.wordpress.org/theme/lightning.9.8.1.zip", "9.9.0": "https://downloads.wordpress.org/theme/lightning.9.9.0.zip", "0.1.10": "https://downloads.wordpress.org/theme/lightning.0.1.10.zip", "0.1.11": "https://downloads.wordpress.org/theme/lightning.0.1.11.zip", "0.1.12": "https://downloads.wordpress.org/theme/lightning.0.1.12.zip", "0.1.13": "https://downloads.wordpress.org/theme/lightning.0.1.13.zip", "10.0.6": "https://downloads.wordpress.org/theme/lightning.10.0.6.zip", "10.0.7": "https://downloads.wordpress.org/theme/lightning.10.0.7.zip", "10.1.0": "https://downloads.wordpress.org/theme/lightning.10.1.0.zip", "10.2.0": "https://downloads.wordpress.org/theme/lightning.10.2.0.zip", "11.0.0": "https://downloads.wordpress.org/theme/lightning.11.0.0.zip", "11.0.1": "https://downloads.wordpress.org/theme/lightning.11.0.1.zip", "11.0.2": "https://downloads.wordpress.org/theme/lightning.11.0.2.zip", "11.0.3": "https://downloads.wordpress.org/theme/lightning.11.0.3.zip", "11.0.4": "https://downloads.wordpress.org/theme/lightning.11.0.4.zip", "11.0.5": "https://downloads.wordpress.org/theme/lightning.11.0.5.zip", "11.0.6": "https://downloads.wordpress.org/theme/lightning.11.0.6.zip", "11.0.7": "https://downloads.wordpress.org/theme/lightning.11.0.7.zip", "11.0.8": "https://downloads.wordpress.org/theme/lightning.11.0.8.zip", "11.0.9": "https://downloads.wordpress.org/theme/lightning.11.0.9.zip", "11.1.0": "https://downloads.wordpress.org/theme/lightning.11.1.0.zip", "11.2.0": "https://downloads.wordpress.org/theme/lightning.11.2.0.zip", "11.2.1": "https://downloads.wordpress.org/theme/lightning.11.2.1.zip", "11.2.3": "https://downloads.wordpress.org/theme/lightning.11.2.3.zip", "11.3.1": "https://downloads.wordpress.org/theme/lightning.11.3.1.zip", "11.3.2": "https://downloads.wordpress.org/theme/lightning.11.3.2.zip", "11.3.3": "https://downloads.wordpress.org/theme/lightning.11.3.3.zip", "11.3.4": "https://downloads.wordpress.org/theme/lightning.11.3.4.zip", "11.3.5": "https://downloads.wordpress.org/theme/lightning.11.3.5.zip", "11.3.6": "https://downloads.wordpress.org/theme/lightning.11.3.6.zip", "11.4.0": "https://downloads.wordpress.org/theme/lightning.11.4.0.zip", "11.4.3": "https://downloads.wordpress.org/theme/lightning.11.4.3.zip", "11.4.4": "https://downloads.wordpress.org/theme/lightning.11.4.4.zip", "11.4.5": "https://downloads.wordpress.org/theme/lightning.11.4.5.zip", "11.4.6": "https://downloads.wordpress.org/theme/lightning.11.4.6.zip", "11.4.8": "https://downloads.wordpress.org/theme/lightning.11.4.8.zip", "11.5.0": "https://downloads.wordpress.org/theme/lightning.11.5.0.zip", "12.0.0": "https://downloads.wordpress.org/theme/lightning.12.0.0.zip", "12.1.0": "https://downloads.wordpress.org/theme/lightning.12.1.0.zip", "12.1.1": "https://downloads.wordpress.org/theme/lightning.12.1.1.zip", "12.1.2": "https://downloads.wordpress.org/theme/lightning.12.1.2.zip", "12.2.1": "https://downloads.wordpress.org/theme/lightning.12.2.1.zip", "12.3.2": "https://downloads.wordpress.org/theme/lightning.12.3.2.zip", "12.4.0": "https://downloads.wordpress.org/theme/lightning.12.4.0.zip", "12.5.0": "https://downloads.wordpress.org/theme/lightning.12.5.0.zip", "12.6.0": "https://downloads.wordpress.org/theme/lightning.12.6.0.zip", "12.7.0": "https://downloads.wordpress.org/theme/lightning.12.7.0.zip", "12.8.0": "https://downloads.wordpress.org/theme/lightning.12.8.0.zip", "12.8.1": "https://downloads.wordpress.org/theme/lightning.12.8.1.zip", "12.8.2": "https://downloads.wordpress.org/theme/lightning.12.8.2.zip", "12.8.3": "https://downloads.wordpress.org/theme/lightning.12.8.3.zip", "12.9.0": "https://downloads.wordpress.org/theme/lightning.12.9.0.zip", "12.9.1": "https://downloads.wordpress.org/theme/lightning.12.9.1.zip", "13.0.0": "https://downloads.wordpress.org/theme/lightning.13.0.0.zip", "13.1.0": "https://downloads.wordpress.org/theme/lightning.13.1.0.zip", "13.1.1": "https://downloads.wordpress.org/theme/lightning.13.1.1.zip", "13.2.0": "https://downloads.wordpress.org/theme/lightning.13.2.0.zip", "13.3.0": "https://downloads.wordpress.org/theme/lightning.13.3.0.zip", "13.3.1": "https://downloads.wordpress.org/theme/lightning.13.3.1.zip", "13.4.0": "https://downloads.wordpress.org/theme/lightning.13.4.0.zip", "13.4.1": "https://downloads.wordpress.org/theme/lightning.13.4.1.zip", "13.4.2": "https://downloads.wordpress.org/theme/lightning.13.4.2.zip", "13.5.0": "https://downloads.wordpress.org/theme/lightning.13.5.0.zip", "13.5.1": "https://downloads.wordpress.org/theme/lightning.13.5.1.zip", "13.5.4": "https://downloads.wordpress.org/theme/lightning.13.5.4.zip", "13.6.0": "https://downloads.wordpress.org/theme/lightning.13.6.0.zip", "13.7.0": "https://downloads.wordpress.org/theme/lightning.13.7.0.zip", "13.7.1": "https://downloads.wordpress.org/theme/lightning.13.7.1.zip", "13.7.2": "https://downloads.wordpress.org/theme/lightning.13.7.2.zip", "13.8.0": "https://downloads.wordpress.org/theme/lightning.13.8.0.zip", "13.8.1": "https://downloads.wordpress.org/theme/lightning.13.8.1.zip", "13.8.2": "https://downloads.wordpress.org/theme/lightning.13.8.2.zip", "13.8.3": "https://downloads.wordpress.org/theme/lightning.13.8.3.zip", "13.8.4": "https://downloads.wordpress.org/theme/lightning.13.8.4.zip", "13.8.5": "https://downloads.wordpress.org/theme/lightning.13.8.5.zip", "13.8.6": "https://downloads.wordpress.org/theme/lightning.13.8.6.zip", "13.8.7": "https://downloads.wordpress.org/theme/lightning.13.8.7.zip", "13.8.8": "https://downloads.wordpress.org/theme/lightning.13.8.8.zip", "13.8.9": "https://downloads.wordpress.org/theme/lightning.13.8.9.zip", "14.1.0": "https://downloads.wordpress.org/theme/lightning.14.1.0.zip", "14.1.1": "https://downloads.wordpress.org/theme/lightning.14.1.1.zip", "14.1.2": "https://downloads.wordpress.org/theme/lightning.14.1.2.zip", "14.1.3": "https://downloads.wordpress.org/theme/lightning.14.1.3.zip", "14.1.4": "https://downloads.wordpress.org/theme/lightning.14.1.4.zip", "14.1.5": "https://downloads.wordpress.org/theme/lightning.14.1.5.zip", "14.1.6": "https://downloads.wordpress.org/theme/lightning.14.1.6.zip", "14.1.8": "https://downloads.wordpress.org/theme/lightning.14.1.8.zip", "14.1.9": "https://downloads.wordpress.org/theme/lightning.14.1.9.zip", "14.2.0": "https://downloads.wordpress.org/theme/lightning.14.2.0.zip", "14.2.1": "https://downloads.wordpress.org/theme/lightning.14.2.1.zip", "14.2.2": "https://downloads.wordpress.org/theme/lightning.14.2.2.zip", "14.3.0": "https://downloads.wordpress.org/theme/lightning.14.3.0.zip", "14.3.1": "https://downloads.wordpress.org/theme/lightning.14.3.1.zip", "14.3.2": "https://downloads.wordpress.org/theme/lightning.14.3.2.zip", "14.3.3": "https://downloads.wordpress.org/theme/lightning.14.3.3.zip", "14.3.4": "https://downloads.wordpress.org/theme/lightning.14.3.4.zip", "14.3.5": "https://downloads.wordpress.org/theme/lightning.14.3.5.zip", "14.3.6": "https://downloads.wordpress.org/theme/lightning.14.3.6.zip", "14.3.7": "https://downloads.wordpress.org/theme/lightning.14.3.7.zip", "14.3.8": "https://downloads.wordpress.org/theme/lightning.14.3.8.zip", "14.3.9": "https://downloads.wordpress.org/theme/lightning.14.3.9.zip", "14.4.1": "https://downloads.wordpress.org/theme/lightning.14.4.1.zip", "14.4.2": "https://downloads.wordpress.org/theme/lightning.14.4.2.zip", "14.5.0": "https://downloads.wordpress.org/theme/lightning.14.5.0.zip", "14.5.1": "https://downloads.wordpress.org/theme/lightning.14.5.1.zip", "14.5.2": "https://downloads.wordpress.org/theme/lightning.14.5.2.zip", "14.5.3": "https://downloads.wordpress.org/theme/lightning.14.5.3.zip", "14.5.4": "https://downloads.wordpress.org/theme/lightning.14.5.4.zip", "14.5.5": "https://downloads.wordpress.org/theme/lightning.14.5.5.zip", "14.5.6": "https://downloads.wordpress.org/theme/lightning.14.5.6.zip", "14.5.7": "https://downloads.wordpress.org/theme/lightning.14.5.7.zip", "14.5.8": "https://downloads.wordpress.org/theme/lightning.14.5.8.zip", "14.5.9": "https://downloads.wordpress.org/theme/lightning.14.5.9.zip", "14.6.0": "https://downloads.wordpress.org/theme/lightning.14.6.0.zip", "14.6.1": "https://downloads.wordpress.org/theme/lightning.14.6.1.zip", "14.6.2": "https://downloads.wordpress.org/theme/lightning.14.6.2.zip", "14.7.0": "https://downloads.wordpress.org/theme/lightning.14.7.0.zip", "14.7.1": "https://downloads.wordpress.org/theme/lightning.14.7.1.zip", "14.8.0": "https://downloads.wordpress.org/theme/lightning.14.8.0.zip", "14.8.1": "https://downloads.wordpress.org/theme/lightning.14.8.1.zip", "14.8.2": "https://downloads.wordpress.org/theme/lightning.14.8.2.zip", "14.9.0": "https://downloads.wordpress.org/theme/lightning.14.9.0.zip", "14.9.1": "https://downloads.wordpress.org/theme/lightning.14.9.1.zip", "14.9.2": "https://downloads.wordpress.org/theme/lightning.14.9.2.zip", "14.9.3": "https://downloads.wordpress.org/theme/lightning.14.9.3.zip", "14.9.4": "https://downloads.wordpress.org/theme/lightning.14.9.4.zip", "15.1.2": "https://downloads.wordpress.org/theme/lightning.15.1.2.zip", "15.1.3": "https://downloads.wordpress.org/theme/lightning.15.1.3.zip", "15.1.4": "https://downloads.wordpress.org/theme/lightning.15.1.4.zip", "15.2.0": "https://downloads.wordpress.org/theme/lightning.15.2.0.zip", "15.2.1": "https://downloads.wordpress.org/theme/lightning.15.2.1.zip", "15.2.2": "https://downloads.wordpress.org/theme/lightning.15.2.2.zip", "15.2.3": "https://downloads.wordpress.org/theme/lightning.15.2.3.zip", "15.2.4": "https://downloads.wordpress.org/theme/lightning.15.2.4.zip", "15.2.5": "https://downloads.wordpress.org/theme/lightning.15.2.5.zip", "15.2.6": "https://downloads.wordpress.org/theme/lightning.15.2.6.zip", "15.3.0": "https://downloads.wordpress.org/theme/lightning.15.3.0.zip", "15.4.0": "https://downloads.wordpress.org/theme/lightning.15.4.0.zip", "15.5.0": "https://downloads.wordpress.org/theme/lightning.15.5.0.zip", "15.5.1": "https://downloads.wordpress.org/theme/lightning.15.5.1.zip", "15.6.0": "https://downloads.wordpress.org/theme/lightning.15.6.0.zip", "15.7.0": "https://downloads.wordpress.org/theme/lightning.15.7.0.zip", "15.8.0": "https://downloads.wordpress.org/theme/lightning.15.8.0.zip", "15.8.1": "https://downloads.wordpress.org/theme/lightning.15.8.1.zip", "15.8.2": "https://downloads.wordpress.org/theme/lightning.15.8.2.zip", "15.8.3": "https://downloads.wordpress.org/theme/lightning.15.8.3.zip", "15.8.4": "https://downloads.wordpress.org/theme/lightning.15.8.4.zip", "15.8.5": "https://downloads.wordpress.org/theme/lightning.15.8.5.zip", "15.8.6": "https://downloads.wordpress.org/theme/lightning.15.8.6.zip", "15.9.0": "https://downloads.wordpress.org/theme/lightning.15.9.0.zip", "15.9.1": "https://downloads.wordpress.org/theme/lightning.15.9.1.zip", "15.9.2": "https://downloads.wordpress.org/theme/lightning.15.9.2.zip", "15.9.3": "https://downloads.wordpress.org/theme/lightning.15.9.3.zip", "15.9.4": "https://downloads.wordpress.org/theme/lightning.15.9.4.zip", "15.9.5": "https://downloads.wordpress.org/theme/lightning.15.9.5.zip", "4.4.10": "https://downloads.wordpress.org/theme/lightning.4.4.10.zip", "4.4.11": "https://downloads.wordpress.org/theme/lightning.4.4.11.zip", "4.4.12": "https://downloads.wordpress.org/theme/lightning.4.4.12.zip", "6.10.0": "https://downloads.wordpress.org/theme/lightning.6.10.0.zip", "6.10.1": "https://downloads.wordpress.org/theme/lightning.6.10.1.zip", "6.10.2": "https://downloads.wordpress.org/theme/lightning.6.10.2.zip", "6.10.3": "https://downloads.wordpress.org/theme/lightning.6.10.3.zip", "6.11.0": "https://downloads.wordpress.org/theme/lightning.6.11.0.zip", "6.12.0": "https://downloads.wordpress.org/theme/lightning.6.12.0.zip", "6.13.0": "https://downloads.wordpress.org/theme/lightning.6.13.0.zip", "6.13.2": "https://downloads.wordpress.org/theme/lightning.6.13.2.zip", "6.13.3": "https://downloads.wordpress.org/theme/lightning.6.13.3.zip", "6.13.4": "https://downloads.wordpress.org/theme/lightning.6.13.4.zip", "6.13.5": "https://downloads.wordpress.org/theme/lightning.6.13.5.zip", "6.13.6": "https://downloads.wordpress.org/theme/lightning.6.13.6.zip", "6.14.0": "https://downloads.wordpress.org/theme/lightning.6.14.0.zip", "6.15.0": "https://downloads.wordpress.org/theme/lightning.6.15.0.zip", "6.16.0": "https://downloads.wordpress.org/theme/lightning.6.16.0.zip", "9.10.0": "https://downloads.wordpress.org/theme/lightning.9.10.0.zip", "9.11.0": "https://downloads.wordpress.org/theme/lightning.9.11.0.zip", "9.11.1": "https://downloads.wordpress.org/theme/lightning.9.11.1.zip", "9.14.0": "https://downloads.wordpress.org/theme/lightning.9.14.0.zip", "12.10.0": "https://downloads.wordpress.org/theme/lightning.12.10.0.zip", "12.10.1": "https://downloads.wordpress.org/theme/lightning.12.10.1.zip", "13.8.11": "https://downloads.wordpress.org/theme/lightning.13.8.11.zip", "13.8.13": "https://downloads.wordpress.org/theme/lightning.13.8.13.zip", "14.10.0": "https://downloads.wordpress.org/theme/lightning.14.10.0.zip", "14.11.0": "https://downloads.wordpress.org/theme/lightning.14.11.0.zip", "14.11.1": "https://downloads.wordpress.org/theme/lightning.14.11.1.zip", "14.11.2": "https://downloads.wordpress.org/theme/lightning.14.11.2.zip", "14.11.3": "https://downloads.wordpress.org/theme/lightning.14.11.3.zip", "14.11.4": "https://downloads.wordpress.org/theme/lightning.14.11.4.zip", "14.11.5": "https://downloads.wordpress.org/theme/lightning.14.11.5.zip", "14.11.6": "https://downloads.wordpress.org/theme/lightning.14.11.6.zip", "14.11.7": "https://downloads.wordpress.org/theme/lightning.14.11.7.zip", "14.11.8": "https://downloads.wordpress.org/theme/lightning.14.11.8.zip", "14.11.9": "https://downloads.wordpress.org/theme/lightning.14.11.9.zip", "14.12.0": "https://downloads.wordpress.org/theme/lightning.14.12.0.zip", "14.12.1": "https://downloads.wordpress.org/theme/lightning.14.12.1.zip", "14.12.2": "https://downloads.wordpress.org/theme/lightning.14.12.2.zip", "14.13.0": "https://downloads.wordpress.org/theme/lightning.14.13.0.zip", "14.13.1": "https://downloads.wordpress.org/theme/lightning.14.13.1.zip", "14.13.2": "https://downloads.wordpress.org/theme/lightning.14.13.2.zip", "14.13.3": "https://downloads.wordpress.org/theme/lightning.14.13.3.zip", "14.13.4": "https://downloads.wordpress.org/theme/lightning.14.13.4.zip", "14.13.5": "https://downloads.wordpress.org/theme/lightning.14.13.5.zip", "14.13.6": "https://downloads.wordpress.org/theme/lightning.14.13.6.zip", "14.14.0": "https://downloads.wordpress.org/theme/lightning.14.14.0.zip", "14.14.1": "https://downloads.wordpress.org/theme/lightning.14.14.1.zip", "14.15.0": "https://downloads.wordpress.org/theme/lightning.14.15.0.zip", "14.15.1": "https://downloads.wordpress.org/theme/lightning.14.15.1.zip", "14.15.2": "https://downloads.wordpress.org/theme/lightning.14.15.2.zip", "14.16.0": "https://downloads.wordpress.org/theme/lightning.14.16.0.zip", "14.17.0": "https://downloads.wordpress.org/theme/lightning.14.17.0.zip", "14.17.1": "https://downloads.wordpress.org/theme/lightning.14.17.1.zip", "14.17.2": "https://downloads.wordpress.org/theme/lightning.14.17.2.zip", "14.17.3": "https://downloads.wordpress.org/theme/lightning.14.17.3.zip", "14.17.4": "https://downloads.wordpress.org/theme/lightning.14.17.4.zip", "14.17.5": "https://downloads.wordpress.org/theme/lightning.14.17.5.zip", "14.18.0": "https://downloads.wordpress.org/theme/lightning.14.18.0.zip", "14.18.1": "https://downloads.wordpress.org/theme/lightning.14.18.1.zip", "14.18.2": "https://downloads.wordpress.org/theme/lightning.14.18.2.zip", "14.19.0": "https://downloads.wordpress.org/theme/lightning.14.19.0.zip", "14.19.1": "https://downloads.wordpress.org/theme/lightning.14.19.1.zip", "14.19.2": "https://downloads.wordpress.org/theme/lightning.14.19.2.zip", "14.20.0": "https://downloads.wordpress.org/theme/lightning.14.20.0.zip", "14.20.1": "https://downloads.wordpress.org/theme/lightning.14.20.1.zip", "14.20.2": "https://downloads.wordpress.org/theme/lightning.14.20.2.zip", "14.20.3": "https://downloads.wordpress.org/theme/lightning.14.20.3.zip", "14.21.0": "https://downloads.wordpress.org/theme/lightning.14.21.0.zip", "14.21.1": "https://downloads.wordpress.org/theme/lightning.14.21.1.zip", "14.21.2": "https://downloads.wordpress.org/theme/lightning.14.21.2.zip", "14.21.3": "https://downloads.wordpress.org/theme/lightning.14.21.3.zip", "14.21.4": "https://downloads.wordpress.org/theme/lightning.14.21.4.zip", "14.21.5": "https://downloads.wordpress.org/theme/lightning.14.21.5.zip", "14.22.0": "https://downloads.wordpress.org/theme/lightning.14.22.0.zip", "14.22.1": "https://downloads.wordpress.org/theme/lightning.14.22.1.zip", "14.22.2": "https://downloads.wordpress.org/theme/lightning.14.22.2.zip", "14.22.3": "https://downloads.wordpress.org/theme/lightning.14.22.3.zip", "14.22.4": "https://downloads.wordpress.org/theme/lightning.14.22.4.zip", "14.22.6": "https://downloads.wordpress.org/theme/lightning.14.22.6.zip", "14.22.7": "https://downloads.wordpress.org/theme/lightning.14.22.7.zip", "14.22.8": "https://downloads.wordpress.org/theme/lightning.14.22.8.zip", "14.22.9": "https://downloads.wordpress.org/theme/lightning.14.22.9.zip", "14.23.0": "https://downloads.wordpress.org/theme/lightning.14.23.0.zip", "14.23.1": "https://downloads.wordpress.org/theme/lightning.14.23.1.zip", "14.23.2": "https://downloads.wordpress.org/theme/lightning.14.23.2.zip", "14.23.3": "https://downloads.wordpress.org/theme/lightning.14.23.3.zip", "14.23.4": "https://downloads.wordpress.org/theme/lightning.14.23.4.zip", "14.24.0": "https://downloads.wordpress.org/theme/lightning.14.24.0.zip", "14.25.0": "https://downloads.wordpress.org/theme/lightning.14.25.0.zip", "14.25.1": "https://downloads.wordpress.org/theme/lightning.14.25.1.zip", "14.5.10": "https://downloads.wordpress.org/theme/lightning.14.5.10.zip", "14.5.11": "https://downloads.wordpress.org/theme/lightning.14.5.11.zip", "15.10.0": "https://downloads.wordpress.org/theme/lightning.15.10.0.zip", "15.10.1": "https://downloads.wordpress.org/theme/lightning.15.10.1.zip", "15.10.2": "https://downloads.wordpress.org/theme/lightning.15.10.2.zip", "15.10.3": "https://downloads.wordpress.org/theme/lightning.15.10.3.zip", "15.10.4": "https://downloads.wordpress.org/theme/lightning.15.10.4.zip", "15.10.5": "https://downloads.wordpress.org/theme/lightning.15.10.5.zip", "15.10.6": "https://downloads.wordpress.org/theme/lightning.15.10.6.zip", "15.11.0": "https://downloads.wordpress.org/theme/lightning.15.11.0.zip", "15.12.0": "https://downloads.wordpress.org/theme/lightning.15.12.0.zip", "15.12.1": "https://downloads.wordpress.org/theme/lightning.15.12.1.zip", "15.13.0": "https://downloads.wordpress.org/theme/lightning.15.13.0.zip", "15.14.0": "https://downloads.wordpress.org/theme/lightning.15.14.0.zip", "15.14.1": "https://downloads.wordpress.org/theme/lightning.15.14.1.zip", "15.14.2": "https://downloads.wordpress.org/theme/lightning.15.14.2.zip", "15.15.0": "https://downloads.wordpress.org/theme/lightning.15.15.0.zip", "15.15.1": "https://downloads.wordpress.org/theme/lightning.15.15.1.zip", "15.16.0": "https://downloads.wordpress.org/theme/lightning.15.16.0.zip", "15.17.0": "https://downloads.wordpress.org/theme/lightning.15.17.0.zip", "15.17.1": "https://downloads.wordpress.org/theme/lightning.15.17.1.zip", "15.18.0": "https://downloads.wordpress.org/theme/lightning.15.18.0.zip", "15.19.0": "https://downloads.wordpress.org/theme/lightning.15.19.0.zip", "15.19.1": "https://downloads.wordpress.org/theme/lightning.15.19.1.zip", "15.20.0": "https://downloads.wordpress.org/theme/lightning.15.20.0.zip", "15.20.1": "https://downloads.wordpress.org/theme/lightning.15.20.1.zip", "15.20.2": "https://downloads.wordpress.org/theme/lightning.15.20.2.zip", "15.21.0": "https://downloads.wordpress.org/theme/lightning.15.21.0.zip", "15.21.1": "https://downloads.wordpress.org/theme/lightning.15.21.1.zip", "15.22.0": "https://downloads.wordpress.org/theme/lightning.15.22.0.zip", "15.22.1": "https://downloads.wordpress.org/theme/lightning.15.22.1.zip", "15.23.0": "https://downloads.wordpress.org/theme/lightning.15.23.0.zip", "15.23.1": "https://downloads.wordpress.org/theme/lightning.15.23.1.zip", "15.24.0": "https://downloads.wordpress.org/theme/lightning.15.24.0.zip", "15.25.0": "https://downloads.wordpress.org/theme/lightning.15.25.0.zip", "15.25.1": "https://downloads.wordpress.org/theme/lightning.15.25.1.zip", "15.26.0": "https://downloads.wordpress.org/theme/lightning.15.26.0.zip", "15.26.1": "https://downloads.wordpress.org/theme/lightning.15.26.1.zip", "15.26.2": "https://downloads.wordpress.org/theme/lightning.15.26.2.zip", "15.26.3": "https://downloads.wordpress.org/theme/lightning.15.26.3.zip", "15.26.4": "https://downloads.wordpress.org/theme/lightning.15.26.4.zip", "15.26.5": "https://downloads.wordpress.org/theme/lightning.15.26.5.zip", "15.27.0": "https://downloads.wordpress.org/theme/lightning.15.27.0.zip", "15.27.1": "https://downloads.wordpress.org/theme/lightning.15.27.1.zip", "15.27.2": "https://downloads.wordpress.org/theme/lightning.15.27.2.zip", "15.28.0": "https://downloads.wordpress.org/theme/lightning.15.28.0.zip", "15.28.1": "https://downloads.wordpress.org/theme/lightning.15.28.1.zip", "15.28.2": "https://downloads.wordpress.org/theme/lightning.15.28.2.zip", "15.29.0": "https://downloads.wordpress.org/theme/lightning.15.29.0.zip", "15.29.1": "https://downloads.wordpress.org/theme/lightning.15.29.1.zip", "15.29.2": "https://downloads.wordpress.org/theme/lightning.15.29.2.zip", "15.29.3": "https://downloads.wordpress.org/theme/lightning.15.29.3.zip", "15.29.4": "https://downloads.wordpress.org/theme/lightning.15.29.4.zip", "15.29.5": "https://downloads.wordpress.org/theme/lightning.15.29.5.zip", "15.29.6": "https://downloads.wordpress.org/theme/lightning.15.29.6.zip", "15.29.7": "https://downloads.wordpress.org/theme/lightning.15.29.7.zip", "15.29.8": "https://downloads.wordpress.org/theme/lightning.15.29.8.zip", "15.29.9": "https://downloads.wordpress.org/theme/lightning.15.29.9.zip", "15.30.0": "https://downloads.wordpress.org/theme/lightning.15.30.0.zip", "15.30.1": "https://downloads.wordpress.org/theme/lightning.15.30.1.zip", "15.30.2": "https://downloads.wordpress.org/theme/lightning.15.30.2.zip", "15.30.3": "https://downloads.wordpress.org/theme/lightning.15.30.3.zip", "15.30.4": "https://downloads.wordpress.org/theme/lightning.15.30.4.zip", "15.31.1": "https://downloads.wordpress.org/theme/lightning.15.31.1.zip", "15.32.0": "https://downloads.wordpress.org/theme/lightning.15.32.0.zip", "15.32.1": "https://downloads.wordpress.org/theme/lightning.15.32.1.zip", "14.11.10": "https://downloads.wordpress.org/theme/lightning.14.11.10.zip", "14.11.12": "https://downloads.wordpress.org/theme/lightning.14.11.12.zip", "14.22.10": "https://downloads.wordpress.org/theme/lightning.14.22.10.zip", "14.22.11": "https://downloads.wordpress.org/theme/lightning.14.22.11.zip", "14.22.12": "https://downloads.wordpress.org/theme/lightning.14.22.12.zip", "15.29.10": "https://downloads.wordpress.org/theme/lightning.15.29.10.zip", "15.29.11": "https://downloads.wordpress.org/theme/lightning.15.29.11.zip"}, "downloaded": 2800973, "num_ratings": 11, "preview_url": "https://wp-themes.com/lightning/", "reviews_url": "https://wordpress.org/support/theme/lightning/reviews/", "is_community": false, "last_updated": "2025-10-20", "requires_php": "7.4", "creation_time": "2015-07-24 01:30:05", "download_link": "https://downloads.wordpress.org/theme/lightning.15.32.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/lightning/screenshot.png?ver=15.32.1", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-0bfc-73de-897d-695abe27e081", "name": "Lightning", "slug": "lightning", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1760918400, "version": "15.32.1"}, "last_updated_time": "2025-10-20 03:19:20", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f3ed-70ac-9316-664a1946348f', 'did:web:api.aspiredev.org:packages:wp-theme:mistify', 'mistify', 'Mistify', 'Mistify is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Mistify is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', 'wp', 'wp-theme', 'GPL', '{"name": "Mistify", "slug": "mistify", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.12", "homepage": "https://wordpress.org/themes/mistify/", "requires": "5.8", "sections": {"description": "Mistify is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Mistify is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.1": "https://downloads.wordpress.org/theme/mistify.1.0.1.zip", "1.0.4": "https://downloads.wordpress.org/theme/mistify.1.0.4.zip", "1.0.6": "https://downloads.wordpress.org/theme/mistify.1.0.6.zip", "1.0.8": "https://downloads.wordpress.org/theme/mistify.1.0.8.zip", "1.0.12": "https://downloads.wordpress.org/theme/mistify.1.0.12.zip"}, "downloaded": 31729, "num_ratings": 0, "preview_url": "https://wp-themes.com/mistify/", "reviews_url": "https://wordpress.org/support/theme/mistify/reviews/", "is_community": false, "last_updated": "2025-04-15", "requires_php": "7.1", "creation_time": "2024-10-18 14:11:49", "download_link": "https://downloads.wordpress.org/theme/mistify.1.0.12.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/mistify/screenshot.jpg?ver=1.0.12", "active_installs": 4000, "aspiresync_meta": {"id": "019a30c0-0bf7-7284-b0ef-5ecc19023933", "name": "Mistify", "slug": "mistify", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1744675200, "version": "1.0.12"}, "last_updated_time": "2025-04-15 08:27:51", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f401-70ee-8da5-89b56d589220', 'did:web:api.aspiredev.org:packages:wp-theme:neve', 'neve', 'Neve', 'Neve is a next-generation, ultra-fast WordPress theme designed for top performance, SEO, and Core Web Vitals. Its lightweight codebase and small size ensure minimal overhead and lightning-fast load times. Fully compatible with the block editor, popular page builders (Elementor, Bricks, Oxygen etc), and WooCommerce, it’s perfect for blogs, small businesses, agencies, portfolios, and online stores. With responsive design, multilingual translations, and easy customization options, Neve empowers you to create a future-proof, high-ranking online presence. Discover everything Neve has to offer and explore our powerful premium version at https://themeisle.com/themes/neve/.', 'wp', 'wp-theme', 'proprietary', '{"name": "Neve", "slug": "neve", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "ThemeIsle", "avatar": "https://secure.gravatar.com/avatar/91e46225a693950a8f2350674124a8e3ceddb0f705fa988377646322729e3d7c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeisle/", "author_url": "https://themeisle.com", "display_name": "Themeisle", "user_nicename": "themeisle"}, "rating": 94, "status": "open", "ratings": {"1": 52, "2": 11, "3": 16, "4": 60, "5": 1121}, "version": "4.1.4", "homepage": "https://wordpress.org/themes/neve/", "requires": "5.5", "sections": {"description": "Neve is a next-generation, ultra-fast WordPress theme designed for top performance, SEO, and Core Web Vitals. Its lightweight codebase and small size ensure minimal overhead and lightning-fast load times. Fully compatible with the block editor, popular page builders (Elementor, Bricks, Oxygen etc), and WooCommerce, it’s perfect for blogs, small businesses, agencies, portfolios, and online stores. With responsive design, multilingual translations, and easy customization options, Neve empowers you to create a future-proof, high-ranking online presence. Discover everything Neve has to offer and explore our powerful premium version at https://themeisle.com/themes/neve/."}, "versions": {"1.0.4": "https://downloads.wordpress.org/theme/neve.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/neve.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/neve.1.0.6.zip", "1.0.8": "https://downloads.wordpress.org/theme/neve.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/neve.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/neve.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/neve.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/neve.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/neve.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/neve.1.1.4.zip", "2.0.0": "https://downloads.wordpress.org/theme/neve.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/theme/neve.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/theme/neve.2.2.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/neve.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/neve.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/neve.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/neve.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/neve.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/neve.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/neve.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/neve.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/theme/neve.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/theme/neve.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/neve.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/neve.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/neve.2.4.3.zip", "2.5.1": "https://downloads.wordpress.org/theme/neve.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/theme/neve.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/theme/neve.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/neve.2.5.4.zip", "2.6.0": "https://downloads.wordpress.org/theme/neve.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/neve.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/theme/neve.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/theme/neve.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/theme/neve.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/theme/neve.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/theme/neve.2.6.6.zip", "2.7.0": "https://downloads.wordpress.org/theme/neve.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/theme/neve.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/theme/neve.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/theme/neve.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/theme/neve.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/theme/neve.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/theme/neve.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/theme/neve.2.7.7.zip", "2.8.0": "https://downloads.wordpress.org/theme/neve.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/theme/neve.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/theme/neve.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/theme/neve.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/theme/neve.2.8.4.zip", "2.9.0": "https://downloads.wordpress.org/theme/neve.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/theme/neve.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/theme/neve.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/theme/neve.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/theme/neve.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/theme/neve.2.9.5.zip", "3.0.0": "https://downloads.wordpress.org/theme/neve.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/neve.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/neve.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/neve.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/neve.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/theme/neve.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/theme/neve.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/theme/neve.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/theme/neve.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/theme/neve.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/theme/neve.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/neve.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/neve.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/theme/neve.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/theme/neve.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/theme/neve.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/theme/neve.3.1.6.zip", "3.2.0": "https://downloads.wordpress.org/theme/neve.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/theme/neve.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/theme/neve.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/theme/neve.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/theme/neve.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/theme/neve.3.2.5.zip", "3.3.0": "https://downloads.wordpress.org/theme/neve.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/neve.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/theme/neve.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/theme/neve.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/theme/neve.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/theme/neve.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/theme/neve.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/theme/neve.3.3.7.zip", "3.4.0": "https://downloads.wordpress.org/theme/neve.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/theme/neve.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/theme/neve.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/theme/neve.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/theme/neve.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/theme/neve.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/theme/neve.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/theme/neve.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/theme/neve.3.4.8.zip", "3.4.9": "https://downloads.wordpress.org/theme/neve.3.4.9.zip", "3.5.0": "https://downloads.wordpress.org/theme/neve.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/theme/neve.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/theme/neve.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/theme/neve.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/theme/neve.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/theme/neve.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/theme/neve.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/theme/neve.3.5.7.zip", "3.5.8": "https://downloads.wordpress.org/theme/neve.3.5.8.zip", "3.6.0": "https://downloads.wordpress.org/theme/neve.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/theme/neve.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/theme/neve.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/theme/neve.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/theme/neve.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/theme/neve.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/theme/neve.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/theme/neve.3.6.7.zip", "3.7.0": "https://downloads.wordpress.org/theme/neve.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/theme/neve.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/theme/neve.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/theme/neve.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/theme/neve.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/theme/neve.3.7.5.zip", "3.8.0": "https://downloads.wordpress.org/theme/neve.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/theme/neve.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/theme/neve.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/theme/neve.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/theme/neve.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/theme/neve.3.8.5.zip", "3.8.6": "https://downloads.wordpress.org/theme/neve.3.8.6.zip", "3.8.7": "https://downloads.wordpress.org/theme/neve.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/theme/neve.3.8.8.zip", "3.8.9": "https://downloads.wordpress.org/theme/neve.3.8.9.zip", "4.0.0": "https://downloads.wordpress.org/theme/neve.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/neve.4.0.1.zip", "4.1.0": "https://downloads.wordpress.org/theme/neve.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/neve.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/neve.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/neve.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/theme/neve.4.1.4.zip", "1.0.10": "https://downloads.wordpress.org/theme/neve.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/neve.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/neve.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/neve.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/theme/neve.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/theme/neve.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/theme/neve.1.0.16.zip", "1.0.18": "https://downloads.wordpress.org/theme/neve.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/theme/neve.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/neve.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/neve.1.0.21.zip", "1.0.22": "https://downloads.wordpress.org/theme/neve.1.0.22.zip", "1.0.23": "https://downloads.wordpress.org/theme/neve.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/theme/neve.1.0.24.zip", "1.0.25": "https://downloads.wordpress.org/theme/neve.1.0.25.zip", "1.0.26": "https://downloads.wordpress.org/theme/neve.1.0.26.zip", "1.0.27": "https://downloads.wordpress.org/theme/neve.1.0.27.zip", "1.0.28": "https://downloads.wordpress.org/theme/neve.1.0.28.zip", "1.0.29": "https://downloads.wordpress.org/theme/neve.1.0.29.zip", "2.10.0": "https://downloads.wordpress.org/theme/neve.2.10.0.zip", "2.10.1": "https://downloads.wordpress.org/theme/neve.2.10.1.zip", "2.10.2": "https://downloads.wordpress.org/theme/neve.2.10.2.zip", "2.10.3": "https://downloads.wordpress.org/theme/neve.2.10.3.zip", "2.10.4": "https://downloads.wordpress.org/theme/neve.2.10.4.zip", "2.11.0": "https://downloads.wordpress.org/theme/neve.2.11.0.zip", "2.11.1": "https://downloads.wordpress.org/theme/neve.2.11.1.zip", "2.11.2": "https://downloads.wordpress.org/theme/neve.2.11.2.zip", "2.11.3": "https://downloads.wordpress.org/theme/neve.2.11.3.zip", "2.11.4": "https://downloads.wordpress.org/theme/neve.2.11.4.zip", "2.11.5": "https://downloads.wordpress.org/theme/neve.2.11.5.zip", "2.11.6": "https://downloads.wordpress.org/theme/neve.2.11.6.zip", "2.3.10": "https://downloads.wordpress.org/theme/neve.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/theme/neve.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/theme/neve.2.3.12.zip", "2.3.14": "https://downloads.wordpress.org/theme/neve.2.3.14.zip", "2.3.15": "https://downloads.wordpress.org/theme/neve.2.3.15.zip", "2.3.17": "https://downloads.wordpress.org/theme/neve.2.3.17.zip", "2.3.19": "https://downloads.wordpress.org/theme/neve.2.3.19.zip", "2.3.20": "https://downloads.wordpress.org/theme/neve.2.3.20.zip", "2.3.21": "https://downloads.wordpress.org/theme/neve.2.3.21.zip", "2.3.22": "https://downloads.wordpress.org/theme/neve.2.3.22.zip", "3.0.10": "https://downloads.wordpress.org/theme/neve.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/theme/neve.3.0.11.zip", "3.4.10": "https://downloads.wordpress.org/theme/neve.3.4.10.zip", "3.8.10": "https://downloads.wordpress.org/theme/neve.3.8.10.zip", "3.8.11": "https://downloads.wordpress.org/theme/neve.3.8.11.zip", "3.8.12": "https://downloads.wordpress.org/theme/neve.3.8.12.zip", "3.8.13": "https://downloads.wordpress.org/theme/neve.3.8.13.zip", "3.8.14": "https://downloads.wordpress.org/theme/neve.3.8.14.zip", "3.8.15": "https://downloads.wordpress.org/theme/neve.3.8.15.zip", "3.8.16": "https://downloads.wordpress.org/theme/neve.3.8.16.zip"}, "downloaded": 5723040, "num_ratings": 1260, "preview_url": "https://wp-themes.com/neve/", "reviews_url": "https://wordpress.org/support/theme/neve/reviews/", "is_community": false, "last_updated": "2025-09-10", "requires_php": "7.0", "creation_time": "2018-11-23 16:37:10", "download_link": "https://downloads.wordpress.org/theme/neve.4.1.4.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/neve/screenshot.png?ver=4.1.4", "active_installs": 200000, "aspiresync_meta": {"id": "019a30c0-0c4c-7371-b14a-90b8bd8abcc8", "name": "Neve", "slug": "neve", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1757462400, "version": "4.1.4"}, "last_updated_time": "2025-09-10 08:35:37", "external_support_url": "https://themeisle.com/contact/", "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f41d-71a5-836e-990e7d23f9bd', 'did:web:api.aspiredev.org:packages:wp-theme:neve-fse', 'neve-fse', 'Neve FSE', 'Neve FSE is an experimental sister theme of Neve, for the ones that are ready to go full speed on full site editing, without backwards compatibility code.Neve FSE is a modern, minimalistic theme that is fully compatible with full-site-editing, it offers a range of patterns that make it perfect for simple design is suitable for a wide range of purposes, including blogs, small businesses, startups, agencies, firms, e-commerce shops, personal portfolio sites, and more. It also comes with several style variations to suit your unique aesthetic.', 'wp', 'wp-theme', 'GPL', '{"name": "Neve FSE", "slug": "neve-fse", "tags": {"e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemeIsle", "avatar": "https://secure.gravatar.com/avatar/91e46225a693950a8f2350674124a8e3ceddb0f705fa988377646322729e3d7c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeisle/", "author_url": "https://themeisle.com", "display_name": "Themeisle", "user_nicename": "themeisle"}, "rating": 94, "status": "open", "ratings": {"1": 0, "2": 1, "3": 2, "4": 4, "5": 25}, "version": "1.1.5", "homepage": "https://wordpress.org/themes/neve-fse/", "requires": "5.5", "sections": {"description": "Neve FSE is an experimental sister theme of Neve, for the ones that are ready to go full speed on full site editing, without backwards compatibility code.Neve FSE is a modern, minimalistic theme that is fully compatible with full-site-editing, it offers a range of patterns that make it perfect for simple design is suitable for a wide range of purposes, including blogs, small businesses, startups, agencies, firms, e-commerce shops, personal portfolio sites, and more. It also comes with several style variations to suit your unique aesthetic."}, "versions": {"1.0.3": "https://downloads.wordpress.org/theme/neve-fse.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/neve-fse.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/neve-fse.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/neve-fse.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/neve-fse.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/neve-fse.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/neve-fse.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/neve-fse.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/neve-fse.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/neve-fse.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/neve-fse.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/neve-fse.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/neve-fse.1.1.5.zip", "1.0.10": "https://downloads.wordpress.org/theme/neve-fse.1.0.10.zip"}, "downloaded": 200237, "num_ratings": 32, "preview_url": "https://wp-themes.com/neve-fse/", "reviews_url": "https://wordpress.org/support/theme/neve-fse/reviews/", "is_community": false, "last_updated": "2025-09-05", "requires_php": "7.0", "creation_time": "2023-06-19 09:26:44", "download_link": "https://downloads.wordpress.org/theme/neve-fse.1.1.5.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/neve-fse/screenshot.png?ver=1.1.5", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-0c43-72e4-a7fc-a8f9a7298cb6", "name": "Neve FSE", "slug": "neve-fse", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1757030400, "version": "1.1.5"}, "last_updated_time": "2025-09-05 11:20:32", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f42f-7200-a2cd-fbd063d96919', 'did:web:api.aspiredev.org:packages:wp-theme:newsblogger', 'newsblogger', 'NewsBlogger', 'NewsBlogger is a dynamic and versatile child theme for the popular NewCrunch WordPress theme. Perfect for bloggers, journalists, and online magazines, it offers enhanced customization options, improved performance, and seamless integration with both the Gutenberg and Classic editors. Compatible to various popular plugins such as Elementor, Contact Form 7, Polylang and WPML. Theme is RTL ready and prioritizes user privacy and complies with the General Data Protection Regulation (GDPR) guidelines by refraining from collecting any personal data restricted under GDPR. The theme is also schema-ready, enhancing search engine visibility and optimization. To explore the theme further, feel free to check out our demo at: https://demo-news.spicethemes.com/startersite-1/. For video tutorial visit here https://www.youtube.com/playlist?list=PLTfjrb24Pq_DeJOZdKEaP3rZPbHuOCLtZ', 'wp', 'wp-theme', 'GPL', '{"name": "NewsBlogger", "slug": "newsblogger", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "photography": "Photography", "sticky-post": "Sticky post", "two-columns": "Two columns", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "spicethemes", "avatar": "https://secure.gravatar.com/avatar/ea9f81924f233a72e53a80c7d5ecc86d2ca8085df7998b63af5b7aa303a8e403?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/spicethemes/", "author_url": "https://spicethemes.com", "display_name": "spicethemes", "user_nicename": "spicethemes"}, "parent": {"name": "Newscrunch", "slug": "newscrunch", "homepage": "https://wordpress.org/themes/newscrunch/"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 9}, "version": "0.2.5.8", "homepage": "https://wordpress.org/themes/newsblogger/", "requires": "5.4", "sections": {"description": "NewsBlogger is a dynamic and versatile child theme for the popular NewCrunch WordPress theme. Perfect for bloggers, journalists, and online magazines, it offers enhanced customization options, improved performance, and seamless integration with both the Gutenberg and Classic editors. Compatible to various popular plugins such as Elementor, Contact Form 7, Polylang and WPML. Theme is RTL ready and prioritizes user privacy and complies with the General Data Protection Regulation (GDPR) guidelines by refraining from collecting any personal data restricted under GDPR. The theme is also schema-ready, enhancing search engine visibility and optimization. To explore the theme further, feel free to check out our demo at: https://demo-news.spicethemes.com/startersite-1/. For video tutorial visit here https://www.youtube.com/playlist?list=PLTfjrb24Pq_DeJOZdKEaP3rZPbHuOCLtZ"}, "template": "newscrunch", "versions": {"0.1": "https://downloads.wordpress.org/theme/newsblogger.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/newsblogger.0.2.zip", "0.1.1": "https://downloads.wordpress.org/theme/newsblogger.0.1.1.zip", "0.1.2": "https://downloads.wordpress.org/theme/newsblogger.0.1.2.zip", "0.1.3": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.zip", "0.1.4": "https://downloads.wordpress.org/theme/newsblogger.0.1.4.zip", "0.1.5": "https://downloads.wordpress.org/theme/newsblogger.0.1.5.zip", "0.1.6": "https://downloads.wordpress.org/theme/newsblogger.0.1.6.zip", "0.1.7": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.zip", "0.2.1": "https://downloads.wordpress.org/theme/newsblogger.0.2.1.zip", "0.2.2": "https://downloads.wordpress.org/theme/newsblogger.0.2.2.zip", "0.2.3": "https://downloads.wordpress.org/theme/newsblogger.0.2.3.zip", "0.2.4": "https://downloads.wordpress.org/theme/newsblogger.0.2.4.zip", "0.2.5": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.zip", "0.1.3.1": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.1.zip", "0.1.3.2": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.2.zip", "0.1.3.3": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.3.zip", "0.1.3.4": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.4.zip", "0.1.3.5": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.5.zip", "0.1.3.6": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.6.zip", "0.1.7.1": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.1.zip", "0.1.7.2": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.2.zip", "0.1.7.3": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.3.zip", "0.1.7.4": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.4.zip", "0.1.7.5": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.5.zip", "0.2.5.1": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.1.zip", "0.2.5.2": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.2.zip", "0.2.5.3": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.3.zip", "0.2.5.4": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.4.zip", "0.2.5.5": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.5.zip", "0.2.5.6": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.6.zip", "0.2.5.8": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.8.zip", "0.2.5.7.1": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.7.1.zip", "0.2.5.7.2": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.7.2.zip", "0.2.5.7.3": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.7.3.zip", "0.2.5.7.4": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.7.4.zip", "0.2.5.7.5": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.7.5.zip"}, "downloaded": 136672, "num_ratings": 9, "preview_url": "https://wp-themes.com/newsblogger/", "reviews_url": "https://wordpress.org/support/theme/newsblogger/reviews/", "is_community": false, "last_updated": "2025-10-09", "requires_php": "5.6", "creation_time": "2024-07-02 11:26:47", "download_link": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.8.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/newsblogger/screenshot.png?ver=0.2.5.8", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-0cfa-70f6-b4c4-aafc199e23fa", "name": "NewsBlogger", "slug": "newsblogger", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1759968000, "version": "0.2.5.8"}, "last_updated_time": "2025-10-09 11:57:10", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f445-7094-afb7-91aa4ffe7c5d', 'did:web:api.aspiredev.org:packages:wp-theme:newsday', 'newsday', 'NewsDay', 'NewsDay is a mobile-first, visually striking WordPress child theme built on MoreNews for news sites, online magazines, entertainment blogs and lifestyle portals that prioritize visual storytelling and performance; it includes banner-ready templates and bold typography presets, flexible homepage and archive layouts, header & footer builder compatibility, and out-of-the-box support for Gutenberg, Elementor, Brizy, Beaver Builder, Visual Composer and Divi so editors can design editorial pages with drag-and-drop ease; NewsDay is built on clean, lightweight code, AMP-ready, SEO and Core Web Vitals optimized, GDPR and WCAG-friendly, and integrates with WooCommerce, Jetpack, Contact Form 7 and Yoast SEO for monetization and extended functionality; multilingual and RTL-ready demos include Spanish, French, German, Portuguese, Arabic, Japanese and more — pick NewsDay if you need a high-impact, mobile-optimized magazine/news theme tailored for lifestyle and entertainment verticals. https://afthemes.com/products/newsday/', 'wp', 'wp-theme', 'GPL', '{"name": "NewsDay", "slug": "newsday", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "AF themes", "avatar": "https://secure.gravatar.com/avatar/6840fee6f0abb67c899d7a7e34d50303ea8ab21678293a3b41f0268faaf8a05a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/afthemes/", "author_url": "https://afthemes.com/", "display_name": "AF themes", "user_nicename": "afthemes"}, "parent": {"name": "MoreNews", "slug": "morenews", "homepage": "https://wordpress.org/themes/morenews/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.1.6", "homepage": "https://wordpress.org/themes/newsday/", "requires": "5.0", "sections": {"description": "NewsDay is a mobile-first, visually striking WordPress child theme built on MoreNews for news sites, online magazines, entertainment blogs and lifestyle portals that prioritize visual storytelling and performance; it includes banner-ready templates and bold typography presets, flexible homepage and archive layouts, header & footer builder compatibility, and out-of-the-box support for Gutenberg, Elementor, Brizy, Beaver Builder, Visual Composer and Divi so editors can design editorial pages with drag-and-drop ease; NewsDay is built on clean, lightweight code, AMP-ready, SEO and Core Web Vitals optimized, GDPR and WCAG-friendly, and integrates with WooCommerce, Jetpack, Contact Form 7 and Yoast SEO for monetization and extended functionality; multilingual and RTL-ready demos include Spanish, French, German, Portuguese, Arabic, Japanese and more — pick NewsDay if you need a high-impact, mobile-optimized magazine/news theme tailored for lifestyle and entertainment verticals. https://afthemes.com/products/newsday/"}, "template": "morenews", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/newsday.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/newsday.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/newsday.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/newsday.1.0.3.zip", "1.1.0": "https://downloads.wordpress.org/theme/newsday.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/newsday.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/newsday.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/newsday.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/newsday.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/newsday.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/newsday.1.1.6.zip"}, "downloaded": 5361, "num_ratings": 0, "preview_url": "https://wp-themes.com/newsday/", "reviews_url": "https://wordpress.org/support/theme/newsday/reviews/", "is_community": false, "last_updated": "2025-10-25", "requires_php": "5.0", "creation_time": "2025-07-25 12:01:06", "download_link": "https://downloads.wordpress.org/theme/newsday.1.1.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/newsday/screenshot.png?ver=1.1.6", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-0da4-700f-9dbc-a9170daa01dd", "name": "NewsDay", "slug": "newsday", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1761350400, "version": "1.1.6"}, "last_updated_time": "2025-10-25 07:43:00", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f462-72be-9344-a577943f04d5', 'did:web:api.aspiredev.org:packages:wp-theme:news-express', 'news-express', 'News Express', 'News Express is a fast, modern, and SEO-friendly WordPress theme built for news portals, online magazines, and blogs. Featuring a stunning main banner and 4 flexible homepage block layouts, it lets you showcase stories with style. Fully compatible with WooCommerce, Gutenberg, and Elementor, this theme is lightweight, customizable, and perfect for growing your audience. You can check demos here which can be easily imported by the Mystery Themes Demo Importer plugin. Also, You can check Demo here: https://preview.mysterythemes.com/news-express-demos & Documentation here: https://docs.mysterythemes.com/news-express/', 'wp', 'wp-theme', 'GPL', '{"name": "News Express", "slug": "news-express", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Mystery Themes", "avatar": "https://secure.gravatar.com/avatar/0eb9afa7ead84576ea5e26b38ee170f1da5546a7949f55c90c09d2a44507a476?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mysterythemes/", "author_url": "https://mysterythemes.com", "display_name": "Mystery Themes", "user_nicename": "mysterythemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.4", "homepage": "https://wordpress.org/themes/news-express/", "requires": false, "sections": {"description": "News Express is a fast, modern, and SEO-friendly WordPress theme built for news portals, online magazines, and blogs. Featuring a stunning main banner and 4 flexible homepage block layouts, it lets you showcase stories with style. Fully compatible with WooCommerce, Gutenberg, and Elementor, this theme is lightweight, customizable, and perfect for growing your audience. You can check demos here which can be easily imported by the Mystery Themes Demo Importer plugin. Also, You can check Demo here: https://preview.mysterythemes.com/news-express-demos & Documentation here: https://docs.mysterythemes.com/news-express/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/news-express.1.0.0.zip", "1.0.2": "https://downloads.wordpress.org/theme/news-express.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/news-express.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/news-express.1.0.4.zip"}, "downloaded": 1582, "num_ratings": 0, "preview_url": "https://wp-themes.com/news-express/", "reviews_url": "https://wordpress.org/support/theme/news-express/reviews/", "is_community": false, "last_updated": "2025-10-29", "requires_php": "7.2", "creation_time": "2025-09-21 15:15:59", "download_link": "https://downloads.wordpress.org/theme/news-express.1.0.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/news-express/screenshot.png?ver=1.0.4", "active_installs": 300, "aspiresync_meta": {"id": "019a30c0-0c3d-736a-94d4-39d87905afd9", "name": "News Express", "slug": "news-express", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1761696000, "version": "1.0.4"}, "last_updated_time": "2025-10-29 06:24:24", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f479-73f2-b708-60ac22cceab1', 'did:web:api.aspiredev.org:packages:wp-theme:newsgame', 'newsgame', 'NewsGame', 'NewsGame is a fast, modern, and highly versatile WordPress child theme of the powerful MoreNews parent, perfect for gaming blogs, eSports magazines, tech news portals, and content-driven websites, featuring a fully drag-and-drop HEADER & FOOTER BUILDER compatible with Gutenberg, Elementor, Brizy, Divi, and other popular page builders for complete layout freedom without coding; it comes with 30+ custom widgets, dynamic block patterns, flexible banner and homepage layouts, light/dark modes, and WooCommerce integration, making it easy to launch anything from a personal blog to a professional online store or news hub; fully optimized for SEO, Core Web Vitals, speed, and responsive design, built with WCAG accessibility, GDPR compliance, and clean, lightweight code for long-term reliability; multilingual and RTL ready with demo content in English, Chinese, Spanish, French, Japanese, and Arabic, NewsGame delivers a professional, engaging, and future-proof platform for gaming and tech content creators. https://afthemes.com/products/newsgame/', 'wp', 'wp-theme', 'GPL', '{"name": "NewsGame", "slug": "newsgame", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "AF themes", "avatar": "https://secure.gravatar.com/avatar/6840fee6f0abb67c899d7a7e34d50303ea8ab21678293a3b41f0268faaf8a05a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/afthemes/", "author_url": "https://afthemes.com/", "display_name": "AF themes", "user_nicename": "afthemes"}, "parent": {"name": "MoreNews", "slug": "morenews", "homepage": "https://wordpress.org/themes/morenews/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.5", "homepage": "https://wordpress.org/themes/newsgame/", "requires": "5.0", "sections": {"description": "NewsGame is a fast, modern, and highly versatile WordPress child theme of the powerful MoreNews parent, perfect for gaming blogs, eSports magazines, tech news portals, and content-driven websites, featuring a fully drag-and-drop HEADER & FOOTER BUILDER compatible with Gutenberg, Elementor, Brizy, Divi, and other popular page builders for complete layout freedom without coding; it comes with 30+ custom widgets, dynamic block patterns, flexible banner and homepage layouts, light/dark modes, and WooCommerce integration, making it easy to launch anything from a personal blog to a professional online store or news hub; fully optimized for SEO, Core Web Vitals, speed, and responsive design, built with WCAG accessibility, GDPR compliance, and clean, lightweight code for long-term reliability; multilingual and RTL ready with demo content in English, Chinese, Spanish, French, Japanese, and Arabic, NewsGame delivers a professional, engaging, and future-proof platform for gaming and tech content creators. https://afthemes.com/products/newsgame/"}, "template": "morenews", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/newsgame.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/newsgame.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/newsgame.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/newsgame.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/newsgame.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/newsgame.1.0.5.zip"}, "downloaded": 3158, "num_ratings": 0, "preview_url": "https://wp-themes.com/newsgame/", "reviews_url": "https://wordpress.org/support/theme/newsgame/reviews/", "is_community": false, "last_updated": "2025-10-25", "requires_php": "5.0", "creation_time": "2025-09-09 00:01:10", "download_link": "https://downloads.wordpress.org/theme/newsgame.1.0.5.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/newsgame/screenshot.png?ver=1.0.5", "active_installs": 700, "aspiresync_meta": {"id": "019a30c0-0e02-706f-9b3f-c380ce3bd3b3", "name": "NewsGame", "slug": "newsgame", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1761350400, "version": "1.0.5"}, "last_updated_time": "2025-10-25 07:42:33", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f497-72b9-a255-dbb018e2abc2', 'did:web:api.aspiredev.org:packages:wp-theme:news-magazine-x', 'news-magazine-x', 'News Magazine X', 'Easy to use Personal and Multi-Author Free WordPress Blog Magazine Theme - Suitable for WordPress Beginners and for Professionals as Well. Perfect for bloggers, journalists, and online magazines, news, blogs, and magazine websites. The theme has built in Magazine Grid Widget, Classic Post Grid Widget, Featured Tabs widget, Featured Post Widget, Subscription (newsletter) Widget, Category List widget and many other widgets. You can place your ads anywhere on the website, including the header, footer, various homepage sections, and other pages as well. The theme also offers a Header Footer builder with a Menu Widget, Logo Widget, News Ticker Widget, Social Icons Widget, Search Widget, Dark Mode Switcher Widget, Weather Widget (PRO), Random Post Widget, Offcanvas Widget (side menu) Widget, Header Image and another widget to build eye catching headers and footers. Clean and Modern Responsive design will perfectly showcase your content on any device, even on tablet, mobile & retina displays. Very fast, Search engine optimized fast loading speed, and SEO optimization, compatibility with many popular plugins & of course translation ready, coded with best SEO practices. Complies with the General Data Protection Regulation (GDPR) guidelines by refraining from collecting any personal data restricted under GDPR. Works perfectly with all major drag-and-drop page builders like Elementor, Gutenberg, Brizy, Beaver Builder, Visual Composer, SiteOrigin, Divi. You just need to write and be awesome! TEMPLATE DEMO: https://news-magazine-x-free.wp-royal-themes.com/demo/', 'wp', 'wp-theme', 'GPL', '{"name": "News Magazine X", "slug": "news-magazine-x", "tags": {"blog": "Blog", "news": "News", "e-commerce": "E-commerce", "one-column": "One column", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "block-styles": "Block editor styles", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "WP Royal Themes", "avatar": "https://secure.gravatar.com/avatar/078c5c148dcfcc4983cb3fce756683ce03d7aebb69f1fb9e8ea08232e4b01fea?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wproyal/", "author_url": "https://wp-royal-themes.com/#ultimate-heading-229367ca4dce90c11", "display_name": "WP Royal", "user_nicename": "wproyal"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 14}, "version": "1.2.45", "homepage": "https://wordpress.org/themes/news-magazine-x/", "requires": "4.7", "sections": {"description": "Easy to use Personal and Multi-Author Free WordPress Blog Magazine Theme - Suitable for WordPress Beginners and for Professionals as Well. Perfect for bloggers, journalists, and online magazines, news, blogs, and magazine websites. The theme has built in Magazine Grid Widget, Classic Post Grid Widget, Featured Tabs widget, Featured Post Widget, Subscription (newsletter) Widget, Category List widget and many other widgets. You can place your ads anywhere on the website, including the header, footer, various homepage sections, and other pages as well. The theme also offers a Header Footer builder with a Menu Widget, Logo Widget, News Ticker Widget, Social Icons Widget, Search Widget, Dark Mode Switcher Widget, Weather Widget (PRO), Random Post Widget, Offcanvas Widget (side menu) Widget, Header Image and another widget to build eye catching headers and footers. Clean and Modern Responsive design will perfectly showcase your content on any device, even on tablet, mobile & retina displays. Very fast, Search engine optimized fast loading speed, and SEO optimization, compatibility with many popular plugins & of course translation ready, coded with best SEO practices. Complies with the General Data Protection Regulation (GDPR) guidelines by refraining from collecting any personal data restricted under GDPR. Works perfectly with all major drag-and-drop page builders like Elementor, Gutenberg, Brizy, Beaver Builder, Visual Composer, SiteOrigin, Divi. You just need to write and be awesome! TEMPLATE DEMO: https://news-magazine-x-free.wp-royal-themes.com/demo/"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.2.zip", "1.2.31": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.31.zip", "1.2.32": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.32.zip", "1.2.33": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.33.zip", "1.2.34": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.34.zip", "1.2.35": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.35.zip", "1.2.36": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.36.zip", "1.2.37": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.37.zip", "1.2.38": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.38.zip", "1.2.39": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.39.zip", "1.2.40": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.40.zip", "1.2.41": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.41.zip", "1.2.44": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.44.zip", "1.2.45": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.45.zip"}, "downloaded": 47365, "num_ratings": 14, "preview_url": "https://wp-themes.com/news-magazine-x/", "reviews_url": "https://wordpress.org/support/theme/news-magazine-x/reviews/", "is_community": false, "last_updated": "2025-10-17", "requires_php": "7.4", "creation_time": "2025-03-11 00:26:54", "download_link": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.45.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/news-magazine-x/screenshot.jpg?ver=1.2.45", "active_installs": 6000, "aspiresync_meta": {"id": "019a30c0-0c47-716d-ba8d-283282bfd166", "name": "News Magazine X", "slug": "news-magazine-x", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1760659200, "version": "1.2.45"}, "last_updated_time": "2025-10-17 06:08:20", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f4b1-7058-a5be-3737b2b145c9', 'did:web:api.aspiredev.org:packages:wp-theme:newsmatic', 'newsmatic', 'Newsmatic', 'Newsmatic is complete solution for your news website with full Elementor compatibility. By integrating the News Kit Elementor Addons plugin on your site, you can now customize any part of the theme with the Elementor page builder. It is fast, features rich, customizer-based, and multipurpose free news theme. It is multilingual compatibility, gutenberg compatibility, elementor compatibility and can be integrated easily with newsletter/form plugins. This theme is schema ready, which makes it a favourite for search engines. Newsmatic Theme does not collect any kind of personal data restricted under GDPR, so you can sleep without any worry by using our theme on your website. Developed by dedicated developers, it has user friendly and easy to use advanced control fields like select2, react color picker, image selector, typography field and many more inside the theme. Check out our pre-build demos here: https://blazethemes.com/theme/newsmatic-free. Check out news elementor addons: https://wordpress.org/plugins/news-kit-elementor-addons/', 'wp', 'wp-theme', 'GPL', '{"name": "Newsmatic", "slug": "newsmatic", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "BlazeThemes", "avatar": "https://secure.gravatar.com/avatar/3cd0b0193fc2f153a2da7adcd27873f64ce4cd96684bdba272133e1feccadd52?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/blazethemes/", "author_url": "https://blazethemes.com/", "display_name": "blazethemes", "user_nicename": "blazethemes"}, "rating": 94, "status": "open", "ratings": {"1": 3, "2": 0, "3": 2, "4": 4, "5": 68}, "version": "1.3.18", "homepage": "https://wordpress.org/themes/newsmatic/", "requires": false, "sections": {"description": "Newsmatic is complete solution for your news website with full Elementor compatibility. By integrating the News Kit Elementor Addons plugin on your site, you can now customize any part of the theme with the Elementor page builder. It is fast, features rich, customizer-based, and multipurpose free news theme. It is multilingual compatibility, gutenberg compatibility, elementor compatibility and can be integrated easily with newsletter/form plugins. This theme is schema ready, which makes it a favourite for search engines. Newsmatic Theme does not collect any kind of personal data restricted under GDPR, so you can sleep without any worry by using our theme on your website. Developed by dedicated developers, it has user friendly and easy to use advanced control fields like select2, react color picker, image selector, typography field and many more inside the theme. Check out our pre-build demos here: https://blazethemes.com/theme/newsmatic-free. Check out news elementor addons: https://wordpress.org/plugins/news-kit-elementor-addons/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/newsmatic.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/newsmatic.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/newsmatic.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/newsmatic.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/newsmatic.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/newsmatic.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/newsmatic.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/newsmatic.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/newsmatic.1.0.8.zip", "1.2.0": "https://downloads.wordpress.org/theme/newsmatic.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/newsmatic.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/newsmatic.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/newsmatic.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/newsmatic.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/newsmatic.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/newsmatic.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/newsmatic.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/newsmatic.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/newsmatic.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/newsmatic.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/newsmatic.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/newsmatic.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/newsmatic.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/newsmatic.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/newsmatic.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/newsmatic.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/newsmatic.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/newsmatic.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/newsmatic.1.3.9.zip", "1.2.10": "https://downloads.wordpress.org/theme/newsmatic.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/theme/newsmatic.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/theme/newsmatic.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/theme/newsmatic.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/theme/newsmatic.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/theme/newsmatic.1.2.15.zip", "1.2.16": "https://downloads.wordpress.org/theme/newsmatic.1.2.16.zip", "1.2.17": "https://downloads.wordpress.org/theme/newsmatic.1.2.17.zip", "1.2.18": "https://downloads.wordpress.org/theme/newsmatic.1.2.18.zip", "1.2.19": "https://downloads.wordpress.org/theme/newsmatic.1.2.19.zip", "1.3.10": "https://downloads.wordpress.org/theme/newsmatic.1.3.10.zip", "1.3.11": "https://downloads.wordpress.org/theme/newsmatic.1.3.11.zip", "1.3.12": "https://downloads.wordpress.org/theme/newsmatic.1.3.12.zip", "1.3.13": "https://downloads.wordpress.org/theme/newsmatic.1.3.13.zip", "1.3.14": "https://downloads.wordpress.org/theme/newsmatic.1.3.14.zip", "1.3.15": "https://downloads.wordpress.org/theme/newsmatic.1.3.15.zip", "1.3.16": "https://downloads.wordpress.org/theme/newsmatic.1.3.16.zip", "1.3.17": "https://downloads.wordpress.org/theme/newsmatic.1.3.17.zip", "1.3.18": "https://downloads.wordpress.org/theme/newsmatic.1.3.18.zip"}, "downloaded": 302392, "num_ratings": 77, "preview_url": "https://wp-themes.com/newsmatic/", "reviews_url": "https://wordpress.org/support/theme/newsmatic/reviews/", "is_community": false, "last_updated": "2025-10-10", "requires_php": "5.6", "creation_time": "2023-01-13 13:41:57", "download_link": "https://downloads.wordpress.org/theme/newsmatic.1.3.18.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/newsmatic/screenshot.png?ver=1.3.18", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-0df4-7012-95b2-e3ae42bda001", "name": "Newsmatic", "slug": "newsmatic", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1760054400, "version": "1.3.18"}, "last_updated_time": "2025-10-10 05:31:53", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f4cd-738e-affb-cce76d7cd259', 'did:web:api.aspiredev.org:packages:wp-theme:news-rift', 'news-rift', 'News Rift', 'News Rift is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. News Rift is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. News Rift is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://newsup.themeansar.com/newsrift/ and documentation at https://docs.themeansar.com/docs/newsup/', 'wp', 'wp-theme', 'GPL', '{"name": "News Rift", "slug": "news-rift", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "parent": {"name": "Newsup", "slug": "newsup", "homepage": "https://wordpress.org/themes/newsup/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "0.5", "homepage": "https://wordpress.org/themes/news-rift/", "requires": false, "sections": {"description": "News Rift is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. News Rift is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. News Rift is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://newsup.themeansar.com/newsrift/ and documentation at https://docs.themeansar.com/docs/newsup/"}, "template": "newsup", "versions": {"0.1": "https://downloads.wordpress.org/theme/news-rift.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/news-rift.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/news-rift.0.3.zip", "0.4": "https://downloads.wordpress.org/theme/news-rift.0.4.zip", "0.5": "https://downloads.wordpress.org/theme/news-rift.0.5.zip"}, "downloaded": 2098, "num_ratings": 0, "preview_url": "https://wp-themes.com/news-rift/", "reviews_url": "https://wordpress.org/support/theme/news-rift/reviews/", "is_community": false, "last_updated": "2025-09-26", "requires_php": "7.4", "creation_time": "2025-09-25 14:46:02", "download_link": "https://downloads.wordpress.org/theme/news-rift.0.5.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/news-rift/screenshot.jpg?ver=0.5", "active_installs": 400, "aspiresync_meta": {"id": "019a30c0-0c4a-72bb-8d5d-912b76b07b7c", "name": "News Rift", "slug": "news-rift", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1758844800, "version": "0.5"}, "last_updated_time": "2025-09-26 02:43:11", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f4ec-7386-b41e-8d4e50bd9c09', 'did:web:api.aspiredev.org:packages:wp-theme:newsup', 'newsup', 'Newsup', 'Newsup is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Newsup is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Newsup is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demo.themeansar.com/newsup and documentation at https://docs.themeansar.com/docs/newsup/', 'wp', 'wp-theme', 'proprietary', '{"name": "Newsup", "slug": "newsup", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "rating": 96, "status": "open", "ratings": {"1": 3, "2": 2, "3": 2, "4": 8, "5": 167}, "version": "5.1.3", "homepage": "https://wordpress.org/themes/newsup/", "requires": "6.7", "sections": {"description": "Newsup is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Newsup is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Newsup is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demo.themeansar.com/newsup and documentation at https://docs.themeansar.com/docs/newsup/"}, "versions": {"0.1": "https://downloads.wordpress.org/theme/newsup.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/newsup.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/newsup.0.3.zip", "0.4": "https://downloads.wordpress.org/theme/newsup.0.4.zip", "0.5": "https://downloads.wordpress.org/theme/newsup.0.5.zip", "0.6": "https://downloads.wordpress.org/theme/newsup.0.6.zip", "0.7": "https://downloads.wordpress.org/theme/newsup.0.7.zip", "0.8": "https://downloads.wordpress.org/theme/newsup.0.8.zip", "0.9": "https://downloads.wordpress.org/theme/newsup.0.9.zip", "1.0": "https://downloads.wordpress.org/theme/newsup.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/newsup.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/newsup.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/newsup.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/newsup.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/newsup.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/newsup.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/newsup.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/newsup.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/newsup.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/newsup.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/newsup.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/newsup.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/newsup.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/newsup.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/newsup.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/newsup.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/newsup.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/newsup.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/newsup.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/newsup.3.0.zip", "2.9.1": "https://downloads.wordpress.org/theme/newsup.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/theme/newsup.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/theme/newsup.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/theme/newsup.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/theme/newsup.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/theme/newsup.2.9.6.zip", "2.9.7": "https://downloads.wordpress.org/theme/newsup.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/theme/newsup.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/theme/newsup.2.9.9.zip", "5.0.0": "https://downloads.wordpress.org/theme/newsup.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/theme/newsup.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/theme/newsup.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/theme/newsup.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/theme/newsup.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/theme/newsup.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/theme/newsup.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/theme/newsup.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/theme/newsup.5.0.8.zip", "5.1.0": "https://downloads.wordpress.org/theme/newsup.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/theme/newsup.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/theme/newsup.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/theme/newsup.5.1.3.zip", "5.0.10": "https://downloads.wordpress.org/theme/newsup.5.0.10.zip", "5.0.11": "https://downloads.wordpress.org/theme/newsup.5.0.11.zip", "2.9.9.1": "https://downloads.wordpress.org/theme/newsup.2.9.9.1.zip", "2.9.9.2": "https://downloads.wordpress.org/theme/newsup.2.9.9.2.zip", "2.9.9.3": "https://downloads.wordpress.org/theme/newsup.2.9.9.3.zip", "2.9.9.4": "https://downloads.wordpress.org/theme/newsup.2.9.9.4.zip", "2.9.9.5": "https://downloads.wordpress.org/theme/newsup.2.9.9.5.zip", "2.9.9.6": "https://downloads.wordpress.org/theme/newsup.2.9.9.6.zip", "2.9.9.7": "https://downloads.wordpress.org/theme/newsup.2.9.9.7.zip", "2.9.9.8": "https://downloads.wordpress.org/theme/newsup.2.9.9.8.zip", "2.9.9.9": "https://downloads.wordpress.org/theme/newsup.2.9.9.9.zip", "3.0.0.1": "https://downloads.wordpress.org/theme/newsup.3.0.0.1.zip", "3.0.0.2": "https://downloads.wordpress.org/theme/newsup.3.0.0.2.zip", "3.0.0.3": "https://downloads.wordpress.org/theme/newsup.3.0.0.3.zip", "3.0.0.4": "https://downloads.wordpress.org/theme/newsup.3.0.0.4.zip", "3.0.0.5": "https://downloads.wordpress.org/theme/newsup.3.0.0.5.zip", "3.0.0.6": "https://downloads.wordpress.org/theme/newsup.3.0.0.6.zip", "3.0.0.7": "https://downloads.wordpress.org/theme/newsup.3.0.0.7.zip", "3.0.0.8": "https://downloads.wordpress.org/theme/newsup.3.0.0.8.zip", "3.0.0.9": "https://downloads.wordpress.org/theme/newsup.3.0.0.9.zip", "4.0.0.0": "https://downloads.wordpress.org/theme/newsup.4.0.0.0.zip", "4.0.0.1": "https://downloads.wordpress.org/theme/newsup.4.0.0.1.zip", "4.0.0.2": "https://downloads.wordpress.org/theme/newsup.4.0.0.2.zip", "4.0.0.3": "https://downloads.wordpress.org/theme/newsup.4.0.0.3.zip", "4.0.0.4": "https://downloads.wordpress.org/theme/newsup.4.0.0.4.zip", "4.0.0.5": "https://downloads.wordpress.org/theme/newsup.4.0.0.5.zip", "4.0.0.6": "https://downloads.wordpress.org/theme/newsup.4.0.0.6.zip", "4.0.0.7": "https://downloads.wordpress.org/theme/newsup.4.0.0.7.zip", "4.0.0.8": "https://downloads.wordpress.org/theme/newsup.4.0.0.8.zip", "4.0.0.9": "https://downloads.wordpress.org/theme/newsup.4.0.0.9.zip", "2.9.9.10": "https://downloads.wordpress.org/theme/newsup.2.9.9.10.zip", "2.9.9.11": "https://downloads.wordpress.org/theme/newsup.2.9.9.11.zip", "2.9.9.12": "https://downloads.wordpress.org/theme/newsup.2.9.9.12.zip", "2.9.9.13": "https://downloads.wordpress.org/theme/newsup.2.9.9.13.zip", "2.9.9.14": "https://downloads.wordpress.org/theme/newsup.2.9.9.14.zip", "2.9.9.15": "https://downloads.wordpress.org/theme/newsup.2.9.9.15.zip", "2.9.9.16": "https://downloads.wordpress.org/theme/newsup.2.9.9.16.zip", "2.9.9.17": "https://downloads.wordpress.org/theme/newsup.2.9.9.17.zip", "2.9.9.18": "https://downloads.wordpress.org/theme/newsup.2.9.9.18.zip", "2.9.9.19": "https://downloads.wordpress.org/theme/newsup.2.9.9.19.zip", "2.9.9.20": "https://downloads.wordpress.org/theme/newsup.2.9.9.20.zip", "2.9.9.21": "https://downloads.wordpress.org/theme/newsup.2.9.9.21.zip", "2.9.9.22": "https://downloads.wordpress.org/theme/newsup.2.9.9.22.zip", "2.9.9.23": "https://downloads.wordpress.org/theme/newsup.2.9.9.23.zip", "2.9.9.24": "https://downloads.wordpress.org/theme/newsup.2.9.9.24.zip", "2.9.9.25": "https://downloads.wordpress.org/theme/newsup.2.9.9.25.zip", "2.9.9.26": "https://downloads.wordpress.org/theme/newsup.2.9.9.26.zip", "2.9.9.27": "https://downloads.wordpress.org/theme/newsup.2.9.9.27.zip", "2.9.9.28": "https://downloads.wordpress.org/theme/newsup.2.9.9.28.zip", "2.9.9.29": "https://downloads.wordpress.org/theme/newsup.2.9.9.29.zip", "2.9.9.30": "https://downloads.wordpress.org/theme/newsup.2.9.9.30.zip", "2.9.9.31": "https://downloads.wordpress.org/theme/newsup.2.9.9.31.zip", "2.9.9.32": "https://downloads.wordpress.org/theme/newsup.2.9.9.32.zip", "2.9.9.33": "https://downloads.wordpress.org/theme/newsup.2.9.9.33.zip", "2.9.9.34": "https://downloads.wordpress.org/theme/newsup.2.9.9.34.zip", "2.9.9.35": "https://downloads.wordpress.org/theme/newsup.2.9.9.35.zip", "2.9.9.36": "https://downloads.wordpress.org/theme/newsup.2.9.9.36.zip", "2.9.9.37": "https://downloads.wordpress.org/theme/newsup.2.9.9.37.zip", "2.9.9.38": "https://downloads.wordpress.org/theme/newsup.2.9.9.38.zip", "2.9.9.39": "https://downloads.wordpress.org/theme/newsup.2.9.9.39.zip", "2.9.9.40": "https://downloads.wordpress.org/theme/newsup.2.9.9.40.zip", "2.9.9.41": "https://downloads.wordpress.org/theme/newsup.2.9.9.41.zip", "2.9.9.42": "https://downloads.wordpress.org/theme/newsup.2.9.9.42.zip", "2.9.9.43": "https://downloads.wordpress.org/theme/newsup.2.9.9.43.zip", "2.9.9.44": "https://downloads.wordpress.org/theme/newsup.2.9.9.44.zip", "2.9.9.45": "https://downloads.wordpress.org/theme/newsup.2.9.9.45.zip", "2.9.9.46": "https://downloads.wordpress.org/theme/newsup.2.9.9.46.zip", "2.9.9.47": "https://downloads.wordpress.org/theme/newsup.2.9.9.47.zip", "2.9.9.48": "https://downloads.wordpress.org/theme/newsup.2.9.9.48.zip", "2.9.9.49": "https://downloads.wordpress.org/theme/newsup.2.9.9.49.zip", "2.9.9.50": "https://downloads.wordpress.org/theme/newsup.2.9.9.50.zip", "2.9.9.51": "https://downloads.wordpress.org/theme/newsup.2.9.9.51.zip", "2.9.9.52": "https://downloads.wordpress.org/theme/newsup.2.9.9.52.zip", "2.9.9.53": "https://downloads.wordpress.org/theme/newsup.2.9.9.53.zip", "2.9.9.54": "https://downloads.wordpress.org/theme/newsup.2.9.9.54.zip", "2.9.9.55": "https://downloads.wordpress.org/theme/newsup.2.9.9.55.zip", "2.9.9.56": "https://downloads.wordpress.org/theme/newsup.2.9.9.56.zip", "2.9.9.57": "https://downloads.wordpress.org/theme/newsup.2.9.9.57.zip", "2.9.9.58": "https://downloads.wordpress.org/theme/newsup.2.9.9.58.zip", "2.9.9.59": "https://downloads.wordpress.org/theme/newsup.2.9.9.59.zip", "2.9.9.60": "https://downloads.wordpress.org/theme/newsup.2.9.9.60.zip", "2.9.9.61": "https://downloads.wordpress.org/theme/newsup.2.9.9.61.zip", "2.9.9.62": "https://downloads.wordpress.org/theme/newsup.2.9.9.62.zip", "2.9.9.63": "https://downloads.wordpress.org/theme/newsup.2.9.9.63.zip", "2.9.9.64": "https://downloads.wordpress.org/theme/newsup.2.9.9.64.zip", "2.9.9.65": "https://downloads.wordpress.org/theme/newsup.2.9.9.65.zip", "2.9.9.66": "https://downloads.wordpress.org/theme/newsup.2.9.9.66.zip", "2.9.9.67": "https://downloads.wordpress.org/theme/newsup.2.9.9.67.zip", "2.9.9.68": "https://downloads.wordpress.org/theme/newsup.2.9.9.68.zip", "2.9.9.69": "https://downloads.wordpress.org/theme/newsup.2.9.9.69.zip", "2.9.9.70": "https://downloads.wordpress.org/theme/newsup.2.9.9.70.zip", "2.9.9.71": "https://downloads.wordpress.org/theme/newsup.2.9.9.71.zip", "2.9.9.72": "https://downloads.wordpress.org/theme/newsup.2.9.9.72.zip", "2.9.9.73": "https://downloads.wordpress.org/theme/newsup.2.9.9.73.zip", "2.9.9.74": "https://downloads.wordpress.org/theme/newsup.2.9.9.74.zip", "2.9.9.75": "https://downloads.wordpress.org/theme/newsup.2.9.9.75.zip", "2.9.9.76": "https://downloads.wordpress.org/theme/newsup.2.9.9.76.zip", "2.9.9.77": "https://downloads.wordpress.org/theme/newsup.2.9.9.77.zip", "2.9.9.78": "https://downloads.wordpress.org/theme/newsup.2.9.9.78.zip", "2.9.9.79": "https://downloads.wordpress.org/theme/newsup.2.9.9.79.zip", "2.9.9.80": "https://downloads.wordpress.org/theme/newsup.2.9.9.80.zip", "2.9.9.81": "https://downloads.wordpress.org/theme/newsup.2.9.9.81.zip", "2.9.9.82": "https://downloads.wordpress.org/theme/newsup.2.9.9.82.zip", "2.9.9.83": "https://downloads.wordpress.org/theme/newsup.2.9.9.83.zip", "2.9.9.84": "https://downloads.wordpress.org/theme/newsup.2.9.9.84.zip", "2.9.9.85": "https://downloads.wordpress.org/theme/newsup.2.9.9.85.zip", "2.9.9.86": "https://downloads.wordpress.org/theme/newsup.2.9.9.86.zip", "2.9.9.87": "https://downloads.wordpress.org/theme/newsup.2.9.9.87.zip", "2.9.9.88": "https://downloads.wordpress.org/theme/newsup.2.9.9.88.zip", "2.9.9.89": "https://downloads.wordpress.org/theme/newsup.2.9.9.89.zip", "2.9.9.90": "https://downloads.wordpress.org/theme/newsup.2.9.9.90.zip", "2.9.9.91": "https://downloads.wordpress.org/theme/newsup.2.9.9.91.zip", "2.9.9.92": "https://downloads.wordpress.org/theme/newsup.2.9.9.92.zip", "2.9.9.93": "https://downloads.wordpress.org/theme/newsup.2.9.9.93.zip", "2.9.9.94": "https://downloads.wordpress.org/theme/newsup.2.9.9.94.zip", "2.9.9.95": "https://downloads.wordpress.org/theme/newsup.2.9.9.95.zip", "2.9.9.96": "https://downloads.wordpress.org/theme/newsup.2.9.9.96.zip", "2.9.9.97": "https://downloads.wordpress.org/theme/newsup.2.9.9.97.zip", "2.9.9.98": "https://downloads.wordpress.org/theme/newsup.2.9.9.98.zip", "2.9.9.99": "https://downloads.wordpress.org/theme/newsup.2.9.9.99.zip", "3.0.0.10": "https://downloads.wordpress.org/theme/newsup.3.0.0.10.zip", "3.0.0.11": "https://downloads.wordpress.org/theme/newsup.3.0.0.11.zip", "3.0.0.12": "https://downloads.wordpress.org/theme/newsup.3.0.0.12.zip", "3.0.0.13": "https://downloads.wordpress.org/theme/newsup.3.0.0.13.zip", "3.0.0.14": "https://downloads.wordpress.org/theme/newsup.3.0.0.14.zip", "3.0.0.15": "https://downloads.wordpress.org/theme/newsup.3.0.0.15.zip", "3.0.0.16": "https://downloads.wordpress.org/theme/newsup.3.0.0.16.zip", "3.0.0.17": "https://downloads.wordpress.org/theme/newsup.3.0.0.17.zip", "3.0.0.18": "https://downloads.wordpress.org/theme/newsup.3.0.0.18.zip", "3.0.0.19": "https://downloads.wordpress.org/theme/newsup.3.0.0.19.zip", "3.0.0.20": "https://downloads.wordpress.org/theme/newsup.3.0.0.20.zip", "3.0.0.21": "https://downloads.wordpress.org/theme/newsup.3.0.0.21.zip", "3.0.0.22": "https://downloads.wordpress.org/theme/newsup.3.0.0.22.zip", "3.0.0.23": "https://downloads.wordpress.org/theme/newsup.3.0.0.23.zip", "3.0.0.24": "https://downloads.wordpress.org/theme/newsup.3.0.0.24.zip", "3.0.0.25": "https://downloads.wordpress.org/theme/newsup.3.0.0.25.zip", "3.0.0.26": "https://downloads.wordpress.org/theme/newsup.3.0.0.26.zip", "3.0.0.27": "https://downloads.wordpress.org/theme/newsup.3.0.0.27.zip", "3.0.0.28": "https://downloads.wordpress.org/theme/newsup.3.0.0.28.zip", "3.0.0.29": "https://downloads.wordpress.org/theme/newsup.3.0.0.29.zip", "3.0.0.30": "https://downloads.wordpress.org/theme/newsup.3.0.0.30.zip", "3.0.0.31": "https://downloads.wordpress.org/theme/newsup.3.0.0.31.zip", "3.0.0.32": "https://downloads.wordpress.org/theme/newsup.3.0.0.32.zip", "3.0.0.33": "https://downloads.wordpress.org/theme/newsup.3.0.0.33.zip", "3.0.0.34": "https://downloads.wordpress.org/theme/newsup.3.0.0.34.zip", "3.0.0.35": "https://downloads.wordpress.org/theme/newsup.3.0.0.35.zip", "3.0.0.36": "https://downloads.wordpress.org/theme/newsup.3.0.0.36.zip", "3.0.0.37": "https://downloads.wordpress.org/theme/newsup.3.0.0.37.zip", "3.0.0.38": "https://downloads.wordpress.org/theme/newsup.3.0.0.38.zip", "3.0.0.39": "https://downloads.wordpress.org/theme/newsup.3.0.0.39.zip", "3.0.0.40": "https://downloads.wordpress.org/theme/newsup.3.0.0.40.zip", "3.0.0.41": "https://downloads.wordpress.org/theme/newsup.3.0.0.41.zip", "3.0.0.42": "https://downloads.wordpress.org/theme/newsup.3.0.0.42.zip", "3.0.0.43": "https://downloads.wordpress.org/theme/newsup.3.0.0.43.zip", "3.0.0.44": "https://downloads.wordpress.org/theme/newsup.3.0.0.44.zip", "3.0.0.45": "https://downloads.wordpress.org/theme/newsup.3.0.0.45.zip", "3.0.0.46": "https://downloads.wordpress.org/theme/newsup.3.0.0.46.zip", "3.0.0.47": "https://downloads.wordpress.org/theme/newsup.3.0.0.47.zip", "3.0.0.48": "https://downloads.wordpress.org/theme/newsup.3.0.0.48.zip", "3.0.0.49": "https://downloads.wordpress.org/theme/newsup.3.0.0.49.zip", "3.0.0.50": "https://downloads.wordpress.org/theme/newsup.3.0.0.50.zip", "3.0.0.51": "https://downloads.wordpress.org/theme/newsup.3.0.0.51.zip", "3.0.0.52": "https://downloads.wordpress.org/theme/newsup.3.0.0.52.zip", "3.0.0.53": "https://downloads.wordpress.org/theme/newsup.3.0.0.53.zip", "3.0.0.54": "https://downloads.wordpress.org/theme/newsup.3.0.0.54.zip", "3.0.0.55": "https://downloads.wordpress.org/theme/newsup.3.0.0.55.zip", "3.0.0.56": "https://downloads.wordpress.org/theme/newsup.3.0.0.56.zip", "3.0.0.57": "https://downloads.wordpress.org/theme/newsup.3.0.0.57.zip", "3.0.0.58": "https://downloads.wordpress.org/theme/newsup.3.0.0.58.zip", "3.0.0.59": "https://downloads.wordpress.org/theme/newsup.3.0.0.59.zip", "3.0.0.60": "https://downloads.wordpress.org/theme/newsup.3.0.0.60.zip", "3.0.0.61": "https://downloads.wordpress.org/theme/newsup.3.0.0.61.zip", "3.0.0.62": "https://downloads.wordpress.org/theme/newsup.3.0.0.62.zip", "3.0.0.63": "https://downloads.wordpress.org/theme/newsup.3.0.0.63.zip", "3.0.0.64": "https://downloads.wordpress.org/theme/newsup.3.0.0.64.zip", "3.0.0.65": "https://downloads.wordpress.org/theme/newsup.3.0.0.65.zip", "3.0.0.66": "https://downloads.wordpress.org/theme/newsup.3.0.0.66.zip", "3.0.0.67": "https://downloads.wordpress.org/theme/newsup.3.0.0.67.zip", "3.0.0.68": "https://downloads.wordpress.org/theme/newsup.3.0.0.68.zip", "3.0.0.69": "https://downloads.wordpress.org/theme/newsup.3.0.0.69.zip", "3.0.0.70": "https://downloads.wordpress.org/theme/newsup.3.0.0.70.zip", "3.0.0.71": "https://downloads.wordpress.org/theme/newsup.3.0.0.71.zip", "3.0.0.72": "https://downloads.wordpress.org/theme/newsup.3.0.0.72.zip", "3.0.0.73": "https://downloads.wordpress.org/theme/newsup.3.0.0.73.zip", "3.0.0.74": "https://downloads.wordpress.org/theme/newsup.3.0.0.74.zip", "3.0.0.75": "https://downloads.wordpress.org/theme/newsup.3.0.0.75.zip", "3.0.0.76": "https://downloads.wordpress.org/theme/newsup.3.0.0.76.zip", "3.0.0.77": "https://downloads.wordpress.org/theme/newsup.3.0.0.77.zip", "3.0.0.78": "https://downloads.wordpress.org/theme/newsup.3.0.0.78.zip", "3.0.0.79": "https://downloads.wordpress.org/theme/newsup.3.0.0.79.zip", "3.0.0.80": "https://downloads.wordpress.org/theme/newsup.3.0.0.80.zip", "3.0.0.81": "https://downloads.wordpress.org/theme/newsup.3.0.0.81.zip", "3.0.0.82": "https://downloads.wordpress.org/theme/newsup.3.0.0.82.zip", "3.0.0.83": "https://downloads.wordpress.org/theme/newsup.3.0.0.83.zip", "3.0.0.84": "https://downloads.wordpress.org/theme/newsup.3.0.0.84.zip", "3.0.0.85": "https://downloads.wordpress.org/theme/newsup.3.0.0.85.zip", "3.0.0.86": "https://downloads.wordpress.org/theme/newsup.3.0.0.86.zip", "3.0.0.87": "https://downloads.wordpress.org/theme/newsup.3.0.0.87.zip", "3.0.0.88": "https://downloads.wordpress.org/theme/newsup.3.0.0.88.zip", "3.0.0.89": "https://downloads.wordpress.org/theme/newsup.3.0.0.89.zip", "3.0.0.90": "https://downloads.wordpress.org/theme/newsup.3.0.0.90.zip", "3.0.0.91": "https://downloads.wordpress.org/theme/newsup.3.0.0.91.zip", "3.0.0.92": "https://downloads.wordpress.org/theme/newsup.3.0.0.92.zip", "3.0.0.93": "https://downloads.wordpress.org/theme/newsup.3.0.0.93.zip", "3.0.0.94": "https://downloads.wordpress.org/theme/newsup.3.0.0.94.zip", "3.0.0.95": "https://downloads.wordpress.org/theme/newsup.3.0.0.95.zip", "3.0.0.96": "https://downloads.wordpress.org/theme/newsup.3.0.0.96.zip", "3.0.0.97": "https://downloads.wordpress.org/theme/newsup.3.0.0.97.zip", "3.0.0.98": "https://downloads.wordpress.org/theme/newsup.3.0.0.98.zip", "3.0.0.99": "https://downloads.wordpress.org/theme/newsup.3.0.0.99.zip", "4.0.0.10": "https://downloads.wordpress.org/theme/newsup.4.0.0.10.zip", "4.0.0.11": "https://downloads.wordpress.org/theme/newsup.4.0.0.11.zip", "4.0.0.12": "https://downloads.wordpress.org/theme/newsup.4.0.0.12.zip", "4.0.0.13": "https://downloads.wordpress.org/theme/newsup.4.0.0.13.zip", "4.0.0.14": "https://downloads.wordpress.org/theme/newsup.4.0.0.14.zip", "4.0.0.15": "https://downloads.wordpress.org/theme/newsup.4.0.0.15.zip", "4.0.0.16": "https://downloads.wordpress.org/theme/newsup.4.0.0.16.zip", "4.0.0.17": "https://downloads.wordpress.org/theme/newsup.4.0.0.17.zip", "4.0.0.18": "https://downloads.wordpress.org/theme/newsup.4.0.0.18.zip", "4.0.0.19": "https://downloads.wordpress.org/theme/newsup.4.0.0.19.zip", "4.0.0.20": "https://downloads.wordpress.org/theme/newsup.4.0.0.20.zip", "4.0.0.21": "https://downloads.wordpress.org/theme/newsup.4.0.0.21.zip", "4.0.0.22": "https://downloads.wordpress.org/theme/newsup.4.0.0.22.zip", "4.0.0.23": "https://downloads.wordpress.org/theme/newsup.4.0.0.23.zip", "4.0.0.24": "https://downloads.wordpress.org/theme/newsup.4.0.0.24.zip", "4.0.0.25": "https://downloads.wordpress.org/theme/newsup.4.0.0.25.zip", "4.0.0.26": "https://downloads.wordpress.org/theme/newsup.4.0.0.26.zip", "4.0.0.27": "https://downloads.wordpress.org/theme/newsup.4.0.0.27.zip", "4.0.0.28": "https://downloads.wordpress.org/theme/newsup.4.0.0.28.zip", "4.0.0.29": "https://downloads.wordpress.org/theme/newsup.4.0.0.29.zip", "4.0.0.30": "https://downloads.wordpress.org/theme/newsup.4.0.0.30.zip", "4.0.0.31": "https://downloads.wordpress.org/theme/newsup.4.0.0.31.zip", "4.0.0.32": "https://downloads.wordpress.org/theme/newsup.4.0.0.32.zip", "4.0.0.33": "https://downloads.wordpress.org/theme/newsup.4.0.0.33.zip", "4.0.0.34": "https://downloads.wordpress.org/theme/newsup.4.0.0.34.zip", "4.0.0.35": "https://downloads.wordpress.org/theme/newsup.4.0.0.35.zip", "4.0.0.36": "https://downloads.wordpress.org/theme/newsup.4.0.0.36.zip", "4.0.0.37": "https://downloads.wordpress.org/theme/newsup.4.0.0.37.zip", "4.0.0.38": "https://downloads.wordpress.org/theme/newsup.4.0.0.38.zip", "4.0.0.39": "https://downloads.wordpress.org/theme/newsup.4.0.0.39.zip", "4.0.0.40": "https://downloads.wordpress.org/theme/newsup.4.0.0.40.zip", "4.0.0.41": "https://downloads.wordpress.org/theme/newsup.4.0.0.41.zip", "4.0.0.42": "https://downloads.wordpress.org/theme/newsup.4.0.0.42.zip", "4.0.0.43": "https://downloads.wordpress.org/theme/newsup.4.0.0.43.zip", "4.0.0.44": "https://downloads.wordpress.org/theme/newsup.4.0.0.44.zip", "4.0.0.45": "https://downloads.wordpress.org/theme/newsup.4.0.0.45.zip", "4.0.0.46": "https://downloads.wordpress.org/theme/newsup.4.0.0.46.zip", "4.0.0.47": "https://downloads.wordpress.org/theme/newsup.4.0.0.47.zip", "4.0.0.48": "https://downloads.wordpress.org/theme/newsup.4.0.0.48.zip", "4.0.0.49": "https://downloads.wordpress.org/theme/newsup.4.0.0.49.zip", "4.0.0.50": "https://downloads.wordpress.org/theme/newsup.4.0.0.50.zip", "4.0.0.51": "https://downloads.wordpress.org/theme/newsup.4.0.0.51.zip", "4.0.0.52": "https://downloads.wordpress.org/theme/newsup.4.0.0.52.zip", "4.0.0.53": "https://downloads.wordpress.org/theme/newsup.4.0.0.53.zip", "4.0.0.54": "https://downloads.wordpress.org/theme/newsup.4.0.0.54.zip", "4.0.0.55": "https://downloads.wordpress.org/theme/newsup.4.0.0.55.zip", "4.0.0.56": "https://downloads.wordpress.org/theme/newsup.4.0.0.56.zip", "4.0.0.57": "https://downloads.wordpress.org/theme/newsup.4.0.0.57.zip", "4.0.0.58": "https://downloads.wordpress.org/theme/newsup.4.0.0.58.zip", "4.0.0.59": "https://downloads.wordpress.org/theme/newsup.4.0.0.59.zip", "4.0.0.60": "https://downloads.wordpress.org/theme/newsup.4.0.0.60.zip", "4.0.0.61": "https://downloads.wordpress.org/theme/newsup.4.0.0.61.zip", "4.0.0.62": "https://downloads.wordpress.org/theme/newsup.4.0.0.62.zip", "4.0.0.63": "https://downloads.wordpress.org/theme/newsup.4.0.0.63.zip", "4.0.0.64": "https://downloads.wordpress.org/theme/newsup.4.0.0.64.zip", "4.0.0.65": "https://downloads.wordpress.org/theme/newsup.4.0.0.65.zip", "4.0.0.66": "https://downloads.wordpress.org/theme/newsup.4.0.0.66.zip", "4.0.0.67": "https://downloads.wordpress.org/theme/newsup.4.0.0.67.zip", "4.0.0.68": "https://downloads.wordpress.org/theme/newsup.4.0.0.68.zip", "4.0.0.69": "https://downloads.wordpress.org/theme/newsup.4.0.0.69.zip", "4.0.0.70": "https://downloads.wordpress.org/theme/newsup.4.0.0.70.zip", "4.0.0.71": "https://downloads.wordpress.org/theme/newsup.4.0.0.71.zip", "4.0.0.72": "https://downloads.wordpress.org/theme/newsup.4.0.0.72.zip", "4.0.0.73": "https://downloads.wordpress.org/theme/newsup.4.0.0.73.zip", "4.0.0.74": "https://downloads.wordpress.org/theme/newsup.4.0.0.74.zip", "4.0.0.75": "https://downloads.wordpress.org/theme/newsup.4.0.0.75.zip", "4.0.0.76": "https://downloads.wordpress.org/theme/newsup.4.0.0.76.zip", "4.0.0.77": "https://downloads.wordpress.org/theme/newsup.4.0.0.77.zip", "4.0.0.78": "https://downloads.wordpress.org/theme/newsup.4.0.0.78.zip", "4.0.0.79": "https://downloads.wordpress.org/theme/newsup.4.0.0.79.zip", "4.0.0.80": "https://downloads.wordpress.org/theme/newsup.4.0.0.80.zip", "4.0.0.81": "https://downloads.wordpress.org/theme/newsup.4.0.0.81.zip", "4.0.0.82": "https://downloads.wordpress.org/theme/newsup.4.0.0.82.zip", "4.0.0.83": "https://downloads.wordpress.org/theme/newsup.4.0.0.83.zip", "4.0.0.84": "https://downloads.wordpress.org/theme/newsup.4.0.0.84.zip", "4.0.0.85": "https://downloads.wordpress.org/theme/newsup.4.0.0.85.zip", "4.0.0.86": "https://downloads.wordpress.org/theme/newsup.4.0.0.86.zip", "4.0.0.87": "https://downloads.wordpress.org/theme/newsup.4.0.0.87.zip", "4.0.0.88": "https://downloads.wordpress.org/theme/newsup.4.0.0.88.zip", "4.0.0.89": "https://downloads.wordpress.org/theme/newsup.4.0.0.89.zip", "4.0.0.90": "https://downloads.wordpress.org/theme/newsup.4.0.0.90.zip", "4.0.0.91": "https://downloads.wordpress.org/theme/newsup.4.0.0.91.zip", "4.0.0.92": "https://downloads.wordpress.org/theme/newsup.4.0.0.92.zip", "4.0.0.93": "https://downloads.wordpress.org/theme/newsup.4.0.0.93.zip", "4.0.0.94": "https://downloads.wordpress.org/theme/newsup.4.0.0.94.zip", "4.0.0.95": "https://downloads.wordpress.org/theme/newsup.4.0.0.95.zip", "4.0.0.96": "https://downloads.wordpress.org/theme/newsup.4.0.0.96.zip", "4.0.0.97": "https://downloads.wordpress.org/theme/newsup.4.0.0.97.zip", "4.0.0.98": "https://downloads.wordpress.org/theme/newsup.4.0.0.98.zip", "4.0.0.99": "https://downloads.wordpress.org/theme/newsup.4.0.0.99.zip", "3.0.0.100": "https://downloads.wordpress.org/theme/newsup.3.0.0.100.zip", "3.0.0.101": "https://downloads.wordpress.org/theme/newsup.3.0.0.101.zip", "3.0.0.102": "https://downloads.wordpress.org/theme/newsup.3.0.0.102.zip", "3.0.0.103": "https://downloads.wordpress.org/theme/newsup.3.0.0.103.zip", "3.0.0.104": "https://downloads.wordpress.org/theme/newsup.3.0.0.104.zip", "3.0.0.105": "https://downloads.wordpress.org/theme/newsup.3.0.0.105.zip", "3.0.0.106": "https://downloads.wordpress.org/theme/newsup.3.0.0.106.zip", "3.0.0.107": "https://downloads.wordpress.org/theme/newsup.3.0.0.107.zip", "3.0.0.108": "https://downloads.wordpress.org/theme/newsup.3.0.0.108.zip", "3.0.0.109": "https://downloads.wordpress.org/theme/newsup.3.0.0.109.zip", "3.0.0.110": "https://downloads.wordpress.org/theme/newsup.3.0.0.110.zip", "3.0.0.111": "https://downloads.wordpress.org/theme/newsup.3.0.0.111.zip"}, "downloaded": 2637938, "num_ratings": 182, "preview_url": "https://wp-themes.com/newsup/", "reviews_url": "https://wordpress.org/support/theme/newsup/reviews/", "is_community": false, "last_updated": "2025-10-28", "requires_php": "7.4", "creation_time": "2020-03-01 06:23:21", "download_link": "https://downloads.wordpress.org/theme/newsup.5.1.3.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/newsup/screenshot.jpg?ver=5.1.3", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-0e10-71f1-bc8a-ab0af43ef3ad", "name": "Newsup", "slug": "newsup", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1761609600, "version": "5.1.3"}, "last_updated_time": "2025-10-28 04:20:06", "external_support_url": "https://themeansar.com/support/", "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f504-73a7-b9ee-3c36b6bd63dd', 'did:web:api.aspiredev.org:packages:wp-theme:oakridge-carpenter-and-joinery', 'oakridge-carpenter-and-joinery', 'Oakridge Carpenter And Joinery', 'Oakridge Carpenter And Joinery is a responsive WordPress theme built for construction company, handyman, landscape, factory, maintenance and trade websites, yet it’s flexible enough to power any industry – from corporate businesses, manufacturer and repair and engieering startups to creative companies and independent bloggers. With full support for Gutenberg and Elementor, you can easily design pages using intuitive block tools and a fast, user friendly page builder, ensuring your website is built quickly and efficiently. This free FSE theme offers a minimalist, simple, and mobile friendly layout that adapts beautifully to one page landing pages, journals, magazines, or a stylish portfolio for writers and bloggers. Its smart integration of schema markup boosts SEO and search engines visibility, making it a perfect marketing asset. Oakridge Carpenter And Joinery’s pre-designed templates cater naturally to industries like construction, home building, carpentry, flooring, roofing, woodworking, DIY, and renovation. It’s also ideal for businesses specializing in furniture, cabinet making, timber joinery, and apprenticeship programs for artisans, plumbers, contractors, electricians and engineers. Whether you’re a supplier sustainability leader, architecture, chemical supplier or in manufacturing, production, or industrial sectors, or a blogger writing about sustainable construction, Oakridge Carpenter And Joinery delivers a fast, easy to use and modern theme that elevates your online presence — use it to showcase your company and even add a eCommerce store with seamless WooCommerce integration. Overall Oakridge Carpenter And Joinery can be used for any sort of project, but it has the most pre-built designs for trade and craftsmanship websites.', 'wp', 'wp-theme', 'GPL', '{"name": "Oakridge Carpenter And Joinery", "slug": "oakridge-carpenter-and-joinery", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbthemescom", "avatar": "https://secure.gravatar.com/avatar/64e0df7601781a06ac84aef62b02deb12e2283ddf03073931e6a6a1c4e972988?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbthemescom/", "author_url": "https://superbthemes.com/", "display_name": "SuperbThemes", "user_nicename": "superbthemescom"}, "parent": {"name": "TradeCraft", "slug": "tradecraft", "homepage": "https://wordpress.org/themes/tradecraft/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.4", "homepage": "https://wordpress.org/themes/oakridge-carpenter-and-joinery/", "requires": "6.0", "sections": {"description": "Oakridge Carpenter And Joinery is a responsive WordPress theme built for construction company, handyman, landscape, factory, maintenance and trade websites, yet it’s flexible enough to power any industry – from corporate businesses, manufacturer and repair and engieering startups to creative companies and independent bloggers. With full support for Gutenberg and Elementor, you can easily design pages using intuitive block tools and a fast, user friendly page builder, ensuring your website is built quickly and efficiently. This free FSE theme offers a minimalist, simple, and mobile friendly layout that adapts beautifully to one page landing pages, journals, magazines, or a stylish portfolio for writers and bloggers. Its smart integration of schema markup boosts SEO and search engines visibility, making it a perfect marketing asset. Oakridge Carpenter And Joinery’s pre-designed templates cater naturally to industries like construction, home building, carpentry, flooring, roofing, woodworking, DIY, and renovation. It’s also ideal for businesses specializing in furniture, cabinet making, timber joinery, and apprenticeship programs for artisans, plumbers, contractors, electricians and engineers. Whether you’re a supplier sustainability leader, architecture, chemical supplier or in manufacturing, production, or industrial sectors, or a blogger writing about sustainable construction, Oakridge Carpenter And Joinery delivers a fast, easy to use and modern theme that elevates your online presence — use it to showcase your company and even add a eCommerce store with seamless WooCommerce integration. Overall Oakridge Carpenter And Joinery can be used for any sort of project, but it has the most pre-built designs for trade and craftsmanship websites."}, "template": "tradecraft", "versions": {"1.0": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.4.zip"}, "downloaded": 1529, "num_ratings": 0, "preview_url": "https://wp-themes.com/oakridge-carpenter-and-joinery/", "reviews_url": "https://wordpress.org/support/theme/oakridge-carpenter-and-joinery/reviews/", "is_community": false, "last_updated": "2025-10-23", "requires_php": "5.3", "creation_time": "2025-09-30 07:31:43", "download_link": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/oakridge-carpenter-and-joinery/screenshot.png?ver=1.4", "active_installs": 200, "aspiresync_meta": {"id": "019a30c0-0e6e-70b0-aa93-78db3c611a60", "name": "Oakridge Carpenter And Joinery", "slug": "oakridge-carpenter-and-joinery", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1761177600, "version": "1.4"}, "last_updated_time": "2025-10-23 11:51:54", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f521-7206-90ad-638d03ce5e96', 'did:web:api.aspiredev.org:packages:wp-theme:oceanwp', 'oceanwp', 'OceanWP', 'OceanWP is the perfect theme for your project. Lightweight and highly extendable, it will enable you to create almost any type of website such a blog, portfolio, business website and WooCommerce storefront with a beautiful & professional design. Very fast, responsive, RTL & translation ready, best SEO practices, unique WooCommerce features to increase conversion and much more. You can even edit the settings on tablet & mobile so your site looks good on every device. Work with the most popular page builders as Elementor, Beaver Builder, Brizy, Visual Composer, Divi, SiteOrigin, etc... Developers will love his extensible codebase making it a joy to customize and extend. Best friend of Elementor & WooCommerce. Looking for a Multi-Purpose theme? Look no further! Check the demos to realize that it''s the only theme you will ever need: https://oceanwp.org/demos/', 'wp', 'wp-theme', 'proprietary', '{"name": "OceanWP", "slug": "oceanwp", "tags": {"blog": "Blog", "news": "News", "buddypress": "BuddyPress", "e-commerce": "E-commerce", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "OceanWP", "avatar": "https://secure.gravatar.com/avatar/ce621cb66ad1a867341134c954975b0c7075a936ae8995bada1b2b28ad62fe61?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/oceanwp/", "author_url": "https://oceanwp.org/about-oceanwp/", "display_name": "oceanwp", "user_nicename": "oceanwp"}, "rating": 98, "status": "open", "ratings": {"1": 50, "2": 12, "3": 15, "4": 72, "5": 5533}, "version": "4.1.3", "homepage": "https://wordpress.org/themes/oceanwp/", "requires": "5.6", "sections": {"description": "OceanWP is the perfect theme for your project. Lightweight and highly extendable, it will enable you to create almost any type of website such a blog, portfolio, business website and WooCommerce storefront with a beautiful & professional design. Very fast, responsive, RTL & translation ready, best SEO practices, unique WooCommerce features to increase conversion and much more. You can even edit the settings on tablet & mobile so your site looks good on every device. Work with the most popular page builders as Elementor, Beaver Builder, Brizy, Visual Composer, Divi, SiteOrigin, etc... Developers will love his extensible codebase making it a joy to customize and extend. Best friend of Elementor & WooCommerce. Looking for a Multi-Purpose theme? Look no further! Check the demos to realize that it''s the only theme you will ever need: https://oceanwp.org/demos/"}, "versions": {"1.1.0": "https://downloads.wordpress.org/theme/oceanwp.1.1.0.zip", "1.1.5": "https://downloads.wordpress.org/theme/oceanwp.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/oceanwp.1.1.6.zip", "1.1.8": "https://downloads.wordpress.org/theme/oceanwp.1.1.8.zip", "1.2.1": "https://downloads.wordpress.org/theme/oceanwp.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/oceanwp.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/oceanwp.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/oceanwp.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/oceanwp.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/oceanwp.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/oceanwp.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/oceanwp.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/oceanwp.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/oceanwp.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/oceanwp.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/oceanwp.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/oceanwp.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/oceanwp.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/oceanwp.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/oceanwp.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/oceanwp.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/oceanwp.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/oceanwp.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/oceanwp.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/oceanwp.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/oceanwp.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/oceanwp.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/oceanwp.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/oceanwp.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/oceanwp.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/oceanwp.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/oceanwp.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/oceanwp.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/oceanwp.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/oceanwp.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/oceanwp.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/oceanwp.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/oceanwp.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/oceanwp.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/oceanwp.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/oceanwp.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/oceanwp.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/oceanwp.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/oceanwp.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/oceanwp.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/oceanwp.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/oceanwp.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/oceanwp.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/oceanwp.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/oceanwp.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/oceanwp.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/oceanwp.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/oceanwp.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/oceanwp.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/oceanwp.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/oceanwp.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/oceanwp.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/oceanwp.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/oceanwp.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/oceanwp.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/oceanwp.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/oceanwp.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/oceanwp.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/theme/oceanwp.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/oceanwp.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/oceanwp.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/oceanwp.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/oceanwp.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/oceanwp.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/oceanwp.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/oceanwp.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/oceanwp.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/theme/oceanwp.1.8.9.zip", "1.9.0": "https://downloads.wordpress.org/theme/oceanwp.1.9.0.zip", "2.0.0": "https://downloads.wordpress.org/theme/oceanwp.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/oceanwp.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/oceanwp.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/oceanwp.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/oceanwp.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/oceanwp.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/oceanwp.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/oceanwp.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/oceanwp.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/oceanwp.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/oceanwp.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/oceanwp.2.1.1.zip", "3.0.0": "https://downloads.wordpress.org/theme/oceanwp.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/oceanwp.3.0.1.zip", "3.0.3": "https://downloads.wordpress.org/theme/oceanwp.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/oceanwp.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/theme/oceanwp.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/theme/oceanwp.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/theme/oceanwp.3.0.7.zip", "3.1.0": "https://downloads.wordpress.org/theme/oceanwp.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/oceanwp.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/oceanwp.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/theme/oceanwp.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/theme/oceanwp.3.1.4.zip", "3.2.0": "https://downloads.wordpress.org/theme/oceanwp.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/theme/oceanwp.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/theme/oceanwp.3.2.2.zip", "3.3.0": "https://downloads.wordpress.org/theme/oceanwp.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/oceanwp.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/theme/oceanwp.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/theme/oceanwp.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/theme/oceanwp.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/theme/oceanwp.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/theme/oceanwp.3.3.6.zip", "3.4.0": "https://downloads.wordpress.org/theme/oceanwp.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/theme/oceanwp.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/theme/oceanwp.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/theme/oceanwp.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/theme/oceanwp.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/theme/oceanwp.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/theme/oceanwp.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/theme/oceanwp.3.4.7.zip", "3.5.0": "https://downloads.wordpress.org/theme/oceanwp.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/theme/oceanwp.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/theme/oceanwp.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/theme/oceanwp.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/theme/oceanwp.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/theme/oceanwp.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/theme/oceanwp.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/theme/oceanwp.3.5.7.zip", "3.5.8": "https://downloads.wordpress.org/theme/oceanwp.3.5.8.zip", "3.5.9": "https://downloads.wordpress.org/theme/oceanwp.3.5.9.zip", "3.6.0": "https://downloads.wordpress.org/theme/oceanwp.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/theme/oceanwp.3.6.1.zip", "4.0.0": "https://downloads.wordpress.org/theme/oceanwp.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/oceanwp.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/oceanwp.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/theme/oceanwp.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/theme/oceanwp.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/theme/oceanwp.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/theme/oceanwp.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/theme/oceanwp.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/theme/oceanwp.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/theme/oceanwp.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/theme/oceanwp.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/oceanwp.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/oceanwp.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/oceanwp.4.1.3.zip", "1.4.10": "https://downloads.wordpress.org/theme/oceanwp.1.4.10.zip", "1.4.11": "https://downloads.wordpress.org/theme/oceanwp.1.4.11.zip", "1.4.12": "https://downloads.wordpress.org/theme/oceanwp.1.4.12.zip", "1.4.13": "https://downloads.wordpress.org/theme/oceanwp.1.4.13.zip", "1.4.14": "https://downloads.wordpress.org/theme/oceanwp.1.4.14.zip", "1.4.15": "https://downloads.wordpress.org/theme/oceanwp.1.4.15.zip", "1.4.16": "https://downloads.wordpress.org/theme/oceanwp.1.4.16.zip", "1.5.10": "https://downloads.wordpress.org/theme/oceanwp.1.5.10.zip", "1.5.11": "https://downloads.wordpress.org/theme/oceanwp.1.5.11.zip", "1.5.12": "https://downloads.wordpress.org/theme/oceanwp.1.5.12.zip", "1.5.13": "https://downloads.wordpress.org/theme/oceanwp.1.5.13.zip", "1.5.14": "https://downloads.wordpress.org/theme/oceanwp.1.5.14.zip", "1.5.15": "https://downloads.wordpress.org/theme/oceanwp.1.5.15.zip", "1.5.16": "https://downloads.wordpress.org/theme/oceanwp.1.5.16.zip", "1.5.17": "https://downloads.wordpress.org/theme/oceanwp.1.5.17.zip", "1.5.18": "https://downloads.wordpress.org/theme/oceanwp.1.5.18.zip", "1.5.19": "https://downloads.wordpress.org/theme/oceanwp.1.5.19.zip", "1.5.20": "https://downloads.wordpress.org/theme/oceanwp.1.5.20.zip", "1.5.21": "https://downloads.wordpress.org/theme/oceanwp.1.5.21.zip", "1.5.22": "https://downloads.wordpress.org/theme/oceanwp.1.5.22.zip", "1.5.23": "https://downloads.wordpress.org/theme/oceanwp.1.5.23.zip", "1.5.24": "https://downloads.wordpress.org/theme/oceanwp.1.5.24.zip", "1.5.25": "https://downloads.wordpress.org/theme/oceanwp.1.5.25.zip", "1.5.26": "https://downloads.wordpress.org/theme/oceanwp.1.5.26.zip", "1.5.27": "https://downloads.wordpress.org/theme/oceanwp.1.5.27.zip", "1.5.28": "https://downloads.wordpress.org/theme/oceanwp.1.5.28.zip", "1.5.29": "https://downloads.wordpress.org/theme/oceanwp.1.5.29.zip", "1.5.30": "https://downloads.wordpress.org/theme/oceanwp.1.5.30.zip", "1.5.31": "https://downloads.wordpress.org/theme/oceanwp.1.5.31.zip", "1.5.32": "https://downloads.wordpress.org/theme/oceanwp.1.5.32.zip", "1.6.10": "https://downloads.wordpress.org/theme/oceanwp.1.6.10.zip", "1.0.8.1": "https://downloads.wordpress.org/theme/oceanwp.1.0.8.1.zip", "1.0.9.1": "https://downloads.wordpress.org/theme/oceanwp.1.0.9.1.zip", "1.1.0.1": "https://downloads.wordpress.org/theme/oceanwp.1.1.0.1.zip", "1.1.6.1": "https://downloads.wordpress.org/theme/oceanwp.1.1.6.1.zip", "1.1.6.2": "https://downloads.wordpress.org/theme/oceanwp.1.1.6.2.zip", "1.1.6.3": "https://downloads.wordpress.org/theme/oceanwp.1.1.6.3.zip", "1.1.8.1": "https://downloads.wordpress.org/theme/oceanwp.1.1.8.1.zip", "1.2.0.1": "https://downloads.wordpress.org/theme/oceanwp.1.2.0.1.zip", "1.2.0.2": "https://downloads.wordpress.org/theme/oceanwp.1.2.0.2.zip", "1.1.8.1.1": "https://downloads.wordpress.org/theme/oceanwp.1.1.8.1.1.zip", "1.1.8.1.2": "https://downloads.wordpress.org/theme/oceanwp.1.1.8.1.2.zip", "1.1.8.1.3": "https://downloads.wordpress.org/theme/oceanwp.1.1.8.1.3.zip", "1.2.0.2.1": "https://downloads.wordpress.org/theme/oceanwp.1.2.0.2.1.zip"}, "downloaded": 8955050, "num_ratings": 5682, "preview_url": "https://wp-themes.com/oceanwp/", "reviews_url": "https://wordpress.org/support/theme/oceanwp/reviews/", "is_community": false, "last_updated": "2025-09-15", "requires_php": "7.4", "creation_time": "2017-06-12 13:00:12", "download_link": "https://downloads.wordpress.org/theme/oceanwp.4.1.3.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/oceanwp/screenshot.png?ver=4.1.3", "active_installs": 500000, "aspiresync_meta": {"id": "019a30c0-0e78-7168-a54c-43c8e7bf81b5", "name": "OceanWP", "slug": "oceanwp", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1757894400, "version": "4.1.3"}, "last_updated_time": "2025-09-15 13:24:21", "external_support_url": "https://oceanwp.org/support/?utm_source=wporg", "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f53d-7195-bb7e-0e9fcac31fcb', 'did:web:api.aspiredev.org:packages:wp-theme:ona-architecture', 'ona-architecture', 'Ona Architecture', 'Ona Architecture is a sleek and sophisticated WordPress theme designed specifically for architects, interior designers, design studios, construction firms, and creative professionals in the built environment. This meticulously crafted block-based theme offers a clean, minimalist aesthetic that beautifully showcases architectural projects and portfolios. Winner of the prestigious Anyone Can WP design contest, Ona Architecture combines cutting-edge design with exceptional functionality. The theme features a responsive layout that seamlessly adapts to all devices, ensuring your architectural vision looks stunning on desktops, tablets, and smartphones.', 'wp', 'wp-theme', 'GPL', '{"name": "Ona Architecture", "slug": "ona-architecture", "tags": {"blog": "Blog", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "four-columns": "Four columns", "custom-colors": "Custom colors", "entertainment": "Entertainment", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "DeoThemes", "avatar": "https://secure.gravatar.com/avatar/2db31f43df36f28a6ef358d30bd88c916c8a41d2d60c7be930cd58e35d312821?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/deothemes/", "author_url": "https://deothemes.com", "display_name": "DeoThemes", "user_nicename": "deothemes"}, "parent": {"name": "Ona", "slug": "ona", "homepage": "https://wordpress.org/themes/ona/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.0", "homepage": "https://wordpress.org/themes/ona-architecture/", "requires": "5.8", "sections": {"description": "Ona Architecture is a sleek and sophisticated WordPress theme designed specifically for architects, interior designers, design studios, construction firms, and creative professionals in the built environment. This meticulously crafted block-based theme offers a clean, minimalist aesthetic that beautifully showcases architectural projects and portfolios. Winner of the prestigious Anyone Can WP design contest, Ona Architecture combines cutting-edge design with exceptional functionality. The theme features a responsive layout that seamlessly adapts to all devices, ensuring your architectural vision looks stunning on desktops, tablets, and smartphones."}, "template": "ona", "versions": {"0.1": "https://downloads.wordpress.org/theme/ona-architecture.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/ona-architecture.0.2.zip", "1.0.0": "https://downloads.wordpress.org/theme/ona-architecture.1.0.0.zip"}, "downloaded": 32040, "num_ratings": 0, "preview_url": "https://wp-themes.com/ona-architecture/", "reviews_url": "https://wordpress.org/support/theme/ona-architecture/reviews/", "is_community": false, "last_updated": "2025-02-07", "requires_php": "5.6", "creation_time": "2024-12-13 04:56:47", "download_link": "https://downloads.wordpress.org/theme/ona-architecture.1.0.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/ona-architecture/screenshot.jpg?ver=1.0.0", "active_installs": 4000, "aspiresync_meta": {"id": "019a30c0-0e4a-7182-826f-745962e7c2bc", "name": "Ona Architecture", "slug": "ona-architecture", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1738886400, "version": "1.0.0"}, "last_updated_time": "2025-02-07 13:30:46", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f55b-717f-a75a-1703cfe4e59b', 'did:web:api.aspiredev.org:packages:wp-theme:onepress', 'onepress', 'OnePress', 'OnePress is an outstanding creative and flexible WordPress one page theme well suited for business website, portfolio, digital agency, product showcase, freelancers and everyone else who appreciate good design. The theme overall is an elegant and classic one, a fine example of Bootstrap 4 WordPress theme which compatibility with latest version of WooCommerce. (Live preview : https://demos.famethemes.com/onepress)', 'wp', 'wp-theme', 'GPL', '{"name": "OnePress", "slug": "onepress", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "FameThemes", "avatar": "https://secure.gravatar.com/avatar/e1aa1fe1ebeade7e34063c76baf1ceb4f630bf5f480b53a2ee9b113cf24b7fb6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/famethemes/", "author_url": "http://www.famethemes.com", "display_name": "FameThemes", "user_nicename": "famethemes"}, "rating": 92, "status": "open", "ratings": {"1": 10, "2": 3, "3": 3, "4": 4, "5": 134}, "version": "2.3.15", "homepage": "https://wordpress.org/themes/onepress/", "requires": false, "sections": {"description": "OnePress is an outstanding creative and flexible WordPress one page theme well suited for business website, portfolio, digital agency, product showcase, freelancers and everyone else who appreciate good design. The theme overall is an elegant and classic one, a fine example of Bootstrap 4 WordPress theme which compatibility with latest version of WooCommerce. (Live preview : https://demos.famethemes.com/onepress)"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/onepress.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/onepress.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/onepress.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/onepress.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/onepress.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/onepress.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/onepress.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/onepress.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/onepress.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/onepress.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/onepress.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/onepress.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/onepress.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/onepress.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/onepress.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/onepress.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/onepress.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/onepress.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/onepress.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/onepress.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/onepress.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/onepress.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/onepress.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/onepress.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/onepress.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/onepress.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/onepress.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/onepress.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/onepress.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/onepress.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/onepress.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/onepress.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/onepress.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/onepress.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/onepress.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/onepress.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/onepress.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/onepress.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/onepress.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/onepress.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/onepress.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/onepress.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/onepress.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/onepress.1.4.3.zip", "2.0.0": "https://downloads.wordpress.org/theme/onepress.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/onepress.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/onepress.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/onepress.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/onepress.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/onepress.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/onepress.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/onepress.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/onepress.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/onepress.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/onepress.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/theme/onepress.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/onepress.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/onepress.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/onepress.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/onepress.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/onepress.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/onepress.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/theme/onepress.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/theme/onepress.2.2.8.zip", "2.3.0": "https://downloads.wordpress.org/theme/onepress.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/onepress.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/onepress.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/onepress.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/onepress.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/onepress.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/onepress.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/onepress.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/onepress.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/theme/onepress.2.3.9.zip", "2.3.10": "https://downloads.wordpress.org/theme/onepress.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/theme/onepress.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/theme/onepress.2.3.12.zip", "2.3.15": "https://downloads.wordpress.org/theme/onepress.2.3.15.zip"}, "downloaded": 2449087, "num_ratings": 154, "preview_url": "https://wp-themes.com/onepress/", "reviews_url": "https://wordpress.org/support/theme/onepress/reviews/", "is_community": false, "last_updated": "2025-09-19", "requires_php": "5.6", "creation_time": "2016-02-08 00:15:06", "download_link": "https://downloads.wordpress.org/theme/onepress.2.3.15.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/onepress/screenshot.png?ver=2.3.15", "active_installs": 70000, "aspiresync_meta": {"id": "019a30c0-0e6a-70aa-9248-61d66247aad5", "name": "OnePress", "slug": "onepress", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1758240000, "version": "2.3.15"}, "last_updated_time": "2025-09-19 04:27:11", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f570-7287-909c-f6cb86c3e54a', 'did:web:api.aspiredev.org:packages:wp-theme:online-personal-trainer', 'online-personal-trainer', 'Online Personal Trainer', 'Online Personal Trainer is a free powerful and flexible WordPress theme designed for personal trainers, fitness coaches, and anyone in the training, workout, or wellness space. Built for high conversion and modern style, it’s also perfect for any business, blogger, writer, or creative professional looking for a clean, minimalist design. Compatible with Elementor, Gutenberg, and Divi Builder, this page builder-ready theme lets you create stunning landing pages, portfolios, and one page websites with ease. Whether you’re launching a startup, a lifestyle brand, or an ecommerce store with WooCommerce, you’ll love the responsive, mobile-friendly layout and fastest loading performance. Use it to publish courses, run affiliate marketing, place adsense advertisements, or create a sleek magazine, news, or newspaper site. The block-based layout is FSE-ready (full site editing), SEO optimized with schema markup, and built for search engines from the ground up. The simple design supports any color palette, includes dark mode, and is fully translation ready. Whether you’re focused on photography, writing, blogging, or building a company brand — this is one of the best templates available.', 'wp', 'wp-theme', 'GPL', '{"name": "Online Personal Trainer", "slug": "online-personal-trainer", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbthemescom", "avatar": "https://secure.gravatar.com/avatar/64e0df7601781a06ac84aef62b02deb12e2283ddf03073931e6a6a1c4e972988?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbthemescom/", "author_url": "https://superbthemes.com/", "display_name": "SuperbThemes", "user_nicename": "superbthemescom"}, "parent": {"name": "Ruby Ecommerce", "slug": "ruby-ecommerce", "homepage": "https://wordpress.org/themes/ruby-ecommerce/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.3", "homepage": "https://wordpress.org/themes/online-personal-trainer/", "requires": "6.1", "sections": {"description": "Online Personal Trainer is a free powerful and flexible WordPress theme designed for personal trainers, fitness coaches, and anyone in the training, workout, or wellness space. Built for high conversion and modern style, it’s also perfect for any business, blogger, writer, or creative professional looking for a clean, minimalist design. Compatible with Elementor, Gutenberg, and Divi Builder, this page builder-ready theme lets you create stunning landing pages, portfolios, and one page websites with ease. Whether you’re launching a startup, a lifestyle brand, or an ecommerce store with WooCommerce, you’ll love the responsive, mobile-friendly layout and fastest loading performance. Use it to publish courses, run affiliate marketing, place adsense advertisements, or create a sleek magazine, news, or newspaper site. The block-based layout is FSE-ready (full site editing), SEO optimized with schema markup, and built for search engines from the ground up. The simple design supports any color palette, includes dark mode, and is fully translation ready. Whether you’re focused on photography, writing, blogging, or building a company brand — this is one of the best templates available."}, "template": "ruby-ecommerce", "versions": {"1.0": "https://downloads.wordpress.org/theme/online-personal-trainer.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/online-personal-trainer.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/online-personal-trainer.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/online-personal-trainer.1.3.zip"}, "downloaded": 1312, "num_ratings": 0, "preview_url": "https://wp-themes.com/online-personal-trainer/", "reviews_url": "https://wordpress.org/support/theme/online-personal-trainer/reviews/", "is_community": false, "last_updated": "2025-10-10", "requires_php": "5.6", "creation_time": "2025-10-10 07:31:52", "download_link": "https://downloads.wordpress.org/theme/online-personal-trainer.1.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/online-personal-trainer/screenshot.png?ver=1.3", "active_installs": 200, "aspiresync_meta": {"id": "019a30c0-0e71-70ff-8233-0db6136fc602", "name": "Online Personal Trainer", "slug": "online-personal-trainer", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1760054400, "version": "1.3"}, "last_updated_time": "2025-10-10 07:31:52", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f7be-7146-92fb-0d8c173c6397', 'did:web:api.aspiredev.org:packages:wp-theme:twentyseventeen', 'twentyseventeen', 'Twenty Seventeen', 'Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Seventeen", "slug": "twentyseventeen", "tags": {"one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 90, "status": "open", "ratings": {"1": 6, "2": 4, "3": 11, "4": 5, "5": 93}, "version": "3.9", "homepage": "https://wordpress.org/themes/twentyseventeen/", "requires": "4.7", "sections": {"description": "Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentyseventeen.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentyseventeen.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentyseventeen.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentyseventeen.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentyseventeen.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentyseventeen.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentyseventeen.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentyseventeen.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentyseventeen.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentyseventeen.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentyseventeen.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentyseventeen.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentyseventeen.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentyseventeen.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentyseventeen.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentyseventeen.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentyseventeen.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentyseventeen.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentyseventeen.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentyseventeen.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentyseventeen.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentyseventeen.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentyseventeen.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentyseventeen.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentyseventeen.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentyseventeen.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentyseventeen.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentyseventeen.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentyseventeen.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentyseventeen.3.9.zip"}, "downloaded": 13296138, "num_ratings": 119, "preview_url": "https://wp-themes.com/twentyseventeen/", "reviews_url": "https://wordpress.org/support/theme/twentyseventeen/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2016-12-06 19:45:07", "download_link": "https://downloads.wordpress.org/theme/twentyseventeen.3.9.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentyseventeen/screenshot.png?ver=3.9", "active_installs": 400000, "aspiresync_meta": {"id": "019a30c0-1418-70f6-b9e5-f5eaf3d80518", "name": "Twenty Seventeen", "slug": "twentyseventeen", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "3.9"}, "last_updated_time": "2025-04-15 13:21:43", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f58c-71b9-bc87-a82f75f32703', 'did:web:api.aspiredev.org:packages:wp-theme:phlox', 'phlox', 'Phlox', 'Phlox is a modern, lightweight and customizable theme perfect for almost any type of website including, blog, portfolio, business, agency, news & magazine, food & restaurant, travel, and photography as well as WooCommerce storefront. What makes the Phlox unbeatable is being fast, truly responsive, translation ready, RTL layout, built with SEO in mind, professional portfolio features, 30 exclusive widgets and elements, 19 demo sites for one-click import, WooCommerce Ready, WPML ready, 100% GDPR compliance, reliable with regular updates, and also integrated with Elementor, Visual Composer and SiteOrigin page builders. Phlox is architect from scratch by the team behind the famous "Master Slider" project, so relax and be assured that you are supported by a good company. Phlox is the only theme that you have ever need to use and look no further. Start exploring the demos: http://demo.phlox.pro/default/', 'wp', 'wp-theme', 'GPL', '{"name": "Phlox", "slug": "phlox", "tags": {"portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "food-and-drink": "Food & drink", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "averta", "avatar": "https://secure.gravatar.com/avatar/2520cf699d4831304bd81f527a47fca986241371b11ac7caef8a0d4e8b39c122?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/averta/", "author_url": "http://www.averta.net", "display_name": "averta", "user_nicename": "averta"}, "rating": 96, "status": "open", "ratings": {"1": 26, "2": 7, "3": 9, "4": 33, "5": 775}, "version": "2.17.7", "homepage": "https://wordpress.org/themes/phlox/", "requires": "5.4", "sections": {"description": "Phlox is a modern, lightweight and customizable theme perfect for almost any type of website including, blog, portfolio, business, agency, news & magazine, food & restaurant, travel, and photography as well as WooCommerce storefront. What makes the Phlox unbeatable is being fast, truly responsive, translation ready, RTL layout, built with SEO in mind, professional portfolio features, 30 exclusive widgets and elements, 19 demo sites for one-click import, WooCommerce Ready, WPML ready, 100% GDPR compliance, reliable with regular updates, and also integrated with Elementor, Visual Composer and SiteOrigin page builders. Phlox is architect from scratch by the team behind the famous \"Master Slider\" project, so relax and be assured that you are supported by a good company. Phlox is the only theme that you have ever need to use and look no further. Start exploring the demos: http://demo.phlox.pro/default/"}, "versions": {"0.8": "https://downloads.wordpress.org/theme/phlox.0.8.zip", "1.0": "https://downloads.wordpress.org/theme/phlox.1.0.zip", "1.05": "https://downloads.wordpress.org/theme/phlox.1.05.zip", "1.5.1": "https://downloads.wordpress.org/theme/phlox.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/theme/phlox.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/phlox.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/phlox.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/phlox.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/phlox.1.6.4.zip", "1.6.6": "https://downloads.wordpress.org/theme/phlox.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/phlox.1.6.7.zip", "1.6.9": "https://downloads.wordpress.org/theme/phlox.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/phlox.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/phlox.1.7.1.zip", "1.7.4": "https://downloads.wordpress.org/theme/phlox.1.7.4.zip", "1.8.0": "https://downloads.wordpress.org/theme/phlox.1.8.0.zip", "1.8.2": "https://downloads.wordpress.org/theme/phlox.1.8.2.zip", "1.8.4": "https://downloads.wordpress.org/theme/phlox.1.8.4.zip", "1.9.0": "https://downloads.wordpress.org/theme/phlox.1.9.0.zip", "1.9.2": "https://downloads.wordpress.org/theme/phlox.1.9.2.zip", "2.0.0": "https://downloads.wordpress.org/theme/phlox.2.0.0.zip", "2.0.5": "https://downloads.wordpress.org/theme/phlox.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/phlox.2.0.6.zip", "2.0.9": "https://downloads.wordpress.org/theme/phlox.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/phlox.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/phlox.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/phlox.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/phlox.2.1.3.zip", "2.1.5": "https://downloads.wordpress.org/theme/phlox.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/phlox.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/phlox.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/phlox.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/theme/phlox.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/theme/phlox.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/phlox.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/phlox.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/phlox.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/phlox.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/phlox.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/phlox.2.2.6.zip", "2.2.8": "https://downloads.wordpress.org/theme/phlox.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/theme/phlox.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/theme/phlox.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/phlox.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/phlox.2.3.2.zip", "2.3.4": "https://downloads.wordpress.org/theme/phlox.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/phlox.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/phlox.2.3.6.zip", "2.3.8": "https://downloads.wordpress.org/theme/phlox.2.3.8.zip", "2.4.0": "https://downloads.wordpress.org/theme/phlox.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/phlox.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/phlox.2.4.2.zip", "2.4.4": "https://downloads.wordpress.org/theme/phlox.2.4.4.zip", "2.4.6": "https://downloads.wordpress.org/theme/phlox.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/theme/phlox.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/theme/phlox.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/theme/phlox.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/theme/phlox.2.5.0.zip", "2.5.3": "https://downloads.wordpress.org/theme/phlox.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/phlox.2.5.4.zip", "2.5.7": "https://downloads.wordpress.org/theme/phlox.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/theme/phlox.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/theme/phlox.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/theme/phlox.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/phlox.2.6.1.zip", "2.6.4": "https://downloads.wordpress.org/theme/phlox.2.6.4.zip", "2.6.6": "https://downloads.wordpress.org/theme/phlox.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/theme/phlox.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/theme/phlox.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/theme/phlox.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/theme/phlox.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/theme/phlox.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/theme/phlox.2.7.2.zip", "2.7.5": "https://downloads.wordpress.org/theme/phlox.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/theme/phlox.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/theme/phlox.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/theme/phlox.2.7.8.zip", "2.7.9": "https://downloads.wordpress.org/theme/phlox.2.7.9.zip", "2.8.0": "https://downloads.wordpress.org/theme/phlox.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/theme/phlox.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/theme/phlox.2.8.2.zip", "2.8.4": "https://downloads.wordpress.org/theme/phlox.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/theme/phlox.2.8.5.zip", "2.8.7": "https://downloads.wordpress.org/theme/phlox.2.8.7.zip", "2.8.9": "https://downloads.wordpress.org/theme/phlox.2.8.9.zip", "2.9.0": "https://downloads.wordpress.org/theme/phlox.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/theme/phlox.2.9.1.zip", "2.9.3": "https://downloads.wordpress.org/theme/phlox.2.9.3.zip", "2.9.5": "https://downloads.wordpress.org/theme/phlox.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/theme/phlox.2.9.6.zip", "2.9.8": "https://downloads.wordpress.org/theme/phlox.2.9.8.zip", "1.6.11": "https://downloads.wordpress.org/theme/phlox.1.6.11.zip", "1.6.12": "https://downloads.wordpress.org/theme/phlox.1.6.12.zip", "1.6.13": "https://downloads.wordpress.org/theme/phlox.1.6.13.zip", "1.6.14": "https://downloads.wordpress.org/theme/phlox.1.6.14.zip", "1.6.15": "https://downloads.wordpress.org/theme/phlox.1.6.15.zip", "1.6.16": "https://downloads.wordpress.org/theme/phlox.1.6.16.zip", "1.6.17": "https://downloads.wordpress.org/theme/phlox.1.6.17.zip", "1.6.18": "https://downloads.wordpress.org/theme/phlox.1.6.18.zip", "1.6.20": "https://downloads.wordpress.org/theme/phlox.1.6.20.zip", "1.6.21": "https://downloads.wordpress.org/theme/phlox.1.6.21.zip", "1.6.25": "https://downloads.wordpress.org/theme/phlox.1.6.25.zip", "2.0.10": "https://downloads.wordpress.org/theme/phlox.2.0.10.zip", "2.0.12": "https://downloads.wordpress.org/theme/phlox.2.0.12.zip", "2.0.14": "https://downloads.wordpress.org/theme/phlox.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/theme/phlox.2.0.15.zip", "2.0.17": "https://downloads.wordpress.org/theme/phlox.2.0.17.zip", "2.10.0": "https://downloads.wordpress.org/theme/phlox.2.10.0.zip", "2.10.8": "https://downloads.wordpress.org/theme/phlox.2.10.8.zip", "2.11.0": "https://downloads.wordpress.org/theme/phlox.2.11.0.zip", "2.11.1": "https://downloads.wordpress.org/theme/phlox.2.11.1.zip", "2.12.0": "https://downloads.wordpress.org/theme/phlox.2.12.0.zip", "2.14.0": "https://downloads.wordpress.org/theme/phlox.2.14.0.zip", "2.15.0": "https://downloads.wordpress.org/theme/phlox.2.15.0.zip", "2.15.1": "https://downloads.wordpress.org/theme/phlox.2.15.1.zip", "2.15.5": "https://downloads.wordpress.org/theme/phlox.2.15.5.zip", "2.15.7": "https://downloads.wordpress.org/theme/phlox.2.15.7.zip", "2.15.8": "https://downloads.wordpress.org/theme/phlox.2.15.8.zip", "2.15.9": "https://downloads.wordpress.org/theme/phlox.2.15.9.zip", "2.16.0": "https://downloads.wordpress.org/theme/phlox.2.16.0.zip", "2.16.3": "https://downloads.wordpress.org/theme/phlox.2.16.3.zip", "2.16.5": "https://downloads.wordpress.org/theme/phlox.2.16.5.zip", "2.16.7": "https://downloads.wordpress.org/theme/phlox.2.16.7.zip", "2.17.0": "https://downloads.wordpress.org/theme/phlox.2.17.0.zip", "2.17.3": "https://downloads.wordpress.org/theme/phlox.2.17.3.zip", "2.17.4": "https://downloads.wordpress.org/theme/phlox.2.17.4.zip", "2.17.6": "https://downloads.wordpress.org/theme/phlox.2.17.6.zip", "2.17.7": "https://downloads.wordpress.org/theme/phlox.2.17.7.zip", "2.2.10": "https://downloads.wordpress.org/theme/phlox.2.2.10.zip", "2.2.14": "https://downloads.wordpress.org/theme/phlox.2.2.14.zip", "2.2.15": "https://downloads.wordpress.org/theme/phlox.2.2.15.zip", "2.2.16": "https://downloads.wordpress.org/theme/phlox.2.2.16.zip", "2.2.18": "https://downloads.wordpress.org/theme/phlox.2.2.18.zip", "2.2.20": "https://downloads.wordpress.org/theme/phlox.2.2.20.zip", "2.2.21": "https://downloads.wordpress.org/theme/phlox.2.2.21.zip", "2.2.24": "https://downloads.wordpress.org/theme/phlox.2.2.24.zip", "2.2.26": "https://downloads.wordpress.org/theme/phlox.2.2.26.zip", "2.3.11": "https://downloads.wordpress.org/theme/phlox.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/theme/phlox.2.3.12.zip", "2.4.11": "https://downloads.wordpress.org/theme/phlox.2.4.11.zip", "2.4.13": "https://downloads.wordpress.org/theme/phlox.2.4.13.zip", "2.4.16": "https://downloads.wordpress.org/theme/phlox.2.4.16.zip", "2.4.17": "https://downloads.wordpress.org/theme/phlox.2.4.17.zip", "2.4.18": "https://downloads.wordpress.org/theme/phlox.2.4.18.zip", "2.4.19": "https://downloads.wordpress.org/theme/phlox.2.4.19.zip", "2.4.20": "https://downloads.wordpress.org/theme/phlox.2.4.20.zip", "2.4.21": "https://downloads.wordpress.org/theme/phlox.2.4.21.zip", "2.4.22": "https://downloads.wordpress.org/theme/phlox.2.4.22.zip", "2.5.10": "https://downloads.wordpress.org/theme/phlox.2.5.10.zip", "2.5.11": "https://downloads.wordpress.org/theme/phlox.2.5.11.zip", "2.5.13": "https://downloads.wordpress.org/theme/phlox.2.5.13.zip", "2.5.14": "https://downloads.wordpress.org/theme/phlox.2.5.14.zip", "2.5.19": "https://downloads.wordpress.org/theme/phlox.2.5.19.zip", "2.6.10": "https://downloads.wordpress.org/theme/phlox.2.6.10.zip", "2.6.11": "https://downloads.wordpress.org/theme/phlox.2.6.11.zip", "2.6.12": "https://downloads.wordpress.org/theme/phlox.2.6.12.zip", "2.6.13": "https://downloads.wordpress.org/theme/phlox.2.6.13.zip", "2.6.14": "https://downloads.wordpress.org/theme/phlox.2.6.14.zip", "2.6.15": "https://downloads.wordpress.org/theme/phlox.2.6.15.zip", "2.6.19": "https://downloads.wordpress.org/theme/phlox.2.6.19.zip", "2.7.10": "https://downloads.wordpress.org/theme/phlox.2.7.10.zip", "2.7.13": "https://downloads.wordpress.org/theme/phlox.2.7.13.zip", "2.9.19": "https://downloads.wordpress.org/theme/phlox.2.9.19.zip"}, "downloaded": 1688422, "num_ratings": 850, "preview_url": "https://wp-themes.com/phlox/", "reviews_url": "https://wordpress.org/support/theme/phlox/reviews/", "is_community": false, "last_updated": "2025-06-28", "requires_php": "7.0", "creation_time": "2017-07-31 16:45:08", "download_link": "https://downloads.wordpress.org/theme/phlox.2.17.7.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/phlox/screenshot.png?ver=2.17.7", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-0edb-7178-b218-021a21ccddf6", "name": "Phlox", "slug": "phlox", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1751068800, "version": "2.17.7"}, "last_updated_time": "2025-06-28 10:42:25", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f5a8-706d-8345-adabf4844496', 'did:web:api.aspiredev.org:packages:wp-theme:popularfx', 'popularfx', 'PopularFX', 'Lightweight theme to make beautiful websites with Pagelayer. Includes 100s of pre-made templates to design your dream website !', 'wp', 'wp-theme', 'proprietary', '{"name": "PopularFX", "slug": "popularfx", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Pagelayer", "avatar": "https://secure.gravatar.com/avatar/da11d7dd9a75193431feed4a3e58a875f78b6180bd032bf980e311f10713bee2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pagelayer/", "author_url": "https://pagelayer.com", "display_name": "pagelayer", "user_nicename": "pagelayer"}, "rating": 92, "status": "open", "ratings": {"1": 9, "2": 2, "3": 0, "4": 3, "5": 93}, "version": "1.2.7", "homepage": "https://wordpress.org/themes/popularfx/", "requires": false, "sections": {"description": "Lightweight theme to make beautiful websites with Pagelayer. Includes 100s of pre-made templates to design your dream website !"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/popularfx.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/popularfx.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/popularfx.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/popularfx.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/popularfx.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/popularfx.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/popularfx.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/popularfx.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/popularfx.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/popularfx.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/popularfx.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/popularfx.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/popularfx.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/popularfx.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/popularfx.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/popularfx.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/popularfx.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/popularfx.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/popularfx.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/popularfx.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/popularfx.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/popularfx.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/popularfx.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/popularfx.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/popularfx.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/popularfx.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/popularfx.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/popularfx.1.2.7.zip"}, "downloaded": 1160030, "num_ratings": 107, "preview_url": "https://wp-themes.com/popularfx/", "reviews_url": "https://wordpress.org/support/theme/popularfx/reviews/", "is_community": false, "last_updated": "2025-08-13", "requires_php": "5.5", "creation_time": "2020-10-12 05:37:27", "download_link": "https://downloads.wordpress.org/theme/popularfx.1.2.7.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/popularfx/screenshot.jpg?ver=1.2.7", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-0f8c-7124-a6fb-815b55c07b0a", "name": "PopularFX", "slug": "popularfx", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1755043200, "version": "1.2.7"}, "last_updated_time": "2025-08-13 07:00:06", "external_support_url": "", "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f5bf-7114-8edb-a637af2a0388', 'did:web:api.aspiredev.org:packages:wp-theme:popularis-ecommerce', 'popularis-ecommerce', 'Popularis eCommerce', 'Popularis eCommerce is a fast, clean and modern-looking responsive WooCommerce theme for WordPress. Theme works perfect with any of favorite page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Popularis eCommerce is WooCommerce ready, lightweight, easy to use, responsive and SEO friendly. Demo: https://populariswp.com/popularis-ecommerce/', 'wp', 'wp-theme', 'GPL', '{"name": "Popularis eCommerce", "slug": "popularis-ecommerce", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Themes4WP", "avatar": "https://secure.gravatar.com/avatar/d66171b523442c9691a1dbb427256a39b38169482ce03abbe77b03932e2de69a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themes4wp/", "author_url": "https://themes4wp.com/", "display_name": "Themes4WP", "user_nicename": "themes4wp"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.3", "homepage": "https://wordpress.org/themes/popularis-ecommerce/", "requires": false, "sections": {"description": "Popularis eCommerce is a fast, clean and modern-looking responsive WooCommerce theme for WordPress. Theme works perfect with any of favorite page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Popularis eCommerce is WooCommerce ready, lightweight, easy to use, responsive and SEO friendly. Demo: https://populariswp.com/popularis-ecommerce/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.3.zip"}, "downloaded": 40101, "num_ratings": 0, "preview_url": "https://wp-themes.com/popularis-ecommerce/", "reviews_url": "https://wordpress.org/support/theme/popularis-ecommerce/reviews/", "is_community": false, "last_updated": "2025-04-25", "requires_php": "5.6", "creation_time": "2024-08-09 07:42:00", "download_link": "https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/popularis-ecommerce/screenshot.png?ver=1.0.3", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-0fcc-7242-8360-df790d1adefa", "name": "Popularis eCommerce", "slug": "popularis-ecommerce", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1745539200, "version": "1.0.3"}, "last_updated_time": "2025-04-25 10:31:07", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f5d3-7281-bbf2-19340ae2016d', 'did:web:api.aspiredev.org:packages:wp-theme:popularis-verse', 'popularis-verse', 'Popularis Verse', 'Popularis Verse is a fast, clean and modern-looking responsive multipurpose theme for WordPress. Theme works perfect with any of favorite page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Popularis Verse is WooCommerce ready, lightweight, easy to use, responsive and SEO friendly. Demo ready to import: https://populariswp.com/popularis-verse-demo/', 'wp', 'wp-theme', 'GPL', '{"name": "Popularis Verse", "slug": "popularis-verse", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Themes4WP", "avatar": "https://secure.gravatar.com/avatar/d66171b523442c9691a1dbb427256a39b38169482ce03abbe77b03932e2de69a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themes4wp/", "author_url": "https://themes4wp.com/", "display_name": "Themes4WP", "user_nicename": "themes4wp"}, "parent": {"name": "Popularis", "slug": "popularis", "homepage": "https://wordpress.org/themes/popularis/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.3", "homepage": "https://wordpress.org/themes/popularis-verse/", "requires": false, "sections": {"description": "Popularis Verse is a fast, clean and modern-looking responsive multipurpose theme for WordPress. Theme works perfect with any of favorite page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Popularis Verse is WooCommerce ready, lightweight, easy to use, responsive and SEO friendly. Demo ready to import: https://populariswp.com/popularis-verse-demo/"}, "template": "popularis", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/popularis-verse.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/popularis-verse.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/popularis-verse.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/popularis-verse.1.0.3.zip"}, "downloaded": 37770, "num_ratings": 0, "preview_url": "https://wp-themes.com/popularis-verse/", "reviews_url": "https://wordpress.org/support/theme/popularis-verse/reviews/", "is_community": false, "last_updated": "2025-04-25", "requires_php": "5.6", "creation_time": "2023-10-08 09:26:59", "download_link": "https://downloads.wordpress.org/theme/popularis-verse.1.0.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/popularis-verse/screenshot.png?ver=1.0.3", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-1015-70ae-8bc9-b4265d684404", "name": "Popularis Verse", "slug": "popularis-verse", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1745539200, "version": "1.0.3"}, "last_updated_time": "2025-04-25 10:47:48", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f5e7-734c-b3bf-f1421b43dcdb', 'did:web:api.aspiredev.org:packages:wp-theme:prespa', 'prespa', 'Prespa', 'Prespa is a next-generation multi-purpose WordPress theme. It is perfect for a blog, portfolio website, digital agency, marketing, seo, consulting, sass application website, e-commerce shop as well as any type of corporate, finance and agency website. You will be surprised how many options this generous theme provides. At the same time, a serious effort has been made to optimize the theme for speed. No Jquery, Bootstrap, Font Awesome or any other third-party library to slow you down - it uses only core WordPress functions and clean html5/css3 tempates. With our beautiful block patterns, you will be able to get started in minutes. No coding skills needed. A lot of time and effort has been spent to optimize the theme for SEO and it uses Schema.org markup (microdata) to help you rank higher in the search results. The theme is highly customizable and easy to adapt to any design. All theme demos have been made with the Gutenberg editor, which means you do not have to install any additional plugins to use the theme. At the same time, the theme also fully supports the good old Classic editor. Effortless integrations with all the popular WordPress plugins, e.g. WooCommerce is also fully guaranteed. The theme is specifically designed to make your content stand out from the crowd and it is very well thought in terms of UX/UI. Protect your visitors'' eyes by allowing them to switch between day and night mode (light and dark mode) with a single click. Oh, and just like with our other themes, updates will keep on coming, constantly improving the codebase and keeping it up to date to the modern web standards. Still not convinved? Check the theme demo at https://prespa-demo.nasiothemes.com/ Theme documentation: https://nasiothemes.com/prespa-theme-documentation/', 'wp', 'wp-theme', 'GPL', '{"name": "Prespa", "slug": "prespa", "tags": {"blog": "Blog", "news": "News", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "Atanas Yonkov", "avatar": "https://secure.gravatar.com/avatar/c5bdd1df8fa397841dcac96df705e2d5ddf969dbe45423e3e81f041eec3e92d4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nravota12/", "author_url": "https://nasiothemes.com/", "display_name": "Atanas Yonkov", "user_nicename": "nravota12"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 6}, "version": "1.7.0", "homepage": "https://wordpress.org/themes/prespa/", "requires": "6.1", "sections": {"description": "Prespa is a next-generation multi-purpose WordPress theme. It is perfect for a blog, portfolio website, digital agency, marketing, seo, consulting, sass application website, e-commerce shop as well as any type of corporate, finance and agency website. You will be surprised how many options this generous theme provides. At the same time, a serious effort has been made to optimize the theme for speed. No Jquery, Bootstrap, Font Awesome or any other third-party library to slow you down - it uses only core WordPress functions and clean html5/css3 tempates. With our beautiful block patterns, you will be able to get started in minutes. No coding skills needed. A lot of time and effort has been spent to optimize the theme for SEO and it uses Schema.org markup (microdata) to help you rank higher in the search results. The theme is highly customizable and easy to adapt to any design. All theme demos have been made with the Gutenberg editor, which means you do not have to install any additional plugins to use the theme. At the same time, the theme also fully supports the good old Classic editor. Effortless integrations with all the popular WordPress plugins, e.g. WooCommerce is also fully guaranteed. The theme is specifically designed to make your content stand out from the crowd and it is very well thought in terms of UX/UI. Protect your visitors'' eyes by allowing them to switch between day and night mode (light and dark mode) with a single click. Oh, and just like with our other themes, updates will keep on coming, constantly improving the codebase and keeping it up to date to the modern web standards. Still not convinved? Check the theme demo at https://prespa-demo.nasiothemes.com/ Theme documentation: https://nasiothemes.com/prespa-theme-documentation/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/prespa.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/prespa.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/prespa.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/prespa.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/prespa.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/prespa.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/prespa.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/prespa.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/prespa.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/prespa.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/prespa.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/prespa.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/prespa.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/prespa.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/prespa.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/prespa.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/prespa.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/prespa.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/prespa.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/prespa.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/prespa.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/prespa.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/prespa.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/prespa.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/prespa.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/prespa.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/prespa.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/prespa.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/prespa.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/prespa.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/prespa.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/prespa.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/prespa.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/prespa.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/prespa.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/prespa.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/prespa.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/prespa.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/prespa.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/prespa.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/prespa.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/prespa.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/prespa.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/prespa.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/prespa.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/prespa.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/prespa.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/prespa.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/prespa.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/prespa.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/prespa.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/prespa.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/prespa.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/prespa.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/prespa.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/prespa.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/prespa.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/prespa.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/prespa.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/prespa.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/prespa.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/prespa.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/prespa.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/prespa.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/prespa.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/prespa.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/prespa.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/prespa.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/prespa.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/prespa.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/prespa.1.7.0.zip"}, "downloaded": 73069, "num_ratings": 6, "preview_url": "https://wp-themes.com/prespa/", "reviews_url": "https://wordpress.org/support/theme/prespa/reviews/", "is_community": false, "last_updated": "2025-10-15", "requires_php": "5.6", "creation_time": "2023-10-16 09:56:47", "download_link": "https://downloads.wordpress.org/theme/prespa.1.7.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/prespa/screenshot.png?ver=1.7.0", "active_installs": 7000, "aspiresync_meta": {"id": "019a30c0-100f-72e3-a3cf-4f26437b183d", "name": "Prespa", "slug": "prespa", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1760486400, "version": "1.7.0"}, "last_updated_time": "2025-10-15 21:45:12", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f604-7377-8f0a-2bb56216ea2a', 'did:web:api.aspiredev.org:packages:wp-theme:prespa-lms', 'prespa-lms', 'Prespa LMS', 'Prespa LMS serves as a child theme of Prespa, inheriting all the features of Prespa. It is a minimalist and simple e-learning theme that can be used as a learning management system to manage free and premium courses. The theme integrates flawlessly with Tutor LMS and WooCommerce plugins to create the best possible learning experience. It is suitable for schools, student portals, teacher portals, education centers, universities, virtual classrooms, educational portals, training centers, coaching platforms and others. You can create unlimited courses, quizes and online assessments, as well as manage students and instructors or even create Udemy or Coursera type of website to allow others to sell their courses on your platform. Theme demo: https://prespa-lms-demo.nasiothemes.com/', 'wp', 'wp-theme', 'GPL', '{"name": "Prespa LMS", "slug": "prespa-lms", "tags": {"education": "Education", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "Atanas Yonkov", "avatar": "https://secure.gravatar.com/avatar/c5bdd1df8fa397841dcac96df705e2d5ddf969dbe45423e3e81f041eec3e92d4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nravota12/", "author_url": "http://nasiothemes.com", "display_name": "Atanas Yonkov", "user_nicename": "nravota12"}, "parent": {"name": "Prespa", "slug": "prespa", "homepage": "https://wordpress.org/themes/prespa/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.2", "homepage": "https://wordpress.org/themes/prespa-lms/", "requires": "6.1", "sections": {"description": "Prespa LMS serves as a child theme of Prespa, inheriting all the features of Prespa. It is a minimalist and simple e-learning theme that can be used as a learning management system to manage free and premium courses. The theme integrates flawlessly with Tutor LMS and WooCommerce plugins to create the best possible learning experience. It is suitable for schools, student portals, teacher portals, education centers, universities, virtual classrooms, educational portals, training centers, coaching platforms and others. You can create unlimited courses, quizes and online assessments, as well as manage students and instructors or even create Udemy or Coursera type of website to allow others to sell their courses on your platform. Theme demo: https://prespa-lms-demo.nasiothemes.com/"}, "template": "prespa", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/prespa-lms.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/prespa-lms.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/prespa-lms.1.0.2.zip"}, "downloaded": 2191, "num_ratings": 0, "preview_url": "https://wp-themes.com/prespa-lms/", "reviews_url": "https://wordpress.org/support/theme/prespa-lms/reviews/", "is_community": false, "last_updated": "2025-08-07", "requires_php": "5.6", "creation_time": "2025-08-07 08:46:05", "download_link": "https://downloads.wordpress.org/theme/prespa-lms.1.0.2.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/prespa-lms/screenshot.jpg?ver=1.0.2", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-10c8-7227-949f-cd8678e72a33", "name": "Prespa LMS", "slug": "prespa-lms", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1754524800, "version": "1.0.2"}, "last_updated_time": "2025-08-07 23:43:43", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f620-73f2-97d6-b8d08a4ae1b9', 'did:web:api.aspiredev.org:packages:wp-theme:pulse-news', 'pulse-news', 'Pulse News', 'Pulse News a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Pulse News suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Pulse News is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://newsup.themeansar.com/pulse-news/ and documentation at https://docs.themeansar.com/docs/newsup/', 'wp', 'wp-theme', 'GPL', '{"name": "Pulse News", "slug": "pulse-news", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "parent": {"name": "Newsup", "slug": "newsup", "homepage": "https://wordpress.org/themes/newsup/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "0.2", "homepage": "https://wordpress.org/themes/pulse-news/", "requires": "6.7", "sections": {"description": "Pulse News a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Pulse News suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Pulse News is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://newsup.themeansar.com/pulse-news/ and documentation at https://docs.themeansar.com/docs/newsup/"}, "template": "newsup", "versions": {"0.1": "https://downloads.wordpress.org/theme/pulse-news.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/pulse-news.0.2.zip"}, "downloaded": 4005, "num_ratings": 0, "preview_url": "https://wp-themes.com/pulse-news/", "reviews_url": "https://wordpress.org/support/theme/pulse-news/reviews/", "is_community": false, "last_updated": "2025-08-07", "requires_php": "7.4", "creation_time": "2025-08-06 16:31:44", "download_link": "https://downloads.wordpress.org/theme/pulse-news.0.2.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/pulse-news/screenshot.jpg?ver=0.2", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-1084-710c-8852-9a45e2fc7b49", "name": "Pulse News", "slug": "pulse-news", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1754524800, "version": "0.2"}, "last_updated_time": "2025-08-07 04:37:14", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f63b-7064-adfb-079aefe089cb', 'did:web:api.aspiredev.org:packages:wp-theme:raft', 'raft', 'Raft', 'Raft is a lightweight, full-site-editing compatible (FSE) theme ready for your next website. Raft is a super fast, easily customizable, simple theme. It’s perfect for blogs, small business, startups, agencies, firms, e-commerce shops (WooCommerce storefront) as well as personal portfolio sites and most types of projects. Raft works perfectly with Gutenberg and the most popular page builders (Elementor, Brizy, Beaver Builder or the Block Editor). Raft is also WooCommerce ready, responsive, RTL & translation ready. Learn more at https://themeisle.com/themes/raft/.', 'wp', 'wp-theme', 'GPL', '{"name": "Raft", "slug": "raft", "tags": {"e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemeIsle", "avatar": "https://secure.gravatar.com/avatar/91e46225a693950a8f2350674124a8e3ceddb0f705fa988377646322729e3d7c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeisle/", "author_url": "https://themeisle.com", "display_name": "Themeisle", "user_nicename": "themeisle"}, "rating": 98, "status": "open", "ratings": {"1": 0, "2": 0, "3": 1, "4": 2, "5": 43}, "version": "1.1.10", "homepage": "https://wordpress.org/themes/raft/", "requires": "5.5", "sections": {"description": "Raft is a lightweight, full-site-editing compatible (FSE) theme ready for your next website. Raft is a super fast, easily customizable, simple theme. It’s perfect for blogs, small business, startups, agencies, firms, e-commerce shops (WooCommerce storefront) as well as personal portfolio sites and most types of projects. Raft works perfectly with Gutenberg and the most popular page builders (Elementor, Brizy, Beaver Builder or the Block Editor). Raft is also WooCommerce ready, responsive, RTL & translation ready. Learn more at https://themeisle.com/themes/raft/."}, "versions": {"1.0.1": "https://downloads.wordpress.org/theme/raft.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/raft.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/raft.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/raft.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/raft.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/raft.1.0.6.zip", "1.1.0": "https://downloads.wordpress.org/theme/raft.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/raft.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/raft.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/raft.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/raft.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/raft.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/raft.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/raft.1.1.7.zip", "1.1.9": "https://downloads.wordpress.org/theme/raft.1.1.9.zip", "1.1.10": "https://downloads.wordpress.org/theme/raft.1.1.10.zip"}, "downloaded": 236161, "num_ratings": 46, "preview_url": "https://wp-themes.com/raft/", "reviews_url": "https://wordpress.org/support/theme/raft/reviews/", "is_community": false, "last_updated": "2025-09-05", "requires_php": "7.0", "creation_time": "2022-10-06 02:56:42", "download_link": "https://downloads.wordpress.org/theme/raft.1.1.10.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/raft/screenshot.png?ver=1.1.10", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-106d-7237-8fcd-493a24f88b2f", "name": "Raft", "slug": "raft", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1757030400, "version": "1.1.10"}, "last_updated_time": "2025-09-05 11:20:33", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f64f-7052-a7e2-6ba4ab710c09', 'did:web:api.aspiredev.org:packages:wp-theme:rife-free', 'rife-free', 'Rife Free', 'Rife Free is a great portfolio and photography WP theme with 7 ready-to-use demo layouts. It is also perfect for business, blogging websites and for your shop because it is WooCommerce compatible. More cool features in the Rife theme are the: ✓ Writing Effect ✓ One Page Mode ✓ Mobile/Touch Friendly Image & Video Slider ✓ Bricks Gallery for Photographers ✓ Mega Menu ✓ Post Grid ✓ Google Fonts ✓ Hidden Sidebar and many more. Over 450 options to change in the Customizer and much more in each page, post, album or work. We also integrate Schema.org which helps your website be more visible to search engines. Elementor compatibility will help you make your great website even more natural. The theme is RTL and translation-ready (WPML). ★ Check our demos for more details: https://apollo13themes.com/rife/designs/', 'wp', 'wp-theme', 'GPL', '{"name": "Rife Free", "slug": "rife-free", "tags": {"portfolio": "Portfolio", "e-commerce": "E-commerce", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "photography": "Photography", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Apollo13Themes", "avatar": "https://secure.gravatar.com/avatar/dc88d5a1f74865808b534e34828aa8f21c5a61fc5311873516e6bac493b0c8fd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/apollo13themes/", "author_url": "https://apollo13themes.com/", "display_name": "apollo13themes", "user_nicename": "apollo13themes"}, "rating": 98, "status": "open", "ratings": {"1": 2, "2": 1, "3": 3, "4": 8, "5": 340}, "version": "2.4.21", "homepage": "https://wordpress.org/themes/rife-free/", "requires": "4.7", "sections": {"description": "Rife Free is a great portfolio and photography WP theme with 7 ready-to-use demo layouts. It is also perfect for business, blogging websites and for your shop because it is WooCommerce compatible. More cool features in the Rife theme are the: ✓ Writing Effect ✓ One Page Mode ✓ Mobile/Touch Friendly Image & Video Slider ✓ Bricks Gallery for Photographers ✓ Mega Menu ✓ Post Grid ✓ Google Fonts ✓ Hidden Sidebar and many more. Over 450 options to change in the Customizer and much more in each page, post, album or work. We also integrate Schema.org which helps your website be more visible to search engines. Elementor compatibility will help you make your great website even more natural. The theme is RTL and translation-ready (WPML). ★ Check our demos for more details: https://apollo13themes.com/rife/designs/"}, "versions": {"1.8.1": "https://downloads.wordpress.org/theme/rife-free.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/rife-free.1.8.2.zip", "1.9.1": "https://downloads.wordpress.org/theme/rife-free.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/theme/rife-free.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/theme/rife-free.1.9.3.zip", "2.0.0": "https://downloads.wordpress.org/theme/rife-free.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/rife-free.2.0.1.zip", "2.1.0": "https://downloads.wordpress.org/theme/rife-free.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/theme/rife-free.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/rife-free.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/rife-free.2.2.2.zip", "2.3.0": "https://downloads.wordpress.org/theme/rife-free.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/rife-free.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/rife-free.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/rife-free.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/rife-free.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/rife-free.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/rife-free.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/rife-free.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/rife-free.2.3.8.zip", "2.4.0": "https://downloads.wordpress.org/theme/rife-free.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/rife-free.2.4.1.zip", "2.4.3": "https://downloads.wordpress.org/theme/rife-free.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/theme/rife-free.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/theme/rife-free.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/theme/rife-free.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/theme/rife-free.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/theme/rife-free.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/theme/rife-free.2.4.9.zip", "1.11.2": "https://downloads.wordpress.org/theme/rife-free.1.11.2.zip", "2.4.10": "https://downloads.wordpress.org/theme/rife-free.2.4.10.zip", "2.4.11": "https://downloads.wordpress.org/theme/rife-free.2.4.11.zip", "2.4.12": "https://downloads.wordpress.org/theme/rife-free.2.4.12.zip", "2.4.13": "https://downloads.wordpress.org/theme/rife-free.2.4.13.zip", "2.4.14": "https://downloads.wordpress.org/theme/rife-free.2.4.14.zip", "2.4.15": "https://downloads.wordpress.org/theme/rife-free.2.4.15.zip", "2.4.16": "https://downloads.wordpress.org/theme/rife-free.2.4.16.zip", "2.4.17": "https://downloads.wordpress.org/theme/rife-free.2.4.17.zip", "2.4.18": "https://downloads.wordpress.org/theme/rife-free.2.4.18.zip", "2.4.19": "https://downloads.wordpress.org/theme/rife-free.2.4.19.zip", "2.4.20": "https://downloads.wordpress.org/theme/rife-free.2.4.20.zip", "2.4.21": "https://downloads.wordpress.org/theme/rife-free.2.4.21.zip", "1.9.1.1": "https://downloads.wordpress.org/theme/rife-free.1.9.1.1.zip", "2.1.0.1": "https://downloads.wordpress.org/theme/rife-free.2.1.0.1.zip", "2.1.0.2": "https://downloads.wordpress.org/theme/rife-free.2.1.0.2.zip", "2.2.0.1": "https://downloads.wordpress.org/theme/rife-free.2.2.0.1.zip", "2.3.4.1": "https://downloads.wordpress.org/theme/rife-free.2.3.4.1.zip", "2.3.6.1": "https://downloads.wordpress.org/theme/rife-free.2.3.6.1.zip", "2.4.4.1": "https://downloads.wordpress.org/theme/rife-free.2.4.4.1.zip", "2.4.16.1": "https://downloads.wordpress.org/theme/rife-free.2.4.16.1.zip"}, "downloaded": 735382, "num_ratings": 354, "preview_url": "https://wp-themes.com/rife-free/", "reviews_url": "https://wordpress.org/support/theme/rife-free/reviews/", "is_community": false, "last_updated": "2024-05-27", "requires_php": "5.3.0", "creation_time": "2019-01-02 11:07:09", "download_link": "https://downloads.wordpress.org/theme/rife-free.2.4.21.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/rife-free/screenshot.png?ver=2.4.21", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-1073-72c1-8791-4f32a2eacacc", "name": "Rife Free", "slug": "rife-free", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1716768000, "version": "2.4.21"}, "last_updated_time": "2024-05-27 19:20:53", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f667-708b-819b-1dae362780db', 'did:web:api.aspiredev.org:packages:wp-theme:royal-elementor-kit', 'royal-elementor-kit', 'Royal Elementor Kit', 'Truly all in one Solution For Elementor Lovers. 140+ Elementor Templates KIT, 100+ Professional Elementor Widgets, Elementor theme builder, Elementor Popup Builder, Elementor Premade blocks and many other cool features like Sticky Header, Particle effects, parallax backgrounds and many other elementor addons. Simple Install the theme, click on - Get Started with Templates Kit button and that''s it. Very easy to use even for WordPress beginners or professionals. All In one Elementor Solution which outranks all other Elementor themes and Elementor addons. ########### TEMPLATES INCLUDED: Elementor Blog Template, Elementor Magazine Blog Template, Elementor Food Blog Template, Elementor Travel Blog Template, Elementor Portfolio Template, Elementor NFT Template, Elementor Pizza Restaurant Template, Elementor Travel Blogger & Influencer Template, Elementor Cybersecurity Template, Elementor Photographer Portfolio Template, Elementor Crypto Currency Template, Elementor Skin Care Template, Elementor Lawyer Template, Elementor Medical Template, Elementor Digital Agency Template, Elementor Drone Template, Elementro Architecture Template, Elementor Food Delivery Template, Elementor Construction Template, Elementor IT Technology Template, Elementor Real Estate Template, Elementor Restaurant Template, Elementor Wine Bar & Restaurant Template, Elementor Wedding Template & other beautiful elementor business templates. All these templates are created with elementor page builder. Theme Demo Page: https://royal-elementor-addons.com/royal-elementor-kit/', 'wp', 'wp-theme', 'proprietary', '{"name": "Royal Elementor Kit", "slug": "royal-elementor-kit", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "custom-colors": "Custom colors", "theme-options": "Theme options", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "WP Royal", "avatar": "https://secure.gravatar.com/avatar/078c5c148dcfcc4983cb3fce756683ce03d7aebb69f1fb9e8ea08232e4b01fea?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wproyal/", "author_url": "https://royal-elementor-addons.com/", "display_name": "WP Royal", "user_nicename": "wproyal"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 4, "5": 84}, "version": "1.0.139", "homepage": "https://wordpress.org/themes/royal-elementor-kit/", "requires": "4.7", "sections": {"description": "Truly all in one Solution For Elementor Lovers. 140+ Elementor Templates KIT, 100+ Professional Elementor Widgets, Elementor theme builder, Elementor Popup Builder, Elementor Premade blocks and many other cool features like Sticky Header, Particle effects, parallax backgrounds and many other elementor addons. Simple Install the theme, click on - Get Started with Templates Kit button and that''s it. Very easy to use even for WordPress beginners or professionals. All In one Elementor Solution which outranks all other Elementor themes and Elementor addons. ########### TEMPLATES INCLUDED: Elementor Blog Template, Elementor Magazine Blog Template, Elementor Food Blog Template, Elementor Travel Blog Template, Elementor Portfolio Template, Elementor NFT Template, Elementor Pizza Restaurant Template, Elementor Travel Blogger & Influencer Template, Elementor Cybersecurity Template, Elementor Photographer Portfolio Template, Elementor Crypto Currency Template, Elementor Skin Care Template, Elementor Lawyer Template, Elementor Medical Template, Elementor Digital Agency Template, Elementor Drone Template, Elementro Architecture Template, Elementor Food Delivery Template, Elementor Construction Template, Elementor IT Technology Template, Elementor Real Estate Template, Elementor Restaurant Template, Elementor Wine Bar & Restaurant Template, Elementor Wedding Template & other beautiful elementor business templates. All these templates are created with elementor page builder. Theme Demo Page: https://royal-elementor-addons.com/royal-elementor-kit/"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.9.zip", "1.0.91": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.91.zip", "1.0.92": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.92.zip", "1.0.93": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.93.zip", "1.0.94": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.94.zip", "1.0.95": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.95.zip", "1.0.96": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.96.zip", "1.0.97": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.97.zip", "1.0.98": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.98.zip", "1.0.99": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.99.zip", "1.0.100": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.100.zip", "1.0.101": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.101.zip", "1.0.102": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.102.zip", "1.0.103": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.103.zip", "1.0.104": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.104.zip", "1.0.105": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.105.zip", "1.0.106": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.106.zip", "1.0.107": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.107.zip", "1.0.108": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.108.zip", "1.0.109": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.109.zip", "1.0.110": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.110.zip", "1.0.111": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.111.zip", "1.0.112": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.112.zip", "1.0.113": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.113.zip", "1.0.114": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.114.zip", "1.0.115": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.115.zip", "1.0.116": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.116.zip", "1.0.117": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.117.zip", "1.0.118": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.118.zip", "1.0.119": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.119.zip", "1.0.120": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.120.zip", "1.0.121": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.121.zip", "1.0.122": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.122.zip", "1.0.123": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.123.zip", "1.0.124": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.124.zip", "1.0.125": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.125.zip", "1.0.126": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.126.zip", "1.0.127": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.127.zip", "1.0.128": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.128.zip", "1.0.129": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.129.zip", "1.0.130": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.130.zip", "1.0.131": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.131.zip", "1.0.132": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.132.zip", "1.0.133": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.133.zip", "1.0.134": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.134.zip", "1.0.135": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.135.zip", "1.0.136": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.136.zip", "1.0.137": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.137.zip", "1.0.138": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.138.zip", "1.0.139": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.139.zip"}, "downloaded": 910362, "num_ratings": 88, "preview_url": "https://wp-themes.com/royal-elementor-kit/", "reviews_url": "https://wordpress.org/support/theme/royal-elementor-kit/reviews/", "is_community": false, "last_updated": "2025-10-01", "requires_php": "5.2", "creation_time": "2022-04-18 08:50:38", "download_link": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.139.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/royal-elementor-kit/screenshot.png?ver=1.0.139", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-1089-7064-b080-d72caff046ae", "name": "Royal Elementor Kit", "slug": "royal-elementor-kit", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1759276800, "version": "1.0.139"}, "last_updated_time": "2025-10-01 05:38:13", "external_support_url": "https://royal-elementor-addons.com/contactus/", "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f67b-71fd-a1f7-1d45c8c00fd4', 'did:web:api.aspiredev.org:packages:wp-theme:rufous', 'rufous', 'Rufous', 'Rufous is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Rufous is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', 'wp', 'wp-theme', 'GPL', '{"name": "Rufous", "slug": "rufous", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 46, "status": "open", "ratings": {"1": 2, "2": 0, "3": 0, "4": 0, "5": 1}, "version": "1.0.41", "homepage": "https://wordpress.org/themes/rufous/", "requires": "5.8", "sections": {"description": "Rufous is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Rufous is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.9": "https://downloads.wordpress.org/theme/rufous.1.0.9.zip", "1.0.10": "https://downloads.wordpress.org/theme/rufous.1.0.10.zip", "1.0.13": "https://downloads.wordpress.org/theme/rufous.1.0.13.zip", "1.0.16": "https://downloads.wordpress.org/theme/rufous.1.0.16.zip", "1.0.23": "https://downloads.wordpress.org/theme/rufous.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/theme/rufous.1.0.24.zip", "1.0.40": "https://downloads.wordpress.org/theme/rufous.1.0.40.zip", "1.0.41": "https://downloads.wordpress.org/theme/rufous.1.0.41.zip"}, "downloaded": 77183, "num_ratings": 3, "preview_url": "https://wp-themes.com/rufous/", "reviews_url": "https://wordpress.org/support/theme/rufous/reviews/", "is_community": false, "last_updated": "2025-04-15", "requires_php": "7.1", "creation_time": "2024-09-20 07:56:47", "download_link": "https://downloads.wordpress.org/theme/rufous.1.0.41.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/rufous/screenshot.jpg?ver=1.0.41", "active_installs": 9000, "aspiresync_meta": {"id": "019a30c0-10ce-71ea-8db2-d707b731c694", "name": "Rufous", "slug": "rufous", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1744675200, "version": "1.0.41"}, "last_updated_time": "2025-04-15 08:39:37", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f68f-71c0-be8a-c0288a5ce1a8', 'did:web:api.aspiredev.org:packages:wp-theme:saaslauncher', 'saaslauncher', 'SaasLauncher', 'SaasLauncher is a modern, block-based WordPress theme crafted specifically for SaaS products, startups, agencies, and businesses. Built with Full Site Editing (FSE), it gives you complete control to fully customize every corner of your site—from headers and footers to every page template. With 70+ ready-to-use pre-built sections and 50+ professionally designed starter templates, you can launch your site effortlessly and tailor it to your brand in minutes. Whether you''re building a product landing page, SaaS landing page, agency portfolio, or corporate website, SaasLauncher offers a seamless, flexible, and fast design experience. It''s WooCommerce-ready, responsive, and compatible with popular plugins like Contact Form 7, Rankmath, WPForms, Yoast SEO and more. Plus, it comes with Cozy Blocks’ 50+ advanced Gutenberg blocks, giving you all the tools you need to build stunning websites—your way. Explore features and demos at https://cozythemes.com/saaslauncher-wordpress-theme/.', 'wp', 'wp-theme', 'proprietary', '{"name": "SaasLauncher", "slug": "saaslauncher", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "CozyThemes", "avatar": "https://secure.gravatar.com/avatar/7b14e71b9c952a96a4cdb7cbb93ab704ef0c368b08d5ea8323ed4bb506655311?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cozythemes/", "author_url": "https://cozythemes.com/", "display_name": "CozyThemes", "user_nicename": "cozythemes"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 12}, "version": "1.3.2", "homepage": "https://wordpress.org/themes/saaslauncher/", "requires": "5.9", "sections": {"description": "SaasLauncher is a modern, block-based WordPress theme crafted specifically for SaaS products, startups, agencies, and businesses. Built with Full Site Editing (FSE), it gives you complete control to fully customize every corner of your site—from headers and footers to every page template. With 70+ ready-to-use pre-built sections and 50+ professionally designed starter templates, you can launch your site effortlessly and tailor it to your brand in minutes. Whether you''re building a product landing page, SaaS landing page, agency portfolio, or corporate website, SaasLauncher offers a seamless, flexible, and fast design experience. It''s WooCommerce-ready, responsive, and compatible with popular plugins like Contact Form 7, Rankmath, WPForms, Yoast SEO and more. Plus, it comes with Cozy Blocks’ 50+ advanced Gutenberg blocks, giving you all the tools you need to build stunning websites—your way. Explore features and demos at https://cozythemes.com/saaslauncher-wordpress-theme/."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/saaslauncher.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/saaslauncher.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/saaslauncher.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/saaslauncher.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/saaslauncher.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/saaslauncher.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/saaslauncher.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/saaslauncher.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/saaslauncher.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/saaslauncher.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/saaslauncher.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/saaslauncher.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/saaslauncher.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/saaslauncher.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/saaslauncher.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/saaslauncher.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/saaslauncher.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/saaslauncher.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/saaslauncher.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/saaslauncher.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/saaslauncher.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/saaslauncher.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/saaslauncher.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/saaslauncher.1.2.3.zip", "1.3.0": "https://downloads.wordpress.org/theme/saaslauncher.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/saaslauncher.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/saaslauncher.1.3.2.zip", "1.0.11": "https://downloads.wordpress.org/theme/saaslauncher.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/saaslauncher.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/saaslauncher.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/theme/saaslauncher.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/theme/saaslauncher.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/theme/saaslauncher.1.0.16.zip", "1.0.17": "https://downloads.wordpress.org/theme/saaslauncher.1.0.17.zip", "1.0.18": "https://downloads.wordpress.org/theme/saaslauncher.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/theme/saaslauncher.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/saaslauncher.1.0.20.zip"}, "downloaded": 75275, "num_ratings": 12, "preview_url": "https://wp-themes.com/saaslauncher/", "reviews_url": "https://wordpress.org/support/theme/saaslauncher/reviews/", "is_community": false, "last_updated": "2025-10-16", "requires_php": "7.0", "creation_time": "2024-11-05 06:57:08", "download_link": "https://downloads.wordpress.org/theme/saaslauncher.1.3.2.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/saaslauncher/screenshot.png?ver=1.3.2", "active_installs": 6000, "aspiresync_meta": {"id": "019a30c0-1170-717a-b068-de97129731a6", "name": "SaasLauncher", "slug": "saaslauncher", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1760572800, "version": "1.3.2"}, "last_updated_time": "2025-10-16 10:03:16", "external_support_url": "https://cozythemes.com/saaslauncher-wordpress-theme/", "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f6a7-7068-b681-a89421d1c7b1', 'did:web:api.aspiredev.org:packages:wp-theme:silverstorm', 'silverstorm', 'Silverstorm', 'A beautiful, very customizable, multipurpose theme that you can use to create amazing websites through drag and drop. It comes with a pre-designed home page, 5 header designs and over 35 ready-to-use content blocks that you can easily customize. You can also design your own custom blocks by combining more than 25 drag and drop components. It offers lots of customization options (video background, slideshow background, header content types, etc) to help you create a website that stands out in no time. It is also designed with responsiveness, to work on mobile devices right out of the box. It is the only theme you will ever need! CHECK OUT THE DEMOS: https://colibriwp.com/go/demos', 'wp', 'wp-theme', 'GPL', '{"name": "Silverstorm", "slug": "silverstorm", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://extendthemes.com/", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.14", "homepage": "https://wordpress.org/themes/silverstorm/", "requires": false, "sections": {"description": "A beautiful, very customizable, multipurpose theme that you can use to create amazing websites through drag and drop. It comes with a pre-designed home page, 5 header designs and over 35 ready-to-use content blocks that you can easily customize. You can also design your own custom blocks by combining more than 25 drag and drop components. It offers lots of customization options (video background, slideshow background, header content types, etc) to help you create a website that stands out in no time. It is also designed with responsiveness, to work on mobile devices right out of the box. It is the only theme you will ever need! CHECK OUT THE DEMOS: https://colibriwp.com/go/demos"}, "versions": {"1.0.9": "https://downloads.wordpress.org/theme/silverstorm.1.0.9.zip", "1.0.12": "https://downloads.wordpress.org/theme/silverstorm.1.0.12.zip", "1.0.14": "https://downloads.wordpress.org/theme/silverstorm.1.0.14.zip"}, "downloaded": 42300, "num_ratings": 0, "preview_url": "https://wp-themes.com/silverstorm/", "reviews_url": "https://wordpress.org/support/theme/silverstorm/reviews/", "is_community": false, "last_updated": "2025-04-14", "requires_php": "5.8", "creation_time": "2025-02-20 04:11:52", "download_link": "https://downloads.wordpress.org/theme/silverstorm.1.0.14.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/silverstorm/screenshot.jpg?ver=1.0.14", "active_installs": 6000, "aspiresync_meta": {"id": "019a30c0-11b7-7040-af6f-999e02f3cfc3", "name": "Silverstorm", "slug": "silverstorm", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744588800, "version": "1.0.14"}, "last_updated_time": "2025-04-14 11:52:15", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f6bc-7392-9f44-0e38d6302f72', 'did:web:api.aspiredev.org:packages:wp-theme:simply-personal-blog', 'simply-personal-blog', 'Simply Personal Blog', 'Simply Personal Blog is a responsive blog theme made for personal bloggers and lifestyle bloggers. Its beautiful and minimalistic look gives this theme a perfectly stylized image whether you''re a food-, fashion-, travel- or lifestyle blogger. Theme Everest is always invested in all forms of optimization and Simply Personal Blog is no exception. In Simply Personal Blog, you''ll find a stylized and highly optimized theme with swift load times across the board without any loss of perfomance and responsiveness. All this is bundled with our built-in first-class SEO ( Search Engine Optimization ) which will help you get a head start on search engines like Google and Bing. Get ready to be noticed, with Simply Personal Blog.', 'wp', 'wp-theme', 'GPL', '{"name": "Simply Personal Blog", "slug": "simply-personal-blog", "tags": {"blog": "Blog", "news": "News", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "featured-image-header": "Featured image header"}, "author": {"author": "Superbthemescom", "avatar": "https://secure.gravatar.com/avatar/64e0df7601781a06ac84aef62b02deb12e2283ddf03073931e6a6a1c4e972988?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbthemescom/", "author_url": "http://superbthemes.com/", "display_name": "SuperbThemes", "user_nicename": "superbthemescom"}, "parent": {"name": "Personalblogily", "slug": "personalblogily", "homepage": "https://wordpress.org/themes/personalblogily/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0", "homepage": "https://wordpress.org/themes/simply-personal-blog/", "requires": "4.0", "sections": {"description": "Simply Personal Blog is a responsive blog theme made for personal bloggers and lifestyle bloggers. Its beautiful and minimalistic look gives this theme a perfectly stylized image whether you''re a food-, fashion-, travel- or lifestyle blogger. Theme Everest is always invested in all forms of optimization and Simply Personal Blog is no exception. In Simply Personal Blog, you''ll find a stylized and highly optimized theme with swift load times across the board without any loss of perfomance and responsiveness. All this is bundled with our built-in first-class SEO ( Search Engine Optimization ) which will help you get a head start on search engines like Google and Bing. Get ready to be noticed, with Simply Personal Blog."}, "template": "personalblogily", "versions": {"1.0": "https://downloads.wordpress.org/theme/simply-personal-blog.1.0.zip"}, "downloaded": 3778, "num_ratings": 0, "preview_url": "https://wp-themes.com/simply-personal-blog/", "reviews_url": "https://wordpress.org/support/theme/simply-personal-blog/reviews/", "is_community": false, "last_updated": "2025-07-25", "requires_php": "4.0", "creation_time": "2025-07-25 11:46:13", "download_link": "https://downloads.wordpress.org/theme/simply-personal-blog.1.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/simply-personal-blog/screenshot.png?ver=1.0", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-1202-706b-98b9-e2f5b2edbef8", "name": "Simply Personal Blog", "slug": "simply-personal-blog", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1753401600, "version": "1.0"}, "last_updated_time": "2025-07-25 11:46:13", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f6d3-72ef-9810-b2ffecb81b50', 'did:web:api.aspiredev.org:packages:wp-theme:spacr', 'spacr', 'Spacr', 'Spacr is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/spacr/', 'wp', 'wp-theme', 'GPL', '{"name": "Spacr", "slug": "spacr", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "EnvoThemes", "avatar": "https://secure.gravatar.com/avatar/fbfb6069115a2880669be42a480c105d8702f5ba9930b034b3a4223a495931a5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/envothemes/", "author_url": "https://envothemes.com/", "display_name": "EnvoThemes", "user_nicename": "envothemes"}, "parent": {"name": "Entr", "slug": "entr", "homepage": "https://wordpress.org/themes/entr/"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 1}, "version": "1.0.5", "homepage": "https://wordpress.org/themes/spacr/", "requires": false, "sections": {"description": "Spacr is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/spacr/"}, "template": "entr", "versions": {"1.0": "https://downloads.wordpress.org/theme/spacr.1.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/spacr.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/spacr.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/spacr.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/spacr.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/spacr.1.0.5.zip"}, "downloaded": 63757, "num_ratings": 1, "preview_url": "https://wp-themes.com/spacr/", "reviews_url": "https://wordpress.org/support/theme/spacr/reviews/", "is_community": false, "last_updated": "2024-11-12", "requires_php": "5.6", "creation_time": "2023-09-25 13:26:44", "download_link": "https://downloads.wordpress.org/theme/spacr.1.0.5.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/spacr/screenshot.png?ver=1.0.5", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-1236-703b-8cca-8a475687b937", "name": "Spacr", "slug": "spacr", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1731369600, "version": "1.0.5"}, "last_updated_time": "2024-11-12 11:50:04", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f6e9-731e-beb1-3484e8f85b3b', 'did:web:api.aspiredev.org:packages:wp-theme:storefront', 'storefront', 'Storefront', 'Storefront is the perfect theme for your next WooCommerce project. Designed and developed by WooCommerce Core developers, it features a bespoke integration with WooCommerce itself plus many of the most popular customer facing WooCommerce extensions. There are several layout & color options to personalise your shop, multiple widget regions, a responsive design and much more. Developers will love its lean and extensible codebase making it a joy to customize and extend. Looking for a WooCommerce theme? Look no further!', 'wp', 'wp-theme', 'GPL', '{"name": "Storefront", "slug": "storefront", "tags": {"e-commerce": "E-commerce", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Automattic", "avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "author_url": "https://woocommerce.com/", "display_name": "Automattic", "user_nicename": "automattic"}, "rating": 90, "status": "open", "ratings": {"1": 14, "2": 3, "3": 6, "4": 4, "5": 127}, "version": "4.6.1", "homepage": "https://wordpress.org/themes/storefront/", "requires": false, "sections": {"description": "Storefront is the perfect theme for your next WooCommerce project. Designed and developed by WooCommerce Core developers, it features a bespoke integration with WooCommerce itself plus many of the most popular customer facing WooCommerce extensions. There are several layout & color options to personalise your shop, multiple widget regions, a responsive design and much more. Developers will love its lean and extensible codebase making it a joy to customize and extend. Looking for a WooCommerce theme? Look no further!"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/storefront.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/storefront.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/storefront.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/storefront.1.0.3.zip", "1.1.0": "https://downloads.wordpress.org/theme/storefront.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/storefront.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/theme/storefront.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/storefront.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/storefront.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/storefront.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/storefront.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/storefront.1.2.5.zip", "1.3.0": "https://downloads.wordpress.org/theme/storefront.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/storefront.1.3.1.zip", "1.4.0": "https://downloads.wordpress.org/theme/storefront.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/storefront.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/storefront.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/storefront.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/storefront.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/storefront.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/storefront.1.4.6.zip", "1.5.0": "https://downloads.wordpress.org/theme/storefront.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/storefront.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/storefront.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/storefront.1.5.3.zip", "1.6.0": "https://downloads.wordpress.org/theme/storefront.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/storefront.1.6.1.zip", "2.0.0": "https://downloads.wordpress.org/theme/storefront.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/storefront.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/storefront.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/storefront.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/storefront.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/storefront.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/storefront.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/storefront.2.0.7.zip", "2.1.0": "https://downloads.wordpress.org/theme/storefront.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/storefront.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/storefront.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/storefront.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/storefront.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/storefront.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/storefront.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/storefront.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/storefront.2.1.8.zip", "2.2.0": "https://downloads.wordpress.org/theme/storefront.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/storefront.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/storefront.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/storefront.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/storefront.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/storefront.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/storefront.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/theme/storefront.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/theme/storefront.2.2.8.zip", "2.3.0": "https://downloads.wordpress.org/theme/storefront.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/storefront.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/storefront.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/storefront.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/storefront.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/storefront.2.3.5.zip", "2.4.0": "https://downloads.wordpress.org/theme/storefront.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/storefront.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/storefront.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/storefront.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/theme/storefront.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/theme/storefront.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/theme/storefront.2.4.6.zip", "2.5.0": "https://downloads.wordpress.org/theme/storefront.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/theme/storefront.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/theme/storefront.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/theme/storefront.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/storefront.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/theme/storefront.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/theme/storefront.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/theme/storefront.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/theme/storefront.2.5.8.zip", "2.6.0": "https://downloads.wordpress.org/theme/storefront.2.6.0.zip", "2.7.0": "https://downloads.wordpress.org/theme/storefront.2.7.0.zip", "2.8.0": "https://downloads.wordpress.org/theme/storefront.2.8.0.zip", "2.9.0": "https://downloads.wordpress.org/theme/storefront.2.9.0.zip", "3.0.0": "https://downloads.wordpress.org/theme/storefront.3.0.0.zip", "3.1.0": "https://downloads.wordpress.org/theme/storefront.3.1.0.zip", "3.2.0": "https://downloads.wordpress.org/theme/storefront.3.2.0.zip", "3.3.0": "https://downloads.wordpress.org/theme/storefront.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/theme/storefront.3.4.0.zip", "3.5.0": "https://downloads.wordpress.org/theme/storefront.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/theme/storefront.3.5.1.zip", "3.6.0": "https://downloads.wordpress.org/theme/storefront.3.6.0.zip", "3.7.0": "https://downloads.wordpress.org/theme/storefront.3.7.0.zip", "3.8.0": "https://downloads.wordpress.org/theme/storefront.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/theme/storefront.3.8.1.zip", "3.9.0": "https://downloads.wordpress.org/theme/storefront.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/theme/storefront.3.9.1.zip", "4.0.0": "https://downloads.wordpress.org/theme/storefront.4.0.0.zip", "4.1.0": "https://downloads.wordpress.org/theme/storefront.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/storefront.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/storefront.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/storefront.4.1.3.zip", "4.2.0": "https://downloads.wordpress.org/theme/storefront.4.2.0.zip", "4.3.0": "https://downloads.wordpress.org/theme/storefront.4.3.0.zip", "4.4.0": "https://downloads.wordpress.org/theme/storefront.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/theme/storefront.4.4.1.zip", "4.5.0": "https://downloads.wordpress.org/theme/storefront.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/theme/storefront.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/theme/storefront.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/theme/storefront.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/theme/storefront.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/theme/storefront.4.5.5.zip", "4.5.6": "https://downloads.wordpress.org/theme/storefront.4.5.6.zip", "4.6.0": "https://downloads.wordpress.org/theme/storefront.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/theme/storefront.4.6.1.zip"}, "downloaded": 8204192, "num_ratings": 154, "preview_url": "https://wp-themes.com/storefront/", "reviews_url": "https://wordpress.org/support/theme/storefront/reviews/", "is_community": false, "last_updated": "2025-01-20", "requires_php": "5.6.0", "creation_time": "2014-11-19 14:00:17", "download_link": "https://downloads.wordpress.org/theme/storefront.4.6.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/storefront/screenshot.png?ver=4.6.1", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-1274-7356-9947-77e4b4ae6346", "name": "Storefront", "slug": "storefront", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1737331200, "version": "4.6.1"}, "last_updated_time": "2025-01-20 11:41:56", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f6ff-709d-bb21-c9a13e023e88', 'did:web:api.aspiredev.org:packages:wp-theme:sydney', 'sydney', 'Sydney', 'Sydney is a powerful business theme that provides a fast way for companies or freelancers to create an awesome online presence. As well as being fully compatible with Elementor, Sydney brings plenty of customization possibilities like access to all Google Fonts, full color control, layout control, logo upload, full screen slider, header image, sticky navigation and much more. Also, Sydney provides all the construction blocks you need to rapidly create an engaging front page. Looking for a quick start with Sydney? With just a few clicks, you can import one of our existing demos (https://athemes.com/sydney-demos/)', 'wp', 'wp-theme', 'proprietary', '{"name": "Sydney", "slug": "sydney", "tags": {"custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "block-styles": "Block editor styles", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready"}, "author": {"author": "aThemes", "avatar": "https://secure.gravatar.com/avatar/93b101ca07f6a293920800acffe5bbfcc4bdbaba03d7f0fe25e03ea54238d21b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/athemes/", "author_url": "https://athemes.com", "display_name": "aThemes", "user_nicename": "athemes"}, "rating": 98, "status": "open", "ratings": {"1": 13, "2": 3, "3": 10, "4": 21, "5": 736}, "version": "2.59", "homepage": "https://wordpress.org/themes/sydney/", "requires": false, "sections": {"description": "Sydney is a powerful business theme that provides a fast way for companies or freelancers to create an awesome online presence. As well as being fully compatible with Elementor, Sydney brings plenty of customization possibilities like access to all Google Fonts, full color control, layout control, logo upload, full screen slider, header image, sticky navigation and much more. Also, Sydney provides all the construction blocks you need to rapidly create an engaging front page. Looking for a quick start with Sydney? With just a few clicks, you can import one of our existing demos (https://athemes.com/sydney-demos/)"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/sydney.1.0.zip", "2.0": "https://downloads.wordpress.org/theme/sydney.2.0.zip", "1.01": "https://downloads.wordpress.org/theme/sydney.1.01.zip", "1.03": "https://downloads.wordpress.org/theme/sydney.1.03.zip", "1.04": "https://downloads.wordpress.org/theme/sydney.1.04.zip", "1.05": "https://downloads.wordpress.org/theme/sydney.1.05.zip", "1.06": "https://downloads.wordpress.org/theme/sydney.1.06.zip", "1.07": "https://downloads.wordpress.org/theme/sydney.1.07.zip", "1.08": "https://downloads.wordpress.org/theme/sydney.1.08.zip", "1.09": "https://downloads.wordpress.org/theme/sydney.1.09.zip", "1.10": "https://downloads.wordpress.org/theme/sydney.1.10.zip", "1.11": "https://downloads.wordpress.org/theme/sydney.1.11.zip", "1.12": "https://downloads.wordpress.org/theme/sydney.1.12.zip", "1.13": "https://downloads.wordpress.org/theme/sydney.1.13.zip", "1.14": "https://downloads.wordpress.org/theme/sydney.1.14.zip", "1.15": "https://downloads.wordpress.org/theme/sydney.1.15.zip", "1.16": "https://downloads.wordpress.org/theme/sydney.1.16.zip", "1.17": "https://downloads.wordpress.org/theme/sydney.1.17.zip", "1.18": "https://downloads.wordpress.org/theme/sydney.1.18.zip", "1.19": "https://downloads.wordpress.org/theme/sydney.1.19.zip", "1.20": "https://downloads.wordpress.org/theme/sydney.1.20.zip", "1.21": "https://downloads.wordpress.org/theme/sydney.1.21.zip", "1.22": "https://downloads.wordpress.org/theme/sydney.1.22.zip", "1.23": "https://downloads.wordpress.org/theme/sydney.1.23.zip", "1.24": "https://downloads.wordpress.org/theme/sydney.1.24.zip", "1.25": "https://downloads.wordpress.org/theme/sydney.1.25.zip", "1.26": "https://downloads.wordpress.org/theme/sydney.1.26.zip", "1.27": "https://downloads.wordpress.org/theme/sydney.1.27.zip", "1.28": "https://downloads.wordpress.org/theme/sydney.1.28.zip", "1.30": "https://downloads.wordpress.org/theme/sydney.1.30.zip", "1.31": "https://downloads.wordpress.org/theme/sydney.1.31.zip", "1.32": "https://downloads.wordpress.org/theme/sydney.1.32.zip", "1.33": "https://downloads.wordpress.org/theme/sydney.1.33.zip", "1.34": "https://downloads.wordpress.org/theme/sydney.1.34.zip", "1.35": "https://downloads.wordpress.org/theme/sydney.1.35.zip", "1.36": "https://downloads.wordpress.org/theme/sydney.1.36.zip", "1.37": "https://downloads.wordpress.org/theme/sydney.1.37.zip", "1.38": "https://downloads.wordpress.org/theme/sydney.1.38.zip", "1.39": "https://downloads.wordpress.org/theme/sydney.1.39.zip", "1.40": "https://downloads.wordpress.org/theme/sydney.1.40.zip", "1.41": "https://downloads.wordpress.org/theme/sydney.1.41.zip", "1.42": "https://downloads.wordpress.org/theme/sydney.1.42.zip", "1.43": "https://downloads.wordpress.org/theme/sydney.1.43.zip", "1.44": "https://downloads.wordpress.org/theme/sydney.1.44.zip", "1.45": "https://downloads.wordpress.org/theme/sydney.1.45.zip", "1.46": "https://downloads.wordpress.org/theme/sydney.1.46.zip", "1.47": "https://downloads.wordpress.org/theme/sydney.1.47.zip", "1.48": "https://downloads.wordpress.org/theme/sydney.1.48.zip", "1.49": "https://downloads.wordpress.org/theme/sydney.1.49.zip", "1.50": "https://downloads.wordpress.org/theme/sydney.1.50.zip", "1.51": "https://downloads.wordpress.org/theme/sydney.1.51.zip", "1.52": "https://downloads.wordpress.org/theme/sydney.1.52.zip", "1.53": "https://downloads.wordpress.org/theme/sydney.1.53.zip", "1.54": "https://downloads.wordpress.org/theme/sydney.1.54.zip", "1.55": "https://downloads.wordpress.org/theme/sydney.1.55.zip", "1.56": "https://downloads.wordpress.org/theme/sydney.1.56.zip", "1.57": "https://downloads.wordpress.org/theme/sydney.1.57.zip", "1.58": "https://downloads.wordpress.org/theme/sydney.1.58.zip", "1.59": "https://downloads.wordpress.org/theme/sydney.1.59.zip", "1.60": "https://downloads.wordpress.org/theme/sydney.1.60.zip", "1.61": "https://downloads.wordpress.org/theme/sydney.1.61.zip", "1.62": "https://downloads.wordpress.org/theme/sydney.1.62.zip", "1.63": "https://downloads.wordpress.org/theme/sydney.1.63.zip", "1.64": "https://downloads.wordpress.org/theme/sydney.1.64.zip", "1.65": "https://downloads.wordpress.org/theme/sydney.1.65.zip", "1.66": "https://downloads.wordpress.org/theme/sydney.1.66.zip", "1.67": "https://downloads.wordpress.org/theme/sydney.1.67.zip", "1.68": "https://downloads.wordpress.org/theme/sydney.1.68.zip", "1.69": "https://downloads.wordpress.org/theme/sydney.1.69.zip", "1.70": "https://downloads.wordpress.org/theme/sydney.1.70.zip", "1.71": "https://downloads.wordpress.org/theme/sydney.1.71.zip", "1.72": "https://downloads.wordpress.org/theme/sydney.1.72.zip", "1.73": "https://downloads.wordpress.org/theme/sydney.1.73.zip", "1.74": "https://downloads.wordpress.org/theme/sydney.1.74.zip", "1.75": "https://downloads.wordpress.org/theme/sydney.1.75.zip", "1.76": "https://downloads.wordpress.org/theme/sydney.1.76.zip", "1.77": "https://downloads.wordpress.org/theme/sydney.1.77.zip", "1.78": "https://downloads.wordpress.org/theme/sydney.1.78.zip", "1.79": "https://downloads.wordpress.org/theme/sydney.1.79.zip", "1.80": "https://downloads.wordpress.org/theme/sydney.1.80.zip", "1.81": "https://downloads.wordpress.org/theme/sydney.1.81.zip", "1.82": "https://downloads.wordpress.org/theme/sydney.1.82.zip", "1.83": "https://downloads.wordpress.org/theme/sydney.1.83.zip", "1.84": "https://downloads.wordpress.org/theme/sydney.1.84.zip", "1.85": "https://downloads.wordpress.org/theme/sydney.1.85.zip", "1.86": "https://downloads.wordpress.org/theme/sydney.1.86.zip", "2.01": "https://downloads.wordpress.org/theme/sydney.2.01.zip", "2.02": "https://downloads.wordpress.org/theme/sydney.2.02.zip", "2.03": "https://downloads.wordpress.org/theme/sydney.2.03.zip", "2.04": "https://downloads.wordpress.org/theme/sydney.2.04.zip", "2.05": "https://downloads.wordpress.org/theme/sydney.2.05.zip", "2.06": "https://downloads.wordpress.org/theme/sydney.2.06.zip", "2.07": "https://downloads.wordpress.org/theme/sydney.2.07.zip", "2.08": "https://downloads.wordpress.org/theme/sydney.2.08.zip", "2.09": "https://downloads.wordpress.org/theme/sydney.2.09.zip", "2.10": "https://downloads.wordpress.org/theme/sydney.2.10.zip", "2.11": "https://downloads.wordpress.org/theme/sydney.2.11.zip", "2.12": "https://downloads.wordpress.org/theme/sydney.2.12.zip", "2.13": "https://downloads.wordpress.org/theme/sydney.2.13.zip", "2.14": "https://downloads.wordpress.org/theme/sydney.2.14.zip", "2.15": "https://downloads.wordpress.org/theme/sydney.2.15.zip", "2.16": "https://downloads.wordpress.org/theme/sydney.2.16.zip", "2.17": "https://downloads.wordpress.org/theme/sydney.2.17.zip", "2.18": "https://downloads.wordpress.org/theme/sydney.2.18.zip", "2.19": "https://downloads.wordpress.org/theme/sydney.2.19.zip", "2.20": "https://downloads.wordpress.org/theme/sydney.2.20.zip", "2.21": "https://downloads.wordpress.org/theme/sydney.2.21.zip", "2.22": "https://downloads.wordpress.org/theme/sydney.2.22.zip", "2.23": "https://downloads.wordpress.org/theme/sydney.2.23.zip", "2.24": "https://downloads.wordpress.org/theme/sydney.2.24.zip", "2.25": "https://downloads.wordpress.org/theme/sydney.2.25.zip", "2.26": "https://downloads.wordpress.org/theme/sydney.2.26.zip", "2.27": "https://downloads.wordpress.org/theme/sydney.2.27.zip", "2.28": "https://downloads.wordpress.org/theme/sydney.2.28.zip", "2.29": "https://downloads.wordpress.org/theme/sydney.2.29.zip", "2.30": "https://downloads.wordpress.org/theme/sydney.2.30.zip", "2.31": "https://downloads.wordpress.org/theme/sydney.2.31.zip", "2.32": "https://downloads.wordpress.org/theme/sydney.2.32.zip", "2.33": "https://downloads.wordpress.org/theme/sydney.2.33.zip", "2.34": "https://downloads.wordpress.org/theme/sydney.2.34.zip", "2.35": "https://downloads.wordpress.org/theme/sydney.2.35.zip", "2.36": "https://downloads.wordpress.org/theme/sydney.2.36.zip", "2.37": "https://downloads.wordpress.org/theme/sydney.2.37.zip", "2.38": "https://downloads.wordpress.org/theme/sydney.2.38.zip", "2.39": "https://downloads.wordpress.org/theme/sydney.2.39.zip", "2.40": "https://downloads.wordpress.org/theme/sydney.2.40.zip", "2.41": "https://downloads.wordpress.org/theme/sydney.2.41.zip", "2.42": "https://downloads.wordpress.org/theme/sydney.2.42.zip", "2.43": "https://downloads.wordpress.org/theme/sydney.2.43.zip", "2.44": "https://downloads.wordpress.org/theme/sydney.2.44.zip", "2.45": "https://downloads.wordpress.org/theme/sydney.2.45.zip", "2.46": "https://downloads.wordpress.org/theme/sydney.2.46.zip", "2.47": "https://downloads.wordpress.org/theme/sydney.2.47.zip", "2.48": "https://downloads.wordpress.org/theme/sydney.2.48.zip", "2.49": "https://downloads.wordpress.org/theme/sydney.2.49.zip", "2.50": "https://downloads.wordpress.org/theme/sydney.2.50.zip", "2.51": "https://downloads.wordpress.org/theme/sydney.2.51.zip", "2.52": "https://downloads.wordpress.org/theme/sydney.2.52.zip", "2.53": "https://downloads.wordpress.org/theme/sydney.2.53.zip", "2.54": "https://downloads.wordpress.org/theme/sydney.2.54.zip", "2.55": "https://downloads.wordpress.org/theme/sydney.2.55.zip", "2.56": "https://downloads.wordpress.org/theme/sydney.2.56.zip", "2.57": "https://downloads.wordpress.org/theme/sydney.2.57.zip", "2.58": "https://downloads.wordpress.org/theme/sydney.2.58.zip", "2.59": "https://downloads.wordpress.org/theme/sydney.2.59.zip"}, "downloaded": 4702036, "num_ratings": 783, "preview_url": "https://wp-themes.com/sydney/", "reviews_url": "https://wordpress.org/support/theme/sydney/reviews/", "is_community": false, "last_updated": "2025-10-09", "requires_php": "5.6", "creation_time": "2015-04-25 15:45:06", "download_link": "https://downloads.wordpress.org/theme/sydney.2.59.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/sydney/screenshot.png?ver=2.59", "active_installs": 90000, "aspiresync_meta": {"id": "019a30c0-1289-7016-9ac6-082c7a1d3217", "name": "Sydney", "slug": "sydney", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1759968000, "version": "2.59"}, "last_updated_time": "2025-10-09 19:17:16", "external_support_url": "https://athemes.com/support/", "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f711-73bb-aeb9-5cd3caf8be17', 'did:web:api.aspiredev.org:packages:wp-theme:the-coffee-shop', 'the-coffee-shop', 'The Coffee Shop', 'The Coffee Shop is an awesome free WordPress theme for coffee shops, restaurants and cafés - it also works great if you''re a barista, food/coffee blogger or reviewer, but flexible enough for a company or business type who wants to create a full website or landing page. This colorful, clean, and minimal theme is designed to boost your sales and is perfect for studios, cafes, and dining establishments. Adsense is integrated for advertisement and affiliate marketing, this theme ensures your optional banners and ads shine. Enjoy the easy to use page builder, Gutenberg blocks, and a responsive, mobile friendly design that looks stunning on any device. Showcase your recipes, menus, location, coffee, cakes, desserts and cooking skills fast and easy. Whether you''re a chef, cafe owner, review writer, food blogger, or running a fast food joint, this theme is your best ally. Boost your SEO with schema markup and make your site search engine friendly. The theme supports Woocommerce for eCommerce, perfect for selling coffee, cookies, wine, muffins, cakes, and vegan treats online. Ideal for startups, bars, bistros, cafeterias, tea house, diners, and boutiques, it’s a clean, simple, and effective choice for any dining experience. Install the theme, start writing your own text and publish your beautiful website today!', 'wp', 'wp-theme', 'GPL', '{"name": "The Coffee Shop", "slug": "the-coffee-shop", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "food-and-drink": "Food & drink", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbaddons", "avatar": "https://secure.gravatar.com/avatar/e225f22f91c86191b0236db6735e8d504cee5ed3dc2caaf3e8f35b108e4353aa?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbaddons/", "author_url": "https://superbthemes.com/", "display_name": "Superb Addons", "user_nicename": "superbaddons"}, "parent": {"name": "Bakery and Pastry", "slug": "bakery-and-pastry", "homepage": "https://wordpress.org/themes/bakery-and-pastry/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0", "homepage": "https://wordpress.org/themes/the-coffee-shop/", "requires": "6.1", "sections": {"description": "The Coffee Shop is an awesome free WordPress theme for coffee shops, restaurants and cafés - it also works great if you''re a barista, food/coffee blogger or reviewer, but flexible enough for a company or business type who wants to create a full website or landing page. This colorful, clean, and minimal theme is designed to boost your sales and is perfect for studios, cafes, and dining establishments. Adsense is integrated for advertisement and affiliate marketing, this theme ensures your optional banners and ads shine. Enjoy the easy to use page builder, Gutenberg blocks, and a responsive, mobile friendly design that looks stunning on any device. Showcase your recipes, menus, location, coffee, cakes, desserts and cooking skills fast and easy. Whether you''re a chef, cafe owner, review writer, food blogger, or running a fast food joint, this theme is your best ally. Boost your SEO with schema markup and make your site search engine friendly. The theme supports Woocommerce for eCommerce, perfect for selling coffee, cookies, wine, muffins, cakes, and vegan treats online. Ideal for startups, bars, bistros, cafeterias, tea house, diners, and boutiques, it’s a clean, simple, and effective choice for any dining experience. Install the theme, start writing your own text and publish your beautiful website today!"}, "template": "bakery-and-pastry", "versions": {"1.0": "https://downloads.wordpress.org/theme/the-coffee-shop.1.0.zip"}, "downloaded": 22322, "num_ratings": 0, "preview_url": "https://wp-themes.com/the-coffee-shop/", "reviews_url": "https://wordpress.org/support/theme/the-coffee-shop/reviews/", "is_community": false, "last_updated": "2025-03-12", "requires_php": "5.6", "creation_time": "2025-03-12 08:11:53", "download_link": "https://downloads.wordpress.org/theme/the-coffee-shop.1.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/the-coffee-shop/screenshot.png?ver=1.0", "active_installs": 3000, "aspiresync_meta": {"id": "019a30c0-1279-7182-90a9-174cfa9c9ce0", "name": "The Coffee Shop", "slug": "the-coffee-shop", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1741737600, "version": "1.0"}, "last_updated_time": "2025-03-12 08:11:53", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:00+00'); -INSERT INTO public.packages VALUES ('019a30c3-f72d-73c3-80d6-3a73fa03412e', 'did:web:api.aspiredev.org:packages:wp-theme:total', 'total', 'Total', '​The Total WordPress Theme is a versatile, feature-rich, and fully responsive theme designed to help you create stunning websites effortlessly. With over 40,000 active installations, Total offers a clean and elegant design complemented by vibrant color options and parallax sections. Its homepage layout includes a slider, featured sections with icons, an about us section with progress bars, a masonry-style portfolio, team and testimonial sections, counters, a customizable blog section, client logo carousel, and a compelling call-to-action area. Built on the WordPress Customizer, Total allows real-time configuration with live previews, making customization intuitive and straightforward. The theme is SEO-friendly, cross-browser compatible, translation-ready, and seamlessly integrates with WooCommerce, enabling you to set up an online store with ease. It also supports major page builders like Elementor, WPBakery, SiteOrigin, and Beaver Builder, providing flexibility in designing your site. With a one-click demo import feature, you can quickly replicate the demo layout and customize it to fit your needs. Whether you''re building a business website, portfolio, blog, or online store, Total provides all the essential tools and features to create a professional and engaging online presence. DEMO: https://hashthemes.com/wordpress-theme/total/', 'wp', 'wp-theme', 'GPL', '{"name": "Total", "slug": "total", "tags": {"blog": "Blog", "education": "Education", "portfolio": "Portfolio", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready"}, "author": {"author": "HashThemes", "avatar": "https://secure.gravatar.com/avatar/c1a1e3059810c76ada4e91ee1b7f8ce43ccfde3253abd7e07eca101b45e0af30?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hashthemes/", "author_url": "https://hashthemes.com", "display_name": "hashthemes", "user_nicename": "hashthemes"}, "rating": 94, "status": "open", "ratings": {"1": 2, "2": 1, "3": 0, "4": 5, "5": 54}, "version": "2.1.95", "homepage": "https://wordpress.org/themes/total/", "requires": false, "sections": {"description": "​The Total WordPress Theme is a versatile, feature-rich, and fully responsive theme designed to help you create stunning websites effortlessly. With over 40,000 active installations, Total offers a clean and elegant design complemented by vibrant color options and parallax sections. Its homepage layout includes a slider, featured sections with icons, an about us section with progress bars, a masonry-style portfolio, team and testimonial sections, counters, a customizable blog section, client logo carousel, and a compelling call-to-action area. Built on the WordPress Customizer, Total allows real-time configuration with live previews, making customization intuitive and straightforward. The theme is SEO-friendly, cross-browser compatible, translation-ready, and seamlessly integrates with WooCommerce, enabling you to set up an online store with ease. It also supports major page builders like Elementor, WPBakery, SiteOrigin, and Beaver Builder, providing flexibility in designing your site. With a one-click demo import feature, you can quickly replicate the demo layout and customize it to fit your needs. Whether you''re building a business website, portfolio, blog, or online store, Total provides all the essential tools and features to create a professional and engaging online presence. DEMO: https://hashthemes.com/wordpress-theme/total/"}, "versions": {"1.0.2": "https://downloads.wordpress.org/theme/total.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/total.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/total.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/total.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/total.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/total.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/total.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/total.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/total.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/total.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/total.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/total.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/total.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/total.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/total.1.1.6.zip", "1.1.8": "https://downloads.wordpress.org/theme/total.1.1.8.zip", "1.2.0": "https://downloads.wordpress.org/theme/total.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/total.1.2.1.zip", "2.0.0": "https://downloads.wordpress.org/theme/total.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/total.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/total.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/total.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/total.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/total.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/total.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/total.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/total.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/total.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/total.2.1.0.zip", "1.2.11": "https://downloads.wordpress.org/theme/total.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/theme/total.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/theme/total.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/theme/total.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/theme/total.1.2.15.zip", "1.2.16": "https://downloads.wordpress.org/theme/total.1.2.16.zip", "1.2.17": "https://downloads.wordpress.org/theme/total.1.2.17.zip", "1.2.18": "https://downloads.wordpress.org/theme/total.1.2.18.zip", "1.2.19": "https://downloads.wordpress.org/theme/total.1.2.19.zip", "1.2.20": "https://downloads.wordpress.org/theme/total.1.2.20.zip", "1.2.21": "https://downloads.wordpress.org/theme/total.1.2.21.zip", "1.2.22": "https://downloads.wordpress.org/theme/total.1.2.22.zip", "1.2.23": "https://downloads.wordpress.org/theme/total.1.2.23.zip", "1.2.24": "https://downloads.wordpress.org/theme/total.1.2.24.zip", "1.2.25": "https://downloads.wordpress.org/theme/total.1.2.25.zip", "1.2.26": "https://downloads.wordpress.org/theme/total.1.2.26.zip", "1.2.27": "https://downloads.wordpress.org/theme/total.1.2.27.zip", "1.2.28": "https://downloads.wordpress.org/theme/total.1.2.28.zip", "1.2.29": "https://downloads.wordpress.org/theme/total.1.2.29.zip", "1.2.30": "https://downloads.wordpress.org/theme/total.1.2.30.zip", "1.2.31": "https://downloads.wordpress.org/theme/total.1.2.31.zip", "1.2.32": "https://downloads.wordpress.org/theme/total.1.2.32.zip", "1.2.33": "https://downloads.wordpress.org/theme/total.1.2.33.zip", "1.2.34": "https://downloads.wordpress.org/theme/total.1.2.34.zip", "1.2.35": "https://downloads.wordpress.org/theme/total.1.2.35.zip", "1.2.36": "https://downloads.wordpress.org/theme/total.1.2.36.zip", "1.2.37": "https://downloads.wordpress.org/theme/total.1.2.37.zip", "1.2.38": "https://downloads.wordpress.org/theme/total.1.2.38.zip", "1.2.39": "https://downloads.wordpress.org/theme/total.1.2.39.zip", "1.2.40": "https://downloads.wordpress.org/theme/total.1.2.40.zip", "1.2.41": "https://downloads.wordpress.org/theme/total.1.2.41.zip", "1.2.42": "https://downloads.wordpress.org/theme/total.1.2.42.zip", "1.2.43": "https://downloads.wordpress.org/theme/total.1.2.43.zip", "1.2.44": "https://downloads.wordpress.org/theme/total.1.2.44.zip", "1.2.45": "https://downloads.wordpress.org/theme/total.1.2.45.zip", "1.2.46": "https://downloads.wordpress.org/theme/total.1.2.46.zip", "1.2.47": "https://downloads.wordpress.org/theme/total.1.2.47.zip", "1.2.48": "https://downloads.wordpress.org/theme/total.1.2.48.zip", "1.2.49": "https://downloads.wordpress.org/theme/total.1.2.49.zip", "1.2.50": "https://downloads.wordpress.org/theme/total.1.2.50.zip", "1.2.51": "https://downloads.wordpress.org/theme/total.1.2.51.zip", "1.2.52": "https://downloads.wordpress.org/theme/total.1.2.52.zip", "1.2.53": "https://downloads.wordpress.org/theme/total.1.2.53.zip", "1.2.54": "https://downloads.wordpress.org/theme/total.1.2.54.zip", "1.2.55": "https://downloads.wordpress.org/theme/total.1.2.55.zip", "1.2.56": "https://downloads.wordpress.org/theme/total.1.2.56.zip", "1.2.57": "https://downloads.wordpress.org/theme/total.1.2.57.zip", "1.2.58": "https://downloads.wordpress.org/theme/total.1.2.58.zip", "1.2.59": "https://downloads.wordpress.org/theme/total.1.2.59.zip", "2.0.91": "https://downloads.wordpress.org/theme/total.2.0.91.zip", "2.1.01": "https://downloads.wordpress.org/theme/total.2.1.01.zip", "2.1.02": "https://downloads.wordpress.org/theme/total.2.1.02.zip", "2.1.03": "https://downloads.wordpress.org/theme/total.2.1.03.zip", "2.1.04": "https://downloads.wordpress.org/theme/total.2.1.04.zip", "2.1.05": "https://downloads.wordpress.org/theme/total.2.1.05.zip", "2.1.06": "https://downloads.wordpress.org/theme/total.2.1.06.zip", "2.1.07": "https://downloads.wordpress.org/theme/total.2.1.07.zip", "2.1.08": "https://downloads.wordpress.org/theme/total.2.1.08.zip", "2.1.09": "https://downloads.wordpress.org/theme/total.2.1.09.zip", "2.1.10": "https://downloads.wordpress.org/theme/total.2.1.10.zip", "2.1.11": "https://downloads.wordpress.org/theme/total.2.1.11.zip", "2.1.12": "https://downloads.wordpress.org/theme/total.2.1.12.zip", "2.1.13": "https://downloads.wordpress.org/theme/total.2.1.13.zip", "2.1.14": "https://downloads.wordpress.org/theme/total.2.1.14.zip", "2.1.15": "https://downloads.wordpress.org/theme/total.2.1.15.zip", "2.1.16": "https://downloads.wordpress.org/theme/total.2.1.16.zip", "2.1.17": "https://downloads.wordpress.org/theme/total.2.1.17.zip", "2.1.18": "https://downloads.wordpress.org/theme/total.2.1.18.zip", "2.1.19": "https://downloads.wordpress.org/theme/total.2.1.19.zip", "2.1.20": "https://downloads.wordpress.org/theme/total.2.1.20.zip", "2.1.21": "https://downloads.wordpress.org/theme/total.2.1.21.zip", "2.1.22": "https://downloads.wordpress.org/theme/total.2.1.22.zip", "2.1.23": "https://downloads.wordpress.org/theme/total.2.1.23.zip", "2.1.24": "https://downloads.wordpress.org/theme/total.2.1.24.zip", "2.1.25": "https://downloads.wordpress.org/theme/total.2.1.25.zip", "2.1.26": "https://downloads.wordpress.org/theme/total.2.1.26.zip", "2.1.27": "https://downloads.wordpress.org/theme/total.2.1.27.zip", "2.1.28": "https://downloads.wordpress.org/theme/total.2.1.28.zip", "2.1.29": "https://downloads.wordpress.org/theme/total.2.1.29.zip", "2.1.30": "https://downloads.wordpress.org/theme/total.2.1.30.zip", "2.1.31": "https://downloads.wordpress.org/theme/total.2.1.31.zip", "2.1.32": "https://downloads.wordpress.org/theme/total.2.1.32.zip", "2.1.33": "https://downloads.wordpress.org/theme/total.2.1.33.zip", "2.1.34": "https://downloads.wordpress.org/theme/total.2.1.34.zip", "2.1.35": "https://downloads.wordpress.org/theme/total.2.1.35.zip", "2.1.36": "https://downloads.wordpress.org/theme/total.2.1.36.zip", "2.1.37": "https://downloads.wordpress.org/theme/total.2.1.37.zip", "2.1.38": "https://downloads.wordpress.org/theme/total.2.1.38.zip", "2.1.39": "https://downloads.wordpress.org/theme/total.2.1.39.zip", "2.1.40": "https://downloads.wordpress.org/theme/total.2.1.40.zip", "2.1.41": "https://downloads.wordpress.org/theme/total.2.1.41.zip", "2.1.42": "https://downloads.wordpress.org/theme/total.2.1.42.zip", "2.1.43": "https://downloads.wordpress.org/theme/total.2.1.43.zip", "2.1.44": "https://downloads.wordpress.org/theme/total.2.1.44.zip", "2.1.45": "https://downloads.wordpress.org/theme/total.2.1.45.zip", "2.1.46": "https://downloads.wordpress.org/theme/total.2.1.46.zip", "2.1.47": "https://downloads.wordpress.org/theme/total.2.1.47.zip", "2.1.48": "https://downloads.wordpress.org/theme/total.2.1.48.zip", "2.1.49": "https://downloads.wordpress.org/theme/total.2.1.49.zip", "2.1.50": "https://downloads.wordpress.org/theme/total.2.1.50.zip", "2.1.51": "https://downloads.wordpress.org/theme/total.2.1.51.zip", "2.1.52": "https://downloads.wordpress.org/theme/total.2.1.52.zip", "2.1.53": "https://downloads.wordpress.org/theme/total.2.1.53.zip", "2.1.54": "https://downloads.wordpress.org/theme/total.2.1.54.zip", "2.1.55": "https://downloads.wordpress.org/theme/total.2.1.55.zip", "2.1.56": "https://downloads.wordpress.org/theme/total.2.1.56.zip", "2.1.57": "https://downloads.wordpress.org/theme/total.2.1.57.zip", "2.1.58": "https://downloads.wordpress.org/theme/total.2.1.58.zip", "2.1.59": "https://downloads.wordpress.org/theme/total.2.1.59.zip", "2.1.60": "https://downloads.wordpress.org/theme/total.2.1.60.zip", "2.1.61": "https://downloads.wordpress.org/theme/total.2.1.61.zip", "2.1.62": "https://downloads.wordpress.org/theme/total.2.1.62.zip", "2.1.63": "https://downloads.wordpress.org/theme/total.2.1.63.zip", "2.1.64": "https://downloads.wordpress.org/theme/total.2.1.64.zip", "2.1.65": "https://downloads.wordpress.org/theme/total.2.1.65.zip", "2.1.66": "https://downloads.wordpress.org/theme/total.2.1.66.zip", "2.1.67": "https://downloads.wordpress.org/theme/total.2.1.67.zip", "2.1.68": "https://downloads.wordpress.org/theme/total.2.1.68.zip", "2.1.69": "https://downloads.wordpress.org/theme/total.2.1.69.zip", "2.1.70": "https://downloads.wordpress.org/theme/total.2.1.70.zip", "2.1.71": "https://downloads.wordpress.org/theme/total.2.1.71.zip", "2.1.72": "https://downloads.wordpress.org/theme/total.2.1.72.zip", "2.1.73": "https://downloads.wordpress.org/theme/total.2.1.73.zip", "2.1.74": "https://downloads.wordpress.org/theme/total.2.1.74.zip", "2.1.75": "https://downloads.wordpress.org/theme/total.2.1.75.zip", "2.1.76": "https://downloads.wordpress.org/theme/total.2.1.76.zip", "2.1.77": "https://downloads.wordpress.org/theme/total.2.1.77.zip", "2.1.78": "https://downloads.wordpress.org/theme/total.2.1.78.zip", "2.1.79": "https://downloads.wordpress.org/theme/total.2.1.79.zip", "2.1.80": "https://downloads.wordpress.org/theme/total.2.1.80.zip", "2.1.81": "https://downloads.wordpress.org/theme/total.2.1.81.zip", "2.1.82": "https://downloads.wordpress.org/theme/total.2.1.82.zip", "2.1.83": "https://downloads.wordpress.org/theme/total.2.1.83.zip", "2.1.84": "https://downloads.wordpress.org/theme/total.2.1.84.zip", "2.1.85": "https://downloads.wordpress.org/theme/total.2.1.85.zip", "2.1.86": "https://downloads.wordpress.org/theme/total.2.1.86.zip", "2.1.87": "https://downloads.wordpress.org/theme/total.2.1.87.zip", "2.1.88": "https://downloads.wordpress.org/theme/total.2.1.88.zip", "2.1.89": "https://downloads.wordpress.org/theme/total.2.1.89.zip", "2.1.90": "https://downloads.wordpress.org/theme/total.2.1.90.zip", "2.1.91": "https://downloads.wordpress.org/theme/total.2.1.91.zip", "2.1.92": "https://downloads.wordpress.org/theme/total.2.1.92.zip", "2.1.93": "https://downloads.wordpress.org/theme/total.2.1.93.zip", "2.1.94": "https://downloads.wordpress.org/theme/total.2.1.94.zip", "2.1.95": "https://downloads.wordpress.org/theme/total.2.1.95.zip", "1.1.6.1": "https://downloads.wordpress.org/theme/total.1.1.6.1.zip", "1.1.6.2": "https://downloads.wordpress.org/theme/total.1.1.6.2.zip", "1.1.6.3": "https://downloads.wordpress.org/theme/total.1.1.6.3.zip", "1.1.6.4": "https://downloads.wordpress.org/theme/total.1.1.6.4.zip", "1.1.6.5": "https://downloads.wordpress.org/theme/total.1.1.6.5.zip", "1.1.6.6": "https://downloads.wordpress.org/theme/total.1.1.6.6.zip", "1.1.6.7": "https://downloads.wordpress.org/theme/total.1.1.6.7.zip", "1.1.6.8": "https://downloads.wordpress.org/theme/total.1.1.6.8.zip", "1.1.6.9": "https://downloads.wordpress.org/theme/total.1.1.6.9.zip", "1.1.7.0": "https://downloads.wordpress.org/theme/total.1.1.7.0.zip", "1.1.8.1": "https://downloads.wordpress.org/theme/total.1.1.8.1.zip", "1.1.8.2": "https://downloads.wordpress.org/theme/total.1.1.8.2.zip", "1.1.8.3": "https://downloads.wordpress.org/theme/total.1.1.8.3.zip", "1.1.8.4": "https://downloads.wordpress.org/theme/total.1.1.8.4.zip", "1.1.8.5": "https://downloads.wordpress.org/theme/total.1.1.8.5.zip", "1.1.8.6": "https://downloads.wordpress.org/theme/total.1.1.8.6.zip", "1.1.8.7": "https://downloads.wordpress.org/theme/total.1.1.8.7.zip", "1.1.8.8": "https://downloads.wordpress.org/theme/total.1.1.8.8.zip", "1.1.8.9": "https://downloads.wordpress.org/theme/total.1.1.8.9.zip", "1.1.9.0": "https://downloads.wordpress.org/theme/total.1.1.9.0.zip"}, "downloaded": 1204004, "num_ratings": 62, "preview_url": "https://wp-themes.com/total/", "reviews_url": "https://wordpress.org/support/theme/total/reviews/", "is_community": false, "last_updated": "2025-10-13", "requires_php": "7.4", "creation_time": "2016-10-04 05:15:05", "download_link": "https://downloads.wordpress.org/theme/total.2.1.95.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/total/screenshot.jpg?ver=2.1.95", "active_installs": 30000, "aspiresync_meta": {"id": "019a30c0-1294-73af-8cb0-09c8e451f6ef", "name": "Total", "slug": "total", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1760313600, "version": "2.1.95"}, "last_updated_time": "2025-10-13 06:34:15", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f742-7190-9576-eb6063237ec9', 'did:web:api.aspiredev.org:packages:wp-theme:tutorstarter', 'tutorstarter', 'TutorStarter', 'Tutor Starter is a free WordPress LMS theme powered by Tutor LMS, the popular eLearning plugin for WordPress. It is designed to let Tutor LMS take center stage while also letting you pick what feels right. Tutor Starter is created with the same Unified Design System from Tutor LMS making it the perfect companion eLearning theme for Tutor LMS. Tutor Starter is also highly specialized for speed and efficiency, with all of its components optimized to give your eLearning website a great score on Google''s PageSpeed. Tutor Starter pages are also schema ready and SEO optimized to make ranking on search engines as easy as pie! It also boasts an impressive blog single page for perfect readability. With full support for both Elementor and Gutenberg, Tutor Starter hopes to cater to the largest audience of both classic page builders and modern Gutenberg based builders. It comes with customizer settings for headers, footers, and everything in between. With several header and footer variations, advanced typography settings, and contextual page settings, create the eLearning website of your dreams with this free LMS theme. Tutor Starter features 3 modern and pre-built home layouts with fully functioning inner pages for both Elementor and Gutenberg to let you get started in no time. Tutor Starter also features a clean and light one-click demo importer to import all these pre-built home layouts for Gutenberg and Elementor. This, along with deep ties with Tutor LMS makes it a no-brainer WordPress LMS theme. Please Check theme demo here https://preview.tutorlms.com/', 'wp', 'wp-theme', 'GPL', '{"name": "TutorStarter", "slug": "tutorstarter", "tags": {"blog": "Blog", "education": "Education", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeum", "avatar": "https://secure.gravatar.com/avatar/929c471e94b7c131fe4ed9526ae26020dd10097c27c1461c5d3535a4ca467daf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeum/", "author_url": "https://www.themeum.com", "display_name": "Themeum", "user_nicename": "themeum"}, "rating": 80, "status": "open", "ratings": {"1": 1, "2": 0, "3": 0, "4": 0, "5": 3}, "version": "3.0.4", "homepage": "https://wordpress.org/themes/tutorstarter/", "requires": false, "sections": {"description": "Tutor Starter is a free WordPress LMS theme powered by Tutor LMS, the popular eLearning plugin for WordPress. It is designed to let Tutor LMS take center stage while also letting you pick what feels right. Tutor Starter is created with the same Unified Design System from Tutor LMS making it the perfect companion eLearning theme for Tutor LMS. Tutor Starter is also highly specialized for speed and efficiency, with all of its components optimized to give your eLearning website a great score on Google''s PageSpeed. Tutor Starter pages are also schema ready and SEO optimized to make ranking on search engines as easy as pie! It also boasts an impressive blog single page for perfect readability. With full support for both Elementor and Gutenberg, Tutor Starter hopes to cater to the largest audience of both classic page builders and modern Gutenberg based builders. It comes with customizer settings for headers, footers, and everything in between. With several header and footer variations, advanced typography settings, and contextual page settings, create the eLearning website of your dreams with this free LMS theme. Tutor Starter features 3 modern and pre-built home layouts with fully functioning inner pages for both Elementor and Gutenberg to let you get started in no time. Tutor Starter also features a clean and light one-click demo importer to import all these pre-built home layouts for Gutenberg and Elementor. This, along with deep ties with Tutor LMS makes it a no-brainer WordPress LMS theme. Please Check theme demo here https://preview.tutorlms.com/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/tutorstarter.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/tutorstarter.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/tutorstarter.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/tutorstarter.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/tutorstarter.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/tutorstarter.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/tutorstarter.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/tutorstarter.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/tutorstarter.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/tutorstarter.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/tutorstarter.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/tutorstarter.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/tutorstarter.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/tutorstarter.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/tutorstarter.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/tutorstarter.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/tutorstarter.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/tutorstarter.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/tutorstarter.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/tutorstarter.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/tutorstarter.1.2.0.zip", "3.0.0": "https://downloads.wordpress.org/theme/tutorstarter.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/tutorstarter.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/tutorstarter.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/tutorstarter.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/tutorstarter.3.0.4.zip", "1.1.10": "https://downloads.wordpress.org/theme/tutorstarter.1.1.10.zip"}, "downloaded": 168708, "num_ratings": 4, "preview_url": "https://wp-themes.com/tutorstarter/", "reviews_url": "https://wordpress.org/support/theme/tutorstarter/reviews/", "is_community": false, "last_updated": "2025-07-29", "requires_php": "7.4", "creation_time": "2021-06-30 06:45:40", "download_link": "https://downloads.wordpress.org/theme/tutorstarter.3.0.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/tutorstarter/screenshot.png?ver=3.0.4", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-12d9-7050-b1e6-5c86744830be", "name": "TutorStarter", "slug": "tutorstarter", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1753747200, "version": "3.0.4"}, "last_updated_time": "2025-07-29 10:01:16", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f75b-705c-9161-d18553f58ca7', 'did:web:api.aspiredev.org:packages:wp-theme:twentyeleven', 'twentyeleven', 'Twenty Eleven', 'The 2011 theme for WordPress is sophisticated, lightweight, and adaptable. Make it yours with a custom menu, header image, and background -- then go further with available theme options for light or dark color scheme, custom link colors, and three layout choices. Twenty Eleven comes equipped with a Showcase page template that transforms your front page into a showcase to show off your best content, widget support galore (sidebar, three footer areas, and a Showcase page widget area), and a custom "Ephemera" widget to display your Aside, Link, Quote, or Status posts. Included are styles for print and for the admin editor, support for featured images (as custom header images on posts and pages and as large images on featured "sticky" posts), and special styles for six different post formats.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Eleven", "slug": "twentyeleven", "tags": {"blog": "Blog", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 92, "status": "open", "ratings": {"1": 2, "2": 0, "3": 1, "4": 8, "5": 39}, "version": "4.9", "homepage": "https://wordpress.org/themes/twentyeleven/", "requires": "3.2", "sections": {"description": "The 2011 theme for WordPress is sophisticated, lightweight, and adaptable. Make it yours with a custom menu, header image, and background -- then go further with available theme options for light or dark color scheme, custom link colors, and three layout choices. Twenty Eleven comes equipped with a Showcase page template that transforms your front page into a showcase to show off your best content, widget support galore (sidebar, three footer areas, and a Showcase page widget area), and a custom \"Ephemera\" widget to display your Aside, Link, Quote, or Status posts. Included are styles for print and for the admin editor, support for featured images (as custom header images on posts and pages and as large images on featured \"sticky\" posts), and special styles for six different post formats."}, "versions": {"1.1": "https://downloads.wordpress.org/theme/twentyeleven.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentyeleven.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentyeleven.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentyeleven.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentyeleven.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentyeleven.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentyeleven.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentyeleven.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentyeleven.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentyeleven.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentyeleven.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentyeleven.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentyeleven.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentyeleven.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentyeleven.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentyeleven.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentyeleven.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentyeleven.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentyeleven.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentyeleven.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentyeleven.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentyeleven.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentyeleven.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentyeleven.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentyeleven.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentyeleven.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentyeleven.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentyeleven.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentyeleven.3.9.zip", "4.0": "https://downloads.wordpress.org/theme/twentyeleven.4.0.zip", "4.1": "https://downloads.wordpress.org/theme/twentyeleven.4.1.zip", "4.2": "https://downloads.wordpress.org/theme/twentyeleven.4.2.zip", "4.3": "https://downloads.wordpress.org/theme/twentyeleven.4.3.zip", "4.4": "https://downloads.wordpress.org/theme/twentyeleven.4.4.zip", "4.5": "https://downloads.wordpress.org/theme/twentyeleven.4.5.zip", "4.6": "https://downloads.wordpress.org/theme/twentyeleven.4.6.zip", "4.7": "https://downloads.wordpress.org/theme/twentyeleven.4.7.zip", "4.8": "https://downloads.wordpress.org/theme/twentyeleven.4.8.zip", "4.9": "https://downloads.wordpress.org/theme/twentyeleven.4.9.zip"}, "downloaded": 7352621, "num_ratings": 50, "preview_url": "https://wp-themes.com/twentyeleven/", "reviews_url": "https://wordpress.org/support/theme/twentyeleven/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2011-07-04 20:46:53", "download_link": "https://downloads.wordpress.org/theme/twentyeleven.4.9.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentyeleven/screenshot.png?ver=4.9", "active_installs": 70000, "aspiresync_meta": {"id": "019a30c0-12d1-73dc-bef0-fa74b26cd7ed", "name": "Twenty Eleven", "slug": "twentyeleven", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "4.9"}, "last_updated_time": "2025-04-15 13:13:01", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f776-723a-a3d9-6a4c84718727', 'did:web:api.aspiredev.org:packages:wp-theme:twentyfifteen', 'twentyfifteen', 'Twenty Fifteen', 'Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen''s simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Fifteen", "slug": "twentyfifteen", "tags": {"blog": "Blog", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 88, "status": "open", "ratings": {"1": 4, "2": 0, "3": 5, "4": 6, "5": 38}, "version": "4.0", "homepage": "https://wordpress.org/themes/twentyfifteen/", "requires": "4.1", "sections": {"description": "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen''s simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."}, "versions": {"0": "https://downloads.wordpress.org/theme/twentyfifteen.4.0.zip", "1.0": "https://downloads.wordpress.org/theme/twentyfifteen.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentyfifteen.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentyfifteen.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentyfifteen.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentyfifteen.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentyfifteen.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentyfifteen.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentyfifteen.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentyfifteen.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentyfifteen.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentyfifteen.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentyfifteen.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentyfifteen.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentyfifteen.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentyfifteen.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentyfifteen.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentyfifteen.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentyfifteen.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentyfifteen.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentyfifteen.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentyfifteen.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentyfifteen.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentyfifteen.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentyfifteen.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentyfifteen.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentyfifteen.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentyfifteen.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentyfifteen.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentyfifteen.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentyfifteen.3.9.zip", "4.0": "https://downloads.wordpress.org/theme/twentyfifteen.4.0.zip"}, "downloaded": 12193129, "num_ratings": 53, "preview_url": "https://wp-themes.com/twentyfifteen/", "reviews_url": "https://wordpress.org/support/theme/twentyfifteen/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2014-12-18 17:08:05", "download_link": "https://downloads.wordpress.org/theme/twentyfifteen.4.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentyfifteen/screenshot.png?ver=4.0", "active_installs": 70000, "aspiresync_meta": {"id": "019a30c0-1366-7331-a2ef-8153fbe64756", "name": "Twenty Fifteen", "slug": "twentyfifteen", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "4.0"}, "last_updated_time": "2025-04-15 13:19:13", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f78f-7321-b1f9-edced60081b6', 'did:web:api.aspiredev.org:packages:wp-theme:twentyfourteen', 'twentyfourteen', 'Twenty Fourteen', 'In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content''s layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Fourteen", "slug": "twentyfourteen", "tags": {"blog": "Blog", "news": "News", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 88, "status": "open", "ratings": {"1": 6, "2": 4, "3": 5, "4": 13, "5": 69}, "version": "4.3", "homepage": "https://wordpress.org/themes/twentyfourteen/", "requires": "3.6", "sections": {"description": "In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content''s layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier."}, "versions": {"0": "https://downloads.wordpress.org/theme/twentyfourteen.4.3.zip", "1.0": "https://downloads.wordpress.org/theme/twentyfourteen.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentyfourteen.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentyfourteen.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentyfourteen.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentyfourteen.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentyfourteen.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentyfourteen.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentyfourteen.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentyfourteen.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentyfourteen.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentyfourteen.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentyfourteen.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentyfourteen.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentyfourteen.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentyfourteen.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentyfourteen.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentyfourteen.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentyfourteen.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentyfourteen.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentyfourteen.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentyfourteen.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentyfourteen.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentyfourteen.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentyfourteen.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentyfourteen.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentyfourteen.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentyfourteen.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentyfourteen.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentyfourteen.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentyfourteen.3.9.zip", "4.0": "https://downloads.wordpress.org/theme/twentyfourteen.4.0.zip", "4.1": "https://downloads.wordpress.org/theme/twentyfourteen.4.1.zip", "4.2": "https://downloads.wordpress.org/theme/twentyfourteen.4.2.zip", "4.3": "https://downloads.wordpress.org/theme/twentyfourteen.4.3.zip"}, "downloaded": 10774628, "num_ratings": 97, "preview_url": "https://wp-themes.com/twentyfourteen/", "reviews_url": "https://wordpress.org/support/theme/twentyfourteen/reviews/", "is_community": true, "last_updated": "2025-08-05", "requires_php": "5.2.4", "creation_time": "2013-12-12 17:32:45", "download_link": "https://downloads.wordpress.org/theme/twentyfourteen.4.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentyfourteen/screenshot.png?ver=4.3", "active_installs": 60000, "aspiresync_meta": {"id": "019a30c0-13bb-7227-9f58-982314a37366", "name": "Twenty Fourteen", "slug": "twentyfourteen", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1754352000, "version": "4.3"}, "last_updated_time": "2025-08-05 19:29:48", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f7aa-72ab-9a2f-9890ce3b09a7', 'did:web:api.aspiredev.org:packages:wp-theme:twentynineteen', 'twentynineteen', 'Twenty Nineteen', 'Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you''ll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it''s built to be beautiful on all screen sizes.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Nineteen", "slug": "twentynineteen", "tags": {"one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 74, "status": "open", "ratings": {"1": 15, "2": 5, "3": 4, "4": 1, "5": 38}, "version": "3.1", "homepage": "https://wordpress.org/themes/twentynineteen/", "requires": "4.7", "sections": {"description": "Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you''ll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it''s built to be beautiful on all screen sizes."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentynineteen.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentynineteen.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentynineteen.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentynineteen.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentynineteen.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentynineteen.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentynineteen.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentynineteen.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentynineteen.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentynineteen.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentynineteen.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentynineteen.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentynineteen.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentynineteen.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentynineteen.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentynineteen.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentynineteen.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentynineteen.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentynineteen.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentynineteen.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentynineteen.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentynineteen.3.1.zip"}, "downloaded": 11881696, "num_ratings": 63, "preview_url": "https://wp-themes.com/twentynineteen/", "reviews_url": "https://wordpress.org/support/theme/twentynineteen/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2018-12-06 19:07:09", "download_link": "https://downloads.wordpress.org/theme/twentynineteen.3.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentynineteen/screenshot.png?ver=3.1", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-13d6-70f6-83cb-288d1f851bd6", "name": "Twenty Nineteen", "slug": "twentynineteen", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "3.1"}, "last_updated_time": "2025-04-15 13:23:22", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f7d8-7330-a712-7bb7705e23f3', 'did:web:api.aspiredev.org:packages:wp-theme:twentysixteen', 'twentysixteen', 'Twenty Sixteen', 'Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Sixteen", "slug": "twentysixteen", "tags": {"blog": "Blog", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "microformats": "Microformats", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 82, "status": "open", "ratings": {"1": 9, "2": 3, "3": 6, "4": 16, "5": 49}, "version": "3.6", "homepage": "https://wordpress.org/themes/twentysixteen/", "requires": "4.4", "sections": {"description": "Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentysixteen.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentysixteen.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentysixteen.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentysixteen.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentysixteen.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentysixteen.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentysixteen.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentysixteen.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentysixteen.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentysixteen.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentysixteen.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentysixteen.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentysixteen.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentysixteen.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentysixteen.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentysixteen.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentysixteen.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentysixteen.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentysixteen.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentysixteen.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentysixteen.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentysixteen.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentysixteen.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentysixteen.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentysixteen.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentysixteen.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentysixteen.3.6.zip", "0.1.20150828": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150828.zip", "0.1.20150901": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150901.zip", "0.1.20150902": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150902.zip", "0.1.20150903": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150903.zip", "0.1.20150904": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150904.zip", "0.1.20150905": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150905.zip", "0.1.20150906": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150906.zip", "0.1.20150907": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150907.zip", "0.1.20150908": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150908.zip", "0.1.20150909": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150909.zip", "0.1.20150910": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150910.zip", "0.1.20150911": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150911.zip", "0.1.20150912": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150912.zip", "0.1.20150913": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150913.zip", "0.1.20150914": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150914.zip", "0.1.20150915": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150915.zip", "0.1.20150916": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150916.zip", "0.1.20150917": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150917.zip", "0.1.20150918": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150918.zip", "0.1.20150919": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150919.zip", "0.1.20150920": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150920.zip", "0.1.20150921": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150921.zip", "0.1.20150922": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150922.zip", "0.1.20150923": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150923.zip", "0.1.20150924": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150924.zip", "0.1.20150925": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150925.zip", "0.1.20150926": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150926.zip", "0.1.20150927": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150927.zip", "0.1.20150928": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150928.zip", "0.1.20150929": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150929.zip", "0.1.20150930": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150930.zip", "0.1.20151001": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151001.zip", "0.1.20151002": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151002.zip", "0.1.20151003": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151003.zip", "0.1.20151004": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151004.zip", "0.1.20151005": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151005.zip", "0.1.20151006": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151006.zip", "0.1.20151007": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151007.zip", "0.1.20151008": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151008.zip", "0.1.20151009": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151009.zip", "0.1.20151010": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151010.zip", "0.1.20151011": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151011.zip", "0.1.20151012": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151012.zip", "0.1.20151013": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151013.zip", "0.1.20151014": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151014.zip", "0.1.20151015": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151015.zip", "0.1.20151016": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151016.zip", "0.1.20151017": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151017.zip", "0.1.20151018": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151018.zip", "0.1.20151019": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151019.zip", "0.1.20151020": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151020.zip", "0.1.20151021": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151021.zip", "0.1.20151022": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151022.zip", "0.1.20151023": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151023.zip", "0.1.20151024": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151024.zip", "0.1.20151025": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151025.zip", "0.1.20151027": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151027.zip", "0.1.20151028": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151028.zip", "0.1.20151029": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151029.zip", "0.1.20151030": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151030.zip", "0.1.20151031": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151031.zip", "0.1.20151101": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151101.zip", "0.1.20151102": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151102.zip", "0.1.20151103": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151103.zip", "0.1.20151104": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151104.zip", "0.1.20151105": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151105.zip", "0.1.20151106": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151106.zip", "0.1.20151107": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151107.zip", "0.1.20151108": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151108.zip", "0.1.20151109": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151109.zip", "0.1.20151110": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151110.zip", "0.1.20151111": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151111.zip", "0.1.20151112": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151112.zip", "0.1.20151113": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151113.zip", "0.1.20151114": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151114.zip", "0.1.20151115": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151115.zip", "0.1.20151116": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151116.zip", "0.1.20151117": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151117.zip", "0.1.20151118": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151118.zip", "0.1.20151119": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151119.zip", "0.1.20151120": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151120.zip", "0.1.20151121": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151121.zip", "0.1.20151122": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151122.zip", "0.1.20151123": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151123.zip", "0.1.20151124": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151124.zip", "0.1.20151125": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151125.zip", "0.1.20151126": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151126.zip", "0.1.20151127": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151127.zip", "0.1.20151128": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151128.zip", "0.1.20151130": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151130.zip", "0.1.20151201": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151201.zip", "0.1.20151202": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151202.zip", "0.1.20151203": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151203.zip", "0.1.20151204": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151204.zip", "0.1.20151205": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151205.zip"}, "downloaded": 11417927, "num_ratings": 83, "preview_url": "https://wp-themes.com/twentysixteen/", "reviews_url": "https://wordpress.org/support/theme/twentysixteen/reviews/", "is_community": true, "last_updated": "2025-08-05", "requires_php": "5.2.4", "creation_time": "2015-08-31 14:00:08", "download_link": "https://downloads.wordpress.org/theme/twentysixteen.3.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentysixteen/screenshot.png?ver=3.6", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-14a4-71e6-bf18-3ea168110ee5", "name": "Twenty Sixteen", "slug": "twentysixteen", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1754352000, "version": "3.6"}, "last_updated_time": "2025-08-05 19:31:05", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f7f1-703a-833f-87f79b701bae', 'did:web:api.aspiredev.org:packages:wp-theme:twentyten', 'twentyten', 'Twenty Ten', 'The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Ten", "slug": "twentyten", "tags": {"blog": "Blog", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "microformats": "Microformats", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 94, "status": "open", "ratings": {"1": 2, "2": 0, "3": 1, "4": 8, "5": 43}, "version": "4.4", "homepage": "https://wordpress.org/themes/twentyten/", "requires": "3.0", "sections": {"description": "The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the \"Asides\" and \"Gallery\" categories, and has an optional one-column page template that removes the sidebar."}, "versions": {"1.1": "https://downloads.wordpress.org/theme/twentyten.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentyten.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentyten.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentyten.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentyten.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentyten.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentyten.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentyten.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentyten.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentyten.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentyten.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentyten.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentyten.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentyten.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentyten.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentyten.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentyten.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentyten.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentyten.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentyten.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentyten.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentyten.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentyten.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentyten.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentyten.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentyten.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentyten.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentyten.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentyten.3.9.zip", "4.0": "https://downloads.wordpress.org/theme/twentyten.4.0.zip", "4.1": "https://downloads.wordpress.org/theme/twentyten.4.1.zip", "4.2": "https://downloads.wordpress.org/theme/twentyten.4.2.zip", "4.3": "https://downloads.wordpress.org/theme/twentyten.4.3.zip", "4.4": "https://downloads.wordpress.org/theme/twentyten.4.4.zip", "1.0.3": "https://downloads.wordpress.org/theme/twentyten.1.0.3.zip"}, "downloaded": 6556327, "num_ratings": 54, "preview_url": "https://wp-themes.com/twentyten/", "reviews_url": "https://wordpress.org/support/theme/twentyten/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2010-06-21 19:25:28", "download_link": "https://downloads.wordpress.org/theme/twentyten.4.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentyten/screenshot.png?ver=4.4", "active_installs": 50000, "aspiresync_meta": {"id": "019a30c0-1451-730a-a3ea-5da43e192f51", "name": "Twenty Ten", "slug": "twentyten", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "4.4"}, "last_updated_time": "2025-04-15 13:09:51", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f807-7135-8e33-bc31e2d88707', 'did:web:api.aspiredev.org:packages:wp-theme:twentytwelve', 'twentytwelve', 'Twenty Twelve', 'The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Twelve", "slug": "twentytwelve", "tags": {"blog": "Blog", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "microformats": "Microformats", "post-formats": "Post formats", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 92, "status": "open", "ratings": {"1": 3, "2": 3, "3": 6, "4": 24, "5": 123}, "version": "4.6", "homepage": "https://wordpress.org/themes/twentytwelve/", "requires": "3.5", "sections": {"description": "The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background."}, "versions": {"0.9": "https://downloads.wordpress.org/theme/twentytwelve.0.9.zip", "1.0": "https://downloads.wordpress.org/theme/twentytwelve.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwelve.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwelve.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwelve.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentytwelve.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentytwelve.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentytwelve.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentytwelve.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentytwelve.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentytwelve.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentytwelve.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentytwelve.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentytwelve.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentytwelve.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentytwelve.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentytwelve.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentytwelve.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentytwelve.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentytwelve.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentytwelve.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentytwelve.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentytwelve.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentytwelve.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentytwelve.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentytwelve.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentytwelve.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentytwelve.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentytwelve.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentytwelve.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentytwelve.3.9.zip", "4.0": "https://downloads.wordpress.org/theme/twentytwelve.4.0.zip", "4.1": "https://downloads.wordpress.org/theme/twentytwelve.4.1.zip", "4.2": "https://downloads.wordpress.org/theme/twentytwelve.4.2.zip", "4.3": "https://downloads.wordpress.org/theme/twentytwelve.4.3.zip", "4.4": "https://downloads.wordpress.org/theme/twentytwelve.4.4.zip", "4.5": "https://downloads.wordpress.org/theme/twentytwelve.4.5.zip", "4.6": "https://downloads.wordpress.org/theme/twentytwelve.4.6.zip", "1.1.1": "https://downloads.wordpress.org/theme/twentytwelve.1.1.1.zip"}, "downloaded": 8565460, "num_ratings": 159, "preview_url": "https://wp-themes.com/twentytwelve/", "reviews_url": "https://wordpress.org/support/theme/twentytwelve/reviews/", "is_community": true, "last_updated": "2025-07-16", "requires_php": "5.2.4", "creation_time": "2012-09-27 22:29:09", "download_link": "https://downloads.wordpress.org/theme/twentytwelve.4.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwelve/screenshot.png?ver=4.6", "active_installs": 60000, "aspiresync_meta": {"id": "019a30c0-145c-7034-8f0f-a62b591618e9", "name": "Twenty Twelve", "slug": "twentytwelve", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1752624000, "version": "4.6"}, "last_updated_time": "2025-07-16 03:56:24", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f820-72aa-bb54-9d883059593f', 'did:web:api.aspiredev.org:packages:wp-theme:twentytwenty', 'twentytwenty', 'Twenty Twenty', 'Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Twenty", "slug": "twentytwenty", "tags": {"blog": "Blog", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 88, "status": "open", "ratings": {"1": 5, "2": 3, "3": 3, "4": 4, "5": 53}, "version": "2.9", "homepage": "https://wordpress.org/themes/twentytwenty/", "requires": "4.7", "sections": {"description": "Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwenty.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwenty.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwenty.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwenty.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentytwenty.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentytwenty.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentytwenty.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentytwenty.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentytwenty.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentytwenty.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentytwenty.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentytwenty.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentytwenty.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentytwenty.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentytwenty.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentytwenty.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentytwenty.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentytwenty.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentytwenty.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentytwenty.2.9.zip"}, "downloaded": 11808266, "num_ratings": 68, "preview_url": "https://wp-themes.com/twentytwenty/", "reviews_url": "https://wordpress.org/support/theme/twentytwenty/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2019-11-12 21:31:58", "download_link": "https://downloads.wordpress.org/theme/twentytwenty.2.9.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwenty/screenshot.png?ver=2.9", "active_installs": 200000, "aspiresync_meta": {"id": "019a30c0-14a8-705d-897f-57bd902e50d4", "name": "Twenty Twenty", "slug": "twentytwenty", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "2.9"}, "last_updated_time": "2025-04-15 13:24:25", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f838-7386-850c-b25976783fee', 'did:web:api.aspiredev.org:packages:wp-theme:twentytwentyfive', 'twentytwentyfive', 'Twenty Twenty-Five', 'Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Twenty-Five", "slug": "twentytwentyfive", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 82, "status": "open", "ratings": {"1": 0, "2": 2, "3": 2, "4": 0, "5": 7}, "version": "1.3", "homepage": "https://wordpress.org/themes/twentytwentyfive/", "requires": "6.7", "sections": {"description": "Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwentyfive.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwentyfive.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwentyfive.1.3.zip"}, "downloaded": 3592178, "num_ratings": 11, "preview_url": "https://wp-themes.com/twentytwentyfive/", "reviews_url": "https://wordpress.org/support/theme/twentytwentyfive/reviews/", "is_community": true, "last_updated": "2025-08-05", "requires_php": "7.2", "creation_time": "2024-11-13 00:56:57", "download_link": "https://downloads.wordpress.org/theme/twentytwentyfive.1.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwentyfive/screenshot.png?ver=1.3", "active_installs": 1000000, "aspiresync_meta": {"id": "019a30c0-14af-72ff-9e0d-080395da474e", "name": "Twenty Twenty-Five", "slug": "twentytwentyfive", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1754352000, "version": "1.3"}, "last_updated_time": "2025-08-05 19:30:35", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f853-72c1-92dd-ef7c7932c2de', 'did:web:api.aspiredev.org:packages:wp-theme:twentytwentyfour', 'twentytwentyfour', 'Twenty Twenty-Four', 'Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Twenty-Four", "slug": "twentytwentyfour", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 76, "status": "open", "ratings": {"1": 7, "2": 3, "3": 1, "4": 3, "5": 22}, "version": "1.3", "homepage": "https://wordpress.org/themes/twentytwentyfour/", "requires": "6.4", "sections": {"description": "Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwentyfour.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip"}, "downloaded": 3772710, "num_ratings": 36, "preview_url": "https://wp-themes.com/twentytwentyfour/", "reviews_url": "https://wordpress.org/support/theme/twentytwentyfour/reviews/", "is_community": true, "last_updated": "2024-11-13", "requires_php": "7.0", "creation_time": "2023-11-07 19:26:45", "download_link": "https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwentyfour/screenshot.png?ver=1.3", "active_installs": 700000, "aspiresync_meta": {"id": "019a30c0-14f5-7265-9165-08138d6ce7df", "name": "Twenty Twenty-Four", "slug": "twentytwentyfour", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1731456000, "version": "1.3"}, "last_updated_time": "2024-11-13 01:00:34", "external_support_url": false, "external_repository_url": "https://github.com/WordPress/twentytwentyfour"}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f86f-70af-a2b6-a366dc73be5c', 'did:web:api.aspiredev.org:packages:wp-theme:twentytwentyone', 'twentytwentyone', 'Twenty Twenty-One', 'Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Twenty-One", "slug": "twentytwentyone", "tags": {"blog": "Blog", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 84, "status": "open", "ratings": {"1": 6, "2": 1, "3": 1, "4": 6, "5": 31}, "version": "2.6", "homepage": "https://wordpress.org/themes/twentytwentyone/", "requires": "5.3", "sections": {"description": "Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwentyone.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwentyone.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwentyone.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwentyone.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentytwentyone.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentytwentyone.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentytwentyone.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentytwentyone.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentytwentyone.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentytwentyone.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentytwentyone.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentytwentyone.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentytwentyone.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentytwentyone.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentytwentyone.2.6.zip"}, "downloaded": 10836329, "num_ratings": 45, "preview_url": "https://wp-themes.com/twentytwentyone/", "reviews_url": "https://wordpress.org/support/theme/twentytwentyone/reviews/", "is_community": true, "last_updated": "2025-08-05", "requires_php": "5.6", "creation_time": "2020-12-09 00:29:48", "download_link": "https://downloads.wordpress.org/theme/twentytwentyone.2.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwentyone/screenshot.png?ver=2.6", "active_installs": 300000, "aspiresync_meta": {"id": "019a30c0-153e-7276-adc8-53e562a6d13a", "name": "Twenty Twenty-One", "slug": "twentytwentyone", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1754352000, "version": "2.6"}, "last_updated_time": "2025-08-05 19:31:53", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f887-7310-9c88-31fbe1b7aa37', 'did:web:api.aspiredev.org:packages:wp-theme:twentytwentythree', 'twentytwentythree', 'Twenty Twenty-Three', 'Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Twenty-Three", "slug": "twentytwentythree", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 68, "status": "open", "ratings": {"1": 20, "2": 2, "3": 5, "4": 2, "5": 33}, "version": "1.6", "homepage": "https://wordpress.org/themes/twentytwentythree/", "requires": "6.1", "sections": {"description": "Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwentythree.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwentythree.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwentythree.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwentythree.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentytwentythree.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip"}, "downloaded": 6145125, "num_ratings": 62, "preview_url": "https://wp-themes.com/twentytwentythree/", "reviews_url": "https://wordpress.org/support/theme/twentytwentythree/reviews/", "is_community": true, "last_updated": "2024-11-13", "requires_php": "5.6", "creation_time": "2022-11-02 02:05:18", "download_link": "https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwentythree/screenshot.png?ver=1.6", "active_installs": 300000, "aspiresync_meta": {"id": "019a30c0-1593-7138-aaf6-2773986e48bb", "name": "Twenty Twenty-Three", "slug": "twentytwentythree", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1731456000, "version": "1.6"}, "last_updated_time": "2024-11-13 00:18:51", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f8a3-738e-9360-508e99acd701', 'did:web:api.aspiredev.org:packages:wp-theme:twentytwentytwo', 'twentytwentytwo', 'Twenty Twenty-Two', 'Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours.', 'wp', 'wp-theme', 'GPL', '{"name": "Twenty Twenty-Two", "slug": "twentytwentytwo", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 64, "status": "open", "ratings": {"1": 26, "2": 3, "3": 2, "4": 8, "5": 31}, "version": "2.0", "homepage": "https://wordpress.org/themes/twentytwentytwo/", "requires": "5.9", "sections": {"description": "Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwentytwo.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwentytwo.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwentytwo.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwentytwo.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentytwentytwo.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentytwentytwo.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentytwentytwo.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentytwentytwo.2.0.zip"}, "downloaded": 8347524, "num_ratings": 70, "preview_url": "https://wp-themes.com/twentytwentytwo/", "reviews_url": "https://wordpress.org/support/theme/twentytwentytwo/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.6", "creation_time": "2022-01-25 22:25:39", "download_link": "https://downloads.wordpress.org/theme/twentytwentytwo.2.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwentytwo/screenshot.png?ver=2.0", "active_installs": 200000, "aspiresync_meta": {"id": "019a30c0-15aa-71ae-8afa-a3c852182b32", "name": "Twenty Twenty-Two", "slug": "twentytwentytwo", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1744675200, "version": "2.0"}, "last_updated_time": "2025-04-15 13:27:33", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f8be-711d-91aa-2ed8f876770a', 'did:web:api.aspiredev.org:packages:wp-theme:vantage', 'vantage', 'Vantage', 'Vantage is a flexible multipurpose theme. Its strength lies in its tight integration with some powerful plugins like Page Builder for responsive page layouts, Smart Slider 3 for big beautiful sliders and WooCommerce to help you sell online. Vantage is fully responsive and retina ready. Use it to start a business site, portfolio or online store. We offer free support on our forum (https://siteorigin.com/thread/).', 'wp', 'wp-theme', 'GPL', '{"name": "Vantage", "slug": "vantage", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "SiteOrigin", "avatar": "https://secure.gravatar.com/avatar/c936acc8bcc60aa08303d15f12692319c15ef4c3b783c057abb0570fd1e0f2fb?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/siteorigin/", "author_url": "https://siteorigin.com/", "display_name": "SiteOrigin", "user_nicename": "siteorigin"}, "rating": 92, "status": "open", "ratings": {"1": 9, "2": 4, "3": 6, "4": 12, "5": 134}, "version": "1.20.32", "homepage": "https://wordpress.org/themes/vantage/", "requires": "4.7", "sections": {"description": "Vantage is a flexible multipurpose theme. Its strength lies in its tight integration with some powerful plugins like Page Builder for responsive page layouts, Smart Slider 3 for big beautiful sliders and WooCommerce to help you sell online. Vantage is fully responsive and retina ready. Use it to start a business site, portfolio or online store. We offer free support on our forum (https://siteorigin.com/thread/)."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/vantage.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/vantage.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/vantage.1.2.zip", "1.4": "https://downloads.wordpress.org/theme/vantage.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/vantage.1.5.zip", "1.7": "https://downloads.wordpress.org/theme/vantage.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/vantage.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/vantage.1.9.zip", "1.10": "https://downloads.wordpress.org/theme/vantage.1.10.zip", "1.11": "https://downloads.wordpress.org/theme/vantage.1.11.zip", "1.12": "https://downloads.wordpress.org/theme/vantage.1.12.zip", "1.13": "https://downloads.wordpress.org/theme/vantage.1.13.zip", "1.14": "https://downloads.wordpress.org/theme/vantage.1.14.zip", "1.0.1": "https://downloads.wordpress.org/theme/vantage.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/vantage.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/vantage.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/vantage.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/vantage.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/vantage.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/vantage.1.0.7.zip", "1.0.9": "https://downloads.wordpress.org/theme/vantage.1.0.9.zip", "1.1.1": "https://downloads.wordpress.org/theme/vantage.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/vantage.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/vantage.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/vantage.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/vantage.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/vantage.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/vantage.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/vantage.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/vantage.1.1.9.zip", "1.2.1": "https://downloads.wordpress.org/theme/vantage.1.2.1.zip", "1.2.3": "https://downloads.wordpress.org/theme/vantage.1.2.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/vantage.1.3.4.zip", "1.4.1": "https://downloads.wordpress.org/theme/vantage.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/vantage.1.4.2.zip", "1.4.4": "https://downloads.wordpress.org/theme/vantage.1.4.4.zip", "1.5.1": "https://downloads.wordpress.org/theme/vantage.1.5.1.zip", "1.5.3": "https://downloads.wordpress.org/theme/vantage.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/vantage.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/vantage.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/vantage.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/vantage.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/vantage.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/vantage.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/vantage.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/vantage.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/vantage.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/vantage.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/vantage.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/vantage.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/vantage.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/vantage.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/vantage.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/vantage.1.6.9.zip", "1.7.1": "https://downloads.wordpress.org/theme/vantage.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/vantage.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/vantage.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/vantage.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/vantage.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/vantage.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/vantage.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/vantage.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/vantage.1.7.9.zip", "1.8.1": "https://downloads.wordpress.org/theme/vantage.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/vantage.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/vantage.1.8.3.zip", "1.9.1": "https://downloads.wordpress.org/theme/vantage.1.9.1.zip", "1.0.10": "https://downloads.wordpress.org/theme/vantage.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/vantage.1.0.11.zip", "1.1.10": "https://downloads.wordpress.org/theme/vantage.1.1.10.zip", "1.1.11": "https://downloads.wordpress.org/theme/vantage.1.1.11.zip", "1.1.12": "https://downloads.wordpress.org/theme/vantage.1.1.12.zip", "1.10.1": "https://downloads.wordpress.org/theme/vantage.1.10.1.zip", "1.10.2": "https://downloads.wordpress.org/theme/vantage.1.10.2.zip", "1.11.1": "https://downloads.wordpress.org/theme/vantage.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/theme/vantage.1.11.2.zip", "1.11.3": "https://downloads.wordpress.org/theme/vantage.1.11.3.zip", "1.14.1": "https://downloads.wordpress.org/theme/vantage.1.14.1.zip", "1.14.2": "https://downloads.wordpress.org/theme/vantage.1.14.2.zip", "1.14.3": "https://downloads.wordpress.org/theme/vantage.1.14.3.zip", "1.14.4": "https://downloads.wordpress.org/theme/vantage.1.14.4.zip", "1.14.5": "https://downloads.wordpress.org/theme/vantage.1.14.5.zip", "1.15.0": "https://downloads.wordpress.org/theme/vantage.1.15.0.zip", "1.15.1": "https://downloads.wordpress.org/theme/vantage.1.15.1.zip", "1.15.2": "https://downloads.wordpress.org/theme/vantage.1.15.2.zip", "1.15.3": "https://downloads.wordpress.org/theme/vantage.1.15.3.zip", "1.15.4": "https://downloads.wordpress.org/theme/vantage.1.15.4.zip", "1.15.5": "https://downloads.wordpress.org/theme/vantage.1.15.5.zip", "1.15.6": "https://downloads.wordpress.org/theme/vantage.1.15.6.zip", "1.15.7": "https://downloads.wordpress.org/theme/vantage.1.15.7.zip", "1.16.0": "https://downloads.wordpress.org/theme/vantage.1.16.0.zip", "1.17.0": "https://downloads.wordpress.org/theme/vantage.1.17.0.zip", "1.17.1": "https://downloads.wordpress.org/theme/vantage.1.17.1.zip", "1.17.2": "https://downloads.wordpress.org/theme/vantage.1.17.2.zip", "1.17.3": "https://downloads.wordpress.org/theme/vantage.1.17.3.zip", "1.17.4": "https://downloads.wordpress.org/theme/vantage.1.17.4.zip", "1.18.0": "https://downloads.wordpress.org/theme/vantage.1.18.0.zip", "1.18.1": "https://downloads.wordpress.org/theme/vantage.1.18.1.zip", "1.19.0": "https://downloads.wordpress.org/theme/vantage.1.19.0.zip", "1.19.1": "https://downloads.wordpress.org/theme/vantage.1.19.1.zip", "1.19.2": "https://downloads.wordpress.org/theme/vantage.1.19.2.zip", "1.19.3": "https://downloads.wordpress.org/theme/vantage.1.19.3.zip", "1.19.4": "https://downloads.wordpress.org/theme/vantage.1.19.4.zip", "1.19.5": "https://downloads.wordpress.org/theme/vantage.1.19.5.zip", "1.19.6": "https://downloads.wordpress.org/theme/vantage.1.19.6.zip", "1.19.7": "https://downloads.wordpress.org/theme/vantage.1.19.7.zip", "1.19.8": "https://downloads.wordpress.org/theme/vantage.1.19.8.zip", "1.19.9": "https://downloads.wordpress.org/theme/vantage.1.19.9.zip", "1.20.0": "https://downloads.wordpress.org/theme/vantage.1.20.0.zip", "1.20.1": "https://downloads.wordpress.org/theme/vantage.1.20.1.zip", "1.20.2": "https://downloads.wordpress.org/theme/vantage.1.20.2.zip", "1.20.3": "https://downloads.wordpress.org/theme/vantage.1.20.3.zip", "1.20.4": "https://downloads.wordpress.org/theme/vantage.1.20.4.zip", "1.20.5": "https://downloads.wordpress.org/theme/vantage.1.20.5.zip", "1.20.6": "https://downloads.wordpress.org/theme/vantage.1.20.6.zip", "1.20.7": "https://downloads.wordpress.org/theme/vantage.1.20.7.zip", "1.20.8": "https://downloads.wordpress.org/theme/vantage.1.20.8.zip", "1.20.9": "https://downloads.wordpress.org/theme/vantage.1.20.9.zip", "1.7.10": "https://downloads.wordpress.org/theme/vantage.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/theme/vantage.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/theme/vantage.1.7.12.zip", "1.7.13": "https://downloads.wordpress.org/theme/vantage.1.7.13.zip", "1.7.14": "https://downloads.wordpress.org/theme/vantage.1.7.14.zip", "1.19.10": "https://downloads.wordpress.org/theme/vantage.1.19.10.zip", "1.19.11": "https://downloads.wordpress.org/theme/vantage.1.19.11.zip", "1.19.12": "https://downloads.wordpress.org/theme/vantage.1.19.12.zip", "1.19.13": "https://downloads.wordpress.org/theme/vantage.1.19.13.zip", "1.20.10": "https://downloads.wordpress.org/theme/vantage.1.20.10.zip", "1.20.11": "https://downloads.wordpress.org/theme/vantage.1.20.11.zip", "1.20.12": "https://downloads.wordpress.org/theme/vantage.1.20.12.zip", "1.20.13": "https://downloads.wordpress.org/theme/vantage.1.20.13.zip", "1.20.14": "https://downloads.wordpress.org/theme/vantage.1.20.14.zip", "1.20.15": "https://downloads.wordpress.org/theme/vantage.1.20.15.zip", "1.20.16": "https://downloads.wordpress.org/theme/vantage.1.20.16.zip", "1.20.17": "https://downloads.wordpress.org/theme/vantage.1.20.17.zip", "1.20.18": "https://downloads.wordpress.org/theme/vantage.1.20.18.zip", "1.20.19": "https://downloads.wordpress.org/theme/vantage.1.20.19.zip", "1.20.20": "https://downloads.wordpress.org/theme/vantage.1.20.20.zip", "1.20.21": "https://downloads.wordpress.org/theme/vantage.1.20.21.zip", "1.20.22": "https://downloads.wordpress.org/theme/vantage.1.20.22.zip", "1.20.23": "https://downloads.wordpress.org/theme/vantage.1.20.23.zip", "1.20.24": "https://downloads.wordpress.org/theme/vantage.1.20.24.zip", "1.20.25": "https://downloads.wordpress.org/theme/vantage.1.20.25.zip", "1.20.26": "https://downloads.wordpress.org/theme/vantage.1.20.26.zip", "1.20.27": "https://downloads.wordpress.org/theme/vantage.1.20.27.zip", "1.20.28": "https://downloads.wordpress.org/theme/vantage.1.20.28.zip", "1.20.29": "https://downloads.wordpress.org/theme/vantage.1.20.29.zip", "1.20.30": "https://downloads.wordpress.org/theme/vantage.1.20.30.zip", "1.20.31": "https://downloads.wordpress.org/theme/vantage.1.20.31.zip", "1.20.32": "https://downloads.wordpress.org/theme/vantage.1.20.32.zip"}, "downloaded": 3201217, "num_ratings": 165, "preview_url": "https://wp-themes.com/vantage/", "reviews_url": "https://wordpress.org/support/theme/vantage/reviews/", "is_community": false, "last_updated": "2025-08-04", "requires_php": "5.6.20", "creation_time": "2013-09-17 01:41:10", "download_link": "https://downloads.wordpress.org/theme/vantage.1.20.32.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/vantage/screenshot.jpg?ver=1.20.32", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-15ee-7221-bb86-1c71e03ff01c", "name": "Vantage", "slug": "vantage", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1754265600, "version": "1.20.32"}, "last_updated_time": "2025-08-04 18:50:22", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f8e6-720a-8e97-23cd0a2cfaa0', 'did:web:api.aspiredev.org:packages:wp-theme:variations', 'variations', 'Variations', 'Variations is a block theme and hopefully the last theme you will even have to install. It comes with many different templates and block patterns to make creating a website easy.', 'wp', 'wp-theme', 'GPL', '{"name": "Variations", "slug": "variations", "tags": {"one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "full-site-editing": "Block themes"}, "author": {"author": "Tyler Moore", "avatar": "https://secure.gravatar.com/avatar/debf186d53be73ad2d16a86b5676891b04c17b8031aa5c64cc085e5cd89d9bb0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/conutant/", "author_url": false, "display_name": "Tyler Moore", "user_nicename": "conutant"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 11}, "version": "4.4.0", "homepage": "https://wordpress.org/themes/variations/", "requires": "6.0", "sections": {"description": "Variations is a block theme and hopefully the last theme you will even have to install. It comes with many different templates and block patterns to make creating a website easy."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/variations.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/variations.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/variations.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/variations.1.0.3.zip", "2.0.0": "https://downloads.wordpress.org/theme/variations.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/variations.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/variations.2.0.2.zip", "3.0.0": "https://downloads.wordpress.org/theme/variations.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/variations.3.0.1.zip", "4.0.0": "https://downloads.wordpress.org/theme/variations.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/variations.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/variations.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/theme/variations.4.0.3.zip", "4.1.0": "https://downloads.wordpress.org/theme/variations.4.1.0.zip", "4.2.0": "https://downloads.wordpress.org/theme/variations.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/theme/variations.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/theme/variations.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/theme/variations.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/theme/variations.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/theme/variations.4.2.5.zip", "4.3.0": "https://downloads.wordpress.org/theme/variations.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/theme/variations.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/theme/variations.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/theme/variations.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/theme/variations.4.3.4.zip", "4.4.0": "https://downloads.wordpress.org/theme/variations.4.4.0.zip"}, "downloaded": 176947, "num_ratings": 11, "preview_url": "https://wp-themes.com/variations/", "reviews_url": "https://wordpress.org/support/theme/variations/reviews/", "is_community": false, "last_updated": "2025-04-14", "requires_php": "7.4", "creation_time": "2023-10-02 07:56:47", "download_link": "https://downloads.wordpress.org/theme/variations.4.4.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/variations/screenshot.png?ver=4.4.0", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-1638-73cc-a75b-f89a1a57fb3c", "name": "Variations", "slug": "variations", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1744588800, "version": "4.4.0"}, "last_updated_time": "2025-04-14 07:38:06", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f8fd-7307-a3ea-8cfd394800ab', 'did:web:api.aspiredev.org:packages:wp-theme:vertice', 'vertice', 'Vertice', 'Vertice is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Vertice is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', 'wp', 'wp-theme', 'GPL', '{"name": "Vertice", "slug": "vertice", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.76", "homepage": "https://wordpress.org/themes/vertice/", "requires": "5.8", "sections": {"description": "Vertice is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Vertice is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.3": "https://downloads.wordpress.org/theme/vertice.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/vertice.1.0.4.zip", "1.0.7": "https://downloads.wordpress.org/theme/vertice.1.0.7.zip", "1.0.11": "https://downloads.wordpress.org/theme/vertice.1.0.11.zip", "1.0.20": "https://downloads.wordpress.org/theme/vertice.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/vertice.1.0.21.zip", "1.0.25": "https://downloads.wordpress.org/theme/vertice.1.0.25.zip", "1.0.64": "https://downloads.wordpress.org/theme/vertice.1.0.64.zip", "1.0.69": "https://downloads.wordpress.org/theme/vertice.1.0.69.zip", "1.0.72": "https://downloads.wordpress.org/theme/vertice.1.0.72.zip", "1.0.73": "https://downloads.wordpress.org/theme/vertice.1.0.73.zip", "1.0.74": "https://downloads.wordpress.org/theme/vertice.1.0.74.zip", "1.0.76": "https://downloads.wordpress.org/theme/vertice.1.0.76.zip"}, "downloaded": 127673, "num_ratings": 0, "preview_url": "https://wp-themes.com/vertice/", "reviews_url": "https://wordpress.org/support/theme/vertice/reviews/", "is_community": false, "last_updated": "2025-04-15", "requires_php": "7.1", "creation_time": "2023-11-08 13:11:51", "download_link": "https://downloads.wordpress.org/theme/vertice.1.0.76.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/vertice/screenshot.jpg?ver=1.0.76", "active_installs": 9000, "aspiresync_meta": {"id": "019a30c0-1641-713e-936d-b63672112175", "name": "Vertice", "slug": "vertice", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1744675200, "version": "1.0.76"}, "last_updated_time": "2025-04-15 08:41:58", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f915-7139-b1d0-6cc748088f81', 'did:web:api.aspiredev.org:packages:wp-theme:woostify', 'woostify', 'Woostify', 'Woostify is fast, lightweight, responsive and super flexible WooCommerce theme built with SEO, speed, and usability in mind. The theme works great with any of your favorite page builder likes Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, etc. Therefore, you can build any type of websites like shop, business agencies, corporate, portfolio, education, university portal, consulting, church, restaurant, medical and so on. Woostify is compatible with all well-coded plugins, including major ones like WooCommerce, OrbitFox, Yoast, BuddyPress, bbPress, etc. Learn more about the theme and ready to import demo sites at https://woostify.com', 'wp', 'wp-theme', 'GPL', '{"name": "Woostify", "slug": "woostify", "tags": {"e-commerce": "E-commerce", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Woostify", "avatar": "https://secure.gravatar.com/avatar/a00b1a365dddc853a508c096cbb79b73fd7c2f027a931255b8b13225e820c178?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/duongancol/", "author_url": "https://woostify.com/about", "display_name": "Dylan Ngo - Woostify", "user_nicename": "duongancol"}, "rating": 98, "status": "open", "ratings": {"1": 1, "2": 1, "3": 0, "4": 3, "5": 120}, "version": "2.4.4", "homepage": "https://wordpress.org/themes/woostify/", "requires": "4.7", "sections": {"description": "Woostify is fast, lightweight, responsive and super flexible WooCommerce theme built with SEO, speed, and usability in mind. The theme works great with any of your favorite page builder likes Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, etc. Therefore, you can build any type of websites like shop, business agencies, corporate, portfolio, education, university portal, consulting, church, restaurant, medical and so on. Woostify is compatible with all well-coded plugins, including major ones like WooCommerce, OrbitFox, Yoast, BuddyPress, bbPress, etc. Learn more about the theme and ready to import demo sites at https://woostify.com"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/woostify.1.0.zip", "1.3": "https://downloads.wordpress.org/theme/woostify.1.3.zip", "1.0.1": "https://downloads.wordpress.org/theme/woostify.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/woostify.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/woostify.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/woostify.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/woostify.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/woostify.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/woostify.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/woostify.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/woostify.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/woostify.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/woostify.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/woostify.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/woostify.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/woostify.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/woostify.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/woostify.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/woostify.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/woostify.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/woostify.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/woostify.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/woostify.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/woostify.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/woostify.1.2.3.zip", "1.3.1": "https://downloads.wordpress.org/theme/woostify.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/woostify.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/woostify.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/woostify.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/woostify.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/woostify.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/woostify.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/woostify.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/woostify.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/woostify.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/woostify.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/woostify.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/woostify.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/woostify.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/woostify.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/woostify.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/woostify.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/woostify.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/woostify.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/woostify.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/woostify.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/woostify.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/woostify.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/woostify.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/woostify.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/woostify.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/woostify.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/woostify.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/woostify.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/woostify.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/woostify.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/woostify.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/woostify.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/woostify.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/woostify.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/woostify.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/woostify.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/woostify.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/woostify.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/woostify.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/woostify.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/woostify.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/woostify.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/woostify.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/woostify.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/woostify.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/woostify.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/woostify.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/woostify.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/theme/woostify.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/woostify.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/woostify.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/woostify.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/woostify.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/woostify.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/woostify.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/woostify.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/woostify.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/theme/woostify.1.8.9.zip", "1.9.0": "https://downloads.wordpress.org/theme/woostify.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/theme/woostify.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/theme/woostify.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/theme/woostify.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/theme/woostify.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/theme/woostify.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/theme/woostify.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/theme/woostify.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/theme/woostify.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/theme/woostify.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/theme/woostify.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/woostify.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/woostify.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/woostify.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/woostify.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/woostify.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/woostify.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/woostify.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/woostify.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/woostify.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/woostify.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/woostify.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/woostify.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/woostify.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/woostify.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/woostify.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/woostify.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/woostify.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/woostify.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/theme/woostify.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/theme/woostify.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/woostify.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/woostify.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/woostify.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/woostify.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/woostify.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/woostify.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/theme/woostify.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/theme/woostify.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/theme/woostify.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/theme/woostify.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/woostify.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/woostify.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/woostify.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/woostify.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/woostify.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/woostify.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/woostify.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/woostify.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/theme/woostify.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/theme/woostify.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/woostify.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/woostify.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/woostify.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/theme/woostify.2.4.4.zip"}, "downloaded": 740715, "num_ratings": 125, "preview_url": "https://wp-themes.com/woostify/", "reviews_url": "https://wordpress.org/support/theme/woostify/reviews/", "is_community": false, "last_updated": "2025-10-15", "requires_php": "7.3", "creation_time": "2019-02-27 10:22:09", "download_link": "https://downloads.wordpress.org/theme/woostify.2.4.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/woostify/screenshot.png?ver=2.4.4", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-1664-7246-82c9-147009f76174", "name": "Woostify", "slug": "woostify", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1760486400, "version": "2.4.4"}, "last_updated_time": "2025-10-15 06:46:55", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f92d-71d8-9816-1d6e316a849b', 'did:web:api.aspiredev.org:packages:wp-theme:yith-wonder', 'yith-wonder', 'YITH Wonder', 'Wonder is the new block-based, multi-purpose, WordPress theme by YITH. Compose your pages to fit any design you like with the power of Full Site Editing (FSE) and the included wide range of Block Patterns. The pre-built pages will help you populate and transform your website into a wonderful website. Customize colors and font pairings to create your own unique look and feel. Check out the demo site at https://wonder.yithemes.com/', 'wp', 'wp-theme', 'GPL', '{"name": "YITH Wonder", "slug": "yith-wonder", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "YITH", "avatar": "https://secure.gravatar.com/avatar/4e88fd6e6b929e4e97c69bf6597dabd50258795b67425576dd257bb72e508a6b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/yithemes/", "author_url": "https://yithemes.com/", "display_name": "YITHEMES", "user_nicename": "yithemes"}, "rating": 80, "status": "open", "ratings": {"1": 0, "2": 0, "3": 1, "4": 0, "5": 1}, "version": "2.1.1", "homepage": "https://wordpress.org/themes/yith-wonder/", "requires": "6.5", "sections": {"description": "Wonder is the new block-based, multi-purpose, WordPress theme by YITH. Compose your pages to fit any design you like with the power of Full Site Editing (FSE) and the included wide range of Block Patterns. The pre-built pages will help you populate and transform your website into a wonderful website. Customize colors and font pairings to create your own unique look and feel. Check out the demo site at https://wonder.yithemes.com/"}, "versions": {"0.1.8": "https://downloads.wordpress.org/theme/yith-wonder.0.1.8.zip", "0.1.9": "https://downloads.wordpress.org/theme/yith-wonder.0.1.9.zip", "1.0.0": "https://downloads.wordpress.org/theme/yith-wonder.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/yith-wonder.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/theme/yith-wonder.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/yith-wonder.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/yith-wonder.1.1.2.zip", "1.2.0": "https://downloads.wordpress.org/theme/yith-wonder.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/theme/yith-wonder.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/yith-wonder.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/yith-wonder.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/yith-wonder.1.3.3.zip", "2.0.0": "https://downloads.wordpress.org/theme/yith-wonder.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/theme/yith-wonder.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/yith-wonder.2.1.1.zip", "0.1.13": "https://downloads.wordpress.org/theme/yith-wonder.0.1.13.zip"}, "downloaded": 165778, "num_ratings": 2, "preview_url": "https://wp-themes.com/yith-wonder/", "reviews_url": "https://wordpress.org/support/theme/yith-wonder/reviews/", "is_community": false, "last_updated": "2025-04-09", "requires_php": "7.0", "creation_time": "2022-08-18 09:59:05", "download_link": "https://downloads.wordpress.org/theme/yith-wonder.2.1.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/yith-wonder/screenshot.jpg?ver=2.1.1", "active_installs": 60000, "aspiresync_meta": {"id": "019a30c0-16a7-72f7-801d-0b3114188f05", "name": "YITH Wonder", "slug": "yith-wonder", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1744156800, "version": "2.1.1"}, "last_updated_time": "2025-04-09 10:38:28", "external_support_url": false, "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30c3-f948-71ff-90de-f2bab063b6b3', 'did:web:api.aspiredev.org:packages:wp-theme:zakra', 'zakra', 'Zakra', 'Zakra is a powerful and versatile multipurpose theme that makes it easy to create beautiful and professional websites. With over free 40 pre-designed starter demo sites to choose from, you can quickly build a unique and functional site that fits your specific needs. Whether you''re launching a blog, news site, e-commerce store, showcasing your portfolio, building a business site, LMS, or niche-specific site (such as a cafe, spa, charity, yoga studio, wedding venue, dental practice, photography, restaurant, or educational institution), Zakra has everything you need to succeed. The theme integrates seamlessly with popular page builders like Elementor, Brizy, BlockArt, and the Gutenberg editor, giving you complete freedom to create any layout you can imagine. Importantly, Zakra is optimized for speed, features a mobile-first responsive design, is built with block-based technology, and is optimized for search engines. It is also compatible with a wide range of popular WordPress plugins, allowing you to extend its functionality as needed. Build your next project with Zakra today and see the difference for yourself. Check out all the starter sites at https://zakratheme.com/demos!', 'wp', 'wp-theme', 'proprietary', '{"name": "Zakra", "slug": "zakra", "tags": {"blog": "Blog", "news": "News", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemeGrill", "avatar": "https://secure.gravatar.com/avatar/b5b178b46e95643a63e3db65d40db4d6e09e60e45957316291fd5f798083e76b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themegrill/", "author_url": "https://themegrill.com", "display_name": "ThemeGrill", "user_nicename": "themegrill"}, "rating": 98, "status": "open", "ratings": {"1": 7, "2": 0, "3": 2, "4": 6, "5": 579}, "version": "4.1.8", "homepage": "https://wordpress.org/themes/zakra/", "requires": false, "sections": {"description": "Zakra is a powerful and versatile multipurpose theme that makes it easy to create beautiful and professional websites. With over free 40 pre-designed starter demo sites to choose from, you can quickly build a unique and functional site that fits your specific needs. Whether you''re launching a blog, news site, e-commerce store, showcasing your portfolio, building a business site, LMS, or niche-specific site (such as a cafe, spa, charity, yoga studio, wedding venue, dental practice, photography, restaurant, or educational institution), Zakra has everything you need to succeed. The theme integrates seamlessly with popular page builders like Elementor, Brizy, BlockArt, and the Gutenberg editor, giving you complete freedom to create any layout you can imagine. Importantly, Zakra is optimized for speed, features a mobile-first responsive design, is built with block-based technology, and is optimized for search engines. It is also compatible with a wide range of popular WordPress plugins, allowing you to extend its functionality as needed. Build your next project with Zakra today and see the difference for yourself. Check out all the starter sites at https://zakratheme.com/demos!"}, "versions": {"0.1.0": "https://downloads.wordpress.org/theme/zakra.0.1.0.zip", "0.2.0": "https://downloads.wordpress.org/theme/zakra.0.2.0.zip", "0.3.0": "https://downloads.wordpress.org/theme/zakra.0.3.0.zip", "0.4.0": "https://downloads.wordpress.org/theme/zakra.0.4.0.zip", "1.0.0": "https://downloads.wordpress.org/theme/zakra.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/zakra.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/zakra.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/zakra.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/zakra.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/zakra.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/zakra.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/zakra.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/zakra.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/zakra.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/zakra.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/zakra.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/zakra.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/zakra.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/zakra.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/zakra.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/zakra.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/zakra.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/zakra.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/zakra.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/zakra.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/zakra.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/zakra.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/zakra.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/zakra.1.2.4.zip", "1.3.0": "https://downloads.wordpress.org/theme/zakra.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/zakra.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/zakra.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/zakra.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/zakra.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/zakra.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/zakra.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/zakra.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/zakra.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/zakra.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/zakra.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/zakra.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/zakra.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/zakra.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/zakra.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/zakra.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/zakra.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/zakra.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/zakra.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/zakra.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/zakra.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/zakra.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/zakra.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/zakra.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/zakra.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/zakra.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/zakra.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/zakra.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/zakra.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/zakra.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/zakra.1.6.0.zip", "2.0.0": "https://downloads.wordpress.org/theme/zakra.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/zakra.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/zakra.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/zakra.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/zakra.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/zakra.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/zakra.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/zakra.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/zakra.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/zakra.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/zakra.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/zakra.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/zakra.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/zakra.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/zakra.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/zakra.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/zakra.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/zakra.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/zakra.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/theme/zakra.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/theme/zakra.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/zakra.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/zakra.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/zakra.2.2.3.zip", "3.0.0": "https://downloads.wordpress.org/theme/zakra.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/zakra.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/zakra.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/zakra.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/zakra.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/theme/zakra.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/theme/zakra.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/theme/zakra.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/theme/zakra.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/theme/zakra.3.0.9.zip", "4.0.0": "https://downloads.wordpress.org/theme/zakra.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/zakra.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/zakra.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/theme/zakra.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/theme/zakra.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/theme/zakra.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/theme/zakra.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/theme/zakra.4.0.7.zip", "4.1.0": "https://downloads.wordpress.org/theme/zakra.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/zakra.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/zakra.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/zakra.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/theme/zakra.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/theme/zakra.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/theme/zakra.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/theme/zakra.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/theme/zakra.4.1.8.zip", "3.0.10": "https://downloads.wordpress.org/theme/zakra.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/theme/zakra.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/theme/zakra.3.0.12.zip", "3.0.13": "https://downloads.wordpress.org/theme/zakra.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/theme/zakra.3.0.14.zip", "3.0.15": "https://downloads.wordpress.org/theme/zakra.3.0.15.zip", "3.0.16": "https://downloads.wordpress.org/theme/zakra.3.0.16.zip", "3.0.17": "https://downloads.wordpress.org/theme/zakra.3.0.17.zip", "3.0.18": "https://downloads.wordpress.org/theme/zakra.3.0.18.zip", "3.0.19": "https://downloads.wordpress.org/theme/zakra.3.0.19.zip", "3.0.20": "https://downloads.wordpress.org/theme/zakra.3.0.20.zip", "1.4.9.1": "https://downloads.wordpress.org/theme/zakra.1.4.9.1.zip", "1.5.9.1": "https://downloads.wordpress.org/theme/zakra.1.5.9.1.zip", "2.2.2.1": "https://downloads.wordpress.org/theme/zakra.2.2.2.1.zip", "3.0.0.1": "https://downloads.wordpress.org/theme/zakra.3.0.0.1.zip", "3.0.0.2": "https://downloads.wordpress.org/theme/zakra.3.0.0.2.zip", "3.0.0.3": "https://downloads.wordpress.org/theme/zakra.3.0.0.3.zip", "3.0.0.4": "https://downloads.wordpress.org/theme/zakra.3.0.0.4.zip", "3.0.0.5": "https://downloads.wordpress.org/theme/zakra.3.0.0.5.zip", "4.0.0.1": "https://downloads.wordpress.org/theme/zakra.4.0.0.1.zip", "4.0.0.2": "https://downloads.wordpress.org/theme/zakra.4.0.0.2.zip"}, "downloaded": 1969782, "num_ratings": 594, "preview_url": "https://wp-themes.com/zakra/", "reviews_url": "https://wordpress.org/support/theme/zakra/reviews/", "is_community": false, "last_updated": "2025-08-23", "requires_php": "7.4", "creation_time": "2019-01-15 07:37:11", "download_link": "https://downloads.wordpress.org/theme/zakra.4.1.8.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/zakra/screenshot.jpg?ver=4.1.8", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-1685-7315-adf8-57a791d16b4d", "name": "Zakra", "slug": "zakra", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1755907200, "version": "4.1.8"}, "last_updated_time": "2025-08-23 06:07:36", "external_support_url": "https://zakratheme.com/support/", "external_repository_url": ""}', '2025-10-29 16:19:01+00'); -INSERT INTO public.packages VALUES ('019a30d4-13bb-723e-ad25-bfdf9f61dae5', 'did:plc:afjf7gsjzsqmgc7dlhb553mv', 'git-updater', 'Git Updater', 'This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bi…', 'fair', 'wp-plugin', 'MIT', '{"id": "did:plc:afjf7gsjzsqmgc7dlhb553mv", "name": "Git Updater", "slug": "git-updater", "type": "wp-plugin", "authors": [{"url": "https://thefragens.com", "name": "Andy Fragen"}], "license": "MIT", "@context": "https://fair.pm/ns/metadata/v1", "filename": "git-updater-f27e06/git-updater.php", "keywords": ["theme", "language pack", "updater"], "releases": [{"version": "12.19.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.19.0", "checksum": "sha256:042f4b6b0679a0e05f5a7c31866666d6023f03f158d42e50341447017bf7761c", "signature": "7b-0Vhc-0UZNUiGBdt0TeusAsPVtaueC8vNzWHsfvuL2SXFvN1167fob1bepPxDUzfrab696uJQbcKgsVinDDQ", "content-type": "application/zip"}]}}, {"version": "12.18.1", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.18.1", "checksum": "sha256:df5500189a2496b5b9926140f736fa5a1412a6f8a24076e5b8916ca62b93cc69", "signature": "EpuafWIgTMKhzTv1TI9LJwWwY2fd4qXt03uySS7JEmZmZGM7Rpd_vmaQqFkF9S_ZfjBSr1KNrOtV7Grs8EsKAA", "content-type": "application/zip"}]}}, {"version": "12.18.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.18.0", "checksum": "sha256:926a9cdbc9cb541d474e97721edc7c9f5e807fb3a3561330408bb8c6f60efda8", "signature": "2ImwweAEBCS6JklvmAX0gY1b16hXTANDfajeIe23l88390DoOJyGCMWDu-JCgrer5dzoPR4dcCP_xReaIk6jCQ", "content-type": "application/zip"}]}}, {"version": "12.17.3", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.3", "checksum": "sha256:0bcbe37b55845c46f44a26b811e65644e2ea7d3667bc5d803aba253e68c9abe4", "signature": "Ja_jQpWxa1HbBANXfEODhaVabtwZh3gSISFspCnH4VRhAFRtuTzL_ocrK9YLiZt_5uRG-EYNUZCQ2GpIO1hlCA", "content-type": "application/zip"}]}}, {"version": "12.17.2", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.2", "checksum": "sha256:34cedaa6ce5a9117a648ef74e9ff0a078fe6233754df1c193832158400c4dc56", "signature": "E9dmnQeyns4zkEFdkoqgoP5ypZUYhSHgc4jCGIyAbbMsrBcU_Bz4BTz3TZ5FN0HFDLJHM72EsgnWn-v_kkyvDw", "content-type": "application/zip"}]}}, {"version": "12.17.1", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.1", "checksum": "sha256:2587fef3fe85a4105468fc1585bda7e3390fd7910139052241e0f6acb0937202", "signature": "UeQGZeLW-dBTjf4KmWPWOniAOuYtUOtM291LNfl1Z1Oe00fot9sch_2XMVCSdzm_1HVYWl9k-cbX1oNnjZMABg", "content-type": "application/zip"}]}}, {"version": "12.17.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.0", "checksum": "sha256:e5bfd517038b85d6bb7d69ce5167d178f8a38fe78914c2412f0e192804bfccd1", "signature": "xEukT1stXFmp0eLm7h5y53eNS96ySMxyeVZWFUEKjiDtVP1tOi_1h9EFV6ptlCfpHJ9pCIinlpGhH-jnd55tBQ", "content-type": "application/zip"}]}}, {"version": "12.16.1", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.16.1", "checksum": "sha256:7ff0fef82da2539e5fe2762588e60253936cfd7170af997d1827e573cf9a5070", "signature": "GClIU9t-edxT_Wlx0o28WIE4xvG4bpBunk6PLFuIBC_cwrjKGiWNtX5e1VsyrUl5Cvy2lPuwkR8vCljLFJI-Dw", "content-type": "application/zip"}]}}, {"version": "12.16.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.16.0", "checksum": "sha256:25525e2058abe3a2f116dea85749699fe7fe39232f89ebd2c95453f70c18272b", "signature": "bZaYNOXcZih-akRr5EnRUZs3l39LIblD10Tf9pqCzva_QDn3_ndGHfufLJKZ9FUhQFXltufhvB8OjC1VShgkDg", "content-type": "application/zip"}]}}, {"version": "12.15.1", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.15.1", "checksum": "sha256:6ba95944cc31e717caf723bc95efff1efcb1a878bd3aea9f2f6ef73c266523b4", "signature": "wIwghj8OxbbvvsMB4M4RF2R_Q9KyfG8Qqc84aqkRN6LNTUQ7ILUrBaMc8bJTxYzn0v-W9ff6QMjqzuqLiF_MCg", "content-type": "application/zip"}]}}, {"version": "12.15.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.15.0", "checksum": "sha256:b433ec009a7d2dafe4d3d4352011bf4d72eb702a35556d6f22b98ec296886d03", "signature": "J2Fy6lO8wojImtZxb_IK_KIxp52uzK46sqwIrtyfzwHQysoZFsCODidydLAJf7iCAW1dFIMCriamlTMZ-2GqDg", "content-type": "application/zip"}]}}, {"version": "12.14.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.14.0", "checksum": "sha256:866009f83ca2d44915fed955b4d5d550822269fa463ecec3e8e54ebd39e328c0", "signature": "D9wH1mQA3w0xn6PtXiwoc1TQxMvM3ZXVjJhN1LkH7o_wDRVrqDvMjx68jsYFdmUo-G1Pf_KnUiSXXV50GyGhDQ", "content-type": "application/zip"}]}}, {"version": "12.13.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.13.0", "checksum": "sha256:7b52d620e10f2b1deaedd9dcff84dece08a0a73f5568535a8f0ec1cd7f0eef28", "signature": "gScmNhlOblNNa5yMtNO_3JQFdP6tJj8Js1y9okesLGpDW9CQWYRn3ixI10JFbpzfdFnO2T5TnRk_m8GTdbFeBw", "content-type": "application/zip"}]}}, {"version": "12.12.1", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.12.1", "checksum": "sha256:416b8b06e200933b80a1c01734cc3bc1c4dd2229a26fe5d2e20adf6134d87bb2", "signature": "R4gPaVZDW-LncQ6Vw_DEK2mcVwanXHNIL05qs1BckpiXCqyetFACI57nRmIFsKVhQ-RgsRoSGBQbQJD4OOwiBA", "content-type": "application/zip"}]}}, {"version": "12.12.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.12.0", "checksum": "sha256:9902b69df2eff7a5db7852e9071783ea5f4959a32eae2599341652cd23d1ce28", "signature": "q4CW0TEbfge7gLzjY5swtzW7J9-4O8WkGhkruPHq92v6l2ub0aGKPxV9pLzLZ7Wt2utGIOWV8bRwncBYuE1HBQ", "content-type": "application/zip"}]}}, {"version": "12.11.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.11.0", "checksum": "sha256:e7401cb920b2ffb5adcd1fd4a4035ebb296a13f78af58a401a691d1091fe6040", "signature": "-dfw_XxHZv4B_OxxJLW9DnsFVqhYjUsZhT0e5pUydwxG9Ga7YtigEeWOVnKVtXRY1Wk-f4xxCF018_PAGd-aAw", "content-type": "application/zip"}]}}, {"version": "12.10.1", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.10.1", "checksum": "sha256:5ab2379a0fd70c650001915e74ffd953f05028599e7b8ccc476f7b97b988997b", "signature": "iq7hXh4SDRbFAUWAUnJdHLpuUq_ytSarAWm7ZL62l-M801frHr0x3f47PPpUUig3bC53KUccS2EBJvreOtA1Dw", "content-type": "application/zip"}]}}, {"version": "12.10.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.10.0", "checksum": "sha256:ebd4c0071910538097043233303d3ea74de7b69cb2ea4102645198f77b065d6c", "signature": "RcHgWum3loMgZhCoZQYtqqcj3Ne0nlwSVY3uzhIVjYNvIXG5KguLSCtCJN0_sFfrsLUUue9pzhf6IaFd7znTAA", "content-type": "application/zip"}]}}, {"version": "12.9.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.9.0", "checksum": "sha256:bd722f6e88a4160a64dae4065065414d3008eec294e0a220fe6dabe90e620af0", "signature": "I3CEq8dStGWfE3Gq81PwxDK1jRRq88ceiE9hD7_AnZ5lLnC9bEUF7jihThpHodfQu-v9vrqkIa-M0dLg3vcTDw", "content-type": "application/zip"}]}}, {"version": "12.8.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.8.0", "checksum": "sha256:a5cc2781eb3c2a03fe72619133f7deffc68f68948e5b3bfa675dafbb2da449eb", "signature": "Vsw2XOUu_n7TFFbtcIC7u_Zjtcy-YoazEm-OFbEilA9qkxt_L31HJh3moxjCxas9S-m02kcpdD8cbQh_ghg0Bw", "content-type": "application/zip"}]}}, {"version": "12.7.2", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.7.2", "checksum": "sha256:6df2cadb415f94dd90c71a14c26a1164c95af8a5922b64aa0c5efe6fcda8a17c", "signature": "C6KW1BfjbY4rQNAezKe_4aWEDDvF0Tp1Vvw4w8lO63w29ZeQg16THVQiR40cAwvFFluBbBNArM0FfUrOu--pBg", "content-type": "application/zip"}]}}, {"version": "12.7.1", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.7.1", "checksum": "sha256:39f6b423e1cc12849a42ce0d8ef2b9bfc653db74bd837a02817f9a39d893e899", "signature": "mb2CHQd1k_yrHmaMdtrwfCe1cqvEEaUEV4OFNZpRajJ8z2h-1sVJ1XoCURoJPwqB3Cyrn-O_imm69i0gG-6IAg", "content-type": "application/zip"}]}}, {"version": "12.7.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.7.0", "checksum": "sha256:9ff570c44b3bc31389d7e670c425a72eb26e7eeb313601ba70d8c66becb17486", "signature": "RccMJbYtdKl7Abp5esy18YceBeKtQIQ8SvFyIRccTgK4hssWEmMyfURahO6zMG_pYwJCfBlQ26dqOg7msyW7BQ", "content-type": "application/zip"}]}}, {"version": "12.6.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.6.0", "checksum": "sha256:9cc2f57beed959cd67ea2a4a74636ea89b6693c44e4e16e9beb6055077f5866d", "signature": "v8JUKsokDtQlmRvlAXCsh1DdhS7B8K41KKmVyq0rDoQTmm2p0RmfPEVhDfFc7vooUf4A19Ut8fCJ1GAeJN4JAQ", "content-type": "application/zip"}]}}, {"version": "12.5.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.5.0", "checksum": "sha256:78cf094078c4882193e6daae231d2e9c9708e99ac60246f1057bae6fb01cecf6", "signature": "aoOYcsKaT0yQz1CGncH-SndXH-MUodPjNxtQItMV6HcNohDv-AWIzHgtJsO2CbpkCteSLIMtbrYp0o9pEt93Ag", "content-type": "application/zip"}]}}, {"version": "12.4.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.4.0", "checksum": "sha256:d9eb08a1e78679361031fecae00f397df689752365f8a63fe72e5d762c43abcf", "signature": "6RNj0S_OiXualC5sVoraLlBSJIdmKgdYLnqINc2rTzWGOHopS124TpZgYeOQPZIk5Ppcp05TXp7g0m2MbBSACg", "content-type": "application/zip"}]}}, {"version": "12.3.1", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.3.1", "checksum": "sha256:6cf1fec44679f6e8767af53503183c80fa74d687d461ad8d935bf0a3190f0d42", "signature": "fAgNsi0MylCHk9qkbtuDSUlFNpwlUUI2mabkZDmkCfK6Fqy0O04GIQrg3S57SL9tdP9amAwwHvRhH_nLyQTgBw", "content-type": "application/zip"}]}}, {"version": "12.3.0", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.3.0", "checksum": "sha256:980fe5a81ae2c767fdb7e79385627230c505899fe4a59c07b71a633b70704243", "signature": "UgdZ33qYxmg8Qa4AFmtS8Aaha3ylA9_Wn3r-cevT1YcIfHA_VamZdD_ZBgloa0umgniqDRGT5vVA8h12wzmZDQ", "content-type": "application/zip"}]}}, {"version": "12.2.3", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.2.3", "checksum": "sha256:a74ead3807d36186015bbdcd126cfdd598237134f1d1c5f287723d367fc62ddd", "signature": "A1t2aGWRRkUCx1Y7yds9FN1wV9TQC3CDOd1gpzV1bCyF0slWO1Vr2qhnPrAI6GoLHKl8eX9vvfxUi4AVq2rjAw", "content-type": "application/zip"}]}}, {"version": "12.2.2", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=8.0"}, "suggests": {"env:wp": ">=6.9.3"}, "artifacts": {"icon": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "banner": [{"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "width": 772, "height": 250, "content-type": "image/png"}, {"url": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png", "width": 1544, "height": 500, "content-type": "image/png"}], "package": [{"url": "https://api.github.com/repos/afragen/git-updater/zipball/12.2.2", "checksum": "sha256:228e7bdfa6360b76e3f518754be6a529edf7c643283fb1725c7246bc22efaca5", "signature": "urEIAg0KbpLQG_1LiVl4BoO4KEvG3_KA0YPKMEHFSI14oH5z_xpD_mssXVpZ4nJcoX5kwQPeY39nbkrbegZ6BQ", "content-type": "application/zip"}]}}], "sections": {"faq": "

    Knowledge Base

    \n

    Comprehensive information regarding Git Updater is available in the Knowledge Base.

    \n

    Slack

    \n

    We now have a Slack team for Git Updater. Please click here for an invite. You will be automatically added to the #general and #support channels. Please take a look at other channels too.

    \n

    Translations

    \n

    If you are a polyglot I would greatly appreciate translation contributions to GlotPress for Git Updater.

    \n", "changelog": "

    [unreleased]

    \n

    12.19.0 / 2025-09-29

    \n
      \n
    • setup for Gitea release assets
    • \n
    • use mcaskill/composer-exclude-files to exclude autoload of freemius/wordpress-sdk/start.php
    • \n
    • harden parse_meta_response()
    • \n
    • modify dot org check for package added to mirror like AspireCloud
    • \n
    • don''t overwrite requires and requires_php data from readme.txt if already exists
    • \n
    • correctly parse for multiple release assets per release
    • \n
    • update POT GitHub Action
    • \n
    • refactor add_accept_header()
    • \n
    • set release_assets and release_asset_download for latest release asset
    • \n
    \n

    12.18.1 / 2025-08-06

    \n
      \n
    • data check on release assets
    • \n
    \n

    12.18.0 / 2025-08-04

    \n
      \n
    • update cache delete and don''t use wp_cache_flush
    • \n
    • always show download link in REST endpoint
    • \n
    • improved reverse sort for branch/tag versions
    • \n
    • get all release assets from GitHub API and pick release asset download from release assets array, other APIs get latest release asset only
    • \n
    • update parse_tag() and sort_tags()
    • \n
    • update branch switching tags
    • \n
    \n

    12.17.3 / 2025-07-31

    \n
      \n
    • add new Security header with value of email or URI
    • \n
    \n

    12.17.2 / 2025-07-26

    \n
      \n
    • update GU_Freemius for FAIR installation
    • \n
    \n

    12.17.1 / 2025-07-20

    \n
      \n
    • add remote data for did, slug_hash if added via Additions
    • \n
    • use Bearer for token with GitHub API
    • \n
    \n

    12.17.0 / 2025-07-14

    \n
      \n
    • un-escape stuff, more uses of use
    • \n
    • add License header info
    • \n
    • add Update URI header info
    • \n
    • add get_did_hash() to get hash of DID
    • \n
    • add get_file_without_did_hash()
    • \n
    • simplify check for rename_on_activation()
    • \n
    • update freemius/wordpress-sdk
    • \n
    \n

    12.16.1 / 2025-06-12

    \n
      \n
    • add DID
    • \n
    • update rollback sort
    • \n
    • update banner image
    • \n
    \n

    12.16.0 / 2025-06-09

    \n
      \n
    • change callback from new REST_API() to $this
    • \n
    • collect Author URI from headers.
    • \n
    • add action hook to Base::get_remote_repo_meta
    • \n
    • get all versions of release assets, similar to tags/rollbacks
    • \n
    • add compatibility check for AspireUpdate and FAIR Package Manager
    • \n
    \n

    12.15.1 / 2025-05-20

    \n
      \n
    • update stability of composer requirements
    • \n
    \n

    12.15.0 / 2025-05-20

    \n
      \n
    • update to correct format of readme tags
    • \n
    • add correctly formated date/time for update-api REST endpoint
    • \n
    • remove deprecated hooks from v10 and earlier
    • \n
    • add error checking to parse_contents_response()
    • \n
    • update Freemius/wordpress-sdk
    • \n
    • add support for Plugin ID and Theme ID headers for FAIR
    • \n
    • update composer.json
    • \n
    \n

    12.14.0 / 2025-02-26

    \n
      \n
    • make sure proper release asset headers are added even if access token not set
    • \n
    • ensure short description is 150 characters or less
    • \n
    \n

    12.13.0 / 2025-02-21

    \n
      \n
    • update caching
    • \n
    • add versions to REST endpoint for {plugins|themes|update}-api
    • \n
    • update generate POT workflow
    • \n
    \n

    12.12.1 / 2025-02-12

    \n
      \n
    • revert uninstall back to Freemius
    • \n
    \n

    12.12.0 / 2025-02-10

    \n
      \n
    • save source with Additions
    • \n
    • update Additions::deduplicate()
    • \n
    • update Base::upgrader_source_selection() rename to allow for AJAX installation, thanks @costdev
    • \n
    • add git-updater-collectionsto Add-Ons
    • \n
    • make list table show all elements
    • \n
    • add Private Package option for Additions, these private packages are not to be shared with aggregators
    • \n
    • switch to standard uninstall.php as issue with calling Freemius during their after_uninstall hook
    • \n
    • add early exit in get_repo_slugs() during AJAX installation for Add-Ons
    • \n
    • remove soft match in get_repo_slugs()
    • \n
    • removed Add_Ons::upgrader_source_selection no longer needed
    • \n
    • save/export tags from readme.txt for REST endpoint
    • \n
    \n

    12.11.0 / 2025-02-02

    \n
      \n
    • update Additions to add additional listings
    • \n
    • more updates for possibly passing null
    • \n
    • update REST_API::get_api_data
    • \n
    • update Theme to add theme_uri to update transient
    • \n
    • update to pass complete data for multiple uses of gu_additions hook
    • \n
    \n

    12.10.1 / 2025-01-30

    \n
      \n
    • fix issue with release asset
    • \n
    • add guard to Add-Ons
    • \n
    • remove git-updater-federation from Add-Ons
    • \n
    \n

    12.10.0 / 2025-01-29

    \n
      \n
    • refactor Add_Ons to use plugins-api REST endpoint and standard plugin card
    • \n
    • added features by @costdev for AJAXifying
    • \n
    • added parsing of Update URI and Requires Plugins headers
    • \n
    • increase requirements to PHP 8+
    • \n
    • added REST endpoint to export data from Additions
    • \n
    • added REST endpoint to export Update API data from Additions
    • \n
    • update Freemius/wordpress-sdk
    • \n
    • change ''API Add-Ons'' to ''Add-Ons''
    • \n
    \n

    12.9.0 / 2025-01-07

    \n
      \n
    • add API get for repo root contents for efficiency
    • \n
    • add feature to virtually add repos via Additions tab to server REST update-api endpoint
    • \n
    • switch to getting most data via API calls and not from locally installed files
    • \n
    • add REST endpoint to individually flush repo cache
    • \n
    • fix Basic_Auth_Loader::get_slug_for_credentials() to get slug for gist
    • \n
    • update $release_asset_parts in Basic_Auth_Loader::unset_release_asset_auth() for AWS download link
    • \n
    • improved release asset handling
    • \n
    \n

    12.8.0 / 2024-12-21

    \n
      \n
    • update GitHub release asset parsing
    • \n
    • update REST_API for Bitbucket update link
    • \n
    • update REST_API for update-api route
    • \n
    \n

    12.7.2 / 2024-12-18

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • use mcaskill/composer-exclude-files to exclude autoloading start.php from Freemius, issues arise
    • \n
    • update REST_API::get_api_data() to always get current release asset redirect as appropriate
    • \n
    \n

    12.7.1 / 2024-12-02

    \n
      \n
    • use get_file_date() to return plugin version
    • \n
    • fix API::get_dot_org_data() to work with WPE mirror
    • \n
    \n

    12.7.0 / 2024-11-30

    \n
      \n
    • fix missing/incorrect textdomains
    • \n
    • look for __() functions loading in hooks before init
    • \n
    • remove load_plugin_textdomain()
    • \n
    • add git host icon to single site theme description
    • \n
    • don''t save to GitHub.com access token from single repo remote install
    • \n
    • fix PHP 8.1 creation dynamic variable from class REST_API
    • \n
    • update REST API response to return plugins_api() or themes_api() style response
    • \n
    \n

    12.6.0 / 2024-10-13

    \n
      \n
    • check existence of FS__RESOLVE_CLONE_AS before setting
    • \n
    • add filter hook gu_api_domain to set domain for default API updating
    • \n
    • add filter hook gu_ignore_dot_org to completely ignore updates from dot org. Works as if every plugin/theme is in the gu_override_dot_org hook
    • \n
    \n

    12.5.0 / 2024-08-16

    \n
      \n
    • update class-parser.php
    • \n
    • update Requires PHP to 7.4 for class-parser.php
    • \n
    • update Requires WP to 5.9
    • \n
    • update freemius/wordpress-sdk
    • \n
    • update printf() in class Branches
    • \n
    • fix old git-updater-pro and git-updater-additions textdomains
    • \n
    • update Base::upgrader_source_selection() when trying to update $source and $new_source when destination directories are identical
    • \n
    • remove unused parameters in certain functions
    • \n
    \n

    12.4.0 / 2024-03-04

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • update class-parser.php
    • \n
    • use is_wp_version_compatible() and is_php_version_compatible() in GU_Trait::can_update_repo()
    • \n
    • update gu-loader.php with generic loader
    • \n
    • update Readme_Parser::trim_length
    • \n
    \n

    12.3.1 / 2023-10-19

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • WPCS 3.0.0 linting
    • \n
    • popup on icon for "Updates via Git Updater", thanks @BrianHenryIE
    • \n
    \n

    12.3.0 / 2023-08-10

    \n
      \n
    • update Bitbucket Add-on message for consistency
    • \n
    • ensure Shim available during register_activation_hook()
    • \n
    • add conditional to get_remote_api_branches() to ensure $response is not a scalar
    • \n
    • use null coalescing operator
    • \n
    • update for PHP 8.2
    • \n
    \n

    12.2.3 / 2023-06-27

    \n
      \n
    • composer update
    • \n
    • get gu_disable_cron hook result once per repository
    • \n
    • ensure git class is instantiated when checking waiting_for_background_update()
    • \n
    • add check for $response->error to API::validate_response()
    • \n
    • update freemius/wordpress-sdk to 2.5.10
    • \n
    \n

    12.2.2 /2023-05-22

    \n
      \n
    • add back Network only activate for multisite, may cause issue where post-license activation Freemius doesn''t re-direct to network admin
    • \n
    • update anonymous functions as static functions for better performance
    • \n
    • composer update
    • \n
    \n

    12.2.1 / 2023-04-21

    \n
      \n
    • ensure $wp_filesystem set for Bootstrap::rename_on_activation()
    • \n
    • uninstall tested to function correctly
    • \n
    \n

    12.2.0 / 2023-04-20

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • update afragen/wp-dismiss-notice
    • \n
    • don''t save unused data from API_Common::parse_release_asset()
    • \n
    • don''t use Freemius uninstall, use previous uninstall.php
    • \n
    • more PHP 8.2 compatibility
    • \n
    • composer update
    • \n
    • update REST_API::get_plugins_api_data() to return response without download link using boolean value in download query arg
    • \n
    • hide Freemius menus with gu_hide_settings filter
    • \n
    • more specific hiding of Git Updater settings
    • \n
    \n

    12.1.3 / 2023-03-20

    \n
      \n
    • improved setting/default of $options[''bypass_background_processing'']
    • \n
    • improved setting/default of $options[''branch_switch'']
    • \n
    • display upgrade notice on update-core.php
    • \n
    • composer update afragen/singleton for PHP 8.2 compat
    • \n
    \n

    12.1.2 / 2023-02-08

    \n
      \n
    • fix for webhook updating issue if $branches not defined, thanks @awunsch
    • \n
    \n

    12.1.1 / 2023-02-07

    \n
      \n
    • remove force of Network activation, messes up Freemius license activation on multisite
    • \n
    • composer update
    • \n
    \n

    12.1.0 / 2023-02-06

    \n
      \n
    • further limit log of HTTP errors, trying for only once per plugin
    • \n
    • eliminate Freemius clone resolution popup
    • \n
    • update Shim:move_dir() for improved error messaging
    • \n
    • update comparison in Base::upgrader_source_selection of $source and $new_source
    • \n
    \n

    12.0.4 / 2023-01-27

    \n
      \n
    • update to use str_contains()
    • \n
    • log HTTP errors only hourly
    • \n
    • update Shim::move_dir() to exit early if source and destination differ only by case or trailing slash
    • \n
    \n

    12.0.3 / 2023-01-19

    \n
      \n
    • update Shim for move_dir() and wp_opcache_invalidate_directory()
    • \n
    • composer update
    • \n
    \n

    12.0.2 / 2023-01-12

    \n
      \n
    • PHP 8.1 compatibility fix, thanks @chesio
    • \n
    • other PHP 8.1 fixes
    • \n
    • declare class API variable $type, avoid future PHP issues, thanks @chesio
    • \n
    \n

    12.0.1 / 2023-01-02

    \n
      \n
    • cleanup parsing of GitHub release assets
    • \n
    • composer update to fix dependency conflict
    • \n
    \n

    12.0.0 / 2022-12-12

    \n
      \n
    • ensure $wp_filesystem is available
    • \n
    • re-integrate Git Updater PRO
    • \n
    • integrate Git Updater Additions
    • \n
    • add git logo to subtab, hide for now
    • \n
    • load API tabs of installed/active API plugins
    • \n
    • set Git Updater to auto-update with new $db_version
    • \n
    • replace Appsero SDK with Freemius SDK
    • \n
    • suspend Freemius plugin updating for Git Updater
    • \n
    • fix uninstall.php for Freemius
    • \n
    ", "description": "

    This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket, GitLab, Gitea, or Gist are also supported via additional API plugins. Additionally, self-hosted git servers are supported.

    \n

    Your plugin or theme must contain a header in the style.css header or in the plugin''s header denoting the location on GitHub. The format is as follows.

    \n
    GitHub Plugin URI: afragen/git-updater\nGitHub Plugin URI: https://github.com/afragen/git-updater
    \n

    or

    \n
    GitHub Theme URI: afragen/test-child\nGitHub Theme URI: https://github.com/afragen/test-child
    \n

    ...where the above URI leads to the owner/repository of your theme or plugin. The URI may be in the format https://github.com/<owner>/<repo> or the short format <owner>/<repo>. You do not need both. Only one Plugin or Theme URI is required. You must not include any extensions like .git.

    \n

    API Plugins

    \n

    API plugins for Bitbucket, GitLab, Gitea, and Gist are available. API plugins are available for a one-click install from the Add-Ons tab.

    \n\n

    Sponsor

    \n

    Purchase a license at the Git Updater Store. An unlimited yearly license is very reasonable and allows for authenticated API requests. There is an initial free trial period. After the trial period Git Updater will not be able to make authenticated API requests.

    \n

    You can sponsor me on GitHub to help with continued development and support.

    \n

    Headers

    \n

    The following headers are available for use depending upon your hosting source.

    \n

    GitHub

    \n
      \n
    • GitHub Plugin URI
    • \n
    • GitHub Theme URI
    • \n
    • GitHub Languages
    • \n
    ", "installation": "

    Go to git-updater.com to download and install the latest version.

    "}, "security": [{"email": "andy+security@git-updater.com"}], "description": "This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bi…", "last_updated": "2025-10-03T17:49:21Z"}', '2025-10-29 16:36:36+00'); -INSERT INTO public.packages VALUES ('019a30d4-13f1-7287-929c-80eedc16f284', 'did:plc:deoui6ztyx6paqajconl67rz', 'handbook-callout-blocks', 'Handbook Callout Blocks', 'The make.wordpress.org blog has wonderful callout blocks but they seem to be baked in as part of the WP.org Handbook plugin. -I was able to …', 'fair', 'wp-plugin', 'GPL-2.0-or-later', '{"id": "did:plc:deoui6ztyx6paqajconl67rz", "name": "Handbook Callout Blocks", "slug": "handbook-callout-blocks", "type": "wp-plugin", "authors": [{"url": "", "name": "WordPress.org, Andy Fragen"}], "license": "GPL-2.0-or-later", "@context": "https://fair.pm/ns/metadata/v1", "filename": "handbook-callout-blocks/handbook.php", "keywords": ["wporg", "handbook", "callout"], "releases": [{"version": "1.0.3", "provides": [], "requires": {"env:wp": ">=5.9", "env:php": ">=7.4"}, "suggests": {"env:wp": ">=6.7.3"}, "artifacts": {"icon": [{"url": "https://s.w.org/plugins/geopattern-icon/handbook-callout-blocks.svg", "width": null, "height": null, "content-type": "image/svg+xml"}], "package": [{"url": "https://api.github.com/repos/afragen/handbook-callout-blocks/releases/assets/274184925", "checksum": "sha256:ba666936639055715ac4f291e8e9b724272cdb5d765f2917eab80f80285f60ff", "signature": "oNxVBR5ojmHbiqKumkz0yCnCyFtcKut_C4aYGziMeL8jaPsigrL5FwSTW5KjXWQ6jUiWZKXmWdhrXNfRKnUXCw", "content-type": "application/octet-stream"}]}}], "sections": {"changelog": "

    [unreleased]

    \n
      \n
    • add support for core/list
    • \n
    • refactor for current standards and practices courtesy of @Clorith
    • \n
    • make editor padding match
    • \n
    • load dashicons for non-logged in users
    • \n
    • initial release
    • \n
    • add composer.json
    • \n
    ", "description": "

    The make.wordpress.org blog has wonderful callout blocks but they seem to be baked in as part of the WP.org Handbook plugin.

    \n

    I was able to strip out the relevant parts of the Handbook plugin retaining only the callout blocks.

    \n

    Special Thanks

    \n
      \n
    • @Ipstenu for her terrific sleuthing skills.
    • \n
    • @Clorith for bringing code up to current standards and best practices.
    • \n
    "}, "security": [], "description": "The make.wordpress.org blog has wonderful callout blocks but they seem to be baked in as part of the WP.org Handbook plugin.\nI was able to …", "last_updated": "2025-07-18T18:57:54Z"}', '2025-10-29 16:36:36+00'); - - --- --- Data for Name: password_reset_tokens; Type: TABLE DATA; Schema: public; Owner: postgres --- - - - --- --- Data for Name: permissions; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.permissions VALUES (1, 'admin.use', 'web', '2025-10-29 15:49:04+00', '2025-10-29 15:49:04+00'); -INSERT INTO public.permissions VALUES (2, 'admin.bulk-import', 'web', '2025-10-29 15:49:04+00', '2025-10-29 15:49:04+00'); - - --- --- Data for Name: personal_access_tokens; Type: TABLE DATA; Schema: public; Owner: postgres --- - - - --- --- Data for Name: plugin_authors; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.plugin_authors VALUES ('019a30a8-91a6-73c5-aeae-e6937c7ccc93', '019a30a8-91aa-713a-8f33-bcb5340fe030'); -INSERT INTO public.plugin_authors VALUES ('019a30a8-91a6-73c5-aeae-e6937c7ccc93', '019a30a8-91ac-713b-a8c1-3ce852fb23f5'); -INSERT INTO public.plugin_authors VALUES ('019a30a8-91a6-73c5-aeae-e6937c7ccc93', '019a30a8-91ae-71e0-a3aa-4e7dcf9b6f41'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-6382-7322-ae5d-e0b6a1f0f828'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-6383-705d-945b-63c3a6137920'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-6384-73db-bb6a-fd0216d089da'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-6384-73db-bb6a-fd0217c0ea67'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-6385-70e2-8ba7-2ffb09914470'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-6385-70e2-8ba7-2ffb09d7caf5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-6386-700d-b09a-cabbcd4a490e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-6386-700d-b09a-cabbce4405a6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-6387-7167-a527-888aee6b45e8'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-6399-7250-b614-0dc5a52608cf'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-6399-7250-b614-0dc5a6147f77'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639a-710a-a801-88e8700b7d06'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639a-710a-a801-88e870f75d34'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639b-724c-938a-bc4c51afdb66'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639b-724c-938a-bc4c5263e875'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639c-71ce-a1e6-a73cdaf7d849'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639d-723f-80a6-6397a16dc08f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639d-723f-80a6-6397a2455acb'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639e-709f-8bb2-d465f2ac14da'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639e-709f-8bb2-d465f2e23e9c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639f-735f-bb2c-b2c8bb9fbb0a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-639f-735f-bb2c-b2c8bbcb7e95'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-63a1-7102-b0b4-8756435aba07'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-63a1-7102-b0b4-875643cc1d80'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-63a2-73cf-af94-4e23ce063ef0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-63a2-73cf-af94-4e23ce1abc4e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-63a3-722b-813b-7ae0debb24ca'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63b0-7066-953d-939d00afa5a2', '019a30c1-63b5-709d-a8c4-0e197177eb85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63b0-7066-953d-939d00afa5a2', '019a30c1-63b6-7350-b1ff-55f64d8e81a2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63b0-7066-953d-939d00afa5a2', '019a30c1-63b6-7350-b1ff-55f64e7272c7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63bc-7296-920a-e7de4e08fa5d', '019a30c1-63c1-73ef-8acc-68bffee1b11f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63bc-7296-920a-e7de4e08fa5d', '019a30c1-63c1-73ef-8acc-68bfff1e28c5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63bc-7296-920a-e7de4e08fa5d', '019a30c1-63c2-7240-be86-73e92cdabb61'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63ce-73ca-b787-bea7ddd7badd'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63ce-73ca-b787-bea7de077a61'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63cf-71cb-b3c7-32d5b3ee6f41'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63cf-71cb-b3c7-32d5b49eda27'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63d0-733a-a3d1-77d700669ed2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63d0-733a-a3d1-77d700680232'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63d1-7271-aaae-7a2183c9ef1d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63db-7285-8847-e25669aff82f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63dc-701f-8362-2a5699981c94'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63dc-701f-8362-2a569a641ddc'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63dd-739d-980c-997d7e174dfe'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63dd-739d-980c-997d7e54ad3f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63de-72a8-92a1-161900265ea3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63df-7338-9b51-d7076f7be58a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63df-7338-9b51-d707706c4e80'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63e0-70e4-a215-0df9183f1947'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63e6-7297-a6f2-0cb58bdc7a41', '019a30c1-63eb-7299-8a7e-6dc79759a125'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63f0-7336-985d-b9af25cc51b1', '019a30c1-63f5-70c2-9152-cb3776f540ff'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63f0-7336-985d-b9af25cc51b1', '019a30c1-63f6-700c-bd48-a2a767bcf832'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63f0-7336-985d-b9af25cc51b1', '019a30c1-63f6-700c-bd48-a2a768490f4a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63f0-7336-985d-b9af25cc51b1', '019a30c1-63f7-7251-b802-f706a3bdca0c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63fc-72f5-8144-3350a9793891', '019a30c1-6384-73db-bb6a-fd0216d089da'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63fc-72f5-8144-3350a9793891', '019a30c1-6384-73db-bb6a-fd0217c0ea67'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-63fc-72f5-8144-3350a9793891', '019a30c1-6387-7167-a527-888aee6b45e8'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6406-72dc-8044-191babf552a8', '019a30c1-640b-7179-aeb1-d966acdd7eba'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6406-72dc-8044-191babf552a8', '019a30c1-640c-715b-ae00-b2eb7608b57f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6406-72dc-8044-191babf552a8', '019a30c1-640c-715b-ae00-b2eb761de93d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6406-72dc-8044-191babf552a8', '019a30c1-640d-72c7-890d-5952a82d5082'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6412-70b7-9aca-9702ae31de55', '019a30c1-6417-7328-860e-b7356e2f4908'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6412-70b7-9aca-9702ae31de55', '019a30c1-6417-7328-860e-b7356e7566ed'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-641e-70f1-82a7-356d12f1ba9c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-641f-71cf-8cbb-e24eb9b8ff75'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-6420-7361-a3a7-360c014b1aee'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-6420-7361-a3a7-360c023a9f20'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-6421-7374-9bc4-8719fd21a310'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-6421-7374-9bc4-8719fdf38de4'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-6422-7055-9450-fa61ba1eb42f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-6422-7055-9450-fa61ba392fcd'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-6423-71c7-a296-15d97c74d4b9'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-6423-71c7-a296-15d97d379bb7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6429-7174-a0eb-a6e3c3342f9a', '019a30c1-641f-71cf-8cbb-e24eb9b8ff75'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6429-7174-a0eb-a6e3c3342f9a', '019a30c1-642d-7343-88b8-61e03eaf1b75'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6429-7174-a0eb-a6e3c3342f9a', '019a30c1-6423-71c7-a296-15d97c74d4b9'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6429-7174-a0eb-a6e3c3342f9a', '019a30c1-6423-71c7-a296-15d97d379bb7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6431-7282-847e-a858b814778b', '019a30c1-6437-73f3-a611-0e2d269f461b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-6440-71e0-a0a4-aa5bc88ad649'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-6441-7277-860e-f138ceb107e3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-6441-7277-860e-f138cf92fd97'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-6442-729c-947e-7d9bf99d24b2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-6442-729c-947e-7d9bfa905f30'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-6443-7342-b26c-c743aeddd7de'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-6444-72ee-af29-9b84a9d00c63'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6449-735e-bd62-48afe1f2ec3b', '019a30c1-63b5-709d-a8c4-0e197177eb85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6449-735e-bd62-48afe1f2ec3b', '019a30c1-644f-7342-9d4e-5089c2d7ef4b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-645a-7168-b630-5a6cd03172ed'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-645b-7165-934a-8c4214ce49f1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-645b-7165-934a-8c42159b46fa'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-645c-72d3-9e1b-e5467e56a4f4'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-645c-72d3-9e1b-e5467efbdcb9'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-645d-71b1-83ab-44d952aaf6c1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-645d-71b1-83ab-44d952d0fa0e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-645e-72f8-bbc1-f6587ae3890e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-645e-72f8-bbc1-f6587b5548ee'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-645f-72f1-8754-2c0c85a6e51c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-6460-70a4-8e03-d57c2008335e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6466-7318-8ea1-56c36bc51c82', '019a30c1-6468-7072-beba-498df4c4cc73'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6466-7318-8ea1-56c36bc51c82', '019a30c1-6469-73b2-8b4d-4c5afe810eb1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-646d-73c7-bcf5-6ea5c9444c45', '019a30c1-6472-70e9-b6d9-6c5d84924242'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-646d-73c7-bcf5-6ea5c9444c45', '019a30c1-6472-70e9-b6d9-6c5d8581f76c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6477-72dd-b60b-4eb64b1b845b', '019a30c1-647c-71fd-8093-58956c5af8a5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6481-72fa-9c41-5687c8f15ffc', '019a30c1-6486-71e4-bb39-8fb762835f38'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6481-72fa-9c41-5687c8f15ffc', '019a30c1-6486-71e4-bb39-8fb7634f5ab2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6481-72fa-9c41-5687c8f15ffc', '019a30c1-6487-706f-b123-39cd22cabfd2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6481-72fa-9c41-5687c8f15ffc', '019a30c1-6487-706f-b123-39cd23aabd3a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-648c-73f7-aaf4-bb9a0a1dcea5', '019a30c1-6491-72aa-8532-671407efaac8'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6497-7349-b2b1-6489a1e6ec29', '019a30c1-649b-732e-a6c6-47c0300600c3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6497-7349-b2b1-6489a1e6ec29', '019a30c1-649c-72f9-88ee-b6cb524e2757'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6497-7349-b2b1-6489a1e6ec29', '019a30c1-649c-72f9-88ee-b6cb530879f7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6497-7349-b2b1-6489a1e6ec29', '019a30c1-649d-732c-a641-22175a040fd5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64a7-73ab-951d-358ef8766bfc'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64a8-7020-bb61-d013f6a6e98a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64a8-7020-bb61-d013f73b275e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64a9-7239-adce-1aab851e754c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64a9-7239-adce-1aab85ca0d10'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64aa-73d2-8c91-774e6534d436'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64aa-73d2-8c91-774e655ac763'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64b0-72e7-b308-4d6f26ba8f37', '019a30c1-64b5-7077-a343-ae07948b2ee6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64ba-72f3-bbf7-aba53498bd78', '019a30c1-64bc-7240-bcd0-7ab4004f5b9d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64ba-72f3-bbf7-aba53498bd78', '019a30c1-64bd-7064-a611-57b78bae6ce9'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64c2-703e-93b2-0221949f8931', '019a30c1-63b5-709d-a8c4-0e197177eb85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64c2-703e-93b2-0221949f8931', '019a30c1-64c7-71db-bd70-3f446947e745'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64c2-703e-93b2-0221949f8931', '019a30c1-644f-7342-9d4e-5089c2d7ef4b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64cc-70e2-9f6e-0e4a4e9b6ad2', '019a30c1-64d1-70bb-b17f-73bbb6f76736'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64d6-73ea-b70f-5fb1cd77d4ad', '019a30c1-64dc-7278-a1bf-1e36d33fd393'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64e2-700d-baf4-d86ccd67d9a9', '019a30c1-64e9-7259-a82f-617d9ec2aaf6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64e2-700d-baf4-d86ccd67d9a9', '019a30c1-64e9-7259-a82f-617d9f796fa3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64e2-700d-baf4-d86ccd67d9a9', '019a30c1-64ea-72b8-9898-a58a40a75a8b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64f6-716d-abd2-7cee884bbcb3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64a7-73ab-951d-358ef8766bfc'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64f7-7132-be69-dd3a5a004013'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64f7-7132-be69-dd3a5a736dc1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64a8-7020-bb61-d013f6a6e98a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64f8-7241-9461-3005dd988f9e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64a8-7020-bb61-d013f73b275e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64f9-726f-a03c-d9e6913ca2f5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64a9-7239-adce-1aab85ca0d10'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64fa-7259-b67b-4db7d9f33f7d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6500-7197-af7c-ade78cbc1b02', '019a30c1-6506-7322-a8e7-8fe33038eae5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-650a-73d5-9781-ae9adc7090c5', '019a30c1-650e-7089-b92d-af824155ee22'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-650a-73d5-9781-ae9adc7090c5', '019a30c1-650e-7089-b92d-af82422f4306'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-650a-73d5-9781-ae9adc7090c5', '019a30c1-6468-7072-beba-498df4c4cc73'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6514-730d-921e-a2e82f7ff087', '019a30c1-63b5-709d-a8c4-0e197177eb85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6514-730d-921e-a2e82f7ff087', '019a30c1-6519-70ec-8720-d04c57ce49f6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-651e-710c-8630-f68eb9827512', '019a30c1-6522-7320-a5be-0adbb01b0f7b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-651e-710c-8630-f68eb9827512', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-651e-710c-8630-f68eb9827512', '019a30c1-6523-7152-b01e-55ed8bd40e35'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6529-713d-a097-9e709407f324', '019a30c1-6522-7320-a5be-0adbb01b0f7b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6533-72af-beac-1ee2ee94a30e', '019a30c1-6537-734c-bf91-0e25ffccc2f0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-653e-718d-b03b-e2d6bb231202', '019a30c1-6543-7085-b10f-6b6a4f6efec7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6548-7334-b5e7-2679c09493a4', '019a30c1-63eb-7299-8a7e-6dc79759a125'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6552-7159-a761-5f4ea238afc1', '019a30c1-639a-710a-a801-88e8700b7d06'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6552-7159-a761-5f4ea238afc1', '019a30c1-6423-71c7-a296-15d97d379bb7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6558-729d-983b-a8c56678bcea', '019a30c1-655c-713d-b702-d632a6b40d0a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6560-71a2-a8a7-20856ff708fd', '019a30c1-64dc-7278-a1bf-1e36d33fd393'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-656a-70f4-976c-b0d0239b4c64', '019a30c1-656e-73c0-8ced-53cce09a2a9d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-656a-70f4-976c-b0d0239b4c64', '019a30c1-656f-72f6-b3fd-d6ed8c4243db'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6573-712c-9931-96b45387ec69', '019a30c1-63b5-709d-a8c4-0e197177eb85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6573-712c-9931-96b45387ec69', '019a30c1-6578-7063-bfa9-ed9559e34d70'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6573-712c-9931-96b45387ec69', '019a30c1-6579-71d0-a845-cac3998c472b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6573-712c-9931-96b45387ec69', '019a30c1-6579-71d0-a845-cac399c72201'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-657e-71d3-b402-f12ac021e3f0', '019a30c1-6584-7255-b60a-675ff4a6940b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-657e-71d3-b402-f12ac021e3f0', '019a30c1-63b5-709d-a8c4-0e197177eb85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-657e-71d3-b402-f12ac021e3f0', '019a30c1-6584-7255-b60a-675ff56ea6de'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-657e-71d3-b402-f12ac021e3f0', '019a30c1-6585-7387-95d0-65ee25d215fb'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6591-70ed-aad3-1fab586bc88f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6399-7250-b614-0dc5a52608cf'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6399-7250-b614-0dc5a6147f77'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6592-70ee-85fa-81d0a52a2ec3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6592-70ee-85fa-81d0a5b9d3b1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6593-7275-81dd-ba2b4e81dded'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6593-7275-81dd-ba2b4eab060b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6594-73e7-9065-7248c5057a29'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6594-73e7-9065-7248c5da9669'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-639a-710a-a801-88e8700b7d06'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6595-72c7-8896-22a5920fcf87'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6596-70c4-a5c4-0d810adc0091'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6596-70c4-a5c4-0d810b83d0aa'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6597-72ef-aa39-874b2de6db95'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6598-704c-be3f-f4340a7d1a49'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6598-704c-be3f-f4340ada0896'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6599-7344-bac1-3b05030abd85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6599-7344-bac1-3b050403fc15'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-659a-72c4-808c-ccf0a566c2a1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-641e-70f1-82a7-356d12f1ba9c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-659b-71f3-b690-dc5044e81663'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-659b-71f3-b690-dc504572d4fe'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-659c-721b-8f4c-38698ec3e7ea'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-641f-71cf-8cbb-e24eb9b8ff75'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-659d-728f-afc9-29b3c2e60d6b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-639b-724c-938a-bc4c51afdb66'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-659e-72ef-a6c2-eb5691557b72'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-659e-72ef-a6c2-eb56919546f3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-639b-724c-938a-bc4c5263e875'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-659f-7069-b7b9-0d82d938fc36'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-659f-7069-b7b9-0d82d99c489f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a0-700d-8f0b-3c7f4a8af6bc'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a1-7150-a2fd-f43a64d44bca'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a1-7150-a2fd-f43a65d2bd5d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a2-731a-b99e-9bbf8414b549'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a2-731a-b99e-9bbf842d8738'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a3-70ed-9fbf-292f0971abcc'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a4-71f8-9acb-9de62e23cf04'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a4-71f8-9acb-9de62eab7275'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a5-73d8-a74a-b9e34c210c94'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a5-73d8-a74a-b9e34cc90dd1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a6-7071-b7ec-bb7fedf40982'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a6-7071-b7ec-bb7fedfe5264'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a7-7193-95a4-ef77e9bc3216'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a7-7193-95a4-ef77e9d91287'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a8-7390-ae32-ed9ee28624a6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a9-72d7-a4fe-910576e46e42'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65a9-72d7-a4fe-91057710b87a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65aa-728e-8315-9fe9e7d26ea0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65aa-728e-8315-9fe9e7e938d0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ab-71be-af72-69583decbafe'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ab-71be-af72-69583e8ef345'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ac-73bc-ae28-66f60c0f213d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ac-73bc-ae28-66f60c7d48c8'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ad-735d-8bf9-831580a3fb5e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ae-70d9-811b-bbb222c5f2d3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ae-70d9-811b-bbb222cb757f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65af-70a1-905e-da35ad96e14e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65af-70a1-905e-da35adcf7272'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b0-715e-8934-e2f1b3b938a5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b0-715e-8934-e2f1b469e5a6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b1-71a7-8212-aa327651d4ce'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b2-722b-b8aa-76055950401f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b2-722b-b8aa-76055a287299'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-639c-71ce-a1e6-a73cdaf7d849'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-639d-723f-80a6-6397a16dc08f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b3-71e8-9420-ad0807183328'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b4-7258-984e-fe07a82629a4'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b4-7258-984e-fe07a9034abb'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b5-73f1-b86c-d9746a4a5d39'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b5-73f1-b86c-d9746ae37eb5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-639e-709f-8bb2-d465f2ac14da'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b6-7055-8259-916c60c90225'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b7-7255-bfd1-619238a9c674'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b7-7255-bfd1-61923941a395'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b8-7035-bcd0-820e80db6032'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b9-72bf-8758-2fe467f3a11a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-639f-735f-bb2c-b2c8bbcb7e95'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65b9-72bf-8758-2fe4687e8997'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ba-7396-a511-aeabcb61d474'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ba-7396-a511-aeabcc0eddc6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65bb-723a-bf62-b86356d2d6dc'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65bc-7320-b597-9a03be7953a2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65bd-73db-9b82-df6c98360272'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65bd-73db-9b82-df6c9877dd1f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65be-7353-a140-7b4d2da32e14'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65be-7353-a140-7b4d2e7745e7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65bf-7262-8e2b-498e80454978'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65bf-7262-8e2b-498e8109df43'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c0-70ba-a94f-56d08da8ce92'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c0-70ba-a94f-56d08dba6965'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c1-7149-828e-d1e332e7e8ee'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c2-70d3-a2c1-965f4d8bc3de'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c2-70d3-a2c1-965f4e5f57f7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c3-725b-9837-1ddd28f195a0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c3-725b-9837-1ddd290b5926'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c4-73d5-9c9d-f0cd705f3f6f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c4-73d5-9c9d-f0cd70b1e266'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c5-7292-9dcc-aacacb4aee44'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c6-7075-9375-f6ab47601638'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c6-7075-9375-f6ab477391a4'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c7-7020-8885-a33ac5c4e328'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c7-7020-8885-a33ac5d19d1d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c8-701c-834f-bcff28c96fbe'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c9-72c7-b3f9-80bab765b53c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65c9-72c7-b3f9-80bab801bfe0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ca-7197-8702-3e8c1a233958'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ca-7197-8702-3e8c1b22f11e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65cb-73cd-bb61-59b2c5a8d00e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65cc-70b9-b48c-926e14a04309'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65cc-70b9-b48c-926e14fab64b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65cd-7083-ac83-c8bea345ed8d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65cd-7083-ac83-c8bea3533fd0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ce-7303-b65b-6a1648fdf3a8'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65ce-7303-b65b-6a1649986edf'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65cf-712e-99c3-81263f5b67a0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d0-716e-a270-cef0e062de78'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d0-716e-a270-cef0e10f9f10'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d1-7027-b8ef-56302bcb1d7e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d1-7027-b8ef-56302cc4ea83'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d2-71f5-9c72-83fbb7635356'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d2-71f5-9c72-83fbb79b7c5b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d3-7317-a4c7-e3e6a5aee4d1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d4-72e5-8118-9b41a9d10ae0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d4-72e5-8118-9b41aa527eb1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d5-7134-ac52-975fd851b312'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d5-7134-ac52-975fd8d7cdbf'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-65d6-71a3-99ce-b379f9f0603d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-65f1-70af-822a-dab25bd88f06', '019a30c1-65f5-731f-a7ea-22e09c04fd0a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-65fa-70cd-babd-32eb7f80498b', '019a30c1-65fe-717f-92e8-c4e4d10b9d8b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6603-7011-a2dd-b8b910a493a3', '019a30c1-6608-7322-8f92-c5a31d550d00'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-660c-722b-ae00-c52b516a3b2d', '019a30c1-6611-72f1-ab74-a4386ff1c99a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-660c-722b-ae00-c52b516a3b2d', '019a30c1-6612-7144-872f-902d92e684c0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-660c-722b-ae00-c52b516a3b2d', '019a30c1-6612-7144-872f-902d93b85415'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6618-71a2-8fdf-914f8f033d71', '019a30c1-661d-7263-920a-76bfb88ab70f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6618-71a2-8fdf-914f8f033d71', '019a30c1-661d-7263-920a-76bfb93bcb89'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6618-71a2-8fdf-914f8f033d71', '019a30c1-661e-73c0-8869-28a323d4b7d7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6618-71a2-8fdf-914f8f033d71', '019a30c1-661f-70b3-b702-45ef07275f7c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6624-70bb-b619-0768ca14bc20', '019a30c1-6627-721e-963d-404338739aad'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-662c-72bf-b8a9-70f77563e954', '019a30c1-6631-71db-9141-d2264d071831'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-663b-7296-a32f-d53d581da4e0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-663b-7296-a32f-d53d5900fd2b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-663c-734c-afb1-8f343ce03379'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-663c-734c-afb1-8f343d1d3ca5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-663d-71df-96b1-5ce2bb831608'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-663d-71df-96b1-5ce2bb93110c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-663e-7048-86f2-3348395a9088'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-663e-7048-86f2-33483a066420'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-663f-7365-82f3-bbbb2088221a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-6640-711d-bc33-71ba465f0de8'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6646-7081-a779-d25b3929c68c', '019a30c1-664a-7063-9c59-6e7678a0f22e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6646-7081-a779-d25b3929c68c', '019a30c1-63b5-709d-a8c4-0e197177eb85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6646-7081-a779-d25b3929c68c', '019a30c1-664b-735b-b2da-aad202d6a42a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6646-7081-a779-d25b3929c68c', '019a30c1-664c-7142-be33-bbefb25fa1aa'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6651-7081-ae74-b7965b4fd136', '019a30c1-63b5-709d-a8c4-0e197177eb85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6651-7081-ae74-b7965b4fd136', '019a30c1-6657-70c1-9d84-7078f8a836f3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6651-7081-ae74-b7965b4fd136', '019a30c1-6658-7140-a799-8eca3b7f07c5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6660-7035-ab71-0a3c21fb90f5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6661-7311-b72f-08e8bfc205df'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6662-70f8-85fa-100fb01007e9'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6662-70f8-85fa-100fb03f1231'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6663-7250-84a7-e9ca8e1eab3b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6663-7250-84a7-e9ca8eda73ae'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6664-7137-90ad-bb2292565c45'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-666a-7033-bbeb-44bdd0336191', '019a30c1-666e-7003-a0fb-24ac3e9d6bad'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-666a-7033-bbeb-44bdd0336191', '019a30c1-666f-7382-b6ec-134cda7ecbfb'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6674-7239-b42d-fcbbcd7a6339', '019a30c1-6678-712d-b412-dfd5f688ce32'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6674-7239-b42d-fcbbcd7a6339', '019a30c1-6679-7278-9cd8-c57468458c9b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-667e-72d7-a86e-4b34703c9fd2', '019a30c1-6684-7307-98b6-c0893cd9b485'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-667e-72d7-a86e-4b34703c9fd2', '019a30c1-6685-7318-926a-67e3faed9161'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-668f-7137-9c62-68710c48ec2e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-668f-7137-9c62-68710d06b3f2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-645d-71b1-83ab-44d952aaf6c1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-645d-71b1-83ab-44d952d0fa0e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-6690-713b-beb4-da38333a1ab7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-6691-73dc-b344-862cd686ddc4'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-645f-72f1-8754-2c0c85a6e51c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6697-73b4-91b1-d9289cc9c641', '019a30c1-669b-70d8-a297-48e541e1fd3f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66a0-72c9-bbe1-0ff9f3809efd', '019a30c1-66a4-73cd-9a7f-48e15f8c227e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66a0-72c9-bbe1-0ff9f3809efd', '019a30c1-66a5-71bf-b1c4-ff0ee77f1262'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66a0-72c9-bbe1-0ff9f3809efd', '019a30c1-66a5-71bf-b1c4-ff0ee7ba8ea1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66aa-70da-8302-bd81e530c406', '019a30c1-65cd-7083-ac83-c8bea3533fd0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-66b9-716d-b032-72bbb1062789'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-66ba-7148-a405-f3d5ab06eee1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-66ba-7148-a405-f3d5ab1fd664'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-66bb-70db-b155-25d44c4036e4'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-66bb-70db-b155-25d44c62f7c2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-66bc-737e-8e93-501c1914d43c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66c2-7198-88d9-ff47ca70fe09', '019a30c1-66c6-724f-a92f-7011edd4b638'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66c2-7198-88d9-ff47ca70fe09', '019a30c1-66c7-711e-9662-a7d62c38be10'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66c2-7198-88d9-ff47ca70fe09', '019a30c1-66c7-711e-9662-a7d62c543bfd'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66cc-7387-bb82-513a03d10532', '019a30c1-66d2-7043-a43a-92adf8881922'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-66dc-7078-b34f-3f86e670ef08'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-66dd-7317-8c3d-287a0f171d42'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-66dd-7317-8c3d-287a0fbcc90f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-66de-7286-ac88-7acb00f91c7d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-66de-7286-ac88-7acb00fa757c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-66df-7135-9ea3-f12dcd3e3424'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-66dc-7078-b34f-3f86e670ef08'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-66dd-7317-8c3d-287a0f171d42'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-66dd-7317-8c3d-287a0fbcc90f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-66de-7286-ac88-7acb00f91c7d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-66de-7286-ac88-7acb00fa757c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-66df-7135-9ea3-f12dcd3e3424'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66ef-719c-b1c2-01e15409d42c', '019a30c1-66f5-7235-a583-f2ed9b1be5c5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-66fa-735c-ba0f-b29e5bcf4c84', '019a30c1-66fe-70ec-8a21-626e44c472b2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6703-7285-bca7-72fb6b577478', '019a30c1-6707-7103-8e4e-b626fee9c24b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-670c-73c4-af58-317d7dddeeec', '019a30c1-6710-7348-9975-1f3c43bc7dbf'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-6719-70b2-91d2-fac76d03719b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-671a-708f-9a14-403f55a6c71f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-671b-7205-aad0-994d7d4b3ac6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-671b-7205-aad0-994d7db8066b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-671c-71c4-88da-3adaff80fc0e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-671c-71c4-88da-3adaff918dea'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-671d-710b-944d-95ae0d7eb9fa'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-671e-71d1-b273-72ef78a13a90'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-671e-71d1-b273-72ef78b2c5c5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-671f-7080-aae7-8805328ad142'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-671f-7080-aae7-8805336e17a2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-6720-7050-9433-e2f1d4c43a37'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-6720-7050-9433-e2f1d5a3ca50'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6728-70dc-8414-f8db2d3135a2', '019a30c1-641f-71cf-8cbb-e24eb9b8ff75'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6728-70dc-8414-f8db2d3135a2', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6730-7165-b0b5-78f70809cbc6', '019a30c1-63eb-7299-8a7e-6dc79759a125'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-673a-7246-a5f8-68841a090d84', '019a30c1-6627-721e-963d-404338739aad'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-6747-705f-bf0c-e4836833b060'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-6748-72a7-8827-4a7b949adea1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-63ce-73ca-b787-bea7ddd7badd'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-6748-72a7-8827-4a7b952cc234'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-63d0-733a-a3d1-77d700669ed2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-6749-70f5-9a79-964e35c89a5e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-674f-73ae-be63-188b07a7ba75', '019a30c1-6753-70a3-afef-407d9790e895'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-675c-7326-9539-fc6fe0986f15'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-675c-7326-9539-fc6fe12ed848'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-675d-714c-9e3d-37d827ea4759'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-675d-714c-9e3d-37d8286d1209'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-675e-72db-a067-f0afc134894a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-675e-72db-a067-f0afc1915345'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-675f-7115-948e-e9ace0f68c80'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-6760-71ba-8127-f511479b8ff1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-6760-71ba-8127-f511486fb0f0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-6761-715f-9a36-f5c28b8c6387'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-6761-715f-9a36-f5c28c40f566'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-6762-73ec-822c-634e889dd572'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-6762-73ec-822c-634e89890109'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-676e-730c-a257-f4871bf1ab36'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-676f-70b8-aa9a-261c076ba9ce'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-676f-70b8-aa9a-261c085040b9'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6770-7394-bbc8-fd29d9a09719'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6770-7394-bbc8-fd29d9bad630'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6771-732c-ab57-3449dc89b5d2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6771-732c-ab57-3449dcfb74e5'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6772-7124-8564-97904335e1c0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6773-7348-a8ab-dfc0d2a998d8'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6773-7348-a8ab-dfc0d2b28883'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6774-7130-878e-50fac54e7ab3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6774-7130-878e-50fac57b26f9'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6775-716a-8f5c-e28e52705218'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6775-716a-8f5c-e28e52d05c68'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6776-73e4-b6a4-940c21d88ccb'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6776-73e4-b6a4-940c2224854f'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6777-7139-8a0b-83e0b44bbf2a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6778-73ea-b524-70363dc09b28'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6778-73ea-b524-70363e0b2fa0'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6779-72b9-8577-fe5896fc8c94'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6779-72b9-8577-fe58976207d7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-677a-7053-bcbe-e5c52ff3e41a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-677a-7053-bcbe-e5c530b64683'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-677b-7249-ae89-89b8359edaa1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-677c-70f7-9d4c-4bb356f7442d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-677c-70f7-9d4c-4bb357b413de'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-677d-725d-9d01-3071fc8d8571'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-677d-725d-9d01-3071fd087d08'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-677e-72cc-aab2-5c6b09231e45'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6523-7152-b01e-55ed8bd40e35'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-677f-71e6-aad2-6210ce1d9488'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-677f-71e6-aad2-6210cec26821'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6780-70e9-9be4-cfbde496734c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6780-70e9-9be4-cfbde5812e81'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6781-736f-8683-10c3397d1d03'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6782-72de-94ba-a1d9d5f36927'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6782-72de-94ba-a1d9d6984b14'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6783-7189-b65a-290ec5132036'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6783-7189-b65a-290ec5ee5e25'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6784-7221-9eb8-34303ce5cfd6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6785-71be-9b15-047ecf481ed4'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6785-71be-9b15-047ecfeceea1'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6786-725b-aa64-c6f28195d707'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6786-725b-aa64-c6f2821dbab7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6787-7334-adbd-2c40afe56301'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6787-7334-adbd-2c40b02d6c50'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6788-7020-9879-00867fae2063'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6789-72d5-b791-49d28a036a1e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6789-72d5-b791-49d28a39242a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-676e-730c-a257-f4871bf1ab36'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-679d-71fb-a451-07724de99c2d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-6770-7394-bbc8-fd29d9a09719'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-679e-7130-9b0a-621fa21ff80d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-679e-7130-9b0a-621fa2aff275'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-6523-7152-b01e-55ed8bd40e35'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67a4-72d0-8953-6e48c10b07d0', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67a4-72d0-8953-6e48c10b07d0', '019a30c1-6523-7152-b01e-55ed8bd40e35'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67ad-704c-9b53-cf1b2dd35f29', '019a30c1-67b1-71c0-b70d-e8741806e88b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67ad-704c-9b53-cf1b2dd35f29', '019a30c1-67b1-71c0-b70d-e87418afa476'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67ad-704c-9b53-cf1b2dd35f29', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67ad-704c-9b53-cf1b2dd35f29', '019a30c1-6523-7152-b01e-55ed8bd40e35'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-676e-730c-a257-f4871bf1ab36'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-6770-7394-bbc8-fd29d9a09719'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67bb-7022-934d-81c211b3d35d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67bb-7022-934d-81c21267ec20'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-65a8-7390-ae32-ed9ee28624a6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-65ae-70d9-811b-bbb222c5f2d3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67bc-71d5-9cd3-691c15ea1a89'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67bd-710f-bac4-ad3218b2caa6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-65ba-7396-a511-aeabcb61d474'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-679e-7130-9b0a-621fa2aff275'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67be-71d5-a7cd-b582643d8723'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67bf-737f-9884-5177ae62f955'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67bf-737f-9884-5177ae6a034e'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67c0-7057-88fd-a8581701a3cd'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67c0-7057-88fd-a85817ba667a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-6523-7152-b01e-55ed8bd40e35'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67c1-715b-8cfc-2e2255d30c5a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67c2-72b6-9275-83cb64a07bec'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67c2-72b6-9275-83cb656c0384'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67c3-732a-8b14-71548346bc8d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67c3-732a-8b14-715483b174ef'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67c4-73ac-8a1c-b84c18c1213d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67cc-73b4-833c-d403005e0542', '019a30c1-67d1-7093-a818-1792bbe252e9'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67cc-73b4-833c-d403005e0542', '019a30c1-67d1-7093-a818-1792bc0c464c'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67cc-73b4-833c-d403005e0542', '019a30c1-67d2-700d-ad81-16837a160b63'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67cc-73b4-833c-d403005e0542', '019a30c1-67d2-700d-ad81-16837a529a50'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67d8-731a-914b-01dc700b99c2', '019a30c1-6423-71c7-a296-15d97d379bb7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67dd-738e-8419-89ee615b92f6', '019a30c1-64bd-7064-a611-57b78bae6ce9'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67dd-738e-8419-89ee615b92f6', '019a30c1-67e2-7145-8314-0c86578b20f6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67dd-738e-8419-89ee615b92f6', '019a30c1-67e3-713e-9b99-7208b7eb2e01'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67e7-7313-864f-274a8e5c7398', '019a30c1-67eb-7061-a4d9-15ba83d581e9'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67e7-7313-864f-274a8e5c7398', '019a30c1-67ec-730b-8c43-b47b70782ba8'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67f1-70a3-bfb6-47d69cbf4edb', '019a30c1-67f5-7240-b563-639b5c60136a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-67fa-70ee-87df-58c9c900fc3a', '019a30c1-64b5-7077-a343-ae07948b2ee6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6804-70fe-a1e5-7facb1af6b84', '019a30c1-63b5-709d-a8c4-0e197177eb85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6804-70fe-a1e5-7facb1af6b84', '019a30c1-6809-7066-9b6e-8eb57ba5d3ea'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6804-70fe-a1e5-7facb1af6b84', '019a30c1-680a-7096-97bb-9c05b8d4ef29'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6804-70fe-a1e5-7facb1af6b84', '019a30c1-664c-7142-be33-bbefb25fa1aa'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', '019a30c1-63b5-709d-a8c4-0e197177eb85'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', '019a30c1-6809-7066-9b6e-8eb57ba5d3ea'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', '019a30c1-680a-7096-97bb-9c05b8d4ef29'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', '019a30c1-664b-735b-b2da-aad202d6a42a'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', '019a30c1-664c-7142-be33-bbefb25fa1aa'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-681b-73d1-bcce-fe3be4518396', '019a30c1-681f-714a-9788-ca9f3a320ac7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-6747-705f-bf0c-e4836833b060'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-6829-721d-b299-4189daf46d4d'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-6748-72a7-8827-4a7b952cc234'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-682a-7102-9d6f-0aa8245fe525'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-682b-724d-8deb-341b1706966b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-682b-724d-8deb-341b17babf98'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-63d0-733a-a3d1-77d700669ed2'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6831-7085-a35a-64802ce42eca', '019a30c1-6836-7280-a117-5f4a54a643dd'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-683b-71fb-bcb9-2606114b7747', '019a30c1-683f-72c8-8899-d472e662a5ee'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-683b-71fb-bcb9-2606114b7747', '019a30c1-6840-72a5-bd03-9d2db29931fc'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-683b-71fb-bcb9-2606114b7747', '019a30c1-6840-72a5-bd03-9d2db2cfde9b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6846-715f-90ca-5c02877af480', '019a30c1-684a-7377-b784-737859e73bd6'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6846-715f-90ca-5c02877af480', '019a30c1-684b-7193-af28-ec404f603937'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-6856-7359-92f7-134766b10086'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-6857-701a-a4d5-d9aa390ae16b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-6857-701a-a4d5-d9aa3956392b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-6858-70a9-b710-32b2d2dc95ea'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-6859-716d-bff6-6963c3f17d2b'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-6859-716d-bff6-6963c4785c07'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-685f-7033-a9e3-4b26c3536700', '019a30c1-6864-73be-86d2-6dc27b9b7f78'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-a603-7313-a7a8-a9f190c8daa5', '019a30c1-a607-715d-b6ac-7e7cb8dfe9f3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-a60b-71dc-a85d-0c81506cf9fa', '019a30c1-a60e-701c-ae3f-ec9dd9cd4689'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-a60b-71dc-a85d-0c81506cf9fa', '019a30c1-a607-715d-b6ac-7e7cb8dfe9f3'); -INSERT INTO public.plugin_authors VALUES ('019a30c1-a60b-71dc-a85d-0c81506cf9fa', '019a30c1-a60f-7015-9b39-a62788c7fe15'); - - --- --- Data for Name: plugin_plugin_tags; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-6379-71d3-8314-8f33c4f94a76'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-637a-73d3-9e72-bf1f21d8e5e3'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-637b-73a1-be88-41c2073d3b75'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-637b-73a1-be88-41c207dd9264'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', '019a30c1-637c-72d7-b626-07e09fc3d4ba'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-6395-738c-93d2-47678e8f1a44'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-6396-7013-8c01-91d6820271c2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-6396-7013-8c01-91d68217355b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-6397-711a-ab98-f4e0fe69f60b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6394-70a7-a586-06441937eeee', '019a30c1-6397-711a-ab98-f4e0fee04f1b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63b0-7066-953d-939d00afa5a2', '019a30c1-63b2-7184-9898-cb8dfd8a5405'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63b0-7066-953d-939d00afa5a2', '019a30c1-63b3-72a7-b3ce-960492f9978d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63b0-7066-953d-939d00afa5a2', '019a30c1-63b3-72a7-b3ce-9604937be2c8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63b0-7066-953d-939d00afa5a2', '019a30c1-63b3-72a7-b3ce-960494264235'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63b0-7066-953d-939d00afa5a2', '019a30c1-63b4-7388-a857-541a7fea6ac1'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63bc-7296-920a-e7de4e08fa5d', '019a30c1-63bd-70ec-96b6-88a34a5cc3dc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63bc-7296-920a-e7de4e08fa5d', '019a30c1-63be-729d-a5a5-f4de565ca275'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63bc-7296-920a-e7de4e08fa5d', '019a30c1-63be-729d-a5a5-f4de56819988'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63bc-7296-920a-e7de4e08fa5d', '019a30c1-63bf-70a7-b597-7b105039cdba'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63bc-7296-920a-e7de4e08fa5d', '019a30c1-63bf-70a7-b597-7b1050533b8c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63ca-737f-a669-6ca4960d0691'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63cb-737e-924f-a36d5d1e1eec'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63cc-72cb-bc0c-8853a2be6966'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', '019a30c1-63cc-72cb-bc0c-8853a335778d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-6396-7013-8c01-91d6820271c2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-6396-7013-8c01-91d68217355b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-6397-711a-ab98-f4e0fe69f60b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63d9-72f7-bc7d-b3ded5231d40'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', '019a30c1-63da-70f6-98f0-8e9cf0dbe945'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63e6-7297-a6f2-0cb58bdc7a41', '019a30c1-63e8-7257-a059-790bbc41c764'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63e6-7297-a6f2-0cb58bdc7a41', '019a30c1-63e9-70f5-a53c-c7af5dcc88ca'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63e6-7297-a6f2-0cb58bdc7a41', '019a30c1-63e9-70f5-a53c-c7af5e0bcfba'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63e6-7297-a6f2-0cb58bdc7a41', '019a30c1-63ea-7371-9c02-ee5d565afaff'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63e6-7297-a6f2-0cb58bdc7a41', '019a30c1-63ea-7371-9c02-ee5d568fa3d5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63f0-7336-985d-b9af25cc51b1', '019a30c1-63f2-7315-98fd-af2a327a58ee'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63f0-7336-985d-b9af25cc51b1', '019a30c1-63f3-7312-85ff-405779f811cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63f0-7336-985d-b9af25cc51b1', '019a30c1-63f3-7312-85ff-40577af6fbb3'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63f0-7336-985d-b9af25cc51b1', '019a30c1-63f4-728b-8278-08eb1e9b52cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63f0-7336-985d-b9af25cc51b1', '019a30c1-63f4-728b-8278-08eb1f693189'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63fc-72f5-8144-3350a9793891', '019a30c1-63fe-70e0-8fd6-02d4e4c0f156'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63fc-72f5-8144-3350a9793891', '019a30c1-63fe-70e0-8fd6-02d4e4f24c6f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63fc-72f5-8144-3350a9793891', '019a30c1-63fe-70e0-8fd6-02d4e59cc5f7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63fc-72f5-8144-3350a9793891', '019a30c1-63ff-7101-b8cc-0d4cecdf737d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-63fc-72f5-8144-3350a9793891', '019a30c1-63ff-7101-b8cc-0d4ced18f612'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6406-72dc-8044-191babf552a8', '019a30c1-6408-7190-a993-aea7203e1968'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6406-72dc-8044-191babf552a8', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6406-72dc-8044-191babf552a8', '019a30c1-6409-707b-9d5f-7fd057e8bc1a'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6406-72dc-8044-191babf552a8', '019a30c1-640a-73d0-a285-371212f545f5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6406-72dc-8044-191babf552a8', '019a30c1-63cc-72cb-bc0c-8853a335778d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6412-70b7-9aca-9702ae31de55', '019a30c1-6413-73e7-844e-4ee9ff45a5fb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6412-70b7-9aca-9702ae31de55', '019a30c1-6414-70a0-9ef5-d4d67742de39'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6412-70b7-9aca-9702ae31de55', '019a30c1-6414-70a0-9ef5-d4d6783cebf2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6412-70b7-9aca-9702ae31de55', '019a30c1-6415-7103-a178-d0b4d334ffa9'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6412-70b7-9aca-9702ae31de55', '019a30c1-6415-7103-a178-d0b4d372df87'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-641c-7363-81cb-f4062297f944'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-63e9-70f5-a53c-c7af5dcc88ca'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-63ea-7371-9c02-ee5d565afaff'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', '019a30c1-641d-71d5-800f-69523f73c28a'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6429-7174-a0eb-a6e3c3342f9a', '019a30c1-641c-7363-81cb-f4062297f944'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6429-7174-a0eb-a6e3c3342f9a', '019a30c1-642a-7031-91b3-2ce9a7160039'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6429-7174-a0eb-a6e3c3342f9a', '019a30c1-63e9-70f5-a53c-c7af5dcc88ca'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6429-7174-a0eb-a6e3c3342f9a', '019a30c1-642b-730b-a7fe-3e803194ed57'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6429-7174-a0eb-a6e3c3342f9a', '019a30c1-642b-730b-a7fe-3e8031eeddf1'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6431-7282-847e-a858b814778b', '019a30c1-6434-7118-8fd1-a4f06e83f718'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6431-7282-847e-a858b814778b', '019a30c1-6434-7118-8fd1-a4f06f6c1a92'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6431-7282-847e-a858b814778b', '019a30c1-6435-7287-be1e-7506fd1ee286'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6431-7282-847e-a858b814778b', '019a30c1-6435-7287-be1e-7506fd381015'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6431-7282-847e-a858b814778b', '019a30c1-6436-710b-a909-05419eebf12e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-643d-715f-ac39-887294d4a78f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-643e-7111-973c-2f8b702cc3bf'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-643e-7111-973c-2f8b70dd32e6'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-643f-738f-8250-433889e00941'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-643c-70c4-8249-050b761774e1', '019a30c1-643f-738f-8250-43388a260c39'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6449-735e-bd62-48afe1f2ec3b', '019a30c1-644c-7036-a04e-0990cacaff8c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6449-735e-bd62-48afe1f2ec3b', '019a30c1-644c-7036-a04e-0990cb642e4b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6449-735e-bd62-48afe1f2ec3b', '019a30c1-644d-7298-84cb-949759291167'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6449-735e-bd62-48afe1f2ec3b', '019a30c1-644d-7298-84cb-9497597eaeaa'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6449-735e-bd62-48afe1f2ec3b', '019a30c1-644e-72fe-ae21-e1b1c607a2cf'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-6457-7093-8cfb-9759fdc11af4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-6457-7093-8cfb-9759fe658cf7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-6458-7295-8731-e8db919b7826'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-6458-7295-8731-e8db92479eb5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', '019a30c1-6459-7076-85b8-cf0f0ad918a4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6466-7318-8ea1-56c36bc51c82', '019a30c1-6397-711a-ab98-f4e0fee04f1b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6466-7318-8ea1-56c36bc51c82', '019a30c1-6467-7332-9a8d-f7fe5fe615c4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-646d-73c7-bcf5-6ea5c9444c45', '019a30c1-6457-7093-8cfb-9759fdc11af4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-646d-73c7-bcf5-6ea5c9444c45', '019a30c1-6457-7093-8cfb-9759fe658cf7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-646d-73c7-bcf5-6ea5c9444c45', '019a30c1-6470-70b9-ad35-e775b73398b5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-646d-73c7-bcf5-6ea5c9444c45', '019a30c1-6459-7076-85b8-cf0f0ad918a4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-646d-73c7-bcf5-6ea5c9444c45', '019a30c1-6470-70b9-ad35-e775b7a4f521'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6477-72dd-b60b-4eb64b1b845b', '019a30c1-6479-716d-91fe-3a22e59feafb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6477-72dd-b60b-4eb64b1b845b', '019a30c1-6457-7093-8cfb-9759fdc11af4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6477-72dd-b60b-4eb64b1b845b', '019a30c1-6458-7295-8731-e8db919b7826'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6477-72dd-b60b-4eb64b1b845b', '019a30c1-647a-7188-8bed-92c2c8b74f54'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6477-72dd-b60b-4eb64b1b845b', '019a30c1-6458-7295-8731-e8db92479eb5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6481-72fa-9c41-5687c8f15ffc', '019a30c1-6483-721c-9c44-2dbfa6fdae26'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6481-72fa-9c41-5687c8f15ffc', '019a30c1-6483-721c-9c44-2dbfa74581f7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6481-72fa-9c41-5687c8f15ffc', '019a30c1-6434-7118-8fd1-a4f06e83f718'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6481-72fa-9c41-5687c8f15ffc', '019a30c1-6484-728d-87e1-f8bfd3d80e63'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6481-72fa-9c41-5687c8f15ffc', '019a30c1-6484-728d-87e1-f8bfd430ef5a'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-648c-73f7-aaf4-bb9a0a1dcea5', '019a30c1-648e-71af-b389-bbb8ebceb237'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-648c-73f7-aaf4-bb9a0a1dcea5', '019a30c1-648e-71af-b389-bbb8ebdd7909'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-648c-73f7-aaf4-bb9a0a1dcea5', '019a30c1-648f-72cc-8efe-635b832e717c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-648c-73f7-aaf4-bb9a0a1dcea5', '019a30c1-648f-72cc-8efe-635b83bc5cbb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-648c-73f7-aaf4-bb9a0a1dcea5', '019a30c1-648f-72cc-8efe-635b84b2c49a'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6497-7349-b2b1-6489a1e6ec29', '019a30c1-6498-7179-b1ae-2dced562bb1b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6497-7349-b2b1-6489a1e6ec29', '019a30c1-6498-7179-b1ae-2dced563af73'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6497-7349-b2b1-6489a1e6ec29', '019a30c1-6499-70be-844b-aaef60a23517'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6497-7349-b2b1-6489a1e6ec29', '019a30c1-6499-70be-844b-aaef61090d5f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6497-7349-b2b1-6489a1e6ec29', '019a30c1-649a-706a-9214-ad2b28ec9a19'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64a4-7264-a33f-c5d582db1871'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64a5-73f8-8fa2-b7007d75f646'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64a5-73f8-8fa2-b7007e2861a2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-63da-70f6-98f0-8e9cf0dbe945'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', '019a30c1-64a6-7035-a70a-cd461b78ad58'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64b0-72e7-b308-4d6f26ba8f37', '019a30c1-64b1-7296-9e03-4dcb767b829d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64b0-72e7-b308-4d6f26ba8f37', '019a30c1-64b2-73a6-9ea4-94203d3aa741'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64b0-72e7-b308-4d6f26ba8f37', '019a30c1-64b2-73a6-9ea4-94203d76805b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64b0-72e7-b308-4d6f26ba8f37', '019a30c1-64b3-722a-a440-5e6a5ae7ddf2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64b0-72e7-b308-4d6f26ba8f37', '019a30c1-64b3-722a-a440-5e6a5bca3dd0'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64ba-72f3-bbf7-aba53498bd78', '019a30c1-63bd-70ec-96b6-88a34a5cc3dc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64ba-72f3-bbf7-aba53498bd78', '019a30c1-63be-729d-a5a5-f4de56819988'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64ba-72f3-bbf7-aba53498bd78', '019a30c1-64b2-73a6-9ea4-94203d3aa741'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64c2-703e-93b2-0221949f8931', '019a30c1-63bf-70a7-b597-7b105039cdba'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64c2-703e-93b2-0221949f8931', '019a30c1-64c4-710c-b405-0774493e6b4e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64c2-703e-93b2-0221949f8931', '019a30c1-64c4-710c-b405-0774494ac5b7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64c2-703e-93b2-0221949f8931', '019a30c1-64c5-7259-a27b-c9e993610c34'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64c2-703e-93b2-0221949f8931', '019a30c1-64c5-7259-a27b-c9e993bc18d5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64cc-70e2-9f6e-0e4a4e9b6ad2', '019a30c1-64ce-7366-a748-54efab81f301'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64cc-70e2-9f6e-0e4a4e9b6ad2', '019a30c1-64cf-717c-918b-76dc6ed1557f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64cc-70e2-9f6e-0e4a4e9b6ad2', '019a30c1-64cf-717c-918b-76dc6f2646fd'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64cc-70e2-9f6e-0e4a4e9b6ad2', '019a30c1-64cf-717c-918b-76dc6ff5f25b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64cc-70e2-9f6e-0e4a4e9b6ad2', '019a30c1-64d0-72e2-b533-ab996cb7b283'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64d6-73ea-b70f-5fb1cd77d4ad', '019a30c1-641c-7363-81cb-f4062297f944'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64d6-73ea-b70f-5fb1cd77d4ad', '019a30c1-63e8-7257-a059-790bbc41c764'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64d6-73ea-b70f-5fb1cd77d4ad', '019a30c1-644c-7036-a04e-0990cacaff8c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64d6-73ea-b70f-5fb1cd77d4ad', '019a30c1-644c-7036-a04e-0990cb642e4b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64d6-73ea-b70f-5fb1cd77d4ad', '019a30c1-64db-719c-a006-b4f355548d34'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64e2-700d-baf4-d86ccd67d9a9', '019a30c1-64e5-71bc-aab7-90f7235180ee'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64e2-700d-baf4-d86ccd67d9a9', '019a30c1-64e6-7289-b22c-77d35a151e1e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64e2-700d-baf4-d86ccd67d9a9', '019a30c1-64e6-7289-b22c-77d35af43fdc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64e2-700d-baf4-d86ccd67d9a9', '019a30c1-64e7-71cb-84ed-3d9e588e35e9'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64e2-700d-baf4-d86ccd67d9a9', '019a30c1-64e7-71cb-84ed-3d9e59667d72'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-63e8-7257-a059-790bbc41c764'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64e6-7289-b22c-77d35a151e1e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64e6-7289-b22c-77d35af43fdc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64f4-706c-8179-caeab3e76808'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', '019a30c1-64f4-706c-8179-caeab4792181'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6500-7197-af7c-ade78cbc1b02', '019a30c1-6502-73e8-b21c-30cba51b9f51'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6500-7197-af7c-ade78cbc1b02', '019a30c1-6503-70d0-9195-aeec05a669a7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6500-7197-af7c-ade78cbc1b02', '019a30c1-6503-70d0-9195-aeec0692e27b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6500-7197-af7c-ade78cbc1b02', '019a30c1-6504-72f7-99d7-3dc9dfb600ee'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6500-7197-af7c-ade78cbc1b02', '019a30c1-6504-72f7-99d7-3dc9e07f37dc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-650a-73d5-9781-ae9adc7090c5', '019a30c1-650b-73b0-81ab-1c63079c3bfb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-650a-73d5-9781-ae9adc7090c5', '019a30c1-650c-73a8-8b60-beb49971fe8d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-650a-73d5-9781-ae9adc7090c5', '019a30c1-650c-73a8-8b60-beb49a5b12d8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-650a-73d5-9781-ae9adc7090c5', '019a30c1-650c-73a8-8b60-beb49b09d56b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6514-730d-921e-a2e82f7ff087', '019a30c1-6516-70e6-a7dd-365299116ae7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6514-730d-921e-a2e82f7ff087', '019a30c1-64cf-717c-918b-76dc6ff5f25b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6514-730d-921e-a2e82f7ff087', '019a30c1-6516-70e6-a7dd-36529a098fc0'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6514-730d-921e-a2e82f7ff087', '019a30c1-6517-72b2-a06c-43e01f7b1c31'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6514-730d-921e-a2e82f7ff087', '019a30c1-6517-72b2-a06c-43e0207af56f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-651e-710c-8630-f68eb9827512', '019a30c1-651f-736c-8ec2-a8cee79931c3'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-651e-710c-8630-f68eb9827512', '019a30c1-6520-7061-b296-08a3db5499ad'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-651e-710c-8630-f68eb9827512', '019a30c1-6520-7061-b296-08a3dc4c4d28'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-651e-710c-8630-f68eb9827512', '019a30c1-6521-73e7-bb76-68efdc470323'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-651e-710c-8630-f68eb9827512', '019a30c1-6521-73e7-bb76-68efdccd1842'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6529-713d-a097-9e709407f324', '019a30c1-6520-7061-b296-08a3db5499ad'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6529-713d-a097-9e709407f324', '019a30c1-652b-73e3-8c1f-204ab50d830c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6529-713d-a097-9e709407f324', '019a30c1-6516-70e6-a7dd-365299116ae7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6529-713d-a097-9e709407f324', '019a30c1-652b-73e3-8c1f-204ab5ba27b7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6529-713d-a097-9e709407f324', '019a30c1-652c-72dd-9f5e-0ad36da8ff64'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6533-72af-beac-1ee2ee94a30e', '019a30c1-63b2-7184-9898-cb8dfd8a5405'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6533-72af-beac-1ee2ee94a30e', '019a30c1-63b3-72a7-b3ce-9604937be2c8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6533-72af-beac-1ee2ee94a30e', '019a30c1-6535-7285-9eac-97bc5bdb999f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6533-72af-beac-1ee2ee94a30e', '019a30c1-6536-70a9-8d57-f194b5c076e8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6533-72af-beac-1ee2ee94a30e', '019a30c1-6536-70a9-8d57-f194b642e807'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-653e-718d-b03b-e2d6bb231202', '019a30c1-6540-7369-a0cc-8ef7f8c71ee8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-653e-718d-b03b-e2d6bb231202', '019a30c1-6540-7369-a0cc-8ef7f947c6fc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-653e-718d-b03b-e2d6bb231202', '019a30c1-6541-71c9-a6af-ff4226eb818f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-653e-718d-b03b-e2d6bb231202', '019a30c1-6541-71c9-a6af-ff4226f609df'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-653e-718d-b03b-e2d6bb231202', '019a30c1-6542-7008-adf2-cc1141bf0b31'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6548-7334-b5e7-2679c09493a4', '019a30c1-63e8-7257-a059-790bbc41c764'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6548-7334-b5e7-2679c09493a4', '019a30c1-64e5-71bc-aab7-90f7235180ee'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6548-7334-b5e7-2679c09493a4', '019a30c1-654c-73b9-b517-f2ec98b06484'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6548-7334-b5e7-2679c09493a4', '019a30c1-654c-73b9-b517-f2ec991c1556'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6548-7334-b5e7-2679c09493a4', '019a30c1-64e7-71cb-84ed-3d9e59667d72'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6558-729d-983b-a8c56678bcea', '019a30c1-655a-73e4-9559-6c5bcf171ee6'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6558-729d-983b-a8c56678bcea', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6558-729d-983b-a8c56678bcea', '019a30c1-655a-73e4-9559-6c5bcf3b1359'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6558-729d-983b-a8c56678bcea', '019a30c1-655b-7268-ab77-bbc9ce4d8bff'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6558-729d-983b-a8c56678bcea', '019a30c1-655b-7268-ab77-bbc9cf151989'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6560-71a2-a8a7-20856ff708fd', '019a30c1-63f4-728b-8278-08eb1e9b52cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6560-71a2-a8a7-20856ff708fd', '019a30c1-6562-72b7-bf47-8c0f3bfef30b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6560-71a2-a8a7-20856ff708fd', '019a30c1-6563-730e-a4e9-a1192596c127'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6560-71a2-a8a7-20856ff708fd', '019a30c1-6563-730e-a4e9-a11925f212bd'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6560-71a2-a8a7-20856ff708fd', '019a30c1-6564-7031-b427-3956d9a783df'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-656a-70f4-976c-b0d0239b4c64', '019a30c1-6562-72b7-bf47-8c0f3bfef30b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-656a-70f4-976c-b0d0239b4c64', '019a30c1-6563-730e-a4e9-a1192596c127'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-656a-70f4-976c-b0d0239b4c64', '019a30c1-656c-7201-ad86-73c5fbd60298'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-656a-70f4-976c-b0d0239b4c64', '019a30c1-656d-717d-8541-81d1384024b2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-656a-70f4-976c-b0d0239b4c64', '019a30c1-6564-7031-b427-3956d9a783df'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6573-712c-9931-96b45387ec69', '019a30c1-643d-715f-ac39-887294d4a78f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6573-712c-9931-96b45387ec69', '019a30c1-643e-7111-973c-2f8b702cc3bf'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6573-712c-9931-96b45387ec69', '019a30c1-643e-7111-973c-2f8b70dd32e6'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6573-712c-9931-96b45387ec69', '019a30c1-6576-722f-a195-885837c39a80'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6573-712c-9931-96b45387ec69', '019a30c1-6577-723d-bc30-665f9b1ab08b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-657e-71d3-b402-f12ac021e3f0', '019a30c1-6580-722c-a274-2c9cfe03487f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-657e-71d3-b402-f12ac021e3f0', '019a30c1-6581-732b-abe6-28af14d704d8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-657e-71d3-b402-f12ac021e3f0', '019a30c1-6581-732b-abe6-28af15b55b64'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-657e-71d3-b402-f12ac021e3f0', '019a30c1-6582-7085-8ffa-f391a3d6e5b2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-657e-71d3-b402-f12ac021e3f0', '019a30c1-6582-7085-8ffa-f391a47bb4ab'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-658e-7154-83de-09048c8201fd'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-63bf-70a7-b597-7b105039cdba'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-6408-7190-a993-aea7203e1968'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', '019a30c1-63f4-728b-8278-08eb1e9b52cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-65f1-70af-822a-dab25bd88f06', '019a30c1-6395-738c-93d2-47678e8f1a44'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-65f1-70af-822a-dab25bd88f06', '019a30c1-63ca-737f-a669-6ca4960d0691'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-65f1-70af-822a-dab25bd88f06', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-65f1-70af-822a-dab25bd88f06', '019a30c1-65f3-7368-a194-af45a8836487'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-65f1-70af-822a-dab25bd88f06', '019a30c1-63cb-737e-924f-a36d5d1e1eec'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-65fa-70cd-babd-32eb7f80498b', '019a30c1-63b2-7184-9898-cb8dfd8a5405'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-65fa-70cd-babd-32eb7f80498b', '019a30c1-65fc-73dd-b75e-5541af54d648'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-65fa-70cd-babd-32eb7f80498b', '019a30c1-63f3-7312-85ff-405779f811cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-65fa-70cd-babd-32eb7f80498b', '019a30c1-63f3-7312-85ff-40577af6fbb3'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-65fa-70cd-babd-32eb7f80498b', '019a30c1-63f4-728b-8278-08eb1e9b52cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6603-7011-a2dd-b8b910a493a3', '019a30c1-6605-72ef-9d95-d876e619ce48'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6603-7011-a2dd-b8b910a493a3', '019a30c1-6606-711e-88ad-085bd5e4d803'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6603-7011-a2dd-b8b910a493a3', '019a30c1-6540-7369-a0cc-8ef7f8c71ee8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6603-7011-a2dd-b8b910a493a3', '019a30c1-6541-71c9-a6af-ff4226f609df'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6603-7011-a2dd-b8b910a493a3', '019a30c1-6542-7008-adf2-cc1141bf0b31'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-660c-722b-ae00-c52b516a3b2d', '019a30c1-660e-7305-a586-2a5f158cbcab'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-660c-722b-ae00-c52b516a3b2d', '019a30c1-660f-73d4-aac6-93140661c7f6'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-660c-722b-ae00-c52b516a3b2d', '019a30c1-660f-73d4-aac6-93140742b0ef'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-660c-722b-ae00-c52b516a3b2d', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-660c-722b-ae00-c52b516a3b2d', '019a30c1-6610-720a-99c2-415b20299b06'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6618-71a2-8fdf-914f8f033d71', '019a30c1-6619-71e8-87ec-3e0d9712631e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6618-71a2-8fdf-914f8f033d71', '019a30c1-661a-70ba-ac13-a288718732da'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6618-71a2-8fdf-914f8f033d71', '019a30c1-661a-70ba-ac13-a2887208b118'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6618-71a2-8fdf-914f8f033d71', '019a30c1-661b-711c-9502-c669605eea6e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6618-71a2-8fdf-914f8f033d71', '019a30c1-661b-711c-9502-c66960928eff'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6624-70bb-b619-0768ca14bc20', '019a30c1-6625-7398-8dad-2373ca41852c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6624-70bb-b619-0768ca14bc20', '019a30c1-655b-7268-ab77-bbc9cf151989'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6624-70bb-b619-0768ca14bc20', '019a30c1-644d-7298-84cb-9497597eaeaa'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6624-70bb-b619-0768ca14bc20', '019a30c1-644e-72fe-ae21-e1b1c607a2cf'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6624-70bb-b619-0768ca14bc20', '019a30c1-6626-73fb-8f76-7db6bd3a3d24'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-662c-72bf-b8a9-70f77563e954', '019a30c1-662e-72a4-9321-77cb4bc53a1a'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-662c-72bf-b8a9-70f77563e954', '019a30c1-662e-72a4-9321-77cb4bd667bc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-662c-72bf-b8a9-70f77563e954', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-662c-72bf-b8a9-70f77563e954', '019a30c1-662f-7262-bc31-582f7d475af2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-662c-72bf-b8a9-70f77563e954', '019a30c1-662f-7262-bc31-582f7de2f663'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-6638-707a-96b5-1b1eee8364a4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-6638-707a-96b5-1b1eee8ecd6f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-6397-711a-ab98-f4e0fee04f1b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-6639-70be-af42-dc03a90fde67'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', '019a30c1-6639-70be-af42-dc03a91d7da2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6646-7081-a779-d25b3929c68c', '019a30c1-6647-7126-a606-e413ad4fcb2d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6646-7081-a779-d25b3929c68c', '019a30c1-6648-7251-9c81-ca2696d24205'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6646-7081-a779-d25b3929c68c', '019a30c1-6648-7251-9c81-ca2696d8acc5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6646-7081-a779-d25b3929c68c', '019a30c1-6649-712c-a919-2926c364fe67'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6646-7081-a779-d25b3929c68c', '019a30c1-6649-712c-a919-2926c42ff139'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6651-7081-ae74-b7965b4fd136', '019a30c1-6654-70c2-a656-50e96d7e6f0c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6651-7081-ae74-b7965b4fd136', '019a30c1-6654-70c2-a656-50e96d974337'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6651-7081-ae74-b7965b4fd136', '019a30c1-6654-70c2-a656-50e96de1a8e2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6651-7081-ae74-b7965b4fd136', '019a30c1-6655-7139-8b63-583a2de6bba7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6651-7081-ae74-b7965b4fd136', '019a30c1-6655-7139-8b63-583a2e4f3134'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6540-7369-a0cc-8ef7f8c71ee8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6540-7369-a0cc-8ef7f947c6fc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6541-71c9-a6af-ff4226f609df'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-665f-7145-87b6-531f3222962c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', '019a30c1-6542-7008-adf2-cc1141bf0b31'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-666a-7033-bbeb-44bdd0336191', '019a30c1-6654-70c2-a656-50e96d7e6f0c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-666a-7033-bbeb-44bdd0336191', '019a30c1-6654-70c2-a656-50e96d974337'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-666a-7033-bbeb-44bdd0336191', '019a30c1-6654-70c2-a656-50e96de1a8e2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-666a-7033-bbeb-44bdd0336191', '019a30c1-6655-7139-8b63-583a2e4f3134'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-666a-7033-bbeb-44bdd0336191', '019a30c1-666d-73f7-b0ba-99d38183fa22'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6674-7239-b42d-fcbbcd7a6339', '019a30c1-6675-7271-a867-f595a1641373'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6674-7239-b42d-fcbbcd7a6339', '019a30c1-6676-7257-a4d1-b926ef12af20'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6674-7239-b42d-fcbbcd7a6339', '019a30c1-6676-7257-a4d1-b926ef5452a9'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6674-7239-b42d-fcbbcd7a6339', '019a30c1-6677-7057-97db-328f22da90ff'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6674-7239-b42d-fcbbcd7a6339', '019a30c1-6677-7057-97db-328f230fbdd8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-667e-72d7-a86e-4b34703c9fd2', '019a30c1-6648-7251-9c81-ca2696d8acc5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-667e-72d7-a86e-4b34703c9fd2', '019a30c1-63e8-7257-a059-790bbc41c764'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-667e-72d7-a86e-4b34703c9fd2', '019a30c1-64e6-7289-b22c-77d35a151e1e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-667e-72d7-a86e-4b34703c9fd2', '019a30c1-6682-701f-9b11-28c82c4893e8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-667e-72d7-a86e-4b34703c9fd2', '019a30c1-64f4-706c-8179-caeab3e76808'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-668c-726f-9966-01a99a1778ab'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-668c-726f-9966-01a99adf5ae2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-668d-70eb-83bb-92798af9edf4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', '019a30c1-668d-70eb-83bb-92798bc2a744'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6697-73b4-91b1-d9289cc9c641', '019a30c1-6699-7352-ac0c-c744cce1435b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6697-73b4-91b1-d9289cc9c641', '019a30c1-6699-7352-ac0c-c744cdc152b0'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6697-73b4-91b1-d9289cc9c641', '019a30c1-669a-70d4-9fa2-5a260cd2ceff'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66a0-72c9-bbe1-0ff9f3809efd', '019a30c1-660e-7305-a586-2a5f158cbcab'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66a0-72c9-bbe1-0ff9f3809efd', '019a30c1-66a2-73ad-bbcd-1310d19c5d64'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66a0-72c9-bbe1-0ff9f3809efd', '019a30c1-6649-712c-a919-2926c42ff139'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66a0-72c9-bbe1-0ff9f3809efd', '019a30c1-66a2-73ad-bbcd-1310d201ebfc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66a0-72c9-bbe1-0ff9f3809efd', '019a30c1-66a3-7235-84ac-134c7fbec65e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66aa-70da-8302-bd81e530c406', '019a30c1-66ac-715b-b507-37532e92cdc5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66aa-70da-8302-bd81e530c406', '019a30c1-66ac-715b-b507-37532f5217f2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66aa-70da-8302-bd81e530c406', '019a30c1-66ad-7281-9e76-f634f71dff11'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66aa-70da-8302-bd81e530c406', '019a30c1-66ad-7281-9e76-f634f762fa55'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-63e8-7257-a059-790bbc41c764'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-64e6-7289-b22c-77d35a151e1e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-64e6-7289-b22c-77d35af43fdc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-64f4-706c-8179-caeab3e76808'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', '019a30c1-66b8-70c0-8752-dd2aae160549'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66c2-7198-88d9-ff47ca70fe09', '019a30c1-66c3-706e-b627-5b7405472bbd'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66c2-7198-88d9-ff47ca70fe09', '019a30c1-66c4-70c5-beb1-32cea7cd5420'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66c2-7198-88d9-ff47ca70fe09', '019a30c1-66c4-70c5-beb1-32cea8519fa9'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66c2-7198-88d9-ff47ca70fe09', '019a30c1-66c4-70c5-beb1-32cea85aefea'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66c2-7198-88d9-ff47ca70fe09', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66cc-7387-bb82-513a03d10532', '019a30c1-63b2-7184-9898-cb8dfd8a5405'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66cc-7387-bb82-513a03d10532', '019a30c1-63b3-72a7-b3ce-960492f9978d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66cc-7387-bb82-513a03d10532', '019a30c1-66d0-713b-8111-bc3d635f1ca9'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66cc-7387-bb82-513a03d10532', '019a30c1-66d0-713b-8111-bc3d64120332'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66cc-7387-bb82-513a03d10532', '019a30c1-63b4-7388-a857-541a7fea6ac1'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-66d9-72e9-89ad-c73721ed29bb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-66da-736c-a3c6-aa25c5c26368'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-65fc-73dd-b75e-5541af54d648'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-66da-736c-a3c6-aa25c62732fe'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', '019a30c1-63f4-728b-8278-08eb1e9b52cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-660f-73d4-aac6-93140661c7f6'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-63ca-737f-a669-6ca4960d0691'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-66e7-7039-8042-03d255e41a09'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', '019a30c1-66e8-73d5-8db7-b92fdcb8687f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66ef-719c-b1c2-01e15409d42c', '019a30c1-66f2-701d-89f4-8efaabb1e4e4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66ef-719c-b1c2-01e15409d42c', '019a30c1-66f2-701d-89f4-8efaacafc7d6'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66ef-719c-b1c2-01e15409d42c', '019a30c1-66f3-7071-bdf8-bcc0eea7b4f8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66ef-719c-b1c2-01e15409d42c', '019a30c1-66f3-7071-bdf8-bcc0eeb91c06'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66ef-719c-b1c2-01e15409d42c', '019a30c1-66f4-70c9-8d31-ee788be24d5c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66fa-735c-ba0f-b29e5bcf4c84', '019a30c1-658e-7154-83de-09048c8201fd'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66fa-735c-ba0f-b29e5bcf4c84', '019a30c1-6395-738c-93d2-47678e8f1a44'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66fa-735c-ba0f-b29e5bcf4c84', '019a30c1-6408-7190-a993-aea7203e1968'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66fa-735c-ba0f-b29e5bcf4c84', '019a30c1-63ca-737f-a669-6ca4960d0691'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-66fa-735c-ba0f-b29e5bcf4c84', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6703-7285-bca7-72fb6b577478', '019a30c1-66c3-706e-b627-5b7405472bbd'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6703-7285-bca7-72fb6b577478', '019a30c1-66c4-70c5-beb1-32cea85aefea'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6703-7285-bca7-72fb6b577478', '019a30c1-6705-710b-8bbf-ccf9ef638458'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6703-7285-bca7-72fb6b577478', '019a30c1-6705-710b-8bbf-ccf9f012aa7b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6703-7285-bca7-72fb6b577478', '019a30c1-6706-72cb-9c72-7c6eecc46c23'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-670c-73c4-af58-317d7dddeeec', '019a30c1-670d-710c-aad6-e64ae5a00d74'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-670c-73c4-af58-317d7dddeeec', '019a30c1-670d-710c-aad6-e64ae5dcd5fa'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-670c-73c4-af58-317d7dddeeec', '019a30c1-670e-73a0-930d-8458347c3020'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-670c-73c4-af58-317d7dddeeec', '019a30c1-670e-73a0-930d-845835651994'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-670c-73c4-af58-317d7dddeeec', '019a30c1-670f-7149-b072-fef3d44acf73'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-6716-7178-a6df-b2790c63952d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-6717-7009-adfe-6290ecfac71c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-6717-7009-adfe-6290ed328283'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-6718-707e-8fb9-f3e1e63c85a0'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', '019a30c1-6718-707e-8fb9-f3e1e6833a2f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6728-70dc-8414-f8db2d3135a2', '019a30c1-641c-7363-81cb-f4062297f944'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6728-70dc-8414-f8db2d3135a2', '019a30c1-63e9-70f5-a53c-c7af5dcc88ca'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6728-70dc-8414-f8db2d3135a2', '019a30c1-6729-70c3-a084-954a006c33a9'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6728-70dc-8414-f8db2d3135a2', '019a30c1-63ea-7371-9c02-ee5d565afaff'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6728-70dc-8414-f8db2d3135a2', '019a30c1-641d-71d5-800f-69523f73c28a'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6730-7165-b0b5-78f70809cbc6', '019a30c1-6413-73e7-844e-4ee9ff45a5fb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6730-7165-b0b5-78f70809cbc6', '019a30c1-6733-714d-b890-b3f35b988382'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6730-7165-b0b5-78f70809cbc6', '019a30c1-641c-7363-81cb-f4062297f944'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6730-7165-b0b5-78f70809cbc6', '019a30c1-63e9-70f5-a53c-c7af5dcc88ca'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6730-7165-b0b5-78f70809cbc6', '019a30c1-6734-7246-9f89-06eac341f08f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-673a-7246-a5f8-68841a090d84', '019a30c1-673b-705c-ab1a-75a363aa43bc'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-673a-7246-a5f8-68841a090d84', '019a30c1-644d-7298-84cb-9497597eaeaa'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-673a-7246-a5f8-68841a090d84', '019a30c1-673c-70b3-9e44-b8deba71c3d0'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-673a-7246-a5f8-68841a090d84', '019a30c1-673c-70b3-9e44-b8debb21afe1'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-673a-7246-a5f8-68841a090d84', '019a30c1-673d-7041-bfc5-9a91088c5802'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-63bf-70a7-b597-7b105039cdba'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-64c4-710c-b405-0774493e6b4e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-64c4-710c-b405-0774494ac5b7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-64c5-7259-a27b-c9e993610c34'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', '019a30c1-64c5-7259-a27b-c9e993bc18d5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-674f-73ae-be63-188b07a7ba75', '019a30c1-6750-72cc-9940-95f8360246b9'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-674f-73ae-be63-188b07a7ba75', '019a30c1-6751-716b-8344-8f18e5e2b352'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-674f-73ae-be63-188b07a7ba75', '019a30c1-660f-73d4-aac6-93140742b0ef'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-674f-73ae-be63-188b07a7ba75', '019a30c1-641c-7363-81cb-f4062297f944'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-674f-73ae-be63-188b07a7ba75', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-6759-726b-9d98-af886fe7c739'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-65fc-73dd-b75e-5541af54d648'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-63f3-7312-85ff-405779f811cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-63f3-7312-85ff-40577af6fbb3'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', '019a30c1-63f4-728b-8278-08eb1e9b52cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-676b-7088-b5fb-fc713de733db'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-6655-7139-8b63-583a2de6bba7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-676c-702e-93a6-15fa13ebbd67'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-676c-702e-93a6-15fa14b2a49d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', '019a30c1-676d-7178-82af-9d9dea86572d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-679a-700b-b42b-ec32b5518f50'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-679a-700b-b42b-ec32b60af401'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-679b-70f4-acc7-95d6ee6f76f5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-679b-70f4-acc7-95d6eee3ea4b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6798-722f-b43d-16b522f62701', '019a30c1-6521-73e7-bb76-68efdc470323'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67a4-72d0-8953-6e48c10b07d0', '019a30c1-67a5-73c1-9a17-ff3dbb068d5a'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67a4-72d0-8953-6e48c10b07d0', '019a30c1-67a6-706e-aabc-49bd719a4bc7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67a4-72d0-8953-6e48c10b07d0', '019a30c1-67a6-706e-aabc-49bd71e34509'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67a4-72d0-8953-6e48c10b07d0', '019a30c1-679b-70f4-acc7-95d6eee3ea4b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67a4-72d0-8953-6e48c10b07d0', '019a30c1-67a7-72be-8ae7-8ade871f0e0f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67ad-704c-9b53-cf1b2dd35f29', '019a30c1-67af-71d8-8fb4-439b9024c710'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67ad-704c-9b53-cf1b2dd35f29', '019a30c1-679b-70f4-acc7-95d6ee6f76f5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67ad-704c-9b53-cf1b2dd35f29', '019a30c1-6655-7139-8b63-583a2de6bba7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67ad-704c-9b53-cf1b2dd35f29', '019a30c1-679b-70f4-acc7-95d6eee3ea4b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67ad-704c-9b53-cf1b2dd35f29', '019a30c1-6521-73e7-bb76-68efdc470323'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67b8-7011-897b-0e984072833b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67b8-7011-897b-0e9840ef43a6'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67b9-709a-99dd-57a84188b797'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-67a5-73c1-9a17-ff3dbb068d5a'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67b6-7143-9e53-61592529901e', '019a30c1-6521-73e7-bb76-68efdc470323'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67cc-73b4-833c-d403005e0542', '019a30c1-668c-726f-9966-01a99a1778ab'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67cc-73b4-833c-d403005e0542', '019a30c1-6408-7190-a993-aea7203e1968'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67cc-73b4-833c-d403005e0542', '019a30c1-67cf-70aa-aade-867ef75daacb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67cc-73b4-833c-d403005e0542', '019a30c1-63ca-737f-a669-6ca4960d0691'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67cc-73b4-833c-d403005e0542', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67d8-731a-914b-01dc700b99c2', '019a30c1-67d9-71e8-9415-662294070c0c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67dd-738e-8419-89ee615b92f6', '019a30c1-63b2-7184-9898-cb8dfd8a5405'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67dd-738e-8419-89ee615b92f6', '019a30c1-63b3-72a7-b3ce-960492f9978d'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67dd-738e-8419-89ee615b92f6', '019a30c1-67e0-70ff-b382-63369e600be5'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67dd-738e-8419-89ee615b92f6', '019a30c1-63b3-72a7-b3ce-9604937be2c8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67dd-738e-8419-89ee615b92f6', '019a30c1-67e1-73fa-a9da-669b7a368efe'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67e7-7313-864f-274a8e5c7398', '019a30c1-63bf-70a7-b597-7b105039cdba'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67e7-7313-864f-274a8e5c7398', '019a30c1-67e9-7028-97aa-9e64ee55d6f8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67e7-7313-864f-274a8e5c7398', '019a30c1-63cb-737e-924f-a36d5c396a56'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67e7-7313-864f-274a8e5c7398', '019a30c1-63f4-728b-8278-08eb1e9b52cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67e7-7313-864f-274a8e5c7398', '019a30c1-67ea-7037-ada4-33dadb08cd31'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67f1-70a3-bfb6-47d69cbf4edb', '019a30c1-67f3-73a9-8ff5-2cb450de3bed'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67f1-70a3-bfb6-47d69cbf4edb', '019a30c1-63f3-7312-85ff-405779f811cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67f1-70a3-bfb6-47d69cbf4edb', '019a30c1-63f3-7312-85ff-40577af6fbb3'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67f1-70a3-bfb6-47d69cbf4edb', '019a30c1-63f4-728b-8278-08eb1e9b52cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67f1-70a3-bfb6-47d69cbf4edb', '019a30c1-63f4-728b-8278-08eb1f693189'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67fa-70ee-87df-58c9c900fc3a', '019a30c1-67fc-729c-8051-02b8509715be'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67fa-70ee-87df-58c9c900fc3a', '019a30c1-67fc-729c-8051-02b85174f1ba'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67fa-70ee-87df-58c9c900fc3a', '019a30c1-67fd-7229-81de-8cd74d8c3c66'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67fa-70ee-87df-58c9c900fc3a', '019a30c1-67fd-7229-81de-8cd74df61b4b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-67fa-70ee-87df-58c9c900fc3a', '019a30c1-67fd-7229-81de-8cd74e65992c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6804-70fe-a1e5-7facb1af6b84', '019a30c1-6638-707a-96b5-1b1eee8364a4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6804-70fe-a1e5-7facb1af6b84', '019a30c1-6807-732e-b6a7-c3dc9e9411ba'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6804-70fe-a1e5-7facb1af6b84', '019a30c1-6397-711a-ab98-f4e0fee04f1b'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6804-70fe-a1e5-7facb1af6b84', '019a30c1-6639-70be-af42-dc03a90fde67'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6804-70fe-a1e5-7facb1af6b84', '019a30c1-6808-7103-b09a-5b5587c6adb2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', '019a30c1-6812-73f6-833d-4553a01450b4'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', '019a30c1-661a-70ba-ac13-a288718732da'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', '019a30c1-6813-7331-81a5-472024a53ec6'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', '019a30c1-6813-7331-81a5-472024c30500'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', '019a30c1-6814-72b5-b9d1-b82a67efa315'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-681b-73d1-bcce-fe3be4518396', '019a30c1-6605-72ef-9d95-d876e619ce48'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-681b-73d1-bcce-fe3be4518396', '019a30c1-681c-71f1-9677-819e62e78518'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-681b-73d1-bcce-fe3be4518396', '019a30c1-681d-7365-8f03-5e4a6721e949'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-681b-73d1-bcce-fe3be4518396', '019a30c1-681d-7365-8f03-5e4a67e27a67'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-67f3-73a9-8ff5-2cb450de3bed'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-6826-70d6-bf93-5d479c9c9a7c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-65fc-73dd-b75e-5541af54d648'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-6827-722c-bd32-bcddfd1a36e0'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', '019a30c1-6828-71d0-8161-aec4be7d677e'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6831-7085-a35a-64802ce42eca', '019a30c1-6520-7061-b296-08a3db5499ad'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6831-7085-a35a-64802ce42eca', '019a30c1-6833-708b-80ec-733ff6d9f429'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6831-7085-a35a-64802ce42eca', '019a30c1-6834-7071-a966-945c2ef372c3'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6831-7085-a35a-64802ce42eca', '019a30c1-6834-7071-a966-945c2fad009c'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6831-7085-a35a-64802ce42eca', '019a30c1-6835-72a0-a77e-d19288e7d6b7'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-683b-71fb-bcb9-2606114b7747', '019a30c1-660f-73d4-aac6-93140661c7f6'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-683b-71fb-bcb9-2606114b7747', '019a30c1-683c-7054-b4d6-36c86afed81f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-683b-71fb-bcb9-2606114b7747', '019a30c1-683d-72fb-8db3-50d2137d3d18'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-683b-71fb-bcb9-2606114b7747', '019a30c1-683d-72fb-8db3-50d213817311'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-683b-71fb-bcb9-2606114b7747', '019a30c1-683e-7355-ae25-fe8b7eff3216'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6846-715f-90ca-5c02877af480', '019a30c1-6502-73e8-b21c-30cba51b9f51'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6846-715f-90ca-5c02877af480', '019a30c1-6563-730e-a4e9-a1192596c127'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6846-715f-90ca-5c02877af480', '019a30c1-656c-7201-ad86-73c5fbd60298'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6846-715f-90ca-5c02877af480', '019a30c1-656d-717d-8541-81d1384024b2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6846-715f-90ca-5c02877af480', '019a30c1-6564-7031-b427-3956d9a783df'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-67f3-73a9-8ff5-2cb450de3bed'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-65fc-73dd-b75e-5541af54d648'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-6854-7363-9a07-4d873420842f'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-63f4-728b-8278-08eb1e9b52cb'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', '019a30c1-6855-71a1-91e3-d25dc4017977'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-685f-7033-a9e3-4b26c3536700', '019a30c1-63be-729d-a5a5-f4de56819988'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-685f-7033-a9e3-4b26c3536700', '019a30c1-63bf-70a7-b597-7b105039cdba'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-685f-7033-a9e3-4b26c3536700', '019a30c1-67e9-7028-97aa-9e64ee55d6f8'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-685f-7033-a9e3-4b26c3536700', '019a30c1-6862-7360-90bd-0ab0c6419dbd'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-685f-7033-a9e3-4b26c3536700', '019a30c1-6862-7360-90bd-0ab0c64a06c2'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-a603-7313-a7a8-a9f190c8daa5', '019a30c1-a605-701e-9fbb-db03bd33ccdd'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-a603-7313-a7a8-a9f190c8daa5', '019a30c1-a605-701e-9fbb-db03bdee096a'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-a603-7313-a7a8-a9f190c8daa5', '019a30c1-a606-706d-8a37-1e4252fe3908'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-a60b-71dc-a85d-0c81506cf9fa', '019a30c1-a60c-7189-a44a-2345d3adca57'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-a60b-71dc-a85d-0c81506cf9fa', '019a30c1-a60c-7189-a44a-2345d3e2b949'); -INSERT INTO public.plugin_plugin_tags VALUES ('019a30c1-a60b-71dc-a85d-0c81506cf9fa', '019a30c1-a60d-73eb-8e0f-01d96d60c1c9'); - - --- --- Data for Name: plugin_tags; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.plugin_tags VALUES ('019a30c1-6379-71d3-8314-8f33c4f94a76', 'acf', 'acf'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-637a-73d3-9e72-bf1f21d8e5e3', 'meta', 'meta'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-637b-73a1-be88-41c2073d3b75', 'fields', 'fields'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-637b-73a1-be88-41c207dd9264', 'repeater', 'repeater'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-637c-72d7-b626-07e09fc3d4ba', 'custom-fields', 'custom fields'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6395-738c-93d2-47678e8f1a44', 'spam', 'spam'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6396-7013-8c01-91d6820271c2', 'antispam', 'antispam'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6396-7013-8c01-91d68217355b', 'comments', 'comments'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6397-711a-ab98-f4e0fe69f60b', 'anti-spam', 'anti-spam'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6397-711a-ab98-f4e0fee04f1b', 'contact-form', 'contact form'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63b2-7184-9898-cb8dfd8a5405', 'seo', 'seo'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63b3-72a7-b3ce-960492f9978d', 'schema', 'schema'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63b3-72a7-b3ce-9604937be2c8', 'xml-sitemap', 'xml sitemap'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63b3-72a7-b3ce-960494264235', 'meta-description', 'meta description'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63b4-7388-a857-541a7fea6ac1', 'google-search-console', 'google search console'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63bd-70ec-96b6-88a34a5cc3dc', 'copy', 'copy'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63be-729d-a5a5-f4de565ca275', 'move', 'move'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63be-729d-a5a5-f4de56819988', 'clone', 'clone'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63bf-70a7-b597-7b105039cdba', 'backup', 'backup'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63bf-70a7-b597-7b1050533b8c', 'transfer', 'transfer'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63ca-737f-a669-6ca4960d0691', 'firewall', 'firewall'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63cb-737e-924f-a36d5c396a56', 'security', 'security'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63cb-737e-924f-a36d5d1e1eec', 'login-security', 'login security'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63cc-72cb-bc0c-8853a2be6966', 'malware-scanning', 'Malware Scanning'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63cc-72cb-bc0c-8853a335778d', 'two-factor-authentication', 'two factor authentication'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63d9-72f7-bc7d-b3ded5231d40', 'spam-filter', 'spam filter'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63da-70f6-98f0-8e9cf0dbe945', 'spam-protection', 'spam protection'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63e8-7257-a059-790bbc41c764', 'elementor', 'elementor'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63e9-70f5-a53c-c7af5dcc88ca', 'gutenberg', 'gutenberg'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63e9-70f5-a53c-c7af5e0bcfba', 'templates', 'templates'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63ea-7371-9c02-ee5d565afaff', 'block-editor', 'block-editor'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63ea-7371-9c02-ee5d568fa3d5', 'astra-starter-sites', 'Astra Starter Sites'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63f2-7315-98fd-af2a327a58ee', 'images', 'images'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63f3-7312-85ff-405779f811cb', 'optimize', 'Optimize'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63f3-7312-85ff-40577af6fbb3', 'pagespeed', 'pagespeed'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63f4-728b-8278-08eb1e9b52cb', 'performance', 'performance'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63f4-728b-8278-08eb1f693189', 'core-web-vitals', 'core web vitals'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63fe-70e0-8fd6-02d4e4c0f156', 'search-replace', 'search replace'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63fe-70e0-8fd6-02d4e4f24c6f', 'update-live-url', 'update live url'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63fe-70e0-8fd6-02d4e59cc5f7', 'search-and-replace', 'search and replace'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63ff-7101-b8cc-0d4cecdf737d', 'update-database-urls', 'update database urls'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-63ff-7101-b8cc-0d4ced18f612', 'search-replace-database', 'search replace database'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6408-7190-a993-aea7203e1968', 'malware', 'malware'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6409-707b-9d5f-7fd057e8bc1a', 'password-protection', 'password protection'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-640a-73d0-a285-371212f545f5', 'brute-force-protection', 'brute force protection'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6413-73e7-844e-4ee9ff45a5fb', 'block', 'block'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6414-70a0-9ef5-d4d67742de39', 'trail', 'trail'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6414-70a0-9ef5-d4d6783cebf2', 'breadcrumb', 'breadcrumb'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6415-7103-a178-d0b4d334ffa9', 'navigation', 'navigation'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6415-7103-a178-d0b4d372df87', 'breadcrumbs', 'breadcrumbs'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-641c-7363-81cb-f4062297f944', 'editor', 'editor'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-641d-71d5-800f-69523f73c28a', 'classic-editor', 'classic editor'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-642a-7031-91b3-2ce9a7160039', 'disable', 'disable'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-642b-730b-a7fe-3e803194ed57', 'classic-widgets', 'classic widgets'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-642b-730b-a7fe-3e8031eeddf1', 'disable-gutenberg', 'disable gutenberg'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6434-7118-8fd1-a4f06e83f718', 'whatsapp', 'whatsapp'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6434-7118-8fd1-a4f06f6c1a92', 'click-to-chat', 'click to chat'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6435-7287-be1e-7506fd1ee286', 'whatsapp-chat', 'whatsapp chat'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6435-7287-be1e-7506fd381015', 'whatsapp-business', 'whatsapp business'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6436-710b-a909-05419eebf12e', 'woocommerce-whatsapp', 'woocommerce whatsapp'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-643d-715f-ac39-887294d4a78f', 'css', 'css'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-643e-7111-973c-2f8b702cc3bf', 'php', 'php'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-643e-7111-973c-2f8b70dd32e6', 'code', 'code'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-643f-738f-8250-433889e00941', 'snippets', 'snippets'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-643f-738f-8250-43388a260c39', 'multisite', 'multisite'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-644c-7036-a04e-0990cacaff8c', 'landing-page', 'landing page'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-644c-7036-a04e-0990cb642e4b', 'page-builder', 'page builder'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-644d-7298-84cb-949759291167', 'website-builder', 'website builder'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-644d-7298-84cb-9497597eaeaa', 'coming-soon-page', 'coming soon page'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-644e-72fe-ae21-e1b1c607a2cf', 'maintenance-mode', 'maintenance mode'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6457-7093-8cfb-9759fdc11af4', 'gdpr', 'GDPR'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6457-7093-8cfb-9759fe658cf7', 'cookie', 'cookie'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6458-7295-8731-e8db919b7826', 'consent', 'consent'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6458-7295-8731-e8db92479eb5', 'privacy', 'privacy'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6459-7076-85b8-cf0f0ad918a4', 'cookie-notice', 'cookie notice'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6467-7332-9a8d-f7fe5fe615c4', 'schema-woven-validation', 'schema-woven validation'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6470-70b9-ad35-e775b73398b5', 'cookie-banner', 'cookie banner'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6470-70b9-ad35-e775b7a4f521', 'cookie-consent', 'cookie consent'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6479-716d-91fe-3a22e59feafb', 'ccpa', 'CCPA'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-647a-7188-8bed-92c2c8b74f54', 'cookies', 'cookies'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6483-721c-9c44-2dbfa6fdae26', 'chat', 'chat'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6483-721c-9c44-2dbfa74581f7', 'telegram', 'telegram'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6484-728d-87e1-f8bfd3d80e63', 'floating-button', 'floating button'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6484-728d-87e1-f8bfd430ef5a', 'facebook-messenger', 'facebook messenger'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-648e-71af-b389-bbb8ebceb237', 'site-css', 'site css'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-648e-71af-b389-bbb8ebdd7909', 'add-style', 'add style'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-648f-72cc-8efe-635b832e717c', 'custom-js', 'custom js'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-648f-72cc-8efe-635b83bc5cbb', 'custom-css', 'custom css'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-648f-72cc-8efe-635b84b2c49a', 'customize-theme', 'customize theme'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6498-7179-b1ae-2dced562bb1b', 'types', 'types'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6498-7179-b1ae-2dced563af73', 'taxonomy', 'taxonomy'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6499-70be-844b-aaef60a23517', 'post-type', 'post type'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6499-70be-844b-aaef61090d5f', 'content-types', 'content types'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-649a-706a-9214-ad2b28ec9a19', 'custom-post-types', 'custom post types'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64a4-7264-a33f-c5d582db1871', 'stop-spam', 'stop spam'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64a5-73f8-8fa2-b7007d75f646', 'delete-comments', 'delete comments'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64a5-73f8-8fa2-b7007e2861a2', 'remove-comments', 'remove comments'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64a6-7035-a70a-cd461b78ad58', 'disable-comments', 'disable comments'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64b1-7296-9e03-4dcb767b829d', 'duplicate-page', 'duplicate page'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64b2-73a6-9ea4-94203d3aa741', 'duplicate-post', 'duplicate post'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64b2-73a6-9ea4-94203d76805b', 'page-duplicate', 'Page Duplicate'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64b3-722a-a440-5e6a5ae7ddf2', 'post-duplicate', 'Post duplicate'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64b3-722a-a440-5e6a5bca3dd0', 'duplicate-custom-posts', 'duplicate custom posts'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64c4-710c-b405-0774493e6b4e', 'migration', 'migration'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64c4-710c-b405-0774494ac5b7', 'cloud-backup', 'cloud backup'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64c5-7259-a27b-c9e993610c34', 'database-backup', 'database backup'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64c5-7259-a27b-c9e993bc18d5', 'wordpress-backup', 'wordpress backup'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64ce-7366-a748-54efab81f301', 'gtm', 'gtm'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64cf-717c-918b-76dc6ed1557f', 'google-ads', 'google ads'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64cf-717c-918b-76dc6f2646fd', 'tag-manager', 'tag manager'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64cf-717c-918b-76dc6ff5f25b', 'google-analytics', 'google analytics'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64d0-72e2-b533-ab996cb7b283', 'google-tag-manager', 'google tag manager'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64db-719c-a006-b4f355548d34', 'drag-and-drop', 'drag-and-drop'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66d0-713b-8111-bc3d635f1ca9', 'redirection', 'redirection'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64e5-71bc-aab7-90f7235180ee', 'elementor-addon', 'elementor addon'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64e6-7289-b22c-77d35a151e1e', 'elementor-addons', 'elementor addons'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64e6-7289-b22c-77d35af43fdc', 'elementor-widgets', 'elementor widgets'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64e7-71cb-84ed-3d9e588e35e9', 'mega-menu-builder', 'mega menu builder'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64e7-71cb-84ed-3d9e59667d72', 'header-footer-builder', 'header footer builder'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64f4-706c-8179-caeab3e76808', 'elementor-templates', 'elementor templates'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-64f4-706c-8179-caeab4792181', 'elementor-woocommerce', 'elementor woocommerce'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6502-73e8-b21c-30cba51b9f51', 'webp', 'webp'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6503-70d0-9195-aeec05a669a7', 'resize', 'resize'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6503-70d0-9195-aeec0692e27b', 'convert', 'convert'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6504-72f7-99d7-3dc9dfb600ee', 'compress', 'compress'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6504-72f7-99d7-3dc9e07f37dc', 'lazy-load', 'lazy load'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-650b-73b0-81ab-1c63079c3bfb', 'crm', 'crm'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-650c-73a8-8b60-beb49971fe8d', 'bird', 'bird'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-650c-73a8-8b60-beb49a5b12d8', 'mail', 'mail'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-650c-73a8-8b60-beb49b09d56b', 'contact', 'contact'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6516-70e6-a7dd-365299116ae7', 'analytics', 'analytics'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6516-70e6-a7dd-36529a098fc0', 'website-analytics', 'website analytics'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6517-72b2-a06c-43e01f7b1c31', 'wordpress-analytics', 'WordPress analytics'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6517-72b2-a06c-43e0207af56f', 'google-analytics-dashboard', 'google analytics dashboard'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-651f-736c-8ec2-a8cee79931c3', 'ads', 'ads'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6520-7061-b296-08a3db5499ad', 'google', 'google'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6520-7061-b296-08a3dc4c4d28', 'listings', 'listings'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6521-73e7-bb76-68efdc470323', 'woocommerce', 'woocommerce'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6521-73e7-bb76-68efdccd1842', 'product-feed', 'product feed'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-652b-73e3-8c1f-204ab50d830c', 'adsense', 'adsense'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-652b-73e3-8c1f-204ab5ba27b7', 'search-console', 'Search Console'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-652c-72dd-9f5e-0ad36da8ff64', 'pagespeed-insights', 'pagespeed insights'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6535-7285-9eac-97bc5bdb999f', 'html-sitemap', 'html sitemap'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6536-70a9-8d57-f194b5c076e8', 'news-sitemap', 'news sitemap'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6536-70a9-8d57-f194b642e807', 'video-sitemap', 'video sitemap'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6540-7369-a0cc-8ef7f8c71ee8', 'language', 'language'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6540-7369-a0cc-8ef7f947c6fc', 'translate', 'translate'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6541-71c9-a6af-ff4226eb818f', 'translator', 'translator'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6541-71c9-a6af-ff4226f609df', 'translation', 'translation'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6542-7008-adf2-cc1141bf0b31', 'multilingual', 'multilingual'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-654c-73b9-b517-f2ec98b06484', 'elementor-widget', 'elementor widget'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-654c-73b9-b517-f2ec991c1556', 'elementor-template', 'elementor template'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-655a-73e4-9559-6c5bcf171ee6', 'tools', 'tools'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-655a-73e4-9559-6c5bcf3b1359', 'hostinger', 'hostinger'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-655b-7268-ab77-bbc9ce4d8bff', 'redirects', 'redirects'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-655b-7268-ab77-bbc9cf151989', 'maintenance', 'maintenance'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6562-72b7-bf47-8c0f3bfef30b', 'convert-avif', 'convert AVIF'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6563-730e-a4e9-a1192596c127', 'convert-webp', 'convert webp'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6563-730e-a4e9-a11925f212bd', 'image-compression', 'image compression'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6564-7031-b427-3956d9a783df', 'image-optimization', 'image optimization'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-656c-7201-ad86-73c5fbd60298', 'compress-images', 'compress images'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-656d-717d-8541-81d1384024b2', 'optimize-images', 'optimize images'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6576-722f-a195-885837c39a80', 'header', 'header'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6577-723d-bc30-665f9b1ab08b', 'code-snippets', 'code-snippets'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6580-722c-a274-2c9cfe03487f', 'instagram', 'Instagram'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6581-732b-abe6-28af14d704d8', 'instagram-feed', 'instagram feed'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6581-732b-abe6-28af15b55b64', 'instagram-photos', 'instagram photos'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6582-7085-8ffa-f391a3d6e5b2', 'instagram-widget', 'Instagram widget'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6582-7085-8ffa-f391a47bb4ab', 'instagram-gallery', 'instagram gallery'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-658e-7154-83de-09048c8201fd', 'scan', 'scan'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-65f3-7368-a194-af45a8836487', 'brute-force', 'Brute Force'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-65fc-73dd-b75e-5541af54d648', 'caching', 'caching'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6605-72ef-9d95-d876e619ce48', 'i18n', 'i18n'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6606-711e-88ad-085bd5e4d803', 'l10n', 'l10n'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-660e-7305-a586-2a5f158cbcab', 'admin', 'admin'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-660f-73d4-aac6-93140661c7f6', 'login', 'login'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-660f-73d4-aac6-93140742b0ef', 'access', 'access'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6610-720a-99c2-415b20299b06', 'loginizer', 'Loginizer'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6619-71e8-87ec-3e0d9712631e', 'form', 'form'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-661a-70ba-ac13-a288718732da', 'email', 'email'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-661a-70ba-ac13-a2887208b118', 'mailchimp', 'mailchimp'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-661b-711c-9502-c669605eea6e', 'subscribe', 'subscribe'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-661b-711c-9502-c66960928eff', 'newsletter', 'newsletter'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6625-7398-8dad-2373ca41852c', 'coming-soon', 'coming soon'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6626-73fb-8f76-7db6bd3a3d24', 'maintenance-page', 'maintenance page'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-662e-72a4-9321-77cb4bc53a1a', 'update', 'update'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-662e-72a4-9321-77cb4bd667bc', 'backups', 'backups'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-662f-7262-bc31-582f7d475af2', 'monitoring', 'monitoring'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-662f-7262-bc31-582f7de2f663', 'site-management', 'site management'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6638-707a-96b5-1b1eee8364a4', 'forms', 'forms'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6638-707a-96b5-1b1eee8ecd6f', 'lead-form', 'lead form'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6639-70be-af42-dc03a90fde67', 'form-builder', 'form builder'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6639-70be-af42-dc03a91d7da2', 'registration-form', 'registration form'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6647-7126-a606-e413ad4fcb2d', 'import', 'import'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6648-7251-9c81-ca2696d24205', 'content', 'content'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6648-7251-9c81-ca2696d8acc5', 'widgets', 'widgets'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6649-712c-a919-2926c364fe67', 'settings', 'settings'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6649-712c-a919-2926c42ff139', 'theme-options', 'theme options'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6654-70c2-a656-50e96d7e6f0c', 'optin', 'Optin'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6654-70c2-a656-50e96d974337', 'popup', 'popup'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6654-70c2-a656-50e96de1a8e2', 'popups', 'popups'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6655-7139-8b63-583a2de6bba7', 'ecommerce', 'ecommerce'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6655-7139-8b63-583a2e4f3134', 'marketing', 'marketing'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-665f-7145-87b6-531f3222962c', 'localization', 'localization'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-666d-73f7-b0ba-99d38183fa22', 'conversion', 'conversion'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6675-7271-a867-f595a1641373', 'post-sort', 'post sort'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6676-7257-a4d1-b926ef12af20', 'post-order', 'post order'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6676-7257-a4d1-b926ef5452a9', 'posts-sort', 'posts sort'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6677-7057-97db-328f22da90ff', 'posts-order', 'posts order'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6677-7057-97db-328f230fbdd8', 'post-types-order', 'post types order'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6682-701f-9b11-28c82c4893e8', 'elementor-elements', 'elementor elements'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-668c-726f-9966-01a99a1778ab', '2fa', '2FA'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-668c-726f-9966-01a99adf5ae2', 'https', 'https'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-668d-70eb-83bb-92798af9edf4', 'two-factor', 'two factor'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-668d-70eb-83bb-92798bc2a744', 'vulnerabilities', 'vulnerabilities'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6699-7352-ac0c-c744cce1435b', 'apache', 'Apache'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6699-7352-ac0c-c744cdc152b0', 'htaccess', 'htaccess'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-669a-70d4-9fa2-5a260cd2ceff', 'redirect', 'redirect'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66a2-73ad-bbcd-1310d19c5d64', 'options', 'options'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66a2-73ad-bbcd-1310d201ebfc', 'plugin-options', 'plugin options'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66a3-7235-84ac-134c7fbec65e', 'options-framework', 'options framework'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66ac-715b-b507-37532e92cdc5', 'thumbnail', 'thumbnail'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66ac-715b-b507-37532f5217f2', 'thumbnails', 'thumbnails'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66ad-7281-9e76-f634f71dff11', 'post-thumbnail', 'post thumbnail'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66ad-7281-9e76-f634f762fa55', 'post-thumbnails', 'post thumbnails'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66b8-70c0-8752-dd2aae160549', 'widgets-for-elementor', 'widgets for elementor'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66c3-706e-b627-5b7405472bbd', 'svg', 'SVG'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66c4-70c5-beb1-32cea7cd5420', 'mime', 'mime'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66c4-70c5-beb1-32cea8519fa9', 'media', 'media'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66c4-70c5-beb1-32cea85aefea', 'vector', 'Vector'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66d0-713b-8111-bc3d64120332', 'wordpress-seo', 'wordpress seo'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66d9-72e9-89ad-c73721ed29bb', 'nginx', 'nginx'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66da-736c-a3c6-aa25c5c26368', 'speed', 'speed'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66da-736c-a3c6-aa25c62732fe', 'siteground', 'SiteGround'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66e7-7039-8042-03d255e41a09', 'malware-scanner', 'malware scanner'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66e8-73d5-8db7-b92fdcb8687f', 'web-application-firewall', 'web application firewall'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66f2-701d-89f4-8efaabb1e4e4', 'slider', 'slider'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66f2-701d-89f4-8efaacafc7d6', 'image-slider', 'image slider'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66f3-7071-bdf8-bcc0eea7b4f8', 'layer-slider', 'layer slider'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66f3-7071-bdf8-bcc0eeb91c06', 'wordpress-slider', 'wordpress slider'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-66f4-70c9-8d31-ee788be24d5c', 'responsive-slider', 'responsive slider'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6705-710b-8bbf-ccf9ef638458', 'safe-svg', 'safe svg'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6705-710b-8bbf-ccf9f012aa7b', 'mime-type', 'mime type'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6706-72cb-9c72-7c6eecc46c23', 'sanitization', 'sanitization'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-670d-710c-aad6-e64ae5a00d74', 'csv', 'csv'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-670d-710c-aad6-e64ae5dcd5fa', 'excel', 'excel'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-670e-73a0-930d-8458347c3020', 'table', 'table'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-670e-73a0-930d-845835651994', 'tables', 'tables'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-670f-7149-b072-fef3d44acf73', 'spreadsheet', 'spreadsheet'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6716-7178-a6df-b2790c63952d', 'event', 'Event'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6717-7009-adfe-6290ecfac71c', 'events', 'events'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6717-7009-adfe-6290ed328283', 'calendar', 'calendar'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6718-707e-8fb9-f3e1e63c85a0', 'schedule', 'schedule'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6718-707e-8fb9-f3e1e6833a2f', 'organizer', 'organizer'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6729-70c3-a084-954a006c33a9', 'formatting', 'formatting'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6733-714d-b890-b3f35b988382', 'blocks', 'blocks'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6734-7246-9f89-06eac341f08f', 'gutenberg-blocks', 'gutenberg blocks'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-673b-705c-ab1a-75a363aa43bc', 'coming-soon-mode', 'coming soon mode'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-673c-70b3-9e44-b8deba71c3d0', 'under-construction', 'under construction'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-673c-70b3-9e44-b8debb21afe1', 'under-construction-mode', 'under construction mode'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-673d-7041-bfc5-9a91088c5802', 'under-construction-page', 'under construction page'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6750-72cc-9940-95f8360246b9', 'role', 'role'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6751-716b-8344-8f18e5e2b352', 'user', 'user'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6759-726b-9d98-af886fe7c739', 'cdn', 'cdn'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-676b-7088-b5fb-fc713de733db', 'shop', 'shop'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-676c-702e-93a6-15fa13ebbd67', 'sell-online', 'sell online'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-676c-702e-93a6-15fa14b2a49d', 'online-store', 'online store'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-676d-7178-82af-9d9dea86572d', 'shopping-cart', 'shopping cart'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-679a-700b-b42b-ec32b5518f50', 'woo', 'woo'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-679a-700b-b42b-ec32b60af401', 'stripe', 'stripe'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-679b-70f4-acc7-95d6ee6f76f5', 'payments', 'payments'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-679b-70f4-acc7-95d6eee3ea4b', 'credit-card', 'credit card'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67a5-73c1-9a17-ff3dbb068d5a', 'payment', 'payment'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67a6-706e-aabc-49bd719a4bc7', 'apple-pay', 'apple pay'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67a6-706e-aabc-49bd71e34509', 'google-pay', 'google pay'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67a7-72be-8ae7-8ade871f0e0f', 'woocommerce-payments', 'woocommerce payments'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67af-71d8-8fb4-439b9024c710', 'paypal', 'paypal'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67b8-7011-897b-0e984072833b', 'gst', 'GST'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67b8-7011-897b-0e9840ef43a6', 'tax', 'tax'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67b9-709a-99dd-57a84188b797', 'vat', 'vat'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67cf-70aa-aade-867ef75daacb', 'scanner', 'scanner'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67d9-71e8-9415-662294070c0c', 'importer', 'importer'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67e0-70ff-b382-63369e600be5', 'readability', 'Readability'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67e1-73fa-a9da-669b7a368efe', 'content-analysis', 'Content analysis'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67e9-7028-97aa-9e64ee55d6f8', 'migrate', 'migrate'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67ea-7037-ada4-33dadb08cd31', 'manage-multiple-sites', 'Manage Multiple Sites'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67f3-73a9-8ff5-2cb450de3bed', 'cache', 'cache'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67fc-729c-8051-02b8509715be', 'ftp', 'ftp'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67fc-729c-8051-02b85174f1ba', 'elfinder', 'elfinder'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67fd-7229-81de-8cd74d8c3c66', 'file-manager', 'file manager'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67fd-7229-81de-8cd74df61b4b', 'wp-filemanager', 'wp-filemanager'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-67fd-7229-81de-8cd74e65992c', 'wp-file-manager', 'wp file manager'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6807-732e-b6a7-c3dc9e9411ba', 'custom-form', 'custom form'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6808-7103-b09a-5b5587c6adb2', 'contact-form-plugin', 'contact form plugin'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6812-73f6-833d-4553a01450b4', 'smtp', 'smtp'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6813-7331-81a5-472024a53ec6', 'gmail', 'gmail'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6813-7331-81a5-472024c30500', 'outlook', 'outlook'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6814-72b5-b9d1-b82a67efa315', 'email-logs', 'email logs'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-681c-71f1-9677-819e62e78518', 'japanese', 'Japanese'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-681d-7365-8f03-5e4a6721e949', 'multibyte', 'multibyte'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-681d-7365-8f03-5e4a67e27a67', 'wp-multibyte-patch', 'wp-multibyte-patch'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6826-70d6-bf93-5d479c9c9a7c', 'minify', 'minify'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6827-722c-bd32-bcddfd1a36e0', 'image-cache', 'image cache'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6828-71d0-8161-aec4be7d677e', 'performance-cache', 'performance cache'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6833-708b-80ec-733ff6d9f429', 'widget', 'widget'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6834-7071-a966-945c2ef372c3', 'reviews', 'reviews'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6834-7071-a966-945c2fad009c', 'google-business', 'google business'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6835-72a0-a77e-d19288e7d6b7', 'google-places-reviews', 'google places reviews'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-683c-7054-b4d6-36c86afed81f', 'rename', 'rename'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-683d-72fb-8db3-50d2137d3d18', 'wp-login', 'wp login'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-683d-72fb-8db3-50d213817311', 'wp-login-php', 'wp-login.php'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-683e-7355-ae25-fe8b7eff3216', 'custom-login-url', 'custom login url'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6854-7363-9a07-4d873420842f', 'wp-cache', 'WP Cache'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6855-71a1-91e3-d25dc4017977', 'wp-super-cache', 'WP Super Cache'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6862-7360-90bd-0ab0c6419dbd', 'staging', 'staging'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-6862-7360-90bd-0ab0c64a06c2', 'duplicate', 'duplicate'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-a605-701e-9fbb-db03bd33ccdd', 'theme', 'theme'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-a605-701e-9fbb-db03bdee096a', 'language-pack', 'language pack'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-a606-706d-8a37-1e4252fe3908', 'updater', 'updater'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-a60c-7189-a44a-2345d3adca57', 'wporg', 'wporg'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-a60c-7189-a44a-2345d3e2b949', 'handbook', 'handbook'); -INSERT INTO public.plugin_tags VALUES ('019a30c1-a60d-73eb-8e0f-01d96d60c1c9', 'callout', 'callout'); - - --- --- Data for Name: plugins; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.plugins VALUES ('019a30a8-91a6-73c5-aeae-e6937c7ccc93', 'aspireupdate', 'AspireUpdate', 'This plugin allows a WordPress user to automatically rewrite certain URLs and URL paths to a new URL. This is helpful because it allows for the rew...', '', '1.0', 'AspirePress', '5.3', '7.4', '6.8.1', 'https://github.com/aspirepress/aspireupdate/releases/download/1.0/aspireupdate.zip', NULL, '2025-06-04 19:06:33+00', NULL, 0, 0, 0, 0, 0, 0, 'https://aspirepress.org/', NULL, NULL, NULL, NULL, NULL, NULL, 'manual', '2025-10-29 15:49:05+00', '{"git": "github", "url": "https://github.com/aspirepress/aspireupdate", "name": "AspireUpdate", "slug": "aspireupdate", "tags": [], "type": "plugin", "icons": {"default": "https://s.w.org/plugins/geopattern-icon/aspireupdate.svg"}, "author": "AspirePress", "branch": "main", "rating": 0, "tested": "6.8.1", "banners": [], "dot_org": false, "version": "1.0", "external": "xxx", "homepage": "https://aspirepress.org/", "requires": "5.3", "sections": {"faq": "

    A question that someone might have

    \\n

    An answer to that question.

    \\n

    What about foo bar?

    \\n

    Answer to foo bar dilemma.

    \\n", "changelog": "

    [unreleased]

    \\n

    1.0

    \\n
      \\n
    • Removed the Aspire Cloud Bleeding Edge Endpoint from Hosts List.
    • \\n
    \\n

    0.9.4

    \\n
      \\n
    • Admin Settings: WordPress.org has been added as an API host option, and is the new default value.
    • \\n
    • Admin Settings: A new admin bar menu has been added to display the current API host.
    • \\n
    • Admin Settings: Admin notices now replace browser alerts when managing the log.
    • \\n
    • Admin Settings: The "Clear Log" and "View Log" elements are now only visible when a log is known to exist.
    • \\n
    • API Rewrite: A new AP_BYPASS_CACHE constant may be used to add cache busting to API requests.
    • \\n
    • Branding: The branding notice is now permanently dismissible.
    • \\n
    • Accessibility: The link in the branding notice now has more descriptive text.
    • \\n
    • Accessibility: The "Generate API Key" button now has a visual label.
    • \\n
    • Accessibility: The Voltron easter egg now uses a role of "img" with a label.
    • \\n
    • Accessibility: The Voltron easter egg''s animation now respects user motion preferences.
    • \\n
    • Accessibility: Field labels and descriptions, and their associations, have been improved.
    • \\n
    • Accessibility: The "View Log" popup has been removed, and the "View Log" button is now a link to the log file.
    • \\n
    • Package: The "Tested up to" plugin header has now been set to WordPress 6.8.1.
    • \\n
    • Package: Hosts data is now stored in a new hosts.json file in the plugin''s root directory.
    • \\n
    • Workflows: PHPUnit tests will now run against PHP 8.4.
    • \\n
    • Workflows: End-to-end (E2E) tests now only run when manually triggered.
    • \\n
    \\n

    0.9.3

    \\n
      \\n
    • Compatibility: API rewrites now occur on a late hook priority.
    • \\n
    • Compatibility: API rewriting can be optionally skipped if the request already has a response.
    • \\n
    • Documentation: CHANGES.md is now used for the changelog instead of readme.txt.
    • \\n
    • Documentation: The default AP_HOST value in README.md is now api.aspirecloud.net.
    • \\n
    • Package: The dash in "aspire-update" has been removed from the package name.
    • \\n
    • Dependencies: The translations-updater dependency has been updated to 1.2.1.
    • \\n
    \\n

    0.9.2

    \\n
      \\n
    • Package: The plugin''s version has been updated.
    • \\n
    \\n

    0.9.1

    \\n
      \\n
    • First 0.9.x release because 0.9 was not properly versioned and tagged.
    • \\n
    \\n

    0.9 (never released)

    \\n
      \\n
    • New downloadable release for "Beta Soft Launch" - no changes from 0.6.2.
    • \\n
    \\n

    0.6.2

    \\n

    TODO: WRITEME

    \\n

    0.6.1

    \\n
      \\n
    • Added AspireCloud.io endpoint for bleeding edge testing
    • \\n
    • Added content type json header for better error retrieval from AC
    • \\n
    \\n

    0.6

    \\n
      \\n
    • Admin Settings: Added notices for when settings are saved or reset
    • \\n
    • Branding: Added branded notices to inform users when AspireUpdate is in operation on a screen
    • \\n
    • Multisite: Added multisite support
    • \\n
    • Debug: Added Clear Logs and View Logs functionality
    • \\n
    • I18N: Added Catalan translation
    • \\n
    • I18N: Added Dutch translation
    • \\n
    • I18N: Added Spanish translation
    • \\n
    • I18N: Added Swedish translation
    • \\n
    • I18N: Updated Dutch translation
    • \\n
    • I18N: Updated French translation
    • \\n
    • I18N: Updated German translation
    • \\n
    • Testing: Added Git Updater integration
    • \\n
    • Testing: Added support both main and playground-ready links in the README
    • \\n
    • Testing: Made Playground default to the main branch
    • \\n
    • Testing: Removed Hello Dolly from the Playground blueprint
    • \\n
    • Security: Fixed Plugin Check security warnings
    • \\n
    \\n

    0.5

    \\n
      \\n
    • first stable version, connects to api.wordpress.org or an alternative AspireCloud repository
    • \\n
    ", "description": "

    This plugin allows a WordPress user to automatically rewrite certain URLs and URL paths to a new URL. This is helpful because it allows for the rewriting of api.wordpress.org to some other repository that contains the plugins the user wants.

    \\n

    The plugin supports multiple rewrites, and also supports rewriting the URL paths of the requests on a per-host basis. This improves the capacity of the plugin to adequately support newer or different repositories.

    "}, "versions": {"0.5": "https://api.github.com/repos/aspirepress/aspireupdate/zipball/0.5", "0.6": "https://api.github.com/repos/aspirepress/aspireupdate/zipball/0.6", "1.0": "https://github.com/aspirepress/aspireupdate/releases/download/1.0/aspireupdate.zip", "0.6.1": "https://api.github.com/repos/aspirepress/aspireupdate/zipball/0.6.1"}, "is_private": false, "donate_link": "", "num_ratings": 0, "contributors": {"asirota": {"avatar": "https://wordpress.org/grav-redirect.php?user=asirota", "profile": "//profiles.wordpress.org/asirota", "display_name": "asirota"}, "namithj": {"avatar": "https://wordpress.org/grav-redirect.php?user=namithj", "profile": "//profiles.wordpress.org/namithj", "display_name": "namithj"}, "sarah-savage": {"avatar": "https://wordpress.org/grav-redirect.php?user=sarah-savage", "profile": "//profiles.wordpress.org/sarah-savage", "display_name": "sarah-savage"}}, "last_updated": "2025-06-04T19:06:33Z", "requires_php": "7.4", "download_link": "https://github.com/aspirepress/aspireupdate/releases/download/1.0/aspireupdate.zip", "release_asset": false, "primary_branch": "main", "active_installs": 0, "aspiresync_meta": {"name": "AspireUpdate", "slug": "aspireupdate", "type": "plugin", "origin": "manual", "status": "open", "version": "1.0"}, "requires_plugins": [], "short_description": "This plugin allows a WordPress user to automatically rewrite certain URLs and URL paths to a new URL. This is helpful because it allows for the rew..."}'); -INSERT INTO public.plugins VALUES ('019a30c1-6375-72fe-83cb-c85090524e18', 'advanced-custom-fields', 'Advanced Custom Fields (ACF®)', 'ACF helps customize WordPress with powerful, professional and intuitive fields. Proudly powering over 2 million sites, WordPress developers love ACF.', '

    Advanced Custom Fields (ACF®) turns WordPress sites into a fully-fledged content management system by giving you all the tools to do more with your data.

    -

    Use the ACF plugin to take full control of your WordPress edit screens, custom field data, and more.

    -

    -

    Add fields on demand.
    -The ACF field builder allows you to quickly and easily add fields to WP edit screens with only the click of a few buttons! Whether it’s something simple like adding an “author” field to a book review post, or something more complex like the structured data needs of an ecommerce site or marketplace, ACF makes adding fields to your content model easy.

    -

    Add them anywhere.
    -Fields can be added all over WordPress including posts, pages, users, taxonomy terms, media, comments and even custom options pages! It couldn’t be simpler to bring structure to the WordPress content creation experience.

    -

    Show them everywhere.
    -Load and display your custom field values in any theme template file with our hassle-free, developer friendly functions! Whether you need to display a single value or generate content based on a more complex query, the out-of-the-box functions of ACF make templating a dream for developers of all levels of experience.

    -

    Any Content, Fast.
    -Turning WordPress into a true content management system is not just about custom fields. Creating new custom post types and taxonomies is an essential part of building custom WordPress sites. Registering post types and taxonomies is now possible right in the ACF UI, speeding up the content modeling workflow without the need to touch code or use another plugin.

    -

    Simply beautiful and intentionally accessible.
    -For content creators and those tasked with data entry, the field user experience is as intuitive as they could desire while fitting neatly into the native WordPress experience. Accessibility standards are regularly reviewed and applied, ensuring ACF is able to empower as close to anyone as possible.

    -

    Documentation and developer guides.
    -Over 10 plus years of vibrant community contribution alongside an ongoing commitment to clear documentation means that you’ll be able to find the guidance you need to build what you want.

    -

    Features

    -
      -
    • Simple & Intuitive
    • -
    • Powerful Functions
    • -
    • Over 30 Field Types
    • -
    • Extensive Documentation
    • -
    • Millions of Users
    • -
    -

    Links

    - -

    PRO

    -

    The Advanced Custom Fields plugin is also available in a professional version which includes more fields, more functionality, and more flexibility. The ACF PRO plugin features:

    -
      -
    • The Repeater Field allows you to create a set of sub fields which can be repeated again, and again, and again.
    • -
    • ACF Blocks, a powerful PHP-based framework for developing custom block types for the WordPress Block Editor (aka Gutenberg).
    • -
    • Define, create, and manage content with the Flexible Content Field, which provides for multiple layout and sub field options.
    • -
    • Use the Options Page feature to add custom admin pages to edit ACF fields.
    • -
    • Build fully customisable image galleries with the Gallery Field.
    • -
    • Unlock a more efficient workflow for managing field settings by reusing existing fields and field groups on demand with the Clone Field.
    • -
    -

    Upgrade to ACF PRO

    -', '6.6.1', 'WP Engine', '6.2', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/advanced-custom-fields.6.6.1.zip', '2011-03-25 00:00:00+00', '2025-10-16 15:07:00+00', 'https://profiles.wordpress.org/wpengine/', 90, 1418, 8, 8, 2000000, 64906476, 'https://www.advancedcustomfields.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/advanced-custom-fields/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Advanced Custom Fields (ACF®)", "slug": "advanced-custom-fields", "tags": {"acf": "acf", "meta": "meta", "fields": "fields", "repeater": "repeater", "custom-fields": "custom fields"}, "added": "2011-03-25", "icons": {"1x": "https://ps.w.org/advanced-custom-fields/assets/icon.svg?rev=3207824", "svg": "https://ps.w.org/advanced-custom-fields/assets/icon.svg?rev=3207824"}, "author": "WP Engine", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=3374528", "high": "https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=3374528"}, "ratings": {"1": 166, "2": 11, "3": 17, "4": 29, "5": 1195}, "version": "6.6.1", "homepage": "https://www.advancedcustomfields.com", "requires": "6.2", "sections": {"faq": "\n
    \nWhat kind of support do you provide?\n\n

    \n

    Support Forums. Our ACF Community Forums provide a great resource for searching and finding previously answered and asked support questions. You may create a new thread on these forums, however, it is not guaranteed that you will receive an answer from our support team. This is more of an area for ACF developers to talk to one another, post ideas, plugins and provide basic help. View the Support Forum

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Punished for not renewing my subscription

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gerald2023 on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s a great plug-in overall but unfortunately if you don''t renew your yearly subscription then you have to go to every one of your sites and re-enter the key otherwise it shows that the key is no longer valid. It''s a different key as well. Everything keeps working but it feels to me like they''re punishing me and trying to get all of my users to purchase a new copy. Other plugins re-activate and everything works fine so I feel it''s not that they can''t do it it''s that they''re not doing it. This is just my opinion though, I could be wrong

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ACF Blocks in patterns can’t be edited

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hexcross on September 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ACF has been ignoring a critical bug with ACF Blocks inside Patterns for over 4 months now. Dozens of developers (myself included) reported that patterns with ACF blocks can’t be edited since WordPress 6.8, but there’s still no fix, no ETA, just vague promises and poor workarounds. For a paid plugin, this level of support is unacceptable — it feels like development has stalled and important issues are simply brushed aside.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    comment

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy flx0 on September 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

     

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Love this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Karen Dimmick (KarenDimmick) on July 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It was great before when it just did custom fields, but they''ve continued expanding and improving it and now it also does CPTs and taxonomies - I''m super impressed - it''s one of my go to plugins

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent - must-use on all sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iedmdev001 on June 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This, combined with custom post types make WordPress infinitely reusable. There is almost nothing that can''t be built.

    The options page feature (paid) is also excellent.

    In my career as a dev, this plugin has not once let us down. It never breaks or cause any issues. Very well recommended.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Must-have

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tx28z on June 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ACF is one of those plugins I install by default. It’s reliable, flexible, and makes managing custom fields super easy.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ACF is a great plugin - when the ACF team gets to manage it.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy david wolfpaw (wolfpaw) on June 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I feel that enough time has passed that it''s fair to post a new review. My previous review was deleted, in what used to be a very rare occurrence for reviews on the repo. The review demonstrated the number of guidelines for the WordPress Community. wordpress.org, and the Plugin Directory were broken when Automattic changed ownership and naming of the plugin, and locked out the original developers.

    \n\n\n\n

    As that situation was backtracked, and the larger issue is working through the courts, It''s time to show love to a plugin that I''ve used on dozens of sites for over a decade at this point. If you ignore the additional harm that was brought to trust this plugin and future updates thanks to the unilateral actions of Automattic, this plugin is great for adding custom metadata to pretty much any part of your site, including custom post types, users, taxonomies, and more.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Recently unreliable

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy phil84vaive on April 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin used to be great but it has recently become really unreliable and clunky to use. Having to add short codes to use it and going back and forth to get things to actually appear on the website is tedious, and the other day I discovered that content I spent a lot of time putting in doesn''t display on certain iphones, so now I have to go back and redo 2 dozen services pages without using ACF. It''s incredibly frustrating when this app used to be pretty flawless.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Better Now It Includes CPT

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy brandedpixel on April 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Now that custom post types are available in the Free version, why go elsewhere?

    This is the standard for Post Types in WordPress.

    We love you ACF!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy abiruth (abiruth1980) on April 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    An essential plugin. So glad it''s back properly!!

    \n
    \n
    \n", "changelog": "

    6.6.1

    \n

    Release Date 16th October 2025

    \n
      \n
    • Fix – The Color Picker palette now displays correctly with a larger number of custom palette colors
    • \n
    • Fix – The WYSIWYG field no longer displays an extra textarea in ACF Blocks
    • \n
    • Fix – The type signature of the ACF Blocks render function now matches prior to 6.6, resolving potential type hinting errors
    • \n
    • Fix – V3 Blocks now correctly update the block preview when changing text controls
    • \n
    • Fix – V3 Blocks now work correctly in the Widget block editor
    • \n
    • Fix – V3 Blocks no longer render an extra hidden div into the block editor
    • \n
    • Fix – Fields on V3 blocks now consistently render properly when switching between “Post” and “Block” view in the sidebar
    • \n
    \n

    6.6.0

    \n

    Release Date 7th October 2025

    \n
      \n
    • View Release Post
    • \n
    • New – ACF Blocks Version 3 supports WordPress Block API Version 3
    • \n
    • New – ACF now requires WordPress version 6.2 or newer
    • \n
    • Enhancement – Field Groups can now have a separate Display Title
    • \n
    • Enhancement – Accessibility improvements for button groups, checkbox, radio, and image field types
    • \n
    • Enhancement – Color Picker field can now use a custom palette or use theme.json colors as the palette
    • \n
    • Enhancement – ACF admin notices now use WordPress core styles again
    • \n
    • Enhancement – The Flexible Content “Delete Layout” and “Rename Layout” modals now display correctly on mobile
    • \n
    • Fix – Blocks V3: You can now edit ACF blocks in Edit mode inside WP Core’s pattern editor
    • \n
    • Fix – Blocks V3: Validation errors now first appear after you click “Save/publish”, as opposed to immediately, while you are typing into a field for the first time
    • \n
    • Fix – Blocks V3: After fixing a field validation error it shows as fixed immediately as opposed to needing to click out of the block and back into it
    • \n
    • Fix – Blocks V3: Blocks with radio buttons no longer affect each other’s field values
    • \n
    • Fix – Blocks V3: Blocks with required radio buttons now validate correctly
    • \n
    • Fix – Blocks V3: ACF field validation now works in the Site Editor
    • \n
    • Fix – Blocks V3: WYSIWYG fields are no longer affected by typing into other blocks
    • \n
    • Fix – New field names are lowercase only
    • \n
    • Fix – Icon Picker now enforces required validation
    • \n
    • Fix – Calls to jQuery’s deprecated focus function have been updated to use the trigger function
    • \n
    • Fix – Layouts inside cloned Flexible Content fields can now be disabled and renamed
    • \n
    • i18n – Updated PRO Japanese translations (props danielkun)
    • \n
    \n

    6.5.1

    \n

    Release Date 10th September 2025

    \n
      \n
    • Enhancement – The Flexible Content “Expand All” and “Collapse All” button now appear correctly on mobile
    • \n
    • Enhancement – The Flexible Content delete layout button is now back in the main layout header, making it easier to delete layouts
    • \n
    • Enhancement – The JSON import tool now limits the selectable files to JSON files
    • \n
    • Fix – Disabled Flexible Content layouts are no longer counted towards min/max layout validation
    • \n
    • Fix – The top “Add Row” button for layouts is now disabled when layouts have reached the max layouts validation
    • \n
    • Fix – The per-layout “Add Row” and “Duplicate Layout” buttons are now disabled when layouts have reached the max layouts validation
    • \n
    • Fix – Disabling Flexible Content layouts no longer disables layouts in cloned Flexible Content fields using a different post ID on the same page
    • \n
    • Fix – Flexible Content “Add Layout” menu is no longer hidden by some field types
    • \n
    • Fix – Flexible Content layout names can now allow some safe HTML
    • \n
    • Fix – When creating a temporary post type during import, ACF now correctly sets the ACF post type, rather than defaulting to post
    • \n
    • Fix – ACF PRO updates are now shown even when no other plugins have an update available
    • \n
    \n

    6.5.0.1

    \n

    Release Date 12th August 2025
    \nPRO Only Release

    \n
      \n
    • Fix – Flexible Content layouts configured with a “Layout” setting of “Table” are now rendered correctly in the post editor
    • \n
    • Fix – Flexible Content “Add Layout” buttons now insert the new layout in the correct position
    • \n
    • Fix – Long Flexible Content layout names no longer extend outside of the “Add Layout” dropdown
    • \n
    \n

    6.5.0

    \n

    Release Date 11th August 2025

    \n
      \n
    • New – Flexible Content layouts can now be renamed in the post editor, giving content editors better clarity when managing layouts
    • \n
    • New – Flexible Content layouts can now be disabled, preventing them from rendering on the frontend without needing to delete their data
    • \n
    • New – Flexible Content layouts can now be collapsed and expanded in bulk for faster content editing
    • \n
    • New – Editing a Flexible Content layout now highlights the layout being edited, making it easier to identify
    • \n
    • New – The Date and Date Time Picker fields can now be configured to default to the current date
    • \n
    • Fix – Custom Icon Picker tabs now work correctly when used inside an ACF Block
    • \n
    • Fix – Duplicating a Field Group no longer causes a fatal error when using Russian translations
    • \n
    • Fix – ACF classes no longer use dynamic class properties, improving compatibility with PHP 8.2+
    • \n
    • Fix – ACF PRO no longer shows an update available immediately after updating to the latest version
    • \n
    • Fix – Field group metabox collapse and expand buttons are no longer misaligned in the post editor
    • \n
    • Fix – The ACF Site Health section no longer causes a PHP warning when field group location rules are incomplete
    • \n
    • Security – HTML is now escaped from field validation errors and tooltips
    • \n
    \n

    6.4.3

    \n

    Release Date 22nd July 2025

    \n
      \n
    • Security – Unsafe HTML in field group labels is now correctly escaped for conditionally loaded field groups, resolving a JS execution vulnerability in the classic editor
    • \n
    • Security – HTML is now escaped from field group labels when output in the ACF admin
    • \n
    • Security – Bidirectional and Conditional Logic Select2 elements no longer render HTML in field labels or post titles
    • \n
    • Security – The acf.escHtml function now uses the third party DOMPurify library to ensure all unsafe HTML is removed. A new esc_html_dompurify_config JS filter can be used to modify the default behaviour
    • \n
    • Security – Post titles are now correctly escaped whenever they are output by ACF code. Thanks to Shogo Kumamaru of LAC Co., Ltd. for the responsible disclosure
    • \n
    • Security – An admin notice is now displayed when version 3 of the Select2 library is used, as it has now been deprecated in favor of version 4
    • \n
    \n

    6.4.2

    \n

    Release Date 20th May 2025

    \n
      \n
    • New – In ACF PRO, fields can now be added to WooCommerce Subscriptions when using HPOS
    • \n
    • Security – Changing a field type no longer enables the “Allow Access to Value in Editor UI” setting
    • \n
    • Fix – Paginated Repeater fields no longer save duplicate values when saving to a WooCommerce Order with HPOS disabled
    • \n
    • Fix – Blocks registered via acf_register_block_type() with a parent value of null no longer fail to register
    • \n
    \n

    6.4.1

    \n

    Release Date 8th May 2025

    \n
      \n
    • New – Select fields can now be configured to allow creating new options when editing the field’s value (requires the “Stylized UI” and “Multiple” field settings to be enabled)
    • \n
    • Enhancement – The “Escaped HTML” warning notice introduced in ACF 6.2.5 is now disabled by default
    • \n
    • Enhancement – The Icon Picker field now supports supplying an array of icons to a custom tab via a new acf/fields/icon_picker/{tab_name}/icons filter
    • \n
    • Fix – ACF Blocks are now forced into preview mode when editing a synced pattern
    • \n
    • Fix – The free ACF plugin once again works with the Classic Widgets plugin and the legacy ACF Options Page addon
    • \n
    • Fix – ACF no longer causes an infinite loop in bbPress when editing replies
    • \n
    \n

    6.4.0.1

    \n

    Release Date 8th April 2025

    \n
      \n
    • Fix – Calling acf_get_reference() with an invalid field name no longer causes a fatal error
    • \n
    \n

    6.4.0

    \n

    Release Date 7th April 2025

    \n
      \n
    • New – In ACF PRO, fields can now be added to WooCommerce orders when using HPOS
    • \n
    • Enhancement – ACF now uses Composer to autoload some classes
    • \n
    • Fix – Repeater pagination now works when the Repeater is inside a Group field
    • \n
    • Fix – Various translations are no longer called before the WordPress init action hook
    • \n
    • Security – Link field no longer has a minor local XSS vulnerability
    • \n
    • i18n – Various British English translation strings no longer have a quoting issue breaking links
    • \n
    • i18n – Added Dutch (formal) translations (props @toineenzo)
    • \n
    \n

    6.3.12

    \n

    Release Date 21st January 2025

    \n
      \n
    • Enhancement – Error messages that occur when field validation fails due an insufficient security nonce now have additional context
    • \n
    • Fix – Duplicated ACF blocks no longer lose their field values after the initial save when block preloading is enabled
    • \n
    • Fix – ACF Blocks containing complex field types now behave correctly when React StrictMode is enabled
    • \n
    \n

    6.3.11

    \n

    Release Date 12th November 2024

    \n
      \n
    • Enhancement – Field Group keys are now copyable on click
    • \n
    • Fix – Repeater tables with fields hidden by conditional logic now render correctly
    • \n
    • Fix – ACF Blocks now behave correctly in React StrictMode
    • \n
    • Fix – Edit mode is no longer available to ACF Blocks with an WordPress Block API version of 3 as field editing is not supported in the iframe
    • \n
    \n

    6.3.10.2

    \n

    Release Date 29th October 2024
    \nFree Only Release

    \n
      \n
    • Fix – ACF Free no longer causes a fatal error when any unsupported legacy ACF addons are active
    • \n
    \n

    6.3.10.1

    \n

    Release Date 29th October 2024
    \nFree Only Release

    \n
      \n
    • Fix – ACF Free no longer causes a fatal error when WPML is active
    • \n
    \n

    6.3.10

    \n

    Release Date 29th October 2024

    \n
      \n
    • Security – Setting a metabox callback for custom post types and taxonomies now requires being an admin, or super admin for multisite installs
    • \n
    • Security – Field specific ACF nonces are now prefixed, resolving an issue where third party nonces could be treated as valid for AJAX calls
    • \n
    • Enhancement – A new “Close and Add Field” option is now available when editing a field group, inserting a new field inline after the field being edited
    • \n
    • Enhancement – ACF and ACF PRO now share the same plugin updater for improved reliability and performance
    • \n
    • Fix – Exporting post types and taxonomies containing metabox callbacks now correctly exports the user defined callback
    • \n
    \n

    6.3.9

    \n

    Release Date 15th October 2024

    \n
      \n
    • Security – Editing an ACF Field in the Field Group editor can no longer execute a stored XSS vulnerability. Thanks to Duc Luong Tran (janlele91) from Viettel Cyber Security for the responsible disclosure
    • \n
    • Security – Post Type and Taxonomy metabox callbacks no longer have access to any superglobal values, hardening the original fix from 6.3.8 further
    • \n
    • Fix – ACF fields now correctly validate when used in the block editor and attached to the sidebar
    • \n
    \n

    6.3.8

    \n

    Release Date 7th October 2024

    \n
      \n
    • Security – ACF defined Post Type and Taxonomy metabox callbacks no longer have access to $_POST data. (Thanks to the Automattic Security Team for the disclosure)
    • \n
    \n

    6.3.7

    \n

    Release Date 2nd October 2024

    \n
      \n
    • Security – ACF Free now uses its own update mechanism from WP Engine servers
    • \n
    \n

    6.3.6

    \n

    Release Date 28th August 2024

    \n
      \n
    • Security – Newly added fields now have to be explicitly set to allow access in the content editor (when using the ACF shortcode or Block Bindings) to increase the security around field permissions. See the release notes for more details
    • \n
    • Security Fix – Field labels are now correctly escaped when rendered in the Field Group editor, to prevent a potential XSS issue. Thanks to Ryo Sotoyama of Mitsui Bussan Secure Directions, Inc. for the responsible disclosure
    • \n
    • Fix – Validation and Block AJAX requests nonces will no longer be overridden by third party plugins
    • \n
    • Fix – Detection of third party select2 libraries will now default to v4 rather than v3
    • \n
    • Fix – Block previews will now display an error if the render template PHP file is not found
    • \n
    \n

    6.3.5

    \n

    Release Date 1st August 2024

    \n
      \n
    • Fix – The ACF Shortcode now correctly outputs a comma separated list of values for arrays
    • \n
    • Fix – ACF Blocks rendered in auto mode now correctly re-render their previews after editing fields
    • \n
    • Fix – ACF Block validation no longer raises required validation messages if HTML will automatically select the first value when rendered
    • \n
    • Fix – ACF Block validation no longer raises required validation messages if a default value will be rendered as the field value
    • \n
    • Fix – ACF Block validation no longer raises required validation messages for fields hidden by conditional logic when adding a new block
    • \n
    \n

    6.3.4

    \n

    Release Date 18th July 2024

    \n
      \n
    • Security Fix – The ACF shortcode now prevents access to fields from different private posts by default. View the release notes for more information
    • \n
    • Fix – Users without the edit_posts capability but with custom capabilities for a editing a custom post type, can now correctly load field groups loaded via conditional location rules
    • \n
    • Fix – Block validation no longer validates a field’s sub fields on page load, only on edit. This resolves inconsistent validation errors on page load or when first adding a block
    • \n
    • Fix – Deactivating an ACF PRO license will now remove the license key even if the server call fails
    • \n
    • Fix – Field types returning objects no longer cause PHP warnings and errors when output via the_field, the_sub_field or the ACF shortcode, or when retrieved by a get_ function with the escape html parameter set
    • \n
    • Fix – Server side errors during block rendering now gracefully displays an error to the editor
    • \n
    \n

    6.3.3

    \n

    Release Date 27th June 2024

    \n
      \n
    • Enhancement – All dashicons are now available to the icon picker field type
    • \n
    • Fix – The True/False field now correctly shows it’s description message beside the switch when using the Stylized UI setting
    • \n
    • Fix – Conditional logic values now correctly load options when loaded over AJAX
    • \n
    • Fix – ACF PRO will no longer trigger license validation calls when loading a front-end page
    • \n
    • i18n – Fixed an untranslatable string on Option Page previews
    • \n
    \n

    6.3.2.1

    \n

    Release Date 24th June 2024
    \nPRO Only Release

    \n
      \n
    • Fix – ACF Blocks no longer trigger a JavaScript error when fetched via AJAX
    • \n
    \n

    6.3.2

    \n

    Release Date 24th June 2024

    \n
      \n
    • Security Fix – ACF now generates different nonces for each AJAX-enabled field, preventing subscribers or front-end form users from querying other field results
    • \n
    • Security Fix – ACF now correctly verifies permissions for certain editor only actions, preventing subscribers performing those actions
    • \n
    • Security Fix – Deprecated a legacy private internal field type (output) to prevent it being able to output unsafe HTML
    • \n
    • Security Fix – Improved handling of some SQL filters and other internal functions to ensure output is always correctly escaped
    • \n
    • Security Fix – ACF now includes blank index.php files in all folders to prevent directory listing of ACF plugin folders for incorrectly configured web servers
    • \n
    \n

    6.3.1.2

    \n

    Release Date 6th June 2024
    \nPRO Only Release

    \n
      \n
    • Fix – ACF Blocks in widget areas no longer cause a fatal error when no context is available
    • \n
    • Fix – ACF Blocks with no fields assigned no longer show a gap in the sidebar where the form would render
    • \n
    \n

    6.3.1.1

    \n

    Release Date 6th June 2024
    \nPRO Only Release

    \n
      \n
    • Fix – Repeater and Flexible Content fields no longer error when duplicating or removing rows containing Icon Picker subfields
    • \n
    • Fix – ACF Blocks containing Flexible Content fields now correctly load their edit form
    • \n
    • Fix – ACF Blocks no longer have a race condition where the data store is not initialized when read
    • \n
    • Fix – ACF Blocks no longer trigger a JS error for blocks without fields and with an empty no-fields message
    • \n
    • Fix – ACF Block preloading now works correctly for fields consuming custom block context
    • \n
    • Fix – ACF Block JavaScript debug messages now correctly appear when SCRIPT_DEBUG is true
    • \n
    \n

    6.3.1

    \n

    Release Date 4th June 2024

    \n
      \n
    • Enhancement – Options Pages registered in the UI can now be duplicated
    • \n
    • Fix – ACF Block validation now correctly validates Repeater, Group, and Flexible Content fields
    • \n
    • Fix – ACF Block validation now correctly validates when a field is using a non-default return type
    • \n
    • Fix – Fields moved between field groups now correctly updates both JSON files
    • \n
    • Fix – Icon Picker fields now render correctly when using left-aligned labels
    • \n
    • Fix – Icon Picker fields no longer renders tabs if only one tab is selected for display
    • \n
    • Fix – Icon Picker fields no longer crash the post editor if no icon picker tabs are selected for displayed
    • \n
    • Fix – True/False field now better handles longer On/Off labels
    • \n
    • Fix – Select2 results loaded by AJAX for multi-select Taxonomy fields no longer double encode HTML entities
    • \n
    \n

    6.3.0.1

    \n

    Release Date 22nd May 2024

    \n
      \n
    • Fix – A possible fatal error no longer occurs in the new site health functionality for ACF PRO users
    • \n
    • Fix – A possible undefined index error no longer occurs in ACF Blocks for ACF PRO users
    • \n
    \n

    6.3.0

    \n

    Release Date 22nd May 2024

    \n
      \n
    • New – ACF now requires WordPress version 6.0 or newer, and PHP 7.4 or newer.
    • \n
    • New – ACF Blocks now support validation rules for fields. View the release notes for more information
    • \n
    • New – ACF Blocks now supports storing field data in the postmeta table rather than in the post content
    • \n
    • New – Conditional logic rules for fields now support selecting specific values for post objects, page links, taxonomies, relationships and users rather than having to enter the ID
    • \n
    • New – New Icon Picker field type for ACF and ACF PRO
    • \n
    • New – Icon selection for a custom post type menu icon
    • \n
    • New – Icon selection for an options page menu icon
    • \n
    • New – ACF now surfaces debug and status information in the WordPress Site Health area
    • \n
    • New – The escaped html notice can now be permanently dismissed
    • \n
    • Enhancement – Tab field now supports a selected attribute to specify which should be selected by default, and support class attributes
    • \n
    • Fix – Block Preloading now works reliably in WordPress 6.5 or newer
    • \n
    • Fix – Select2 results loaded by AJAX for post object fields no longer double encode HTML entities
    • \n
    • Fix – Custom post types registered with ACF will now have custom field support enabled by default to better support revisions
    • \n
    • Fix – The first preview after publishing a post in the classic editor now displays ACF fields correctly
    • \n
    • Fix – ACF fields and Flexible Content layouts are now correctly positioned while dragging
    • \n
    • Fix – Copying the title of a field inside a Flexible Content layout no longer adds whitespace to the copied value
    • \n
    • Fix – Flexible Content layout names are no longer converted to lowercase when edited
    • \n
    • Fix – ACF Blocks with attributes without a default now correctly register
    • \n
    • Fix – User fields no longer trigger a 404 when loading results if the nonce generated only contains numbers
    • \n
    • Fix – Description fields for ACF items now support being solely numeric characters
    • \n
    • Fix – The field group header no longer appears above the WordPress admin menu on small screens
    • \n
    • Fix – The acf/json/save_file_name filter now correctly applies when deleting JSON files
    • \n
    • i18n – All errors raised during ACF PRO license or update checks are now translatable
    • \n
    • Other – The ACF Shortcode is now disabled by default for new installations of ACF as discussed in the ACF 6.2.7 release notes
    • \n
    \n

    6.2.10

    \n

    Release Date 15th May 2024

    \n
      \n
    • Security Fix – ACF Blocks no longer allow render templates, or render or asset callbacks to be overridden in the block’s attributes. For full information, please read the release blog post
    • \n
    \n

    6.2.9

    \n

    Release Date 8th April 2024

    \n
      \n
    • Enhancement – The Select2 escapeMarkup function can now be overridden when initializing a custom Select2
    • \n
    • Fix – “Hide on Screen” settings are now correctly applied when using conditionally loaded field groups
    • \n
    • Fix – Field names are no longer converted to lowercase when editing the name
    • \n
    • Fix – Field group titles will no longer convert HTML entities into their encoded form
    • \n
    \n

    6.2.8

    \n

    Release Date 2nd April 2024

    \n
      \n
    • New – Support for the Block Bindings API in WordPress 6.5 with a new acf/field source. For more information on how to use this, please read the release blog post
    • \n
    • New – Support for performance improvements for translations in WordPress 6.5
    • \n
    • Enhancement – A new JS filter, select2_escape_markup now allows fields to customize select2’s HTML escaping behavior
    • \n
    • Fix – Options pages can no longer set to have a parent of themselves
    • \n
    • Fix – ACF PRO license activations on multisite subsite installs will now use the correct site URL
    • \n
    • Fix – ACF PRO installed on multisite installs will no longer try to check for updates resulting in 404 errors when the updates page is not visible
    • \n
    • Fix – ACF JSON no longer produces warnings on Windows servers when no ACF JSON folder is found
    • \n
    • Fix – Field and layout names can now contain valid non-ASCII characters
    • \n
    • Other – ACF PRO now requires a valid license to be activated in order to use PRO features. Learn more
    • \n
    \n

    6.2.7

    \n

    Release Date 27th February 2024

    \n
      \n
    • Security Fix – the_field now escapes potentially unsafe HTML as notified since ACF 6.2.5. For full information, please read the release blog post
    • \n
    • Security Fix – Field and Layout names are now enforced to alphanumeric characters, resolving a potential XSS issue
    • \n
    • Security Fix – The default render template for select2 fields no longer allows HTML to be rendered resolving a potential XSS issue
    • \n
    • Security Enhancement – A acf/shortcode/prevent_access filter is now available to limit what data the ACF shortcode is allowed to access
    • \n
    • Security Enhancement – i18n translated strings are now escaped on output
    • \n
    • Enhancement – ACF now universally uses WordPress file system functions rather than native PHP functions
    • \n
    \n

    6.2.6.1

    \n

    Release Date 7th February 2024

    \n
      \n
    • Fix – Fatal JS error no longer occurs when editing fields in the classic editor when Yoast or other plugins which load block editor components are installed
    • \n
    • Fix – Using $escape_html on get functions for array returning field types no longer produces an Array to string conversion error
    • \n
    \n

    6.2.6

    \n

    Release Date 6th February 2024

    \n
      \n
    • Enhancement – The get_field() and other get_ functions now support an escape_html parameter which return an HTML safe field value
    • \n
    • Enhancement – The URL field will be now escaped with esc_url rather than wp_kses_post when returning an HTML safe value
    • \n
    • Fix – ACF fields will now correctly save into the WordPress created revision resolving issues with previews of drafts on WordPress 6.4 or newer
    • \n
    • Fix – Multisite subsites will now correctly be activated by the main site where the ACF PRO license allows, hiding the updates page on those subsites
    • \n
    • Fix – Field types in which the required property would have no effect (such as the tab, or accordion) will no longer show the option
    • \n
    • Fix – Duplicating a field group now maintains the current page of field groups being displayed
    • \n
    • Fix – Fields in ACF Blocks in edit mode in hybrid themes will now use ACF’s styling, rather than some attributes being overridden by the theme
    • \n
    • Fix – Text in some admin notices will no longer overlap the dismiss button
    • \n
    • Fix – The word link is now prohibited from being used as a CPT name to avoid a WordPress core conflict
    • \n
    • Fix – Flexible content layouts can no longer be duplicated over their maximum count limit
    • \n
    • Fix – All ACF notifications shown outside of ACF’s admin screens are now prefixed with the plugin name
    • \n
    • Fix – ACF no longer checks if a polyfill is needed for <PHP7 and the polyfill has been removed
    • \n
    \n

    6.2.5

    \n

    \n

    Release Date 16th January 2024

    \n
      \n
    • Security Fix – The ACF shortcode will now run all output through wp_kses, escaping unsafe HTML. This may be a breaking change to your site but is required for security, a message will be shown in WordPress admin if you are affected. Please see the blog post for this release for more information. Thanks to Francesco Carlucci via Wordfence for the responsible disclosure
    • \n
    • Security – ACF now warns via an admin message, when upcoming changes to the_field and the_sub_field may require theme changes to your site to avoid stripping unsafe HTML. Please see the blog post for this release for more information
    • \n
    • Security – Users may opt in to automatically escaping unsafe HTML via a new filter acf/the_field/escape_html_optin when using the_field and the_sub_field before this becomes default in an upcoming ACF release.
    • \n
    \n

    6.2.4

    \n

    Release Date 28th November 2023

    \n
      \n
    • Fix – Custom Post Types labels now match the WordPress 6.4 behavior for “Add New” labels
    • \n
    • Fix – When exporting both post types and taxonomies as PHP, taxonomies will now appear before post types, matching the order ACF registers them. This resolves issues where taxonomy slugs will not work in post type permalinks
    • \n
    • Fix – Advanced Settings for Taxonomies, Post Types or Options Pages now display with the correct top padding when toggled on
    • \n
    • Fix – When a parent option page is set to “Redirect to Child Page”, the child page will now correctly show it’s parent setting
    • \n
    • Fix – When activated as a must-use plugin, the ACF PRO “Updates” page is now visible. Use the existing show_updates setting to hide
    • \n
    • Fix – When activated as a must-use plugin, ACF PRO licenses defined in code will now correctly activate sites
    • \n
    • Fix – When show_updates is set or filtered to false, ACF PRO will now automatically still activate defined licenses
    • \n
    • i18n – Maintenance and internal upstream messages from the ACF PRO activation server are now translatable
    • \n
    \n

    6.2.3

    \n

    Release Date 15th November 2023

    \n
      \n
    • View Release Post
    • \n
    • New – An ACF Blocks specific JSON schema for block.json is now available on GitHub
    • \n
    • New – Flexible Content fields now show the layout name in the layout’s header bar and supports click-to-copy
    • \n
    • New – Duplicating Flexible Content layouts now appends “Copy” to their name and label, matching the behavior of field group duplication
    • \n
    • Enhancement – ACF PRO will now automatically attempt license reactivation when the site URL changes, e.g. after a site migration. This resolves issues where updates may fail
    • \n
    • Enhancement – Presentation setting for “High” placement of the Field Group made clear that it’s not supported in the block editor
    • \n
    • Fix – acf_format_date now ensures the date parameter is valid to prevent fatal errors if other data types are passed in
    • \n
    • Fix – CPTs with a custom icon URL now display the posts icon in the location column of the field groups screen
    • \n
    • Fix – The ACF JSON import form will now disable on first submit resolving an issue where you could submit the form twice
    • \n
    • Fix – The “Add Row” button in the Flexible Content field now displays correctly when using nested layouts
    • \n
    • Fix – Warning and Error notices no longer flicker on ACF admin pages load
    • \n
    • i18n – ACF PRO license activation success and error messages are now translatable
    • \n
    \n

    6.2.2

    \n

    Release Date 25th October 2023

    \n
      \n
    • Enhancement – ACF Blocks which have not been initialized by the editor will now render correctly
    • \n
    • Enhancement – Added a new acf/filesize filter to allow third party media plugins to bypass ACF calling filesize() on attachments with uncached file sizes, which may result in a remote download if offloaded
    • \n
    • Enhancement – ACF PRO license status and subscription expiry dates are now displayed on the “Updates” page
    • \n
    • Fix – Product pages for WooCommerce version 8.2 or newer now correctly support field group location rules
    • \n
    • Fix – Relationship field items can now be removed on mobile devices
    • \n
    • Fix – Color picker fields no longer autocomplete immediately after typing 3 valid hex characters
    • \n
    • Fix – Field settings no longer appear misaligned when the viewport is something other than 100%
    • \n
    • Fix – Select fields without an aria-label no longer throw a warning
    • \n
    • Fix – CPTs and Taxonomies with a custom text domain now export correctly when using PHP export
    • \n
    \n

    6.2.1.1

    \n

    Release Date 8th September 2023

    \n
      \n
    • Fix – Editing a field group no longer generates an error when UI options pages are disabled
    • \n
    \n

    6.2.1

    \n

    Release Date 7th September 2023

    \n
      \n
    • New – Options Pages created in the admin UI can now be assigned as child pages for any top-level menu item
    • \n
    • New – Added a “Title Placeholder” setting to ACF Post Types which filters the “Add title” text when editing posts
    • \n
    • Enhancement – ACF PRO will now warn when it can’t update due to PHP version incompatibilities
    • \n
    • Enhancement – ACF PRO will now work correctly with WordPress automatic updates
    • \n
    • Enhancement – The internal ACF Blocks template attribute parser function parseNodeAttr can now be shortcut with the new acf_blocks_parse_node_attr filter.
    • \n
    • Enhancement – Removed legacy code for supporting WordPress versions under 5.8
    • \n
    • Fix – The “Menu Position” setting is no longer hidden for child options pages
    • \n
    • Fix – The tabs for the “Advanced” settings in Post Types and Taxonomies are now rendered inside a wrapper div
    • \n
    • Fix – Options pages …
    • \n
    \n", "description": "

    Advanced Custom Fields (ACF®) turns WordPress sites into a fully-fledged content management system by giving you all the tools to do more with your data.

    \n

    Use the ACF plugin to take full control of your WordPress edit screens, custom field data, and more.

    \n

    \n

    Add fields on demand.
    \nThe ACF field builder allows you to quickly and easily add fields to WP edit screens with only the click of a few buttons! Whether it’s something simple like adding an “author” field to a book review post, or something more complex like the structured data needs of an ecommerce site or marketplace, ACF makes adding fields to your content model easy.

    \n

    Add them anywhere.
    \nFields can be added all over WordPress including posts, pages, users, taxonomy terms, media, comments and even custom options pages! It couldn’t be simpler to bring structure to the WordPress content creation experience.

    \n

    Show them everywhere.
    \nLoad and display your custom field values in any theme template file with our hassle-free, developer friendly functions! Whether you need to display a single value or generate content based on a more complex query, the out-of-the-box functions of ACF make templating a dream for developers of all levels of experience.

    \n

    Any Content, Fast.
    \nTurning WordPress into a true content management system is not just about custom fields. Creating new custom post types and taxonomies is an essential part of building custom WordPress sites. Registering post types and taxonomies is now possible right in the ACF UI, speeding up the content modeling workflow without the need to touch code or use another plugin.

    \n

    Simply beautiful and intentionally accessible.
    \nFor content creators and those tasked with data entry, the field user experience is as intuitive as they could desire while fitting neatly into the native WordPress experience. Accessibility standards are regularly reviewed and applied, ensuring ACF is able to empower as close to anyone as possible.

    \n

    Documentation and developer guides.
    \nOver 10 plus years of vibrant community contribution alongside an ongoing commitment to clear documentation means that you’ll be able to find the guidance you need to build what you want.

    \n

    Features

    \n
      \n
    • Simple & Intuitive
    • \n
    • Powerful Functions
    • \n
    • Over 30 Field Types
    • \n
    • Extensive Documentation
    • \n
    • Millions of Users
    • \n
    \n

    Links

    \n\n

    PRO

    \n

    The Advanced Custom Fields plugin is also available in a professional version which includes more fields, more functionality, and more flexibility. The ACF PRO plugin features:

    \n
      \n
    • The Repeater Field allows you to create a set of sub fields which can be repeated again, and again, and again.
    • \n
    • ACF Blocks, a powerful PHP-based framework for developing custom block types for the WordPress Block Editor (aka Gutenberg).
    • \n
    • Define, create, and manage content with the Flexible Content Field, which provides for multiple layout and sub field options.
    • \n
    • Use the Options Page feature to add custom admin pages to edit ACF fields.
    • \n
    • Build fully customisable image galleries with the Gallery Field.
    • \n
    • Unlock a more efficient workflow for managing field settings by reusing existing fields and field groups on demand with the Clone Field.
    • \n
    \n

    Upgrade to ACF PRO

    \n", "screenshots": "
    1. \"<p>Simple

      Simple & Intuitive

    2. \"<p>Made

      Made for Developers

    3. \"<p>All

      All About Fields

    4. \"<p>Registering

      Registering Custom Post Types

    5. \"<p>Registering

      Registering Taxonomies

    ", "installation": "

    From your WordPress dashboard

    \n
      \n
    1. Visit Plugins > Add New
    2. \n
    3. Search for “Advanced Custom Fields” or “ACF”
    4. \n
    5. Install and Activate Advanced Custom Fields from your Plugins page
    6. \n
    7. Click on the new menu item “ACF” and create your first custom field group, or register a custom post type or taxonomy.
    8. \n
    9. Read the documentation to get started
    10. \n
    \n"}, "versions": {"5.10": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.10.zip", "5.11": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.11.zip", "5.12": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.12.zip", "1.0.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.1.0.0.zip", "1.0.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.1.0.3.zip", "1.0.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.1.0.5.zip", "1.1.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.1.1.4.zip", "2.0.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.2.0.5.zip", "2.1.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.2.1.1.zip", "2.1.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.2.1.4.zip", "3.0.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.0.4.zip", "3.0.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.0.7.zip", "3.1.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.1.9.zip", "3.2.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.2.0.zip", "3.2.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.3.7.zip", "3.3.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.3.8.zip", "3.3.9": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.3.9.zip", "3.4.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.4.3.zip", "3.5.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.5.7.zip", "3.5.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.3.5.8.zip", "4.0.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.0.3.zip", "4.1.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.1.6.zip", "4.1.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.1.8.zip", "4.2.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.2.2.zip", "4.3.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.3.4.zip", "4.3.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.3.5.zip", "4.3.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.3.6.zip", "4.3.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.3.7.zip", "4.3.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.3.8.zip", "4.3.9": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.3.9.zip", "4.4.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.3.zip", "4.4.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.4.zip", "4.4.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.5.zip", "4.4.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.6.zip", "4.4.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.7.zip", "4.4.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.8.zip", "4.4.9": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.9.zip", "5.6.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.6.2.zip", "5.6.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.6.3.zip", "5.6.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.6.4.zip", "5.6.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.6.5.zip", "5.6.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.6.6.zip", "5.6.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.6.7.zip", "5.6.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.6.8.zip", "5.6.9": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.6.9.zip", "5.7.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.1.zip", "5.7.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.2.zip", "5.7.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.3.zip", "5.7.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.4.zip", "5.7.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.5.zip", "5.7.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.6.zip", "5.7.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.7.zip", "5.7.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.8.zip", "5.7.9": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.9.zip", "5.8.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.2.zip", "5.8.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.3.zip", "5.8.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.4.zip", "5.8.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.5.zip", "5.8.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.6.zip", "5.8.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.7.zip", "5.8.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.8.zip", "5.8.9": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.9.zip", "5.9.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.2.zip", "5.9.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.3.zip", "5.9.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.4.zip", "5.9.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.5.zip", "5.9.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.6.zip", "5.9.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.7.zip", "5.9.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.8.zip", "5.9.9": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.9.zip", "6.0.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.0.7.zip", "6.1.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.1.5.zip", "6.1.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.1.6.zip", "6.1.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.1.7.zip", "6.1.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.1.8.zip", "6.2.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.5.zip", "6.2.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.6.zip", "6.2.7": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.7.zip", "6.2.8": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.8.zip", "6.2.9": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.9.zip", "6.3.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.3.zip", "6.3.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.4.zip", "6.3.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.5.zip", "6.3.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.6.zip", "6.4.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.4.2.zip", "6.4.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.4.3.zip", "6.5.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.5.1.zip", "6.6.0": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.6.1.zip", "trunk": "https://downloads.wordpress.org/plugin/advanced-custom-fields.zip", "4.4.10": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.10.zip", "4.4.11": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.11.zip", "4.4.12": "https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.12.zip", "5.10.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.10.1.zip", "5.10.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.10.2.zip", "5.11.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.11.1.zip", "5.11.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.11.2.zip", "5.11.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.11.3.zip", "5.11.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.11.4.zip", "5.12.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.12.1.zip", "5.12.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.12.2.zip", "5.12.3": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.12.3.zip", "5.12.4": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.12.4.zip", "5.12.5": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.12.5.zip", "5.12.6": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.12.6.zip", "5.6.10": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.6.10.zip", "5.7.10": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.10.zip", "5.7.12": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.12.zip", "5.7.13": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.13.zip", "5.8.10": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.10.zip", "5.8.11": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.11.zip", "5.8.12": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.12.zip", "5.8.13": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.13.zip", "5.8.14": "https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.14.zip", "6.3.11": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.11.zip", "6.3.12": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.12.zip", "6.2.6.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.6.1.zip", "6.3.6.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.6.1.zip", "6.4.0.1": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.4.0.1.zip", "6.3.10.2": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.3.10.2.zip"}, "downloaded": 64906476, "description": "

    Advanced Custom Fields (ACF®) turns WordPress sites into a fully-fledged content management system by giving you all the tools to do more with your data.

    \n

    Use the ACF plugin to take full control of your WordPress edit screens, custom field data, and more.

    \n

    \n

    Add fields on demand.
    \nThe ACF field builder allows you to quickly and easily add fields to WP edit screens with only the click of a few buttons! Whether it’s something simple like adding an “author” field to a book review post, or something more complex like the structured data needs of an ecommerce site or marketplace, ACF makes adding fields to your content model easy.

    \n

    Add them anywhere.
    \nFields can be added all over WordPress including posts, pages, users, taxonomy terms, media, comments and even custom options pages! It couldn’t be simpler to bring structure to the WordPress content creation experience.

    \n

    Show them everywhere.
    \nLoad and display your custom field values in any theme template file with our hassle-free, developer friendly functions! Whether you need to display a single value or generate content based on a more complex query, the out-of-the-box functions of ACF make templating a dream for developers of all levels of experience.

    \n

    Any Content, Fast.
    \nTurning WordPress into a true content management system is not just about custom fields. Creating new custom post types and taxonomies is an essential part of building custom WordPress sites. Registering post types and taxonomies is now possible right in the ACF UI, speeding up the content modeling workflow without the need to touch code or use another plugin.

    \n

    Simply beautiful and intentionally accessible.
    \nFor content creators and those tasked with data entry, the field user experience is as intuitive as they could desire while fitting neatly into the native WordPress experience. Accessibility standards are regularly reviewed and applied, ensuring ACF is able to empower as close to anyone as possible.

    \n

    Documentation and developer guides.
    \nOver 10 plus years of vibrant community contribution alongside an ongoing commitment to clear documentation means that you’ll be able to find the guidance you need to build what you want.

    \n

    Features

    \n
      \n
    • Simple & Intuitive
    • \n
    • Powerful Functions
    • \n
    • Over 30 Field Types
    • \n
    • Extensive Documentation
    • \n
    • Millions of Users
    • \n
    \n

    Links

    \n\n

    PRO

    \n

    The Advanced Custom Fields plugin is also available in a professional version which includes more fields, more functionality, and more flexibility. The ACF PRO plugin features:

    \n
      \n
    • The Repeater Field allows you to create a set of sub fields which can be repeated again, and again, and again.
    • \n
    • ACF Blocks, a powerful PHP-based framework for developing custom block types for the WordPress Block Editor (aka Gutenberg).
    • \n
    • Define, create, and manage content with the Flexible Content Field, which provides for multiple layout and sub field options.
    • \n
    • Use the Options Page feature to add custom admin pages to edit ACF fields.
    • \n
    • Build fully customisable image galleries with the Gallery Field.
    • \n
    • Unlock a more efficient workflow for managing field settings by reusing existing fields and field groups on demand with the Clone Field.
    • \n
    \n

    Upgrade to ACF PRO

    \n", "donate_link": "", "num_ratings": 1418, "screenshots": {"1": {"src": "https://ps.w.org/advanced-custom-fields/assets/screenshot-1.jpg?rev=3207824", "caption": "

    Simple & Intuitive

    "}, "2": {"src": "https://ps.w.org/advanced-custom-fields/assets/screenshot-2.jpg?rev=3207824", "caption": "

    Made for Developers

    "}, "3": {"src": "https://ps.w.org/advanced-custom-fields/assets/screenshot-3.jpg?rev=3207824", "caption": "

    All About Fields

    "}, "4": {"src": "https://ps.w.org/advanced-custom-fields/assets/screenshot-4.jpg?rev=3207824", "caption": "

    Registering Custom Post Types

    "}, "5": {"src": "https://ps.w.org/advanced-custom-fields/assets/screenshot-5.jpg?rev=3207824", "caption": "

    Registering Taxonomies

    "}}, "support_url": "https://wordpress.org/support/plugin/advanced-custom-fields/", "contributors": {"antpb": {"avatar": "https://secure.gravatar.com/avatar/776698fe960d9857689e2fc729f8a3da3127d73156be93bd7293f2baf2b1c569?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/antpb/", "display_name": "Anthony Burchell"}, "lgladdy": {"avatar": "https://secure.gravatar.com/avatar/81099c2fee591b7bdf21284769e7741287fdf165a0a1dd796fd5fc24f29f0044?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lgladdy/", "display_name": "Liam Gladdy"}, "mattshaw": {"avatar": "https://secure.gravatar.com/avatar/fcf2297ad2f2973d3b75404db6afe40d1dbad53db835fa9cd4e3d07c9ad2819c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mattshaw/", "display_name": "Matt Shaw"}, "wpengine": {"avatar": "https://secure.gravatar.com/avatar/4c1bb9eb4685e7604768fc46ead733aff774fc4cf9e732ded27325d4e6d5ca13?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpengine/", "display_name": "WP Engine"}, "dalewilliams": {"avatar": "https://secure.gravatar.com/avatar/88a322387489c676931ddf362a6cfb63e23be1346684357586da97405238d0c3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dalewilliams/", "display_name": "Dale Williams"}, "elliotcondon": {"avatar": "https://secure.gravatar.com/avatar/aa6c17f251d470ac93e27fc47d985d5304cf3038258094b6d3c8b6155b43e7d1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elliotcondon/", "display_name": "Elliot Condon"}, "polevaultweb": {"avatar": "https://secure.gravatar.com/avatar/3a5332cfc97e7f7a221cddd5feb87a861346acd7670b895b65f59e78b26490c9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/polevaultweb/", "display_name": "Iain Poulson"}, "johnstonphilip": {"avatar": "https://secure.gravatar.com/avatar/11177b397354c97025f395594f49e10041be4497df46e5d8b1f5b7ca4b063a3a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/johnstonphilip/", "display_name": "Phil Johnston"}, "deliciousbrains": {"avatar": "https://secure.gravatar.com/avatar/3d8222a6b777fd716d18eb7454144c91e7bfbae1381aa2cd95b21c7207209351?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/deliciousbrains/", "display_name": "Delicious Brains"}}, "last_updated": "2025-10-16 3:07pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/advanced-custom-fields.6.6.1.zip", "author_profile": "https://profiles.wordpress.org/wpengine/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-ef81-71a7-89b4-b107184c366a", "name": "Advanced Custom Fields (ACF®)", "slug": "advanced-custom-fields", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1760627220, "version": "6.6.1"}, "support_threads": 8, "requires_plugins": [], "short_description": "ACF helps customize WordPress with powerful, professional and intuitive fields. Proudly powering over 2 million sites, WordPress developers love ACF.", "author_block_count": 0, "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 8}'); -INSERT INTO public.plugins VALUES ('019a30c1-6394-70a7-a586-06441937eeee', 'akismet', 'Akismet Anti-spam: Spam Protection', 'The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce.', '

    The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce.

    -

    Akismet checks your comments and contact form submissions against our global database of spam to prevent your site from publishing malicious content. You can review the comment spam it catches on your blog’s “Comments” admin screen.

    -

    Major features in Akismet include:

    -
      -
    • Automatically checks all comments and filters out the ones that look like spam.
    • -
    • Each comment has a status history, so you can easily see which comments were caught or cleared by Akismet and which were spammed or unspammed by a moderator.
    • -
    • URLs are shown in the comment body to reveal hidden or misleading links.
    • -
    • Moderators can see the number of approved comments for each user.
    • -
    • A discard feature that outright blocks the worst spam, saving you disk space and speeding up your site.
    • -
    -

    PS: You’ll be prompted to get an Akismet.com API key to use it, once activated. Keys are free for personal blogs; paid subscriptions are available for businesses and commercial sites.

    -', '5.5', 'Automattic', '5.8', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/akismet.5.5.zip', '2005-10-20 00:00:00+00', '2025-07-15 18:17:00+00', 'https://profiles.wordpress.org/automattic/', 94, 1153, 4, 4, 6000000, 375883816, 'https://akismet.com/', NULL, 'commercial', 'https://akismet.com/getting-started/free-or-paid', 'https://wordpress.org/support/plugin/akismet/', 'https://wordpress.org/plugins/akismet/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Akismet Anti-spam: Spam Protection", "slug": "akismet", "tags": {"spam": "spam", "antispam": "antispam", "comments": "comments", "anti-spam": "anti-spam", "contact-form": "contact form"}, "added": "2005-10-20", "icons": {"1x": "https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463", "2x": "https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463"}, "author": "Automattic", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731", "high": "https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731"}, "ratings": {"1": 58, "2": 13, "3": 14, "4": 53, "5": 1015}, "version": "5.5", "homepage": "https://akismet.com/", "requires": "5.8", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    prevent for spam

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hazel8 on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It filters out nearly all spam on my site, and the support team was quick and helpful in responding to my questions.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Один из самых полезных плагинов для WordPress!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy EdKrasnov (alshoker) on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Один из самых полезных плагинов для WordPress с оперативной техподдержкой!
    Желаю успехов!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable Spam Blocker

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy clark6 on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    \n\n\n\n

    Akismet automatically filters out spam comments and contact form submissions, keeping your site clean and secure. It’s lightweight, effective, and built by the WordPress team.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bloodwork on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use, works great on my site

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Spam Protection

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy scottcox6 on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Akismet works perfectly to block spam and keep comments clean. Easy to use and very reliable.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    GDPR nightmare

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy agent862 on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    GDPR nightmare - sends commenter data (IP, email, etc.) to offsite servers in the US without clear consent or transparency and according to their own privacy policy, they retain and use your data and customer data for model training. Avoid for compliance.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy webmasternatad2 on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ever since the WP update to 6.8.3, I cannot update, nor remove Akismet plugin. It is static. When I try to update, I get the error: \"Update failed: Could not remove old plugin.\". When I try to remove the plugin I get the error: \"Could not fully remove the plugin akismet/akismet.php.\" I don''t know what to do, or how to proceed. Are there any suggestions?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    customer team

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy avnish2 on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The customer service team was incredibly friendly and understanding. They listened patiently to my concerns and made sure I felt heard and supported throughout the process.\"

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Meh

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy xlthlx on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    Meh.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    good for customer

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rahul32 on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been dealing with a flood of fake user registrations for months, but after installing this plugin, the problem stopped almost immediately. The combination of CAPTCHA and hidden fields really works, and I didn’t even need to configure anything extra.

    \n
    \n
    \n", "changelog": "

    5.5

    \n

    Release Date – 15 July 2025

    \n
      \n
    • Enable webhooks so that Akismet can process comments asynchronously to detect more types of spam.
    • \n
    • Only include the Akismet widget CSS when the Akismet widget is present
    • \n
    • Improve contrast/readability for certain UI elements
    • \n
    \n

    5.4

    \n

    Release Date – 7 May 2025

    \n
      \n
    • The stats pages now use the user’s locale instead of the site’s locale if they’re different.
    • \n
    • Adds a ‘Compatible plugins’ section that will show installed and active plugins that are compatible with Akismet.
    • \n
    • Akismet now requires PHP version 7.2 or above.
    • \n
    \n

    5.3.7

    \n

    Release Date – 14 February 2025

    \n
      \n
    • Simplify the logic used during a comment-check request to compare comments.
    • \n
    \n

    5.3.6

    \n

    Release Date – 4 February 2025

    \n
      \n
    • Improve the utility of submit-spam and submit-ham requests.
    • \n
    • Modernize styles for the Akismet classic widget.
    • \n
    \n

    5.3.5

    \n

    Release Date – 18 November 2024

    \n
      \n
    • Address compatibility issues with < PHP 7.3 in v5.3.4 release.
    • \n
    \n

    5.3.4

    \n

    Release Date – 18 November 2024

    \n
      \n
    • Improve activation notice on Comments for users who haven’t set up their API key yet.
    • \n
    • Improve notice about commercial site status.
    • \n
    \n

    5.3.3

    \n

    Release Date – 10 July 2024

    \n
      \n
    • Make setup step clearer for new users.
    • \n
    • Remove the stats section from the configuration page if the site has been revoked from the key.
    • \n
    • Skip the Akismet comment check when the comment matches something in the disallowed list.
    • \n
    • Prompt users on legacy plans to contact Akismet support for upgrades.
    • \n
    \n

    5.3.2

    \n

    Release Date – 21 March 2024

    \n
      \n
    • Improve the empty state shown to new users when no spam has been caught yet.
    • \n
    • Update the message shown to users without a current subscription.
    • \n
    • Add foundations for future webhook support.
    • \n
    \n

    5.3.1

    \n

    Release Date – 17 January 2024

    \n
      \n
    • Make the plugin more resilient when asset files are missing (as seen in WordPress Playground).
    • \n
    • Add a link to the ‘Account overview’ page on akismet.com.
    • \n
    • Fix a minor error that occurs when another plugin removes all comment actions from the dashboard.
    • \n
    • Add the akismet_request_args filter to allow request args in Akismet API requests to be filtered.
    • \n
    • Fix a bug that causes some contact forms to include unnecessary data in the comment_content parameter.
    • \n
    \n

    5.3

    \n

    Release Date – 14 September 2023

    \n
      \n
    • Improve display of user notices.
    • \n
    • Add stylesheets for RTL languages.
    • \n
    • Remove initial disabled state from ‘Save changes’ button.
    • \n
    • Improve accessibility of API key entry form.
    • \n
    • Add new filter hooks for Fluent Forms.
    • \n
    • Fix issue with PHP 8.1 compatibility.
    • \n
    \n

    5.2

    \n

    Release Date – 21 June 2023

    \n
      \n
    • Visual refresh of Akismet stats.
    • \n
    • Improve PHP 8.1 compatibility.
    • \n
    • Improve appearance of plugin to match updated stats.
    • \n
    • Change minimum supported PHP version to 5.6 to match WordPress.
    • \n
    • Drop IE11 support and update minimum WordPress version to 5.8 (where IE11 support was removed from WP Core).
    • \n
    \n

    5.1

    \n

    Release Date – 20 March 2023

    \n
      \n
    • Removed unnecessary limit notices from admin page.
    • \n
    • Improved spam detection by including post taxonomies in the comment-check call.
    • \n
    • Removed API keys from stats iframes to avoid possible inadvertent exposure.
    • \n
    \n

    5.0.2

    \n

    Release Date – 1 December 2022

    \n
      \n
    • Improved compatibility with themes that hide or show UI elements based on mouse movements.
    • \n
    • Increased security of API keys by sending them in request bodies instead of subdomains.
    • \n
    \n

    5.0.1

    \n

    Release Date – 28 September 2022

    \n
      \n
    • Added an empty state for the Statistics section on the admin page.
    • \n
    • Fixed a bug that broke some admin page links when Jetpack plugins are active.
    • \n
    • Marked some event listeners as passive to improve performance in newer browsers.
    • \n
    • Disabled interaction observation on forms that post to other domains.
    • \n
    \n

    5.0

    \n

    Release Date – 26 July 2022

    \n
      \n
    • Added a new feature to catch spammers by observing how they interact with the page.
    • \n
    \n

    For older changelog entries, please see the additional changelog.txt file delivered with the plugin.

    \n", "description": "

    The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce.

    \n

    Akismet checks your comments and contact form submissions against our global database of spam to prevent your site from publishing malicious content. You can review the comment spam it catches on your blog’s “Comments” admin screen.

    \n

    Major features in Akismet include:

    \n
      \n
    • Automatically checks all comments and filters out the ones that look like spam.
    • \n
    • Each comment has a status history, so you can easily see which comments were caught or cleared by Akismet and which were spammed or unspammed by a moderator.
    • \n
    • URLs are shown in the comment body to reveal hidden or misleading links.
    • \n
    • Moderators can see the number of approved comments for each user.
    • \n
    • A discard feature that outright blocks the worst spam, saving you disk space and speeding up your site.
    • \n
    \n

    PS: You’ll be prompted to get an Akismet.com API key to use it, once activated. Keys are free for personal blogs; paid subscriptions are available for businesses and commercial sites.

    \n", "installation": "

    Upload the Akismet plugin to your blog, activate it, and then enter your Akismet.com API key.

    \n

    1, 2, 3: You’re done!

    \n"}, "versions": {"3.1": "https://downloads.wordpress.org/plugin/akismet.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/akismet.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/akismet.3.3.zip", "4.0": "https://downloads.wordpress.org/plugin/akismet.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/akismet.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/akismet.4.2.zip", "5.0": "https://downloads.wordpress.org/plugin/akismet.5.0.zip", "5.1": "https://downloads.wordpress.org/plugin/akismet.5.1.zip", "5.2": "https://downloads.wordpress.org/plugin/akismet.5.2.zip", "5.3": "https://downloads.wordpress.org/plugin/akismet.5.3.zip", "5.4": "https://downloads.wordpress.org/plugin/akismet.5.4.zip", "5.5": "https://downloads.wordpress.org/plugin/akismet.5.5.zip", "2.2.5": "https://downloads.wordpress.org/plugin/akismet.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/akismet.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/akismet.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/akismet.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/akismet.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/plugin/akismet.2.3.0.zip", "2.4.0": "https://downloads.wordpress.org/plugin/akismet.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/akismet.2.4.1.zip", "2.5.0": "https://downloads.wordpress.org/plugin/akismet.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/akismet.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/akismet.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/akismet.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/akismet.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/akismet.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/akismet.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/akismet.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/akismet.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/plugin/akismet.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/plugin/akismet.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/akismet.2.6.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/akismet.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/akismet.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/akismet.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/akismet.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/akismet.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/akismet.3.0.5.zip", "3.1.1": "https://downloads.wordpress.org/plugin/akismet.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/akismet.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/akismet.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/akismet.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/akismet.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/akismet.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/akismet.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/akismet.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/akismet.3.1.9.zip", "3.3.1": "https://downloads.wordpress.org/plugin/akismet.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/akismet.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/akismet.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/akismet.3.3.4.zip", "4.0.1": "https://downloads.wordpress.org/plugin/akismet.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/akismet.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/akismet.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/akismet.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/akismet.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/akismet.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/akismet.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/plugin/akismet.4.0.8.zip", "4.1.1": "https://downloads.wordpress.org/plugin/akismet.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/akismet.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/akismet.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/akismet.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/akismet.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/akismet.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/akismet.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/akismet.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/akismet.4.1.9.zip", "4.2.1": "https://downloads.wordpress.org/plugin/akismet.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/akismet.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/akismet.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/akismet.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/akismet.4.2.5.zip", "5.0.1": "https://downloads.wordpress.org/plugin/akismet.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/akismet.5.0.2.zip", "5.3.1": "https://downloads.wordpress.org/plugin/akismet.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/akismet.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/akismet.5.3.3.zip", "5.3.4": "https://downloads.wordpress.org/plugin/akismet.5.3.4.zip", "5.3.5": "https://downloads.wordpress.org/plugin/akismet.5.3.5.zip", "5.3.6": "https://downloads.wordpress.org/plugin/akismet.5.3.6.zip", "5.3.7": "https://downloads.wordpress.org/plugin/akismet.5.3.7.zip", "trunk": "https://downloads.wordpress.org/plugin/akismet.zip", "2.5.10": "https://downloads.wordpress.org/plugin/akismet.2.5.10.zip", "3.1.10": "https://downloads.wordpress.org/plugin/akismet.3.1.10.zip", "3.1.11": "https://downloads.wordpress.org/plugin/akismet.3.1.11.zip", "4.1.10": "https://downloads.wordpress.org/plugin/akismet.4.1.10.zip", "4.1.11": "https://downloads.wordpress.org/plugin/akismet.4.1.11.zip", "4.1.12": "https://downloads.wordpress.org/plugin/akismet.4.1.12.zip", "3.0.0-RC1": "https://downloads.wordpress.org/plugin/akismet.3.0.0-RC1.zip"}, "downloaded": 375883816, "description": "

    The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce.

    \n

    Akismet checks your comments and contact form submissions against our global database of spam to prevent your site from publishing malicious content. You can review the comment spam it catches on your blog’s “Comments” admin screen.

    \n

    Major features in Akismet include:

    \n
      \n
    • Automatically checks all comments and filters out the ones that look like spam.
    • \n
    • Each comment has a status history, so you can easily see which comments were caught or cleared by Akismet and which were spammed or unspammed by a moderator.
    • \n
    • URLs are shown in the comment body to reveal hidden or misleading links.
    • \n
    • Moderators can see the number of approved comments for each user.
    • \n
    • A discard feature that outright blocks the worst spam, saving you disk space and speeding up your site.
    • \n
    \n

    PS: You’ll be prompted to get an Akismet.com API key to use it, once activated. Keys are free for personal blogs; paid subscriptions are available for businesses and commercial sites.

    \n", "donate_link": "", "num_ratings": 1153, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/akismet/", "contributors": {"jgs": {"avatar": "https://secure.gravatar.com/avatar/d38734c97bc7fcedb3e02cd8bc0503554cea457805ab0a6ad21d44e60dd8de8e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jgs/", "display_name": "Greg"}, "andy": {"avatar": "https://secure.gravatar.com/avatar/be51113f41b3000046c3eb0c273b2d87ce746b6dbbe5475b68bf4f838a42e8d7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/andy/", "display_name": "Andy Skelton"}, "matt": {"avatar": "https://secure.gravatar.com/avatar/33252cd1f33526af53580fcb1736172f06e6716f32afdd1be19ec3096d15dea5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/matt/", "display_name": "Matt Mullenweg"}, "ryan": {"avatar": "https://secure.gravatar.com/avatar/756c2e0e82712f382e451c45008d32f73ebb14f01c1d8447bd44b7dcf67e61dd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ryan/", "display_name": "Ryan Boren"}, "cfinke": {"avatar": "https://secure.gravatar.com/avatar/942f91a542ccc0d21a1b1b9de17296dceb648bb278011f76386aedbb96f37684?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cfinke/", "display_name": "Christopher Finke"}, "eoigal": {"avatar": "https://secure.gravatar.com/avatar/b788473ed692a091f2a4b61e2fec643c116bd38a7d95d5a96ff6eae82a4aa6cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/eoigal/", "display_name": "Eoin Gallagher"}, "kbrownkd": {"avatar": "https://secure.gravatar.com/avatar/2dbf1f6c2ab8011293a671eb45365aae2f323f662c0ea99e93102f7710fcb23b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kbrownkd/", "display_name": "kbrownkd (a11n)"}, "mdawaffe": {"avatar": "https://secure.gravatar.com/avatar/813f34a1a74baa1628c9876cb3e385bec2e3df5772b724aa97b7cc87bace6607?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mdawaffe/", "display_name": "Michael Adams (mdawaffe)"}, "procifer": {"avatar": "https://secure.gravatar.com/avatar/eaf024517f5862b8138ffee2f25fac72d74bde97bfd766127196c33e33082fae?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/procifer/", "display_name": "Josh Smith"}, "stephdau": {"avatar": "https://secure.gravatar.com/avatar/5778b0063f8a446b13be5c4b22fd51c5a5d7e330425ab0249ee28a60ddca0c3c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stephdau/", "display_name": "Stephane Daury (stephdau)"}, "bluefuton": {"avatar": "https://secure.gravatar.com/avatar/31e70f6924f6076dcb6cfa9e136bebecb6707fface3d7cd646331776da8c012e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bluefuton/", "display_name": "bluefuton"}, "lessbloat": {"avatar": "https://secure.gravatar.com/avatar/df4e84176d328d48e01ba995e523b1f219143d215f68c9f323e2b2bb78062720?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lessbloat/", "display_name": "Dave Martin (lessbloat)"}, "lschuyler": {"avatar": "https://secure.gravatar.com/avatar/e42d73fdac4fb375f6a58dfda8ebc2a8ae3da4ce656583a6d1c8c645d31653b1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lschuyler/", "display_name": "Lisa Schuyler"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "tellyworth": {"avatar": "https://secure.gravatar.com/avatar/6a0cc9d22e89e8a6629d91ab29ad93a27583bedd0ea813ef56a83dd019188748?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tellyworth/", "display_name": "Tellyworth"}, "andyperdomo": {"avatar": "https://secure.gravatar.com/avatar/8c192c01b0af1f3173a1673ef5e3d433dd663b38213bbd7ac39a6c2b696ff259?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/andyperdomo/", "display_name": "Andy Perdomo (a11n)"}, "josephscott": {"avatar": "https://secure.gravatar.com/avatar/b08b3ac375d3b073a7de49cab22f621e759f0aadf4a5157a5ec36ffb71f52a67?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/josephscott/", "display_name": "Joseph Scott"}, "derekspringer": {"avatar": "https://secure.gravatar.com/avatar/86d33c16efb02482f5a867e3ac1df58a5a452b117ed739a1e40cdfacbea106e2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/derekspringer/", "display_name": "Derek Springer"}, "akismetantispam": {"avatar": "https://secure.gravatar.com/avatar/e695afa8a5f930ed5d127b0d71fb92e618a17e41d7d2e76675689b7039d8a227?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/akismetantispam/", "display_name": "Anti-Spam"}}, "last_updated": "2025-07-15 6:17pm GMT", "preview_link": "https://wordpress.org/plugins/akismet/?preview=1", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/akismet.5.5.zip", "author_profile": "https://profiles.wordpress.org/automattic/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 6000000, "aspiresync_meta": {"id": "019a30bf-eede-703d-bd32-c73ad8af4d77", "name": "Akismet Anti-spam: Spam Protection", "slug": "akismet", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1752603420, "version": "5.5"}, "support_threads": 4, "requires_plugins": [], "short_description": "The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce.", "author_block_count": "6", "author_block_rating": 93.68421052631601, "commercial_support_url": "https://akismet.com/getting-started/free-or-paid", "support_threads_resolved": 4}'); -INSERT INTO public.plugins VALUES ('019a30c1-63b0-7066-953d-939d00afa5a2', 'all-in-one-seo-pack', 'All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic', 'AIOSEO is the most powerful WordPress SEO plugin. Improve SEO rankings and traffic with comprehensive SEO tools and smart AI SEO optimizations!', '

    AIOSEO – The Best WordPress SEO Plugin & Toolkit

    -

    All in One SEO is the original WordPress SEO plugin started in 2007. Today, over 3 million website owners and SEO experts use AIOSEO for higher SEO rankings.

    -

    Our users consistently rate AIOSEO as the most comprehensive WordPress SEO plugin and marketing toolkit. It’s the fastest way to optimize WordPress SEO settings, add schema markup, create XML sitemap, add local SEO, track SEO keyword rankings, automate internal linking, perform SEO audits, add Author SEO (EEAT), monitor SEO revisions, connect Google search console, and basically everything a SEO Pro would use to rank higher in search engines.

    -

    We have AI SEO features that help you optimize your posts for SEO by automatically generating SEO titles, meta descriptions, FAQs, key points, social media posts, and more.

    -
    -

    AIOSEO Pro
    - This is the lite version of the All in One WordPress SEO Pro plugin that comes with all the powerful SEO features you will ever need to rank higher in search engines including smart SEO schema markup, advanced SEO modules, powerful SEO sitemap suite, local SEO module, SEO keyword ranking tracking, automatic internal linking, WooCommerce SEO, and tons more. Click here to purchase the best premium WordPress SEO plugin now!

    -
    -

    Here’s why smart business owners, SEO experts, marketers, and developers love AIOSEO, and you will too!

    - -

    What Makes AIOSEO Better than Other WordPress SEO Plugins

    -

    AIOSEO is leading the innovation in WordPress SEO space, and our SEO features will give you a competitive advantage.

    -
      -
    • -

      Easy SEO Setup Wizard
      -Our SEO setup wizard optimizes your website’s SEO settings based on your unique industry needs in less than 5 minutes.

      -
    • -
    • -

      Smart Schema Markup (aka Rich Snippets)
      -Get better click through rate (CTR) and Google rich featured snippets using advanced SEO schema markups like FAQ schema, product schema, recipe schema markup, and dozens more using our custom Schema Generator.

      -
    • -
    • -

      AI Content
      -Create anything you need, such as blog articles and tables, with our AI Assistant block. Generate stunning visuals instantly with the built-in AI Image Generator. Save time by automatically generating SEO titles, meta descriptions, FAQs, key points, social media posts, and more with our AI Content Generator.

      -
    • -
    • -

      Unlimited SEO Keywords
      -Optimize for unlimited SEO keywords using our SEO content analyzer. Our TruSEO score gives you detailed content & readability analysis, so you can get higher SEO rankings.

      -
    • -
    • -

      Google Keyword Rank Tracking
      -Easily track how your website is ranking for different keywords in Google from your WordPress dashboard.

      -
    • -
    • -

      Automatic Link Assistant
      -Automate internal links between your pages using our smart internal linking algorithm that will help improve on-page SEO.

      -
    • -
    • -

      Local Business SEO
      -Improve your local SEO presence with local business schema, support for multiple local store locations, business opening hours, Google Maps integration, contact info (business email, business phone, business address, etc), and more with our Local SEO module.

      -
    • -
    • -

      Site Audit
      -Get a detailed report of SEO issues for all posts and terms on your site, discover why these issues are important and how you can fix them.

      -
    • -
    • -

      SEO Revisions
      -Keep a historical record of SEO changes, monitor the impact of changes, and restore previous versions in one click.

      -
    • -
    • -

      Content Decay Tracking
      -Never lose traffic to competitors. Quickly detect which content is losing traffic / SEO rankings, so you can optimize it to regain your rankings with our Search Statistics module.

      -
    • -
    • -

      Smart XML Sitemap
      -Advanced XML sitemaps to boost your SEO rankings (with easy setup inside Google Search Console). Also includes Video SEO XML sitemap, News SEO XML sitemap, RSS sitemap, and HTML sitemap.

      -
    • -
    • -

      Smart SEO Redirects
      -The most powerful SEO Redirection manager for setting up advanced SEO redirects including 301 redirects, 302, 307, 410, 404 redirection, REGEX redirects, and more.

      -
    • -
    • -

      404 Error Monitor
      -Automatic 404 error monitor helps you track and redirect 404 errors, so you don’t lose SEO rankings.

      -
    • -
    • -

      Author SEO
      -Add custom author profile pages, author bio box, and relevant author schema to boost Google EEAT score to help with Google’s Helpful Content Update (HCU).

      -
    • -
    • -

      LLMs.txt Generator
      -Generate an llms.txt file to help AI engines discover your site’s content more easily so your content can rank in AI search results.

      -
    • -
    • -

      SEO Audit Checklist
      -Improve your SEO ranking with our comprehensive SEO audit checklist.

      -
    • -
    • -

      Knowledge Graph Support
      -Improve your website’s search appearance with SEO Knowledge panel.

      -
    • -
    • -

      Table of Contents
      -Automatically generate a table of content, customize headings, anchors, and you can also hide or reorder the headings.

      -
    • -
    -

    Advanced SEO Plugin Features

    -
      -
    • -

      User Access Control
      -Control who can manage your SEO settings with our advanced SEO access control.

      -
    • -
    • -

      WordPress REST API
      -Manage your SEO metadata with WordPress REST API. Great for headless WordPress installations.

      -
    • -
    • -

      Advanced Robots Meta SEO Settings
      -Granular controls for no index, no follow, no archive, no snippet, max snippet, max video, etc.

      -
    • -
    • -

      RSS Content for SEO
      -Stop content scraping from hurting your SEO rankings.

      -
    • -
    • -

      Full Site Redirects
      -Merging websites or switching domains? Full site redirect makes it easy to switch domains without losing SEO rankings.

      -
    • -
    • -

      Smart Meta Title & Description
      -Automatic SEO generation, dynamic SEO smart tags, include Emoji, add shortcodes, and more features to stand out in search results.

      -
    • -
    • -

      Smart Breadcrumbs
      -Add Breadcrumb navigation to improve user experience and boost your SEO rankings. Comes with full SEO JSON+LD support.

      -
    • -
    • -

      Automatic Image SEO
      -Helps your images rank higher by autogenerating image title, clean SEO image filenames, and more.

      -
    • -
    • -

      Advanced SEO Canonical URLs
      -Prevent duplicate content in SEO with automatic canonical URLs.

      -
    • -
    • -

      SEO Cleanup / Manual SEO Penalty Removal
      -Domains Report feature in Link Assistant automatically removes all links for specific domains with just one click. Huge time saver when doing SEO cleanups.

      -
    • -
    • -

      Link Opportunities Report
      -See better internal link opportunities with our smart algorithm. Easily add internal links with just a few clicks.

      -
    • -
    • -

      Robots.txt Editor
      -Manage and customize SEO robots.txt files in WordPress.

      -
    • -
    • -

      Crawl Quota Management
      -Crawl Cleanup feature manages your search engine crawl quota and index your important content faster.

      -
    • -
    • -

      Title and Nofollow for SEO
      -Easily add title and nofollow to external links.

      -
    • -
    • -

      Headline Analyzer
      -Analyze your page / posts headlines to improve CTR and SEO rankings.

      -
    • -
    • -

      Competitor Site SEO Analysis
      -Use competitor SEO analysis to outrank them with better SEO optimization.

      -
    • -
    • -

      SEO Code Snippets
      -Integration with WPCode plugin for SEO code snippets to further customize every aspect of your SEO.

      -
    • -
    -

    WordPress SEO Integrations

    -
      -
    • -

      Google Search Console Integration
      -Connect with Google webmaster tools and Google Search Console to see SEO insights (like content rankings, keyword rankings, page speed insights, post index status, etc) directly in your WordPress dashboard.

      -
    • -
    • -

      WooCommerce SEO
      -Improves your WooCommerce SEO rankings. Easily optimize WooCommerce product pages, product categories, and more for best eCommerce SEO results.

      -
    • -
    • -

      Knowledge Panel SEO
      -Improve website SEO appearance by adding social media profile links for Facebook, Twitter, Wikipedia, Instagram, LinkedIn, Yelp, YouTube, and more.

      -
    • -
    • -

      Webmaster Tool Integrations
      -Connect with all webmaster tools including Google Search Console, Bing SEO, Yandex SEO, Baidu SEO, Google Analytics, Pinterest site verification, and more.

      -
    • -
    • -

      Social Media Integration
      -Facebook SEO, Twitter SEO, and Pinterest SEO with better website previews.

      -
    • -
    • -

      Google AMP SEO Integration
      -Improve your mobile SEO rankings with Google AMP SEO.

      -
    • -
    • -

      Semrush SEO integration
      -See additional SEO keywords with Semrush SEO integration.

      -
    • -
    • -

      Microsoft Clarity Integration
      -See visitor interactions with heatmaps and session recordings.

      -
    • -
    • -

      IndexNow Integration
      -Instantly notify Bing and Yandex for faster SEO indexing.

      -
    • -
    • -

      Elementor SEO
      -Better Elementor SEO for landing pages.

      -
    • -
    • -

      Divi SEO
      -Better Divi SEO for landing pages.

      -
    • -
    • -

      Avada SEO
      -Better Avada SEO for landing pages.

      -
    • -
    • -

      WP Bakery SEO
      -Better WP Bakery SEO for landing pages.

      -
    • -
    • -

      SeedProd SEO
      -Optimize SeedProd landing pages for SEO.

      -
    • -
    • -

      SiteOrigin SEO
      -Better SiteOrigin SEO for landing pages.

      -
    • -
    • -

      Open Graph Support
      -Improve SEO rankings with open graph meta data.

      -
    • -
    -

    WordPress SEO Plugin Importer

    -

    Not happy with your current SEO plugin? We make SEO migration easy with our point-and-click automated SEO data transfer tool. We currently support SEO migration from following SEO tools:

    -
      -
    • Yoast SEO Importer
    • -
    • Yoast SEO Premium Importer
    • -
    • RankMath SEO Importer
    • -
    • SEOPress
    • -
    -

    We also support importing SEO redirects from the following plugins:

    -
      -
    • Redirection Plugin
    • -
    • Simple 301 Redirects Importer
    • -
    • Safe Redirect Manager
    • -
    • 301 Redirects Importer
    • -
    -

    Aside from that, our SEO migration tool also helps you with:

    -
      -
    • Import / Export AIOSEO settings from one site to another
    • -
    • Create SEO Settings Backup
    • -
    • CSV Sitemap Import to Import additional pages to your XML Sitemaps
    • -
    -

    Now you can see why AIOSEO is often rated the best SEO plugin in WordPress.

    -

    Give AIOSEO a try.

    -

    Want to unlock more SEO features? Upgrade to AIOSEO Pro.

    -

    Credits

    -

    This plugin is created by Benjamin Rojas and Syed Balkhi.

    -

    Branding Guideline

    -

    AIOSEO® is a registered trademark of Semper Plugins LLC. When writing about the WordPress SEO plugin by AIOSEO, please use the following format.

    -
      -
    • AIOSEO (correct)
    • -
    • All in One SEO (correct)
    • -
    • AIO SEO (incorrect)
    • -
    • All in 1 SEO (incorrect)
    • -
    • AISEO (incorrect)
    • -
    -', '4.8.9', 'Syed Balkhi', '5.7', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.9.zip', '2007-03-30 00:00:00+00', '2025-10-24 15:37:00+00', 'https://profiles.wordpress.org/smub/', 94, 4900, 35, 35, 3000000, 190668334, 'https://aioseo.com/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/all-in-one-seo-pack/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic", "slug": "all-in-one-seo-pack", "tags": {"seo": "seo", "schema": "schema", "xml-sitemap": "xml sitemap", "meta-description": "meta description", "google-search-console": "google search console"}, "added": "2007-03-30", "icons": {"1x": "https://ps.w.org/all-in-one-seo-pack/assets/icon.svg?rev=2443290", "svg": "https://ps.w.org/all-in-one-seo-pack/assets/icon.svg?rev=2443290"}, "author": "Syed Balkhi", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/all-in-one-seo-pack/assets/banner-772x250.png?rev=3310686", "high": "https://ps.w.org/all-in-one-seo-pack/assets/banner-1544x500.png?rev=3310686"}, "ratings": {"1": 249, "2": 41, "3": 36, "4": 138, "5": 4436}, "version": "4.8.9", "homepage": "https://aioseo.com/", "requires": "5.7", "sections": {"faq": "

    Please visit our complete AIOSEO documentation before requesting support for SEO from the AIOSEO team.

    \n\n
    \nWho should use AIOSEO?\n\n

    \n

    SEO is essential for all websites. AIOSEO is perfect for business owners, bloggers, marketers, designers, developers, photographers, and basically everyone else. If you want to rank higher in search, then you need to use AIOSEO WordPress SEO plugin.

    \n

    \n
    \nWhich themes does AIOSEO support?\n\n

    \n

    AIOSEO works with all WordPress themes. Simply enable AIOSEO to make your WordPress theme SEO friendly.

    \n

    \n
    \nWill AIOSEO slow down my website?\n\n

    \n

    Nope, AIOSEO will NOT slow down your website. We understand that speed is important for SEO, that’s why our code is properly optimized for maximum performance. Remember, faster websites rank higher in search. Use AIOSEO for fast SEO improvements.

    \n

    \n
    \nCan I use AIOSEO on client sites?\n\n

    \n

    Yes, you can use AIOSEO on client websites.

    \n

    \n
    \nAre AIOSEO sitemaps better than default WordPress sitemaps?\n\n

    \n

    Yes, AIOSEO smart sitemaps are a lot more optimized than the default WordPress sitemaps. Once you enable AIOSEO, our XML sitemaps will override the default WordPress sitemaps, so you can improve your SEO rankings.

    \n

    We also offer advanced SEO sitemaps such as News Sitemap, Video Sitemap, and RSS Sitemap.

    \n

    Our SEO sitemaps come with granular control such as links per sitemap, enable / disable post types or taxonomies, include / exclude specific links from sitemap, add additional non-WordPress pages to sitemaps, customize sitemap priority & frequency for each section of your site, and more.

    \n

    This is why experts rate AIOSEO as the best WordPress SEO plugin.

    \n

    \n
    \nDoes AIOSEO help with SEO Verification?\n\n

    \n

    Yes. AIOSEO can help you with website SEO verification with various webmaster tools such as Google Search Console, Bing Webmaster Tools, Yandex, Baidu, Pinterest, and just about every other site verification you need.

    \n

    \n
    \nWhy is AIOSEO better than other SEO plugins?\n\n

    \n

    There are many WordPress SEO plugins out there. Unlike others, AIOSEO WordPress SEO plugin is always reliable. Our SEO features are results focused (no bloat), and we offer exceptional customer support.

    \n

    AIOSEO is the original WordPress SEO plugin, and it’s trusted by over 3 million website owners.

    \n

    \n
    \nDo I really need an XML Sitemap?\n\n

    \n

    Yes! XML Sitemaps help Google and other search engines to find all the pages of your website.

    \n

    An XML sitemap is a list of all the content on your website. The sitemap helps search engine bots to easily see all the content on your site in one place, The XML sitemap file is hidden from your human visitors, however search engines like Google can see it.

    \n

    Without an XML sitemap, some of your web pages may never be included in Google search results, and won’t get any traffic.

    \n

    XML Sitemaps also help you tell Google which pages you DON’T want included in search results. This can help your SEO to prevent keyword cannibalization and duplicate content issues.

    \n

    As part of your SEO strategy, an XML sitemap can help you to improve your domain authority and unlock more traffic from Google, Bing and other search engines.

    \n

    AIOSEO can easily help you get your sitemaps listed inside Google Search Console so your content can start to get indexed today!

    \n

    \n
    \nDoes AIOSEO integrate directly with Google Search Console?\n\n

    \n

    Absolutely! Our integration with Google Search Console allows you to monitor and maintain your website’s presence on Google. With our direct integration, you can easily view important information about your website, such as the number of clicks, impressions, and the average position for each keyword that your website’s content appears for in Google search results. You can also track your contents page speed using Google’s Page Speed Insights directly inside your WordPress dashboard.

    \n

    Additionally, AIOSEO can also provide you with data on the most frequently used keywords, the most popular pages on your website, and any crawl errors or security issues that may arise. By integrating with Google Search Console, AIOSEO provides website owners with valuable insights that can help to improve SEO and overall online visibility. With this integration, you can track your site’s progress over time and make data-driven decisions that will help you achieve your SEO goals.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    very helpful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy chukswhyte on October 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very Helpful

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Ottimo

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Marialuisa Portaluppi (marialuisaportaluppi) on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Buongiorno, io utilizzo molto All in One SEO, mi trovo molto bene. Mi Piace.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    SEO help at it's finest!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy garry187gmcdesign on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very helpful SEO application. Well worth the subscription

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Muy buen plugin para SEO

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Saure on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Muy intuitivo

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great experience. Pure Genius

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy steve9000 on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great experience. Pure Genius

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    OK

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy qbo64 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It works well :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent Support and Fast Problem Resolution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy goldshopzlatara on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I had a great experience with the AIOSEO team! Their support was fast, professional, and very friendly. They quickly understood my issue and provided a clear solution that worked perfectly. It’s rare to find such responsive and helpful customer service.

    \n\n\n\n

    Highly recommend AIOSEO — not only for its powerful SEO features, but also for the amazing support behind it!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Already Happy With Service & Features

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy douglaswebdesigns on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you Steve for the great work investigating my site and recommending updates that I had missed along with analyzing the site for Default Pages and junk that didn''t need to be there. I would highly recommend AIOSEO for service, right out of the gate. If you''re in the market for an SEO plugin - check AIOSEO. Looks like a game changer!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iberepaiva on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its good

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best SEO

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy almotzki on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great Plug-In! Does wat it should! That''s nearby perfection

    \n
    \n
    \n", "changelog": "

    New in Version 4.8.9

    \n
      \n
    • Updated: Improved user permission checks to display Site Audit action buttons.
    • \n
    • Updated: Added filter to disable AI Image Generator buttons in the block editor.
    • \n
    • Fixed: Conflict with Avada theme where post content was disappearing in backend editor.
    • \n
    • Fixed: Elementor Side Cart automatically opening even when the cart is empty on single product pages.
    • \n
    • Fixed: Category title missing from meta descriptions on new sites.
    • \n
    • Fixed: Redundant schema queries when database schema cache fails to update.
    • \n
    • Fixed: JS error when accessing string offsets in SEO revisions data processing.
    • \n
    • Fixed: Keyword Rank Tracker button broke in the Post editor if the Spectra or Starter Templates plugin was activated.
    • \n
    • Fixed: Homepage meta description character counter breaks when the site is set as an Organization.
    • \n
    • Fixed: New feature popups rendering outside the viewport on smaller screens.
    • \n
    \n

    New in Version 4.8.8

    \n
      \n
    • New: AI Assistant Block – Generate any type of content right inside the post editor: blog articles, summaries, comparison tables, and more. Whatever you need, the AI Assistant block makes it happen.
    • \n
    • New: AI Image Generator – Instantly create eye-catching visuals for your posts and use them anywhere—from featured images to inline content. You can even edit existing images to give them a unique twist.
    • \n
    • New: LLMs.txt Improvements – The new llms-full.txt file makes it easy for AI engines to index your site without overloading your server. We’ve also added post-to-Markdown conversion and new settings to control exactly what content gets included.
    • \n
    • Updated: All existing AI Content features have been made compatible with all our supported page builders. You can now auto-generate SEO titles, meta descriptions, FAQs, keypoints and social posts directly inside Elementor, Divi, SeedProd, Avada, WPBakery, SiteOrigin and Thrive Architect!
    • \n
    • Updated: The llms.txt file is now generated as a static file, removing the need for rewrite rules (e.g. on WP Engine).
    • \n
    • Updated: Moved llms.txt under Sitemaps menu.
    • \n
    • Fixed: Site Audit sometimes not showing results when all content types are included.
    • \n
    • Fixed: PHP error when Site Audit cannot scan post due to uninstantiated social class.
    • \n
    • Fixed: PHP error when dashboard widget failed to fetch RSS news feed.
    • \n
    \n

    New in Version 4.8.7.2

    \n
      \n
    • Updated: Added additional hardening to REST API routes.
    • \n
    \n

    New in Version 4.8.7.1

    \n
      \n
    • Fixed: WooCommerce products being automatically added to the cart.
    • \n
    \n

    New in Version 4.8.7

    \n
      \n
    • Updated: Hardened API routes to prevent unauthorized access.
    • \n
    • Updated: Added support for tracking breadcrumb setting changes in SEO Revisions.
    • \n
    • Updated: Added support for WooCommerce GTIN field to Product schema.
    • \n
    • Updated: Added support for .avif images to Image Sitemap and Image SEO addon.
    • \n
    • Updated: Review limit for Product schema can now be modified via a new filter hook.
    • \n
    • Updated: Use site URL instead of home URL for llms.txt to handle WP installs in subdirectories.
    • \n
    • Updated: Remove all user meta when AIOSEO is uninstalled.
    • \n
    • Updated: Improved performance of Cornerstone Content filtering.
    • \n
    • Fixed: Product shipping details schema clearing cart content in rare case where logged-in user adds a product to the cart and then edits a product in the admin panel.
    • \n
    • Fixed: ProfilePage schema sometimes invalid due to incorrect author URL.
    • \n
    • Fixed: Hide AIOSEO custom link fields inside the Edit Link modal in WPBakery visual builder to prevent plugin conflict.
    • \n
    • Fixed: AIOSEO Settings not successfully saving before post is published in WPBakery visual builder.
    • \n
    • Fixed: The SEO title and description were not persisting if the post content is too large.
    • \n
    • Fixed: Theme conflict with Neve where the EDD Checkout block does not show if Run Shortcodes is enabled.
    • \n
    • Fixed: Breadcrumb block not updating when changing the post title.
    • \n
    • Fixed: If WooCommerce brand is selected as primary category, it is now correctly used in the URL.
    • \n
    • Fixed: Headline Analyzer layout breaks when entering very long headlines.
    • \n
    \n

    New in Version 4.8.6.1

    \n
      \n
    • Updated: Prevent potential plugin conflicts due to the loading of dependencies multiple times.
    • \n
    • Updated: Local SEO render options for Opening Hours are now hidden when feature is disabled.
    • \n
    • Fixed: Loading spinner for SEO Revisions in sidebar menu not aligned.
    • \n
    \n

    New in Version 4.8.6

    \n
      \n
    • New: Site Audit – Get a detailed report of SEO issues for all posts and terms on your site, discover why these issues are important and how you can fix them. 🔨
    • \n
    • Fixed: Multisite subsite requests to Search Statistics server sometimes fail due to missing license.
    • \n
    • Fixed: Rare PHP error when breadcrumbs cannot be determined for non-standard pages.
    • \n
    \n

    New in Version 4.8.5

    \n
      \n
    • Updated: Author SEO (E-E-A-T) addon and Writing Assistant data are now fully removed when uninstalling the plugin.
    • \n
    • Updated: Product Schema now favours WooCommerce brand field over its own custom field.
    • \n
    • Updated: PHP version notices are now only shown to Administrators.
    • \n
    • Fixed: Breadcrumbs taxonomy preview now correctly refreshes when user toggles between using the default settings
    • \n
    • Fixed: WooCommerce Brand smart tag not correctly converted to expected value in previews.
    • \n
    • Fixed: AIOSEO Details column now correctly reloads after quick-editing a post.
    • \n
    • Fixed: Image URLs are no longer forcefully converted to lowercase in the Image Sitemap.
    • \n
    • Fixed: Focus Keyword now saves correctly again for Divi built posts.
    • \n
    • Fixed: Image SEO no longer breaks Divi built posts in rare cases.
    • \n
    • Fixed: Multisite subsites no longer incorrectly inherit the “Block AI Crawlers” and “Block Crawling of Internal Site Search URLs” setting values from the main site in the network.
    • \n
    • Fixed: Notifications no longer contain encoded HTML entities
    • \n
    • Fixed: Default options for new redirects not localized.
    • \n
    • Fixed: PHP error in rare cases when breadcrumb link is a WP_Error.
    • \n
    • Fixed: PHP error due to plugin conflict with MasterStudy LMS.
    • \n
    \n

    See our changelog on aioseo.com for previous releases.

    \n", "description": "

    AIOSEO – The Best WordPress SEO Plugin & Toolkit

    \n

    All in One SEO is the original WordPress SEO plugin started in 2007. Today, over 3 million website owners and SEO experts use AIOSEO for higher SEO rankings.

    \n

    Our users consistently rate AIOSEO as the most comprehensive WordPress SEO plugin and marketing toolkit. It’s the fastest way to optimize WordPress SEO settings, add schema markup, create XML sitemap, add local SEO, track SEO keyword rankings, automate internal linking, perform SEO audits, add Author SEO (EEAT), monitor SEO revisions, connect Google search console, and basically everything a SEO Pro would use to rank higher in search engines.

    \n

    We have AI SEO features that help you optimize your posts for SEO by automatically generating SEO titles, meta descriptions, FAQs, key points, social media posts, and more.

    \n
    \n

    AIOSEO Pro
    \n This is the lite version of the All in One WordPress SEO Pro plugin that comes with all the powerful SEO features you will ever need to rank higher in search engines including smart SEO schema markup, advanced SEO modules, powerful SEO sitemap suite, local SEO module, SEO keyword ranking tracking, automatic internal linking, WooCommerce SEO, and tons more. Click here to purchase the best premium WordPress SEO plugin now!

    \n
    \n

    Here’s why smart business owners, SEO experts, marketers, and developers love AIOSEO, and you will too!

    \n\n

    What Makes AIOSEO Better than Other WordPress SEO Plugins

    \n

    AIOSEO is leading the innovation in WordPress SEO space, and our SEO features will give you a competitive advantage.

    \n
      \n
    • \n

      Easy SEO Setup Wizard
      \nOur SEO setup wizard optimizes your website’s SEO settings based on your unique industry needs in less than 5 minutes.

      \n
    • \n
    • \n

      Smart Schema Markup (aka Rich Snippets)
      \nGet better click through rate (CTR) and Google rich featured snippets using advanced SEO schema markups like FAQ schema, product schema, recipe schema markup, and dozens more using our custom Schema Generator.

      \n
    • \n
    • \n

      AI Content
      \nCreate anything you need, such as blog articles and tables, with our AI Assistant block. Generate stunning visuals instantly with the built-in AI Image Generator. Save time by automatically generating SEO titles, meta descriptions, FAQs, key points, social media posts, and more with our AI Content Generator.

      \n
    • \n
    • \n

      Unlimited SEO Keywords
      \nOptimize for unlimited SEO keywords using our SEO content analyzer. Our TruSEO score gives you detailed content & readability analysis, so you can get higher SEO rankings.

      \n
    • \n
    • \n

      Google Keyword Rank Tracking
      \nEasily track how your website is ranking for different keywords in Google from your WordPress dashboard.

      \n
    • \n
    • \n

      Automatic Link Assistant
      \nAutomate internal links between your pages using our smart internal linking algorithm that will help improve on-page SEO.

      \n
    • \n
    • \n

      Local Business SEO
      \nImprove your local SEO presence with local business schema, support for multiple local store locations, business opening hours, Google Maps integration, contact info (business email, business phone, business address, etc), and more with our Local SEO module.

      \n
    • \n
    • \n

      Site Audit
      \nGet a detailed report of SEO issues for all posts and terms on your site, discover why these issues are important and how you can fix them.

      \n
    • \n
    • \n

      SEO Revisions
      \nKeep a historical record of SEO changes, monitor the impact of changes, and restore previous versions in one click.

      \n
    • \n
    • \n

      Content Decay Tracking
      \nNever lose traffic to competitors. Quickly detect which content is losing traffic / SEO rankings, so you can optimize it to regain your rankings with our Search Statistics module.

      \n
    • \n
    • \n

      Smart XML Sitemap
      \nAdvanced XML sitemaps to boost your SEO rankings (with easy setup inside Google Search Console). Also includes Video SEO XML sitemap, News SEO XML sitemap, RSS sitemap, and HTML sitemap.

      \n
    • \n
    • \n

      Smart SEO Redirects
      \nThe most powerful SEO Redirection manager for setting up advanced SEO redirects including 301 redirects, 302, 307, 410, 404 redirection, REGEX redirects, and more.

      \n
    • \n
    • \n

      404 Error Monitor
      \nAutomatic 404 error monitor helps you track and redirect 404 errors, so you don’t lose SEO rankings.

      \n
    • \n
    • \n

      Author SEO
      \nAdd custom author profile pages, author bio box, and relevant author schema to boost Google EEAT score to help with Google’s Helpful Content Update (HCU).

      \n
    • \n
    • \n

      LLMs.txt Generator
      \nGenerate an llms.txt file to help AI engines discover your site’s content more easily so your content can rank in AI search results.

      \n
    • \n
    • \n

      SEO Audit Checklist
      \nImprove your SEO ranking with our comprehensive SEO audit checklist.

      \n
    • \n
    • \n

      Knowledge Graph Support
      \nImprove your website’s search appearance with SEO Knowledge panel.

      \n
    • \n
    • \n

      Table of Contents
      \nAutomatically generate a table of content, customize headings, anchors, and you can also hide or reorder the headings.

      \n
    • \n
    \n

    Advanced SEO Plugin Features

    \n
      \n
    • \n

      User Access Control
      \nControl who can manage your SEO settings with our advanced SEO access control.

      \n
    • \n
    • \n

      WordPress REST API
      \nManage your SEO metadata with WordPress REST API. Great for headless WordPress installations.

      \n
    • \n
    • \n

      Advanced Robots Meta SEO Settings
      \nGranular controls for no index, no follow, no archive, no snippet, max snippet, max video, etc.

      \n
    • \n
    • \n

      RSS Content for SEO
      \nStop content scraping from hurting your SEO rankings.

      \n
    • \n
    • \n

      Full Site Redirects
      \nMerging websites or switching domains? Full site redirect makes it easy to switch domains without losing SEO rankings.

      \n
    • \n
    • \n

      Smart Meta Title & Description
      \nAutomatic SEO generation, dynamic SEO smart tags, include Emoji, add shortcodes, and more features to stand out in search results.

      \n
    • \n
    • \n

      Smart Breadcrumbs
      \nAdd Breadcrumb navigation to improve user experience and boost your SEO rankings. Comes with full SEO JSON+LD support.

      \n
    • \n
    • \n

      Automatic Image SEO
      \nHelps your images rank higher by autogenerating image title, clean SEO image filenames, and more.

      \n
    • \n
    • \n

      Advanced SEO Canonical URLs
      \nPrevent duplicate content in SEO with automatic canonical URLs.

      \n
    • \n
    • \n

      SEO Cleanup / Manual SEO Penalty Removal
      \nDomains Report feature in Link Assistant automatically removes all links for specific domains with just one click. Huge time saver when doing SEO cleanups.

      \n
    • \n
    • \n

      Link Opportunities Report
      \nSee better internal link opportunities with our smart algorithm. Easily add internal links with just a few clicks.

      \n
    • \n
    • \n

      Robots.txt Editor
      \nManage and customize SEO robots.txt files in WordPress.

      \n
    • \n
    • \n

      Crawl Quota Management
      \nCrawl Cleanup feature manages your search engine crawl quota and index your important content faster.

      \n
    • \n
    • \n

      Title and Nofollow for SEO
      \nEasily add title and nofollow to external links.

      \n
    • \n
    • \n

      Headline Analyzer
      \nAnalyze your page / posts headlines to improve CTR and SEO rankings.

      \n
    • \n
    • \n

      Competitor Site SEO Analysis
      \nUse competitor SEO analysis to outrank them with better SEO optimization.

      \n
    • \n
    • \n

      SEO Code Snippets
      \nIntegration with WPCode plugin for SEO code snippets to further customize every aspect of your SEO.

      \n
    • \n
    \n

    WordPress SEO Integrations

    \n
      \n
    • \n

      Google Search Console Integration
      \nConnect with Google webmaster tools and Google Search Console to see SEO insights (like content rankings, keyword rankings, page speed insights, post index status, etc) directly in your WordPress dashboard.

      \n
    • \n
    • \n

      WooCommerce SEO
      \nImproves your WooCommerce SEO rankings. Easily optimize WooCommerce product pages, product categories, and more for best eCommerce SEO results.

      \n
    • \n
    • \n

      Knowledge Panel SEO
      \nImprove website SEO appearance by adding social media profile links for Facebook, Twitter, Wikipedia, Instagram, LinkedIn, Yelp, YouTube, and more.

      \n
    • \n
    • \n

      Webmaster Tool Integrations
      \nConnect with all webmaster tools including Google Search Console, Bing SEO, Yandex SEO, Baidu SEO, Google Analytics, Pinterest site verification, and more.

      \n
    • \n
    • \n

      Social Media Integration
      \nFacebook SEO, Twitter SEO, and Pinterest SEO with better website previews.

      \n
    • \n
    • \n

      Google AMP SEO Integration
      \nImprove your mobile SEO rankings with Google AMP SEO.

      \n
    • \n
    • \n

      Semrush SEO integration
      \nSee additional SEO keywords with Semrush SEO integration.

      \n
    • \n
    • \n

      Microsoft Clarity Integration
      \nSee visitor interactions with heatmaps and session recordings.

      \n
    • \n
    • \n

      IndexNow Integration
      \nInstantly notify Bing and Yandex for faster SEO indexing.

      \n
    • \n
    • \n

      Elementor SEO
      \nBetter Elementor SEO for landing pages.

      \n
    • \n
    • \n

      Divi SEO
      \nBetter Divi SEO for landing pages.

      \n
    • \n
    • \n

      Avada SEO
      \nBetter Avada SEO for landing pages.

      \n
    • \n
    • \n

      WP Bakery SEO
      \nBetter WP Bakery SEO for landing pages.

      \n
    • \n
    • \n

      SeedProd SEO
      \nOptimize SeedProd landing pages for SEO.

      \n
    • \n
    • \n

      SiteOrigin SEO
      \nBetter SiteOrigin SEO for landing pages.

      \n
    • \n
    • \n

      Open Graph Support
      \nImprove SEO rankings with open graph meta data.

      \n
    • \n
    \n

    WordPress SEO Plugin Importer

    \n

    Not happy with your current SEO plugin? We make SEO migration easy with our point-and-click automated SEO data transfer tool. We currently support SEO migration from following SEO tools:

    \n
      \n
    • Yoast SEO Importer
    • \n
    • Yoast SEO Premium Importer
    • \n
    • RankMath SEO Importer
    • \n
    • SEOPress
    • \n
    \n

    We also support importing SEO redirects from the following plugins:

    \n
      \n
    • Redirection Plugin
    • \n
    • Simple 301 Redirects Importer
    • \n
    • Safe Redirect Manager
    • \n
    • 301 Redirects Importer
    • \n
    \n

    Aside from that, our SEO migration tool also helps you with:

    \n
      \n
    • Import / Export AIOSEO settings from one site to another
    • \n
    • Create SEO Settings Backup
    • \n
    • CSV Sitemap Import to Import additional pages to your XML Sitemaps
    • \n
    \n

    Now you can see why AIOSEO is often rated the best SEO plugin in WordPress.

    \n

    Give AIOSEO a try.

    \n

    Want to unlock more SEO features? Upgrade to AIOSEO Pro.

    \n

    Credits

    \n

    This plugin is created by Benjamin Rojas and Syed Balkhi.

    \n

    Branding Guideline

    \n

    AIOSEO® is a registered trademark of Semper Plugins LLC. When writing about the WordPress SEO plugin by AIOSEO, please use the following format.

    \n
      \n
    • AIOSEO (correct)
    • \n
    • All in One SEO (correct)
    • \n
    • AIO SEO (incorrect)
    • \n
    • All in 1 SEO (incorrect)
    • \n
    • AISEO (incorrect)
    • \n
    \n", "screenshots": "
    1. \"SEO

      SEO Content Analyzer (Gutenberg)

    2. \"SEO

      SEO Content Analyzer (Classic Editor)

    3. \"SEO

      SEO Setup Wizard

    4. \"SEO

      SEO Site Analysis

    5. \"Webmaster

      Webmaster Tools Connect

    6. \"Social

      Social Media Integrations

    7. \"Local

      Local SEO

    8. \"Sitemaps\"

      Sitemaps

    9. \"Search

      Search Appearance Settings

    10. \"Robots.txt

      Robots.txt Editor

    11. \"RSS

      RSS Content Control

    12. \"Headline

      Headline Analyzer

    13. \"Redirect

      Redirect Manager

    14. \"Link

      Link Assistant

    "}, "versions": {"4.7.8": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.7.8.zip", "4.7.9": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.7.9.zip", "4.8.0": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.2.zip", "4.8.5": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.5.zip", "4.8.6": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.6.zip", "4.8.8": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.8.zip", "4.8.9": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.9.zip", "trunk": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip", "4.7.9.1": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.7.9.1.zip", "4.8.1.1": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.1.1.zip", "4.8.3.1": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.3.1.zip", "4.8.3.2": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.3.2.zip", "4.8.4.1": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.4.1.zip", "4.8.6.1": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.6.1.zip", "4.8.7.2": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.7.2.zip"}, "downloaded": 190668334, "description": "

    AIOSEO – The Best WordPress SEO Plugin & Toolkit

    \n

    All in One SEO is the original WordPress SEO plugin started in 2007. Today, over 3 million website owners and SEO experts use AIOSEO for higher SEO rankings.

    \n

    Our users consistently rate AIOSEO as the most comprehensive WordPress SEO plugin and marketing toolkit. It’s the fastest way to optimize WordPress SEO settings, add schema markup, create XML sitemap, add local SEO, track SEO keyword rankings, automate internal linking, perform SEO audits, add Author SEO (EEAT), monitor SEO revisions, connect Google search console, and basically everything a SEO Pro would use to rank higher in search engines.

    \n

    We have AI SEO features that help you optimize your posts for SEO by automatically generating SEO titles, meta descriptions, FAQs, key points, social media posts, and more.

    \n
    \n

    AIOSEO Pro
    \n This is the lite version of the All in One WordPress SEO Pro plugin that comes with all the powerful SEO features you will ever need to rank higher in search engines including smart SEO schema markup, advanced SEO modules, powerful SEO sitemap suite, local SEO module, SEO keyword ranking tracking, automatic internal linking, WooCommerce SEO, and tons more. Click here to purchase the best premium WordPress SEO plugin now!

    \n
    \n

    Here’s why smart business owners, SEO experts, marketers, and developers love AIOSEO, and you will too!

    \n\n

    What Makes AIOSEO Better than Other WordPress SEO Plugins

    \n

    AIOSEO is leading the innovation in WordPress SEO space, and our SEO features will give you a competitive advantage.

    \n
      \n
    • \n

      Easy SEO Setup Wizard
      \nOur SEO setup wizard optimizes your website’s SEO settings based on your unique industry needs in less than 5 minutes.

      \n
    • \n
    • \n

      Smart Schema Markup (aka Rich Snippets)
      \nGet better click through rate (CTR) and Google rich featured snippets using advanced SEO schema markups like FAQ schema, product schema, recipe schema markup, and dozens more using our custom Schema Generator.

      \n
    • \n
    • \n

      AI Content
      \nCreate anything you need, such as blog articles and tables, with our AI Assistant block. Generate stunning visuals instantly with the built-in AI Image Generator. Save time by automatically generating SEO titles, meta descriptions, FAQs, key points, social media posts, and more with our AI Content Generator.

      \n
    • \n
    • \n

      Unlimited SEO Keywords
      \nOptimize for unlimited SEO keywords using our SEO content analyzer. Our TruSEO score gives you detailed content & readability analysis, so you can get higher SEO rankings.

      \n
    • \n
    • \n

      Google Keyword Rank Tracking
      \nEasily track how your website is ranking for different keywords in Google from your WordPress dashboard.

      \n
    • \n
    • \n

      Automatic Link Assistant
      \nAutomate internal links between your pages using our smart internal linking algorithm that will help improve on-page SEO.

      \n
    • \n
    • \n

      Local Business SEO
      \nImprove your local SEO presence with local business schema, support for multiple local store locations, business opening hours, Google Maps integration, contact info (business email, business phone, business address, etc), and more with our Local SEO module.

      \n
    • \n
    • \n

      Site Audit
      \nGet a detailed report of SEO issues for all posts and terms on your site, discover why these issues are important and how you can fix them.

      \n
    • \n
    • \n

      SEO Revisions
      \nKeep a historical record of SEO changes, monitor the impact of changes, and restore previous versions in one click.

      \n
    • \n
    • \n

      Content Decay Tracking
      \nNever lose traffic to competitors. Quickly detect which content is losing traffic / SEO rankings, so you can optimize it to regain your rankings with our Search Statistics module.

      \n
    • \n
    • \n

      Smart XML Sitemap
      \nAdvanced XML sitemaps to boost your SEO rankings (with easy setup inside Google Search Console). Also includes Video SEO XML sitemap, News SEO XML sitemap, RSS sitemap, and HTML sitemap.

      \n
    • \n
    • \n

      Smart SEO Redirects
      \nThe most powerful SEO Redirection manager for setting up advanced SEO redirects including 301 redirects, 302, 307, 410, 404 redirection, REGEX redirects, and more.

      \n
    • \n
    • \n

      404 Error Monitor
      \nAutomatic 404 error monitor helps you track and redirect 404 errors, so you don’t lose SEO rankings.

      \n
    • \n
    • \n

      Author SEO
      \nAdd custom author profile pages, author bio box, and relevant author schema to boost Google EEAT score to help with Google’s Helpful Content Update (HCU).

      \n
    • \n
    • \n

      LLMs.txt Generator
      \nGenerate an llms.txt file to help AI engines discover your site’s content more easily so your content can rank in AI search results.

      \n
    • \n
    • \n

      SEO Audit Checklist
      \nImprove your SEO ranking with our comprehensive SEO audit checklist.

      \n
    • \n
    • \n

      Knowledge Graph Support
      \nImprove your website’s search appearance with SEO Knowledge panel.

      \n
    • \n
    • \n

      Table of Contents
      \nAutomatically generate a table of content, customize headings, anchors, and you can also hide or reorder the headings.

      \n
    • \n
    \n

    Advanced SEO Plugin Features

    \n
      \n
    • \n

      User Access Control
      \nControl who can manage your SEO settings with our advanced SEO access control.

      \n
    • \n
    • \n

      WordPress REST API
      \nManage your SEO metadata with WordPress REST API. Great for headless WordPress installations.

      \n
    • \n
    • \n

      Advanced Robots Meta SEO Settings
      \nGranular controls for no index, no follow, no archive, no snippet, max snippet, max video, etc.

      \n
    • \n
    • \n

      RSS Content for SEO
      \nStop content scraping from hurting your SEO rankings.

      \n
    • \n
    • \n

      Full Site Redirects
      \nMerging websites or switching domains? Full site redirect makes it easy to switch domains without losing SEO rankings.

      \n
    • \n
    • \n

      Smart Meta Title & Description
      \nAutomatic SEO generation, dynamic SEO smart tags, include Emoji, add shortcodes, and more features to stand out in search results.

      \n
    • \n
    • \n

      Smart Breadcrumbs
      \nAdd Breadcrumb navigation to improve user experience and boost your SEO rankings. Comes with full SEO JSON+LD support.

      \n
    • \n
    • \n

      Automatic Image SEO
      \nHelps your images rank higher by autogenerating image title, clean SEO image filenames, and more.

      \n
    • \n
    • \n

      Advanced SEO Canonical URLs
      \nPrevent duplicate content in SEO with automatic canonical URLs.

      \n
    • \n
    • \n

      SEO Cleanup / Manual SEO Penalty Removal
      \nDomains Report feature in Link Assistant automatically removes all links for specific domains with just one click. Huge time saver when doing SEO cleanups.

      \n
    • \n
    • \n

      Link Opportunities Report
      \nSee better internal link opportunities with our smart algorithm. Easily add internal links with just a few clicks.

      \n
    • \n
    • \n

      Robots.txt Editor
      \nManage and customize SEO robots.txt files in WordPress.

      \n
    • \n
    • \n

      Crawl Quota Management
      \nCrawl Cleanup feature manages your search engine crawl quota and index your important content faster.

      \n
    • \n
    • \n

      Title and Nofollow for SEO
      \nEasily add title and nofollow to external links.

      \n
    • \n
    • \n

      Headline Analyzer
      \nAnalyze your page / posts headlines to improve CTR and SEO rankings.

      \n
    • \n
    • \n

      Competitor Site SEO Analysis
      \nUse competitor SEO analysis to outrank them with better SEO optimization.

      \n
    • \n
    • \n

      SEO Code Snippets
      \nIntegration with WPCode plugin for SEO code snippets to further customize every aspect of your SEO.

      \n
    • \n
    \n

    WordPress SEO Integrations

    \n
      \n
    • \n

      Google Search Console Integration
      \nConnect with Google webmaster tools and Google Search Console to see SEO insights (like content rankings, keyword rankings, page speed insights, post index status, etc) directly in your WordPress dashboard.

      \n
    • \n
    • \n

      WooCommerce SEO
      \nImproves your WooCommerce SEO rankings. Easily optimize WooCommerce product pages, product categories, and more for best eCommerce SEO results.

      \n
    • \n
    • \n

      Knowledge Panel SEO
      \nImprove website SEO appearance by adding social media profile links for Facebook, Twitter, Wikipedia, Instagram, LinkedIn, Yelp, YouTube, and more.

      \n
    • \n
    • \n

      Webmaster Tool Integrations
      \nConnect with all webmaster tools including Google Search Console, Bing SEO, Yandex SEO, Baidu SEO, Google Analytics, Pinterest site verification, and more.

      \n
    • \n
    • \n

      Social Media Integration
      \nFacebook SEO, Twitter SEO, and Pinterest SEO with better website previews.

      \n
    • \n
    • \n

      Google AMP SEO Integration
      \nImprove your mobile SEO rankings with Google AMP SEO.

      \n
    • \n
    • \n

      Semrush SEO integration
      \nSee additional SEO keywords with Semrush SEO integration.

      \n
    • \n
    • \n

      Microsoft Clarity Integration
      \nSee visitor interactions with heatmaps and session recordings.

      \n
    • \n
    • \n

      IndexNow Integration
      \nInstantly notify Bing and Yandex for faster SEO indexing.

      \n
    • \n
    • \n

      Elementor SEO
      \nBetter Elementor SEO for landing pages.

      \n
    • \n
    • \n

      Divi SEO
      \nBetter Divi SEO for landing pages.

      \n
    • \n
    • \n

      Avada SEO
      \nBetter Avada SEO for landing pages.

      \n
    • \n
    • \n

      WP Bakery SEO
      \nBetter WP Bakery SEO for landing pages.

      \n
    • \n
    • \n

      SeedProd SEO
      \nOptimize SeedProd landing pages for SEO.

      \n
    • \n
    • \n

      SiteOrigin SEO
      \nBetter SiteOrigin SEO for landing pages.

      \n
    • \n
    • \n

      Open Graph Support
      \nImprove SEO rankings with open graph meta data.

      \n
    • \n
    \n

    WordPress SEO Plugin Importer

    \n

    Not happy with your current SEO plugin? We make SEO migration easy with our point-and-click automated SEO data transfer tool. We currently support SEO migration from following SEO tools:

    \n
      \n
    • Yoast SEO Importer
    • \n
    • Yoast SEO Premium Importer
    • \n
    • RankMath SEO Importer
    • \n
    • SEOPress
    • \n
    \n

    We also support importing SEO redirects from the following plugins:

    \n
      \n
    • Redirection Plugin
    • \n
    • Simple 301 Redirects Importer
    • \n
    • Safe Redirect Manager
    • \n
    • 301 Redirects Importer
    • \n
    \n

    Aside from that, our SEO migration tool also helps you with:

    \n
      \n
    • Import / Export AIOSEO settings from one site to another
    • \n
    • Create SEO Settings Backup
    • \n
    • CSV Sitemap Import to Import additional pages to your XML Sitemaps
    • \n
    \n

    Now you can see why AIOSEO is often rated the best SEO plugin in WordPress.

    \n

    Give AIOSEO a try.

    \n

    Want to unlock more SEO features? Upgrade to AIOSEO Pro.

    \n

    Credits

    \n

    This plugin is created by Benjamin Rojas and Syed Balkhi.

    \n

    Branding Guideline

    \n

    AIOSEO® is a registered trademark of Semper Plugins LLC. When writing about the WordPress SEO plugin by AIOSEO, please use the following format.

    \n
      \n
    • AIOSEO (correct)
    • \n
    • All in One SEO (correct)
    • \n
    • AIO SEO (incorrect)
    • \n
    • All in 1 SEO (incorrect)
    • \n
    • AISEO (incorrect)
    • \n
    \n", "donate_link": "", "num_ratings": 4900, "screenshots": {"1": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-1.gif?rev=2443290", "caption": "SEO Content Analyzer (Gutenberg)"}, "2": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-2.gif?rev=2443290", "caption": "SEO Content Analyzer (Classic Editor)"}, "3": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-3.gif?rev=2443290", "caption": "SEO Setup Wizard"}, "4": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-4.gif?rev=2443290", "caption": "SEO Site Analysis"}, "5": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-5.gif?rev=2443290", "caption": "Webmaster Tools Connect"}, "6": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-6.gif?rev=2443290", "caption": "Social Media Integrations"}, "7": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-7.gif?rev=2443290", "caption": "Local SEO"}, "8": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-8.gif?rev=2443290", "caption": "Sitemaps"}, "9": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-9.gif?rev=2443290", "caption": "Search Appearance Settings"}, "10": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-10.gif?rev=2443290", "caption": "Robots.txt Editor"}, "11": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-11.gif?rev=2443290", "caption": "RSS Content Control"}, "12": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-12.gif?rev=2674999", "caption": "Headline Analyzer"}, "13": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-13.gif?rev=2674999", "caption": "Redirect Manager"}, "14": {"src": "https://ps.w.org/all-in-one-seo-pack/assets/screenshot-14.gif?rev=2674999", "caption": "Link Assistant"}}, "support_url": "https://wordpress.org/support/plugin/all-in-one-seo-pack/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "aioseo": {"avatar": "https://secure.gravatar.com/avatar/bb7e6c613f366964829b9b7a9e31a2393322861d213e489c2e0f448a3d188d80?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aioseo/", "display_name": "AIOSEO Plugin Team"}, "benjaminprojas": {"avatar": "https://secure.gravatar.com/avatar/ef2cd884c39923dfa9b18562739659440de5f44176ca491e8ffd997cd0f3da3f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/benjaminprojas/", "display_name": "benjaminprojas"}}, "last_updated": "2025-10-24 3:37pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.9.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": {"4.8.9": "

    This update adds major improvements and bug fixes.

    "}, "active_installs": 3000000, "aspiresync_meta": {"id": "019a30bf-eef2-708d-99b4-67c268eed31e", "name": "All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic", "slug": "all-in-one-seo-pack", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761320220, "version": "4.8.9"}, "support_threads": 35, "requires_plugins": [], "short_description": "AIOSEO is the most powerful WordPress SEO plugin. Improve SEO rankings and traffic with comprehensive SEO tools and smart AI SEO optimizations!", "author_block_count": 1, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 35}'); -INSERT INTO public.plugins VALUES ('019a30c1-63bc-7296-920a-e7de4e08fa5d', 'all-in-one-wp-migration', 'All-in-One WP Migration and Backup', 'Trusted by 60M+ sites: The gold standard for WordPress migrations, backups, and site transfers since 2013.', '

    The Most Trusted WordPress Migration & Backup Solution Since 2013

    -

    All-in-One WP Migration is the gold standard for WordPress site migration, used by over 60 million websites worldwide – from small blogs to Fortune 500 companies and government agencies. Our plugin offers enterprise-grade reliability with beginner-friendly simplicity.

    -

    Why Choose All-in-One WP Migration?

    -
      -
    • Effortless Migration: Export your entire site with a single click – including database, media, themes, and plugins
    • -
    • Zero Downtime: Complete your migration with no service interruptions
    • -
    • Universal Compatibility: Works across all hosting providers, from budget shared hosting to high-end dedicated servers
    • -
    • Technical Excellence: Engineered for reliability with memory-efficient processing (512KB chunks), ideal for resource-limited environments
    • -
    • No Technical Skills Required: Intuitive interface designed for users of all skill levels
    • -
    • Cross-Database Support: Seamlessly move between MySQL, MariaDB, and SQLite databases
    • -
    • Secure & Reliable: Trusted by Boeing, NASA, Harvard, Stanford, Automattic, and government agencies worldwide
    • -
    -

    How It Works – Simple as 1-2-3:

    -
      -
    1. Install the plugin on your source and destination sites
    2. -
    3. Export your site to a .wpress file with one click
    4. -
    5. Import using our drag-and-drop importer on your destination site
    6. -
    -

    For Developers & Power Users:

    -
      -
    • Advanced Find & Replace: Control exactly what changes during migration
    • -
    • Selective Content Migration: Include/exclude specific content types
    • -
    • PHP 5.3-8.4 Compatibility: Works across virtually all hosting environments
    • -
    • Custom WPress Format: Our optimized archive format ensures data integrity
    • -
    • Hook System: Extensive API for custom integration and workflows
    • -
    • Command-Line Support: Automate migrations via WP-CLI
    • -
    -

    Premium Extensions:

    -

    Enhance your migration workflow with our premium extensions for:

    -
      -
    • Unlimited Site Size: Migrate sites of any size
    • -
    • Cloud Storage Integration: Direct migration to/from Dropbox, Google Drive, OneDrive, and more
    • -
    • Multisite Support: Migrate complex WordPress networks
    • -
    • Scheduled Backups: Automated, recurring backups
    • -
    • Database Filtering: Exclude specific tables or data
    • -
    -

    Features Spotlight:

    -
      -
    • WCAG 2.1 AA Level accessibility compliance
    • -
    • Mobile-responsive interface
    • -
    • Browse WPRESS files online or extract locally
    • -
    • Automatic URL and path replacement
    • -
    • WordPress Playground integration for SQLite/MySQL migration
    • -
    • Regular bi-weekly updates ensuring compatibility with the latest WordPress versions
    • -
    • Available in 50+ languages including Japanese
    • -
    -

    Trusted by the Government and Big Corporations:

    -

    Many enterprise customers, government organizations, and universities use, love, and trust All-in-One WP Migration. Here are some: Boeing, NASA, VW, IBM, Harvard University, Stanford University, Lego, P&G, Automattic, State of California, State of Hawaii.
    -This broad adoption and usage of All-in-One WP Migration demonstrate how safe, reliable and adaptable the plugin is for just about any website migration need.

    -

    Update Frequency:
    -Our team is dedicated to keeping All-in-One WP Migration up-to-date and secure. We release updates every two weeks or at least once a month, ensuring compatibility with the latest WordPress versions, including beta releases. Our proactive testing and feedback to the WordPress core team help in preemptively addressing any potential issues, providing our users with a reliable and forward-compatible migration and backup solution.

    -

    Full Compatibility and Support:

    -

    All-in-One WP Migration has been extensively tested and confirmed to be compatible with most WordPress plugins and themes.
    -This means you don’t get to experience cross-plugin compatibility issues that can slow down, bug, or break down your WordPress website when you install and use All-in-One WP Migration.
    -As a matter of fact, All-in-One WP Migration has partnered with multiple theme/plugin vendors to distribute their themes/plugins with us as a single, easy to use, easy to install package.
    -These vendors trust us and our plugin to provide their customers with reliable product delivery, support, migrations, and backups.

    -

    Cloud Storage Supported:

    -

    All-in-One WP Migration supports and syncs seamlessly with top cloud storage services.
    -The plugin comes preinstalled on all Bitnami WordPress sites running on AWS, Google Compute Cloud, and Microsoft Azure.

    -

    Case Studies:

    -
      -
    • Small Business Growth: A small online retailer was able to seamlessly migrate to a more robust hosting solution to handle increasing traffic during peak shopping seasons, ensuring smooth customer experiences without downtime.
    • -
    • Educational Institutions: A prominent university utilized All-in-One WP Migration to consolidate multiple departmental sites into a single, unified WordPress network, simplifying management and enhancing site security.
    • -
    • Government Reliability: Following a directive to improve digital accessibility, a government agency used our plugin to migrate their content to a new, compliant platform without impacting public access to critical information.
    • -
    -

    Contact us

    - - - -

    Privacy Policy

    -

    All-in-One WP Migration is designed to fully respect and protect the personal information of its users. It asks for your consent to collect the user’s email address when filling the plugin’s contact form.
    -All-in-One WP Migration is in full compliance with General Data Protection Regulation (GDPR).
    -See our GDPR Compliant Privacy Policy here.

    -', '7.100', 'ServMask', '3.3', '5.3', '6.8.3', 'https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.100.zip', '2014-01-07 00:00:00+00', '2025-10-05 07:49:00+00', 'https://profiles.wordpress.org/servmask/', 90, 7583, 20, 14, 5000000, 166053532, 'https://servmask.com/', NULL, 'commercial', 'https://servmask.com/contact-support', 'https://wordpress.org/support/plugin/all-in-one-wp-migration/', 'https://wordpress.org/plugins/all-in-one-wp-migration/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "All-in-One WP Migration and Backup", "slug": "all-in-one-wp-migration", "tags": {"copy": "copy", "move": "move", "clone": "clone", "backup": "backup", "transfer": "transfer"}, "added": "2014-01-07", "icons": {"1x": "https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334", "2x": "https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334"}, "author": "ServMask", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=3264554", "high": "https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=3264554"}, "ratings": {"1": 827, "2": 91, "3": 106, "4": 213, "5": 6346}, "version": "7.100", "homepage": "https://servmask.com/", "requires": "3.3", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Lightweight & Reliable

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cyanweb on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Top of my must have pro wp admin plugins. Simply awesome!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Effortless WordPress Migration Tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy JOYNAL ABED (joynall) on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been using All-in-One WP Migration and Backup for several projects. The interface is clean and easy to use, even large sites move without errors or complex configurations.

    Highly recommended

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    perfet

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gomissimon on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    easy to use

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Doesn't Work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy brightway2025 on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great idea to easily move a website from one host to another. Unfortunately it doesn''t work. I''m an experienced tech and worked with my server tech support and the plugin support and we couldn''t get the upload to work. Turned every knob and dial and no luck. I hate to leave a negative review but you''d be better off just zipping up the files and database and installing it manually on the new server.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The manager is very rude.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tahakalayci on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    money trap

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Tech Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy flyingjillio on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    I had an issue with the pro version, and I wrote to tech support, thinking they would get back to me in a few days, but they wrote back right away with a solution! The flexibility in the pro version is really worth it to be able to pick and choose what I want to export and move. It makes moving, updating, and migrating websites so easy!
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Ridiculous Free Limit – They Just Want You to Pay

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sinen on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The free version of this plugin has a 512 MB limit, making it nearly impossible to back up medium or large sites without paying. Even an almost empty WordPress site can reach this size, so a full backup isn’t possible for free. Very frustrating compared to other free plugins that have no such limits.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Okay, but requires extras

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy abaantravis on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Requires purchasing extras, else is fairly unusable

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I think this is a great plugin. It really helped me a lot.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kpapa on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I think this is a great plugin. It''s been especially helpful when creating backup sites in local environments like MAMP or XAMPP.
    However, recently I''ve encountered an issue where the import process never completes. It just keeps loading forever.
    Downgrading both the plugin version and the WordPress core version doesn''t solve the problem.
    Interestingly, it works fine in environments other than my local environment (production), so overall I think it''s a very good plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Developers seem to be just testing what they can get away with taking away.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Endlyss (Akel-Res) on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin had been a staple for me since about 2018/2019. Never had any issues, and was super simple to use.

    But this year, especially, they''ve been clamping down on any free features... Even to the point that idk if it''s certain server environments or what, but it seems prevalent enough by other''s experiences that I can tell I''m not the only one.

    The plugin won''t even import anymore on a lot of my wordpress instances, unless I install the premium version -- even if the site size is within my server''s threshold. They claimed that they fixed this a while back, but it''s still happening. 128MB server limit on every setting possible...and it says that my 64MB site is too big and I have to buy the premium?

    This plugin used to be great -- again, it was a staple for me.
    Now I guess its cycle has ended in my toolkit.

    \n
    \n
    \n", "changelog": "

    7.100

    \n

    Improved

    \n
      \n
    • Upgraded PHP and JavaScript dependencies to their latest versions
    • \n
    \n

    7.99

    \n

    Added

    \n
      \n
    • Gzip compression support for file operations to improve backup file handling
    • \n
    \n

    Fixed

    \n
      \n
    • jQuery deprecated bind() method replaced with on() for better compatibility
    • \n
    • File upload security by removing stripslashes_deep on $_FILES input
    • \n
    \n

    Improved

    \n
      \n
    • Stream operations replaced with ai1wm_write() for enhanced reliability
    • \n
    • Update javascript dependencies to use latest versions
    • \n
    \n

    7.98

    \n

    Added

    \n
      \n
    • WP_IMPORTING constant for better hosting providers compatibility
    • \n
    \n

    Fixed

    \n
      \n
    • Stored Cross-Site Scripting vulnerability in file upload (CVE-2025-8490). Thank you WordFence and Jack Pas for reporting this. What you need to know.
    • \n
    • File upload exceptions handling for better error reporting
    • \n
    \n

    Improved

    \n
      \n
    • PHP 8 compatibility issues in MySQLi database handler
    • \n
    • File uploader refactored for enhanced security and reliability
    • \n
    \n

    7.97

    \n

    Added

    \n
      \n
    • SQLite support in AUTO_INCREMENT check
    • \n
    \n

    Fixed

    \n
      \n
    • Database replacement for serialized values to handle edge cases with string length validation
    • \n
    \n

    7.96

    \n

    Added

    \n
      \n
    • Admin notice warning when AUTO_INCREMENT is missing on wp_options table
    • \n
    \n

    7.95

    \n

    Added

    \n
      \n
    • New action hook ai1wm_status_export_init for developers on export initialization
    • \n
    \n

    Fixed

    \n
      \n
    • Theme export progress display showing incorrect percentage
    • \n
    • Uninstall.php script functionality
    • \n
    • Export and import button ordering
    • \n
    • Dropdown height styling issues
    • \n
    \n

    7.94

    \n

    Added

    \n
      \n
    • Refresh Elementor plugin cache on import
    • \n
    \n

    7.93

    \n

    Fixed

    \n
      \n
    • Compatibility issue with PHP 7 and PHP 5 due to trailing comma in style registration
    • \n
    \n

    7.92

    \n

    Improved

    \n
      \n
    • Passed Plugin Check Plugin (PCP) validation
    • \n
    • Archive name generation
    • \n
    \n

    7.91

    \n

    Added

    \n
      \n
    • CiviCRM for WordPress support
    • \n
    \n

    7.90

    \n

    Added

    \n
      \n
    • Introduced a constant to disable MySQL late row lookups for enhanced database performance
    • \n
    \n

    Improved

    \n
      \n
    • Enhanced SQLite database integration for improved stability and efficiency
    • \n
    • Strengthened serialization replacement mechanism to address an unauthenticated PHP Object Injection vulnerability (CVE-2024-10942). Special thanks to Webbernaut for responsibly disclosing this issue
    • \n
    • Preserved the wp_rocket_settings option during exports for improved user experience
    • \n
    \n

    Fixed

    \n
      \n
    • Resolved PHP 8.4 deprecation warnings
    • \n
    \n

    7.89

    \n

    Improved

    \n
      \n
    • Upgraded to Node.js 22 for better performance and security
    • \n
    • Updated all plugin dependencies to keep things running smoothly and securely
    • \n
    \n

    7.88

    \n

    Fixed

    \n
      \n
    • Fixed an issue where the upload progress was stuck at 100%
    • \n
    • Fixed an issue where the upload could not be cancelled before it was completed
    • \n
    \n

    Improved

    \n
      \n
    • Improved user-facing messages to be friendlier, direct, consistent, and more informative.
    • \n
    \n

    7.87

    \n

    Fixed

    \n
      \n
    • Resolved a vulnerability where error logs were publicly accessible with a known name by appending random affixes to error log filenames, making them unguessable. Error logs are now automatically deleted daily and during plugin updates. Special thanks to villu164 for responsibly disclosing this issue.
    • \n
    • Resolved a vulnerability where an administrator user could inject arbitrary PHP code through specific inputs. This vulnerability requires administrator-level access to exploit, ensuring that unauthorized users cannot perform this action. Special thanks to Ryan Kozak for responsibly disclosing this issue.
    • \n
    \n

    7.86

    \n

    Fixed

    \n
      \n
    • Resolved an issue with PHP 8.4 compatibility and restoring backup files via WP-CLI
    • \n
    \n

    7.85

    \n

    Added

    \n
      \n
    • PHP 8.4 compatibility
    • \n
    \n

    7.84

    \n

    Added

    \n
      \n
    • New hooks during the export and import processes to allow for custom actions and integrations
    • \n
    \n

    7.83

    \n

    Fixed

    \n
      \n
    • Resolved an issue where downloading backup files was failing on WordPress Playground environments
    • \n
    \n

    7.82

    \n

    Added

    \n
      \n
    • SQLite support
    • \n
    • WordPress Playground support
    • \n
    \n

    7.81

    \n

    Added

    \n
      \n
    • Reset Hub Page: Introducing a new reset hub page, providing users with powerful reset tools for efficient site management. This feature allows for easier resets of WordPress environments, facilitating smoother development and testing workflows.
    • \n
    \n

    Improved

    \n
      \n
    • Better W3TC Support
    • \n
    • PHP Compatibility Checks: Display a warning notification, when you move/restore your site to a different PHP version.
    • \n
    \n

    7.80

    \n

    Added

    \n
      \n
    • Support for update-services plugin
    • \n
    • Domain name conversion to dashes from dots in the backup name for improved hosting providers compatibility
    • \n
    \n

    Improved

    \n
      \n
    • Better support for Multisite to Standalone and Standalone to Multisite exports and imports, streamlining the migration process
    • \n
    \n

    7.79

    \n

    Added

    \n
      \n
    • Support for WordPress v6.4
    • \n
    \n

    7.78

    \n

    Added

    \n
      \n
    • Implemented a new Schedules page within the plugin, displaying various advanced features exclusive to premium extensions
    • \n
    \n

    7.77

    \n

    Added

    \n
      \n
    • Tested the new version of WordPress 6.3
    • \n
    \n

    7.76

    \n

    Fixed

    \n
      \n
    • Removed the [beta] label from advanced settings
    • \n
    \n", "description": "

    The Most Trusted WordPress Migration & Backup Solution Since 2013

    \n

    All-in-One WP Migration is the gold standard for WordPress site migration, used by over 60 million websites worldwide – from small blogs to Fortune 500 companies and government agencies. Our plugin offers enterprise-grade reliability with beginner-friendly simplicity.

    \n

    Why Choose All-in-One WP Migration?

    \n
      \n
    • Effortless Migration: Export your entire site with a single click – including database, media, themes, and plugins
    • \n
    • Zero Downtime: Complete your migration with no service interruptions
    • \n
    • Universal Compatibility: Works across all hosting providers, from budget shared hosting to high-end dedicated servers
    • \n
    • Technical Excellence: Engineered for reliability with memory-efficient processing (512KB chunks), ideal for resource-limited environments
    • \n
    • No Technical Skills Required: Intuitive interface designed for users of all skill levels
    • \n
    • Cross-Database Support: Seamlessly move between MySQL, MariaDB, and SQLite databases
    • \n
    • Secure & Reliable: Trusted by Boeing, NASA, Harvard, Stanford, Automattic, and government agencies worldwide
    • \n
    \n

    How It Works – Simple as 1-2-3:

    \n
      \n
    1. Install the plugin on your source and destination sites
    2. \n
    3. Export your site to a .wpress file with one click
    4. \n
    5. Import using our drag-and-drop importer on your destination site
    6. \n
    \n

    For Developers & Power Users:

    \n
      \n
    • Advanced Find & Replace: Control exactly what changes during migration
    • \n
    • Selective Content Migration: Include/exclude specific content types
    • \n
    • PHP 5.3-8.4 Compatibility: Works across virtually all hosting environments
    • \n
    • Custom WPress Format: Our optimized archive format ensures data integrity
    • \n
    • Hook System: Extensive API for custom integration and workflows
    • \n
    • Command-Line Support: Automate migrations via WP-CLI
    • \n
    \n

    Premium Extensions:

    \n

    Enhance your migration workflow with our premium extensions for:

    \n
      \n
    • Unlimited Site Size: Migrate sites of any size
    • \n
    • Cloud Storage Integration: Direct migration to/from Dropbox, Google Drive, OneDrive, and more
    • \n
    • Multisite Support: Migrate complex WordPress networks
    • \n
    • Scheduled Backups: Automated, recurring backups
    • \n
    • Database Filtering: Exclude specific tables or data
    • \n
    \n

    Features Spotlight:

    \n
      \n
    • WCAG 2.1 AA Level accessibility compliance
    • \n
    • Mobile-responsive interface
    • \n
    • Browse WPRESS files online or extract locally
    • \n
    • Automatic URL and path replacement
    • \n
    • WordPress Playground integration for SQLite/MySQL migration
    • \n
    • Regular bi-weekly updates ensuring compatibility with the latest WordPress versions
    • \n
    • Available in 50+ languages including Japanese
    • \n
    \n

    Trusted by the Government and Big Corporations:

    \n

    Many enterprise customers, government organizations, and universities use, love, and trust All-in-One WP Migration. Here are some: Boeing, NASA, VW, IBM, Harvard University, Stanford University, Lego, P&G, Automattic, State of California, State of Hawaii.
    \nThis broad adoption and usage of All-in-One WP Migration demonstrate how safe, reliable and adaptable the plugin is for just about any website migration need.

    \n

    Update Frequency:
    \nOur team is dedicated to keeping All-in-One WP Migration up-to-date and secure. We release updates every two weeks or at least once a month, ensuring compatibility with the latest WordPress versions, including beta releases. Our proactive testing and feedback to the WordPress core team help in preemptively addressing any potential issues, providing our users with a reliable and forward-compatible migration and backup solution.

    \n

    Full Compatibility and Support:

    \n

    All-in-One WP Migration has been extensively tested and confirmed to be compatible with most WordPress plugins and themes.
    \nThis means you don’t get to experience cross-plugin compatibility issues that can slow down, bug, or break down your WordPress website when you install and use All-in-One WP Migration.
    \nAs a matter of fact, All-in-One WP Migration has partnered with multiple theme/plugin vendors to distribute their themes/plugins with us as a single, easy to use, easy to install package.
    \nThese vendors trust us and our plugin to provide their customers with reliable product delivery, support, migrations, and backups.

    \n

    Cloud Storage Supported:

    \n

    All-in-One WP Migration supports and syncs seamlessly with top cloud storage services.
    \nThe plugin comes preinstalled on all Bitnami WordPress sites running on AWS, Google Compute Cloud, and Microsoft Azure.

    \n

    Case Studies:

    \n
      \n
    • Small Business Growth: A small online retailer was able to seamlessly migrate to a more robust hosting solution to handle increasing traffic during peak shopping seasons, ensuring smooth customer experiences without downtime.
    • \n
    • Educational Institutions: A prominent university utilized All-in-One WP Migration to consolidate multiple departmental sites into a single, unified WordPress network, simplifying management and enhancing site security.
    • \n
    • Government Reliability: Following a directive to improve digital accessibility, a government agency used our plugin to migrate their content to a new, compliant platform without impacting public access to critical information.
    • \n
    \n

    Contact us

    \n\n\n\n

    Privacy Policy

    \n

    All-in-One WP Migration is designed to fully respect and protect the personal information of its users. It asks for your consent to collect the user’s email address when filling the plugin’s contact form.
    \nAll-in-One WP Migration is in full compliance with General Data Protection Regulation (GDPR).
    \nSee our GDPR Compliant Privacy Policy here.

    \n", "screenshots": "
    1. \"Mobile

      Mobile Export page

    2. \"Mobile

      Mobile Import page

    3. \"Plugin

      Plugin Menu

    4. \"\"
    ", "installation": "
      \n
    1. All-in-One WP Migration can be installed directly through your WordPress Plugins dashboard.
    2. \n
    3. Click “Add New” and Search for “All-in-One WP Migration”
    4. \n
    5. Install and Activate
    6. \n
    \n

    Alternatively, you can download the plugin using the download button on this page and then upload the all-in-one-wp-migration folder to the /wp-content/plugins/ directory then activate throught the Plugins dashboard in WordPress

    \n"}, "versions": {"7.95": "https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.95.zip", "7.96": "https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.96.zip", "7.97": "https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.97.zip", "7.98": "https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.98.zip", "7.99": "https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.99.zip", "7.100": "https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.100.zip", "trunk": "https://downloads.wordpress.org/plugin/all-in-one-wp-migration.zip"}, "downloaded": 166053532, "description": "

    The Most Trusted WordPress Migration & Backup Solution Since 2013

    \n

    All-in-One WP Migration is the gold standard for WordPress site migration, used by over 60 million websites worldwide – from small blogs to Fortune 500 companies and government agencies. Our plugin offers enterprise-grade reliability with beginner-friendly simplicity.

    \n

    Why Choose All-in-One WP Migration?

    \n
      \n
    • Effortless Migration: Export your entire site with a single click – including database, media, themes, and plugins
    • \n
    • Zero Downtime: Complete your migration with no service interruptions
    • \n
    • Universal Compatibility: Works across all hosting providers, from budget shared hosting to high-end dedicated servers
    • \n
    • Technical Excellence: Engineered for reliability with memory-efficient processing (512KB chunks), ideal for resource-limited environments
    • \n
    • No Technical Skills Required: Intuitive interface designed for users of all skill levels
    • \n
    • Cross-Database Support: Seamlessly move between MySQL, MariaDB, and SQLite databases
    • \n
    • Secure & Reliable: Trusted by Boeing, NASA, Harvard, Stanford, Automattic, and government agencies worldwide
    • \n
    \n

    How It Works – Simple as 1-2-3:

    \n
      \n
    1. Install the plugin on your source and destination sites
    2. \n
    3. Export your site to a .wpress file with one click
    4. \n
    5. Import using our drag-and-drop importer on your destination site
    6. \n
    \n

    For Developers & Power Users:

    \n
      \n
    • Advanced Find & Replace: Control exactly what changes during migration
    • \n
    • Selective Content Migration: Include/exclude specific content types
    • \n
    • PHP 5.3-8.4 Compatibility: Works across virtually all hosting environments
    • \n
    • Custom WPress Format: Our optimized archive format ensures data integrity
    • \n
    • Hook System: Extensive API for custom integration and workflows
    • \n
    • Command-Line Support: Automate migrations via WP-CLI
    • \n
    \n

    Premium Extensions:

    \n

    Enhance your migration workflow with our premium extensions for:

    \n
      \n
    • Unlimited Site Size: Migrate sites of any size
    • \n
    • Cloud Storage Integration: Direct migration to/from Dropbox, Google Drive, OneDrive, and more
    • \n
    • Multisite Support: Migrate complex WordPress networks
    • \n
    • Scheduled Backups: Automated, recurring backups
    • \n
    • Database Filtering: Exclude specific tables or data
    • \n
    \n

    Features Spotlight:

    \n
      \n
    • WCAG 2.1 AA Level accessibility compliance
    • \n
    • Mobile-responsive interface
    • \n
    • Browse WPRESS files online or extract locally
    • \n
    • Automatic URL and path replacement
    • \n
    • WordPress Playground integration for SQLite/MySQL migration
    • \n
    • Regular bi-weekly updates ensuring compatibility with the latest WordPress versions
    • \n
    • Available in 50+ languages including Japanese
    • \n
    \n

    Trusted by the Government and Big Corporations:

    \n

    Many enterprise customers, government organizations, and universities use, love, and trust All-in-One WP Migration. Here are some: Boeing, NASA, VW, IBM, Harvard University, Stanford University, Lego, P&G, Automattic, State of California, State of Hawaii.
    \nThis broad adoption and usage of All-in-One WP Migration demonstrate how safe, reliable and adaptable the plugin is for just about any website migration need.

    \n

    Update Frequency:
    \nOur team is dedicated to keeping All-in-One WP Migration up-to-date and secure. We release updates every two weeks or at least once a month, ensuring compatibility with the latest WordPress versions, including beta releases. Our proactive testing and feedback to the WordPress core team help in preemptively addressing any potential issues, providing our users with a reliable and forward-compatible migration and backup solution.

    \n

    Full Compatibility and Support:

    \n

    All-in-One WP Migration has been extensively tested and confirmed to be compatible with most WordPress plugins and themes.
    \nThis means you don’t get to experience cross-plugin compatibility issues that can slow down, bug, or break down your WordPress website when you install and use All-in-One WP Migration.
    \nAs a matter of fact, All-in-One WP Migration has partnered with multiple theme/plugin vendors to distribute their themes/plugins with us as a single, easy to use, easy to install package.
    \nThese vendors trust us and our plugin to provide their customers with reliable product delivery, support, migrations, and backups.

    \n

    Cloud Storage Supported:

    \n

    All-in-One WP Migration supports and syncs seamlessly with top cloud storage services.
    \nThe plugin comes preinstalled on all Bitnami WordPress sites running on AWS, Google Compute Cloud, and Microsoft Azure.

    \n

    Case Studies:

    \n
      \n
    • Small Business Growth: A small online retailer was able to seamlessly migrate to a more robust hosting solution to handle increasing traffic during peak shopping seasons, ensuring smooth customer experiences without downtime.
    • \n
    • Educational Institutions: A prominent university utilized All-in-One WP Migration to consolidate multiple departmental sites into a single, unified WordPress network, simplifying management and enhancing site security.
    • \n
    • Government Reliability: Following a directive to improve digital accessibility, a government agency used our plugin to migrate their content to a new, compliant platform without impacting public access to critical information.
    • \n
    \n

    Contact us

    \n\n\n\n

    Privacy Policy

    \n

    All-in-One WP Migration is designed to fully respect and protect the personal information of its users. It asks for your consent to collect the user’s email address when filling the plugin’s contact form.
    \nAll-in-One WP Migration is in full compliance with General Data Protection Regulation (GDPR).
    \nSee our GDPR Compliant Privacy Policy here.

    \n", "donate_link": "", "num_ratings": 7583, "screenshots": {"1": {"src": "https://ps.w.org/all-in-one-wp-migration/assets/screenshot-1.png?rev=1625263", "caption": "Mobile Export page"}, "2": {"src": "https://ps.w.org/all-in-one-wp-migration/assets/screenshot-2.png?rev=1625263", "caption": "Mobile Import page"}, "3": {"src": "https://ps.w.org/all-in-one-wp-migration/assets/screenshot-3.png?rev=1625263", "caption": "Plugin Menu"}, "4": {"src": "https://ps.w.org/all-in-one-wp-migration/assets/screenshot-4.png?rev=1625263", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/all-in-one-wp-migration/", "contributors": {"bangelov": {"avatar": "https://secure.gravatar.com/avatar/f0c382087edd88e9cb4b3e621160085ae162c19c85ba1ca8357d4f57f930fc66?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bangelov/", "display_name": "Borislav Angelov"}, "yaniiliev": {"avatar": "https://secure.gravatar.com/avatar/656bc955ff095f76699b2144615fdf0282b990f3033d2275b8a27713eece6fff?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/yaniiliev/", "display_name": "Yani"}, "pimjitsawang": {"avatar": "https://secure.gravatar.com/avatar/528d300a9fb73f5541890d5cbdf06fadc7a16f05fb4e2caceeefd5101d56a0ca?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pimjitsawang/", "display_name": "Pim J. Iliev"}}, "last_updated": "2025-10-05 7:49am GMT", "preview_link": "https://wordpress.org/plugins/all-in-one-wp-migration/?preview=1", "requires_php": "5.3", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.100.zip", "author_profile": "https://profiles.wordpress.org/servmask/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 5000000, "aspiresync_meta": {"id": "019a30bf-eee8-70d1-96a5-ea4dd4457243", "name": "All-in-One WP Migration and Backup", "slug": "all-in-one-wp-migration", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1759650540, "version": "7.100"}, "support_threads": 20, "requires_plugins": [], "short_description": "Trusted by 60M+ sites: The gold standard for WordPress migrations, backups, and site transfers since 2013.", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "https://servmask.com/contact-support", "support_threads_resolved": 14}'); -INSERT INTO public.plugins VALUES ('019a30c1-63c7-7114-9af7-88a7c70d3e71', 'all-in-one-wp-security-and-firewall', 'All-In-One Security (AIOS) – Security and Firewall', 'Protect your website investment with All-In-One Security (AIOS) – a comprehensive and easy to use security plugin designed especially for WordPress.', '

    THE TOP RATED WORDPRESS SECURITY AND FIREWALL PLUGIN

    -

    All-in-One Security (AIOS) is a WordPress security plugin from the same, trusted team that brought you UpdraftPlus.

    -

    It’s called ‘All-In-One’ because it’s packed full of ways to keep your WordPress website(s) safe and secure.

    -

    It includes:

    -

    Login security features keep bots at bay. Lock out users based on a configurable number of login attempts, get two-factor authentication and more.

    -

    File and database security. Get notified of file changes that occur outside of normal operations. Block access to key files and scan files and folders to spot insecure permissions.

    -

    Firewall. Get PHP, .htaccess and 6G firewall rules courtesy of Perishable Press. Spot and block fake Google Bots and more!

    -

    Spam prevention. Prevent annoying spam comments and reduce unnecessary load on the server. Automatically and permanently block IP addresses that exceed a set number of spam comments.

    -

    Audit log. View events happening on your WordPress website. Find out if a plugin or theme has been added, removed, updated and more.

    -

    WHY ALL-IN-ONE SECURITY?

    -

    AIOS has a near-perfect 4.7 / 5-star user rating across more than 1 million installs.

    -

    Great for beginners and experts alike. AIOS guides you logically and clearly through each of its features which are all clearly explained. Security features are marked as basic, intermediate and advanced. Each step increases your security score. Turn them on and watch your protection grow!

    -

    We have a large support team of software developers. That means we have the availability and the skillset to help you with the trickiest of queries.

    -

    We comb the WordPress plugin directory for support tickets daily – most queries are responded to within 24 hours.

    -

    Excellent plugin with numerous well-thought-out options for making a website more secure. I have been using it for years and am very happy with it. I recently had a small problem setting up a website and – even as a non-premium user – I received support very quickly. Highly recommended!

    -

    For even more ways to stay safe and secure, upgrade to AIOS Premium – it packs a punch security-wise, whilst being extremely cost-competitive.

    -

    LOGIN SECURITY

    -

    Two-factor authentication (TFA) – Require TFA for specific user roles. Supports Google Authenticator, Microsoft Authenticator, Authy, and many more.

    -

    Detect and manage ‘admin’ usernames – Identify default ‘admin’ usernames and guide users to change them to protect against brute force attacks.

    -

    Identify and correct identical login and display names – Detect cases where the display name matches the username and provide guidance to improve login security.

    -

    Prevent user enumeration – Block unauthorised access to URLs that can reveal sensitive information such as usernames or other details.

    -

    Control login attempts – Prevent brute force attacks by limiting the number of failed login attempts. Choose how many login attempts are allowed, set lockout durations, and more.

    -

    Force user logout – Automatically log out users after a specified period of time. Unattended sessions are closed, reducing the risk of unauthorised access.

    -

    Manually approve new registrations – Review and approve new user registrations to prevent spam and fake sign-ups.

    -

    Enhance WordPress salt security – Adds 64 extra characters to WordPress salts, rotating them weekly. Makes cracking passwords virtually impossible, even if your database is stolen.

    -

    Plugin Support

    -
      -
    • If you have a question or problem with the All-In-One Security plugin, post it on the support forum and we will help you. Premium customers can log queries directly with the team via https://teamupdraft.com/all-in-one-security/
      -Monitor and manage active sessions – If a user is logged in who shouldn’t be, log them out or add them to a blacklist.
    • -
    -

    SPAM PREVENTION

    -

    Block spam coming from bots – Reduce the load on your server and improve the user experience by automatically blocking spam comments from bots.

    -

    Monitor spam IP addresses – Monitor the IP addresses of people or bots leaving spam comments. Choose which ones to block based on a configurable number of comments left.

    -

    FILE / DATABASE Security

    -

    Scan and fix file permissions – Scan for insecure file permissions. Click once to fix issues and safeguard critical files and folders.

    -

    Disable PHP file editing – Disable editing of PHP files (such as plugins and themes) via the dashboard. It’s often the first tool that attackers use as it allows for code execution.

    -

    Protect sensitive files – Prevent access to files like readme.html that might reveal information about your WordPress installation.

    -

    File change scanner – Get notified of any file changes which occur on your system. Exclude files and folders which change as part of normal operations.

    -

    Prevent image hotlinking – Prevent other websites from displaying your images via hotlinking and protect server bandwidth.

    -

    Secure database backups – Perform a database backup via UpdraftPlus from AIOS. Change the default ‘wp_’ prefix to hide your WordPress database from hackers.

    -

    FIREWALL

    -

    Get .htaccess firewall rules – Deny access to the .htaccess and wp-config.php files. Disable the server signature and limit file uploads to a configurable size.**

    -

    Block access to the debug.log file and prevent Apache servers from listing the contents of a directory when an index.php file is not present

    -

    Get PHP firewall rules – PHP firewall rules prevent malicious users from exploiting well-known vulnerabilities in XML-RPC. Safeguard your content by disabling RSS and Atom feeds and avoid cross-site scripting (XSS) attacks.
    -Block fake Google bots and POST requests made by bots – Block fake Google bots and stop bots from making POST requests by blocking IP addresses where the user-agent and referrer fields are blank.

    -

    Utilise 6G firewall rules – Employ flexible blacklist rules to reduce the number of malicious URL requests that hit your website (courtesy of Perishable Press).

    -

    And more – Blacklist (and whitelist) IP ranges and user agents and block unauthorized access to data by disabling REST API access for non-logged-in requests.

    -

    TWO-FACTOR AUTHENTICATION ENHANCED [Premium]

    -

    Two-factor authentication is included in the free plugin. Upgrade to Premium if you’d like to:
    -Require TFA after a set time period – Mandate TFA for all admins or other roles after their accounts reach a specified age.

    -

    Control how often TFA is required – Set TFA to be required after a certain number of days on trusted devices instead of every login.

    -

    Customise design layout – Adjust the TFA design to match your website’s existing layout and branding.
    -Emergency codes – Generate one-time use emergency codes to regain access if you lose your TFA device.

    -

    WordPress Multisite Compatible – Ensure compatibility with WordPress multisite networks and their sub-sites for consistent TFA application.

    -

    Integration with login forms – Integrate TFA with various login forms, including WooCommerce, Affiliates-WP, Elementor Pro, bbPress, and ‘Theme My Login’ without additional coding.

    -

    SMART 404 BLOCKING [Premium]

    -

    Block IPs based on 404 errors – Detect hackers probing your URLs via script and bots by the 404 errors they leave behind.

    -

    Smart 404 Configuration – Set a figure for the maximum number of 404 events allowed before an IP address is blocked. Choose a time period within which the 404 events must occur (e.g., 10 errors within 10 minutes).

    -

    Smart 404 block by URL string – Instantly block an IP address if a 404 event includes a specific URL string.

    -

    Smart 404 whitelisting – Prevent particular IP addresses from being permanently blocked due to 404 events.

    -

    COUNTRY BLOCKING [Premium]

    -

    Block traffic to the entire site or to specific pages or posts – Useful if you’re an e-commerce site and you want to block sales to some countries for shipping or tax reasons.

    -

    Whitelist some users from blocked countries – Whitelist IP addresses or IP ranges even if they are part of a blocked country.

    -

    MALWARE SCANNING [Premium]

    -

    Automatic malware scanning – Detect and protect against the latest malware, trojans, and spyware.
    -Alerts you to blacklisting by search engines – Monitor your site for blacklisting by search engines due to malicious code.

    -

    Response time monitoring – Keep track of your website’s response time to identify and address any performance issues.

    -

    Uptime monitoring – Checks your website’s uptime every 5 minutes and alerts you immediately if your site or server goes down.

    -

    Advice and malware removal – Need hands-on advice and support for malware removal? Our team of genuine cybersecurity experts is here to help.

    -

    Notification if something’s amiss – Receive notifications about any issues with your site so you can address problems before they escalate.

    -

    Plugin Support

    -

    If you have a question or problem with the All-In-One Security plugin, post it on the support forum and we will help you. Premium customers can log queries directly with the team via https://teamupdraft.com/all-in-one-security

    -

    Developers

    -
      -
    • If you are a developer and you need some extra hooks or filters for this plugin then let us know.
    • -
    -

    Translations

    -
      -
    • All-In-One Security plugin can be translated to any language.
    • -
    -

    Currently available translations:

    -
      -
    • English
    • -
    • German
    • -
    • Spanish
    • -
    • French
    • -
    • Hungarian
    • -
    • Italian
    • -
    • Swedish
    • -
    • Russian
    • -
    • Chinese
    • -
    • Portuguese (Brazil)
    • -
    • Persian
    • -
    -

    Privacy Policy

    -

    This plugin may collect IP addresses for security reasons such as mitigating brute force login threats and malicious activity.

    -

    The collected information is stored on your server. No information is transmitted to third parties or remote server locations.

    -

    Usage

    -

    Go to the settings menu after you activate the plugin and follow the instructions.

    -

    Usage

    -

    Go to the settings menu after you activate the plugin and follow the instructions.

    -', '5.4.3', 'David Anderson / Team Updraft', '5.0', '5.6', '6.8.3', 'https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.4.3.zip', '2013-06-03 00:00:00+00', '2025-09-09 14:49:00+00', 'https://profiles.wordpress.org/davidanderson/', 94, 1672, 39, 35, 1000000, 34280823, 'https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/', 'https://david.dw-perspective.org.uk/donate', NULL, NULL, 'https://wordpress.org/support/plugin/all-in-one-wp-security-and-firewall/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "All-In-One Security (AIOS) – Security and Firewall", "slug": "all-in-one-wp-security-and-firewall", "tags": {"firewall": "firewall", "security": "security", "login-security": "login security", "malware-scanning": "Malware Scanning", "two-factor-authentication": "two factor authentication"}, "added": "2013-06-03", "icons": {"1x": "https://ps.w.org/all-in-one-wp-security-and-firewall/assets/icon-128x128.png?rev=2798307", "2x": "https://ps.w.org/all-in-one-wp-security-and-firewall/assets/icon-256x256.png?rev=2798307"}, "author": "David Anderson / Team Updraft", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/all-in-one-wp-security-and-firewall/assets/banner-772x250.png?rev=2798307", "high": "https://ps.w.org/all-in-one-wp-security-and-firewall/assets/banner-1544x500.png?rev=2798307"}, "ratings": {"1": 72, "2": 15, "3": 20, "4": 52, "5": 1513}, "version": "5.4.3", "homepage": "https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/", "requires": "5.0", "sections": {"faq": "\n
    \nHow is All-In-One Security (AIOS) supported?\n\n

    \n

    Customers of ‘Free’ AIOS can get support from this very webpage. Select ‘Support’ from the tabs above and post a topic. We aim to respond to all support requests within 24 hours during the working week.

    \n

    \n
    \nIs All-In-One Security compatible with other plugins?\n\n

    \n

    Yes. AIOS works smoothly with most popular WordPress plugins.

    \n

    \n
    \nIs All-in-One-Security regularly updated?\n\n

    \n

    Yes. WordPress Security is something that evolves over time. We update AIOS with new security features (and fixes if required) on a regular basis so you can be assured that your site will keep benefitting from new security protection techniques for as long as you need them.

    \n

    \n
    \nWill All-In-One Security slow down my website?\n\n

    \n

    No.

    \n

    \n
    \nShould I install All-In-One Security for free or should I purchase AIOS Premium?\n\n

    \n

    The decision is yours to make. ‘Free’ AIOS incorporates a web application firewall, comprehensive login security tools including two-factor authentication and all the latest recommended WordPress security practices and techniques.
    \nBut if your WordPress site is a business website, if it showcases what you do, or who you are, we generally recommend AIOS Premium. Prices start from as little as $70 for the year.

    \n

    \n
    \nWhat are the additional features of All-In-One Security Premium?\n\n

    \n

    AIOS Premium scans your WordPress website for malware whilst also monitoring your site’s response time and uptime, notifying you of any issues within 24 hours, AIOS Premium customers also benefit from hands-on ticketed support via email (rather than via WP Support forums).
    \nAdditional security tools include Country Blocking, Smart 404 Error Blocking and Advanced Two Factor Authentication.
    \nMore information is available from our All-In-One Security website
    \nMore information is available from our All-In-One Security website

    \n

    \n
    \nHow do I get started with All-In-One Security Premium?\n\n

    \n

    In the web shop, purchase your preferred subscription. After completing the purchase, you will be emailed a link to download the plugin. You can also access the link through your “My Account” page.
    \nAfter downloading the zip file, install and activate the plugin through WP Admin->Plugins->Add New->Upload Plugin.
    \nThe premium extends the free version. Therefore you should keep the free version installed and active. You will also be prompted to enter your AIOS username and password to connect your site to licenses. This will allow the plugin to receive updates.

    \n

    \n
    \nDo I need to have the free version before downloading Premium?\n\n

    \n

    Yes, you need to have the free version of the plugin installed and activated before installing Premium. Premium plugin is an add-on that requires the free version to be present.

    \n

    \n
    \nDoes All-In-One Security work with multi-site network installations?\n\n

    \n

    Yes, AIOS Premium is compatible with WordPress multisites. For multisite networks, the protection will apply to the network as a whole, and the dashboard and options will be available on the main site of the WordPress multisite.

    \n

    \n
    \nCan a WordPress security plugin stop all attacks on my site?\n\n

    \n

    There is no 100% guarantee that a security plugin will be able to protect against all attacks, as there is always the possibility of unknown WordPress vulnerabilities or other unexpected factors, and attackers are always seeking to develop new ways around protections. However, All-In-One Security gives good protection against known attack methods, and is under continuous development to monitor and improve protections.

    \n

    \n
    \nDoes All-In-One Security work on all servers and hosts?\n\n

    \n

    AIOS should be compatible with most hosts, unless the host has specifically restricted the use of security plugins. Similarly, certain features may not work on some servers, especially Windows/IIS platforms. Features that use the ‘.htaccess’ file will not apply on a Windows IIS server or NGINX server (but development is ongoing to port those protections to all servers).

    \n

    \n
    \nCan I cover my subdomains and test sites with a licence for AIOS Premium?\n\n

    \n

    Development and test sites require their own licence if updates to the plugin are needed.
    \nHowever, these sites can be disconnected from the licence when they have served their purpose. You can disconnect the licence via the site’s WP Admin->Plugins page, and it will be available to be reassigned to a different site.

    \n

    \n
    \nIs the All In One Security & Firewall Plugin GDPR and other privacy law compliant?\n\n

    \n

    Please read more about GDPR compliance here: https://teamupdraft.com/privacy/ .
    \nPlease read more about GDPR compliance here: https://www.teamupdraft.com/privacy?utm_source=aios-wp-dir&utm_medium=referral&utm_campaign=plugin-dir&utm_content=gdpr&utm_creative_format=faq.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect Security tool for WP

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy MrDrap on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great and very intense Plug-ing very well done and many good manuals.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useful tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pvaow3bkami on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is truly useful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    me sinto mais segura

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy janeteluz on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    amei esse plugin! ele protege bem meu site, mesmo q eu nao entenda muito de segurança. teve umas vezes q precisei ajustar umas coisas, mas fora isso ta show. me sinto bem mais segura agora.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    perfect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shahab3932 on September 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    i love AIOS , i love WP ...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Just comprehensive!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mement0 on September 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simply the best security plugin I''ve ever had!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Melhor Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy philippegaldino on August 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Alto nível de confiança tenho neste plugin, suas configurações são ótimas e avançadas, indicarei para meus amigos quando eles precisarem de proteção no seu site.<font _mstmutation=\"1\"></font>

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    80

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Martin Rad (itsabc) on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    i liked

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Stability and security plugin that's -A MUST HAVE!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy juliofotrad on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its the no.1 Trusted plugin I have always gone for over the years of hosting with no issues.These guys really take care of your site 24/7/365!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good security plugin BUT best used with caution!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rahul Basu (rahulbasu) on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using All In One Security for more than two years and touchwood my site feels a lot more secure. Even the free version worked better than I expected. It has plenty of features that make protecting a WordPress site much easier.

    \n\n\n\n

    The only problem I feel is that sometimes you turn on a setting thinking it will make the site safer but it ends up locking you out of the WordPress backend. I have also had cases where unknowingly I blocked the search bots which stopped the search engine indexing without me knowing and I lost potential organic visitors. It would be great if the plugin could warn the site owner before such things happen so we do not accidentally hurt our own site while trying to protect it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use and very effective plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gorchiga123 on August 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am using this plugin from 2019. No problems yet. I used both free and paid versions.

    \n
    \n
    \n", "changelog": "

    5.4.3 – 8/Sep/2025

    \n
      \n
    • FEATURE: Added a feature to enforce the use of strong passwords by users
    • \n
    • FIX: Bypass Cookie based brute force prevention using AJAX request.
    • \n
    • FIX: PHP notice – the translation load text domain was called incorrectly.
    • \n
    • FIX: Resolved call to undefined function disk_total_space in wp-security-debug.php when the hosting provider has disabled this PHP function.
    • \n
    • FIX: Fatal error when accessing an array query parameter when the login page has been renamed.
    • \n
    • FIX: Chrome console error where the maths captcha referencing a missing input ‘id’, causing autofill and accessibility issues.
    • \n
    • FIX: The AIOS translation .pot file does not include TFA labels.
    • \n
    • FIX: When a user profile is updated, HIBP’s ‘Enforce on profile update’ setting incorrectly triggers an error if the password has not been changed.
    • \n
    • TWEAK: Added ‘aios_blocked_request_redirect_url’ filter to allow permanently blocked IPs to be redirected to a custom URL rather than 127.0.0.1.
    • \n
    • TWEAK: Create new AIOS tables and update current AIOS tables to use the InnoDB engine.
    • \n
    • TWEAK: Moved the ‘6G firewall rules’ feature to the PHP rules tab
    • \n
    • TWEAK: Moved the ‘Internet bots’ tab into the PHP rules tab
    • \n
    • TWEAK: Resolved issue where IP detection status was always off for Debugging tab.
    • \n
    • TWEAK: The Manually approve registered users list should display the error message “You cannot block your own IP address”.
    • \n
    \n

    5.4.2 – 15/Jul/2025

    \n
      \n
    • FEATURE: Ability to enforce checking passwords against the HIBP API when updating user profiles and resetting passwords.
    • \n
    • FEATURE: Add ability to upgrade all unsafe http calls on the site.
    • \n
    • FIX: Disabled application password link doesn’t go back to the correct place.
    • \n
    • FIX: Fatal in the firewall’s message store.
    • \n
    • FIX: Malformed URLs in User accounts tab.
    • \n
    • FIX: Users are logged out on Contact Form 7 submit if salt postfix enabled
    • \n
    • FIX: The ‘Set Password’ page does not load for the user when cookie-based brute-force protection is enabled.
    • \n
    • FIX: Disallow unauthorized REST request is enabled, but the /wp-json/ shows the rest routes and rest api details
    • \n
    • TWEAK: Add AJAX message store helper
    • \n
    • TWEAK: Disable user enumeration error; aios_user_lists_forbidden should return a 403 response code instead of a 500.
    • \n
    • TWEAK: Rename the WP Admin menu item from ‘WP Security’ to ‘AIOS’ and update the icon to current version.
    • \n
    • TWEAK: Show AJAX table action response in popup modal
    • \n
    • TWEAK: Make the plugin more PCP compliant
    • \n
    • TWEAK: Add a notice for PHP 5.6 end of support.
    • \n
    • TWEAK: Change url from twitter.com to x.com
    • \n
    • TWEAK: Made changes to the advert links in the thank you dashboard notice.
    • \n
    \n

    5.4.1 – 21/May/2025

    \n
      \n
    • FIX: Call to undefined function AIOWPS\\Firewall\\sanitize_text_field() fatal error solved.
    • \n
    • FIX: Resolved an issue where some information in the debugging report email was inconsistent with the information shown at Dashboard > Debugging
    • \n
    • FIX: Fixed a “call to undefined function wp_strip_tags” error in wp-security-user-login.php
    • \n
    • FIX: Resolved an issue where raw HTML was displaying in the info box under User Security > User Accounts > User Display Name
    • \n
    • FIX: Renamed the login page when it was exposed via auth_redirect by other plugins (e.g., Gravity Forms preview)
    • \n
    • FIX: Fixed an issue where the password reset functionality did not work with the renamed login page feature
    • \n
    • FIX: Resolved missing translations on the login page after enabling the “Rename login page” feature
    • \n
    • FIX: Updated the custom login page layout to match the new default WordPress login page design
    • \n
    • FIX: Fixed the redirection issue occurring after plugin reactivation when the cookie brute force options are saved in the database
    • \n
    • FIX: Fixed the undefined variable $error in wp-security-user-security-commands.php
    • \n
    • FIX: Fixed the login lockout request issue
    • \n
    • FIX: Bulk “Delete selected” action in the Audit Log list was not working
    • \n
    • FIX: Corrected AIOWSPEC prefixes to AIOWPSEC
    • \n
    • FIX: The 5G Firewall switch is behaving inversely, enabling it removes .htaccess rules, while disabling adds them.
    • \n
    • FIX: Fixed the HTML code shown incorrectly on the .htaccess tab
    • \n
    • TWEAK: Updated links to point to our new website
    • \n
    \n

    5.4.0 – 27/Mar/2025

    \n
      \n
    • FIX: Replaced firewall URI parsers with non-WordPress methods
    • \n
    • FIX: Resolved PHP 5.6 compatibility issue caused by the ?? operator in 5.3.10
    • \n
    \n

    5.3.10 – 26/Mar/2025

    \n
      \n
    • FEATURE: Added commenting capability to IP whitelists
    • \n
    • FEATURE: Added diagnostics reporting
    • \n
    • FEATURE: Added a whitelist and user role-based access limit to the REST API firewall
    • \n
    • FIX: “Undefined index: path” error when front-end HTTP Authentication is enabled.
    • \n
    • FIX: Resolved dashboard translation issue where text lacked whitespace and was not properly translated
    • \n
    • TWEAK: Remove uses of unserialize without restriction of allowed_classes
    • \n
    • TWEAK: Refactored IP commands class to use response helper
    • \n
    • TWEAK: Removed WP REST API tab
    • \n
    • TWEAK: Switched “Critical Feature Status” toggle buttons on the dashboard to a status light system
    • \n
    • TWEAK: Updated the security strength meter on the dashboard
    • \n
    • TWEAK: Improved the dashboard widget to display a chart showing the number of logins over the last 7 days
    • \n
    • TWEAK: Enhanced the maintenance mode switch on the dashboard for consistency with the rest of the plugin
    • \n
    • TWEAK: Converted Brute Force menu actions to use AJAX
    • \n
    • TWEAK: Updated seasonal notices
    • \n
    \n

    5.3.8 – 16/Dec/2024

    \n
      \n
    • FIX: Updated the plugin notices to fix translation related fatal errors.
    • \n
    \n

    5.3.7 – 5/Dec/2024

    \n
      \n
    • TWEAK: Change response code for blocked unauthorized REST requests to 403.
    • \n
    • TWEAK: Temporarily removed firewall logging
    • \n
    \n

    5.3.6 – 3/Dec/2024

    \n
      \n
    • FIX: Resolved an issue with the AIOS_Firewall_Resource class
    • \n
    \n

    5.3.5 – 24/Nov/2024

    \n
      \n
    • FIX: Custom .htaccess rules are now properly escaped, with backslashes removed.
    • \n
    • FIX: Import settings failed when visitor lockout messages had text alignment or other formatting applied
    • \n
    • FIX: The audit log filter for event type now works correctly, even when the event type is translated into languages other than English
    • \n
    • FIX: Resolved text overflow in the blue box on the Settings > WP Version Info page
    • \n
    • FIX: Some user meta keys were not being removed after uninstalling the plugin
    • \n
    • FIX: Subsites no longer incorrectly detect the Database Prefix feature as active
    • \n
    • FIX: Prevented fatal errors from missing firewall resources, replacing them with debug log entries
    • \n
    • FIX: WordPress database error: BLOB, TEXT, GEOMETRY, or JSON columns cannot have a default value set
    • \n
    • FIX: The load_plugin_textdomain function is called during the init action, and translations are applied afterward
    • \n
    • FIX: Renamed login page is now using the WordPress translations
    • \n
    • TWEAK: Added a filter for PHP firewall rules templates
    • \n
    • TWEAK: Updated the country code field for audit logs to be based on the IP address (Premium)
    • \n
    • TWEAK: Improved the text in the 404 detection tab
    • \n
    • TWEAK: Moved the allowlist into the blacklist tab, and renamed it to “Block & Allow Lists”
    • \n
    • TWEAK: Moved the WP REST API feature to the PHP rules tab
    • \n
    • TWEAK: Refactored multiple command classes to use the new AJAX response helper method: Tools, File scan, Files, Settings, and Log commands classes
    • \n
    • TWEAK: Updated the UI for the .htaccess rules, Captcha settings and file protection tabs
    • \n
    • TWEAK: Added a note in Settings > Delete plugin settings tab
    • \n
    • TWEAK: Early calls to get_plugin_data() no longer require translations
    • \n
    • TWEAK: Refactored the firewall command class to use the response helper method
    • \n
    • TWEAK: Added a constant AIOS_DISABLE_HTTP_AUTHENTICATION. Define this in your wp-config.php to disable HTTP authentication
    • \n
    \n

    5.3.4 – 21/Oct/2024

    \n
      \n
    • FEATURE: Added a HTTP authentication feature that allows protecting the site with a username/password login.
    • \n
    • FIX: Added a new method to reset the firewall rules under general settings
    • \n
    • FIX: Resolved the issue with post cache which caused an issue with comment spam prevention
    • \n
    • TWEAK: Added a helper class for API requests
    • \n
    • TWEAK: Removed whitespaces at end of sentences
    • \n
    \n

    5.3.3 – 16/Sep/2024

    \n
      \n
    • FEATURE: Added captcha option for WooCommerce classic guest checkout page.
    • \n
    • FIX: Fixed responsive layout issues with dashboard notice logo on mobile devices.
    • \n
    • FIX: Turnstile captcha widget showing multiple times
    • \n
    • FIX: Solved memory issue for reading larger host system log file
    • \n
    • FIX: Removed .htaccess options from the Settings menu on Nginx, IIS and unsupported web servers
    • \n
    • FIX: Resolved UX popup issue and firewall allowlist sanitization
    • \n
    • FIX: Resolved an issue where bulk table actions were still executed even if the confirmation dialog was canceled.
    • \n
    • FIX: Added a null check to prevent PHP warnings in firewall rules
    • \n
    • TWEAK: Ajaxified the actions in the settings, filesystem security, spam prevention and user security menu
    • \n
    • TWEAK: Added Ajax support to list tables and the audit log
    • \n
    • TWEAK: Added CAPTCHA field to MemberPress forgot password and registration forms
    • \n
    • TWEAK: Excluded .htaccess tabs from settings if the server is not supported
    • \n
    • TWEAK: Updated the firewall rules UI and malware scanner description
    • \n
    • TWEAK: Tweaked the htaccess backup method to generate the random filename
    • \n
    • TWEAK: Removed ‘prevent access to default WP files’ from .htaccess and added ‘license.txt’ to deletion list.
    • \n
    \n

    5.3.2 – 06/Aug/2024

    \n
      \n
    • FIX: Bug that allowed subsite admins to delete audit logs of other subsites
    • \n
    • FIX: Disabled blacklisting on subsites because the PHP-based firewall currently applies to the entire multisite
    • \n
    • FIX: An issue with getting the google bot ip ranges
    • \n
    • TWEAK: Added extra protections in place before modifying the .htaccess file
    • \n
    • TWEAK: Actions in the tools, firewall and scanner menu are now processed via AJAX
    • \n
    • TWEAK: Trimmed leading and trailing whitespace from inputs in the WHOIS lookup tab
    • \n
    • TWEAK: Added a confirmation pop-up when users clear records in the Debug Logs table
    • \n
    • TWEAK: Added captcha support for the MemberPress plugin
    • \n
    • TWEAK: Improved the UX of the WP REST API options
    • \n
    • TWEAK: Internal code improvements to improve maintainability
    • \n
    • TWEAK: Updated the feature manager to improve performance
    • \n
    • TWEAK: Fixed the issue of blank tables on mobile view
    • \n
    \n

    5.3.1 – 26/Jun/2024

    \n
      \n
    • FEATURE: Added CAPTCHA to password protected pages/posts
    • \n
    • FIX: Captcha not showing on the BuddyPress registration page
    • \n
    • FIX: WooCommerce logout issue when the renamed login page and login whitelist features are both enabled
    • \n
    • FIX: Missing CAPTCHAs when multiple WooCommerce login and register forms are on the same page
    • \n
    • FIX: Fixed an issue with the 404 detection actions
    • \n
    • FIX: A UI issue with the 2FA QR code image
    • \n
    • TWEAK: Added the attribute data-cfasync=”false” to the default captcha url to allow loading on Cloudflare Rocket Loader
    • \n
    • TWEAK: Purge login lockdown table records after 90 days to restrict size. The AIOS_PURGE_LOGIN_LOCKOUT_RECORDS_AFTER_DAYS constant has been added to change the default.
    • \n
    • TWEAK: Updated the malware scanner frequency text from daily to weekly
    • \n
    • TWEAK: Updated the password strength meter UI for the password tool
    • \n
    • TWEAK: Add a ‘Lock IP’ and ‘Blacklist IP’ link to the IP column of the audit log.
    • \n
    • TWEAK: Enhance fake Googlebot detection. In the case where gethostbyaddr fails, the firewall will fallback to checking against known Googlebot IP ranges
    • \n
    • TWEAK: Updated the column header for the “Permanent Blocked IP Addresses” table to be consistent with other tables
    • \n
    • TWEAK: Prevent warning when DISALLOW_FILE_EDIT has already been defined
    • \n
    • TWEAK: Fix instances of one translation function being used for multiple sentences
    • \n
    • TWEAK: Improved the UX during AJAX calls
    • \n
    • TWEAK: Removed Trash spam comments duplicated description
    • \n
    \n

    5.3.0 – 01/May/2024

    \n
      \n
    • FEATURE: Added bulk force logout features for logged in users
    • \n
    • FIX: An issue with the WooCommerce my account page logout function when the cookie based brute force feature is turned on
    • \n
    • FIX: Warning undefined array key SCRIPT_FILENAME
    • \n
    • FIX: Custom redirection after login not working if url contains the redirect_to parameter
    • \n
    • FIX: List of administrator accounts not showing on the user security page
    • \n
    • FIX: Issue with cookie based bruteforce prevention solved if salt postfix feature is on.
    • \n
    • FIX: Fixed country field not showing in the 404 event logs (Premium)
    • \n
    • FIX: Fixed country field not showing in the smart 404 blocked IP log (Premium)
    • \n
    • TWEAK: Fixed translation issue not showing as per admin user set language instead of site settings
    • \n
    • TWEAK: Firewall upgrade changes are applied without access to the admin interface
    • \n
    • TWEAK: Change the labels for the switches to a more appropriate wording
    • \n
    • TWEAK: In the file scanner results show the file sizes in a human readable format
    • \n
    • TWEAK: Updated the default message for attempts to access wp-admin
    • \n
    • TWEAK: Internal refactor of the update code to improve code clarity.
    • \n
    • TWEAK: Port the ‘Block fake Googlebots’ feature to the PHP-based firewall
    • \n
    • TWEAK: Remove requirement for at least one IP for ‘Blacklist’, ‘Login whitelist’ and ‘Login lockout IP whitelist’ to be enabled.
    • \n
    • TWEAK: Added error message when a user tries to block their own IP on registration approval
    • \n
    • TWEAK: Added method to update badge on AJAX call
    • \n
    • TWEAK: internal refactor of the AIOWPSecurity_Utility_File class to improve code clarity
    • \n
    • TWEAK: Seasonal notice content update for 2024
    • \n
    \n

    5.2.9 – 06/Mar/2024

    \n
      \n
    • FIX: Remove call to update_event_table_column_to_timestamp in update routine
    • \n
    • FIX: Remove call to wp_timezone() which is only available in WP 5.3+
    • \n
    \n

    5.2.8 – 05/Mar/2024

    \n
      \n
    • FIX: The user check that affects the Duo authentication plugin
    • \n
    • FIX: Database update routine is now run without needing to visit the admin interface or each individual site in a multisite
    • \n
    • FIX: Some settings in the firewall menu not resetting after deactivating and reactivating the plugin.
    • \n
    • TWEAK: Audit log and 404 events CSV export file date time column is now in a human readable format not unix timestamp
    • \n
    • TWEAK: Debug log table existing datetime field converted to timestamp to be timezone independent
    • \n
    • TWEAK: Global meta table existing datetime field converted to timestamp to be timezone independent
    • \n
    • TWEAK: Permanent block table existing datetime field converted to timestamp to be timezone independent
    • \n
    • TWEAK: Refactor list item actions to further improve code clarity
    • \n
    • TWEAK: Removed blacklist admin menu as previously announced
    • \n
    • TWEAK: Removed miscellaneous admin menu as previously announced
    • \n
    • TWEAK: Removed various admin menu tabs as previously announced
    • \n
    • TWEAK: Store IP lookup result for other types of entries in the login lockdown table
    • \n
    • TWEAK: Update the footer review prompt
    • \n
    • TWEAK: Max file upload size limit to 250 MB by aiowps_max_allowed_upload_config filter removed
    • \n
    • TWEAK: Improve comment spam detection to not interfere with other forms
    • \n
    \n

    5.2.7 – 06/Feb/2024

    \n
      \n
    • SECURITY: Added nonce checks to various list table actions to prevent a CSRF vulnerability. Thanks to dhakal_ananda for disclosing this defect. This would allow an attacker who persuaded a logged-in administrator to visit a specially crafted link to perform actions on the 404 event records.
    • \n
    \n

    5.2.6 – 06/Feb/2024

    \n
      \n
    • SECURITY: Removed unnecessary use of the “tab” query parameter on various admin menu pages to prevent a non-persistent XSS vulnerability. Thanks to Matthew Rollings for disclosing this defect. (This would allow an attacker who deliberately targets you whilst logged in as an administrator and persuades you to visit a link he controls to inject unwanted scripts on a single visit to your AIOS admin page).
    • \n
    • FEATURE: Added logout event to the audit logs
    • \n
    • FEATURE: Add ability to delete the default readme.html file and wp-config-sample.php file
    • \n
    • FIX: Correct some translation calls that were using the wrong text domain
    • \n
    • FIX: PHP notice caused by the file scanner being unable to read its data file
    • \n
    • FIX: Unlock request button was not showing and redirects to 127.0.0.1
    • \n
    • FIX: Database errors for the aiowps_login_lockdown table during plugin installation
    • \n
    • TWEAK: Refactor the 6G UI
    • \n
    • TWEAK: Added an option to set the Cloudflare Turnstile CAPTCHA theme
    • \n
    • TWEAK: Added CSS styling for audit log details column
    • \n
    • TWEAK: Dashboard critical feature status links fixed and only show features that can be enabled in a multisite subsite
    • \n
    • TWEAK: Deactivating the plugin now removes stored login info so on the next activation users are not force logged out
    • \n
    • TWEAK: Display json string instead of null if json_decode does not work for audit log details
    • \n
    • TWEAK: Event table existing datetime field converted to timestamp to be timezone independent
    • \n
    • TWEAK: Various tweaks to get codebase up to coding standards
    • \n
    • TWEAK: Various tweaks to ensure multiple sentences are not passed to a single translation function
    • \n
    • TWEAK: Fix the broken UI for RSS and Atom firewall settings and added a more info box
    • \n
    • TWEAK: Fix the issue of unique ID in DOM
    • \n
    • TWEAK: Merge Username and Display Name tabs in User Security Settings
    • \n
    • TWEAK: Moved the ‘404 detection’ tab to the ‘Brute force’ admin menu
    • \n
    • TWEAK: Moved the ‘PHP file editing’ tab into ‘File Protection’ tab
    • \n
    • TWEAK: Moved the ‘User enumeration’ tab into the ‘User accounts’ tab in the User Security Menu
    • \n
    • TWEAK: Moved the ‘WP Rest API’ tab into the Firewall Menu
    • \n
    • TWEAK: Moved the ‘Copy protection’ and ‘Frames’ tab into the Filesystem security menu
    • \n
    • TWEAK: Moved the ‘Salt’ tab into the User security menu
    • \n
    • TWEAK: Moved ‘Blacklist Manager’ tab into the Firewall menu.
    • \n
    • TWEAK: Password resets, removed and deleted users are now recorded in the audit log
    • \n
    • TWEAK: Stop 404 IP from being locked if there’s a current lock on that IP
    • \n
    • TWEAK: Unify date and time conversion with users timezone support
    • \n
    • TWEAK: Changed how empty data in ip lookup result is stored in the database
    • \n
    • TWEAK: Rework Firewall Menu page to have two tabs for PHP and .htaccess rules
    • \n
    • TWEAK: Add captcha support for Contact Form 7
    • \n
    • TWEAK: Added a AJAX save settings and get features details badge function as part of ongoing work to add AJAX support to the plugin settings
    • \n
    • TWEAK: Enhance reset password email by adding IP info
    • \n
    • TWEAK: Remove defunct imagetoolbar meta tag
    • \n
    • TWEAK: Login lockout tables existing datetime field converted to timestamp to be timezone independent
    • \n
    • TWEAK: Code improvements – utilising WP_Error objects instead of arrays
    • \n
    \n

    5.2.5 – 25/Oct/2023

    \n
      \n
    • SECURITY: On a multisite install, if using the AIOS feature for renaming and hiding the login page, a route existed for an attacker to discover the hidden login page, thus negating the usefulness of the feature. Thanks to Naveen Muthusamy for disclosing this defect.
    • \n
    • FEATURE: Block POST requests that have a blank user-agent and referer
    • \n
    • FEATURE: Added reverse IP Lookup data to the login lockdown notification email
    • \n
    • FIX: Prevent a fatal error when setting up the firewall if the host has disabled the function parse_ini_file
    • \n
    • FIX: Prevent the firewall message store from filling up with unused entries
    • \n
    • FIX: Prevent legitimate Googlebot traffic being blocked on sites where the gethostbyaddr function fails or is disabled
    • \n
    • FIX: An issue that prevented MainWP updates from being performed correctly
    • \n
    • FIX: Prevent user enumeration via the REST API and oEmbed protocol
    • \n
    • FIX: User agent blacklist not matching all strings correctly
    • \n
    • FIX: Logged in user table not showing the correct information
    • \n
    • TWEAK: Improve comment spam detection by using hidden fields and cookies
    • \n
    • TWEAK: Login whitelist suggests both IPv4 and IPv6 addresses to whitelist
    • \n
    • TWEAK: The menu actions in the dashboard admin menu are now processed via AJAX
    • \n
    • TWEAK: Converted checkboxes in the admin menu pages to switches
    • \n
    • TWEAK: Add network_id and site_id column to debug logs table for differentiating logs between sites on multisite
    • \n
    • TWEAK: Combined various user admin menus into a new ‘User Security’ admin menu
    • \n
    • TWEAK: Export configuration filename now reflects the local timezone.
    • \n
    • TWEAK: Improve the UI/UX of the file scanner making way for future improvements
    • \n
    • TWEAK: Redesign the feature manager badges
    • \n
    • TWEAK: Removed various admin menu tabs as previously announced
    • \n
    • TWEAK: Add features that depend on other plugins to the feature manager conditionally
    • \n
    • TWEAK: Added a null check to function that removes wp meta info from scripts and styles src to prevent a PHP deprecation warning
    • \n
    • TWEAK: Audit log date and time are now displayed in the sites timezone
    • \n
    • TWEAK: PHP warning undefined array key REQUEST_METHOD in rule-proxy-comment-posting.php
    • \n
    • TWEAK: When TranslatePress is active, logging out via WooCommerce should not show a 404 page if the “rename login page” setting is on.
    • \n
    \n

    5.2.4 – 16/Aug/2023

    \n
      \n
    • FIX: Ported firewall settings from disabling on upgrade
    • \n
    \n

    5.2.3 – 09/Aug/2023

    \n
      \n
    • FIX: Fatal error “set_value() on null” when the firewall config is missing
    • \n
    • FIX: PHP notices when running under cron
    • \n
    • FIX: Revert change that caused the Brute force login whitelist to show the server IPs and not the users
    • \n
    • TWEAK: Add communication mechanism so that firewall can send data to WordPress
    • \n
    • TWEAK: Remove incorrect mentions of the .htaccess file on PHP Firewall rules
    • \n
    \n

    5.2.2 – 04/Aug/2023

    \n
      \n
    • FEATURE: An allow list of IP addresses which bypass the firewall rules
    • \n
    • FIX: Fix get_class() on null fatal error when updating via ManageWP
    • \n
    • FIX: No such file or directory notice generated by the firewall’s config file
    • \n
    • FIX: Only send the upgrade email if one or more of the ported rules had been enabled
    • \n
    • FIX: Fake Google bots are now blocked if bot server IP address does not resolve to a hostname
    • \n
    • FIX: Google reCaptcha now appears correctly on the WooCommerce checkout page
    • \n
    • FIX: Prevent Woocommerce auto login if manual registration approval is turned on
    • \n
    • FIX: Premium upgrade tab UI overlapping issue.
    • \n
    • FIX: Allow maintenance mode to be controlled via WP-CLI (Premium)
    • \n
    • FIX: Use the correct site id for login success events added to audit log table on Multisite
    • \n
    • FIX: Added missing features to the feature manager list
    • \n
    • FIX: A warning when using the update all command via WP-CLI
    • \n
    • TWEAK: AIOS settings based IP address is now used instead of the REMOTE_ADDR server variable for multiple wrong 2FA code notification
    • \n
    • TWEAK: Added ‘aios_audit_log_record_event’ filter to allow events to not be recorded
    • \n
    • TWEAK: Improve the feature item manager code structure making way for future improvements
    • \n
    • TWEAK: Login whitelist suggests both IPv4 and IPv6 addresses to whitelist.
    • \n
    • TWEAK: Move the ‘Custom rules’ tab from the ‘Firewall’ section to its own tab in the ‘Tools’ section
    • \n
    • TWEAK: Move the ‘Prevent hotlinking’ tab to the ‘File protection’ tab in the ‘Filesystem Security’ menu
    • \n
    • TWEAK: Moved all CAPTCHA settings to the ‘CAPTCHA settings’ tab in the ‘Brute Force’ menu
    • \n
    • TWEAK: Moved the ‘Password tool’ tab to the ‘Tools’ admin menu
    • \n
    • TWEAK: Moved the ‘Visitor lockout’ tab to the ‘Tools’ admin menu
    • \n
    • TWEAK: Moved the ‘User registration honeypot’ tab to the ‘Brute force’ admin menu
    • \n
    • TWEAK: Remove ‘Account activity table’ as these entries are also recorded in the audit log
    • \n
    • TWEAK: Removed the ‘Failed login records’ tab as previously announced, these are now recorded in the audit log
    • \n
    • TWEAK: Improve list table code performance
    • \n
    • TWEAK: Removed use of $_GET, $_POST, $_REQUEST from all template files making way for future improvements
    • \n
    \n

    5.2.1 – 12/Jul/2023

    \n
      \n
    • FIX: Include helper class file from loader
    • \n
    • TWEAK: Conditionally load TFA block JavaScript
    • \n
    \n

    5.2.0 – 10/Jul/2023

    \n
      \n
    • SECURITY: Remove authentication data from the stacktrace before saving to the database. This defect meant that a site administrator had the potential, between releases 5.1.9 to 5.2.0 (which purges the existing data), to know what site users’ passwords are. This information has limited value (an admin can already reset anyone’s password) except insofar as the passwords may be re-used by users on other sites. In that “hostile admin” scenario, your site has other problems (since the hostile admin has a whole raft of equivalent ways of causing mischief to users, especially if not on multisite where a site admin is potentially not a super admin and may not be able to install or configure plugins). This changelog has been expanded in response to incorrect reports which suggested a wider problem (for example, they did not mention that the attacker needs to already be logged in as an admin to read the log, or that upgrading to 5.2.0 deletes the affected data).
    • \n
    • SECURITY: Set tighter restrictions on what subsite admins can do in a multisite.
    • \n
    • FIX: After editing a file reset permissions back to the original permissions
    • \n
    • FIX: Corrected some broken links in the plugin
    • \n
    • FIX: Fatal error: cannot declare class
    • \n
    • FIX: Normalise all arguments in the stacktrace
    • \n
    • FIX: Wrong login entries added to login activity table on multisite when user logs into subsite they don’t belong to.
    • \n
    • FIX: Too many redirects error for forced logout users solved
    • \n
    • TWEAK: For Cronjob, WP CLI and AIOS_DISABLE_EXTERNAL_IP_ADDR defined constant do not use external services for user IP addresses. Silenced api.ipify.org request failed warning.
    • \n
    • TWEAK: Reset password page missing translation and generate password button added for renamed login page
    • \n
    • TWEAK: Added ‘aios_audit_log_event_user_ip’ filter to allow filtering of IP addresses in the audit log
    • \n
    • TWEAK: Added action hook “aios_reset_all_settings” for reset all settings.
    • \n
    • TWEAK: Renamed login page to have language change dropdown and other tweaks as per the WordPress 6.2
    • \n
    \n

    5.1.9 – 09/May/2023

    \n
      \n
    • FEATURE: IP addresses – Blacklist manager functionality based on PHP instead of .htaccess rules. Added AIOS_DISABLE_BLACKLIST_IP_MANAGER constant, Define it in your wp-config.php to disable IP Blacklist manager.
    • \n
    • FEATURE: Detect spambots posting comments and discard it completely or mark as spam.
    • \n
    • FEATURE: Encrypt TFA secret keys that are stored in the database (extra protection in case of your database being hacked)
    • \n
    • FEATURE: Added a “Delete all” and “Delete filtered” bulk action to the audit log table
    • \n
    • FIX: Prevent Cloudflare Turnstile being added to login forms when no credentials where set
    • \n
    • FIX: Change where the audit log event handler is loaded to prevent an error on plugin deletion
    • \n
    • FIX: Fix context class checks to support cli
    • \n
    • TWEAK: Multisite super admin can access the subsite dashboard without login again if salt postfix enabled
    • \n
    • TWEAK: Captcha JavaScript file is unnecessarily loaded on some site pages if comment captcha or custom login captcha enabled
    • \n
    • TWEAK: Change some nonce checks to use our internal function to check user capability and nonces
    • \n
    • TWEAK: User registrations and successful logins are now recorded in the audit log
    • \n
    • TWEAK: Added a commands class and refactored AJAX handlers
    • \n
    • TWEAK: Captcha verification to prevent conflicts with some plugins that recall the WordPress authentication code
    • \n
    • TWEAK: Improve database table prefix feature UI.
    • \n
    • TWEAK: WordPress core updates are now recorded in the audit log
    • \n
    • TWEAK: Translation updates are now recorded in the audit log
    • \n
    • TWEAK: Add an entity changed event to the audit log when upgrader information is not available
    • \n
    • TWEAK: Automated emails sent by AIOS that failed to send due to from address
    • \n
    \n

    5.1.8 – 11/April/2023

    \n
      \n
    • FIX: 404 detection – Individual record blacklisting, delete, temp block actions stopped working in 5.1.7
    • \n
    • FIX: Uncaught fatal error on null ‘set_value’
    • \n
    • FIX: Remove audit log event handler actions on plugin deletion to prevent an error
    • \n
    • FIX: Remove some audit log event handler on plugin deletion to prevent an error
    • \n
    • FIX: Get correct wp-config path when installed in a subdirectory
    • \n
    • TWEAK: AIOS_Helper::request_remote timed out exception ignored.
    • \n
    • TWEAK: Requests_IPv6 class name deprecated in WordPress 6.2.
    • \n
    • TWEAK: Failed login attempts are now recorded in the audit log
    • \n
    \n

    5.1.7 – 24/March/2023

    \n
      \n
    • FIX: Prevent fatal error when calling get_server_detected_user_ip_address() when the firewall is not setup
    • \n
    • TWEAK: Clarify dashboard notice title and change image.
    • \n
    \n

    5.1.6 – 21/March/2023

    \n
      \n
    • FEATURE: Added an audit log
    • \n
    • FEATURE: Add salt postfix option to improve your site’s security
    • \n
    • FEATURE: Shared library that can be used from the firewall.
    • \n
    • FIX: Rename login slug used like wp-login-RANDOM_SUFFIX showing 404 page issue solved and code clean up for multisite activation.
    • \n
    • FIX: Divi child theme conflict – Call to undefined function et_builder_get_fonts() in functions.php on line 208 solved.
    • \n
    • FIX: Captcha settings tab in multisite installation for subsites not showing
    • \n
    • FIX: Cron reschedule event error for hook aios_15_minutes_cron_event if plugin deactivated or uninstalled
    • \n
    • TWEAK: Stop user enumeration now shows 403 forbidden error code instead of 500 server error
    • \n
    • TWEAK: PHP 8.1 warning rawurldecode passing null instead type string is deprecated for block request string 6g rule
    • \n
    • TWEAK: Code clean up for disable cookie based brute force constant as rule moved to firewall
    • \n
    • TWEAK: Comment spam IP monitoring page UI
    • \n
    • TWEAK: Updated seasonal notices
    • \n
    • TWEAK: Improve internal code structure making way for future improvements
    • \n
    • TWEAK: Remove mention of the 6g firewall rules being .htaccess based as they are now php based
    • \n
    • TWEAK: Added new internal function to check user capability and nonces
    • \n
    • TWEAK: Improve config code with inline saving.
    • \n
    • TWEAK: Allow audit log to be filtered and exported to CSV
    • \n
    \n

    5.1.5 – 13/February/2023

    \n
      \n
    • FEATURE: Added Cloudflare Turnstile CAPTCHA support
    • \n
    • FIX: Notices about undefined array key HTTP_USER_AGENT solved.
    • \n
    • FIX: New v5 features not saved in export file and not properly reset after uninstallation.
    • \n
    • FIX: File permission change being applied to the last record not selected one. Also, no longer change permissions when they are already tighter than the suggested.
    • \n
    • FIX: Fatal error ‘Call to a member function contains_contents() on null’
    • \n
    • TWEAK: Removed wrong information about login whitelist being implemented via htaccess.
    • \n
    • TWEAK: Refactoring settings tasks for WP CLI AIOS premium commands.
    • \n
    • TWEAK: Page load performance issue due to incompatible tfa premium plugin active check improved.
    • \n
    • TWEAK: Make sure translation domain is registered before attempting to use it
    • \n
    • TWEAK: Replaced click with press in text because users could be on mobile etc and not using a mouse.
    • \n
    • TWEAK: Registration, …
    • \n
    \n", "description": "

    THE TOP RATED WORDPRESS SECURITY AND FIREWALL PLUGIN

    \n

    All-in-One Security (AIOS) is a WordPress security plugin from the same, trusted team that brought you UpdraftPlus.

    \n

    It’s called ‘All-In-One’ because it’s packed full of ways to keep your WordPress website(s) safe and secure.

    \n

    It includes:

    \n

    Login security features keep bots at bay. Lock out users based on a configurable number of login attempts, get two-factor authentication and more.

    \n

    File and database security. Get notified of file changes that occur outside of normal operations. Block access to key files and scan files and folders to spot insecure permissions.

    \n

    Firewall. Get PHP, .htaccess and 6G firewall rules courtesy of Perishable Press. Spot and block fake Google Bots and more!

    \n

    Spam prevention. Prevent annoying spam comments and reduce unnecessary load on the server. Automatically and permanently block IP addresses that exceed a set number of spam comments.

    \n

    Audit log. View events happening on your WordPress website. Find out if a plugin or theme has been added, removed, updated and more.

    \n

    WHY ALL-IN-ONE SECURITY?

    \n

    AIOS has a near-perfect 4.7 / 5-star user rating across more than 1 million installs.

    \n

    Great for beginners and experts alike. AIOS guides you logically and clearly through each of its features which are all clearly explained. Security features are marked as basic, intermediate and advanced. Each step increases your security score. Turn them on and watch your protection grow!

    \n

    We have a large support team of software developers. That means we have the availability and the skillset to help you with the trickiest of queries.

    \n

    We comb the WordPress plugin directory for support tickets daily – most queries are responded to within 24 hours.

    \n

    Excellent plugin with numerous well-thought-out options for making a website more secure. I have been using it for years and am very happy with it. I recently had a small problem setting up a website and – even as a non-premium user – I received support very quickly. Highly recommended!

    \n

    For even more ways to stay safe and secure, upgrade to AIOS Premium – it packs a punch security-wise, whilst being extremely cost-competitive.

    \n

    LOGIN SECURITY

    \n

    Two-factor authentication (TFA) – Require TFA for specific user roles. Supports Google Authenticator, Microsoft Authenticator, Authy, and many more.

    \n

    Detect and manage ‘admin’ usernames – Identify default ‘admin’ usernames and guide users to change them to protect against brute force attacks.

    \n

    Identify and correct identical login and display names – Detect cases where the display name matches the username and provide guidance to improve login security.

    \n

    Prevent user enumeration – Block unauthorised access to URLs that can reveal sensitive information such as usernames or other details.

    \n

    Control login attempts – Prevent brute force attacks by limiting the number of failed login attempts. Choose how many login attempts are allowed, set lockout durations, and more.

    \n

    Force user logout – Automatically log out users after a specified period of time. Unattended sessions are closed, reducing the risk of unauthorised access.

    \n

    Manually approve new registrations – Review and approve new user registrations to prevent spam and fake sign-ups.

    \n

    Enhance WordPress salt security – Adds 64 extra characters to WordPress salts, rotating them weekly. Makes cracking passwords virtually impossible, even if your database is stolen.

    \n

    Plugin Support

    \n
      \n
    • If you have a question or problem with the All-In-One Security plugin, post it on the support forum and we will help you. Premium customers can log queries directly with the team via https://teamupdraft.com/all-in-one-security/
      \nMonitor and manage active sessions – If a user is logged in who shouldn’t be, log them out or add them to a blacklist.
    • \n
    \n

    SPAM PREVENTION

    \n

    Block spam coming from bots – Reduce the load on your server and improve the user experience by automatically blocking spam comments from bots.

    \n

    Monitor spam IP addresses – Monitor the IP addresses of people or bots leaving spam comments. Choose which ones to block based on a configurable number of comments left.

    \n

    FILE / DATABASE Security

    \n

    Scan and fix file permissions – Scan for insecure file permissions. Click once to fix issues and safeguard critical files and folders.

    \n

    Disable PHP file editing – Disable editing of PHP files (such as plugins and themes) via the dashboard. It’s often the first tool that attackers use as it allows for code execution.

    \n

    Protect sensitive files – Prevent access to files like readme.html that might reveal information about your WordPress installation.

    \n

    File change scanner – Get notified of any file changes which occur on your system. Exclude files and folders which change as part of normal operations.

    \n

    Prevent image hotlinking – Prevent other websites from displaying your images via hotlinking and protect server bandwidth.

    \n

    Secure database backups – Perform a database backup via UpdraftPlus from AIOS. Change the default ‘wp_’ prefix to hide your WordPress database from hackers.

    \n

    FIREWALL

    \n

    Get .htaccess firewall rules – Deny access to the .htaccess and wp-config.php files. Disable the server signature and limit file uploads to a configurable size.**

    \n

    Block access to the debug.log file and prevent Apache servers from listing the contents of a directory when an index.php file is not present

    \n

    Get PHP firewall rules – PHP firewall rules prevent malicious users from exploiting well-known vulnerabilities in XML-RPC. Safeguard your content by disabling RSS and Atom feeds and avoid cross-site scripting (XSS) attacks.
    \nBlock fake Google bots and POST requests made by bots – Block fake Google bots and stop bots from making POST requests by blocking IP addresses where the user-agent and referrer fields are blank.

    \n

    Utilise 6G firewall rules – Employ flexible blacklist rules to reduce the number of malicious URL requests that hit your website (courtesy of Perishable Press).

    \n

    And more – Blacklist (and whitelist) IP ranges and user agents and block unauthorized access to data by disabling REST API access for non-logged-in requests.

    \n

    TWO-FACTOR AUTHENTICATION ENHANCED [Premium]

    \n

    Two-factor authentication is included in the free plugin. Upgrade to Premium if you’d like to:
    \nRequire TFA after a set time period – Mandate TFA for all admins or other roles after their accounts reach a specified age.

    \n

    Control how often TFA is required – Set TFA to be required after a certain number of days on trusted devices instead of every login.

    \n

    Customise design layout – Adjust the TFA design to match your website’s existing layout and branding.
    \nEmergency codes – Generate one-time use emergency codes to regain access if you lose your TFA device.

    \n

    WordPress Multisite Compatible – Ensure compatibility with WordPress multisite networks and their sub-sites for consistent TFA application.

    \n

    Integration with login forms – Integrate TFA with various login forms, including WooCommerce, Affiliates-WP, Elementor Pro, bbPress, and ‘Theme My Login’ without additional coding.

    \n

    SMART 404 BLOCKING [Premium]

    \n

    Block IPs based on 404 errors – Detect hackers probing your URLs via script and bots by the 404 errors they leave behind.

    \n

    Smart 404 Configuration – Set a figure for the maximum number of 404 events allowed before an IP address is blocked. Choose a time period within which the 404 events must occur (e.g., 10 errors within 10 minutes).

    \n

    Smart 404 block by URL string – Instantly block an IP address if a 404 event includes a specific URL string.

    \n

    Smart 404 whitelisting – Prevent particular IP addresses from being permanently blocked due to 404 events.

    \n

    COUNTRY BLOCKING [Premium]

    \n

    Block traffic to the entire site or to specific pages or posts – Useful if you’re an e-commerce site and you want to block sales to some countries for shipping or tax reasons.

    \n

    Whitelist some users from blocked countries – Whitelist IP addresses or IP ranges even if they are part of a blocked country.

    \n

    MALWARE SCANNING [Premium]

    \n

    Automatic malware scanning – Detect and protect against the latest malware, trojans, and spyware.
    \nAlerts you to blacklisting by search engines – Monitor your site for blacklisting by search engines due to malicious code.

    \n

    Response time monitoring – Keep track of your website’s response time to identify and address any performance issues.

    \n

    Uptime monitoring – Checks your website’s uptime every 5 minutes and alerts you immediately if your site or server goes down.

    \n

    Advice and malware removal – Need hands-on advice and support for malware removal? Our team of genuine cybersecurity experts is here to help.

    \n

    Notification if something’s amiss – Receive notifications about any issues with your site so you can address problems before they escalate.

    \n

    Plugin Support

    \n

    If you have a question or problem with the All-In-One Security plugin, post it on the support forum and we will help you. Premium customers can log queries directly with the team via https://teamupdraft.com/all-in-one-security

    \n

    Developers

    \n
      \n
    • If you are a developer and you need some extra hooks or filters for this plugin then let us know.
    • \n
    \n

    Translations

    \n
      \n
    • All-In-One Security plugin can be translated to any language.
    • \n
    \n

    Currently available translations:

    \n
      \n
    • English
    • \n
    • German
    • \n
    • Spanish
    • \n
    • French
    • \n
    • Hungarian
    • \n
    • Italian
    • \n
    • Swedish
    • \n
    • Russian
    • \n
    • Chinese
    • \n
    • Portuguese (Brazil)
    • \n
    • Persian
    • \n
    \n

    Privacy Policy

    \n

    This plugin may collect IP addresses for security reasons such as mitigating brute force login threats and malicious activity.

    \n

    The collected information is stored on your server. No information is transmitted to third parties or remote server locations.

    \n

    Usage

    \n

    Go to the settings menu after you activate the plugin and follow the instructions.

    \n

    Usage

    \n

    Go to the settings menu after you activate the plugin and follow the instructions.

    \n", "screenshots": "
    1. \"Features

      Features list.

    ", "installation": "

    To begin making your WordPress site more secure:

    \n
      \n
    1. Upload the ‘all-in-one-wp-security.zip’ file from the Plugins->Add New page in the WordPress administration panel.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to Settings menu under ‘AIOS’ and start activating the security features of the plugin.
    6. \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.0.zip", "2.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.9.zip", "3.0": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.4.zip", "3.6": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.6.zip", "2.1.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.1.1.zip", "2.8.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.2.8.1.zip", "3.5.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.5.1.zip", "3.7.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.7.1.zip", "3.7.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.7.3.zip", "3.7.5": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.7.5.zip", "3.7.6": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.7.6.zip", "3.7.7": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.7.7.zip", "3.8.7": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.8.7.zip", "3.9.5": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.9.5.zip", "3.9.6": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.9.6.zip", "3.9.9": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.3.9.9.zip", "4.0.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.0.1.zip", "4.0.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.0.3.zip", "4.0.7": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.1.0.zip", "4.1.4": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.1.4.zip", "4.1.7": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.1.7.zip", "4.2.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.2.2.zip", "4.2.8": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.2.8.zip", "4.2.9": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.2.9.zip", "4.3.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.3.1.zip", "4.4.0": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.4.0.zip", "4.4.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.4.2.zip", "4.4.4": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.4.4.zip", "4.4.8": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.4.8.zip", "4.4.9": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.4.9.zip", "5.0.0": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.0.8.zip", "5.0.9": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.0.9.zip", "5.1.0": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.6.zip", "5.1.7": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.7.zip", "5.1.8": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.8.zip", "5.1.9": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.9.zip", "5.2.0": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.2.4.zip", "5.2.5": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.2.5.zip", "5.2.6": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.2.6.zip", "5.2.7": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.2.7.zip", "5.2.8": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.2.8.zip", "5.2.9": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.2.9.zip", "5.3.0": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.3.3.zip", "5.3.4": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.3.4.zip", "5.3.5": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.3.5.zip", "5.3.6": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.3.6.zip", "5.3.7": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.3.7.zip", "5.3.8": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.3.8.zip", "5.4.0": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.4.0.zip", "5.4.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.4.2.zip", "5.4.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.4.3.zip", "trunk": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.zip", "4.4.10": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.4.10.zip", "4.4.11": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.4.11.zip", "4.4.12": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.4.12.zip", "5.3.10": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.3.10.zip", "4.3.7.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.3.7.1.zip", "4.3.7.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.3.7.2.zip", "4.3.8.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.3.8.1.zip", "4.3.8.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.3.8.2.zip", "4.3.8.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.3.8.3.zip", "4.3.9.1": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.3.9.1.zip", "4.3.9.2": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.3.9.2.zip", "4.3.9.3": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.3.9.3.zip", "4.3.9.4": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.3.9.4.zip"}, "downloaded": 34280823, "description": "

    THE TOP RATED WORDPRESS SECURITY AND FIREWALL PLUGIN

    \n

    All-in-One Security (AIOS) is a WordPress security plugin from the same, trusted team that brought you UpdraftPlus.

    \n

    It’s called ‘All-In-One’ because it’s packed full of ways to keep your WordPress website(s) safe and secure.

    \n

    It includes:

    \n

    Login security features keep bots at bay. Lock out users based on a configurable number of login attempts, get two-factor authentication and more.

    \n

    File and database security. Get notified of file changes that occur outside of normal operations. Block access to key files and scan files and folders to spot insecure permissions.

    \n

    Firewall. Get PHP, .htaccess and 6G firewall rules courtesy of Perishable Press. Spot and block fake Google Bots and more!

    \n

    Spam prevention. Prevent annoying spam comments and reduce unnecessary load on the server. Automatically and permanently block IP addresses that exceed a set number of spam comments.

    \n

    Audit log. View events happening on your WordPress website. Find out if a plugin or theme has been added, removed, updated and more.

    \n

    WHY ALL-IN-ONE SECURITY?

    \n

    AIOS has a near-perfect 4.7 / 5-star user rating across more than 1 million installs.

    \n

    Great for beginners and experts alike. AIOS guides you logically and clearly through each of its features which are all clearly explained. Security features are marked as basic, intermediate and advanced. Each step increases your security score. Turn them on and watch your protection grow!

    \n

    We have a large support team of software developers. That means we have the availability and the skillset to help you with the trickiest of queries.

    \n

    We comb the WordPress plugin directory for support tickets daily – most queries are responded to within 24 hours.

    \n

    Excellent plugin with numerous well-thought-out options for making a website more secure. I have been using it for years and am very happy with it. I recently had a small problem setting up a website and – even as a non-premium user – I received support very quickly. Highly recommended!

    \n

    For even more ways to stay safe and secure, upgrade to AIOS Premium – it packs a punch security-wise, whilst being extremely cost-competitive.

    \n

    LOGIN SECURITY

    \n

    Two-factor authentication (TFA) – Require TFA for specific user roles. Supports Google Authenticator, Microsoft Authenticator, Authy, and many more.

    \n

    Detect and manage ‘admin’ usernames – Identify default ‘admin’ usernames and guide users to change them to protect against brute force attacks.

    \n

    Identify and correct identical login and display names – Detect cases where the display name matches the username and provide guidance to improve login security.

    \n

    Prevent user enumeration – Block unauthorised access to URLs that can reveal sensitive information such as usernames or other details.

    \n

    Control login attempts – Prevent brute force attacks by limiting the number of failed login attempts. Choose how many login attempts are allowed, set lockout durations, and more.

    \n

    Force user logout – Automatically log out users after a specified period of time. Unattended sessions are closed, reducing the risk of unauthorised access.

    \n

    Manually approve new registrations – Review and approve new user registrations to prevent spam and fake sign-ups.

    \n

    Enhance WordPress salt security – Adds 64 extra characters to WordPress salts, rotating them weekly. Makes cracking passwords virtually impossible, even if your database is stolen.

    \n

    Plugin Support

    \n
      \n
    • If you have a question or problem with the All-In-One Security plugin, post it on the support forum and we will help you. Premium customers can log queries directly with the team via https://teamupdraft.com/all-in-one-security/
      \nMonitor and manage active sessions – If a user is logged in who shouldn’t be, log them out or add them to a blacklist.
    • \n
    \n

    SPAM PREVENTION

    \n

    Block spam coming from bots – Reduce the load on your server and improve the user experience by automatically blocking spam comments from bots.

    \n

    Monitor spam IP addresses – Monitor the IP addresses of people or bots leaving spam comments. Choose which ones to block based on a configurable number of comments left.

    \n

    FILE / DATABASE Security

    \n

    Scan and fix file permissions – Scan for insecure file permissions. Click once to fix issues and safeguard critical files and folders.

    \n

    Disable PHP file editing – Disable editing of PHP files (such as plugins and themes) via the dashboard. It’s often the first tool that attackers use as it allows for code execution.

    \n

    Protect sensitive files – Prevent access to files like readme.html that might reveal information about your WordPress installation.

    \n

    File change scanner – Get notified of any file changes which occur on your system. Exclude files and folders which change as part of normal operations.

    \n

    Prevent image hotlinking – Prevent other websites from displaying your images via hotlinking and protect server bandwidth.

    \n

    Secure database backups – Perform a database backup via UpdraftPlus from AIOS. Change the default ‘wp_’ prefix to hide your WordPress database from hackers.

    \n

    FIREWALL

    \n

    Get .htaccess firewall rules – Deny access to the .htaccess and wp-config.php files. Disable the server signature and limit file uploads to a configurable size.**

    \n

    Block access to the debug.log file and prevent Apache servers from listing the contents of a directory when an index.php file is not present

    \n

    Get PHP firewall rules – PHP firewall rules prevent malicious users from exploiting well-known vulnerabilities in XML-RPC. Safeguard your content by disabling RSS and Atom feeds and avoid cross-site scripting (XSS) attacks.
    \nBlock fake Google bots and POST requests made by bots – Block fake Google bots and stop bots from making POST requests by blocking IP addresses where the user-agent and referrer fields are blank.

    \n

    Utilise 6G firewall rules – Employ flexible blacklist rules to reduce the number of malicious URL requests that hit your website (courtesy of Perishable Press).

    \n

    And more – Blacklist (and whitelist) IP ranges and user agents and block unauthorized access to data by disabling REST API access for non-logged-in requests.

    \n

    TWO-FACTOR AUTHENTICATION ENHANCED [Premium]

    \n

    Two-factor authentication is included in the free plugin. Upgrade to Premium if you’d like to:
    \nRequire TFA after a set time period – Mandate TFA for all admins or other roles after their accounts reach a specified age.

    \n

    Control how often TFA is required – Set TFA to be required after a certain number of days on trusted devices instead of every login.

    \n

    Customise design layout – Adjust the TFA design to match your website’s existing layout and branding.
    \nEmergency codes – Generate one-time use emergency codes to regain access if you lose your TFA device.

    \n

    WordPress Multisite Compatible – Ensure compatibility with WordPress multisite networks and their sub-sites for consistent TFA application.

    \n

    Integration with login forms – Integrate TFA with various login forms, including WooCommerce, Affiliates-WP, Elementor Pro, bbPress, and ‘Theme My Login’ without additional coding.

    \n

    SMART 404 BLOCKING [Premium]

    \n

    Block IPs based on 404 errors – Detect hackers probing your URLs via script and bots by the 404 errors they leave behind.

    \n

    Smart 404 Configuration – Set a figure for the maximum number of 404 events allowed before an IP address is blocked. Choose a time period within which the 404 events must occur (e.g., 10 errors within 10 minutes).

    \n

    Smart 404 block by URL string – Instantly block an IP address if a 404 event includes a specific URL string.

    \n

    Smart 404 whitelisting – Prevent particular IP addresses from being permanently blocked due to 404 events.

    \n

    COUNTRY BLOCKING [Premium]

    \n

    Block traffic to the entire site or to specific pages or posts – Useful if you’re an e-commerce site and you want to block sales to some countries for shipping or tax reasons.

    \n

    Whitelist some users from blocked countries – Whitelist IP addresses or IP ranges even if they are part of a blocked country.

    \n

    MALWARE SCANNING [Premium]

    \n

    Automatic malware scanning – Detect and protect against the latest malware, trojans, and spyware.
    \nAlerts you to blacklisting by search engines – Monitor your site for blacklisting by search engines due to malicious code.

    \n

    Response time monitoring – Keep track of your website’s response time to identify and address any performance issues.

    \n

    Uptime monitoring – Checks your website’s uptime every 5 minutes and alerts you immediately if your site or server goes down.

    \n

    Advice and malware removal – Need hands-on advice and support for malware removal? Our team of genuine cybersecurity experts is here to help.

    \n

    Notification if something’s amiss – Receive notifications about any issues with your site so you can address problems before they escalate.

    \n

    Plugin Support

    \n

    If you have a question or problem with the All-In-One Security plugin, post it on the support forum and we will help you. Premium customers can log queries directly with the team via https://teamupdraft.com/all-in-one-security

    \n

    Developers

    \n
      \n
    • If you are a developer and you need some extra hooks or filters for this plugin then let us know.
    • \n
    \n

    Translations

    \n
      \n
    • All-In-One Security plugin can be translated to any language.
    • \n
    \n

    Currently available translations:

    \n
      \n
    • English
    • \n
    • German
    • \n
    • Spanish
    • \n
    • French
    • \n
    • Hungarian
    • \n
    • Italian
    • \n
    • Swedish
    • \n
    • Russian
    • \n
    • Chinese
    • \n
    • Portuguese (Brazil)
    • \n
    • Persian
    • \n
    \n

    Privacy Policy

    \n

    This plugin may collect IP addresses for security reasons such as mitigating brute force login threats and malicious activity.

    \n

    The collected information is stored on your server. No information is transmitted to third parties or remote server locations.

    \n

    Usage

    \n

    Go to the settings menu after you activate the plugin and follow the instructions.

    \n

    Usage

    \n

    Go to the settings menu after you activate the plugin and follow the instructions.

    \n", "donate_link": "https://david.dw-perspective.org.uk/donate", "num_ratings": 1672, "screenshots": {"1": {"src": "https://ps.w.org/all-in-one-wp-security-and-firewall/assets/screenshot-1.png?rev=2798307", "caption": "Features list."}}, "support_url": "https://wordpress.org/support/plugin/all-in-one-wp-security-and-firewall/", "contributors": {"pmbaldha": {"avatar": "https://secure.gravatar.com/avatar/c351da0b667baf3599ca3492cb29b3f872fca04ace42e252cd8bdc8f9eb059e9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pmbaldha/", "display_name": "Prashant Baldha"}, "ruhul-amin": {"avatar": "https://secure.gravatar.com/avatar/4be920c21bce9d771eed3b78b909c25586abf1f3a4c8ad4ff9f7205fa302571d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ruhul-amin/", "display_name": "Ruhul Amin"}, "mbrsolution": {"avatar": "https://secure.gravatar.com/avatar/91b93a12b1c96b586542f804178b069d2547325521e022eb35f0e67fc39e548d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mbrsolution/", "display_name": "mbrsolution"}, "wpsolutions": {"avatar": "https://secure.gravatar.com/avatar/67bdb0fb93dd34639297109583c9f1b46ef386b4cd7390081ce068455a35e8c8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpsolutions/", "display_name": "wpsolutions"}, "davidanderson": {"avatar": "https://secure.gravatar.com/avatar/8cf7655071f82970f9635a0c7e7646551756c333b57166083e506a72cad98916?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/davidanderson/", "display_name": "David Anderson / Team Updraft"}, "peter-petreski": {"avatar": "https://secure.gravatar.com/avatar/8833c699a465f77c959bf460a883ddb5dd01355ab2ac7e70c6304e44fb9efe97?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/peter-petreski/", "display_name": "Peter Petreski"}, "tips-and-tricks-hq": {"avatar": "https://secure.gravatar.com/avatar/5b95b5333b37765fe6c9cb3969b6e146f408942663415f7309e8a4a3b90ef72c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tips-and-tricks-hq/", "display_name": "Tips and Tricks HQ"}}, "last_updated": "2025-09-09 2:49pm GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.4.3.zip", "author_profile": "https://profiles.wordpress.org/davidanderson/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "
      \n
    • 5.4.3: Added the ability to enforce strong passwords along with a few bug fixes and UI changes.
    • \n
    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-eefc-7363-92d6-86e0e6c0928b", "name": "All-In-One Security (AIOS) – Security and Firewall", "slug": "all-in-one-wp-security-and-firewall", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1757429340, "version": "5.4.3"}, "support_threads": 39, "requires_plugins": [], "short_description": "Protect your website investment with All-In-One Security (AIOS) – a comprehensive and easy to use security plugin designed especially for WordPress.", "author_block_count": 1, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 35}'); -INSERT INTO public.plugins VALUES ('019a30c1-63d7-7104-a483-b29bb6cdc37e', 'antispam-bee', 'Antispam Bee', 'Sophisticated antispam plugin for effective daily comment and trackback spam-fighting. Built with data protection and privacy in mind.', '

    Say Goodbye to comment spam on your WordPress blog or website. Antispam Bee blocks spam comments and trackbacks effectively, without captchas and without sending personal information to third party services. It is free of charge, ad-free and 100% GDPR compliant.

    -

    Feature/Settings Overview

    -
      -
    • Trust approved commenters.
    • -
    • Trust commenters with a Gravatar.
    • -
    • Consider the comment time.
    • -
    • Allow comments only in a certain language.
    • -
    • Block or allow commenters from certain countries.
    • -
    • Treat BBCode links as spam.
    • -
    • Use regular expressions.
    • -
    • Search local spam database for commenters previously marked as spammers.
    • -
    • Notify admins by e-mail about incoming spam.
    • -
    • Delete existing spam after n days.
    • -
    • Limit approval to comments/pings (will delete other comment types).
    • -
    • Select spam indicators to send comments to deletion directly.
    • -
    • Optionally exclude trackbacks and pingbacks from spam detection.
    • -
    • Optionally spam-check comment forms on archive pages.
    • -
    • Display spam statistics on the dashboard, including daily updates of spam detection rate and a total of blocked spam comments.
    • -
    -

    Support

    - -

    Contribute

    -
      -
    • Active development of this plugin is handled on GitHub.
    • -
    • Pull requests for documented bugs are highly appreciated.
    • -
    • If you think you’ve found a bug (e.g. you’re experiencing unexpected behavior), please post at the support forums first.
    • -
    • If you want to help us translate this plugin you can do so on WordPress Translate.
    • -
    -

    Credits

    - -', '2.11.8', 'pluginkollektiv', '4.6', '5.2', '6.8.3', 'https://downloads.wordpress.org/plugin/antispam-bee.2.11.8.zip', '2009-01-10 00:00:00+00', '2025-07-22 11:23:00+00', 'https://profiles.wordpress.org/pluginkollektiv/', 96, 224, 10, 7, 700000, 10752231, 'https://antispambee.pluginkollektiv.org/', 'https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW', NULL, NULL, 'https://wordpress.org/support/plugin/antispam-bee/', 'https://wordpress.org/plugins/antispam-bee/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Antispam Bee", "slug": "antispam-bee", "tags": {"antispam": "antispam", "comments": "comments", "anti-spam": "anti-spam", "spam-filter": "spam filter", "spam-protection": "spam protection"}, "added": "2009-01-10", "icons": {"1x": "https://ps.w.org/antispam-bee/assets/icon-128x128.png?rev=2898402", "2x": "https://ps.w.org/antispam-bee/assets/icon-256x256.png?rev=2898402"}, "author": "pluginkollektiv", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/antispam-bee/assets/banner-772x250.png?rev=2898402", "high": "https://ps.w.org/antispam-bee/assets/banner-1544x500.png?rev=2898402"}, "ratings": {"1": 8, "2": 2, "3": 1, "4": 2, "5": 211}, "version": "2.11.8", "homepage": "https://antispambee.pluginkollektiv.org/", "requires": "4.6", "sections": {"faq": "\n
    \nDoes Antispam Bee prevents spam registrations or protects form plugins?\n\n

    \n

    Antispam Bee works best with default WordPress comments. It does not help to protect form plugins and does not prevent spam registrations. Hopefully we can provide better hooks for third party plugins to use Antispam Bee to fill this gap in the forthcoming new major version.

    \n

    \n
    \nDoes Antispam Bee work with Jetpack, wpDiscuz, Disqus Comments and similar comment plugins?\n\n

    \n

    Antispam Bee works best with default WordPress comments. It is not compatible with Jetpack, wpDiscuz or Disqus Comments as those plugins load a new comment form within an iframe. Thus Antispam Bee can not access the comment form directly.

    \n

    \n
    \nDoes Antispam Bee work with AJAX comment plugins or similar theme features?\n\n

    \n

    Whether Antispam Bee works with a comment form submitted via AJAX depends on how the AJAX request is made. If the request goes to the file that usually also receives the comments, Antispam Bee could work with it out of the box (the WP Ajaxify Comments plugin does this, for example).

    \n

    If the comments are sent to the admin-ajax.php, the antispam_bee_disallow_ajax_calls filter must be used to run ASB for requests to that file as well. If the script does not send all form data to the file, but only some selected ones, further customization is probably necessary, as exemplified in this post by Torsten Landsiedel (in German).

    \n

    \n
    \nDoes Antispam Bee store any private user data, and is it compliant with GDPR?\n\n

    \n

    Antispam Bee is developed in Europe. You might have heard we can be a bit nitpicky over here when it comes to privacy. The plugin does not save private user data and is 100% compliant with GDPR.

    \n

    \n
    \nWill I have to edit any theme templates to get Antispam Bee to work?\n\n

    \n

    No, the plugin works as is. You may want to configure your favorite settings, though.

    \n

    \n
    \nDoes Antispam Bee work with shortened IPs?\n\n

    \n

    Generally yes. However, commissioning the Antispam Bee plugin for canceled or shortened IP addresses in comment metadata is not recommended. Because the name and the e-mail address of the comments are not unique, an IP address is the only reliable measure. The more complete the stored IP addresses, the more reliable the assignment or detection of spam.

    \n

    \n
    \nHow can I submit undetected spam?\n\n

    \n

    If the antispam plugin has passed some spam comments, these comments can be reported for analysis. A Google table was created for this purpose.

    \n

    \n
    \nAntispam Bee with Varnish?\n\n

    \n

    If WordPress is operated with Apache + Varnish, the actual IP address of the visitors does not appear in WordPress. Accordingly the Antispam-Plugin lacks the base for the correct functionality. An adaptation in the Varnish configuration file /etc/varnish/default.vcl provides a remedy and forwards the original (not from Apache) IP address in the HTTP header X-Forwarded-For:

    \n
    \n

    if (req.restarts == 0) {
    \n set req.http.X-Forwarded-For = client.ip;
    \n }

    \n
    \n

    \n
    \nAre there some paid services or limitations?\n\n

    \n

    No, Antispam Bee is free forever, for both private and commercial projects. You can use it on as many sites as you want. There is no limitation to the number of sites you use the plugin on.

    \n

    A complete documentation is available on pluginkollektiv.org.

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team helps validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mark ball (mballew) on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very Well Done, easy to get started, clear nav, easy easy easy, thank you.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Just Works ™

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy xpil on July 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin does exactly what you are expecting it to do: it stops comment spam. It is non-intrusive and extremely efficient. I haven''t seen a single spam comment on my blog for many years now. Kudos.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Exceptional plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy justinw1970 on May 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Have used this for years. Should have left a review before now. This is a real gem of a plugin. Have it on all my sites. Long may it continue!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy and Clean

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jason Ball (jasonfintips) on May 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy and clean to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I had to find where to review... impressed!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hmibarrylsalter on March 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    On one of my sites, I was having a real tough time with crap like, slot machines and by bitcoin and just all this junk I had to go and delete. Today I found \"1\" after months of not going into the back end of this site, ONE spam and I hit spam and it went away... Later today, I''m going to go load antispam bee on all my clients sites.... I''ve had clients with thousands of spams and I don''t have time for this... Oh and I tried jetpack, it caused issues and I deleted it won''t bother with it again.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incredible!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dolceremy (centoasa) on March 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I tried so many, even the most famous ones, but they all still passed spam, and I was forced to delete them at least every 3 days. With this plugin spam zero, you read it right zero!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Sehr zuverlässig

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hmgt (hugomarianogimeneztoledo) on February 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ich verwende das Plugin seit Jahren und bin sehr zufrieden.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use and works well.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Web Design Cheshire (coderra) on January 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to setup and use and is highly effective.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Privacy-friendly spam filter

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kelson (Kelson) on December 15, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works quite well without calling out to a remote service, and doesn''t require your visitors to be using JavaScript. (Seriously, I posted a test comment using Dillo and it showed up in the moderation queue!) No need to deal with API keys or licensing.

    \n\n\n\n

    There are some optional tactics that will call a remote service for things like language identification, but so far it''s doing the job fine without them!

    \n\n\n\n

    The only problem I''ve had with it is that it only acts on comments, not on other features like contact forms.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So easy to use!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nealumphred on November 30, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin! So easy to use that even a simpleton like me got it right on my first try.

    \n\n\n\n

    \n\n\n\n

    Keep on keepin'' on ...

    \n
    \n
    \n", "changelog": "

    2.11.8

    \n
      \n
    • Tweak: Minor code changes and housekeeping
    • \n
    • Tweak: Add link to Patchstack in readme
    • \n
    • Maintenance: Tested up to WordPress 6.8
    • \n
    \n

    2.11.7

    \n
      \n
    • Tweak: Use SCRIPT_NAME instead of REQUEST_URI to check path
    • \n
    • Fix: Remove add_reasons_to_defaults() from general initialization for better WordPress 6.7 compatibility
    • \n
    • Maintenance: Tested up to WordPress 6.7
    • \n
    \n

    2.11.6

    \n
      \n
    • Fix: Delete missed out option on uninstall (Thanks @okvee!)
    • \n
    • Tweak: Minor i18n improvements (Thanks Pedro!)
    • \n
    • Tweak: Minor code changes and housekeeping
    • \n
    • Tweak: Updated dependencies
    • \n
    \n

    2.11.5

    \n

    IMPORTANT: If you use the country check and are behind a proxy or similar, you need to use the antispam_bee_trusted_ip filter to get the correct IP from a header like HTTP_X_FORWARDED (don’t return an empty value here, otherwise all comments are marked as spam).

    \n
      \n
    • Fix: Usage of core filter pre_comment_user_ip breaks ASB if the IP address is removed for GDPR compliance
    • \n
    \n

    2.11.4

    \n

    IMPORTANT: If you use the country check and are behind a proxy or similar, you need to use the pre_comment_user_ip filter to get the correct IP from a header like HTTP_X_FORWARDED.

    \n
      \n
    • Fix: Read client IP for country check from REMOTE_ADDR only (filterable via pre_comment_user_ip)
    • \n
    • Fix: No spam reason in spam notification email, and related PHP warning
    • \n
    • Fix: Remove outdated info from readme
    • \n
    • Enhancement: Show upgrade notice on plugin overview page
    • \n
    • Maintenance: Tested up to WordPress 6.3
    • \n
    \n

    2.11.3

    \n
      \n
    • Fix: Multiselect for “Delete comments by spam reasons” was not saving values
    • \n
    • Fix: Fix broken link for ISO country codes
    • \n
    • Maintenance: Added test for PHP 8.2
    • \n
    • Maintenance: Tested up to WordPress 6.2
    • \n
    \n

    2.11.2

    \n
      \n
    • Tweak: remove superfluous translations
    • \n
    • Tweak: make FAQ link an anchor link
    • \n
    • Fix: spam counter no longer raises a warning with PHP 8.1 if no spam is present yet
    • \n
    • Fix: spam reasons are now localized correctly
    • \n
    • Fix: Translations were loaded twice on some admin pages
    • \n
    • Maintenance: Tested up to WordPress 6.1
    • \n
    \n

    2.11.1

    \n
      \n
    • Tweak: remove superfluous type attribute from inline script tag
    • \n
    • Maintenance: Tested up to WordPress 6.0
    • \n
    \n

    2.11.0

    \n
      \n
    • Fix: Allow empty comments if allow_empty_comment is set to true
    • \n
    • Fix: Add aria-label to work around bug in a11y testing tools
    • \n
    • Fix: Change priority for comment_form_field_comment from 10 to 99
    • \n
    • Tweak: Updated some FAQ entries
    • \n
    • Tweak: Updated build tooling
    • \n
    \n

    2.10.0

    \n
      \n
    • Fix: Switch from ip2country.info to iplocate.io for country check
    • \n
    • Enhancement: Use filter to add the honeypot field instead of output buffering for new installations and added option to switch between the both ways
    • \n
    • Tweak: Added comment user agent to regex pattern check
    • \n
    • Tweak: Make the ping detection filterable to support new comment types
    • \n
    • Tweak: Updated internal documentation links
    • \n
    • Tweak: Several updates and optimizations in the testing process
    • \n
    • Tweak: Adjust color palette to recent WP version
    • \n
    • Tweak: Adjust wording in variables and option names
    • \n
    • Readme: Add new contributor and clean up unused code
    • \n
    \n

    2.9.4

    \n
      \n
    • Enhancement: Add filter to allow ajax calls
    • \n
    • Tweak: Better wording for BBCode feature in plugin description
    • \n
    • Tweak: Better screenshots in the plugin directory
    • \n
    • Maintenance: Tested up to WordPress 5.7
    • \n
    \n

    2.9.3

    \n
      \n
    • Fixed: Compatibility with WordPress 5.5
    • \n
    • Fixed: Undefined index on spam list page
    • \n
    • Tweak: Better wording on settings page
    • \n
    • Tweak: AMP compatibility
    • \n
    • Tweak: Protect CSS from overwrite through bad themes
    • \n
    \n

    2.9.2

    \n
      \n
    • Fix: Delete comment meta for deleted old spam. For the cleanup of older orphaned comment meta we suggest the usage of WP Sweep
    • \n
    • Fix: Statistic in dashboard showed wrong value
    • \n
    • Tweak: Change autocomplete attribute to “new-password”
    • \n
    • Tweak: Autoptimize compatibility improved
    • \n
    • Tweak: Renamed blacklist/whitelist to a better phrase
    • \n
    • Tweak: Added new pattern
    • \n
    • Tweak: UI and text optimizations
    • \n
    • Tweak: Better compatibility with some server configurations
    • \n
    • Tweak: Make spam reason sortable and filterable
    • \n
    • Tweak: Add spam reason for manually marked spam
    • \n
    • Maintenance: Deleted unused code
    • \n
    • Maintenance: Removed Fake IP check (unreliable and producing false positives)
    • \n
    • Maintenance: Fix some coding standard issues
    • \n
    • Maintenance: Tested up to WordPress 5.4
    • \n
    • Maintenance: Tested up to PHP 7.4
    • \n
    \n

    2.9.1

    \n
      \n
    • Improved backend accessibility
    • \n
    • Prefilled comment textareas do now work with the honeypot
    • \n
    • Compatible with the AMP plugin (https://wordpress.org/plugins/amp/)
    • \n
    • Improved dashboard tooltips
    • \n
    • Improvements for the language detection API
    • \n
    • Scalable IP look up for local spam database
    • \n
    \n

    2.9.0

    \n
      \n
    • Introduction of coding standards.
    • \n
    • Switch to franc language detection API for the language check.
    • \n
    • Do not longer overwrite the IP address WordPress saves with the comment by using pre_comment_user_ip.
    • \n
    • Do not show “Trust commenters with a Gravatar” if the “Show Gravatar” option is not set.
    • \n
    • Skip the checks, when I ping myself.
    • \n
    • Fixes some wrong usages of the translation functions.
    • \n
    • Use the regular expressions check also for trackbacks.
    • \n
    • Add option to delete Antispam Bee related data when plugin gets deleted via the admin interface.
    • \n
    • Save a hashed + salted IP for every comment
    • \n
    • New check for incoming trackbacks.
    • \n
    • Introduction of behat tests.
    • \n
    • Updates the used JavaScript library for the statistics widget.
    • \n
    • Bugfix in the “Comment form used outside of posts” option.
    • \n
    \n

    2.8.1

    \n
      \n
    • PHP 5.3 compatibility
    • \n
    • Bugfix where a spam trackback produced a fatal error
    • \n
    • For more details see https://github.com/pluginkollektiv/antispam-bee/milestone/8?closed=1
    • \n
    \n

    2.8.0

    \n
      \n
    • Removed stopforumspam.com to avoid potential GDPR violation
    • \n
    • Improves IP handling to comply with GDPR
    • \n
    • Improves PHP7.2 compatibility
    • \n
    • Fixes small bug on mobile views
    • \n
    • Allow more than one language in language check
    • \n
    • Minor interface improvements
    • \n
    • Remove old russian and Dutch translation files
    • \n
    • For more details see https://github.com/pluginkollektiv/antispam-bee/milestone/4?closed=1
    • \n
    \n

    2.7.1

    \n
      \n
    • Fixes an incompatibility with Chrome autofill
    • \n
    • Fixes some incompatibilities with other plugins/themes where the comment field was left empty
    • \n
    • Support for RTL
    • \n
    • Solve some translation/language issues
    • \n
    • A new filter to add languages to the language check
    • \n
    • For more details see https://github.com/pluginkollektiv/antispam-bee/milestone/6?closed=1
    • \n
    \n

    2.7.0

    \n
      \n
    • Country check is back again (thanks to Sergej Müller for his amazing work and the service page)
    • \n
    • Improved Honeypot
    • \n
    • Language check through Google Translate API is back again (thanks to Simon Kraft of https://moenus.net/ for offering to cover the costs)
    • \n
    • More default Regexes
    • \n
    • Unit Test Framework
    • \n
    • Accessibility and GUI improvements
    • \n
    • An english documentation is now available, too. Some corrections in the german documentation.
    • \n
    • Some bugfixes – Among other things for WPML compatibility
    • \n
    • For more details see https://github.com/pluginkollektiv/antispam-bee/milestone/3?closed=1
    • \n
    \n

    2.6.9

    \n
      \n
    • Updates donation links throughout the plugin
    • \n
    • Fixes an error were JavaScript on the dashboard was erroneously being enqueued
    • \n
    • Ensures compatibility with the latest WordPress version
    • \n
    \n

    2.6.8

    \n
      \n
    • added a POT file
    • \n
    • updated German translation, added formal version
    • \n
    • updated plugin text domain to include a dash instead of an underscore
    • \n
    • updated, translated + formatted README.md
    • \n
    • updated expired link URLs in plugin and languages files
    • \n
    • updated plugin authors
    • \n
    \n

    2.6.7

    \n
      \n
    • Removal of functions Block comments from specific countries and Allow comments only in certain language for financial reasons – more information
    • \n
    \n

    2.6.6

    \n
      \n
    • Switch to the official Google Translation API
    • \n
    • Release time investment (Development & QA): 2.5 h
    • \n
    \n

    2.6.5

    \n
      \n
    • Fix: Return parameters on dashboard_glance_items callback / thx @toscho
    • \n
    • New function: Trust commenters with a Gravatar / thx @glueckpress
    • \n
    • Additional plausibility checks and filters
    • \n
    • Release time investment (Development & QA): 12 h
    • \n
    \n

    2.6.4

    \n
      \n
    • Consideration of the comment time (Spam if a comment was written in less than 5 seconds) – more information
    • \n
    • Release time investment (Development & QA): 6.25 h
    • \n
    \n

    2.6.3

    \n
      \n
    • Sorting for the Antispam Bee column in the spam comments overview
    • \n
    • Code refactoring around the use of REQUEST_URI
    • \n
    • Release time investment (Development & QA): 2.75 h
    • \n
    \n

    2.6.2

    \n
      \n
    • Improving detection of fake IPs
    • \n
    • Release time investment (Development & QA): 11 h
    • \n
    \n

    2.6.1

    \n
      \n
    • Code refactoring of options management
    • \n
    • Support for HTTP_FORWARDED_FOR header
    • \n
    • Release time investment (Development & QA): 8.5 h
    • \n
    \n

    2.6.0

    \n
      \n
    • Optimizations for WordPress 3.8
    • \n
    • Clear invalid UTF-8 characters in comment fields
    • \n
    • Spam reason as a column in the table with spam comments
    • \n
    \n

    For the complete changelog, check out our GitHub repository.

    \n", "description": "

    Say Goodbye to comment spam on your WordPress blog or website. Antispam Bee blocks spam comments and trackbacks effectively, without captchas and without sending personal information to third party services. It is free of charge, ad-free and 100% GDPR compliant.

    \n

    Feature/Settings Overview

    \n
      \n
    • Trust approved commenters.
    • \n
    • Trust commenters with a Gravatar.
    • \n
    • Consider the comment time.
    • \n
    • Allow comments only in a certain language.
    • \n
    • Block or allow commenters from certain countries.
    • \n
    • Treat BBCode links as spam.
    • \n
    • Use regular expressions.
    • \n
    • Search local spam database for commenters previously marked as spammers.
    • \n
    • Notify admins by e-mail about incoming spam.
    • \n
    • Delete existing spam after n days.
    • \n
    • Limit approval to comments/pings (will delete other comment types).
    • \n
    • Select spam indicators to send comments to deletion directly.
    • \n
    • Optionally exclude trackbacks and pingbacks from spam detection.
    • \n
    • Optionally spam-check comment forms on archive pages.
    • \n
    • Display spam statistics on the dashboard, including daily updates of spam detection rate and a total of blocked spam comments.
    • \n
    \n

    Support

    \n\n

    Contribute

    \n
      \n
    • Active development of this plugin is handled on GitHub.
    • \n
    • Pull requests for documented bugs are highly appreciated.
    • \n
    • If you think you’ve found a bug (e.g. you’re experiencing unexpected behavior), please post at the support forums first.
    • \n
    • If you want to help us translate this plugin you can do so on WordPress Translate.
    • \n
    \n

    Credits

    \n\n", "screenshots": "
    1. \"Block

      Block or allow comments from specific countries.

    2. \"Allow

      Allow comments only in certain languages.

    3. \"Add

      Add useful spam stats to your dashboard.

    4. \"Tailor

      Tailor WordPress'' spam management to your workflow.

    ", "installation": "
      \n
    • If you don’t know how to install a plugin for WordPress, here’s how.
    • \n
    \n

    Requirements

    \n
      \n
    • PHP 5.2.4 or greater
    • \n
    • WordPress 4.5 or greater
    • \n
    \n

    Settings

    \n

    After you have activated Antispam Bee the plugin will block spam comments out of the box. However, you may want to visit Settings Antispam Bee to configure your custom set of anti-spam options that works best for your site.

    \n"}, "versions": {"2.2": "https://downloads.wordpress.org/plugin/antispam-bee.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/antispam-bee.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/antispam-bee.2.4.zip", "2.4.1": "https://downloads.wordpress.org/plugin/antispam-bee.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/antispam-bee.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/antispam-bee.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/antispam-bee.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/antispam-bee.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/antispam-bee.2.4.6.zip", "2.6.0": "https://downloads.wordpress.org/plugin/antispam-bee.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/antispam-bee.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/antispam-bee.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/antispam-bee.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/antispam-bee.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/antispam-bee.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/antispam-bee.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/antispam-bee.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/antispam-bee.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/antispam-bee.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/plugin/antispam-bee.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/antispam-bee.2.7.1.zip", "2.8.0": "https://downloads.wordpress.org/plugin/antispam-bee.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/antispam-bee.2.8.1.zip", "2.9.0": "https://downloads.wordpress.org/plugin/antispam-bee.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/antispam-bee.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/antispam-bee.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/antispam-bee.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/antispam-bee.2.9.4.zip", "trunk": "https://downloads.wordpress.org/plugin/antispam-bee.zip", "2.10.0": "https://downloads.wordpress.org/plugin/antispam-bee.2.10.0.zip", "2.11.0": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.0.zip", "2.11.1": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.1.zip", "2.11.2": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.2.zip", "2.11.3": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.3.zip", "2.11.4": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.4.zip", "2.11.5": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.5.zip", "2.11.6": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.6.zip", "2.11.7": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.7.zip", "2.11.8": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.8.zip"}, "downloaded": 10752231, "description": "

    Say Goodbye to comment spam on your WordPress blog or website. Antispam Bee blocks spam comments and trackbacks effectively, without captchas and without sending personal information to third party services. It is free of charge, ad-free and 100% GDPR compliant.

    \n

    Feature/Settings Overview

    \n
      \n
    • Trust approved commenters.
    • \n
    • Trust commenters with a Gravatar.
    • \n
    • Consider the comment time.
    • \n
    • Allow comments only in a certain language.
    • \n
    • Block or allow commenters from certain countries.
    • \n
    • Treat BBCode links as spam.
    • \n
    • Use regular expressions.
    • \n
    • Search local spam database for commenters previously marked as spammers.
    • \n
    • Notify admins by e-mail about incoming spam.
    • \n
    • Delete existing spam after n days.
    • \n
    • Limit approval to comments/pings (will delete other comment types).
    • \n
    • Select spam indicators to send comments to deletion directly.
    • \n
    • Optionally exclude trackbacks and pingbacks from spam detection.
    • \n
    • Optionally spam-check comment forms on archive pages.
    • \n
    • Display spam statistics on the dashboard, including daily updates of spam detection rate and a total of blocked spam comments.
    • \n
    \n

    Support

    \n\n

    Contribute

    \n
      \n
    • Active development of this plugin is handled on GitHub.
    • \n
    • Pull requests for documented bugs are highly appreciated.
    • \n
    • If you think you’ve found a bug (e.g. you’re experiencing unexpected behavior), please post at the support forums first.
    • \n
    • If you want to help us translate this plugin you can do so on WordPress Translate.
    • \n
    \n

    Credits

    \n\n", "donate_link": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW", "num_ratings": 224, "screenshots": {"1": {"src": "https://ps.w.org/antispam-bee/assets/screenshot-1.png?rev=2898402", "caption": "Block or allow comments from specific countries."}, "2": {"src": "https://ps.w.org/antispam-bee/assets/screenshot-2.png?rev=2898402", "caption": "Allow comments only in certain languages."}, "3": {"src": "https://ps.w.org/antispam-bee/assets/screenshot-3.png?rev=2898402", "caption": "Add useful spam stats to your dashboard."}, "4": {"src": "https://ps.w.org/antispam-bee/assets/screenshot-4.png?rev=2898402", "caption": "Tailor WordPress'' spam management to your workflow."}}, "support_url": "https://wordpress.org/support/plugin/antispam-bee/", "contributors": {"krafit": {"avatar": "https://secure.gravatar.com/avatar/5c70c8457ca931d6aeed65b8c65e68aa5e12b0e742334c2c2e233affe2f193f3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/krafit/", "display_name": "Simon Kraft"}, "kau-boy": {"avatar": "https://secure.gravatar.com/avatar/a3d65dbb7c58b7892c698cf0dc222f33f6cd231c13196f29a067dedd4d7e529c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kau-boy/", "display_name": "Bernhard Kau"}, "pfefferle": {"avatar": "https://secure.gravatar.com/avatar/55be13f44d2f6b002041de75a3981568cfc3842eaa7a07e6a42f980539c129f3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pfefferle/", "display_name": "Matthias Pfefferle"}, "schlessera": {"avatar": "https://secure.gravatar.com/avatar/6dde7f578e5530884238e7173f768ae3a890b6d66eb99262a82f2c494a1b67d4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/schlessera/", "display_name": "Alain Schlesser"}, "swissspidy": {"avatar": "https://secure.gravatar.com/avatar/1718b7c2f2afc31b4e94805b6f1f6ae2b802cc4c696f99b11fde2186006c82c9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/swissspidy/", "display_name": "Pascal Birchler"}, "zodiac1978": {"avatar": "https://secure.gravatar.com/avatar/85b3ccf3d505b40e64c56ee29c72bfa9f166468c4998288edcb561b53c804c64?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/zodiac1978/", "display_name": "Torsten Landsiedel"}, "websupporter": {"avatar": "https://secure.gravatar.com/avatar/6d9d2b8c442507bf25f89fa608c61dda47835f4d36c0dfb2167923cccc7dbcef?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/websupporter/", "display_name": "websupporter"}, "pluginkollektiv": {"avatar": "https://secure.gravatar.com/avatar/ceaf1bd37a97493464c5f49ea9d55610e28a53b4e6be809f80c0ebf7d50d321b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pluginkollektiv/", "display_name": "pluginkollektiv"}, "florianbrinkmann": {"avatar": "https://secure.gravatar.com/avatar/51b8f7f77ca21c71c2b2bcd64c2fa867b5f640f0bb7c32c1e921fde7b0985eba?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/florianbrinkmann/", "display_name": "Florian Brinkmann"}}, "last_updated": "2025-07-22 11:23am GMT", "preview_link": "https://wordpress.org/plugins/antispam-bee/?preview=1", "requires_php": "5.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.8.zip", "author_profile": "https://profiles.wordpress.org/pluginkollektiv/", "business_model": false, "repository_url": "", "upgrade_notice": {"2.8.0": "

    This update makes sure your spam check is GDPR compliant, no matter the options you choose. Please make sure to update before May 25th!

    ", "2.11.3": "

    The multiselect field for "Delete comments by spam reasons" did not store any values in the last version - please check the setting after the update!

    ", "2.11.5": "

    Instead of pre_comment_user_ip you need to use our new filter antispam_bee_trusted_ip to send the correct IP address

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-eeed-71cb-97f0-be2921536b43", "name": "Antispam Bee", "slug": "antispam-bee", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1753183380, "version": "2.11.8"}, "support_threads": 10, "requires_plugins": [], "short_description": "Sophisticated antispam plugin for effective daily comment and trackback spam-fighting. Built with data protection and privacy in mind.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 7}'); -INSERT INTO public.plugins VALUES ('019a30c1-63e6-7297-a6f2-0cb58bdc7a41', 'astra-sites', 'Starter Templates – AI-Powered Templates for Elementor & Gutenberg', 'The growing library of 300+ ready-to-use templates that work with all WordPress themes including Astra, Hello, OceanWP, GeneratePress and more', '

    Starter Templates: AI Website Builder and Elementor Templates

    -

    The future of website creation is here! With Starter Templates, you can create professional-looking websites in just minutes, powered by AI.

    -

    Leverage the Starter Templates AI website builder to generate websites with:

    -
      -
    • Stunning designs
    • -
    • All relevant sections and pages
    • -
    • High quality stock images to help engage visitors
    • -
    • Compelling website copy tailored to your business
    • -
    • Extensive customization options
    • -
    -

    Say goodbye to spending days or weeks designing and building a website. With Starter Templates, you can build websites faster than ever with AI.

    -

    Try the live demo of Starter Templates

    -

    HIGHLIGHTS

    -

    ★ WordPress AI website builder
    -★ Built-in AI assistant
    -★ Fast and easy to use
    -★ Large library of Elementor templates
    -★ Hundreds of WordPress block editor (Gutenberg) templates
    -★ 200+ Sections and block patterns
    -★ Supported page builders: Spectra, Elementor, WordPress editor
    -★ Fully customizable websites

    -

    How Does Starter Template AI Website Builder Work?

    -

    Starter Templates integrates with ZipWP, our amazing AI website building platform. It takes care of everything for you, from design to content generation.

    -

    Let AI do the heavy lifting, so you can focus on your ideas!

    -

    Our mission is to unlock the power of the internet for small businesses. Creating a website shouldn’t be difficult, and growing a business on the internet shouldn’t be complicated.

    -

    With Starter Templates, you can create a stunning website in a matter of minutes. Simply describe your idea, and watch as a WordPress website is built before your eyes.

    -

    Want to create a lightweight website for your business that also looks exceptional?

    -

    Follow the steps below:

    -
      -
    1. Select the type of website you’re creating (portfolio, business site, landing page, or something else).
    2. -
    3. Provide your business name.
    4. -
    5. Describe your business. Use AI to refine your description prompt if you need to.
    6. -
    7. The AI will suggest images based on your input. Select the images you want to use.
    8. -
    9. Add your contact details and social media handles so people can interact.
    10. -
    11. Choose the website structure from the options.
    12. -
    13. Select any site features you need.
    14. -
    15. The AI will generate a website in under 2 minutes.
    16. -
    17. Customize your site as you see fit!
    18. -
    -

    Whether you’re a beginner with no website building experience, or a seasoned web designer, Starter Templates has you covered.

    -

    All Features

    -

    Starter Template has all the essentials you need to create amazing websites!

    -

    AI Website Builder

    -

    Thanks to the power of AI, you can create your dream website effortlessly. Our AI analyzes your business description and goals, then selects the perfect design, generates professional copy, and curates visuals to match your brand.

    -

    No more wrestling with complex themes or plugins – just describe your idea and let AI do the rest!

    -

    Lightning Fast Websites

    -

    Starter Templates prioritizes speed and efficiency without compromising quality.

    -

    Here’s what sets us apart:

    -

    Optimized Code

    -

    Pages created with Starter Templates have efficient code, and are free from all unnecessary elements.

    -

    This translates to faster load times and a smoother user experience for visitors regardless of browser or device.

    -

    Realistic Templates

    -

    Starter Templates goes beyond stunning design. It delivers readymade website templates specifically crafted with your business in mind.

    -

    Launching an eCommerce store? We have a diverse selection of store templates to get you selling in no time.

    -

    Creating a business website? We have dozens of professional-quality designs ready for you to make your mark.

    -

    No matter your industry or niche, we have a template that perfectly aligns with your vision.

    -

    Classic Starter Templates

    -

    Whether you’re a small business owner, freelancer, or nonprofit organization, there’s a template that suits your needs. Templates are carefully crafted to provide a polished and attractive look for your website.

    -

    The cherry on top? Starter Template supports multiple page builders, including Elementor, Spectra and Gutenberg.

    -

    You have the flexibility to customize your website your way.

    -

    Hundreds of Sections and Block Patterns

    -

    Want to customize your website to make it truly unique? Use sections and block patterns to add your personal style.

    -

    Available sections include:

    -
      -
    • Hero
    • -
    • Page Header
    • -
    • About
    • -
    • Services
    • -
    • Features
    • -
    • Contact
    • -
    • Why Choose Us
    • -
    • Call To Action
    • -
    • Portfolio
    • -
    • Gallery
    • -
    • Testimonials
    • -
    • Pricing
    • -
    • FAQ
    • -
    • Team
    • -
    • Statistics
    • -
    -

    AI-Integrated Adaptive Design Library

    -

    Personalize blocks and patterns to match your website style with the power of AI.

    -

    The design library within the Starter Templates plugin is integrated with AI and royalty-free image repositories. All elements come pre-populated with relevant text and images that you can easily customize to match your brand.

    -

    Elementor Templates

    -

    A fan of Elementor? Look no further! Starter Templates offers a vast collection of professionally designed Elementor templates.

    -

    You can effortlessly import entire websites crafted with Elementor, individual pages, or even specific blocks to enhance your site’s functionality and aesthetic appeal.

    -

    Then just drag, drop, customize, and launch your website!

    -

    WordPress Block Editor Templates

    -

    The WordPress block editor (formerly Gutenberg) is changing the game for website creation.

    -

    Building from scratch can be time-consuming. Fortunately, Starter Templates offers a vast library of readymade templates to ignite your website’s potential.

    -

    AI Assistant for WordPress

    -

    Our AI Assistant works in a similar way to ChatGPT but is specifically tailored for WordPress.

    -

    With just a click of a button, you can use the power of artificial intelligence to help write copy for landing pages, proofread blog posts, translate content into different languages, generate custom HTML and CSS codes, and much more!

    -

    Royalty-Free Images

    -

    The Starter Templates plugin offers seamless integration with leading royalty-free image repositories such as Pexels and Unsplash.

    -

    You have access to millions of top-tier images within your WordPress dashboard. Simply search for the image you need and select it.

    -

    Training Videos

    -

    As the saying goes, “Give someone a fish, and they will eat for a day; teach them how to fish, and they will eat for a lifetime.”

    -

    Embracing this philosophy, we offer a range of comprehensive training videos designed to complement our templates. They provide the knowledge and skills necessary to build, launch, and maintain your website.

    -

    Types of Websites You Can Create

    -

    Starter Templates is perfect for building websites for:

    -

    ✔ Personal branding
    -✔ Restaurants
    -✔ Service providers
    -✔ Nonprofits and charities
    -✔ Events
    -✔ Startups
    -✔ Local businesses
    -✔ Wellness businesses
    -✔ Landing pages
    -✔ Lead generation websites
    -✔ eCommerce stores
    -✔ Blogs
    -✔ Manufacturing businesses
    -✔ Any other type of WordPress website

    -

    There’s no limit to what you can create!

    -

    Please note: To access templates and AI features, you’ll need a ZipWP account. ZipWP platform. Signing up is quick, easy, and 100% free.

    -

    Fun Facts About Starter Templates

    -

    ➜ Over 5,000 websites are built with Starter Templates every day.
    -➜ The plugin has been installed on more than 2 million websites.
    -➜ Starter Templates has more than 4,500 five-star reviews.
    -➜ Our team of dedicated full-time WordPress experts help and support hundreds of users daily.
    -➜ A devoted team full-time designers keep the design library up to date.
    -➜ Our plugin offers more than 100 free Elementor templates.
    -➜ You can import a complete website, individual page, or section of a page in seconds.
    -➜ We support 2 page builders: Spectra and Elementor as well as the WordPress editor
    -➜ “eCommerce” is the most searched keyword in our library.

    -

    The Starter Templates Plugin Works With…

    -

    ➜ Astra Theme
    -➜ Spectra website builder
    -➜ WordPress block editor/Gutenberg
    -➜ Elementor page builder
    -➜ WooCommerce
    -➜ WPForms
    -➜ Sitekit

    -', '4.4.40', 'Brainstorm Force', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/astra-sites.4.4.40.zip', '2017-07-26 00:00:00+00', '2025-10-01 07:17:00+00', 'https://profiles.wordpress.org/brainstormforce/', 98, 4698, 3, 1, 2000000, 84263172, 'https://wpastra.com/', 'https://wpastra.com/pro/', NULL, NULL, 'https://wordpress.org/support/plugin/astra-sites/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Starter Templates – AI-Powered Templates for Elementor & Gutenberg", "slug": "astra-sites", "tags": {"elementor": "elementor", "gutenberg": "gutenberg", "templates": "templates", "block-editor": "block-editor", "astra-starter-sites": "Astra Starter Sites"}, "added": "2017-07-26", "icons": {"1x": "https://ps.w.org/astra-sites/assets/icon-256x256.gif?rev=3060571", "2x": "https://ps.w.org/astra-sites/assets/icon-256x256.gif?rev=3060571"}, "author": "Brainstorm Force", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/astra-sites/assets/banner-772x250.jpg?rev=3055258", "high": "https://ps.w.org/astra-sites/assets/banner-1544x500.jpg?rev=3055258"}, "ratings": {"1": 42, "2": 7, "3": 14, "4": 50, "5": 4585}, "version": "4.4.40", "homepage": "https://wpastra.com/", "requires": "6.6", "sections": {"faq": "\n
    \nWhy Is this awesome plugin free?\n\n

    \n

    Free is always the best price. We offer Starter Templates for free to showcase what our team is capable of. It’s also good business.

    \n

    If you have a positive experience with Starter Templates, you might be tempted by the extra features included in premium versions of ZipWP, the Astra WordPress theme and other products we produce.

    \n

    We’re not afraid to prove our worth and offering a plugin for free is a great way to do that.

    \n

    \n
    \nWhich theme Is used by the AI website builder?\n\n

    \n

    Starter Templates, uses the Astra theme. It’s the world’s most popular WordPress theme with millions of users. Since Starter Templates and Astra are developed by the same company, we can control their development plans to make the AI website builder work perfectly every time.

    \n

    \n
    \nWhat kind of customizations can I make to an AI generated website?\n\n

    \n

    Once your website is generated, you have complete control over its content and layout. You can customize it as you would any other website, including changing colors, text, adding images, and creating new sections and pages.

    \n

    \n
    \nHow can I report a security bug?\n\n

    \n

    We take plugin security extremely seriously. If you discover a security vulnerability, please report it in a safe and responsible manner.

    \n

    You can report the issue through our Bug Bounty Program.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and easy: start a new website in minutes

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy baldwin64 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We have been using Astra combined with Spectra and Starter templates for a few years now. Support is awesome. But the nice thing: you won''t have to contact them very often.

    \n\n\n\n

    The combination of all products works smoothly and gives unlimited possibilities. Starter templates lets you start a new site with a good load of work done. So you can start your site quickly and then go along and extend, upgrade, enhance or improve the site with all the models available.

    \n\n\n\n

    If you have any doubts, just dive in it and you''ll see that creating a website goes easy as a breeze...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ian (eno812) on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I created a 20-page website for a client using these templates, and I can tell you it saved me a lot of time and frustration sitting there trying to work it out. And the client commented on how good the design was.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    about this application

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Wazir Ali (wazirali) on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this application is useful

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazing experience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy katherinemasters on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent support, website building has never been as stress free for me as it is now because I know these guys have my back if something goes wrong. They come through every time!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Template

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy deltadigital on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    good support

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best templates

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy teamstreber on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    As a webdesigner I love to work with thew templates. They are well designed and use global colours and fonts, what makes a excellent UX for me and my customers.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Absolutely Recommended – A Game Changer for Web Design!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rainer Landsee (rainerlandsee) on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I tried the Starter Templates and Design Libraries for my website and I am truly impressed! Getting started was super easy, the templates are modern and can be customized individually. The patterns and pages in particular helped me to quickly create a professional and consistent design without spending hours on the details. For anyone who values efficiency and style, these tools are absolutely recommended!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It is not working

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy spelchure on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Starter templates is not working. Deleted it and installed another template plugin. It stucks while syncing templates I can''t choose even template

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent, super-fast templates!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ilreikionline on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m using one of their templates and I''m really happy with it! It''s fully customizable and has everything I need! Highly recommended.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brainstorm Force: AstraPro - "Starter Templatess"

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Kieron Heath (kieronheath) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really delighted with BSF AstraPro''s Starter Templates product. And many thanks to Humayon and his colleagues in the Support group who have greatly helped me, a ''non-techie'', from start to finish with my very first website! I can highly recommend this product and its support team. Kieron Heath

    \n
    \n
    \n", "changelog": "

    v4.4.40 – 01-October-2025
    \n– Fix:
    \n – Resolved a console error occurred on the Starter Templates page.

    \n

    v4.4.39 – 01-October-2025
    \n– Improvement:
    \n – Enhanced import error handling to ensure more successful imports.
    \n – Multisite support enabling sub-site admins to import classic templates.
    \n – AI Builder: Fixed page creation conflict with SureCart plugin during import.

    \n

    v4.4.38 – 12-September-2025
    \n– Fix:
    \n – AI Builder: Resolved an issue where the import process was getting stuck midway on non-English sites.

    \n

    v4.4.37 – 10-September-2025
    \n– Improvement:
    \n – AI Builder: Applied missing internationalization to strings in site creation status messages.
    \n– Fix:
    \n – Free Images: Fixed the issue where the Free Images tab was missing in the Beaver Builder editor.

    \n

    v4.4.36 – 25-August-2025
    \n– New:
    \n – Introduced a filter to hide the AI Builder type during onboarding.
    \n – Design Kit: Added compatibility with Spectra version 3.
    \n– Improvement:
    \n – Ensured PHP 8.2 compatibility by replacing the deprecated FILTER_SANITIZE_STRING.
    \n – Added headers to improve XML SSE import over the HTTP/2 protocol.
    \n– Fix:
    \n – Fixed an issue where an incorrect Content-Type header prevented the NPS survey popup from closing.
    \n – Finish Setup: Added safe existence checks for action item steps to prevent PHP warnings.

    \n

    v4.4.35 – 13-August-2025
    \n– Improvement:
    \n – Added a “Finish Setup” redirection link on the import success page.
    \n – Added a “Finish Setup” banner to better guide users through final configuration.

    \n

    v4.4.34 – 6-August-2025
    \n– Improvement:
    \n – Improved UI for plugin installation notice.

    \n

    v4.4.33 – 30-July-2025
    \n– Improvement:
    \n – Background template sync now resumes from the last fetched page, reducing redundant requests and speeding up load time.
    \n– Fix:
    \n – Prevent UAELite from redirecting during Elementor page and block imports.

    \n

    v4.4.32 – 24-July-2025
    \n– Improvement:
    \n – Improved the “Skip & Start Building” flow to ensure essential plugins are correctly set up during site import.

    \n

    v4.4.31 – 17-July-2025
    \n– New:
    \n – AI Builder: Added compatibility with the Elementor plugin.
    \n– Improvement:
    \n – Improved plugin installation architecture on import for enhanced error handling and scalability.
    \n – NPS Survey: Rating prompt logic now allows disabling for guideline compliance.
    \n – Refined the “Finish Setup” UI for a smoother experience.

    \n

    v4.4.30 – 14-July-2025
    \n– Improvement:
    \n – AI Builder: Enhanced user experience with a confirmation popup for credit usage.
    \n – Polished UI for plugin installation notice.

    \n

    v4.4.29 – 08-July-2025
    \n– Improvement:
    \n – Added a clear plugin installation notice in the feature selection step to improve transparency.

    \n

    v4.4.28 – 03-July-2025
    \n– New:
    \n – Integrated the “Finish Setup” course to guide users after import completion.
    \n – Integrated SureRank plugin for SEO option in AI and Classic Templates onboarding.
    \n– Fix:
    \n – AI Builder: Addressed missing alt text when importing Spectra images.

    \n

    v4.4.27 – 30-June-2025
    \n– New:
    \n – Added compatibility with WooCommerce Cart Abandonment Recovery plugin.
    \n– Improvement:
    \n – AI Builder: Updated UI for a more consistent and streamlined user experience.
    \n– Fix:
    \n – Resolved an issue with Elementor templates import by preventing the processing of old images.
    \n – Resolved an issue where Gutenberg batches of Elementor templates were not processed correctly.
    \n – Resolved an issue where Preview Palette colors were not applying correctly to some new templates.
    \n – Fixed an issue where WooCommerce dependent plugins showed the error This plugin requires 1 plugin to be installed and activated: WooCommerce.

    \n

    v4.4.26 – 18-June-2025
    \n– Fix:
    \n – AI Builder: Resolved an issue where Elementor Page Builder option remained visible even when the it’s disabled from settings page.

    \n

    v4.4.25 – 13-June-2025
    \n– Improvement:
    \n – AI Builder: Enhanced user experience with clearer modal actions and a more streamlined interface.

    \n

    v4.4.24 – 09-June-2025
    \n– Improvement:
    \n – Improved integration with WooPayments for a smoother setup experience.
    \n– Fix:
    \n – Resolved an issue with saving block editor after import.

    \n

    v4.4.23 – 02-June-2025
    \n– New
    \n – Added compatibility with WooPayments plugin.
    \n – Added compatibility with Ultimate Addons for Elementor Lite and Pro plugins.

    \n

    v4.4.22 – 29-May-2025
    \n– Improvement:
    \n – AI Builder: Improved the pricing flow for a smoother and more intuitive user experience.

    \n

    v4.4.21 – 26-May-2025
    \n– New:
    \n – Added compatibility with the Spectra Pro plugin.
    \n – Introducing the compatibility for new Signature templates.
    \n– Improvement:
    \n – Improved compatibility with Spectra Popup Builder post types.
    \n – Displayed the “Show Other Builders” option in the Builders dropdown when any supported page builder is disabled.
    \n– Fix:
    \n – AI Builder: Resolved an issue where the premium access box was not displaying correctly for disconnected ZipWP users.

    \n

    v4.4.20 – 13-May-2025
    \n– Improvement:
    \n – AI Builder: Optimized API for templates loading functionality in batches.
    \n – Revised Features Selection on Classic Templates Onboarding.
    \n – Refined the condition to detect Gutenberg pages more efficiently.

    \n

    v4.4.19 – 14-April-2025
    \n– New:
    \n – Added compatibility with the Variation Swatches for WooCommerce plugin.
    \n – Introduced support for AI-generated Elementor templates.
    \n– Improvement:
    \n – Ensured compatibility with WordPress 6.8.

    \n

    v4.4.18 – 24-March-2025
    \n– New:
    \n – Integrated Latepoint plugin for booking options in AI & Classic Templates onboarding.

    \n

    v4.4.17 – 20-March-2025
    \n– Fix: Addressed a critical bug causing an error in the customizer.

    \n

    v4.4.16 – 19-March-2025
    \n– New:
    \n – Deprecated Beaver Builder starter templates, enable with astra_sites_enable_legacy_beaver_builder_support filter to continue using them – https://startertemplates.com/docs/sunsetting-beaver-builder-support/
    \n– Improvement:
    \n – Improved memory error handling for Classic Template import by detecting memory limits and showing user-friendly messages.
    \n– Fix:
    \n – Resolved an issue where Elementor templates and the sync progress modal were not loading initially on a fresh site.
    \n – Resolved an Undefined array key \"id\" warning from Astra Notices library.

    \n

    v4.4.15 – 11-March-2025
    \n– New:
    \n – Integrated SureMail plugin for SMTP option in Classic Templates onboarding.
    \n– Fix:
    \n – Resolved an issue where _load_textdomain_just_in_time function was incorrectly triggered for the astra-sites text domain.
    \n – Resolved inaccurate translations for the Estonian language.

    \n

    v4.4.14 – 24-February-2025
    \n– Improvement:
    \n – AI Builder: Integrated SureMail plugin for SMTP feature support in AI onboarding.
    \n – Added compatibility for LatePoint redirection during Classic Builder template onboarding.

    \n

    v4.4.13 – 21-February-2025
    \n– New:
    \n – Introduced LatePoint Integration with the Wellness Coach template.
    \n– Fixes:
    \n – Fixed template search issue in Chrome browser.
    \n – Free Images: Editors can now search for free images.

    \n

    v4.4.12 – 10-February-2025
    \n– New:
    \n – AI Builder: Added filter to update the default business type.
    \n – Added translations for the Estonian language.
    \n– Improvements:
    \n – AI Builder: Added translation support to the Business Category API.
    \n – Introduced a progress bar to provide real-time updates during template syncing.
    \n – Reduced the likelihood of import failures caused by low memory availability.
    \n – Improved mobile responsiveness for the Classic Builder templates.
    \n– Fixes:
    \n – AI Builder: Removed unnecessary API request headers to improve compatibility.

    \n

    v4.4.11 – 07-January-2025
    \n– Improvements:
    \n – Enhanced mobile responsiveness in the classic builder.
    \n – Added compatibility for SureForms import.
    \n– Fix:
    \n – Fixed search terms persisting in the Classic Templates Builder during navigation.

    \n

    v4.4.10 – 16-December-2024
    \n– New:
    \n – Expanded plugin accessibility with translations in 7 new languages: [ Spanish, German, Dutch, Frensh, Italian, Polish, Portuguese ]
    \n – AI Assistant: The AI Assistant is now Location Aware.
    \n– Improvements:
    \n – AI Assistant: Revamped the entire UI of the Assistant Sidebar.
    \n – Enhanced NPS Survey styles to ensure seamless compatibility with other plugins.
    \n– Fix:
    \n – Removed redundant code related to authentication to enhance security and simplify maintenance.

    \n

    v4.4.9 – 02-December-2024
    \n– Improvements:
    \n – AI Builder: Enhanced error handling in the import process with clearer error messages.
    \n – AI Builder: Upgrade plan popup UI enhancements for a better user experience.
    \n – AI Builder: Added import success action to trigger custom actions after successful site import.
    \n – Design Kit: Improved business description screen for better user experience.
    \n – Design Kit: UI enhancements for better usability.
    \n – Design Kit: Improved code quality for enhanced performance and maintainability.
    \n – UI/UX optimizations for a smoother Classic Templates Builder experience.
    \n – SureCart template is now the default selection for eCommerce templates.
    \n– Fixes:
    \n – Free Images: Removed garbage CSS conflicting with other plugins.

    \n

    v4.4.8 – 15-November-2024
    \n– Improvements:
    \n – AI Builder: Hidding ecommerce templates if ecommerce feature is hidden.
    \n – Free Images: Removed the “Free Images” option from the WordPress media library where images are not expected.
    \n – NPS survey hidden for white-labeled environments.
    \n – UI/UX optimizations for a smoother Classic Templates Builder experience.
    \n– Fixes:
    \n – AI Builder: Addressed a security bug. Props to Patchstack for reporting it.
    \n – AI Builder: Fixed SureCart settings import failed error.
    \n – AI Builder: Resolved an issue causing the import process to fail due to unexpected SureForm plugin redirection upon activation.
    \n – Free Images: Resolved an issue where the media library button text was incorrectly displayed in certain cases.
    \n – Ensured selected eCommerce platform and feature plugin are synchronized.
    \n – Resolved intermittent issue with other plugin updates failing.

    \n

    v4.4.7 – 04-November-2024
    \n– New:
    \n – AI builder: Added compatibility for importing SureForms templates.
    \n – AI builder: Added filter to hide specified features on feature selection screen.
    \n– Improvement:
    \n – Prompted users for detailed business descriptions to enhance content generation.
    \n – Enabled SureCart provisional account creation when the eCommerce feature is selected.
    \n – Added page builder selection screen for classic templates.
    \n – Added pre-import warning to alert users about potential overrides of existing settings during template import.
    \n – Hiding non-FSE page builder options when the Spectra One theme is active.
    \n – Design Kit: Generating business description based on the selected language.
    \n – Design Kit: Optimized styles for better readability and usability on smaller screens.
    \n – AI Assistant: Resolved PHP fatal error caused by a conflict with certain plugins.

    \n

    v4.4.6 – 16-October-2024
    \n– Fix: Updated outdated migrations that were causing PHP errors.

    \n

    v4.4.5 – 15-October-2024
    \n– New:
    \n – AI Builder: Implemented toasters to provide more detailed error information.
    \n – AI Builder: Added source parameters to URLs redirecting to ZipWP for better tracking.
    \n – Design Kit: Added source parameters to URLs redirecting to ZipWP for better tracking.
    \n– Tweak: Refactored the NPS code by separating it into an independent NPS library.
    \n– Improvement:
    \n – Design Kit: Removed outdated options data that were previously left undeleted.
    \n – Design Kit: Optimized server API call execution for better performance.
    \n – Enhanced code quality and optimization for better performance and maintainability.
    \n– Fix:
    \n – Free Images: Fixed broken UI components for Elementor and Beaver Builder.

    \n

    v4.4.4 – 07-October-2024
    \n– Fix: Resolved issue where the selected page builder was resetting after a page refresh.
    \n– Fix: Corrected CSS issues affecting the appearance and functionality of checkboxes on the feature page.

    \n

    v4.4.3 – 30-September-2024
    \n– New:
    \n – AI Builder: Added functionality to save failed site creations and allow reimporting them.
    \n – AI Builder: Displaying users ZipWP plan information.
    \n – AI Builder: Displaying alert notice when AI site generation count is nearing its limit.
    \n – AI Builder: Added an option to choose the type of store when the Ecommerce feature is selected.
    \n – Design Kit: Introduced filter ast_block_templates_exclude_post_types to exclude asset loading for specified post types.
    \n – Introduced eCommerce feature for classic templates along with some UI tweaks.
    \n – NPS form now includes a back button for better usability and rating edits.
    \n– Improvements:
    \n – AI Builder: Resume Session popup will now restore the step where the user left off.
    \n – AI Builder: Improved images upload process for better performance and user experience.
    \n – AI Builder: Showing Premium template notice on customizer screen if user has free plan.
    \n – AI Builder: Added a validation on Image upload to check if the image URL is valid.
    \n – Design Kit: Added loading skeleton when uploading the images on AI onboarding.
    \n – Design Kit: Added images validation on AI onboarding.

    \n
      \n
    • Fix:\n
        \n
      • AI Builder: Customizer ‘Show site title’ option was not applied correctly during site import.
      • \n
      • Design Kit: Resolved CSS conflicts with the WordPress core blocks.
      • \n
      • Design Kit: Fixed PHP warning when generating content.
      • \n
      • Design Kit: Content was not getting generated in the selected language.
      • \n
      • Images Library: Resolved issue where image search results reset to default after applying filters.
      • \n
      \n
    • \n
    \n

    v4.4.2 – 03-September-2024
    \n– New:
    \n – AI Builder : Added a filter to update default website language.
    \n – AI Builder : Added image replacement compatibility for archive product banner image.
    \n – Added filter to disable the “Design Kit” library.
    \n– Improvements:
    \n – Design Kit: Enhanced API performance by optimizing execution times and reducing delays.
    \n – Free Images : Enhanced UI for better user experience.
    \n – Better database handling for the NPS.
    \n– Fixes:
    \n – Design Kit: Corrected styling issues for patterns/pages preview to ensure consistent display.
    \n – Design Kit: Addressed CSS conflicts with SureCart blocks to prevent styling discrepancies.
    \n – After import images were not getting replaced for classic Elementor templates.

    \n

    v4.4.1 – 28-August-2024
    \n– Improvement: Hardened the security of the plugin.

    \n

    v4.4.0 – 07-August-2024
    \n– New:
    \n – AI Builder: Enhanced onboarding UI.
    \n – Design Kit: Enhanced personalized library steps UI.
    \n– Improvements:
    \n – Switched from using transient to option data for storing information.
    \n – AI Builder: Enabled business descriptions to be generated in the selected language.
    \n – Design Kit: Converted Spectra common stylesheet to a JSON file instead of an option variable.
    \n – Design Kit: Hidden Update Image option until the user personalizes the library.
    \n – Design Kit:Blocked block pages preview if import is in process.
    \n– Fixes:
    \n – Fixed issue where user input was not getting prefilled when switching between steps.
    \n – Ensured required plugins for selected features are correctly installed.
    \n – Resolved an issue where some classic editor templates were getting stuck during import.
    \n – Fixed issue where the default logo was not getting replaced for classic templates.
    \n – AI Builder: Removed the condition that showed the site limit exceed popup for all sites.
    \n – Design Kit: Fixed issue where the Favorites functionality was not working in certain cases.
    \n – Design Kit: Addressed problem where related block pages were not displaying in some scenarios.
    \n – Design Kit: Fixed content regeneration for a category.
    \n – Design Kit: Resolved visibility issue with the “Design Kit” button in WordPress 6.6 with the full site editor.

    \n

    v4.3.9 – 25-July-2024
    \n– Improvement: Improved the UI/UX.
    \n– Improvement: AI Builder – Better error message handling.
    \n– Improvement: AI Builder – Added new icon for the ecommerce feature.
    \n– Improvement: Improved the way Starter Templates translate strings in the script.
    \n– Fix: AI Builder – Fixed an issue where the template preview designs were showing ternary operation results as HTML.
    \n– Fix: AI Builder – Required plugins data was incorrect on the Elementor templates screen.
    \n– Fix: AI Builder – Social icons title was not translation-ready.
    \n– Fix: AI Builder – Fixed an issue where the import process was failing after changing the site language.
    \n– Fix: Resolved a fatal error encountered with the Ghost Kit plugin.

    \n

    v4.3.8 – 16-July-2024
    \n– New: AI Builder – Added script translation with a filter to update the text domain for script translation.
    \n– Improvement: ZipAI – Added WordPress 6.6 compatibility.
    \n– Improvement: Hardcoded index are made dynamic.
    \n– Fix: AI Builder – Premium badge was not showing for Premium templates.
    \n– Fix: Footer widgets was not getting imported for AI & Classic templates.

    \n

    v4.3.7 – 09-July-2024
    \n– New:
    \n – Added NPS Survey.
    \n– Improvements:
    \n – Updated “What’s New” library.
    \n – Enhanced sidebar for classic editor to align with AI Builder.
    \n – Updated pre-import screen for classic templates.
    \n – Standardized text-domain to “astra-aites” for all libraries.
    \n – Refreshed font pairs.
    \n – Removed duplicate code.
    \n– Fix:
    \n – Upload logo and selected color pallete was not getting imported for FSE.
    \n – Design Kit – Business category now pre-fills correctly during onboarding.
    \n – AI Builder – Business name now resets after clicking “Start Over.”
    \n – AI Builder – “Resume Session” popup no longer appears after site creation.
    \n – AI Builder – Business type now pre-fills correctly when site is created from ZipWP platform.
    \n – AI Builder – Hover color for accent color is now a CSS variable.
    \n – AI Builder – Correct icon now appears for the Contact Form feature.

    \n

    v4.3.6 – 04-July-2024
    \n– Fix: AI Builder – Resolved an issue preventing users from continuing to the next step if the business type input was entered manually.
    \n– Fix: Design Kit – Resolved an issue where adding social media URLs caused an error when proceeding to the next step.

    \n

    v4.3.5 – 02-July-2024
    \n– New
    \n – Design Kit – Added a page preview feature along with other page options.
    \n – Design Kit – Introduced error boundaries for better error management.
    \n– Improvement
    \n – Design Kit – Introduced a new “Favorites” tab, separated from Patterns, Pages, and Kits.
    \n – Design Kit – Added clickable navigation in the sidebar, allowing users to jump to previous steps.
    \n – Design Kit – Disabled live preview and other actions while inserting the kit into a page.
    \n – Design Kit – Improved UI/UX for a better user experience.
    \n – Design Kit – Enhanced error handling during the import process.
    \n – Design Kit – Added an admin notice for missing file permissions.
    \n – Design Kit – Removed validation for the mobile field in AI onboarding.
    \n – Design Kit – Added a loader while inserting the block.
    \n – AI Builder – Added ZipWP new features icon support.
    \n – AI Builder – Added a filter to disable the Premium Badge for templates.
    \n– Fix
    \n – Design Kit – Fixed console error causing a blank screen in GT AI onboarding if already prefilled.
    \n – Design Kit – Resolved an issue where the Design Library button was not displayed in the Spectra One theme editor when the Gutenberg Plugin was activated.
    \n – Design Kit – Fixed a console error that occurred on the screen of the image when AI data was prefilled.
    \n – Design Kit – Addressed a blank screen issue when accessing the “Design Library” on Bedrock-powered sites.
    \n – Design Kit – Fixed option ‘ast-block-templates_data-‘ not getting deleted after importing the site template.
    \n – Design Kit – Prevented adding a block to a new page after Spectra installation.
    \n – Design Kit – Fixed shuffling of images when changing the orientation multiple times.
    \n – Design Kit – Fixed AI-generated business description response count not working as expected.
    \n – Design Kit – Fixed issue with authentication redirection.
    \n – AI Builder – Made compulsory features enabled by default and non-clickable.
    \n – AI Builder – UI improvements.
    \n – AI Builder – Fixed acceptance of incorrect input in the email field.
    \n – AI Builder – Ensured the “site creation limit exceeded” popup is displayed correctly.

    \n

    v4.3.4 – 24-June-2024
    \n– Chore: AI-Builder – Included build files.
    \n– Improvement: AI-Builder – Added ability to skip the Features screen using a filter.
    \n– Improvement: AI-Builder – Improved UI/UX.
    \n– Fix: AI-Builder – Site creation limit exceeded popup was not displaying.
    \n– Fix: AI-Builder – Removed irrelevant error messages from logs during import failures.

    \n

    v4.3.3 – 12-June-2024
    \n– Improvement: AI Builder – Error Boundary Screen in case of unexpected errors.
    \n– Improvement: AI Builder – Removed phone validations to match this phone format – Ex: +1 (888) SIXT-CAR (749-8227)
    \n– Improvement: ZipWP Images – Updated preview screen for better UX.
    \n– Fix: AI Builder – Better handling of console errors due to missing URLs in Image object from ZipWP images API.
    \n– Fix: Design Kit – Fixed a console error in Gutenberg Templates library due to missing URLs for author and engine for placeholder images.
    \n– Fix: Resolved PHP 8.2 deprecated notice related to the creation of dynamic properties.
    \n– Fix: ZipWP Images – “Select” of media library was not showing in the customiser preview.

    \n

    v4.3.2 – 11-June-2024
    \n– Fix: Fixed an issue where the search functionality in the Elementor editor was not working.

    \n

    v4.3.1 – 06-June-2024
    \n– Improvement: Added logging for import failures with a user alert for log details, warning that retries will exhaust AI site attempts.
    \n– Improvement: Prefill websites based on the previous site creation.
    \n– Fix: Resolved issue causing infinite skeleton loading for the classic template library.
    \n– Fix: Resolved blog posts throwing 404 errors.
    \n– Fix: Fixed an error when using the Spectra One theme and Starter Templates to import websites with ZipAI.
    \n– Fix: The title for the Description step does not change for exceptional cases.
    \n– Fix: Design Kit – Resolved Console error for undefined images.

    \n

    v4.3.0 – 04-June-2024
    \n– New: What’s New – Ability to see the new updates for Starter Templates plugin in the form of feed.
    \n– New: Free Images – Added all new library for Free Images with new free image search engines like Pexels and Pixabay.
    \n– Improvement: Added Admin Notice if Required XML Reader Class Not Found.
    \n– Improvement: Consistent UI Changes for AI Builder.
    \n– Improvement: UI – Improved the tooltip UI.
    \n– Fix: Classic Templates Not Showing for New Sites During Sync.
    \n– Fix: AI Builder – Fixed an issue with inconsistent font sizes and line height in the onboarding process.

    \n

    v4.2.6 – 27-May-2024
    \n– Improvement: AI Builder – Added a pre-installation confirmation modal before building the site.
    \n– Fix: Fixed a redirection issue with the “Try the New AI Builder” button on Starter Templates dashboard.
    \n– Fix: Corrected template listing for the Spectra One theme.
    \n– Fix: Fixed an issue where import failed for Beaver Builder templates.
    \n– Fix: Addressed an issue where fonts, colors, and other settings were not applied after importing Elementor templates.

    \n

    v4.2.5 – 21-May-2024
    \n– Fix: Resolved an issue that caused plugin activation errors on multisite installations.
    \n– Fix: Design Kit – The library not displaying on subdomain sites when the plugin is network activated.

    \n

    v4.2.4 – 17-May-2024
    \n– Improvement: Added a way to disable Classic Templates Importer.
    \n– Fix: Fixed broken WP-CLI import process for classic templates.

    \n

    v4.2.3 – 14-May-2024
    \n– Fix: Fixed the error while importing the classic templates.

    \n

    v4.2.2 – 10-May-2024
    \n– Improvement: Better error handling.
    \n– Improvement: Better preview for the color palette.
    \n– Improvement: Better UX while selecting Starter Templates.
    \n– Improvement: Improved the way Starter Templates stores JSON data while sync process to address memory issues.
    \n– Improvement: AI Builder – Improved the user experience by blocking unwanted options while processing data on a particular step.
    \n– Fix: Fixed an issue where the Starter Templates won’t get imported on an RTL website.
    \n– Fix: Design Kit: Rectified an issue where the Template kit names went missing due to library update.
    \n– Fix: AI Builder – Fixed an issue where the import would remain stuck at 98%.
    \n– Fix: Made Starter Templates more secure while uploading SVG files.

    \n

    v4.2.1 – 03-May-2024
    \n– Fix: Fixed an incorrect type casting of a string on a popup for AI Builder.

    \n

    v4.2.0 – 29-April-2024
    \n– New: Added custom color palette selection option in AI Builder.
    \n– New: Added “Features” screen to the Classic Builder onboarding.
    \n– New: ‘Load More’ templates option in AI Builder.
    \n– New: Design Kit – Added language compatibility for personalizing the AI copy.
    \n– Improvement: Enhanced template search functionality.
    \n– Improvement: Improved the way Starter Templates store JSON data during the import process to address memory issues.
    \n– Improvement: Optimized and enhanced code for a better user experience.
    \n– Improvement: User Interface improvements for the Template Kit library.
    \n– Improvement: Design Kit – Improved responsive design and UX.
    \n– Improvement: Classic Templates – Improved responsive design and UX.
    \n– Improvement: Ability to edit the previous step of AI Onboarding by clicking on the sidebar.
    \n– Improvement: Now, Upload images are available in a new tab within same screen.
    \n– Fix: Resolved issue with import for RTL sites.
    \n– Fix: Design Kit – Fixed an issue where the Design Kit button was not visible on an FSE-based theme.
    \n– Fix: Design Kit – Fixed an issue where the line height of the Design Kit templates appeared messed up.
    \n– Fix: Design Kit – Fixed a fatal error caused by unavailable error_log related libraries on the user’s server.

    \n

    v4.1.7 – 22-April-2024
    \n– Improvement: Hardened the security of the plugin.

    \n

    v4.1.6 – 09-April-2024
    \n– Fix: Resolved issue with Media library not functioning properly.

    \n

    v4.1.5 – 08-April-2024
    \n– Improvement: Streamlined the Gutenberg Templates library structure to reduce resource consumption.

    \n

    v4.1.4 – 01-April-2024
    \n– Fix: AI image replacement batch was inadvertently functioning for Classic editor templates.
    \n– Fix: Displaying “Download images fail” message when no images are selected during onboarding.

    \n

    v4.1.3 – 28-March-2024
    \n– Fix: Resolved import process getting stuck due to resource limitations on certain hosts.

    \n

    v4.1.2 – 25-March-2024
    \n– Improvement: Added WordPress 6.5 compatibility.

    \n

    v4.1.1 – 20-March-2024
    \n– Fix: Import process was getting stuck after activating the plugin required for selected feature.

    \n

    v4.1.0 – 19-March-2024
    \n– New: Introduced local language support in AI building.
    \n– New: Added an upload image feature when selecting images for your site.
    \n– Improvement: Enhanced AI building for a better user experience.
    \n– Improvement: Consolidated Logo, Font, and Color Palette support into one screen on the Classic Builder.
    \n– Improvement: Enhanced and optimised code for an improved user experience.

    \n

    v4.0.13 – 21-February-2024
    \n– Fix: Resolved an issue where the AI description won’t get generated on WordPress.com sites.

    \n

    v4.0.12 – 12-February-2024
    \n– Fix: Resolved an issue where the Template Kit button was not visible due to mismatched business categories.

    \n

    v4.0.11 – 10-February-2024
    \n– Fix: Resolved an issue where the import process stayed stuck at 95% with AI Website Builder.

    \n

    v4.0.10 – 07-February-2024
    \n– Fix: Resolved an issue where the Template Kit button was not visible.

    \n

    v4.0.9 – 05-February-2024
    \n– Fix: Resolved an issue where the category was not assigned after import.

    \n

    v4.0.8 – 01-February-2024
    \n– Improvement: AI Website Builder – Ability to create a site with desired features like Donations, Automation, Sales Funnels Video Player, etc for the website.

    \n

    v4.0.7 – 29-January-2024
    \n– Fix: Resolved an issue where the Premium Template Kits won’t get imported.

    \n

    v4.0.6 – 25-January-2024
    \n– Improvement: Enhanced user experience by providing informative error messages for better troubleshooting.

    \n

    v4.0.5 – 23-January-2024
    \n– Improvement: Added Flexbox Container compatibility for Elementor templates.

    \n

    v4.0.4 – 22-January-2024
    \n– Fix: Fixed the fatal error issue that would occur after Spectra v2.12.0.

    \n

    v4.0.3 – 17-January-2024
    \n– Fix: Fixed an issue where the import process was breaking for AI websites.
    \n– Fix: Fixed an issue where the images won’t get reflected in search results as per the search keyword.

    \n

    v4.0.2 – 15-January-2024
    \n– Improvement: Added Flexbox Container compatibility in Elementor.
    \n– Improvement: Added ability to resume back to last session while building AI website.
    \n– Improvement: Better UX while using AI Website Builder.

    \n

    v4.0.1 – 04-January-2024
    \n– Fix: Fixed an issue where the CSS looked messed up after importing using AI Website Builder.

    \n

    v4.0.0 – 03-January-2024
    \n– New: AI Website Builder.
    \n– Fix: Tightened the plugin security.

    \n

    v3.5.7 – 30-December-2023
    \n– Fix: Fixed Template Kit library conflict ( 503 Error ) with Gravity Form plugin.

    \n

    Check out the detailed changelog here.

    \n", "description": "

    Starter Templates: AI Website Builder and Elementor Templates

    \n

    The future of website creation is here! With Starter Templates, you can create professional-looking websites in just minutes, powered by AI.

    \n

    Leverage the Starter Templates AI website builder to generate websites with:

    \n
      \n
    • Stunning designs
    • \n
    • All relevant sections and pages
    • \n
    • High quality stock images to help engage visitors
    • \n
    • Compelling website copy tailored to your business
    • \n
    • Extensive customization options
    • \n
    \n

    Say goodbye to spending days or weeks designing and building a website. With Starter Templates, you can build websites faster than ever with AI.

    \n

    Try the live demo of Starter Templates

    \n

    HIGHLIGHTS

    \n

    ★ WordPress AI website builder
    \n★ Built-in AI assistant
    \n★ Fast and easy to use
    \n★ Large library of Elementor templates
    \n★ Hundreds of WordPress block editor (Gutenberg) templates
    \n★ 200+ Sections and block patterns
    \n★ Supported page builders: Spectra, Elementor, WordPress editor
    \n★ Fully customizable websites

    \n

    How Does Starter Template AI Website Builder Work?

    \n

    Starter Templates integrates with ZipWP, our amazing AI website building platform. It takes care of everything for you, from design to content generation.

    \n

    Let AI do the heavy lifting, so you can focus on your ideas!

    \n

    Our mission is to unlock the power of the internet for small businesses. Creating a website shouldn’t be difficult, and growing a business on the internet shouldn’t be complicated.

    \n

    With Starter Templates, you can create a stunning website in a matter of minutes. Simply describe your idea, and watch as a WordPress website is built before your eyes.

    \n

    Want to create a lightweight website for your business that also looks exceptional?

    \n

    Follow the steps below:

    \n
      \n
    1. Select the type of website you’re creating (portfolio, business site, landing page, or something else).
    2. \n
    3. Provide your business name.
    4. \n
    5. Describe your business. Use AI to refine your description prompt if you need to.
    6. \n
    7. The AI will suggest images based on your input. Select the images you want to use.
    8. \n
    9. Add your contact details and social media handles so people can interact.
    10. \n
    11. Choose the website structure from the options.
    12. \n
    13. Select any site features you need.
    14. \n
    15. The AI will generate a website in under 2 minutes.
    16. \n
    17. Customize your site as you see fit!
    18. \n
    \n

    Whether you’re a beginner with no website building experience, or a seasoned web designer, Starter Templates has you covered.

    \n

    All Features

    \n

    Starter Template has all the essentials you need to create amazing websites!

    \n

    AI Website Builder

    \n

    Thanks to the power of AI, you can create your dream website effortlessly. Our AI analyzes your business description and goals, then selects the perfect design, generates professional copy, and curates visuals to match your brand.

    \n

    No more wrestling with complex themes or plugins – just describe your idea and let AI do the rest!

    \n

    Lightning Fast Websites

    \n

    Starter Templates prioritizes speed and efficiency without compromising quality.

    \n

    Here’s what sets us apart:

    \n

    Optimized Code

    \n

    Pages created with Starter Templates have efficient code, and are free from all unnecessary elements.

    \n

    This translates to faster load times and a smoother user experience for visitors regardless of browser or device.

    \n

    Realistic Templates

    \n

    Starter Templates goes beyond stunning design. It delivers readymade website templates specifically crafted with your business in mind.

    \n

    Launching an eCommerce store? We have a diverse selection of store templates to get you selling in no time.

    \n

    Creating a business website? We have dozens of professional-quality designs ready for you to make your mark.

    \n

    No matter your industry or niche, we have a template that perfectly aligns with your vision.

    \n

    Classic Starter Templates

    \n

    Whether you’re a small business owner, freelancer, or nonprofit organization, there’s a template that suits your needs. Templates are carefully crafted to provide a polished and attractive look for your website.

    \n

    The cherry on top? Starter Template supports multiple page builders, including Elementor, Spectra and Gutenberg.

    \n

    You have the flexibility to customize your website your way.

    \n

    Hundreds of Sections and Block Patterns

    \n

    Want to customize your website to make it truly unique? Use sections and block patterns to add your personal style.

    \n

    Available sections include:

    \n
      \n
    • Hero
    • \n
    • Page Header
    • \n
    • About
    • \n
    • Services
    • \n
    • Features
    • \n
    • Contact
    • \n
    • Why Choose Us
    • \n
    • Call To Action
    • \n
    • Portfolio
    • \n
    • Gallery
    • \n
    • Testimonials
    • \n
    • Pricing
    • \n
    • FAQ
    • \n
    • Team
    • \n
    • Statistics
    • \n
    \n

    AI-Integrated Adaptive Design Library

    \n

    Personalize blocks and patterns to match your website style with the power of AI.

    \n

    The design library within the Starter Templates plugin is integrated with AI and royalty-free image repositories. All elements come pre-populated with relevant text and images that you can easily customize to match your brand.

    \n

    Elementor Templates

    \n

    A fan of Elementor? Look no further! Starter Templates offers a vast collection of professionally designed Elementor templates.

    \n

    You can effortlessly import entire websites crafted with Elementor, individual pages, or even specific blocks to enhance your site’s functionality and aesthetic appeal.

    \n

    Then just drag, drop, customize, and launch your website!

    \n

    WordPress Block Editor Templates

    \n

    The WordPress block editor (formerly Gutenberg) is changing the game for website creation.

    \n

    Building from scratch can be time-consuming. Fortunately, Starter Templates offers a vast library of readymade templates to ignite your website’s potential.

    \n

    AI Assistant for WordPress

    \n

    Our AI Assistant works in a similar way to ChatGPT but is specifically tailored for WordPress.

    \n

    With just a click of a button, you can use the power of artificial intelligence to help write copy for landing pages, proofread blog posts, translate content into different languages, generate custom HTML and CSS codes, and much more!

    \n

    Royalty-Free Images

    \n

    The Starter Templates plugin offers seamless integration with leading royalty-free image repositories such as Pexels and Unsplash.

    \n

    You have access to millions of top-tier images within your WordPress dashboard. Simply search for the image you need and select it.

    \n

    Training Videos

    \n

    As the saying goes, “Give someone a fish, and they will eat for a day; teach them how to fish, and they will eat for a lifetime.”

    \n

    Embracing this philosophy, we offer a range of comprehensive training videos designed to complement our templates. They provide the knowledge and skills necessary to build, launch, and maintain your website.

    \n

    Types of Websites You Can Create

    \n

    Starter Templates is perfect for building websites for:

    \n

    ✔ Personal branding
    \n✔ Restaurants
    \n✔ Service providers
    \n✔ Nonprofits and charities
    \n✔ Events
    \n✔ Startups
    \n✔ Local businesses
    \n✔ Wellness businesses
    \n✔ Landing pages
    \n✔ Lead generation websites
    \n✔ eCommerce stores
    \n✔ Blogs
    \n✔ Manufacturing businesses
    \n✔ Any other type of WordPress website

    \n

    There’s no limit to what you can create!

    \n

    Please note: To access templates and AI features, you’ll need a ZipWP account. ZipWP platform. Signing up is quick, easy, and 100% free.

    \n

    Fun Facts About Starter Templates

    \n

    ➜ Over 5,000 websites are built with Starter Templates every day.
    \n➜ The plugin has been installed on more than 2 million websites.
    \n➜ Starter Templates has more than 4,500 five-star reviews.
    \n➜ Our team of dedicated full-time WordPress experts help and support hundreds of users daily.
    \n➜ A devoted team full-time designers keep the design library up to date.
    \n➜ Our plugin offers more than 100 free Elementor templates.
    \n➜ You can import a complete website, individual page, or section of a page in seconds.
    \n➜ We support 2 page builders: Spectra and Elementor as well as the WordPress editor
    \n➜ “eCommerce” is the most searched keyword in our library.

    \n

    The Starter Templates Plugin Works With…

    \n

    ➜ Astra Theme
    \n➜ Spectra website builder
    \n➜ WordPress block editor/Gutenberg
    \n➜ Elementor page builder
    \n➜ WooCommerce
    \n➜ WPForms
    \n➜ Sitekit

    \n", "screenshots": "
    1. \"AI

      AI Website Builder - Starter Templates has been integrated with ZipWP - our innovative AI Website Builder to make building websites super easy.

    2. \"Unlimited

      Unlimited Customizations - Enjoy complete control of your website content and layout. Change colors, fonts, add images, create and add new patterns and pages.

    3. \"Hundreds

      Hundreds of Templates - Choose from over 200 diverse designs to build your dream website in minutes. Whether it''s eCommerce, Business, Portfolio, or any niche, find the perfect template tailored to your vision.

    4. \"Limitless

      Limitless Customizations- Explore fonts and colors with a simple click. Effortlessly change images add new patterns/pages.

    5. \"Design

      Design Library - No more starting from scratch, no more design roadblocks. Jumpstart your designs with any of our professionally designed pages and patterns templates.

    6. \"Use

      Use the power of AI with a single click to write copy, proofread, translate content into different languages. Adjust content length and tone seamlessly for maximum appeal.

    "}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/astra-sites.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/astra-sites.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/astra-sites.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/astra-sites.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/astra-sites.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/astra-sites.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/astra-sites.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/astra-sites.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/astra-sites.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/plugin/astra-sites.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/plugin/astra-sites.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/astra-sites.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/astra-sites.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/astra-sites.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/astra-sites.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/astra-sites.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/astra-sites.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/plugin/astra-sites.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/plugin/astra-sites.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/plugin/astra-sites.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/plugin/astra-sites.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/astra-sites.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/astra-sites.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/astra-sites.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/astra-sites.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/astra-sites.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/astra-sites.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/astra-sites.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/astra-sites.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/astra-sites.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/plugin/astra-sites.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/astra-sites.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/astra-sites.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/astra-sites.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/astra-sites.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/astra-sites.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/astra-sites.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/astra-sites.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/astra-sites.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/astra-sites.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/plugin/astra-sites.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/astra-sites.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/astra-sites.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/astra-sites.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/astra-sites.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/astra-sites.1.4.5.zip", "2.0.0": "https://downloads.wordpress.org/plugin/astra-sites.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/astra-sites.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/astra-sites.2.0.2.zip", "2.1.0": "https://downloads.wordpress.org/plugin/astra-sites.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/astra-sites.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/astra-sites.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/astra-sites.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/astra-sites.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/astra-sites.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/astra-sites.2.2.5.zip", "2.3.0": "https://downloads.wordpress.org/plugin/astra-sites.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/astra-sites.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/astra-sites.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/astra-sites.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/astra-sites.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/astra-sites.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/astra-sites.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/astra-sites.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/astra-sites.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/astra-sites.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/plugin/astra-sites.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/astra-sites.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/astra-sites.2.5.1.zip", "2.6.0": "https://downloads.wordpress.org/plugin/astra-sites.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/astra-sites.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/astra-sites.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/astra-sites.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/astra-sites.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/astra-sites.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/astra-sites.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/astra-sites.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/astra-sites.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/astra-sites.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/plugin/astra-sites.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/astra-sites.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/astra-sites.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/astra-sites.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/astra-sites.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/astra-sites.2.7.5.zip", "3.0.0": "https://downloads.wordpress.org/plugin/astra-sites.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/astra-sites.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/astra-sites.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/astra-sites.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/astra-sites.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/astra-sites.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/astra-sites.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/astra-sites.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/astra-sites.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/astra-sites.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/astra-sites.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/astra-sites.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/astra-sites.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/astra-sites.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/astra-sites.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/astra-sites.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/astra-sites.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/astra-sites.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/astra-sites.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/astra-sites.3.1.9.zip", "3.2.0": "https://downloads.wordpress.org/plugin/astra-sites.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/astra-sites.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/astra-sites.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/astra-sites.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/astra-sites.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/astra-sites.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/astra-sites.3.2.6.zip", "3.3.0": "https://downloads.wordpress.org/plugin/astra-sites.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/astra-sites.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/astra-sites.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/astra-sites.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/astra-sites.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/astra-sites.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/astra-sites.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/plugin/astra-sites.3.4.6.zip", "3.5.0": "https://downloads.wordpress.org/plugin/astra-sites.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/astra-sites.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/astra-sites.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/astra-sites.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/astra-sites.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/astra-sites.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/astra-sites.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/plugin/astra-sites.3.5.7.zip", "4.0.0": "https://downloads.wordpress.org/plugin/astra-sites.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/astra-sites.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/astra-sites.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/astra-sites.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/astra-sites.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/astra-sites.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/astra-sites.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/astra-sites.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/plugin/astra-sites.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/plugin/astra-sites.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/plugin/astra-sites.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/astra-sites.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/astra-sites.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/astra-sites.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/astra-sites.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/astra-sites.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/astra-sites.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/astra-sites.4.1.7.zip", "4.2.0": "https://downloads.wordpress.org/plugin/astra-sites.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/astra-sites.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/astra-sites.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/astra-sites.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/astra-sites.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/astra-sites.4.2.5.zip", "4.2.6": "https://downloads.wordpress.org/plugin/astra-sites.4.2.6.zip", "4.3.0": "https://downloads.wordpress.org/plugin/astra-sites.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/astra-sites.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/astra-sites.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/astra-sites.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/plugin/astra-sites.4.3.4.zip", "4.3.5": "https://downloads.wordpress.org/plugin/astra-sites.4.3.5.zip", "4.3.6": "https://downloads.wordpress.org/plugin/astra-sites.4.3.6.zip", "4.3.7": "https://downloads.wordpress.org/plugin/astra-sites.4.3.7.zip", "4.3.8": "https://downloads.wordpress.org/plugin/astra-sites.4.3.8.zip", "4.3.9": "https://downloads.wordpress.org/plugin/astra-sites.4.3.9.zip", "4.4.0": "https://downloads.wordpress.org/plugin/astra-sites.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/astra-sites.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/astra-sites.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/plugin/astra-sites.4.4.3.zip", "4.4.4": "https://downloads.wordpress.org/plugin/astra-sites.4.4.4.zip", "4.4.5": "https://downloads.wordpress.org/plugin/astra-sites.4.4.5.zip", "4.4.6": "https://downloads.wordpress.org/plugin/astra-sites.4.4.6.zip", "4.4.7": "https://downloads.wordpress.org/plugin/astra-sites.4.4.7.zip", "4.4.8": "https://downloads.wordpress.org/plugin/astra-sites.4.4.8.zip", "4.4.9": "https://downloads.wordpress.org/plugin/astra-sites.4.4.9.zip", "trunk": "https://downloads.wordpress.org/plugin/astra-sites.zip", "1.0.10": "https://downloads.wordpress.org/plugin/astra-sites.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/plugin/astra-sites.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/plugin/astra-sites.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/plugin/astra-sites.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/plugin/astra-sites.1.0.14.zip", "1.2.10": "https://downloads.wordpress.org/plugin/astra-sites.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/plugin/astra-sites.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/plugin/astra-sites.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/plugin/astra-sites.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/plugin/astra-sites.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/plugin/astra-sites.1.2.15.zip", "1.3.10": "https://downloads.wordpress.org/plugin/astra-sites.1.3.10.zip", "1.3.11": "https://downloads.wordpress.org/plugin/astra-sites.1.3.11.zip", "1.3.13": "https://downloads.wordpress.org/plugin/astra-sites.1.3.13.zip", "1.3.14": "https://downloads.wordpress.org/plugin/astra-sites.1.3.14.zip", "1.3.15": "https://downloads.wordpress.org/plugin/astra-sites.1.3.15.zip", "1.3.16": "https://downloads.wordpress.org/plugin/astra-sites.1.3.16.zip", "1.3.17": "https://downloads.wordpress.org/plugin/astra-sites.1.3.17.zip", "1.3.18": "https://downloads.wordpress.org/plugin/astra-sites.1.3.18.zip", "1.3.19": "https://downloads.wordpress.org/plugin/astra-sites.1.3.19.zip", "1.3.20": "https://downloads.wordpress.org/plugin/astra-sites.1.3.20.zip", "1.3.21": "https://downloads.wordpress.org/plugin/astra-sites.1.3.21.zip", "2.6.10": "https://downloads.wordpress.org/plugin/astra-sites.2.6.10.zip", "2.6.11": "https://downloads.wordpress.org/plugin/astra-sites.2.6.11.zip", "2.6.12": "https://downloads.wordpress.org/plugin/astra-sites.2.6.12.zip", "2.6.13": "https://downloads.wordpress.org/plugin/astra-sites.2.6.13.zip", "2.6.14": "https://downloads.wordpress.org/plugin/astra-sites.2.6.14.zip", "2.6.15": "https://downloads.wordpress.org/plugin/astra-sites.2.6.15.zip", "2.6.16": "https://downloads.wordpress.org/plugin/astra-sites.2.6.16.zip", "2.6.17": "https://downloads.wordpress.org/plugin/astra-sites.2.6.17.zip", "2.6.18": "https://downloads.wordpress.org/plugin/astra-sites.2.6.18.zip", "2.6.19": "https://downloads.wordpress.org/plugin/astra-sites.2.6.19.zip", "2.6.20": "https://downloads.wordpress.org/plugin/astra-sites.2.6.20.zip", "2.6.21": "https://downloads.wordpress.org/plugin/astra-sites.2.6.21.zip", "2.6.22": "https://downloads.wordpress.org/plugin/astra-sites.2.6.22.zip", "3.0.10": "https://downloads.wordpress.org/plugin/astra-sites.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/astra-sites.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/plugin/astra-sites.3.0.12.zip", "3.0.13": "https://downloads.wordpress.org/plugin/astra-sites.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/plugin/astra-sites.3.0.14.zip", "3.0.15": "https://downloads.wordpress.org/plugin/astra-sites.3.0.15.zip", "3.0.16": "https://downloads.wordpress.org/plugin/astra-sites.3.0.16.zip", "3.0.17": "https://downloads.wordpress.org/plugin/astra-sites.3.0.17.zip", "3.0.18": "https://downloads.wordpress.org/plugin/astra-sites.3.0.18.zip", "3.0.19": "https://downloads.wordpress.org/plugin/astra-sites.3.0.19.zip", "3.0.20": "https://downloads.wordpress.org/plugin/astra-sites.3.0.20.zip", "3.0.21": "https://downloads.wordpress.org/plugin/astra-sites.3.0.21.zip", "3.0.22": "https://downloads.wordpress.org/plugin/astra-sites.3.0.22.zip", "3.0.23": "https://downloads.wordpress.org/plugin/astra-sites.3.0.23.zip", "3.0.24": "https://downloads.wordpress.org/plugin/astra-sites.3.0.24.zip", "3.0.25": "https://downloads.wordpress.org/plugin/astra-sites.3.0.25.zip", "3.1.10": "https://downloads.wordpress.org/plugin/astra-sites.3.1.10.zip", "3.1.11": "https://downloads.wordpress.org/plugin/astra-sites.3.1.11.zip", "3.1.12": "https://downloads.wordpress.org/plugin/astra-sites.3.1.12.zip", "3.1.13": "https://downloads.wordpress.org/plugin/astra-sites.3.1.13.zip", "3.1.14": "https://downloads.wordpress.org/plugin/astra-sites.3.1.14.zip", "3.1.15": "https://downloads.wordpress.org/plugin/astra-sites.3.1.15.zip", "3.1.16": "https://downloads.wordpress.org/plugin/astra-sites.3.1.16.zip", "3.1.17": "https://downloads.wordpress.org/plugin/astra-sites.3.1.17.zip", "3.1.18": "https://downloads.wordpress.org/plugin/astra-sites.3.1.18.zip", "3.1.19": "https://downloads.wordpress.org/plugin/astra-sites.3.1.19.zip", "3.1.20": "https://downloads.wordpress.org/plugin/astra-sites.3.1.20.zip", "3.1.21": "https://downloads.wordpress.org/plugin/astra-sites.3.1.21.zip", "3.1.22": "https://downloads.wordpress.org/plugin/astra-sites.3.1.22.zip", "3.1.23": "https://downloads.wordpress.org/plugin/astra-sites.3.1.23.zip", "3.1.24": "https://downloads.wordpress.org/plugin/astra-sites.3.1.24.zip", "3.1.25": "https://downloads.wordpress.org/plugin/astra-sites.3.1.25.zip", "3.1.26": "https://downloads.wordpress.org/plugin/astra-sites.3.1.26.zip", "3.1.27": "https://downloads.wordpress.org/plugin/astra-sites.3.1.27.zip", "4.0.10": "https://downloads.wordpress.org/plugin/astra-sites.4.0.10.zip", "4.0.11": "https://downloads.wordpress.org/plugin/astra-sites.4.0.11.zip", "4.0.12": "https://downloads.wordpress.org/plugin/astra-sites.4.0.12.zip", "4.0.13": "https://downloads.wordpress.org/plugin/astra-sites.4.0.13.zip", "4.4.10": "https://downloads.wordpress.org/plugin/astra-sites.4.4.10.zip", "4.4.11": "https://downloads.wordpress.org/plugin/astra-sites.4.4.11.zip", "4.4.12": "https://downloads.wordpress.org/plugin/astra-sites.4.4.12.zip", "4.4.13": "https://downloads.wordpress.org/plugin/astra-sites.4.4.13.zip", "4.4.14": "https://downloads.wordpress.org/plugin/astra-sites.4.4.14.zip", "4.4.16": "https://downloads.wordpress.org/plugin/astra-sites.4.4.16.zip", "4.4.17": "https://downloads.wordpress.org/plugin/astra-sites.4.4.17.zip", "4.4.18": "https://downloads.wordpress.org/plugin/astra-sites.4.4.18.zip", "4.4.19": "https://downloads.wordpress.org/plugin/astra-sites.4.4.19.zip", "4.4.20": "https://downloads.wordpress.org/plugin/astra-sites.4.4.20.zip", "4.4.21": "https://downloads.wordpress.org/plugin/astra-sites.4.4.21.zip", "4.4.22": "https://downloads.wordpress.org/plugin/astra-sites.4.4.22.zip", "4.4.23": "https://downloads.wordpress.org/plugin/astra-sites.4.4.23.zip", "4.4.24": "https://downloads.wordpress.org/plugin/astra-sites.4.4.24.zip", "4.4.25": "https://downloads.wordpress.org/plugin/astra-sites.4.4.25.zip", "4.4.26": "https://downloads.wordpress.org/plugin/astra-sites.4.4.26.zip", "4.4.27": "https://downloads.wordpress.org/plugin/astra-sites.4.4.27.zip", "4.4.28": "https://downloads.wordpress.org/plugin/astra-sites.4.4.28.zip", "4.4.29": "https://downloads.wordpress.org/plugin/astra-sites.4.4.29.zip", "4.4.30": "https://downloads.wordpress.org/plugin/astra-sites.4.4.30.zip", "4.4.31": "https://downloads.wordpress.org/plugin/astra-sites.4.4.31.zip", "4.4.32": "https://downloads.wordpress.org/plugin/astra-sites.4.4.32.zip", "4.4.33": "https://downloads.wordpress.org/plugin/astra-sites.4.4.33.zip", "4.4.34": "https://downloads.wordpress.org/plugin/astra-sites.4.4.34.zip", "4.4.35": "https://downloads.wordpress.org/plugin/astra-sites.4.4.35.zip", "4.4.36": "https://downloads.wordpress.org/plugin/astra-sites.4.4.36.zip", "4.4.37": "https://downloads.wordpress.org/plugin/astra-sites.4.4.37.zip", "4.4.38": "https://downloads.wordpress.org/plugin/astra-sites.4.4.38.zip", "4.4.39": "https://downloads.wordpress.org/plugin/astra-sites.4.4.39.zip", "4.4.40": "https://downloads.wordpress.org/plugin/astra-sites.4.4.40.zip", "0.4.4.0": "https://downloads.wordpress.org/plugin/astra-sites.0.4.4.0.zip", "0.4.4.15": "https://downloads.wordpress.org/plugin/astra-sites.0.4.4.15.zip"}, "downloaded": 84263172, "description": "

    Starter Templates: AI Website Builder and Elementor Templates

    \n

    The future of website creation is here! With Starter Templates, you can create professional-looking websites in just minutes, powered by AI.

    \n

    Leverage the Starter Templates AI website builder to generate websites with:

    \n
      \n
    • Stunning designs
    • \n
    • All relevant sections and pages
    • \n
    • High quality stock images to help engage visitors
    • \n
    • Compelling website copy tailored to your business
    • \n
    • Extensive customization options
    • \n
    \n

    Say goodbye to spending days or weeks designing and building a website. With Starter Templates, you can build websites faster than ever with AI.

    \n

    Try the live demo of Starter Templates

    \n

    HIGHLIGHTS

    \n

    ★ WordPress AI website builder
    \n★ Built-in AI assistant
    \n★ Fast and easy to use
    \n★ Large library of Elementor templates
    \n★ Hundreds of WordPress block editor (Gutenberg) templates
    \n★ 200+ Sections and block patterns
    \n★ Supported page builders: Spectra, Elementor, WordPress editor
    \n★ Fully customizable websites

    \n

    How Does Starter Template AI Website Builder Work?

    \n

    Starter Templates integrates with ZipWP, our amazing AI website building platform. It takes care of everything for you, from design to content generation.

    \n

    Let AI do the heavy lifting, so you can focus on your ideas!

    \n

    Our mission is to unlock the power of the internet for small businesses. Creating a website shouldn’t be difficult, and growing a business on the internet shouldn’t be complicated.

    \n

    With Starter Templates, you can create a stunning website in a matter of minutes. Simply describe your idea, and watch as a WordPress website is built before your eyes.

    \n

    Want to create a lightweight website for your business that also looks exceptional?

    \n

    Follow the steps below:

    \n
      \n
    1. Select the type of website you’re creating (portfolio, business site, landing page, or something else).
    2. \n
    3. Provide your business name.
    4. \n
    5. Describe your business. Use AI to refine your description prompt if you need to.
    6. \n
    7. The AI will suggest images based on your input. Select the images you want to use.
    8. \n
    9. Add your contact details and social media handles so people can interact.
    10. \n
    11. Choose the website structure from the options.
    12. \n
    13. Select any site features you need.
    14. \n
    15. The AI will generate a website in under 2 minutes.
    16. \n
    17. Customize your site as you see fit!
    18. \n
    \n

    Whether you’re a beginner with no website building experience, or a seasoned web designer, Starter Templates has you covered.

    \n

    All Features

    \n

    Starter Template has all the essentials you need to create amazing websites!

    \n

    AI Website Builder

    \n

    Thanks to the power of AI, you can create your dream website effortlessly. Our AI analyzes your business description and goals, then selects the perfect design, generates professional copy, and curates visuals to match your brand.

    \n

    No more wrestling with complex themes or plugins – just describe your idea and let AI do the rest!

    \n

    Lightning Fast Websites

    \n

    Starter Templates prioritizes speed and efficiency without compromising quality.

    \n

    Here’s what sets us apart:

    \n

    Optimized Code

    \n

    Pages created with Starter Templates have efficient code, and are free from all unnecessary elements.

    \n

    This translates to faster load times and a smoother user experience for visitors regardless of browser or device.

    \n

    Realistic Templates

    \n

    Starter Templates goes beyond stunning design. It delivers readymade website templates specifically crafted with your business in mind.

    \n

    Launching an eCommerce store? We have a diverse selection of store templates to get you selling in no time.

    \n

    Creating a business website? We have dozens of professional-quality designs ready for you to make your mark.

    \n

    No matter your industry or niche, we have a template that perfectly aligns with your vision.

    \n

    Classic Starter Templates

    \n

    Whether you’re a small business owner, freelancer, or nonprofit organization, there’s a template that suits your needs. Templates are carefully crafted to provide a polished and attractive look for your website.

    \n

    The cherry on top? Starter Template supports multiple page builders, including Elementor, Spectra and Gutenberg.

    \n

    You have the flexibility to customize your website your way.

    \n

    Hundreds of Sections and Block Patterns

    \n

    Want to customize your website to make it truly unique? Use sections and block patterns to add your personal style.

    \n

    Available sections include:

    \n
      \n
    • Hero
    • \n
    • Page Header
    • \n
    • About
    • \n
    • Services
    • \n
    • Features
    • \n
    • Contact
    • \n
    • Why Choose Us
    • \n
    • Call To Action
    • \n
    • Portfolio
    • \n
    • Gallery
    • \n
    • Testimonials
    • \n
    • Pricing
    • \n
    • FAQ
    • \n
    • Team
    • \n
    • Statistics
    • \n
    \n

    AI-Integrated Adaptive Design Library

    \n

    Personalize blocks and patterns to match your website style with the power of AI.

    \n

    The design library within the Starter Templates plugin is integrated with AI and royalty-free image repositories. All elements come pre-populated with relevant text and images that you can easily customize to match your brand.

    \n

    Elementor Templates

    \n

    A fan of Elementor? Look no further! Starter Templates offers a vast collection of professionally designed Elementor templates.

    \n

    You can effortlessly import entire websites crafted with Elementor, individual pages, or even specific blocks to enhance your site’s functionality and aesthetic appeal.

    \n

    Then just drag, drop, customize, and launch your website!

    \n

    WordPress Block Editor Templates

    \n

    The WordPress block editor (formerly Gutenberg) is changing the game for website creation.

    \n

    Building from scratch can be time-consuming. Fortunately, Starter Templates offers a vast library of readymade templates to ignite your website’s potential.

    \n

    AI Assistant for WordPress

    \n

    Our AI Assistant works in a similar way to ChatGPT but is specifically tailored for WordPress.

    \n

    With just a click of a button, you can use the power of artificial intelligence to help write copy for landing pages, proofread blog posts, translate content into different languages, generate custom HTML and CSS codes, and much more!

    \n

    Royalty-Free Images

    \n

    The Starter Templates plugin offers seamless integration with leading royalty-free image repositories such as Pexels and Unsplash.

    \n

    You have access to millions of top-tier images within your WordPress dashboard. Simply search for the image you need and select it.

    \n

    Training Videos

    \n

    As the saying goes, “Give someone a fish, and they will eat for a day; teach them how to fish, and they will eat for a lifetime.”

    \n

    Embracing this philosophy, we offer a range of comprehensive training videos designed to complement our templates. They provide the knowledge and skills necessary to build, launch, and maintain your website.

    \n

    Types of Websites You Can Create

    \n

    Starter Templates is perfect for building websites for:

    \n

    ✔ Personal branding
    \n✔ Restaurants
    \n✔ Service providers
    \n✔ Nonprofits and charities
    \n✔ Events
    \n✔ Startups
    \n✔ Local businesses
    \n✔ Wellness businesses
    \n✔ Landing pages
    \n✔ Lead generation websites
    \n✔ eCommerce stores
    \n✔ Blogs
    \n✔ Manufacturing businesses
    \n✔ Any other type of WordPress website

    \n

    There’s no limit to what you can create!

    \n

    Please note: To access templates and AI features, you’ll need a ZipWP account. ZipWP platform. Signing up is quick, easy, and 100% free.

    \n

    Fun Facts About Starter Templates

    \n

    ➜ Over 5,000 websites are built with Starter Templates every day.
    \n➜ The plugin has been installed on more than 2 million websites.
    \n➜ Starter Templates has more than 4,500 five-star reviews.
    \n➜ Our team of dedicated full-time WordPress experts help and support hundreds of users daily.
    \n➜ A devoted team full-time designers keep the design library up to date.
    \n➜ Our plugin offers more than 100 free Elementor templates.
    \n➜ You can import a complete website, individual page, or section of a page in seconds.
    \n➜ We support 2 page builders: Spectra and Elementor as well as the WordPress editor
    \n➜ “eCommerce” is the most searched keyword in our library.

    \n

    The Starter Templates Plugin Works With…

    \n

    ➜ Astra Theme
    \n➜ Spectra website builder
    \n➜ WordPress block editor/Gutenberg
    \n➜ Elementor page builder
    \n➜ WooCommerce
    \n➜ WPForms
    \n➜ Sitekit

    \n", "donate_link": "https://wpastra.com/pro/", "num_ratings": 4698, "screenshots": {"1": {"src": "https://ps.w.org/astra-sites/assets/screenshot-1.gif?rev=3060571", "caption": "AI Website Builder - Starter Templates has been integrated with ZipWP - our innovative AI Website Builder to make building websites super easy."}, "2": {"src": "https://ps.w.org/astra-sites/assets/screenshot-2.gif?rev=3058189", "caption": "Unlimited Customizations - Enjoy complete control of your website content and layout. Change colors, fonts, add images, create and add new patterns and pages."}, "3": {"src": "https://ps.w.org/astra-sites/assets/screenshot-3.gif?rev=3060571", "caption": "Hundreds of Templates - Choose from over 200 diverse designs to build your dream website in minutes. Whether it''s eCommerce, Business, Portfolio, or any niche, find the perfect template tailored to your vision."}, "4": {"src": "https://ps.w.org/astra-sites/assets/screenshot-4.gif?rev=3058189", "caption": "Limitless Customizations- Explore fonts and colors with a simple click. Effortlessly change images add new patterns/pages."}, "5": {"src": "https://ps.w.org/astra-sites/assets/screenshot-5.gif?rev=3058189", "caption": "Design Library - No more starting from scratch, no more design roadblocks. Jumpstart your designs with any of our professionally designed pages and patterns templates."}, "6": {"src": "https://ps.w.org/astra-sites/assets/screenshot-6.gif?rev=3058189", "caption": "Use the power of AI with a single click to write copy, proofread, translate content into different languages. Adjust content length and tone seamlessly for maximum appeal."}}, "support_url": "https://wordpress.org/support/plugin/astra-sites/", "contributors": {"brainstormforce": {"avatar": "https://secure.gravatar.com/avatar/b9280ac641a862e2e148513dfb9567e56a273b649dbfad5df6867d4700a685d2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brainstormforce/", "display_name": "Brainstorm Force"}}, "last_updated": "2025-10-01 7:17am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/astra-sites.4.4.40.zip", "author_profile": "https://profiles.wordpress.org/brainstormforce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-ef03-71ef-ba0e-60ff63bbc2c0", "name": "Starter Templates – AI-Powered Templates for Elementor & Gutenberg", "slug": "astra-sites", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1759303020, "version": "4.4.40"}, "support_threads": 3, "requires_plugins": [], "short_description": "The growing library of 300+ ready-to-use templates that work with all WordPress themes including Astra, Hello, OceanWP, GeneratePress and more", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-6429-7174-a0eb-a6e3c3342f9a', 'classic-widgets', 'Classic Widgets', 'Enables the previous "classic" widgets settings screens in Appearance - Widgets and the Customizer. Disables the block editor from managing widgets.', '

    Classic Widgets is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress widgets settings screens. It will be supported and maintained to 2024, or as long as is necessary.

    -

    Once activated and when using a classic (non-block) theme, this plugin restores the previous widgets settings screens and disables the block editor from managing widgets. There is no other configuration, the classic widgets settings screens are enabled or disabled by either enabling or disabling this plugin.

    -', '0.3', 'Tonya Mork', '4.9', '5.6', '6.7.4', 'https://downloads.wordpress.org/plugin/classic-widgets.0.3.zip', '2021-05-05 00:00:00+00', '2024-11-12 22:34:00+00', 'https://profiles.wordpress.org/hellofromtonya/', 98, 260, 1, 0, 2000000, 6917426, 'https://wordpress.org/plugins/classic-widgets/', NULL, 'community', NULL, 'https://wordpress.org/support/plugin/classic-widgets/', 'https://wordpress.org/plugins/classic-widgets/?preview=1', 'https://github.com/wordpress/classic-widgets', 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Classic Widgets", "slug": "classic-widgets", "tags": {"editor": "editor", "disable": "disable", "gutenberg": "gutenberg", "classic-widgets": "classic widgets", "disable-gutenberg": "disable gutenberg"}, "added": "2021-05-05", "icons": {"default": "https://s.w.org/plugins/geopattern-icon/classic-widgets.svg"}, "author": "Tonya Mork", "rating": 98, "status": "open", "tested": "6.7.4", "banners": [], "ratings": {"1": 5, "2": 0, "3": 3, "4": 3, "5": 249}, "version": "0.3", "homepage": "https://wordpress.org/plugins/classic-widgets/", "requires": "4.9", "sections": {"faq": "\n
    \nAre there any settings?\n\n

    \n

    No, there are no settings. Once activated, this plugin restores the previous (“classic”) WordPress widgets screen and disables the block editor from managing widgets.

    \n

    \n
    \nDoes this work with full site editing and block themes?\n\n

    \n

    No, as block themes rely on blocks. See Block themes article for more information.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy (happyandyk) on April 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Useful, but needs an update now, as the Classic bar does not remain sticky now with the latest WP 6.8 update.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect, easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Sepi (sepicompanywork) on April 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks to this plugin, I no longer get a headache from looking at the widgets page.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best Plugin Ever

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Helison S. Cruz (detonasaurus) on April 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello, guys from WordPress Team.

    \n\n\n\n

    I want to thank you for keeping this plugin active until today.

    \n\n\n\n

    I started to really like the block scheme within the posts (especially for those who like to develop their own blocks like me), but here in the widgets I think the application of the blocks didn''t work very well.

    \n\n\n\n

    You could create something similar to the old widget system, but without blocks. The cool thing about widgets was that they were easy to manipulate and allowed for faster customization within limits. The blocks in this part of the widgets became confusing and difficult to manage.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Classic Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Quotes Ninja (quotesninja) on March 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m using this plugin because of simplicity and for classic experience.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This plugin totally saved me

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Erez Speiser (erezspeiser) on February 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I experience from time to time glitches with the widgets block system and never got to like it.

    \n\n\n\n

    Lately, it got worse to the point that I could not add/edit my widgets, getting all kinds of errors and strange behavior. I must say I was panicked because it was a huge issue for me.

    \n\n\n\n

    After some research I found out the plugin that rolls us back to sanity.

    \n\n\n\n

    The fact that it has 2M installations and a 5-star rating clearly means that WP made a lousy move with introducing the blocks into the widgets.

    \n\n\n\n

    I hope they will take this seriously.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mattmx on February 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    thanks for providing such a tool

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very easy to understand!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nealumphred on November 30, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin!

    \n\n\n\n

    Very easy to understand, set up, and use.

    \n\n\n\n

    \n\n\n\n

    Keep on keepin'' on ...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great this solution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Oliver Junior (webde5igner) on November 27, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great solution, thanks

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy haydenashly on November 25, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A good plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Must Have!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shadowheezy on November 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Makes my life easy.

    \n
    \n
    \n", "changelog": "

    0.3

    \n

    Update for 5.9.

    \n

    0.2

    \n

    Update filter name.

    \n

    0.1

    \n

    Initial release.

    \n", "description": "

    Classic Widgets is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress widgets settings screens. It will be supported and maintained to 2024, or as long as is necessary.

    \n

    Once activated and when using a classic (non-block) theme, this plugin restores the previous widgets settings screens and disables the block editor from managing widgets. There is no other configuration, the classic widgets settings screens are enabled or disabled by either enabling or disabling this plugin.

    \n"}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/classic-widgets.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/classic-widgets.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/classic-widgets.0.3.zip", "trunk": "https://downloads.wordpress.org/plugin/classic-widgets.zip"}, "downloaded": 6917426, "description": "

    Classic Widgets is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress widgets settings screens. It will be supported and maintained to 2024, or as long as is necessary.

    \n

    Once activated and when using a classic (non-block) theme, this plugin restores the previous widgets settings screens and disables the block editor from managing widgets. There is no other configuration, the classic widgets settings screens are enabled or disabled by either enabling or disabling this plugin.

    \n", "donate_link": "", "num_ratings": 260, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/classic-widgets/", "contributors": {"azaozz": {"avatar": "https://secure.gravatar.com/avatar/73c1045212929211deda7262005831319397c68d340a8c41d53633b3f7e7f129?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/azaozz/", "display_name": "Andrew Ozz"}, "hellofromtonya": {"avatar": "https://secure.gravatar.com/avatar/700febabf646717b35cab3a3bbc42e405237922fccda8b01ad07cde219de62bd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hellofromtonya/", "display_name": "Tonya Mork"}, "ironprogrammer": {"avatar": "https://secure.gravatar.com/avatar/24b68e30c5aca1c18ea836405ba1d723ab26ee96ef0ebf83a0c2d212d8cd58d9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ironprogrammer/", "display_name": "Brian Alexander"}, "wordpressdotorg": {"avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "display_name": "WordPress.org"}}, "last_updated": "2024-11-12 10:34pm GMT", "preview_link": "https://wordpress.org/plugins/classic-widgets/?preview=1", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/classic-widgets.0.3.zip", "author_profile": "https://profiles.wordpress.org/hellofromtonya/", "business_model": "community", "repository_url": "https://github.com/wordpress/classic-widgets", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f0a2-73b8-b1fe-391f3e537e9c", "name": "Classic Widgets", "slug": "classic-widgets", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1731450840, "version": "0.3"}, "support_threads": 1, "requires_plugins": [], "short_description": "Enables the previous "classic" widgets settings screens in Appearance - Widgets and the Customizer. Disables the block editor from managing widgets.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-63f0-7336-985d-b9af25cc51b1', 'autoptimize', 'Autoptimize', 'Autoptimize speeds up your website by optimizing JS, CSS, images (incl. lazy-load), HTML and Google Fonts, asyncing JS, removing emoji cruft and more.', '

    Autoptimize makes optimizing your site really easy. It can aggregate, minify and cache scripts and styles, injects CSS in the page head by default but can also inline critical CSS and defer the aggregated full CSS, moves and defers scripts to the footer and minifies HTML. You can optimize and lazy-load images (with support for WebP and AVIF formats), optimize Google Fonts, async non-aggregated JavaScript, remove WordPress core emoji cruft and more. As such it can improve your site’s performance even when already on HTTP/2! There is extensive API available to enable you to tailor Autoptimize to each and every site’s specific needs.
    -If you think performance indeed is important, you should at least consider one of the many free page caching plugins (e.g. Speed Booster pack or KeyCDN’s Cache Enabler) to complement Autoptimize or even consider Autoptimize Pro which not only has page caching but also image optimization, CDN, critical CSS and more!

    -
    -

    Autoptimize Pro
    - Autoptimize Pro is a premium Power-Up, adding image optimization, CDN, page caching, automatic critical CSS rules and extra “booster” options, all in one handy subscription to make your site even faster!!

    -

    Premium Support
    - We provide great Premium Support and Web Performance Optimization services with Accelera, check out our offering on https://accelerawp.com/!

    -
    -

    (Speed-surfing image under creative commons by LL Twistiti)

    -', '3.1.13', 'Optimizing Matters', '5.3', '5.6', '6.8.3', 'https://downloads.wordpress.org/plugin/autoptimize.3.1.13.zip', '2009-07-09 00:00:00+00', '2025-05-22 11:56:00+00', 'https://profiles.wordpress.org/optimizingmatters/', 94, 1420, 11, 7, 900000, 41794803, 'https://autoptimize.com/pro/', 'http://blog.futtta.be/2013/10/21/do-not-donate-to-me/', NULL, NULL, 'https://wordpress.org/support/plugin/autoptimize/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Autoptimize", "slug": "autoptimize", "tags": {"images": "images", "optimize": "Optimize", "pagespeed": "pagespeed", "performance": "performance", "core-web-vitals": "core web vitals"}, "added": "2009-07-09", "icons": {"1x": "https://ps.w.org/autoptimize/assets/icon-128x128.png?rev=1864142", "2x": "https://ps.w.org/autoptimize/assets/icon-256X256.png?rev=2211608"}, "author": "Optimizing Matters", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/autoptimize/assets/banner-772x250.jpg?rev=1315920", "high": false}, "ratings": {"1": 61, "2": 20, "3": 21, "4": 34, "5": 1284}, "version": "3.1.13", "homepage": "https://autoptimize.com/pro/", "requires": "5.3", "sections": {"faq": "\n
    \nWhat does the plugin do to help speed up my site?\n\n

    \n

    It minifies all scripts and styles and configures your webserver to compresses them with good expires headers. JavaScript be default will be made non-render-blocking and CSS can be too by adding critical CSS. You can configure it to combine (aggregate) CSS & JS-files, in which case styles are moved to the page head, and scripts to the footer. It also minifies the HTML code and can also optimize images and Google Fonts, making your page really lightweight.

    \n

    \n
    \nBut I’m on HTTP/2, so I don’t need Autoptimize?\n\n

    \n

    HTTP/2 is a great step forward for sure, reducing the impact of multiple requests from the same server significantly by using the same connection to perform several concurrent requests and for that reason on new installations Autoptimize will not aggregate CSS and JS files any more. That being said, concatenation of CSS/ JS can still make a lot of sense, as described in this css-tricks.com article and this blogpost from one of the Ebay engineers. The conclusion; configure, test, reconfigure, retest, tweak and look what works best in your context. Maybe it’s just HTTP/2, maybe it’s HTTP/2 + aggregation and minification, maybe it’s HTTP/2 + minification (which AO can do as well, simply untick the “aggregate JS-files” and/ or “aggregate CSS-files” options). And Autoptimize can do a lot more then “just” optimizing your JS & CSS off course 😉

    \n

    \n
    \nWill this work with my blog?\n\n

    \n

    Although Autoptimize comes without any warranties, it will in general work flawlessly if you configure it correctly. See “Troubleshooting” below for info on how to configure in case of problems. If you want you can test Autoptimize on a new free dummy site, courtesy of tastewp.com.

    \n

    \n
    \nWhy is jquery.min.js not optimized when aggregating JavaScript?\n\n

    \n

    Starting from AO 2.1 WordPress core’s jquery.min.js is not optimized for the simple reason a lot of popular plugins inject inline JS that is not aggregated either (due to possible cache size issues with unique code in inline JS) which relies on jquery being available, so excluding jquery.min.js ensures that most sites will work out of the box. If you want optimize jquery as well, you can remove it from the JS optimization exclusion-list (you might have to enable “also aggregate inline JS” as well or switch to “force JS in head”).

    \n

    \n
    \nWhy is Autoptimized JS render blocking?\n\n

    \n

    This happens when aggregating JavaSCript and ticking the “force in head” option or when not aggregating and not deferring. Consider changing settings.

    \n

    \n
    \nWhy is the autoptimized CSS still called out as render blocking?\n\n

    \n

    With the default Autoptimize configuration the CSS is linked in the head, which is a safe default but has Google PageSpeed Insights complaining. You can look into “inline all CSS” (easy) or “inline and defer CSS” (better) which are explained in this FAQ as well.

    \n

    \n
    \nWhat is the use of “inline and defer CSS”?\n\n

    \n

    CSS in general should go in the head of the document. Recently a.o. Google started promoting deferring non-essential CSS, while inlining those styles needed to build the page above the fold. This is especially important to render pages as quickly as possible on mobile devices. As from Autoptimize 1.9.0 this is easy; select “inline and defer CSS”, paste the block of “above the fold CSS” in the input field (text area) and you’re good to go!

    \n

    \n
    \nBut how can one find out what the “above the fold CSS” is?\n\n

    \n

    There’s no easy solution for that as “above the fold” depends on where the fold is, which in turn depends on screensize. There are some tools available however, which try to identify just what is “above the fold”. This list of tools is a great starting point. The Sitelocity critical CSS generator and Jonas Ohlsson’s criticalpathcssgenerator are nice basic solutions and http://criticalcss.com/ is a premium solution by the same Jonas Ohlsson. Alternatively this bookmarklet (Chrome-only) can be helpful as well.

    \n

    \n
    \nOr should you inline all CSS?\n\n

    \n

    The short answer: probably not. Although inlining all CSS will make the CSS non-render blocking, it will result in your base HTML-page getting significantly bigger thus requiring more “roundtrip times”. Moreover when considering multiple pages being requested in a browsing session the inline CSS is sent over each time, whereas when not inlined it would be served from cache. Finally the inlined CSS will push the meta-tags in the HTML down to a position where Facebook or Whatsapp might not look for it any more, breaking e.g. thumbnails when sharing on these platforms.

    \n

    \n
    \nMy cache is getting huge, doesn’t Autoptimize purge the cache?\n\n

    \n

    Autoptimize does not have its proper cache purging mechanism, as this could remove optimized CSS/JS which is still referred to in other caches, which would break your site. Moreover a fast growing cache is an indication of other problems you should avoid.

    \n

    Instead you can keep the cache size at an acceptable level by either:

    \n
      \n
    • disactivating the “aggregate inline JS” and/ or “aggregate inline CSS” options
    • \n
    • excluding JS-variables (or sometimes CSS-selectors) that change on a per page (or per pageload) basis. You can read how you can do that in this blogpost.
    • \n
    \n

    Despite above objections, there are 3rd party solutions to automatically purge the AO cache, e.g. using this code or this plugin, but for reasons above these are to be used only if you really know what you’re doing.

    \n

    \n
    \n“Clear cache” doesn’t seem to work?\n\n

    \n

    When clicking the “Delete Cache” link in the Autoptimize dropdown in the admin toolbar, you might to get a “Your cache might not have been purged successfully”. In that case go to Autoptimizes setting page and click the “Save changes & clear cache”-button.

    \n

    Moreover don’t worry if your cache never is down to 0 files/ 0KB, as Autoptimize (as from version 2.2) will automatically preload the cache immediately after it has been cleared to speed further minification significantly up.

    \n

    \n
    \nMy site looks broken when I purge Autoptimize’s cache!\n\n

    \n

    When clearing AO’s cache, no page cache should contain pages (HTML) that refers to the removed optimized CSS/ JS. Although for that purpose there is integration between Autoptimize and some page caches, this integration does not cover 100% of setups so you might need to purge your page cache manually.

    \n

    \n
    \nCan I still use Cloudflare’s Rocket Loader?\n\n

    \n

    Cloudflare Rocket Loader is a pretty advanced but invasive way to make JavaScript non-render-blocking, which Cloudflare still considers Beta. Sometimes Autoptimize & Rocket Loader work together, sometimes they don’t. The best approach is to disable Rocket Loader, configure Autoptimize and re-enable Rocket Loader (if you think it can help) after that and test if everything still works.

    \n

    At the moment (June 2017) it seems RocketLoader might break AO’s “inline & defer CSS”, which is based on Filamentgroup’s loadCSS, resulting in the deferred CSS not loading.

    \n

    \n
    \nI tried Autoptimize but my Google Pagespeed Scored barely improved\n\n

    \n

    Autoptimize is not a simple “fix my Pagespeed-problems” plugin; it “only” aggregates & minifies (local) JS & CSS and images and allows for some nice extra’s as removing Google Fonts and deferring the loading of the CSS. As such Autoptimize will allow you to improve your performance (load time measured in seconds) and will probably also help you tackle some specific Pagespeed warnings. If you want to improve further, you will probably also have to look into e.g. page caching and your webserver configuration, which will improve real performance (again, load time as measured by e.g. https://webpagetest.org) and your “performance best practice” pagespeed ratings.

    \n

    \n
    \nWhat can I do with the API?\n\n

    \n

    A whole lot; there are filters you can use to conditionally disable Autoptimize per request, to change the CSS- and JS-excludes, to change the limit for CSS background-images to be inlined in the CSS, to define what JS-files are moved behind the aggregated one, to change the defer-attribute on the aggregated JS script-tag, … There are examples for some filters in autoptimize_helper.php_example and in this FAQ.

    \n

    \n
    \nHow does CDN work?\n\n

    \n

    Starting from version 1.7.0, CDN is activated upon entering the CDN blog root directory (e.g. http://cdn.example.net/wordpress/). If that URL is present, it will used for all Autoptimize-generated files (i.e. aggregated CSS and JS), including background-images in the CSS (when not using data-uri’s).

    \n

    If you want your uploaded images to be on the CDN as well, you can change the upload_url_path in your WordPress configuration (/wp-admin/options.php) to the target CDN upload directory (e.g. http://cdn.example.net/wordpress/wp-content/uploads/). Do take into consideration this only works for images uploaded from that point onwards, not for images that already were uploaded. Thanks to BeautyPirate for the tip!

    \n

    \n
    \nWhy aren’t my fonts put on the CDN as well?\n\n

    \n

    Autoptimize supports this, but it is not enabled by default because non-local fonts might require some extra configuration. But if you have your cross-origin request policy in order, you can tell Autoptimize to put your fonts on the CDN by hooking into the API, setting autoptimize_filter_css_fonts_cdn to true this way;

    \n
    add_filter( ''autoptimize_filter_css_fonts_cdn'', ''__return_true'' );\n
    \n

    \n
    \nI’m using Cloudflare, what should I enter as CDN root directory\n\n

    \n

    Nothing, when on Cloudflare your autoptimized CSS/ JS is on the Cloudflare’s CDN automatically.

    \n

    \n
    \nHow can I force the aggregated files to be static CSS or JS instead of PHP?\n\n

    \n

    If your webserver is properly configured to handle compression (gzip or deflate) and cache expiry (expires and cache-control with sufficient cacheability), you don’t need Autoptimize to handle that for you. In that case you can check the “Save aggregated script/css as static files?”-option, which will force Autoptimize to save the aggregated files as .css and .js-files (meaning no PHP is needed to serve these files). This setting is default as of Autoptimize 1.8.

    \n

    \n
    \nHow does “exclude from optimizing” work?\n\n

    \n

    Both CSS and JS optimization can skip code from being aggregated and minimized by adding “identifiers” to the comma-separated exclusion list. The exact identifier string to use can be determined this way:

    \n
      \n
    • if you want to exclude a specific file, e.g. wp-content/plugins/funkyplugin/css/style.css, you could simply exclude “funkyplugin/css/style.css”
    • \n
    • if you want to exclude all files of a specific plugin, e.g. wp-content/plugins/funkyplugin/js/*, you can exclude for example “funkyplugin/js/” or “plugins/funkyplugin”
    • \n
    • if you want to exclude inline code, you’ll have to find a specific, unique string in that block of code and add that to the exclusion list. Example: to exclude <script>funky_data=''Won\\''t you take me to, Funky Town''</script>, the identifier is “funky_data”.
    • \n
    \n

    \n
    \nTroubleshooting Autoptimize\n\n

    \n

    Have a look at the troubleshooitng instructions at https://blog.futtta.be/2022/05/05/what-to-do-when-autoptimize-breaks-your-site/

    \n

    \n
    \nI excluded files but they are still being autoptimized?\n\n

    \n

    AO minifies excluded JS/ CSS if the filename indicates the file is not minified yet. As of AO 2.5 you can disable this on the “JS, CSS & HTML”-tab under misc. options by unticking “minify excluded files”.

    \n

    \n
    \nHelp, I have a blank page or an internal server error after enabling Autoptimize!!\n\n

    \n

    Make sure you’re not running other HTML, CSS or JS minification plugins (BWP minify, WP minify, …) simultaneously with Autoptimize or disable that functionality your page caching plugin (W3 Total Cache, WP Fastest Cache, …). Try enabling only CSS or only JS optimization to see which one causes the server error and follow the generic troubleshooting steps to find a workaround.

    \n

    \n
    \nBut I still have blank autoptimized CSS or JS-files!\n\n

    \n

    If you are running Apache, the .htaccess file written by Autoptimize can in some cases conflict with the AllowOverrides settings of your Apache configuration (as is the case with the default configuration of some Ubuntu installations), which results in “internal server errors” on the autoptimize CSS- and JS-files. This can be solved by setting AllowOverrides to All.

    \n

    \n
    \nCan’t log in on domain mapped multisites\n\n

    \n

    Domain mapped multisites require Autoptimize to be initialized at a different WordPress action, add this line of code to your wp-config.php to make it so to hook into setup_theme for example:

    \n
    define( ''AUTOPTIMIZE_SETUP_INITHOOK'', ''setup_theme'' );\n
    \n

    \n
    \nI get no error, but my pages are not optimized at all?\n\n

    \n

    Autoptimize does a number of checks before actually optimizing. When one of the following is true, your pages won’t be optimized:

    \n
      \n
    • when in the customizer
    • \n
    • if there is no opening <html tag
    • \n
    • if there is <xsl:stylesheet in the response (indicating the output is not HTML but XML)
    • \n
    • if there is <html amp in the response (as AMP-pages are optimized already)
    • \n
    • if the output is an RSS-feed (is_feed() function)
    • \n
    • if the output is a WordPress administration page (is_admin() function)
    • \n
    • if the page is requested with ?ao_noptimize=1 appended to the URL
    • \n
    • if code hooks into Autoptimize to disable optimization (see topic on Visual Composer)
    • \n
    • if other plugins use the output buffer in an incompatible manner (disable other plugins selectively to identify the culprit)
    • \n
    \n

    \n
    \nVisual Composer, Beaver Builder and similar page builder solutions are broken!!\n\n

    \n

    Disable the option to have Autoptimize active for logged on users and go crazy dragging and dropping 😉

    \n

    \n
    \nHelp, my shop checkout/ payment don’t work!!\n\n

    \n

    Disable the option to optimize cart/ checkout pages (works for WooCommerce, Easy Digital Downloads and WP eCommerce).

    \n

    \n
    \nRevolution Slider is broken!\n\n

    \n

    Make sure js/jquery/jquery.min.js is in the comma-separated list of JS optimization exclusions (this is excluded in the default configuration).

    \n

    \n
    \nI’m getting “jQuery is not defined” errors\n\n

    \n

    In that case you have un-aggregated JavaScript that requires jQuery to be loaded, so you’ll have to add js/jquery/jquery.min.js to the comma-separated list of JS optimization exclusions.

    \n

    \n
    \nI use NextGen Galleries and a lot of JS is not aggregated/ minified?\n\n

    \n

    NextGen Galleries does some nifty stuff to add JavaScript. In order for Autoptimize to be able to aggregate that, you can either disable Nextgen Gallery’s resourced manage with this code snippet add_filter( ''run_ngg_resource_manager'', ''__return_false'' ); or you can tell Autoptimize to initialize earlier, by adding this to your wp-config.php: define(\"AUTOPTIMIZE_INIT_EARLIER\",\"true\");

    \n

    \n
    \nWhat is noptimize?\n\n

    \n

    Starting with version 1.6.6 Autoptimize excludes everything inside noptimize tags, e.g.:
    \n <!--noptimize--><script>alert(‘this will not get autoptimized’);</script><!--/noptimize-->

    \n

    You can do this in your page/ post content, in widgets and in your theme files (consider creating a child theme to avoid your work being overwritten by theme updates).

    \n

    \n
    \nCan I change the directory & filename of cached autoptimize files?\n\n

    \n

    Yes, if you want to serve files from e.g. /wp-content/resources/aggregated_12345.css instead of the default /wp-content/cache/autoptimize/autoptimize_12345.css, then add this to wp-config.php:

    \n
    define(''AUTOPTIMIZE_CACHE_CHILD_DIR'',''/resources/'');\ndefine(''AUTOPTIMIZE_CACHEFILE_PREFIX'',''aggregated_'');\n
    \n

    \n
    \nDoes this work with non-default WP_CONTENT_URL ?\n\n

    \n

    No, Autoptimize does not support a non-default WP_CONTENT_URL out-of-the-box, but this can be accomplished with a couple of lines of code hooking into Autoptimize’s API.

    \n

    \n
    \nCan the generated JS/ CSS be pre-gzipped?\n\n

    \n

    Yes, but this is off by default. You can enable this by passing ´true´ to ´autoptimize_filter_cache_create_static_gzip´. You’ll obviously still have to configure your webserver to use these files instead of the non-gzipped ones to avoid the overhead of on-the-fly compression.

    \n

    \n
    \nWhat does “remove emojis” do?\n\n

    \n

    This new option in Autoptimize 2.3 removes the inline CSS, inline JS and linked JS-file added by WordPress core. As such is can have a small positive impact on your site’s performance.

    \n

    \n
    \nIs “remove query strings” useful?\n\n

    \n

    Although some online performance assessment tools will single out “query strings for static files” as an issue for performance, in general the impact of these is almost non-existant. As such Autoptimize, since version 2.3, allows you to have the query string (or more precisely the “ver”-parameter) removed, but ticking “remove query strings from static resources” will have little or no impact of on your site’s performance as measured in (milli-)seconds.

    \n

    \n
    \n(How) should I optimize Google Fonts?\n\n

    \n

    Google Fonts are typically loaded by a “render blocking” linked CSS-file. If you have a theme and plugins that use Google Fonts, you might end up with multiple such CSS-files. Autoptimize (since version 2.3) now let’s you lessen the impact of Google Fonts by either removing them alltogether or by optimizing the way they are loaded. There are two optimization-flavors; the first one is “combine and link”, which replaces all requests for Google Fonts into one request, which will still be render-blocking but will allow the fonts to be loaded immediately (meaning you won’t see fonts change while the page is loading). The alternative is “combine and load async” which uses JavaScript to load the fonts in a non-render blocking manner but which might cause a “flash of unstyled text”.

    \n

    \n
    \nShould I use “preconnect”\n\n

    \n

    Preconnect is a somewhat advanced feature to instruct browsers (if they support it) to make a connection to specific domains even if the connection is not immediately needed. This can be used e.g. to lessen the impact of 3rd party resources on HTTPS (as DNS-request, TCP-connection and SSL/TLS negotiation are executed early). Use with care, as preconnecting to too many domains can be counter-productive.

    \n

    \n
    \nWhen can(‘t) I async JS?\n\n

    \n

    JavaScript files that are not autoptimized (because they were excluded or because they are hosted elsewhere) are typically render-blocking. By adding them in the comma-separated “async JS” field, Autoptimize will add the async flag causing the browser to load those files asynchronously (i.e. non-render blocking). This can however break your site (page), e.g. if you async “js/jquery/jquery.min.js” you will very likely get “jQuery is not defined”-errors. Use with care.

    \n

    \n
    \nHow does image optimization work?\n\n

    \n

    When image optimization is on, Autoptimize will look for png, gif, jpeg (.jpg) files in image tags and in your CSS files that are loaded from your own domain and change the src (source) to the ShortPixel CDN for those. Important: this can only work for publicly available images, otherwise the image optimization proxy will not be able to get the image to optimize it, so firewalls or proxies or password protection or even hotlinking-prevention might break image optimization.

    \n

    \n
    \nCan I use image optimization for my intranet/ protected site?\n\n

    \n

    No; Image optimization depends on the ability of the external image optimization service to fetch the original image from your site, optimize it and save it on the CDN. If you images cannot be downloaded by anonymous visitors (due to firewall/ proxy/ password protection/ hotlinking-protection), image optimization will not work.

    \n

    \n
    \nWhere can I get more info on image optimization?\n\n

    \n

    Have a look at Shortpixel’s FAQ.

    \n

    \n
    \nCan I disable AO listening to page cache purges?\n\n

    \n

    As from AO 2.4 AO “listens” to page cache purges to clear its own cache. You can disable this behavior with this filter;

    \n
    add_filter(''autoptimize_filter_main_hookpagecachepurge'',''__return_false'');\n
    \n

    \n
    \nSome of the non-ASCII characters get lost after optimization\n\n

    \n

    By default AO uses non multibyte-safe string methods, but if your PHP has the mbstring extension you can enable multibyte-safe string functions with this filter;

    \n
    add_filter(''autoptimize_filter_main_use_mbstring'', ''__return_true'');\n
    \n

    \n
    \nI can’t get Critical CSS working\n\n

    \n

    Check the FAQ on the (legacy) “power-up” here, this info will be integrated in this FAQ at a later date.

    \n

    \n
    \nDo I still need the Critical CSS power-up when I have Autoptimize 2.7 or higher?\n\n

    \n

    No, the Critical CSS power-up is not needed any more, all functionality (and many fixes/ improvements) are now part of Autoptimize.

    \n

    \n
    \nWhat does “enable 404 fallbacks” do? Why would I need this?\n\n

    \n

    Autoptimize caches aggregated & optimized CSS/ JS and links to those cached files are stored in the HTML, which will be stored in a page cache (which can be a plugin, can be at host level, can be at 3rd party, in the Google cache, in a browser). If there is HTML in a page cache that links to Autoptimized CSS/ JS that has been removed in the mean time (when the cache was cleared) then the page from cache will not look/ work as expected as the CSS or JS were not found (a 404 error).

    \n

    This setting aims to prevent things from breaking by serving “fallback” CSS or JS. The fallback-files are copies of the first Autoptimized CSS & JS files created after the cache was emptied and as such will based on the homepage. This means that the CSS/ JS migth not apply 100% on other pages, but at least the impact of missing CSS/ JS will be lessened (often significantly).

    \n

    When the option is enabled, Autoptimize adds an ErrorDocument 404 to the .htaccess (as used by Apache) and will also hook into WordPress core template_redirect to capture 404’s handled by WordPress. When using NGINX something like below should work (I’m not an NGINX specialist, but it does work for me);

    \n
    location ~* /wp-content/cache/autoptimize/.*\\.(js|css)$ {\n    try_files $uri $uri/ /wp-content/autoptimize_404_handler.php;\n}\n
    \n

    And this a nice alternative approach (provided by fboylovesyou);

    \n
    location ~* /wp-content/cache/autoptimize/.*\\.(css)$ {\n    try_files $uri $uri/ /wp-content/cache/autoptimize/css/autoptimize_fallback.css;\n}\nlocation ~* /wp-content/cache/autoptimize/.*\\.(js)$ {\n    try_files $uri $uri/ /wp-content/cache/autoptimize/js/autoptimize_fallback.js;\n}\n
    \n

    \n
    \nWhat open source software/ projects are used in Autoptimize?\n\n

    \n

    The following great open source projects are used in Autoptimize in some form or another:

    \n\n

    \n
    \nWhere can I get help?\n\n

    \n

    You can get help on the wordpress.org support forum. If you are 100% sure this your problem cannot be solved using Autoptimize configuration and that you in fact discovered a bug in the code, you can create an issue on GitHub. If you’re looking for premium support, check out our Autoptimize Pro Support and Web Performance Optimization services.

    \n

    \n
    \nI want out, how should I remove Autoptimize?\n\n

    \n

      \n
    • Disable the plugin (this will remove options and cache)
    • \n
    • Remove the plugin
    • \n
    • Clear any cache that might still have pages which reference Autoptimized CSS/JS (e.g. of a page caching plugin such as WP Super Cache)
    • \n
    \n

    \n
    \nHow can I help/ contribute?\n\n

    \n

    Just fork Autoptimize on Github and code away!

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect, fast Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Peter Kinny (peterkinny) on June 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank yo u for your perfect an fast support with my Issue.

    \n\n\n\n

    Kind regards, Peter

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic plugin for optimizing CSS and JS!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy juanmag on May 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Fantastic plugin for optimizing CSS and JS! I reduced my load time by almost 30%. The async and defer options are well-documented and effective. Thanks for making such a solid tool!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    elementor css problem

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy webdud (ehexn) on April 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    kills my stylesheet with elementor

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Responsive support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy thefitrv on April 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We''ve been using this plugin for literally about a decade now, over multiple WP versions and different themes. Support is prompt, personal, and amazing. Both times when I''ve had an issue, I''ve never been left to flounder.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useful plugin and great free support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy MarcGuay on March 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Useful plugin and great free support

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazing

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Mittsforcode (jorgegl) on January 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just a few clicks and the site goes to 90% and B at GTMetrix :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I love this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy duccoldany on January 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I love how this plugin generates critical CSS automatically! It improved my website''s performance on PageSpeed Insights. However, the initial setup was a bit tricky as I had to tweak a few settings to avoid layout shifts.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    AWESOME PLUGIN+ EXCELLENT SUPPORT

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anm (ahuk) on December 16, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Autoptimize is an excellent plugin for website optimization. It’s user-friendly and immediately boosts website performance scores once activated.

    \n\n\n\n

    On top of that, Frank, the plugin’s creator, is incredibly helpful! He’s quick to respond to forum questions and provides clear, patient guidance to resolve any issues.

    \n\n\n\n

    I highly recommend this plugin for improving website performance. The exceptional support is definitely a standout feature! :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy and powerfull !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alex586 on December 15, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Your blog (and your visitors) will thank you. Top-notch technical support.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    How to disable caching

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy xu wu (wuxu) on November 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I only want to optimize the CSS and JS code for shrinking the front end, I don''t want the cache files because when I delete the Autoptimize cache and rebuild it, the previous CSS and JS paths will be lost. I want these file paths to stay the same forever, so I don''t want cached files, any solutions please? Thanks!
    Also the plugin creates some PHP files under the cache and their names are randomized.

    \n\n\n\n

    \n
    \n
    \n", "changelog": "

    3.1.13

    \n\n

    3.1.12

    \n
      \n
    • image optimization: improvements to the favicon regex
    • \n
    • javascript optimization: integrate most recent version of jsmin.php
    • \n
    • critical CSS: improve blocklist (url/ paths that should not be added to the job queue)
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.11

    \n\n

    3.1.10

    \n
      \n
    • improvement: with “don’t aggregate but defer” and “also defer inline JS” on, also defer JS that had the async flag to avoid the (previously) asynced JS from executing before the inline JS has ran.
    • \n
    • improvement: show option to disable the default on “compatibility logic”.
    • \n
    • fix for regression in 3.1.9 which caused JetPack Image optimization not working even if image optimization was off in AO.
    • \n
    • API: some extra hooks in critical CSS to enable others (and AOPro) to act on changes in critical CSS rules
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.9

    \n
      \n
    • improvement: activate JS, CSS & HTML optimization upon plugin activation (hat tip to Adam Silverstein (developer relations engineer at Google))
    • \n
    • improvement: also defer asynced JS (to ensure execution order remains intact; asynced JS should not execute before deferred inline JS which it might depend upon)
    • \n
    • improvement: exclude images from being lazyloaded if they have fetchpriority attribute set to high (as done by WordPress core since 6.3)
    • \n
    • bugfix: disable spellcheck on CSS textarea’s (above the fold CSS/ critical CSS) which in some cases caused browser issues
    • \n
    • add tab to explain Autoptimize Pro.
    • \n
    • confirmed working with WordPress 6.4 (beta 3)
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.8.1

    \n
      \n
    • urgent fix for PHP error, sorry about that!
    • \n
    \n

    3.1.8

    \n
      \n
    • Images: improve optmization logic for background images
    • \n
    • Critical CSS: don’t trigger custom_post rule if not is_singular + adding debug logging for rule selection
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.7

    \n
      \n
    • security: improve validation (import) and sanitization (output) of critical CSS rules, to fix a medium severity Admin+ Stored Cross-Site Scripting vulnerability as reported by WP Scan Security.
    • \n
    \n

    3.1.6

    \n
      \n
    • CSS: removing trailing slashes in <link tags for more W3 HTML validation love
    • \n
    • Extra: also dequeue WooCommerce block CSS if “remove WordPress block CSS” option is active
    • \n
    • imgopt: also act on non-aggregated inline CSS
    • \n
    • imgopt: added logic to warn users if Shortpixel can’t reach their site
    • \n
    • backend: AO toolbar JS/ CSS is finally minified as well.
    • \n
    • explicitly disable optimization of login pages
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.5

    \n

    \n
      \n
    • improvements to JSMin by Robert Ehrenleitner (big thanks Robert!).
    • \n
    • do not consider jquery.js as minified any more (WordPress now uses jquery.min.js by default and jquery.js is the unminified version).
    • \n
    • fix for “undefined array key” PHP errors in autoptimizeCriticalCSSCron.php
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.4

    \n

    \n
      \n
    • Improvement: when all CSS is inlined, try doing so after SEO meta-tags (just before ld+json script tag which most SEO plugins add as last item on their list).
    • \n
    • Img opt: also optimize images set in data-background and data-retina attributes (+ filter to easily add other attributes)
    • \n
    • CSS opt: filter to enable AO to skip minification of calc formulas in CSS (as the CSS minifier on rare occasions breaks those)
    • \n
    • Multiple other filters added
    • \n
    • Some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.3

    \n

    \n
      \n
    • Multiple fixes for metabox LCP image preloads (thanks Kishorchand for notifying & providing a staging environment to debug on).
    • \n
    • Fix in revslider compatibility (hat tip Waqar Ahmed for reporting & helping out ).
    • \n
    • No image optimization or criticalcss attempts on localhost installations any more + notification of that fact if localhost detected.
    • \n
    • Some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.2

    \n

    \n
      \n
    • Google Fonts: some more removal logic
    • \n
    • fix for 404 fallback bug (hat tip to Asif for finding & reporting)
    • \n
    • Some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.1.1

    \n

    \n
      \n
    • Quick workaround for an autoload conflict with JetFormBuilder (and maybe other Crocoblock plugins?) that causes a critical error on the AO settings page.
    • \n
    \n

    3.1.1

    \n

    \n
      \n
    • images: when optimizing images and lazyloading is on, then by default do not set an LQIP (low quality image placeholder) any more (reason: it might look nice but it comes with a small-ish perf. penalty). This can be re-enabled by returning true to the autoptimize_filter_imgopt_lazyload_dolqip filter.
    • \n
    • security: further improvements to critical CSS settings page (again with the great assistance of WPScan Security).
    • \n
    • some other minor changes/ improvements/ filters, see the GitHub commit log.
    • \n
    \n

    3.1.0

    \n

    \n
      \n
    • new HTML sub-option: “minify inline CSS/ JS” (off by default).
    • \n
    • new Misc option: permanently allow the “do not run compatibility logic” flag to be removed (which was set for users upgrading from AO 2.9.* to AO 3.0.* as the assumption was things were working anyway).
    • \n
    • security: improvements to the critical CSS settings page to fix authenticated cross site scripting issues as reported by WPScan Security.
    • \n
    • bugfix: “defer inline JS” of very large chunks of inline JS could cause server errors (PCRE crash actually) so not deferring if string is more then 200000 characters (filter available).
    • \n
    • some other minor changes/ improvements/ hooks, see the GitHub commit log
    • \n
    \n

    3.0.4

    \n

    \n
      \n
    • fix for “undefined array key ao_post_preload” on post/ page edit screens
    • \n
    • fix for image optimization altering inline JS that contains an <img tag if lazyload is not active
    • \n
    • improvements to exit survey
    • \n
    • confirmed working with WordPress 6.0
    • \n
    \n

    3.0.3

    \n

    \n
      \n
    • fix for images being preloaded without this being configured when lazyload is on and per page/post settings are off.
    • \n
    • ensure critical CSS schedule is always known.
    • \n
    • when deferring non-aggregated JS, make the optimatization exclusions take the full script-tag into account instead of just the src URL.
    • \n
    \n

    3.0.2

    \n

    \n
      \n
    • rollback automatic “minify inline CSS/ JS” which broke more then expected, this will come back as a separate default off option later and can now be enabled with a simple filter: add_filter( ''autoptimize_html_minify_inline_js_css'', ''__return_true''); .
    • \n
    • fix for “Call to undefined method autoptimizeOptionWrapper::delete_option()” in autoptimizeVersionUpdatesHandler.php
    • \n
    \n

    3.0.1

    \n

    \n
      \n
    • fix for minification of inline script with type text/template breaking the template (e.g. ninja forms), hat tip to @bobsled.
    • \n
    • fix for regression in import of CSS-files where e.g. fontawesome CSS was broken due to being escaped again with help of @bobsled, thanks man!
    • \n
    \n

    3.0.0

    \n

    \n
      \n
    • fundamental change for new installations: by default Autoptimize will not aggregate JS/ CSS any more (HTTP/2 is ubiquitous and there are other advantages to not aggregating esp. re. inline JS/ CSS and dependancies)
    • \n
    • new: no API needed any more to create manual critical CSS rules.
    • \n
    • new: “Remove WordPress blocks CSS” option on the “Extra” tab to remove block- and global styles (and SVG).
    • \n
    • new: compatibility logic for “edit with elementor”, “revolution slider”, for non-aggregated inline JS requiring jQuery even if not excluded (= auto-exclude of jQuery) and JS-heavy WordPress blocks (Gutenberg)
    • \n
    • new: configure an image to be preloaded on a per page/ post basis for better LCP.
    • \n
    • improvement: defer inline now also allowed if inline JS contains nonce or post_id.
    • \n
    • improvement: settings export/ import on critical CSS tab now takes into account all Autoptimize settings, not just the critical CSS ones.
    • \n
    • technical improvement: all criticalCSS classes were refactored, removing use of global variables.
    • \n
    • technical improvement: automated unit tests on Travis-CI for PHP versions 7.2 to 8.1.
    • \n
    • fix: stop Divi from clearing Autoptimize’s cache which is pretty counter-productive.
    • \n
    • misc smaller fixes/ improvements, see the GitHub commit log
    • \n
    \n

    older

    \n

    \n\n", "description": "

    Autoptimize makes optimizing your site really easy. It can aggregate, minify and cache scripts and styles, injects CSS in the page head by default but can also inline critical CSS and defer the aggregated full CSS, moves and defers scripts to the footer and minifies HTML. You can optimize and lazy-load images (with support for WebP and AVIF formats), optimize Google Fonts, async non-aggregated JavaScript, remove WordPress core emoji cruft and more. As such it can improve your site’s performance even when already on HTTP/2! There is extensive API available to enable you to tailor Autoptimize to each and every site’s specific needs.
    \nIf you think performance indeed is important, you should at least consider one of the many free page caching plugins (e.g. Speed Booster pack or KeyCDN’s Cache Enabler) to complement Autoptimize or even consider Autoptimize Pro which not only has page caching but also image optimization, CDN, critical CSS and more!

    \n
    \n

    Autoptimize Pro
    \n Autoptimize Pro is a premium Power-Up, adding image optimization, CDN, page caching, automatic critical CSS rules and extra “booster” options, all in one handy subscription to make your site even faster!!

    \n

    Premium Support
    \n We provide great Premium Support and Web Performance Optimization services with Accelera, check out our offering on https://accelerawp.com/!

    \n
    \n

    (Speed-surfing image under creative commons by LL Twistiti)

    \n", "installation": "

    Just install from your WordPress “Plugins > Add New” screen and all will be well. Manual installation is very straightforward as well:

    \n
      \n
    1. Upload the zip file and unzip it in the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to Settings > Autoptimize and enable the options you want. Generally this means “Optimize HTML/ CSS/ JavaScript”.
    6. \n
    \n"}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/autoptimize.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/autoptimize.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/autoptimize.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/autoptimize.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/autoptimize.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/autoptimize.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/autoptimize.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/autoptimize.0.8.zip", "0.9": "https://downloads.wordpress.org/plugin/autoptimize.0.9.zip", "1.1": "https://downloads.wordpress.org/plugin/autoptimize.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/autoptimize.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/autoptimize.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/autoptimize.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/autoptimize.1.5.zip", "1.5.1": "https://downloads.wordpress.org/plugin/autoptimize.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/plugin/autoptimize.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/autoptimize.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/autoptimize.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/autoptimize.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/autoptimize.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/autoptimize.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/autoptimize.1.6.6.zip", "1.7.0": "https://downloads.wordpress.org/plugin/autoptimize.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/autoptimize.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/autoptimize.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/autoptimize.1.7.3.zip", "1.8.0": "https://downloads.wordpress.org/plugin/autoptimize.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/autoptimize.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/autoptimize.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/autoptimize.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/autoptimize.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/autoptimize.1.8.5.zip", "1.9.0": "https://downloads.wordpress.org/plugin/autoptimize.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/autoptimize.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/autoptimize.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/autoptimize.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/autoptimize.1.9.4.zip", "2.0.0": "https://downloads.wordpress.org/plugin/autoptimize.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/autoptimize.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/autoptimize.2.0.2.zip", "2.1.0": "https://downloads.wordpress.org/plugin/autoptimize.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/autoptimize.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/autoptimize.2.1.2.zip", "2.2.0": "https://downloads.wordpress.org/plugin/autoptimize.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/autoptimize.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/autoptimize.2.2.2.zip", "2.3.0": "https://downloads.wordpress.org/plugin/autoptimize.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/autoptimize.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/autoptimize.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/autoptimize.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/autoptimize.2.3.4.zip", "2.4.0": "https://downloads.wordpress.org/plugin/autoptimize.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/autoptimize.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/autoptimize.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/autoptimize.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/autoptimize.2.4.4.zip", "2.5.0": "https://downloads.wordpress.org/plugin/autoptimize.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/autoptimize.2.5.1.zip", "2.6.0": "https://downloads.wordpress.org/plugin/autoptimize.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/autoptimize.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/autoptimize.2.6.2.zip", "2.7.0": "https://downloads.wordpress.org/plugin/autoptimize.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/autoptimize.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/autoptimize.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/autoptimize.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/autoptimize.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/autoptimize.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/autoptimize.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/autoptimize.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/plugin/autoptimize.2.7.8.zip", "2.8.0": "https://downloads.wordpress.org/plugin/autoptimize.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/autoptimize.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/autoptimize.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/autoptimize.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/autoptimize.2.8.4.zip", "2.9.0": "https://downloads.wordpress.org/plugin/autoptimize.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/autoptimize.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/autoptimize.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/autoptimize.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/autoptimize.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/autoptimize.2.9.5.zip", "3.0.0": "https://downloads.wordpress.org/plugin/autoptimize.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/autoptimize.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/autoptimize.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/autoptimize.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/autoptimize.3.0.4.zip", "3.1.0": "https://downloads.wordpress.org/plugin/autoptimize.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/autoptimize.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/autoptimize.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/autoptimize.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/autoptimize.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/autoptimize.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/autoptimize.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/autoptimize.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/autoptimize.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/autoptimize.3.1.9.zip", "trunk": "https://downloads.wordpress.org/plugin/autoptimize.zip", "3.1.10": "https://downloads.wordpress.org/plugin/autoptimize.3.1.10.zip", "3.1.11": "https://downloads.wordpress.org/plugin/autoptimize.3.1.11.zip", "3.1.12": "https://downloads.wordpress.org/plugin/autoptimize.3.1.12.zip", "3.1.13": "https://downloads.wordpress.org/plugin/autoptimize.3.1.13.zip", "2.9.5.1": "https://downloads.wordpress.org/plugin/autoptimize.2.9.5.1.zip", "3.1.1.1": "https://downloads.wordpress.org/plugin/autoptimize.3.1.1.1.zip", "3.1.8.1": "https://downloads.wordpress.org/plugin/autoptimize.3.1.8.1.zip"}, "downloaded": 41794803, "description": "

    Autoptimize makes optimizing your site really easy. It can aggregate, minify and cache scripts and styles, injects CSS in the page head by default but can also inline critical CSS and defer the aggregated full CSS, moves and defers scripts to the footer and minifies HTML. You can optimize and lazy-load images (with support for WebP and AVIF formats), optimize Google Fonts, async non-aggregated JavaScript, remove WordPress core emoji cruft and more. As such it can improve your site’s performance even when already on HTTP/2! There is extensive API available to enable you to tailor Autoptimize to each and every site’s specific needs.
    \nIf you think performance indeed is important, you should at least consider one of the many free page caching plugins (e.g. Speed Booster pack or KeyCDN’s Cache Enabler) to complement Autoptimize or even consider Autoptimize Pro which not only has page caching but also image optimization, CDN, critical CSS and more!

    \n
    \n

    Autoptimize Pro
    \n Autoptimize Pro is a premium Power-Up, adding image optimization, CDN, page caching, automatic critical CSS rules and extra “booster” options, all in one handy subscription to make your site even faster!!

    \n

    Premium Support
    \n We provide great Premium Support and Web Performance Optimization services with Accelera, check out our offering on https://accelerawp.com/!

    \n
    \n

    (Speed-surfing image under creative commons by LL Twistiti)

    \n", "donate_link": "http://blog.futtta.be/2013/10/21/do-not-donate-to-me/", "num_ratings": 1420, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/autoptimize/", "contributors": {"turl": {"avatar": "https://secure.gravatar.com/avatar/6c1c0d1d263fecc8654e64a84f93aa43be5b7c3c9a81f306bacf504a95356fd1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/turl/", "display_name": "turl"}, "futtta": {"avatar": "https://secure.gravatar.com/avatar/3275396eef337662b28262cb871106b35d540aad0fd0ad1cef0b5ebe7f176ea9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/futtta/", "display_name": "Frank Goossens"}, "zytzagoo": {"avatar": "https://secure.gravatar.com/avatar/91e1ac1f1c41dc15012e491499616351ff561678c9639a63232f224fa272fa94?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/zytzagoo/", "display_name": "zytzagoo"}, "optimizingmatters": {"avatar": "https://secure.gravatar.com/avatar/b5eead27f4527765234ddbf731744eca14d9d5d41c22433e667da6a75667e33d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/optimizingmatters/", "display_name": "Optimizing Matters"}}, "last_updated": "2025-05-22 11:56am GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/autoptimize.3.1.13.zip", "author_profile": "https://profiles.wordpress.org/optimizingmatters/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-ef2a-7321-b192-c62d9bf58060", "name": "Autoptimize", "slug": "autoptimize", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1747914960, "version": "3.1.13"}, "support_threads": 11, "requires_plugins": [], "short_description": "Autoptimize speeds up your website by optimizing JS, CSS, images (incl. lazy-load), HTML and Google Fonts, asyncing JS, removing emoji cruft and more.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 7}'); -INSERT INTO public.plugins VALUES ('019a30c1-63fc-72f5-8144-3350a9793891', 'better-search-replace', 'Better Search Replace', 'A simple plugin to update URLs or other text in a database.', '

    When moving your WordPress site to a new domain or server, you will likely run into a need to run a search/replace on the database for everything to work correctly. Fortunately, there are several plugins available for this task, however, all have a different approach to a few key features. This plugin consolidates the best features from these plugins, incorporating the following features in one simple plugin:

    -
      -
    • Serialization support for all tables
    • -
    • The ability to select specific tables
    • -
    • The ability to run a “dry run” to see how many fields will be updated
    • -
    • No server requirements aside from a running installation of WordPress
    • -
    • WordPress Multisite support
    • -
    -
    -

    Time-saving features available in the Pro version:

    -
      -
    • View exactly what changed during a search/replace
    • -
    • Backup and import the database while running a search/replace
    • -
    • Priority email support from the developer of the plugin
    • -
    • Save or load custom profiles for quickly repeating a search/replace in the future
    • -
    • Support and updates for 1 year
    • -
    -

    Learn more about Better Search Replace Pro

    -
    -

    The search and replace functionality is heavily based on interconnect/it’s great and open-source Search Replace DB script, modified to use WordPress native database functions to ensure compatibility.

    -

    Supported Languages

    -
      -
    • English
    • -
    • French
    • -
    • German
    • -
    • Spanish
    • -
    -

    Want to contribute?

    -

    Feel free to open an issue or submit a pull request on GitHub.

    -', '1.4.10', 'WP Engine', '3.0.1', NULL, '6.8.3', 'https://downloads.wordpress.org/plugin/better-search-replace.1.4.10.zip', '2015-01-06 00:00:00+00', '2025-04-14 16:39:00+00', 'https://profiles.wordpress.org/wpengine/', 86, 537, 5, 0, 1000000, 16856998, 'https://bettersearchreplace.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/better-search-replace/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Better Search Replace", "slug": "better-search-replace", "tags": {"search-replace": "search replace", "update-live-url": "update live url", "search-and-replace": "search and replace", "update-database-urls": "update database urls", "search-replace-database": "search replace database"}, "added": "2015-01-06", "icons": {"1x": "https://ps.w.org/better-search-replace/assets/icon-128x128.png?rev=2706527", "2x": "https://ps.w.org/better-search-replace/assets/icon-256x256.png?rev=2706527"}, "author": "WP Engine", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/better-search-replace/assets/banner-772x250.jpg?rev=2706527", "high": "https://ps.w.org/better-search-replace/assets/banner-1544x500.png?rev=2706527"}, "ratings": {"1": 67, "2": 17, "3": 10, "4": 14, "5": 429}, "version": "1.4.10", "homepage": "https://bettersearchreplace.com", "requires": "3.0.1", "sections": {"faq": "\n
    \nUsing Better Search Replace\n\n

    \n

    Once activated, Better Search Replace will add a page under the “Tools” menu page in your WordPress admin.

    \n

    \n
    \nIs my host supported?\n\n

    \n

    Yes! This plugin should be compatible with any host.

    \n

    \n
    \nCan I damage my site with this plugin?\n\n

    \n

    Yes! Entering a wrong search or replace string could damage your database. Because of this, it is always advisable to have a backup of your database before using this plugin.

    \n

    \n
    \nHow does this work on WordPress Multisite?\n\n

    \n

    When this plugin is installed on a WordPress multisite network:

    \n
      \n
    • Subsite administrators can only search and replace within tables that belong to that subsite by visiting Dashboard > Tools > Better Search Replace from WP Admin of the subsite.
    • \n
    • Network administrators (i.e. Super Admins) and administrators of the primary site can search and replace across all tables in the multisite network by visiting Dashboard > Tools > Better Search Replace from WP Admin of the primary site.
    • \n
    \n

    To change which users have access to the plugin, the user capability can be modified via code using the bsr_capability filter.

    \n

    \n
    \nHow can I use this plugin when changing URLs?\n\n

    \n

    If you’re moving your site from one server to another and changing the URL of your WordPress installation, the approach below allows you to do so easily without affecting the old site:

    \n
      \n
    1. Backup the database on your current site
    2. \n
    3. Install the database on your new host
    4. \n
    5. On the new host, define the new site URL in the wp-config.php file, as shown here
    6. \n
    7. Log in at your new admin URL and run Better Search Replace on the old site URL for the new site URL
    8. \n
    9. Delete the site_url constant you added to wp-config.php. You may also need to regenerate your .htaccess by going to Settings -> Permalinks and saving the settings.
    10. \n
    \n

    More information on moving WordPress can be found here.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and efficient

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Oliver Junior (webde5igner) on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple and efficient, ways working good thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So helpfull

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Behrouz (nwm2006) on September 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin helped me a lot after migrating my website from staging to live.

    \n\n\n\n

    5 Stars for sure

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent !!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nhowarth on July 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Following a change of server and security certificates, I used the plugin to change the URLs of my website to remove the ''www.''

    \n\n\n\n

    I had to do this as new security certificates were not generated for www. URLs.

    \n\n\n\n

    The plugin worked flawlessly!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Title title title (title)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ArtZ91 on June 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice plugin… if you want to replace ALL database values to the same string.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    worked great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy joshmacd on May 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    super simple - worked first try

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Best Find and Replace for WP

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy brandedpixel on April 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is the standard for Find-and-Replace functions on your WordPress site.

    The ''Dry Run'' setting is awesome, allowing you to see how many items will be updated prior to replacing ''Live''.

    If you know of a more developer friendly and robust plugin, we want to know!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Doesn't work with links and bad support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy migueltic on March 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It doesn''t find some or all URLs apparently (doesn''t work for me and there are many open issues about that).

    \n\n\n\n

    I''ve posted about this in a support thread opened by someone with the same problem, but they decided to remove my post (apparently it''s a problem if 2 people with the same issue post in the same thread), so I would have to write again from scratch all the explanation of my problem to open another thread. I''m going to use another plugin instead.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Functional and stays in its lane

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kpolljonker on March 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does what it says it does (5 stars)

    \n\n\n\n

    A rare occasion where a good plugin stays good and doesn''t clutter its own pages or worse; the entire site with upsells and advertisements.

    \n\n\n\n

    Oh right, and it refrains from opting you in for the frequent, unsollicited bulk spam that so many freemium plugins waste your time with these days

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy readysite on February 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice plugin always helps out

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential for Migrations and Database Adjustments

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy MCD Diseño Web (tmacarreras) on February 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is a must-have for any WordPress user who needs to make bulk database changes without hassle. Its interface is simple yet powerful, allowing you to search and replace across tables safely and efficiently.

    \n\n\n\n

    I''ve used it multiple times to update URLs after migrations and fix database entries, and it has always worked flawlessly. Plus, the dry-run option before executing changes is a great feature.

    \n\n\n\n

    Highly recommended! A must-have in my WordPress toolkit!

    \n\n\n\n

    ----------------------------------------------------------------------------------

    \n\n\n\n

    Spanish

    \n\n\n\n

    Este plugin es una herramienta esencial para cualquier usuario de WordPress que necesite realizar cambios masivos en la base de datos sin complicaciones. Su interfaz es sencilla, pero potente, permitiendo buscar y reemplazar en tablas de forma segura y eficiente.

    \n\n\n\n

    Lo he utilizado en varias ocasiones para actualizar URLs tras migraciones y corregir datos en la base de datos, y siempre ha funcionado a la perfección. Además, la opción de prueba antes de ejecutar los cambios es un gran acierto.

    \n\n\n\n

    Totalmente recomendado. ¡Un imprescindible en mi caja de herramientas de WordPress!

    \n
    \n
    \n", "changelog": "

    1.4.10 – January 14, 2025

    \n
      \n
    • Fix: Improved security and stability
    • \n
    \n

    1.4.9 – October 4, 2024

    \n
      \n
    • Security: The plugin now uses its own update mechanism from WP Engine servers
    • \n
    • New: Dependencies have been updated
    • \n
    \n

    1.4.8 – September 3, 2024

    \n
      \n
    • No changes as this was a pro-only release for Better Search Replace Pro
    • \n
    \n

    1.4.7 – May 30, 2024

    \n
      \n
    • Fix: The case-insensitive setting once again allows case-insensitive strings to be matched within serialized data, fixing a regression introduced in version 1.4.6
    • \n
    \n

    1.4.6 – April 17, 2024

    \n
      \n
    • Changed: Serialized text strings are now only deserialized when containing a match, resulting in faster performance
    • \n
    • Security: Table names are now escaped when displaying search results
    • \n
    \n

    1.4.5 – January 18, 2024

    \n
      \n
    • Security: Unserializing an object during search and replace operations now passes ''allowed_classes'' => false to avoid instantiating the object and potentially running malicious code stored in the database (thanks to Wordfence for responsible disclosure on December 18, 2023 followed by development and testing of the fix by WP Engine)
    • \n
    • Fix: A regression in version 1.4.4 which caused some search results to be skipped has been fixed to ensure only numeric keyed objects are skipped
    • \n
    \n

    1.4.4 – December 14, 2023

    \n
      \n
    • Fix: Objects with numerical properties are now skipped to avoid causing errors
    • \n
    \n

    1.4.3 – September 5, 2023

    \n
      \n
    • New: Links to plugin documentation, support, feedback, and changelog are now available in the footer of WP Admin
    • \n
    • Improvement: PHP 8.2 and Better Search Replace are now compatible
    • \n
    \n

    1.4.2 – January 11, 2023

    \n
      \n
    • Security: Arbitrary tab templates in the templates directory can no longer be loaded using a query parameter.
    • \n
    \n

    1.4.1 – July 25, 2022

    \n
      \n
    • Security: Selected tables are now confirmed to exist before processing the request
    • \n
    \n

    1.4 – April 7, 2022

    \n
      \n
    • New: Better Search Replace has a brand new user interface
    • \n
    • Improvement: Default capability required to use the plugin has changed from “install_plugins” to “manage_options” for compatibility with DISALLOW_FILE_MODS
    • \n
    \n

    1.3.4 – December 7, 2020

    \n
      \n
    • Improvement: WordPress 5.6 and PHP 8 compatible
    • \n
    • Fix: Strings that have been serialized twice showing up as false-positives
    • \n
    \n

    1.3.3 – February 26, 2019

    \n
      \n
    • Fix: Some special characters interfering with search/replace
    • \n
    • Security: Pass template filenames through sanitize_file_name()
    • \n
    • Security: Verify nonce when downloading diagnostic info
    • \n
    \n

    1.3.2 – January 3, 2018

    \n
      \n
    • Fix: Only one table searched on some environments (props @Ov3rfly)
    • \n
    • Tweak: Update text in sidebar
    • \n
    \n

    1.3.1 – September 14, 2017

    \n
      \n
    • Security: Check if data is serialized before unserializing it
    • \n
    • Improvement: Increased size of table select
    • \n
    \n

    1.3 – November 10, 2016

    \n
      \n
    • Improvement: Updated sidebar and added pro version discount
    • \n
    • Fix: Outdated links to old website
    • \n
    • Fix: Prevent requests to invalid tabs
    • \n
    \n

    1.2.10 – June 2, 2016

    \n
      \n
    • Fix: CSS not loaded on details page
    • \n
    \n

    1.2.9 – December 8, 2015

    \n
      \n
    • Fix: Bug with case-insensitive searches in serialized objects
    • \n
    • Fix: Bug with early skip due to lack of primary key
    • \n
    \n

    1.2.8 – November 25, 2015

    \n
      \n
    • Fix: Bug with report details
    • \n
    \n

    1.2.7 – November 24, 2015

    \n
      \n
    • Fix: Untranslateable string
    • \n
    • Tweak: Check BSR_PATH instead of ABSPATH to be consistent
    • \n
    • Tested with 4.4
    • \n
    \n

    1.2.6

    \n
      \n
    • Removed unused code/small cleanup
    • \n
    \n

    1.2.5

    \n
      \n
    • Improved progress bar info and styles
    • \n
    • Small cleanup
    • \n
    \n

    1.2.4

    \n
      \n
    • Added “Settings saved” notice when saving settings
    • \n
    • Fixed bug with wp_magic_quotes interfering with some search strings
    • \n
    \n

    1.2.3

    \n
      \n
    • Fixed bug with searching for backslashes
    • \n
    • Fixed potential bug with getting tables in large multisites
    • \n
    • Fixed potential notice in append_report
    • \n
    • Improved handling of missing primary keys
    • \n
    \n

    1.2.2

    \n
      \n
    • Fixed AJAX conflict with WooCommerce
    • \n
    • Fixed a few issues with translations
    • \n
    • Tweaked “System Info” to use get_locale() instead of WP_LANG constant
    • \n
    • Updated German translation (props @Linus Ziegenhagen)
    • \n
    \n

    1.2.1

    \n
      \n
    • Fixed minor issue with display of progress bar
    • \n
    • Updated translation file
    • \n
    \n

    1.2

    \n
      \n
    • Switched to AJAX bulk processing for search/replaces
    • \n
    • Decreased minimum “Max Page Size” to 1000
    • \n
    • Added “Help” tab with system info for easier troubleshooting
    • \n
    \n

    1.1.1

    \n
      \n
    • Added ability to change max page size
    • \n
    • Decreased default page size to prevent white screen issue on some environments
    • \n
    \n

    1.1

    \n
      \n
    • Added ability to change capability required to use plugin
    • \n
    • Small bugfixes and translation fixes
    • \n
    \n

    1.0.6

    \n
      \n
    • Added table sizes to the database table listing
    • \n
    • Added French translation (props @Jean Philippe)
    • \n
    \n

    1.0.5

    \n
      \n
    • Added support for case-insensitive searches
    • \n
    • Added German translation (props @Linus Ziegenhagen)
    • \n
    \n

    1.0.4

    \n
      \n
    • Potential security fixes
    • \n
    \n

    1.0.3

    \n
      \n
    • Fixed issue with searching for special characters like ‘\\’
    • \n
    • Fixed bug with replacing some objects
    • \n
    \n

    1.0.2

    \n
      \n
    • Fixed untranslateable strings on submit button and submenu page.
    • \n
    \n

    1.0.1

    \n
      \n
    • Fixed issue with loading translations and added Spanish translation (props Eduardo Larequi)
    • \n
    • Fixed bug with reporting timing
    • \n
    • Updated to use “Dry Run” as default
    • \n
    • Added support for WordPress Multisite (see FAQs for more info)
    • \n
    \n

    1.0

    \n
      \n
    • Initial release
    • \n
    \n", "description": "

    When moving your WordPress site to a new domain or server, you will likely run into a need to run a search/replace on the database for everything to work correctly. Fortunately, there are several plugins available for this task, however, all have a different approach to a few key features. This plugin consolidates the best features from these plugins, incorporating the following features in one simple plugin:

    \n
      \n
    • Serialization support for all tables
    • \n
    • The ability to select specific tables
    • \n
    • The ability to run a “dry run” to see how many fields will be updated
    • \n
    • No server requirements aside from a running installation of WordPress
    • \n
    • WordPress Multisite support
    • \n
    \n
    \n

    Time-saving features available in the Pro version:

    \n
      \n
    • View exactly what changed during a search/replace
    • \n
    • Backup and import the database while running a search/replace
    • \n
    • Priority email support from the developer of the plugin
    • \n
    • Save or load custom profiles for quickly repeating a search/replace in the future
    • \n
    • Support and updates for 1 year
    • \n
    \n

    Learn more about Better Search Replace Pro

    \n
    \n

    The search and replace functionality is heavily based on interconnect/it’s great and open-source Search Replace DB script, modified to use WordPress native database functions to ensure compatibility.

    \n

    Supported Languages

    \n
      \n
    • English
    • \n
    • French
    • \n
    • German
    • \n
    • Spanish
    • \n
    \n

    Want to contribute?

    \n

    Feel free to open an issue or submit a pull request on GitHub.

    \n", "screenshots": "
    1. \"The

      The Better Search Replace page added to the \"Tools\" menu

    2. \"After

      After running a search/replace dry-run.

    ", "installation": "

    Install Better Search Replace like you would install any other WordPress plugin.

    \n

    Dashboard Method:

    \n
      \n
    1. Login to your WordPress admin and go to Plugins -> Add New
    2. \n
    3. Type “Better Search Replace” in the search bar and select this plugin
    4. \n
    5. Click “Install”, and then “Activate Plugin”
    6. \n
    \n

    Upload Method:

    \n
      \n
    1. Unzip the plugin and upload the “better-search-replace” folder to your ‘wp-content/plugins’ directory
    2. \n
    3. Activate the plugin through the Plugins menu in WordPress
    4. \n
    \n"}, "versions": {"1.4": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.zip", "1.3.4": "https://downloads.wordpress.org/plugin/better-search-replace.1.3.4.zip", "1.4.1": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.7.zip", "trunk": "https://downloads.wordpress.org/plugin/better-search-replace.zip", "1.4.10": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.10.zip"}, "downloaded": 16856998, "description": "

    When moving your WordPress site to a new domain or server, you will likely run into a need to run a search/replace on the database for everything to work correctly. Fortunately, there are several plugins available for this task, however, all have a different approach to a few key features. This plugin consolidates the best features from these plugins, incorporating the following features in one simple plugin:

    \n
      \n
    • Serialization support for all tables
    • \n
    • The ability to select specific tables
    • \n
    • The ability to run a “dry run” to see how many fields will be updated
    • \n
    • No server requirements aside from a running installation of WordPress
    • \n
    • WordPress Multisite support
    • \n
    \n
    \n

    Time-saving features available in the Pro version:

    \n
      \n
    • View exactly what changed during a search/replace
    • \n
    • Backup and import the database while running a search/replace
    • \n
    • Priority email support from the developer of the plugin
    • \n
    • Save or load custom profiles for quickly repeating a search/replace in the future
    • \n
    • Support and updates for 1 year
    • \n
    \n

    Learn more about Better Search Replace Pro

    \n
    \n

    The search and replace functionality is heavily based on interconnect/it’s great and open-source Search Replace DB script, modified to use WordPress native database functions to ensure compatibility.

    \n

    Supported Languages

    \n
      \n
    • English
    • \n
    • French
    • \n
    • German
    • \n
    • Spanish
    • \n
    \n

    Want to contribute?

    \n

    Feel free to open an issue or submit a pull request on GitHub.

    \n", "donate_link": "", "num_ratings": 537, "screenshots": {"1": {"src": "https://ps.w.org/better-search-replace/assets/screenshot-1.png?rev=2706527", "caption": "The Better Search Replace page added to the \"Tools\" menu"}, "2": {"src": "https://ps.w.org/better-search-replace/assets/screenshot-2.png?rev=2706527", "caption": "After running a search/replace dry-run."}}, "support_url": "https://wordpress.org/support/plugin/better-search-replace/", "contributors": {"mattshaw": {"avatar": "https://secure.gravatar.com/avatar/fcf2297ad2f2973d3b75404db6afe40d1dbad53db835fa9cd4e3d07c9ad2819c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mattshaw/", "display_name": "Matt Shaw"}, "wpengine": {"avatar": "https://secure.gravatar.com/avatar/4c1bb9eb4685e7604768fc46ead733aff774fc4cf9e732ded27325d4e6d5ca13?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpengine/", "display_name": "WP Engine"}, "deliciousbrains": {"avatar": "https://secure.gravatar.com/avatar/3d8222a6b777fd716d18eb7454144c91e7bfbae1381aa2cd95b21c7207209351?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/deliciousbrains/", "display_name": "Delicious Brains"}}, "last_updated": "2025-04-14 4:39pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/better-search-replace.1.4.10.zip", "author_profile": "https://profiles.wordpress.org/wpengine/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-eed3-73c3-aafc-5822bc7e452d", "name": "Better Search Replace", "slug": "better-search-replace", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1744648740, "version": "1.4.10"}, "support_threads": 5, "requires_plugins": [], "short_description": "A simple plugin to update URLs or other text in a database.", "author_block_count": 0, "author_block_rating": 86, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-6406-72dc-8044-191babf552a8', 'better-wp-security', 'Solid Security – Password, Two Factor Authentication, and Brute Force Protection', 'Harden your site security with Login Security, Two-Factor Authentication (2FA), Vulnerability Scanner, Firewall, and more. Formerly iThemes Security.', '

    Reduce your WordPress website’s risk to nearly zero with Solid Security

    -

    Formerly iThemes Security. Looking for iThemes? Learn more here.

    -

    On average, 30,000 websites are hacked every day.* Cyberattacks in the US increased by 57% in 2022.** Bad actors who want to hack your site, steal your data, and cripple your business are a 24/7/365 threat.

    -

    You need a proactive, strategic approach to WordPress website security that protects your site from brute force attacks, malware infections, and other cyber threats.

    -

    Solid Security shields your site from cyberattacks and prevents security vulnerabilities. It automatically locks out bad users identified by our Brute Force Protection Network that is nearly 1 million sites strong and leverages your own blacklist. It secures and protects your most commonly attacked part of your WordPress website – user login authentication.

    -

    With Patchstack integration (Pro) protects your site before you even have a chance to address vulnerabilities and before a plugin or theme vendor or developer can even issue a patch.

    -

    That’s 24/7/365 always-on truly Solid Security.

    -

    -

    🌐 Secure your Website in Minutes

    -

    The Solid Security setup and onboarding experience allows anyone to secure their WordPress website in under 10 minutes, regardless of technical acumen. Knowing that you have enabled all the right security settings for your website will leave you feeling like your site has never been more secure.

    -

    📚 Security Site Templates to Fit Your Type of Site

    -

    Enabling the correct security settings based on the type of website you are building or maintaining is essential for proper security. An eCommerce site requires a different level of security than a basic blog. Solid Security Site Templates make it quick and easy to apply the right security settings for your website.

    -

    Choose from six different site templates to apply the type of security your site needs:

    -
      -
    1. Ecommerce – websites that sell products or services
    2. -
    3. Network – websites that connect people or communities
    4. -
    5. Non-Profit – websites that promote your cause and collect donations
    6. -
    7. Blog – websites that share your thoughts or start a conversation
    8. -
    9. Portfolio – websites that showcase your craft
    10. -
    11. Brochure – simple websites that promote your business
    12. -
    -

    ⌚ Real-Time Website Security Dashboard

    -

    Every day, lots of activity is happening on your website that you can’t see. Many of these activities can be related to your site’s security, so monitoring these events is vital to keeping your site secure.

    -

    The Solid Security Pro plugin provides a real-time WordPress security dashboard that monitors security-related events on your site around the clock. The Solid Security Dashboard is a dynamic dashboard with all your WordPress website’s security activity stats in one place, including brute force attacks, banned users, active lockouts, site scan results, and user security stats (Pro).

    -

    🗝️ WordPress Login Security

    -

    Setting up and maintaining proper WordPress configurations and managing user account access are essential aspects of hardening your site against threats and vulnerabilities. Basic and Pro include features that address both of these factors.

    -
      -
    • -

      Two Factor Authentication (2FA) – Make your WordPress login nearly impenetrable to attack by requiring users to enter a security code along with a password to login. The Solid Security plugin allows you to add two-factor authentication to your WordPress login with several authentication methods, including mobile apps like Authy and Google Authenticator, email, and backup codes.

      -
    • -
    • -

      Password Requirements – Create and enforce a password policy for your users in less than a minute.

      -
    • -
    • -

      reCAPTCHA (Pro) – Stop bad bots from engaging in abusive activities on your website, such as attempting to break into your website using compromised passwords, posting spam, or even scraping your content.

      -
    • -
    • -

      Passwordless Logins (Pro) – WordPress security made easy. Secure your user accounts with 2fa & strong passwords while allowing real users login with a click of a mouse.

      -
    • -
    • -

      Trusted Devices (Pro) – Identify the devices you and other users use to block session hijacking attacks and limit Administrator privileges to Trusted Devices.

      -
    • -
    • -

      Automated Vulnerability Patching (Pro) – Solid Security Pro includes Patchstack which patches vulnerabilities before you have a chance to and applies fixes even before a plugin developer or vendor has issued a patch.

      -
    • -
    -

    Learn more about how passwordless login is the future and how Solid Security can help you implement it today.

    -

    👨‍👩‍👧‍👦 The Right Amount of Security for Every User Level

    -

    Different types of user levels require different levels of security. During the Solid Security setup process, you can identify your website’s key user groups. Once the different types of users are identified, you can apply the level of security that is just right for each user group.

    -

    Here are a couple of examples of how User Groups are useful for securing your site:

    -
      -
    • -

      For Clients – Let’s say you are configuring Solid Security on a client’s website. You will decide whether or not they are required to use two-factor authentication and if they should have access to the Solid Security settings.

      -
    • -
    • -

      For Customers – If you have an eCommerce website, you will decide whether or not you want to protect customer accounts with a password policy.

      -
    • -
    -

    Privilege Escalation (Pro) also adds a safe, secure way to grant temporary admin-level access to your website.

    -

    🤖 Block Bad Bots & Ban User Agents with Lockouts

    -
      -
    • -

      Ban Users (Basic and Pro) – Permanently block repeat offenders from accessing your site.
      -Local Brute Force Protection – Automatically identify and stop the most common method of attack on WordPress sites.

      -
    • -
    • -

      Local Brute Force Protection (Basic and Pro) – Automatically identify and stop the most common method of attack on WordPress sites.

      -
    • -
    • -

      Network Brute Force Protection (Basic and Pro) – The network is the Solid Security community and is nearly one million websites strong. If someone tries to break into websites in the Solid Security community, Solid Security will block them across the network.

      -
    • -
    • -

      Magic Links (Pro) – Security shouldn’t get in your way. Magic Links allow you to log in to your WordPress site while your username is locked out by the Solid Security Local Brute Force Protection feature.

      -
    • -
    -

    🔍 Monitor Your Site’s Security Health

    -
      -
    • -

      File Change Detection (Basic and Pro) – Solid Security logs changes made to your website that can help detect malicious activity on your website.

      -
    • -
    • -

      Site Scanner (Basic and Pro) – Schedule checks to run four times per day (Basic) or hourly (Pro) for known vulnerabilities of WordPress core file, plugins and themes. Using the Google Safe Browsing API, the Site Scan also checks your Google’s blocklist status and will alert you if Google has found any malware on your website.

      -
    • -
    • -

      Patchstack integration (Pro) – Automated virtual patching of some vulnerabilities before you even have a chance to address them yourself, and before a plugin or theme vendor or developer can even issue a patch.

      -
    • -
    • -

      Site Scanner (Pro) – Unlock Version Management to automatically apply a patch to vulnerable software detected by the Site Scan when one is available.

      -
    • -
    • -

      User Logging (Pro) – Keep a record of user activity in your WordPress security logs, including login/logout, user registration, adding/removing plugins, switching themes, changes to posts and pages, and more.

      -
    • -
    • -

      Version Management (Pro) – The Version Management feature in Solid Security Pro allows you to auto-update WordPress, plugins, and themes. Beyond that, Version Management also has options to harden your website when you are running outdated software and scan for old websites.

      -
    • -
    -

    🧠 Smarter, More Actionable Vulnerability Prioritization

    -

    Not all vulnerabilities pose the same level of risk, and the traditional Common Vulnerability Scoring System (CVSS) score doesn’t always reflect the realities of running a WordPress site.

    -

    Solid Security now uses the Patchstack Priority score, which goes beyond CVSS to provide a real-world risk assessment tailored to WordPress. It factors in how likely a vulnerability is to be exploited and its actual impact on your site.

    -

    With Patchstack Priority, you get a clearer picture of what really matters, helping you focus on the vulnerabilities that pose the greatest risk, and worry less about noise from low-impact issues.

    -

    🛠️ Website Security Utilities

    -
      -
    • -

      Enforce SSL – Force all connections to the website to be made over SSL/TLS.

      -
    • -
    • -

      Database Backups – Create backups of your WordPress database. (Not a complete backup.)

      -
    • -
    • -

      Geolocation (Pro) – Improve Trusted Devices by connecting to an external location or mapping API.

      -
    • -
    -

    🚀 Advanced Security Tools

    -
      -
    • Identify Server IPs – Prevent issues caused by inadvertently locking out your server IPs.
    • -
    • Change User ID 1 – Change the user ID for the first WordPress user, potentially preventing attacks that assume the user with ID1 exists and is an administrator.
    • -
    • Change Database Prefix – Change the database prefix that WordPress uses, potentially preventing attacks that assume the database prefix is “wp_”.
    • -
    • Check File Permission – See the file and directory permissions of key areas of your site.
    • -
    • Server Config Rules – View or flush the server security rules generated by Solid Security.
    • -
    • wp-config.php Rules – View or flush the wp-config.php security rules generated by Solid Security.
    • -
    • Change WordPress Salts – Secure your site after a successful attack by changing the WordPress salts used to secure cookies and security tokens.
    • -
    • Hide Login URL – change the login URL of your site, making it harder for bots to find your login page and attack it.
    • -
    -

    🛟 Need Help?

    -

    Free support may be available with the community’s help in the WordPress.org support forums. Our Solid Security support team provides top-notch technical support to all our Solid Security Basic users there.

    -

    Our Help Center will help you become an iThemes Security expert.

    -

    Get additional peace of mind with professional support from our expert team and pro features to take your site’s security to the next level with Solid Security Pro.

    -

    Recover From a Hacked Site

    -

    Solid Security makes regular backups of your WordPress database, allowing you to get back online quickly in the event of a hack or security breach. Use Solid Security to create and email database backups on a customizable schedule.

    -

    For complete site backups and the ability to restore or move WordPress to a new host or domain, check out Solid Backups.

    -

    Solid Central Integration

    -

    Manage more than one WordPress site? Release lockouts and keep your themes, plugins, and WordPress core up to date from one dashboard with Solid Central.

    -

    *Zippia. “30 Crucial Cybersecurity Statistics [2023]: Data, Trends And More” Zippia.com. Jun. 15, 2023, https://www.zippia.com/advice/cybersecurity-statistics/

    -

    **https://blog.checkpoint.com/2023/01/05/38-increase-in-2022-global-cyberattacks/

    -

    License

    -

    Released under the terms of the GNU General Public License.

    -', '9.4.1', 'StellarWP', '6.5', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/better-wp-security.9.4.1.zip', '2010-10-23 00:00:00+00', '2025-09-16 18:43:00+00', 'https://profiles.wordpress.org/stellarwp/', 92, 3980, 16, 5, 800000, 35360702, 'https://solidwp.com/products/security', NULL, 'commercial', 'https://solidwp.com/security/why-go-pro/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=support-link', 'https://wordpress.org/support/plugin/better-wp-security/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Solid Security – Password, Two Factor Authentication, and Brute Force Protection", "slug": "better-wp-security", "tags": {"malware": "malware", "security": "security", "password-protection": "password protection", "brute-force-protection": "brute force protection", "two-factor-authentication": "two factor authentication"}, "added": "2010-10-23", "icons": {"1x": "https://ps.w.org/better-wp-security/assets/icon.svg?rev=2980272", "svg": "https://ps.w.org/better-wp-security/assets/icon.svg?rev=2980272"}, "author": "StellarWP", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/better-wp-security/assets/banner-772x250.png?rev=2980272", "high": "https://ps.w.org/better-wp-security/assets/banner-1544x500.png?rev=2980272"}, "ratings": {"1": 280, "2": 62, "3": 45, "4": 176, "5": 3417}, "version": "9.4.1", "homepage": "https://solidwp.com/products/security", "requires": "6.5", "sections": {"faq": "\n
    \nWhy does Solid Security require the latest WordPress version? Can’t I use a slightly older version?\n\n

    \n

      \n
    • One of the best security practices for a WordPress site owner is keeping software up to date. Because of this, we only test this plugin on the latest stable version of WordPress and will only guarantee it works in the latest version.
    • \n
    \n

    \n
    \nWill this plugin completely stop all attacks on my site?\n\n

    \n

      \n
    • No. Solid Security is designed to help improve the security of your WordPress installation from many common attack methods, but it cannot prevent every possible attack. Nothing replaces diligence and good practice. This plugin makes it a little easier for you to apply both.
    • \n
    \n

    \n
    \nIs this plugin only for new WordPress installs or can I use it on existing sites, too?\n\n

    \n

      \n
    • While Solid Security can be installed on either a new or existing site, we strongly recommend making a complete backup of your existing site before applying any features included in this plugin.
    • \n
    \n

    \n
    \nWill this plugin work on all servers and hosts?\n\n

    \n

      \n
    • Solid Security requires Apache or LiteSpeed and mod_rewrite or NGINX to work.
    • \n
    \n

    \n
    \nWhat changes does this plugin make that can break my site?\n\n

    \n

      \n
    • Solid Security makes significant changes to your database and other site files which can be problematic for existing WordPress sites. Again, we strongly recommended making a complete backup of your site before using this plugin. While problems are rare, most support requests involve the failure to make a proper backup before installation. DISCLAIMER: Under no circumstances do we release this plugin with any warranty, implied or otherwise. We cannot be held responsible for any damage that might arise from the use of this plugin.
    • \n
    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    CSS problem

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ilya (sarbash) on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    By using next CSS rules

    \n\n\n\n
    .auto-fold #wpcontent {
    padding-left: 0;
    }

    #wpcontent {
    padding-left: 0;
    }

    \n\n\n\n

    you break original Wordpress CSS

    \n\n\n\n
    #wpcontent {
    height: 100%;
    padding-left: 20px;
    }
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    from happy to VERY disappointed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jongveronique on October 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used to be very happy with the plugin. It did exactly what it needed to do, even if setup was a bit of a challenge.
    Now it broke one of my sites 3 weeks in a row. First an empty wp-config file, then an error in the .htaccess (with 2 sites) and this week only the homepage of the site was live and all others were nowhere to be found (404). I deactivated this plugin and all of a sudden the pages had returned.
    I am afraid I''ll have to look for another security app.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable Security You Can Count On

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Asif Hossain (asifhossain1) on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin makes website protection simple with real-time monitoring and automatic blocking that works quietly in the background. I feel more confident knowing threats are stopped before they cause damage. The cost of the premium plan could be a hurdle for smaller projects but the features are impressive.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Bad plugin, no support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pierre236 (Pierreto) on July 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin weighs down the database, which if not cleaned every day, can quickly put your site out of action.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice addition to your WP SIte

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy georgewp24 on July 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have to be honest — at the beginning, it was a bit challenging for me to set everything up. It wasn’t working at first, and I felt pretty desperate. However, the support team didn’t leave me on my own, and I really appreciated that. Once you get it up and running, the plugins are a great option.

    \n\n\n\n

    That said, I think there’s definitely room for improvement in the documentation and onboarding for new clients. Sometimes the support material can be a bit confusing — a few steps or clicks are missing, which can lead to frustration. It would be really helpful to have short, step-by-step videos that guide users through the process.

    \n\n\n\n

    You do need to make some small edits to the server (nothing too technical like database manipulation), but it can feel intimidating if you’re not used to dealing with servers.

    \n\n\n\n

    In the end, it mostly comes down to copying a few links, but it’s easy to get stuck along the way without the right guidance.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin good support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy chris@designwave.co.za on July 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good security plugin with nice features. Haven''t had any security breaches in years of using it. Support team is good and helpful too.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin crashes the website under PHP8.4

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy h360 on July 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin crashes the website under PHP8.4

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Paul (emailsbrowsing) on May 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin and great customer service

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A nightmare

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rostichep on May 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    An admin has entered the wrong password, he''s blocked and I can''t unblock him. Even by deactivating and deleting this plugin and cleaning up the database. I can''t find an explanation anywhere. I''m banning this plugin forever, which makes my site unusable in the event of a password error. Grrrr

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Service and Plugins

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy makmacmc on April 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using SolidWP (since iThemes) for the past 10 years or so, and they have served me greatly.

    \n\n\n\n

    I run all my clients through Solid Sync and use Solid Backups and Solid Security for all my client sites.

    \n\n\n\n

    Highly recommend!

    \n
    \n
    \n", "changelog": "

    9.4.1

    \n
      \n
    • Bug Fix: Missing assets in release 9.4.0.
    • \n
    \n

    9.4.0

    \n
      \n
    • Important: Solid Security now requires PHP 7.4 or later.
    • \n
    • New: Patchstack Priority tells you how quickly you should address a vulnerability so you can focus on the most critical issues.
    • \n
    • New: The Security Digest email includes a complete list of vulnerabilities affecting your site.
    • \n
    • Enhancement: The Site Scan email now only includes newly found vulnerabilities to prevent notification fatigue.
    • \n
    • Enhancement: Site Scans now run four times daily to detect new vulnerabilities.
    • \n
    • Tweak: Make frontend JS code compatible with React 18.
    • \n
    \n

    9.3.10

    \n
      \n
    • Tweak: Update SolidWP Logo
    • \n
    \n

    9.3.9

    \n
      \n
    • Tweak: Reduce number of steps in the onboarding sequence.
    • \n
    • Bug Fix: Notification Center settings could not be properly saved.
    • \n
    \n

    9.3.8

    \n
      \n
    • Tweak: Delete older JS files that were causing false-positives on scans. They have not been used since the UI was rewritten in React.
    • \n
    • Security: Update StellarWP Telemetry library to improve authorization checks.
    • \n
    \n

    9.3.7

    \n
      \n
    • Enhancement: Use block API Version 3 for the Security Profile block.
    • \n
    • Bug Fix: PHP warning when HTTP_HOST not set.
    • \n
    \n

    9.3.6

    \n
      \n
    • Enhancement: Better surface Login Security features during onboarding.
    • \n
    \n

    9.3.5

    \n
      \n
    • Bug Fix: PHP warning about translations being loaded too early.
    • \n
    \n

    9.3.4

    \n
      \n
    • Important: Solid Security now requires WordPress 6.5 or later.
    • \n
    • Tweak: Add a new solid_security_mail_site_logo filter to modify the Site Logo used in email notifications.
    • \n
    • Bug Fix: PHP fatal error on shutdown due to missing Event class on some sites.
    • \n
    • Bug Fix: PHP warning on Site Health page.
    • \n
    • Bug Fix: PHP warning in the SSL module on some server setups.
    • \n
    \n

    9.3.3

    \n
      \n
    • Enhancement: Improve highlighting settings search results.
    • \n
    • Bug Fix: Crash during the onboarding process when starting over in some paths.
    • \n
    • Bug Fix: Checkbox styling issue on WordPress 6.6.
    • \n
    • Bug Fix: Fire an action when a vulnerability is unresolved due to plugin activation.
    • \n
    \n

    9.3.2

    \n
      \n
    • Important: “Automatic (Insecure)” IP detection has been removed. Read more: https://go.solidwp.com/firewall-features-not-available
    • \n
    • Enhancement: Allow generating a new Two-Factor TOTP secret from the WP-Login UI.
    • \n
    • Bug Fix: The SolidWP logo appeared too large in some email clients.
    • \n
    • Bug Fix: An error would occur if we could not determine the length of database columns while saving log items.
    • \n
    \n

    9.3.1

    \n
      \n
    • Tweak: Add a notice when a user’s role is demoted from the Site Scans page.
    • \n
    • Tweak: Update Privacy Policy generator text.
    • \n
    • Bug Fix: Could not proceed through onboarding when BuddyPress or BuddyBoss was active.
    • \n
    • Bug Fix: Some firewall rules could not be deactivated.
    • \n
    • Bug Fix: Allow opting in to Telemetry via the Settings Page.
    • \n
    • Bug Fix: PHP 8.2 deprecation warnings.
    • \n
    \n

    9.3.0

    \n
      \n
    • New: The Firewall page has a new IP Management tab to provide easy access to blocking or authorizing IP addresses.
    • \n
    • New: Usage Data Sharing (opt-in only) allows users to share non-personal and non-sensitive information with StellarWP to inform decisions about how to improve Solid Security in the future.
    • \n
    • Enhancement: Add a snackbar notice when making changes on the Firewall Configure page.
    • \n
    • Tweak: Remove some straggling references and links to iThemes.
    • \n
    • Tweak: Consistently refer to 2FA as Two-Factor Authentication on the Profile page.
    • \n
    • Tweak: Allow performing more Site Scan actions when the issue is muted.
    • \n
    • Bug Fix: Truncate log item columns that are too long before inserting into the database.
    • \n
    • Bug Fix: Consistently order the Security Profile tabs.
    • \n
    • Bug Fix: Add missing text domain to new Solid Security Admin Menu items.
    • \n
    • Bug Fix: Reset filters on the Vulnerabilities page when starting a Site Scan.
    • \n
    • Bug Fix: PHP warning on the logs page when the File Change module logs unexpected data.
    • \n
    \n

    9.2.0

    \n
      \n
    • New: Refreshed UI for manging per-user security settings like Two-Factor. The previous Two-Factor UI can be enabled using the SOLID_SECURITY_LEGACY_2FA_UI constant.
    • \n
    • New: A new block “Solid Security User Security Settings” let’s you display this UI on the front-end of your website. The [solid_security_user_profile_settings] shortcode can be used if you’re not yet using the Block Editor.
    • \n
    • Important: Solid Security now requires WordPress 6.3 or later.
    • \n
    • Enhancement: Display a snackbar notice when sending a 2FA reminder from the Site Scan page.
    • \n
    • Enhancement: Include a link directly to the Patchstack database in the Site Scanner alert email.
    • \n
    • Tweak: Remove iThemes Security is now Solid Security banners from the admin.
    • \n
    • Bug Fix: Trying to enable Network Brute Force from the Security messages center linked to the wrong place.
    • \n
    • Bug Fix: During onboarding, a double scrollbar was displayed on some screen sizes.
    • \n
    \n

    9.1.0

    \n
      \n
    • New: Add support for creating custom firewall rules.
    • \n
    • Enhancement: Add support for configuring firewall settings from the Firewall page.
    • \n
    • Bug Fix: The firewall page would appear empty when geolocation could not retrieve a country code.
    • \n
    \n

    9.0.3

    \n
      \n
    • Bug Fix: Remove an extra folder containing duplicate plugin files
    • \n
    \n

    9.0.2

    \n
      \n
    • Bug Fix: Adding missing dist files to SVN
    • \n
    \n

    9.0.1

    \n
      \n
    • Security: Don’t disclose the login URL when using Hide Backend on a site with comments enabled and comment registration required. Thanks to Naveen Muthusamy for disclosing this issue.
    • \n
    • Hardening: Check for the promote_user capability when using Privilege Escalation in addition to edit_user.
    • \n
    • Tweak: Remove the iThemes Security is now Solid Security banner from admin-facing email notifications.
    • \n
    • Bug Fix: Prevent the User Security page from crashing when “Show Avatars” is disabled in the WordPress discussion settings.
    • \n
    • Bug Fix: Fix some filters on the User Security page not working as expected.
    • \n
    • Bug Fix: Fix spacing on the Two-Factor form when backup methods are enabled.
    • \n
    • Bug Fix: Fix fatal error when there is an error retrieving Patchstack license information.
    • \n
    • Bug Fix: Styling issues on WordPress 6.4.
    • \n
    \n

    9.0.0

    \n
      \n
    • New: iThemes Security is now Solid Security! Learn More: https://go.solidwp.com/security-welcome-to-solidwp
    • \n
    • Important: Solid Security now requires WordPress 6.2 or later.
    • \n
    • New: The Firewall screen brings together the Firewall functionality Solid Security provides into one easy to use screen. More Firewall features are coming soon!
    • \n
    • New: The Vulnerabilities screen identifies what vulnerable software you have on your site and guides you through next steps.
    • \n
    • New: Identify risks in your site’s security with the the expanded Site Scan functionality.
    • \n
    • New: The User Security screen keeps you appraised of the security practices your site’s users are following. Easily apply actions to multiple users in one-click like resetting passwords or logging out active sessions.
    • \n
    • Enhancement: The dashboard and settings screens have been redesigned to make it easier to find what you’re looking for.
    • \n
    • Enhancement: The Security Summary dashboard card gives you a snapshot of the most important security issues affecting your site.
    • \n
    • Enhancement: Add support for loading Solid Security via an MU-Plugin for improved performance when blocking attackers.
    • \n
    • Tweak: Remove the IP Tracker Online link from the logs page.
    • \n
    • Bug Fix: PHP 8.2 compatibility.
    • \n
    • Bug Fix: Resolved PHP warnings when unexpected data is encountered during software updates.
    • \n
    \n

    8.1.8

    \n
      \n
    • News: iThemes Security is becoming Solid Security soon. Learn More: https://go.solidwp.com/security-free-notice-ithemes-becoming-solidwp
    • \n
    \n

    8.1.7

    \n
      \n
    • Important: Enforce encryption for Two-Factor secrets.
    • \n
    • Tweak: Add Stellar and Solid banners.
    • \n
    • Bug Fix: Don’t require “Write to Files” to be enabled to use the “Rotate Encryption Key” tool.
    • \n
    \n

    8.1.6

    \n
      \n
    • Bug Fix: Fallback to the homepage when Enforce SSL encounters a non-safelisted redirect destination.
    • \n
    • Bug Fix: IP Detection on sites behind Load Balancers that appended their IP address to X-Forwarded-For and did not provide a Real IP header.
    • \n
    \n

    8.1.5

    \n
      \n
    • Security Hardening: Prevent open redirects attacks against the Enforce SSL module. This attack requires spoofing the Host header which requires additional conditions to exploit. Thanks to nlpro for reporting the issue. Read More: https://ithemes.com/?p=84309
    • \n
    • Bug Fix: Update Password Strength library to the latest version. This fixes discrepancies between the realtime password strength estimation and the enforced password strength.
    • \n
    \n

    8.1.4

    \n
      \n
    • Tweak: Add “All” tab to the Features page.
    • \n
    • Tweak: Don’t show “Ban” buttons in Security Dashboard if the user won’t be able to create a ban.
    • \n
    • Bug Fix: Prevent Headers Already Sent warning when a lockout occurs during a WP Cron request on some server setups.
    • \n
    • Bug Fix: Manually load Sodium Polyfill for servers that have an older version of libsodium installed.
    • \n
    • Bug Fix: Error when saving the File Change settings when the “notify_admin” setting was set.
    • \n
    • Bug Fix: Prevent a redirect loop when logging in on sites that take more than 5 seconds to load the Dashboard.
    • \n
    \n

    8.1.3

    \n
      \n
    • Important: iThemes Security now requires PHP 7.3 and WordPress 5.9 or later.
    • \n
    • Security: Add support for encrypting Two-Factor Mobile App secrets. Enable via Tools -> Set Encryption Key.
    • \n
    • Security: Deprecate Automatic Proxy Detection. Instead, manually configure Proxy Detection or use Security Check. Fix IP spoofing attacks.
    • \n
    • Enhancement: Add “Ban Lockout” button to the Active Lockouts card.
    • \n
    • Bug Fix: File Logs not rotating.
    • \n
    • Bug Fix: PHP warning when loading Icon Fonts in certain configurations.
    • \n
    • Bug Fix: Don’t attempt to Hide Backend when a Cron request is being processed.
    • \n
    • Bug Fix: Prevent entering invalid date values when selecting a custom date range in the Security Dashboard.
    • \n
    • Bug Fix: Preliminary PHP 8.1 compatibility.
    • \n
    • Bug Fix: File Change “notify_admin” settings validation error.
    • \n
    • Thanks to Calvin Alkan for reporting the security issues fixed in this release.
    • \n
    \n

    8.1.2

    \n
      \n
    • Tweak: Require a Title when creating a new Dashboard.
    • \n
    • Bug Fix: Don’t attempt to send a Site Scan notification for Clean scans preventing a fatal error after scheduled site scans.
    • \n
    \n

    8.1.1

    \n
      \n
    • Bug Fix: Error when visiting the Notifications page after activating a module with notifications for the first time.
    • \n
    • Bug Fix: Update deprecated withState usages to useState.
    • \n
    \n

    8.1.0

    \n
      \n
    • Important: iThemes Security now requires WordPress 5.8 or later.
    • \n
    • New Feature: Include the full iThemes Security Site Scanner in iThemes Security Free. Scheduled scans are disabled by default.
    • \n
    • Tweak: Add new “Go Pro” page that includes an overview of features in iThemes Security Pro.
    • \n
    • Bug Fix: Scroll to top of window when navigating.
    • \n
    • Bug Fix: Allow searching for Password Requirements.
    • \n
    • Bug Fix: Don’t load WordPress and System Tweaks modules when the ITSEC_DISABLE_MODULES constant is enabled.
    • \n
    • Bug Fix: Prevent incidentally loading the Two-Factor module when it is unregistered.
    • \n
    • Bug Fix: Conditionally display the NGINX File Path setting.
    • \n
    • Bug Fix: Allow saving Notifications when “default recipients must contain at least 1 item” error is present.
    • \n
    • Bug Fix: Help styling on WordPress 5.9.
    • \n
    • Bug Fix: Compatibility with plugins that expected a logged-in user during lockouts.
    • \n
    \n

    8.0.2

    \n
      \n
    • Enhancement: Reintroduce Feature Flags management UI.
    • \n
    • Tweak: Reposition “Advanced” and “Tools” menu items to be more readable on lengthy screens.
    • \n
    • Bug Fix: When the Change Admin User tool is run, update any User Groups referencing the old user id.
    • \n
    • Bug Fix: WordPress footer would appear in the middle of the logs page.
    • \n
    • Bug Fix: Add missing translation strings file.
    • \n
    \n

    8.0.1

    \n
      \n
    • Bug Fix: Sites that did not support HTTPS, but had the SSL module active, but not configured, on upgrade would get redirected to the HTTPS version of the site.
    • \n
    • Bug Fix: Unregister the iThemes Security Two-Factor module when the Two-Factor Feature Plugin is enabled.
    • \n
    • Bug Fix: Allow activation on WordPress 5.7.0.
    • \n
    • Bug Fix: Add missing textdomains.
    • \n
    \n

    8.0.0

    \n
      \n
    • Important: iThemes Security now requires WordPress 5.7 and PHP 7.0 or later.
    • \n
    • New: iThemes Security gets a redesigned interface focused on making it easier to configure and find what you’re looking for. Read More: https://ithemes.com/?p=65086.
    • \n
    • New: Instantly search over everything in iThemes Security with a new instant search feature.
    • \n
    • New: Security Tools have been grouped into their own page. “Identify Server IPs” and “Security Check Pro” can be run manually without using Debug Mode.
    • \n
    • New: Relevant content from the Help Center, iThemes Blog, and iThemes YouTube channel is surfaced in a new Help area based on the current page. Click the “Help” button in the toolbar or the “Info” icon next to the page title to access it.
    • \n
    • New: The settings UI is now fully responsive and works great across mobile, tablet, and desktop devices.
    • \n
    • New: Two-Factor is now part of the core iThemes Security plugin.
    • \n
    • Enhancement: Improved keyboard and screen reader support.
    • \n
    • Enhancement: The Banned Users Card can add multiple bans at once.
    • \n
    • Tweak: Add a new Global setting to control “Automatically Temporarily Authorize Hosts”.
    • \n
    • Tweak: When the Global setting “Hide Security Menu in Admin Bar” is enabled, notices will no longer be printed on non-iThemes Security pages. Instead, you can access the Message Center from the Settings or Dashbaord toolbars.
    • \n
    • Tweak: The Database Backups module is no longer available if you have BackupBuddy installed. If this behavior isn’t desired, enable the “ITSEC_ENABLE_BACKUPS” constant.
    • \n
    • Tweak: The Geolocation API configuration used by Trusted Devices has been moved into it’s own dedicated “Geolocation” module.
    • \n
    • Tweak: Move “Have I Been Pwned” integration to the Core plugin.
    • \n
    • Tweak: Reduce filename length and complexity for built CSS and JS files.
    • \n
    • Removed: The following modules have been removed: 404 Detection, Away Mode, Change Content Directory, and Multisite Tweaks.
    • \n
    • Removed: The following WordPress and System Tweaks have been removed: Remove Windows Live Writer Header, EditURI Header, Comment Spam, Mitigate Attachment File Traversal Attack, Protect Against Tabnapping, Filter Long URL Strings, Filter Non-English Characters, Filter Request Methods, Remove File Writing Permissions.
    • \n
    • Removed: The “Backup Full Database” setting has been removed from the Backups module.
    • \n
    • Removed: The “Require SSL”, “Front End SSL Mode”, and “SSL for Dashboard” settings have been removed from the SSL module.
    • \n
    • Bug Fix: Fix fatal errors when using PHP 8.
    • \n
    • Bug Fix: Fix infinite loop when restricting who can use App Passwords on multisite installs.
    • \n
    • Bug Fix: Ensure the ITSEC_Setup class does not exist before trying to load it. Display schema errors on multisite in the Network Admin.
    • \n
    • Bug Fix: Labels for Disable PHP Execution in Plugins and Themes were reversed.
    • \n
    • Bug Fix: Add missing constants to the debug page.
    • \n
    • Bug Fix: Remove deleted recipients when saving notifications.
    • \n
    • Bug Fix: Correct Site Scan statuses for scans with no issues.
    • \n
    • Dev Note: Modules are now based on a module.json configuration file. If you are registering custom iThemes Security module, you should update it to include a module.json file that adheres to the core/module-schema.json JSON Schema.
    • \n
    • Dev Note: The Network Brute Force module had it’s folder updated to “network-brute-force” from “ipcheck”.
    • \n
    • Dev Note: New Object Oriented API for creating Password Requirements.
    • \n
    • Dev Note: New Settings and Modules REST API endpoints.
    • \n
    • Dev Note: New RPC REST API namespace. There is no backward compatibility promise for these API endpoints.
    • \n
    \n", "description": "

    Reduce your WordPress website’s risk to nearly zero with Solid Security

    \n

    Formerly iThemes Security. Looking for iThemes? Learn more here.

    \n

    On average, 30,000 websites are hacked every day.* Cyberattacks in the US increased by 57% in 2022.** Bad actors who want to hack your site, steal your data, and cripple your business are a 24/7/365 threat.

    \n

    You need a proactive, strategic approach to WordPress website security that protects your site from brute force attacks, malware infections, and other cyber threats.

    \n

    Solid Security shields your site from cyberattacks and prevents security vulnerabilities. It automatically locks out bad users identified by our Brute Force Protection Network that is nearly 1 million sites strong and leverages your own blacklist. It secures and protects your most commonly attacked part of your WordPress website – user login authentication.

    \n

    With Patchstack integration (Pro) protects your site before you even have a chance to address vulnerabilities and before a plugin or theme vendor or developer can even issue a patch.

    \n

    That’s 24/7/365 always-on truly Solid Security.

    \n

    \n

    🌐 Secure your Website in Minutes

    \n

    The Solid Security setup and onboarding experience allows anyone to secure their WordPress website in under 10 minutes, regardless of technical acumen. Knowing that you have enabled all the right security settings for your website will leave you feeling like your site has never been more secure.

    \n

    📚 Security Site Templates to Fit Your Type of Site

    \n

    Enabling the correct security settings based on the type of website you are building or maintaining is essential for proper security. An eCommerce site requires a different level of security than a basic blog. Solid Security Site Templates make it quick and easy to apply the right security settings for your website.

    \n

    Choose from six different site templates to apply the type of security your site needs:

    \n
      \n
    1. Ecommerce – websites that sell products or services
    2. \n
    3. Network – websites that connect people or communities
    4. \n
    5. Non-Profit – websites that promote your cause and collect donations
    6. \n
    7. Blog – websites that share your thoughts or start a conversation
    8. \n
    9. Portfolio – websites that showcase your craft
    10. \n
    11. Brochure – simple websites that promote your business
    12. \n
    \n

    ⌚ Real-Time Website Security Dashboard

    \n

    Every day, lots of activity is happening on your website that you can’t see. Many of these activities can be related to your site’s security, so monitoring these events is vital to keeping your site secure.

    \n

    The Solid Security Pro plugin provides a real-time WordPress security dashboard that monitors security-related events on your site around the clock. The Solid Security Dashboard is a dynamic dashboard with all your WordPress website’s security activity stats in one place, including brute force attacks, banned users, active lockouts, site scan results, and user security stats (Pro).

    \n

    🗝️ WordPress Login Security

    \n

    Setting up and maintaining proper WordPress configurations and managing user account access are essential aspects of hardening your site against threats and vulnerabilities. Basic and Pro include features that address both of these factors.

    \n
      \n
    • \n

      Two Factor Authentication (2FA) – Make your WordPress login nearly impenetrable to attack by requiring users to enter a security code along with a password to login. The Solid Security plugin allows you to add two-factor authentication to your WordPress login with several authentication methods, including mobile apps like Authy and Google Authenticator, email, and backup codes.

      \n
    • \n
    • \n

      Password Requirements – Create and enforce a password policy for your users in less than a minute.

      \n
    • \n
    • \n

      reCAPTCHA (Pro) – Stop bad bots from engaging in abusive activities on your website, such as attempting to break into your website using compromised passwords, posting spam, or even scraping your content.

      \n
    • \n
    • \n

      Passwordless Logins (Pro) – WordPress security made easy. Secure your user accounts with 2fa & strong passwords while allowing real users login with a click of a mouse.

      \n
    • \n
    • \n

      Trusted Devices (Pro) – Identify the devices you and other users use to block session hijacking attacks and limit Administrator privileges to Trusted Devices.

      \n
    • \n
    • \n

      Automated Vulnerability Patching (Pro) – Solid Security Pro includes Patchstack which patches vulnerabilities before you have a chance to and applies fixes even before a plugin developer or vendor has issued a patch.

      \n
    • \n
    \n

    Learn more about how passwordless login is the future and how Solid Security can help you implement it today.

    \n

    👨‍👩‍👧‍👦 The Right Amount of Security for Every User Level

    \n

    Different types of user levels require different levels of security. During the Solid Security setup process, you can identify your website’s key user groups. Once the different types of users are identified, you can apply the level of security that is just right for each user group.

    \n

    Here are a couple of examples of how User Groups are useful for securing your site:

    \n
      \n
    • \n

      For Clients – Let’s say you are configuring Solid Security on a client’s website. You will decide whether or not they are required to use two-factor authentication and if they should have access to the Solid Security settings.

      \n
    • \n
    • \n

      For Customers – If you have an eCommerce website, you will decide whether or not you want to protect customer accounts with a password policy.

      \n
    • \n
    \n

    Privilege Escalation (Pro) also adds a safe, secure way to grant temporary admin-level access to your website.

    \n

    🤖 Block Bad Bots & Ban User Agents with Lockouts

    \n
      \n
    • \n

      Ban Users (Basic and Pro) – Permanently block repeat offenders from accessing your site.
      \nLocal Brute Force Protection – Automatically identify and stop the most common method of attack on WordPress sites.

      \n
    • \n
    • \n

      Local Brute Force Protection (Basic and Pro) – Automatically identify and stop the most common method of attack on WordPress sites.

      \n
    • \n
    • \n

      Network Brute Force Protection (Basic and Pro) – The network is the Solid Security community and is nearly one million websites strong. If someone tries to break into websites in the Solid Security community, Solid Security will block them across the network.

      \n
    • \n
    • \n

      Magic Links (Pro) – Security shouldn’t get in your way. Magic Links allow you to log in to your WordPress site while your username is locked out by the Solid Security Local Brute Force Protection feature.

      \n
    • \n
    \n

    🔍 Monitor Your Site’s Security Health

    \n
      \n
    • \n

      File Change Detection (Basic and Pro) – Solid Security logs changes made to your website that can help detect malicious activity on your website.

      \n
    • \n
    • \n

      Site Scanner (Basic and Pro) – Schedule checks to run four times per day (Basic) or hourly (Pro) for known vulnerabilities of WordPress core file, plugins and themes. Using the Google Safe Browsing API, the Site Scan also checks your Google’s blocklist status and will alert you if Google has found any malware on your website.

      \n
    • \n
    • \n

      Patchstack integration (Pro) – Automated virtual patching of some vulnerabilities before you even have a chance to address them yourself, and before a plugin or theme vendor or developer can even issue a patch.

      \n
    • \n
    • \n

      Site Scanner (Pro) – Unlock Version Management to automatically apply a patch to vulnerable software detected by the Site Scan when one is available.

      \n
    • \n
    • \n

      User Logging (Pro) – Keep a record of user activity in your WordPress security logs, including login/logout, user registration, adding/removing plugins, switching themes, changes to posts and pages, and more.

      \n
    • \n
    • \n

      Version Management (Pro) – The Version Management feature in Solid Security Pro allows you to auto-update WordPress, plugins, and themes. Beyond that, Version Management also has options to harden your website when you are running outdated software and scan for old websites.

      \n
    • \n
    \n

    🧠 Smarter, More Actionable Vulnerability Prioritization

    \n

    Not all vulnerabilities pose the same level of risk, and the traditional Common Vulnerability Scoring System (CVSS) score doesn’t always reflect the realities of running a WordPress site.

    \n

    Solid Security now uses the Patchstack Priority score, which goes beyond CVSS to provide a real-world risk assessment tailored to WordPress. It factors in how likely a vulnerability is to be exploited and its actual impact on your site.

    \n

    With Patchstack Priority, you get a clearer picture of what really matters, helping you focus on the vulnerabilities that pose the greatest risk, and worry less about noise from low-impact issues.

    \n

    🛠️ Website Security Utilities

    \n
      \n
    • \n

      Enforce SSL – Force all connections to the website to be made over SSL/TLS.

      \n
    • \n
    • \n

      Database Backups – Create backups of your WordPress database. (Not a complete backup.)

      \n
    • \n
    • \n

      Geolocation (Pro) – Improve Trusted Devices by connecting to an external location or mapping API.

      \n
    • \n
    \n

    🚀 Advanced Security Tools

    \n
      \n
    • Identify Server IPs – Prevent issues caused by inadvertently locking out your server IPs.
    • \n
    • Change User ID 1 – Change the user ID for the first WordPress user, potentially preventing attacks that assume the user with ID1 exists and is an administrator.
    • \n
    • Change Database Prefix – Change the database prefix that WordPress uses, potentially preventing attacks that assume the database prefix is “wp_”.
    • \n
    • Check File Permission – See the file and directory permissions of key areas of your site.
    • \n
    • Server Config Rules – View or flush the server security rules generated by Solid Security.
    • \n
    • wp-config.php Rules – View or flush the wp-config.php security rules generated by Solid Security.
    • \n
    • Change WordPress Salts – Secure your site after a successful attack by changing the WordPress salts used to secure cookies and security tokens.
    • \n
    • Hide Login URL – change the login URL of your site, making it harder for bots to find your login page and attack it.
    • \n
    \n

    🛟 Need Help?

    \n

    Free support may be available with the community’s help in the WordPress.org support forums. Our Solid Security support team provides top-notch technical support to all our Solid Security Basic users there.

    \n

    Our Help Center will help you become an iThemes Security expert.

    \n

    Get additional peace of mind with professional support from our expert team and pro features to take your site’s security to the next level with Solid Security Pro.

    \n

    Recover From a Hacked Site

    \n

    Solid Security makes regular backups of your WordPress database, allowing you to get back online quickly in the event of a hack or security breach. Use Solid Security to create and email database backups on a customizable schedule.

    \n

    For complete site backups and the ability to restore or move WordPress to a new host or domain, check out Solid Backups.

    \n

    Solid Central Integration

    \n

    Manage more than one WordPress site? Release lockouts and keep your themes, plugins, and WordPress core up to date from one dashboard with Solid Central.

    \n

    *Zippia. “30 Crucial Cybersecurity Statistics [2023]: Data, Trends And More” Zippia.com. Jun. 15, 2023, https://www.zippia.com/advice/cybersecurity-statistics/

    \n

    **https://blog.checkpoint.com/2023/01/05/38-increase-in-2022-global-cyberattacks/

    \n

    License

    \n

    Released under the terms of the GNU General Public License.

    \n", "screenshots": "
    1. \"Customized

      Customized onboarding configures your security settings to your needs

    2. \"Real-Time

      Real-Time Security Dashboard

    3. \"WordPress

      WordPress Login Security with Two Factor Authentication

    4. \"Firewall

      Firewall rules, Block Bad Bots, and Ban User Agents with Lockouts

    5. \"Monitor

      Monitor Your Site''s Security Health

    6. \"Database

      Database backups help you get up and running again when the worst happens

    7. \"Advanced

      Advanced Security Settings for power users

    8. \"Automated

      Automated vulnerability patching with Patchstack (Pro)

    "}, "versions": {"5.0.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.0.1.zip", "5.1.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.1.1.zip", "5.2.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.2.1.zip", "5.3.7": "https://downloads.wordpress.org/plugin/better-wp-security.5.3.7.zip", "5.4.5": "https://downloads.wordpress.org/plugin/better-wp-security.5.4.5.zip", "5.5.0": "https://downloads.wordpress.org/plugin/better-wp-security.5.5.0.zip", "5.6.0": "https://downloads.wordpress.org/plugin/better-wp-security.5.6.0.zip", "5.6.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.6.1.zip", "5.6.2": "https://downloads.wordpress.org/plugin/better-wp-security.5.6.2.zip", "5.6.3": "https://downloads.wordpress.org/plugin/better-wp-security.5.6.3.zip", "5.6.4": "https://downloads.wordpress.org/plugin/better-wp-security.5.6.4.zip", "5.7.0": "https://downloads.wordpress.org/plugin/better-wp-security.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.7.1.zip", "5.8.0": "https://downloads.wordpress.org/plugin/better-wp-security.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/better-wp-security.5.8.1.zip", "5.9.0": "https://downloads.wordpress.org/plugin/better-wp-security.5.9.0.zip", "6.0.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.0.0.zip", "6.1.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.1.1.zip", "6.2.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.2.1.zip", "6.3.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.3.0.zip", "6.4.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.4.0.zip", "6.5.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.5.1.zip", "6.6.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.6.1.zip", "6.7.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.7.0.zip", "6.8.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.8.0.zip", "6.8.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.8.1.zip", "6.9.0": "https://downloads.wordpress.org/plugin/better-wp-security.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/better-wp-security.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/better-wp-security.6.9.2.zip", "7.0.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/better-wp-security.7.0.2.zip", "7.0.3": "https://downloads.wordpress.org/plugin/better-wp-security.7.0.3.zip", "7.0.4": "https://downloads.wordpress.org/plugin/better-wp-security.7.0.4.zip", "7.1.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.1.0.zip", "7.2.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.2.0.zip", "7.3.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.3.0.zip", "7.3.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.3.1.zip", "7.3.2": "https://downloads.wordpress.org/plugin/better-wp-security.7.3.2.zip", "7.3.3": "https://downloads.wordpress.org/plugin/better-wp-security.7.3.3.zip", "7.4.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.4.1.zip", "7.5.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.5.0.zip", "7.6.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.6.0.zip", "7.6.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.6.1.zip", "7.7.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.7.0.zip", "7.7.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.7.1.zip", "7.8.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.8.0.zip", "7.9.0": "https://downloads.wordpress.org/plugin/better-wp-security.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/better-wp-security.7.9.1.zip", "8.0.0": "https://downloads.wordpress.org/plugin/better-wp-security.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/plugin/better-wp-security.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/plugin/better-wp-security.8.0.2.zip", "8.1.0": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.0.zip", "8.1.1": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.1.zip", "8.1.2": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.2.zip", "8.1.3": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.3.zip", "8.1.4": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.4.zip", "8.1.5": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.5.zip", "8.1.6": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.6.zip", "8.1.7": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.7.zip", "8.1.8": "https://downloads.wordpress.org/plugin/better-wp-security.8.1.8.zip", "9.0.0": "https://downloads.wordpress.org/plugin/better-wp-security.9.0.0.zip", "9.0.1": "https://downloads.wordpress.org/plugin/better-wp-security.9.0.1.zip", "9.0.2": "https://downloads.wordpress.org/plugin/better-wp-security.9.0.2.zip", "9.0.3": "https://downloads.wordpress.org/plugin/better-wp-security.9.0.3.zip", "9.1.0": "https://downloads.wordpress.org/plugin/better-wp-security.9.1.0.zip", "9.2.0": "https://downloads.wordpress.org/plugin/better-wp-security.9.2.0.zip", "9.3.0": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.0.zip", "9.3.1": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.1.zip", "9.3.2": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.2.zip", "9.3.3": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.3.zip", "9.3.4": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.4.zip", "9.3.5": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.5.zip", "9.3.6": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.6.zip", "9.3.7": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.7.zip", "9.3.8": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.8.zip", "9.3.9": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.9.zip", "9.4.0": "https://downloads.wordpress.org/plugin/better-wp-security.9.4.0.zip", "9.4.1": "https://downloads.wordpress.org/plugin/better-wp-security.9.4.1.zip", "trunk": "https://downloads.wordpress.org/plugin/better-wp-security.zip", "9.3.10": "https://downloads.wordpress.org/plugin/better-wp-security.9.3.10.zip"}, "downloaded": 35360702, "description": "

    Reduce your WordPress website’s risk to nearly zero with Solid Security

    \n

    Formerly iThemes Security. Looking for iThemes? Learn more here.

    \n

    On average, 30,000 websites are hacked every day.* Cyberattacks in the US increased by 57% in 2022.** Bad actors who want to hack your site, steal your data, and cripple your business are a 24/7/365 threat.

    \n

    You need a proactive, strategic approach to WordPress website security that protects your site from brute force attacks, malware infections, and other cyber threats.

    \n

    Solid Security shields your site from cyberattacks and prevents security vulnerabilities. It automatically locks out bad users identified by our Brute Force Protection Network that is nearly 1 million sites strong and leverages your own blacklist. It secures and protects your most commonly attacked part of your WordPress website – user login authentication.

    \n

    With Patchstack integration (Pro) protects your site before you even have a chance to address vulnerabilities and before a plugin or theme vendor or developer can even issue a patch.

    \n

    That’s 24/7/365 always-on truly Solid Security.

    \n

    \n

    🌐 Secure your Website in Minutes

    \n

    The Solid Security setup and onboarding experience allows anyone to secure their WordPress website in under 10 minutes, regardless of technical acumen. Knowing that you have enabled all the right security settings for your website will leave you feeling like your site has never been more secure.

    \n

    📚 Security Site Templates to Fit Your Type of Site

    \n

    Enabling the correct security settings based on the type of website you are building or maintaining is essential for proper security. An eCommerce site requires a different level of security than a basic blog. Solid Security Site Templates make it quick and easy to apply the right security settings for your website.

    \n

    Choose from six different site templates to apply the type of security your site needs:

    \n
      \n
    1. Ecommerce – websites that sell products or services
    2. \n
    3. Network – websites that connect people or communities
    4. \n
    5. Non-Profit – websites that promote your cause and collect donations
    6. \n
    7. Blog – websites that share your thoughts or start a conversation
    8. \n
    9. Portfolio – websites that showcase your craft
    10. \n
    11. Brochure – simple websites that promote your business
    12. \n
    \n

    ⌚ Real-Time Website Security Dashboard

    \n

    Every day, lots of activity is happening on your website that you can’t see. Many of these activities can be related to your site’s security, so monitoring these events is vital to keeping your site secure.

    \n

    The Solid Security Pro plugin provides a real-time WordPress security dashboard that monitors security-related events on your site around the clock. The Solid Security Dashboard is a dynamic dashboard with all your WordPress website’s security activity stats in one place, including brute force attacks, banned users, active lockouts, site scan results, and user security stats (Pro).

    \n

    🗝️ WordPress Login Security

    \n

    Setting up and maintaining proper WordPress configurations and managing user account access are essential aspects of hardening your site against threats and vulnerabilities. Basic and Pro include features that address both of these factors.

    \n
      \n
    • \n

      Two Factor Authentication (2FA) – Make your WordPress login nearly impenetrable to attack by requiring users to enter a security code along with a password to login. The Solid Security plugin allows you to add two-factor authentication to your WordPress login with several authentication methods, including mobile apps like Authy and Google Authenticator, email, and backup codes.

      \n
    • \n
    • \n

      Password Requirements – Create and enforce a password policy for your users in less than a minute.

      \n
    • \n
    • \n

      reCAPTCHA (Pro) – Stop bad bots from engaging in abusive activities on your website, such as attempting to break into your website using compromised passwords, posting spam, or even scraping your content.

      \n
    • \n
    • \n

      Passwordless Logins (Pro) – WordPress security made easy. Secure your user accounts with 2fa & strong passwords while allowing real users login with a click of a mouse.

      \n
    • \n
    • \n

      Trusted Devices (Pro) – Identify the devices you and other users use to block session hijacking attacks and limit Administrator privileges to Trusted Devices.

      \n
    • \n
    • \n

      Automated Vulnerability Patching (Pro) – Solid Security Pro includes Patchstack which patches vulnerabilities before you have a chance to and applies fixes even before a plugin developer or vendor has issued a patch.

      \n
    • \n
    \n

    Learn more about how passwordless login is the future and how Solid Security can help you implement it today.

    \n

    👨‍👩‍👧‍👦 The Right Amount of Security for Every User Level

    \n

    Different types of user levels require different levels of security. During the Solid Security setup process, you can identify your website’s key user groups. Once the different types of users are identified, you can apply the level of security that is just right for each user group.

    \n

    Here are a couple of examples of how User Groups are useful for securing your site:

    \n
      \n
    • \n

      For Clients – Let’s say you are configuring Solid Security on a client’s website. You will decide whether or not they are required to use two-factor authentication and if they should have access to the Solid Security settings.

      \n
    • \n
    • \n

      For Customers – If you have an eCommerce website, you will decide whether or not you want to protect customer accounts with a password policy.

      \n
    • \n
    \n

    Privilege Escalation (Pro) also adds a safe, secure way to grant temporary admin-level access to your website.

    \n

    🤖 Block Bad Bots & Ban User Agents with Lockouts

    \n
      \n
    • \n

      Ban Users (Basic and Pro) – Permanently block repeat offenders from accessing your site.
      \nLocal Brute Force Protection – Automatically identify and stop the most common method of attack on WordPress sites.

      \n
    • \n
    • \n

      Local Brute Force Protection (Basic and Pro) – Automatically identify and stop the most common method of attack on WordPress sites.

      \n
    • \n
    • \n

      Network Brute Force Protection (Basic and Pro) – The network is the Solid Security community and is nearly one million websites strong. If someone tries to break into websites in the Solid Security community, Solid Security will block them across the network.

      \n
    • \n
    • \n

      Magic Links (Pro) – Security shouldn’t get in your way. Magic Links allow you to log in to your WordPress site while your username is locked out by the Solid Security Local Brute Force Protection feature.

      \n
    • \n
    \n

    🔍 Monitor Your Site’s Security Health

    \n
      \n
    • \n

      File Change Detection (Basic and Pro) – Solid Security logs changes made to your website that can help detect malicious activity on your website.

      \n
    • \n
    • \n

      Site Scanner (Basic and Pro) – Schedule checks to run four times per day (Basic) or hourly (Pro) for known vulnerabilities of WordPress core file, plugins and themes. Using the Google Safe Browsing API, the Site Scan also checks your Google’s blocklist status and will alert you if Google has found any malware on your website.

      \n
    • \n
    • \n

      Patchstack integration (Pro) – Automated virtual patching of some vulnerabilities before you even have a chance to address them yourself, and before a plugin or theme vendor or developer can even issue a patch.

      \n
    • \n
    • \n

      Site Scanner (Pro) – Unlock Version Management to automatically apply a patch to vulnerable software detected by the Site Scan when one is available.

      \n
    • \n
    • \n

      User Logging (Pro) – Keep a record of user activity in your WordPress security logs, including login/logout, user registration, adding/removing plugins, switching themes, changes to posts and pages, and more.

      \n
    • \n
    • \n

      Version Management (Pro) – The Version Management feature in Solid Security Pro allows you to auto-update WordPress, plugins, and themes. Beyond that, Version Management also has options to harden your website when you are running outdated software and scan for old websites.

      \n
    • \n
    \n

    🧠 Smarter, More Actionable Vulnerability Prioritization

    \n

    Not all vulnerabilities pose the same level of risk, and the traditional Common Vulnerability Scoring System (CVSS) score doesn’t always reflect the realities of running a WordPress site.

    \n

    Solid Security now uses the Patchstack Priority score, which goes beyond CVSS to provide a real-world risk assessment tailored to WordPress. It factors in how likely a vulnerability is to be exploited and its actual impact on your site.

    \n

    With Patchstack Priority, you get a clearer picture of what really matters, helping you focus on the vulnerabilities that pose the greatest risk, and worry less about noise from low-impact issues.

    \n

    🛠️ Website Security Utilities

    \n
      \n
    • \n

      Enforce SSL – Force all connections to the website to be made over SSL/TLS.

      \n
    • \n
    • \n

      Database Backups – Create backups of your WordPress database. (Not a complete backup.)

      \n
    • \n
    • \n

      Geolocation (Pro) – Improve Trusted Devices by connecting to an external location or mapping API.

      \n
    • \n
    \n

    🚀 Advanced Security Tools

    \n
      \n
    • Identify Server IPs – Prevent issues caused by inadvertently locking out your server IPs.
    • \n
    • Change User ID 1 – Change the user ID for the first WordPress user, potentially preventing attacks that assume the user with ID1 exists and is an administrator.
    • \n
    • Change Database Prefix – Change the database prefix that WordPress uses, potentially preventing attacks that assume the database prefix is “wp_”.
    • \n
    • Check File Permission – See the file and directory permissions of key areas of your site.
    • \n
    • Server Config Rules – View or flush the server security rules generated by Solid Security.
    • \n
    • wp-config.php Rules – View or flush the wp-config.php security rules generated by Solid Security.
    • \n
    • Change WordPress Salts – Secure your site after a successful attack by changing the WordPress salts used to secure cookies and security tokens.
    • \n
    • Hide Login URL – change the login URL of your site, making it harder for bots to find your login page and attack it.
    • \n
    \n

    🛟 Need Help?

    \n

    Free support may be available with the community’s help in the WordPress.org support forums. Our Solid Security support team provides top-notch technical support to all our Solid Security Basic users there.

    \n

    Our Help Center will help you become an iThemes Security expert.

    \n

    Get additional peace of mind with professional support from our expert team and pro features to take your site’s security to the next level with Solid Security Pro.

    \n

    Recover From a Hacked Site

    \n

    Solid Security makes regular backups of your WordPress database, allowing you to get back online quickly in the event of a hack or security breach. Use Solid Security to create and email database backups on a customizable schedule.

    \n

    For complete site backups and the ability to restore or move WordPress to a new host or domain, check out Solid Backups.

    \n

    Solid Central Integration

    \n

    Manage more than one WordPress site? Release lockouts and keep your themes, plugins, and WordPress core up to date from one dashboard with Solid Central.

    \n

    *Zippia. “30 Crucial Cybersecurity Statistics [2023]: Data, Trends And More” Zippia.com. Jun. 15, 2023, https://www.zippia.com/advice/cybersecurity-statistics/

    \n

    **https://blog.checkpoint.com/2023/01/05/38-increase-in-2022-global-cyberattacks/

    \n

    License

    \n

    Released under the terms of the GNU General Public License.

    \n", "donate_link": "", "num_ratings": 3980, "screenshots": {"1": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-1.png?rev=2980272", "caption": "Customized onboarding configures your security settings to your needs"}, "2": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-2.png?rev=2980272", "caption": "Real-Time Security Dashboard"}, "3": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-3.png?rev=2980272", "caption": "WordPress Login Security with Two Factor Authentication"}, "4": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-4.png?rev=2980272", "caption": "Firewall rules, Block Bad Bots, and Ban User Agents with Lockouts"}, "5": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-5.png?rev=2980272", "caption": "Monitor Your Site''s Security Health"}, "6": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-6.png?rev=2980272", "caption": "Database backups help you get up and running again when the worst happens"}, "7": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-7.png?rev=2980272", "caption": "Advanced Security Settings for power users"}, "8": {"src": "https://ps.w.org/better-wp-security/assets/screenshot-8.png?rev=3362729", "caption": "Automated vulnerability patching with Patchstack (Pro)"}}, "support_url": "https://wordpress.org/support/plugin/better-wp-security/", "contributors": {"ithemes": {"avatar": "https://secure.gravatar.com/avatar/8ea053fd51b78be032966cf16ccc9ea659b212fc5e0849a52cc911e225ec2f69?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ithemes/", "display_name": "iThemes"}, "lisacee": {"avatar": "https://secure.gravatar.com/avatar/f368debb99731c38cb2aed8e125e660b20da026628e2e16f4f7f6e7de146dc5c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lisacee/", "display_name": "Lisa Canini"}, "solidwp": {"avatar": "https://secure.gravatar.com/avatar/27d4f868474fb5a320b772927679f5de8a00357340c98e1cd413dfe640e36e31?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/solidwp/", "display_name": "SolidWP"}, "timothyblynjacobs": {"avatar": "https://secure.gravatar.com/avatar/c348d8c0ee55f04ab227c1084486ec12037713b2919f91f16c774625a33391b9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/timothyblynjacobs/", "display_name": "Timothy Jacobs"}}, "last_updated": "2025-09-16 6:43pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/better-wp-security.9.4.1.zip", "author_profile": "https://profiles.wordpress.org/stellarwp/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-ef30-7176-9dd0-ace810d14de5", "name": "Solid Security – Password, Two Factor Authentication, and Brute Force Protection", "slug": "better-wp-security", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1758048180, "version": "9.4.1"}, "support_threads": 16, "requires_plugins": [], "short_description": "Harden your site security with Login Security, Two-Factor Authentication (2FA), Vulnerability Scanner, Firewall, and more. Formerly iThemes Security.", "author_block_count": 1, "author_block_rating": 92, "commercial_support_url": "https://solidwp.com/security/why-go-pro/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=support-link", "support_threads_resolved": 5}'); -INSERT INTO public.plugins VALUES ('019a30c1-6412-70b7-9aca-9702ae31de55', 'breadcrumb-navxt', 'Breadcrumb NavXT', 'Adds breadcrumb navigation showing the visitor's path to their current location.', '

    Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress powered blog or website. These breadcrumb trails are highly customizable to suit the needs of just about any website running WordPress. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users.

    -

    PHP Requirements

    -

    Breadcrumb NavXT 7.0 and newer require PHP7.0
    -Breadcrumb NavXT 5.2 and newer require PHP5.3
    -Breadcrumb NavXT 5.1.1 and older require PHP5.2

    -

    Features (non-exhaustive)

    -
      -
    • RDFa format Schema.org BreadcrumbList compatible breadcrumb generation.
    • -
    • Extensive breadcrumb customization control via a settings page with appropriate default values for most use cases.
    • -
    • Network admin settings page for managing breadcrumb settings for all subsites with configurable global priority.
    • -
    • Built in WordPress Widget.
    • -
    • Extensible via OOP and provided actions and filters.
    • -
    • WPML compatible (enhanced compatibility with WPML extensions plugin).
    • -
    • Polylang compatible (enhanced compatibility with Polylang extensions plugin).
    • -
    • bbPress compatible (enhanced compatibility with bbPress extensions plugin).
    • -
    • BuddyPress compatible (enhanced compatibility with BuddyPress extensions plugin).
    • -
    -

    Translations

    -

    Breadcrumb NavXT now supports WordPress.org language packs. Want to translate Breadcrumb NavXT? Visit Breadcrumb NavXT’s WordPress.org translation project.

    -', '7.4.1', 'John Havlik', '5.8', '7.0', '6.7.4', 'https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.4.1.zip', '2007-12-01 00:00:00+00', '2025-01-10 01:39:00+00', 'https://profiles.wordpress.org/mtekk/', 92, 132, 3, 1, 900000, 16139912, 'http://mtekk.us/code/breadcrumb-navxt/', 'https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted', NULL, NULL, 'https://wordpress.org/support/plugin/breadcrumb-navxt/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Breadcrumb NavXT", "slug": "breadcrumb-navxt", "tags": {"block": "block", "trail": "trail", "breadcrumb": "breadcrumb", "navigation": "navigation", "breadcrumbs": "breadcrumbs"}, "added": "2007-12-01", "icons": {"1x": "https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103", "svg": "https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103"}, "author": "John Havlik", "rating": 92, "status": "open", "tested": "6.7.4", "banners": {"low": "https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.png?rev=1927103", "high": "https://ps.w.org/breadcrumb-navxt/assets/banner-1544x500.png?rev=1927103"}, "ratings": {"1": 8, "2": 2, "3": 5, "4": 8, "5": 109}, "version": "7.4.1", "homepage": "http://mtekk.us/code/breadcrumb-navxt/", "requires": "5.8", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Breadcrumbs improved navigation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy juanmag on October 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Now users can easily see where they are in the site. It''s SEO-friendly too.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Exactly what I wanted

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bleyjo on February 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ideal for my use, quick & custom breadcrumb navigation

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    HUGE drawback

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy skscomp on August 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    not a bad plugin
    but a HUGE drawback is that it does not support shortcodes
    this is really inconvenient when you need to add breadcrumbs only to some pages

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    doesn't work after activation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy warmy on July 7, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I couldn''t find a shortcode to install in the theme.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect solution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy delrod on October 17, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is a perfect solution and works so well! Please keep it up!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    breadcrumb navxt polylang does not work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy readysite on April 5, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    breadcrumb navxt polylang does not work for Homepage, this is a big problem, where, for example, it was solved in other plugins, I found this one!

    \n\n\n\n

    But I want to evaluate rationally if a site in one language plugin is an excellent solution. In any case, thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin! Great Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Turk (turk) on November 12, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    This is a great plugin. Has to be the absolute best for Breadcrumbs in your blog.\n\n@mtekk is helping me with my issue with Categories displaying as Tags. I was pretty nervous about bringing a website that was offline since 2016 back online and he handled me with professionalism that I guess I wasn''t expecting. I''m slowly trying to catch up with all the changes to Wordpress and having Him handle things like this makes it a lot easier.\n\n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    simple yet very convenient and useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy echodev (echoyo) on August 18, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    A straightforward plugin to add breadcrumbs with thoughtful options for posts, pages, and even custom content types. Highly recommend this.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Need common template for all post types.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy egromspam0002 on July 3, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    1. It would be nice if it was possible edit common template for all post types at once.\n\n2. It would be nice if it was possible to export/import settings.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Do not work in multisite

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy PashkaRu on November 29, 2021\t\t\t

    \n\t\t
    \n\t
    \n\t
    incorrectly identifies the position, no item names are visible\n\nit is sad!
    \n
    \n", "changelog": "

    7.4.1

    \n

    Release date: January, 9th 2025

    \n
      \n
    • Bug fix: Fixed issue where the legacy widget was not available due to changes introduced in 7.4.0.
    • \n
    \n

    7.4.0

    \n

    Release date: December, 30th 2024

    \n
      \n
    • New feature: Added bcn_admin_post_root_args filter.
    • \n
    • Bug fix: Fixed issue where the ignore the breadcrumb cache option within the Breadcrumb Trail block resulted in the breadcrumb trail not getting generated on the home page.
    • \n
    • Bug fix: Fixed issue where breadcrumb trails generated within the loop were improperly missing the home breadcrumb when on the home page.
    • \n
    • Bug fix: Fixed issue breadcrumb-navxt textdomain is loaded too early (improved WordPress 6.7 support).
    • \n
    • Bug fix: Improved bcn_breadcrumb_trail::post_hierarchy() resiliency to unexpected returns from get_post().
    • \n
    • Bug fix: Fixed translation text typos in Breadcrumb Trail block.
    • \n
    \n

    7.3.1

    \n

    Release date: June, 27th 2024

    \n
      \n
    • Bug fix: Fixed issue where $force parameter wasn’t passed into bcn_breadcrumb_trail::fill() within bcn_display*() functions.
    • \n
    • Bug fix: Fixed improper textdomain existing within adminKit.
    • \n
    • Bug fix: Fixed issue with $force parameter where when it is not set the homepage breadcrumb would use the wrong template when calling the breadcrumb trail within the loop.
    • \n
    \n

    7.3.0

    \n

    Release date: February, 9th 2024

    \n
      \n
    • Behavior change: bcn_display_json_ld() now returns unescaped Unicode characters.
    • \n
    • Behavior change: $force parameter in bcn_display*() functions is now passed to bcn_breadcrumb_trail::fill() allowing generation of trails within the loop for the current loop item instead of the parent page/resource.
    • \n
    • New feature: Breadcrumb Trail block rewritten to have feature parity with Breadcrumb NavXT Widget.
    • \n
    • New feature: Breadcrumb Trail block supports basic styling within block editor.
    • \n
    • Bug fix: Fixed error where $outer_template argument was dropped within breadcrumb_navxt::display().
    • \n
    • Bug fix: Fixed issue where boolean settings were not exported/imported properly.
    • \n
    • Bug fix: Fixed cause of PHP error in bcn_breadcrumb_trail::maybe_add_post_type_arg() when 3rd party code breaks the WP API.
    • \n
    • Bug fix: Added check for proper queried object type for author archives.
    • \n
    \n

    7.2.0

    \n

    Release date: February, 9th 2023

    \n
      \n
    • Behavior change: Settings reset sets option entry to blank array, consistent with the change to only storing non-default values in the database.
    • \n
    • New feature: Added bcn_display_separator filter.
    • \n
    • New feature: Add per setting indication if Network wide settings are overriding the local setting.
    • \n
    • Bug fix: Improved compatibility with PHP8.1.
    • \n
    • Bug fix: Fixed PHP errors caused by unexpected entries in WP Post Types array.
    • \n
    • Bug fix: Settings help menu now shows up in the network settings page.
    • \n
    • Bug fix: Fixed cause of “file not found” error on the import/export/reset form in the network settings page.
    • \n
    \n

    7.1.0

    \n

    Release date: July, 17th 2022

    \n
      \n
    • Behavior change: BCN_SETTINGS_FAVOR_* constant behavior changed to take advantage of settings changes in 7.0.
    • \n
    • Behavior change: Settings page now warns if it detected CPTs that were added too late.
    • \n
    • New feature: Added bcn_before_loop filter which runs at the top of bcn_breadcrumb_trail::display_loop().
    • \n
    • New feature: Added JSON formatted settings import and export (successor to the old XML settings import/export format).
    • \n
    • Bug fix: Fixed PHP error caused by term archives that don’t know the active term.
    • \n
    • Bug fix: Fixed PHP error caused by introduction of namespacing in the legacy XML settings importer and exporter.
    • \n
    • Bug fix: Explicitly set option autoload values, avoiding inappropriate default autoload values being used.
    • \n
    \n

    7.0.2

    \n

    Release date: January, 4th 2022

    \n
      \n
    • Behavior change: Allow value of Hhome_template, Hhome_template_unlinked, hseparator, and hseparator_higher_dim to be overridden via bcn_settings_init.
    • \n
    • Bug fix: Fixed cause of “Sorry, you are not allowed to access this page.” message when attempting to visit the settings page.
    • \n
    \n

    7.0.1

    \n

    Release date: December, 27th 2021

    \n
      \n
    • Behavior change: Moved bcn_settings_init filter to before establishing default setting values. This filter is no longer capable of changing the default values of settings.
    • \n
    • Behavior change: Moved setup of defaults to 9000 priority, intending to cover the majority of plugins that add CPTs.
    • \n
    • Bug fix: Fixed compatibility issues with PHP5.6.
    • \n
    • Bug fix: Fixed PHP error caused by some return value of page_ settings.
    • \n
    • Bug fix: Fixed PHP error caused by non settings settings in array passed into adminKit::settings_to_opts.
    • \n
    • Bug fix: Fixed issue with bcn_allowed_html not covering admin interface elements (mapped bcn_allowed_html to mtekk_adminkit_allowed_html).
    • \n
    \n

    7.0.0

    \n

    Release date: December, 17th 2021

    \n
      \n
    • Behavior change: Within the bcn_breadcrumb_trail object instead of passing term id and taxonomy, a WP_Term object is passed instead.
    • \n
    • Behavior change: Attachments now use parent post type for post type argument.
    • \n
    • New feature: Moved to adminKit 3.0
    • \n
    • New feature: Core bcn_breadcrumb_trail object now supports multi dimensional trails.
    • \n
    • New feature: Added bcn_opts_update_to_save filter.
    • \n
    • Bug fix: Fixed parameter order issue in REST controller that resulted in PHP Deprecated message in PHP8.
    • \n
    • Bug fix: Updated REST controller endpoint registration for better WordPress 5.5+ compatibility.
    • \n
    • Bug fix: Fixed compatibility issue with Widget settings not saving properly in WordPress 5.8.
    • \n
    • Bug fix: Fixed issue with the position count parameter within bcn_display when outputting a trail in reverse order.
    • \n
    \n

    6.6.0

    \n

    Release date: October, 31st 2020

    \n
      \n
    • Behavior change: Moved to using the post type of the parent post for the type archive rather than that of the current item.
    • \n
    • Bug fix: Fixed error thrown when a site does not have an administrator role.
    • \n
    \n

    6.5.0

    \n

    Release date: June, 12th 2020

    \n
      \n
    • Behavior change: Moved to using the taxonomy of the term rather than passed in taxonomy in various functions. As a consequence, this allows bcn_pick_post_term to override the taxonomy selection.
    • \n
    • Behavior change: Default template for unlinked breadcrumbs now includes breadcrumbList markup.
    • \n
    • New feature: Added new filter bcn_breadcrumb_linked.
    • \n
    • New feature: Introduced new WordPress capability: bnc_manage_options.
    • \n
    • Bug fix: Fixed XML settings exporter so that it no longer creates malformed files that cannot be imported when settings contain special HTML entities.
    • \n
    \n

    6.4.0

    \n

    Release date: December, 31st 2019

    \n
      \n
    • Behavior change: Attachment post type settings moved to Media, additional post type options made available.
    • \n
    • Behavior change: Privately published parent posts are now, by default, skipped over in breadcrumb trails.
    • \n
    • Behavior change: On single post breadcrumb trails, the hierarchical term code path is now used in cases where only a single term from a non-hierarchical taxonomy is present for the current post.
    • \n
    • New feature: Allow %link% tag in unlinked breadcrumb templates.
    • \n
    • New feature: Added bcn_show_post_private filter.
    • \n
    • New feature: Added bcn_show_type_term_archive filter.
    • \n
    \n

    6.3.0

    \n

    Release date: May, 3rd 2019

    \n
      \n
    • New feature: Added Gutenberg block for displaying breadcrumb trails.
    • \n
    • New feature: Added bcn_display_attribute_array filter.
    • \n
    • New feature: Added bcn-aria-current template tag to facilitate WAI-ARIA Breadcrumb support.
    • \n
    • Bug Fix: Updated settings page to follow WP core standards for header structure.
    • \n
    • Bug Fix: Updated checkbox in adminKit to eliminate multiple labels to follow WCAG 2.0.
    • \n
    • Bug Fix: Fixed PHP error in circumstances of bcn_breadcrumb_trail::fill() falling back on treating an unknown item as a taxonomy.
    • \n
    \n

    6.2.1

    \n

    Release date: October, 26th 2018

    \n
      \n
    • Behavior change: Added span element wrapping the breadcrumb title in the default unlinked breadcrumb template.
    • \n
    • Bug fix: Fixed issue that caused PHP warnings and “the following settings were not saved” messages for hierarchical CPTs.
    • \n
    \n

    6.2.0

    \n

    Release date: September, 24th 2018

    \n
      \n
    • Behavior change: Cleaned up translations for default templates, simplifying and clarifying the translatable content.
    • \n
    • Behavior change: Default unlinked breadcrumb templates no longer contain Schema.org BreadcrumbList markup.
    • \n
    • Behavior change: Breadcrumb NavXT REST API endpoints are no longer enabled by default.
    • \n
    • New feature: Added bcn_register_rest_endpoint filter.
    • \n
    • New feature: Added bcn_breadcrumb_assembled_json_ld_array filter.
    • \n
    • New feature: Added support for following the post parent hierarchy first then falling back to a secondary hierarchy.
    • \n
    • Bug fix: Fixed issue where on loading the settings page immediately after migrating settings causes PHP warnings on CPT and custom taxonomy settings.
    • \n
    • Bug fix: Fixed issue that caused the settings reset option under the help drop down to not work.
    • \n
    \n

    6.1.0

    \n

    Release date: June, 1st 2018

    \n
      \n
    • Behavior change: Links to generate support requests migrated to the WordPress.org forums.
    • \n
    • New feature: Added support for Schema.org BreadcrumbList (microdata format) in the included widget.
    • \n
    • New feature: Added new Root Page support for author archives.
    • \n
    • New feature: Added REST API endpoint for posts, terms, and author archives.
    • \n
    • Bug fix: Corrected label for the Schema.org BreadcrumbList (RDFa format) option in the included widget.
    • \n
    • Bug fix: Fixed issue where a PHP warning would be thrown due to get_term() returning something other than an instance of WP_Term.
    • \n
    \n

    6.0.4

    \n

    Release date: January, 26th 2018

    \n
      \n
    • Behavior change: Added auto migration of post type hierarchy settings to bcn_display*() functions.
    • \n
    • Bug fix: Fixed issue where a PHP notice would be generated on the page for posts when the blog breadcrumb display option is set to false.
    • \n
    • Bug fix: Fixed issue where a PHP notice would be generated on archive pages where attachments were included in the wp_query results.
    • \n
    \n

    6.0.3

    \n

    Release date: January, 1st 2018

    \n
      \n
    • Bug fix: Fixed issue where an improper breadcrumb would be generated in the trail for pages under some circumstances.
    • \n
    • Bug fix: Fixed issue where the post and page roots were not updating to track user changes in Settings > Reading.
    • \n
    \n

    6.0.2

    \n

    Release date: December, 30th 2017

    \n
      \n
    • Behavior change: Added warning alerting that bcn_breadcrumb::type must be an array.
    • \n
    • Bug fix: Changed Breadcrumb Separator and Paged Template from an input field to a textbox to reduce confusion caused by HTML entities.
    • \n
    • Bug fix: Fixed issue where the parents of a page may not show up in the breadcrumb trail.
    • \n
    • Bug fix: Fixed issue where the $reverse parameter for bcn_display and bcn_display_list did not work properly.
    • \n
    • Bug fix: Fixed issue where the bcn_display_list function did not include the li elements.
    • \n
    \n

    6.0.1

    \n

    Release date: December, 28th 2017

    \n
      \n
    • Behavior change: Removed unused Blog Template and Blog Template (Unlinked) from settings page.
    • \n
    • Bug fix: Fixed issue where changes to the hierarchy type for any post type would not save.
    • \n
    • Bug fix: Fixed issue where the blog display setting was ignored.
    • \n
    \n

    6.0.0

    \n

    Release date: December, 26th 2017

    \n
      \n
    • Behavior change: bcn_breadcrumb_trail::display_list() deprecated in favor of using the $template parameter in bcn_breadcrumb_trail::display().
    • \n
    • Behavior change: bcn_breadcrumb_trail::do_attachment() deprecated in favor of calling bcn_breadcrumb_trail::do_post().
    • \n
    • Behavior change: bcn_breadcrumb_trail::do_front_page() deprecated in favor of calling bcn_breadcrumb_trail::do_home().
    • \n
    • Behavior change: bcn_li_attributes filter was deprecated in favor of bcn_display_attributes.
    • \n
    • Behavior change: bcn_breadcrumb_trail::do_archive_by_date() deprecated in favor of calling bcn_breadcrumb_trail::do_day(),bcn_breadcrumb_trail::do_month(), and/orbcn_breadcrumb_trail::do_year()`.
    • \n
    • Behavior change: bcn_breadcrumb_trail::find_type() deprecated and removed from bcn_breadcrumb_trail.
    • \n
    • Behavior change: Breadcrumb for 404 error pages changed to be a child of the front page.
    • \n
    • New feature: Added support for various HTML tags in the widget’s pretext field.
    • \n
    • New feature: Added bcn_default_hierarchy_display filter.
    • \n
    • New feature: Added bcn_default_hierarchy_type filter.
    • \n
    • New feature: Added $posttype_name as the third parameter to bcn_show_tax_private.
    • \n
    • Bug fix: Fixed UI/UX issue in the settings screen where enabling/disabling settings groups for the Home, Blog, and Mainsite breadcrumb settings did not work.
    • \n
    • Bug fix: Fixed UI/UX issue in the settings screen where not including the paged breadcrumb still allowed the paged breadcrumb template to be edited.
    • \n
    • Bug fix: Removed use of create_function in registering the widget as it was deprecated in PHP 7.2.
    • \n
    \n", "description": "

    Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress powered blog or website. These breadcrumb trails are highly customizable to suit the needs of just about any website running WordPress. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users.

    \n

    PHP Requirements

    \n

    Breadcrumb NavXT 7.0 and newer require PHP7.0
    \nBreadcrumb NavXT 5.2 and newer require PHP5.3
    \nBreadcrumb NavXT 5.1.1 and older require PHP5.2

    \n

    Features (non-exhaustive)

    \n
      \n
    • RDFa format Schema.org BreadcrumbList compatible breadcrumb generation.
    • \n
    • Extensive breadcrumb customization control via a settings page with appropriate default values for most use cases.
    • \n
    • Network admin settings page for managing breadcrumb settings for all subsites with configurable global priority.
    • \n
    • Built in WordPress Widget.
    • \n
    • Extensible via OOP and provided actions and filters.
    • \n
    • WPML compatible (enhanced compatibility with WPML extensions plugin).
    • \n
    • Polylang compatible (enhanced compatibility with Polylang extensions plugin).
    • \n
    • bbPress compatible (enhanced compatibility with bbPress extensions plugin).
    • \n
    • BuddyPress compatible (enhanced compatibility with BuddyPress extensions plugin).
    • \n
    \n

    Translations

    \n

    Breadcrumb NavXT now supports WordPress.org language packs. Want to translate Breadcrumb NavXT? Visit Breadcrumb NavXT’s WordPress.org translation project.

    \n", "screenshots": "
    1. \"This

      This screenshot shows 5 different examples of breadcrumbs generated by Breadcrumb NavXT

    2. \"A

      A screenshot of the General tab of the settings page

    3. \"A

      A screenshot of the Post Types tab of the settings page

    4. \"A

      A screenshot of the Taxonomies tab of the settings page

    5. \"A

      A screenshot of the Miscellaneous tab of the settings page

    6. \"A

      A screenshot of the Settings Import/Export/Reset form under the Help menu

    ", "installation": "

    Breadcrumb NavXT can be installed from within WordPress’ administration panel. After installing and activating the plugin, to get breadcrumb trails to display either use the included widget, or call the breadcrumb trail in your theme (or child theme). See the Calling the Breadcrumb Trail article for more information on calling the breadcrumb trail.

    \n

    To customize the breadcrumb trail you may edit the default values for the options in the administrative interface. This is located in your administration panel under Settings > Breadcrumb NavXT.

    \n

    Please visit Breadcrumb NavXT’s Documentation page for more information.

    \n"}, "versions": {"2.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.0.4.zip", "2.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.1.4.zip", "3.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.0.2.zip", "3.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.1.0.zip", "3.2.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.2.1.zip", "3.3.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.4.1.zip", "3.5.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.5.1.zip", "3.6.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.6.0.zip", "3.7.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.7.0.zip", "3.8.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.8.1.zip", "3.9.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.3.9.0.zip", "4.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.0.2.zip", "4.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.1.0.zip", "4.2.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.2.0.zip", "4.3.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.3.0.zip", "4.4.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.4.0.zip", "5.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.0.1.zip", "5.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.1.1.zip", "5.2.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.2.2.zip", "5.3.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.3.1.zip", "5.4.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.4.0.zip", "5.5.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.5.2.zip", "5.6.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.6.0.zip", "5.7.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.7.1.zip", "6.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.4.zip", "6.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.1.0.zip", "6.2.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.2.1.zip", "6.3.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.3.0.zip", "6.4.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.4.0.zip", "6.5.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.5.0.zip", "6.6.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.6.0.zip", "7.0.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.0.0.zip", "7.0.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.0.2.zip", "7.1.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.1.0.zip", "7.2.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.2.0.zip", "7.3.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.3.0.zip", "7.3.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.3.1.zip", "7.4.0": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.4.1.zip", "trunk": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.zip", "2.2.0-Beta1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.2.0-Beta1.zip", "2.2.0-Beta2": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.2.2.0-Beta2.zip", "4.0.0-Beta1": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.4.0.0-Beta1.zip"}, "downloaded": 16139912, "description": "

    Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress powered blog or website. These breadcrumb trails are highly customizable to suit the needs of just about any website running WordPress. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users.

    \n

    PHP Requirements

    \n

    Breadcrumb NavXT 7.0 and newer require PHP7.0
    \nBreadcrumb NavXT 5.2 and newer require PHP5.3
    \nBreadcrumb NavXT 5.1.1 and older require PHP5.2

    \n

    Features (non-exhaustive)

    \n
      \n
    • RDFa format Schema.org BreadcrumbList compatible breadcrumb generation.
    • \n
    • Extensive breadcrumb customization control via a settings page with appropriate default values for most use cases.
    • \n
    • Network admin settings page for managing breadcrumb settings for all subsites with configurable global priority.
    • \n
    • Built in WordPress Widget.
    • \n
    • Extensible via OOP and provided actions and filters.
    • \n
    • WPML compatible (enhanced compatibility with WPML extensions plugin).
    • \n
    • Polylang compatible (enhanced compatibility with Polylang extensions plugin).
    • \n
    • bbPress compatible (enhanced compatibility with bbPress extensions plugin).
    • \n
    • BuddyPress compatible (enhanced compatibility with BuddyPress extensions plugin).
    • \n
    \n

    Translations

    \n

    Breadcrumb NavXT now supports WordPress.org language packs. Want to translate Breadcrumb NavXT? Visit Breadcrumb NavXT’s WordPress.org translation project.

    \n", "donate_link": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted", "num_ratings": 132, "screenshots": {"1": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-1.png?rev=1058520", "caption": "This screenshot shows 5 different examples of breadcrumbs generated by Breadcrumb NavXT"}, "2": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-2.png?rev=1058103", "caption": "A screenshot of the General tab of the settings page"}, "3": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-3.png?rev=1058103", "caption": "A screenshot of the Post Types tab of the settings page"}, "4": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-4.png?rev=1058103", "caption": "A screenshot of the Taxonomies tab of the settings page"}, "5": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-5.png?rev=1058103", "caption": "A screenshot of the Miscellaneous tab of the settings page"}, "6": {"src": "https://ps.w.org/breadcrumb-navxt/assets/screenshot-6.png?rev=1058520", "caption": "A screenshot of the Settings Import/Export/Reset form under the Help menu"}}, "support_url": "https://wordpress.org/support/plugin/breadcrumb-navxt/", "contributors": {"hakre": {"avatar": "https://secure.gravatar.com/avatar/6d074b8cfcdf17947f205adf3402ed75dea44cebba0b2526d8b4e66a51d4cfdc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hakre/", "display_name": "hakre"}, "mtekk": {"avatar": "https://secure.gravatar.com/avatar/0ee5825c42d35a209d971b1557c1bee24f4aed25df48b5e5a856fea7916788be?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mtekk/", "display_name": "John Havlik"}}, "last_updated": "2025-01-10 1:39am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.4.1.zip", "author_profile": "https://profiles.wordpress.org/mtekk/", "business_model": false, "repository_url": "", "upgrade_notice": {"7.1.0": "

    This version requires PHP7.0 or newer. This version introduces a new JSON settings import/export feature.

    "}, "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-f0bf-7008-8104-86a15ee455ba", "name": "Breadcrumb NavXT", "slug": "breadcrumb-navxt", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1736473140, "version": "7.4.1"}, "support_threads": 3, "requires_plugins": [], "short_description": "Adds breadcrumb navigation showing the visitor's path to their current location.", "author_block_count": 1, "author_block_rating": 92, "commercial_support_url": "", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-641b-7102-92c0-d29d5b4788e0', 'classic-editor', 'Classic Editor', 'Enables the previous "classic" editor and the old-style Edit Post screen with TinyMCE, Meta Boxes, etc. Supports all plugins that extend this screen.', '

    Classic Editor is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress editor and the “Edit Post” screen. It makes it possible to use plugins that extend that screen, add old-style meta boxes, or otherwise depend on the previous editor.

    -

    Classic Editor is an official WordPress plugin, and will be fully supported and maintained until 2024, or as long as is necessary.

    -

    At a glance, this plugin adds the following:

    -
      -
    • Administrators can select the default editor for all users.
    • -
    • Administrators can allow users to change their default editor.
    • -
    • When allowed, the users can choose which editor to use for each post.
    • -
    • Each post opens in the last editor used regardless of who edited it last. This is important for maintaining a consistent experience when editing content.
    • -
    -

    In addition, the Classic Editor plugin includes several filters that let other plugins control the settings, and the editor choice per post and per post type.

    -

    By default, this plugin hides all functionality available in the new block editor (“Gutenberg”).

    -', '1.6.7', 'WordPress.org', '4.9', '5.2.4', '6.7.4', 'https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip', '2017-10-24 00:00:00+00', '2024-12-03 21:03:00+00', 'https://profiles.wordpress.org/wordpressdotorg/', 98, 1212, 5, 0, 9000000, 83766347, 'https://wordpress.org/plugins/classic-editor/', NULL, 'community', NULL, 'https://wordpress.org/support/plugin/classic-editor/', 'https://wordpress.org/plugins/classic-editor/?preview=1', 'https://github.com/wordpress/classic-editor', 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Classic Editor", "slug": "classic-editor", "tags": {"editor": "editor", "gutenberg": "gutenberg", "block-editor": "block-editor", "classic-editor": "classic editor"}, "added": "2017-10-24", "icons": {"1x": "https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671", "2x": "https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671"}, "author": "WordPress.org", "rating": 98, "status": "open", "tested": "6.7.4", "banners": {"low": "https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676", "high": "https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671"}, "ratings": {"1": 16, "2": 3, "3": 11, "4": 22, "5": 1160}, "version": "1.6.7", "homepage": "https://wordpress.org/plugins/classic-editor/", "requires": "4.9", "sections": {"faq": "\n
    \nDefault settings\n\n

    \n

    When activated and when using a classic (non-block) theme, this plugin will restore the previous (“classic”) WordPress editor and hide the new block editor (“Gutenberg”).
    \nThese settings can be changed at the Settings => Writing screen.

    \n

    \n
    \nDefault settings for network installation\n\n

    \n

    There are two options:

    \n
      \n
    • When network-activated and when using a classic (non-block) theme, this plugin will set the classic editor as default and prevent site administrators and users from changing editors.
      \nThe settings can be changed and default network-wide editor can be selected on the Network Settings screen.
    • \n
    • When not network-activated each site administrator will be able to activate the plugin and choose options for their users.
    • \n
    \n

    \n
    \nCannot find the “Switch to classic editor” link\n\n

    \n

    It is in the main block editor menu, see this screenshot.

    \n

    \n
    \nDoes this work with full site editing and block themes?\n\n

    \n

    No, as block themes rely on blocks. See Block themes article for more information.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simplicity, Ease of Use & Intuitive - Bring Back classic editor...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Arachnoid (arachnoid2486) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    - The Classic Editor uses a simple, single text field with TinyMCE, users can write and format text without dealing with blocks or drag-and-drop features.\n- Most ideal features for writers, bloggers, and businesses who prioritize speed and efficiency over advanced design.\n- We are comfortable with classic workflows, switching to Gutenberg can slow productivity and force a relearning process.\n- Gutenberg interface block features is unintuitive & overcomplicated for basic writing tasks.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Still the Most Reliable Editor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy amanstacker on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Classic Editor is simple, fast, and reliable. It keeps the editing experience clean without unnecessary distractions. I appreciate how stable it is even with the latest WordPress versions. A must-have plugin for those who prefer the traditional way of editing content.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    9 million + downloads, WordPress, Take a hint!!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy SP4C3M0NK3Y (spac3monk3y) on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Gutenberg: 300k installs 2* overall.

    Classic Editor: 9million+ installs 5* overall!

    Take a ffing hint!! By far the majority hate the block editior and garbage like Gutenberg, take a hint!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable Way to Keep the Old WordPress Editing Experience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mpeng7 on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple, stable, and exactly what many users still rely on.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Life saving

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy PoliteShrimp (terminator_5505) on August 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Life saving plugin to get rid of the annoying blocks system.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best plugin on this site

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy itziko on July 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best plugin on this site

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and Familiar Editor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hopkinarona3 on June 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does the job without complications. If you''re used to the classic WordPress feel, this plugin brings it back nicely. Not perfect, but reliable enough.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best solution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy diogopetermann on June 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I install it on all websites. It''s easier to use and direct to the point.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It does exactly what I need it to do with minimal fuss.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Elizabeth Beeton (esb10) on May 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    Please never never never never never change this plugin unless you have security problems. I need this like I need air.\n\nI don''t need anything fancy. I don''t need to have bells and whistles to give it 5 stars. It just has to do what I need done, and I''m happy.\n\nFYI: I''m not a bot. I''m giving 5 stars and leaving a variation of this same review on every plugin I use daily and that makes my life easier.\n\nThis plugin has saved my sanity and has kept my blood pressure from spiking with using the bullshit Gutenberg.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice to have but some problem

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jelleruben on May 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    If I want to add a post on my website on my Tablet(Samsung S10 Ultra), I cant add a title or edit the publish date of the post. The focus jumps to the post it self. If I deacivated the plug pin, I can add the title and edit the publish date.

    \n\n\n\n

    I haven''t the issue on my laptop or smartphone

    \n\n\n\n

    \n
    \n
    \n", "changelog": "

    1.6.7

    \n
      \n
    • Fixed loading of script translations when post.js is replaced in WordPress 6.7.1.
    • \n
    \n

    1.6.6

    \n
      \n
    • Added fix for selecting/deselecting multiple unwanted categories in WordPress 6.7.1 when clicking on a category checkbox on the old Edit Post screen.
    • \n
    \n

    1.6.5

    \n
      \n
    • Added fix for Safari 18 negative horizontal margin on floats.
    • \n
    \n

    1.6.4

    \n
      \n
    • Added support for administrators to choose the default editor for other users.
    • \n
    \n

    1.6.3

    \n
      \n
    • Added some WPCS fixes, props NicktheGeek on GitHub.
    • \n
    • Updated “Tested up to” in the readme and removed it from classic-editor.php. This should fix false positive errors in security plugins in the future.
    • \n
    \n

    1.6.2

    \n
      \n
    • Fixed bug that was preventing saving of the last used editor.
    • \n
    \n

    1.6.1

    \n
      \n
    • Fixed a warning on the block editor based widgets screen.
    • \n
    • Fixed use of a deprecated filter.
    • \n
    \n

    1.6

    \n
      \n
    • Updated for WordPress 5.5.
    • \n
    • Fixed minor issues with calling deprecated functions, needlessly registering uninstall hook, and capitalization of some strings.
    • \n
    \n

    1.5

    \n
      \n
    • Updated for WordPress 5.2 and Gutenberg 5.3.
    • \n
    • Enhanced and fixed the “open posts in the last editor used to edit them” logic.
    • \n
    • Fixed adding post state so it can easily be accessed from other plugins.
    • \n
    \n

    1.4

    \n
      \n
    • On network installations removed the restriction for only network activation.
    • \n
    • Added support for network administrators to choose the default network-wide editor.
    • \n
    • Fixed the settings link in the warning on network About screen.
    • \n
    • Properly added the “Switch to classic editor” menu item to the block editor menu.
    • \n
    \n

    1.3

    \n
      \n
    • Fixed removal of the “Try Gutenberg” dashboard widget.
    • \n
    • Fixed condition for displaying of the after upgrade notice on the “What’s New” screen. Shown when the classic editor is selected and users cannot switch editors.
    • \n
    \n

    1.2

    \n
      \n
    • Fixed switching editors from the Add New (post) screen before a draft post is saved.
    • \n
    • Fixed typo that was appending the edit URL to the classic-editor query var.
    • \n
    • Changed detecting of WordPress 5.0 to not use version check. Fixes a bug when testing 5.1-alpha.
    • \n
    • Changed the default value of the option to allow users to switch editors to false.
    • \n
    • Added disabling of the Gutenberg plugin and lowered the required WordPress version to 4.9.
    • \n
    • Added classic_editor_network_default_settings filter.
    • \n
    \n

    1.1

    \n

    Fixed a bug where it may attempt to load the block editor for post types that do not support editor when users are allowed to switch editors.

    \n

    1.0

    \n
      \n
    • Updated for WordPress 5.0.
    • \n
    • Changed all “Gutenberg” names/references to “block editor”.
    • \n
    • Refreshed the settings UI.
    • \n
    • Removed disabling of the Gutenberg plugin. This was added for testing in WordPress 4.9. Users who want to continue following the development of Gutenberg in WordPress 5.0 and beyond will not need another plugin to disable it.
    • \n
    • Added support for per-user settings of default editor.
    • \n
    • Added support for admins to set the default editor for the site.
    • \n
    • Added support for admins to allow users to change their default editor.
    • \n
    • Added support for network admins to prevent site admins from changing the default settings.
    • \n
    • Added support to store the last editor used for each post and open it next time. Enabled when users can choose default editor.
    • \n
    • Added “post editor state” in the listing of posts on the Posts screen. Shows the editor that will be opened for the post. Enabled when users can choose default editor.
    • \n
    • Added classic_editor_enabled_editors_for_post and classic_editor_enabled_editors_for_post_type filters. Can be used by other plugins to control or override the editor used for a particular post of post type.
    • \n
    • Added classic_editor_plugin_settings filter. Can be used by other plugins to override the settings and disable the settings UI.
    • \n
    \n

    0.5

    \n
      \n
    • Updated for Gutenberg 4.1 and WordPress 5.0-beta1.
    • \n
    • Removed some functionality that now exists in Gutenberg.
    • \n
    • Fixed redirecting back to the classic editor after looking at post revisions.
    • \n
    \n

    0.4

    \n
      \n
    • Fixed removing of the “Try Gutenberg” call-out when the Gutenberg plugin is not activated.
    • \n
    • Fixed to always show the settings and the settings link in the plugins list table.
    • \n
    • Updated the readme text.
    • \n
    \n

    0.3

    \n
      \n
    • Updated the option from a checkbox to couple of radio buttons, seems clearer. Thanks to @designsimply for the label text suggestions.
    • \n
    • Some general updates and cleanup.
    • \n
    \n

    0.2

    \n
      \n
    • Update for Gutenberg 1.9.
    • \n
    • Remove warning and automatic deactivation when Gutenberg is not active.
    • \n
    \n

    0.1

    \n

    Initial release.

    \n", "description": "

    Classic Editor is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress editor and the “Edit Post” screen. It makes it possible to use plugins that extend that screen, add old-style meta boxes, or otherwise depend on the previous editor.

    \n

    Classic Editor is an official WordPress plugin, and will be fully supported and maintained until 2024, or as long as is necessary.

    \n

    At a glance, this plugin adds the following:

    \n
      \n
    • Administrators can select the default editor for all users.
    • \n
    • Administrators can allow users to change their default editor.
    • \n
    • When allowed, the users can choose which editor to use for each post.
    • \n
    • Each post opens in the last editor used regardless of who edited it last. This is important for maintaining a consistent experience when editing content.
    • \n
    \n

    In addition, the Classic Editor plugin includes several filters that let other plugins control the settings, and the editor choice per post and per post type.

    \n

    By default, this plugin hides all functionality available in the new block editor (“Gutenberg”).

    \n", "screenshots": "
    1. \"Admin

      Admin settings on the Settings -> Writing screen.

    2. \"User

      User settings on the Profile screen. Visible when the users are allowed to switch editors.

    3. \""Action

      \"Action links\" to choose alternative editor. Visible when the users are allowed to switch editors.

    4. \"Link

      Link to switch to the block editor while editing a post in the classic editor. Visible when the users are allowed to switch editors.

    5. \"Link

      Link to switch to the classic editor while editing a post in the block editor. Visible when the users are allowed to switch editors.

    6. \"Network

      Network settings to select the default editor for the network and allow site admins to change it.

    7. \"The

      The \"Switch to classic editor\" link.

    "}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/classic-editor.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/classic-editor.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/classic-editor.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/classic-editor.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/classic-editor.0.5.zip", "1.0": "https://downloads.wordpress.org/plugin/classic-editor.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/classic-editor.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/classic-editor.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/classic-editor.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/classic-editor.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/classic-editor.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/classic-editor.1.6.zip", "1.6.1": "https://downloads.wordpress.org/plugin/classic-editor.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/classic-editor.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/classic-editor.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/classic-editor.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/classic-editor.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip", "trunk": "https://downloads.wordpress.org/plugin/classic-editor.zip"}, "downloaded": 83766347, "description": "

    Classic Editor is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress editor and the “Edit Post” screen. It makes it possible to use plugins that extend that screen, add old-style meta boxes, or otherwise depend on the previous editor.

    \n

    Classic Editor is an official WordPress plugin, and will be fully supported and maintained until 2024, or as long as is necessary.

    \n

    At a glance, this plugin adds the following:

    \n
      \n
    • Administrators can select the default editor for all users.
    • \n
    • Administrators can allow users to change their default editor.
    • \n
    • When allowed, the users can choose which editor to use for each post.
    • \n
    • Each post opens in the last editor used regardless of who edited it last. This is important for maintaining a consistent experience when editing content.
    • \n
    \n

    In addition, the Classic Editor plugin includes several filters that let other plugins control the settings, and the editor choice per post and per post type.

    \n

    By default, this plugin hides all functionality available in the new block editor (“Gutenberg”).

    \n", "donate_link": "", "num_ratings": 1212, "screenshots": {"1": {"src": "https://ps.w.org/classic-editor/assets/screenshot-1.png?rev=1998671", "caption": "Admin settings on the Settings -> Writing screen."}, "2": {"src": "https://ps.w.org/classic-editor/assets/screenshot-2.png?rev=1998671", "caption": "User settings on the Profile screen. Visible when the users are allowed to switch editors."}, "3": {"src": "https://ps.w.org/classic-editor/assets/screenshot-3.png?rev=1998671", "caption": "\"Action links\" to choose alternative editor. Visible when the users are allowed to switch editors."}, "4": {"src": "https://ps.w.org/classic-editor/assets/screenshot-4.png?rev=1998671", "caption": "Link to switch to the block editor while editing a post in the classic editor. Visible when the users are allowed to switch editors."}, "5": {"src": "https://ps.w.org/classic-editor/assets/screenshot-5.png?rev=1998671", "caption": "Link to switch to the classic editor while editing a post in the block editor. Visible when the users are allowed to switch editors."}, "6": {"src": "https://ps.w.org/classic-editor/assets/screenshot-6.png?rev=1998671", "caption": "Network settings to select the default editor for the network and allow site admins to change it."}, "7": {"src": "https://ps.w.org/classic-editor/assets/screenshot-7.png?rev=2023480", "caption": "The \"Switch to classic editor\" link."}}, "support_url": "https://wordpress.org/support/plugin/classic-editor/", "contributors": {"pento": {"avatar": "https://secure.gravatar.com/avatar/e522019adbe7cb4145f9e01c344c036baaa8bf76cd5d76e6b737b60be9af88cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pento/", "display_name": "Gary Pendergast"}, "azaozz": {"avatar": "https://secure.gravatar.com/avatar/73c1045212929211deda7262005831319397c68d340a8c41d53633b3f7e7f129?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/azaozz/", "display_name": "Andrew Ozz"}, "desrosj": {"avatar": "https://secure.gravatar.com/avatar/18f4f7ebdcd48383951a52a88f401bd6460ae74b626016010b1f0604cac90826?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/desrosj/", "display_name": "Jonathan Desrosiers"}, "melchoyce": {"avatar": "https://secure.gravatar.com/avatar/5437f5b6124c08e8d9ab5f8a4b6a97cf3f6966aee694ef98417db8bdcc13b937?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/melchoyce/", "display_name": "Mel Choyce-Dwan"}, "alexislloyd": {"avatar": "https://secure.gravatar.com/avatar/775894c99a8fbeea86f893222b51abf0fe6da4a938b20eb1e608d4d0958fe816?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alexislloyd/", "display_name": "Alexis Lloyd"}, "youknowriad": {"avatar": "https://secure.gravatar.com/avatar/4358d28c1e85f9015cb3363e024e2b238bccb44d05c4b84e9a38aafef0d83ac9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/youknowriad/", "display_name": "Riad Benguella"}, "chanthaboune": {"avatar": "https://secure.gravatar.com/avatar/b98cc60e2f12d4573ab0dca7442b45137144bac0ffb28dac83fe6a72bd6ba007?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/chanthaboune/", "display_name": "Josepha"}, "luciano-croce": {"avatar": "https://secure.gravatar.com/avatar/eb8304a2f2a2560b6e404cd343dbcd73ec3ebd3ec44d8538bbedf6cc5a8f8572?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/luciano-croce/", "display_name": "luciano-croce"}, "ironprogrammer": {"avatar": "https://secure.gravatar.com/avatar/24b68e30c5aca1c18ea836405ba1d723ab26ee96ef0ebf83a0c2d212d8cd58d9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ironprogrammer/", "display_name": "Brian Alexander"}, "wordpressdotorg": {"avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "display_name": "WordPress.org"}}, "last_updated": "2024-12-03 9:03pm GMT", "preview_link": "https://wordpress.org/plugins/classic-editor/?preview=1", "requires_php": "5.2.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip", "author_profile": "https://profiles.wordpress.org/wordpressdotorg/", "business_model": "community", "repository_url": "https://github.com/wordpress/classic-editor", "upgrade_notice": [], "active_installs": 9000000, "aspiresync_meta": {"id": "019a30bf-f0b4-7378-8065-0814bfb93332", "name": "Classic Editor", "slug": "classic-editor", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1733259780, "version": "1.6.7"}, "support_threads": 5, "requires_plugins": [], "short_description": "Enables the previous "classic" editor and the old-style Edit Post screen with TinyMCE, Meta Boxes, etc. Supports all plugins that extend this screen.", "author_block_count": "1", "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-6431-7282-847e-a858b814778b', 'click-to-chat-for-whatsapp', 'Click to Chat – HoliThemes', 'WhatsApp Chat🔥. Let's make your Web page visitors contact you through 'WhatsApp', 'WhatsApp Business'. Add matching Widget✅', '

    WhatsApp Chat. Let’s make your Web page visitors contact you through “WhatsApp” or “WhatsApp Business” with a single click (WhatsApp Chat, Group).

    -

    Demo | Documentation | Support | PRO

    -

    WhatsApp Chat

    -

    Add ‘WhatsApp’ or ‘WhatsApp Business’ Number and let your website visitors contact you with a single click.

    -

    📱 Mobile: Open the WhatsApp Mobile App for a seamless connection.

    -

    💻 Desktop: Direct visitors to the WhatsApp Desktop App or Web WhatsApp page (web.whatsapp.com)

    -

    -

    💎 Styles

    -

    Select a style that complements the design of your website.

    -
      -
    • 8 pre-defined customizable styles/designs
    • -
    • Add your own Image/GIF
    • -
    • Custom Element/Design (convert any element to a WhatsApp Chat element)
    • -
    • Shortcodes (Add WhatsApp button/icon with inline the content)
    • -
    • Different Styles, Positions for Mobile, Desktop
    • -
    • Choose a style and customize it to match the website’s design
    • -
    -

    list of Styles | 🎨Customize Styles

    -

    💡 Add Own Image

    -

    Instead of selecting a pre-defined style, add any Image/Animated-image/GIF.

    -

    🌈 Custom Element

    -

    Convert any Element as a WhatsApp Chat Element by adding

    -
      -
    • Class/ID name: ‘ctc_chat’ (or)
    • -
    • Href/link: ‘#ctc_chat’
    • -
    -

    The custom design element will navigate to WhatsApp based on plugin settings (WhatsApp Number, pre-filled message, Analytics, …. ).
    -(e.g. menu item, button, image, link – just add ctc_chat as a class name)

    -

    Custom Element

    -

    🎉 Greetings Dialog

    -

    Add customizable greeting dialogs for boosting user attention and increasing interaction. Seamlessly integrate these greetings into your website for better engagement.

    -
      -
    • Greetings-1 – Customizable Design: Personalize the design to match your branding with full control over fonts, colors, images, and more.
    • -
    • Greetings-2 – Content Specific: Deliver focused messages that resonate effectively with your users.
    • -
    -

    📝 Form Filling

    -

    Get the necessary information from the website visitors before initiating the chat.

    -
      -
    • Get an email notification when the user fills out the form.
    • -
    • Call a webhook with the form data to integrate with other applications. Using integrations tools add data in Google Sheet, CRM and many more applications.
    • -
    • Form data can be prefilled in the WhatsApp chat window.
    • -
    -

    PRO: Greetings-Form

    -

    👥 Multi-Agent

    -

    Add multiple WhatsApp chat accounts within a single Greetings dialog.

    -
      -
    • We can set different time ranges for each agent. (24×7 or multiple time ranges for each day of the week).
    • -
    • Offline Agents -
        -
      • Chat when offline (display agent with next available time).
      • -
      • Disable chat (display agent with next available time).
      • -
      • Hide offline agents
      • -
      -
    • -
    -

    PRO: Multi-Agent

    -

    ⌛ Greetings Actions

    -
      -
    • Click Action: Displays greeting dialog when a user clicks on any element with the class name: ‘ctc_greetings’.
    • -
    • ViewPort Action: Displays Greetings When an element is in/reached viewport(25% margin) with the Class name: ‘ctc_greetings_now’ [PRO]
    • -
    • Time, Scroll Actions: Display Greetings based on time, scroll [PRO]
    • -
    -

    These actions enhance user interaction by triggering greetings at the right moments, improving engagement and support efficiency.

    -

    Actions

    -

    🔴 Notification Badge

    -

    Get user attention by displaying a notification badge on the WhatsApp Chat element.

    -

    Customize the notification badge with the notification count, text color, background color, border color, and time delay to display the notification badge.

    -

    Notification Badge

    -

    ✳️ Position to Place

    -
      -
    • Add WhatsApp at any position of the screen
      -(not limited to fixed positions).
    • -
    • Different positions for Mobile and Desktop.
    • -
    -

    ⏩ Pre-filled Message

    -

    Text that appears in the WhatsApp chat window when the user clicks on the WhatsApp.

    -

    Users can easily start the conversation.

    -

    Variables to change values dynamically

    -
      -
    • {site} -> Website Title
    • -
    • {title} -> Page Title
    • -
    • {url} -> Web page URL
    • -
    • [url] -> Web page full URL including query parameters
    • -
    -

    With these variables, we can understand from which page the user started WhatsApp chat.

    -

    Pre-filled Message

    -

    🛍️ WooCommerce

    -

    WooCommerce product pages

    -

    For WooCommerce, single product pages can overwrite the main setings to add a product specific message using dynamic variables.

    -
      -
    • Pre-filled Message
    • -
    • Call to Action
    • -
    • Greetings Template, Content [PRO]
    • -
    -

    Additional variables, specific to WooCommerce single product page to change values dynamically

    -
      -
    • {product} -> Product Name
    • -
    • {price} -> Product Price (current price)
    • -
    • {regular_price} -> Regular product price (without any sale)
    • -
    • {sku} -> Stock keeping unit
    • -
    -

    For Shop, Cart, Checkout, and Account pages we can overwrite at page level settings

    -

    Add WhatsApp – Single Product Pages

    -

    Add WhatsApp button or icon at WooCommerce single product pages.

    -
      -
    • Before Main Content
    • -
    • Before Product
    • -
    • Before Product Summary
    • -
    • Product Summary
    • -
    • Before Add to Cart Form
    • -
    • Before Cart Button
    • -
    • After Cart Button
    • -
    • After Add to Cart Form
    • -
    • After Product
    • -
    • After product summary
    • -
    -

    We can add dynamic variables for the Call to Action.
    -E.g. Buy {product}
    -{product} will be replaced with the product name for all product pages.

    -

    Add WhatsApp Icon/Button in WooCommerce Product pages

    -

    Add WhatsApp – Shop Page

    -

    Add WhatsApp to WooCommerce Products list (shop page, related products list)

    -

    Shop page

    -

    📒 Page Level Settings

    -

    At the page level, we can overwrite the settings for each post. We can add a different Whatsapp Number, Prefilled Message, Call to Action for each post
    -(while editing the post, in the right sidebar ‘Click to Chat’ meta box)

    -
      -
    • WhatsApp Number
    • -
    • Call to Action
    • -
    • Pre-filled Message
    • -
    • Display Settings
    • -
    -

    PRO:

    -
      -
    • Change Styles
    • -
    • Time Delay
    • -
    • Scroll Delay
    • -
    • Greetings Template
    • -
    • Greetings Header, Main, Bottom Content
    • -
    -

    Page-level settings

    -

    📈 Analytics

    -

    Creates an Event when the user clicks on the WhatsApp Icon/button.

    -

    Google Analytics

    -

    Meta Pixel

    -

    Google Ads Conversations

    -

    Webhooks

    -

    Connect other applications using Integrate, Automation tools like Zapier, IFTTT, Pipedream, etc.

    -

    Webhooks

    -

    ⭐ PRO

    -
      -
    • Multi-Agent: Displays multiple WhatsApp chat accounts -
        -
      • Set multiple time ranges for each agent’s availability
      • -
      • Hide offline agents or display agent when offline with next available time
      • -
      -
    • -
    • Random Numbers: Navigates to a random WhatsApp number from the predefined list
    • -
    • Form: Get the necessary information from the website visitors, before initiating the chat -
        -
      • Get an email notification when the user fills out the form.
      • -
      • Use webhooks to send form data to external apps in real-time for seamless integration.
      • -
      • Prefill WhatsApp messages with user-provided form data to streamline conversations
      • -
      -
    • -
    • Business hours: Offline/Online Settings -
        -
      • Set business hours for a specific time range within a day, specific days in a week.
      • -
      • Hide the widget during offline hours or automatically change the WhatsApp numbers and call to action.
      • -
      -
    • -
    • Display based on website visitor’s country
    • -
    • Webhooks – Dynamic variables -
        -
      • {url} – Current page URL.
      • -
      • {time} – Time user interacted with the WhatsApp Button/Icon.
      • -
      • {number} – WhatsApp Number associated with the icon/button.
      • -
      • Get values from url parameters by adding name with in single square brackets E.g. [gclid], [utm_source]
      • -
      • Get values from cookies by adding the name with in double square brackets. E.g. [[cookie_name]]
      • -
      -
    • -
    • Get additional values at Google Analytics, Meta Pixel -
        -
      • Get values from url parameters. E.g. [gclid], [utm_source]
      • -
      • Get values from cookies. E.g. [[cookie_name]]
      • -
      -
    • -
    • Greetings Actions: (for all greeting dialogs: Greetings-1, Greetings-2, Form, Multi-agent) -
        -
      • Display greetings dynamically based on user actions such as -
          -
        • Time: Time spent on the page,
        • -
        • Scroll: Page scroll percentage,
        • -
        • Click: specific button clicks
        • -
        • ViewPort: when an element becomes visible in the viewport.
        • -
        -
      • -
      -
    • -
    • Position to place -
        -
      • Fixed: Fixed position on the screen (default position)
      • -
      • Absolute: Fixed position to the body content. (Moves when the user scrolls the page)
      • -
      -
    • -
    • Time Delay & Scroll Delay: Display WhatsApp widget after a specified time delay or once the user scrolls a certain percentage of the page.
    • -
    • Display based on Website visitor’s login status
    • -
    • Page-level settings: Fine-tune WhatsApp button behavior for individual pages. Change styles, time delays, scroll delay, Greetings Template, and Greetings Content
    • -
    • WooCommerce: Customize WhatsApp widget behavior specifically for WooCommerce pages -
        -
      • Overwrite greetings template, Content for Single product pages.
      • -
      • Overwrite settings for Shop, Checkout, and Account pages at page-level settings
      • -
      -
    • -
    -

    🔆 PRO

    -

    🎯 Localization

    -

    Click to Chat is Compatible with translation plugins. WPML, Polylang.

    -

    It is easy to set up different values for each language

    -
      -
    • WhatsApp Number
    • -
    • Call to Action
    • -
    • Pre-filled Message
    • -
    • Greetings Content
    • -
    • Group ID
    • -
    • Share Text
    • -
    -

    Setup for WPML, Polylang

    -

    🚀 Performance

    -
      -
    • Rich in features, but the site’s front end is very lightweight.
    • -
    -

    We highly concentrate on speed and performance.

    -

    👓 Display Settings

    -

    Customize the visibility of the widget by showing or hiding styles based on specific settings, such as:

    -
      -
    • Post type
    • -
    • Post Id
    • -
    • Category name
    • -
    • Device Type(Mobile, Desktop)
    • -
    • WooCommerce single product pages
    • -
    -

    PRO:

    -
      -
    • Time delay
    • -
    • Scroll delay
    • -
    • Selected time range in a day
    • -
    • Selected Days in a week
    • -
    • Website visitor login status
    • -
    • Website visitor country
    • -
    -

    ✅ Opt-in

    -

    Make the website users opt-in / accept consent before initiating the chat.

    -

    Opt-in

    -

    ⛳ Shortcodes

    -

    Use shortcodes to instead a WhatsApp icon or button with inline the Post content, widget area.

    -

    change the default setting values using shortcode attributes – WhatsApp Number, Style, Pre-filled message, Call to Action.

    -

    Chat Shortcodes

    -

    [ht-ctc-chat]

    -

    To change the WhatsApp number use the ‘number’ attribute

    -

    [ht-ctc-chat number=915123456789]

    -

    Shortcodes for Chat

    -

    Group

    -

    Enable the Group chat feature and add WhatsApp Group id in the plugin settings.

    -

    Make it easy for your customers to join Whatsapp Group.

    -

    Group

    -

    Share

    -

    Let users share your website with their WhatsApp contacts and get more leads.

    -

    Share

    -

    🌏 Help Translate The Plugin

    -

    Help by Translating the plugin to be available in more languages

    -', '4.30', 'holithemes', '4.7', '5.6', '6.8.3', 'https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.30.zip', '2017-10-23 00:00:00+00', '2025-10-29 13:38:00+00', 'https://profiles.wordpress.org/holithemes/', 96, 132, 5, 4, 600000, 17594938, 'https://wordpress.org/plugins/click-to-chat-for-whatsapp/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/click-to-chat-for-whatsapp/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Click to Chat – HoliThemes", "slug": "click-to-chat-for-whatsapp", "tags": {"whatsapp": "whatsapp", "click-to-chat": "click to chat", "whatsapp-chat": "whatsapp chat", "whatsapp-business": "whatsapp business", "woocommerce-whatsapp": "woocommerce whatsapp"}, "added": "2017-10-23", "icons": {"1x": "https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-128x128.gif?rev=2892731", "2x": "https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-256x256.gif?rev=2892731"}, "author": "holithemes", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/click-to-chat-for-whatsapp/assets/banner-772x250.png?rev=2896528", "high": false}, "ratings": {"1": 3, "2": 2, "3": 2, "4": 2, "5": 123}, "version": "4.30", "homepage": "https://wordpress.org/plugins/click-to-chat-for-whatsapp/", "requires": "4.7", "sections": {"faq": "\n
    \nWhatsApp Number\n\n

    \n

    Enter the WhatsApp number with country code

    \n

    E.g.
    \ncountry code +1
    \nnumber: 6123456789
    \n** WhatsApp number: 16123456789 **

    \n

    (WhatsApp Number)[https://holithemes.com/plugins/click-to-chat/whatsapp-number/]

    \n

    \n
    \nPre-filled Message\n\n

    \n

    Text that appears in the WhatsApp chat window when the user clicks on the WhatsApp.

    \n

    Add variables to change values dynamically

    \n
    {url} -> Web page URL\n{title} -> Page Title\n{site} -> Website Title\n
    \n

    E.g.

    \n
    Hi {site}!!\nI like to know more information about this {title}, {url}.\n
    \n

    Variables for WooCommerce single product pages

    \n
    {product} -> Product Name\n{price} -> Product Price (current price might be the sale price/regular price)\n{regular_price} -> Regular product price (with out any sale)\n{sku} ->Stock keeping unit\n
    \n

    E.g.

    \n
    Hi {site}!!\nName: \nI like to buy this {product}, {url}\n
    \n

    With this prefilled text, we can know from which page the user started the conversation, the purpose of the contact, and their details

    \n

    Pre-filled Message
    \nPre-filled Message for WooCommerce

    \n

    \n
    \nSelect Styles\n\n

    \n

    Select Styles/widget that matches the design
    \n* customize the style to match the website design.
    \n* Add your own Image/GIF
    \n* Custom Element/Design (convert any element to a WhatsApp Chat element)
    \n* Select differnt Styles for mobile, desktop to match the website design.

    \n

    \n
    \nPosition to place the styles\n\n

    \n

    Add Styles at any position of the screen (not just fixed to selected positions).

    \n

    Position to place settings

    \n

    E.g.

    \n
    \n

    bottom-right corner:
    \n bottom: 10px
    \n right: 10px

    \n

    Center of the Screen (bottom-center)
    \n bottom: 10px
    \n right: 50%

    \n

    Center of the Screen (left-center)
    \n bottom: 50%
    \n right: 10px

    \n
    \n

    Plugin supports all CSS units as the suffix. (px, %, rem,…)

    \n

    position to place

    \n

    \n
    \nGDPR\n\n

    \n

    “Click to Chat” don’t collect any of the user data and don’t use cookies.

    \n

    User consent before starting the chat.

    \n

    Opt-in

    \n

    \n
    \nDisplay only on selected countries\n\n

    \n

    Display based on country

    \n

    \n
    \nShow/Hide on Selected pages/devices\n\n

    \n

    Show only on selected pages

    \n

    Hide only on selected pages

    \n

    Show/Hide on Mobile/Desktop

    \n

    \n
    \nLocalization: Change number, content for each language / page\n\n

    \n

    We can change values for each language if using WPML, Polylang for translation.

    \n

    Multilingual

    \n

    From WPML / Polylang Settings -> ‘String Translations’ and filter strings to ‘Click to chat for WhatsApp’ and change value based on language.

    \n
      \n
    • User Input (Plugin Settings values): – ‘Click to chat for WhatsApp’
    • \n
    • Admin strings (Plugin Settings) – text domain: ‘click-to-chat-for-whatsapp’
    • \n
    \n

    Page-level settings

    \n

    \n
    \nWhatsApp Group Invite/chat\n\n

    \n

    Enable Group Feature Add WhatsApp group id at plugin settings page. and let user join in WhatsApp Group.

    \n

    \n
    \nWhatsApp Share\n\n

    \n

    Enable Share feature and let users share your website easily.

    \n

    Add variables to change values dynamically
    \n {url} -> Web page URL
    \n {title} -> Page Title
    \n {site} -> Website Title

    \n

    Share Text – E.g.

    \n
    \n

    Checkout this Awesome page {title}, {url}

    \n
    \n

    \n
    \nAMP Compatibility\n\n

    \n

    Click to Chat is Compatible with (AMP)[https://wordpress.org/plugins/amp/] plugin. AMP won’t load plugins JavaScript files so limited functionality available.

    \n

    \n
    \n🔧 Basic Troubleshooting\n\n

    \n

      \n
    • Clear cache\n
        \n
      • from Cache plugins
      • \n
      • Server side cache (some hosting providers adds cache functionality by default)
      • \n
      • CDN cache (Cache invalidation)
      • \n
      \n
    • \n
    • Check Display settings
    • \n
    • (page level settings)[https://holithemes.com/plugins/click-to-chat/change-values-at-page-level/]
    • \n
    \n

    ✍️ For any queries, please contact us.

    \n

    \n
    \n❤️ Support / Contact\n\n

    \n

    For any issues with the plugin / suggestions:

    \n\n

    \n
    \n⭐️ Give Support\n\n

    \n

    If you like the plugin, support the developers by giving 5 star rating

    \n

    Thank you so much in advance from “Click to Chat” Team

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin – Easy and Effective!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy steffbd on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Click to Chat is super easy to set up and works flawlessly. It makes it simple for my customers to contact me directly via WhatsApp, which has improved my support and response times. Highly recommended for anyone who wants to connect with their website visitors quickly!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very nice the plugin Click to Chat

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy arthurflantan on July 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very nice Click to Chat

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin and support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy redfieldcf on May 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin is brilliant. It allows you to have whatsapp on the web in a simple, visual and beautiful way. The technical support is incredible, I recommend it 100%.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Site hacked

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anthonyaxford on March 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Website hacked, tested over the weekend and as soon as we turn the plugin on hacked again showing some Indonesia lotto website, disabled all plugins left the site for 2 days it stayed on, turned click to chat back on first site down, it only started after i updated to 4.19 please fix this

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The latest version of the plugin is causing WordPress to crash.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aversus on January 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello, when I update the plugin to the latest version, WordPress crashes and a virus infects the site. I restored my WordPress from a backup once and waited a week without updating the plugin, updating other plugins without any issues. Today, I updated this plugin again, and the result was the same: the website crashed again, and I had to restore it from yesterday''s backup. I kindly request the plugin to be checked. I am almost certain that the issue is caused by the WhatsApp plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Problem with the phone number displayed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cleophasoj on July 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin displays a phone number I used a few months ago despite updating it to a new WhatsApp number. I have tried clearing the cache on both of my devices and for WordPress.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It's good.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Khurram Shafique Mir (mirkhurram) on April 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    it''s good for me, I have used and then will again come back to new and updated to my reviewed at this site again.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazing Plug-in and Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy funkyt on October 23, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Super clean look and easy to use plug-in, with great customization options.

    \n\n\n\n

    The tech support was SIMPLY AMAZING. I wanted the floating button to trigger a ''Lead'' event in FB Pixel, so I started a WhatsApp chat with the developers and asked them about this feature. They were super polite and informed me that they are looking into adding this feature in their future update by end of next month, and they THANKED ME for my suggestion.

    \n\n\n\n

    I asked them if I could implement the Lead event myself in the meantime, and they provided javascript code snippet which I added to my header and it instantly worked! Amazing!

    \n\n\n\n

    Thank you HoliThemes for such an amazing plug-in and even more amazing & prompt tech support!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best WordPress plugin ever.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Salih Gül (sarish2020) on August 29, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The most useful plugin for me in WordPress \" Click to Chat - HoliThemes\"

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support given in 5 min through WhatsApp chat

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy babu98765 on June 16, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We got on time support in 5 min through WhatsApp.

    \n\n\n\n

    They took responsibility of things and guided correctly.

    \n\n\n\n

    Thank you very much.

    \n
    \n
    \n", "changelog": "

    4.30

    \n
      \n
    • Enchancement: Google Analytics feature.
    • \n
    \n

    4.29

    \n
      \n
    • Settings to load JavaScript files as Normal, Async, or Defer for improved performance.
    • \n
    \n

    4.28

    \n
      \n
    • Fix: The Custom Element feature now works correctly even when the ‘ctc_chat’ class is added dynamically.
    • \n
    \n

    4.27

    \n
      \n
    • app.js file now loads asynchronously and deferred to improve page load performance.
    • \n
    \n

    4.26

    \n
      \n
    • Custom URL feature is now available in this main plugin. We can add WhatsApp Chanel URL in the plugin settings to open WhatsApp Channel.
    • \n
    • Enhancement: Page level settings design.
    • \n
    \n

    4.25

    \n
      \n
    • Fix: Greeting dialog modal not displaying correctly due to z-index issues when certain background elements were present.
    • \n
    \n

    4.24

    \n
      \n
    • Fixed: Page-level settings now work correctly on the WooCommerce Shop page.
    • \n
    • Improved: Better visual styling for the base widget.
    • \n
    \n

    4.23

    \n

    🚨 Important Update
    \n* ✨ New Feature: Greetings Dialog can now appear as a modal for better visibility and UX.
    \n* 🛠️ Fix: Resolved an issue where the Greetings Dialog was not displaying correctly when the base widget was positioned at the top.
    \n* 🛠️ Fix: On iPhone Chrome, the Share feature now opens WhatsApp correctly without opening a new tab.
    \n* 🔧 Improvement: When a WhatsApp number is not set, the admin notice is now displayed using a more reliable and secure method — instead of using JS .html().

    \n

    4.22

    \n
      \n
    • The Custom Image widget now automatically uses the image file name as the alt attribute
    • \n
    • Settings to disable page-level settings.
    • \n
    \n

    4.21

    \n
      \n
    • Fix: Resolved issue where phone numbers with +1888 prefix were not being saved in settings.
    • \n
    \n

    4.20

    \n
      \n
    • New: Added {{price}} variable for WooCommerce product pages to display price with currency symbol, thousand separator, and decimal separator.
    • \n
    • Fix: Resolved conflict with some themes caused by animation class name.
    • \n
    \n

    4.19

    \n
      \n
    • Fix: PHP Error. Thanks, Malae, for reporting it!
    • \n
    \n

    4.18

    \n
      \n
    • Fix: Resolved an issue where the Style-5 profile image was displaying above the greetings dialog on mobile devices.
    • \n
    • Fix: Corrected the border alignment in Style-5.
    • \n
    • Enhancement: Admin Demo for better usability
    • \n
    \n

    4.17

    \n
      \n
    • Fix: Display Widget as an Add to Cart like button is not working on the WooCommerce single product page, Archive list.
    • \n
    \n

    4.16

    \n
      \n
    • Added ‘Alt’ attribute value for greetings header image
    • \n
    • Fix: Style-7, Style-7 Extend hover effects not working.
    • \n
    \n

    4.15

    \n
      \n
    • Fix: Page-level settings not working properly.
    • \n
    • Fix: Alignment issues at admin setting pages
    • \n
    \n

    4.14

    \n
      \n
    • Enhancement: Show or hide the admin demo.
    • \n
    \n

    4.13

    \n
      \n
    • Fix: Alignment issues at admin setting pages
    • \n
    \n

    4.12.1

    \n
      \n
    • Fix: Hover effects for Style-7 Extend
    • \n
    • Fix: Dual lines issue for Style-8 with large call to action text
    • \n
    \n

    4.12

    \n
      \n
    • Fix: Custom CSS Code block not allowing quotes at front end
    • \n
    \n

    4.11

    \n
      \n
    • New: Custom CSS Code block.
    • \n
    \n

    4.10

    \n
      \n
    • Fix: Page level display settings for WooCommerce single product page
    • \n
    \n

    4.9

    \n
      \n
    • Fix: Display based on device not working as expected on iPad Pro
    • \n
    \n

    Changelog

    \n", "description": "

    WhatsApp Chat. Let’s make your Web page visitors contact you through “WhatsApp” or “WhatsApp Business” with a single click (WhatsApp Chat, Group).

    \n

    Demo | Documentation | Support | PRO

    \n

    WhatsApp Chat

    \n

    Add ‘WhatsApp’ or ‘WhatsApp Business’ Number and let your website visitors contact you with a single click.

    \n

    📱 Mobile: Open the WhatsApp Mobile App for a seamless connection.

    \n

    💻 Desktop: Direct visitors to the WhatsApp Desktop App or Web WhatsApp page (web.whatsapp.com)

    \n

    \n

    💎 Styles

    \n

    Select a style that complements the design of your website.

    \n
      \n
    • 8 pre-defined customizable styles/designs
    • \n
    • Add your own Image/GIF
    • \n
    • Custom Element/Design (convert any element to a WhatsApp Chat element)
    • \n
    • Shortcodes (Add WhatsApp button/icon with inline the content)
    • \n
    • Different Styles, Positions for Mobile, Desktop
    • \n
    • Choose a style and customize it to match the website’s design
    • \n
    \n

    list of Styles | 🎨Customize Styles

    \n

    💡 Add Own Image

    \n

    Instead of selecting a pre-defined style, add any Image/Animated-image/GIF.

    \n

    🌈 Custom Element

    \n

    Convert any Element as a WhatsApp Chat Element by adding

    \n
      \n
    • Class/ID name: ‘ctc_chat’ (or)
    • \n
    • Href/link: ‘#ctc_chat’
    • \n
    \n

    The custom design element will navigate to WhatsApp based on plugin settings (WhatsApp Number, pre-filled message, Analytics, …. ).
    \n(e.g. menu item, button, image, link – just add ctc_chat as a class name)

    \n

    Custom Element

    \n

    🎉 Greetings Dialog

    \n

    Add customizable greeting dialogs for boosting user attention and increasing interaction. Seamlessly integrate these greetings into your website for better engagement.

    \n
      \n
    • Greetings-1 – Customizable Design: Personalize the design to match your branding with full control over fonts, colors, images, and more.
    • \n
    • Greetings-2 – Content Specific: Deliver focused messages that resonate effectively with your users.
    • \n
    \n

    📝 Form Filling

    \n

    Get the necessary information from the website visitors before initiating the chat.

    \n
      \n
    • Get an email notification when the user fills out the form.
    • \n
    • Call a webhook with the form data to integrate with other applications. Using integrations tools add data in Google Sheet, CRM and many more applications.
    • \n
    • Form data can be prefilled in the WhatsApp chat window.
    • \n
    \n

    PRO: Greetings-Form

    \n

    👥 Multi-Agent

    \n

    Add multiple WhatsApp chat accounts within a single Greetings dialog.

    \n
      \n
    • We can set different time ranges for each agent. (24×7 or multiple time ranges for each day of the week).
    • \n
    • Offline Agents\n
        \n
      • Chat when offline (display agent with next available time).
      • \n
      • Disable chat (display agent with next available time).
      • \n
      • Hide offline agents
      • \n
      \n
    • \n
    \n

    PRO: Multi-Agent

    \n

    ⌛ Greetings Actions

    \n
      \n
    • Click Action: Displays greeting dialog when a user clicks on any element with the class name: ‘ctc_greetings’.
    • \n
    • ViewPort Action: Displays Greetings When an element is in/reached viewport(25% margin) with the Class name: ‘ctc_greetings_now’ [PRO]
    • \n
    • Time, Scroll Actions: Display Greetings based on time, scroll [PRO]
    • \n
    \n

    These actions enhance user interaction by triggering greetings at the right moments, improving engagement and support efficiency.

    \n

    Actions

    \n

    🔴 Notification Badge

    \n

    Get user attention by displaying a notification badge on the WhatsApp Chat element.

    \n

    Customize the notification badge with the notification count, text color, background color, border color, and time delay to display the notification badge.

    \n

    Notification Badge

    \n

    ✳️ Position to Place

    \n
      \n
    • Add WhatsApp at any position of the screen
      \n(not limited to fixed positions).
    • \n
    • Different positions for Mobile and Desktop.
    • \n
    \n

    ⏩ Pre-filled Message

    \n

    Text that appears in the WhatsApp chat window when the user clicks on the WhatsApp.

    \n

    Users can easily start the conversation.

    \n

    Variables to change values dynamically

    \n
      \n
    • {site} -> Website Title
    • \n
    • {title} -> Page Title
    • \n
    • {url} -> Web page URL
    • \n
    • [url] -> Web page full URL including query parameters
    • \n
    \n

    With these variables, we can understand from which page the user started WhatsApp chat.

    \n

    Pre-filled Message

    \n

    🛍️ WooCommerce

    \n

    WooCommerce product pages

    \n

    For WooCommerce, single product pages can overwrite the main setings to add a product specific message using dynamic variables.

    \n
      \n
    • Pre-filled Message
    • \n
    • Call to Action
    • \n
    • Greetings Template, Content [PRO]
    • \n
    \n

    Additional variables, specific to WooCommerce single product page to change values dynamically

    \n
      \n
    • {product} -> Product Name
    • \n
    • {price} -> Product Price (current price)
    • \n
    • {regular_price} -> Regular product price (without any sale)
    • \n
    • {sku} -> Stock keeping unit
    • \n
    \n

    For Shop, Cart, Checkout, and Account pages we can overwrite at page level settings

    \n

    Add WhatsApp – Single Product Pages

    \n

    Add WhatsApp button or icon at WooCommerce single product pages.

    \n
      \n
    • Before Main Content
    • \n
    • Before Product
    • \n
    • Before Product Summary
    • \n
    • Product Summary
    • \n
    • Before Add to Cart Form
    • \n
    • Before Cart Button
    • \n
    • After Cart Button
    • \n
    • After Add to Cart Form
    • \n
    • After Product
    • \n
    • After product summary
    • \n
    \n

    We can add dynamic variables for the Call to Action.
    \nE.g. Buy {product}
    \n{product} will be replaced with the product name for all product pages.

    \n

    Add WhatsApp Icon/Button in WooCommerce Product pages

    \n

    Add WhatsApp – Shop Page

    \n

    Add WhatsApp to WooCommerce Products list (shop page, related products list)

    \n

    Shop page

    \n

    📒 Page Level Settings

    \n

    At the page level, we can overwrite the settings for each post. We can add a different Whatsapp Number, Prefilled Message, Call to Action for each post
    \n(while editing the post, in the right sidebar ‘Click to Chat’ meta box)

    \n
      \n
    • WhatsApp Number
    • \n
    • Call to Action
    • \n
    • Pre-filled Message
    • \n
    • Display Settings
    • \n
    \n

    PRO:

    \n
      \n
    • Change Styles
    • \n
    • Time Delay
    • \n
    • Scroll Delay
    • \n
    • Greetings Template
    • \n
    • Greetings Header, Main, Bottom Content
    • \n
    \n

    Page-level settings

    \n

    📈 Analytics

    \n

    Creates an Event when the user clicks on the WhatsApp Icon/button.

    \n

    Google Analytics

    \n

    Meta Pixel

    \n

    Google Ads Conversations

    \n

    Webhooks

    \n

    Connect other applications using Integrate, Automation tools like Zapier, IFTTT, Pipedream, etc.

    \n

    Webhooks

    \n

    ⭐ PRO

    \n
      \n
    • Multi-Agent: Displays multiple WhatsApp chat accounts\n
        \n
      • Set multiple time ranges for each agent’s availability
      • \n
      • Hide offline agents or display agent when offline with next available time
      • \n
      \n
    • \n
    • Random Numbers: Navigates to a random WhatsApp number from the predefined list
    • \n
    • Form: Get the necessary information from the website visitors, before initiating the chat\n
        \n
      • Get an email notification when the user fills out the form.
      • \n
      • Use webhooks to send form data to external apps in real-time for seamless integration.
      • \n
      • Prefill WhatsApp messages with user-provided form data to streamline conversations
      • \n
      \n
    • \n
    • Business hours: Offline/Online Settings\n
        \n
      • Set business hours for a specific time range within a day, specific days in a week.
      • \n
      • Hide the widget during offline hours or automatically change the WhatsApp numbers and call to action.
      • \n
      \n
    • \n
    • Display based on website visitor’s country
    • \n
    • Webhooks – Dynamic variables\n
        \n
      • {url} – Current page URL.
      • \n
      • {time} – Time user interacted with the WhatsApp Button/Icon.
      • \n
      • {number} – WhatsApp Number associated with the icon/button.
      • \n
      • Get values from url parameters by adding name with in single square brackets E.g. [gclid], [utm_source]
      • \n
      • Get values from cookies by adding the name with in double square brackets. E.g. [[cookie_name]]
      • \n
      \n
    • \n
    • Get additional values at Google Analytics, Meta Pixel\n
        \n
      • Get values from url parameters. E.g. [gclid], [utm_source]
      • \n
      • Get values from cookies. E.g. [[cookie_name]]
      • \n
      \n
    • \n
    • Greetings Actions: (for all greeting dialogs: Greetings-1, Greetings-2, Form, Multi-agent)\n
        \n
      • Display greetings dynamically based on user actions such as\n
          \n
        • Time: Time spent on the page,
        • \n
        • Scroll: Page scroll percentage,
        • \n
        • Click: specific button clicks
        • \n
        • ViewPort: when an element becomes visible in the viewport.
        • \n
        \n
      • \n
      \n
    • \n
    • Position to place\n
        \n
      • Fixed: Fixed position on the screen (default position)
      • \n
      • Absolute: Fixed position to the body content. (Moves when the user scrolls the page)
      • \n
      \n
    • \n
    • Time Delay & Scroll Delay: Display WhatsApp widget after a specified time delay or once the user scrolls a certain percentage of the page.
    • \n
    • Display based on Website visitor’s login status
    • \n
    • Page-level settings: Fine-tune WhatsApp button behavior for individual pages. Change styles, time delays, scroll delay, Greetings Template, and Greetings Content
    • \n
    • WooCommerce: Customize WhatsApp widget behavior specifically for WooCommerce pages\n
        \n
      • Overwrite greetings template, Content for Single product pages.
      • \n
      • Overwrite settings for Shop, Checkout, and Account pages at page-level settings
      • \n
      \n
    • \n
    \n

    🔆 PRO

    \n

    🎯 Localization

    \n

    Click to Chat is Compatible with translation plugins. WPML, Polylang.

    \n

    It is easy to set up different values for each language

    \n
      \n
    • WhatsApp Number
    • \n
    • Call to Action
    • \n
    • Pre-filled Message
    • \n
    • Greetings Content
    • \n
    • Group ID
    • \n
    • Share Text
    • \n
    \n

    Setup for WPML, Polylang

    \n

    🚀 Performance

    \n
      \n
    • Rich in features, but the site’s front end is very lightweight.
    • \n
    \n

    We highly concentrate on speed and performance.

    \n

    👓 Display Settings

    \n

    Customize the visibility of the widget by showing or hiding styles based on specific settings, such as:

    \n
      \n
    • Post type
    • \n
    • Post Id
    • \n
    • Category name
    • \n
    • Device Type(Mobile, Desktop)
    • \n
    • WooCommerce single product pages
    • \n
    \n

    PRO:

    \n
      \n
    • Time delay
    • \n
    • Scroll delay
    • \n
    • Selected time range in a day
    • \n
    • Selected Days in a week
    • \n
    • Website visitor login status
    • \n
    • Website visitor country
    • \n
    \n

    ✅ Opt-in

    \n

    Make the website users opt-in / accept consent before initiating the chat.

    \n

    Opt-in

    \n

    ⛳ Shortcodes

    \n

    Use shortcodes to instead a WhatsApp icon or button with inline the Post content, widget area.

    \n

    change the default setting values using shortcode attributes – WhatsApp Number, Style, Pre-filled message, Call to Action.

    \n

    Chat Shortcodes

    \n

    [ht-ctc-chat]

    \n

    To change the WhatsApp number use the ‘number’ attribute

    \n

    [ht-ctc-chat number=915123456789]

    \n

    Shortcodes for Chat

    \n

    Group

    \n

    Enable the Group chat feature and add WhatsApp Group id in the plugin settings.

    \n

    Make it easy for your customers to join Whatsapp Group.

    \n

    Group

    \n

    Share

    \n

    Let users share your website with their WhatsApp contacts and get more leads.

    \n

    Share

    \n

    🌏 Help Translate The Plugin

    \n

    Help by Translating the plugin to be available in more languages

    \n", "screenshots": "
    1. \"8

      8 Styles, 1 Add your own image or GIF. Add at any position to the screen (Desktop, Mobile: can set different styles, positions)

    2. \"Select

      Select a style and customize it to match your website design.

    3. \"Chat

      Chat Settings - Enter WhatsApp Number, prefilled message, call to action, desktop: web view / desktop app view

    4. \"Style,

      Style, position to place (at any position of the screen) - Desktop, Mobile

    5. \"Add

      Add WhatsApp Menu item (Custom Element)

    6. \"Change

      Change Values at the page level: ''WhatsApp Number'', ''Call to action'', ''Group ID''

    7. \"Style

      Style - 5 - Image with content box

    8. \"Style

      Style - 8 - Materialize button

    9. \"Style

      Style - 99 - Add your own Image / GIF(Animated Image)

    10. \"Customize

      Customize Styles

    11. \"Enable

      Enable Group, Share Settings

    12. \"Group

      Group settings page

    13. \"Share

      Share settings page

    14. \"Display

      Display settings

    15. \"Webhooks\"

      Webhooks

    16. \"prefilled,

      prefilled, call to action for WooCommerce single product pages

    17. \"Animations\"

      Animations

    18. \"Analytics

      Analytics - Google Analytics, Meta Pixel, Google Ads Conversations

    ", "installation": "

    From Dashboard ( WordPress admin )

    \n
      \n
    • plugins -> Add New
    • \n
    • search for ‘click to chat’
    • \n
    • click on Install Now and then Activate.
    • \n
    \n

    using FTP or similar

    \n
      \n
    • Unzip “Click-to-Chat” file and
    • \n
    • Upload “Click-to-Chat” folder to the “/wp-content/plugins/” directory.
    • \n
    • Activate the plugin through the “Plugins” menu in WordPress.
    • \n
    \n"}, "versions": {"4.0": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.0.zip", "3.35": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.3.35.zip", "4.12": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.12.zip", "4.19": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.19.zip", "4.20": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.20.zip", "4.21": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.21.zip", "4.22": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.22.zip", "4.23": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.23.zip", "4.24": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.24.zip", "4.25": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.25.zip", "4.26": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.26.zip", "4.27": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.27.zip", "4.28": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.28.zip", "4.29": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.29.zip", "4.30": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.30.zip", "1.7.2": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.1.7.2.zip", "trunk": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.zip"}, "downloaded": 17594938, "description": "

    WhatsApp Chat. Let’s make your Web page visitors contact you through “WhatsApp” or “WhatsApp Business” with a single click (WhatsApp Chat, Group).

    \n

    Demo | Documentation | Support | PRO

    \n

    WhatsApp Chat

    \n

    Add ‘WhatsApp’ or ‘WhatsApp Business’ Number and let your website visitors contact you with a single click.

    \n

    📱 Mobile: Open the WhatsApp Mobile App for a seamless connection.

    \n

    💻 Desktop: Direct visitors to the WhatsApp Desktop App or Web WhatsApp page (web.whatsapp.com)

    \n

    \n

    💎 Styles

    \n

    Select a style that complements the design of your website.

    \n
      \n
    • 8 pre-defined customizable styles/designs
    • \n
    • Add your own Image/GIF
    • \n
    • Custom Element/Design (convert any element to a WhatsApp Chat element)
    • \n
    • Shortcodes (Add WhatsApp button/icon with inline the content)
    • \n
    • Different Styles, Positions for Mobile, Desktop
    • \n
    • Choose a style and customize it to match the website’s design
    • \n
    \n

    list of Styles | 🎨Customize Styles

    \n

    💡 Add Own Image

    \n

    Instead of selecting a pre-defined style, add any Image/Animated-image/GIF.

    \n

    🌈 Custom Element

    \n

    Convert any Element as a WhatsApp Chat Element by adding

    \n
      \n
    • Class/ID name: ‘ctc_chat’ (or)
    • \n
    • Href/link: ‘#ctc_chat’
    • \n
    \n

    The custom design element will navigate to WhatsApp based on plugin settings (WhatsApp Number, pre-filled message, Analytics, …. ).
    \n(e.g. menu item, button, image, link – just add ctc_chat as a class name)

    \n

    Custom Element

    \n

    🎉 Greetings Dialog

    \n

    Add customizable greeting dialogs for boosting user attention and increasing interaction. Seamlessly integrate these greetings into your website for better engagement.

    \n
      \n
    • Greetings-1 – Customizable Design: Personalize the design to match your branding with full control over fonts, colors, images, and more.
    • \n
    • Greetings-2 – Content Specific: Deliver focused messages that resonate effectively with your users.
    • \n
    \n

    📝 Form Filling

    \n

    Get the necessary information from the website visitors before initiating the chat.

    \n
      \n
    • Get an email notification when the user fills out the form.
    • \n
    • Call a webhook with the form data to integrate with other applications. Using integrations tools add data in Google Sheet, CRM and many more applications.
    • \n
    • Form data can be prefilled in the WhatsApp chat window.
    • \n
    \n

    PRO: Greetings-Form

    \n

    👥 Multi-Agent

    \n

    Add multiple WhatsApp chat accounts within a single Greetings dialog.

    \n
      \n
    • We can set different time ranges for each agent. (24×7 or multiple time ranges for each day of the week).
    • \n
    • Offline Agents\n
        \n
      • Chat when offline (display agent with next available time).
      • \n
      • Disable chat (display agent with next available time).
      • \n
      • Hide offline agents
      • \n
      \n
    • \n
    \n

    PRO: Multi-Agent

    \n

    ⌛ Greetings Actions

    \n
      \n
    • Click Action: Displays greeting dialog when a user clicks on any element with the class name: ‘ctc_greetings’.
    • \n
    • ViewPort Action: Displays Greetings When an element is in/reached viewport(25% margin) with the Class name: ‘ctc_greetings_now’ [PRO]
    • \n
    • Time, Scroll Actions: Display Greetings based on time, scroll [PRO]
    • \n
    \n

    These actions enhance user interaction by triggering greetings at the right moments, improving engagement and support efficiency.

    \n

    Actions

    \n

    🔴 Notification Badge

    \n

    Get user attention by displaying a notification badge on the WhatsApp Chat element.

    \n

    Customize the notification badge with the notification count, text color, background color, border color, and time delay to display the notification badge.

    \n

    Notification Badge

    \n

    ✳️ Position to Place

    \n
      \n
    • Add WhatsApp at any position of the screen
      \n(not limited to fixed positions).
    • \n
    • Different positions for Mobile and Desktop.
    • \n
    \n

    ⏩ Pre-filled Message

    \n

    Text that appears in the WhatsApp chat window when the user clicks on the WhatsApp.

    \n

    Users can easily start the conversation.

    \n

    Variables to change values dynamically

    \n
      \n
    • {site} -> Website Title
    • \n
    • {title} -> Page Title
    • \n
    • {url} -> Web page URL
    • \n
    • [url] -> Web page full URL including query parameters
    • \n
    \n

    With these variables, we can understand from which page the user started WhatsApp chat.

    \n

    Pre-filled Message

    \n

    🛍️ WooCommerce

    \n

    WooCommerce product pages

    \n

    For WooCommerce, single product pages can overwrite the main setings to add a product specific message using dynamic variables.

    \n
      \n
    • Pre-filled Message
    • \n
    • Call to Action
    • \n
    • Greetings Template, Content [PRO]
    • \n
    \n

    Additional variables, specific to WooCommerce single product page to change values dynamically

    \n
      \n
    • {product} -> Product Name
    • \n
    • {price} -> Product Price (current price)
    • \n
    • {regular_price} -> Regular product price (without any sale)
    • \n
    • {sku} -> Stock keeping unit
    • \n
    \n

    For Shop, Cart, Checkout, and Account pages we can overwrite at page level settings

    \n

    Add WhatsApp – Single Product Pages

    \n

    Add WhatsApp button or icon at WooCommerce single product pages.

    \n
      \n
    • Before Main Content
    • \n
    • Before Product
    • \n
    • Before Product Summary
    • \n
    • Product Summary
    • \n
    • Before Add to Cart Form
    • \n
    • Before Cart Button
    • \n
    • After Cart Button
    • \n
    • After Add to Cart Form
    • \n
    • After Product
    • \n
    • After product summary
    • \n
    \n

    We can add dynamic variables for the Call to Action.
    \nE.g. Buy {product}
    \n{product} will be replaced with the product name for all product pages.

    \n

    Add WhatsApp Icon/Button in WooCommerce Product pages

    \n

    Add WhatsApp – Shop Page

    \n

    Add WhatsApp to WooCommerce Products list (shop page, related products list)

    \n

    Shop page

    \n

    📒 Page Level Settings

    \n

    At the page level, we can overwrite the settings for each post. We can add a different Whatsapp Number, Prefilled Message, Call to Action for each post
    \n(while editing the post, in the right sidebar ‘Click to Chat’ meta box)

    \n
      \n
    • WhatsApp Number
    • \n
    • Call to Action
    • \n
    • Pre-filled Message
    • \n
    • Display Settings
    • \n
    \n

    PRO:

    \n
      \n
    • Change Styles
    • \n
    • Time Delay
    • \n
    • Scroll Delay
    • \n
    • Greetings Template
    • \n
    • Greetings Header, Main, Bottom Content
    • \n
    \n

    Page-level settings

    \n

    📈 Analytics

    \n

    Creates an Event when the user clicks on the WhatsApp Icon/button.

    \n

    Google Analytics

    \n

    Meta Pixel

    \n

    Google Ads Conversations

    \n

    Webhooks

    \n

    Connect other applications using Integrate, Automation tools like Zapier, IFTTT, Pipedream, etc.

    \n

    Webhooks

    \n

    ⭐ PRO

    \n
      \n
    • Multi-Agent: Displays multiple WhatsApp chat accounts\n
        \n
      • Set multiple time ranges for each agent’s availability
      • \n
      • Hide offline agents or display agent when offline with next available time
      • \n
      \n
    • \n
    • Random Numbers: Navigates to a random WhatsApp number from the predefined list
    • \n
    • Form: Get the necessary information from the website visitors, before initiating the chat\n
        \n
      • Get an email notification when the user fills out the form.
      • \n
      • Use webhooks to send form data to external apps in real-time for seamless integration.
      • \n
      • Prefill WhatsApp messages with user-provided form data to streamline conversations
      • \n
      \n
    • \n
    • Business hours: Offline/Online Settings\n
        \n
      • Set business hours for a specific time range within a day, specific days in a week.
      • \n
      • Hide the widget during offline hours or automatically change the WhatsApp numbers and call to action.
      • \n
      \n
    • \n
    • Display based on website visitor’s country
    • \n
    • Webhooks – Dynamic variables\n
        \n
      • {url} – Current page URL.
      • \n
      • {time} – Time user interacted with the WhatsApp Button/Icon.
      • \n
      • {number} – WhatsApp Number associated with the icon/button.
      • \n
      • Get values from url parameters by adding name with in single square brackets E.g. [gclid], [utm_source]
      • \n
      • Get values from cookies by adding the name with in double square brackets. E.g. [[cookie_name]]
      • \n
      \n
    • \n
    • Get additional values at Google Analytics, Meta Pixel\n
        \n
      • Get values from url parameters. E.g. [gclid], [utm_source]
      • \n
      • Get values from cookies. E.g. [[cookie_name]]
      • \n
      \n
    • \n
    • Greetings Actions: (for all greeting dialogs: Greetings-1, Greetings-2, Form, Multi-agent)\n
        \n
      • Display greetings dynamically based on user actions such as\n
          \n
        • Time: Time spent on the page,
        • \n
        • Scroll: Page scroll percentage,
        • \n
        • Click: specific button clicks
        • \n
        • ViewPort: when an element becomes visible in the viewport.
        • \n
        \n
      • \n
      \n
    • \n
    • Position to place\n
        \n
      • Fixed: Fixed position on the screen (default position)
      • \n
      • Absolute: Fixed position to the body content. (Moves when the user scrolls the page)
      • \n
      \n
    • \n
    • Time Delay & Scroll Delay: Display WhatsApp widget after a specified time delay or once the user scrolls a certain percentage of the page.
    • \n
    • Display based on Website visitor’s login status
    • \n
    • Page-level settings: Fine-tune WhatsApp button behavior for individual pages. Change styles, time delays, scroll delay, Greetings Template, and Greetings Content
    • \n
    • WooCommerce: Customize WhatsApp widget behavior specifically for WooCommerce pages\n
        \n
      • Overwrite greetings template, Content for Single product pages.
      • \n
      • Overwrite settings for Shop, Checkout, and Account pages at page-level settings
      • \n
      \n
    • \n
    \n

    🔆 PRO

    \n

    🎯 Localization

    \n

    Click to Chat is Compatible with translation plugins. WPML, Polylang.

    \n

    It is easy to set up different values for each language

    \n
      \n
    • WhatsApp Number
    • \n
    • Call to Action
    • \n
    • Pre-filled Message
    • \n
    • Greetings Content
    • \n
    • Group ID
    • \n
    • Share Text
    • \n
    \n

    Setup for WPML, Polylang

    \n

    🚀 Performance

    \n
      \n
    • Rich in features, but the site’s front end is very lightweight.
    • \n
    \n

    We highly concentrate on speed and performance.

    \n

    👓 Display Settings

    \n

    Customize the visibility of the widget by showing or hiding styles based on specific settings, such as:

    \n
      \n
    • Post type
    • \n
    • Post Id
    • \n
    • Category name
    • \n
    • Device Type(Mobile, Desktop)
    • \n
    • WooCommerce single product pages
    • \n
    \n

    PRO:

    \n
      \n
    • Time delay
    • \n
    • Scroll delay
    • \n
    • Selected time range in a day
    • \n
    • Selected Days in a week
    • \n
    • Website visitor login status
    • \n
    • Website visitor country
    • \n
    \n

    ✅ Opt-in

    \n

    Make the website users opt-in / accept consent before initiating the chat.

    \n

    Opt-in

    \n

    ⛳ Shortcodes

    \n

    Use shortcodes to instead a WhatsApp icon or button with inline the Post content, widget area.

    \n

    change the default setting values using shortcode attributes – WhatsApp Number, Style, Pre-filled message, Call to Action.

    \n

    Chat Shortcodes

    \n

    [ht-ctc-chat]

    \n

    To change the WhatsApp number use the ‘number’ attribute

    \n

    [ht-ctc-chat number=915123456789]

    \n

    Shortcodes for Chat

    \n

    Group

    \n

    Enable the Group chat feature and add WhatsApp Group id in the plugin settings.

    \n

    Make it easy for your customers to join Whatsapp Group.

    \n

    Group

    \n

    Share

    \n

    Let users share your website with their WhatsApp contacts and get more leads.

    \n

    Share

    \n

    🌏 Help Translate The Plugin

    \n

    Help by Translating the plugin to be available in more languages

    \n", "donate_link": "", "num_ratings": 132, "screenshots": {"1": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-1.gif?rev=2902255", "caption": "8 Styles, 1 Add your own image or GIF. Add at any position to the screen (Desktop, Mobile: can set different styles, positions)"}, "2": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-2.gif?rev=2902255", "caption": "Select a style and customize it to match your website design."}, "3": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-3.png?rev=2902255", "caption": "Chat Settings - Enter WhatsApp Number, prefilled message, call to action, desktop: web view / desktop app view"}, "4": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-4.png?rev=2902255", "caption": "Style, position to place (at any position of the screen) - Desktop, Mobile"}, "5": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-5.png?rev=2902255", "caption": "Add WhatsApp Menu item (Custom Element)"}, "6": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-6.png?rev=2902255", "caption": "Change Values at the page level: ''WhatsApp Number'', ''Call to action'', ''Group ID''"}, "7": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-7.png?rev=2344071", "caption": "Style - 5 - Image with content box"}, "8": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-8.png?rev=2344071", "caption": "Style - 8 - Materialize button"}, "9": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-9.png?rev=2344071", "caption": "Style - 99 - Add your own Image / GIF(Animated Image)"}, "10": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-10.png?rev=2344071", "caption": "Customize Styles"}, "11": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-11.png?rev=2506390", "caption": "Enable Group, Share Settings"}, "12": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-12.png?rev=2536897", "caption": "Group settings page"}, "13": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-13.png?rev=2536897", "caption": "Share settings page"}, "14": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-14.png?rev=2536897", "caption": "Display settings"}, "15": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-15.png?rev=2536897", "caption": "Webhooks"}, "16": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-16.png?rev=2395899", "caption": "prefilled, call to action for WooCommerce single product pages"}, "17": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-17.png?rev=2506390", "caption": "Animations"}, "18": {"src": "https://ps.w.org/click-to-chat-for-whatsapp/assets/screenshot-18.png?rev=2506390", "caption": "Analytics - Google Analytics, Meta Pixel, Google Ads Conversations"}}, "support_url": "https://wordpress.org/support/plugin/click-to-chat-for-whatsapp/", "contributors": {"holithemes": {"avatar": "https://secure.gravatar.com/avatar/582831487ba652d47cce84bc0019779ca75018e4b8eeab320f0cfb454a169f89?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/holithemes/", "display_name": "holithemes"}}, "last_updated": "2025-10-29 1:38pm GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.30.zip", "author_profile": "https://profiles.wordpress.org/holithemes/", "business_model": false, "repository_url": "", "upgrade_notice": {"using FTP or similar": "
      \n
    • Delete Click-to-Chat folder - your setting will not lost.
    • \n
    • unzip Click-to-Chat file and
    • \n
    • Upload "Click-to-Chat" folder to the "/wp-content/plugins/" directory.
    • \n
    • Activate the plugin through the "Plugins" menu in WordPress.
    • \n
    ", "From WordPress Dashboard": "
      \n
    • From wp-admin -> plugins
    • \n
    • Click Update now when a new version is available
    • \n
    • Or enable Auto-updates to update automatically
    • \n
    "}, "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-f0d8-7125-ac25-d21b0a0d639c", "name": "Click to Chat – HoliThemes", "slug": "click-to-chat-for-whatsapp", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761745080, "version": "4.30"}, "support_threads": 5, "requires_plugins": [], "short_description": "WhatsApp Chat🔥. Let's make your Web page visitors contact you through 'WhatsApp', 'WhatsApp Business'. Add matching Widget✅", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 4}'); -INSERT INTO public.plugins VALUES ('019a30c1-643c-70c4-8249-050b761774e1', 'code-snippets', 'Code Snippets', 'An easy, clean and simple way to enhance your site with code snippets.', '

    ✂ Code Snippets provides an effortless way to enhance your WordPress site.

    -

    🚀 Upgrade to Code Snippets Pro for complete CSS, JavaScript, Gutenberg, Elementor and cloud synchronisation integrations. Elevate your snippets experience now!

    -

    Say goodbye to the hassle of tweaking your theme’s functions.php file and downloading endless plugins – Code Snippets simplifies the process!

    -

    A snippet is like a mini-plugin for your WordPress site, providing added functionality without the clutter.

    -

    Unlike other solutions that involve dumping code into your functions.php file, Code Snippets offers an intuitive graphical interface for seamless integration and real-time execution. Managing snippets is as easy as activating and deactivating plugins, only without the bloat and overhead.

    -

    🎥 Watch a quick overview by Imran Siddiq:

    -

    -

    ☁️ Each copy of Code Snippets includes full integration with the community-powered Code Snippets Cloud platform, providing easy access to hundreds of tweaks and enhancements ready to power-up any WordPress site.

    -

    🌐 Connect with us:

    - -

    🌟 Like our plugin? Find it useful? Please consider sharing your experience by leaving a review on WordPress.org. Your feedback is instrumental to shaping our future growth!

    -

    🌍 We’d like to thank the wonderful people who have helped contribute translations to allow Code Snippets to be used in different languages. You can find a full list here.

    -', '3.8.1', 'Code Snippets Pro', '5.0', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/code-snippets.3.8.1.zip', '2012-06-13 00:00:00+00', '2025-10-28 09:50:00+00', 'https://profiles.wordpress.org/codesnippetspro/', 94, 487, 19, 12, 1000000, 15589153, 'https://codesnippets.pro', 'https://codesnippets.pro', 'commercial', 'https://codesnippets.pro/support/', 'https://wordpress.org/support/plugin/code-snippets/', 'https://wordpress.org/plugins/code-snippets/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Code Snippets", "slug": "code-snippets", "tags": {"css": "css", "php": "php", "code": "code", "snippets": "snippets", "multisite": "multisite"}, "added": "2012-06-13", "icons": {"1x": "https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878", "svg": "https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878"}, "author": "Code Snippets Pro", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/code-snippets/assets/banner-772x250.png?rev=3147867", "high": "https://ps.w.org/code-snippets/assets/banner-1544x500.png?rev=3147867"}, "ratings": {"1": 29, "2": 7, "3": 6, "4": 12, "5": 433}, "version": "3.8.1", "homepage": "https://codesnippets.pro", "requires": "5.0", "sections": {"faq": "

    A full list of our Frequently Asked Questions can be found at help.codesnippets.pro.

    \n\n
    \nHow can I recover my site if it is crashed by a buggy snippet?\n\n

    \n

    You can recover your site by enabling the Code Snippets safe mode feature. Instructions for how to turn it on are available here: https://help.codesnippets.pro/article/12-safe-mode.

    \n

    \n
    \nWill I lose my snippets if I change the theme or upgrade WordPress?\n\n

    \n

    No, the snippets are stored in the WordPress database, independent of the theme and unaffected by WordPress upgrades.

    \n

    \n
    \nCan the plugin be completely uninstalled?\n\n

    \n

    If you enable the ‘Complete Uninstall’ option on the plugin settings page, Code Snippets will clean up all of its data when deleted through the WordPress ‘Plugins’ menu. This includes all stored snippets. If you would like to preserve the snippets, ensure they are exported first.

    \n

    \n
    \nCan I copy snippets that I have created to another WordPress site?\n\n

    \n

    Yes! You can individually export a single snippet using the link below the snippet name on the ‘Manage Snippets’ page or bulk export multiple snippets using the ‘Bulk Actions’ feature. Snippets can later be imported using the ‘Import Snippets’ page by uploading the export file.

    \n

    \n
    \nCan I export my snippets to PHP for a site where I’m not using the Code Snippets plugin?\n\n

    \n

    Yes. Click the checkboxes next to the snippets you want to export, and then choose Export to PHP from the Bulk Actions menu and click Apply. The generated PHP file will contain the exported snippets’ code, as well as their name and description in comments.

    \n

    \n
    \nCan I run network-wide snippets on a multisite installation?\n\n

    \n

    You can run snippets across an entire multisite network by Network Activating Code Snippets through the Network Dashboard. You can also activate Code Snippets just on the main site, and then individually on other sites of your choice.

    \n

    \n
    \nWhere are the snippets stored in my WordPress database?\n\n

    \n

    Snippets are stored in the wp_snippets table in the WordPress database. The table name may differ depending on what your table prefix is set to.

    \n

    \n
    \nWhere can I go for help or suggest new features?\n\n

    \n

    You can get help with Code Snippets, report bugs or errors, and suggest new features and improvements either on the WordPress Support Forums or on GitHub.

    \n

    \n
    \nHow can I help contribute to the development of the Code Snippets plugin?\n\n

    \n

    The best way to do this is to fork the repository on GitHub and send a pull request.

    \n

    \n
    \nHow can I report security bugs found in this plugin?\n\n

    \n

    You can report security bugs found in the source code of this plugin through the Patchstack Vulnerability Disclosure Program. The Patchstack team will assist with verification, triage, and notification of security vulnerabilities.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The free plan is very limited

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy moyela on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin only allowed me add custom HTML and PHP. So I tried WPCode instead and I can add custom HTML, CSS, JS, and PHP for free.

    \n\n\n\n

    With that perspective this tool is limited unless you pay for the pro plan.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Discounts can not be applied as promised

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy downtownck on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It is a great plugin except for that although they promise discounts for lifetime packs with email messages but when you want to buy it , they apply original price.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential Plugin for Inserting and Controlling Snippets

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy soswordpress on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    There''s no other plugin that does what Code Snippets does. You don''t even need to look.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    muy buen plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Javier Burgos Arratibel (javiburg2) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Muy buen plugin, el código se refleja en la página web

    \n\n\n\n

    Very good plugin, the code is reflected on the website.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential Plugin for Keeping Custom Code Organized

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Paul Filkin on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using Code Snippets to manage various customizations on my WordPress site, and it''s been a game-changer. Previously, I was adding everything to my main custom CSS file, which was getting messy and hard to manage.

    \n\n\n\n

    With Code Snippets, I can now organize my customizations into separate, well-documented snippets with clear descriptions and tags. This makes it incredibly easy to find, edit, enable, or disable specific features without hunting through thousands of lines of code.

    \n\n\n\n

    I recently used it to customize my WooCommerce shop page - removing default elements, adding custom widgets to the sidebar, and styling everything to match my site''s design. Being able to separate PHP snippets (for functionality) from CSS snippets (for styling) and clearly label each one has made my workflow so much cleaner.

    \n\n\n\n

    The ability to easily activate/deactivate snippets for testing is brilliant - no more commenting out blocks of code or risking syntax errors. The plugin is intuitive, well-designed, and has saved me countless hours of frustration.

    \n\n\n\n

    Highly recommended for anyone who needs to add custom code to WordPress without cluttering their theme files!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A must-have tool in our daily workflow

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Robbert - ROS WEB (robbert444) on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We’ve been using Code Snippet for quite some time now and recently upgraded to the PRO license. The additional features and reliability make it absolutely worth it. Highly recommended for anyone working with WordPress and custom development!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Exactly what I wanted todo

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy csdsubscriber on October 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I needed to create a custom form that would send emails to different recipients based on query string parameter. I was able to create a shortcode to do just that. Really slick!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useful plugin and excellent customer care!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy roccoiannalfo on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Code Snippets is easy and efficient.

    \n\n\n\n

    If you need help, the customer service is fast and very kind!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Causing trouble on Divi sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rosenborg on September 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin can cause problems on Divi websites by preventing the CSS animations enabled in Divi modules from running.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support doesn't exist

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy painlessseo on July 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I asked a straightforward question 5 WEEKS ago, never got a single reply. I even followed up on my own thread and tagged one of the developers. NOTHING! NOT A SINGLE RESPONSE.

    Edit: After I left a review, their team gave a clear response and answered my question in the Support forum. I updated the rating to reflect that they did follow up and help.

    \n
    \n
    \n", "changelog": "

    3.8.1 (2025-10-28)

    \n

    Fixed

    \n
      \n
    • Improved file-based snippet handling for multisite installations.
    • \n
    \n

    3.8.0 (2025-10-24)

    \n

    Added

    \n
      \n
    • @CarolinaOP and @louiswol94 join the team as plugin contributors.
    • \n
    • File-based execution mode for snippets (Optional in Plugin Settings).
    • \n
    • Version switch option, to help easily rollback the plugin to an earlier release.
    • \n
    • Minor UI improvements to the editor and sidebar.
    • \n
    \n

    Changed

    \n
      \n
    • Prefixed Composer packages to reduce collisions with other plugins.
    • \n
    • Snippets REST API now supports pagination via page and per_page query parameters.
    • \n
    • Improved editor preview behavior.
    • \n
    \n

    Fixed

    \n
      \n
    • Fixed issues with snippet evaluation and front-end initialization in edge cases.
    • \n
    • Improved reliability of snippet evaluation.
    • \n
    • JavaScript and CSS snippets loading twice due to a conditions bug. (PRO)
    • \n
    • Fixed issue where some conditions didn’t work due to loading before the loop. (PRO)
    • \n
    \n

    3.7.0 (2025-08-29)

    \n

    Added

    \n
      \n
    • New ‘conditions’ feature: control where and when snippets execute with a powerful logic builder. (PRO)
    • \n
    \n

    Changed

    \n
      \n
    • Redesigned edit menu with refreshed look and functionality.
    • \n
    • Updated snippet type badges to be more visually distinct.
    • \n
    • Redesigned tooltips used throughout the plugin.
    • \n
    • Moved content snippet shortcode options into separate modal window.
    • \n
    • Updated snippet tag editor to use built-in WordPress tag editor.
    • \n
    • Created proper form for sharing beta feedback.
    • \n
    • Improved UX of snippet activation toggle.
    • \n
    \n

    Fixed

    \n
      \n
    • Fetching active snippets on a multisite network now respects the ‘priority’ field above all else when ordering snippets.
    • \n
    • Cloud search appears correctly and allows downloading snippets in the free version of Code Snippets.
    • \n
    • Improved performance of loading admin menu icon.
    • \n
    \n

    3.6.9 (2025-02-17)

    \n

    Changed

    \n
      \n
    • Updated Cloud_API::get_bundles() to properly check bundle data and return an empty array if no valid bundles are present.
    • \n
    • Refactored Cloud_List_Table::fetch_snippets() to always return a valid Cloud_Snippets instance.
    • \n
    • Cleaned up bundle iteration code and improved translation handling in the bundles view.
    • \n
    \n

    Fixed

    \n
      \n
    • Fixed errors in bundle iteration by adding a check for the bundles array before iterating.
    • \n
    \n

    3.6.8 (2025-02-14)

    \n

    Added

    \n
      \n
    • code_snippets/hide_welcome_banner filter hook for hiding welcome banner in dashboard.
    • \n
    \n

    Changed

    \n
      \n
    • Updated Freemius SDK to the latest version. (PRO)
    • \n
    \n

    Removed

    \n
      \n
    • Functionality allowing [code_snippet] shortcodes to be embedded recursively – it will be re-added in a future version.
    • \n
    \n

    Fixed

    \n
      \n
    • Shortcodes embedded within [code_snippet] shortcodes not evaluating correctly.
    • \n
    • Translation functions being called too early in some instances when loading plugin settings.
    • \n
    • ‘Generate’ button not appearing on some sites. (PRO)
    • \n
    • Incorrect arrow entity used in cloud list table (props to [brandonjp]).
    • \n
    • Removed reference to missing plugins.css file in core plugin version.
    • \n
    \n

    3.6.7 (2025-01-24)

    \n

    Added

    \n
      \n
    • Generated snippet shortcode tags will include the snippet name, for easier identification.
    • \n
    • Admin notices will dismiss automatically after five seconds. (#208)
    • \n
    \n

    Changed

    \n
      \n
    • Updated CSS to use latest Sass features.
    • \n
    • Moved theme selector to just above editor preview on settings page (thanks to brandonjp). (#206)
    • \n
    • [code_snippet] shortcodes can now be nested within each other. (#198)
    • \n
    \n

    Fixed

    \n
      \n
    • Save buttons above editor did not follow usual validation process in Pro. (PRO) (#197)
    • \n
    • Minor inconsistencies in consistent UI elements between Core and Pro.
    • \n
    • Tags input not allowing input. (#211)
    • \n
    • Issue with Elementor source code widget. (PRO) (#205)
    • \n
    • Snippet descriptions not visible when viewing cloud search results.
    • \n
    • Snippet import page not displaying number of successfully imported snippets.
    • \n
    • Use UTC time when deciding when to display campaign notices.
    • \n
    \n

    3.6.6.1 (2024-11-27)

    \n

    Fixed

    \n
      \n
    • Redeployment of v3.6.6 to overcome issue with initial build.
    • \n
    • Type issue when caching cloud links. (PRO)
    • \n
    \n

    3.6.6 (2024-11-27)

    \n

    Changed

    \n
      \n
    • Improved compatability with modern versions of PHP.
    • \n
    • Extended welcome API to include admin notices.
    • \n
    \n

    Fixed

    \n
      \n
    • Memory issue from checking aggregate posts while loading front-end syntax highlighter.
    • \n
    • Translation functions being called too early on upgrade, resulting in localisation loading errors.
    • \n
    • Bug preventing the ‘share on network’ status of network snippets from correctly updating.
    • \n
    • Incorrect logic controlling when to display ‘Save Changes’ or ‘Save Changes and Activate’ buttons.
    • \n
    • Old notices persisting when switching between editing and creating snippets.
    • \n
    \n

    3.6.5.1 (2024-05-24)

    \n
      \n
    • Redeployment of v3.6.5 to overcome issue with initial build.
    • \n
    \n

    3.6.5 (2024-05-24)

    \n

    Added

    \n
      \n
    • New admin menu providing useful resources and updates on the Code Snippets plugin and community.
    • \n
    \n

    3.6.4 (2024-03-15)

    \n

    Added

    \n
      \n
    • AI generation for all snippet types: HTML, CSS, JS. (PRO)
    • \n
    • Button to create a cloud connection directly from the Snippets menu when disconnected. (PRO)
    • \n
    \n

    Changed

    \n
      \n
    • Increment the revision number of CSS and JS snippet when using the ‘Reset Caches’ debug action. (PRO)
    • \n
    • UX in generate dialog, such as allowing ‘Enter’ to submit the form. (PRO)
    • \n
    \n

    Fixed

    \n
      \n
    • Minor type compatability issue with newer versions of PHP.
    • \n
    • Undefined array key issue when initiating cloud sync. (PRO)
    • \n
    • Bug preventing downloading a single snippet from a bundle. (PRO)
    • \n
    • Translations not loading for strings in JavaScript files.
    • \n
    \n

    3.6.3 (2023-11-13)

    \n

    Added

    \n
      \n
    • Added debug action for resetting snippets caches.
    • \n
    \n

    Fixed

    \n
      \n
    • Import error when initialising cloud sync configuration. (PRO)
    • \n
    \n

    3.6.2 (2023-11-11)

    \n

    Removed

    \n
      \n
    • Removed automatic encoding of code content.
    • \n
    \n

    Fixed

    \n
      \n
    • Error when attempting to save shared network snippets marked as active.
    • \n
    • Type error when rendering checkbox fields without a stored or default value.
    • \n
    • Label for snippet sharing input incorrectly linked to input field.
    • \n
    • Error when attempting to download export files from Edit menu.
    • \n
    • Issue loading Freemius string overrides too early. (PRO)
    • \n
    • Fix redirect URL when connecting with OAuth on subdirectory or HTTPS sites. (PRO)
    • \n
    • Import error when attempting to completely uninstall the plugin.
    • \n
    \n

    3.6.1 (2023-11-07)

    \n

    Fixed

    \n
      \n
    • Issue accessing fields on Snippets class.
    • \n
    \n

    3.6.0 (2023-11-07)

    \n

    Added

    \n
      \n
    • Ability to authenticate with Code Snippets Cloud using OAuth. (PRO)
    • \n
    • Integration with GPT AI for generating snippets. (PRO)
    • \n
    • Ability to generate line-by-line descriptions of snippet code with GPT AI. (PRO)
    • \n
    • Ability to generate tags and description text from existing snippet code with GPT AI. (PRO)
    • \n
    • Added debug settings menu for manually performing problem-solving actions.
    • \n
    • Filter to disable scroll-into-view functionality for edit page notices.
    • \n
    \n

    Changed

    \n
      \n
    • Updated minimum PHP requirement to 7.4.
    • \n
    • Ensure that the URL of the edit snippet page changes when adding a new snippet.
    • \n
    • Snippet tags will automatically be added when focus is lost on the tags field.
    • \n
    \n

    Fixed

    \n
      \n
    • Moved active status border on edit name field to left-hand side.
    • \n
    • New notices will not scroll if already at top of page.
    • \n
    • Potential CSRF vulnerability allowing an authenticated user to reset settings.
    • \n
    \n

    3.5.1 (2023-09-15)

    \n

    Fixed

    \n
      \n
    • Undefined array key error when accessing plugin settings page. (PRO)
    • \n
    • Issue registering API endpoints affecting edit post screen. (PRO)
    • \n
    • Snippet ID instead of snippet object being passed to code_snippets/update_snippet action hook.
    • \n
    \n

    3.5.0 (2023-09-13)

    \n

    Added

    \n
      \n
    • Support for the Code Snippets Cloud API.
    • \n
    • Search and download public snippets.
    • \n
    • Codevault back-up and synchronisation. (PRO)
    • \n
    • Synchronised local snippets are automatically updated in Cloud. (PRO)
    • \n
    • Bulk actions – ‘update’ and ‘download’.
    • \n
    • Download snippets from public and private codevaults. (PRO)
    • \n
    • Search and download any publicly viewable snippet in Code Snippet Cloud by keyword or name of codevault. (PRO)
    • \n
    • Deploy snippets to plugin from Code Snippets Cloud app. (PRO)
    • \n
    • Bundles of Joy! Search and download Snippet Bundles in one go direct from Code Snippets Cloud. (PRO)
    • \n
    \n

    Changed

    \n
      \n
    • Redirect to snippets table when deleting snippet from the edit menu.
    • \n
    • Scroll new notices into view on edit menu.
    • \n
    \n

    Fixed

    \n
      \n
    • Error when attempting to update network shared snippets after saving. [#]
    • \n
    \n

    The full changelog is available on GitHub

    \n", "description": "

    ✂ Code Snippets provides an effortless way to enhance your WordPress site.

    \n

    🚀 Upgrade to Code Snippets Pro for complete CSS, JavaScript, Gutenberg, Elementor and cloud synchronisation integrations. Elevate your snippets experience now!

    \n

    Say goodbye to the hassle of tweaking your theme’s functions.php file and downloading endless plugins – Code Snippets simplifies the process!

    \n

    A snippet is like a mini-plugin for your WordPress site, providing added functionality without the clutter.

    \n

    Unlike other solutions that involve dumping code into your functions.php file, Code Snippets offers an intuitive graphical interface for seamless integration and real-time execution. Managing snippets is as easy as activating and deactivating plugins, only without the bloat and overhead.

    \n

    🎥 Watch a quick overview by Imran Siddiq:

    \n

    \n

    ☁️ Each copy of Code Snippets includes full integration with the community-powered Code Snippets Cloud platform, providing easy access to hundreds of tweaks and enhancements ready to power-up any WordPress site.

    \n

    🌐 Connect with us:

    \n\n

    🌟 Like our plugin? Find it useful? Please consider sharing your experience by leaving a review on WordPress.org. Your feedback is instrumental to shaping our future growth!

    \n

    🌍 We’d like to thank the wonderful people who have helped contribute translations to allow Code Snippets to be used in different languages. You can find a full list here.

    \n", "screenshots": "
    1. \"Managing

      Managing existing snippets

    2. \"Adding

      Adding a new snippet

    3. \"Editing

      Editing a snippet

    4. \"Importing

      Importing snippets from an export file

    ", "installation": "

    Automatic installation

    \n
      \n
    1. Log into your WordPress admin
    2. \n
    3. \n

      Click Plugins

      \n
    4. \n
    5. \n

      Click Add New

      \n
    6. \n
    7. \n

      Search for Code Snippets

      \n
    8. \n
    9. \n

      Click Install Now under “Code Snippets”

      \n
    10. \n
    11. Activate the plugin
    12. \n
    \n

    Manual installation

    \n
      \n
    1. Download the plugin
    2. \n
    3. Extract the contents of the zip file
    4. \n
    5. Upload the contents of the zip file to the wp-content/plugins/ folder of your WordPress installation
    6. \n
    7. Activate the Code Snippets plugin from ‘Plugins’ page.
    8. \n
    \n

    Network Activating Code Snippets through the Network Dashboard will enable a special interface for running snippets across the entire network.

    \n"}, "versions": {"3.0.0": "https://downloads.wordpress.org/plugin/code-snippets.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/code-snippets.3.0.1.zip", "3.1.0": "https://downloads.wordpress.org/plugin/code-snippets.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/code-snippets.3.1.1.zip", "3.2.1": "https://downloads.wordpress.org/plugin/code-snippets.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/code-snippets.3.2.2.zip", "3.3.0": "https://downloads.wordpress.org/plugin/code-snippets.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/code-snippets.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/code-snippets.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/code-snippets.3.4.2.zip", "3.5.0": "https://downloads.wordpress.org/plugin/code-snippets.3.5.0.zip", "3.6.0": "https://downloads.wordpress.org/plugin/code-snippets.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/code-snippets.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/code-snippets.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/code-snippets.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/code-snippets.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/code-snippets.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/code-snippets.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/code-snippets.3.6.7.zip", "3.6.8": "https://downloads.wordpress.org/plugin/code-snippets.3.6.8.zip", "3.7.0": "https://downloads.wordpress.org/plugin/code-snippets.3.7.0.zip", "3.8.0": "https://downloads.wordpress.org/plugin/code-snippets.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/code-snippets.3.8.1.zip", "trunk": "https://downloads.wordpress.org/plugin/code-snippets.zip", "2.10.0": "https://downloads.wordpress.org/plugin/code-snippets.2.10.0.zip", "2.10.1": "https://downloads.wordpress.org/plugin/code-snippets.2.10.1.zip", "2.12.0": "https://downloads.wordpress.org/plugin/code-snippets.2.12.0.zip", "2.12.1": "https://downloads.wordpress.org/plugin/code-snippets.2.12.1.zip", "2.13.0": "https://downloads.wordpress.org/plugin/code-snippets.2.13.0.zip", "2.13.1": "https://downloads.wordpress.org/plugin/code-snippets.2.13.1.zip", "2.13.2": "https://downloads.wordpress.org/plugin/code-snippets.2.13.2.zip", "2.13.3": "https://downloads.wordpress.org/plugin/code-snippets.2.13.3.zip", "2.14.0": "https://downloads.wordpress.org/plugin/code-snippets.2.14.0.zip", "2.14.1": "https://downloads.wordpress.org/plugin/code-snippets.2.14.1.zip", "2.14.2": "https://downloads.wordpress.org/plugin/code-snippets.2.14.2.zip", "2.14.3": "https://downloads.wordpress.org/plugin/code-snippets.2.14.3.zip", "2.14.4": "https://downloads.wordpress.org/plugin/code-snippets.2.14.4.zip", "2.14.5": "https://downloads.wordpress.org/plugin/code-snippets.2.14.5.zip", "2.14.6": "https://downloads.wordpress.org/plugin/code-snippets.2.14.6.zip", "3.6.5.1": "https://downloads.wordpress.org/plugin/code-snippets.3.6.5.1.zip", "3.6.6.1": "https://downloads.wordpress.org/plugin/code-snippets.3.6.6.1.zip", "3.7.0-beta": "https://downloads.wordpress.org/plugin/code-snippets.3.7.0-beta.zip", "3.5.0-beta.1": "https://downloads.wordpress.org/plugin/code-snippets.3.5.0-beta.1.zip", "3.7.0-beta.5": "https://downloads.wordpress.org/plugin/code-snippets.3.7.0-beta.5.zip", "3.7.0-beta.7": "https://downloads.wordpress.org/plugin/code-snippets.3.7.0-beta.7.zip", "3.7.1-beta.1": "https://downloads.wordpress.org/plugin/code-snippets.3.7.1-beta.1.zip", "3.7.1-beta.2": "https://downloads.wordpress.org/plugin/code-snippets.3.7.1-beta.2.zip", "3.7.1-beta.3": "https://downloads.wordpress.org/plugin/code-snippets.3.7.1-beta.3.zip"}, "downloaded": 15589153, "description": "

    ✂ Code Snippets provides an effortless way to enhance your WordPress site.

    \n

    🚀 Upgrade to Code Snippets Pro for complete CSS, JavaScript, Gutenberg, Elementor and cloud synchronisation integrations. Elevate your snippets experience now!

    \n

    Say goodbye to the hassle of tweaking your theme’s functions.php file and downloading endless plugins – Code Snippets simplifies the process!

    \n

    A snippet is like a mini-plugin for your WordPress site, providing added functionality without the clutter.

    \n

    Unlike other solutions that involve dumping code into your functions.php file, Code Snippets offers an intuitive graphical interface for seamless integration and real-time execution. Managing snippets is as easy as activating and deactivating plugins, only without the bloat and overhead.

    \n

    🎥 Watch a quick overview by Imran Siddiq:

    \n

    \n

    ☁️ Each copy of Code Snippets includes full integration with the community-powered Code Snippets Cloud platform, providing easy access to hundreds of tweaks and enhancements ready to power-up any WordPress site.

    \n

    🌐 Connect with us:

    \n\n

    🌟 Like our plugin? Find it useful? Please consider sharing your experience by leaving a review on WordPress.org. Your feedback is instrumental to shaping our future growth!

    \n

    🌍 We’d like to thank the wonderful people who have helped contribute translations to allow Code Snippets to be used in different languages. You can find a full list here.

    \n", "donate_link": "https://codesnippets.pro", "num_ratings": 487, "screenshots": {"1": {"src": "https://ps.w.org/code-snippets/assets/screenshot-1.png?rev=2256244", "caption": "Managing existing snippets"}, "2": {"src": "https://ps.w.org/code-snippets/assets/screenshot-2.png?rev=2256244", "caption": "Adding a new snippet"}, "3": {"src": "https://ps.w.org/code-snippets/assets/screenshot-3.png?rev=2256244", "caption": "Editing a snippet"}, "4": {"src": "https://ps.w.org/code-snippets/assets/screenshot-4.png?rev=2256244", "caption": "Importing snippets from an export file"}}, "support_url": "https://wordpress.org/support/plugin/code-snippets/", "contributors": {"ver3": {"avatar": "https://secure.gravatar.com/avatar/88ea286f4d2cc41f8cdd070c9fd4f3e14dfd9446d400e93e00c838f744612e52?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ver3/", "display_name": "Verdi Heinz"}, "0aksmith": {"avatar": "https://secure.gravatar.com/avatar/738d034ed8e847261a3e8fc7d772a80e4c04b8ec409043f244d32ca51bf58733?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/0aksmith/", "display_name": "Imants"}, "bungeshea": {"avatar": "https://secure.gravatar.com/avatar/8b10e43934caf7d83dd7e26516e49e6b7edb8b328c556619abcb29240251ce87?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bungeshea/", "display_name": "Shea Bunge"}, "johnpixle": {"avatar": "https://secure.gravatar.com/avatar/46434e9639cea795703706251ec0bd0e74661b911f7d16274bacd8babf958b18?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/johnpixle/", "display_name": "JohnPixle"}, "carolinaop": {"avatar": "https://secure.gravatar.com/avatar/d51267523c373e61a651df164e20b46556a2a36164ec87b9bac7de7beb92b80f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/carolinaop/", "display_name": "Carolina"}, "louiswol94": {"avatar": "https://secure.gravatar.com/avatar/fca3b179b12c98374e782c51a47273d4233fd8176109349656b3ed69024f4cfb?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/louiswol94/", "display_name": "Louis Wolmarans"}, "lightbulbman": {"avatar": "https://secure.gravatar.com/avatar/fe6d824c0d5c8056032b78c260422449f6fcbb6fc7e4802eebfdf4b86fd438e6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lightbulbman/", "display_name": "Atif Riaz"}}, "last_updated": "2025-10-28 9:50am GMT", "preview_link": "https://wordpress.org/plugins/code-snippets/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/code-snippets.3.8.1.zip", "author_profile": "https://profiles.wordpress.org/codesnippetspro/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f0d3-72ca-ac8b-722187ca9b96", "name": "Code Snippets", "slug": "code-snippets", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761645000, "version": "3.8.1"}, "support_threads": 19, "requires_plugins": [], "short_description": "An easy, clean and simple way to enhance your site with code snippets.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "https://codesnippets.pro/support/", "support_threads_resolved": 12}'); -INSERT INTO public.plugins VALUES ('019a30c1-6449-735e-bd62-48afe1f2ec3b', 'coming-soon', 'Website Builder by SeedProd — Theme Builder, Landing Page Builder, Coming Soon Page, Maintenance Mode', 'Easy Drag & Drop Page Builder. A complete solution to create a WordPress Website, Custom Themes, Landing Pages, Coming Soon & Maintenance Mode Pages.', '

    SeedProd – Drag & Drop WordPress Website Builder, Landing Page Builder, Coming Soon Page & Maintenance Mode

    -

    SeedProd was originally created in 2011 and allowed you to create a Coming Soon Page or a Maintenance Mode Page. You could work on your website in private while visitors see a “Coming Soon” or “Maintenance Mode” page. It still does this and really well!

    -

    But People loved SeedProd’s easy-to-use page builder so much and wanted to create their entire website with it. So, due to popular demand, you can do just that! Yes, you can now use SeedProd as a WordPress Website Builder.

    -

    This means you can build every part of your WordPress custom theme. WordPress Headers, Footers, Single Page Templates, Archives, Global Parts, WooCommerce Product Pages, WooCommerce Carts, and more. The best part is SeedProd is a No-Code Website Builder. No coding knowledge or experience is needed. Full Site Editing made easy.

    -

    In addition, SeedProd is still the best Landing Page Builder. Create a variety of landing pages that include but are not limited to: Sales Pages, Coming Soon Pages, Maintenance Mode Pages, 404 Pages, Login Pages, Webinar Pages, and Thank You Pages.

    -

    Sites and Pages built with SeedProd’s Drag and Drop Page builder are lightweight, super fast, and it’s so easy to use anyone can create a WordPress Website or Landing Page.

    -
    -

    SeedProd Pro
    - This plugin is the lite version of the SeedProd Website Builder and Landing Page plugin that comes with all the features you will ever need to create great-looking landing pages, coming soon pages, and maintenance modes pages within your WordPress website with no code. Click here to purchase SeedProd, the best premium WordPress Website Builder and Landing Page plugin now!

    -
    -

    Watch John Turner, the Co-Founder of SeedProd, build the SeedProd.com website with the SeedProd WordPress Website Builder

    -

    -

    Using SeedProd as a WordPress Website Builder

    -

    SeedProd is a WordPress Website Theme Builder, which allows you to create custom theme and template parts like: Headers, Footers, Front Pages, Content Pages, Blog Posts, Blog Pages, Archives, Search Results, Category Pages, Tag Pages, Sidebars, WooCommerce Product Pages. WooCommerce Checkout Pages, WooCommerce Cart Pages, WooCommerce Shop Pages all using our no-code Theme Builder.

    -

    Typically you would need a traditional WordPress theme to accomplish this. With SeedProd no theme is needed. No more conflicts between your theme and page builder. SeedProd is a complete turnkey solution that gets you a website fast.

    -

    Themes created with SeedProd can use any builder. Of course, SeedProd is the best page builder in our opinion, but you can use: Gutenberg Page Builder, Elementor Page Builder, Beaver Builder Page Builder, Divi Page Builder, Visual Composer Page Builder, Brizy Page Builder, Thrive Architect Page Builder, Beaver Builder, and the list goes on…

    -

    SeedProd also has a growing library of 200+ beautiful pre-built WordPress themes, templates, blocks, sections and complete websites to help you get started. Did I mention, no coding is required 🙂

    -

    Creating WordPress Landing Pages with SeedProd

    -

    What are landing pages? A landing page is a standalone web page that a person “lands” on after clicking through from an email, ad, or other digital location. Most of the time, these landing pages have a different design from the rest of your site and do not show your website’s standard header and footer.

    -

    Landing Pages have a particular purpose and desired user action; therefore, you want them to be distraction-free as possible. With SeedProd, it is super easy to create high-converting landing pages for any purpose, that are entirely separate from your website’s design.

    -

    You can use our Domain Mapping feature to put landings page on their own domain, our Dynamic Text feature to add personalization, or our WooCommerce Blocks to build one-off product pages. These are just a few of the many powerful features SeedProd provides.

    -

    Building Coming Soon Pages and Maintenance Mode Pages with SeedProd

    -

    SeedProd allows you to build a coming soon or maintenance mode page that will hide your site from visitors and search engines like Google. You can work on your website in private. When the website uses coming soon mode, the page will be indexed by Google as long as your site is not set to be private in WordPress.

    -

    In Maintenance Mode, we return a 503 header status that lets Google know your site is down for maintenance.

    -

    Both of these modes are essential for any WordPress Website to have.

    -

    The Free Version of SeedProd comes with a variety of Coming Soon Page and Maintenance Mode templates.

    -

    Full Page Builder Feature List:

    -
      -
    • WordPress Theme Builder – Create Headers, Footers, Pages, Posts, Archives, Sidebars, WooCommerce Pages or any part of a WordPress theme with our no-code Theme Builder.
    • -
    • Fast Drag & Drop Page Builder – Our page builder is super fast, lightweight and responsive.
    • -
    • WordPress Themes created with SeedProd work with any page builder.
    • -
    • Landing Pages work with any WordPress Theme.
    • -
    • 200+ Professionally Designed WordPress Themes, Landing Page Templates & Layout Sections
    • -
    • 80+ Pro Page Blocks – We have created a variety of blocks to display static and dynamic content.
    • -
    • Landing Page Templates – Sale Pages, Coming Soon Pages, Maintenance Mode Pages, Webinar Pages, Giveaway Pages, Thank You Pages, 404 Pages, and Login Pages
    • -
    • Responsive and Mobile Ready – Pages created with SeedProd look great on any device.
    • -
    • Premium Integrations – Collect emails with your favorite 3rd party email marketing service providers, including MailChimp, ActiveCampaign, ConvertKit, Constant Contact, and more…
    • -
    • Subscriber Management – Track every subscriber with or without a 3rd party email provider.
    • -
    • Stock Images – Get In-Plugin Access to over 2 Million Stock Images. Searchable, Resized, and Optimized for the Web.
    • -
    • Live Previews – We allow you to see live previews of the page while it’s in any state, draft, live, or just testing.
    • -
    • Layout Navigation – Use our layout navigation, which is a mini-map of your page, to easily rearrange sections, rows, columns, blocks, or access your page settings
    • -
    • Revision History, Undo & Redo – With one click reverts, you can go back to any previously saved point on your page and even see who made those particular changes.
    • -
    • Draft Mode – Work on your page in private without revealing its construction to the public.
    • -
    • Mobile Device Preview – See what your pages will look like on desktop and mobile devices before you go live.
    • -
    • Bloat Free Code – The code our builder produces, unlike other builders, is bloat-free and minimal to load your page quickly.
    • -
    • Color Schemes – Choose from over 20 built-in color schemes or create your own custom color palette to use throughout your landing page design.
    • -
    • Font Combinations – SeedProd integrates with Google Fonts to provide unlimited font combinations.
    • -
    • Custom CSS – Need to tweak the style of an element on your page? No problem!
    • -
    • Domain Mapping – Domain Mapping lets you create landing pages and point them to any domain name instead of your main website domain.
    • -
    • Dynamic Text – Dynamic Text lets you dynamically insert dates or values from a query parameter to personalize your landing pages.
    • -
    • Custom Scripts – Need to add a tracking script or widget from another website? Use the built-in header and footer scripts area to implement more technical tweaks.
    • -
    • Spam Protection – Protect your landing pages from spam, bots, and fraudulent submissions with Google ReCaptcha
    • -
    -

    WordPress Blocks:

    -
      -
    • Standard Blocks – Headline, Text, List, Button, Image, Video, Divider, Spacer, Column
    • -
    • Advanced Blocks – Giveaway, Contact Form, Optin Form, Countdown, Social Profiles, Social Sharing, Animated Headlines, Progress Bar, Icon, Testimonials, Image Carousel, Image Box, Icon Box, Nav Menu, Pricing Tables, Page Anchor, Star Rating, Accordion, Shortcode, Login Form, Google Maps, Seach Form, Custom HTML
    • -
    • Social Media Blocks – Facebook Page, Facebook Embed, Facebook Like, Facebook Comments, Twitter Embed Tweet, Twitter Embed Timeline, Twitter Tweet Button, Twitter Follow Button
    • -
    • WooCommerce Blocks – Add To Cart, Checkout, Cart, Product Grid, Recent Products, Sale Products, Best Selling Products, Featured Products, Top Rated Products, Menu Cart, Product Title, Product Featured Image, Product Price, Short Description, Additional Information, Products Related, Upsells, Product Rating, Product Stock, Archive Products, Product Data Tabs
    • -
    • Theme Template Tag Blocks: Posts, Post Title, Post Content, Post Excerpt, Featured Image, Author Box, Post Comments, Post Navigation: Post Info, Archive Title, Site Logo, Global Template Parts
    • -
    -

    WordPress Email Marketing Integrations:

    -
      -
    • ActiveCampaign
    • -
    • AWeber
    • -
    • Campaign Monitor
    • -
    • Constant Contact
    • -
    • ConvertKit
    • -
    • Drip
    • -
    • Facebook
    • -
    • GetResponse
    • -
    • Google Recaptcha
    • -
    • iContact
    • -
    • Mad Mimi
    • -
    • Mailchimp
    • -
    • MailerLite
    • -
    • Sendy
    • -
    • Sendinblue
    • -
    • Twitter
    • -
    • YouTube
    • -
    • Zapier
    • -
    -

    After reading this feature list, you can probably imagine why SeedProd is the best Drag & Drop WordPress Website Builder and Landing Page Builder in the market.

    -

    Give SeedProd a try.

    -

    Want to unlock more blocks and page builder features? Upgrade to SeedProd Pro.

    -

    Credits

    -

    This plugin is created by John Turner and Syed Balkhi.

    -

    Branding Guideline

    -

    SeedProd® is a registered trademark of SeedProd LLC. When writing about the Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder plugin by SeedProd, please use the following format.

    -
      -
    • SeedProd (correct)
    • -
    • Seedprod (incorrect)
    • -
    • Seed Prod (incorrect)
    • -
    • seedprod (incorrect)
    • -
    -

    What’s Next

    -

    If you like our WordPress Website Builder and Landing Page Builder plugin, then consider checking out our other projects:

    -
      -
    • OptinMonster – Get More Email Subscribers with the most popular conversion optimization plugin for WordPress.
    • -
    • WPForms – #1 drag & drop online form builder for WordPress.
    • -
    • MonsterInsights – See the Stats that Matter and Grow Your Business with Confidence. Best Google Analytics Plugin for WordPress.
    • -
    • WP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    • -
    • RafflePress – Best WordPress giveaway and contest plugin.
    • -
    • Smash Balloon – #1 social feeds plugin for WordPress.
    • -
    • SearchWP – Advanced WordPress search plugin.
    • -
    • PushEngage – Best web push notification plugin.
    • -
    • TrustPulse – Social Proof Notification to Boost Conversions.
    • -
    • All In One SEO – Best WordPress SEO plugin to help you improve your search engine rankings.
    • -
    • Easy Digital Downloads – From eBooks, to WordPress plugins, to PDF files and more, we make selling digital products a breeze.
    • -
    • AffiliateWP – An easy-to-use, reliable WordPress plugin that gives you the affiliate marketing tools you need to grow your business and make more money.
    • -
    • WP Simple Pay – Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required.
    • -
    • Sugar Calendar – Simple, light-weight, and provide just the major features you need for event management.
    • -
    -

    Visit WPBeginner to learn from our WordPress Tutorials and find out about other best WordPress plugins.

    -', '6.19.4', 'SeedProd', '5.0', '5.6', '6.8.3', 'https://downloads.wordpress.org/plugin/coming-soon.6.19.4.zip', '2014-01-21 00:00:00+00', '2025-10-26 14:33:00+00', 'https://profiles.wordpress.org/seedprod/', 98, 4693, 4, 4, 700000, 30920456, 'https://www.seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugin-uri-link', 'http://www.seedprod.com', NULL, NULL, 'https://wordpress.org/support/plugin/coming-soon/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Website Builder by SeedProd — Theme Builder, Landing Page Builder, Coming Soon Page, Maintenance Mode", "slug": "coming-soon", "tags": {"landing-page": "landing page", "page-builder": "page builder", "website-builder": "website builder", "coming-soon-page": "coming soon page", "maintenance-mode": "maintenance mode"}, "added": "2014-01-21", "icons": {"1x": "https://ps.w.org/coming-soon/assets/icon-128x128.png?rev=2402575", "2x": "https://ps.w.org/coming-soon/assets/icon-256x256.png?rev=2402574"}, "author": "SeedProd", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/coming-soon/assets/banner-772x250.png?rev=2683809", "high": "https://ps.w.org/coming-soon/assets/banner-1544x500.png?rev=2683810"}, "ratings": {"1": 81, "2": 15, "3": 12, "4": 53, "5": 4532}, "version": "6.19.4", "homepage": "https://www.seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugin-uri-link", "requires": "5.0", "sections": {"faq": "\n
    \nCan I build my entire WordPress website with this page builder?\n\n

    \n

    With our WordPress Website Builder, you can now create your entire website and WordPress theme with SeedProd in the Pro version.

    \n

    You can build landing pages, coming soon pages, maintenance mode pages in the free version. In addition, in the Pro version, you can create 404 pages and login pages.

    \n

    \n
    \nWill the SeedProd Page Builder work with my Theme\n\n

    \n

    Coming soon pages, maintenance mode pages, and landing pages are standalone pages and are separate from your theme’s design. If you use the SeedProd WordPress Website Builder to build your website then a theme is not needed. SeedProd has its own theme built-in theme which can be customized. You can also use the Gutenberg, Elementor, Divi, Beaver Builder, Visual Composer, Thrive Architect, Brizy, or any other page builder on websites built with SeedProd. More Info »

    \n

    \n
    \nDoes it work with WooCommerce?\n\n

    \n

    Yes, you can build an entire WooCommerce Store with our WordPress Website Builder. Note: WooCommerce & eCommerce Integration are only available in the Pro version.

    \n

    \n
    \nDo I have to be a developer to use SeedProd’s Page Builder?\n\n

    \n

    No, SeedProd is an easy-to-use drag and drop page builder which requires no code or coding experience.

    \n

    \n
    \nWhat kind of landing pages can I create?\n\n

    \n

    You can create a variety of landing pages, including but are not limited to:
    \n* Coming Soon Pages
    \n* Maintenance Mode Pages
    \n* Sales Pages
    \n* Opt-In Pages
    \n* Webinar Pages
    \n* Thank You Pages
    \n* 404 Pages
    \n* Login Pages
    \n* Any type of landing page you can imagine.

    \n

    \n
    \nWhat’s the difference between Coming Soon Page Mode and Maintenance Mode?\n\n

    \n

    Coming Soon Page Mode returns an http status 200 and allows your site to be indexed by Google and other search engines while under construction. You should always use Coming Soon Page mode when your site is under construction.

    \n

    Maintenance Mode returns an http status code 503 and should be used when doing short-term maintenance on an existing site. This will let search engines know your site is undergoing maintenance and should return in 1 day when maintenance mode is finished.

    \n

    \n
    \nWho can see the website while it’s under construction?\n\n

    \n

    Only logged in visitors can see the website while your website is under construction. Logged out visitors will see the under construction page or maintenance mode page depending on which mode you have selected.

    \n

    \n
    \nDisabled the Coming Soon Plugin and it still shows\n\n

    \n

    This is always a WordPress caching issue. Go to the caching plugin’s settings page and clear the cache.
    \nMore Info »

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Annoying and useless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sirbalmore on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The ai site builder was horrid and useless. But even using it for ''maintenance mode'' has a constant and ever present notification at the top of EVERY other plugin you use saying, \"Are you enjoying SeedProd? (I love it) or (No really)\" and it won''t go away even when you close the notification. Yeah, you really want a review?? You''re annoying and invasive. You can ask when I open the SeedProd plugin but nonstop at the top of every plugin? No thank you. Have some self respect.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy macdad96 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I use this on all of our WordPress sites.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome Plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tkrowisz6 on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Perfect for when I am changing the website, or just have it temporarily down for maintenance. The templates are simple, and do not take a lot of work to use. Saves a lot of time.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plug in!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy corpporthis on September 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just what we needed! Awesome plugin, great features, easy to use and understand. Love it!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Well Deserved 5 Stars

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy axnfell on August 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    All you want these days is a simple to use plugin that does what it states on the tin! Its easy to use and does a great job, would not leave home without it. James

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Semplice ed intuitivo

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy michelangelotrbi on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Finalmente sono riuscito a trovare un plugin che mi permette di impostare una pagina di cortesia con dei modelli preimpostati e personalizzabili quando metto il sito in manutenzione per gli aggiornamenti delle sue funzionalità.

    \n\n\n\n

    Isola completamente il front-end di WordPress in modo che, per tutti gli utenti registrati e non, sia impossibile accedere alle pagine, l''unico utente che può accedervi e visualizzarle è l''utente di amministrazione.

    \n\n\n\n

    Perfetto e semplice da configurare...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No Problems

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alb614 on August 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    So far I''ve had no issues.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I've been way overdue to write a review for SeedProd. Love it.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dgsfny on August 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The SeedProd plugin is super easy to use and for free, offers a lot of different features and great design. I often use the Maintenance page options to spin up something super fast. The team is always adding new features, it''s a plug that has an active team behind it so I also appreciate it as a plugin that is safe to use. I''ve been using SeedProd for at least several years and highly recommend the plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    it works flawless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lalezar on August 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its my first Website with wordpress. And I use Seedprod to generate a coming soon page. The plugin was easy to download, install (all in Wordpress) and also to configure for a coming soon page. And so far, it works flawless. thanks for providing it free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Ottimo plug-in anche in versione free

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy La Ziviani (mymeitai) on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ho scaricato la versione gratuita per poter creare alcune pagine del mio sito con una grafica diversa da quella del tema principale. Lo trovo davvero completo e facile da usare. Peccato per i limiti della versione gratuita... io che lo utilizzo solo per il mio sito per una piccola attività di promozione artistica, avrei apprezzato che si potesse salvare almeno un template!
    Se un giorno dovessi cambiare il tema del mio sito sceglierei di acquistare questo plug-in anziché investire in un nuovo tema.
    Grazie!

    \n
    \n
    \n", "changelog": "

    6.12.2

    \n

    Changelog »

    \n

    6.9.0

    \n
      \n
    • Added – Flexbox Alignment on Rows and Columns
    • \n
    • Added – Textblock Updates: Simple Bullets and Lists, Superscript and Subscript.
    • \n
    • Added – Fixed Pinned Layout Panel
    • \n
    • Added – Advanced Margin Controls
    • \n
    • Added – Advanced Shadow Controls
    • \n
    • Added – Advanced CSS Classes and ID
    • \n
    • Added – Fixed and Sticky Position Rows and Cols
    • \n
    • Added – Overflow Control Rows and Columns
    • \n
    • Added – PRO NEW WordPress Website Builder Functionality.
    • \n
    • Added – PRO Ability to create themes with SeedProd.
    • \n
    • Added – PRO Ability to create theme parts: header, footer, pages.
    • \n
    • Added – PRO Ability to create global parts that are updated across the site.
    • \n
    • Added – PRO Advanced conditions to determine where theme parts are displayed.
    • \n
    • Added – PRO Global CSS to create a sitewide design system, with global color palettes.
    • \n
    • Added – PRO Template tags to display dynamic WordPress content.
    • \n
    • Added – PRO Posts
    • \n
    • Added – PRO Post Title
    • \n
    • Added – PRO Post Content
    • \n
    • Added – PRO Post Excerpt
    • \n
    • Added – PRO Featured Image
    • \n
    • Added – PRO Author Box
    • \n
    • Added – PRO Comments
    • \n
    • Added – PRO Post Navigation
    • \n
    • Added – PRO Post Info
    • \n
    • Added – PRO Archive Title
    • \n
    • Added – PRO Site Logo
    • \n
    • Added – PRO Template Parts
    • \n
    • Added – PRO Ability to Add WordPress widgets
    • \n
    • Added – PRO Social Profile Updates: Medium, Discord, Telegram, Slack, Weibo, Vimeo, Facebook Messenger, Whatsapp
    • \n
    \n

    6.6.0

    \n
      \n
    • Added – Column Alignment Controls
    • \n
    • Added – Divice Visibility Controls
    • \n
    • Added – Full Length Template Previews
    • \n
    • Tweak – Version Sync with Pro
    • \n
    \n

    6.2.1

    \n
      \n
    • Tweak – Clarify External Service is used for license upgrades.
    • \n
    • Tweak – Removed helper function that was set for pre-release.
    • \n
    \n

    6.2.0

    \n
      \n
    • Added – WooCommerce Blocks Pro Version
    • \n
    • Added – Accordion Block Pro Version
    • \n
    • Added – Testimonial Block Version
    • \n
    • Added – Ability to Edit WordPress pages with SeedProd, this can be disabled in the SeedProd settings page.
    • \n
    • Fixed – IOS cover image bug
    • \n
    • Fixed – Yoast and AllinOne SEO Pro edit page links
    • \n
    • Fixed – WP Version filter not returning default value
    • \n
    • Tweak – Added filter to top level menu position ‘seedprod_top_level_menu_postion’
    • \n
    • Tweak – Added imprint and privacy to default excluded pages
    • \n
    \n

    6.0.11.2

    \n
      \n
    • Tweak – Redirect Default Login Page Behavior and added inline explanation
    • \n
    \n

    6.0.11.1

    \n
      \n
    • Fixed – Some SEO plugins not adding title tag to landing pages
    • \n
    • Tweak – Made settings more accessible
    • \n
    • Fixed – Background Slideshow Bug – PRO
    • \n
    • Fixed – Tweet Share Bug – PRO
    • \n
    \n

    6.0.11.0

    \n
      \n
    • Added – Login Block
    • \n
    \n

    6.0.10.1

    \n
      \n
    • Added – 10 New Templates
    • \n
    • Added – Undo and Redo Functionality
    • \n
    • Added = Permissions Filters
    • \n
    • Added – Easier Upgrade Path
    • \n
    • Fixed – WPRocket Compatability
    • \n
    • Fixed – BGSlideshow timeout issue
    • \n
    • Fixed – Highlight left menu when page is selected
    • \n
    • Fixed – Mobile Fonts Settings
    • \n
    • Tweak – Animate Optin Button
    • \n
    • Tweak – Moved Preview Button
    • \n
    • Tweak – Made Sections Clickable In Free Verson
    • \n
    • Tweak – Attribution Fix
    • \n
    \n

    6.0.9.0

    \n
      \n
    • Added – Ability to link an image
    • \n
    • Tweak – HTML 5 Email Validation
    • \n
    • Tweak – css fix in admin
    • \n
    \n

    6.0.8.5

    \n
      \n
    • Added – debug tools
    • \n
    • Tweak – make sure wp-mediaelement gets loaded in the builder
    • \n
    • Tweak – feedback request
    • \n
    \n

    6.0.8.4

    \n
      \n
    • Fixed – Landing page preview link
    • \n
    • Fixed – Duplicate Page
    • \n
    • Tweak – removed deprecated function
    • \n
    \n

    6.0.8.3

    \n
      \n
    • Tweak – menus require manage_options capability
    • \n
    \n

    6.0.8.2

    \n
      \n
    • Reverted – Preview link ad added flush permalink
    • \n
    \n

    6.0.8.1

    \n
      \n
    • Tweak – Added preview_nonce to preview link
    • \n
    \n

    6.0.8

    \n
      \n
    • Fixed – PHP warning in admin to undefined database table
    • \n
    • Tweak – How Preview links are constructed
    • \n
    \n

    6.0.7

    \n
      \n
    • Tweak – Flush Permalinks Programmatically so Previews Work
    • \n
    \n

    6.0.0

    \n
      \n
    • New – Complete rebuild of the plugin.
    • \n
    • New – Drag and Drop Page Builder
    • \n
    • New – Page Blocks
    • \n
    • New – Coming Soon Pages
    • \n
    • New – Maintenance Pages
    • \n
    • New – Landing Pages
    • \n
    • New – Custom 404 Pages
    • \n
    \n", "description": "

    SeedProd – Drag & Drop WordPress Website Builder, Landing Page Builder, Coming Soon Page & Maintenance Mode

    \n

    SeedProd was originally created in 2011 and allowed you to create a Coming Soon Page or a Maintenance Mode Page. You could work on your website in private while visitors see a “Coming Soon” or “Maintenance Mode” page. It still does this and really well!

    \n

    But People loved SeedProd’s easy-to-use page builder so much and wanted to create their entire website with it. So, due to popular demand, you can do just that! Yes, you can now use SeedProd as a WordPress Website Builder.

    \n

    This means you can build every part of your WordPress custom theme. WordPress Headers, Footers, Single Page Templates, Archives, Global Parts, WooCommerce Product Pages, WooCommerce Carts, and more. The best part is SeedProd is a No-Code Website Builder. No coding knowledge or experience is needed. Full Site Editing made easy.

    \n

    In addition, SeedProd is still the best Landing Page Builder. Create a variety of landing pages that include but are not limited to: Sales Pages, Coming Soon Pages, Maintenance Mode Pages, 404 Pages, Login Pages, Webinar Pages, and Thank You Pages.

    \n

    Sites and Pages built with SeedProd’s Drag and Drop Page builder are lightweight, super fast, and it’s so easy to use anyone can create a WordPress Website or Landing Page.

    \n
    \n

    SeedProd Pro
    \n This plugin is the lite version of the SeedProd Website Builder and Landing Page plugin that comes with all the features you will ever need to create great-looking landing pages, coming soon pages, and maintenance modes pages within your WordPress website with no code. Click here to purchase SeedProd, the best premium WordPress Website Builder and Landing Page plugin now!

    \n
    \n

    Watch John Turner, the Co-Founder of SeedProd, build the SeedProd.com website with the SeedProd WordPress Website Builder

    \n

    \n

    Using SeedProd as a WordPress Website Builder

    \n

    SeedProd is a WordPress Website Theme Builder, which allows you to create custom theme and template parts like: Headers, Footers, Front Pages, Content Pages, Blog Posts, Blog Pages, Archives, Search Results, Category Pages, Tag Pages, Sidebars, WooCommerce Product Pages. WooCommerce Checkout Pages, WooCommerce Cart Pages, WooCommerce Shop Pages all using our no-code Theme Builder.

    \n

    Typically you would need a traditional WordPress theme to accomplish this. With SeedProd no theme is needed. No more conflicts between your theme and page builder. SeedProd is a complete turnkey solution that gets you a website fast.

    \n

    Themes created with SeedProd can use any builder. Of course, SeedProd is the best page builder in our opinion, but you can use: Gutenberg Page Builder, Elementor Page Builder, Beaver Builder Page Builder, Divi Page Builder, Visual Composer Page Builder, Brizy Page Builder, Thrive Architect Page Builder, Beaver Builder, and the list goes on…

    \n

    SeedProd also has a growing library of 200+ beautiful pre-built WordPress themes, templates, blocks, sections and complete websites to help you get started. Did I mention, no coding is required 🙂

    \n

    Creating WordPress Landing Pages with SeedProd

    \n

    What are landing pages? A landing page is a standalone web page that a person “lands” on after clicking through from an email, ad, or other digital location. Most of the time, these landing pages have a different design from the rest of your site and do not show your website’s standard header and footer.

    \n

    Landing Pages have a particular purpose and desired user action; therefore, you want them to be distraction-free as possible. With SeedProd, it is super easy to create high-converting landing pages for any purpose, that are entirely separate from your website’s design.

    \n

    You can use our Domain Mapping feature to put landings page on their own domain, our Dynamic Text feature to add personalization, or our WooCommerce Blocks to build one-off product pages. These are just a few of the many powerful features SeedProd provides.

    \n

    Building Coming Soon Pages and Maintenance Mode Pages with SeedProd

    \n

    SeedProd allows you to build a coming soon or maintenance mode page that will hide your site from visitors and search engines like Google. You can work on your website in private. When the website uses coming soon mode, the page will be indexed by Google as long as your site is not set to be private in WordPress.

    \n

    In Maintenance Mode, we return a 503 header status that lets Google know your site is down for maintenance.

    \n

    Both of these modes are essential for any WordPress Website to have.

    \n

    The Free Version of SeedProd comes with a variety of Coming Soon Page and Maintenance Mode templates.

    \n

    Full Page Builder Feature List:

    \n
      \n
    • WordPress Theme Builder – Create Headers, Footers, Pages, Posts, Archives, Sidebars, WooCommerce Pages or any part of a WordPress theme with our no-code Theme Builder.
    • \n
    • Fast Drag & Drop Page Builder – Our page builder is super fast, lightweight and responsive.
    • \n
    • WordPress Themes created with SeedProd work with any page builder.
    • \n
    • Landing Pages work with any WordPress Theme.
    • \n
    • 200+ Professionally Designed WordPress Themes, Landing Page Templates & Layout Sections
    • \n
    • 80+ Pro Page Blocks – We have created a variety of blocks to display static and dynamic content.
    • \n
    • Landing Page Templates – Sale Pages, Coming Soon Pages, Maintenance Mode Pages, Webinar Pages, Giveaway Pages, Thank You Pages, 404 Pages, and Login Pages
    • \n
    • Responsive and Mobile Ready – Pages created with SeedProd look great on any device.
    • \n
    • Premium Integrations – Collect emails with your favorite 3rd party email marketing service providers, including MailChimp, ActiveCampaign, ConvertKit, Constant Contact, and more…
    • \n
    • Subscriber Management – Track every subscriber with or without a 3rd party email provider.
    • \n
    • Stock Images – Get In-Plugin Access to over 2 Million Stock Images. Searchable, Resized, and Optimized for the Web.
    • \n
    • Live Previews – We allow you to see live previews of the page while it’s in any state, draft, live, or just testing.
    • \n
    • Layout Navigation – Use our layout navigation, which is a mini-map of your page, to easily rearrange sections, rows, columns, blocks, or access your page settings
    • \n
    • Revision History, Undo & Redo – With one click reverts, you can go back to any previously saved point on your page and even see who made those particular changes.
    • \n
    • Draft Mode – Work on your page in private without revealing its construction to the public.
    • \n
    • Mobile Device Preview – See what your pages will look like on desktop and mobile devices before you go live.
    • \n
    • Bloat Free Code – The code our builder produces, unlike other builders, is bloat-free and minimal to load your page quickly.
    • \n
    • Color Schemes – Choose from over 20 built-in color schemes or create your own custom color palette to use throughout your landing page design.
    • \n
    • Font Combinations – SeedProd integrates with Google Fonts to provide unlimited font combinations.
    • \n
    • Custom CSS – Need to tweak the style of an element on your page? No problem!
    • \n
    • Domain Mapping – Domain Mapping lets you create landing pages and point them to any domain name instead of your main website domain.
    • \n
    • Dynamic Text – Dynamic Text lets you dynamically insert dates or values from a query parameter to personalize your landing pages.
    • \n
    • Custom Scripts – Need to add a tracking script or widget from another website? Use the built-in header and footer scripts area to implement more technical tweaks.
    • \n
    • Spam Protection – Protect your landing pages from spam, bots, and fraudulent submissions with Google ReCaptcha
    • \n
    \n

    WordPress Blocks:

    \n
      \n
    • Standard Blocks – Headline, Text, List, Button, Image, Video, Divider, Spacer, Column
    • \n
    • Advanced Blocks – Giveaway, Contact Form, Optin Form, Countdown, Social Profiles, Social Sharing, Animated Headlines, Progress Bar, Icon, Testimonials, Image Carousel, Image Box, Icon Box, Nav Menu, Pricing Tables, Page Anchor, Star Rating, Accordion, Shortcode, Login Form, Google Maps, Seach Form, Custom HTML
    • \n
    • Social Media Blocks – Facebook Page, Facebook Embed, Facebook Like, Facebook Comments, Twitter Embed Tweet, Twitter Embed Timeline, Twitter Tweet Button, Twitter Follow Button
    • \n
    • WooCommerce Blocks – Add To Cart, Checkout, Cart, Product Grid, Recent Products, Sale Products, Best Selling Products, Featured Products, Top Rated Products, Menu Cart, Product Title, Product Featured Image, Product Price, Short Description, Additional Information, Products Related, Upsells, Product Rating, Product Stock, Archive Products, Product Data Tabs
    • \n
    • Theme Template Tag Blocks: Posts, Post Title, Post Content, Post Excerpt, Featured Image, Author Box, Post Comments, Post Navigation: Post Info, Archive Title, Site Logo, Global Template Parts
    • \n
    \n

    WordPress Email Marketing Integrations:

    \n
      \n
    • ActiveCampaign
    • \n
    • AWeber
    • \n
    • Campaign Monitor
    • \n
    • Constant Contact
    • \n
    • ConvertKit
    • \n
    • Drip
    • \n
    • Facebook
    • \n
    • GetResponse
    • \n
    • Google Recaptcha
    • \n
    • iContact
    • \n
    • Mad Mimi
    • \n
    • Mailchimp
    • \n
    • MailerLite
    • \n
    • Sendy
    • \n
    • Sendinblue
    • \n
    • Twitter
    • \n
    • YouTube
    • \n
    • Zapier
    • \n
    \n

    After reading this feature list, you can probably imagine why SeedProd is the best Drag & Drop WordPress Website Builder and Landing Page Builder in the market.

    \n

    Give SeedProd a try.

    \n

    Want to unlock more blocks and page builder features? Upgrade to SeedProd Pro.

    \n

    Credits

    \n

    This plugin is created by John Turner and Syed Balkhi.

    \n

    Branding Guideline

    \n

    SeedProd® is a registered trademark of SeedProd LLC. When writing about the Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder plugin by SeedProd, please use the following format.

    \n
      \n
    • SeedProd (correct)
    • \n
    • Seedprod (incorrect)
    • \n
    • Seed Prod (incorrect)
    • \n
    • seedprod (incorrect)
    • \n
    \n

    What’s Next

    \n

    If you like our WordPress Website Builder and Landing Page Builder plugin, then consider checking out our other projects:

    \n
      \n
    • OptinMonster – Get More Email Subscribers with the most popular conversion optimization plugin for WordPress.
    • \n
    • WPForms – #1 drag & drop online form builder for WordPress.
    • \n
    • MonsterInsights – See the Stats that Matter and Grow Your Business with Confidence. Best Google Analytics Plugin for WordPress.
    • \n
    • WP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    • \n
    • RafflePress – Best WordPress giveaway and contest plugin.
    • \n
    • Smash Balloon – #1 social feeds plugin for WordPress.
    • \n
    • SearchWP – Advanced WordPress search plugin.
    • \n
    • PushEngage – Best web push notification plugin.
    • \n
    • TrustPulse – Social Proof Notification to Boost Conversions.
    • \n
    • All In One SEO – Best WordPress SEO plugin to help you improve your search engine rankings.
    • \n
    • Easy Digital Downloads – From eBooks, to WordPress plugins, to PDF files and more, we make selling digital products a breeze.
    • \n
    • AffiliateWP – An easy-to-use, reliable WordPress plugin that gives you the affiliate marketing tools you need to grow your business and make more money.
    • \n
    • WP Simple Pay – Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required.
    • \n
    • Sugar Calendar – Simple, light-weight, and provide just the major features you need for event management.
    • \n
    \n

    Visit WPBeginner to learn from our WordPress Tutorials and find out about other best WordPress plugins.

    \n", "screenshots": "
    1. \"WordPress

      WordPress Website Builder

    2. \"WordPress

      WordPress Theme Example

    3. \"Page

      Page Builder Example

    4. \"Coming

      Coming Soon Page Example

    5. \"Maintenance

      Maintenance Mode Example

    6. \"Sales

      Sales Landing Page Example

    7. \"Optin

      Optin Lead Squeeze Landing Page Example

    8. \"Webinar

      Webinar Landing Page Example

    9. \"Thank

      Thank You Page Example

    "}, "versions": {"4.0.0": "https://downloads.wordpress.org/plugin/coming-soon.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/coming-soon.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/coming-soon.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/coming-soon.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/coming-soon.4.0.4.zip", "4.1.0": "https://downloads.wordpress.org/plugin/coming-soon.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/coming-soon.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/coming-soon.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/coming-soon.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/coming-soon.4.1.4.zip", "4.2.0": "https://downloads.wordpress.org/plugin/coming-soon.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/coming-soon.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/coming-soon.4.2.2.zip", "5.0.0": "https://downloads.wordpress.org/plugin/coming-soon.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/coming-soon.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/coming-soon.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/coming-soon.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/coming-soon.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/coming-soon.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/coming-soon.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/plugin/coming-soon.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/plugin/coming-soon.5.0.8.zip", "5.0.9": "https://downloads.wordpress.org/plugin/coming-soon.5.0.9.zip", "5.1.0": "https://downloads.wordpress.org/plugin/coming-soon.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/coming-soon.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/coming-soon.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/coming-soon.5.1.3.zip", "6.0.5": "https://downloads.wordpress.org/plugin/coming-soon.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/coming-soon.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/coming-soon.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.zip", "6.2.0": "https://downloads.wordpress.org/plugin/coming-soon.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/coming-soon.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/coming-soon.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/coming-soon.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/coming-soon.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/coming-soon.6.2.5.zip", "6.6.0": "https://downloads.wordpress.org/plugin/coming-soon.6.6.0.zip", "trunk": "https://downloads.wordpress.org/plugin/coming-soon.zip", "5.0.10": "https://downloads.wordpress.org/plugin/coming-soon.5.0.10.zip", "5.0.11": "https://downloads.wordpress.org/plugin/coming-soon.5.0.11.zip", "5.0.12": "https://downloads.wordpress.org/plugin/coming-soon.5.0.12.zip", "5.0.13": "https://downloads.wordpress.org/plugin/coming-soon.5.0.13.zip", "5.0.14": "https://downloads.wordpress.org/plugin/coming-soon.5.0.14.zip", "5.0.15": "https://downloads.wordpress.org/plugin/coming-soon.5.0.15.zip", "5.0.16": "https://downloads.wordpress.org/plugin/coming-soon.5.0.16.zip", "5.0.17": "https://downloads.wordpress.org/plugin/coming-soon.5.0.17.zip", "5.0.18": "https://downloads.wordpress.org/plugin/coming-soon.5.0.18.zip", "5.0.19": "https://downloads.wordpress.org/plugin/coming-soon.5.0.19.zip", "5.0.20": "https://downloads.wordpress.org/plugin/coming-soon.5.0.20.zip", "5.0.21": "https://downloads.wordpress.org/plugin/coming-soon.5.0.21.zip", "5.0.22": "https://downloads.wordpress.org/plugin/coming-soon.5.0.22.zip", "5.0.23": "https://downloads.wordpress.org/plugin/coming-soon.5.0.23.zip", "5.0.24": "https://downloads.wordpress.org/plugin/coming-soon.5.0.24.zip", "5.0.25": "https://downloads.wordpress.org/plugin/coming-soon.5.0.25.zip", "5.0.26": "https://downloads.wordpress.org/plugin/coming-soon.5.0.26.zip", "6.10.0": "https://downloads.wordpress.org/plugin/coming-soon.6.10.0.zip", "6.12.0": "https://downloads.wordpress.org/plugin/coming-soon.6.12.0.zip", "6.12.2": "https://downloads.wordpress.org/plugin/coming-soon.6.12.2.zip", "6.13.0": "https://downloads.wordpress.org/plugin/coming-soon.6.13.0.zip", "6.13.1": "https://downloads.wordpress.org/plugin/coming-soon.6.13.1.zip", "6.15.3": "https://downloads.wordpress.org/plugin/coming-soon.6.15.3.zip", "6.15.4": "https://downloads.wordpress.org/plugin/coming-soon.6.15.4.zip", "6.15.6": "https://downloads.wordpress.org/plugin/coming-soon.6.15.6.zip", "6.15.7": "https://downloads.wordpress.org/plugin/coming-soon.6.15.7.zip", "6.17.4": "https://downloads.wordpress.org/plugin/coming-soon.6.17.4.zip", "6.18.4": "https://downloads.wordpress.org/plugin/coming-soon.6.18.4.zip", "6.18.5": "https://downloads.wordpress.org/plugin/coming-soon.6.18.5.zip", "6.18.9": "https://downloads.wordpress.org/plugin/coming-soon.6.18.9.zip", "6.19.0": "https://downloads.wordpress.org/plugin/coming-soon.6.19.0.zip", "6.19.1": "https://downloads.wordpress.org/plugin/coming-soon.6.19.1.zip", "6.19.3": "https://downloads.wordpress.org/plugin/coming-soon.6.19.3.zip", "6.19.4": "https://downloads.wordpress.org/plugin/coming-soon.6.19.4.zip", "6.0.8.1": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.1.zip", "6.0.8.2": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.2.zip", "6.0.8.3": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.3.zip", "6.0.8.4": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.4.zip", "6.0.8.5": "https://downloads.wordpress.org/plugin/coming-soon.6.0.8.5.zip", "6.0.9.0": "https://downloads.wordpress.org/plugin/coming-soon.6.0.9.0.zip", "6.15.18": "https://downloads.wordpress.org/plugin/coming-soon.6.15.18.zip", "6.15.19": "https://downloads.wordpress.org/plugin/coming-soon.6.15.19.zip", "6.15.20": "https://downloads.wordpress.org/plugin/coming-soon.6.15.20.zip", "6.15.21": "https://downloads.wordpress.org/plugin/coming-soon.6.15.21.zip", "6.15.22": "https://downloads.wordpress.org/plugin/coming-soon.6.15.22.zip", "6.15.23": "https://downloads.wordpress.org/plugin/coming-soon.6.15.23.zip", "6.18.10": "https://downloads.wordpress.org/plugin/coming-soon.6.18.10.zip", "6.18.11": "https://downloads.wordpress.org/plugin/coming-soon.6.18.11.zip", "6.18.12": "https://downloads.wordpress.org/plugin/coming-soon.6.18.12.zip", "6.18.14": "https://downloads.wordpress.org/plugin/coming-soon.6.18.14.zip", "6.18.15": "https://downloads.wordpress.org/plugin/coming-soon.6.18.15.zip", "6.18.16": "https://downloads.wordpress.org/plugin/coming-soon.6.18.16.zip", "6.18.17": "https://downloads.wordpress.org/plugin/coming-soon.6.18.17.zip", "6.18.18": "https://downloads.wordpress.org/plugin/coming-soon.6.18.18.zip", "6.9.0.8": "https://downloads.wordpress.org/plugin/coming-soon.6.9.0.8.zip", "6.0.10.1": "https://downloads.wordpress.org/plugin/coming-soon.6.0.10.1.zip", "6.0.11.1": "https://downloads.wordpress.org/plugin/coming-soon.6.0.11.1.zip", "6.15.13.1": "https://downloads.wordpress.org/plugin/coming-soon.6.15.13.1.zip", "6.15.15.3": "https://downloads.wordpress.org/plugin/coming-soon.6.15.15.3.zip"}, "downloaded": 30920456, "description": "

    SeedProd – Drag & Drop WordPress Website Builder, Landing Page Builder, Coming Soon Page & Maintenance Mode

    \n

    SeedProd was originally created in 2011 and allowed you to create a Coming Soon Page or a Maintenance Mode Page. You could work on your website in private while visitors see a “Coming Soon” or “Maintenance Mode” page. It still does this and really well!

    \n

    But People loved SeedProd’s easy-to-use page builder so much and wanted to create their entire website with it. So, due to popular demand, you can do just that! Yes, you can now use SeedProd as a WordPress Website Builder.

    \n

    This means you can build every part of your WordPress custom theme. WordPress Headers, Footers, Single Page Templates, Archives, Global Parts, WooCommerce Product Pages, WooCommerce Carts, and more. The best part is SeedProd is a No-Code Website Builder. No coding knowledge or experience is needed. Full Site Editing made easy.

    \n

    In addition, SeedProd is still the best Landing Page Builder. Create a variety of landing pages that include but are not limited to: Sales Pages, Coming Soon Pages, Maintenance Mode Pages, 404 Pages, Login Pages, Webinar Pages, and Thank You Pages.

    \n

    Sites and Pages built with SeedProd’s Drag and Drop Page builder are lightweight, super fast, and it’s so easy to use anyone can create a WordPress Website or Landing Page.

    \n
    \n

    SeedProd Pro
    \n This plugin is the lite version of the SeedProd Website Builder and Landing Page plugin that comes with all the features you will ever need to create great-looking landing pages, coming soon pages, and maintenance modes pages within your WordPress website with no code. Click here to purchase SeedProd, the best premium WordPress Website Builder and Landing Page plugin now!

    \n
    \n

    Watch John Turner, the Co-Founder of SeedProd, build the SeedProd.com website with the SeedProd WordPress Website Builder

    \n

    \n

    Using SeedProd as a WordPress Website Builder

    \n

    SeedProd is a WordPress Website Theme Builder, which allows you to create custom theme and template parts like: Headers, Footers, Front Pages, Content Pages, Blog Posts, Blog Pages, Archives, Search Results, Category Pages, Tag Pages, Sidebars, WooCommerce Product Pages. WooCommerce Checkout Pages, WooCommerce Cart Pages, WooCommerce Shop Pages all using our no-code Theme Builder.

    \n

    Typically you would need a traditional WordPress theme to accomplish this. With SeedProd no theme is needed. No more conflicts between your theme and page builder. SeedProd is a complete turnkey solution that gets you a website fast.

    \n

    Themes created with SeedProd can use any builder. Of course, SeedProd is the best page builder in our opinion, but you can use: Gutenberg Page Builder, Elementor Page Builder, Beaver Builder Page Builder, Divi Page Builder, Visual Composer Page Builder, Brizy Page Builder, Thrive Architect Page Builder, Beaver Builder, and the list goes on…

    \n

    SeedProd also has a growing library of 200+ beautiful pre-built WordPress themes, templates, blocks, sections and complete websites to help you get started. Did I mention, no coding is required 🙂

    \n

    Creating WordPress Landing Pages with SeedProd

    \n

    What are landing pages? A landing page is a standalone web page that a person “lands” on after clicking through from an email, ad, or other digital location. Most of the time, these landing pages have a different design from the rest of your site and do not show your website’s standard header and footer.

    \n

    Landing Pages have a particular purpose and desired user action; therefore, you want them to be distraction-free as possible. With SeedProd, it is super easy to create high-converting landing pages for any purpose, that are entirely separate from your website’s design.

    \n

    You can use our Domain Mapping feature to put landings page on their own domain, our Dynamic Text feature to add personalization, or our WooCommerce Blocks to build one-off product pages. These are just a few of the many powerful features SeedProd provides.

    \n

    Building Coming Soon Pages and Maintenance Mode Pages with SeedProd

    \n

    SeedProd allows you to build a coming soon or maintenance mode page that will hide your site from visitors and search engines like Google. You can work on your website in private. When the website uses coming soon mode, the page will be indexed by Google as long as your site is not set to be private in WordPress.

    \n

    In Maintenance Mode, we return a 503 header status that lets Google know your site is down for maintenance.

    \n

    Both of these modes are essential for any WordPress Website to have.

    \n

    The Free Version of SeedProd comes with a variety of Coming Soon Page and Maintenance Mode templates.

    \n

    Full Page Builder Feature List:

    \n
      \n
    • WordPress Theme Builder – Create Headers, Footers, Pages, Posts, Archives, Sidebars, WooCommerce Pages or any part of a WordPress theme with our no-code Theme Builder.
    • \n
    • Fast Drag & Drop Page Builder – Our page builder is super fast, lightweight and responsive.
    • \n
    • WordPress Themes created with SeedProd work with any page builder.
    • \n
    • Landing Pages work with any WordPress Theme.
    • \n
    • 200+ Professionally Designed WordPress Themes, Landing Page Templates & Layout Sections
    • \n
    • 80+ Pro Page Blocks – We have created a variety of blocks to display static and dynamic content.
    • \n
    • Landing Page Templates – Sale Pages, Coming Soon Pages, Maintenance Mode Pages, Webinar Pages, Giveaway Pages, Thank You Pages, 404 Pages, and Login Pages
    • \n
    • Responsive and Mobile Ready – Pages created with SeedProd look great on any device.
    • \n
    • Premium Integrations – Collect emails with your favorite 3rd party email marketing service providers, including MailChimp, ActiveCampaign, ConvertKit, Constant Contact, and more…
    • \n
    • Subscriber Management – Track every subscriber with or without a 3rd party email provider.
    • \n
    • Stock Images – Get In-Plugin Access to over 2 Million Stock Images. Searchable, Resized, and Optimized for the Web.
    • \n
    • Live Previews – We allow you to see live previews of the page while it’s in any state, draft, live, or just testing.
    • \n
    • Layout Navigation – Use our layout navigation, which is a mini-map of your page, to easily rearrange sections, rows, columns, blocks, or access your page settings
    • \n
    • Revision History, Undo & Redo – With one click reverts, you can go back to any previously saved point on your page and even see who made those particular changes.
    • \n
    • Draft Mode – Work on your page in private without revealing its construction to the public.
    • \n
    • Mobile Device Preview – See what your pages will look like on desktop and mobile devices before you go live.
    • \n
    • Bloat Free Code – The code our builder produces, unlike other builders, is bloat-free and minimal to load your page quickly.
    • \n
    • Color Schemes – Choose from over 20 built-in color schemes or create your own custom color palette to use throughout your landing page design.
    • \n
    • Font Combinations – SeedProd integrates with Google Fonts to provide unlimited font combinations.
    • \n
    • Custom CSS – Need to tweak the style of an element on your page? No problem!
    • \n
    • Domain Mapping – Domain Mapping lets you create landing pages and point them to any domain name instead of your main website domain.
    • \n
    • Dynamic Text – Dynamic Text lets you dynamically insert dates or values from a query parameter to personalize your landing pages.
    • \n
    • Custom Scripts – Need to add a tracking script or widget from another website? Use the built-in header and footer scripts area to implement more technical tweaks.
    • \n
    • Spam Protection – Protect your landing pages from spam, bots, and fraudulent submissions with Google ReCaptcha
    • \n
    \n

    WordPress Blocks:

    \n
      \n
    • Standard Blocks – Headline, Text, List, Button, Image, Video, Divider, Spacer, Column
    • \n
    • Advanced Blocks – Giveaway, Contact Form, Optin Form, Countdown, Social Profiles, Social Sharing, Animated Headlines, Progress Bar, Icon, Testimonials, Image Carousel, Image Box, Icon Box, Nav Menu, Pricing Tables, Page Anchor, Star Rating, Accordion, Shortcode, Login Form, Google Maps, Seach Form, Custom HTML
    • \n
    • Social Media Blocks – Facebook Page, Facebook Embed, Facebook Like, Facebook Comments, Twitter Embed Tweet, Twitter Embed Timeline, Twitter Tweet Button, Twitter Follow Button
    • \n
    • WooCommerce Blocks – Add To Cart, Checkout, Cart, Product Grid, Recent Products, Sale Products, Best Selling Products, Featured Products, Top Rated Products, Menu Cart, Product Title, Product Featured Image, Product Price, Short Description, Additional Information, Products Related, Upsells, Product Rating, Product Stock, Archive Products, Product Data Tabs
    • \n
    • Theme Template Tag Blocks: Posts, Post Title, Post Content, Post Excerpt, Featured Image, Author Box, Post Comments, Post Navigation: Post Info, Archive Title, Site Logo, Global Template Parts
    • \n
    \n

    WordPress Email Marketing Integrations:

    \n
      \n
    • ActiveCampaign
    • \n
    • AWeber
    • \n
    • Campaign Monitor
    • \n
    • Constant Contact
    • \n
    • ConvertKit
    • \n
    • Drip
    • \n
    • Facebook
    • \n
    • GetResponse
    • \n
    • Google Recaptcha
    • \n
    • iContact
    • \n
    • Mad Mimi
    • \n
    • Mailchimp
    • \n
    • MailerLite
    • \n
    • Sendy
    • \n
    • Sendinblue
    • \n
    • Twitter
    • \n
    • YouTube
    • \n
    • Zapier
    • \n
    \n

    After reading this feature list, you can probably imagine why SeedProd is the best Drag & Drop WordPress Website Builder and Landing Page Builder in the market.

    \n

    Give SeedProd a try.

    \n

    Want to unlock more blocks and page builder features? Upgrade to SeedProd Pro.

    \n

    Credits

    \n

    This plugin is created by John Turner and Syed Balkhi.

    \n

    Branding Guideline

    \n

    SeedProd® is a registered trademark of SeedProd LLC. When writing about the Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder plugin by SeedProd, please use the following format.

    \n
      \n
    • SeedProd (correct)
    • \n
    • Seedprod (incorrect)
    • \n
    • Seed Prod (incorrect)
    • \n
    • seedprod (incorrect)
    • \n
    \n

    What’s Next

    \n

    If you like our WordPress Website Builder and Landing Page Builder plugin, then consider checking out our other projects:

    \n
      \n
    • OptinMonster – Get More Email Subscribers with the most popular conversion optimization plugin for WordPress.
    • \n
    • WPForms – #1 drag & drop online form builder for WordPress.
    • \n
    • MonsterInsights – See the Stats that Matter and Grow Your Business with Confidence. Best Google Analytics Plugin for WordPress.
    • \n
    • WP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    • \n
    • RafflePress – Best WordPress giveaway and contest plugin.
    • \n
    • Smash Balloon – #1 social feeds plugin for WordPress.
    • \n
    • SearchWP – Advanced WordPress search plugin.
    • \n
    • PushEngage – Best web push notification plugin.
    • \n
    • TrustPulse – Social Proof Notification to Boost Conversions.
    • \n
    • All In One SEO – Best WordPress SEO plugin to help you improve your search engine rankings.
    • \n
    • Easy Digital Downloads – From eBooks, to WordPress plugins, to PDF files and more, we make selling digital products a breeze.
    • \n
    • AffiliateWP – An easy-to-use, reliable WordPress plugin that gives you the affiliate marketing tools you need to grow your business and make more money.
    • \n
    • WP Simple Pay – Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required.
    • \n
    • Sugar Calendar – Simple, light-weight, and provide just the major features you need for event management.
    • \n
    \n

    Visit WPBeginner to learn from our WordPress Tutorials and find out about other best WordPress plugins.

    \n", "donate_link": "http://www.seedprod.com", "num_ratings": 4693, "screenshots": {"1": {"src": "https://ps.w.org/coming-soon/assets/screenshot-1.png?rev=2402574", "caption": "WordPress Website Builder"}, "2": {"src": "https://ps.w.org/coming-soon/assets/screenshot-2.jpg?rev=2683840", "caption": "WordPress Theme Example"}, "3": {"src": "https://ps.w.org/coming-soon/assets/screenshot-3.png?rev=2683840", "caption": "Page Builder Example"}, "4": {"src": "https://ps.w.org/coming-soon/assets/screenshot-4.png?rev=2683840", "caption": "Coming Soon Page Example"}, "5": {"src": "https://ps.w.org/coming-soon/assets/screenshot-5.png?rev=2683840", "caption": "Maintenance Mode Example"}, "6": {"src": "https://ps.w.org/coming-soon/assets/screenshot-6.png?rev=2683840", "caption": "Sales Landing Page Example"}, "7": {"src": "https://ps.w.org/coming-soon/assets/screenshot-7.png?rev=2683840", "caption": "Optin Lead Squeeze Landing Page Example"}, "8": {"src": "https://ps.w.org/coming-soon/assets/screenshot-8.png?rev=2683840", "caption": "Webinar Landing Page Example"}, "9": {"src": "https://ps.w.org/coming-soon/assets/screenshot-9.png?rev=2683840", "caption": "Thank You Page Example"}}, "support_url": "https://wordpress.org/support/plugin/coming-soon/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "seedprod": {"avatar": "https://secure.gravatar.com/avatar/2d883c95bfb5c6bceaf025d740dd46527d3bf150601d0f2b7d9ddea5051267b5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/seedprod/", "display_name": "SeedProd"}}, "last_updated": "2025-10-26 2:33pm GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/coming-soon.6.19.4.zip", "author_profile": "https://profiles.wordpress.org/seedprod/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f153-714f-809d-4c4175c1e45a", "name": "Website Builder by SeedProd — Theme Builder, Landing Page Builder, Coming Soon Page, Maintenance Mode", "slug": "coming-soon", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761489180, "version": "6.19.4"}, "support_threads": 4, "requires_plugins": [], "short_description": "Easy Drag & Drop Page Builder. A complete solution to create a WordPress Website, Custom Themes, Landing Pages, Coming Soon & Maintenance Mode Pages.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 4}'); -INSERT INTO public.plugins VALUES ('019a30c1-6454-72a5-a028-c2c4ef145b3f', 'complianz-gdpr', 'Complianz – GDPR/CCPA Cookie Consent', 'Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookies Scan.', '

    Complianz is a GDPR/CCPA Cookie Banner plugin that supports GDPR, ePrivacy, DSGVO, TTDSG, LGPD, POPIA, APA, RGPD, CCPA/CPRA and PIPEDA with a conditional Cookie Consent Banner and customized Cookie Policy based on the results of the built-in Cookie Scan.

    -

    -

    Features

    -

    Cookie Consent Notice

    -
      -
    • Configure a Cookie Notice for your specific region: European Union, United Kingdom, United States, Australia, South Africa, Brazil or Canada. Or use one Cookie Notice worldwide.
    • -
    • Configure specific cookie consent per subregion, for example: European Union + TTDSG/DSGVO/CNIL or USA + specific states for CCPA/CPRA/CTDPA etc
    • -
    • Cookie Consent and Conditional Cookie Notice with Custom CSS and Customizable Templates. WCAG Level AA and ADA Compliant.
    • -
    • Banner Templates include: GDPR-friendly Cookie Wall – Accept/Dismiss – Consent per Category – Consent per Service
    • -
    • Banner Templates also include; Dismiss on scroll, time on page or both based on legislation
    • -
    • We aim to follow WCAG 2.1 AA guidelines and ADA best practices in the design of our cookie banners and legal documents to support accessibility.
    • -
    • No jQuery Dependency
    • -
    -

    Consent Management

    -
      -
    • Automatically configures your website based on wizard questions, WordPress scans and dedicated service and plugin integrations.
    • -
    • Blocks 3rd party cookies like Google Maps, Facebook, Instagram, AdSense, Hubspot, Recaptcha, Twitter, ActiveCampaign, and many more.
    • -
    • Custom integrations for plugins, themes and services are automatically detected.
    • -
    • Blocks iFrames, like YouTube, Vimeo, Dailymotion embedded videos and Social iFrames e.g. Instagram, Facebook et al.
    • -
    • Shows placeholders for blocked iFrames. Stills from videos and individual placeholders per (social) service.
    • -
    • Script Center to control scripts, iFrames and plugins per category or service. With dependency functionality and placeholders.
    • -
    • Proof of Consent: User consent registration that respects the GDPR data minimization guideline.
    • -
    • Periodical Cookie Scan for changes in Cookies, Plugins and 3rd Party services.
    • -
    • Automatically detects if you need a Cookie Notice (also called a Cookie Banner or Pop-Up).
    • -
    • Automatically anonymizes personal data for integrated statistics tools if needed.
    • -
    -

    Privacy Laws & Guidelines

    -
      -
    • Ready for GDPR, ePrivacy AVG, RGPD, LGPD, DSGVO, CNIL, PECR, UK DPA, UK GDPR, CCPA, COPPA, PIPEDA, CASL, POPIA, Privacy Act 1988, Australian Privacy Principles, The “Marco Civil” and the Brazilian General Data Protection Law.
    • -
    • Differentiate between GDPR, ePrivacy and DSGVO/CNIL or between CCPA/DNSMPI and NRS 603A, if needed.
    • -
    • We closely follow the latest developments in the ePrivacy regulation, the proposed Cookie Law for the European Union, and other legislation world-wide.
    • -
    -

    Legal Documents

    -
      -
    • A Cookie Policy; Generated by you with an easy wizard, drafted by an IT Law Firm.
    • -
    • Do Not Sell My Personal Information: DNSMPI Page for CCPA/CPRA – if required. (Now called Opt-out Preferences.)
    • -
    • Terms and Conditions are available in a separate plugin: Complianz – Terms and Conditions
    • -
    -

    Integrations

    -
      -
    • Detected Cookie Data is prefilled from cookiedatabase.org, with clear and transparent cookie descriptions, which are continuously updated.
    • -
    • Integrated with WordPress Privacy features. Export and erase personal data from our dashboard.
    • -
    • Implementation of Google Tag Manager, Google Analytics, Matomo, Matomo Tag Manager, Clicky, Yandex, Jetpack and Burst Statistics
    • -
    • Categorize your Cookies with Tag Manager or our Script Center, if needed.
    • -
    • -

      Integration with the WP Consent API

      -
    • -
    • -

      Integrates seamlessly with Gutenberg, Elementor, Divi, Forminator, WPBakery, Monsterinsights, GADWP, Beehive, WPForms, Gravity Forms, HappyForms, Contact Form 7 <5.4 (CF7), Woocommerce, Easy Digital Downloads, WP Google Maps, Google Maps Widget, Local Google Fonts, CAOS | Host Google Analytics Locally and other popular plugins.

      -
    • -
    • Tested with popular themes en page builders.
    • -
    • Gutenberg Blocks enabled.
      -

      Support

      -

      Complianz offers full support on the WordPress.org Forum. Before starting a new thread, please check available documentation and other support threads. Leave a clear and concise description of your issue, and we will respond as soon as possible.

    • -
    -

    Useful Links

    - -

    Premium Features

    -

    Complianz offers a Full Privacy Suite for WordPress on Complianz.io with even more features:

    -

    Cookie Consent Notice

    -
      -
    • Improve conversion with A/B Testing: which cookie banner has the best consent ratio? Run tests and measure what works best for your site.
    • -
    -

    Consent Management

    -
      -
    • Records of Consent: Keep record of your consent management changes and user’s consent registration. Integrates with Proof of Consent
    • -
    • Respects the Do Not Track settings and Global Privacy Controls in end-users browsers.
    • -
    • Geo IP Cookie Consent: Cookie Consent is different everywhere. Show the correct Cookie Notice based on IP location, but only if a banner is needed.
    • -
    • Google Consent Mode – Use Consent Mode by Google with Google Tag Manager or Google Analytics. No further set-up needed.
    • -
    • Integration with TCF v2.0. An IAB Europe Consent Framework for Publishers. Registered CMP ID: 332
    • -
    • Data Request Forms and Registration
    • -
    -

    Privacy Laws & Guidelines

    -

    Simultaneously select USA, Canada, United Kingdom, Australia, South Africa, Brazil and the EU as targeted regions with conditional Consent and dedicated Cookie Banners.

    -
      -
    • Support for GDPR / ePrivacy – European Union with Extension for Switzerland.
    • -
    • Support for USA / CCPA/CPRA/CPA/CTDPA/NRS 603A/UCPA/CDPA
    • -
    • Support for UK-GDPR / PECR and ICO Guidelines – United Kingdom.
    • -
    • Support for PIPEDA and CASL – Canada.
    • -
    • Support for Privacy Act 1988 & Australian Privacy Principles
    • -
    • Support for POPIA, the South African Protection of Personal Information Act
    • -
    • Supports The “Marco Civil” and the Brazilian General Data Protection Law (LGPD)
    • -
    -

    Legal Documents

    -
      -
    • Privacy statements (EU, CA, UK, AU, ZA, BR & USA).
    • -
    • Cookie policy (EU, UK, CA, AU, ZA, BR & USA).
    • -
    • Impressum (Germany & Austria) & Imprint for world wide use.
    • -
    • Disclaimer
    • -
    • Terms & Conditions Integration
    • -
    • Processing agreements (EU, UK, CA, AU, ZA, BR & USA).
    • -
    • Dataleak reporting tools (EU, UK, CA, AU, ZA, BR & USA).
    • -
    • Supports CCPA Consent and Legal documents.
    • -
    • COPPA ready with Children’s Privacy Policy (USA)
    • -
    • Children’s Privacy Policy (UK,CA & AU)
    • -
    -

    Support & Updates

    -
      -
    • Premium Support from our amazing team.
    • -
    • Premium updates, new languages, features, regions and more to create the Ultimate Privacy Suite for WordPress.
    • -
    -

    About Complianz

    -

    Check out other plugins developed by Really Simple Plugins as well: Really Simple SSL

    -

    Complianz is on GitHub as well!

    -

    IMPORTANT! Complianz | GDPR/CCPA Cookie Consent can help you meet compliance requirements, but the user must ensure that all requirements are met.

    -

    Complianz provides your Cookie Policy with comprehensive cookie descriptions, supplied by cookiedatabase.org, operated by Complianz B.V. The plugin sends the results of Complianz’ local or advanced website scan to Cookiedatabase.org, for the sole purpose of providing you with accurate descriptions and keeping them up-to-date on a regular basis. The advanced website scan can be initialized after authentication and consent for security purposes.

    -

    We collect for research purposes:

    -
      -
    • Cookie names
    • -
    • Domain that provides the cookie names
    • -
    • Plugin list on the domain
    • -
    -

    For more information:

    - -

    For security purposes, we authenticate the advanced website scan with:

    -
      -
    • Email address
    • -
    -

    The advanced website scan collects public data from the user’s site, stores it for one hour, and then discards it without analysis.

    -

    For more information:

    - -

    Contact us if you have any questions, issues, or suggestions. Complianz | GDPR/CCPA Cookie Consent is developed by Complianz B.V..

    -', '7.4.2', 'Complianz', '5.9', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.2.zip', '2018-06-26 00:00:00+00', '2025-07-29 13:06:00+00', 'https://profiles.wordpress.org/complianz/', 96, 1565, 57, 50, 1000000, 23399610, 'https://www.wordpress.org/plugins/complianz-gdpr', 'https://paypal.me/complianz', NULL, NULL, 'https://wordpress.org/support/plugin/complianz-gdpr/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Complianz – GDPR/CCPA Cookie Consent", "slug": "complianz-gdpr", "tags": {"gdpr": "GDPR", "cookie": "cookie", "consent": "consent", "privacy": "privacy", "cookie-notice": "cookie notice"}, "added": "2018-06-26", "icons": {"1x": "https://ps.w.org/complianz-gdpr/assets/icon-128x128.png?rev=2881064", "2x": "https://ps.w.org/complianz-gdpr/assets/icon-256x256.png?rev=2881064"}, "author": "Complianz", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/complianz-gdpr/assets/banner-772x250.png?rev=2881064", "high": "https://ps.w.org/complianz-gdpr/assets/banner-1544x500.png?rev=2881064"}, "ratings": {"1": 66, "2": 14, "3": 14, "4": 38, "5": 1433}, "version": "7.4.2", "homepage": "https://www.wordpress.org/plugins/complianz-gdpr", "requires": "5.9", "sections": {"faq": "\n
    \nKnowledgebase\n\n

    \n

    Complianz maintains a continuously growing knowledgebase about GDPR, including subregions e.g. DSGVO and CNIL, CCPA, PIPEDA, COPPA, POPIA & other specific laws on complianz.io

    \n

    \n
    \nIs my website GDPR, COPPA, CCPA, DSGVO, TTDSG, AVG, CNIL, UK-GDPR, PECR, CASL, LGPD, POPIA and/or PIPEDA compliant with this plugin?\n\n

    \n

    We cannot guarantee compliance for your website. A correct configuration of this plugin by a website administrator is always required.

    \n

    \n
    \nWhen do I need a Cookie Notice?\n\n

    \n

    Complianz | GDPR/CCPA Cookie Consent will determine this automatically based on the laws of the region or regions, where most of your visitors come from.
    \nRegarding CCPA/CPRA, you always have to show which cookies you are using but there’s no obligation in asking consent.

    \n

    \n
    \nDo I always need a consent checkbox on contact forms?\n\n

    \n

    Not always. The Complianz Privacy Suite Premium plugin can determine if you need this, based on your answers in the wizard. It mainly depends on the type of information and the reason why your visitor use the contact form.

    \n

    \n
    \nWhat is the GDPR?\n\n

    \n

    The GDPR is a regulation within the EU law on privacy and data protection for any citizen within the EU and European Economic Area. It aims primarily on giving control to individuals over their personal data. The GDPR also addresses the export of personal data outside the EU.

    \n

    \n
    \nWhat is the CCPA?\n\n

    \n

    The CCPA (Californian Privacy Act) is a law set up by the Californian government. The law is adjudged to be one of the toughest and farthest-reaching consumer privacy laws in the US. It is mostly focused on giving insights on what personal data business gather and how to protect and control these personal data.

    \n

    \n
    \nWhat is COPPA?\n\n

    \n

    The Children’s Online Privacy Protection Act (COPPA) is a law designed to protect the online privacy of children under 13. It was set up in the 1990’s and states that website owners have to meet certain requirements regarding visitors with the age under 13.

    \n

    \n
    \nWhat are PECR & UK-GDPR?\n\n

    \n

    PECR (UK) covers the use of cookies and similar technologies for storing information and accessing information stored, on a user’s equipment such as a computer or mobile device.

    \n

    \n
    \nWhat are the Privacy Act 1988 & Australian Privacy Principles\n\n

    \n

    To comply with the Australian privacy laws a website operator should present a cookie policy and/or a privacy notice before or, if that is not practicable, as soon as practicable after, your website collects personal information about an individual.

    \n

    \n
    \nWhat are PIPEDA & CASL?\n\n

    \n

    Canada’s Anti-Spam Legislation (CASL) and Personal Information Protection and Electronic Documents Act (PIPEDA) require a website operator to obtain consent, either implied or express consent with a dedicated cookie statement.

    \n

    \n
    \nWhat POPIA (POPI Act)?\n\n

    \n

    POPIA is the acronym for the South African PROTECTION OF PERSONAL INFORMATION ACT. Similar to the GDPR, the UK-GDPR, and the Brasilian LGPD, it promotes the protection of personal information processed by public and private bodies, regulates the cross-border flow of personal information, and outlines the rights of data subjects.

    \n

    \n
    \nWhat are “Marco Civil” and the Brazilian General Data Protection Law (LGPD)?\n\n

    \n

    The Brazilian General Data Protection Law is similar to the GDPR, the UK-GDPR it promotes the protection of personal information processed by public and private bodies, regulates the cross-border flow of personal information, and outlines the rights of data subjects. The Marco Civil is the Brazilian name of the Brazilian Civil Rights Framework for the Internet a counterpart to European’s “ePrivacy”, although not similar.

    \n

    \n
    \nCan I create a Cookie Wall with this plugin?\n\n

    \n

    With some custom CSS this is possible, but we do not consider a cookie wall to be GDPR compliant, so it’s not actively supported. We do, however, have the option to create a Soft Cookie Wall. Which blocks interaction with the website, but dismissing remains a possibility.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Unwanted software installed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy scoalegil on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My team inadvertently installed \"really simple security\" which caused a bunch of headaches. The way it gets installed is very close to illegal here in Canada.

    If you want to sell me unrelated software, ask for permission to add me to your email list and let me decide if I want to open it, don''t stick it in the middle of another piece of software that I pay for and pretend it is useful.

    I had to jump through a bunch of hoops to restore the security of my client website that was ALWAYS https to get it back to https after this unwanted software changed the site url upon deactivation.

    I don''t care about what is or is not common on software. I bought a Complianz license because it was trusted and easy to setup. I normally pay close attention to avoid this kind of trickery but was fooled by this at the end of a VERY long set of detailed questions.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Best Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rodrigomg13 on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The Best Plugin - Used for 5 websites

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy markiljas on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Probably the best and most thorough plugin for consent banner. I really like the wizard and how it is basically set up and forget. I use it on four websites.

    \n\n\n\n

    I do wish options like consent on scroll/timeout and GTM server-side tacking options are available in GUI instead of being forced to rely on adding code and scripts, but perhaps this will be remedied in future updates.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Complianz | GDPR cookie consent great job

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rmielniczek on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My rating is 5 stars. Thank you a lot guys.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great with my theme.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Karin (beadshint) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Working great so far. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I hate loosing time

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy matteolavaggi on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I really hate plugins that don’t clearly state they’re paid in the main description. Stop wasting users’ time.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bios2000one on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Die Erweiterung ist wirklich super. Ich habe schon andere ausprobiert, aber diese ist absolut einfach zu bedienen und arbeitet perfekt.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin, very useful!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jayjay66 on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good installation, necessary plugin, great product

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy set up!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Nathan Saulter (nsaulter) on September 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really appreciate how easy and fast it is to set this up!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Una forma de cumplir con las normas de forma fácil

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pedromo on September 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Estupendo plugin para estar al día y cumplir las normas europeas, todo perfecto, fácil y sin complicaciones.

    \n
    \n
    \n", "changelog": "

    7.4.2

    \n
      \n
    • July 11th, 2025
    • \n
    • Translations: Updated translations.
    • \n
    • Accessibility: Improved cookie banner for better accessibility.
    • \n
    • Fix: Backend not loading due to missing dependency on WordPress versions lower than 6.6.
    • \n
    \n

    7.4.1

    \n
      \n
    • June 18th, 2025
    • \n
    • New: Notifications system.
    • \n
    • Update: Other plugins suggestion component.
    • \n
    • Improvement: Website Scan, added site creation.
    • \n
    • Improvement: Dailymotion integration.
    • \n
    • Improvement: Google Recaptcha integration.
    • \n
    • Improvement: Clarity integration.
    • \n
    • Security update: Authenticated (Translator+) Stored XSS.
    • \n
    \n

    7.4.0.1

    \n
      \n
    • April 14th, 2025
    • \n
    • Improvement: Tested up to WordPress 6.8
    • \n
    • Fix: Fixed missing “Details Per Purposes” section.
    • \n
    \n

    7.4.0

    \n
      \n
    • March 31th, 2025
    • \n
    • Improvement: refactored translations of Complianz due to Function _load_textdomain_just_in_time notice
    • \n
    • Improvement: updated translations
    • \n
    • Improvement: onboarding to authenticate website scan trigger changed
    • \n
    \n

    7.3.1

    \n
      \n
    • March 5th, 2025
    • \n
    • Fix: removed admin redirect for cmplz_admin redirect solving issues with manageWP and forceful scan onboarding.
    • \n
    • Enhancement: Add support for New Jersey, Iowa, Delaware, New Hampshire, Nebraska state privacy laws.
    • \n
    • Enhancement: Email obfuscation now uses HTML entities and CSS to prevent spam bots from reading the email address.
    • \n
    • Enhancement: Google Tag Manager script placement can now be dynamically set to load in the header or footer based on user preference, addressing Google Diagnostics warnings.
    • \n
    • Enhancement:Small labels and descriptions adjustments.
    • \n
    \n

    7.3.0

    \n
      \n
    • February 12th, 2025
    • \n
    • Enhancement: Website Scan, added services detection.
    • \n
    • Enhancement: Improved Omnisnippet compatibility.
    • \n
    • Enhancement: Removed “BETA” references on Google Consent Mode V2 to reflect its finalized status.
    • \n
    • Enhancement: Removed the soft cookie wall preview functionality and updated its description.
    • \n
    • Enhancement: Added new Tips & Tricks.
    • \n
    • Enhancement: Updated email field validation to allow the use of certain special characters.
    • \n
    • Fix: Resolved issues with vendor links by improving the parsing logic to handle commas in vendor names or URLs correctly.
    • \n
    • Fix: Triggered GeoIP database installation to ensure proper functionality during upgrades.
    • \n
    \n

    7.2.0

    \n
      \n
    • December 16th, 2024
    • \n
    • Feature: Website Scan
    • \n
    • Enhancement: Introduced the cmplz_after_css_generation hook to improve CSS file management
    • \n
    • Enhancement: Language file updated
    • \n
    • Fix: translations https://complianz.io/doing-it-wrong-notice
    • \n
    \n

    7.1.5

    \n
      \n
    • November 13th, 2024
    • \n
    • Fix: update bf dates
    • \n
    \n

    7.1.4

    \n
      \n
    • October 28th, 2024
    • \n
    • Improvement: Add support for Montana, Oregon, and Texas state privacy laws enhancement.
    • \n
    • Improvement: Add support for Microsoft Ads UET consent mode.
    • \n
    • Fix: mPDF custom tempdir cache cleanup.
    • \n
    • Fix: Correct cmplz_transients handling in post save process.
    • \n
    • Fix: Ensure complete data removal on Complianz uninstall.
    • \n
    • Fix: Update email validation for longer TLDs.
    • \n
    • Fix: Label adjustment.
    • \n
    \n

    7.1.0

    \n
      \n
    • May 14th, 2024
    • \n
    • Improvement: Updated Google Site Kit integration
    • \n
    • Improvement: Detection of pages with shortcode query improved for sites with a lot of pages
    • \n
    • Improvement: limit above query to pages only, props @georgestephanis
    • \n
    • Fix: get_required_pages not existing for documents rest_api endpoint, causing a fatal error
    • \n
    • Fix: Data is shared with this service not saving in cookies overview
    • \n
    \n

    7.0.5

    \n
      \n
    • April 29th, 2024
    • \n
    • Fix: compatibility with Meta Slider plugin
    • \n
    • Fix: unexpected behaviour when editing a new, unsaved script block in the script center
    • \n
    • Fix: Detection of Really Simple SSL pro in other plugins section
    • \n
    • Fix: don’t replace style src with #, as this reloads the entire page as style src, props @smerriman
    • \n
    • Fix: prefill administrator email in onboarding email
    • \n
    • Fix: undefined array key placeholderContent in Block Editor block
    • \n
    \n

    7.0.4

    \n
      \n
    • March 9th, 2024
    • \n
    • Fix: Purposes were incorrectly set to ‘disabled’, while there should only be a condition limiting it to the US region only, props @cdhodgdon
    • \n
    • Fix: Pixelyoursite + pinterest function name incorrect, props @theogk
    • \n
    \n

    7.0.3

    \n
      \n
    • March 5th, 2024
    • \n
    • Improvement: clean up MPDF temp directory after pdf generation
    • \n
    • Improvement: set aria label on x close button from banner
    • \n
    • Fix: deleting cookies with disallowed cookie names causing fatal error, props @baffled
    • \n
    • Fix: missing cmplz_deny_all() function for expired cookies with a changed cookie policy id.
    • \n
    • Fix: cmplz_set_category_as_body_class() also iterating over objects instead of just class names, when parsing the body classes, props @tomnoir
    • \n
    • Fix: due to changed setting usage, Complianz assumed TCF active in some situations, causing the banner editor not to function properly, props @vania2008, @jeanfrancois7
    • \n
    \n

    7.0.2

    \n
      \n
    • February 28th, 2024
    • \n
    • Fix: force the ‘wizard_completed_once’ to be true for upgrades to 7.0.2, to prevent issues with banner not showing after upgrade, props @cometto, @riroweb2022, @katynen, @julianulmer, @iviadvagency
    • \n
    \n

    7.0.1

    \n
      \n
    • February 27th, 2024
    • \n
    • Fix: catch COMPLIANZ class not loaded yet in cmplz_get_option, props @sizilianischekueche, @franktomas, @martinellimarco, @boinich
    • \n
    \n

    7.0.0

    \n
      \n
    • February 27th, 2024
    • \n
    • New: Rework codebase to React Framework
    • \n
    • New: Hybrid cookie scan
    • \n
    • New: Menu-item ‘Tools’
    • \n
    • New: Set cookies on root domain
    • \n
    • New: Search for plugins and services
    • \n
    • New: Statistics block on dashboard
    • \n
    • New: Onboarding
    • \n
    • New: consent mode
    • \n
    • New: Greenshift + YouTube integration
    • \n
    • Improvement: INP performance optimisation
    • \n
    • Improvement: catch not isset region
    • \n
    • Improvement: add banner title to css class
    • \n
    • Improvement: extend YoTuWP blocklist
    • \n
    • Improvement: whitelist video lightbox in Beaver Builder
    • \n
    • Improvement: allow text in Clarity ID input field
    • \n
    • Improvement: DNSMPI feedback on form
    • \n
    • Improvement: Dropped temp dir from MPDF generation, props @piccart
    • \n
    • Improvement: use custom transient to lower number of database requests
    • \n
    • Improvement: Added a filter to delete Records of Consent if older than X days
    • \n
    • Improvement: E-mail obfuscation now uses the antispambot() function
    • \n
    • Improvement: Consent area on a Twitter embed no longer links to Twitter
    • \n
    • Improvement: Improvement: Added translatable aria-label
    • \n
    • Fix: Elementor popup blocked content not unlocking on refresh
    • \n
    • Fix: per site activation of single site plugin on multisite
    • \n
    • Fix: include banner id in cache key for page links, to ensure different banner data is respected across banner ids.
    • \n
    • Fix: jQuery exists check in Elementor integration
    • \n
    \n

    6.5.6

    \n
      \n
    • Improvement: prevent administrator from saving javascript in the css editor
    • \n
    \n

    6.5.5

    \n
      \n
    • October 12th, 2023
    • \n
    • Fix: also clear localstorage & sessionstorage with cookie shredder
    • \n
    • Fix: With only Canada in opt out mode selected, the question ‘will you self host Google Fonts’ was not visible
    • \n
    • Improvement: setting a class on the parent div of a placeholder with height inherit resolves css issues on some themes, props @maxineblack
    • \n
    • Fix: compatibility with WP Rocket when some iframes are lazy loaded, but not all.
    • \n
    \n

    6.5.4

    \n
      \n
    • September 20th, 2023
    • \n
    • Improvement: upgrade MPDF version to 8.1.3
    • \n
    • Improvement: prefix ‘request’ to prevent conflicts with weglot
    • \n
    • Fix: bug in Divi Recaptcha integration
    • \n
    • Fix: Block Editor dropping styles when in unsynced mode
    • \n
    • Fix: Consent Mode moved to banner_loaded hook to ensure loading
    • \n
    \n

    6.5.3

    \n
      \n
    • 08-08-2023
    • \n
    • Improvement: Tested up-to WordPress 6.3
    • \n
    \n

    6.5.2

    \n
      \n
    • 11-07-2023
    • \n
    • Fix: catch missing $slug when another plugin drops the slug property
    • \n
    \n

    6.5.1

    \n
      \n
    • 10-07-2023
    • \n
    • Improvement: restore php 7.2 support in burst installer
    • \n
    • Improvement: catch server configurations not supporting webp
    • \n
    • Improvement: catch not existing file when generating webp
    • \n
    • Improvement: catch not existing $slug property in auto updates check
    • \n
    • Improvement: catch not existing ID in wordpress $post when checking for summary divs
    • \n
    \n

    6.5.0

    \n
      \n
    • 04-07-2023
    • \n
    • New: placeholders converted to wepb, loaded with lazyloading, props @james-feaver, @asafm7
    • \n
    • Fix: CAOS host analytics locally integration fixed after constant was dropped
    • \n
    • Fix: DNT caused wp_has_consent to always return false, which should not be the case if consent is given on a service specifically
    • \n
    • Fix: no rt_ prefix on Tag Manager events
    • \n
    • Fix: PHP 8.2 warnings of dynamically created properties
    • \n
    • Fix: When TCF active, in some cases this could cause a cmlz_accept_all not defined error
    • \n
    • Fix: Fatal error in Wizard when using “Falang”, props @chabass
    • \n
    • Fix: cookies can not able to run in some cases due to missing variable declarations, props @sira1967
    • \n
    \n

    6.4.7

    \n
      \n
    • June 14th, 2023
    • \n
    • Fix: WordPress 6.2 version moved the Privacy Policy function to a different file. Added fallback for older versions.
    • \n
    • Fix: The fix for the Classic Editor bug which removes summary/details html elements, caused an issue when the post content is empty.
    • \n
    • Improvement: if configuration by Complianz is set to false, the gtag id was added anyway, but empty.
    • \n
    • Improvement: strings in UK cookie policy translatable, which shouldn’t be the case.
    • \n
    \n

    6.4.6

    \n
      \n
    • Improvement: unhide pagination on data requests page.
    • \n
    • Improvement: Jersey and Guernsey included
    • \n
    • Improvement: move nonce check to earlier in the process
    • \n
    • Improvement: only show notice about duplicate statistics implementation if stats are actually used.
    • \n
    • Improvement: Easy Liveblogs integration
    • \n
    • Fix: Workaround for strange issue where the Classic Tiny MCE editor strips the summary/details tags from the unsynced legal documents html
    • \n
    \n

    6.4.5

    \n
      \n
    • Security: CSRF fixed
    • \n
    • Fix: type=module support for scripts other than inline scripts
    • \n
    • Fix: new shortcode handling for consent area not working for some plugin shortcodes, split in two options: default, the old one, optionally the clientside version.
    • \n
    \n

    6.4.4

    \n
      \n
    • Fix: catch not existing post_data if post structure is not following WordPress standards
    • \n
    • Fix: exclude bricks builder from cookie blocker
    • \n
    • Improvement: AddToAny integration updated, props @micropat
    • \n
    • Improvement: wording and links in Canadian Cookie Policy
    • \n
    • Improvement: mailchimp woocommerce integration feature activation after consent
    • \n
    • Improvement: updated classic consent area to the same new structure as the new Gutenberg consent area
    • \n
    • Improvement: script type module support in cookie blocker
    • \n
    • Improvement: exclude cornerstone builder from cookieblocker
    • \n
    • Improvement: new cmplz_upload_dir and cmplz_upload_url filters, to allow overrides of the plugin folders.
    • \n
    • Dropped: Ultimate Add ons for Elementor integration, due to incompatibility issues
    • \n
    \n

    6.4.3

    \n
      \n
    • Improvement: add exclude cookies filter
    • \n
    • Improvement: add support for parent/child themes, props @dominiccarrington
    • \n
    • Improvement: incorrect bold paragraphs in Privacy Statement for Children
    • \n
    • Improvement: clear blocked scripts cache on ajax save in script center
    • \n
    • Improvement: hubspot integration improved
    • \n
    • fix: cmplz-consent-area shortcode reload loop because of hardcoded marketing category, props @matthiaswagner
    • \n
    \n

    6.4.2.1

    \n
      \n
    • New: branding update
    • \n
    \n

    6.4.2

    \n
      \n
    • Security update: authenticated Stored XSS issue
    • \n
    • Fix: disable cookie banner option in wizard didn’t load the complianz.js scripts, causing placeholders not to work when activated.
    • \n
    • Fix: After switching to unlinked status in a legal document, purpose paragraph got dropped
    • \n
    • Fix: not all categories within services showing in cookie policy overview
    • \n
    • Fix: isset check on get_field_type function, props @moxymore
    • \n
    • Fix: not translatable VAT ID string
    • \n
    • Fix: With Global Privacy Control or Do Not Track enabled, and the user accepting an embedded service, the service was blocked again after a pageload.
    • \n
    • Improvement: allow custom directory for cookie banner css generation
    • \n
    • Improvement: catch open basedir restriction
    • \n
    • Improvement: catch not existing accept button during initial cookie scan (no banner active yet)
    • \n
    • Improvement: function cmplz_has_consent() in ‘other’ region returned false when no cookies present, while it should return true in that case.
    • \n
    • New: Buttonizer integration
    • \n
    • New: hCatpcha for WordPress
    • \n
    \n

    6.4.1

    \n
      \n
    • Improvement: do not copy over async attribute to prevent issues re-initializing scripts in some setups
    • \n
    • Improvement: get_cookie() function performance, props @lucastello
    • \n
    • Improvement: add space behind contact details on policy
    • \n
    • Improvement: add our own ‘manage_privacy’ capability, as the wordpress core manage_privacy_options is not implemented consistently with other capabilities
    • \n
    • Improvement: catch not set array class-document.php 1820
    • \n
    • Improvement: hide blocked iframes until they’re consented to, for better UX
    • \n
    • Improvement: PHP 8.2 compatibility
    • \n
    • Improvement: export datarequests on symlinked folder setups (BASE_PATH -> ABSPATH)
    • \n
    • Fix: links to processing agreement create page broken
    • \n
    • Fix: Divi Recaptcha support
    • \n
    • Fix: WP Go Maps Pro update
    • \n
    • Fix: cosmetic change: cmplz_functional should always be allow, props @jidwictut9
    • \n
    • Fix: when editing consent in unsynced mode in Gutenberg, content went missing because of automatically wrapping with divs by gutenberg and missing key props
    • \n
    • New: Agile Store Locator integration
    • \n
    • New: Omnisend Connect integration
    • \n
    \n

    6.4.0

    \n
      \n
    • Fix: function name error in microsoft ads integrations, props @mustafauysal
    • \n
    • Fix: GPC & DNT in opt out regions not respected, props @ahegyes
    • \n
    • Improvement: conditional scroll into view on consent area shortcode, props @falkemediawy
    • \n
    • Improvement: MPDF update, props @sviluppomania
    • \n
    • Improvement: catch CURL errors because of local SSL issues, add to system status
    • \n
    • Improvement: return # for not existing page id in case of generated docs by complianz, but not actually generated
    • \n
    • Improvement: Fire load event in divi integration after consent
    • \n
    \n

    6.3.9

    \n
      \n
    • Brought version in sync with premium version
    • \n
    • Improvement: Add classes to address details
    • \n
    • Improvement: auto installer for Really Simple SSL multisite compatible
    • \n
    • Improvement: add filter to allow filtering data-request email recipient ‘cmplz_datarequest_email’
    • \n
    • Improvement: translatable URLs in polylang
    • \n
    • New: Microsoft Ads/Microsoft Clarity integration
    • \n
    • Fix: some scripts not executing properly because of copying data-service & data-category attributes props @sophiaknows, @hamil1
    • \n
    • Fix: new added query added to cookie block exclude to ensure Avada live builder works, props @franck_b, @markusand
    • \n
    \n", "description": "

    Complianz is a GDPR/CCPA Cookie Banner plugin that supports GDPR, ePrivacy, DSGVO, TTDSG, LGPD, POPIA, APA, RGPD, CCPA/CPRA and PIPEDA with a conditional Cookie Consent Banner and customized Cookie Policy based on the results of the built-in Cookie Scan.

    \n

    \n

    Features

    \n

    Cookie Consent Notice

    \n
      \n
    • Configure a Cookie Notice for your specific region: European Union, United Kingdom, United States, Australia, South Africa, Brazil or Canada. Or use one Cookie Notice worldwide.
    • \n
    • Configure specific cookie consent per subregion, for example: European Union + TTDSG/DSGVO/CNIL or USA + specific states for CCPA/CPRA/CTDPA etc
    • \n
    • Cookie Consent and Conditional Cookie Notice with Custom CSS and Customizable Templates. WCAG Level AA and ADA Compliant.
    • \n
    • Banner Templates include: GDPR-friendly Cookie Wall – Accept/Dismiss – Consent per Category – Consent per Service
    • \n
    • Banner Templates also include; Dismiss on scroll, time on page or both based on legislation
    • \n
    • We aim to follow WCAG 2.1 AA guidelines and ADA best practices in the design of our cookie banners and legal documents to support accessibility.
    • \n
    • No jQuery Dependency
    • \n
    \n

    Consent Management

    \n
      \n
    • Automatically configures your website based on wizard questions, WordPress scans and dedicated service and plugin integrations.
    • \n
    • Blocks 3rd party cookies like Google Maps, Facebook, Instagram, AdSense, Hubspot, Recaptcha, Twitter, ActiveCampaign, and many more.
    • \n
    • Custom integrations for plugins, themes and services are automatically detected.
    • \n
    • Blocks iFrames, like YouTube, Vimeo, Dailymotion embedded videos and Social iFrames e.g. Instagram, Facebook et al.
    • \n
    • Shows placeholders for blocked iFrames. Stills from videos and individual placeholders per (social) service.
    • \n
    • Script Center to control scripts, iFrames and plugins per category or service. With dependency functionality and placeholders.
    • \n
    • Proof of Consent: User consent registration that respects the GDPR data minimization guideline.
    • \n
    • Periodical Cookie Scan for changes in Cookies, Plugins and 3rd Party services.
    • \n
    • Automatically detects if you need a Cookie Notice (also called a Cookie Banner or Pop-Up).
    • \n
    • Automatically anonymizes personal data for integrated statistics tools if needed.
    • \n
    \n

    Privacy Laws & Guidelines

    \n
      \n
    • Ready for GDPR, ePrivacy AVG, RGPD, LGPD, DSGVO, CNIL, PECR, UK DPA, UK GDPR, CCPA, COPPA, PIPEDA, CASL, POPIA, Privacy Act 1988, Australian Privacy Principles, The “Marco Civil” and the Brazilian General Data Protection Law.
    • \n
    • Differentiate between GDPR, ePrivacy and DSGVO/CNIL or between CCPA/DNSMPI and NRS 603A, if needed.
    • \n
    • We closely follow the latest developments in the ePrivacy regulation, the proposed Cookie Law for the European Union, and other legislation world-wide.
    • \n
    \n

    Legal Documents

    \n
      \n
    • A Cookie Policy; Generated by you with an easy wizard, drafted by an IT Law Firm.
    • \n
    • Do Not Sell My Personal Information: DNSMPI Page for CCPA/CPRA – if required. (Now called Opt-out Preferences.)
    • \n
    • Terms and Conditions are available in a separate plugin: Complianz – Terms and Conditions
    • \n
    \n

    Integrations

    \n
      \n
    • Detected Cookie Data is prefilled from cookiedatabase.org, with clear and transparent cookie descriptions, which are continuously updated.
    • \n
    • Integrated with WordPress Privacy features. Export and erase personal data from our dashboard.
    • \n
    • Implementation of Google Tag Manager, Google Analytics, Matomo, Matomo Tag Manager, Clicky, Yandex, Jetpack and Burst Statistics
    • \n
    • Categorize your Cookies with Tag Manager or our Script Center, if needed.
    • \n
    • \n

      Integration with the WP Consent API

      \n
    • \n
    • \n

      Integrates seamlessly with Gutenberg, Elementor, Divi, Forminator, WPBakery, Monsterinsights, GADWP, Beehive, WPForms, Gravity Forms, HappyForms, Contact Form 7 <5.4 (CF7), Woocommerce, Easy Digital Downloads, WP Google Maps, Google Maps Widget, Local Google Fonts, CAOS | Host Google Analytics Locally and other popular plugins.

      \n
    • \n
    • Tested with popular themes en page builders.
    • \n
    • Gutenberg Blocks enabled.
      \n

      Support

      \n

      Complianz offers full support on the WordPress.org Forum. Before starting a new thread, please check available documentation and other support threads. Leave a clear and concise description of your issue, and we will respond as soon as possible.

    • \n
    \n

    Useful Links

    \n\n

    Premium Features

    \n

    Complianz offers a Full Privacy Suite for WordPress on Complianz.io with even more features:

    \n

    Cookie Consent Notice

    \n
      \n
    • Improve conversion with A/B Testing: which cookie banner has the best consent ratio? Run tests and measure what works best for your site.
    • \n
    \n

    Consent Management

    \n
      \n
    • Records of Consent: Keep record of your consent management changes and user’s consent registration. Integrates with Proof of Consent
    • \n
    • Respects the Do Not Track settings and Global Privacy Controls in end-users browsers.
    • \n
    • Geo IP Cookie Consent: Cookie Consent is different everywhere. Show the correct Cookie Notice based on IP location, but only if a banner is needed.
    • \n
    • Google Consent Mode – Use Consent Mode by Google with Google Tag Manager or Google Analytics. No further set-up needed.
    • \n
    • Integration with TCF v2.0. An IAB Europe Consent Framework for Publishers. Registered CMP ID: 332
    • \n
    • Data Request Forms and Registration
    • \n
    \n

    Privacy Laws & Guidelines

    \n

    Simultaneously select USA, Canada, United Kingdom, Australia, South Africa, Brazil and the EU as targeted regions with conditional Consent and dedicated Cookie Banners.

    \n
      \n
    • Support for GDPR / ePrivacy – European Union with Extension for Switzerland.
    • \n
    • Support for USA / CCPA/CPRA/CPA/CTDPA/NRS 603A/UCPA/CDPA
    • \n
    • Support for UK-GDPR / PECR and ICO Guidelines – United Kingdom.
    • \n
    • Support for PIPEDA and CASL – Canada.
    • \n
    • Support for Privacy Act 1988 & Australian Privacy Principles
    • \n
    • Support for POPIA, the South African Protection of Personal Information Act
    • \n
    • Supports The “Marco Civil” and the Brazilian General Data Protection Law (LGPD)
    • \n
    \n

    Legal Documents

    \n
      \n
    • Privacy statements (EU, CA, UK, AU, ZA, BR & USA).
    • \n
    • Cookie policy (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Impressum (Germany & Austria) & Imprint for world wide use.
    • \n
    • Disclaimer
    • \n
    • Terms & Conditions Integration
    • \n
    • Processing agreements (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Dataleak reporting tools (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Supports CCPA Consent and Legal documents.
    • \n
    • COPPA ready with Children’s Privacy Policy (USA)
    • \n
    • Children’s Privacy Policy (UK,CA & AU)
    • \n
    \n

    Support & Updates

    \n
      \n
    • Premium Support from our amazing team.
    • \n
    • Premium updates, new languages, features, regions and more to create the Ultimate Privacy Suite for WordPress.
    • \n
    \n

    About Complianz

    \n

    Check out other plugins developed by Really Simple Plugins as well: Really Simple SSL

    \n

    Complianz is on GitHub as well!

    \n

    IMPORTANT! Complianz | GDPR/CCPA Cookie Consent can help you meet compliance requirements, but the user must ensure that all requirements are met.

    \n

    Complianz provides your Cookie Policy with comprehensive cookie descriptions, supplied by cookiedatabase.org, operated by Complianz B.V. The plugin sends the results of Complianz’ local or advanced website scan to Cookiedatabase.org, for the sole purpose of providing you with accurate descriptions and keeping them up-to-date on a regular basis. The advanced website scan can be initialized after authentication and consent for security purposes.

    \n

    We collect for research purposes:

    \n
      \n
    • Cookie names
    • \n
    • Domain that provides the cookie names
    • \n
    • Plugin list on the domain
    • \n
    \n

    For more information:

    \n\n

    For security purposes, we authenticate the advanced website scan with:

    \n
      \n
    • Email address
    • \n
    \n

    The advanced website scan collects public data from the user’s site, stores it for one hour, and then discards it without analysis.

    \n

    For more information:

    \n\n

    Contact us if you have any questions, issues, or suggestions. Complianz | GDPR/CCPA Cookie Consent is developed by Complianz B.V..

    \n", "screenshots": "
    1. \"Complianz

      Complianz Dashboard: Your privacy HUB

    2. \"The

      The Wizard: Generate a cookie policy and configure consent management to your specific needs.

    3. \"Automatic

      Automatic Cookie Scan: Weekly scan of your website to keep you up-to-date!

    4. \"Customize

      Customize your Cookie Banner: Including template styles and a range of styling options, WCAG conform. Custom CSS available for full control!

    5. \"Integrations:

      Integrations: Dedicated integrations with the most popular plugins, themes and services. Feature requests are possible!

    6. \"Placeholders:

      Placeholders: Still images for video placeholders and individual placeholders for social media widgets. Fully customizable as well!

    7. \"Legal

      Legal Documents: Dedicated legal documents per region. Generated by you through the wizard, drafted, and updated by our IT Law firm.

    ", "installation": "
      \n
    • Go to “Plugins” in your WordPress Dashboard, and click “Add new”.
    • \n
    • Click “Upload”, and select the downloaded zip file.
    • \n
    • Activate your new plugin.
    • \n
    • Use our tour to get familiar with Complianz.
    • \n
    \n"}, "versions": {"beta": "https://downloads.wordpress.org/plugin/complianz-gdpr.beta.zip", "6.5.6": "https://downloads.wordpress.org/plugin/complianz-gdpr.6.5.6.zip", "7.0.4": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.0.4.zip", "7.0.5": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.0.5.zip", "7.1.0": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.1.0.zip", "7.1.4": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.1.4.zip", "7.1.5": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.1.5.zip", "7.2.0": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.2.0.zip", "7.3.0": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.3.0.zip", "7.3.1": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.3.1.zip", "7.4.0": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.1.zip", "7.4.2": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.2.zip", "trunk": "https://downloads.wordpress.org/plugin/complianz-gdpr.zip", "7.4.0.1": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.0.1.zip"}, "downloaded": 23399610, "description": "

    Complianz is a GDPR/CCPA Cookie Banner plugin that supports GDPR, ePrivacy, DSGVO, TTDSG, LGPD, POPIA, APA, RGPD, CCPA/CPRA and PIPEDA with a conditional Cookie Consent Banner and customized Cookie Policy based on the results of the built-in Cookie Scan.

    \n

    \n

    Features

    \n

    Cookie Consent Notice

    \n
      \n
    • Configure a Cookie Notice for your specific region: European Union, United Kingdom, United States, Australia, South Africa, Brazil or Canada. Or use one Cookie Notice worldwide.
    • \n
    • Configure specific cookie consent per subregion, for example: European Union + TTDSG/DSGVO/CNIL or USA + specific states for CCPA/CPRA/CTDPA etc
    • \n
    • Cookie Consent and Conditional Cookie Notice with Custom CSS and Customizable Templates. WCAG Level AA and ADA Compliant.
    • \n
    • Banner Templates include: GDPR-friendly Cookie Wall – Accept/Dismiss – Consent per Category – Consent per Service
    • \n
    • Banner Templates also include; Dismiss on scroll, time on page or both based on legislation
    • \n
    • We aim to follow WCAG 2.1 AA guidelines and ADA best practices in the design of our cookie banners and legal documents to support accessibility.
    • \n
    • No jQuery Dependency
    • \n
    \n

    Consent Management

    \n
      \n
    • Automatically configures your website based on wizard questions, WordPress scans and dedicated service and plugin integrations.
    • \n
    • Blocks 3rd party cookies like Google Maps, Facebook, Instagram, AdSense, Hubspot, Recaptcha, Twitter, ActiveCampaign, and many more.
    • \n
    • Custom integrations for plugins, themes and services are automatically detected.
    • \n
    • Blocks iFrames, like YouTube, Vimeo, Dailymotion embedded videos and Social iFrames e.g. Instagram, Facebook et al.
    • \n
    • Shows placeholders for blocked iFrames. Stills from videos and individual placeholders per (social) service.
    • \n
    • Script Center to control scripts, iFrames and plugins per category or service. With dependency functionality and placeholders.
    • \n
    • Proof of Consent: User consent registration that respects the GDPR data minimization guideline.
    • \n
    • Periodical Cookie Scan for changes in Cookies, Plugins and 3rd Party services.
    • \n
    • Automatically detects if you need a Cookie Notice (also called a Cookie Banner or Pop-Up).
    • \n
    • Automatically anonymizes personal data for integrated statistics tools if needed.
    • \n
    \n

    Privacy Laws & Guidelines

    \n
      \n
    • Ready for GDPR, ePrivacy AVG, RGPD, LGPD, DSGVO, CNIL, PECR, UK DPA, UK GDPR, CCPA, COPPA, PIPEDA, CASL, POPIA, Privacy Act 1988, Australian Privacy Principles, The “Marco Civil” and the Brazilian General Data Protection Law.
    • \n
    • Differentiate between GDPR, ePrivacy and DSGVO/CNIL or between CCPA/DNSMPI and NRS 603A, if needed.
    • \n
    • We closely follow the latest developments in the ePrivacy regulation, the proposed Cookie Law for the European Union, and other legislation world-wide.
    • \n
    \n

    Legal Documents

    \n
      \n
    • A Cookie Policy; Generated by you with an easy wizard, drafted by an IT Law Firm.
    • \n
    • Do Not Sell My Personal Information: DNSMPI Page for CCPA/CPRA – if required. (Now called Opt-out Preferences.)
    • \n
    • Terms and Conditions are available in a separate plugin: Complianz – Terms and Conditions
    • \n
    \n

    Integrations

    \n
      \n
    • Detected Cookie Data is prefilled from cookiedatabase.org, with clear and transparent cookie descriptions, which are continuously updated.
    • \n
    • Integrated with WordPress Privacy features. Export and erase personal data from our dashboard.
    • \n
    • Implementation of Google Tag Manager, Google Analytics, Matomo, Matomo Tag Manager, Clicky, Yandex, Jetpack and Burst Statistics
    • \n
    • Categorize your Cookies with Tag Manager or our Script Center, if needed.
    • \n
    • \n

      Integration with the WP Consent API

      \n
    • \n
    • \n

      Integrates seamlessly with Gutenberg, Elementor, Divi, Forminator, WPBakery, Monsterinsights, GADWP, Beehive, WPForms, Gravity Forms, HappyForms, Contact Form 7 <5.4 (CF7), Woocommerce, Easy Digital Downloads, WP Google Maps, Google Maps Widget, Local Google Fonts, CAOS | Host Google Analytics Locally and other popular plugins.

      \n
    • \n
    • Tested with popular themes en page builders.
    • \n
    • Gutenberg Blocks enabled.
      \n

      Support

      \n

      Complianz offers full support on the WordPress.org Forum. Before starting a new thread, please check available documentation and other support threads. Leave a clear and concise description of your issue, and we will respond as soon as possible.

    • \n
    \n

    Useful Links

    \n\n

    Premium Features

    \n

    Complianz offers a Full Privacy Suite for WordPress on Complianz.io with even more features:

    \n

    Cookie Consent Notice

    \n
      \n
    • Improve conversion with A/B Testing: which cookie banner has the best consent ratio? Run tests and measure what works best for your site.
    • \n
    \n

    Consent Management

    \n
      \n
    • Records of Consent: Keep record of your consent management changes and user’s consent registration. Integrates with Proof of Consent
    • \n
    • Respects the Do Not Track settings and Global Privacy Controls in end-users browsers.
    • \n
    • Geo IP Cookie Consent: Cookie Consent is different everywhere. Show the correct Cookie Notice based on IP location, but only if a banner is needed.
    • \n
    • Google Consent Mode – Use Consent Mode by Google with Google Tag Manager or Google Analytics. No further set-up needed.
    • \n
    • Integration with TCF v2.0. An IAB Europe Consent Framework for Publishers. Registered CMP ID: 332
    • \n
    • Data Request Forms and Registration
    • \n
    \n

    Privacy Laws & Guidelines

    \n

    Simultaneously select USA, Canada, United Kingdom, Australia, South Africa, Brazil and the EU as targeted regions with conditional Consent and dedicated Cookie Banners.

    \n
      \n
    • Support for GDPR / ePrivacy – European Union with Extension for Switzerland.
    • \n
    • Support for USA / CCPA/CPRA/CPA/CTDPA/NRS 603A/UCPA/CDPA
    • \n
    • Support for UK-GDPR / PECR and ICO Guidelines – United Kingdom.
    • \n
    • Support for PIPEDA and CASL – Canada.
    • \n
    • Support for Privacy Act 1988 & Australian Privacy Principles
    • \n
    • Support for POPIA, the South African Protection of Personal Information Act
    • \n
    • Supports The “Marco Civil” and the Brazilian General Data Protection Law (LGPD)
    • \n
    \n

    Legal Documents

    \n
      \n
    • Privacy statements (EU, CA, UK, AU, ZA, BR & USA).
    • \n
    • Cookie policy (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Impressum (Germany & Austria) & Imprint for world wide use.
    • \n
    • Disclaimer
    • \n
    • Terms & Conditions Integration
    • \n
    • Processing agreements (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Dataleak reporting tools (EU, UK, CA, AU, ZA, BR & USA).
    • \n
    • Supports CCPA Consent and Legal documents.
    • \n
    • COPPA ready with Children’s Privacy Policy (USA)
    • \n
    • Children’s Privacy Policy (UK,CA & AU)
    • \n
    \n

    Support & Updates

    \n
      \n
    • Premium Support from our amazing team.
    • \n
    • Premium updates, new languages, features, regions and more to create the Ultimate Privacy Suite for WordPress.
    • \n
    \n

    About Complianz

    \n

    Check out other plugins developed by Really Simple Plugins as well: Really Simple SSL

    \n

    Complianz is on GitHub as well!

    \n

    IMPORTANT! Complianz | GDPR/CCPA Cookie Consent can help you meet compliance requirements, but the user must ensure that all requirements are met.

    \n

    Complianz provides your Cookie Policy with comprehensive cookie descriptions, supplied by cookiedatabase.org, operated by Complianz B.V. The plugin sends the results of Complianz’ local or advanced website scan to Cookiedatabase.org, for the sole purpose of providing you with accurate descriptions and keeping them up-to-date on a regular basis. The advanced website scan can be initialized after authentication and consent for security purposes.

    \n

    We collect for research purposes:

    \n
      \n
    • Cookie names
    • \n
    • Domain that provides the cookie names
    • \n
    • Plugin list on the domain
    • \n
    \n

    For more information:

    \n\n

    For security purposes, we authenticate the advanced website scan with:

    \n
      \n
    • Email address
    • \n
    \n

    The advanced website scan collects public data from the user’s site, stores it for one hour, and then discards it without analysis.

    \n

    For more information:

    \n\n

    Contact us if you have any questions, issues, or suggestions. Complianz | GDPR/CCPA Cookie Consent is developed by Complianz B.V..

    \n", "donate_link": "https://paypal.me/complianz", "num_ratings": 1565, "screenshots": {"1": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-1.jpg?rev=2881064", "caption": "Complianz Dashboard: Your privacy HUB"}, "2": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-2.jpg?rev=2881064", "caption": "The Wizard: Generate a cookie policy and configure consent management to your specific needs."}, "3": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-3.jpg?rev=2881064", "caption": "Automatic Cookie Scan: Weekly scan of your website to keep you up-to-date!"}, "4": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-4.jpg?rev=2881064", "caption": "Customize your Cookie Banner: Including template styles and a range of styling options, WCAG conform. Custom CSS available for full control!"}, "5": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-5.jpg?rev=2881064", "caption": "Integrations: Dedicated integrations with the most popular plugins, themes and services. Feature requests are possible!"}, "6": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-6.jpg?rev=2881182", "caption": "Placeholders: Still images for video placeholders and individual placeholders for social media widgets. Fully customizable as well!"}, "7": {"src": "https://ps.w.org/complianz-gdpr/assets/screenshot-7.jpg?rev=2881064", "caption": "Legal Documents: Dedicated legal documents per region. Generated by you through the wizard, drafted, and updated by our IT Law firm."}}, "support_url": "https://wordpress.org/support/plugin/complianz-gdpr/", "contributors": {"paapst": {"avatar": "https://secure.gravatar.com/avatar/8afa7404247240959b9a36349f5b702e1187125ee7cb418fa48d85c972b31235?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/paapst/", "display_name": "Mathieu Paapst"}, "xantek": {"avatar": "https://secure.gravatar.com/avatar/330e465c847f17589296079315319297e2ef24cf129eb8a5a35a10574e105418?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/xantek/", "display_name": "Ian Carlson"}, "jarnovos": {"avatar": "https://secure.gravatar.com/avatar/c27f26065e2252b8b77b4b7c0171731de172c279478813f74d27a60a432829fc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jarnovos/", "display_name": "Jarno Vos"}, "mujuonly": {"avatar": "https://secure.gravatar.com/avatar/9dfd441771ce6855341932e079bbca5ffd91c69a48ffc114280bb62433ff053c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mujuonly/", "display_name": "mujuonly"}, "aahulsebos": {"avatar": "https://secure.gravatar.com/avatar/dcb9f340fc929b6531b2068c0921e806176c257dea2b8d47dbf44baeb2d9cb73?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aahulsebos/", "display_name": "Aert Hulsebos"}, "markwolters": {"avatar": "https://secure.gravatar.com/avatar/dab3ec58d4eedf545a03eff2ac363eaec029f64c05600d749b3fd923a4fc1432?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/markwolters/", "display_name": "Mark"}, "hesseldejong": {"avatar": "https://secure.gravatar.com/avatar/3dd39dd939945dc1fee0099cabf8a9d12a13ec555e000068bcf4a51a80ab0338?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hesseldejong/", "display_name": "Hessel de Jong"}, "pierrotevrard": {"avatar": "https://secure.gravatar.com/avatar/9c0cead702a8c61983b86c9d61c266fd93a2134b859b1f0fdb43db44d094f24e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pierrotevrard/", "display_name": "pierrotevrard"}, "leonwimmenhoeve": {"avatar": "https://secure.gravatar.com/avatar/8808f3bd519d3e7338685103266889a124168ae9aa9295b7474f537574eee870?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/leonwimmenhoeve/", "display_name": "Leon Wimmenhoeve"}, "rogierlankhorst": {"avatar": "https://secure.gravatar.com/avatar/da7d8197d253a9a792bf908dd77b0d4bcbf2d192f514ed4206903a96fd93f9b9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rogierlankhorst/", "display_name": "Rogier Lankhorst"}, "tomeijkelenkamp": {"avatar": "https://secure.gravatar.com/avatar/8a49b95c91c87f09d5f7cef77ed6db19f6f60c62f3e082afd473dff3b9b3f15c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tomeijkelenkamp/", "display_name": "tomeijkelenkamp"}}, "last_updated": "2025-07-29 1:06pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/complianz-gdpr.7.4.2.zip", "author_profile": "https://profiles.wordpress.org/complianz/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "
      \n
    • Please backup before upgrading.
    • \n
    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f159-7244-9226-abe2d1d42936", "name": "Complianz – GDPR/CCPA Cookie Consent", "slug": "complianz-gdpr", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1753794360, "version": "7.4.2"}, "support_threads": 57, "requires_plugins": [], "short_description": "Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookies Scan.", "author_block_count": 1, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 50}'); -INSERT INTO public.plugins VALUES ('019a30c1-6466-7318-8ea1-56c36bc51c82', 'contact-form-7', 'Contact Form 7', 'Just another contact form plugin. Simple but flexible.', '

    Contact Form 7 is a plugin designed to be a practical tool for all WordPress users who embrace the philosophy of free and open source software. It employs sophisticatedly modularized architecture and its original Schema-Woven Validation technology.

    -

    Docs and support

    -

    You can find docs, FAQ and more detailed information about Contact Form 7 on contactform7.com. When you cannot find the answer to your question on the FAQ or in any of the documentation, check the support forum on WordPress.org. If you cannot locate any topics that pertain to your particular issue, post a new topic for it.

    -

    Contact Form 7 needs your support

    -

    It is hard to continue to maintain this plugin without support from users like you. There are several ways for you to contribute to the project: testing, coding, translating it into your local languages, helping other users, financial donations, etc, etc. We equally welcome you regardless of the way you contribute.

    -

    Privacy notices

    -

    With the default configuration, this plugin, in itself, does not:

    -
      -
    • track users by stealth;
    • -
    • write any user personal data to the database;
    • -
    • send any data to external servers;
    • -
    • use cookies.
    • -
    -

    If you activate certain features in this plugin, the contact form submitter’s personal data, including their IP address, may be sent to the service provider. Thus, confirming the provider’s privacy policy is recommended. These features include:

    - -', '6.1.3', 'Rock Lobster Inc.', '6.7', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/contact-form-7.6.1.3.zip', '2007-08-02 00:00:00+00', '2025-10-29 09:00:00+00', 'https://profiles.wordpress.org/rocklobsterinc/', 80, 2141, 103, 41, 10000000, 394729740, 'https://contactform7.com/', 'https://contactform7.com/donate/', NULL, NULL, 'https://wordpress.org/support/plugin/contact-form-7/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Contact Form 7", "slug": "contact-form-7", "tags": {"contact-form": "contact form", "schema-woven-validation": "schema-woven validation"}, "added": "2007-08-02", "icons": {"1x": "https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255", "svg": "https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255"}, "author": "Rock Lobster Inc.", "rating": 80, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427", "high": "https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901"}, "ratings": {"1": 405, "2": 67, "3": 75, "4": 147, "5": 1447}, "version": "6.1.3", "homepage": "https://contactform7.com/", "requires": "6.7", "sections": {"faq": "

    Do you have questions or issues with Contact Form 7? Use these support channels appropriately.

    \n
      \n
    1. Docs
    2. \n
    3. FAQ
    4. \n
    5. Support forum
    6. \n
    \n

    Support

    \n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Quiz (form field) only loads sometimes.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Brad (braads) on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve added a quiz to the contact form to prevent spam.

    \n\n\n\n

    Sometimes the quiz (form field) loads, sometimes (well, most of the time) it doesn''t. Very frustrating.

    \n\n\n\n

    It''s probably time for a new plugin. Contact Form 7 is now outdated.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Hiroshi (hiroshixo) on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a great plugin, which I always use on almost all my websites. It just works. 👍

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nolanrichardson on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It keeps things simple and functional

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    WordPress classic

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Diego Bittencourt (diegobittencourt) on August 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great contribution to community just like Flamingo.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Gets the job done, nothing more

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Wayne Baker (waynebaker) on August 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It’s fine for basic use, but don’t expect advanced features. The plugin feels a bit plain, though it remains dependable for simple contact needs.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best plugin in wp.org

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kateham on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    idk if the author is japanese but this plugin looks like japanese. simple, elegant, strong, reliable, CLEAN!

    \n\n\n\n

    wp should hire this person to direct wp

    \n\n\n\n

    thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple, Reliable, and Perfect for Custom Forms

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rahul Tank (rahultank) on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Contact Form 7 is simple yet powerful. It’s lightweight, works well with most themes, and gives full control over form fields through short codes. Great for basic contact forms without heavy overhead. However, styling requires a bit of custom CSS, and advanced features may need extra plugins. Overall, a reliable choice for anyone who wants a free, no-frills form solution.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Absolutely love the contact form 7

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hurtadodoo on August 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Absolutely love the contact form plugin works perfectly out of the box, easy to customize, and looks good on all devices. The spam protection is also surprisingly effective.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Customizable Forms Generator

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bhanuka (bhanukaw) on August 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is very useful to create customizable forms in the website.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful and easy to set up

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Praagna L Vaishnavi (praagnavaishnavi) on August 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used this plugin for my personal site. Setup was smooth, and it works perfectly. Highly recommended!

    \n
    \n
    \n", "changelog": "

    For more information, see Releases.

    \n

    6.1.3

    \n

    https://contactform7.com/contact-form-7-613/

    \n

    6.1.2

    \n

    https://contactform7.com/contact-form-7-612/

    \n

    6.1.1

    \n

    https://contactform7.com/contact-form-7-611/

    \n

    6.1

    \n

    https://contactform7.com/contact-form-7-61/

    \n

    6.0.5

    \n

    https://contactform7.com/contact-form-7-605/

    \n

    6.0.4

    \n

    https://contactform7.com/contact-form-7-604/

    \n

    6.0.3

    \n
      \n
    • Updates the copyright year to 2025.
    • \n
    • Updates the “Contact Form 7 needs your support” message content.
    • \n
    • Updates the Constant Contact deprecation warning.
    • \n
    \n

    6.0.2

    \n
      \n
    • Removes unnecessary type declaration from nullable arguments to avoid deprecation warnings in PHP 8.4.
    • \n
    \n

    6.0.1

    \n

    https://contactform7.com/contact-form-7-601/

    \n

    6.0

    \n

    https://contactform7.com/contact-form-7-60/

    \n", "description": "

    Contact Form 7 is a plugin designed to be a practical tool for all WordPress users who embrace the philosophy of free and open source software. It employs sophisticatedly modularized architecture and its original Schema-Woven Validation technology.

    \n

    Docs and support

    \n

    You can find docs, FAQ and more detailed information about Contact Form 7 on contactform7.com. When you cannot find the answer to your question on the FAQ or in any of the documentation, check the support forum on WordPress.org. If you cannot locate any topics that pertain to your particular issue, post a new topic for it.

    \n

    Contact Form 7 needs your support

    \n

    It is hard to continue to maintain this plugin without support from users like you. There are several ways for you to contribute to the project: testing, coding, translating it into your local languages, helping other users, financial donations, etc, etc. We equally welcome you regardless of the way you contribute.

    \n

    Privacy notices

    \n

    With the default configuration, this plugin, in itself, does not:

    \n
      \n
    • track users by stealth;
    • \n
    • write any user personal data to the database;
    • \n
    • send any data to external servers;
    • \n
    • use cookies.
    • \n
    \n

    If you activate certain features in this plugin, the contact form submitter’s personal data, including their IP address, may be sent to the service provider. Thus, confirming the provider’s privacy policy is recommended. These features include:

    \n\n", "screenshots": "
    1. \"screenshot-1.png\"

      screenshot-1.png

    ", "installation": "
      \n
    1. Upload the entire contact-form-7 folder to the /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the Plugins screen (Plugins > Installed Plugins).
    4. \n
    \n

    You will find Contact menu in your WordPress admin screen.

    \n

    For basic usage, have a look at the plugin’s website.

    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/contact-form-7.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/contact-form-7.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/contact-form-7.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/contact-form-7.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/contact-form-7.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/contact-form-7.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.zip", "3.0": "https://downloads.wordpress.org/plugin/contact-form-7.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/contact-form-7.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/contact-form-7.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/contact-form-7.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/contact-form-7.3.6.zip", "3.7": "https://downloads.wordpress.org/plugin/contact-form-7.3.7.zip", "3.8": "https://downloads.wordpress.org/plugin/contact-form-7.3.8.zip", "3.9": "https://downloads.wordpress.org/plugin/contact-form-7.3.9.zip", "4.0": "https://downloads.wordpress.org/plugin/contact-form-7.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/contact-form-7.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/contact-form-7.4.4.zip", "4.5": "https://downloads.wordpress.org/plugin/contact-form-7.4.5.zip", "4.6": "https://downloads.wordpress.org/plugin/contact-form-7.4.6.zip", "4.7": "https://downloads.wordpress.org/plugin/contact-form-7.4.7.zip", "4.8": "https://downloads.wordpress.org/plugin/contact-form-7.4.8.zip", "4.9": "https://downloads.wordpress.org/plugin/contact-form-7.4.9.zip", "5.0": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.zip", "5.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.zip", "5.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.2.zip", "5.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.3.zip", "5.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.4.zip", "5.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.zip", "5.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.6.zip", "5.7": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.zip", "5.8": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.zip", "5.9": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.zip", "6.0": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.zip", "6.1": "https://downloads.wordpress.org/plugin/contact-form-7.6.1.zip", "1.10": "https://downloads.wordpress.org/plugin/contact-form-7.1.10.zip", "1.3.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.3.2.zip", "1.4.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/contact-form-7.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/contact-form-7.1.4.4.zip", "1.6.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.6.1.zip", "1.7.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.2.zip", "1.7.4": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.8.zip", "1.8.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.zip", "1.9.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.zip", "2.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/contact-form-7.2.0.7.zip", "2.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/contact-form-7.2.1.2.zip", "2.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.2.1.zip", "2.3.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.3.1.zip", "2.4.1": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/contact-form-7.2.4.6.zip", "3.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.zip", "3.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.1.2.zip", "3.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.2.1.zip", "3.3.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/contact-form-7.3.3.3.zip", "3.4.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.4.2.zip", "3.5.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/contact-form-7.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/contact-form-7.3.5.4.zip", "3.7.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.7.2.zip", "3.8.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.8.1.zip", "3.9.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/contact-form-7.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/contact-form-7.3.9.3.zip", "4.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/contact-form-7.4.0.3.zip", "4.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.1.2.zip", "4.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.2.2.zip", "4.3.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.3.1.zip", "4.4.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.4.2.zip", "4.5.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.5.1.zip", "4.6.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.6.1.zip", "4.8.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.8.1.zip", "4.9.1": "https://downloads.wordpress.org/plugin/contact-form-7.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/contact-form-7.4.9.2.zip", "5.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.0.5.zip", "5.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.6.zip", "5.1.7": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.7.zip", "5.1.8": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.8.zip", "5.1.9": "https://downloads.wordpress.org/plugin/contact-form-7.5.1.9.zip", "5.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.2.2.zip", "5.3.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.3.2.zip", "5.4.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.4.2.zip", "5.5.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.2.zip", "5.5.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.3.zip", "5.5.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.4.zip", "5.5.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.5.zip", "5.5.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.zip", "5.6.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.6.1.zip", "5.6.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.6.2.zip", "5.6.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.6.3.zip", "5.6.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.6.4.zip", "5.7.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.1.zip", "5.7.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.2.zip", "5.7.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.3.zip", "5.7.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.4.zip", "5.7.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.5.zip", "5.7.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.6.zip", "5.7.7": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.7.zip", "5.8.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.2.zip", "5.8.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.3.zip", "5.8.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.4.zip", "5.8.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.5.zip", "5.8.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.6.zip", "5.8.7": "https://downloads.wordpress.org/plugin/contact-form-7.5.8.7.zip", "5.9.2": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.2.zip", "5.9.3": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.3.zip", "5.9.4": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.4.zip", "5.9.5": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.5.zip", "5.9.6": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.6.zip", "5.9.7": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.7.zip", "5.9.8": "https://downloads.wordpress.org/plugin/contact-form-7.5.9.8.zip", "6.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/contact-form-7.6.0.6.zip", "6.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/contact-form-7.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/contact-form-7.6.1.3.zip", "trunk": "https://downloads.wordpress.org/plugin/contact-form-7.zip", "1.10.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.10.1.zip", "1.7.6.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.1.zip", "1.7.7.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.1.zip", "1.8.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.1.zip", "1.8.0.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.2.zip", "1.8.0.3": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.3.zip", "1.8.0.4": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.4.zip", "1.8.1.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.1.zip", "1.9.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.1.zip", "1.9.2.2": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.2.zip", "1.9.5.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.1.zip", "3.0.2.1": "https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.1.zip", "5.5.6.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.1.zip", "5.7.5.1": "https://downloads.wordpress.org/plugin/contact-form-7.5.7.5.1.zip", "1.10.0.1": "https://downloads.wordpress.org/plugin/contact-form-7.1.10.0.1.zip", "2.0-beta": "https://downloads.wordpress.org/plugin/contact-form-7.2.0-beta.zip", "3.0-beta": "https://downloads.wordpress.org/plugin/contact-form-7.3.0-beta.zip", "3.9-beta": "https://downloads.wordpress.org/plugin/contact-form-7.3.9-beta.zip", "4.1-beta": "https://downloads.wordpress.org/plugin/contact-form-7.4.1-beta.zip", "4.2-beta": "https://downloads.wordpress.org/plugin/contact-form-7.4.2-beta.zip"}, "downloaded": 394729740, "description": "

    Contact Form 7 is a plugin designed to be a practical tool for all WordPress users who embrace the philosophy of free and open source software. It employs sophisticatedly modularized architecture and its original Schema-Woven Validation technology.

    \n

    Docs and support

    \n

    You can find docs, FAQ and more detailed information about Contact Form 7 on contactform7.com. When you cannot find the answer to your question on the FAQ or in any of the documentation, check the support forum on WordPress.org. If you cannot locate any topics that pertain to your particular issue, post a new topic for it.

    \n

    Contact Form 7 needs your support

    \n

    It is hard to continue to maintain this plugin without support from users like you. There are several ways for you to contribute to the project: testing, coding, translating it into your local languages, helping other users, financial donations, etc, etc. We equally welcome you regardless of the way you contribute.

    \n

    Privacy notices

    \n

    With the default configuration, this plugin, in itself, does not:

    \n
      \n
    • track users by stealth;
    • \n
    • write any user personal data to the database;
    • \n
    • send any data to external servers;
    • \n
    • use cookies.
    • \n
    \n

    If you activate certain features in this plugin, the contact form submitter’s personal data, including their IP address, may be sent to the service provider. Thus, confirming the provider’s privacy policy is recommended. These features include:

    \n\n", "donate_link": "https://contactform7.com/donate/", "num_ratings": 2141, "screenshots": {"1": {"src": "https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454", "caption": "screenshot-1.png"}}, "support_url": "https://wordpress.org/support/plugin/contact-form-7/", "contributors": {"takayukister": {"avatar": "https://secure.gravatar.com/avatar/538487024e649d43dea84ff38d14582d03119e3e7aaaca3b7692443335999133?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/takayukister/", "display_name": "Takayuki Miyoshi"}, "rocklobsterinc": {"avatar": "https://secure.gravatar.com/avatar/4aa558df1c07e327536d8d0adad6d00fcdca0484c51adf0b867a2aa5ee054bbc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rocklobsterinc/", "display_name": "Rock Lobster Inc."}}, "last_updated": "2025-10-29 9:00am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/contact-form-7.6.1.3.zip", "author_profile": "https://profiles.wordpress.org/rocklobsterinc/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 10000000, "aspiresync_meta": {"id": "019a30bf-f11d-716d-ac6a-5d3577cf9ad9", "name": "Contact Form 7", "slug": "contact-form-7", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761728400, "version": "6.1.3"}, "support_threads": 103, "requires_plugins": [], "short_description": "Just another contact form plugin. Simple but flexible.", "author_block_count": 1, "author_block_rating": 80, "commercial_support_url": "", "support_threads_resolved": 41}'); -INSERT INTO public.plugins VALUES ('019a30c1-646d-73c7-bcf5-6ea5c9444c45', 'cookie-law-info', 'CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice)', 'Easily set up cookie banner or notice in WordPress, and policy pages for compliance with global cookie laws (GDPR, DSGVO, RGPD, CCPA/CPRA, etc).', '

    CookieYes is the leading WordPress plugin for cookie consent and privacy compliance. It supports GDPR (DSGVO), CCPA/CPRA, ePrivacy, UK GDPR & PECR, LGPD (Brazil), PIPEDA (Canada), POPIA (South Africa) and other global laws.

    -

    The plugin offers a customizable cookie banner that blocks non-essential scripts until consent is given and generates a tailored Cookie Policy page.

    -

    Features

    -

    Consent Management

    -
      -
    • -

      Cookie Consent Banner: Show banner with Accept/Reject options for GDPR and CCPA cookie consent.

      -
    • -
    • -

      Automatic Cookie Blocking: Block non-essential cookies until users give explicit consent for cookie compliance in WordPress.

      -
    • -
    • -

      Preference Center: Let users manage cookie preferences by category (analytics, marketing, etc.).

      -
    • -
    • -

      Revisit Consent Button: Floating button for updating consent choices anytime.

      -
    • -
    • -

      CCPA/CPRA Opt-Out: Add “Do Not Sell or Share My Personal Information” link for California residents to meet CCPA cookie requirements.

      -
    • -
    • -

      Consent Logging: Record and export user consent in CSV for audits.

      -
    • -
    • -

      Google Consent Mode v2: Integrate with Google Consent Mode for ad tracking and compliance.

      -
    • -
    • -

      Microsoft UET Consent Mode: Activate UET Consent Mode to ensure tag behavior complies with Microsoft’s EU consent requirements in a Microsoft consent plugin setup.

      -
    • -
    • -

      GDPR Compliant Data Storage: Store data in EU-based, GDPR-compliant data centers per Data Processing Agreement.

      -
    • -
    -

    Banner Customization

    -
      -
    • -

      Layout Options: Choose top/bottom bar, box, or popup layouts for your WordPress cookie banner.

      -
    • -
    • -

      Reload page on consent action: Automatically reload the page when users click “Accept All” or “Reject All”.

      -
    • -
    -

    Cookie Scanner & Management

    -
      -
    • -

      Automatic Scanning: One-click scan to detect and categorize cookies on your site.

      -
    • -
    • -

      Manual Cookie Management: Add, edit, or delete cookies and define categories/descriptions with the WordPress cookie manager.

      -
    • -
    -

    Multilingual & Accessibility

    -
      -
    • -

      Auto-Translation: Translate the banner into 40+ languages based on browser settings.

      -
    • -
    • -

      Multilingual Compatibility: Works with WPML and Polylang for multilingual sites.

      -
    • -
    • -

      Accessibility: The banner is WCAG/ADA compliant for accessibility.

      -
    • -
    -

    Legal Policy Tools

    -
      -
    • Policy Generators: Create WordPress Cookie Policy and Privacy Policy pages tailored to your data practices.
    • -
    -

    Web App Integration

    -
      -
    • Centralized Management: Connect to the CookieYes Web App for advanced features, remote management, and centralized control of scans, policies, and settings.
    • -
    -

    Here’s how you can integrate CookieYes WordPress cookie plugin with our web app for enhanced features:

    -

    -

    Premium Features

    -

    Access the following features by subscribing to a premium plan (Basic, Pro, or Ultimate) on the CookieYes web app account. See all features and compare plans

    -

    Advanced Consent Management

    -

    Geo-Targeting: Show region-specific banners (e.g., GDPR banner for EU, CCPA banner for California).
    -✅ IAB TCF v2.2 framework: Full support for the Transparency and Consent Framework for publishers and advertisers.
    -✅ Google’s Additional Consent Mode: Manage consent for Google’s Ad Tech Providers outside the IAB GVL.

    -

    Enhanced Banner Customization

    -

    Customizable Styles: Adjust banner colors, fonts, and position to match your website design.
    -✅ Page-Specific Controls: Disable the banner on specific pages (e.g., login, checkout).
    -✅ Custom CSS: Custom CSS for advanced design customization.
    -✅ Custom Logo: Add your brand’s logo to the cookie banner.
    -✅ Remove Branding: Remove the “Powered by CookieYes” branding for a white-label experience.

    -

    Extended Cookie Management

    -

    Increased pageviews limit: Extend pageviews from 5,000 up to unlimited.
    -✅ Increased Scan Limits: Scan up to 8,000 pages for a full cookie audit.
    -✅ Scheduled Scans: Automate recurring scans to keep cookie data updated.
    -✅ Scan Behind Login: Detect cookies on protected, login-only pages.

    -

    Subdomain & Multi-User Support

    -

    Subdomain Consent Sharing: Apply consent settings across multiple subdomains.
    -✅ Multi-User Management: Control roles and permissions within the CookieYes Web App.

    -

    Enhanced Security & Compliance

    -

    Two-Factor Authentication (2FA): Add an extra security layer to your CookieYes account.
    -✅ Global Privacy Control (GPC): Respect GPC signals automatically for global compliance.

    -

    Connection to app.cookieyes.com & feedback.cookieyes.com

    -

    This plugin connects your site to app.cookieyes.com to enable features such as cookie scanning, syncing settings with your CookieYes account, and showing scan results and consent data in the dashboard. It also connects to feedback.cookieyes.com for collecting feedback when the plugin is deactivated. See our Privacy Policy and Terms & Conditions for details on data collection and usage.

    -

    The CookieYes GDPR Cookie Consent Plugin Uses The Following Cookie Only

    -
      -
    • “cookieyes-consent” – CookieYes sets this cookie to remember users’ consent preferences so that their preferences are respected on their subsequent visits to this site. It does not collect or store any personal information of the site visitors.
    • -
    -

    Setup Guide

    -

    Our WordPress cookie plugin user guide will help you set up the plugin on your website.

    -

    Useful links

    -

    CookieYes support
    -Plugin FAQ

    -

    Additional Resources

    -

    CookieYes Knowledge base
    -GDPR cookie consent
    -Cookie Law
    -Cookie banner guide
    -Translate CookieYes

    -

    Legal & Compliance

    -

    Privacy Policy
    -Data Processing Agreement

    -

    NOTE: INSTALLING THIS PLUGIN ALONE DOES NOT MAKE YOUR SITE GDPR AND CCPA COMPLIANT. SINCE EACH SITE USES DIFFERENT COOKIES, YOU NEED TO ENSURE YOU HAVE THE NECESSARY CONFIGURATIONS IN PLACE WITH A SUPPORTING COOKIE NOTICE.

    -', '3.3.6', 'CookieYes', '5.0.0', '5.6', '6.8.3', 'https://downloads.wordpress.org/plugin/cookie-law-info.3.3.6.zip', '2012-05-21 00:00:00+00', '2025-10-23 11:14:00+00', 'https://profiles.wordpress.org/cookieyesdev/', 96, 3130, 10, 8, 1000000, 41147748, 'https://www.cookieyes.com/', 'https://www.cookieyes.com/', 'commercial', 'https://www.cookieyes.com/support/', 'https://wordpress.org/support/plugin/cookie-law-info/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice)", "slug": "cookie-law-info", "tags": {"gdpr": "GDPR", "cookie": "cookie", "cookie-banner": "cookie banner", "cookie-notice": "cookie notice", "cookie-consent": "cookie consent"}, "added": "2012-05-21", "icons": {"1x": "https://ps.w.org/cookie-law-info/assets/icon.svg?rev=3007243", "svg": "https://ps.w.org/cookie-law-info/assets/icon.svg?rev=3007243"}, "author": "CookieYes", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/cookie-law-info/assets/banner-772x250.png?rev=3341409", "high": "https://ps.w.org/cookie-law-info/assets/banner-1544x500.png?rev=3341409"}, "ratings": {"1": 76, "2": 29, "3": 27, "4": 102, "5": 2896}, "version": "3.3.6", "homepage": "https://www.cookieyes.com/", "requires": "5.0.0", "sections": {"faq": "\n
    \nWhat is GDPR?\n\n

    \n

    GDPR (General Data Protection Regulation) is the EU privacy law that protects personal data and regulates how organizations handle it. It is also referred to as DSGVO (DatenSchutz-Grundverordnung) in German.

    \n

    \n
    \nWhat is CCPA?\n\n

    \n

    CCPA (California Consumer Privacy Act). It gives residents more control over personal data, requiring transparency, opt-out options, and secure handling.

    \n

    \n
    \nWhat is GDPR cookie consent?\n\n

    \n

    Under GDPR, sites must get explicit consent before storing or accessing non-essential cookies (analytics, ads). This is called GDPR cookie consent.

    \n

    \n
    \nWhat is CCPA compliance?\n\n

    \n

    CCPA compliance means meeting the law’s privacy requirements, including informing users about data collection, offering opt-out mechanisms like “Do Not Sell or Share My Personal Information,” and ensuring secure processing of user data for CCPA cookie compliance.

    \n

    \n
    \nWhat is a GDPR plugin and why do I need one for WordPress?\n\n

    \n

    A GDPR plugin manages cookie consent, blocks cookies until consent, and generates cookie/privacy policies. CookieYes’s GDPR WordPress plugin automates these tasks for WordPress.

    \n

    \n
    \nWhat does this plugin do?\n\n

    \n

    CookieYes adds a cookie banner to your site, informs visitors about your cookie policy, and helps you log and manage consent. It also lets you list cookies on your policy page using a shortcode (or HTML if connected to the Web App).

    \n

    \n
    \nCan I use CookieYes for both GDPR and CCPA compliance?\n\n

    \n

    Yes. CookieYes supports both GDPR and CCPA/CPRA compliance, including GDPR cookie consent and CCPA cookie consent features. You can add banners and CCPA opt-out links.

    \n

    \n
    \nWhat is a cookie notice?\n\n

    \n

    A cookie notice (or cookie banner) tells visitors a site uses cookies, why they’re used, and how they impact privacy. It gives options to accept or manage preferences, ensuring GDPR and CCPA compliance.

    \n

    \n
    \nCan I customize the cookie notice using CookieYes?\n\n

    \n

    Yes. Adjust banner text, layout, style, and position. Premium plans allow logo upload and branding removal.

    \n

    \n
    \nDoes the plugin block cookies before consent?\n\n

    \n

    Yes. Non-essential cookies are blocked until explicit consent; essential cookies run by default.

    \n

    \n
    \nDo visitors have to accept or refuse cookies to use a website?\n\n

    \n

    No. Only essential cookies load by default. Users may accept or reject other cookie categories.

    \n

    \n
    \nDoes this plugin stop all cookies from being stored?\n\n

    \n

    It blocks cookies based on category consent. However, if another plugin places cookies outside of CookieYes, we cannot control or guarantee those behaviors. Blocking everything forcefully could break your site, so this plugin aims to balance compliance with usability.

    \n

    \n
    \nHow does CookieYes help with cookie compliance?\n\n

    \n

    It scans and categorizes cookies, provides banners and preference centers, and logs/export consent data for audits.

    \n

    \n
    \nIs CookieYes a reliable cookie consent tool for GDPR compliance?\n\n

    \n

    Yes. Used by 1.5M+ sites, CookieYes supports GDPR cookie compliance, automatic blocking, policy generation, and consent logging.

    \n

    \n
    \nCan I export or log user consent as per GDPR requirements?\n\n

    \n

    Yes. You can export logs of user consent and cookie preferences in CSV format. This helps with audits and fulfilling compliance obligations.

    \n

    \n
    \nCan the plugin help me generate a GDPR-compliant cookie policy?\n\n

    \n

    Yes. Built-in generator creates Cookie Policy and Privacy Policy pages from scan results.

    \n

    \n
    \nDoes CookieYes support multilingual websites?\n\n

    \n

    Yes. CookieYes automatically translates the banner into over 30 languages based on the visitor’s browser. It also supports WPML and Polylang for multilingual WordPress setups.

    \n

    \n
    \nDo I still need a privacy policy if I use CookieYes?\n\n

    \n

    Yes. A privacy policy is legally required. CookieYes helps you generate one, but you must ensure that it accurately reflects your site’s data practices.

    \n

    \n
    \nIs CookieYes suitable for large websites or agencies?\n\n

    \n

    Yes. CookieYes includes features like subdomain consent sharing, multi-user management, and scheduled cookie scans. It also supports login-protected page scanning, which makes it a good fit for large and enterprise-level sites.

    \n

    \n
    \nDoes CookieYes integrate with WP Consent API?\n\n

    \n

    Yes, CookieYes integrates with WP Consent API, allowing it to share user consent states with compatible plugins and improve compliance consistency.

    \n

    \n
    \nThe cookie notice header does not work on my browser. What should I do?\n\n

    \n

    Please report the issue on the support forum. Include:
    \n* Your website URL
    \n* WordPress version (bottom right corner of your dashboard)
    \n* The browser where the issue occurs (e.g., Chrome, Firefox)
    \n* A brief description of the problem
    \nThe more details you share, the faster we can help.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy naomispirit on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    So easy to use! I enable it on almost all of my clients sites, and they keep making it more and more streamlied to use. Its my goto.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lamango on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The review requests that freeze on the backend are my only complaint. Otherwise all is well.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy vixent on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been using the CookieYes plugin for several of my websites. It''s very simple and efficient.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Sublime work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gillmour on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    seamless and elegant

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tharushi2024 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this plugin works well.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect Plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Self Care Hustler (selfcarehustler) on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just what I was looking for. Easy set up and customize design options. Plus it''s free :).

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    STOP ASKING FOR REVIEWS IN THE WORDPRESS DASHBOARD

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gnode (gallivantingnomad) on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I would have given 5 stars but the asking for reviews message are getting really annoying and old and it seems like in the last 7 years every developer is doing it. Meaning endless asking for reviews messages in everyones dashboard. STOP IT. Wordpress admins want messages for things that are important not asking for reviews. If people want to review they will, it is off putting being endlessly asked for them.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useful plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bjacobs25 on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy enough to customize and useful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This plugin went from useful to useless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy zhazhy on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    CookieYes plugin unfortunately went from being a very useful plugin to useless. A basic functionality such as translation is a must, so if you have a multilingual website and you are not willing to pay $10 per month just to have an option of translation then this is not the plugin for you. If you have an older version do not update on multilingual sites, because they have made it uncompatible with Polylang, WPML, etc. with latest update and you can''t even translate with pot files (they have included only pot file for their setting - why, is beyond my understanding - I can''t translate the frontend and I will be translating CookieYes backend settings [a slap on the head emoji] :) I understand, you have to make money somehow but this is just to basic functionality that you moved from free to premium. Will be uninstalling this extension in the future from all of my websites because I''m not paying for translation. Based on the attitude to slowly move (basic) options from free version to paid version is also a big NO NO for me. Maybe you would get more paying customers in the future if you would offer something of value. Sorry but your extension does not offer $120 of value per year.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cma783 on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this is an excellent plugin. thank you

    \n
    \n
    \n", "changelog": "

    3.3.6

    \n

    [Fix] – Revisit icon text’s french translation.
    \n[Enhancement] – GCM – Update consent based on cookie’s value.
    \n[Enhancement] – Banner dark theme accessibility.
    \n[Fix] – Admin screen translation not working.

    \n

    3.3.5

    \n

    [Fix] – Fixed minor security vulnerabilities.
    \n[Enhancement] – UI/UX improvements.
    \n[Fix] – Mismatch in consent chart data.

    \n

    Earlier versions

    \n

    For the changelog of earlier versions, please refer to the changelog.txt.

    \n", "description": "

    CookieYes is the leading WordPress plugin for cookie consent and privacy compliance. It supports GDPR (DSGVO), CCPA/CPRA, ePrivacy, UK GDPR & PECR, LGPD (Brazil), PIPEDA (Canada), POPIA (South Africa) and other global laws.

    \n

    The plugin offers a customizable cookie banner that blocks non-essential scripts until consent is given and generates a tailored Cookie Policy page.

    \n

    Features

    \n

    Consent Management

    \n
      \n
    • \n

      Cookie Consent Banner: Show banner with Accept/Reject options for GDPR and CCPA cookie consent.

      \n
    • \n
    • \n

      Automatic Cookie Blocking: Block non-essential cookies until users give explicit consent for cookie compliance in WordPress.

      \n
    • \n
    • \n

      Preference Center: Let users manage cookie preferences by category (analytics, marketing, etc.).

      \n
    • \n
    • \n

      Revisit Consent Button: Floating button for updating consent choices anytime.

      \n
    • \n
    • \n

      CCPA/CPRA Opt-Out: Add “Do Not Sell or Share My Personal Information” link for California residents to meet CCPA cookie requirements.

      \n
    • \n
    • \n

      Consent Logging: Record and export user consent in CSV for audits.

      \n
    • \n
    • \n

      Google Consent Mode v2: Integrate with Google Consent Mode for ad tracking and compliance.

      \n
    • \n
    • \n

      Microsoft UET Consent Mode: Activate UET Consent Mode to ensure tag behavior complies with Microsoft’s EU consent requirements in a Microsoft consent plugin setup.

      \n
    • \n
    • \n

      GDPR Compliant Data Storage: Store data in EU-based, GDPR-compliant data centers per Data Processing Agreement.

      \n
    • \n
    \n

    Banner Customization

    \n
      \n
    • \n

      Layout Options: Choose top/bottom bar, box, or popup layouts for your WordPress cookie banner.

      \n
    • \n
    • \n

      Reload page on consent action: Automatically reload the page when users click “Accept All” or “Reject All”.

      \n
    • \n
    \n

    Cookie Scanner & Management

    \n
      \n
    • \n

      Automatic Scanning: One-click scan to detect and categorize cookies on your site.

      \n
    • \n
    • \n

      Manual Cookie Management: Add, edit, or delete cookies and define categories/descriptions with the WordPress cookie manager.

      \n
    • \n
    \n

    Multilingual & Accessibility

    \n
      \n
    • \n

      Auto-Translation: Translate the banner into 40+ languages based on browser settings.

      \n
    • \n
    • \n

      Multilingual Compatibility: Works with WPML and Polylang for multilingual sites.

      \n
    • \n
    • \n

      Accessibility: The banner is WCAG/ADA compliant for accessibility.

      \n
    • \n
    \n

    Legal Policy Tools

    \n
      \n
    • Policy Generators: Create WordPress Cookie Policy and Privacy Policy pages tailored to your data practices.
    • \n
    \n

    Web App Integration

    \n
      \n
    • Centralized Management: Connect to the CookieYes Web App for advanced features, remote management, and centralized control of scans, policies, and settings.
    • \n
    \n

    Here’s how you can integrate CookieYes WordPress cookie plugin with our web app for enhanced features:

    \n

    \n

    Premium Features

    \n

    Access the following features by subscribing to a premium plan (Basic, Pro, or Ultimate) on the CookieYes web app account. See all features and compare plans

    \n

    Advanced Consent Management

    \n

    Geo-Targeting: Show region-specific banners (e.g., GDPR banner for EU, CCPA banner for California).
    \n✅ IAB TCF v2.2 framework: Full support for the Transparency and Consent Framework for publishers and advertisers.
    \n✅ Google’s Additional Consent Mode: Manage consent for Google’s Ad Tech Providers outside the IAB GVL.

    \n

    Enhanced Banner Customization

    \n

    Customizable Styles: Adjust banner colors, fonts, and position to match your website design.
    \n✅ Page-Specific Controls: Disable the banner on specific pages (e.g., login, checkout).
    \n✅ Custom CSS: Custom CSS for advanced design customization.
    \n✅ Custom Logo: Add your brand’s logo to the cookie banner.
    \n✅ Remove Branding: Remove the “Powered by CookieYes” branding for a white-label experience.

    \n

    Extended Cookie Management

    \n

    Increased pageviews limit: Extend pageviews from 5,000 up to unlimited.
    \n✅ Increased Scan Limits: Scan up to 8,000 pages for a full cookie audit.
    \n✅ Scheduled Scans: Automate recurring scans to keep cookie data updated.
    \n✅ Scan Behind Login: Detect cookies on protected, login-only pages.

    \n

    Subdomain & Multi-User Support

    \n

    Subdomain Consent Sharing: Apply consent settings across multiple subdomains.
    \n✅ Multi-User Management: Control roles and permissions within the CookieYes Web App.

    \n

    Enhanced Security & Compliance

    \n

    Two-Factor Authentication (2FA): Add an extra security layer to your CookieYes account.
    \n✅ Global Privacy Control (GPC): Respect GPC signals automatically for global compliance.

    \n

    Connection to app.cookieyes.com & feedback.cookieyes.com

    \n

    This plugin connects your site to app.cookieyes.com to enable features such as cookie scanning, syncing settings with your CookieYes account, and showing scan results and consent data in the dashboard. It also connects to feedback.cookieyes.com for collecting feedback when the plugin is deactivated. See our Privacy Policy and Terms & Conditions for details on data collection and usage.

    \n

    The CookieYes GDPR Cookie Consent Plugin Uses The Following Cookie Only

    \n
      \n
    • “cookieyes-consent” – CookieYes sets this cookie to remember users’ consent preferences so that their preferences are respected on their subsequent visits to this site. It does not collect or store any personal information of the site visitors.
    • \n
    \n

    Setup Guide

    \n

    Our WordPress cookie plugin user guide will help you set up the plugin on your website.

    \n

    Useful links

    \n

    CookieYes support
    \nPlugin FAQ

    \n

    Additional Resources

    \n

    CookieYes Knowledge base
    \nGDPR cookie consent
    \nCookie Law
    \nCookie banner guide
    \nTranslate CookieYes

    \n

    Legal & Compliance

    \n

    Privacy Policy
    \nData Processing Agreement

    \n

    NOTE: INSTALLING THIS PLUGIN ALONE DOES NOT MAKE YOUR SITE GDPR AND CCPA COMPLIANT. SINCE EACH SITE USES DIFFERENT COOKIES, YOU NEED TO ENSURE YOU HAVE THE NECESSARY CONFIGURATIONS IN PLACE WITH A SUPPORTING COOKIE NOTICE.

    \n", "screenshots": "
    1. \"Cookie

      Cookie consent banner on the user-end

    2. \"Cookie

      Cookie preference center on the user-end

    3. \"CookieYes

      CookieYes GDPR cookie consent WordPress plugin - Admin panel

    4. \"Cookie

      Cookie banner settings for cookie compliance

    5. \"Manage

      Manage cookies for cookie compliance

    6. \"Add

      Add new cookie

    7. \"Languages

      Languages for cookie banner auto-translation

    8. \"Edit

      Edit cookie banner content in multiple languages

    9. \"Privacy

      Privacy policy generator and cookie policy generator

    ", "installation": "

    Automatic installation

    \n
      \n
    • \n

      Go to Plugins from your WordPress dashboard and select Add New Plugin.

      \n
    • \n
    • \n

      Search for “CookieYes” and Install Now.

      \n
    • \n
    • \n

      Click Activate to enable the plugin.

      \n
    • \n
    \n

    Manual installation

    \n
      \n
    • \n

      Download the CookieYes plugin zip file from the WordPress.org page.

      \n
    • \n
    • \n

      Go to Plugins from your WordPress dashboard and select Add New Plugin.

      \n
    • \n
    • \n

      Click Upload Plugin and choose the downloaded zip file.

      \n
    • \n
    • \n

      Click Install Now and after installation, click Activate Plugin.

      \n
    • \n
    \n

    Alternatively, you can upload the zip using the FTP application. Extract the zip file and upload the folder to your /wp-content/plugins/ directory. Once uploaded, activate the plugin from your WordPress dashboard.

    \n

    To connect the plugin to the CookieYes web app:

    \n

    (Please note that the Web App integration is optional. You can still use the plugin without connecting it to the app.)

    \n
      \n
    • \n

      After activating the plugin, click CookieYes on your WordPress dashboard menu.

      \n
    • \n
    • \n

      Click Connect to a new account. You will be prompted to sign up for a new account after you choose the required plan. Or, if you already have an existing account, click Connect to an existing account to log in.

      \n
    • \n
    \n

    Plugin updates

    \n

    Every time we update the plugin, you will see a notification on the installed plugins page. You can directly update the plugin from the WordPress dashboard. We recommend keeping the plugin updated to avail new functionalities and security features.

    \n"}, "versions": {"1.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.zip", "1.0.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.0.1.zip", "1.0.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.0.3.zip", "1.2.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.2.2.zip", "1.3.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.3.2.zip", "1.4.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.4.3.zip", "1.5.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/cookie-law-info.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/cookie-law-info.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/plugin/cookie-law-info.1.8.9.zip", "1.9.0": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/cookie-law-info.1.9.5.zip", "2.0.0": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/cookie-law-info.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/cookie-law-info.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/cookie-law-info.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/cookie-law-info.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/cookie-law-info.2.1.3.zip", "3.0.0": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/cookie-law-info.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/cookie-law-info.3.1.8.zip", "3.2.0": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.6.zip", "trunk": "https://downloads.wordpress.org/plugin/cookie-law-info.zip", "1.6.10": "https://downloads.wordpress.org/plugin/cookie-law-info.1.6.10.zip", "3.2.10": "https://downloads.wordpress.org/plugin/cookie-law-info.3.2.10.zip"}, "downloaded": 41147748, "description": "

    CookieYes is the leading WordPress plugin for cookie consent and privacy compliance. It supports GDPR (DSGVO), CCPA/CPRA, ePrivacy, UK GDPR & PECR, LGPD (Brazil), PIPEDA (Canada), POPIA (South Africa) and other global laws.

    \n

    The plugin offers a customizable cookie banner that blocks non-essential scripts until consent is given and generates a tailored Cookie Policy page.

    \n

    Features

    \n

    Consent Management

    \n
      \n
    • \n

      Cookie Consent Banner: Show banner with Accept/Reject options for GDPR and CCPA cookie consent.

      \n
    • \n
    • \n

      Automatic Cookie Blocking: Block non-essential cookies until users give explicit consent for cookie compliance in WordPress.

      \n
    • \n
    • \n

      Preference Center: Let users manage cookie preferences by category (analytics, marketing, etc.).

      \n
    • \n
    • \n

      Revisit Consent Button: Floating button for updating consent choices anytime.

      \n
    • \n
    • \n

      CCPA/CPRA Opt-Out: Add “Do Not Sell or Share My Personal Information” link for California residents to meet CCPA cookie requirements.

      \n
    • \n
    • \n

      Consent Logging: Record and export user consent in CSV for audits.

      \n
    • \n
    • \n

      Google Consent Mode v2: Integrate with Google Consent Mode for ad tracking and compliance.

      \n
    • \n
    • \n

      Microsoft UET Consent Mode: Activate UET Consent Mode to ensure tag behavior complies with Microsoft’s EU consent requirements in a Microsoft consent plugin setup.

      \n
    • \n
    • \n

      GDPR Compliant Data Storage: Store data in EU-based, GDPR-compliant data centers per Data Processing Agreement.

      \n
    • \n
    \n

    Banner Customization

    \n
      \n
    • \n

      Layout Options: Choose top/bottom bar, box, or popup layouts for your WordPress cookie banner.

      \n
    • \n
    • \n

      Reload page on consent action: Automatically reload the page when users click “Accept All” or “Reject All”.

      \n
    • \n
    \n

    Cookie Scanner & Management

    \n
      \n
    • \n

      Automatic Scanning: One-click scan to detect and categorize cookies on your site.

      \n
    • \n
    • \n

      Manual Cookie Management: Add, edit, or delete cookies and define categories/descriptions with the WordPress cookie manager.

      \n
    • \n
    \n

    Multilingual & Accessibility

    \n
      \n
    • \n

      Auto-Translation: Translate the banner into 40+ languages based on browser settings.

      \n
    • \n
    • \n

      Multilingual Compatibility: Works with WPML and Polylang for multilingual sites.

      \n
    • \n
    • \n

      Accessibility: The banner is WCAG/ADA compliant for accessibility.

      \n
    • \n
    \n

    Legal Policy Tools

    \n
      \n
    • Policy Generators: Create WordPress Cookie Policy and Privacy Policy pages tailored to your data practices.
    • \n
    \n

    Web App Integration

    \n
      \n
    • Centralized Management: Connect to the CookieYes Web App for advanced features, remote management, and centralized control of scans, policies, and settings.
    • \n
    \n

    Here’s how you can integrate CookieYes WordPress cookie plugin with our web app for enhanced features:

    \n

    \n

    Premium Features

    \n

    Access the following features by subscribing to a premium plan (Basic, Pro, or Ultimate) on the CookieYes web app account. See all features and compare plans

    \n

    Advanced Consent Management

    \n

    Geo-Targeting: Show region-specific banners (e.g., GDPR banner for EU, CCPA banner for California).
    \n✅ IAB TCF v2.2 framework: Full support for the Transparency and Consent Framework for publishers and advertisers.
    \n✅ Google’s Additional Consent Mode: Manage consent for Google’s Ad Tech Providers outside the IAB GVL.

    \n

    Enhanced Banner Customization

    \n

    Customizable Styles: Adjust banner colors, fonts, and position to match your website design.
    \n✅ Page-Specific Controls: Disable the banner on specific pages (e.g., login, checkout).
    \n✅ Custom CSS: Custom CSS for advanced design customization.
    \n✅ Custom Logo: Add your brand’s logo to the cookie banner.
    \n✅ Remove Branding: Remove the “Powered by CookieYes” branding for a white-label experience.

    \n

    Extended Cookie Management

    \n

    Increased pageviews limit: Extend pageviews from 5,000 up to unlimited.
    \n✅ Increased Scan Limits: Scan up to 8,000 pages for a full cookie audit.
    \n✅ Scheduled Scans: Automate recurring scans to keep cookie data updated.
    \n✅ Scan Behind Login: Detect cookies on protected, login-only pages.

    \n

    Subdomain & Multi-User Support

    \n

    Subdomain Consent Sharing: Apply consent settings across multiple subdomains.
    \n✅ Multi-User Management: Control roles and permissions within the CookieYes Web App.

    \n

    Enhanced Security & Compliance

    \n

    Two-Factor Authentication (2FA): Add an extra security layer to your CookieYes account.
    \n✅ Global Privacy Control (GPC): Respect GPC signals automatically for global compliance.

    \n

    Connection to app.cookieyes.com & feedback.cookieyes.com

    \n

    This plugin connects your site to app.cookieyes.com to enable features such as cookie scanning, syncing settings with your CookieYes account, and showing scan results and consent data in the dashboard. It also connects to feedback.cookieyes.com for collecting feedback when the plugin is deactivated. See our Privacy Policy and Terms & Conditions for details on data collection and usage.

    \n

    The CookieYes GDPR Cookie Consent Plugin Uses The Following Cookie Only

    \n
      \n
    • “cookieyes-consent” – CookieYes sets this cookie to remember users’ consent preferences so that their preferences are respected on their subsequent visits to this site. It does not collect or store any personal information of the site visitors.
    • \n
    \n

    Setup Guide

    \n

    Our WordPress cookie plugin user guide will help you set up the plugin on your website.

    \n

    Useful links

    \n

    CookieYes support
    \nPlugin FAQ

    \n

    Additional Resources

    \n

    CookieYes Knowledge base
    \nGDPR cookie consent
    \nCookie Law
    \nCookie banner guide
    \nTranslate CookieYes

    \n

    Legal & Compliance

    \n

    Privacy Policy
    \nData Processing Agreement

    \n

    NOTE: INSTALLING THIS PLUGIN ALONE DOES NOT MAKE YOUR SITE GDPR AND CCPA COMPLIANT. SINCE EACH SITE USES DIFFERENT COOKIES, YOU NEED TO ENSURE YOU HAVE THE NECESSARY CONFIGURATIONS IN PLACE WITH A SUPPORTING COOKIE NOTICE.

    \n", "donate_link": "https://www.cookieyes.com/", "num_ratings": 3130, "screenshots": {"1": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-1.png?rev=2790027", "caption": "Cookie consent banner on the user-end"}, "2": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-2.png?rev=2790027", "caption": "Cookie preference center on the user-end"}, "3": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-3.png?rev=3359724", "caption": "CookieYes GDPR cookie consent WordPress plugin - Admin panel"}, "4": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-4.png?rev=3275761", "caption": "Cookie banner settings for cookie compliance"}, "5": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-5.png?rev=3275761", "caption": "Manage cookies for cookie compliance"}, "6": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-6.png?rev=2790027", "caption": "Add new cookie"}, "7": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-7.png?rev=3275761", "caption": "Languages for cookie banner auto-translation"}, "8": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-8.png?rev=2790027", "caption": "Edit cookie banner content in multiple languages"}, "9": {"src": "https://ps.w.org/cookie-law-info/assets/screenshot-9.png?rev=3275761", "caption": "Privacy policy generator and cookie policy generator"}}, "support_url": "https://wordpress.org/support/plugin/cookie-law-info/", "contributors": {"webtoffee": {"avatar": "https://secure.gravatar.com/avatar/9731506308a6982c4681139e19a122d0adf580418ed1f715e623f9bf09058cef?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/webtoffee/", "display_name": "WebToffee"}, "cookieyesdev": {"avatar": "https://secure.gravatar.com/avatar/cf4db5280877afd4a40b1cc3879705de09125f351958ae3ce8fc5cfa9890345b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cookieyesdev/", "display_name": "CookieYes"}}, "last_updated": "2025-10-23 11:14am GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/cookie-law-info.3.3.6.zip", "author_profile": "https://profiles.wordpress.org/cookieyesdev/", "business_model": "commercial", "repository_url": "", "upgrade_notice": {"3.3.6": "

    [Fix] - Revisit icon text's french translation.\n[Enhancement] - GCM - Update consent based on cookie's value.\n[Enhancement] - Banner dark theme accessibility.\n[Fix] - Admin screen translation not working.

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f15e-73f1-8b57-6162bfc5399e", "name": "CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice)", "slug": "cookie-law-info", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761218040, "version": "3.3.6"}, "support_threads": 10, "requires_plugins": [], "short_description": "Easily set up cookie banner or notice in WordPress, and policy pages for compliance with global cookie laws (GDPR, DSGVO, RGPD, CCPA/CPRA, etc).", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "https://www.cookieyes.com/support/", "support_threads_resolved": 8}'); -INSERT INTO public.plugins VALUES ('019a30c1-6477-72dd-b60b-4eb64b1b845b', 'cookie-notice', 'Cookie Notice & Compliance for GDPR / CCPA', 'Cookie Notice allows you to you elegantly inform users that your site uses cookies and helps you comply with GDPR, CCPA and other data privacy laws.', '

    Cookie Notice provides a simple, customizable website banner that can be used to help your website comply with certain cookie consent requirements under the EU GDPR cookie law and CCPA regulations and includes seamless integration with Cookie Compliance to help your site comply with the latest updates to existing consent laws.

    -

    Cookie Compliance is a fully featured Consent Management Platform (CMP) that provides automated compliance features and enhanced design controls in a state-of-the-art web application. Cookie Compliance enables websites to take a proactive approach to data protection and consent laws. It is the first solution to offer Intentional Consent, a new consent framework that incorporates the latest guidelines from over 100+ countries, and emerging standards from leading international organizations like the IEEE and European Center for Digital Rights (noyb.eu). Cookie Compliance provides a beautiful, multi-level experience and includes new choices and controls for site visitors to better understand and engage in data privacy decisions.

    -
    -

    Our Cookie Compliance web application introduces a more ethical, proactive way to capture and manage consent. This early version of the emerging Intentional Consent framework is a result of Hu-manity.co’s ongoing work with top Fortune 500 companies, governments, and standards organizations, who believe that the imbalanced relationship between consumers and corporations is unsustainable when it comes to data privacy and consent online. We are making it available for all website owners and operators who share this belief and support our mission to eliminate the dark patterns in online consent.
    - Matt Sinderbrand – Chief Platform Officer, Hu-manity.co

    -
    -

    Cookie Notice (plugin only)

    -

    Cookie Notice provides a simple, customizable website banner to help your website comply with certain cookie consent requirements.

    -

    Banner features:

    -
      -
    • Customizable notice message
    • -
    • Consent on click, scroll or close
    • -
    • Multiple cookie expiry options
    • -
    • Link to Privacy Policy page
    • -
    • WordPress Privacy Policy page synchronization
    • -
    • WPML and Polylang compatible
    • -
    • SEO friendly
    • -
    -

    Cookie Compliance (plugin + web application)

    -

    Cookie Compliance gives you access to the most up-to-date formatting guidelines and technical compliance requirements for over 100 countries and legal jurisdictions.

    -

    Banner features:

    -
      -
    • Intentional Consent provides 3 equal buttons to give site visitors the ability to accept none, some, or all cookies through packaged choices called Data Access Levels. Data Access Levels improve consent conversion and eliminate the dark pattern of deceptive, non-equal choices in the first layer. Complies with equal choice principle prescribed under GDPR and other data protection laws.
    • -
    • Consent duration selector gives visitor control over how long their consent remains valid for your site. Enables your site to align with recent guidelines from EU Data Protection Authorities, which state that cookie consent should be valid for no longer than a period of 6 months.
    • -
    • Cookie purpose categories make it easy for website visitors to customize their consent by category. Complies with affirmative, opt-in consent requirements prescribed under GDPR and other data protection laws.
    • -
    • Consent metrics displays the visitor’s consent record and a list of blocked / allowed 3rd parties directly in the expanded level of the banner. Complies with latest guidance from EU Data Protection Authorities like CNIL (France) and ICO (UK).
    • -
    • Customizable Privacy Paper provides helpful information to improve visitor comprehension and understanding of the data sharing risks and benefits. Allows you to summarize core components of your sites privacy notice and aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • -
    • Configurable Privacy Contact allows you to provide contact information for a business’ data privacy admin, as well as helpful links to data subject request forms and other data privacy resources. Aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • -
    -

    Web Application features:

    -
      -
    • Consent analytics dashboard shows event data for number of visits and provides a “trust score” to help you track how site visitors are setting their consent. Make adjustments to your banner to improve your cookie acceptance rate and monitor progress via the consent activity graph.
    • -
    • Default configurations for GDPR, CCPA and more help to remove dark patterns and allow for quick and easy deployment of the consent banner without any guesswork. Customize the design of any default configuration to match the look and feel of your site.
    • -
    • Automatic script blocking blocks all non-essential cookie scripts and iFrames by default and complies with valid consent rules under GDPR and other data protection laws; in order to be compliant, your site must record visitor consent before setting or sending cookies.
    • -
    • Google Consent Mode ensures that your website can still gather valuable insights and perform effectively while respecting users’ privacy preferences by dynamically adjusting the behavior of Google services according to user consent.
    • -
    • Facebook Consent Mode allows your website to measure the impact of your ads on Facebook, track website activities and conversions and automatically deliver ads to Facebook if the user has agreed to.
    • -
    • Consent record storage automatically stores a record of each consent and makes these records available for export. Complies with proof-of-consent requirements prescribed under GDPR and other data protection laws.
    • -
    • Multilingual support automatically translates all banner text strings and allows you to provide custom translations for every text field to ensure visitors get a consistent consent experience.
    • -
    • Multidomain management allows you to manage additional Free or Professional domains under a single account and enables you to customize banner configuration and design for each domain independently.
    • -
    -

    Cookie Compliance proactive approach:

    -

    For all businesses, the resources required to stay ahead of the latest regulations increases with the passage of each new law. With enforcement of compliance violations increasing daily, we believe it is critical for us as a trusted consent vendor to do everything in our power to help you stay ahead of these laws and remove the risk to your business

    -

    Cookie Compliance covers all current and upcoming regulations:

    -
      -
    • GDPR (EU)
    • -
    • ePrivacy Directive (EU)
    • -
    • ePrivacy Regulation (EU)
    • -
    • PECR (UK)
    • -
    • LGPD (Brazil)
    • -
    • PIPEDA (Canada)
    • -
    • PDPB (India)
    • -
    • CCPA (California, US)
    • -
    • VCDPA (Virginia, US)
    • -
    • Colorado Privacy Act (US)
    • -
    • CPRA (California, US)
    • -
    -

    Cookie Compliance incorporates all recent formatting guidance:

    -
      -
    • European Data Protection Supervisor (EDPS)
    • -
    • ICO (United Kingdom)
    • -
    • CNIL (France)
    • -
    • GPDP (Italy)
    • -
    • BfDl (Germany)
    • -
    • AEPD (Spain)
    • -
    • European Center for Digital Rights (noyb.eu)
    • -
    -

    Cookie Compliance targets dark patterns

    -

    Dark Patterns are user interface (UI) techniques that push site visitors to make decisions (such as agreeing to the installation of cookies on their devices) that they might not otherwise make. The most common Dark Pattern is the lack of an equal “reject all” button on the first layer of the consent notice. Dark Patterns are explicitly banned under GDPR and other data protection laws.

    -

    As a part of our proactive approach, Cookie Compliance is configured by default to prevent Dark Patterns through our unique Intentional Consent design.

    -', '2.5.8', 'Humanityco', '4.9.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/cookie-notice.2.5.8.zip', '2013-07-08 00:00:00+00', '2025-10-28 17:09:00+00', 'https://profiles.wordpress.org/humanityco/', 96, 3018, 5, 1, 1000000, 33439442, 'https://cookie-compliance.co/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/cookie-notice/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Cookie Notice & Compliance for GDPR / CCPA", "slug": "cookie-notice", "tags": {"ccpa": "CCPA", "gdpr": "GDPR", "consent": "consent", "cookies": "cookies", "privacy": "privacy"}, "added": "2013-07-08", "icons": {"1x": "https://ps.w.org/cookie-notice/assets/icon-128x128.png?rev=2466385", "2x": "https://ps.w.org/cookie-notice/assets/icon-256x256.png?rev=2466385"}, "author": "Humanityco", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/cookie-notice/assets/banner-772x250.png?rev=2466385", "high": false}, "ratings": {"1": 104, "2": 21, "3": 11, "4": 33, "5": 2849}, "version": "2.5.8", "homepage": "https://cookie-compliance.co/", "requires": "4.9.6", "sections": {"faq": "\n
    \nIs Cookie Notice free?\n\n

    \n

    Yes! Cookie Notice is a free software.

    \n

    \n
    \nIs Cookie Compliance free?\n\n

    \n

    Yes, but with limits. Cookie Compliance includes both free and paid plans to choose from depending on your needs and your website traffic.

    \n

    \n
    \nDoes the Cookie Notice make my site fully compliant with GDPR or US Privacy Laws?\n\n

    \n

    No. The plugin-only version DOES NOT include technical compliance features such as automatic script blocking, consent purpose categories, or consent record storage. These features are only available through the Cookie Compliance integration.

    \n

    \n
    \nDoes the Cookie Compiance integration make my site fully compliant with GDPR and US Privacy Laws?\n\n

    \n

    Yes! The plugin + web appliaction version includes technical compliance features to meet requirements for over 100 countries and legal jurisdictions.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does what it says on the tin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Arthur (aahkendall) on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple and quick to install and thus comply. My go-to plugin these days.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Customer cookie settings stay after first view

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cencerrita on September 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use and i like the fact the customer cookie settings stay for them when they return instead of them having to continually set again.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great, easy to use GDPR plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fruitlessnoodle on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a helpful GDPR plugin. It does what is required for the legalities and is easy to setup and use. Easy to customise but not necessary. Best part is that it doesn''t send nagging messages.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    funziona

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy andreatambone1 on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    funziona

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excelente aplicación.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy summunn1 on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    <font _mstmutation=\"1\" _msttexthash=\"333151\" _msthash=\"634\">Estoy muy contento </font>con esta aplicación hasta el momento<font _mstmutation=\"1\"></font>

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Parfait

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tchuss13 on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yop merci

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jbaums on August 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simply works

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy captainrogers on July 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to set up, works. What more could you want?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tudo certo até agora

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nanato777 on July 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Até agora está tudo funcionando certinho

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Cool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Reponse Studio (branddavid) on July 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Elle fait le travail

    \n
    \n
    \n", "changelog": "

    2.5.8

    \n
      \n
    • New: Microsoft Clarity Consent API v2 support
    • \n
    • Fix: Prevent loading banner in Beaver Builder
    • \n
    • Fix: Improved bot detection and object cache compatibility
    • \n
    • Fix: Close icon accessibility by switching to button
    • \n
    \n

    2.5.7

    \n
      \n
    • New: Microsoft Consent Mode support
    • \n
    • Tweak: Convert banner links to buttons (for accessibility)
    • \n
    • Tweak: Improved compatibility with caching plugins
    • \n
    • Fix: Displaying cookie notice in admin
    • \n
    \n

    2.5.6

    \n
      \n
    • New: Added Form and Source columns to Privacy Consents table
    • \n
    • Fix: WooCommerce render block issue
    • \n
    • Tweak: Updated WooCommerce Blocks Checkout handling
    • \n
    • Tweak: Disable Privacy Consent cupport when there are no forms available
    • \n
    • Tweak: Updated Chart.js to 4.4.8
    • \n
    \n

    2.5.5

    \n
      \n
    • New: Added Privacy Consent activity chart
    • \n
    • Fix: Hummingbird caching plugin compatibility
    • \n
    \n

    2.5.4

    \n
      \n
    • New: Option to handle all or selected forms in Privacy Consent
    • \n
    • Fix: Undefined array key “form_type” when switching WooCommerce forms
    • \n
    \n

    2.5.3

    \n
      \n
    • Fix: Undefined huOptions variable
    • \n
    • Fix: Prevent loading Privacy Consent modules without Cookie Compliance
    • \n
    • Tweak: Updated Chart.js to 4.4.6
    • \n
    \n

    2.5.2

    \n
      \n
    • Fix: Fatal error on pages with embedded contact form 7 forms
    • \n
    \n

    2.5.1

    \n
      \n
    • Fix: Missing one of the plugin files
    • \n
    \n

    2.5.0

    \n
      \n
    • New: Introducing Privacy Consent
    • \n
    • Tweak: UI updates for the Consent Logs page
    • \n
    • Tweak: Onboarding screen UI improvements
    • \n
    • Tweak: Switch from local to GMT time for consent logs display
    • \n
    • Tweak: Admin menu reorganization
    • \n
    \n

    2.4.18

    \n
      \n
    • Fix: Potential security issue with escaping textarea fields
    • \n
    • Fix: Saving link target for Privacy Policy page
    • \n
    • Fix: Force protocol for widget URL
    • \n
    \n

    2.4.17

    \n
      \n
    • New: SpeedyCache caching plugin compatibility
    • \n
    • New: Breeze caching plugin compatibility
    • \n
    • Fix: Improved WP Rocket plugin compatibility
    • \n
    • Fix: Improved Speed Optimize plugin compatibility
    • \n
    • Fix: Network settings override switching
    • \n
    • Tweak: Chart.js updated to 4.4.3
    • \n
    \n

    2.4.16

    \n
      \n
    • New: Option to enable/disable bot detection
    • \n
    • Fix: Typo in wp_die() function calls
    • \n
    • Tweak: Improved escaping text strings
    • \n
    \n

    2.4.15

    \n
      \n
    • New: Passing Google Consent default parameters (Cookie Compliance only)
    • \n
    • Fix: Invalid Norwegian language locale code
    • \n
    \n

    2.4.14

    \n
      \n
    • New: Google Consent V2 support (Cookie Compliance only)
    • \n
    • New: Added scripts option to Compliance Settings
    • \n
    \n

    2.4.13

    \n
      \n
    • Fix: Removed unneeded parameter from WP Fastest Cache compatibility fix
    • \n
    \n

    2.4.12

    \n
      \n
    • New: WP Optimize caching plugin compatibility
    • \n
    • Fix: WP Fastest Cache plugin compatibility
    • \n
    \n

    2.4.11

    \n
      \n
    • New: Dedicated Consent Logs page
    • \n
    • New: Google AMP support for Cookie Compliance
    • \n
    • New: Settings navigation through tabs and menu items
    • \n
    • Fix: Saving App ID/Key not working in edge cases
    • \n
    • Tweak: Chart.js updated to 4.4.0
    • \n
    \n

    2.4.10

    \n
      \n
    • New: Option to enable/disable caching compatibility
    • \n
    • New: WP Fastest Cache plugin compatibility
    • \n
    • Fix: Potential security issue with purging cache
    • \n
    • Fix: Improved refreshing Compliance analytics data
    • \n
    • Tweak: Chart.js updated to 4.3.2
    • \n
    \n

    2.4.9

    \n
      \n
    • New: WP Rocket plugin compatibility
    • \n
    • New: LiteSpeed Cache plugin compatibility
    • \n
    • New: Google Consent Mode support (Cookie Compliance only)
    • \n
    • New: Facebook Pixel Consent Mode support (Cookie Compliance only)
    • \n
    \n

    2.4.8

    \n
      \n
    • New: Added Pages to Conditional display
    • \n
    • Fix: Homepage display issue
    • \n
    • Fix: Background color issue
    • \n
    • Tweak: Improved WP Rocket support
    • \n
    • Tweak: Improved SG Optimizer support
    • \n
    \n

    2.4.7

    \n
      \n
    • New: Conditional display of the banner
    • \n
    • Tweak: Improved sanitization and validation of data
    • \n
    • Tweak: PHP 8.1 and 8.2 compatibility
    • \n
    • Tweak: Added async attribute when autoblocking is disabled
    • \n
    \n

    2.4.6

    \n
      \n
    • Fix: Cookie Compliance inactive status issue
    • \n
    \n

    2.4.5

    \n
      \n
    • Tweak: Remove the notice from the Elementor page builder
    • \n
    • Tweak: Remove the notice from widgets screen
    • \n
    • Fix: Improved Contact Form 7 reCaptcha compatibility
    • \n
    \n

    2.4.4

    \n
      \n
    • Fix: Undefined index: status and subscription
    • \n
    \n

    2.4.3

    \n
      \n
    • Fix: Deprecated preg_replace() notice in PHP 8.1
    • \n
    \n

    2.4.2

    \n
      \n
    • New: Compatibility with Autoptimize plugin
    • \n
    • Fix: Improved Contact Form 7 reCaptcha support
    • \n
    • Fix: Fixed non-static method cookies_set()
    • \n
    \n

    2.4.1

    \n
      \n
    • New: Contact Form 7 reCaptcha support
    • \n
    • Tweak: Switched health status from critical to recommended when Cookie Compliance is not integrated
    • \n
    • Tweak: Add SimeSite=Lax for created cookies
    • \n
    \n

    2.4.0

    \n
      \n
    • New: Advanced Multisite support
    • \n
    • Fix: Polylang translation not working for shortcode
    • \n
    • Fix: Parse error: syntax error, unexpected ‘[‘
    • \n
    \n

    2.3.1

    \n
      \n
    • New: Option to run consent banner in debug mode
    • \n
    • Fix: Invalid validation of dismissable notices
    • \n
    \n

    2.3.0

    \n
      \n
    • New: Compliance Multi-license pricing options
    • \n
    • Tweak: WordPress 6.0 compatibility
    • \n
    \n

    2.2.3

    \n
      \n
    • Fix: Undefined notice in WP dashboard
    • \n
    • Fix: Close icon event not firing
    • \n
    • Tweak: Remove aria-label from the close icon
    • \n
    • Tweak: CSS tweaks in the admin
    • \n
    \n

    2.2.2

    \n
      \n
    • Fix: Uncrawlable close notice link
    • \n
    • Tweak: WordPress 5.9 compatibility
    • \n
    • Tweak: Prevent displaying the notice in an iframe
    • \n
    • Tweak: Send site language to a web app on signup
    • \n
    \n

    2.2.1

    \n
      \n
    • Fix: Missing variable definition in frontend
    • \n
    \n

    2.2.0

    \n
      \n
    • New: Option to hide banner for logged in users (Compliance only)
    • \n
    \n

    2.1.5

    \n
      \n
    • Tweak: Additional sanitization applied
    • \n
    \n

    2.1.4

    \n
      \n
    • Fix: WordPress 5.8 widgets compatibility
    • \n
    \n

    2.1.3

    \n
      \n
    • Fix: HTML attributes removed from text strings
    • \n
    • Tweak: Improved sanitization of options
    • \n
    \n

    2.1.2

    \n
      \n
    • Tweak: Improved escaping of button labels
    • \n
    \n

    2.1.1

    \n
      \n
    • Fix: Security bug related to compliance caching
    • \n
    \n

    2.1.0

    \n
      \n
    • New: Introducing Cookie Compliance Free plan
    • \n
    \n

    2.0.4

    \n
      \n
    • Fix: Undefined constant HOURS_IN_SECONDS
    • \n
    • Fix: Button style none adding CSS classes “cn-set-cookie cn-button”
    • \n
    • Tweak: Switched the behavior of close icon from accept to reject
    • \n
    • Tweak: Minified frontend and admin js files
    • \n
    \n

    2.0.3

    \n
      \n
    • Fix: Cookies accepted function issue when Compliance activated
    • \n
    \n

    2.0.2

    \n
      \n
    • Tweak: UI/UX improvements
    • \n
    \n

    2.0.1

    \n
      \n
    • Fix: Pending Compliance update blocking the notice
    • \n
    • Fix: PHP Warning: Cannot modify header information
    • \n
    • Tweak: UI/UX fixes for the settings screen
    • \n
    \n

    2.0.0

    \n
      \n
    • New: Introducing Cookie Compliance for GDPR/CCPA
    • \n
    \n

    1.3.2

    \n
      \n
    • Tweak: Speed up Corona Banner loading by moving JS file to footer with async parameter
    • \n
    • Tweak: Improve buttons CSS padding
    • \n
    • Tweak: Accessibility improvements on links
    • \n
    \n

    1.3.1

    \n
      \n
    • Fix: Unable to select Privacy policy link
    • \n
    • Fix: Blank Cookies policy link in a message
    • \n
    • Fix: Undefined index: on_click
    • \n
    • Tweak: Adjusted default opacity back to 100
    • \n
    \n

    1.3.0

    \n
      \n
    • New: Introducing Corona Banner that displays data about Coronavirus pandemia and five steps recommended by the WHO (World Health Organization)
    • \n
    • New: Option to set bar opacity
    • \n
    • New: Accept the notice with close icon
    • \n
    • Fix: Policy link added to message without policy option enabled
    • \n
    \n

    1.2.51

    \n
      \n
    • Fix: Problems with iOS and OK/Reject button
    • \n
    • Tweak: Added Separate cookie expiry for Reject, props Carlos Buchart
    • \n
    \n

    1.2.50

    \n
      \n
    • Fix: The body css class always set to “cookies-refused”
    • \n
    • Tweak: Improve IE & Safari CustomEvent and ClassList support
    • \n
    • Tweak: Change the plugin js init event
    • \n
    \n

    1.2.49

    \n
      \n
    • New: Option to accept the notice with any page click
    • \n
    • Tweak: Remove jQuery dependency
    • \n
    • Tweak: Swtich from jQuery to CSS3 animations
    • \n
    • Tweak: Improve the CSS and HTML structure
    • \n
    \n

    1.2.48

    \n
      \n
    • Fix: HTML tags stripped from cookie message
    • \n
    • Fix: Link target not accepted in inline privacy link
    • \n
    \n

    1.2.47

    \n
      \n
    • New: Option to select the privacy policy link position
    • \n
    • Tweak: Do not relad the page on refuse button click
    • \n
    • Tweak: Added aria-label attribute to cookie notice container
    • \n
    \n

    1.2.46

    \n
      \n
    • Tweak: Remove WP Super Cache cookie on deactivation
    • \n
    • Tweak: Remove plugin version from the db on deactivation
    • \n
    \n

    1.2.45

    \n
      \n
    • Tweak: Improved WP Super Cache support
    • \n
    • Tweak: CSS container style issue and media query for mobile
    • \n
    \n

    1.2.44

    \n
      \n
    • Fix: The text of the revoke button ignored in shortcode
    • \n
    • Fix: Revoke consent button not displayed automatically in top position
    • \n
    • Tweak: Add shortcode parsing for content of [cookies_accepted], thanks to dsturm
    • \n
    \n

    1.2.43

    \n
      \n
    • New: Option to revoke the user consent
    • \n
    • New: Script blocking extended to header and footer
    • \n
    • New: Synchronization with WordPress 4.9.6 Privacy Policy page
    • \n
    • New: Custom button class option
    • \n
    • Tweak: Added 1 hour cookie expiry option
    • \n
    \n

    1.2.42

    \n
      \n
    • New: Introducing [cookies_accepted][/cookies_accepted] shortcode
    • \n
    • Fix: Infinite cookie expiry issue
    • \n
    \n

    1.2.41

    \n
      \n
    • Fix: Infinite redirection loop with scroll enabled
    • \n
    \n

    1.2.40

    \n
      \n
    • Fix: Div align center on some themes
    • \n
    • Tweak: Extended list of allowed HTML tags in refuse code
    • \n
    • Tweak: Minified CSS and JS
    • \n
    \n

    1.2.39

    \n
      \n
    • New: Option to reload the page after cookies are accepted
    • \n
    \n

    1.2.38

    \n
      \n
    • Tweak: Move frontend cookie js functions before the document ready call, thanks to fgreinus
    • \n
    • Tweak: Adjust functional javascript code handling
    • \n
    • Fix: Chhromium infinity expiration date not valid
    • \n
    • Fix: Remove deprecated screen_icon() function
    • \n
    \n

    1.2.37

    \n
      \n
    • Tweak: Add aria landmark role=”banner”
    • \n
    • Tweak: Extend cn_cookie_notice_args with button class
    • \n
    \n

    1.2.36.1

    \n
      \n
    • Fix: Repository upload issue with 1.2.36
    • \n
    \n

    1.2.36

    \n
      \n
    • Fix: String translation support for WMPL 3.2+
    • \n
    • Fix: Global var possible conflict with other plugins
    • \n
    • Tweak: Add $options array to “cn_cookie_notice_output” filter, thanks to chesio.
    • \n
    • Tweak: Removed local translation files in favor of WP repository translations.
    • \n
    \n

    1.2.35

    \n
      \n
    • Tweak: Use html_entity_decode on non-functional code block
    • \n
    • Tweak: get_pages() function placement optimization
    • \n
    • Tweak: Filterable manage cookie notice capability
    • \n
    \n

    1.2.34

    \n
      \n
    • Fix: Empty href in links HTML validation issue
    • \n
    \n

    1.2.33

    \n
      \n
    • New: Greek translation thanks to Elias Stefanidis
    • \n
    \n

    1.2.32

    \n
      \n
    • Fix: Accept cookie button hidden on acceptance instead of the cookie message container
    • \n
    \n

    1.2.31

    \n
      \n
    • New: Non functional Javascript code field
    • \n
    • Fix: Minified Javascript caching issue
    • \n
    \n

    1.2.30

    \n
      \n
    • Fix: jQuery error after accepting cookies
    • \n
    \n

    1.2.29

    \n
      \n
    • Tweak: Add class to body element when displayed
    • \n
    • Tweak: Italian translation update
    • \n
    \n

    1.2.28

    \n
      \n
    • New: Option to set on scroll offset
    • \n
    \n

    1.2.27

    \n
      \n
    • Tweak: Correctly remove scroll event, limit possible conflicts
    • \n
    • Tweak: Italian translation update
    • \n
    \n

    1.2.26

    \n
      \n
    • Fix: Accept cookies on scroll option working unchecked.
    • \n
    • Fix: call_user_func() warning on lower version of WP
    • \n
    \n

    1.2.25

    \n\n

    1.2.24

    \n
      \n
    • New: Option to refuse to accept cookies
    • \n
    • New: setCookieNotice custom jQuery event
    • \n
    • Tweak: Italian translation updated, thanks to Luca Speranza
    • \n
    \n

    1.2.23

    \n\n

    1.2.22

    \n
      \n
    • Tweak: Swedish translation updated, thx to Ove Kaufeldt
    • \n
    \n

    1.2.21

    \n\n

    1.2.20

    \n
      \n
    • New: Option to select scripts placement, header or footer
    • \n
    \n

    1.2.19

    \n
      \n
    • New: Danish translation, thanks to Lui Wallentin Gottler
    • \n
    \n

    1.2.18.1

    \n
      \n
    • Fix: Quick fix for 1.2.18 print_r in code
    • \n
    \n

    1.2.18

    \n
      \n
    • New: More info link target option
    • \n
    • Tweak: Additional HTML ids, for more flexible customization
    • \n
    \n

    1.2.17

    \n\n

    1.2.16

    \n
      \n
    • Tweak: Dutch translation missing due to a typo
    • \n
    \n

    1.2.15

    \n
      \n
    • New: Danish translation, thanks to Hans C. Jorgensen
    • \n
    • Fix: Notice bar not visible if no animation selected
    • \n
    \n

    1.2.14

    \n
      \n
    • New: Hungarian translation, thanks to Surbma
    • \n
    \n

    1.2.13

    \n
      \n
    • New: Croatian translation, thanks to Marko Beus
    • \n
    \n

    1.2.12

    \n
      \n
    • New: Slovenian translation, thanks to Thomas Cuk
    • \n
    \n

    1.2.11

    \n\n

    1.2.10

    \n
      \n
    • New: Italian translation, thanks to Luca
    • \n
    • Tweak: Confirmed WP 4.0 compatibility
    • \n
    \n

    1.2.9.1

    \n
      \n
    • Tweak: Enable HTML in cookie message text
    • \n
    • New: Option to donate this plugin 🙂
    • \n
    \n

    1.2.8

    \n\n

    1.2.7

    \n
      \n
    • New: French translation, thanks to Laura Orsal
    • \n
    • New: Deleting plugin settings on deactivation as an option
    • \n
    \n

    1.2.6

    \n
      \n
    • New: German translation, thanks to Alex Ernst
    • \n
    \n

    1.2.5

    \n
      \n
    • New: Spanish translation, thanks to Fernando Blasco
    • \n
    \n

    1.2.4

    \n
      \n
    • New: Added filter hooks to customize where and how display the cookie notice
    • \n
    \n

    1.2.3

    \n
      \n
    • New: Portuguese translation, thanks to Luis Maia
    • \n
    \n

    1.2.2

    \n
      \n
    • Fix: Read more linking to default site language in WPML & Polylang
    • \n
    \n

    1.2.1

    \n
      \n
    • Tweak: UI improvements for WP 3.8
    • \n
    \n

    1.2.0

    \n
      \n
    • Fix: Cookie not saving in IE
    • \n
    • Fix: Notice hidden under Admin bar bug
    • \n
    • Tweak: Improved WPML & Polylang compatibility
    • \n
    \n

    1.1.0

    \n
      \n
    • New: Rewritten cookie setting method to pure JS
    • \n
    • Fix: Compatibility with WP Super Cache and other caching plugins
    • \n
    \n

    1.0.2

    \n
      \n
    • New: Dutch translation, thanks to Heleen van den Bos
    • \n
    \n

    1.0.1

    \n
      \n
    • Tweak: Changed setting cookie mode from AJAX to JS driven
    • \n
    \n

    1.0.0

    \n

    Initial release

    \n", "description": "

    Cookie Notice provides a simple, customizable website banner that can be used to help your website comply with certain cookie consent requirements under the EU GDPR cookie law and CCPA regulations and includes seamless integration with Cookie Compliance to help your site comply with the latest updates to existing consent laws.

    \n

    Cookie Compliance is a fully featured Consent Management Platform (CMP) that provides automated compliance features and enhanced design controls in a state-of-the-art web application. Cookie Compliance enables websites to take a proactive approach to data protection and consent laws. It is the first solution to offer Intentional Consent, a new consent framework that incorporates the latest guidelines from over 100+ countries, and emerging standards from leading international organizations like the IEEE and European Center for Digital Rights (noyb.eu). Cookie Compliance provides a beautiful, multi-level experience and includes new choices and controls for site visitors to better understand and engage in data privacy decisions.

    \n
    \n

    Our Cookie Compliance web application introduces a more ethical, proactive way to capture and manage consent. This early version of the emerging Intentional Consent framework is a result of Hu-manity.co’s ongoing work with top Fortune 500 companies, governments, and standards organizations, who believe that the imbalanced relationship between consumers and corporations is unsustainable when it comes to data privacy and consent online. We are making it available for all website owners and operators who share this belief and support our mission to eliminate the dark patterns in online consent.
    \n Matt Sinderbrand – Chief Platform Officer, Hu-manity.co

    \n
    \n

    Cookie Notice (plugin only)

    \n

    Cookie Notice provides a simple, customizable website banner to help your website comply with certain cookie consent requirements.

    \n

    Banner features:

    \n
      \n
    • Customizable notice message
    • \n
    • Consent on click, scroll or close
    • \n
    • Multiple cookie expiry options
    • \n
    • Link to Privacy Policy page
    • \n
    • WordPress Privacy Policy page synchronization
    • \n
    • WPML and Polylang compatible
    • \n
    • SEO friendly
    • \n
    \n

    Cookie Compliance (plugin + web application)

    \n

    Cookie Compliance gives you access to the most up-to-date formatting guidelines and technical compliance requirements for over 100 countries and legal jurisdictions.

    \n

    Banner features:

    \n
      \n
    • Intentional Consent provides 3 equal buttons to give site visitors the ability to accept none, some, or all cookies through packaged choices called Data Access Levels. Data Access Levels improve consent conversion and eliminate the dark pattern of deceptive, non-equal choices in the first layer. Complies with equal choice principle prescribed under GDPR and other data protection laws.
    • \n
    • Consent duration selector gives visitor control over how long their consent remains valid for your site. Enables your site to align with recent guidelines from EU Data Protection Authorities, which state that cookie consent should be valid for no longer than a period of 6 months.
    • \n
    • Cookie purpose categories make it easy for website visitors to customize their consent by category. Complies with affirmative, opt-in consent requirements prescribed under GDPR and other data protection laws.
    • \n
    • Consent metrics displays the visitor’s consent record and a list of blocked / allowed 3rd parties directly in the expanded level of the banner. Complies with latest guidance from EU Data Protection Authorities like CNIL (France) and ICO (UK).
    • \n
    • Customizable Privacy Paper provides helpful information to improve visitor comprehension and understanding of the data sharing risks and benefits. Allows you to summarize core components of your sites privacy notice and aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • \n
    • Configurable Privacy Contact allows you to provide contact information for a business’ data privacy admin, as well as helpful links to data subject request forms and other data privacy resources. Aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • \n
    \n

    Web Application features:

    \n
      \n
    • Consent analytics dashboard shows event data for number of visits and provides a “trust score” to help you track how site visitors are setting their consent. Make adjustments to your banner to improve your cookie acceptance rate and monitor progress via the consent activity graph.
    • \n
    • Default configurations for GDPR, CCPA and more help to remove dark patterns and allow for quick and easy deployment of the consent banner without any guesswork. Customize the design of any default configuration to match the look and feel of your site.
    • \n
    • Automatic script blocking blocks all non-essential cookie scripts and iFrames by default and complies with valid consent rules under GDPR and other data protection laws; in order to be compliant, your site must record visitor consent before setting or sending cookies.
    • \n
    • Google Consent Mode ensures that your website can still gather valuable insights and perform effectively while respecting users’ privacy preferences by dynamically adjusting the behavior of Google services according to user consent.
    • \n
    • Facebook Consent Mode allows your website to measure the impact of your ads on Facebook, track website activities and conversions and automatically deliver ads to Facebook if the user has agreed to.
    • \n
    • Consent record storage automatically stores a record of each consent and makes these records available for export. Complies with proof-of-consent requirements prescribed under GDPR and other data protection laws.
    • \n
    • Multilingual support automatically translates all banner text strings and allows you to provide custom translations for every text field to ensure visitors get a consistent consent experience.
    • \n
    • Multidomain management allows you to manage additional Free or Professional domains under a single account and enables you to customize banner configuration and design for each domain independently.
    • \n
    \n

    Cookie Compliance proactive approach:

    \n

    For all businesses, the resources required to stay ahead of the latest regulations increases with the passage of each new law. With enforcement of compliance violations increasing daily, we believe it is critical for us as a trusted consent vendor to do everything in our power to help you stay ahead of these laws and remove the risk to your business

    \n

    Cookie Compliance covers all current and upcoming regulations:

    \n
      \n
    • GDPR (EU)
    • \n
    • ePrivacy Directive (EU)
    • \n
    • ePrivacy Regulation (EU)
    • \n
    • PECR (UK)
    • \n
    • LGPD (Brazil)
    • \n
    • PIPEDA (Canada)
    • \n
    • PDPB (India)
    • \n
    • CCPA (California, US)
    • \n
    • VCDPA (Virginia, US)
    • \n
    • Colorado Privacy Act (US)
    • \n
    • CPRA (California, US)
    • \n
    \n

    Cookie Compliance incorporates all recent formatting guidance:

    \n
      \n
    • European Data Protection Supervisor (EDPS)
    • \n
    • ICO (United Kingdom)
    • \n
    • CNIL (France)
    • \n
    • GPDP (Italy)
    • \n
    • BfDl (Germany)
    • \n
    • AEPD (Spain)
    • \n
    • European Center for Digital Rights (noyb.eu)
    • \n
    \n

    Cookie Compliance targets dark patterns

    \n

    Dark Patterns are user interface (UI) techniques that push site visitors to make decisions (such as agreeing to the installation of cookies on their devices) that they might not otherwise make. The most common Dark Pattern is the lack of an equal “reject all” button on the first layer of the consent notice. Dark Patterns are explicitly banned under GDPR and other data protection laws.

    \n

    As a part of our proactive approach, Cookie Compliance is configured by default to prevent Dark Patterns through our unique Intentional Consent design.

    \n", "screenshots": "
    1. \"Cookie

      Cookie Notice settings, Compliance itegration inactive

    2. \"Cookie

      Cookie Notice settings, Compliance itegration active

    3. \"Cookie

      Cookie Compliance dashboard overview

    4. \"Cookie

      Cookie Compliance settings

    ", "installation": "
      \n
    1. Install Cookie Notice either via the WordPress.org plugin directory, or by uploading the files to your server
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to the Cookie Notice settings and set your options.
    6. \n
    7. Click “Add Compliance features” button to start Cookie Compliance integration.
    8. \n
    9. Create Cookie Compliance account and select plan.
    10. \n
    11. Log in to Cookie Compliance web application anytime to customize the settings.
    12. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/cookie-notice.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/plugin/cookie-notice.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/plugin/cookie-notice.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/cookie-notice.1.3.2.zip", "2.0.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/cookie-notice.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/cookie-notice.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/cookie-notice.2.0.4.zip", "2.1.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/cookie-notice.2.1.5.zip", "2.2.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/cookie-notice.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/cookie-notice.2.2.3.zip", "2.3.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.8.zip", "trunk": "https://downloads.wordpress.org/plugin/cookie-notice.zip", "1.2.10": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.15.zip", "1.2.16": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.16.zip", "1.2.17": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.17.zip", "1.2.18": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.18.zip", "1.2.19": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.19.zip", "1.2.20": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.20.zip", "1.2.21": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.21.zip", "1.2.22": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.22.zip", "1.2.23": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.23.zip", "1.2.24": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.24.zip", "1.2.25": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.25.zip", "1.2.26": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.26.zip", "1.2.27": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.27.zip", "1.2.28": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.28.zip", "1.2.29": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.29.zip", "1.2.30": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.30.zip", "1.2.31": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.31.zip", "1.2.32": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.32.zip", "1.2.33": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.33.zip", "1.2.34": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.34.zip", "1.2.35": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.35.zip", "1.2.36": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.36.zip", "1.2.37": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.37.zip", "1.2.38": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.38.zip", "1.2.39": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.39.zip", "1.2.40": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.40.zip", "1.2.41": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.41.zip", "1.2.42": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.42.zip", "1.2.43": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.43.zip", "1.2.44": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.44.zip", "1.2.45": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.45.zip", "1.2.46": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.46.zip", "1.2.47": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.47.zip", "1.2.48": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.48.zip", "1.2.49": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.49.zip", "1.2.50": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.50.zip", "1.2.51": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.51.zip", "1.4.12": "https://downloads.wordpress.org/plugin/cookie-notice.1.4.12.zip", "2.4.10": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.10.zip", "2.4.11": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.11.zip", "2.4.13": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.13.zip", "2.4.14": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.14.zip", "2.4.15": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.15.zip", "2.4.16": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.16.zip", "2.4.17": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.17.zip", "2.4.18": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.18.zip", "1.2.9.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.9.1.zip", "2.5.0.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.0.1.zip", "1.2.18.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.18.1.zip", "1.2.36.1": "https://downloads.wordpress.org/plugin/cookie-notice.1.2.36.1.zip", "2.4.11.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.11.1.zip", "2.4.17.1": "https://downloads.wordpress.org/plugin/cookie-notice.2.4.17.1.zip"}, "downloaded": 33439442, "description": "

    Cookie Notice provides a simple, customizable website banner that can be used to help your website comply with certain cookie consent requirements under the EU GDPR cookie law and CCPA regulations and includes seamless integration with Cookie Compliance to help your site comply with the latest updates to existing consent laws.

    \n

    Cookie Compliance is a fully featured Consent Management Platform (CMP) that provides automated compliance features and enhanced design controls in a state-of-the-art web application. Cookie Compliance enables websites to take a proactive approach to data protection and consent laws. It is the first solution to offer Intentional Consent, a new consent framework that incorporates the latest guidelines from over 100+ countries, and emerging standards from leading international organizations like the IEEE and European Center for Digital Rights (noyb.eu). Cookie Compliance provides a beautiful, multi-level experience and includes new choices and controls for site visitors to better understand and engage in data privacy decisions.

    \n
    \n

    Our Cookie Compliance web application introduces a more ethical, proactive way to capture and manage consent. This early version of the emerging Intentional Consent framework is a result of Hu-manity.co’s ongoing work with top Fortune 500 companies, governments, and standards organizations, who believe that the imbalanced relationship between consumers and corporations is unsustainable when it comes to data privacy and consent online. We are making it available for all website owners and operators who share this belief and support our mission to eliminate the dark patterns in online consent.
    \n Matt Sinderbrand – Chief Platform Officer, Hu-manity.co

    \n
    \n

    Cookie Notice (plugin only)

    \n

    Cookie Notice provides a simple, customizable website banner to help your website comply with certain cookie consent requirements.

    \n

    Banner features:

    \n
      \n
    • Customizable notice message
    • \n
    • Consent on click, scroll or close
    • \n
    • Multiple cookie expiry options
    • \n
    • Link to Privacy Policy page
    • \n
    • WordPress Privacy Policy page synchronization
    • \n
    • WPML and Polylang compatible
    • \n
    • SEO friendly
    • \n
    \n

    Cookie Compliance (plugin + web application)

    \n

    Cookie Compliance gives you access to the most up-to-date formatting guidelines and technical compliance requirements for over 100 countries and legal jurisdictions.

    \n

    Banner features:

    \n
      \n
    • Intentional Consent provides 3 equal buttons to give site visitors the ability to accept none, some, or all cookies through packaged choices called Data Access Levels. Data Access Levels improve consent conversion and eliminate the dark pattern of deceptive, non-equal choices in the first layer. Complies with equal choice principle prescribed under GDPR and other data protection laws.
    • \n
    • Consent duration selector gives visitor control over how long their consent remains valid for your site. Enables your site to align with recent guidelines from EU Data Protection Authorities, which state that cookie consent should be valid for no longer than a period of 6 months.
    • \n
    • Cookie purpose categories make it easy for website visitors to customize their consent by category. Complies with affirmative, opt-in consent requirements prescribed under GDPR and other data protection laws.
    • \n
    • Consent metrics displays the visitor’s consent record and a list of blocked / allowed 3rd parties directly in the expanded level of the banner. Complies with latest guidance from EU Data Protection Authorities like CNIL (France) and ICO (UK).
    • \n
    • Customizable Privacy Paper provides helpful information to improve visitor comprehension and understanding of the data sharing risks and benefits. Allows you to summarize core components of your sites privacy notice and aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • \n
    • Configurable Privacy Contact allows you to provide contact information for a business’ data privacy admin, as well as helpful links to data subject request forms and other data privacy resources. Aligns with the informed principle prescribed by GDPR rules for valid consent capture.
    • \n
    \n

    Web Application features:

    \n
      \n
    • Consent analytics dashboard shows event data for number of visits and provides a “trust score” to help you track how site visitors are setting their consent. Make adjustments to your banner to improve your cookie acceptance rate and monitor progress via the consent activity graph.
    • \n
    • Default configurations for GDPR, CCPA and more help to remove dark patterns and allow for quick and easy deployment of the consent banner without any guesswork. Customize the design of any default configuration to match the look and feel of your site.
    • \n
    • Automatic script blocking blocks all non-essential cookie scripts and iFrames by default and complies with valid consent rules under GDPR and other data protection laws; in order to be compliant, your site must record visitor consent before setting or sending cookies.
    • \n
    • Google Consent Mode ensures that your website can still gather valuable insights and perform effectively while respecting users’ privacy preferences by dynamically adjusting the behavior of Google services according to user consent.
    • \n
    • Facebook Consent Mode allows your website to measure the impact of your ads on Facebook, track website activities and conversions and automatically deliver ads to Facebook if the user has agreed to.
    • \n
    • Consent record storage automatically stores a record of each consent and makes these records available for export. Complies with proof-of-consent requirements prescribed under GDPR and other data protection laws.
    • \n
    • Multilingual support automatically translates all banner text strings and allows you to provide custom translations for every text field to ensure visitors get a consistent consent experience.
    • \n
    • Multidomain management allows you to manage additional Free or Professional domains under a single account and enables you to customize banner configuration and design for each domain independently.
    • \n
    \n

    Cookie Compliance proactive approach:

    \n

    For all businesses, the resources required to stay ahead of the latest regulations increases with the passage of each new law. With enforcement of compliance violations increasing daily, we believe it is critical for us as a trusted consent vendor to do everything in our power to help you stay ahead of these laws and remove the risk to your business

    \n

    Cookie Compliance covers all current and upcoming regulations:

    \n
      \n
    • GDPR (EU)
    • \n
    • ePrivacy Directive (EU)
    • \n
    • ePrivacy Regulation (EU)
    • \n
    • PECR (UK)
    • \n
    • LGPD (Brazil)
    • \n
    • PIPEDA (Canada)
    • \n
    • PDPB (India)
    • \n
    • CCPA (California, US)
    • \n
    • VCDPA (Virginia, US)
    • \n
    • Colorado Privacy Act (US)
    • \n
    • CPRA (California, US)
    • \n
    \n

    Cookie Compliance incorporates all recent formatting guidance:

    \n
      \n
    • European Data Protection Supervisor (EDPS)
    • \n
    • ICO (United Kingdom)
    • \n
    • CNIL (France)
    • \n
    • GPDP (Italy)
    • \n
    • BfDl (Germany)
    • \n
    • AEPD (Spain)
    • \n
    • European Center for Digital Rights (noyb.eu)
    • \n
    \n

    Cookie Compliance targets dark patterns

    \n

    Dark Patterns are user interface (UI) techniques that push site visitors to make decisions (such as agreeing to the installation of cookies on their devices) that they might not otherwise make. The most common Dark Pattern is the lack of an equal “reject all” button on the first layer of the consent notice. Dark Patterns are explicitly banned under GDPR and other data protection laws.

    \n

    As a part of our proactive approach, Cookie Compliance is configured by default to prevent Dark Patterns through our unique Intentional Consent design.

    \n", "donate_link": "", "num_ratings": 3018, "screenshots": {"1": {"src": "https://ps.w.org/cookie-notice/assets/screenshot-1.png?rev=2599337", "caption": "Cookie Notice settings, Compliance itegration inactive"}, "2": {"src": "https://ps.w.org/cookie-notice/assets/screenshot-2.png?rev=2599337", "caption": "Cookie Notice settings, Compliance itegration active"}, "3": {"src": "https://ps.w.org/cookie-notice/assets/screenshot-3.png?rev=2599337", "caption": "Cookie Compliance dashboard overview"}, "4": {"src": "https://ps.w.org/cookie-notice/assets/screenshot-4.png?rev=2599337", "caption": "Cookie Compliance settings"}}, "support_url": "https://wordpress.org/support/plugin/cookie-notice/", "contributors": {"humanityco": {"avatar": "https://secure.gravatar.com/avatar/c5e1f10a8938fcf2c75147f5c1212da5858e070fe3b162fc52ad53b4def329d7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/humanityco/", "display_name": "Humanityco"}}, "last_updated": "2025-10-28 5:09pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/cookie-notice.2.5.8.zip", "author_profile": "https://profiles.wordpress.org/humanityco/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    Microsoft Clarity Consent API v2 support

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f162-72c6-b537-cb06dc4b1b37", "name": "Cookie Notice & Compliance for GDPR / CCPA", "slug": "cookie-notice", "type": "plugin", "origin": "wp_org", "pulled": 1761754476, "status": "open", "checked": 1761754476, "updated": 1761671340, "version": "2.5.8"}, "support_threads": 5, "requires_plugins": [], "short_description": "Cookie Notice allows you to you elegantly inform users that your site uses cookies and helps you comply with GDPR, CCPA and other data privacy laws.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-6481-72fa-9c41-5687c8f15ffc', 'creame-whatsapp-me', 'Joinchat', 'WhatsApp, Messenger, Telegram, Phone call… capture users through their favorite Apps and turn into clients', '
    -

    Turn conversations into conversions

    -
    -

    🎉 Chat with your website visitors through their favorite chat applications. Place a floating contact button at the bottom of your site and give the best support to your customers.

    -

    Documentation | Joinchat Premium | Joinchat AI ✨

    -

    ⌁ What you can do with Joinchat ✅

    -

    🛎 Insert a contact button for WhatsApp on your website.

    -

    Set your ‘WhatsApp’ or ‘WhatsApp Business’ number and let your visitors contact you easily:

    -

    🧩 WhatsApp Contact Button Block with optional QR Code

    -

    📱 On mobile, launch WhatsApp mobile app

    -

    💻 On desktop, launch WhatsApp desktop app or WhatsApp Web

    -

    🤳 On desktop, show QR Code to scan from phone

    -

    Customize your logo, profile picture or even an animated gif.

    -

    Define in which pages or zones it should appear, the delay time, if you want it to the right or to the left, only on mobile phones or also on the desktop.

    -

    You can define a tooltip or a call to action to capture the user’s interest, the limit is set by your creativity.

    -

    📢 New on Joinchat 6.0

    -
      -
    • Enhance your CTAs with Rich Chat: multiple chat bubbles, include links or buttons, add images and use random texts.
    • -
    • Improved performance: vanilla JavaScript without any dependency and lazy loading of styles and scripts.
    • -
    • New button icons and allows to keep the alternative image fixed.
    • -
    • Integration with new WooCommerce brands.
    • -
    • Other optimizations: refactor and improved styles, updated phone input (37 translations included), added {HOME} variable, etc.
    • -
    -

    📝 Settings at page or archive level.

    -

    You can change main settings on every Post, Page, Product or CPT and for Tag or Category archive pages.

    -

    Editing your posts in the right side in the Joinchat metabox or editing your tags or categories in the Joinchat section, you can modify Phone, CTA, Start Message and Visibility options.

    -

    🔴 Show a notification.

    -

    Use a balloon on the button to get the visitor’s attention.

    -

    In this way, you ensure that you do not miss any important message you want to give them, surprise them in a less intrusive way.

    -

    📯 Create call-to-action messages.

    -

    To get users to start the chat, use custom CTAs on each page, product or section.

    -

    Welcome them, help them and offer them offers or promotions. Read more

    -

    💬 Customize conversation start messages.

    -

    Set the first message so that the visitor can start the conversation immediately.

    -

    Use our “Dynamic Variables” and you will know what page the visitor is coming from or what product they are looking at when they start the chat.

    -

    ✅ Opt-in text.

    -

    Opt-in is a users’ consent to receive messages from a business.

    -

    Write a text with the conditions under which the visitor contacts you (or other info that you consider important).

    -

    You can make it mandatory and disable contact until the user accepts it.

    -

    🛒 Integration with WooCommerce.

    -

    Define CTAs and Custom Start Messages for shop page, product pages and for products on sale.

    -

    Add a WhatsApp Contact Button directly on your product page next to the “Add to cart” button or choose the best position, even on products without a price.

    -

    🧩 WhatsApp Contact Button Block (min WP 5.9).

    -

    Add beautiful and customizable WhatsApp contact buttons in the Block Editor.

    -

    Ready to use patterns with different styles are also included.

    -

    Enable QR Code on desktop to allow your visitors to scan it and start messaging from their phone.

    -

    You can define phone and initial message of the button or use the post/general Joinchat settings (ideal for Reusable Blocks).

    -

    🃏 Dynamic Variables.

    -

    Use variables in your CTAs and Start Messages that change dynamically for each page:

    -

    {SITE} ➡ Website title
    -{TITLE} ➡ Current page title
    -{HOME} ➡ Website home url
    -{URL} ➡ Current page url
    -{HREF} ➡ Current page url (full with query params)
    -{PRODUCT} ➡ Product name (Woo)
    -{SKU} ➡ Product SKU (Woo)
    -{REGULAR} ➡ Product regular price (Woo)
    -{PRICE} ➡ Product current price (Woo)
    -{DISCOUNT} ➡ Product percent discount when is on sale (Woo)

    -

    📈 Analytics Integration.

    -

    Automatically send events to Google Analytics, Google Tag Manager and Facebook Pixel when the user opens WhatsApp.

    -

    Now can send events to multiple destinations on Google Tag!

    -

    Google Analytics 4 integration with the recommended "generate_lead" event.

    -

    Google Ads conversion, just add your Conversion ID and Conversion Label.

    -

    You can also create your own custom events or add event parameters. View FAQs / Read more

    -

    🍾 Chat Triggers.

    -

    Any element in your page can be a chat trigger, eg: it can launch WhatsApp from a link or show the Joinchat CTA when the user scrolls to the footer.

    -

    On page load (by url):

    -
      -
    • url query param joinchat to show chat window. Can set delay in seconds, default is 0 (e.g. example.com/page/?joinchat=5)
    • -
    • url query hash #joinchat to show chat window (e.g. example.com/page/#joinchat)
    • -
    -

    On click:

    -
      -
    • class "joinchat_app" direct launch WhatsApp
    • -
    • class "joinchat_open" opens Joinchat CTA
    • -
    • link href "#whatsapp" direct launch WhatsApp
    • -
    • link href "#joinchat" opens Joinchat CTA
    • -
    -

    Set custom phone and initial message for direct WhatsApp triggers:

    -
      -
    • data-phone="99999999"
    • -
    • data-message="Only for this trigger message".
    • -
    -

    On scroll (when element appears on screen):

    -
      -
    • class "joinchat_show" opens Joinchat CTA (first time)
    • -
    • class "joinchat_force_show" opens Joinchat CTA (always)
    • -
    -

    💱 Multi-Language & RTL Support.

    -

    To be able to support all your users, wherever they are. Our plugin is compatible with WPML and Polylang and also RTL languages are supported.

    -

    Direct link to edit translations when a translatable field is changed.

    -

    🌈 Theme Colors & 🌚 Dark Mode.

    -

    You choose a color and we customize the entire visual theme of the widget. With Dark Mode display the chat window with dark colors and white text. From settings you can activate it or leave it automatic and detects devices’ configuration.

    -

    ⚡ Fast & Light.

    -

    Only load what need when needed. Joinchat is lightweight and follow best coding practices. See tests report

    -

    Use vanilla JavaScript without dependencies, deferred scripts and lazy load of styles to prevent render-blocking.

    -

    🔕 No distractions.

    -

    Joinchat integrates with all major Visual Editors and Page Builders and will not appear when editing a page.

    -

    Supported editors: Beaver Builder, Brizy Page Builder, Elementor, Oxygen Builder, Page Builder by SiteOrigin, Thrive Architect, Visual Composer and WP Page Builder.

    -

    🍪 Cookies & GDPR.

    -

    Joinchat can be used without any cookies. But to automatically display the CTA, two cookies are necessary. They are first-party cookies and don’t collect personal data.

    -

    Joinchat integrates with WordPress’s Privacy Policy Guide and suggests the necessary text.

    -

    👨‍💻 Developer friendly.

    -

    Fully extensible, with lots of filters and actions to extend its functionality or change behavior.

    -

    === Joinchat Premium 🚀 ===

    -

    Turn your chat into a powerful lead capture and support tool.

    -
      -
    • Create chatbot-like conversation flows to capture leads and automate replies.
    • -
    • Manage multiple agents and schedules to organize support.
    • -
    • Prevent overload by distributing chats across multiple WhatsApp numbers.
    • -
    • Add more channels like Telegram, Messenger, or phone calls.
    • -
    • Boost conversions with videos, surveys, and more right inside the chat window.
    • -
    -

    👉 Get Joinchat Premium and upgrade your support today.

    -

    === Joinchat AI ✨ ===

    -

    Supercharge your chat with AI-powered instant replies and smart support.

    -
      -
    • Answer instantly 24/7 using AI trained on your FAQs and website content.
    • -
    • Guide visitors and solve questions automatically without human intervention.
    • -
    • Reduce workload and boost efficiency by handling repetitive queries.
    • -
    • Keep control with easy knowledge base management and response customization.
    • -
    -

    👉 Get Joinchat AI and let AI handle the hard work.

    -

    🎨 “Business Chat” is our WordPress theme recommended

    -

    Business Chat is a versatile WordPress theme designed for businesses seeking a professional online presence. It offers a fully responsive design, built-in SEO tools, extensive customization options, and a chat integration through Joinchat. It’s compatible with popular page builders and backed by dedicated customer support. Also it’s the ultimate solution for a high-performing, user-friendly business website.

    -

    Business Chat offers both a free and a premium version, catering to businesses with varying budgets and requirements. This flexibility makes it an ideal choice for businesses looking for a comprehensive and versatile solution to establish their online presence.

    -

    ⌁ If you like Joinchat 😍

    -
      -
    1. Please leave us a ★★★★★ rating. We’ll thank you.
    2. -
    3. Help us with the translation in your language
    4. -
    5. Visit our blog and find tips and tricks at join.chat.
    6. -
    7. Follow @joinchatnow on X. Join chat now!
    8. -
    -', '6.0.8', 'Creame', '4.9.6', '7.0', '6.8.3', 'https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.8.zip', '2018-02-12 00:00:00+00', '2025-09-10 15:44:00+00', 'https://profiles.wordpress.org/creapuntome/', 94, 188, 1, 0, 700000, 15213703, 'https://join.chat', 'https://join.chat/donate/', NULL, NULL, 'https://wordpress.org/support/plugin/creame-whatsapp-me/', 'https://wordpress.org/plugins/creame-whatsapp-me/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Joinchat", "slug": "creame-whatsapp-me", "tags": {"chat": "chat", "telegram": "telegram", "whatsapp": "whatsapp", "floating-button": "floating button", "facebook-messenger": "facebook messenger"}, "added": "2018-02-12", "icons": {"1x": "https://ps.w.org/creame-whatsapp-me/assets/icon-128x128.gif?rev=2699533", "2x": "https://ps.w.org/creame-whatsapp-me/assets/icon-256x256.gif?rev=2699533"}, "author": "Creame", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/creame-whatsapp-me/assets/banner-772x250.png?rev=2936349", "high": "https://ps.w.org/creame-whatsapp-me/assets/banner-1544x500.png?rev=2936349"}, "ratings": {"1": 8, "2": 4, "3": 1, "4": 8, "5": 167}, "version": "6.0.8", "homepage": "https://join.chat", "requires": "4.9.6", "sections": {"faq": "\n
    \nI can’t see the button or it’s over / under another thing\n\n

    \n

    You can change the position of the button so that nothing covers it by adding this CSS in Joinchat Settings > Advanced > Custom CSS:

    \n
    .joinchat { z-index:999999; }\n
    \n

    Higher values of z-index are above, the default value is 9000.

    \n

    If you need to move up:

    \n
    /* always */\n.joinchat { --bottom: 60px; }\n\n/* mobile only */\n@media (max-width: 480px), (orientation: landscape) and (max-height: 480px) {\n  .joinchat { --bottom: 60px; }\n}\n
    \n

    \n
    \nChange button size\n\n

    \n

    You can change the button size by adding this CSS in Joinchat Settings > Advanced > Custom CSS:

    \n
    /* always */\n.joinchat { --s: 50px; }\n\n/* mobile only */\n@media (max-width: 480px), (orientation: landscape) and (max-height: 480px) {\n  .joinchat { --s: 40px; }\n}\n
    \n

    For WooCommerce Product Button you can change size with:

    \n
    .joinchat__woo-btn { --s: 50px; }\n
    \n

    \n
    \nShortcodes / Triggers\n\n

    \n

    Joinchat does not provide any shortcodes, but you can easily link to WhatsApp in two ways:

    \n
      \n
    1. Add an anchor link to #whatsapp (open WhastApp directly) or #joinchat (show chat window).
      e.g.: add in your menu a custom link with the URL #whatsapp
    2. \n
    3. Add a css class to any element, joinchat_app (open WhastApp directly) or joinchat_open (show chat window).
      e.g.: <img src=\"contact.jpg\" class=\"joinchat_open\" alt=\"Contact\">
    4. \n
    \n

    This works with your phone settings and message with dynamic variables, even on pages without Joinchat visible.

    \n

    For custom direct WhatsApp links you can add data-phone and data-message attributes.
    e.g.: <a href=\"#whatsapp\" data-phone=\"99999999\" data-message=\"I want to chat\">Chat now!</a>

    \n

    \n
    \nDisable enhanced telephone input\n\n

    \n

    Joinchat uses International Telephone Input library to facilitate and validate the introduction of the phone number in the format of each country. If you have problems with your phone number or you want to write it directly without any changes you can disable it with this filter (remember follow WhatsApp guidelines):

    \n
    add_filter( ''joinchat_enhanced_phone'', ''__return_false'' );\n
    \n

    \n
    \nAllow other roles to change settings\n\n

    \n

    By default Joinchat settings can only be edited by users with manage_options capability (administrator).
    \nYou can change the required capability with the filter \"joinchat_capability\".

    \n
    // e.g. allow shop managers:\nadd_filter( ''joinchat_capability'', function(){ return ''manage_woocommerce''; } );\n\n// e.g. allow editors:\nadd_filter( ''joinchat_capability'', function(){ return ''edit_pages''; } );\n
    \n

    Since v4.4 Joinchat menu is placed as direct menu in your wp-admin but you can change it with the filter \"joinchat_submenu\":

    \n
    // Show as submenu under Settings (also require \"manage_options\" capability)\nadd_filter( ''joinchat_submenu'', ''__return_true'' );\n
    \n

    \n
    \nDisable Gutenberg sidebar\n\n

    \n

    The block editor evolves quickly and errors can occur that we have not anticipated.

    \n

    If you have any errors with Gutenberg and Joinchat or simply prefer the old Joinchat metabox you can use this filter:

    \n
    add_filter( ''joinchat_gutenberg_sidebar'', ''__return_false'' );\n
    \n

    \n
    \nWPML/Polylang translations\n\n

    \n

    Joinchat settings are saved in your site’s main language. For other languages translation go to WPML/Polylang Settings > String translations, filter strings group by “Joinchat” and update the strings for each language.

    \n

    \n
    \nGoogle Tag with multiple destinations\n\n

    \n

    Joinchat since 5.1 can detect multiple destinations in Google Tag and send events to all of them.

    \n

    \n
    \nGoogle Analytics 4 integration\n\n

    \n

    Joinchat sends a custom event when user launch WhatsApp.

    \n

    If Google Analytics 4 (gtag.js) is detected, use the recommended ''generate_lead'' event:

    \n
    gtag(''event'', ''generate_lead'', {\n    event_category: ''JoinChat'',\n    event_action: ''whatsapp: 99999999999'',\n    event_label: destination_url,\n    chat_channel: ''whatsapp'',\n    chat_id: ''99999999999'',\n    is_mobile: ''yes'' | ''no'',\n});\n
    \n

    If your site don’t have standard names for data layer (‘dataLayer’) you can set your custom names with this PHP filter. Also can set a different event name for GA4:

    \n
    // Rename GA4 event / Rename dataLayer name\nadd_filter( ''joinchat_get_settings'', function( $settings ){\n    $settings[''ga_event''] = ''myGA4Event'';\n    $settings[''data_layer''] = ''dataLayerCustom'';\n    return $settings;\n} );\n\n// Disable GA4 event\nadd_filter( ''joinchat_get_settings'', function( $settings ){\n    $settings[''ga_event''] = false;\n    return $settings;\n} );\n
    \n

    Joinchat is compatible with plugins MonsterInsights – Google Analytics Dashboard for WordPress and Google Tag Manager for WordPress custom names.

    \n

    \n
    \nGoogle Tag Manager integration\n\n

    \n

    Joinchat sends a ''JoinChat'' event if GTM is detected when user launch WhatsApp:

    \n
    dataLayer.push({\n    event: ''JoinChat'',\n    event_action: ''whatsapp: 99999999999'',\n    event_label: destination_url,\n    chat_channel: ''whatsapp'',\n    chat_id: ''99999999999'',\n    is_mobile: ''yes'' | ''no'',\n    page_location: current_url,\n    page_title: page_title,\n});\n
    \n

    \n
    \nFacebook Pixel integration\n\n

    \n

    Joinchat sends a ''JoinChat'' custom event if Facebook Pixel is detected when user launch WhatsApp:

    \n
    fbq(''trackCustom'', ''JoinChat'', {\n    event_action: ''whatsapp: 99999999999'',\n    event_label: destination_url,\n    chat_channel: ''whatsapp'',\n    chat_id: ''99999999999'',\n    is_mobile: ''yes'' | ''no'',\n    page_location: current_url,\n    page_title: page_title,\n});\n
    \n

    \n
    \nCustom Events / add Event Parameters\n\n

    \n

    Joinchat triggers custom events before launch WhatsApp ''joinchat:open'' and before send analytics events ''joinchat:event''.

    \n

    You can use them to extend them to your needs, add extra functions, cancel events or add extra parameters.

    \n
    // e.g.: Send webhook to Zapier\njQuery(document).on(''joinchat:event'', function (event, params) {\n  jQuery.post(''https://hooks.zapier.com/hooks/catch/123456/xxxxxx/'', params );\n});\n\n// e.g.: Add user_is_logged param for GA4/GTM event\njQuery(document).on(''joinchat:event'', function (event, params) {\n  params.user_is_logged = document.body.classList.contains(''logged-in'') ? ''yes'' : ''no'';\n});\n
    \n

    \n
    \nWhat about GDPR?\n\n

    \n

    Joinchat can be used without any cookies.

    \n

    Depending on your Joinchat settings, two cookies may be needed. They are first-party cookies and don’t collect personal data.

    \n
      \n
    • joinchat_views is a visits counter to control when to show chat window.
    • \n
    • joinchat_hashes saves when a user has interacted with a CTA to prevent automatically show that CTA again.
    • \n
    \n

    You can view in your Settings > Privacy > Policy Guide the suggested text by Joinchat.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does what it does well!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy freshan on June 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really clean interface, simple and functional

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect service and very quick!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mobilalonamad on May 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I really appreciate the support of Joinchat team, very professional! And I also have the free verison of the plugin. Very, very professional!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    working well

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shreyasnalla on September 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good plugin working well Thank You So Much

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    why its advertised as messenger chat plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy illiachenvar on September 17, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    its only for whatsapp, no other chats

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very very good Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy silviamancii on May 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I really love the plugin and the support!

    \n\n\n\n

    Thank you so much.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    funciona muy bien

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alexemix on April 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Funciona muy bien y ofrece muchas opciones

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Se actualizo a la version 5,1 con wordpress 6.5

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy amontes10 on April 3, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Se actualizo a la version 5,1 con wordpress 6.5 y no funciona.. abre el icono pero no conecta con whatsaap web y movil

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best in my opinion

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rokinso on March 31, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best in my opinion

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect Plugin with lots of options

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy imtanann on March 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its free and more you can remove power by joint chat text shown on whatsapp icon.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great App

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy minhaz52 on December 19, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Everything is good—easy to set up and helpful

    \n
    \n
    \n", "changelog": "

    6.0.8

    \n
      \n
    • New allow to disable GA4 event with filter ‘joinchat_get_settings’ and set ‘ga_event’ as false
    • \n
    • Fix mask WhastApp phone number for Facebook Pixel events
    • \n
    • Fix add aria-label to Joinchat floating button
    • \n
    \n

    6.0.7

    \n
      \n
    • Fix dark styles for loading and note messages
    • \n
    • Fix admin JS conflict when other plugin use IntTelInput library
    • \n
    • Fix Joinchat settings don’t work with HivePress
    • \n
    \n

    6.0.6

    \n
      \n
    • Aff a filter for Litespeed Cache plugin to ensure Joinchat JS/CSS assets version. Prevent Joinchat break layout if visitor has Joinchat v5 cached assets (thanks to @tendenzeshabbychic and @qtwrk).
    • \n
    \n

    6.0.5

    \n
      \n
    • Fix CSS transparent background color if only floating button without chatbox.
    • \n
    \n

    6.0.4

    \n
      \n
    • Fix some js conflicts in wp-admin if other plugins adds IntTelInput.
    • \n
    \n

    6.0.3

    \n
      \n
    • Fix js error with variable product SKU.
    • \n
    \n

    6.0.2

    \n
      \n
    • Bump min PHP version to 7.0.
    • \n
    • Add fallback to missing functions in older WordPress versions.
    • \n
    • Fix fatal error on old add-ons with missing class JoinchatUtil.
    • \n
    • Fix Woo product button styles.
    • \n
    \n

    6.0.1

    \n
      \n
    • Fix hidden attribute can make button invible with some CSS resets (like Bootstrap).
    • \n
    \n

    6.0.0

    \n
      \n
    • New Rich Chat: multiple chat bubbles with links, buttons, images and random texts.
    • \n
    • Improved performance: vanilla JavaScript without any dependency and lazy loading of styles and scripts.
    • \n
    • New button icons and allows to keep the alternative image fixed.
    • \n
    • Integration with new WooCommerce brands.
    • \n
    • Other optimizations: refactor and improved styles, updated phone input (37 translations included), added {HOME} variable, etc.
    • \n
    \n

    See changelog.txt for older changelog

    \n", "description": "
    \n

    Turn conversations into conversions

    \n
    \n

    🎉 Chat with your website visitors through their favorite chat applications. Place a floating contact button at the bottom of your site and give the best support to your customers.

    \n

    Documentation | Joinchat Premium | Joinchat AI ✨

    \n

    ⌁ What you can do with Joinchat ✅

    \n

    🛎 Insert a contact button for WhatsApp on your website.

    \n

    Set your ‘WhatsApp’ or ‘WhatsApp Business’ number and let your visitors contact you easily:

    \n

    🧩 WhatsApp Contact Button Block with optional QR Code

    \n

    📱 On mobile, launch WhatsApp mobile app

    \n

    💻 On desktop, launch WhatsApp desktop app or WhatsApp Web

    \n

    🤳 On desktop, show QR Code to scan from phone

    \n

    Customize your logo, profile picture or even an animated gif.

    \n

    Define in which pages or zones it should appear, the delay time, if you want it to the right or to the left, only on mobile phones or also on the desktop.

    \n

    You can define a tooltip or a call to action to capture the user’s interest, the limit is set by your creativity.

    \n

    📢 New on Joinchat 6.0

    \n
      \n
    • Enhance your CTAs with Rich Chat: multiple chat bubbles, include links or buttons, add images and use random texts.
    • \n
    • Improved performance: vanilla JavaScript without any dependency and lazy loading of styles and scripts.
    • \n
    • New button icons and allows to keep the alternative image fixed.
    • \n
    • Integration with new WooCommerce brands.
    • \n
    • Other optimizations: refactor and improved styles, updated phone input (37 translations included), added {HOME} variable, etc.
    • \n
    \n

    📝 Settings at page or archive level.

    \n

    You can change main settings on every Post, Page, Product or CPT and for Tag or Category archive pages.

    \n

    Editing your posts in the right side in the Joinchat metabox or editing your tags or categories in the Joinchat section, you can modify Phone, CTA, Start Message and Visibility options.

    \n

    🔴 Show a notification.

    \n

    Use a balloon on the button to get the visitor’s attention.

    \n

    In this way, you ensure that you do not miss any important message you want to give them, surprise them in a less intrusive way.

    \n

    📯 Create call-to-action messages.

    \n

    To get users to start the chat, use custom CTAs on each page, product or section.

    \n

    Welcome them, help them and offer them offers or promotions. Read more

    \n

    💬 Customize conversation start messages.

    \n

    Set the first message so that the visitor can start the conversation immediately.

    \n

    Use our “Dynamic Variables” and you will know what page the visitor is coming from or what product they are looking at when they start the chat.

    \n

    ✅ Opt-in text.

    \n

    Opt-in is a users’ consent to receive messages from a business.

    \n

    Write a text with the conditions under which the visitor contacts you (or other info that you consider important).

    \n

    You can make it mandatory and disable contact until the user accepts it.

    \n

    🛒 Integration with WooCommerce.

    \n

    Define CTAs and Custom Start Messages for shop page, product pages and for products on sale.

    \n

    Add a WhatsApp Contact Button directly on your product page next to the “Add to cart” button or choose the best position, even on products without a price.

    \n

    🧩 WhatsApp Contact Button Block (min WP 5.9).

    \n

    Add beautiful and customizable WhatsApp contact buttons in the Block Editor.

    \n

    Ready to use patterns with different styles are also included.

    \n

    Enable QR Code on desktop to allow your visitors to scan it and start messaging from their phone.

    \n

    You can define phone and initial message of the button or use the post/general Joinchat settings (ideal for Reusable Blocks).

    \n

    🃏 Dynamic Variables.

    \n

    Use variables in your CTAs and Start Messages that change dynamically for each page:

    \n

    {SITE} ➡ Website title
    \n{TITLE} ➡ Current page title
    \n{HOME} ➡ Website home url
    \n{URL} ➡ Current page url
    \n{HREF} ➡ Current page url (full with query params)
    \n{PRODUCT} ➡ Product name (Woo)
    \n{SKU} ➡ Product SKU (Woo)
    \n{REGULAR} ➡ Product regular price (Woo)
    \n{PRICE} ➡ Product current price (Woo)
    \n{DISCOUNT} ➡ Product percent discount when is on sale (Woo)

    \n

    📈 Analytics Integration.

    \n

    Automatically send events to Google Analytics, Google Tag Manager and Facebook Pixel when the user opens WhatsApp.

    \n

    Now can send events to multiple destinations on Google Tag!

    \n

    Google Analytics 4 integration with the recommended \"generate_lead\" event.

    \n

    Google Ads conversion, just add your Conversion ID and Conversion Label.

    \n

    You can also create your own custom events or add event parameters. View FAQs / Read more

    \n

    🍾 Chat Triggers.

    \n

    Any element in your page can be a chat trigger, eg: it can launch WhatsApp from a link or show the Joinchat CTA when the user scrolls to the footer.

    \n

    On page load (by url):

    \n
      \n
    • url query param joinchat to show chat window. Can set delay in seconds, default is 0 (e.g. example.com/page/?joinchat=5)
    • \n
    • url query hash #joinchat to show chat window (e.g. example.com/page/#joinchat)
    • \n
    \n

    On click:

    \n
      \n
    • class \"joinchat_app\" direct launch WhatsApp
    • \n
    • class \"joinchat_open\" opens Joinchat CTA
    • \n
    • link href \"#whatsapp\" direct launch WhatsApp
    • \n
    • link href \"#joinchat\" opens Joinchat CTA
    • \n
    \n

    Set custom phone and initial message for direct WhatsApp triggers:

    \n
      \n
    • data-phone=\"99999999\"
    • \n
    • data-message=\"Only for this trigger message\".
    • \n
    \n

    On scroll (when element appears on screen):

    \n
      \n
    • class \"joinchat_show\" opens Joinchat CTA (first time)
    • \n
    • class \"joinchat_force_show\" opens Joinchat CTA (always)
    • \n
    \n

    💱 Multi-Language & RTL Support.

    \n

    To be able to support all your users, wherever they are. Our plugin is compatible with WPML and Polylang and also RTL languages are supported.

    \n

    Direct link to edit translations when a translatable field is changed.

    \n

    🌈 Theme Colors & 🌚 Dark Mode.

    \n

    You choose a color and we customize the entire visual theme of the widget. With Dark Mode display the chat window with dark colors and white text. From settings you can activate it or leave it automatic and detects devices’ configuration.

    \n

    ⚡ Fast & Light.

    \n

    Only load what need when needed. Joinchat is lightweight and follow best coding practices. See tests report

    \n

    Use vanilla JavaScript without dependencies, deferred scripts and lazy load of styles to prevent render-blocking.

    \n

    🔕 No distractions.

    \n

    Joinchat integrates with all major Visual Editors and Page Builders and will not appear when editing a page.

    \n

    Supported editors: Beaver Builder, Brizy Page Builder, Elementor, Oxygen Builder, Page Builder by SiteOrigin, Thrive Architect, Visual Composer and WP Page Builder.

    \n

    🍪 Cookies & GDPR.

    \n

    Joinchat can be used without any cookies. But to automatically display the CTA, two cookies are necessary. They are first-party cookies and don’t collect personal data.

    \n

    Joinchat integrates with WordPress’s Privacy Policy Guide and suggests the necessary text.

    \n

    👨‍💻 Developer friendly.

    \n

    Fully extensible, with lots of filters and actions to extend its functionality or change behavior.

    \n

    === Joinchat Premium 🚀 ===

    \n

    Turn your chat into a powerful lead capture and support tool.

    \n
      \n
    • Create chatbot-like conversation flows to capture leads and automate replies.
    • \n
    • Manage multiple agents and schedules to organize support.
    • \n
    • Prevent overload by distributing chats across multiple WhatsApp numbers.
    • \n
    • Add more channels like Telegram, Messenger, or phone calls.
    • \n
    • Boost conversions with videos, surveys, and more right inside the chat window.
    • \n
    \n

    👉 Get Joinchat Premium and upgrade your support today.

    \n

    === Joinchat AI ✨ ===

    \n

    Supercharge your chat with AI-powered instant replies and smart support.

    \n
      \n
    • Answer instantly 24/7 using AI trained on your FAQs and website content.
    • \n
    • Guide visitors and solve questions automatically without human intervention.
    • \n
    • Reduce workload and boost efficiency by handling repetitive queries.
    • \n
    • Keep control with easy knowledge base management and response customization.
    • \n
    \n

    👉 Get Joinchat AI and let AI handle the hard work.

    \n

    🎨 “Business Chat” is our WordPress theme recommended

    \n

    Business Chat is a versatile WordPress theme designed for businesses seeking a professional online presence. It offers a fully responsive design, built-in SEO tools, extensive customization options, and a chat integration through Joinchat. It’s compatible with popular page builders and backed by dedicated customer support. Also it’s the ultimate solution for a high-performing, user-friendly business website.

    \n

    Business Chat offers both a free and a premium version, catering to businesses with varying budgets and requirements. This flexibility makes it an ideal choice for businesses looking for a comprehensive and versatile solution to establish their online presence.

    \n

    ⌁ If you like Joinchat 😍

    \n
      \n
    1. Please leave us a ★★★★★ rating. We’ll thank you.
    2. \n
    3. Help us with the translation in your language
    4. \n
    5. Visit our blog and find tips and tricks at join.chat.
    6. \n
    7. Follow @joinchatnow on X. Join chat now!
    8. \n
    \n", "screenshots": "
    1. \"Real

      Real example

    2. \"Real

      Real example

    3. \"Real

      Real example

    4. \"Real

      Real example

    5. \"Real

      Real example

    6. \"Real

      Real example

    7. \"Product

      Product Button example

    8. \"General

      General settings

    9. \"Visibility

      Visibility settings

    10. \"WooCommerce

      WooCommerce settings

    11. \"Advanced

      Advanced settings

    12. \"Page

      Page settings

    ", "installation": "
      \n
    1. Upload the entire creame-whatsapp-me folder to the /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    \n"}, "versions": {"1.4.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.1.4.3.zip", "2.3.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.2.3.3.zip", "3.2.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.3.2.3.zip", "4.1.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.9.zip", "4.2.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.2.0.zip", "4.3.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.3.2.zip", "4.4.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.4.3.zip", "4.5.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.5.zip", "4.5.6": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.6.zip", "4.5.7": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.7.zip", "4.5.8": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.8.zip", "4.5.9": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.9.zip", "5.0.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.2.zip", "5.0.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.8.zip", "5.0.9": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.9.zip", "5.1.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.6.zip", "5.1.7": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.7.zip", "5.1.8": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.8.zip", "5.2.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.2.4.zip", "6.0.0": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.8.zip", "trunk": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.zip", "4.0.10": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.0.10.zip", "4.1.10": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.10.zip", "4.1.11": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.11.zip", "4.1.12": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.12.zip", "4.1.13": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.13.zip", "4.1.14": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.14.zip", "4.1.15": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.15.zip", "4.5.10": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.10.zip", "4.5.11": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.11.zip", "4.5.12": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.12.zip", "4.5.13": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.13.zip", "4.5.14": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.14.zip", "4.5.15": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.15.zip", "4.5.16": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.16.zip", "4.5.17": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.17.zip", "4.5.18": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.18.zip", "4.5.19": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.19.zip", "4.5.20": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.5.20.zip", "5.0.10": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.10.zip", "5.0.11": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.11.zip", "5.0.12": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.12.zip", "5.0.13": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.13.zip", "5.0.14": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.14.zip", "5.0.15": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.15.zip", "5.0.16": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.16.zip", "5.0.17": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.0.17.zip"}, "downloaded": 15213703, "description": "
    \n

    Turn conversations into conversions

    \n
    \n

    🎉 Chat with your website visitors through their favorite chat applications. Place a floating contact button at the bottom of your site and give the best support to your customers.

    \n

    Documentation | Joinchat Premium | Joinchat AI ✨

    \n

    ⌁ What you can do with Joinchat ✅

    \n

    🛎 Insert a contact button for WhatsApp on your website.

    \n

    Set your ‘WhatsApp’ or ‘WhatsApp Business’ number and let your visitors contact you easily:

    \n

    🧩 WhatsApp Contact Button Block with optional QR Code

    \n

    📱 On mobile, launch WhatsApp mobile app

    \n

    💻 On desktop, launch WhatsApp desktop app or WhatsApp Web

    \n

    🤳 On desktop, show QR Code to scan from phone

    \n

    Customize your logo, profile picture or even an animated gif.

    \n

    Define in which pages or zones it should appear, the delay time, if you want it to the right or to the left, only on mobile phones or also on the desktop.

    \n

    You can define a tooltip or a call to action to capture the user’s interest, the limit is set by your creativity.

    \n

    📢 New on Joinchat 6.0

    \n
      \n
    • Enhance your CTAs with Rich Chat: multiple chat bubbles, include links or buttons, add images and use random texts.
    • \n
    • Improved performance: vanilla JavaScript without any dependency and lazy loading of styles and scripts.
    • \n
    • New button icons and allows to keep the alternative image fixed.
    • \n
    • Integration with new WooCommerce brands.
    • \n
    • Other optimizations: refactor and improved styles, updated phone input (37 translations included), added {HOME} variable, etc.
    • \n
    \n

    📝 Settings at page or archive level.

    \n

    You can change main settings on every Post, Page, Product or CPT and for Tag or Category archive pages.

    \n

    Editing your posts in the right side in the Joinchat metabox or editing your tags or categories in the Joinchat section, you can modify Phone, CTA, Start Message and Visibility options.

    \n

    🔴 Show a notification.

    \n

    Use a balloon on the button to get the visitor’s attention.

    \n

    In this way, you ensure that you do not miss any important message you want to give them, surprise them in a less intrusive way.

    \n

    📯 Create call-to-action messages.

    \n

    To get users to start the chat, use custom CTAs on each page, product or section.

    \n

    Welcome them, help them and offer them offers or promotions. Read more

    \n

    💬 Customize conversation start messages.

    \n

    Set the first message so that the visitor can start the conversation immediately.

    \n

    Use our “Dynamic Variables” and you will know what page the visitor is coming from or what product they are looking at when they start the chat.

    \n

    ✅ Opt-in text.

    \n

    Opt-in is a users’ consent to receive messages from a business.

    \n

    Write a text with the conditions under which the visitor contacts you (or other info that you consider important).

    \n

    You can make it mandatory and disable contact until the user accepts it.

    \n

    🛒 Integration with WooCommerce.

    \n

    Define CTAs and Custom Start Messages for shop page, product pages and for products on sale.

    \n

    Add a WhatsApp Contact Button directly on your product page next to the “Add to cart” button or choose the best position, even on products without a price.

    \n

    🧩 WhatsApp Contact Button Block (min WP 5.9).

    \n

    Add beautiful and customizable WhatsApp contact buttons in the Block Editor.

    \n

    Ready to use patterns with different styles are also included.

    \n

    Enable QR Code on desktop to allow your visitors to scan it and start messaging from their phone.

    \n

    You can define phone and initial message of the button or use the post/general Joinchat settings (ideal for Reusable Blocks).

    \n

    🃏 Dynamic Variables.

    \n

    Use variables in your CTAs and Start Messages that change dynamically for each page:

    \n

    {SITE} ➡ Website title
    \n{TITLE} ➡ Current page title
    \n{HOME} ➡ Website home url
    \n{URL} ➡ Current page url
    \n{HREF} ➡ Current page url (full with query params)
    \n{PRODUCT} ➡ Product name (Woo)
    \n{SKU} ➡ Product SKU (Woo)
    \n{REGULAR} ➡ Product regular price (Woo)
    \n{PRICE} ➡ Product current price (Woo)
    \n{DISCOUNT} ➡ Product percent discount when is on sale (Woo)

    \n

    📈 Analytics Integration.

    \n

    Automatically send events to Google Analytics, Google Tag Manager and Facebook Pixel when the user opens WhatsApp.

    \n

    Now can send events to multiple destinations on Google Tag!

    \n

    Google Analytics 4 integration with the recommended \"generate_lead\" event.

    \n

    Google Ads conversion, just add your Conversion ID and Conversion Label.

    \n

    You can also create your own custom events or add event parameters. View FAQs / Read more

    \n

    🍾 Chat Triggers.

    \n

    Any element in your page can be a chat trigger, eg: it can launch WhatsApp from a link or show the Joinchat CTA when the user scrolls to the footer.

    \n

    On page load (by url):

    \n
      \n
    • url query param joinchat to show chat window. Can set delay in seconds, default is 0 (e.g. example.com/page/?joinchat=5)
    • \n
    • url query hash #joinchat to show chat window (e.g. example.com/page/#joinchat)
    • \n
    \n

    On click:

    \n
      \n
    • class \"joinchat_app\" direct launch WhatsApp
    • \n
    • class \"joinchat_open\" opens Joinchat CTA
    • \n
    • link href \"#whatsapp\" direct launch WhatsApp
    • \n
    • link href \"#joinchat\" opens Joinchat CTA
    • \n
    \n

    Set custom phone and initial message for direct WhatsApp triggers:

    \n
      \n
    • data-phone=\"99999999\"
    • \n
    • data-message=\"Only for this trigger message\".
    • \n
    \n

    On scroll (when element appears on screen):

    \n
      \n
    • class \"joinchat_show\" opens Joinchat CTA (first time)
    • \n
    • class \"joinchat_force_show\" opens Joinchat CTA (always)
    • \n
    \n

    💱 Multi-Language & RTL Support.

    \n

    To be able to support all your users, wherever they are. Our plugin is compatible with WPML and Polylang and also RTL languages are supported.

    \n

    Direct link to edit translations when a translatable field is changed.

    \n

    🌈 Theme Colors & 🌚 Dark Mode.

    \n

    You choose a color and we customize the entire visual theme of the widget. With Dark Mode display the chat window with dark colors and white text. From settings you can activate it or leave it automatic and detects devices’ configuration.

    \n

    ⚡ Fast & Light.

    \n

    Only load what need when needed. Joinchat is lightweight and follow best coding practices. See tests report

    \n

    Use vanilla JavaScript without dependencies, deferred scripts and lazy load of styles to prevent render-blocking.

    \n

    🔕 No distractions.

    \n

    Joinchat integrates with all major Visual Editors and Page Builders and will not appear when editing a page.

    \n

    Supported editors: Beaver Builder, Brizy Page Builder, Elementor, Oxygen Builder, Page Builder by SiteOrigin, Thrive Architect, Visual Composer and WP Page Builder.

    \n

    🍪 Cookies & GDPR.

    \n

    Joinchat can be used without any cookies. But to automatically display the CTA, two cookies are necessary. They are first-party cookies and don’t collect personal data.

    \n

    Joinchat integrates with WordPress’s Privacy Policy Guide and suggests the necessary text.

    \n

    👨‍💻 Developer friendly.

    \n

    Fully extensible, with lots of filters and actions to extend its functionality or change behavior.

    \n

    === Joinchat Premium 🚀 ===

    \n

    Turn your chat into a powerful lead capture and support tool.

    \n
      \n
    • Create chatbot-like conversation flows to capture leads and automate replies.
    • \n
    • Manage multiple agents and schedules to organize support.
    • \n
    • Prevent overload by distributing chats across multiple WhatsApp numbers.
    • \n
    • Add more channels like Telegram, Messenger, or phone calls.
    • \n
    • Boost conversions with videos, surveys, and more right inside the chat window.
    • \n
    \n

    👉 Get Joinchat Premium and upgrade your support today.

    \n

    === Joinchat AI ✨ ===

    \n

    Supercharge your chat with AI-powered instant replies and smart support.

    \n
      \n
    • Answer instantly 24/7 using AI trained on your FAQs and website content.
    • \n
    • Guide visitors and solve questions automatically without human intervention.
    • \n
    • Reduce workload and boost efficiency by handling repetitive queries.
    • \n
    • Keep control with easy knowledge base management and response customization.
    • \n
    \n

    👉 Get Joinchat AI and let AI handle the hard work.

    \n

    🎨 “Business Chat” is our WordPress theme recommended

    \n

    Business Chat is a versatile WordPress theme designed for businesses seeking a professional online presence. It offers a fully responsive design, built-in SEO tools, extensive customization options, and a chat integration through Joinchat. It’s compatible with popular page builders and backed by dedicated customer support. Also it’s the ultimate solution for a high-performing, user-friendly business website.

    \n

    Business Chat offers both a free and a premium version, catering to businesses with varying budgets and requirements. This flexibility makes it an ideal choice for businesses looking for a comprehensive and versatile solution to establish their online presence.

    \n

    ⌁ If you like Joinchat 😍

    \n
      \n
    1. Please leave us a ★★★★★ rating. We’ll thank you.
    2. \n
    3. Help us with the translation in your language
    4. \n
    5. Visit our blog and find tips and tricks at join.chat.
    6. \n
    7. Follow @joinchatnow on X. Join chat now!
    8. \n
    \n", "donate_link": "https://join.chat/donate/", "num_ratings": 188, "screenshots": {"1": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-1.jpg?rev=2699533", "caption": "Real example"}, "2": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-2.jpg?rev=2699533", "caption": "Real example"}, "3": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-3.jpg?rev=2699533", "caption": "Real example"}, "4": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-4.jpg?rev=2699533", "caption": "Real example"}, "5": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-5.jpg?rev=2699533", "caption": "Real example"}, "6": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-6.jpg?rev=2699533", "caption": "Real example"}, "7": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-7.png?rev=2699533", "caption": "Product Button example"}, "8": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-8.png?rev=2699533", "caption": "General settings"}, "9": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-9.png?rev=2699533", "caption": "Visibility settings"}, "10": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-10.png?rev=2699533", "caption": "WooCommerce settings"}, "11": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-11.png?rev=2699533", "caption": "Advanced settings"}, "12": {"src": "https://ps.w.org/creame-whatsapp-me/assets/screenshot-12.png?rev=2699533", "caption": "Page settings"}}, "support_url": "https://wordpress.org/support/plugin/creame-whatsapp-me/", "contributors": {"monillo": {"avatar": "https://secure.gravatar.com/avatar/bcd62ff5129dc582432809fea0d36641e280a2c4e17c8cdf624277a0e88c2eac?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/monillo/", "display_name": "Monillo"}, "pacotole": {"avatar": "https://secure.gravatar.com/avatar/5cd364ec1aa6f2598d1009511e5722b8226fad9ed20feff0b5fb46aecd334d54?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pacotole/", "display_name": "Pacotole"}, "davidlillo": {"avatar": "https://secure.gravatar.com/avatar/b9dd9994a7b4df5482699fd05808b896c3b81decf16d7d74705472c45aeef89d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/davidlillo/", "display_name": "davidlillo"}, "creapuntome": {"avatar": "https://secure.gravatar.com/avatar/18c1ce296c23ff7f409c7697669b5b462d3b08be0ee129c360b2d3ea9207aa61?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/creapuntome/", "display_name": "Creame"}}, "last_updated": "2025-09-10 3:44pm GMT", "preview_link": "https://wordpress.org/plugins/creame-whatsapp-me/?preview=1", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/creame-whatsapp-me.6.0.8.zip", "author_profile": "https://profiles.wordpress.org/creapuntome/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    Joinchat 6 is a mayor version that includes refactored layout, styles and JavaScript. Please check your site after updating.\nJoinchat Premium users: You need to upgrade to Joinchat Premium 6 for full compatibility.

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f28d-7350-aac1-d59caba45999", "name": "Joinchat", "slug": "creame-whatsapp-me", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1757519040, "version": "6.0.8"}, "support_threads": 1, "requires_plugins": [], "short_description": "WhatsApp, Messenger, Telegram, Phone call… capture users through their favorite Apps and turn into clients", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-648c-73f7-aaf4-bb9a0a1dcea5', 'custom-css-js', 'Simple Custom CSS and JS', 'Easily add Custom CSS or JS to your website with an awesome editor.', '

    Customize your WordPress site’s appearance by easily adding custom CSS and JS code without even having to modify your theme or plugin files. This is perfect for adding custom CSS tweaks to your site.

    -

    Features

    -
      -
    • Text editor with syntax highlighting
    • -
    • Print the code inline or included into an external file
    • -
    • Print the code in the header or the footer
    • -
    • Add CSS or JS to the frontend or the admin side
    • -
    • Add as many codes as you want
    • -
    • Keep your changes also when you change the theme
    • -
    -', '3.51.1', 'SilkyPress', '3.0.1', '5.2.4', '6.8.3', 'https://downloads.wordpress.org/plugin/custom-css-js.3.51.1.zip', '2015-12-07 00:00:00+00', '2025-10-13 19:07:00+00', 'https://profiles.wordpress.org/diana_burduja/', 88, 100, 3, 3, 700000, 9119827, 'https://wordpress.org/plugins/custom-css-js/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/custom-css-js/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Simple Custom CSS and JS", "slug": "custom-css-js", "tags": {"site-css": "site css", "add-style": "add style", "custom-js": "custom js", "custom-css": "custom css", "customize-theme": "customize theme"}, "added": "2015-12-07", "icons": {"1x": "https://ps.w.org/custom-css-js/assets/icon-128x128.png?rev=1303730"}, "author": "SilkyPress", "rating": 88, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/custom-css-js/assets/banner-772x250.png?rev=1303730", "high": "https://ps.w.org/custom-css-js/assets/banner-1544x500.png?rev=1770945"}, "ratings": {"1": 11, "2": 2, "3": 4, "4": 4, "5": 79}, "version": "3.51.1", "homepage": "https://wordpress.org/plugins/custom-css-js/", "requires": "3.0.1", "sections": {"faq": "\n
    \nWhat if I want to add multiple external CSS codes?\n\n

    \n

    If you write multiple codes of the same type (for example: two external CSS codes), then all of them will be printed one after another

    \n

    \n
    \nWill this plugin affect the loading time?\n\n

    \n

    When you click the Save button the codes will be cached in files, so there are no tedious database queries.

    \n

    \n
    \nDoes the plugin modify the code I write in the editor?\n\n

    \n

    No, the code is printed exactly as in the editor. It is not modified/checked/validated in any way. You take the full responsability for what is written in there.

    \n

    \n
    \nMy code doesn’t show on the website\n\n

    \n

    Try one of the following:
    \n1. If you are using any caching plugin (like “W3 Total Cache” or “WP Fastest Cache”), then don’t forget to delete the cache before seing the code printed on the website.
    \n2. Make sure the code is in Published state (not Draft or in Trash).
    \n3. Check if the wp-content/uploads/custom-css-js folder exists and is writable

    \n

    \n
    \nDoes it work with a Multisite Network?\n\n

    \n

    Yes.

    \n

    \n
    \nWhat if I change the theme?\n\n

    \n

    The CSS and JS are independent of the theme and they will persist through a theme change. This is particularly useful if you apply CSS and JS for modifying a plugin’s output.

    \n

    \n
    \nCan I use a CSS preprocesor like LESS or Sass?\n\n

    \n

    For the moment only plain CSS is supported, but you can check out the Pro version in case you need a CSS preprocessor.

    \n

    \n
    \nCan I upload images for use with my CSS?\n\n

    \n

    Yes. You can upload an image to your Media Library, then refer to it by its direct URL from within the CSS stylesheet. For example:
    \n div#content {
    \n background-image: url(‘http://example.com/wp-content/uploads/2015/12/image.jpg’);
    \n }

    \n

    \n
    \nCan I use CSS rules like @import and @font-face?\n\n

    \n

    Yes.

    \n

    \n
    \nWho can publish/edit/delete Custom Codes?\n\n

    \n

    By default only the Administrator will be able to publish/edit/delete Custom Codes. On the plugin activation there is a role created called Web Designer. You can assign this role to a non-admin user in order to allow to publish/edit/delete Custom Codes. On the plugin’s Settings page there is an option to remove this role.

    \n

    \n
    \nMy website has HTTPS urls, but the codes are linked as HTTP\n\n

    \n

    The URL for the linked Codes is built just like the URL for other media (from Media Library) by using the WordPress Address option found on the WP Admin -> Settings -> General page, as shown in this screenshot. If the WordPress Address has HTTPS in the url, then the Custom Codes and all the other media will have HTTPS in the url.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Just what I was looking for

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Heath Woodward (goldeneye512) on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works perfectly. Great plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Product, Great Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Zayadur (zayadur) on June 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    There is no other plugin that allows you to control settings like WP conditional location rules, stores versioned copies of the files in a directory making local development easier, and is a simple UX to deploy rapid updates cutting down on development time. On top of that, the support team has gone above and beyond to address and fix limitations to allow my business and developers'' workflows to continue without a hitch. I highly recommend this plugin to anyone that''s looking for a definitive solution to deploy HTML, CSS, JS snippets on a per-post basis.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very Simple and Multi-Functional

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy joseeneveu on February 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks to this plugin, I was able to make modifications to parts of my own website that had been eluding me for WEEKS through other CSS plugins that I had been trying to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect plugin, but a few improvements for easier editing would be nice.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy michalrama on January 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is basically a must. When using a free theme, I am quite limited in editing the appearance. And some functions cannot be solved using plugins.

    \n\n\n\n

    There are three things that I have been missing for a long time.

    \n\n\n\n
      \n
    1. Insufficient highlighting of the wrong number of brackets. It does turn red when I click on it, but it would be better if it was red permanently or turned red after saving.
    2. \n\n\n\n
    3. Basic ability to undo changes.
    4. \n\n\n\n
    5. Ability to automatically format code
    6. \n
    \n\n\n\n

    However, this does not change the fact that I give it five stars.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Solid performance and a complete feature set for most use cases.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bjarne Oldrup (oldrup) on January 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple Custom CSS and JS does exactly what it says on the box. I''ve been using it for many years on non-profit websites, and it has proven rock solid. Here''s what I especially appreciated:

    \n\n\n\n
      \n
    • CSS, JS, and HTML syntax highlighting.
    • \n\n\n\n
    • Code can be inline or loaded externally (and thus cached).
    • \n\n\n\n
    • Code can be loaded in the header, body, or footer.
    • \n\n\n\n
    • Code can be loaded on the front end, in the block editor and/or admin pages.
    • \n\n\n\n
    • Code can easily be enabled or disabled with a single click.
    • \n
    \n\n\n\n

    That is a lot of features for a free plugin, and I''m perfectly content with that. There is a reasonably priced premium version with advanced features like CSS preprocessors and code revisions if these are important features to you, but the free version is a great start and enough for many projects.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Impacted the permalinks

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy code2be on December 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin does flush all permalinks settings on install, without confirmation of Admin, which impacted the whole permalinks settings, and required me to deactivate and reactivate multiple plugins to get their permalinks settings setup again, which is loss of time and requires a clear confirmation before doing that on install.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excelente!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Derley Hassen (derleybr) on October 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Prático, funcional e sem a irritante tentativa de fazer você comprar. Uso perfeitamente sem a necessidade de complementá-lo com algum plugin dependente pago.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Нет возможности подключить внешний CSS

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fomenkoandrey on October 5, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Вроде как опція EXTERNAL file есть, но указать адрес этого файла - нету возможности, только в платной версии.

    \n\n\n\n

    ПОтому - безполезный плагин

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really useful tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy linuxhostmaster on September 2, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a relatively small simple plugin but recently I''ve found it invaluable for adding small CSS and JS snippets to the site. It''s been great for adding things RocketChat and Webpushr snippets tiny css quick fix adjustments to cope with UI inconsistencies.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Limited usefulness

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Yiorgos Theo (hellas1) on August 14, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    css is applied to the whole site, can not be applied to specific pages or posts.

    \n
    \n
    \n", "changelog": "

    3.51.1

    \n
      \n
    • 10/14/2025
    • \n
    • Fix: add the drag icon that makes the editor expandable
    • \n
    • Fix: the syntax highlighting was missing for HTML custom codes due to an array id overridding
    • \n
    \n

    3.51

    \n
      \n
    • 09/06/2025
    • \n
    • Tweak: update the CodeMirror library to the 5.65.20 version
    • \n
    • Fix: change the loading method in the Block editor to the recommended “enqueue_block_assets”
    • \n
    \n

    3.50

    \n
      \n
    • 02/17/2025
    • \n
    • Fix: the editor doesn’t show up under certain conditions
    • \n
    • Fix: don’t show the code excerpts in the list table, if the “Extended View” option is enabled for posts or pages
    • \n
    \n

    3.49

    \n
      \n
    • 11/13/2024
    • \n
    • Fix: add nuance for the “in Block editor” option for websites with WP before v6.6 and after
    • \n
    \n

    3.48

    \n
      \n
    • 09/24/2024
    • \n
    • Feature: add JS/CSS custom codes to the Block editor
    • \n
    \n

    3.47

    \n
      \n
    • 05/27/2024
    • \n
    • Fix: use the GMT time for showing when a custom code was published or modified
    • \n
    \n

    3.46

    \n
      \n
    • 01/31/2024
    • \n
    • Tweak: update the Bootstrap and jQuery library links
    • \n
    • Tweak: remove the qTranslate-x warning. The qTranslate-x plugin was removed from wp.org since Aug 2021
    • \n
    \n

    3.45

    \n
      \n
    • 10/17/2023
    • \n
    • Fix: enqueue the jQuery library only if there is a frontend JS custom code that requires it
    • \n
    \n

    3.44

    \n
      \n
    • 06/07/2023
    • \n
    • Compatibility with the WooCommerce “custom order tables” feature
    • \n
    \n

    3.43

    \n
      \n
    • 03/13/2023
    • \n
    • Fix: PHP8.1 deprecation notices
    • \n
    • Fix: after adding a JS/HTML custom code with empty content will show the CSS default message in the editor
    • \n
    \n

    3.42

    \n
      \n
    • 01/17/2023
    • \n
    • Fix: the “LH Archived Post Status” plugin was removing the “Publish” button on the add/edit custom code page
    • \n
    • Feature: multiple values for the “Where in site” option
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    Customize your WordPress site’s appearance by easily adding custom CSS and JS code without even having to modify your theme or plugin files. This is perfect for adding custom CSS tweaks to your site.

    \n

    Features

    \n
      \n
    • Text editor with syntax highlighting
    • \n
    • Print the code inline or included into an external file
    • \n
    • Print the code in the header or the footer
    • \n
    • Add CSS or JS to the frontend or the admin side
    • \n
    • Add as many codes as you want
    • \n
    • Keep your changes also when you change the theme
    • \n
    \n", "screenshots": "
    1. \"<p>Manage

      Manage Custom Codes

    2. \"<p>Add/Edit

      Add/Edit Javascript

    3. \"<p>Add/Edit

      Add/Edit CSS

    4. \"<p>Add/Edit

      Add/Edit HTML

    ", "installation": "
      \n
    • From the WP admin panel, click “Plugins” -> “Add new”.
    • \n
    • In the browser input box, type “Simple Custom CSS and JS”.
    • \n
    • Select the “Simple Custom CSS and JS” plugin and click “Install”.
    • \n
    • Activate the plugin.
    • \n
    \n

    OR…

    \n
      \n
    • Download the plugin from this page.
    • \n
    • Save the .zip file to a location on your computer.
    • \n
    • Open the WP admin panel, and click “Plugins” -> “Add new”.
    • \n
    • Click “upload”.. then browse to the .zip file downloaded from this page.
    • \n
    • Click “Install”.. and then “Activate plugin”.
    • \n
    \n

    OR…

    \n
      \n
    • Download the plugin from this page.
    • \n
    • Extract the .zip file to a location on your computer.
    • \n
    • Use either FTP or your hosts cPanel to gain access to your website file directories.
    • \n
    • Browse to the wp-content/plugins directory.
    • \n
    • Upload the extracted custom-css-js folder to this directory location.
    • \n
    • Open the WP admin panel.. click the “Plugins” page.. and click “Activate” under the newly added “Simple Custom CSS and JS” plugin.
    • \n
    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/custom-css-js.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/custom-css-js.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/custom-css-js.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/custom-css-js.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/custom-css-js.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/custom-css-js.1.6.zip", "2.0": "https://downloads.wordpress.org/plugin/custom-css-js.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/custom-css-js.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/custom-css-js.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/custom-css-js.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/custom-css-js.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/custom-css-js.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/custom-css-js.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/custom-css-js.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/custom-css-js.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/custom-css-js.2.9.zip", "3.0": "https://downloads.wordpress.org/plugin/custom-css-js.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/custom-css-js.3.2.zip", "3.4": "https://downloads.wordpress.org/plugin/custom-css-js.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/custom-css-js.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/custom-css-js.3.6.zip", "3.7": "https://downloads.wordpress.org/plugin/custom-css-js.3.7.zip", "3.8": "https://downloads.wordpress.org/plugin/custom-css-js.3.8.zip", "3.9": "https://downloads.wordpress.org/plugin/custom-css-js.3.9.zip", "2.10": "https://downloads.wordpress.org/plugin/custom-css-js.2.10.zip", "3.10": "https://downloads.wordpress.org/plugin/custom-css-js.3.10.zip", "3.11": "https://downloads.wordpress.org/plugin/custom-css-js.3.11.zip", "3.12": "https://downloads.wordpress.org/plugin/custom-css-js.3.12.zip", "3.13": "https://downloads.wordpress.org/plugin/custom-css-js.3.13.zip", "3.14": "https://downloads.wordpress.org/plugin/custom-css-js.3.14.zip", "3.15": "https://downloads.wordpress.org/plugin/custom-css-js.3.15.zip", "3.16": "https://downloads.wordpress.org/plugin/custom-css-js.3.16.zip", "3.17": "https://downloads.wordpress.org/plugin/custom-css-js.3.17.zip", "3.18": "https://downloads.wordpress.org/plugin/custom-css-js.3.18.zip", "3.19": "https://downloads.wordpress.org/plugin/custom-css-js.3.19.zip", "3.20": "https://downloads.wordpress.org/plugin/custom-css-js.3.20.zip", "3.21": "https://downloads.wordpress.org/plugin/custom-css-js.3.21.zip", "3.22": "https://downloads.wordpress.org/plugin/custom-css-js.3.22.zip", "3.23": "https://downloads.wordpress.org/plugin/custom-css-js.3.23.zip", "3.24": "https://downloads.wordpress.org/plugin/custom-css-js.3.24.zip", "3.25": "https://downloads.wordpress.org/plugin/custom-css-js.3.25.zip", "3.26": "https://downloads.wordpress.org/plugin/custom-css-js.3.26.zip", "3.27": "https://downloads.wordpress.org/plugin/custom-css-js.3.27.zip", "3.28": "https://downloads.wordpress.org/plugin/custom-css-js.3.28.zip", "3.29": "https://downloads.wordpress.org/plugin/custom-css-js.3.29.zip", "3.30": "https://downloads.wordpress.org/plugin/custom-css-js.3.30.zip", "3.31": "https://downloads.wordpress.org/plugin/custom-css-js.3.31.zip", "3.32": "https://downloads.wordpress.org/plugin/custom-css-js.3.32.zip", "3.33": "https://downloads.wordpress.org/plugin/custom-css-js.3.33.zip", "3.34": "https://downloads.wordpress.org/plugin/custom-css-js.3.34.zip", "3.35": "https://downloads.wordpress.org/plugin/custom-css-js.3.35.zip", "3.36": "https://downloads.wordpress.org/plugin/custom-css-js.3.36.zip", "3.37": "https://downloads.wordpress.org/plugin/custom-css-js.3.37.zip", "3.38": "https://downloads.wordpress.org/plugin/custom-css-js.3.38.zip", "3.39": "https://downloads.wordpress.org/plugin/custom-css-js.3.39.zip", "3.40": "https://downloads.wordpress.org/plugin/custom-css-js.3.40.zip", "3.41": "https://downloads.wordpress.org/plugin/custom-css-js.3.41.zip", "3.42": "https://downloads.wordpress.org/plugin/custom-css-js.3.42.zip", "3.43": "https://downloads.wordpress.org/plugin/custom-css-js.3.43.zip", "3.45": "https://downloads.wordpress.org/plugin/custom-css-js.3.45.zip", "3.46": "https://downloads.wordpress.org/plugin/custom-css-js.3.46.zip", "3.47": "https://downloads.wordpress.org/plugin/custom-css-js.3.47.zip", "3.48": "https://downloads.wordpress.org/plugin/custom-css-js.3.48.zip", "3.49": "https://downloads.wordpress.org/plugin/custom-css-js.3.49.zip", "3.50": "https://downloads.wordpress.org/plugin/custom-css-js.3.50.zip", "3.51": "https://downloads.wordpress.org/plugin/custom-css-js.3.51.zip", "trunk": "https://downloads.wordpress.org/plugin/custom-css-js.zip", "3.31.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.31.1.zip", "3.32.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.32.1.zip", "3.32.2": "https://downloads.wordpress.org/plugin/custom-css-js.3.32.2.zip", "3.32.3": "https://downloads.wordpress.org/plugin/custom-css-js.3.32.3.zip", "3.34.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.34.1.zip", "3.38.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.38.1.zip", "3.51.1": "https://downloads.wordpress.org/plugin/custom-css-js.3.51.1.zip"}, "downloaded": 9119827, "description": "

    Customize your WordPress site’s appearance by easily adding custom CSS and JS code without even having to modify your theme or plugin files. This is perfect for adding custom CSS tweaks to your site.

    \n

    Features

    \n
      \n
    • Text editor with syntax highlighting
    • \n
    • Print the code inline or included into an external file
    • \n
    • Print the code in the header or the footer
    • \n
    • Add CSS or JS to the frontend or the admin side
    • \n
    • Add as many codes as you want
    • \n
    • Keep your changes also when you change the theme
    • \n
    \n", "donate_link": "", "num_ratings": 100, "screenshots": {"1": {"src": "https://ps.w.org/custom-css-js/assets/screenshot-1.jpg?rev=1770918", "caption": "

    Manage Custom Codes

    "}, "2": {"src": "https://ps.w.org/custom-css-js/assets/screenshot-2.jpg?rev=1770918", "caption": "

    Add/Edit Javascript

    "}, "3": {"src": "https://ps.w.org/custom-css-js/assets/screenshot-3.jpg?rev=1770918", "caption": "

    Add/Edit CSS

    "}, "4": {"src": "https://ps.w.org/custom-css-js/assets/screenshot-4.jpg?rev=1770918", "caption": "

    Add/Edit HTML

    "}}, "support_url": "https://wordpress.org/support/plugin/custom-css-js/", "contributors": {"diana_burduja": {"avatar": "https://secure.gravatar.com/avatar/326b6ed822562dfd3ee3376e3c82d232e875a27f1ada96c1b330c5715165cca7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/diana_burduja/", "display_name": "SilkyPress"}}, "last_updated": "2025-10-13 7:07pm GMT", "preview_link": "", "requires_php": "5.2.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/custom-css-js.3.51.1.zip", "author_profile": "https://profiles.wordpress.org/diana_burduja/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f293-70df-9c30-281ff855504f", "name": "Simple Custom CSS and JS", "slug": "custom-css-js", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760382420, "version": "3.51.1"}, "support_threads": 3, "requires_plugins": [], "short_description": "Easily add Custom CSS or JS to your website with an awesome editor.", "author_block_count": 0, "author_block_rating": 88, "commercial_support_url": "", "support_threads_resolved": 3}'); -INSERT INTO public.plugins VALUES ('019a30c1-657e-71d3-b402-f12ac021e3f0', 'instagram-feed', 'Smash Balloon Social Photo Feed – Easy Social Feeds Plugin', 'Formerly "Instagram Feed". Display clean, customizable, and responsive Instagram feeds from multiple accounts. Supports Instagram oEmbeds.', '

    As the most powerful and easiest to use Instagram plugin for WordPress, Smash Balloon Social Photo Feed helps you create, customize and embed Instagram feeds on your website in just a few clicks! Absolutely no coding needed.

    -

    -

    Designed for both WordPress beginners and advanced users, you can use Social Photo Feed to seamlessly integrate your Instagram widgets and keep your site effortlessly updated.

    -

    Explore the Pro Version | See Pro in Action

    -

    Over 1 million users worldwide trust Social Photo Feed to easily showcase Instagram content on their websites.

    -

    Embed Your Instagram Feed in 3 Steps

    -

    Smash Balloon Instagram Feed makes it a breeze to set up your feeds on your site:

    -
      -
    1. Create your feed and choose an Instagram widget source
    2. -
    3. Customize your feed in a few clicks
    4. -
    5. Add your Instagram feed to your site
    6. -
    -

    Check Out the Pro Version | Try the Pro Demo

    -

    Free Features

    -
      -
    • NEW! Supports local WebP image format for faster loading times
    • -
    • oEmbed Support Automatically powers your Instagram oEmbeds
    • -
    • Setting Up is Simple: Get started in seconds, no hassle, no fuss
    • -
    • Showcase Multiple Accounts: Display photos from various Instagram accounts in one unified feed or separate them into individual feeds
    • -
    • Multiple Feeds Anywhere: Add as many feeds as you want on the same page or spread them across different pages on your site
    • -
    • Responsive & Mobile-Ready: Your feeds will look stunning on any screen size, on any device and in any container width
    • -
    • Fully Customizable Feeds: Adjust the width, height, number of photos, number of columns, image size, background color, image spacing and more
    • -
    • Visual Customizer: Customize your feed layout, color scheme, header style, post settings, lightbox, and much more – in just a few clicks
    • -
    • Photo Display Options: Choose to display thumbnail, medium, or full-size photos directly from your feed
    • -
    • Beautiful Feed Header: Add a striking header to top off your feed beautifully
    • -
    • “Follow on Instagram” Button: Increase followers by adding a “follow on Instagram” button at the bottom of your feed
    • -
    • Flexible Photo Order: Display your Instagram photos in chronological order or mix it up with a random arrangement
    • -
    • Infinite Scroll: Keep your visitors engaged by loading more of your Instagram photos with a handy “Load More” button
    • -
    • Built-in Block: Easily add your feed to posts and pages with our convenient block for the block editor
    • -
    • Instagram Widget: Embed on your site’s widget-ready areas such as sidebar and footer in seconds
    • -
    • GDPR Compliant: Automatically integrates with many of the popular GDPR cookie consent plugins and includes a 1-click easy GDPR setting
    • -
    • Designed for All Users: Perfect for beginners and advanced users alike
    • -
    • Advanced Customization: Add your own custom CSS and JavaScript for advanced customizations
    • -
    • Page Builder Compatible: Fully compatible with Elementor, Divi, Beaver Builder and other popular page builders
    • -
    -

    Get More with Instagram Feed Pro

    -

    Want to truly maximize your Instagram content and make it work harder for your brand?

    -

    While Smash Balloon’s Social Photo Feed offers a free way to get started, our Pro version offers advanced features to help you get complete control over the way you show your Instagram photos and videos to your website visitors.

    -

    The Pro version, known as Instagram Feed Pro, allows you to:

    -
      -
    • -

      Display hashtag feeds – Curate dynamic content around specific Instagram hashtags
      -Check Out Instagram Hashtag Feed Demo

      -
    • -
    • -

      Show stunning lightboxes – View photos, Instagram reels and videos in a popup lightbox directly on your site

      -
    • -
    • -

      Add interactive elements – Display captions and show the number of likes and comments for each post

      -
    • -
    • -

      Embed Instagram carousel – Showcase eye-catching carousels from your posts
      -See Instagram Carousel Feed Demo

      -
    • -
    • -

      Choose from multiple layout options – Use “Masonry” or “Highlight” layouts
      -View “Highlight” Layout in Action

      -
    • -
    • -

      Use advanced feed moderation – Hide or show specific posts in just a few clicks

      -
    • -
    • -

      Filter Instagram posts – Display Instagram content based on hashtags, keywords or specific user posts

      -
    • -
    • -

      Create shoppable feeds – Add customized links to each post, like link in bio, so you can direct your site visitors to the page you’d like

      -
    • -
    • -

      Use professionally-designed themes – No need to start from scratch! Design beautiful feeds in minutes with pre-made feed themes to instantly create beautiful and unique feeds

      -
    • -
    -

    Plus, enjoy these Pro benefits:

    -
      -
    • Priority Support: Get quick and dedicated help from our support team
    • -
    • Regular Updates: Benefit from continuous plugin improvements and new features
    • -
    -

    Check Out the Pro Version | Try the Pro Demo

    -

    Why Over 1 Million Users Love Smash Balloon

    -

    Trusted by over 1 million websites, Smash Balloon is the leading solution for seamlessly integrating Instagram feeds onto your site.

    -

    Our 4.9/5 star average rating from 4,000+ glowing reviews speaks for itself.

    -

    What Our Users Are Saying

    -
    -

    “Awesome plugin and support – Awesome plugin that just works! Contacted support this week and they’ve quickly given a custom solution for a specific query I had! Very happy customer!”
    - – @tomteaweb

    -

    “The best Instagram feed plugin – Whenever I need to display the Instagram feed in a WordPress site, I choose this plugin. It is not only easy to set up, but even in the free version you have enough features to have a nice feed. Do not spend more time looking for another Instagram feed plugin: This is the best!”
    - – @yordansoares

    -

    “Simple and concise – Excellent plugin. Simple and non-bloated. I had a couple small issues with the plugin when I first started using it, but a quick comment on the support forums got a new version pushed out the next day with the fix. Awesome support!”
    - – @joshjones

    -

    “Great plugin, greater support! – I’ve definitely noticed an increase in followers on Instagram since I added this plugin to my sidebar. Thanks for the help in making some adjustments…looks and works great!”
    - – @bnotp

    -
    -

    Fast, Professional and Helpful Support

    -

    At Smash Balloon, we’re dedicated to providing the most customizable, robust, and well-supported Instagram plugin available.

    -

    Have a question, need help with a feature, or want to request a new feature?

    -

    Our dedicated support team is just a quick message away, ready to provide top-notch assistance for both free and premium versions:

    - -

    You can instantly unlock priority support when you upgrade to Instagram Feed Pro now.

    -

    7 Reasons Why You Need Smash Balloon Social Photo Feed

    -
      -
    1. Boost Social Engagement – Increase engagement between you and your Instagram followers
    2. -
    3. Save Time – Automatically display your Instagram photos on your website
    4. -
    5. Display Your Content Your Way – Customize your feeds to blend seamlessly with your site
    6. -
    7. Keep Your Site Looking Fresh – Automatically push new Instagram content to your site
    8. -
    9. Super Simple Setup – Get started in 30 seconds with no Developer account needed
    10. -
    11. Powers Instagram oEmbeds – Maintain working Instagram embeds across your site
    12. -
    13. Professional Feed Themes – Use ready-made themes for quick, beautiful displays
    14. -
    -

    What Can It Do?

    -
      -
    • Display Instagram photos from any account you own
    • -
    • Completely responsive and mobile ready
    • -
    • Display multiple feeds on the same page
    • -
    • Display posts from multiple Instagram User IDs
    • -
    • Built-in customization options
    • -
    • Infinite scroll with ‘Load More’ button
    • -
    • Plus more features added regularly!
    • -
    -

    Completely Customizable Feeds

    -
      -
    • Set number of photos to display
    • -
    • Choose number of columns and photo sizes
    • -
    • Show/hide feed elements (header, buttons)
    • -
    • Control width, height and background color
    • -
    • Set spacing between photos
    • -
    • Display photos in chronological or random order
    • -
    • Customize button text and colors
    • -
    • Add custom CSS or JavaScript
    • -
    • Style multiple feeds differently
    • -
    • Plus more options added regularly!
    • -
    -

    Check Out the Pro Version | Try the Pro Demo

    -

    What’s Next

    -

    If you like our WordPress Instagram plugin, then consider checking out our other projects:

    -

    OptinMonster – Get more email subscribers with the most popular conversion optimization plugin for WordPress.
    -WPForms – #1 drag & drop online form builder for WordPress (trusted by 5 million sites).
    -AIOSEO – The original WordPress SEO plugin to help you rank higher in search results (trusted by over 3 million sites).
    -MonsterInsights – See the stats that matter and grow your business with confidence. Best Google Analytics plugin for WordPress.
    -SeedProd – Create beautiful landing pages with our powerful drag & drop landing page builder.
    -WP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    -WPCode – must have WordPress code snippet management plugin to help you future-proof website customization (trusted by 1.5 million sites).
    -Duplicator – popular WordPress backup and migration plugin used by over 1 million websites.
    -WP Simple Pay – #1 Stripe payments plugin for WordPress. Start accepting one-time or recurring payments without a shopping cart.
    -PushEngage – Connect with visitors after they leave your website with the leading web push notification plugin.
    -RafflePress – Best WordPress giveaway and contest plugin to grow traffic and social followers.
    -TrustPulse – Add real-time social proof notifications to boost your store conversions by up to 15%.
    -SearchWP – The most advanced custom WordPress search plugin to improve WordPress search quality.
    -AffiliateWP – #1 affiliate management plugin for WordPress. Add a referral program to your online store.
    -Easy Digital Downloads – The best WordPress eCommerce plugin to sell digital products (eBooks, software, music, and more).
    -WPCharitable – Top-rated WordPress donation and fundraising plugin for WordPress.

    -

    Visit WPBeginner to learn from our WordPress Tutorials and about the best WordPress plugins.

    -

    Privacy Policy

    -

    =Data Collection=

    -

    Instagram Feed does not collect any personal data from your Meta accounts (Instagram, Facebook). All data retrieved from the Meta API is used solely for the purpose of displaying your feed on your WordPress site.

    -

    =External Connections=

    -

    This plugin connects to three external sites:

    -
      -
    • -

      Smashballoon.com: Used for connecting and authenticating your sources. Occasionally, it sends dynamic notices to users. These notices can include information about major API changes, critical updates, and marketing messages.

      -
    • -
    • -

      Instagram.com and Facebook.com: Used to fetch posts so your visitors can view them directly on your site without needing to leave.

      -
    • -
    -

    =Data Usage=

    -

    All data retrieved from the Meta API is used solely for displaying your Instagram feed on your WordPress site. No personal data is collected, stored, or shared beyond this purpose.

    -', '6.9.1', 'Syed Balkhi', '4.1', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/instagram-feed.6.9.1.zip', '2014-07-23 00:00:00+00', '2025-05-21 16:39:00+00', 'https://profiles.wordpress.org/smub/', 98, 4302, 16, 10, 1000000, 48649611, 'https://smashballoon.com/instagram-feed', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/instagram-feed/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Smash Balloon Social Photo Feed – Easy Social Feeds Plugin", "slug": "instagram-feed", "tags": {"instagram": "Instagram", "instagram-feed": "instagram feed", "instagram-photos": "instagram photos", "instagram-widget": "Instagram widget", "instagram-gallery": "instagram gallery"}, "added": "2014-07-23", "icons": {"1x": "https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=2700807", "2x": "https://ps.w.org/instagram-feed/assets/icon-256x256.png?rev=2700807"}, "author": "Syed Balkhi", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=2679382", "high": "https://ps.w.org/instagram-feed/assets/banner-1544x500.png?rev=2679382"}, "ratings": {"1": 56, "2": 26, "3": 22, "4": 89, "5": 4109}, "version": "6.9.1", "homepage": "https://smashballoon.com/instagram-feed", "requires": "4.1", "sections": {"faq": "\n
    \nCan I display multiple Instagram feeds on my site or on the same page?\n\n

    \n

    Yep. You can display multiple Instagram feeds by using our built-in feed creation tool, for example: [instagram-feed feed=2].

    \n

    \n
    \nCan I display photos from more than one Instagram account in one single feed?\n\n

    \n

    Yep. You can connect multiple accounts and include them as sources when creating a feed.

    \n

    \n
    \nDoes the plugin work with Instagram oEmbeds?\n\n

    \n

    Yes. In version 2.5, support was added to allow the plugin to power your Instagram oEmbeds as official support for these is no longer available in WordPress core. Just connect your account on the oEmbeds settings page inside the plugin and we’ll do the rest. No developer app or account required.

    \n

    \n
    \nCan I display a feed with in a widget or with a block?\n\n

    \n

    Yes. Use the Instagram widget or Instagram block to display your feed in a sidebar or other widget area.

    \n

    \n
    \nHow do I connect my Instagram account?\n\n

    \n

    We’ve made it super easy. Just follow the steps outlined when onboarding and you will have a connected account with simple clicks.

    \n

    \n
    \nMy feed isn’t displaying. Why not!?\n\n

    \n

    There are a few common reasons for this:

    \n
      \n
    • Your Access Token may not be valid. Try clicking on the blue Instagram login button on the plugin’s Settings page again and copy and paste the Instagram token it gives you into the plugin’s Access Token field.
    • \n
    • The plugin’s JavaScript file isn’t included in your page. This is most likely because your WordPress theme is missing the WordPress wp_footer function which is required for plugins to be able to add their JavaScript files to your page. You can fix this by opening your theme’s footer.php file and adding the following directly before the closing tag between two php tags: wp_footer();
    • \n
    • Your website may contain a JavaScript error which is preventing JavaScript from running. The plugin uses JavaScript to load the Instagram photos into your page and so needs JavaScript to be running in order to work. You would need to remove any existing JavaScript errors on your website for the plugin to be able to load in your feed.
    • \n
    \n

    If you’re still having an issue displaying your feed then please open a ticket in the Support forum with a link to the page where you’re trying to display the Instagram feed and, if possible, a link to your Instagram account.

    \n

    \n
    \nAre there any security issues with using an Access Token on my site?\n\n

    \n

    Nope. The Access Token used in the plugin is a “read only” token, which means that it could never be used maliciously to manipulate your account.

    \n

    \n
    \nCan I view the full-size photos or play Instagram videos directly on my website?\n\n

    \n

    This is a feature of the Pro version of the plugin, which allows you to view the photos in a pop-up lightbox, support videos, display captions, display photos by hashtag + more!

    \n

    \n
    \nHow do I embed my feed directly into a WordPress page template?\n\n

    \n

    You can embed your feed directly into a template file by using the WordPress do_shortcode function: <?php echo do_shortcode(''[instagram-feed]''); ?>.

    \n

    \n
    \nMy Feed Stopped Working – All I see is a Loading Symbol\n\n

    \n

    If your Instagram photos aren’t loading and all your see is a loading symbol then there are a few common reasons:

    \n

    1) There’s an issue with the Instagram Access Token that you are using

    \n

    You can obtain a new access token on the Instagram Feed Settings page by using the “connect” button to reconnect the account.

    \n

    Occasionally the connect button inside the plugin does not successfully update the access token. You can try this link as well.

    \n

    2) The plugin’s JavaScript file isn’t being included in your page

    \n

    This is most likely because your WordPress theme is missing the WordPress wp_footer function which is required for plugins to be able to add their JavaScript files to your page. You can fix this by opening your theme’s footer.php file and adding the following directly before the closing tag:

    \n

    3) There’s a JavaScript error on your site which is preventing the plugin’s JavaScript file from running

    \n

    You can find out whether this is the case by right clicking on your page, selecting ‘Inspect Element’, and then clicking on the ‘Console’ tab, or by selecting the ‘JavaScript Console’ option from your browser’s Developer Tools.

    \n

    If a JavaScript error is occurring on your site then you’ll see it listed in red along with the JavaScript file which is causing it.

    \n

    4) The feed you are trying to display has no Instagram posts

    \n

    If you are trying to display an Instagram feed that has no posts made to it, a loading symbol may be all that shows for the Instagram feed or nothing at all. Once you add an Instagram post the Instagram feed should display normally

    \n

    5) The shortcode you are using is incorrect

    \n

    You may have an error in the Instagram Feed shortcode you are using or are missing a necessary argument.

    \n

    \n
    \nWhat are the available options that I can use to customize my feed?\n\n

    \n

    There are plenty of options to customize your feed! See the list below:
    \n* General Options
    \n* width of feed – The width of your feed.
    \n* height of feed – The height of your feed.
    \n* background color – The background color of the feed. Any hex color code.
    \n*
    \n* Photo Options
    \n* sorting – Sort the Instagram posts by Newest to Oldest (none) or Random (random)
    \n* number of posts – The number of posts to display initially.
    \n*
    \n* desktop columns – The number of columns in your feed when displayed on desktop devices
    \n* tablet columns – The number of columns in your feed when displayed on tablet devices
    \n* mobile columns – The number of columns in your feed when displayed on mobile or phone devices
    \n*
    \n* image spacing – The spacing around your photos
    \n*
    \n* Header Options
    \n* show header – Whether to show the feed Header.
    \n* show bio – Whether to show the account’s bio in the feed Header.
    \n* custom avatar – URL of a custom Avatar image for the header (use whatever image you want for your account).
    \n*
    \n* header color – The color of the feed Header text.
    \n*
    \n* ‘Load More’ Button Options
    \n* show load more button – Whether to show the ‘Load More’ button.
    \n* button color – The background color of the button. Any hex color code
    \n* button text color – The text color of the button.
    \n* button text – The text used for the button – Example: “Load More Photos”
    \n*
    \n* ‘Follow on Instagram’ Button Options
    \n* show the follow button ** – Whether to show the ‘Follow on Instagram’ button.
    \n* **follow color
    – The background color of the ‘Follow on Instagram’ button.
    \n* follow text color – The text color of the ‘Follow on Instagram’ button.
    \n* follow text – The text used for the ‘Follow on Instagram’ button – Example: “Follow me”

    \n

    For more options, check out the Pro version.

    \n

    For more FAQs related to the Instagram Feed plugin please visit the FAQ section on our website.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I Have to Give Up

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tdrock (TDRock) on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve used Smash Balloon for the past several years and in fact I had a paid license at one point. It''s not that it doesn''t work but it''s definitely buggy. Not only does my instagram feed periodically deactivate, sometimes seemingly for no reason whatsoever, but trying to reconnect is always a multi-step drama, endless sitting waiting for it to save, it doesn''t save, I have to do it over agin, over and over it''s just drama and I''m over it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Adding channel url won't work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Krishnakumar KA (krishnakumarka) on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After few months I am using this plugin. If I remember I was able to just add the channel url and show the feeds. Now you need to log in to instagram through their website and add the url.

    \n\n\n\n

    Second most important thing, I went through their setup and all of a sudden, another 4-5 plugins were added automatically that all the plugins are separate. Either you have to keep all these plugins (YT, FB, X, TT and something called WP Content?) in one plugin and allow the user to decide whether to activate or not. Adding many plugins is not a good idea.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Elise (otgelise) on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like the plugin, but setting it up is quite annoying. It keeps suggesting to install plugins that I don''t need and afterwards will delete.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Abuses the onboarding to install 6 extra plugins

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jos Klever (josklever) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin uses the onboarding wizard to install 6 extra plugins from the same author that users don''t need. I don''t mind the promotion (within decent limits), but the plugins should not be checked by default. Users should be informed about the recommended plugins and choose to check the box if they want that plugin. Right now it''s just meant to fake a high installation count.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Absolutely wonderful experience!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stochian on September 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Un plugin foarte util. Recomand

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incredible

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alxk2780 on September 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Surprising incredible tools

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Smash Balloon turned out to be big BUMMER!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy missydi2007 on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello SmashBalloon Team,

    \n\n\n\n

    I’m writing to share my deep disappointment with the recent experience I’ve had with your support team and licensing process.

    \n\n\n\n

    I reached out several times for assistance and was redirected to the wrong link to upgrade my license. The website itself is confusing—package names are not clearly distinguished, and I pointed out that the so-called “Basic Pro” was actually just “Basic,” not Pro at all. I purchased under the impression I’d be receiving Pro features (like hashtag filters), only to discover I wasn’t.

    \n\n\n\n

    When I attempted to upgrade, I was asked to pay the full price again instead of just the difference. I reached out again for help, emphasizing that I want to use the tool, but instead of receiving guidance, my entire subscription was abruptly cancelled—without any communication. That’s not just frustrating, it’s alarming.

    \n\n\n\n

    As someone with dyslexia, I was simply pointing out the pricing/package distinction in good faith and asking for help. Instead, I feel dismissed and penalized. This is both discouraging and unnecessarily stressful, especially since I still want to use the tool.

    \n\n\n\n

    Please look into reinstating my subscription and providing a proper path to the Pro version at the appropriate upgrade cost. I hope we can resolve this quickly—because I do value your product, but this experience has left me feeling unheard and disrespected.

    \n\n\n\n

    Sincerely,

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Variety of Display options

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pharrisonw on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to set up, only had to enter the Instagram login to create the connection. Free version has a good variety of display options, defaults work for most situations.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy andahwin on August 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin is exactly what I need. Easy to navigate, easy to use. Highly recommend.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I'm really happy with this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy evanbang on August 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was looking for something minimal that would just show my instagram feed on my blog. This is the best and easiest one I could find to make it happen. Thank you.

    \n
    \n
    \n", "changelog": "

    6.9.1

    \n
      \n
    • Fix – Additional code hardening.
    • \n
    \n

    6.9.0

    \n
      \n
    • Important – Added accessibility improvements related to the front-end feed display. This may affect custom code applied to the feed. Please check and reach out to support if you need help.
    • \n
    • Important – To comply with Meta’s security standards, we have raised the minimum PHP version to 7.4.
    • \n
    • Fix – Instagram feed plugin no longer triggers the _load_textdomain_just_in_time warning
    • \n
    • Fix – Additional code hardening.
    • \n
    \n

    6.8.0

    \n
      \n
    • New – Added a new setting to support Instagram’s new 3:4 aspect ratio. Edit your feed, select the “Layout” tab and choose among a 1:1 square, 4:5 portrait, or 3:4 Instagram official aspect ratio.
    • \n
    • New – Added support for a new GDPR consent plugin WPConsent.
    • \n
    \n

    6.7.1

    \n
      \n
    • Fix – Prevented PHP error “Fatal error: Uncaught TypeError: unserialize()”
    • \n
    • Fix – Removed advertisements for ClickSocial that appear in the block editor.
    • \n
    \n

    6.7.0

    \n
      \n
    • New – Added information regarding our newest product ClickSocial! Schedule your social media posts through the WordPress dashboard.
    • \n
    • Fix – Added a notice and more details if a database update fails. Most commonly this is due to the MySQL user not having permissions to alter tables.
    • \n
    • Fix – Improved our compatibility with the latest versions of Divi and Elementor.
    • \n
    • Fix – Resolved a PHP warning related to _load_textdomain_just_in_time.
    • \n
    • Fix – Additional plugin hardening.
    • \n
    \n

    6.6.1

    \n
      \n
    • Tweak: Added support for our new Feed Analytics product. Get insights as to how your feeds are being used by site visitors.
    • \n
    \n

    6.6.0

    \n
      \n
    • Important: For users with a personal account connection, you will need to reconnect your account before December 2024 after updating to version 6.6 or higher. Learn more
    • \n
    • New: Added support for GDPR Cookie Compliance by Moove Agency and Real Cookie Banner GDPR plugins.
    • \n
    • Fix: Existing data is no longer deleted after removing the free version if the Pro version is also installed.
    • \n
    • Fix: Fixed a rare issue causing 404 errors when editing a feed.
    • \n
    • Fix: Improved compatibility with the Thrive Architect plugin.
    • \n
    \n

    6.5.1

    \n
      \n
    • Fix: Plugin hardening.
    • \n
    \n

    6.5.0

    \n
      \n
    • New: Added webp image support for the local image optimization feature. This will improve the performance of your feed by serving images in the webp format when possible.
    • \n
    • New: Added Blocks to easily use our other social media feeds.
    • \n
    • Fix: Fixed an issue with images not loading in the post editor when using the Instagram Feed block.
    • \n
    \n

    6.4.3

    \n
      \n
    • New: Added support for new version of CookieYes GDPR plugin.
    • \n
    • New: Updated the URL for oEmbed auth flow.
    • \n
    • Fix: Resolved conflict with TikTok Feeds and removed assets when callout is not shown.
    • \n
    • Fix: Fixed issues with admin notices not dismissing properly.
    • \n
    \n

    6.4.2

    \n
      \n
    • Fix: PHP fatal error caused by dependencies not being prefixed with the correct namespace.
    • \n
    \n

    6.4.1

    \n
      \n
    • Fix: PHP fatal error that could occur in some circumstances when using the plugin.
    • \n
    • Fix: JS error that occurred on the frontend.
    • \n
    \n

    6.4

    \n
      \n
    • New: Added a checklist and callout feature to help users get started with all Smash Balloon products installed
    • \n
    • Tweak: Added some improvements to our onboarding wizard to make it clear what certain steps do.
    • \n
    • Tweak: Made improvements to our oEmbed connection process.
    • \n
    • Fix: Fixed AJAX themes not loading jQuery dependency causing the feed to break in some circumstances.
    • \n
    • Translations: Updated our translation .pot file.
    • \n
    \n

    6.3.1

    \n
      \n
    • Fix: Fixed some admin notices not dismissing as expected.
    • \n
    • Fix: Fixed an issue that would cause a fatal error when trying to delete the plugin.
    • \n
    \n

    6.3

    \n
      \n
    • New: Updated CSS floats to flexbox and grid for better layout support and compatibility with themes. If you have made customizations in form of CSS, JS, or custom feed templates, make sure your feed looks as expected after updating. If you need time to update your customizations, use the “Legacy CSS” setting on the “Advanced” tab to revert the CSS file to version 6.2.
    • \n
    • New: Improved how images are displayed to support lazy loading.
    • \n
    • Fix: Added support for Borlabs Cookie v3.0.
    • \n
    \n

    6.2.10

    \n
      \n
    • New: Added a menu item to easily install our new TikTok Feeds plugin!
    • \n
    \n

    6.2.9

    \n
      \n
    • New: Added Elementor widget and Divi module for Instagram Feed.
    • \n
    • Tweak: Enhanced the secure custom login tool for the support team to troubleshoot certain API issues on your site.
    • \n
    • Tweak: Improved and hardened our code base to improve reliability.
    • \n
    • Fix: Updated settings info to display in the debug report.
    • \n
    \n

    6.2.8

    \n
      \n
    • Fix: Menu items for our other plugins were not working when clicked.
    • \n
    \n

    6.2.7

    \n
      \n
    • Tweak: Improved and hardened our code base to improve reliability.
    • \n
    \n

    6.2.6

    \n
      \n
    • Fix: Resetting optimized images would also reset Instagram Feed settings.
    • \n
    \n

    6.2.5

    \n
      \n
    • Fix: Fixed a problem with our code that would remove admin footer text from other sources.
    • \n
    • Fix: Fixed an issue causing the minified CSS file to not actually be minified.
    • \n
    \n

    6.2.4

    \n
      \n
    • Fix: Disabled translation for a string that would cause an error in some languages.
    • \n
    \n

    6.2.3

    \n
      \n
    • Fix: Fixed translation bugs that would cause PHP errors on certain settings pages.
    • \n
    • Fix: Fixed a PHP error that would occur when the database record for translations was corrupted.
    • \n
    \n

    6.2.2

    \n
      \n
    • Translations: Fixed many translation issues and added translation files for German, French, Japanese, and many more.
    • \n
    • Fix: Fixed an issue that would cause extra slashes to be added to text settings that contained single and double quotes.
    • \n
    • Fix: Fixed an issue that would cause the customizer to not work the first time it was accessed.
    • \n
    \n

    6.2.1

    \n
      \n
    • Fix: Fixed a deprecation warning that would occur in PHP 8.2+.
    • \n
    • Fix: Fixed a PHP error that would occur when using PHP 8.0+, legacy feeds, and a shortcode with no arguments.
    • \n
    \n

    6.2

    \n
      \n
    • New: Added an onboarding wizard for new users to easily get started with Instagram Feeds.
    • \n
    \n

    6.1.6

    \n
      \n
    • Fix: Changed code related to account connection for increased reliability.
    • \n
    • Fix: Only 20 feeds were available for export when using the tool on the settings page.
    • \n
    • Fix: Fixed an issue causing a PHP error “creation of a dynamic property” when using PHP 8.2.
    • \n
    \n

    6.1.5

    \n
      \n
    • Fix: Fixed personal accounts unable to retrieve new tweets and showing an error with the code 100.
    • \n
    • Fix: Updated API calls for business accounts to work with upcoming changes from Instagram.
    • \n
    \n

    6.1.4

    \n
      \n
    • Fix: Removed the option to add a feed to a widget if the current theme does not support widgets.
    • \n
    • New: Added a menu item to easily install our new Reviews Feed plugin!
    • \n
    \n

    6.1.3

    \n
      \n
    • Fix: Fixed a PHP Warning: strtotime(): Epoch doesn’t fit in a PHP integer.
    • \n
    • Fix: Header bio was not updating when the bio for the connected Instagram account was updated.
    • \n
    • Fix: Fixed a few text items not being translatable.
    • \n
    \n

    6.1.2

    \n
      \n
    • Fix: When enabling Facebook oEmbeds from the oEmbed page, an Instagram icon would appear when the Custom Facebook Feed plugin was being activated.
    • \n
    • Fix: Fixed a CSS parsing error.
    • \n
    \n

    6.1.1

    \n
      \n
    • Fix: When using the customizer to enable the setting for the header “show outside scrollable area” and adding a background color, the preview would not show the same result as the actual feed.
    • \n
    • Fix: Disabling the JavaScript image loading on the “Advanced” settings tab would cause the customizer preview to look distorted.
    • \n
    • Fix: When customizing a feed, the load more button would become active when switching the device preview.
    • \n
    • Fix: Fixed a PHP warning that would occur when bulk deleting feeds.
    • \n
    \n

    6.1

    \n
      \n
    • New: Added the ability to filter “Reels” posts in feeds. When customizing a feed and using the moderation settings you can now choose to show or hide Instagram “Reels” posts.
    • \n
    • New: Add a header image and bio text for personal sources. Go to the settings page and click on the gear icon to add this to an existing source.
    • \n
    • New: Added support for Instagram “Reels” oEmbeds. Use WordPress’ embed block to create rich oEmbed links in blog posts and pages.
    • \n
    • Tweak: Vue.js code is now loaded from a local file shipped with the plugin rather than an external CDN for use with the customizer in the admin area.
    • \n
    \n

    6.0.8

    \n
      \n
    • Tweak: Added a workaround to retrieve missing images if none were returned by Instagram for a post.
    • \n
    • Fix: Custom colors assigned to the Follow button would not apply when using a custom color palette.
    • \n
    • Fix: Added additional plugin hardening.
    • \n
    • Fix: A fatal error would occur with older versions of PHP and WordPress in some circumstances.
    • \n
    \n

    6.0.7

    \n
      \n
    • Fix: Removed legacy “disable mobile” setting support as it was causing confusion for users updating from 2.x where changes to feed columns would not have an effect.
    • \n
    • Fix: Removed the reference in the feed CSS file to an image file that didn’t exist.in the feed CSS file.
    • \n
    • Fix: All sources would be removed when the grace period to address app permission issues ended. Now only the single source will be removed.
    • \n
    • Fix: The number of posts would be inaccurate in the feed preview when using the customizer for mobile devices.
    • \n
    \n

    6.0.6

    \n
      \n
    • Tweak: Added a warning notice to allow a grace period before Instagram data is permanently deleted from your site after deauthorizing the Smash Balloon Instagram app. Due to Instagram requirements, any Instagram data on your site must be deleted within a reasonable time after the app has been deauthorized. The new warning notice provides a 7 day grace period to allow you time to reauthorize the app if you don’t want the data to be deleted.
    • \n
    • Tweak: Reconnecting an account now results in deleting the original connection in the database and adding a new one. This will prevent issues with some caching systems like Redis.
    • \n
    • Fix: Only the first 20 sources were available when creating feeds and changing sources for a feed.
    • \n
    • Fix: The link in some error messages were incorrect resulting in “access denied” error messages when clicking on them.
    • \n
    \n

    6.0.5

    \n
      \n
    • Tweak: If WordPress cron is broken or behind schedule and causing background caching to not work, the plugin will update the feed when the page loads.
    • \n
    • Fix: Jetpack’s “Master Bar” feature was causing the sidebar in the customizer to be partially hidden.
    • \n
    • Fix: Added back support for the “class” shortcode setting for all feeds.
    • \n
    • Fix: Removed all Font Awesome icons and no longer include the CSS file from the Font Awesome CDN.
    • \n
    \n

    6.0.4

    \n
      \n
    • Fix: Added back the ability to use up to 10 columns in feeds.
    • \n
    • Fix: The reconnect link that would display when an account had an error would not redirect to connect.smashballoon.com.
    • \n
    \n

    6.0.3

    \n
      \n
    • Tweak: Updated our logo throughout the plugin to match our new website.
    • \n
    • Tweak: Changed how the hover color for follow and load more buttons is applied to prevent theme conflicts.
    • \n
    • Fix: Fixed JavaScript file not being added to the page when using the plugin GDPR Cookie Consent by WebToffee.
    • \n
    • Fix: Dismissing dashboard notifications would cause the “Add new feed” button to stop working until the page was refreshed.
    • \n
    \n

    6.0.2

    \n
      \n
    • Fix: Fixed Instagram Feed JavaScript file missing from the page when using the “AJAX theme loading fix” setting causing blank images to display.
    • \n
    • Fix: Added the ability to create the custom database tables if there was an error when first trying to create them.
    • \n
    • Fix: Fixed the error message not displaying if there was an error when trying to connect a personal or basic account.
    • \n
    \n

    6.0.1

    \n
      \n
    • Fix: Custom HTML templates were not applying to new feeds.
    • \n
    • Fix: Some custom tables were not being created for specific versions of MySQL.
    • \n
    • Fix: The shortcode setting “showfollow=false” was not working for legacy feeds.
    • \n
    • Fix: The shortcode settings “showheader” and “showbio” were applying for non-legacy feeds causing confusion when trying to change these settings in the customizer.
    • \n
    • Fix: The customizer would not resize images causing blank images to show when GDPR features were enabled.
    • \n
    • Fix: Fixed PHP warning “Undefined array key tagged”.
    • \n
    \n

    6.0

    \n
      \n
    • Important: Minimum supported WordPress version has been raised from 3.5 to 4.1.
    • \n
    • New: Our biggest update ever! We’ve completely redesigned the plugin settings from head to toe to make it easier to create, manage, and customize your Instagram feeds.
    • \n
    • New: All your feeds are now displayed in one place on the “All Feeds” page. This shows a list of any existing (legacy) feeds and any new ones that you create. Note: If you updated from a version prior to v2.8 then you may need to view your feeds on your webpage so that the plugin can locate them and list them here.
    • \n
    • New: Easily edit individual feed settings for new feeds instead of cumbersome shortcode options.
    • \n
    • New: It’s now much easier to create feeds. Just click “Add New”, select your feed type, connect your account, and you’re done!
    • \n
    • New: Brand new feed customizer. We’ve completely redesigned feed customization from the ground up, reorganizing the settings to make them easier to find.
    • \n
    • New: Live Feed Preview. You can now see changes you make to your feeds in real time, right in the settings page. Easily preview them on desktop, tablet, and mobile sizes.
    • \n
    • New: Color Scheme option. It’s now easier than ever to change colors across your feed without needing to adjust individual color settings. Just set a color scheme to effortlessly change colors across your entire feed.
    • \n
    • New: You can now change the number of columns in your feed across desktop, tablet, and mobile.
    • \n
    • New: Easily import and export feed settings to make it simple to move feeds across sites.
    • \n
    \n", "description": "

    As the most powerful and easiest to use Instagram plugin for WordPress, Smash Balloon Social Photo Feed helps you create, customize and embed Instagram feeds on your website in just a few clicks! Absolutely no coding needed.

    \n

    \n

    Designed for both WordPress beginners and advanced users, you can use Social Photo Feed to seamlessly integrate your Instagram widgets and keep your site effortlessly updated.

    \n

    Explore the Pro Version | See Pro in Action

    \n

    Over 1 million users worldwide trust Social Photo Feed to easily showcase Instagram content on their websites.

    \n

    Embed Your Instagram Feed in 3 Steps

    \n

    Smash Balloon Instagram Feed makes it a breeze to set up your feeds on your site:

    \n
      \n
    1. Create your feed and choose an Instagram widget source
    2. \n
    3. Customize your feed in a few clicks
    4. \n
    5. Add your Instagram feed to your site
    6. \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    Free Features

    \n
      \n
    • NEW! Supports local WebP image format for faster loading times
    • \n
    • oEmbed Support Automatically powers your Instagram oEmbeds
    • \n
    • Setting Up is Simple: Get started in seconds, no hassle, no fuss
    • \n
    • Showcase Multiple Accounts: Display photos from various Instagram accounts in one unified feed or separate them into individual feeds
    • \n
    • Multiple Feeds Anywhere: Add as many feeds as you want on the same page or spread them across different pages on your site
    • \n
    • Responsive & Mobile-Ready: Your feeds will look stunning on any screen size, on any device and in any container width
    • \n
    • Fully Customizable Feeds: Adjust the width, height, number of photos, number of columns, image size, background color, image spacing and more
    • \n
    • Visual Customizer: Customize your feed layout, color scheme, header style, post settings, lightbox, and much more – in just a few clicks
    • \n
    • Photo Display Options: Choose to display thumbnail, medium, or full-size photos directly from your feed
    • \n
    • Beautiful Feed Header: Add a striking header to top off your feed beautifully
    • \n
    • “Follow on Instagram” Button: Increase followers by adding a “follow on Instagram” button at the bottom of your feed
    • \n
    • Flexible Photo Order: Display your Instagram photos in chronological order or mix it up with a random arrangement
    • \n
    • Infinite Scroll: Keep your visitors engaged by loading more of your Instagram photos with a handy “Load More” button
    • \n
    • Built-in Block: Easily add your feed to posts and pages with our convenient block for the block editor
    • \n
    • Instagram Widget: Embed on your site’s widget-ready areas such as sidebar and footer in seconds
    • \n
    • GDPR Compliant: Automatically integrates with many of the popular GDPR cookie consent plugins and includes a 1-click easy GDPR setting
    • \n
    • Designed for All Users: Perfect for beginners and advanced users alike
    • \n
    • Advanced Customization: Add your own custom CSS and JavaScript for advanced customizations
    • \n
    • Page Builder Compatible: Fully compatible with Elementor, Divi, Beaver Builder and other popular page builders
    • \n
    \n

    Get More with Instagram Feed Pro

    \n

    Want to truly maximize your Instagram content and make it work harder for your brand?

    \n

    While Smash Balloon’s Social Photo Feed offers a free way to get started, our Pro version offers advanced features to help you get complete control over the way you show your Instagram photos and videos to your website visitors.

    \n

    The Pro version, known as Instagram Feed Pro, allows you to:

    \n
      \n
    • \n

      Display hashtag feeds – Curate dynamic content around specific Instagram hashtags
      \nCheck Out Instagram Hashtag Feed Demo

      \n
    • \n
    • \n

      Show stunning lightboxes – View photos, Instagram reels and videos in a popup lightbox directly on your site

      \n
    • \n
    • \n

      Add interactive elements – Display captions and show the number of likes and comments for each post

      \n
    • \n
    • \n

      Embed Instagram carousel – Showcase eye-catching carousels from your posts
      \nSee Instagram Carousel Feed Demo

      \n
    • \n
    • \n

      Choose from multiple layout options – Use “Masonry” or “Highlight” layouts
      \nView “Highlight” Layout in Action

      \n
    • \n
    • \n

      Use advanced feed moderation – Hide or show specific posts in just a few clicks

      \n
    • \n
    • \n

      Filter Instagram posts – Display Instagram content based on hashtags, keywords or specific user posts

      \n
    • \n
    • \n

      Create shoppable feeds – Add customized links to each post, like link in bio, so you can direct your site visitors to the page you’d like

      \n
    • \n
    • \n

      Use professionally-designed themes – No need to start from scratch! Design beautiful feeds in minutes with pre-made feed themes to instantly create beautiful and unique feeds

      \n
    • \n
    \n

    Plus, enjoy these Pro benefits:

    \n
      \n
    • Priority Support: Get quick and dedicated help from our support team
    • \n
    • Regular Updates: Benefit from continuous plugin improvements and new features
    • \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    Why Over 1 Million Users Love Smash Balloon

    \n

    Trusted by over 1 million websites, Smash Balloon is the leading solution for seamlessly integrating Instagram feeds onto your site.

    \n

    Our 4.9/5 star average rating from 4,000+ glowing reviews speaks for itself.

    \n

    What Our Users Are Saying

    \n
    \n

    “Awesome plugin and support – Awesome plugin that just works! Contacted support this week and they’ve quickly given a custom solution for a specific query I had! Very happy customer!”
    \n – @tomteaweb

    \n

    “The best Instagram feed plugin – Whenever I need to display the Instagram feed in a WordPress site, I choose this plugin. It is not only easy to set up, but even in the free version you have enough features to have a nice feed. Do not spend more time looking for another Instagram feed plugin: This is the best!”
    \n – @yordansoares

    \n

    “Simple and concise – Excellent plugin. Simple and non-bloated. I had a couple small issues with the plugin when I first started using it, but a quick comment on the support forums got a new version pushed out the next day with the fix. Awesome support!”
    \n – @joshjones

    \n

    “Great plugin, greater support! – I’ve definitely noticed an increase in followers on Instagram since I added this plugin to my sidebar. Thanks for the help in making some adjustments…looks and works great!”
    \n – @bnotp

    \n
    \n

    Fast, Professional and Helpful Support

    \n

    At Smash Balloon, we’re dedicated to providing the most customizable, robust, and well-supported Instagram plugin available.

    \n

    Have a question, need help with a feature, or want to request a new feature?

    \n

    Our dedicated support team is just a quick message away, ready to provide top-notch assistance for both free and premium versions:

    \n\n

    You can instantly unlock priority support when you upgrade to Instagram Feed Pro now.

    \n

    7 Reasons Why You Need Smash Balloon Social Photo Feed

    \n
      \n
    1. Boost Social Engagement – Increase engagement between you and your Instagram followers
    2. \n
    3. Save Time – Automatically display your Instagram photos on your website
    4. \n
    5. Display Your Content Your Way – Customize your feeds to blend seamlessly with your site
    6. \n
    7. Keep Your Site Looking Fresh – Automatically push new Instagram content to your site
    8. \n
    9. Super Simple Setup – Get started in 30 seconds with no Developer account needed
    10. \n
    11. Powers Instagram oEmbeds – Maintain working Instagram embeds across your site
    12. \n
    13. Professional Feed Themes – Use ready-made themes for quick, beautiful displays
    14. \n
    \n

    What Can It Do?

    \n
      \n
    • Display Instagram photos from any account you own
    • \n
    • Completely responsive and mobile ready
    • \n
    • Display multiple feeds on the same page
    • \n
    • Display posts from multiple Instagram User IDs
    • \n
    • Built-in customization options
    • \n
    • Infinite scroll with ‘Load More’ button
    • \n
    • Plus more features added regularly!
    • \n
    \n

    Completely Customizable Feeds

    \n
      \n
    • Set number of photos to display
    • \n
    • Choose number of columns and photo sizes
    • \n
    • Show/hide feed elements (header, buttons)
    • \n
    • Control width, height and background color
    • \n
    • Set spacing between photos
    • \n
    • Display photos in chronological or random order
    • \n
    • Customize button text and colors
    • \n
    • Add custom CSS or JavaScript
    • \n
    • Style multiple feeds differently
    • \n
    • Plus more options added regularly!
    • \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    What’s Next

    \n

    If you like our WordPress Instagram plugin, then consider checking out our other projects:

    \n

    OptinMonster – Get more email subscribers with the most popular conversion optimization plugin for WordPress.
    \nWPForms – #1 drag & drop online form builder for WordPress (trusted by 5 million sites).
    \nAIOSEO – The original WordPress SEO plugin to help you rank higher in search results (trusted by over 3 million sites).
    \nMonsterInsights – See the stats that matter and grow your business with confidence. Best Google Analytics plugin for WordPress.
    \nSeedProd – Create beautiful landing pages with our powerful drag & drop landing page builder.
    \nWP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    \nWPCode – must have WordPress code snippet management plugin to help you future-proof website customization (trusted by 1.5 million sites).
    \nDuplicator – popular WordPress backup and migration plugin used by over 1 million websites.
    \nWP Simple Pay – #1 Stripe payments plugin for WordPress. Start accepting one-time or recurring payments without a shopping cart.
    \nPushEngage – Connect with visitors after they leave your website with the leading web push notification plugin.
    \nRafflePress – Best WordPress giveaway and contest plugin to grow traffic and social followers.
    \nTrustPulse – Add real-time social proof notifications to boost your store conversions by up to 15%.
    \nSearchWP – The most advanced custom WordPress search plugin to improve WordPress search quality.
    \nAffiliateWP – #1 affiliate management plugin for WordPress. Add a referral program to your online store.
    \nEasy Digital Downloads – The best WordPress eCommerce plugin to sell digital products (eBooks, software, music, and more).
    \nWPCharitable – Top-rated WordPress donation and fundraising plugin for WordPress.

    \n

    Visit WPBeginner to learn from our WordPress Tutorials and about the best WordPress plugins.

    \n

    Privacy Policy

    \n

    =Data Collection=

    \n

    Instagram Feed does not collect any personal data from your Meta accounts (Instagram, Facebook). All data retrieved from the Meta API is used solely for the purpose of displaying your feed on your WordPress site.

    \n

    =External Connections=

    \n

    This plugin connects to three external sites:

    \n
      \n
    • \n

      Smashballoon.com: Used for connecting and authenticating your sources. Occasionally, it sends dynamic notices to users. These notices can include information about major API changes, critical updates, and marketing messages.

      \n
    • \n
    • \n

      Instagram.com and Facebook.com: Used to fetch posts so your visitors can view them directly on your site without needing to leave.

      \n
    • \n
    \n

    =Data Usage=

    \n

    All data retrieved from the Meta API is used solely for displaying your Instagram feed on your WordPress site. No personal data is collected, stored, or shared beyond this purpose.

    \n", "screenshots": "
    1. \"Easily

      Easily display feeds from any of your Instagram accounts

    2. \"Your

      Your Instagram Feed is completely customizable and responsive

    3. \"Combine

      Combine multiple accounts into a single feed

    4. \"Super

      Super quick and easy to get started. Just click the button to connect an Instagram account.

    5. \"Customize

      Customize layouts, styles, colors, and more

    6. \"Just

      Just copy and paste the shortcode into any page, post or widget on your site. You can also use the block editor with our handy Instagram Feed block.

    7. \"\"
    8. \"\"
    "}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/instagram-feed.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.2.zip", "1.4": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/instagram-feed.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/instagram-feed.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/instagram-feed.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/instagram-feed.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/instagram-feed.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/instagram-feed.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.2.zip", "2.4": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/instagram-feed.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/instagram-feed.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/instagram-feed.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/instagram-feed.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.zip", "6.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.zip", "6.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.zip", "6.2": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.zip", "6.3": "https://downloads.wordpress.org/plugin/instagram-feed.6.3.zip", "6.4": "https://downloads.wordpress.org/plugin/instagram-feed.6.4.zip", "1.10": "https://downloads.wordpress.org/plugin/instagram-feed.1.10.zip", "1.11": "https://downloads.wordpress.org/plugin/instagram-feed.1.11.zip", "1.12": "https://downloads.wordpress.org/plugin/instagram-feed.1.12.zip", "1.0.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.0.2.zip", "1.1.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/instagram-feed.1.1.6.zip", "1.2.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.2.3.zip", "1.3.0": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.9.zip", "1.4.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.9.zip", "1.5.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.5.1.zip", "1.6.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.6.2.zip", "1.8.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.8.3.zip", "1.9.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.9.1.zip", "2.0.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.0.2.zip", "2.1.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/instagram-feed.2.1.5.zip", "2.2.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.2.2.zip", "2.4.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/plugin/instagram-feed.2.4.7.zip", "2.5.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/instagram-feed.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/instagram-feed.2.5.4.zip", "2.6.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.6.2.zip", "2.8.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.8.2.zip", "2.9.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.6.zip", "2.9.7": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.9.zip", "6.0.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/instagram-feed.6.0.8.zip", "6.1.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.5.zip", "6.1.6": "https://downloads.wordpress.org/plugin/instagram-feed.6.1.6.zip", "6.2.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.5.zip", "6.2.6": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.6.zip", "6.2.7": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.7.zip", "6.2.8": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.8.zip", "6.2.9": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.9.zip", "6.3.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.3.1.zip", "6.4.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/instagram-feed.6.4.2.zip", "6.4.3": "https://downloads.wordpress.org/plugin/instagram-feed.6.4.3.zip", "6.5.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.5.1.zip", "6.6.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.6.1.zip", "6.7.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.7.0.zip", "6.7.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.7.1.zip", "6.8.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.8.0.zip", "6.9.0": "https://downloads.wordpress.org/plugin/instagram-feed.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/instagram-feed.6.9.1.zip", "trunk": "https://downloads.wordpress.org/plugin/instagram-feed.zip", "1.10.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.10.1.zip", "1.10.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.10.2.zip", "1.11.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.11.2.zip", "1.11.3": "https://downloads.wordpress.org/plugin/instagram-feed.1.11.3.zip", "1.12.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.12.2.zip", "1.3.10": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.10.zip", "1.3.11": "https://downloads.wordpress.org/plugin/instagram-feed.1.3.11.zip", "2.9.10": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.10.zip", "6.2.10": "https://downloads.wordpress.org/plugin/instagram-feed.6.2.10.zip", "1.4.6.1": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.6.1.zip", "1.4.6.2": "https://downloads.wordpress.org/plugin/instagram-feed.1.4.6.2.zip", "2.9.3.1": "https://downloads.wordpress.org/plugin/instagram-feed.2.9.3.1.zip"}, "downloaded": 48649611, "description": "

    As the most powerful and easiest to use Instagram plugin for WordPress, Smash Balloon Social Photo Feed helps you create, customize and embed Instagram feeds on your website in just a few clicks! Absolutely no coding needed.

    \n

    \n

    Designed for both WordPress beginners and advanced users, you can use Social Photo Feed to seamlessly integrate your Instagram widgets and keep your site effortlessly updated.

    \n

    Explore the Pro Version | See Pro in Action

    \n

    Over 1 million users worldwide trust Social Photo Feed to easily showcase Instagram content on their websites.

    \n

    Embed Your Instagram Feed in 3 Steps

    \n

    Smash Balloon Instagram Feed makes it a breeze to set up your feeds on your site:

    \n
      \n
    1. Create your feed and choose an Instagram widget source
    2. \n
    3. Customize your feed in a few clicks
    4. \n
    5. Add your Instagram feed to your site
    6. \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    Free Features

    \n
      \n
    • NEW! Supports local WebP image format for faster loading times
    • \n
    • oEmbed Support Automatically powers your Instagram oEmbeds
    • \n
    • Setting Up is Simple: Get started in seconds, no hassle, no fuss
    • \n
    • Showcase Multiple Accounts: Display photos from various Instagram accounts in one unified feed or separate them into individual feeds
    • \n
    • Multiple Feeds Anywhere: Add as many feeds as you want on the same page or spread them across different pages on your site
    • \n
    • Responsive & Mobile-Ready: Your feeds will look stunning on any screen size, on any device and in any container width
    • \n
    • Fully Customizable Feeds: Adjust the width, height, number of photos, number of columns, image size, background color, image spacing and more
    • \n
    • Visual Customizer: Customize your feed layout, color scheme, header style, post settings, lightbox, and much more – in just a few clicks
    • \n
    • Photo Display Options: Choose to display thumbnail, medium, or full-size photos directly from your feed
    • \n
    • Beautiful Feed Header: Add a striking header to top off your feed beautifully
    • \n
    • “Follow on Instagram” Button: Increase followers by adding a “follow on Instagram” button at the bottom of your feed
    • \n
    • Flexible Photo Order: Display your Instagram photos in chronological order or mix it up with a random arrangement
    • \n
    • Infinite Scroll: Keep your visitors engaged by loading more of your Instagram photos with a handy “Load More” button
    • \n
    • Built-in Block: Easily add your feed to posts and pages with our convenient block for the block editor
    • \n
    • Instagram Widget: Embed on your site’s widget-ready areas such as sidebar and footer in seconds
    • \n
    • GDPR Compliant: Automatically integrates with many of the popular GDPR cookie consent plugins and includes a 1-click easy GDPR setting
    • \n
    • Designed for All Users: Perfect for beginners and advanced users alike
    • \n
    • Advanced Customization: Add your own custom CSS and JavaScript for advanced customizations
    • \n
    • Page Builder Compatible: Fully compatible with Elementor, Divi, Beaver Builder and other popular page builders
    • \n
    \n

    Get More with Instagram Feed Pro

    \n

    Want to truly maximize your Instagram content and make it work harder for your brand?

    \n

    While Smash Balloon’s Social Photo Feed offers a free way to get started, our Pro version offers advanced features to help you get complete control over the way you show your Instagram photos and videos to your website visitors.

    \n

    The Pro version, known as Instagram Feed Pro, allows you to:

    \n
      \n
    • \n

      Display hashtag feeds – Curate dynamic content around specific Instagram hashtags
      \nCheck Out Instagram Hashtag Feed Demo

      \n
    • \n
    • \n

      Show stunning lightboxes – View photos, Instagram reels and videos in a popup lightbox directly on your site

      \n
    • \n
    • \n

      Add interactive elements – Display captions and show the number of likes and comments for each post

      \n
    • \n
    • \n

      Embed Instagram carousel – Showcase eye-catching carousels from your posts
      \nSee Instagram Carousel Feed Demo

      \n
    • \n
    • \n

      Choose from multiple layout options – Use “Masonry” or “Highlight” layouts
      \nView “Highlight” Layout in Action

      \n
    • \n
    • \n

      Use advanced feed moderation – Hide or show specific posts in just a few clicks

      \n
    • \n
    • \n

      Filter Instagram posts – Display Instagram content based on hashtags, keywords or specific user posts

      \n
    • \n
    • \n

      Create shoppable feeds – Add customized links to each post, like link in bio, so you can direct your site visitors to the page you’d like

      \n
    • \n
    • \n

      Use professionally-designed themes – No need to start from scratch! Design beautiful feeds in minutes with pre-made feed themes to instantly create beautiful and unique feeds

      \n
    • \n
    \n

    Plus, enjoy these Pro benefits:

    \n
      \n
    • Priority Support: Get quick and dedicated help from our support team
    • \n
    • Regular Updates: Benefit from continuous plugin improvements and new features
    • \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    Why Over 1 Million Users Love Smash Balloon

    \n

    Trusted by over 1 million websites, Smash Balloon is the leading solution for seamlessly integrating Instagram feeds onto your site.

    \n

    Our 4.9/5 star average rating from 4,000+ glowing reviews speaks for itself.

    \n

    What Our Users Are Saying

    \n
    \n

    “Awesome plugin and support – Awesome plugin that just works! Contacted support this week and they’ve quickly given a custom solution for a specific query I had! Very happy customer!”
    \n – @tomteaweb

    \n

    “The best Instagram feed plugin – Whenever I need to display the Instagram feed in a WordPress site, I choose this plugin. It is not only easy to set up, but even in the free version you have enough features to have a nice feed. Do not spend more time looking for another Instagram feed plugin: This is the best!”
    \n – @yordansoares

    \n

    “Simple and concise – Excellent plugin. Simple and non-bloated. I had a couple small issues with the plugin when I first started using it, but a quick comment on the support forums got a new version pushed out the next day with the fix. Awesome support!”
    \n – @joshjones

    \n

    “Great plugin, greater support! – I’ve definitely noticed an increase in followers on Instagram since I added this plugin to my sidebar. Thanks for the help in making some adjustments…looks and works great!”
    \n – @bnotp

    \n
    \n

    Fast, Professional and Helpful Support

    \n

    At Smash Balloon, we’re dedicated to providing the most customizable, robust, and well-supported Instagram plugin available.

    \n

    Have a question, need help with a feature, or want to request a new feature?

    \n

    Our dedicated support team is just a quick message away, ready to provide top-notch assistance for both free and premium versions:

    \n\n

    You can instantly unlock priority support when you upgrade to Instagram Feed Pro now.

    \n

    7 Reasons Why You Need Smash Balloon Social Photo Feed

    \n
      \n
    1. Boost Social Engagement – Increase engagement between you and your Instagram followers
    2. \n
    3. Save Time – Automatically display your Instagram photos on your website
    4. \n
    5. Display Your Content Your Way – Customize your feeds to blend seamlessly with your site
    6. \n
    7. Keep Your Site Looking Fresh – Automatically push new Instagram content to your site
    8. \n
    9. Super Simple Setup – Get started in 30 seconds with no Developer account needed
    10. \n
    11. Powers Instagram oEmbeds – Maintain working Instagram embeds across your site
    12. \n
    13. Professional Feed Themes – Use ready-made themes for quick, beautiful displays
    14. \n
    \n

    What Can It Do?

    \n
      \n
    • Display Instagram photos from any account you own
    • \n
    • Completely responsive and mobile ready
    • \n
    • Display multiple feeds on the same page
    • \n
    • Display posts from multiple Instagram User IDs
    • \n
    • Built-in customization options
    • \n
    • Infinite scroll with ‘Load More’ button
    • \n
    • Plus more features added regularly!
    • \n
    \n

    Completely Customizable Feeds

    \n
      \n
    • Set number of photos to display
    • \n
    • Choose number of columns and photo sizes
    • \n
    • Show/hide feed elements (header, buttons)
    • \n
    • Control width, height and background color
    • \n
    • Set spacing between photos
    • \n
    • Display photos in chronological or random order
    • \n
    • Customize button text and colors
    • \n
    • Add custom CSS or JavaScript
    • \n
    • Style multiple feeds differently
    • \n
    • Plus more options added regularly!
    • \n
    \n

    Check Out the Pro Version | Try the Pro Demo

    \n

    What’s Next

    \n

    If you like our WordPress Instagram plugin, then consider checking out our other projects:

    \n

    OptinMonster – Get more email subscribers with the most popular conversion optimization plugin for WordPress.
    \nWPForms – #1 drag & drop online form builder for WordPress (trusted by 5 million sites).
    \nAIOSEO – The original WordPress SEO plugin to help you rank higher in search results (trusted by over 3 million sites).
    \nMonsterInsights – See the stats that matter and grow your business with confidence. Best Google Analytics plugin for WordPress.
    \nSeedProd – Create beautiful landing pages with our powerful drag & drop landing page builder.
    \nWP Mail SMTP – Improve email deliverability for your contact form with the most popular SMTP plugin for WordPress.
    \nWPCode – must have WordPress code snippet management plugin to help you future-proof website customization (trusted by 1.5 million sites).
    \nDuplicator – popular WordPress backup and migration plugin used by over 1 million websites.
    \nWP Simple Pay – #1 Stripe payments plugin for WordPress. Start accepting one-time or recurring payments without a shopping cart.
    \nPushEngage – Connect with visitors after they leave your website with the leading web push notification plugin.
    \nRafflePress – Best WordPress giveaway and contest plugin to grow traffic and social followers.
    \nTrustPulse – Add real-time social proof notifications to boost your store conversions by up to 15%.
    \nSearchWP – The most advanced custom WordPress search plugin to improve WordPress search quality.
    \nAffiliateWP – #1 affiliate management plugin for WordPress. Add a referral program to your online store.
    \nEasy Digital Downloads – The best WordPress eCommerce plugin to sell digital products (eBooks, software, music, and more).
    \nWPCharitable – Top-rated WordPress donation and fundraising plugin for WordPress.

    \n

    Visit WPBeginner to learn from our WordPress Tutorials and about the best WordPress plugins.

    \n

    Privacy Policy

    \n

    =Data Collection=

    \n

    Instagram Feed does not collect any personal data from your Meta accounts (Instagram, Facebook). All data retrieved from the Meta API is used solely for the purpose of displaying your feed on your WordPress site.

    \n

    =External Connections=

    \n

    This plugin connects to three external sites:

    \n
      \n
    • \n

      Smashballoon.com: Used for connecting and authenticating your sources. Occasionally, it sends dynamic notices to users. These notices can include information about major API changes, critical updates, and marketing messages.

      \n
    • \n
    • \n

      Instagram.com and Facebook.com: Used to fetch posts so your visitors can view them directly on your site without needing to leave.

      \n
    • \n
    \n

    =Data Usage=

    \n

    All data retrieved from the Meta API is used solely for displaying your Instagram feed on your WordPress site. No personal data is collected, stored, or shared beyond this purpose.

    \n", "donate_link": "", "num_ratings": 4302, "screenshots": {"1": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-1.jpg?rev=2587101", "caption": "Easily display feeds from any of your Instagram accounts"}, "2": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-2.jpg?rev=2586187", "caption": "Your Instagram Feed is completely customizable and responsive"}, "3": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-3.jpg?rev=2587101", "caption": "Combine multiple accounts into a single feed"}, "4": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-4.png?rev=2679382", "caption": "Super quick and easy to get started. Just click the button to connect an Instagram account."}, "5": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-5.png?rev=2679382", "caption": "Customize layouts, styles, colors, and more"}, "6": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-6.png?rev=2679382", "caption": "Just copy and paste the shortcode into any page, post or widget on your site. You can also use the block editor with our handy Instagram Feed block."}, "7": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-7.png?rev=2679382", "caption": ""}, "8": {"src": "https://ps.w.org/instagram-feed/assets/screenshot-8.png?rev=2679382", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/instagram-feed/", "contributors": {"am": {"avatar": "https://secure.gravatar.com/avatar/63aa4fca77a95189a1f2e5b567c27641e65a55fbf45b7fb03ef8b9156501db17?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/am/", "display_name": "Awesome Motive"}, "smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "smashballoon": {"avatar": "https://secure.gravatar.com/avatar/311792844cac728aa54e055b8fdb92943e1e5c8bc206bfb99b0f3aaf3ea54c77?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smashballoon/", "display_name": "smashballoon"}, "craig-at-smash-balloon": {"avatar": "https://secure.gravatar.com/avatar/6141d1458eb9c8178e49184bff5ddc11667b7b0eab2055622d3032ce63826ef0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/craig-at-smash-balloon/", "display_name": "Craig at Smash Balloon"}}, "last_updated": "2025-05-21 4:39pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/instagram-feed.6.9.1.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f651-7137-87dd-c2df46064de1", "name": "Smash Balloon Social Photo Feed – Easy Social Feeds Plugin", "slug": "instagram-feed", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1747845540, "version": "6.9.1"}, "support_threads": 16, "requires_plugins": [], "short_description": "Formerly "Instagram Feed". Display clean, customizable, and responsive Instagram feeds from multiple accounts. Supports Instagram oEmbeds.", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 10}'); -INSERT INTO public.plugins VALUES ('019a30c1-6497-7349-b2b1-6489a1e6ec29', 'custom-post-type-ui', 'Custom Post Type UI', 'Admin UI for creating custom content types like post types and taxonomies', '

    Custom Post Type UI provides an easy-to-use interface for registering and managing custom post types and taxonomies for your website.

    -

    Custom Post Type UI Extended

    -

    CPTUI helps create custom content types, but displaying that content can be a whole new challenge. Custom Post Type UI Extended was created to help with displaying your crafted content. View our Layouts page to see available layout examples with Custom Post Type UI Extended.

    -

    Plugin development

    -

    Custom Post Type UI development is managed on GitHub, with official releases published on WordPress.org. The GitHub repo can be found at https://github.com/WebDevStudios/custom-post-type-ui. Please use the WordPress.org support tab for potential bugs, issues, or enhancement ideas.

    -', '1.18.0', 'webdevstudios', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/custom-post-type-ui.1.18.0.zip', '2010-02-26 00:00:00+00', '2025-07-29 19:39:00+00', 'https://profiles.wordpress.org/webdevstudios/', 92, 271, 4, 4, 1000000, 20807196, 'https://github.com/WebDevStudios/custom-post-type-ui/', 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056', NULL, NULL, 'https://wordpress.org/support/plugin/custom-post-type-ui/', 'https://wordpress.org/plugins/custom-post-type-ui/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Custom Post Type UI", "slug": "custom-post-type-ui", "tags": {"types": "types", "taxonomy": "taxonomy", "post-type": "post type", "content-types": "content types", "custom-post-types": "custom post types"}, "added": "2010-02-26", "icons": {"1x": "https://ps.w.org/custom-post-type-ui/assets/icon-128x128.png?rev=2744389", "2x": "https://ps.w.org/custom-post-type-ui/assets/icon-256x256.png?rev=2744389"}, "author": "webdevstudios", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/custom-post-type-ui/assets/banner-772x250.png?rev=2744389", "high": "https://ps.w.org/custom-post-type-ui/assets/banner-1544x500.png?rev=2744389"}, "ratings": {"1": 15, "2": 4, "3": 7, "4": 15, "5": 230}, "version": "1.18.0", "homepage": "https://github.com/WebDevStudios/custom-post-type-ui/", "requires": "6.6", "sections": {"faq": "\n
    \nUser documentation\n\n

    \n

    Please see https://docs.pluginize.com/tutorials/custom-post-type-ui/

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really really really bad

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy antoine44 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Bad, really bad, really bad, WordPress is used by millions of people who have no idea how to program, but with this plugin you have to edit PHP… no, no, useless garbage. You can''t display the types of content you''ve created, you can''t do anything but act like an idiot for a while, until you get tired and delete it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Gets the job done

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy letharaddison on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Clean interface, no bloat! Just gets the job done right.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Love this Plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy crafting4websites on February 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The Custom Post Type UI plugin is a wonderful asset to the web builders wishing to add custom post types to their websites! I highly recommend!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hohumtiddleypom on May 13, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The Custom Post Type UI plugin is reliable and is constantly updated. The User Interface means I do not have to write PHP everytime I need to edit a Post Type.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anmomosae on May 10, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I use this plugin whenever I need to register custom post types or custom taxonomies. It is very easy to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sonofbruce on May 6, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Couldn''t live without it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useless after ACF update

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pavel Leontiev (vertopolkalf) on March 7, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Advanced Custom Fields do the same better and have much prettier design

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Mysterious plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Unwanted Life (unwantedlife) on January 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I did not have any real issues with this plugin until it decided to create an additional and new plugin without my knowledge or consent. When I tried to talk to the developer about this, they simply didn''t care or want to get to the bottom of how and why this happened.

    \n\n\n\n

    Got to the bottom of the mystery, it''s just a shame I had to deal with someone that refuses to be help and was rude about it first

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works like a charm

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gregamer on January 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin works as described, does the work well and support is fast. The team deserves 5 stars!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable plugin, quick and easy to register post types , great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jbslettebak on December 20, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve used this plugin for several years without issue. It''s easy to register and view your custom post types and custom taxonomies, and works exactly as it''s supposed to. Support response is very fast and helpful, too.

    \n\n\n\n

    Great all around, keep up the good work.

    \n
    \n
    \n", "changelog": "

    1.18.0 – 2025-07-29

    \n
      \n
    • Added: “template_name” label support.
    • \n
    • Fixed: Typo in “games” Dashicon classname.
    • \n
    • Updated: CPTUI “ad” graphics. Added ThemeSwitcher Pro.
    • \n
    • Updated: touched up some label usage for post type registration screen.
    • \n
    \n

    1.17.3 – 2025-04-21

    \n
      \n
    • Fixed: PHP notices around foreach loops in cptui_post_thumbnail_theme_support().
    • \n
    • Fixed: PHP notices around empty variable values with get code section.
    • \n
    • Fixed: PHP notices around false values with taxonomy listings with post type registration.
    • \n
    • Updated: Confirmed compatibility with WordPress 6.8
    • \n
    \n

    1.17.2 – 2024-11-19

    \n
      \n
    • Fixed: PHP warnings around empty description variables from tools page.
    • \n
    • Updated: Confirmed compatibility with WordPress 6.7
    • \n
    \n

    1.17.1 – 2024-06-27

    \n
      \n
    • Fixed: Missed re-showing of autolabel fill links for js enabled browsers.
    • \n
    \n

    1.17.0 – 2024-06-17

    \n
      \n
    • Added: “sidebars” as a reserved slug for post types.
    • \n
    • Added: Blueprint for trying Custom Post Type UI on wordpress.org before installation.
    • \n
    • Updated: Reworked javascript files to be more modular with the build process.
    • \n
    \n

    1.16.0 – 2024-04-08

    \n
      \n
    • Added: Added a wpml-config.xml file.
    • \n
    • Updated: Added “search_terms” to disallowed taxonomy list.
    • \n
    • Updated: Began converting our javascript away from jQuery dependency.
    • \n
    • Updated: tested up to WP 6.5
    • \n
    \n

    1.15.1 – 2023-11-08

    \n
      \n
    • Fixed: Fixed up some Right-to-Left language styling issues.
    • \n
    • Fixed: Fixing forgot to update about page and some PHP constants for CPTUI version.
    • \n
    \n

    1.15.0 – 2023-11-06

    \n
      \n
    • Added: Checkbox to indicate you intend to migrate a post type into CPTUI in event of matching slugs. Props @ramsesdelr
    • \n
    • Added: “item_trashed” post type label support from WordPress 6.3
    • \n
    • Updated: confirmed compatibility with WordPress 6.4.
    • \n
    • Updated: PHP8 compatibility.
    • \n
    • Updated: Minimum WordPress version to version 6.3, minimum PHP version to 7.4.
    • \n
    \n

    1.14.0 – 2023-08-07

    \n
      \n
    • Added: “Scroll to top” links in CPTUI pages. Props @aslamatwebdevstudios
    • \n
    • Added: Remembers toggled states for CPTUI settings panels. Props @aslamatwebdevstudios and @ramsesdelr
    • \n
    • Updated: Notes about slugs for both post types and taxonomies.
    • \n
    • Updated: Support/FAQ section with more accurate links.
    • \n
    \n", "description": "

    Custom Post Type UI provides an easy-to-use interface for registering and managing custom post types and taxonomies for your website.

    \n

    Custom Post Type UI Extended

    \n

    CPTUI helps create custom content types, but displaying that content can be a whole new challenge. Custom Post Type UI Extended was created to help with displaying your crafted content. View our Layouts page to see available layout examples with Custom Post Type UI Extended.

    \n

    Plugin development

    \n

    Custom Post Type UI development is managed on GitHub, with official releases published on WordPress.org. The GitHub repo can be found at https://github.com/WebDevStudios/custom-post-type-ui. Please use the WordPress.org support tab for potential bugs, issues, or enhancement ideas.

    \n", "screenshots": "
    1. \"Add

      Add new post type screen and tab.

    2. \"Add

      Add new taxonomy screen and tab.

    3. \"Registered

      Registered post types and taxonomies from CPTUI

    4. \"Tools

      Tools screen.

    5. \"Help/support

      Help/support screen.

    ", "installation": "

    Admin Installer via search

    \n
      \n
    1. Visit the Add New plugin screen and search for “custom post type ui”.
    2. \n
    3. Click the “Install Now” button.
    4. \n
    5. Activate the plugin.
    6. \n
    7. Navigate to the “CPTUI” Menu.
    8. \n
    \n

    Admin Installer via zip

    \n
      \n
    1. Visit the Add New plugin screen and click the “Upload Plugin” button.
    2. \n
    3. Click the “Browse…” button and select zip file from your computer.
    4. \n
    5. Click “Install Now” button.
    6. \n
    7. Once done uploading, activate Custom Post Type UI.
    8. \n
    \n

    Manual

    \n
      \n
    1. Upload the Custom Post Type UI folder to the plugins directory in your WordPress installation.
    2. \n
    3. Activate the plugin.
    4. \n
    5. Navigate to the “CPTUI” Menu.
    6. \n
    \n

    That’s it! Now you can easily start creating custom post types and taxonomies in WordPress.

    \n"}, "versions": {"0.8.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.1.zip", "0.8.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.2.zip", "0.8.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.3.zip", "0.8.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.4.zip", "0.8.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.5.zip", "0.9.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.9.0.zip", "0.9.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.9.5.zip", "1.0.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.8.zip", "1.1.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.1.3.zip", "1.2.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.2.4.zip", "1.3.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.5.zip", "1.4.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.4.3.zip", "1.5.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.8.zip", "1.6.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.6.2.zip", "1.7.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.7.5.zip", "1.8.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.8.2.zip", "1.9.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/custom-post-type-ui.zip", "1.10.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.10.0.zip", "1.10.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.10.1.zip", "1.10.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.10.2.zip", "1.11.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.11.0.zip", "1.11.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.11.2.zip", "1.12.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.12.1.zip", "1.13.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.1.zip", "1.13.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.2.zip", "1.13.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.3.zip", "1.13.4": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.4.zip", "1.13.5": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.5.zip", "1.13.6": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.6.zip", "1.13.7": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.7.zip", "1.14.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.14.0.zip", "1.15.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.15.0.zip", "1.15.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.15.1.zip", "1.16.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.16.0.zip", "1.17.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.17.0.zip", "1.17.1": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.17.1.zip", "1.17.2": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.17.2.zip", "1.17.3": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.17.3.zip", "1.18.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.18.0.zip", "0.7.0.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.7.0.0.zip", "0.7.1.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.7.1.0.zip", "0.7.2.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.7.2.0.zip", "0.8.0.0": "https://downloads.wordpress.org/plugin/custom-post-type-ui.0.8.0.0.zip"}, "downloaded": 20807196, "description": "

    Custom Post Type UI provides an easy-to-use interface for registering and managing custom post types and taxonomies for your website.

    \n

    Custom Post Type UI Extended

    \n

    CPTUI helps create custom content types, but displaying that content can be a whole new challenge. Custom Post Type UI Extended was created to help with displaying your crafted content. View our Layouts page to see available layout examples with Custom Post Type UI Extended.

    \n

    Plugin development

    \n

    Custom Post Type UI development is managed on GitHub, with official releases published on WordPress.org. The GitHub repo can be found at https://github.com/WebDevStudios/custom-post-type-ui. Please use the WordPress.org support tab for potential bugs, issues, or enhancement ideas.

    \n", "donate_link": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056", "num_ratings": 271, "screenshots": {"1": {"src": "https://ps.w.org/custom-post-type-ui/assets/screenshot-1.png?rev=2948753", "caption": "Add new post type screen and tab."}, "2": {"src": "https://ps.w.org/custom-post-type-ui/assets/screenshot-2.png?rev=2948753", "caption": "Add new taxonomy screen and tab."}, "3": {"src": "https://ps.w.org/custom-post-type-ui/assets/screenshot-3.png?rev=2720851", "caption": "Registered post types and taxonomies from CPTUI"}, "4": {"src": "https://ps.w.org/custom-post-type-ui/assets/screenshot-4.png?rev=2720851", "caption": "Tools screen."}, "5": {"src": "https://ps.w.org/custom-post-type-ui/assets/screenshot-5.png?rev=2948753", "caption": "Help/support screen."}}, "support_url": "https://wordpress.org/support/plugin/custom-post-type-ui/", "contributors": {"tw2113": {"avatar": "https://secure.gravatar.com/avatar/956d6d4d83a9fe6c96ae5af588fa4eccf961e003fc1e58e205a4c1a048510e79?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tw2113/", "display_name": "Michael Beckwith"}, "pluginize": {"avatar": "https://secure.gravatar.com/avatar/4caff6913a10a9a9388f212776c6bd73b3a2c4c13df0163bb0acd693f99c9134?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pluginize/", "display_name": "pluginize"}, "williamsba1": {"avatar": "https://secure.gravatar.com/avatar/d48e0f742e0182e0f377c1087a76c42abff4bf25a55a4f25b66c8ffd7fe869ce?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/williamsba1/", "display_name": "Brad Williams"}, "webdevstudios": {"avatar": "https://secure.gravatar.com/avatar/1871eb9cf5592f9aef06a1a2b2065ad6e24a0e5ddd7908c835a1f6d8ef4fa56e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/webdevstudios/", "display_name": "webdevstudios"}}, "last_updated": "2025-07-29 7:39pm GMT", "preview_link": "https://wordpress.org/plugins/custom-post-type-ui/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/custom-post-type-ui.1.18.0.zip", "author_profile": "https://profiles.wordpress.org/webdevstudios/", "business_model": false, "repository_url": "", "upgrade_notice": {"1.14.0 - 2023-08-07": "
      \n
    • Added: "Scroll to top" links in CPTUI pages. Props @aslamatwebdevstudios
    • \n
    • Added: Remembers toggled states for CPTUI settings panels. Props @aslamatwebdevstudios and @ramsesdelr
    • \n
    • Updated: Notes about slugs for both post types and taxonomies.
    • \n
    • Updated: Support/FAQ section with more accurate links.
    • \n
    ", "1.15.0 - 2023-11-06": "
      \n
    • Added: Checkbox to indicate you intend to migrate a post type into CPTUI in event of matching slugs. Props @ramsesdelr
    • \n
    • Added: "item_trashed" post type label support from WordPress 6.3
    • \n
    • Updated: confirmed compatibility with WordPress 6.4.
    • \n
    • Updated: PHP8 compatibility.
    • \n
    • Updated: Minimum WordPress version to version 6.3, minimum PHP version to 7.4.
    • \n
    ", "1.15.1 - 2023-11-08": "
      \n
    • Fixed: Fixed up some Right-to-Left language styling issues.
    • \n
    • Fixed: Fixing forgot to update about page and some PHP constants for CPTUI version.
    • \n
    ", "1.16.0 - 2024-04-08": "
      \n
    • Added: Added a wpml-config.xml file.
    • \n
    • Updated: Added "search_terms" to disallowed taxonomy list.
    • \n
    • Updated: Began converting our javascript away from jQuery dependency.
    • \n
    • Updated: tested up to WP 6.5
    • \n
    ", "1.17.0 - 2024-06-17": "
      \n
    • Added: "sidebars" as a reserved slug for post types.
    • \n
    • Added: Blueprint for trying Custom Post Type UI on wordpress.org before installation.
    • \n
    • Updated: Reworked javascript files to be more modular with the build process.
    • \n
    ", "1.17.1 - 2024-06-27": "
      \n
    • Fixed: Missed re-showing of autolabel fill links for js enabled browsers.
    • \n
    ", "1.17.2 - 2024-11-19": "
      \n
    • Fixed: PHP warnings around empty description variables from tools page.
    • \n
    • Updated: Confirmed compatibility with WordPress 6.7
    • \n
    ", "1.17.3 - 2025-04-21": "
      \n
    • Fixed: PHP notices around foreach loops in cptui_post_thumbnail_theme_support().
    • \n
    • Fixed: PHP notices around empty variable values with get code section.
    • \n
    • Fixed: PHP notices around false values with taxonomy listings with post type registration.
    • \n
    • Updated: Confirmed compatibility with WordPress 6.8
    • \n
    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f297-7226-81be-8748fc4cead7", "name": "Custom Post Type UI", "slug": "custom-post-type-ui", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1753817940, "version": "1.18.0"}, "support_threads": 4, "requires_plugins": [], "short_description": "Admin UI for creating custom content types like post types and taxonomies", "author_block_count": 0, "author_block_rating": 92, "commercial_support_url": "", "support_threads_resolved": 4}'); -INSERT INTO public.plugins VALUES ('019a30c1-64a2-73d7-a200-00ea4b2f801b', 'disable-comments', 'Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]', 'Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.', '

    Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]

    -

    Enable/Disable comments on any WordPress content (Pages, Posts, or Media) to stop spammers. WP-CLI, XML-RPC & REST-API support to stop spam comments.

    -

    More About Plugin ◼️ Documentation ◼️ Support Forum

    -

    -

    Take Global Control Over Your WordPress Site

    -

    Override all comments-related settings throughout your website & manage your comments just the way you want.

    -

    Disable Comments On Posts, Pages & Media

    -

    Choose which posts, pages or media should allow comments from site visitors & configure Disable Comments accordingly

    -

    Disallow Comments On Multi-Site Network

    -

    Have multiple websites? Get rid of irrelevant comments on the entire network using Disable Comments Plugin

    -

    -

    KEY FEATURES OF DISABLE COMMENTS

    -
      -
    • All “Comments” links are hidden from the Admin Menu and Admin Bar.
    • -
    • All comment-related sections (“Recent Comments”, “Discussion” etc.) are hidden from the WordPress Dashboard.
    • -
    • All comment-related widgets are disabled (so your theme cannot use them).
    • -
    • The “Discussion” settings page is hidden.
    • -
    • All comment RSS/Atom feeds are disabled (and requests for these will be redirected to the parent post).
    • -
    • The X-Pingback HTTP header is removed from all pages.
    • -
    • Outgoing pingbacks are disabled.
    • -
    • Stop spam comments entirely from the site with one click.
    • -
    • [New] Delete comments by type.
    • -
    • [New] Disable comments via XML-RPC & REST-API
    • -
    • [New] Fully Multi-site Network supported.
    • -
    • [New] Manage multiple website network-specific subsites or entire network comments in advance.
    • -
    • [New] Exclude Disable Comments Settings based on user roles.
    • -
    -

    -

    Please delete any existing comments on your site before applying this setting, otherwise (depending on your theme) those comments may still be displayed to visitors. You can use the Delete Comments tool to delete any existing comments on your site.

    -

    🌟 WHAT’S NEW WITH DISABLE COMMENTS 2.0

    -

    AMAZING USER FRIENDLY INTERFACE
    -Easily configure your comment-related settings with an amazing and attractive app-like user interface.

    -

    WP-CLI COMMANDS TO DISABLE COMMENTS
    -Use WP-CLI control for comment-related settings to disable comments on posts, pages, attachments or everywhere on your website.

    -

    -

    GET STARTED WITH QUICK SETUP WIZARD
    -Use the quick setup wizard after activating the plugin to instantly configure comment-related settings for your WordPress website.

    -

    DISABLE COMMENTS ON DOCS
    -Instantly disable comments on your documentation pages or WordPress knowledge base with a single click.

    -

    -

    DELETE CERTAIN COMMENT TYPE(S)
    -Permanently delete certain comment types from your WordPress website including WooCommerce product reviews as well as generic comments.

    -

    -

    DISABLE COMMENTS VIA XML-RPC And REST API
    -Block any comments made on your WordPress website via XML-RPC specification and REST API.

    -

    Important note: Use this plugin if you don’t want comments at all on your site (or on certain post types). Don’t use it if you want to selectively disable comments on individual posts – WordPress lets you do that anyway. If you don’t know how to disable comments on individual posts, there are instructions in the FAQ.

    -

    If you come across any bugs or have suggestions, please use the plugin support forum. I can’t fix it if I don’t know it’s broken! Please check the FAQ for common issues.

    -

    Want to contribute? Here’s the GitHub development repository.

    -

    A must-use version of the plugin is also available.

    -

    Advanced Configuration

    -

    Some of the plugin’s behavior can be modified by site administrators and plugin/theme developers through code:

    -
      -
    • -

      Define DISABLE_COMMENTS_REMOVE_COMMENTS_TEMPLATE and set it to false to prevent the plugin from replacing the theme’s comment template with an empty one.

      -
    • -
    • -

      Define DISABLE_COMMENTS_ALLOW_DISCUSSION_SETTINGS and set it to true to prevent the plugin from hiding the Discussion settings page.

      -
    • -
    -

    These definitions can be made either in your main wp-config.php or in your theme’s functions.php file.

    -

    THIS PLUGIN IS NOW MAINTAINED BY THE TEAM WPDeveloper.

    -

    💙 LOVED DISABLE COMMENTS?

    - -

    🔥 GET FREEBIES FOR YOUR WORDPRESS SITE

    -

    Consider checking out our other WordPress solutions & boost your WordPress website:

    -

    🔝 Essential Addons For Elementor: Most popular Elementor addons with 2 million+ happy users & 95+ widgets & ready blocks

    -

    🔔 NotificationX – Best Social Proof & FOMO Marketing Solution to increase conversion rates.

    -

    🔗 BetterLinks: Latest best WordPress link management plugin for link shortening, tracking & analyzing.

    -

    📄 EmbedPress: EmbedPress lets you embed anything including videos, images, posts, audio, maps and upload PDF, DOC, PPT etc.

    -

    Templately: 6000+ Free templates library for Elementor & Gutenberg along with the cloud collaboration for WordPress.

    -

    📚 BetterDocs: Best Documentation & Knowledge Base Plugin for WordPress reduce manual support tickets & improve user experience.

    -

    SchedulePress: Advanced editorial calendar with WordPress Post Scheduling, Social Sharing, Missed scheduled alerts, and more.

    -

    Flexia: Most lightweight, customizable & multi purpose theme for WordPress.

    -

    Visit WPDeveloper to learn more about how to do better in WordPress with Help Tutorial, Tips & Tricks.

    -', '2.5.3', 'WPDeveloper', '5.0', '5.6', '6.8.3', 'https://downloads.wordpress.org/plugin/disable-comments.2.5.3.zip', '2011-05-27 00:00:00+00', '2025-09-14 12:12:00+00', 'https://profiles.wordpress.org/wpdevteam/', 94, 275, 2, 2, 1000000, 28959756, 'https://wordpress.org/plugins/disable-comments/', 'https://wpdeveloper.com/', 'community', NULL, 'https://wordpress.org/support/plugin/disable-comments/', NULL, 'https://github.com/WPDevelopers/disable-comments', 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]", "slug": "disable-comments", "tags": {"stop-spam": "stop spam", "delete-comments": "delete comments", "remove-comments": "remove comments", "spam-protection": "spam protection", "disable-comments": "disable comments"}, "added": "2011-05-27", "icons": {"1x": "https://ps.w.org/disable-comments/assets/icon-128x128.png?rev=2509854", "2x": "https://ps.w.org/disable-comments/assets/icon-256x256.png?rev=2509854"}, "author": "WPDeveloper", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/disable-comments/assets/banner-772x250.png?rev=2509854", "high": "https://ps.w.org/disable-comments/assets/banner-1544x500.png?rev=2509854"}, "ratings": {"1": 17, "2": 1, "3": 3, "4": 4, "5": 250}, "version": "2.5.3", "homepage": "https://wordpress.org/plugins/disable-comments/", "requires": "5.0", "sections": {"faq": "\n
    \nNothing happens after I disable comments on all posts – comment forms still appear when I view my posts.\n\n

    \n

    This is because your theme is not checking the comment status of posts in the correct way.

    \n

    You may like to point your theme’s author to this explanation of what they are doing wrong, and how to fix it.

    \n

    \n
    \nHow can I remove the text that says “comments are closed” at the bottom of articles where comments are disabled?\n\n

    \n

    The plugin tries its very best to hide this (and any other comment-related) messages.

    \n

    If you still see the message, then it means your theme is overriding this behaviour, and you will have to edit its files manually to remove it. Two common approaches are to either delete or comment out the relevant lines in wp-content/your-theme/comments.php, or to add a declaration to wp-content/your-theme/style.css that hides the message from your visitors. In either case, make you you know what you are doing!

    \n

    \n
    \nI only want to disable comments on certain posts, not globally. What do I do?\n\n

    \n

    Go to the edit page for the post you want to disable comments on. Scroll down to the “Discussion” box, where you will find the comment options for that post. If you don’t see a “Discussion” box, then click on “Screen Options” at the top of your screen, and make sure the “Discussion” checkbox is checked.

    \n

    You can also bulk-edit the comment status of multiple posts from the posts screen.

    \n

    \n
    \nI want to delete comments from my database. What do I do?\n\n

    \n

    Go to the tools page for the Disable Comments plugin and utlize the Delete Comments tool to delete all comments or according to the specified post types from your database.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Timesaver!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Robert (rwldz) on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    For me it''s more of a one-use-thing, hopefully I''ll avoid homepages with a gazillion spam comments going forward. Very clear and easy to understand plugin. Great choices for what and where to turn off or remove comments. I''ll recommend this plugin to anyone working with wordpress. Also, developer seem to listen to critique as I was reading the previous reviews.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Finally No More Spam!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fengyuan7558 (fengyuandasdsadas) on September 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It completely disables comments across posts, pages, media, or even an entire multisite network.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    * Swiftly resolved! * Added advertising into the post editor.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tumshie on May 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin functions well. But. Added intrusive advertising for another plugin into the post editor. That is a hard no from me - so removing the plugin from my client''s websites.

    \n\n\n\n

    -=-=-=Update=-=-=-

    \n\n\n\n

    Super pleased to say the plugin author has resolved the issue quickly, removing the advertising.

    \n\n\n\n

    Edited to a 5 star from me!

    \n\n\n\n

    Plugin functions well and the developers are friendly and responsive.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    [Corrected]Bloats the admin with ads...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy schwdim on May 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Was using this plugin on pretty much every client''s website

    All of the sudden it started adding ads for another plugin in the admin, as well as the page editor !!

    I''m removing it everywhere. This is not ok.

    EDIT:

    Thank you for sparing me hours of works. :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Lifesaver for managing comments

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy grome32 on October 31, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin has been a lifesaver for managing comments! The spam filter is fantastic, and the threaded comment structure adds great interactivity. However, sometimes legitimate comments get flagged as spam. It would be great if the plugin could learn over time which types of comments are safe.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Disable comments

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy partiturebaroccheclassiche on August 1, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks to Santos for the precious help

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    WORKS PERFECTLY ! Thank you !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy clitopwebsite on February 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WORKS PERFECTLY ! Thank you !

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It works

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anonymous User (anonymized_21100648) on October 2, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It works, very good.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This plugin makes the task of stopping and removing comments SUPER easy!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Website Dude (modernscarface) on August 26, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great job on this plugin! LOVE it! A MUST-HAVE

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin, been using it for years

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Devomo (devfirst) on June 19, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does its job nicely, support is excellent, I reported an issue which was fixed very quickly.

    \n\n\n\n

    I do have to say I would have liked the plugin to stay more minimal, as was the case before v2.0. It looks a bit heavy for what it''s doing right now.

    \n
    \n
    \n", "changelog": "

    The format is based on Keep a Changelog
    \nand this project adheres to Semantic Versioning.
    \nThis will be maintained from August 19, 2020 – @asif2bd

    \n

    [2.5.3] – 2025-09-14

    \n
      \n
    • Enhancement: Introduced a function to retrieve settings details (#f16cee5)
    • \n
    \n

    [2.5.2] – 2025-05-20

    \n
      \n
    • Fixed: Issue where post types were not being selected in the “On Specific Post Types” section of the plugin settings
    • \n
    \n

    [2.5.1] – 2025-05-15

    \n
      \n
    • Few minor bug fixes and improvements
    • \n
    \n

    [2.5.0] – 2025-05-15

    \n
      \n
    • Added: Accessibility support to the plugin settings page
    • \n
    • Various minor improvements and enhancements
    • \n
    \n

    [2.4.7] – 2025-01-27

    \n
      \n
    • Fixed: Errors reported by Plugin Check (PCP)
    • \n
    • Few minor bug fixes and improvements
    • \n
    \n

    [2.4.6] – 2024-03-25

    \n
      \n
    • Added: WordPress 6.5 Compatibility
    • \n
    \n

    [2.4.5] – 2023-08-30

    \n
      \n
    • Minor bug fixes and improvements.
    • \n
    \n

    [2.4.4] – 2023-06-19

    \n
      \n
    • Fixed: PHP 8.2 deprecated issue fixed while using WP-CLI.
    • \n
    • Few minor bug fixes and improvements.
    • \n
    \n

    [2.4.3] – 2023-01-12

    \n
      \n
    • Added: PHP 8.2 Compatibility
    • \n
    \n

    [2.4.2] – 2022-09-18

    \n
      \n
    • Improved sanitization.
    • \n
    \n

    [2.4.1] – 2022-08-10

    \n
      \n
    • Improvement: Localized missing strings in plugin.
    • \n
    • Improvement: Included the fonts in plugin distribution.
    • \n
    \n

    [2.4.0] – 2022-07-27

    \n
      \n
    • New Feature: Exclude Disable Comments settings based on user roles.
    • \n
    • Few minor bug fix and improvement.
    • \n
    \n

    [2.3.6] – 2022-06-05

    \n
      \n
    • Fixed: JavaScript error in Gutenberg editor.
    • \n
    \n

    [2.3.5] – 2022-04-27

    \n
      \n
    • Added: More WP-CLI commands.
    • \n
    • Few minor bug fix and improvement.
    • \n
    \n

    [2.3.4] – 2022-03-28

    \n
      \n
    • Fixed: PHP Warning in Multisite Network.
    • \n
    \n

    [2.3.3] – 2022-01-25

    \n
      \n
    • Added: WordPress 5.9 compatibility added.
    • \n
    \n

    [2.3.2] – 2021-12-20

    \n
      \n
    • Added: Configure Disable Avatar settings from the main network of Multisite Network.
    • \n
    • Fixed: Disable Comments via REST API toggle mismatch issue.
    • \n
    \n

    [2.3.1] – 2021-12-14

    \n
      \n
    • Added: You can enable or disable Avatar from Disable Comments settings.
    • \n
    \n

    [2.3.0] – 2021-12-14

    \n
      \n
    • New Feature: Delete Spam Comments.
    • \n
    • Updated deprecated jQuery library.
    • \n
    • Improvement: Disable Gravatar request.
    • \n
    • Few minor bug fixes and improvement.
    • \n
    \n

    [2.2.4] – 2021-11-09

    \n
      \n
    • Added: Ajax pagination in Subsite area (Multisite network).
    • \n
    • Added: Ajax search in Subsite area (Multisite network).
    • \n
    • Added: “Disable Comments” navigation added inside Comments menu.
    • \n
    • Few minor bug fixes and improvement.
    • \n
    \n

    [2.2.3] – 2021-10-25

    \n
      \n
    • Few minor bug fixes and improvement.
    • \n
    \n

    [2.2.2] – 2021-10-05

    \n
      \n
    • Added: “Select All” checkbox for subsites selection in a multisite network.
    • \n
    • Few minor bug fixes and improvement.
    • \n
    \n

    [2.2.1] – 2021-09-26

    \n
      \n
    • Fixed: 100+ subsites limit issue in multisite network
    • \n
    \n

    [2.2.0] – 2021-09-22

    \n
      \n
    • New Feature: Configure Disable Comments on Subsites from Main Network in Multisite Network.
    • \n
    • Improvement: UX Improvement.
    • \n
    • Few minor bug fix and improvement.
    • \n
    \n

    [2.1.2] – 2021-06-20

    \n
      \n
    • Improvement: Fix for Attempt to read property “post_type” on null
    • \n
    \n

    [2.1.1] – 2021-04-06

    \n
      \n
    • Improvement: Compatible with WordPress 5.7
    • \n
    • Few minor bug fix and improvement
    • \n
    \n

    [2.1.0] – 2021-02-08

    \n
      \n
    • New Feature: Site wise settings in Multisite Network
    • \n
    • Added: Some strings localization
    • \n
    • Fixed: Delete Comments in Multisite
    • \n
    • Few minor bug fix and improvement
    • \n
    \n

    [2.0.2] – 2020-12-01

    \n
      \n
    • Removed: Quick Setup Wizard
    • \n
    • Improved: Redirection settings page after activation.
    • \n
    • Fixed: Text-Domain Issue.
    • \n
    \n

    [2.0.1] – 2020-11-28

    \n
      \n
    • Bug Fix: Settings page URL issue fixed from plugins page.
    • \n
    • Improvement: Quick Setup Wizard instructions.
    • \n
    \n

    [2.0.0] – 2020-11-28

    \n
      \n
    • Improved UI for Settings page
    • \n
    • New feature: Manage Disable Comments settings with WP-CLI
    • \n
    • New feature: Quick Setup Wizard
    • \n
    • New feature: Disable Comments via REST-API
    • \n
    • New feature: Disable Comments via XML-RPC
    • \n
    \n

    [1.11.0] – 2020-08-22

    \n
      \n
    • Introducing Delete Comment by Type – Contribution by garretthyder
    • \n
    • PHP 7.4 Tested
    • \n
    • WordPress 5.5 Compatible Tested
    • \n
    \n

    [1.10.3] – 2020-07-29

    \n
      \n
    • Minor fix – changelog backported.
    • \n
    \n

    1.10.0

    \n
      \n
    • Disable “recent comments” Gutenberg block.
    • \n
    \n

    1.9.0

    \n
      \n
    • Fix compatibility with WordPress 5.0 and above.
    • \n
    • Remove deprecated “persistent mode” feature.
    • \n
    \n

    1.8.0

    \n
      \n
    • Added DISABLE_COMMENTS_ALLOW_DISCUSSION_SETTINGS configuration.
    • \n
    \n

    1.7.1

    \n
      \n
    • Small enhancements to hiding comment-related functionality in the admin.
    • \n
    \n

    1.7

    \n
      \n
    • Dropped logic to try and hide the comments link from the Meta widget. Administrators should manually add styling to hide this link, or replace the Meta widget with an alternative.
    • \n
    • Removed the disable_comments_allow_persistent_mode filter. Define DISABLE_COMMENTS_ALLOW_PERSISTENT_MODE instead.
    • \n
    \n

    1.6

    \n
      \n
    • Added a tool for deleting comments in bulk.
    • \n
    \n

    1.5.2

    \n
      \n
    • Fix Javascript errors when the Meta widget is enabled.
    • \n
    • Hide comments link from the Welcome panel.
    • \n
    \n

    1.5.1

    \n
      \n
    • Hide existing comments if there are any.
    • \n
    • Filter the comments link in the Meta widget if it is enabled.
    • \n
    \n

    1.5

    \n
      \n
    • Remove the comments feed link from the head in WP 4.4 and higher.
    • \n
    \n

    1.4.2

    \n
      \n
    • Delay loading of translation text domain until all plugins are loaded. This allows plugins to modify translations.
    • \n
    \n

    1.4

    \n
      \n
    • Hide the troublesome “persistent mode” option for all sites where it is not in use. This option will be removed in a future release.
    • \n
    \n

    1.3.2

    \n
      \n
    • Compatibility updates and code refactoring for WordPress 4.3
    • \n
    • Adding a few new translations
    • \n
    \n

    1.3.1

    \n
      \n
    • Change the behaviour for comment feed requests. This removes a potential security issue.
    • \n
    \n

    1.3

    \n
      \n
    • Move persistent mode filter into a define.
    • \n
    • Add an advanced option to show the theme’s comment template even when comments are disabled.
    • \n
    \n

    1.2

    \n
      \n
    • Allow network administrators to disable comments on custom post types across the whole network.
    • \n
    \n

    1.1.1

    \n
      \n
    • Fix PHP warning when active_sitewide_plugins option doesn’t contain expected data type.
    • \n
    \n

    1.1

    \n
      \n
    • Attempt to hide the comments template (“Comments are closed”) whenever comments are disabled.
    • \n
    \n

    1.0.4

    \n
      \n
    • Fix CSRF vulnerability in the admin. Thanks to dxw for responsible disclosure.
    • \n
    \n

    1.0.3

    \n
      \n
    • Compatibility fix for WordPress 3.8
    • \n
    \n

    1.0.2

    \n
      \n
    • Disable comment-reply script for themes that don’t check comment status properly.
    • \n
    • Add French translation
    • \n
    \n

    1.0.1

    \n
      \n
    • Fix issue with settings persistence in single-site installations.
    • \n
    \n

    1.0

    \n
      \n
    • Prevent theme comments template from being displayed when comments are disabled everywhere.
    • \n
    • Prevent direct access to comment admin pages when comments are disabled everywhere.
    • \n
    \n

    0.9.2

    \n
      \n
    • Make persistent mode option filter available all the time.
    • \n
    • Fix redirection for feed requests
    • \n
    • Fix admin bar filtering in WP 3.6
    • \n
    \n

    0.9.1

    \n
      \n
    • Short life in the wild.
    • \n
    \n

    0.9

    \n
      \n
    • Added gettext support and German translation.
    • \n
    • Added links to GitHub development repo.
    • \n
    • Allow network administrators to prevent the use of persistent mode.
    • \n
    \n

    0.8

    \n
      \n
    • Remove X-Pingback header when comments are completely disabled.
    • \n
    • Disable comment feeds when comment are completely disabled.
    • \n
    • Simplified settings page.
    • \n
    \n

    0.7

    \n
      \n
    • Now supports Network Activation – disable comments on your entire multi-site network.
    • \n
    • Simplified settings page.
    • \n
    \n

    0.6

    \n
      \n
    • Add “persistent mode” to deal with themes that don’t use filterable comment status checking.
    • \n
    \n

    0.5

    \n
      \n
    • Allow temporary disabling of comments site-wide by ensuring that original comment statuses are not overwritten when a post is edited.
    • \n
    \n

    0.4

    \n
      \n
    • Added the option to disable the Recent Comments template widget.
    • \n
    • Bugfix: don’t show admin messages to users who don’t can’t do anything about them.
    • \n
    \n

    0.3.5

    \n
      \n
    • Bugfix: Other admin menu items could inadvertently be hidden when ‘Remove the “Comments” link from the Admin Menu’ was selected.
    • \n
    \n

    0.3.4

    \n
      \n
    • Bugfix: A typo on the settings page meant that the submit button went missing on some browsers. Thanks to Wojtek for reporting this.
    • \n
    \n

    0.3.3

    \n
      \n
    • Bugfix: Custom post types which don’t support comments shouldn’t appear on the settings page
    • \n
    • Add warning notice to Discussion settings when comments are disabled
    • \n
    \n

    0.3.2

    \n
      \n
    • Bugfix: Some dashboard items were incorrectly hidden in multisite
    • \n
    \n

    0.3.1

    \n
      \n
    • Compatibility fix for WordPress 3.3
    • \n
    \n

    0.3

    \n
      \n
    • Added the ability to remove links to comment admin pages from the Dashboard, Admin Bar and Admin Menu
    • \n
    \n

    0.2.1

    \n
      \n
    • Usability improvements to help first-time users configure the plugin.
    • \n
    \n

    0.2

    \n
      \n
    • Bugfix: Make sure pingbacks are also prevented when comments are disabled.
    • \n
    \n", "description": "

    Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]

    \n

    Enable/Disable comments on any WordPress content (Pages, Posts, or Media) to stop spammers. WP-CLI, XML-RPC & REST-API support to stop spam comments.

    \n

    More About Plugin ◼️ Documentation ◼️ Support Forum

    \n

    \n

    Take Global Control Over Your WordPress Site

    \n

    Override all comments-related settings throughout your website & manage your comments just the way you want.

    \n

    Disable Comments On Posts, Pages & Media

    \n

    Choose which posts, pages or media should allow comments from site visitors & configure Disable Comments accordingly

    \n

    Disallow Comments On Multi-Site Network

    \n

    Have multiple websites? Get rid of irrelevant comments on the entire network using Disable Comments Plugin

    \n

    \n

    KEY FEATURES OF DISABLE COMMENTS

    \n
      \n
    • All “Comments” links are hidden from the Admin Menu and Admin Bar.
    • \n
    • All comment-related sections (“Recent Comments”, “Discussion” etc.) are hidden from the WordPress Dashboard.
    • \n
    • All comment-related widgets are disabled (so your theme cannot use them).
    • \n
    • The “Discussion” settings page is hidden.
    • \n
    • All comment RSS/Atom feeds are disabled (and requests for these will be redirected to the parent post).
    • \n
    • The X-Pingback HTTP header is removed from all pages.
    • \n
    • Outgoing pingbacks are disabled.
    • \n
    • Stop spam comments entirely from the site with one click.
    • \n
    • [New] Delete comments by type.
    • \n
    • [New] Disable comments via XML-RPC & REST-API
    • \n
    • [New] Fully Multi-site Network supported.
    • \n
    • [New] Manage multiple website network-specific subsites or entire network comments in advance.
    • \n
    • [New] Exclude Disable Comments Settings based on user roles.
    • \n
    \n

    \n

    Please delete any existing comments on your site before applying this setting, otherwise (depending on your theme) those comments may still be displayed to visitors. You can use the Delete Comments tool to delete any existing comments on your site.

    \n

    🌟 WHAT’S NEW WITH DISABLE COMMENTS 2.0

    \n

    AMAZING USER FRIENDLY INTERFACE
    \nEasily configure your comment-related settings with an amazing and attractive app-like user interface.

    \n

    WP-CLI COMMANDS TO DISABLE COMMENTS
    \nUse WP-CLI control for comment-related settings to disable comments on posts, pages, attachments or everywhere on your website.

    \n

    \n

    GET STARTED WITH QUICK SETUP WIZARD
    \nUse the quick setup wizard after activating the plugin to instantly configure comment-related settings for your WordPress website.

    \n

    DISABLE COMMENTS ON DOCS
    \nInstantly disable comments on your documentation pages or WordPress knowledge base with a single click.

    \n

    \n

    DELETE CERTAIN COMMENT TYPE(S)
    \nPermanently delete certain comment types from your WordPress website including WooCommerce product reviews as well as generic comments.

    \n

    \n

    DISABLE COMMENTS VIA XML-RPC And REST API
    \nBlock any comments made on your WordPress website via XML-RPC specification and REST API.

    \n

    Important note: Use this plugin if you don’t want comments at all on your site (or on certain post types). Don’t use it if you want to selectively disable comments on individual posts – WordPress lets you do that anyway. If you don’t know how to disable comments on individual posts, there are instructions in the FAQ.

    \n

    If you come across any bugs or have suggestions, please use the plugin support forum. I can’t fix it if I don’t know it’s broken! Please check the FAQ for common issues.

    \n

    Want to contribute? Here’s the GitHub development repository.

    \n

    A must-use version of the plugin is also available.

    \n

    Advanced Configuration

    \n

    Some of the plugin’s behavior can be modified by site administrators and plugin/theme developers through code:

    \n
      \n
    • \n

      Define DISABLE_COMMENTS_REMOVE_COMMENTS_TEMPLATE and set it to false to prevent the plugin from replacing the theme’s comment template with an empty one.

      \n
    • \n
    • \n

      Define DISABLE_COMMENTS_ALLOW_DISCUSSION_SETTINGS and set it to true to prevent the plugin from hiding the Discussion settings page.

      \n
    • \n
    \n

    These definitions can be made either in your main wp-config.php or in your theme’s functions.php file.

    \n

    THIS PLUGIN IS NOW MAINTAINED BY THE TEAM WPDeveloper.

    \n

    💙 LOVED DISABLE COMMENTS?

    \n\n

    🔥 GET FREEBIES FOR YOUR WORDPRESS SITE

    \n

    Consider checking out our other WordPress solutions & boost your WordPress website:

    \n

    🔝 Essential Addons For Elementor: Most popular Elementor addons with 2 million+ happy users & 95+ widgets & ready blocks

    \n

    🔔 NotificationX – Best Social Proof & FOMO Marketing Solution to increase conversion rates.

    \n

    🔗 BetterLinks: Latest best WordPress link management plugin for link shortening, tracking & analyzing.

    \n

    📄 EmbedPress: EmbedPress lets you embed anything including videos, images, posts, audio, maps and upload PDF, DOC, PPT etc.

    \n

    Templately: 6000+ Free templates library for Elementor & Gutenberg along with the cloud collaboration for WordPress.

    \n

    📚 BetterDocs: Best Documentation & Knowledge Base Plugin for WordPress reduce manual support tickets & improve user experience.

    \n

    SchedulePress: Advanced editorial calendar with WordPress Post Scheduling, Social Sharing, Missed scheduled alerts, and more.

    \n

    Flexia: Most lightweight, customizable & multi purpose theme for WordPress.

    \n

    Visit WPDeveloper to learn more about how to do better in WordPress with Help Tutorial, Tips & Tricks.

    \n", "screenshots": "
    1. \"Setting

      Setting Screen for Disable Comments

    2. \"Delete

      Delete Comments under Tools menu.

    3. \"Multisite

      Multisite Network support

    ", "installation": "

    Modern Way:

    \n
      \n
    1. Go to the WordPress Dashboard “Add New Plugin” section.
    2. \n
    3. Search For “Disable Comments”.
    4. \n
    5. Install, then Activate it.
    6. \n
    7. The plugin settings can be accessed via the ‘Settings’ menu in the administration area (either your site administration for single-site installs, or your network administration for network installs).
    8. \n
    \n

    Old Way:

    \n
      \n
    1. Upload the plugin folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. The plugin settings can be accessed via the ‘Settings’ menu in the administration area (either your site administration for single-site installs, or your network administration for network installs).
    6. \n
    \n"}, "versions": {"1.5": "https://downloads.wordpress.org/plugin/disable-comments.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/disable-comments.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/disable-comments.1.7.zip", "1.1.1": "https://downloads.wordpress.org/plugin/disable-comments.1.1.1.zip", "1.5.1": "https://downloads.wordpress.org/plugin/disable-comments.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/disable-comments.1.5.2.zip", "1.7.1": "https://downloads.wordpress.org/plugin/disable-comments.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/disable-comments.1.8.0.zip", "1.9.0": "https://downloads.wordpress.org/plugin/disable-comments.1.9.0.zip", "2.0.0": "https://downloads.wordpress.org/plugin/disable-comments.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/disable-comments.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/disable-comments.2.0.2.zip", "2.1.0": "https://downloads.wordpress.org/plugin/disable-comments.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/disable-comments.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/disable-comments.2.1.2.zip", "2.2.0": "https://downloads.wordpress.org/plugin/disable-comments.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/disable-comments.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/disable-comments.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/disable-comments.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/disable-comments.2.2.4.zip", "2.3.0": "https://downloads.wordpress.org/plugin/disable-comments.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/disable-comments.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/disable-comments.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/disable-comments.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/disable-comments.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/disable-comments.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/disable-comments.2.3.6.zip", "2.4.0": "https://downloads.wordpress.org/plugin/disable-comments.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/disable-comments.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/disable-comments.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/disable-comments.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/disable-comments.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/disable-comments.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/disable-comments.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/plugin/disable-comments.2.4.7.zip", "2.5.0": "https://downloads.wordpress.org/plugin/disable-comments.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/disable-comments.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/disable-comments.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/disable-comments.2.5.3.zip", "trunk": "https://downloads.wordpress.org/plugin/disable-comments.zip", "1.10.0": "https://downloads.wordpress.org/plugin/disable-comments.1.10.0.zip", "1.10.3": "https://downloads.wordpress.org/plugin/disable-comments.1.10.3.zip", "1.11.0": "https://downloads.wordpress.org/plugin/disable-comments.1.11.0.zip"}, "downloaded": 28959756, "description": "

    Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]

    \n

    Enable/Disable comments on any WordPress content (Pages, Posts, or Media) to stop spammers. WP-CLI, XML-RPC & REST-API support to stop spam comments.

    \n

    More About Plugin ◼️ Documentation ◼️ Support Forum

    \n

    \n

    Take Global Control Over Your WordPress Site

    \n

    Override all comments-related settings throughout your website & manage your comments just the way you want.

    \n

    Disable Comments On Posts, Pages & Media

    \n

    Choose which posts, pages or media should allow comments from site visitors & configure Disable Comments accordingly

    \n

    Disallow Comments On Multi-Site Network

    \n

    Have multiple websites? Get rid of irrelevant comments on the entire network using Disable Comments Plugin

    \n

    \n

    KEY FEATURES OF DISABLE COMMENTS

    \n
      \n
    • All “Comments” links are hidden from the Admin Menu and Admin Bar.
    • \n
    • All comment-related sections (“Recent Comments”, “Discussion” etc.) are hidden from the WordPress Dashboard.
    • \n
    • All comment-related widgets are disabled (so your theme cannot use them).
    • \n
    • The “Discussion” settings page is hidden.
    • \n
    • All comment RSS/Atom feeds are disabled (and requests for these will be redirected to the parent post).
    • \n
    • The X-Pingback HTTP header is removed from all pages.
    • \n
    • Outgoing pingbacks are disabled.
    • \n
    • Stop spam comments entirely from the site with one click.
    • \n
    • [New] Delete comments by type.
    • \n
    • [New] Disable comments via XML-RPC & REST-API
    • \n
    • [New] Fully Multi-site Network supported.
    • \n
    • [New] Manage multiple website network-specific subsites or entire network comments in advance.
    • \n
    • [New] Exclude Disable Comments Settings based on user roles.
    • \n
    \n

    \n

    Please delete any existing comments on your site before applying this setting, otherwise (depending on your theme) those comments may still be displayed to visitors. You can use the Delete Comments tool to delete any existing comments on your site.

    \n

    🌟 WHAT’S NEW WITH DISABLE COMMENTS 2.0

    \n

    AMAZING USER FRIENDLY INTERFACE
    \nEasily configure your comment-related settings with an amazing and attractive app-like user interface.

    \n

    WP-CLI COMMANDS TO DISABLE COMMENTS
    \nUse WP-CLI control for comment-related settings to disable comments on posts, pages, attachments or everywhere on your website.

    \n

    \n

    GET STARTED WITH QUICK SETUP WIZARD
    \nUse the quick setup wizard after activating the plugin to instantly configure comment-related settings for your WordPress website.

    \n

    DISABLE COMMENTS ON DOCS
    \nInstantly disable comments on your documentation pages or WordPress knowledge base with a single click.

    \n

    \n

    DELETE CERTAIN COMMENT TYPE(S)
    \nPermanently delete certain comment types from your WordPress website including WooCommerce product reviews as well as generic comments.

    \n

    \n

    DISABLE COMMENTS VIA XML-RPC And REST API
    \nBlock any comments made on your WordPress website via XML-RPC specification and REST API.

    \n

    Important note: Use this plugin if you don’t want comments at all on your site (or on certain post types). Don’t use it if you want to selectively disable comments on individual posts – WordPress lets you do that anyway. If you don’t know how to disable comments on individual posts, there are instructions in the FAQ.

    \n

    If you come across any bugs or have suggestions, please use the plugin support forum. I can’t fix it if I don’t know it’s broken! Please check the FAQ for common issues.

    \n

    Want to contribute? Here’s the GitHub development repository.

    \n

    A must-use version of the plugin is also available.

    \n

    Advanced Configuration

    \n

    Some of the plugin’s behavior can be modified by site administrators and plugin/theme developers through code:

    \n
      \n
    • \n

      Define DISABLE_COMMENTS_REMOVE_COMMENTS_TEMPLATE and set it to false to prevent the plugin from replacing the theme’s comment template with an empty one.

      \n
    • \n
    • \n

      Define DISABLE_COMMENTS_ALLOW_DISCUSSION_SETTINGS and set it to true to prevent the plugin from hiding the Discussion settings page.

      \n
    • \n
    \n

    These definitions can be made either in your main wp-config.php or in your theme’s functions.php file.

    \n

    THIS PLUGIN IS NOW MAINTAINED BY THE TEAM WPDeveloper.

    \n

    💙 LOVED DISABLE COMMENTS?

    \n\n

    🔥 GET FREEBIES FOR YOUR WORDPRESS SITE

    \n

    Consider checking out our other WordPress solutions & boost your WordPress website:

    \n

    🔝 Essential Addons For Elementor: Most popular Elementor addons with 2 million+ happy users & 95+ widgets & ready blocks

    \n

    🔔 NotificationX – Best Social Proof & FOMO Marketing Solution to increase conversion rates.

    \n

    🔗 BetterLinks: Latest best WordPress link management plugin for link shortening, tracking & analyzing.

    \n

    📄 EmbedPress: EmbedPress lets you embed anything including videos, images, posts, audio, maps and upload PDF, DOC, PPT etc.

    \n

    Templately: 6000+ Free templates library for Elementor & Gutenberg along with the cloud collaboration for WordPress.

    \n

    📚 BetterDocs: Best Documentation & Knowledge Base Plugin for WordPress reduce manual support tickets & improve user experience.

    \n

    SchedulePress: Advanced editorial calendar with WordPress Post Scheduling, Social Sharing, Missed scheduled alerts, and more.

    \n

    Flexia: Most lightweight, customizable & multi purpose theme for WordPress.

    \n

    Visit WPDeveloper to learn more about how to do better in WordPress with Help Tutorial, Tips & Tricks.

    \n", "donate_link": "https://wpdeveloper.com/", "num_ratings": 275, "screenshots": {"1": {"src": "https://ps.w.org/disable-comments/assets/screenshot-1.jpg?rev=2509854", "caption": "Setting Screen for Disable Comments"}, "2": {"src": "https://ps.w.org/disable-comments/assets/screenshot-2.jpg?rev=2509854", "caption": "Delete Comments under Tools menu."}, "3": {"src": "https://ps.w.org/disable-comments/assets/screenshot-3.jpg?rev=2700436", "caption": "Multisite Network support"}}, "support_url": "https://wordpress.org/support/plugin/disable-comments/", "contributors": {"asif2bd": {"avatar": "https://secure.gravatar.com/avatar/751c37e897d7e5350a12329d48cb0a166c77f87fe00c47b9289e70417459fb92?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/asif2bd/", "display_name": "M Asif Rahman"}, "wpdevteam": {"avatar": "https://secure.gravatar.com/avatar/78597fc6182399eaab6afcc3ac4324f4c4234266e2ec607a8770c57241301903?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpdevteam/", "display_name": "WPDeveloper"}, "priyomukul": {"avatar": "https://secure.gravatar.com/avatar/fb8f3134e4dbbcb540ce412931c8fe4108927714d7e00cf34332dc48d8bf4389?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/priyomukul/", "display_name": "PriyoMukul"}, "solarissmoke": {"avatar": "https://secure.gravatar.com/avatar/fb6525bdf0b9bc628522d50e4b3dbb0e790500c154b0de255cf133619843efd0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/solarissmoke/", "display_name": "Samir Shah"}, "re_enter_rupok": {"avatar": "https://secure.gravatar.com/avatar/a39cec9005b0dca1bdfd5c6f884f6da77d28f893d60274ca947586b638ab970f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/re_enter_rupok/", "display_name": "Rupok"}, "alimuzzamanalim": {"avatar": "https://secure.gravatar.com/avatar/450ce66f0232ce15aada15b4ebbb8d86a717dfa604eeb18325c8ddbfa814b94b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alimuzzamanalim/", "display_name": "Alimuzzaman Alim"}, "garrett-eclipse": {"avatar": "https://secure.gravatar.com/avatar/e8084b0a02eed1df748f38811d0989e5f345250fb17a61e46b3304e7a85278a7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/garrett-eclipse/", "display_name": "Garrett Hyder"}}, "last_updated": "2025-09-14 12:12pm GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/disable-comments.2.5.3.zip", "author_profile": "https://profiles.wordpress.org/wpdevteam/", "business_model": "community", "repository_url": "https://github.com/WPDevelopers/disable-comments", "upgrade_notice": {"": "

    [Minor Update] Few minor bug fixes and improvement.

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f29b-71d0-8f2a-3e43e971553d", "name": "Disable Comments – Remove Comments & Stop Spam [Multi-Site Support]", "slug": "disable-comments", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1757851920, "version": "2.5.3"}, "support_threads": 2, "requires_plugins": [], "short_description": "Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.", "author_block_count": "21", "author_block_rating": 86.53061224489801, "commercial_support_url": "", "support_threads_resolved": 2}'); -INSERT INTO public.plugins VALUES ('019a30c1-64b0-72e7-b308-4d6f26ba8f37', 'duplicate-page', 'Duplicate Page', 'Duplicate Posts, Pages and Custom Posts easily using single click', '

    Duplicate Posts, Pages and Custom Posts easily using single click. You can duplicate your pages, posts and custom post by just one click and it will save as your selected options (draft, private, public, pending).

    -

    Key Features in Duplicate Page Pro Editions

    -
      -
    • User Roles: Allow User Roles To access Duplicate Page.
    • -
    • Post Types: Filter to show Duplicate Page link in post types.
    • -
    • Clone Link Location: Option where to show clone link.
    • -
    • Status: Option to select Duplicate Posts Status.
    • -
    • Redirection: Option to Redirect after click on clone link..
    • -
    • Clone Link Title: Option to change Duplicate Post Link Title.
    • -
    • Post Prefix: Option to add Post Prefix.
    • -
    • Post Suffix: Option to add Post Suffix.
    • -
    • Editor: And Many More Filters and Features.
    • -
    -
    -

    Buy Pro Version with various features & support.

    -

    Contact us for Support Only Pro Version Users.

    -
    -

    Upgrade to Pro Version

    -

    -

    How to use

    -
      -
    1. First Activate Plugin.
    2. -
    3. Go Select to Duplicate Page settings Menu from Settings Tab and savings settings.
    4. -
    5. Then Create New Post/Page or Use old.
    6. -
    7. After click on duplicate this link, then duplicate post/ page will be created and saved as draft,publish,pending,private depending upon settings.
    8. -
    -

    Minimum requirements for Duplicate Page

    -
      -
    • WordPress 3.3+
    • -
    • PHP 5.x
    • -
    • MySQL 5.x
    • -
    -', '4.5.6', 'mndpsingh287', '3.4', NULL, '6.8.3', 'https://downloads.wordpress.org/plugin/duplicate-page.zip', '2016-05-04 00:00:00+00', '2025-10-16 11:26:00+00', 'https://profiles.wordpress.org/mndpsingh287/', 96, 428, 3, 1, 3000000, 34193540, 'https://duplicatepro.com/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/duplicate-page/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Duplicate Page", "slug": "duplicate-page", "tags": {"duplicate-page": "duplicate page", "duplicate-post": "duplicate post", "page-duplicate": "Page Duplicate", "post-duplicate": "Post duplicate", "duplicate-custom-posts": "duplicate custom posts"}, "added": "2016-05-04", "icons": {"1x": "https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874"}, "author": "mndpsingh287", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328", "high": false}, "ratings": {"1": 13, "2": 3, "3": 5, "4": 7, "5": 400}, "version": "4.5.6", "homepage": "https://duplicatepro.com/", "requires": "3.4", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great and simple to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy importradeeu on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great and simple to use.
    Thank you for this plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jer (jeroenwester) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works as promised. No hastle.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Spot On

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy eossolar on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My Default Duplication Plug In

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tvandanasub on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Useful plugin, helped me a lot.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy 99mario on September 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works OK with SiteOrigin Page Builder

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very nice plugin; unfortunately …

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy knuppi on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    it doesn''t work for Divi 5 Alpha yet. Other than that, it''s a great plugin that I''ve gotten so used to that not being able to use it with my current project seems a major inconvenience … but seeing as Divi 5 is only in Public Alpha right now I guess that''s totally understandable.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great little tool!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy trainingcity on September 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works exactly as advertised, perfect little tool that never seems to cause any issues with my wordpress sites. Highly recommended

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    this plugin works with Brizy and Blocksy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy staedeli on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I tried another post duplicate plugin which didn''t work. This one works with Brizy/Blocksy, so I can recommend it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Saves so much time!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rachit30 on September 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have used this plugin for years. Makes life (and duplicating pages) so easy. Fast, easy and convenient.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Sometimes shortcodes are sanitized and disabled

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sakoryu on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is very useful, but sometimes Fontawsome shortcodes and custom CSS are sanitized and disabled when duplicating a page. In that case, you need to set all the disabled code on the page again. It seems to be interfering with other plugins, but the cause cannot be identified.

    \n
    \n
    \n", "changelog": "

    4.5.6 (16th Oct, 2025)

    \n
      \n
    • Compatible with WordPress 6.8.3
    • \n
    \n

    4.5.5 (9th June, 2025)

    \n
      \n
    • Compatible with WordPress 6.8.1
    • \n
    \n

    4.5.4 (29th July, 2024)

    \n
      \n
    • Compatible with WordPress 6.6.1
    • \n
    \n

    = 4.5.3(11th Sept, 2023)

    \n
      \n
    • Compatible with wordpress 6.3.1
    • \n
    \n

    = 4.5.2(4th May, 2023)

    \n
      \n
    • Compatible with wordpress 6.2
    • \n
    \n

    = 4.5.1(8th Feb, 2023)

    \n
      \n
    • Fixes compatibility issues with event calendar plugin.
    • \n
    • Minor bug fixes
    • \n
    \n

    = 4.5(14th Dec, 2022)

    \n
      \n
    • Checked compatibility with wordpress v6.1.1
    • \n
    • Fixes elementor sections compatibility issue
    • \n
    \n

    = 4.4.9(15th Jul, 2022)

    \n
      \n
    • Checked compatibility with wordpress v6.0.1
    • \n
    \n

    = 4.4.8(27th Jan, 2022)

    \n
      \n
    • Checked compatibility with wordpress v5.9
    • \n
    \n

    = 4.4.7(16th Dec, 2021)

    \n
      \n
    • Added editor role check
    • \n
    \n

    = 4.4.6(7th Dec, 2021)

    \n
      \n
    • Fixed security issues.
    • \n
    \n

    = 4.4.5(29th Sep, 2021)

    \n
      \n
    • Fixed the issue for content HTML displaying in the sidebar.
    • \n
    \n

    = 4.4.4(16th Sep, 2021)

    \n
      \n
    • Fixed sanitization Issues as per wordpress standards.
    • \n
    \n

    = 4.4.3(8th Sep, 2021)

    \n
      \n
    • Updated code sanitization process for secure data submission
    • \n
    \n

    = 4.4.2(6th Sep, 2021)

    \n
      \n
    • Added sanitization as per wordpress standards.
    • \n
    \n

    4.4.1(27th July, 2021)

    \n
      \n
    • Checked compatibility with wordpress v5.8
    • \n
    • Fixed php warnings
    • \n
    \n

    4.4(18th Mar, 2021)

    \n
      \n
    • Tested upto wordpress v5.7
    • \n
    \n

    4.3(28th Aug, 2020)

    \n
      \n
    • Tested with wordpress v5.5
    • \n
    \n

    4.2(26th March, 2020)

    \n
      \n
    • Fixed Translations string issue
    • \n
    \n

    4.1(20th Feb, 2020)

    \n
      \n
    • Fixed Translations issue
    • \n
    \n

    4.0(20th Sep, 2019)

    \n
      \n
    • Fixed slug duplication issue
    • \n
    \n

    3.9 (6th Aug, 2019)

    \n
      \n
    • Fixed some compatibility issues
    • \n
    \n

    3.8 (18th July, 2019)

    \n
      \n
    • Fixed compatibility issues with GT3 editor
    • \n
    \n

    3.7 (18th July, 2019)

    \n
      \n
    • Fixed compatibility issues with other editors
    • \n
    \n

    3.6 (16th July, 2019)

    \n
      \n
    • Security fixes addressed by wordpress
    • \n
    \n

    3.5 (2nd Apr, 2019)

    \n
      \n
    • Gutenberg and advanced custom fields compatibility
    • \n
    \n

    3.4 (1st Apr, 2019)

    \n
      \n
    • Security issues fixes addressed by Securi
    • \n
    \n

    3.3 (14th March, 2019)

    \n
      \n
    • Compatible with WordPress 5.1.1
    • \n
    \n

    3.2 (25th Dec, 2018)

    \n
      \n
    • Gutenberg Compatible
    • \n
    \n

    3.1 (5th Dec, 2018)

    \n
      \n
    • removed nag
    • \n
    \n

    3.0 (3rd Dec, 2018)

    \n
      \n
    • German Formal lang added
    • \n
    \n

    2.9 (16th Nov, 2018)

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    2.8 (20th Oct, 2018)

    \n
      \n
    • Compatible with php 7.3 and wordpress 5.0
    • \n
    \n

    2.7 (28th July, 2018)

    \n
      \n
    • removed useless adsense code
    • \n
    \n

    2.6 (24th March, 2018)

    \n
      \n
    • Added signup popup and minor fixes.
    • \n
    \n

    2.5 (5th Feb, 2018)

    \n
      \n
    • Translations issue resolve.
    • \n
    \n

    2.4 (29th Nov, 2017)

    \n
      \n
    • Duplicate Page appends original post name issue fixed.
    • \n
    \n

    2.3 (27st april, 2017)

    \n
      \n
    • Minor Fixes
    • \n
    \n

    2.2 (28th Jan, 2017)

    \n
      \n
    • Strings Translations
    • \n
    \n

    2.1 (25th Aug, 2016)

    \n
      \n
    • New Text field added in settings page for duplicate post title suffix to remove confusion of currently duplicate page.
    • \n
    \n

    1.4 (18th Jun, 2016)

    \n
      \n
    • New Features added
    • \n
    \n

    1.3 (23th May, 2016)

    \n
      \n
    • New Features added
    • \n
    \n

    1.2 (05th May, 2016)

    \n
      \n
    • Duplicate Page Settings Menu Added.
    • \n
    \n

    1.1 (04th May ,2016)

    \n
      \n
    • fix some Bug in 1.0
    • \n
    \n", "description": "

    Duplicate Posts, Pages and Custom Posts easily using single click. You can duplicate your pages, posts and custom post by just one click and it will save as your selected options (draft, private, public, pending).

    \n

    Key Features in Duplicate Page Pro Editions

    \n
      \n
    • User Roles: Allow User Roles To access Duplicate Page.
    • \n
    • Post Types: Filter to show Duplicate Page link in post types.
    • \n
    • Clone Link Location: Option where to show clone link.
    • \n
    • Status: Option to select Duplicate Posts Status.
    • \n
    • Redirection: Option to Redirect after click on clone link..
    • \n
    • Clone Link Title: Option to change Duplicate Post Link Title.
    • \n
    • Post Prefix: Option to add Post Prefix.
    • \n
    • Post Suffix: Option to add Post Suffix.
    • \n
    • Editor: And Many More Filters and Features.
    • \n
    \n
    \n

    Buy Pro Version with various features & support.

    \n

    Contact us for Support Only Pro Version Users.

    \n
    \n

    Upgrade to Pro Version

    \n

    \n

    How to use

    \n
      \n
    1. First Activate Plugin.
    2. \n
    3. Go Select to Duplicate Page settings Menu from Settings Tab and savings settings.
    4. \n
    5. Then Create New Post/Page or Use old.
    6. \n
    7. After click on duplicate this link, then duplicate post/ page will be created and saved as draft,publish,pending,private depending upon settings.
    8. \n
    \n

    Minimum requirements for Duplicate Page

    \n
      \n
    • WordPress 3.3+
    • \n
    • PHP 5.x
    • \n
    • MySQL 5.x
    • \n
    \n", "screenshots": "
    1. \"Activate

      Activate Screen

    2. \"Duplicate

      Duplicate Page Settings Screen

    3. \"Select

      Select Option from Settings Page.

    4. \"Click

      Click on Duplicate This.

    5. \"Duplicate

      Duplicate Post / Page will Appear.

    ", "installation": "
      \n
    1. Upload the duplicate-page folder to the directory /wp-content/plugins/.
    2. \n
    3. Activate the plugin using the ‘Plugins’ menu in WordPress.
    4. \n
    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/duplicate-page.1.1.zip", "2.5": "https://downloads.wordpress.org/plugin/duplicate-page.2.5.zip", "4.5": "https://downloads.wordpress.org/plugin/duplicate-page.4.5.zip", "4.4.9": "https://downloads.wordpress.org/plugin/duplicate-page.4.4.9.zip"}, "downloaded": 34193540, "description": "

    Duplicate Posts, Pages and Custom Posts easily using single click. You can duplicate your pages, posts and custom post by just one click and it will save as your selected options (draft, private, public, pending).

    \n

    Key Features in Duplicate Page Pro Editions

    \n
      \n
    • User Roles: Allow User Roles To access Duplicate Page.
    • \n
    • Post Types: Filter to show Duplicate Page link in post types.
    • \n
    • Clone Link Location: Option where to show clone link.
    • \n
    • Status: Option to select Duplicate Posts Status.
    • \n
    • Redirection: Option to Redirect after click on clone link..
    • \n
    • Clone Link Title: Option to change Duplicate Post Link Title.
    • \n
    • Post Prefix: Option to add Post Prefix.
    • \n
    • Post Suffix: Option to add Post Suffix.
    • \n
    • Editor: And Many More Filters and Features.
    • \n
    \n
    \n

    Buy Pro Version with various features & support.

    \n

    Contact us for Support Only Pro Version Users.

    \n
    \n

    Upgrade to Pro Version

    \n

    \n

    How to use

    \n
      \n
    1. First Activate Plugin.
    2. \n
    3. Go Select to Duplicate Page settings Menu from Settings Tab and savings settings.
    4. \n
    5. Then Create New Post/Page or Use old.
    6. \n
    7. After click on duplicate this link, then duplicate post/ page will be created and saved as draft,publish,pending,private depending upon settings.
    8. \n
    \n

    Minimum requirements for Duplicate Page

    \n
      \n
    • WordPress 3.3+
    • \n
    • PHP 5.x
    • \n
    • MySQL 5.x
    • \n
    \n", "donate_link": "", "num_ratings": 428, "screenshots": {"1": {"src": "https://ps.w.org/duplicate-page/assets/screenshot-1.png?rev=1410933", "caption": "Activate Screen"}, "2": {"src": "https://ps.w.org/duplicate-page/assets/screenshot-2.png?rev=1779481", "caption": "Duplicate Page Settings Screen"}, "3": {"src": "https://ps.w.org/duplicate-page/assets/screenshot-3.png?rev=1410933", "caption": "Select Option from Settings Page."}, "4": {"src": "https://ps.w.org/duplicate-page/assets/screenshot-4.png?rev=1410933", "caption": "Click on Duplicate This."}, "5": {"src": "https://ps.w.org/duplicate-page/assets/screenshot-5.png?rev=1410933", "caption": "Duplicate Post / Page will Appear."}}, "support_url": "https://wordpress.org/support/plugin/duplicate-page/", "contributors": {"mndpsingh287": {"avatar": "https://secure.gravatar.com/avatar/f45d3518db13edc49526efa590ebce2f3f53a6461ef2000a5d3f7197daf7cf9e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mndpsingh287/", "display_name": "mndpsingh287"}}, "last_updated": "2025-10-16 11:26am GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/duplicate-page.zip", "author_profile": "https://profiles.wordpress.org/mndpsingh287/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 3000000, "aspiresync_meta": {"id": "019a30bf-f2a5-71e7-9838-deb873811766", "name": "Duplicate Page", "slug": "duplicate-page", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760613960, "version": "4.5.6"}, "support_threads": 3, "requires_plugins": [], "short_description": "Duplicate Posts, Pages and Custom Posts easily using single click", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-64ba-72f3-bbf7-aba53498bd78', 'duplicate-post', 'Yoast Duplicate Post', 'The go-to tool for cloning posts and pages, including the powerful Rewrite & Republish feature.', '

    This plugin allows users to clone posts of any type, or copy them to new drafts for further editing.

    -

    How it works:

    -
      -
    1. -

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘Clone’ link below the post/page title: this will immediately create a copy and return to the list.

      -
    2. -
    3. -

      In ‘Edit Posts’/’Edit Pages’, you can select one or more items, then choose ‘Clone’ in the ‘Bulk Actions’ dropdown to copy them all at once.

      -
    4. -
    5. -

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘New Draft’ link below the post/page title.

      -
    6. -
    7. -

      On the post edit screen, you can click on ‘Copy to a new draft’ above “Cancel”/”Move to trash” or in the admin bar.

      -
    8. -
    9. -

      While viewing a post as a logged in user, you can click on ‘Copy to a new draft’ in the admin bar.

      -
    10. -
    -

    3, 4 and 5 will lead to the edit page for the new draft: change what you want, click on ‘Publish’ and you’re done.

    -

    There is also a template tag, so you can put it in your templates and clone your posts/pages from the front-end. Clicking on the link will lead you to the edit page for the new draft, just like the admin bar link.

    -

    Duplicate Post has many useful settings to customize its behavior and restrict its use to certain roles or post types. Check out the extensive documentation on yoast.com and our developer docs.

    -

    Contribute

    -

    If you find this useful and if you want to contribute, there are two ways:

    -
      -
    1. Submit your bug reports, suggestions and requests for features on GitHub;
    2. -
    3. If you want to translate it to your language (there are just a few lines of text), you can use the translation project;
    4. -
    -', '4.5', 'Yoast', '6.6', '5.6.20', '6.8.3', 'https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip', '2007-12-05 00:00:00+00', '2025-04-11 13:32:00+00', 'https://profiles.wordpress.org/yoast/', 94, 523, 3, 0, 4000000, 36625144, 'https://yoast.com/wordpress/plugins/duplicate-post/', 'https://yoast.com/wordpress/plugins/duplicate-post/', NULL, NULL, 'https://wordpress.org/support/plugin/duplicate-post/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Yoast Duplicate Post", "slug": "duplicate-post", "tags": {"copy": "copy", "clone": "clone", "duplicate-post": "duplicate post"}, "added": "2007-12-05", "icons": {"1x": "https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666", "2x": "https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666"}, "author": "Yoast", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666", "high": "https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666"}, "ratings": {"1": 24, "2": 12, "3": 7, "4": 13, "5": 467}, "version": "4.5", "homepage": "https://yoast.com/wordpress/plugins/duplicate-post/", "requires": "6.6", "sections": {"faq": "\n
    \nThe plugin doesn’t work, why?\n\n

    \n

    First, check your version of WordPress: the plugin is not supposed to work on old versions anymore. Make sure also to upgrade to the last version of the plugin!

    \n

    Then try to deactivate and re-activate it, some user have reported that this fixes some problems.

    \n

    Pay also attention to the “Permissions” tab in the Settings: make sure the plugin is enabled for the desired roles and post types.

    \n

    If it still doesn’t work, maybe there is some kind of conflict with other plugins: feel free to write in the forum and we’ll try to discover a solution (it will be really helpful if you try to deactivate all your other plugins one by one to see which one conflicts with mine… But do it only if you know what you’re doing, I will not be responsible of any problem you may experience).

    \n

    \n
    \nThe plugin is not translated in my language!\n\n

    \n

    From version 3.0 the plugin’s translations are managed by the WordPress.org platform and the plugin is shipped without language files, so first of all update translations under Dashboard->Updates.

    \n

    If Duplicate Post is still in English, or if there are some untranslated strings, you can help translating to your language: you only need a WordPress.org account.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfectly simple solution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy teamishq2025 on September 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Most other Event-Plug-ins are too heavy for my taste, but this one is quite flexible and has all the important elements. Easy to use, fitting into the theme and event lists can be displayed in multiple ways, if you know what to add to the shortcode. Highly recommended. The only thing I''m missing is recurring events.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Adds bloating undismissable notices

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy FonzieTheDog (delbono72) on September 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Adds a huge and extremely annoying notification at the top of plugin page that forces you to subscribe to their newsletter (which I do not need). Until you submit your email and confirm it, it doesn''t disappear. Wordpress should start BANNING plugins that bloat your admin pages with undismissable notices.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Elementor Page and Template Duplication

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy brandedpixel on April 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We like this plugin for duplicating pages created in a page or site builder, like Elementor.

    Fast and easy to use for most clients, we only wish the ''Republish'' functionality was better explained in the dashboard.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Quotes Ninja (quotesninja) on March 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like this plugin I''ve been using this plugin daily for duplication of post. Must for bloggers.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Seems useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy queviquev on March 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Currently new to WordPress but this seems like a useful tool for the future.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A must-have for content-heavy sites!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy evesp on February 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Bulk editing posts has never been easier. The plugin handles even custom fields efficiently. A must-have for content-heavy sites!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy phoenix36 on January 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works very well and good amount of settings to change

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does not work for portfolio pages

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ron Fredericks (ronf) on January 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My plugin offers portfolio pages in addition to posts and pages. This plugin does not offer duplication option from portfolio pages. Although it appears to work for posts and pages.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy EnergyDome on January 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useful tool to speed up work!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A must have plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy yodastudio on November 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is very easy to use and extremely useful. I can''t understand why it''s not included in the WordPress basic functions.

    \n
    \n
    \n", "changelog": "

    4.5

    \n

    Release Date: June 28th, 2022

    \n

    Enhancements:

    \n
      \n
    • Improves the impact of the plugin on the performance of the site by avoiding useless calls on the gettext filter.
    • \n
    \n

    Bugfixes:

    \n
      \n
    • Fixes a bug where a section in the Classic Editor’s submitbox would be displayed with incorrect margins.
    • \n
    \n

    Other:

    \n
      \n
    • Sets the WordPress tested up to version to 6.0.
    • \n
    \n

    4.4

    \n

    Release Date: January 25th, 2022

    \n

    Enhancements:

    \n
      \n
    • Converts the upgrade notice into a welcome notice for first-time users.
    • \n
    \n

    Bugfixes:

    \n
      \n
    • Fixes a bug where HTML tags in a Custom HTML block would be removed when republishing a scheduled Rewrite & Republish copy.
    • \n
    • Fixes a bug where the button style would be broken in the Classic Editor.
    • \n
    • Fixes a bug where a fatal error would be triggered in the Widgets page in combination with some themes or plugins.
    • \n
    \n

    Other:

    \n
      \n
    • Sets the WordPress tested up to version to 5.9.
    • \n
    \n

    Earlier versions

    \n

    For the changelog of earlier versions, please refer to the changelog on yoast.com.

    \n", "description": "

    This plugin allows users to clone posts of any type, or copy them to new drafts for further editing.

    \n

    How it works:

    \n
      \n
    1. \n

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘Clone’ link below the post/page title: this will immediately create a copy and return to the list.

      \n
    2. \n
    3. \n

      In ‘Edit Posts’/’Edit Pages’, you can select one or more items, then choose ‘Clone’ in the ‘Bulk Actions’ dropdown to copy them all at once.

      \n
    4. \n
    5. \n

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘New Draft’ link below the post/page title.

      \n
    6. \n
    7. \n

      On the post edit screen, you can click on ‘Copy to a new draft’ above “Cancel”/”Move to trash” or in the admin bar.

      \n
    8. \n
    9. \n

      While viewing a post as a logged in user, you can click on ‘Copy to a new draft’ in the admin bar.

      \n
    10. \n
    \n

    3, 4 and 5 will lead to the edit page for the new draft: change what you want, click on ‘Publish’ and you’re done.

    \n

    There is also a template tag, so you can put it in your templates and clone your posts/pages from the front-end. Clicking on the link will lead you to the edit page for the new draft, just like the admin bar link.

    \n

    Duplicate Post has many useful settings to customize its behavior and restrict its use to certain roles or post types. Check out the extensive documentation on yoast.com and our developer docs.

    \n

    Contribute

    \n

    If you find this useful and if you want to contribute, there are two ways:

    \n
      \n
    1. Submit your bug reports, suggestions and requests for features on GitHub;
    2. \n
    3. If you want to translate it to your language (there are just a few lines of text), you can use the translation project;
    4. \n
    \n", "screenshots": "
    1. \"Classic

      Classic editor.

    2. \"Block

      Block editor.

    3. \"Post

      Post list.

    4. \"Admin

      Admin bar menu.

    5. \"Bulk

      Bulk actions.

    6. \"The

      The options page.

    ", "installation": "

    Use WordPress’ Add New Plugin feature, searching “Duplicate Post”, or download the archive and:

    \n
      \n
    1. Unzip the archive on your computer
    2. \n
    3. Upload duplicate-post directory to the /wp-content/plugins/ directory
    4. \n
    5. Activate the plugin through the ‘Plugins’ menu in WordPress
    6. \n
    7. Go to Settings -> Duplicate Post and customize behaviour as needed
    8. \n
    \n"}, "versions": {"0.3": "https://downloads.wordpress.org/plugin/duplicate-post.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/duplicate-post.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/duplicate-post.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/duplicate-post.0.6.zip", "1.0": "https://downloads.wordpress.org/plugin/duplicate-post.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/duplicate-post.1.1.zip", "2.0": "https://downloads.wordpress.org/plugin/duplicate-post.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/duplicate-post.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/duplicate-post.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/duplicate-post.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/duplicate-post.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/duplicate-post.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/duplicate-post.2.6.zip", "3.0": "https://downloads.wordpress.org/plugin/duplicate-post.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/duplicate-post.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.zip", "4.0": "https://downloads.wordpress.org/plugin/duplicate-post.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/duplicate-post.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/duplicate-post.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/duplicate-post.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/duplicate-post.4.4.zip", "4.5": "https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip", "0.6.1": "https://downloads.wordpress.org/plugin/duplicate-post.0.6.1.zip", "1.1.1": "https://downloads.wordpress.org/plugin/duplicate-post.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/duplicate-post.1.1.2.zip", "2.0.1": "https://downloads.wordpress.org/plugin/duplicate-post.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/duplicate-post.2.0.2.zip", "2.1.1": "https://downloads.wordpress.org/plugin/duplicate-post.2.1.1.zip", "2.4.1": "https://downloads.wordpress.org/plugin/duplicate-post.2.4.1.zip", "3.0.1": "https://downloads.wordpress.org/plugin/duplicate-post.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/duplicate-post.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/duplicate-post.3.0.3.zip", "3.1.1": "https://downloads.wordpress.org/plugin/duplicate-post.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/duplicate-post.3.1.2.zip", "3.2.1": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/duplicate-post.3.2.6.zip", "4.0.1": "https://downloads.wordpress.org/plugin/duplicate-post.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/duplicate-post.4.0.2.zip", "4.1.1": "https://downloads.wordpress.org/plugin/duplicate-post.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/duplicate-post.4.1.2.zip", "trunk": "https://downloads.wordpress.org/plugin/duplicate-post.zip"}, "downloaded": 36625144, "description": "

    This plugin allows users to clone posts of any type, or copy them to new drafts for further editing.

    \n

    How it works:

    \n
      \n
    1. \n

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘Clone’ link below the post/page title: this will immediately create a copy and return to the list.

      \n
    2. \n
    3. \n

      In ‘Edit Posts’/’Edit Pages’, you can select one or more items, then choose ‘Clone’ in the ‘Bulk Actions’ dropdown to copy them all at once.

      \n
    4. \n
    5. \n

      In ‘Edit Posts’/’Edit Pages’, you can click on ‘New Draft’ link below the post/page title.

      \n
    6. \n
    7. \n

      On the post edit screen, you can click on ‘Copy to a new draft’ above “Cancel”/”Move to trash” or in the admin bar.

      \n
    8. \n
    9. \n

      While viewing a post as a logged in user, you can click on ‘Copy to a new draft’ in the admin bar.

      \n
    10. \n
    \n

    3, 4 and 5 will lead to the edit page for the new draft: change what you want, click on ‘Publish’ and you’re done.

    \n

    There is also a template tag, so you can put it in your templates and clone your posts/pages from the front-end. Clicking on the link will lead you to the edit page for the new draft, just like the admin bar link.

    \n

    Duplicate Post has many useful settings to customize its behavior and restrict its use to certain roles or post types. Check out the extensive documentation on yoast.com and our developer docs.

    \n

    Contribute

    \n

    If you find this useful and if you want to contribute, there are two ways:

    \n
      \n
    1. Submit your bug reports, suggestions and requests for features on GitHub;
    2. \n
    3. If you want to translate it to your language (there are just a few lines of text), you can use the translation project;
    4. \n
    \n", "donate_link": "https://yoast.com/wordpress/plugins/duplicate-post/", "num_ratings": 523, "screenshots": {"1": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-1.png?rev=2454492", "caption": "Classic editor."}, "2": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-2.png?rev=2454492", "caption": "Block editor."}, "3": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-3.png?rev=2454492", "caption": "Post list."}, "4": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-4.png?rev=2454492", "caption": "Admin bar menu."}, "5": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-5.png?rev=2454492", "caption": "Bulk actions."}, "6": {"src": "https://ps.w.org/duplicate-post/assets/screenshot-6.png?rev=2454492", "caption": "The options page."}}, "support_url": "https://wordpress.org/support/plugin/duplicate-post/", "contributors": {"lopo": {"avatar": "https://secure.gravatar.com/avatar/7b7f21e1376f7c9b0ca9516488e179d62773db73ce940c3bd7145ff3b87adc56?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lopo/", "display_name": "Enrico Battocchi"}, "yoast": {"avatar": "https://secure.gravatar.com/avatar/be9ad584631c908275babffbc3fd771d5879ace2c1e00305b17fd2d4361fe80d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/yoast/", "display_name": "Yoast"}}, "last_updated": "2025-04-11 1:32pm GMT", "preview_link": "", "requires_php": "5.6.20", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip", "author_profile": "https://profiles.wordpress.org/yoast/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 4000000, "aspiresync_meta": {"id": "019a30bf-f2af-73f9-a819-0af060eec6fc", "name": "Yoast Duplicate Post", "slug": "duplicate-post", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1744378320, "version": "4.5"}, "support_threads": 3, "requires_plugins": [], "short_description": "The go-to tool for cloning posts and pages, including the powerful Rewrite & Republish feature.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-64c2-703e-93b2-0221949f8931', 'duplicator', 'Duplicator – Backups & Migration Plugin – Cloud Backups, Scheduled Backups, & More', 'The best WordPress backup and migration plugin. Quickly and easily backup ,migrate, copy, move, or clone your site from one location to another.', '

    WordPress Backup & Migration Plugin

    -

    Duplicator provides a simple way to move WordPress sites, create reliable backups, or clone a site for staging. With Duplicator, you can easily migrate, transfer, or clone your WordPress site between domains or hosts with no downtime. Create full backups of your website, or package your entire site to download and install elsewhere with only a few steps.

    -

    At Duplicator, reliabilty, security, and ease of use are our top priorities. Our variety of cloud backup integrations and easy migration wizard make Duplicator the most beginner-friendly backup and migration plugin on the market. You don’t have to hire a developer. Create a backup and migrate sites in just a few minutes.

    -
    -

    Duplicator Pro
    - This plugin is the Lite version of Duplicator Pro, which comes with scheduled backups, cloud storage integrations, multisite support, and more. Get Duplicator Pro for the complete migration and backup solution.

    -
    -

    -

    Easy Site Migration, Backup, and Cloning

    -

    Duplicator streamlines site migrations by packaging your website files and database into a single file, known as a “backup”. Download and re-install your “backup” on any new WordPress location or server without dealing with complicated setups. Launch at your new destination without installing WordPress. Duplicator is the only migration and backup plugin that works on an empty site.

    -

    See why experts love Duplicator:

    -
    -

    “Duplicator provides an easy to use tool to make backups of your site, or to transfer it to another location.”
    - Richard McAdams – Expert Web Developer

    -
    -

    Secure WordPress Backups

    -

    Duplicator offers cloud WordPress backups with military-grade encryption. Automatically backup your entire WordPress site to secure cloud storage.

    -

    Recovery Points (1-click Restore)

    -

    Duplicator makes 1-click restores for WordPress backups easy and stress-free. Quickly restore your entire website in minutes just like a time machine.

    -

    Fast WordPress Migrations

    -

    Duplicator makes WordPress website migrations fast and stress-free. Quickly move to a new host, domain, or server. No downtime, no data loss, and no coding required.

    -

    WordPress Multisite Backups

    -

    Duplicator offers automatic WordPress Multisite backups with easy 1-click restore. Safely backup your entire Multisite network to secure cloud storage.

    -

    WooCommerce Backups

    -

    Duplicator offers reliable WooCommerce backups with military-grade encryption. Easily and automatically back up your entire online store to secure cloud storage.

    -

    Pre-configured WordPress Installs

    -

    Never start from scratch with Duplicator’s smart pre-configured WordPress installs. Save time and hassle duplicating ready-made sites with 1-click.

    -

    WordPress Recovery Points with Quick Rollbacks

    -

    Duplicator offers hourly recovery points and 1-click rollbacks for WordPress sites. Quickly and automatically recover from failed WordPress updates or disasters.

    -

    Partial WordPress Backup Plugin

    -

    Duplicator makes partial backups for WordPress quick and easy. Save storage and restore sites faster with database-only, media-only, or completely custom backups.

    -

    Server to Server WordPress Migration Import Tool

    -

    Duplicator makes server-to-server WordPress migrations fast and hassle-free. Quickly import your website to a new server in minutes. No downtime, no data loss.

    -

    Smart WordPress Migration Wizard

    -

    Duplicator’s smart WordPress migration wizard makes transferring your website to a new host or server effortless. No downtime, no data loss, and no code required.

    -

    Drag & Drop Import WordPress Website Tool

    -

    Migrating WordPress sites has never been easier with Duplicator’s drag & drop import tools. Quickly transfer your site to a new host or server in minutes, no code required.

    -

    Clone WordPress Website Plugin

    -

    Duplicator clones your entire WordPress website with 1-click, no code needed. Perfect for staging sites, sandbox, or site migration.

    -

    Duplicator Pro Features

    -

    Duplicator Pro takes Duplicator to the next level with features you’ll love, such as:

    -
      -
    • Drag and Drop installs – just drag the backup file to the destination site!
    • -
    • Scheduled backups
    • -
    • Cloud Storage to Dropbox Backups, Google Drive Backups, Microsoft OneDrive Backups, Amazon S3 Backups and FTP/SFTP Backups
    • -
    • Custom Backups and Cloning: want just plugins, or just themes, just the database? No problem!
    • -
    • A special 2-step streamlined installer mode for mega-fast installs
    • -
    • Recovery Points added for very fast emergency site restores
    • -
    • Support for managed and shared hosts such as WordPress.com, WPEngine, GoDaddy Managed, and more
    • -
    • Multi-threaded to support larger websites & databases
    • -
    • Migrate an entire multisite WordPress network or a sub site as a standalone site
    • -
    • Database and user creation in the installer with cPanel API
    • -
    • Connect to cPanel directly from the installer
    • -
    • Custom plugin hooks for developers
    • -
    • Advanced permissions
    • -
    • Email notifications
    • -
    • Professional support
    • -
    • … and much more!
    • -
    -

    Supported Backup Cloud Storage Integrations

    -

    We support any Amazon S3 compatible storage providers plus these first-party integrations.

    - -

    You can easily see why Duplicator is the best WordPress backup and migration plugin on the market! Want to unlock these features? Upgrade to our Pro version

    -

    Branding Guidelines

    -

    Duplicator® is a registered trademark of Snap Creek LLC. When writing about the backup & migration plugin by Duplicator, please make sure to uppercase the initial first letter.

    -
      -
    • Duplicator (correct)
    • -
    • duplicator (incorrect)
    • -
    -', '1.5.14', 'Syed Balkhi', '5.3', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/duplicator.1.5.14.zip', '2011-06-07 00:00:00+00', '2025-10-14 16:33:00+00', 'https://profiles.wordpress.org/smub/', 98, 4805, 17, 15, 1000000, 50781936, 'https://duplicator.com/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/duplicator/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Duplicator – Backups & Migration Plugin – Cloud Backups, Scheduled Backups, & More", "slug": "duplicator", "tags": {"backup": "backup", "migration": "migration", "cloud-backup": "cloud backup", "database-backup": "database backup", "wordpress-backup": "wordpress backup"}, "added": "2011-06-07", "icons": {"1x": "https://ps.w.org/duplicator/assets/icon-128x128.png?rev=2906985", "2x": "https://ps.w.org/duplicator/assets/icon-256x256.png?rev=2906985"}, "author": "Syed Balkhi", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/duplicator/assets/banner-772x250.png?rev=2906985", "high": "https://ps.w.org/duplicator/assets/banner-1544x500.png?rev=2906985"}, "ratings": {"1": 133, "2": 21, "3": 21, "4": 62, "5": 4568}, "version": "1.5.14", "homepage": "https://duplicator.com/", "requires": "5.3", "sections": {"faq": "\n
    \nWho Should Use Duplicator?\n\n

    \n

    Duplicator is perfect for business owners, bloggers, designers, developers, photographers, and basically everyone else. If you want to create a WordPress Backup or Migration, then you need to use Duplicator.

    \n

    \n
    \nWhat’s required to use Duplicator?\n\n

    \n

    Duplicator is a WordPress Plugin. In order to use Duplicator, you must have a self-hosted WordPress site. That’s all.

    \n

    \n
    \nDo I need coding skills to use Duplicator?\n\n

    \n

    Absolutely not. You can create backups and migrations without any coding knowledge. Duplicator is the most beginner-friendly backup solution in the market.

    \n

    \n
    \nWill Duplicator slow down my website?\n\n

    \n

    Absolutely not. Duplicator is carefully built with performance in mind. We have developed everything with best practices and modern standards to ensure things run smooth and fast.

    \n

    \n
    \nCan I backup WooCommerce sites?\n\n

    \n

    Yes. Duplicator makes backing up WooCommerce sites easy and stress-free.

    \n

    \n
    \nIs this plugin compatible with WordPress multisite (MU)?\n\n

    \n

    Yes, however you will need Duplicator Pro for full multisite network migrations &backups and the ability to install a multisite subsite as a standalone site.

    \n

    \n
    \nWhere can I get more help and support for this plugin?\n\n

    \n

    Purchase a Pro License for quick support Duplicator Pro

    \n

    \n
    \nDoes Duplicator have a knowledge base or FAQ?\n\n

    \n

    Yes. Please see all documents at duplicator.com

    \n

    \n
    \nInstallation Instructions\n\n

    \n

      \n
    1. Upload duplicator folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Click on the Duplicator link from the main menu
    6. \n
    7. Check out the help by clicking the help icon and create your first backup.
    8. \n
    \n

    The Duplicator requires php 5.3 or higher.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Highly reliable since years, thank you!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy David Stingl (berlindave) on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My No. 1 tool for migrating WordPress sites between localhost (for theme development) an servers ans from one server to another. Just flawlessly perfect!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    top

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Arnaud DUMAURE (arnodu24) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this plugin is very correct

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mayordomo on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It does what it says it does well.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable, Efficient, and Essential for WordPress Site Management

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy smoroz on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Duplicator is one of the most dependable plugins I’ve used for managing WordPress migrations and backups. The setup is straightforward, and the interface makes even complex site transfers surprisingly simple. Whether moving a site between hosts or creating a quick backup before a major update, Duplicator handles it without unnecessary complications.

    \n\n\n\n

    Performance is solid—backups are fast and consistent, and the plugin minimizes downtime during migrations. I also appreciate the clear documentation and responsive support, which make troubleshooting nearly effortless.

    \n\n\n\n

    Duplicator is a must-have for anyone serious about maintaining site stability and workflow efficiency. It’s become a permanent part of my WordPress toolkit.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazing

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rickreynolds1 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Amazing plug-in and I''ve used it for years. Thanks so much, all!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Worked great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy johnkyle on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Migrated a client site with this from my dev servers to their hosting. No issues. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great software

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy farawaywtth on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ez to use and packed with functionality. No external help needed.
    Created WP website locally, and put it online in no time :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works perfect for me

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy estachap on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It took a short time to learn how to use it, but after that the tool worked amazingly well even in its free version.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent time saving tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy keeboudi on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent time saving tool

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Prima backup/restore tool!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy beausoftware on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Deze tool al meerdere keren succesvol gebruikt voor het overzetten of dupliceren van een Wordpress site met Woocommerce plugin en data

    \n\n\n\n

    \n
    \n
    \n", "changelog": "

    Please see the following url:
    \nhttps://duplicator.com/knowledge-base/changelog/

    \n", "description": "

    WordPress Backup & Migration Plugin

    \n

    Duplicator provides a simple way to move WordPress sites, create reliable backups, or clone a site for staging. With Duplicator, you can easily migrate, transfer, or clone your WordPress site between domains or hosts with no downtime. Create full backups of your website, or package your entire site to download and install elsewhere with only a few steps.

    \n

    At Duplicator, reliabilty, security, and ease of use are our top priorities. Our variety of cloud backup integrations and easy migration wizard make Duplicator the most beginner-friendly backup and migration plugin on the market. You don’t have to hire a developer. Create a backup and migrate sites in just a few minutes.

    \n
    \n

    Duplicator Pro
    \n This plugin is the Lite version of Duplicator Pro, which comes with scheduled backups, cloud storage integrations, multisite support, and more. Get Duplicator Pro for the complete migration and backup solution.

    \n
    \n

    \n

    Easy Site Migration, Backup, and Cloning

    \n

    Duplicator streamlines site migrations by packaging your website files and database into a single file, known as a “backup”. Download and re-install your “backup” on any new WordPress location or server without dealing with complicated setups. Launch at your new destination without installing WordPress. Duplicator is the only migration and backup plugin that works on an empty site.

    \n

    See why experts love Duplicator:

    \n
    \n

    “Duplicator provides an easy to use tool to make backups of your site, or to transfer it to another location.”
    \n Richard McAdams – Expert Web Developer

    \n
    \n

    Secure WordPress Backups

    \n

    Duplicator offers cloud WordPress backups with military-grade encryption. Automatically backup your entire WordPress site to secure cloud storage.

    \n

    Recovery Points (1-click Restore)

    \n

    Duplicator makes 1-click restores for WordPress backups easy and stress-free. Quickly restore your entire website in minutes just like a time machine.

    \n

    Fast WordPress Migrations

    \n

    Duplicator makes WordPress website migrations fast and stress-free. Quickly move to a new host, domain, or server. No downtime, no data loss, and no coding required.

    \n

    WordPress Multisite Backups

    \n

    Duplicator offers automatic WordPress Multisite backups with easy 1-click restore. Safely backup your entire Multisite network to secure cloud storage.

    \n

    WooCommerce Backups

    \n

    Duplicator offers reliable WooCommerce backups with military-grade encryption. Easily and automatically back up your entire online store to secure cloud storage.

    \n

    Pre-configured WordPress Installs

    \n

    Never start from scratch with Duplicator’s smart pre-configured WordPress installs. Save time and hassle duplicating ready-made sites with 1-click.

    \n

    WordPress Recovery Points with Quick Rollbacks

    \n

    Duplicator offers hourly recovery points and 1-click rollbacks for WordPress sites. Quickly and automatically recover from failed WordPress updates or disasters.

    \n

    Partial WordPress Backup Plugin

    \n

    Duplicator makes partial backups for WordPress quick and easy. Save storage and restore sites faster with database-only, media-only, or completely custom backups.

    \n

    Server to Server WordPress Migration Import Tool

    \n

    Duplicator makes server-to-server WordPress migrations fast and hassle-free. Quickly import your website to a new server in minutes. No downtime, no data loss.

    \n

    Smart WordPress Migration Wizard

    \n

    Duplicator’s smart WordPress migration wizard makes transferring your website to a new host or server effortless. No downtime, no data loss, and no code required.

    \n

    Drag & Drop Import WordPress Website Tool

    \n

    Migrating WordPress sites has never been easier with Duplicator’s drag & drop import tools. Quickly transfer your site to a new host or server in minutes, no code required.

    \n

    Clone WordPress Website Plugin

    \n

    Duplicator clones your entire WordPress website with 1-click, no code needed. Perfect for staging sites, sandbox, or site migration.

    \n

    Duplicator Pro Features

    \n

    Duplicator Pro takes Duplicator to the next level with features you’ll love, such as:

    \n
      \n
    • Drag and Drop installs – just drag the backup file to the destination site!
    • \n
    • Scheduled backups
    • \n
    • Cloud Storage to Dropbox Backups, Google Drive Backups, Microsoft OneDrive Backups, Amazon S3 Backups and FTP/SFTP Backups
    • \n
    • Custom Backups and Cloning: want just plugins, or just themes, just the database? No problem!
    • \n
    • A special 2-step streamlined installer mode for mega-fast installs
    • \n
    • Recovery Points added for very fast emergency site restores
    • \n
    • Support for managed and shared hosts such as WordPress.com, WPEngine, GoDaddy Managed, and more
    • \n
    • Multi-threaded to support larger websites & databases
    • \n
    • Migrate an entire multisite WordPress network or a sub site as a standalone site
    • \n
    • Database and user creation in the installer with cPanel API
    • \n
    • Connect to cPanel directly from the installer
    • \n
    • Custom plugin hooks for developers
    • \n
    • Advanced permissions
    • \n
    • Email notifications
    • \n
    • Professional support
    • \n
    • … and much more!
    • \n
    \n

    Supported Backup Cloud Storage Integrations

    \n

    We support any Amazon S3 compatible storage providers plus these first-party integrations.

    \n\n

    You can easily see why Duplicator is the best WordPress backup and migration plugin on the market! Want to unlock these features? Upgrade to our Pro version

    \n

    Branding Guidelines

    \n

    Duplicator® is a registered trademark of Snap Creek LLC. When writing about the backup & migration plugin by Duplicator, please make sure to uppercase the initial first letter.

    \n
      \n
    • Duplicator (correct)
    • \n
    • duplicator (incorrect)
    • \n
    \n", "screenshots": "
    1. \"Main

      Main Interface for all Backups

    2. \"Create

      Create Backup Step 1

    3. \"Create

      Create Backup Step 2

    4. \"Build

      Build Process

    5. \"Installer

      Installer Screen

    "}, "versions": {"0.4.6": "https://downloads.wordpress.org/plugin/duplicator.0.4.6.zip", "0.5.0": "https://downloads.wordpress.org/plugin/duplicator.0.5.0.zip", "0.5.1": "https://downloads.wordpress.org/plugin/duplicator.0.5.1.zip", "0.5.2": "https://downloads.wordpress.org/plugin/duplicator.0.5.2.zip", "0.5.4": "https://downloads.wordpress.org/plugin/duplicator.0.5.4.zip", "0.5.6": "https://downloads.wordpress.org/plugin/duplicator.0.5.6.zip", "0.5.8": "https://downloads.wordpress.org/plugin/duplicator.0.5.8.zip", "1.1.0": "https://downloads.wordpress.org/plugin/duplicator.1.1.0.zip", "1.1.2": "https://downloads.wordpress.org/plugin/duplicator.1.1.2.zip", "1.1.4": "https://downloads.wordpress.org/plugin/duplicator.1.1.4.zip", "1.1.6": "https://downloads.wordpress.org/plugin/duplicator.1.1.6.zip", "1.1.8": "https://downloads.wordpress.org/plugin/duplicator.1.1.8.zip", "1.2.0": "https://downloads.wordpress.org/plugin/duplicator.1.2.0.zip", "1.2.2": "https://downloads.wordpress.org/plugin/duplicator.1.2.2.zip", "1.2.4": "https://downloads.wordpress.org/plugin/duplicator.1.2.4.zip", "1.2.6": "https://downloads.wordpress.org/plugin/duplicator.1.2.6.zip", "1.2.8": "https://downloads.wordpress.org/plugin/duplicator.1.2.8.zip", "1.3.0": "https://downloads.wordpress.org/plugin/duplicator.1.3.0.zip", "1.3.2": "https://downloads.wordpress.org/plugin/duplicator.1.3.2.zip", "1.3.4": "https://downloads.wordpress.org/plugin/duplicator.1.3.4.zip", "1.3.6": "https://downloads.wordpress.org/plugin/duplicator.1.3.6.zip", "1.3.8": "https://downloads.wordpress.org/plugin/duplicator.1.3.8.zip", "1.4.0": "https://downloads.wordpress.org/plugin/duplicator.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/duplicator.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/duplicator.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/duplicator.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/duplicator.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/duplicator.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/duplicator.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/duplicator.1.4.7.zip", "1.5.0": "https://downloads.wordpress.org/plugin/duplicator.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/duplicator.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/duplicator.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/duplicator.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/duplicator.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/duplicator.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/duplicator.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/duplicator.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/duplicator.1.5.9.zip", "trunk": "https://downloads.wordpress.org/plugin/duplicator.zip", "0.5.10": "https://downloads.wordpress.org/plugin/duplicator.0.5.10.zip", "0.5.12": "https://downloads.wordpress.org/plugin/duplicator.0.5.12.zip", "0.5.14": "https://downloads.wordpress.org/plugin/duplicator.0.5.14.zip", "0.5.16": "https://downloads.wordpress.org/plugin/duplicator.0.5.16.zip", "0.5.18": "https://downloads.wordpress.org/plugin/duplicator.0.5.18.zip", "0.5.20": "https://downloads.wordpress.org/plugin/duplicator.0.5.20.zip", "0.5.22": "https://downloads.wordpress.org/plugin/duplicator.0.5.22.zip", "0.5.24": "https://downloads.wordpress.org/plugin/duplicator.0.5.24.zip", "0.5.26": "https://downloads.wordpress.org/plugin/duplicator.0.5.26.zip", "0.5.28": "https://downloads.wordpress.org/plugin/duplicator.0.5.28.zip", "0.5.30": "https://downloads.wordpress.org/plugin/duplicator.0.5.30.zip", "0.5.32": "https://downloads.wordpress.org/plugin/duplicator.0.5.32.zip", "0.5.34": "https://downloads.wordpress.org/plugin/duplicator.0.5.34.zip", "1.1.10": "https://downloads.wordpress.org/plugin/duplicator.1.1.10.zip", "1.1.12": "https://downloads.wordpress.org/plugin/duplicator.1.1.12.zip", "1.1.14": "https://downloads.wordpress.org/plugin/duplicator.1.1.14.zip", "1.1.16": "https://downloads.wordpress.org/plugin/duplicator.1.1.16.zip", "1.1.18": "https://downloads.wordpress.org/plugin/duplicator.1.1.18.zip", "1.1.20": "https://downloads.wordpress.org/plugin/duplicator.1.1.20.zip", "1.1.22": "https://downloads.wordpress.org/plugin/duplicator.1.1.22.zip", "1.1.24": "https://downloads.wordpress.org/plugin/duplicator.1.1.24.zip", "1.1.26": "https://downloads.wordpress.org/plugin/duplicator.1.1.26.zip", "1.1.28": "https://downloads.wordpress.org/plugin/duplicator.1.1.28.zip", "1.1.30": "https://downloads.wordpress.org/plugin/duplicator.1.1.30.zip", "1.1.32": "https://downloads.wordpress.org/plugin/duplicator.1.1.32.zip", "1.1.34": "https://downloads.wordpress.org/plugin/duplicator.1.1.34.zip", "1.2.10": "https://downloads.wordpress.org/plugin/duplicator.1.2.10.zip", "1.2.12": "https://downloads.wordpress.org/plugin/duplicator.1.2.12.zip", "1.2.14": "https://downloads.wordpress.org/plugin/duplicator.1.2.14.zip", "1.2.16": "https://downloads.wordpress.org/plugin/duplicator.1.2.16.zip", "1.2.18": "https://downloads.wordpress.org/plugin/duplicator.1.2.18.zip", "1.2.20": "https://downloads.wordpress.org/plugin/duplicator.1.2.20.zip", "1.2.22": "https://downloads.wordpress.org/plugin/duplicator.1.2.22.zip", "1.2.24": "https://downloads.wordpress.org/plugin/duplicator.1.2.24.zip", "1.2.26": "https://downloads.wordpress.org/plugin/duplicator.1.2.26.zip", "1.2.28": "https://downloads.wordpress.org/plugin/duplicator.1.2.28.zip", "1.2.30": "https://downloads.wordpress.org/plugin/duplicator.1.2.30.zip", "1.2.32": "https://downloads.wordpress.org/plugin/duplicator.1.2.32.zip", "1.2.34": "https://downloads.wordpress.org/plugin/duplicator.1.2.34.zip", "1.2.36": "https://downloads.wordpress.org/plugin/duplicator.1.2.36.zip", "1.2.38": "https://downloads.wordpress.org/plugin/duplicator.1.2.38.zip", "1.2.40": "https://downloads.wordpress.org/plugin/duplicator.1.2.40.zip", "1.2.42": "https://downloads.wordpress.org/plugin/duplicator.1.2.42.zip", "1.2.44": "https://downloads.wordpress.org/plugin/duplicator.1.2.44.zip", "1.2.46": "https://downloads.wordpress.org/plugin/duplicator.1.2.46.zip", "1.2.48": "https://downloads.wordpress.org/plugin/duplicator.1.2.48.zip", "1.2.50": "https://downloads.wordpress.org/plugin/duplicator.1.2.50.zip", "1.2.52": "https://downloads.wordpress.org/plugin/duplicator.1.2.52.zip", "1.3.10": "https://downloads.wordpress.org/plugin/duplicator.1.3.10.zip", "1.3.12": "https://downloads.wordpress.org/plugin/duplicator.1.3.12.zip", "1.3.14": "https://downloads.wordpress.org/plugin/duplicator.1.3.14.zip", "1.3.16": "https://downloads.wordpress.org/plugin/duplicator.1.3.16.zip", "1.3.18": "https://downloads.wordpress.org/plugin/duplicator.1.3.18.zip", "1.3.20": "https://downloads.wordpress.org/plugin/duplicator.1.3.20.zip", "1.3.22": "https://downloads.wordpress.org/plugin/duplicator.1.3.22.zip", "1.3.24": "https://downloads.wordpress.org/plugin/duplicator.1.3.24.zip", "1.3.26": "https://downloads.wordpress.org/plugin/duplicator.1.3.26.zip", "1.3.28": "https://downloads.wordpress.org/plugin/duplicator.1.3.28.zip", "1.3.30": "https://downloads.wordpress.org/plugin/duplicator.1.3.30.zip", "1.3.32": "https://downloads.wordpress.org/plugin/duplicator.1.3.32.zip", "1.3.34": "https://downloads.wordpress.org/plugin/duplicator.1.3.34.zip", "1.3.36": "https://downloads.wordpress.org/plugin/duplicator.1.3.36.zip", "1.3.38": "https://downloads.wordpress.org/plugin/duplicator.1.3.38.zip", "1.3.40": "https://downloads.wordpress.org/plugin/duplicator.1.3.40.zip", "1.5.10": "https://downloads.wordpress.org/plugin/duplicator.1.5.10.zip", "1.5.11": "https://downloads.wordpress.org/plugin/duplicator.1.5.11.zip", "1.5.12": "https://downloads.wordpress.org/plugin/duplicator.1.5.12.zip", "1.5.13": "https://downloads.wordpress.org/plugin/duplicator.1.5.13.zip", "1.5.14": "https://downloads.wordpress.org/plugin/duplicator.1.5.14.zip", "1.4.7.1": "https://downloads.wordpress.org/plugin/duplicator.1.4.7.1.zip", "1.4.7.2": "https://downloads.wordpress.org/plugin/duplicator.1.4.7.2.zip", "1.5.2.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.2.1.zip", "1.5.3.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.3.1.zip", "1.5.5.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.5.1.zip", "1.5.6.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.6.1.zip", "1.5.7.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.7.1.zip", "1.5.8.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.8.1.zip", "1.3.40.1": "https://downloads.wordpress.org/plugin/duplicator.1.3.40.1.zip", "1.5.10.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.10.1.zip", "1.5.10.2": "https://downloads.wordpress.org/plugin/duplicator.1.5.10.2.zip", "1.5.11.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.11.1.zip", "1.5.11.2": "https://downloads.wordpress.org/plugin/duplicator.1.5.11.2.zip", "1.5.13.1": "https://downloads.wordpress.org/plugin/duplicator.1.5.13.1.zip", "1.5.13.2": "https://downloads.wordpress.org/plugin/duplicator.1.5.13.2.zip", "1.5.13.3": "https://downloads.wordpress.org/plugin/duplicator.1.5.13.3.zip"}, "downloaded": 50781936, "description": "

    WordPress Backup & Migration Plugin

    \n

    Duplicator provides a simple way to move WordPress sites, create reliable backups, or clone a site for staging. With Duplicator, you can easily migrate, transfer, or clone your WordPress site between domains or hosts with no downtime. Create full backups of your website, or package your entire site to download and install elsewhere with only a few steps.

    \n

    At Duplicator, reliabilty, security, and ease of use are our top priorities. Our variety of cloud backup integrations and easy migration wizard make Duplicator the most beginner-friendly backup and migration plugin on the market. You don’t have to hire a developer. Create a backup and migrate sites in just a few minutes.

    \n
    \n

    Duplicator Pro
    \n This plugin is the Lite version of Duplicator Pro, which comes with scheduled backups, cloud storage integrations, multisite support, and more. Get Duplicator Pro for the complete migration and backup solution.

    \n
    \n

    \n

    Easy Site Migration, Backup, and Cloning

    \n

    Duplicator streamlines site migrations by packaging your website files and database into a single file, known as a “backup”. Download and re-install your “backup” on any new WordPress location or server without dealing with complicated setups. Launch at your new destination without installing WordPress. Duplicator is the only migration and backup plugin that works on an empty site.

    \n

    See why experts love Duplicator:

    \n
    \n

    “Duplicator provides an easy to use tool to make backups of your site, or to transfer it to another location.”
    \n Richard McAdams – Expert Web Developer

    \n
    \n

    Secure WordPress Backups

    \n

    Duplicator offers cloud WordPress backups with military-grade encryption. Automatically backup your entire WordPress site to secure cloud storage.

    \n

    Recovery Points (1-click Restore)

    \n

    Duplicator makes 1-click restores for WordPress backups easy and stress-free. Quickly restore your entire website in minutes just like a time machine.

    \n

    Fast WordPress Migrations

    \n

    Duplicator makes WordPress website migrations fast and stress-free. Quickly move to a new host, domain, or server. No downtime, no data loss, and no coding required.

    \n

    WordPress Multisite Backups

    \n

    Duplicator offers automatic WordPress Multisite backups with easy 1-click restore. Safely backup your entire Multisite network to secure cloud storage.

    \n

    WooCommerce Backups

    \n

    Duplicator offers reliable WooCommerce backups with military-grade encryption. Easily and automatically back up your entire online store to secure cloud storage.

    \n

    Pre-configured WordPress Installs

    \n

    Never start from scratch with Duplicator’s smart pre-configured WordPress installs. Save time and hassle duplicating ready-made sites with 1-click.

    \n

    WordPress Recovery Points with Quick Rollbacks

    \n

    Duplicator offers hourly recovery points and 1-click rollbacks for WordPress sites. Quickly and automatically recover from failed WordPress updates or disasters.

    \n

    Partial WordPress Backup Plugin

    \n

    Duplicator makes partial backups for WordPress quick and easy. Save storage and restore sites faster with database-only, media-only, or completely custom backups.

    \n

    Server to Server WordPress Migration Import Tool

    \n

    Duplicator makes server-to-server WordPress migrations fast and hassle-free. Quickly import your website to a new server in minutes. No downtime, no data loss.

    \n

    Smart WordPress Migration Wizard

    \n

    Duplicator’s smart WordPress migration wizard makes transferring your website to a new host or server effortless. No downtime, no data loss, and no code required.

    \n

    Drag & Drop Import WordPress Website Tool

    \n

    Migrating WordPress sites has never been easier with Duplicator’s drag & drop import tools. Quickly transfer your site to a new host or server in minutes, no code required.

    \n

    Clone WordPress Website Plugin

    \n

    Duplicator clones your entire WordPress website with 1-click, no code needed. Perfect for staging sites, sandbox, or site migration.

    \n

    Duplicator Pro Features

    \n

    Duplicator Pro takes Duplicator to the next level with features you’ll love, such as:

    \n
      \n
    • Drag and Drop installs – just drag the backup file to the destination site!
    • \n
    • Scheduled backups
    • \n
    • Cloud Storage to Dropbox Backups, Google Drive Backups, Microsoft OneDrive Backups, Amazon S3 Backups and FTP/SFTP Backups
    • \n
    • Custom Backups and Cloning: want just plugins, or just themes, just the database? No problem!
    • \n
    • A special 2-step streamlined installer mode for mega-fast installs
    • \n
    • Recovery Points added for very fast emergency site restores
    • \n
    • Support for managed and shared hosts such as WordPress.com, WPEngine, GoDaddy Managed, and more
    • \n
    • Multi-threaded to support larger websites & databases
    • \n
    • Migrate an entire multisite WordPress network or a sub site as a standalone site
    • \n
    • Database and user creation in the installer with cPanel API
    • \n
    • Connect to cPanel directly from the installer
    • \n
    • Custom plugin hooks for developers
    • \n
    • Advanced permissions
    • \n
    • Email notifications
    • \n
    • Professional support
    • \n
    • … and much more!
    • \n
    \n

    Supported Backup Cloud Storage Integrations

    \n

    We support any Amazon S3 compatible storage providers plus these first-party integrations.

    \n\n

    You can easily see why Duplicator is the best WordPress backup and migration plugin on the market! Want to unlock these features? Upgrade to our Pro version

    \n

    Branding Guidelines

    \n

    Duplicator® is a registered trademark of Snap Creek LLC. When writing about the backup & migration plugin by Duplicator, please make sure to uppercase the initial first letter.

    \n
      \n
    • Duplicator (correct)
    • \n
    • duplicator (incorrect)
    • \n
    \n", "donate_link": "", "num_ratings": 4805, "screenshots": {"1": {"src": "https://ps.w.org/duplicator/assets/screenshot-1.jpg?rev=1542809", "caption": "Main Interface for all Backups"}, "2": {"src": "https://ps.w.org/duplicator/assets/screenshot-2.jpg?rev=1542809", "caption": "Create Backup Step 1"}, "3": {"src": "https://ps.w.org/duplicator/assets/screenshot-3.jpg?rev=1542809", "caption": "Create Backup Step 2"}, "4": {"src": "https://ps.w.org/duplicator/assets/screenshot-4.jpg?rev=1542809", "caption": "Build Process"}, "5": {"src": "https://ps.w.org/duplicator/assets/screenshot-5.jpg?rev=1542809", "caption": "Installer Screen"}}, "support_url": "https://wordpress.org/support/plugin/duplicator/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "andreamk": {"avatar": "https://secure.gravatar.com/avatar/6a98e39825f4a832783bafc6b9c35306a16c2b39416190d87c063cb23a63c598?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/andreamk/", "display_name": "Andrea"}, "seedprod": {"avatar": "https://secure.gravatar.com/avatar/2d883c95bfb5c6bceaf025d740dd46527d3bf150601d0f2b7d9ddea5051267b5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/seedprod/", "display_name": "SeedProd"}}, "last_updated": "2025-10-14 4:33pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/duplicator.1.5.14.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f312-73d6-8dd2-0232ee3a32ac", "name": "Duplicator – Backups & Migration Plugin – Cloud Backups, Scheduled Backups, & More", "slug": "duplicator", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760459580, "version": "1.5.14"}, "support_threads": 17, "requires_plugins": [], "short_description": "The best WordPress backup and migration plugin. Quickly and easily backup ,migrate, copy, move, or clone your site from one location to another.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 15}'); -INSERT INTO public.plugins VALUES ('019a30c1-64cc-70e2-9f6e-0e4a4e9b6ad2', 'duracelltomi-google-tag-manager', 'GTM4WP – A Google Tag Manager (GTM) plugin for WordPress', 'Advanced tag management for WordPress with Google Tag Manager', '

    Google Tag Manager (GTM) is Google’s free tool for everyone to manage and deploy analytics and marketing tags as well as other code snippets
    -using an intuitive web UI. To learn more about this tool, visit the official website.

    -

    This plugin places the GTM container code snippets onto your WordPress website so that you do not need to add it manually.
    -Multiple containers are also supported!

    -

    The plugin complements your GTM setup by pushing page meta data and user information into the so called data layer.
    -Google’s official help pages includes more details about the data layer.

    -

    PHP 7.4 is required to use this plugin.

    -

    GTM container code placement

    -

    The original GTM container code is divided into two parts:

    -

    The first part is a javascript code snippet that is added to the <head> section of every page of the website.
    -This part is critical to enable all features of GTM, and this plugin helps to place this part
    -correctly on your site.

    -

    The second part is an iframe snippet that acts as a failsafe/fallback should users’ JavaScript be disabled.
    -Google recommends – for best performance – to place this code snippet directly after the opening <body> tag on each page.

    -

    Albeit not ideal, it will work when placed lower in the code. This plugin provides a code placement option for the second code snippet.

    -

    If your WordPress theme is compatible with the additions of WordPress 5.2 then this plugin will place this second code to the right place.
    -Users of the Genisis theme, GeneratePress theme, Elementor, Oxygen Builder and Beaver Builder Theme will also have this placed correctly.
    -To utilize this, set the compatibility mode in plugin options to off.

    -

    All other users can place this second code snippet using a custom PHP code (“Manually coded” option) or select the so called “Footer” option to
    -add the code lower in the code (it is not the recommended way but will work)

    -

    Basic data included

    -
      -
    • post/page titles
    • -
    • post/page dates
    • -
    • post/page category names
    • -
    • post/page tag names
    • -
    • post/page author ID and name
    • -
    • post/page ID
    • -
    • post types
    • -
    • post format
    • -
    • post count on the current page + in the current category/tag/taxonomy
    • -
    • custom terms associated with any post type
    • -
    • logged in status
    • -
    • logged in user role
    • -
    • logged in user ID (to track cross device behaviour in Google Analytics)
    • -
    • logged in user email address (both unhashed and SHA256 hased values to be used with tracking)
    • -
    • logger in user creation date
    • -
    • site search data
    • -
    • site name and id (for WordPress multisite instances)
    • -
    • IP address of the visitor (please use the explicit consent of the visitor to utilize this)
    • -
    -

    Browser / OS / Device data

    -
      -
    • browser data (name, version, engine)
    • -
    • OS data (name, version)
    • -
    • device data (type, manufacturer, model)
    • -
    -

    Data is provided using the WhichBrowser library: http://whichbrowser.net/

    -

    Weather data

    -

    (beta)

    -

    Push data about users’ current weather conditions into the dataLayer. This can be used to generate weather-related
    -audience/remarketing lists on ad platforms and allows for user segmentation in your web analytics solutions:

    -
      -
    • weather category (clouds, rain, snow, etc.)
    • -
    • weather description: more detailed data
    • -
    • temperature in Celsius or Fahrenheit
    • -
    • air pressure
    • -
    • wind speed and degrees
    • -
    -

    Weather data is queried from Open Weather Map. Depending on your websites traffic, additional fees may apply:
    -http://openweathermap.org/price

    -

    An (free) API key from OpenWeatherMap is required for this feature to work.

    -

    ipstack.com is used to determine the site visitor’s location. A (free) API key from IPStack.com is required for this feature to work:
    -https://ipstack.com/product

    -

    Media player events

    -

    (experimental)

    -

    Track users’ interaction with any embedded media:

    -
      -
    • YouTube
    • -
    • Vimeo
    • -
    • Soundcloud
    • -
    -

    DataLayer events can be chosen to fire upon media player load, media is being played, paused/stopped and optionally when
    -the user reaches 10, 20, 30, …, 90, 100% of the media duration.

    -

    Tracking is supported for embedded media using the built-in oEmbed feature of WordPress as well as most other media plugins
    -and copy/pasted codes. Players injected into the website after page load are not currently supported.

    -

    Scroll tracking

    -

    Fire tags based on how the visitor scrolls from the top to the bottom of a page.
    -An example would be to separate “readers” (who spend a specified amount of time on a page) from “scrollers”
    -(who only scroll through within seconds). You can use these events to fire Analytics tags and/or remarketing/conversion tags
    -(for micro conversions).

    -

    Scroll tracking is based on the solution originally created by

    -
      -
    • Nick Mihailovski
    • -
    • Thomas Baekdal
    • -
    • Avinash Kaushik
    • -
    • Joost de Valk
    • -
    • Eivind Savio
    • -
    • Justin Cutroni
    • -
    -

    Original script:
    -http://cutroni.com/blog/2012/02/21/advanced-content-tracking-with-google-analytics-part-1/

    -

    Blacklist & Whitelist Tag Manager tags, triggers and variables

    -

    To increase website security, you have the option to white- and blacklist tags/triggers/variables.
    -You can prevent specific tags from firing or the use of certain variable types regardless of your GTM setup.

    -

    If the Google account associated with your GTM account is being hacked, an attacker could easily
    -execute malware on your website without accessing its code on your hosting server. By blacklisting custom HTML tags
    -and/or custom JavaScript variables you can secure the Tag Manager container.

    -

    Integration

    -

    Google Tag Manager for WordPress integrates with several popular plugins. More integration to come!

    -
      -
    • Contact Form 7: fire an event when a Contact Form 7 form was submitted with any result (mail sent, mail failed, spam detected, invalid input)
    • -
    • WooCommerce: -
        -
      • Implementation of GA4 E-commerce
      • -
      • Does not support promotions since WooCommerce does not have such a feature (yet)
      • -
      • Does not support refunds
      • -
      • Compatibility with High Performance Order Storage (HPOS)
      • -
      -
    • -
    • AMP: load your AMP container on the AMP version of your pages
    • -
    • Cookiebot: use automatic cookie blocking mode if needed
    • -
    • Google Consent Mode v2: fire the “default” command with specific consent flags to integrat with non-certified Consent Management Platforms (CMPs) and plugins.
    • -
    -

    Server side containers

    -

    If you are using a server side container
    -you can enter your custom domain name and custom path to load gtm.js from your there.

    -

    Exclude specific user roles from being tracked

    -

    You can set which user roles needs to be excluded from tracking when a user with that role visits the frontend. This will completely disable the container code for that user.

    -', '1.22.1', 'Thomas Geiger', '3.4.0', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.22.1.zip', '2013-09-23 00:00:00+00', '2025-09-08 12:47:00+00', 'https://profiles.wordpress.org/duracelltomi/', 90, 153, 26, 0, 700000, 12883275, 'https://gtm4wp.com/', 'https://gtm4wp.com/', NULL, NULL, 'https://wordpress.org/support/plugin/duracelltomi-google-tag-manager/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "GTM4WP – A Google Tag Manager (GTM) plugin for WordPress", "slug": "duracelltomi-google-tag-manager", "tags": {"gtm": "gtm", "google-ads": "google ads", "tag-manager": "tag manager", "google-analytics": "google analytics", "google-tag-manager": "google tag manager"}, "added": "2013-09-23", "icons": {"1x": "https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-128x128.png?rev=1708451", "2x": "https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-256x256.png?rev=1708451"}, "author": "Thomas Geiger", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-772x250.png?rev=1708451", "high": "https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-1544x500.png?rev=1708451"}, "ratings": {"1": 15, "2": 2, "3": 5, "4": 1, "5": 130}, "version": "1.22.1", "homepage": "https://gtm4wp.com/", "requires": "3.4.0", "sections": {"faq": "\n
    \nHow can I …\n\n

    \n

    Tutorials for various Google Tag Manager settings and implementation are available on the plugin’s website:
    \nhttps://gtm4wp.com/setup-gtm4wp-features

    \n

    \n
    \nPayPal / 3rd party payment gateway transactions in WooCommerce are not being tracked in Google Analytics\n\n

    \n

    PayPal and some other 3rd party payment gateways do not redirect users back to your website upon successful transaction by default.
    \nIt offers the route back for your customer but it can happen that users close the browser before arriving at your thankyou page
    \n(aka. order received page). This means that neither Google Analytics tags or any other tags have the chance to fire.

    \n

    Enable auto-return in your payment gateway settings. This will instruct them to show a quick info page after payment
    \nand redirect the user back to your site. This will improve the accuracy and frequency of tracked transactions.

    \n

    \n
    \nPurchase event is not tracked with WooCommerce\n\n

    \n

    If you are using a 3rd party plugin that alters the default order received page in a way that does not utilize the integration hooks
    \nof WooCommerce then this can happen. Either stop using this 3rd party plugin or ask them to better mimic the behavior of the
    \ndefault order received page by supporting the woocommerce is_order_received_page and the woocommerce_thankyou actions and filters.

    \n

    \n
    \nWhy isn’t there an option to blacklist tag/variable classes\n\n

    \n

    Although Google recommends to blacklist tags and variables using classes, people struggle to know
    \nwhich tags/variables gets affected. Therefore I opted for individual tags and variables rather than classes
    \non the blacklist tabs.

    \n

    Regarding variables; ensure they are not part of any critical tags as blacklisting such variables will render said tags useless.

    \n

    \n
    \nHow can I track scroll events in Google Tag Manager?\n\n

    \n

    Google Tag Manager supports basic scroll depth tracking based on percentage or pixels natively. This plugin adds
    \nadditional scroll tracking events, more focused on capturing the users’ intent and/or engagement.

    \n

    There are five dataLayer events you can use in your rule definitions:

    \n
      \n
    • gtm4wp.reading.articleLoaded: the content has been loaded
    • \n
    • gtm4wp.reading.startReading: the visitor started to scroll. The timeToScroll dataLayer variable stores duration since the article loaded (in seconds)
    • \n
    • gtm4wp.reading.contentBottom: the visitor reached the end of the content (not the page!). timeToScroll dataLayer variable updated
    • \n
    • gtm4wp.reading.pagebottom: the visitor reached the end of the page. timeToScroll dataLayer variable updated
    • \n
    • gtm4wp.reading.readerType: based on time spent since article loaded we determine whether the user is a ‘scanner’ or ‘reader’ and store this in the readerType dataLayer variable
    • \n
    \n

    Example use cases: using these events as triggers, you can fire Google Universal Analytics and/or Google Ads remarketing/conversion tags
    \nto report micro conversions and/or to serve ads only to visitors who spend more time reading your content.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Critical Warning: Failed on All Core Function

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jaurioldm17 on August 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am writing this review to save other developers and site owners the immense amount of time I have just lost. I needed to implement standard GA4 e-commerce tracking on a professional WordPress/WooCommerce site. Based on its popularity and countless recommendations, I chose GTM4WP as the solution to generate the required dataLayer.

    \n\n\n\n

    Unfortunately, after days of intensive, professional-level debugging, I discovered that the plugin was completely non-functional in my specific—yet very common—environment.

    \n\n\n\n

    The plugin failed at its two most essential tasks:

    \n\n\n\n
      \n
    1. GTM Snippet Injection: The plugin''s most basic feature—injecting the GTM container script into the website''s <head> and <body>—did not work at all. The script was simply not present. I had to bypass this functionality entirely and inject the code manually using another method (Code Snippets) just to get our GTM container to load.
    2. \n\n\n\n
    3. E-commerce dataLayer Generation (The Deal-Breaker): This is the primary reason anyone uses this plugin. After successfully loading our GTM container manually, I ran a full test purchase. By analyzing the GTM debug mode and the site''s dataLayer object, I can confirm that GTM4WP completely failed to generate the purchase event and its corresponding ecommerce object on the WooCommerce order confirmation page. It produced absolutely nothing.
    4. \n
    \n\n\n\n

    My Technical Environment (Please read this before you install):
    To help others, here is the stack where the plugin failed. This is likely the source of the conflict:

    \n\n\n\n
      \n
    • CMS: WordPress
    • \n\n\n\n
    • E-commerce: WooCommerce
    • \n\n\n\n
    • Theme: Hello Elementor (using a child theme)
    • \n\n\n\n
    • Page Builder: Elementor Pro
    • \n\n\n\n
    • Key Detail: I am using Elementor Pro to customize the WooCommerce page templates, including the \"Thank You\" / \"Order Received\" page.
    • \n
    \n\n\n\n

    Conclusion:

    \n\n\n\n

    My conclusion is that GTM4WP is fundamentally incompatible with themes or page builders that override default WooCommerce templates—a standard practice for virtually any custom-designed website today. Because it cannot handle this common scenario, the plugin proved to be entirely useless for my project.

    \n\n\n\n

    While it may work on simple sites with basic, unmodified themes, it is not a reliable solution for professional, customized builds. The time and effort wasted diagnosing this incompatibility were substantial. I cannot recommend this plugin and strongly advise users with a similar tech stack to seek a manual implementation from the start.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thought this was beginner friendly. Is not.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wheelchair on August 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thought this was beginner friendly. Is not.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin com problema

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rbneuro on March 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Em vários sites que o plugin está instalado, após alguma atualização, o menu mobile de alguns sites não abre.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Poor Support Experience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Shubham Verma (s4shubhamverma) on December 2, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’m disappointed with the support for this plugin. I submitted a question over a week ago, but I have yet to receive any response from the support team.

    \n\n\n\n

    While the plugin itself may work fine, having reliable support is critical, especially when issues arise. Unfortunately, the lack of responsiveness has made it difficult to trust this plugin for long-term use.

    \n\n\n\n

    I hope the team improves their support response time in the future.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    GTM has stopped pushing data to contact form 7 version 6.0

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy AnDurugkar on November 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hi Thomas , I have noticed that gtm4wp.contactForm7Submitted is not getting the data when I updated the contact form 7 to version 6.0, I reverted the version back to 5.9.7 and it started working again!, will this helpfull?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I was trying to make GTM work with Litespeed cache plugin for hours

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy quentintaran on October 20, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was stuck for hours trying to tweak the litespeed cache plugin so it''d work with Google Tag Manager. The solution was simple: use gtm4wp.

    \n\n\n\n

    For some reason, this plugin avoids the conflicts with litespeed cache (allowing your tags to fire). I''m so happy this works because my site really needs the performance boost from litespeed while being able to track results.

    \n\n\n\n

    A huge thank you to the developper!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works well. Needs UI improvements

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy skylabb on September 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good plugin to integrate GTM. The UI can use some polishing up.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    no support and breaks page

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mcdeth on July 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Support is nonexistent, enabling tracking post pages will break your site if it''s not a post not woocommerce page. Excluding administrator from tracking doesn''t work neither.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Literally a nightmare with no responses from plugin author

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kirstylmarks on March 27, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin Author,... Maybe start responding to the plethora of questions regarding issues with your plugin in terms of the latest updates and i may just improve my rating. Otherwise this has been a nightmare across all our key conversions

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    GTM4WP to the rescue

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jussipv on March 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Since the \"official\" Google Analytics plugin for WooCommerce was broken by the developers and has been for weeks now I had to start looking for alternatives.

    \n\n\n\n

    I''ve used GTM4WP before as well and to be honest I''m not sure why I ever switched.

    \n\n\n\n

    Switching back to GTM4WP I can finally get conversions recorded again in my GA4! This is amazing! Why is this plugin even free? Would easily pay for it

    \n
    \n
    \n", "changelog": "

    1.22.1

    \n
      \n
    • Fixed: yet another fix to the purchase tracking. Thanks Khnaz35
    • \n
    \n

    1.22

    \n
      \n
    • Added: new WooCommerce option to change the event timeout of the select_item event. Could help some UX issues when a user has an ad blocker installed.
    • \n
    • Added: new WordPress filter GTM4WP_WPFILTER_OVERWRITE_COMO_FLAG / gtm4wp_overwrite_consent_mode_flag to overwrite Consent Mode flags in the default command. Can be used by consent banner plugins to mitigate support issues.
    • \n
    • Fixed: Unwanted content on frontend when container placement set to off and gtm4wp_the_gtm_tag() called manually. Thanks Michael Bourne
    • \n
    • Fixed: Add to cart tracking broken with Bricks template and WooCommerce
    • \n
    • Updated: bundled WhichBrowser library updated to the latest version. This is a short term solution to solve PHP erros, on the long term, the plan is to switch to Matomo Device Detector
    • \n
    • Updated: allow the / character in GTM container path to support same tag gateway
    • \n
    • Updated / Fixed: I reverted back the purchase tracking with WooCommerce to the logic present in v1.20- as the new way caused more headache than it resolved. Sorry for everyone who was affected by this.
    • \n
    \n

    1.21.1

    \n
      \n
    • Fix: undefined product_qty variable prevents add_to_cart in some cases. Thanks diegoarda
    • \n
    • Fix: clarified that WebToffee integartion is only needed with the legacy 2.x product line
    • \n
    • Fix: Reflected Cross-Site Scripting (XSS) with site search tracking. Thanks godzeo!
    • \n
    \n

    1.21

    \n

    !!! WARNING !!!
    \nSignificant change in WooCommerce integration!
    \nCheck your template whether it supports must have hook: woocommerce_thankyou

    \n
      \n
    • Added: new WooCommerce option that allows you to fire the view_item event during page load of a variable product using parent product data.
    • \n
    • Added: item_group_id parameter includes the parent ID of a variable product in WooCommerce
    • \n
    • Added: GTM4WP_WPFILTER_GET_CSP_NONCE (PHP constant) / gtm4wp_get_csp_nonce WordPress filter to add nonce to script tags supporting Content Security Policy (CSP) setups
    • \n
    • Updated: purchase event is now fired on the woocommerce_thankyou event. This will move execution time behind consent state checks in most cases making the purchase event working in more cases
    • \n
    • Updated: GTM4WP_WPFILTER_EEC_ORDER_DATA / gtm4wp_eec_order_data WordPress filter now has a second parameter passing the whole WC_Order object to the filter after the $order_data parameter
    • \n
    • Updated: no view_cart or begin_checkout events will be triggered from the backend if there are no products in the cart. This prevents wrong data collection with themes not properly supporting WooCommerce hooks
    • \n
    • Fix: load_plugin_textdomain() related PHP notice on admin page
    • \n
    \n

    1.20.3

    \n
      \n
    • Fix: notice “_load_textdomain_just_in_time was called incorrectly” – WordPress 6.7 compatibility
    • \n
    \n

    1.20.2

    \n
      \n
    • Fix: Wrong ID parameter used tracking product variations (id instead of item_id). Thanks micmaf
    • \n
    • Fix: do not track add_to_cart in product lists when ‘Select options’ or ‘View products’ buttons are clicked
    • \n
    • Fix: JavaScript reference error while updating cart count in WooCommerce. Thanks Sakuk3
    • \n
    • Fix: hash customerBillingEmailHash just like orderData.customer.billing.email_hash (for enhanced conversions, use the value in orderData)
    • \n
    • Added: minimum required WooCommerce version (currently 5.0+) is displayed now on GTM4WP admin
    • \n
    \n

    1.20.1

    \n
      \n
    • Fix: do not load GTM container when OFF and console.log OFF. Thanks morvy
    • \n
    • Fix: reverted a change where item_id in ecommerce data layer was converted to numeric type when the value was a numeric value. It will be kept as a string to preserve compatibility with other integrations.
    • \n
    • Fix: JavaScript error when element ID not set correctly in scroll tracking
    • \n
    • Changed: better normalize and hash user data with WooCommerce + orderData variable for enhanced conventions
    • \n
    • Changed: PHP code optimization by hans2103
    • \n
    • Added: New filter to be able to modify data in the orderData variable on a WooCommerce order received page. Filter can be accessed either using the GTM4WP_WPFILTER_EEC_ORDER_DATA constant or the gtm4wp_eec_order_data string.
    • \n
    \n

    1.20

    \n

    THE BIG CLEANUP RELEASE!

    \n

    Lots of deprecated features removed.
    \nThe code of WooCommerce integration was cleaned and restructured, if you have any custom code that relies on GTM4WP internal data structure,
    \nplease update the plugin on a test version of your website before updating your live site!

    \n
      \n
    • Removed: deprecated Universal Analytics events for WooCommerce
    • \n
    • Removed: deprecated filter GTM4WP_WPFILTER_AFTER_DATALAYER/gtm4wp_after_datalayer
    • \n
    • Removed: deprecated filter GTM4WP_WPFILTER_ADDGLOBALVARS/gtm4wp_add_global_vars
    • \n
    • Removed: deprecated feature that puts the ‘Do not track’ option of the browser into the data layer. It is a deprecated browser feature therefore removed from this plugin.
    • \n
    • Removed: deprecated Google Optimize integration
    • \n
    • Removed: deprecated constants GTM4WP_OPTION_BLACKLIST_MACRO_* and GTM4WP_OPTION_BLACKLIST_
    • \n
    • Removed: deprecated WordPress filter GTM4WP_WPFILTER_GETTHEGTMTAG (deprecated in v1.16)
    • \n
    • Changed: lots of internal function names and variable names changed, although is not recommended to depend on them, if you did, check your code
    • \n
    • Changed: renamed WP filter gtm4wp_datalayer_on_pageload to gtm4wp_woocommerce_datalayer_on_pageload to better reflect when it is called.
    • \n
    • Changed: orderData data layer variable in WooCommerce integration now includes keys to better support enhanced conversions setup:\n
        \n
      • orderData.customer.billing.first_name_hash
      • \n
      • orderData.customer.billing.last_name_hash
      • \n
      • orderData.customer.billing.phone_hash
      • \n
      \n
    • \n
    • Deprecated: orderData.customer.billing.emailhash, please update to use orderData.customer.billing.email_hash (with an underscore)
    • \n
    • Added: stockstatus key into the product array of every ecommerce action. Returns the value of WP_Product->get_stock_status(). Thanks hans2103.
    • \n
    • Added: integration with WebToffee GDPR Cookie Consent plugin. GTM4WP can not fire a GTM event when user consent changes or when a previously stored consent has been loaded.
    • \n
    • Fixed: add_payment_info and add_shipping_info events were not fired during checkout submit when not fired before on the page.
    • \n
    • Fixed: GTM4WP will only look for the user’s IP address in the REMOTE_ADDR server variable. You may enter a custom HTTP header instead in plugin settings.
    • \n
    \n

    1.19.1

    \n
      \n
    • Fixed: run additional checks when determing product category to prevent PHP errors in certain cases
    • \n
    • Fixed: corrected Consent Mode flag names in admin page description texts
    • \n
    \n

    1.19

    \n

    WARNING!
    \nUniversal Analytics / GA3 ecommerce events deprecated!
    \nPlease update your GTM setup so that it does not rely on any of the following GTM4WP events and the old ecommerce data layer:
    \n* gtm4wp.productClickEEC
    \n* gtm4wp.addProductToCartEEC
    \n* gtm4wp.removeFromCartEEC
    \n* gtm4wp.checkoutOptionEEC
    \n* gtm4wp.checkoutStepEEC
    \n* gtm4wp.changeDetailViewEEC
    \n* gtm4wp.orderCompletedEEC

    \n

    Instead of the above events, you can use the new GA4 ecommerce events (add_to_cart, purchase, etc.)
    \nIn the Universal Analytics GTM tag now you have an option to use the GA4 ecommerce data in the data layer.
    \nIf you are on GA360 and still collecting ecommerce data, you need to update your GTM setup to use that option firing on the GA4 ecommerce events.

    \n
      \n
    • Updated: WooCommerce integration now accepts the primary category selection of Yoast SEO and Rank Math SEO
    • \n
    • Updated: use the gtm4wp_admin_page_capability filter to modify the capability needed to use the admin page (thanks emreerkan)
    • \n
    • Fixed: price did not include the .00 postfix for integers in the add_to_cart event
    • \n
    • Added: if needed, you can turn on clearing the ecommerce object before a new GA4 event is being pushed.
    • \n
    • Added: support for Google Consent Mode default command for use cases where the consent management tool does not support it already
    • \n
    \n

    1.18.1

    \n
      \n
    • Fixed: PHP notice about Undefined variable: blocking_cookie
    • \n
    \n

    1.18

    \n
      \n
    • Fixed: error while checking the new customer status in WooCommerce on the order received page (thanks morvy)
    • \n
    • Fixed: Call to a member function get_meta() on null error on WooCommerce order received page (thanks Dekadinious)
    • \n
    • Updated: WordPress and WooCommerce compatibility
    • \n
    • Updated: Deprecated Google Optimize integration as the tool is sunsetting in September 2023
    • \n
    • Added: Create a cookie named block_gtm4wp_geoip after a specific user selected cookie preferences. Set the value to either “yes”, “true”, “on” or “1” and the GeoIP (and weather API) feature will be disabled for that particular user
    • \n
    \n", "description": "

    Google Tag Manager (GTM) is Google’s free tool for everyone to manage and deploy analytics and marketing tags as well as other code snippets
    \nusing an intuitive web UI. To learn more about this tool, visit the official website.

    \n

    This plugin places the GTM container code snippets onto your WordPress website so that you do not need to add it manually.
    \nMultiple containers are also supported!

    \n

    The plugin complements your GTM setup by pushing page meta data and user information into the so called data layer.
    \nGoogle’s official help pages includes more details about the data layer.

    \n

    PHP 7.4 is required to use this plugin.

    \n

    GTM container code placement

    \n

    The original GTM container code is divided into two parts:

    \n

    The first part is a javascript code snippet that is added to the <head> section of every page of the website.
    \nThis part is critical to enable all features of GTM, and this plugin helps to place this part
    \ncorrectly on your site.

    \n

    The second part is an iframe snippet that acts as a failsafe/fallback should users’ JavaScript be disabled.
    \nGoogle recommends – for best performance – to place this code snippet directly after the opening <body> tag on each page.

    \n

    Albeit not ideal, it will work when placed lower in the code. This plugin provides a code placement option for the second code snippet.

    \n

    If your WordPress theme is compatible with the additions of WordPress 5.2 then this plugin will place this second code to the right place.
    \nUsers of the Genisis theme, GeneratePress theme, Elementor, Oxygen Builder and Beaver Builder Theme will also have this placed correctly.
    \nTo utilize this, set the compatibility mode in plugin options to off.

    \n

    All other users can place this second code snippet using a custom PHP code (“Manually coded” option) or select the so called “Footer” option to
    \nadd the code lower in the code (it is not the recommended way but will work)

    \n

    Basic data included

    \n
      \n
    • post/page titles
    • \n
    • post/page dates
    • \n
    • post/page category names
    • \n
    • post/page tag names
    • \n
    • post/page author ID and name
    • \n
    • post/page ID
    • \n
    • post types
    • \n
    • post format
    • \n
    • post count on the current page + in the current category/tag/taxonomy
    • \n
    • custom terms associated with any post type
    • \n
    • logged in status
    • \n
    • logged in user role
    • \n
    • logged in user ID (to track cross device behaviour in Google Analytics)
    • \n
    • logged in user email address (both unhashed and SHA256 hased values to be used with tracking)
    • \n
    • logger in user creation date
    • \n
    • site search data
    • \n
    • site name and id (for WordPress multisite instances)
    • \n
    • IP address of the visitor (please use the explicit consent of the visitor to utilize this)
    • \n
    \n

    Browser / OS / Device data

    \n
      \n
    • browser data (name, version, engine)
    • \n
    • OS data (name, version)
    • \n
    • device data (type, manufacturer, model)
    • \n
    \n

    Data is provided using the WhichBrowser library: http://whichbrowser.net/

    \n

    Weather data

    \n

    (beta)

    \n

    Push data about users’ current weather conditions into the dataLayer. This can be used to generate weather-related
    \naudience/remarketing lists on ad platforms and allows for user segmentation in your web analytics solutions:

    \n
      \n
    • weather category (clouds, rain, snow, etc.)
    • \n
    • weather description: more detailed data
    • \n
    • temperature in Celsius or Fahrenheit
    • \n
    • air pressure
    • \n
    • wind speed and degrees
    • \n
    \n

    Weather data is queried from Open Weather Map. Depending on your websites traffic, additional fees may apply:
    \nhttp://openweathermap.org/price

    \n

    An (free) API key from OpenWeatherMap is required for this feature to work.

    \n

    ipstack.com is used to determine the site visitor’s location. A (free) API key from IPStack.com is required for this feature to work:
    \nhttps://ipstack.com/product

    \n

    Media player events

    \n

    (experimental)

    \n

    Track users’ interaction with any embedded media:

    \n
      \n
    • YouTube
    • \n
    • Vimeo
    • \n
    • Soundcloud
    • \n
    \n

    DataLayer events can be chosen to fire upon media player load, media is being played, paused/stopped and optionally when
    \nthe user reaches 10, 20, 30, …, 90, 100% of the media duration.

    \n

    Tracking is supported for embedded media using the built-in oEmbed feature of WordPress as well as most other media plugins
    \nand copy/pasted codes. Players injected into the website after page load are not currently supported.

    \n

    Scroll tracking

    \n

    Fire tags based on how the visitor scrolls from the top to the bottom of a page.
    \nAn example would be to separate “readers” (who spend a specified amount of time on a page) from “scrollers”
    \n(who only scroll through within seconds). You can use these events to fire Analytics tags and/or remarketing/conversion tags
    \n(for micro conversions).

    \n

    Scroll tracking is based on the solution originally created by

    \n
      \n
    • Nick Mihailovski
    • \n
    • Thomas Baekdal
    • \n
    • Avinash Kaushik
    • \n
    • Joost de Valk
    • \n
    • Eivind Savio
    • \n
    • Justin Cutroni
    • \n
    \n

    Original script:
    \nhttp://cutroni.com/blog/2012/02/21/advanced-content-tracking-with-google-analytics-part-1/

    \n

    Blacklist & Whitelist Tag Manager tags, triggers and variables

    \n

    To increase website security, you have the option to white- and blacklist tags/triggers/variables.
    \nYou can prevent specific tags from firing or the use of certain variable types regardless of your GTM setup.

    \n

    If the Google account associated with your GTM account is being hacked, an attacker could easily
    \nexecute malware on your website without accessing its code on your hosting server. By blacklisting custom HTML tags
    \nand/or custom JavaScript variables you can secure the Tag Manager container.

    \n

    Integration

    \n

    Google Tag Manager for WordPress integrates with several popular plugins. More integration to come!

    \n
      \n
    • Contact Form 7: fire an event when a Contact Form 7 form was submitted with any result (mail sent, mail failed, spam detected, invalid input)
    • \n
    • WooCommerce:\n
        \n
      • Implementation of GA4 E-commerce
      • \n
      • Does not support promotions since WooCommerce does not have such a feature (yet)
      • \n
      • Does not support refunds
      • \n
      • Compatibility with High Performance Order Storage (HPOS)
      • \n
      \n
    • \n
    • AMP: load your AMP container on the AMP version of your pages
    • \n
    • Cookiebot: use automatic cookie blocking mode if needed
    • \n
    • Google Consent Mode v2: fire the “default” command with specific consent flags to integrat with non-certified Consent Management Platforms (CMPs) and plugins.
    • \n
    \n

    Server side containers

    \n

    If you are using a server side container
    \nyou can enter your custom domain name and custom path to load gtm.js from your there.

    \n

    Exclude specific user roles from being tracked

    \n

    You can set which user roles needs to be excluded from tracking when a user with that role visits the frontend. This will completely disable the container code for that user.

    \n", "screenshots": "
    1. \"Admin

      Admin panel

    2. \"Basic

      Basic settings

    3. \"Events\"

      Events

    4. \"Integration

      Integration panel

    5. \"Advanced

      Advanced settings

    6. \"Scroll

      Scroll tracking

    ", "installation": "
      \n
    1. Upload duracelltomi-google-tag-manager-for-wordpress to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to Settings / Google Tag Manager and enter your Google Tag Manager container ID and set additional options
    6. \n
    \n"}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.8.zip", "0.9": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.9.zip", "1.0": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.9.zip", "1.10": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.10.zip", "1.11": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.zip", "1.12": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.12.zip", "1.13": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.13.zip", "1.14": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.14.zip", "1.15": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.15.zip", "1.16": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.16.zip", "1.18": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.18.zip", "1.19": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.19.zip", "1.20": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.20.zip", "1.21": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.21.zip", "1.22": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.22.zip", "0.5.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.5.1.zip", "0.7.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.7.1.zip", "0.8.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.8.1.zip", "0.8.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.8.2.zip", "0.9.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.0.9.1.zip", "1.1.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.1.1.zip", "1.3.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.3.2.zip", "1.5.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.5.1.zip", "1.6.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.6.1.zip", "1.7.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.7.2.zip", "1.8.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.8.1.zip", "1.9.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.zip", "1.10.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.10.1.zip", "1.11.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.2.zip", "1.11.3": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.3.zip", "1.11.4": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.4.zip", "1.11.5": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.5.zip", "1.11.6": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.11.6.zip", "1.12.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.12.2.zip", "1.12.3": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.12.3.zip", "1.13.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.13.1.zip", "1.14.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.14.1.zip", "1.14.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.14.2.zip", "1.15.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.15.1.zip", "1.15.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.15.2.zip", "1.16.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.16.1.zip", "1.16.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.16.2.zip", "1.18.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.18.1.zip", "1.19.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.19.1.zip", "1.20.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.20.1.zip", "1.20.2": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.20.2.zip", "1.20.3": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.20.3.zip", "1.21.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.21.1.zip", "1.22.1": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.22.1.zip"}, "downloaded": 12883275, "description": "

    Google Tag Manager (GTM) is Google’s free tool for everyone to manage and deploy analytics and marketing tags as well as other code snippets
    \nusing an intuitive web UI. To learn more about this tool, visit the official website.

    \n

    This plugin places the GTM container code snippets onto your WordPress website so that you do not need to add it manually.
    \nMultiple containers are also supported!

    \n

    The plugin complements your GTM setup by pushing page meta data and user information into the so called data layer.
    \nGoogle’s official help pages includes more details about the data layer.

    \n

    PHP 7.4 is required to use this plugin.

    \n

    GTM container code placement

    \n

    The original GTM container code is divided into two parts:

    \n

    The first part is a javascript code snippet that is added to the <head> section of every page of the website.
    \nThis part is critical to enable all features of GTM, and this plugin helps to place this part
    \ncorrectly on your site.

    \n

    The second part is an iframe snippet that acts as a failsafe/fallback should users’ JavaScript be disabled.
    \nGoogle recommends – for best performance – to place this code snippet directly after the opening <body> tag on each page.

    \n

    Albeit not ideal, it will work when placed lower in the code. This plugin provides a code placement option for the second code snippet.

    \n

    If your WordPress theme is compatible with the additions of WordPress 5.2 then this plugin will place this second code to the right place.
    \nUsers of the Genisis theme, GeneratePress theme, Elementor, Oxygen Builder and Beaver Builder Theme will also have this placed correctly.
    \nTo utilize this, set the compatibility mode in plugin options to off.

    \n

    All other users can place this second code snippet using a custom PHP code (“Manually coded” option) or select the so called “Footer” option to
    \nadd the code lower in the code (it is not the recommended way but will work)

    \n

    Basic data included

    \n
      \n
    • post/page titles
    • \n
    • post/page dates
    • \n
    • post/page category names
    • \n
    • post/page tag names
    • \n
    • post/page author ID and name
    • \n
    • post/page ID
    • \n
    • post types
    • \n
    • post format
    • \n
    • post count on the current page + in the current category/tag/taxonomy
    • \n
    • custom terms associated with any post type
    • \n
    • logged in status
    • \n
    • logged in user role
    • \n
    • logged in user ID (to track cross device behaviour in Google Analytics)
    • \n
    • logged in user email address (both unhashed and SHA256 hased values to be used with tracking)
    • \n
    • logger in user creation date
    • \n
    • site search data
    • \n
    • site name and id (for WordPress multisite instances)
    • \n
    • IP address of the visitor (please use the explicit consent of the visitor to utilize this)
    • \n
    \n

    Browser / OS / Device data

    \n
      \n
    • browser data (name, version, engine)
    • \n
    • OS data (name, version)
    • \n
    • device data (type, manufacturer, model)
    • \n
    \n

    Data is provided using the WhichBrowser library: http://whichbrowser.net/

    \n

    Weather data

    \n

    (beta)

    \n

    Push data about users’ current weather conditions into the dataLayer. This can be used to generate weather-related
    \naudience/remarketing lists on ad platforms and allows for user segmentation in your web analytics solutions:

    \n
      \n
    • weather category (clouds, rain, snow, etc.)
    • \n
    • weather description: more detailed data
    • \n
    • temperature in Celsius or Fahrenheit
    • \n
    • air pressure
    • \n
    • wind speed and degrees
    • \n
    \n

    Weather data is queried from Open Weather Map. Depending on your websites traffic, additional fees may apply:
    \nhttp://openweathermap.org/price

    \n

    An (free) API key from OpenWeatherMap is required for this feature to work.

    \n

    ipstack.com is used to determine the site visitor’s location. A (free) API key from IPStack.com is required for this feature to work:
    \nhttps://ipstack.com/product

    \n

    Media player events

    \n

    (experimental)

    \n

    Track users’ interaction with any embedded media:

    \n
      \n
    • YouTube
    • \n
    • Vimeo
    • \n
    • Soundcloud
    • \n
    \n

    DataLayer events can be chosen to fire upon media player load, media is being played, paused/stopped and optionally when
    \nthe user reaches 10, 20, 30, …, 90, 100% of the media duration.

    \n

    Tracking is supported for embedded media using the built-in oEmbed feature of WordPress as well as most other media plugins
    \nand copy/pasted codes. Players injected into the website after page load are not currently supported.

    \n

    Scroll tracking

    \n

    Fire tags based on how the visitor scrolls from the top to the bottom of a page.
    \nAn example would be to separate “readers” (who spend a specified amount of time on a page) from “scrollers”
    \n(who only scroll through within seconds). You can use these events to fire Analytics tags and/or remarketing/conversion tags
    \n(for micro conversions).

    \n

    Scroll tracking is based on the solution originally created by

    \n
      \n
    • Nick Mihailovski
    • \n
    • Thomas Baekdal
    • \n
    • Avinash Kaushik
    • \n
    • Joost de Valk
    • \n
    • Eivind Savio
    • \n
    • Justin Cutroni
    • \n
    \n

    Original script:
    \nhttp://cutroni.com/blog/2012/02/21/advanced-content-tracking-with-google-analytics-part-1/

    \n

    Blacklist & Whitelist Tag Manager tags, triggers and variables

    \n

    To increase website security, you have the option to white- and blacklist tags/triggers/variables.
    \nYou can prevent specific tags from firing or the use of certain variable types regardless of your GTM setup.

    \n

    If the Google account associated with your GTM account is being hacked, an attacker could easily
    \nexecute malware on your website without accessing its code on your hosting server. By blacklisting custom HTML tags
    \nand/or custom JavaScript variables you can secure the Tag Manager container.

    \n

    Integration

    \n

    Google Tag Manager for WordPress integrates with several popular plugins. More integration to come!

    \n
      \n
    • Contact Form 7: fire an event when a Contact Form 7 form was submitted with any result (mail sent, mail failed, spam detected, invalid input)
    • \n
    • WooCommerce:\n
        \n
      • Implementation of GA4 E-commerce
      • \n
      • Does not support promotions since WooCommerce does not have such a feature (yet)
      • \n
      • Does not support refunds
      • \n
      • Compatibility with High Performance Order Storage (HPOS)
      • \n
      \n
    • \n
    • AMP: load your AMP container on the AMP version of your pages
    • \n
    • Cookiebot: use automatic cookie blocking mode if needed
    • \n
    • Google Consent Mode v2: fire the “default” command with specific consent flags to integrat with non-certified Consent Management Platforms (CMPs) and plugins.
    • \n
    \n

    Server side containers

    \n

    If you are using a server side container
    \nyou can enter your custom domain name and custom path to load gtm.js from your there.

    \n

    Exclude specific user roles from being tracked

    \n

    You can set which user roles needs to be excluded from tracking when a user with that role visits the frontend. This will completely disable the container code for that user.

    \n", "donate_link": "https://gtm4wp.com/", "num_ratings": 153, "screenshots": {"1": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-1.jpg?rev=1708455", "caption": "Admin panel"}, "2": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-2.jpg?rev=1708455", "caption": "Basic settings"}, "3": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-3.jpg?rev=1708455", "caption": "Events"}, "4": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-4.jpg?rev=1708455", "caption": "Integration panel"}, "5": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-5.jpg?rev=1708455", "caption": "Advanced settings"}, "6": {"src": "https://ps.w.org/duracelltomi-google-tag-manager/assets/screenshot-6.jpg?rev=1708455", "caption": "Scroll tracking"}}, "support_url": "https://wordpress.org/support/plugin/duracelltomi-google-tag-manager/", "contributors": {"duracelltomi": {"avatar": "https://secure.gravatar.com/avatar/03ee154361278e764499efcc4ac1682262312ac2f215630c906c2dac6a54c53d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/duracelltomi/", "display_name": "Thomas Geiger"}}, "last_updated": "2025-09-08 12:47pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.22.1.zip", "author_profile": "https://profiles.wordpress.org/duracelltomi/", "business_model": false, "repository_url": "", "upgrade_notice": {"1.18": "

    Bugfixes and new features

    ", "1.19": "

    Added features

    ", "1.20": "
      \n
    • Lots of deprecated features removed, please read announcement post before upgrading!
    • \n
    ", "1.21": "

    Important update for WooCommerce users, please check the full changelog!

    ", "1.22": "

    Updated WhichBrowser library, new WooCommerce option, new filter for Consent Mode flags, fixes

    ", "1.18.1": "

    Bugfix release

    ", "1.19.1": "

    Bugfix release

    ", "1.20.1": "

    Bugfix release

    ", "1.20.2": "

    Bugfix release

    ", "1.20.3": "

    Bugfix release

    ", "1.21.1": "

    Bugfix release with an XSS fix

    ", "1.22.1": "

    Bugfix release

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f323-71d6-8b05-651be317adf2", "name": "GTM4WP – A Google Tag Manager (GTM) plugin for WordPress", "slug": "duracelltomi-google-tag-manager", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1757335620, "version": "1.22.1"}, "support_threads": 26, "requires_plugins": [], "short_description": "Advanced tag management for WordPress with Google Tag Manager", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-64d6-73ea-b70f-5fb1cd77d4ad', 'elementor', 'Elementor Website Builder – More Than Just a Page Builder', 'The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!', '

    -

    THE #1 NO CODE DRAG & DROP WORDPRESS WEBSITE BUILDER POWERING OVER 18M WEBSITES WORLDWIDE, NOW WITH AI.

    -

    Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly.

    -

    Unlock all features with Elementor Pro.

    -

    Need fast and secure cloud hosting for your Elementor site? Try out Elementor Hosting Powered by Google Cloud & Cloudflare. 4.9/5 TrustPilot score.

    -

    🌟 Create Professional Stunning Websites

    -
      -
    • Intuitive Drag & Drop Builder: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.
    • -
    • Pixel-Perfect Design Tools: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.
    • -
    • Template Library: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.
    • -
    • Advanced Widgets: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.
    • -
    • AI Capabilities: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.
    • -
    -

    🗝️ Key features:

    -
      -
    • Design System: Use Elementor’s Design System for consistent colors, typography, and design elements, ensuring a cohesive, professional look.
    • -
    • Responsive Design: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.
    • -
    • Mask Shapes: Turning any element, like an image or video, into whatever shape you desire to create standout designs.
    • -
    • CSS Transform: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.
    • -
    • Entrance Animations: Add entrance animations to elements to create engaging and interactive user experiences.
    • -
    • Revision History: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.
    • -
    • Developer-Friendly: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.
    • -
    • Floating Buttons: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.
    • -
    • Theme Builder [Pro]: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.
    • -
    • Popup Builder [Pro]: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.
    • -
    • Forms [Pro]: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.
    • -
    • WooCommerce Builder [Pro]: Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.
    • -
    • Dynamic Content [Pro]: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.
    • -
    • Notes [Pro]: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.
    • -
    • Custom Code [Pro]: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.
    • -
    • Custom CSS [Pro]: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.
    • -
    • Motion Effects [Pro]: Add advanced motion effects to elements for a more dynamic and engaging user experience.
    • -
    • Custom Fonts & Icons [Pro]: Upload and use custom fonts and icons to match your brand’s identity.
    • -
    -

    😍 Elementor FREE widgets

    -

    Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:

    -
      -
    • Heading. Add eye-catching headlines.
    • -
    • Image. Control the size, opacity and more.
    • -
    • Text Editor. Just like the WordPress editor.
    • -
    • Video. Add YouTube, Vimeo, Dailymotion or self-hosted videos.
    • -
    • Button. Create interactive buttons.
    • -
    • Link in Bio. Build link in bio components to promote your business / services.
    • -
    • Image Box. A box with image, headline and text.
    • -
    • Testimonials. Customer testimonials.
    • -
    • Icon. Place one or more of 600+ icons available.
    • -
    • Icon Box. An icon, headline, and text with one widget.
    • -
    • Social Icons. Link to your social pages with the Facebook/X (formerly Twitter) icons.
    • -
    • Image Gallery. Display your images in a grid.
    • -
    • Image Carousel. Create rotating carousels or sliders for chosen images.
    • -
    • Icon List. Use any icon to create a bullet list.
    • -
    • Counter. Show numbers in an escalating manner.
    • -
    • Progress Bar. Include an escalating progress bar.
    • -
    • Nested Tabs. Display content in vertical or horizontal tabs.
    • -
    • Nested Accordion. Display any type of content in collapsible sections.
    • -
    • Toggle. Use the Toggle to hide or display content, like FAQ.
    • -
    • Rating. Display how many stars (or another icon) other visitors gave.
    • -
    • Alert. Include a colored alert box to draw visitor’s attention.
    • -
    • HTML. Insert code into the page.
    • -
    • Shortcode. Insert shortcodes from any plugin into the page.
    • -
    • Menu Anchor. Link any menu to this anchor.
    • -
    • Read More. Set the Read More cut-off for the excerpt in archive pages.
    • -
    • Sidebar. Add sidebars onto the page.
    • -
    • Google Maps. Embed maps into the page.
    • -
    • SoundCloud. Add SoundCloud audio bits.
    • -
    • Divider. Separate content with a designed divider.
    • -
    • Spacer. Add space between elements.
    • -
    • Text Path. Attach your text to a path.
    • -
    • And counting…
    • -
    -

    🚀 Enhance Your Website

    -

    High-Performing Websites: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.

    -

    Key features include:

    -
      -
    • Reduced DOM Output: Streamlined HTML structure for faster rendering.
    • -
    • Improved Media File Loading: Optimized loading of images, videos, and other media assets.
    • -
    • Reduced CSS and JS Files: Minimized and concatenated stylesheets and scripts for quicker loading times.
    • -
    • Lazy Loading: Deferred loading of non-critical resources to improve initial page load speed.
    • -
    • Faster Font Loading: Efficient delivery of web fonts to enhance text rendering speed.
    • -
    • Optimized Front-End Asset Loading: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.
    • -
    • Element Caching: Cache frequently accessed design elements to reduce server response time and enhance overall performance.
    • -
    -

    🔥 Elementor Pro Features

    -

    Create unparalleled websites while saving time, money and resources with Elementor Pro’s full website builder. Get access to 100+ professional widgets, features, and tools.

    -

    Pro Design Widgets:

    -
      -
    1. Posts: Display your blog posts with customizable layouts and styles.
    2. -
    3. Share Buttons: Allow visitors to easily share your content on various social media platforms.
    4. -
    5. Portfolio: Showcase your work or projects with stunning portfolio layouts.
    6. -
    7. Slides: Create dynamic slideshows with custom animations and transitions.
    8. -
    9. Form: Design and customize advanced forms for user interaction and data collection.
    10. -
    11. Login: Add a login form or user registration module to your website.
    12. -
    13. Nav Menu: Customize and style your website’s navigation menu for better user experience.
    14. -
    15. Animated Headline: Create attention-grabbing headlines with animated effects.
    16. -
    17. Price Table: Display pricing plans or packages in a structured and visually appealing format.
    18. -
    19. Price List: Showcase a list of prices or services with customizable styling options.
    20. -
    21. Gallery: Create beautiful image galleries with various layout options and lightbox support.
    22. -
    23. Flip Box: Add interactive flip animations to highlight content or features.
    24. -
    25. Call to Action: Encourage user interaction and conversions with compelling call-to-action sections.
    26. -
    27. Media Carousel: Showcase a carousel of media files such as images or videos.
    28. -
    29. Testimonial Carousel: Display client testimonials in a carousel format for social proof.
    30. -
    31. Nested Carousel: Create nested carousels for more complex content organization.
    32. -
    33. Loop Carousel: Display content in a looped carousel for continuous viewing.
    34. -
    35. Table Of Content: Generate a table of contents for longer articles or guides to improve navigation.
    36. -
    37. Countdown: Add countdown timers to create urgency for promotions or events.
    38. -
    39. Facebook Page: Embed your Facebook page feed or content onto your website.
    40. -
    41. Blockquote: Highlight quotes or testimonials with stylish formatting options.
    42. -
    43. Template: Save and reuse design templates for consistent branding and layout.
    44. -
    45. Reviews: Showcase customer reviews and ratings to build trust and credibility.
    46. -
    47. Facebook Button: Add buttons to promote interactions with your Facebook page or content.
    48. -
    49. Facebook Embed: Embed Facebook posts or content onto your website.
    50. -
    51. Facebook Comments: Enable Facebook comments on your website’s pages or posts.
    52. -
    53. PayPal Button: Integrate PayPal buttons for easy online payments.
    54. -
    55. Stripe Button: Integrate Stripe payment buttons to facilitate secure online transactions.
    56. -
    57. Lottie Widget: Add Lottie animations to enhance visual appeal and engagement.
    58. -
    59. Code Highlight: Display code snippets with syntax highlighting for better readability.
    60. -
    61. Video Playlist: Create and customize playlists for video content on your website.
    62. -
    63. Mega Menu: Customize advanced menus for better navigation and displaying complex content.
    64. -
    65. Off Canvas: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.
    66. -
    -

    Pro Theme Widgets:

    -

    Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more

    -
      -
    1. Post Title: Customize the title of individual blog posts or pages.
    2. -
    3. Post Excerpt: Display a brief summary or teaser of your blog posts.
    4. -
    5. Post Content: Customize the main content area of your blog posts or pages.
    6. -
    7. Featured Image: Set and customize featured images for blog posts or pages.
    8. -
    9. Author Box: Display author information and bios on blog posts.
    10. -
    11. Post Comments: Customize the appearance and functionality of comments sections on your website.
    12. -
    13. Post Navigation: Add navigation links to adjacent posts for easy browsing.
    14. -
    15. Post Info: Display additional information about blog posts, such as author and date.
    16. -
    17. Site Logo: Upload and customize your website’s logo for branding purposes.
    18. -
    19. Site Title: Customize the title of your website.
    20. -
    21. Page Title: Customize the title of individual pages.
    22. -
    23. Search Bar: Add a search bar to allow users to search your website’s content.
    24. -
    25. Breadcrumbs: Display hierarchical navigation paths for better user navigation.
    26. -
    27. Sitemap: Generate a sitemap for better search engine indexing and user navigation.
    28. -
    29. Loop Grid: Design and customize grid layouts for blog post archives or product listings.
    30. -
    -

    Pro WooCommerce Widgets:

    -

    Design and customize a complete online shopping experience across your entire website.

    -
      -
    1. Product: Display individual products with customizable layouts and styles.
    2. -
    3. Breadcrumbs: Display hierarchical navigation paths for better user navigation within your store.
    4. -
    5. Product Title: Customize the title of individual products.
    6. -
    7. Product Images: Set and customize images for product listings.
    8. -
    9. Product Price: Display the price of individual products.
    10. -
    11. Add To Cart: Add customizable add to cart buttons for easy purchasing.
    12. -
    13. Product Rating: Display ratings and reviews for products.
    14. -
    15. Product Stock: Display stock availability for products.
    16. -
    17. Product Meta: Display additional information about products, such as SKU and categories.
    18. -
    19. Product Content: Customize the main content area of product descriptions.
    20. -
    21. Short Description: Display brief summaries or teasers of products.
    22. -
    23. Product Data Tabs: Organize product information into tabbed sections for better organization.
    24. -
    25. Additional Information: Display additional details about products, such as dimensions and weight.
    26. -
    27. Product Related: Showcase related products to encourage additional purchases.
    28. -
    29. Upsells: Promote upsell products to increase average order value.
    30. -
    31. Products: Display a grid or list of products with customizable settings.
    32. -
    33. Custom Add To Cart: Customize the add to cart button for specific products.
    34. -
    35. WooCommerce Pages: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.
    36. -
    37. Product Categories: Display product categories for easy navigation within your store.
    38. -
    39. Menu Cart: Display a cart icon in your navigation menu for easy access to the shopping cart.
    40. -
    41. Cart: Customize the appearance and functionality of the shopping cart page.
    42. -
    43. Checkout: Customize the appearance and functionality of the checkout page.
    44. -
    45. My Account: Customize the appearance and functionality of the customer account area.
    46. -
    47. Purchase Summary: Display a summary of purchases during the checkout process.
    48. -
    49. WooCommerce Notices: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.
    50. -
    -

    Build professional websites with Elementor Pro!

    -

    🔒 SECURITY AND COMPLIANCE

    -

    Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.

    -

    We encourage ethical security research through our Bug Bounty program. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.

    -

    For more information: Trust Center.

    -

    ♿ Accessibility Best Practices

    -

    Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.

    -

    🌐 Translated to 63+ languages, includes RTL support

    -

    Elementor supports multiple languages, typographies, and RTL, with editor translations in over 63 languages.

    -

    It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via translate.wordpress.org. See our guide on how to translate and localize the plugin.

    -

    ⏩ Use of 3rd Party Services

    -

    To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:

    -
      -
    • Google Fonts – are loaded to add additional fonts to your website. Google’s TOS and Privacy Policy
    • -
    • Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly mentioned, requiring your approval and manual opt-in. Learn more in our TOS and Privacy Policy.
    • -
    -

    📧 Related Products by Elementor

    -

    Image Optimizer: Superior image compression for faster, high-quality website performance.

    -

    Site Mailer: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.

    -

    📣 See What Our Users Have to Say

    -
    -

    “Elementor is hands down the best page builder out there” – ★★★★★ Graphicvision1

    -

    “An incredibly user-friendly plugin” – ★★★★★ Hyeyoga

    -

    “Easily, my most used WP plugin” – ★★★★★ Xander Venske

    -

    “I upgraded to the Pro version and just love this plugin!” – ★★★★★ Andybarn56

    -

    “Excellent product with great tech support” – ★★★★★ Martywilsonnj

    -
    -

    More testimonials

    -

    🌍 Join a Global Community

    -

    Join a global community that helps each other achieve their goals.

    -
      -
    • Discord Community – Topic and language-specific channels, plus Ella, an amazing AI helper, ready to assist you.
    • -
    • Facebook Community – Over 150K+ members, offering support, advice, feedback, and tutorials.
    • -
    • GitHub Community – Get information about releases, request features, or report a bug.
    • -
    • Elementor Addons, Themes, and Kits Themes and Kits – created specifically for Elementor.
    • -
    • Learn valuable insights and techniques from our YouTube Channel.
    • -
    • Access our Academy and Help Center – Find guides, tutorials, and resources to answer your questions and boost creativity.
    • -
    • Show your support by rating us on WordPress. Your feedback fuels our growth! 🤗
    • -
    • If you have questions or need support, visit the Plugin’s Forum. Elementor Pro users can get 24/7 premium support, …
    • -
    -', '3.32.5', 'Elementor', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/elementor.3.32.5.zip', '2016-05-30 00:00:00+00', '2025-10-21 13:44:00+00', 'https://profiles.wordpress.org/elemntor/', 90, 7129, 109, 86, 10000000, 714027524, 'https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash', NULL, 'commercial', 'https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support', 'https://wordpress.org/support/plugin/elementor/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Elementor Website Builder – More Than Just a Page Builder", "slug": "elementor", "tags": {"editor": "editor", "elementor": "elementor", "landing-page": "landing page", "page-builder": "page builder", "drag-and-drop": "drag-and-drop"}, "added": "2016-05-30", "icons": {"1x": "https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597", "2x": "https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597"}, "author": "Elementor", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133", "high": "https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133"}, "ratings": {"1": 631, "2": 106, "3": 108, "4": 218, "5": 6066}, "version": "3.32.5", "homepage": "https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash", "requires": "6.6", "sections": {"faq": "\n
    \nHow do I install Elementor?\n\n

    \n

    To install the free version of Elementor, follow the steps below:
    \nFrom your WordPress dashboard -> Go to Plugins -> Click on ‘Add new’-> In the Search field, enter Elementor and choose Elementor website builder.
    \nPress install -> After installation, click Activate.

    \n

    \n
    \nDoes Elementor work with all the themes?\n\n

    \n

    Elementor works all the themes that respect the coding standards of WordPress set by its Codex. It is recommended to use Elementor’s Hello Theme, a lightweight blank canvas, to enjoy full flexibility when using Elementor, and optimize your experience.

    \n

    \n
    \nIs Elementor compatible with Gutenberg?\n\n

    \n

    Elementor and Gutenberg work seamlessly together. As a user, you can easily decide which editor to use at every point while editing your site.

    \n

    \n
    \nCan I create an online store?\n\n

    \n

    Yes, with the Elementor Pro WooCommerce Builder you can customize every page of your store to create an amazing customer experience that drives sales.

    \n

    \n
    \nDoes it work with other WordPress plugins?\n\n

    \n

    It works with almost all the plugins. If you experience an incompatibility issue, please report it to us and to the plugin that conflicts with Elementor.

    \n

    \n
    \nDo I need to know how to code?\n\n

    \n

    No! Elementor provides you with all the widgets and features that you need to build a professional website without using code.

    \n

    \n
    \nDo I need to know how to design?\n\n

    \n

    No, you can choose between professionally designed kits and templates that fit toevery industry and have all you need to create your own professional website.

    \n

    \n
    \nWill Elementor slow down my website?\n\n

    \n

    As Elementor prioritizes speed and performance, you enjoy better and faster performance with each new version of Elementor. When testing the same page layout on older versions you can see a significant performance improvement, from a score of 82 in Google PageSpeed Insight in version 3.1, to a score of 95 i in version 3.5.

    \n

    \n
    \nIs my site secure with Elementor?\n\n

    \n

    The security of your website is extremely important to us and we take proactive measures to assure that your websites are secure. Elementor is ISO 27001 certified, and has a dedicated team of security professionals that implements industry best-practices for maximum security and compliance, 24/7.

    \n

    There is also a managed security Bug Bounty program, utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.

    \n

    \n
    \nCan I buy templates separately?\n\n

    \n

    Of course, you can use any template that supports Elementor.

    \n

    \n
    \nIs Elementor compatible with Post and Custom Post Types?\n\n

    \n

    Of course! You can set which post types will enable Elementor in the settings page.

    \n

    \n
    \nWhat is the difference between Elementor’s free Plugin and Elementor Pro\n\n

    \n

    Elementor’s Free version allows you to explore our revolutionary drag & drop live editor, basic widgets and templates. Elementor Pro (Essential, Advanced, Expert, Studio, and Agency) empowers you with more professional tools that speed up your workflow, give you access to human-powered support, help you build more advanced content, and convert visitors. See full comparison here.

    \n

    \n
    \nHow can I become a Contributor\n\n

    \n

    If you want to contribute, go to our Elementor GitHub Repository and see where you can help.
    \nYou can also add a new language via translate.wordpress.org. We’ve built a short guide explaining how to translate and localize the plugin.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Increíble constructor de paginas web

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jnegrete on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Sea vuelto mi constructor web por defecto, cada vez mejor

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tsvetelina Yankova

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tsvetelina456 on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s very user friendly , although it would be nicer to load things faster

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    O melhor editor para fazer sites profissionais e lojas online

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ZnetGuru (sterrivel) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Na nossa agência usamos o Elementor Website Builder diariamente, tanto em sites profissionais como em projetos institucionais, blogs e lojas com WooCommerce. Aprendemos a dominá-lo rapidamente, é intuitivo, e o editor visual torna tudo mais simples, permitindo-nos desenhar layouts limpos e ajustados sem escrever código. Os modelos de base ajudam-nos a iniciar com estrutura sólida, e o controlo responsivo permite-nos corrigir o mobile com precisão e sem esforço.

    \n\n\n\n

    Valorizamos a interface clara e organizada, a versão gratuita cobre bem sites simples e integra-se de forma estável com temas WordPress, quando avançamos para o Pro o Theme Builder dá-nos cabeçalhos, rodapés e templates completos, o fluxo mantém-se rápido, visual e previsível.

    \n\n\n\n

    Há cuidados essenciais, muitos widgets e add-ons pesam as páginas, por isso aplicamos cache, compressão e imagens otimizadas, fazemos backups e testes antes de grandes updates, a edição mobile é minuciosa, o HTML é denso, mas com boas práticas o desempenho fica sólido.

    \n\n\n\n

    O Elementor é a nossa ferramenta de eleição para criar em WordPress e WooCommerce. Com processo visual leve e controlado, entrega resultados profissionais e consistentes, serve bem páginas empresariais, blogs e marketing, a versão Pro justifica-se quando é preciso controlo total com o Theme Builder.

    \n\n\n\n

    Por exemplo, no blog corporativo, definimos o objetivo de unificar o visual e acelerar o mobile, criámos um template de artigo com campos dinâmicos e sumário com âncoras, adicionámos artigos relacionados e navegação anterior seguinte, otimizámos fontes locais com preload, lazy load e minificação, removemos scripts inúteis, o efeito foi claro, leitura mais confortável e carregamentos mais rápidos no telemóvel.

    \n\n\n\n

    Por exemplo, numa campanha de produto em WooCommerce, focámo-nos em conversão e menor abandono, desenhámos um single product leve com galeria otimizada, benefícios junto ao preço e variações claras, colocámos provas sociais e uma FAQ compacta junto ao botão de compra, usamos WebP, cache e limpeza de scripts, encurtámos o checkout, resultado, percurso mais direto e melhor taxa de compra.

    \n\n\n\n

    Outro exemplo prático no nosso dia a dia, nas páginas institucionais de tráfego orgânico, simplificámos a hierarquia de containers e trocámos widgets pesados por nativos, adotámos SVGs limpos, pré-carregámos fontes essenciais e adiámos scripts não críticos, no fim, LCP melhor no mobile, CLS estável e interação mais rápida, a navegação ficou leve sem perder detalhe.

    \n\n\n\n

    Sim, recomendamos este editor.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Esse é muito top! Recomendadíssimo

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Sandro Barone (sandroacv) on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Desde que conheci o Elementor, não deixei mais de usá-lo, é muito bom e o site não fica pesado, sem mencionar que o wordpress vem recebendo plugins super completos, o que deixa tudo mais leve.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It would be nice if the editing page opened faster.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy didi88 on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It would be nice if the editing page opened faster.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Tools

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy emdad on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Elementor Website Builder is a greatest tools for developer

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Version 3.32.4 causes conflicts with WooCommerce

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy metricainsight on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Version 3.32.4 Causes Conflicts with WooCommerce

    \n\n\n\n

    Be careful when updating to the latest version 3.32.4, as doing so may cause conflicts in the product section. This update causes products to display instead of others, product images to display incorrectly, and even product variations may be affected.

    \n\n\n\n

    I had to revert to version 3.25.10.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Elementor consumes your life

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sermalefico on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Slow, full of bugs everywhere, bugs that generate other bugs, bugs that are never fixed and have been reported for years, half-baked features that are always said to be implemented in future updates, not all CSS options are responsive in the editor, scarce dynamic data, terrible conditionals, horrible query post widget options and loop builder with minimal options, CSS that regenerates and breaks unexpectedly even if you have the caching option disabled, 404 error template condition doesn''t work well, numerous issues with CLS, high CPU usage, multiple incompatibilities with caching and optimization plugins. Moving containers or widgets in the navigator is a surgical task and sometimes impossible to perform. If you have an outdated Elementor or you''re coming from a client''s website, pray that everything doesn''t break.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Frustrating Lack of Support for Critical Developer Issues

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Umer Raza Cheema (umer75) on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m deeply disappointed with the Elementor support experience as a plugin developer. I''ve been trying to get help with critical development issues for 4 consecutive days without any meaningful response from the support team, despite multiple attempts and detailed bug reports.

    \n\n\n\n

    The Issues:
    I''m developing custom Elementor Dynamic Tags and facing major problems that prevent my plugin from functioning properly:

    \n\n\n\n
      \n
    1. Styling controls don''t work in Dynamic Tags (color, typography, border, padding controls generate no CSS)
    2. \n\n\n\n
    3. Icons don''t render properly in Dynamic Tags (Font Awesome/Custom icons load without styles)
    4. \n\n\n\n
    5. No wrapper element for Dynamic Tags, making {{WRAPPER}} placeholder useless
    6. \n\n\n\n
    7. No documentation on proper implementation for these advanced features
    8. \n
    \n\n\n\n

    My Support Requests:
    I''ve created 4 detailed technical topics with complete code examples and reproduction steps:

    \n\n\n\n
      \n
    1. Dynamic Tags: Styling Controls and Icons Not Rendering - Follow-up(3)
    2. \n\n\n\n
    3. Dynamic Tags: Styling Controls and Icons Not Rendering - Follow-up(2)
    4. \n\n\n\n
    5. Dynamic Tags: Styling Controls and Icons Not Rendering - Follow-up
    6. \n\n\n\n
    7. Styling Controls and Icons Not Rendering Properly in Custom Dynamic Tag
    8. \n
    \n\n\n\n

    The Frustrating Part:
    I''ve specifically mentioned @ricav, @miloss84, and @aracelil (plugin support team members) who are actively responding to other users'' topics, but completely ignoring my developer-focused issues. Meanwhile, I see them providing detailed answers to simpler questions from other users.

    \n\n\n\n

    Why This Matters:

    \n\n\n\n
      \n
    • The problems make Dynamic Tags practically unusable for any styled content
    • \n\n\n\n
    • There''s zero documentation on how to properly implement styling in Dynamic Tags
    • \n\n\n\n
    • The lack of response suggests developer tools are not a priority
    • \n
    \n\n\n\n

    What I Expected:

    \n\n\n\n
      \n
    • Guidance on proper implementation approach OR
    • \n\n\n\n
    • At minimum: \"We''re looking into this\" or \"This is a known limitation\"
    • \n
    \n\n\n\n

    The Impact:
    My plugin development is completely blocked. I cannot deliver professional results to my clients because core Elementor features don''t work as expected.

    \n\n\n\n

    To Elementor Team:
    Ignoring advanced development questions while answering basic usage questions creates a terrible experience for your ecosystem partners.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Terrible support and unprofessional treatment of paying customers

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy morphiaz (morphiazz) on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been an Elementor user for many years and manage several large-scale websites with 100,000 – 200,000 pages. Unfortunately, Elementor has been moving in the wrong direction both technically and support-wise.

    \n\n\n\n

    A current example: Since the update on September 15, 2025, Elementor has been randomly deleting the CSS files in the upload directory every 24 hours, even when nothing on the site has changed. As a result, cached pages suddenly point to CSS files that no longer exist — completely breaking the frontend. The only way to “fix” it is to purge the entire cache and force Elementor to regenerate the files - every 24 hours. For large websites, that’s not a quick fix — it’s a massive operational issue.

    \n\n\n\n

    Instead of addressing the root cause, support actually suggested switching to inline CSS — which might work for small projects but is absolutely unrealistic and unsustainable for large, high-traffic sites. Inline CSS at this scale would destroy performance, complicate maintenance, and make proper caching almost impossible.

    \n\n\n\n

    To make matters worse, the official Elementor Facebook support forum — run by Elementor itself — is a complete disaster:

    \n\n\n\n
      \n
    • Critical posts are deleted without explanation,
    • \n\n\n\n
    • Users trying to raise legitimate issues are personally attacked,
    • \n\n\n\n
    • Constructive feedback is ignored or shut down,
    • \n\n\n\n
    • Paying customers are treated like an inconvenience rather than valued clients.
    • \n
    \n\n\n\n

    I’ve rarely experienced a company that handles valid criticism so poorly. For a product aimed at professional developers and agencies, this is simply unacceptable.

    \n\n\n\n

    👉 Bottom line:

    \n\n\n\n
      \n
    • Technically unstable,
    • \n\n\n\n
    • Support quality is shockingly low,
    • \n\n\n\n
    • Zero transparency in communication,
    • \n\n\n\n
    • Disrespectful treatment of paying users.
    • \n
    \n\n\n\n

    At this point, I cannot recommend Elementor anymore. If you’re running serious, large-scale websites, do yourself a favor and look for alternatives before another update brings your site down overnight.

    \n
    \n
    \n", "changelog": "

    3.32.5 – 2025-10-21

    \n
      \n
    • Fix: Create Template dialog doesn’t close in WordPress Templates section
    • \n
    • Fix: Website Template fails to apply when Custom Code or Custom Icons are included
    • \n
    \n

    3.32.4 – 2025-10-05

    \n
      \n
    • Tweak: Added notice for Load Google Fonts Locally feature to clarify behavior and setup
    • \n
    \n

    3.32.3 – 2025-09-29

    \n
      \n
    • Fix: Custom post types are imported even when unselected in Website Templates import
    • \n
    • Fix: Taxonomy queries not connected properly to widgets in Website Templates import
    • \n
    \n

    3.32.2 – 2025-09-18

    \n
      \n
    • Tweak: Improved compatibility for 3rd-party plugins serving templates
    • \n
    • Fix: Structure Panel indicators not visible in RTL layouts
    • \n
    • Fix: Issues with loading Google Fonts when enabling or disabling Load Google Fonts Locally option (#32795)
    • \n
    • Fix: Background videos not displaying correctly on RTL websites
    • \n
    \n

    3.32.1 – 2025-09-16

    \n
      \n
    • Tweak: Disabled Load Google Fonts locally on all sites by default
    • \n
    • Tweak: Moved the Load Google Fonts locally option to the Performance tab as a feature
    • \n
    • Fix: Column editing handles appear outside the editing overlay
    • \n
    • Fix: Full width containers not aligned to the center
    • \n
    • Fix: Editor stuck on loading when using an Image Box widget with a link (#32756)
    • \n
    \n

    3.32.0 – 2025-09-15

    \n
      \n
    • New: Introducing Transform controls to move, scale, rotate, and skew elements with 2D and 3D support – Editor V4
    • \n
    • New: Introducing Transitions to control how elements animate between states – Editor V4
    • \n
    • New: Added filter and sort options in Class Manager – Editor V4
    • \n
    • New: Introducing advanced import and export customization for Website Templates, with selective import of themes, experiments, custom assets, and content
    • \n
    • Tweak: Added option to convert local styles into a reusable Global Class – Editor V4
    • \n
    • Tweak: Variables now update live on the canvas while editing a variable – Editor V4
    • \n
    • Tweak: Updated custom unit UI and improved functionality – Editor V4
    • \n
    • Tweak: Enabled typing negative values in style fields – Editor V4
    • \n
    • Tweak: Added Bottom position option on layout setting in Icon Box widget
    • \n
    • Tweak: Reduced API-Info size for better performance
    • \n
    • Tweak: Added option for connected users to install Elementor Pro via the Connect Account tab
    • \n
    • Tweak: Enabled ZIP download of Website Templates from the library
    • \n
    • Tweak: Merged Cloud Library feature into version
    • \n
    • Tweak: Optimized compiled CSS output for background videos
    • \n
    • Tweak: Merged Element Caching feature and moved to Performance tab
    • \n
    • Fix: Reaching the Global Class limit prevented page saving – Editor V4 (#32277)
    • \n
    • Fix: PHP 8.4 deprecation notices when running with WP_DEBUG enabled
    • \n
    • Fix: Indications popover not displaying correctly in repeaters for Background Overlay – Editor V4
    • \n
    • Fix: Reduced-motion preferences are not applied to entrance and exit animations
    • \n
    • Fix: Added required PHP and WordPress versions to the plugin header
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    \n

    THE #1 NO CODE DRAG & DROP WORDPRESS WEBSITE BUILDER POWERING OVER 18M WEBSITES WORLDWIDE, NOW WITH AI.

    \n

    Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly.

    \n

    Unlock all features with Elementor Pro.

    \n

    Need fast and secure cloud hosting for your Elementor site? Try out Elementor Hosting Powered by Google Cloud & Cloudflare. 4.9/5 TrustPilot score.

    \n

    🌟 Create Professional Stunning Websites

    \n
      \n
    • Intuitive Drag & Drop Builder: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.
    • \n
    • Pixel-Perfect Design Tools: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.
    • \n
    • Template Library: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.
    • \n
    • Advanced Widgets: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.
    • \n
    • AI Capabilities: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.
    • \n
    \n

    🗝️ Key features:

    \n
      \n
    • Design System: Use Elementor’s Design System for consistent colors, typography, and design elements, ensuring a cohesive, professional look.
    • \n
    • Responsive Design: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.
    • \n
    • Mask Shapes: Turning any element, like an image or video, into whatever shape you desire to create standout designs.
    • \n
    • CSS Transform: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.
    • \n
    • Entrance Animations: Add entrance animations to elements to create engaging and interactive user experiences.
    • \n
    • Revision History: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.
    • \n
    • Developer-Friendly: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.
    • \n
    • Floating Buttons: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.
    • \n
    • Theme Builder [Pro]: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.
    • \n
    • Popup Builder [Pro]: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.
    • \n
    • Forms [Pro]: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.
    • \n
    • WooCommerce Builder [Pro]: Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.
    • \n
    • Dynamic Content [Pro]: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.
    • \n
    • Notes [Pro]: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.
    • \n
    • Custom Code [Pro]: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.
    • \n
    • Custom CSS [Pro]: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.
    • \n
    • Motion Effects [Pro]: Add advanced motion effects to elements for a more dynamic and engaging user experience.
    • \n
    • Custom Fonts & Icons [Pro]: Upload and use custom fonts and icons to match your brand’s identity.
    • \n
    \n

    😍 Elementor FREE widgets

    \n

    Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:

    \n
      \n
    • Heading. Add eye-catching headlines.
    • \n
    • Image. Control the size, opacity and more.
    • \n
    • Text Editor. Just like the WordPress editor.
    • \n
    • Video. Add YouTube, Vimeo, Dailymotion or self-hosted videos.
    • \n
    • Button. Create interactive buttons.
    • \n
    • Link in Bio. Build link in bio components to promote your business / services.
    • \n
    • Image Box. A box with image, headline and text.
    • \n
    • Testimonials. Customer testimonials.
    • \n
    • Icon. Place one or more of 600+ icons available.
    • \n
    • Icon Box. An icon, headline, and text with one widget.
    • \n
    • Social Icons. Link to your social pages with the Facebook/X (formerly Twitter) icons.
    • \n
    • Image Gallery. Display your images in a grid.
    • \n
    • Image Carousel. Create rotating carousels or sliders for chosen images.
    • \n
    • Icon List. Use any icon to create a bullet list.
    • \n
    • Counter. Show numbers in an escalating manner.
    • \n
    • Progress Bar. Include an escalating progress bar.
    • \n
    • Nested Tabs. Display content in vertical or horizontal tabs.
    • \n
    • Nested Accordion. Display any type of content in collapsible sections.
    • \n
    • Toggle. Use the Toggle to hide or display content, like FAQ.
    • \n
    • Rating. Display how many stars (or another icon) other visitors gave.
    • \n
    • Alert. Include a colored alert box to draw visitor’s attention.
    • \n
    • HTML. Insert code into the page.
    • \n
    • Shortcode. Insert shortcodes from any plugin into the page.
    • \n
    • Menu Anchor. Link any menu to this anchor.
    • \n
    • Read More. Set the Read More cut-off for the excerpt in archive pages.
    • \n
    • Sidebar. Add sidebars onto the page.
    • \n
    • Google Maps. Embed maps into the page.
    • \n
    • SoundCloud. Add SoundCloud audio bits.
    • \n
    • Divider. Separate content with a designed divider.
    • \n
    • Spacer. Add space between elements.
    • \n
    • Text Path. Attach your text to a path.
    • \n
    • And counting…
    • \n
    \n

    🚀 Enhance Your Website

    \n

    High-Performing Websites: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.

    \n

    Key features include:

    \n
      \n
    • Reduced DOM Output: Streamlined HTML structure for faster rendering.
    • \n
    • Improved Media File Loading: Optimized loading of images, videos, and other media assets.
    • \n
    • Reduced CSS and JS Files: Minimized and concatenated stylesheets and scripts for quicker loading times.
    • \n
    • Lazy Loading: Deferred loading of non-critical resources to improve initial page load speed.
    • \n
    • Faster Font Loading: Efficient delivery of web fonts to enhance text rendering speed.
    • \n
    • Optimized Front-End Asset Loading: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.
    • \n
    • Element Caching: Cache frequently accessed design elements to reduce server response time and enhance overall performance.
    • \n
    \n

    🔥 Elementor Pro Features

    \n

    Create unparalleled websites while saving time, money and resources with Elementor Pro’s full website builder. Get access to 100+ professional widgets, features, and tools.

    \n

    Pro Design Widgets:

    \n
      \n
    1. Posts: Display your blog posts with customizable layouts and styles.
    2. \n
    3. Share Buttons: Allow visitors to easily share your content on various social media platforms.
    4. \n
    5. Portfolio: Showcase your work or projects with stunning portfolio layouts.
    6. \n
    7. Slides: Create dynamic slideshows with custom animations and transitions.
    8. \n
    9. Form: Design and customize advanced forms for user interaction and data collection.
    10. \n
    11. Login: Add a login form or user registration module to your website.
    12. \n
    13. Nav Menu: Customize and style your website’s navigation menu for better user experience.
    14. \n
    15. Animated Headline: Create attention-grabbing headlines with animated effects.
    16. \n
    17. Price Table: Display pricing plans or packages in a structured and visually appealing format.
    18. \n
    19. Price List: Showcase a list of prices or services with customizable styling options.
    20. \n
    21. Gallery: Create beautiful image galleries with various layout options and lightbox support.
    22. \n
    23. Flip Box: Add interactive flip animations to highlight content or features.
    24. \n
    25. Call to Action: Encourage user interaction and conversions with compelling call-to-action sections.
    26. \n
    27. Media Carousel: Showcase a carousel of media files such as images or videos.
    28. \n
    29. Testimonial Carousel: Display client testimonials in a carousel format for social proof.
    30. \n
    31. Nested Carousel: Create nested carousels for more complex content organization.
    32. \n
    33. Loop Carousel: Display content in a looped carousel for continuous viewing.
    34. \n
    35. Table Of Content: Generate a table of contents for longer articles or guides to improve navigation.
    36. \n
    37. Countdown: Add countdown timers to create urgency for promotions or events.
    38. \n
    39. Facebook Page: Embed your Facebook page feed or content onto your website.
    40. \n
    41. Blockquote: Highlight quotes or testimonials with stylish formatting options.
    42. \n
    43. Template: Save and reuse design templates for consistent branding and layout.
    44. \n
    45. Reviews: Showcase customer reviews and ratings to build trust and credibility.
    46. \n
    47. Facebook Button: Add buttons to promote interactions with your Facebook page or content.
    48. \n
    49. Facebook Embed: Embed Facebook posts or content onto your website.
    50. \n
    51. Facebook Comments: Enable Facebook comments on your website’s pages or posts.
    52. \n
    53. PayPal Button: Integrate PayPal buttons for easy online payments.
    54. \n
    55. Stripe Button: Integrate Stripe payment buttons to facilitate secure online transactions.
    56. \n
    57. Lottie Widget: Add Lottie animations to enhance visual appeal and engagement.
    58. \n
    59. Code Highlight: Display code snippets with syntax highlighting for better readability.
    60. \n
    61. Video Playlist: Create and customize playlists for video content on your website.
    62. \n
    63. Mega Menu: Customize advanced menus for better navigation and displaying complex content.
    64. \n
    65. Off Canvas: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.
    66. \n
    \n

    Pro Theme Widgets:

    \n

    Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more

    \n
      \n
    1. Post Title: Customize the title of individual blog posts or pages.
    2. \n
    3. Post Excerpt: Display a brief summary or teaser of your blog posts.
    4. \n
    5. Post Content: Customize the main content area of your blog posts or pages.
    6. \n
    7. Featured Image: Set and customize featured images for blog posts or pages.
    8. \n
    9. Author Box: Display author information and bios on blog posts.
    10. \n
    11. Post Comments: Customize the appearance and functionality of comments sections on your website.
    12. \n
    13. Post Navigation: Add navigation links to adjacent posts for easy browsing.
    14. \n
    15. Post Info: Display additional information about blog posts, such as author and date.
    16. \n
    17. Site Logo: Upload and customize your website’s logo for branding purposes.
    18. \n
    19. Site Title: Customize the title of your website.
    20. \n
    21. Page Title: Customize the title of individual pages.
    22. \n
    23. Search Bar: Add a search bar to allow users to search your website’s content.
    24. \n
    25. Breadcrumbs: Display hierarchical navigation paths for better user navigation.
    26. \n
    27. Sitemap: Generate a sitemap for better search engine indexing and user navigation.
    28. \n
    29. Loop Grid: Design and customize grid layouts for blog post archives or product listings.
    30. \n
    \n

    Pro WooCommerce Widgets:

    \n

    Design and customize a complete online shopping experience across your entire website.

    \n
      \n
    1. Product: Display individual products with customizable layouts and styles.
    2. \n
    3. Breadcrumbs: Display hierarchical navigation paths for better user navigation within your store.
    4. \n
    5. Product Title: Customize the title of individual products.
    6. \n
    7. Product Images: Set and customize images for product listings.
    8. \n
    9. Product Price: Display the price of individual products.
    10. \n
    11. Add To Cart: Add customizable add to cart buttons for easy purchasing.
    12. \n
    13. Product Rating: Display ratings and reviews for products.
    14. \n
    15. Product Stock: Display stock availability for products.
    16. \n
    17. Product Meta: Display additional information about products, such as SKU and categories.
    18. \n
    19. Product Content: Customize the main content area of product descriptions.
    20. \n
    21. Short Description: Display brief summaries or teasers of products.
    22. \n
    23. Product Data Tabs: Organize product information into tabbed sections for better organization.
    24. \n
    25. Additional Information: Display additional details about products, such as dimensions and weight.
    26. \n
    27. Product Related: Showcase related products to encourage additional purchases.
    28. \n
    29. Upsells: Promote upsell products to increase average order value.
    30. \n
    31. Products: Display a grid or list of products with customizable settings.
    32. \n
    33. Custom Add To Cart: Customize the add to cart button for specific products.
    34. \n
    35. WooCommerce Pages: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.
    36. \n
    37. Product Categories: Display product categories for easy navigation within your store.
    38. \n
    39. Menu Cart: Display a cart icon in your navigation menu for easy access to the shopping cart.
    40. \n
    41. Cart: Customize the appearance and functionality of the shopping cart page.
    42. \n
    43. Checkout: Customize the appearance and functionality of the checkout page.
    44. \n
    45. My Account: Customize the appearance and functionality of the customer account area.
    46. \n
    47. Purchase Summary: Display a summary of purchases during the checkout process.
    48. \n
    49. WooCommerce Notices: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.
    50. \n
    \n

    Build professional websites with Elementor Pro!

    \n

    🔒 SECURITY AND COMPLIANCE

    \n

    Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.

    \n

    We encourage ethical security research through our Bug Bounty program. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.

    \n

    For more information: Trust Center.

    \n

    ♿ Accessibility Best Practices

    \n

    Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.

    \n

    🌐 Translated to 63+ languages, includes RTL support

    \n

    Elementor supports multiple languages, typographies, and RTL, with editor translations in over 63 languages.

    \n

    It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via translate.wordpress.org. See our guide on how to translate and localize the plugin.

    \n

    ⏩ Use of 3rd Party Services

    \n

    To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:

    \n
      \n
    • Google Fonts – are loaded to add additional fonts to your website. Google’s TOS and Privacy Policy
    • \n
    • Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly mentioned, requiring your approval and manual opt-in. Learn more in our TOS and Privacy Policy.
    • \n
    \n

    📧 Related Products by Elementor

    \n

    Image Optimizer: Superior image compression for faster, high-quality website performance.

    \n

    Site Mailer: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.

    \n

    📣 See What Our Users Have to Say

    \n
    \n

    “Elementor is hands down the best page builder out there” – ★★★★★ Graphicvision1

    \n

    “An incredibly user-friendly plugin” – ★★★★★ Hyeyoga

    \n

    “Easily, my most used WP plugin” – ★★★★★ Xander Venske

    \n

    “I upgraded to the Pro version and just love this plugin!” – ★★★★★ Andybarn56

    \n

    “Excellent product with great tech support” – ★★★★★ Martywilsonnj

    \n
    \n

    More testimonials

    \n

    🌍 Join a Global Community

    \n

    Join a global community that helps each other achieve their goals.

    \n
      \n
    • Discord Community – Topic and language-specific channels, plus Ella, an amazing AI helper, ready to assist you.
    • \n
    • Facebook Community – Over 150K+ members, offering support, advice, feedback, and tutorials.
    • \n
    • GitHub Community – Get information about releases, request features, or report a bug.
    • \n
    • Elementor Addons, Themes, and Kits Themes and Kits – created specifically for Elementor.
    • \n
    • Learn valuable insights and techniques from our YouTube Channel.
    • \n
    • Access our Academy and Help Center – Find guides, tutorials, and resources to answer your questions and boost creativity.
    • \n
    • Show your support by rating us on WordPress. Your feedback fuels our growth! 🤗
    • \n
    • If you have questions or need support, visit the Plugin’s Forum. Elementor Pro users can get 24/7 premium support, …
    • \n
    \n", "screenshots": "
    1. \"<strong>Visual

      Visual Drag and Drop Editor - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.

    2. \"<strong>Full

      Full Design System - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.

    3. \"<strong>Responsive

      Responsive Design Fully edit your website and customize the behavior on desktop, tablet, & mobile to optimize the visitor experience on every device.

    4. \"<strong>Kits

      Kits and Templates - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.

    5. \"<strong>Nested

      Nested Elements Leverage Elementor''s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.

    6. \"<strong>Motion

      Motion Effects - Add entrance animations and transitions to any element in your website to captivate visitors.

    ", "installation": "

    Minimum Requirements

    \n
      \n
    • WordPress 6.5 or greater
    • \n
    • PHP version 7.4 or greater
    • \n
    • MySQL version 5.0 or greater
    • \n
    \n

    Recommended Requirements

    \n
      \n
    • PHP version 8.1 or greater
    • \n
    • MySQL version 5.6 or greater
    • \n
    • WordPress Memory limit of 64 MB or greater (128 MB or higher is preferred)
    • \n
    \n

    \n

    Installation

    \n
      \n
    1. Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the wp-content/plugins/ directory of your WordPress installation.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    5. Go to Pages > Add New
    6. \n
    7. Press the ‘Edit with Elementor’ button.
    8. \n
    9. Now you can drag and drop widgets from the left panel onto the content area, as well as add new sections and columns that make up the page structure.
    10. \n
    \n

    For documentation and tutorials visit our Knowledge Base.

    \n"}, "versions": {"3.0.0": "https://downloads.wordpress.org/plugin/elementor.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/elementor.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/elementor.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/elementor.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/elementor.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/elementor.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/elementor.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/elementor.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/elementor.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/elementor.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/elementor.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/elementor.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/elementor.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/elementor.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/elementor.3.1.4.zip", "3.2.0": "https://downloads.wordpress.org/plugin/elementor.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/elementor.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/elementor.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/elementor.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/elementor.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/elementor.3.2.5.zip", "3.3.0": "https://downloads.wordpress.org/plugin/elementor.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/elementor.3.3.1.zip", "3.4.0": "https://downloads.wordpress.org/plugin/elementor.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/elementor.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/elementor.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/elementor.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/elementor.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/elementor.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/plugin/elementor.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/plugin/elementor.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/plugin/elementor.3.4.8.zip", "3.5.0": "https://downloads.wordpress.org/plugin/elementor.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/elementor.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/elementor.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/elementor.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/elementor.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/elementor.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/elementor.3.5.6.zip", "3.6.0": "https://downloads.wordpress.org/plugin/elementor.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/elementor.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/elementor.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/elementor.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/elementor.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/elementor.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/elementor.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/elementor.3.6.7.zip", "3.6.8": "https://downloads.wordpress.org/plugin/elementor.3.6.8.zip", "3.7.0": "https://downloads.wordpress.org/plugin/elementor.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/elementor.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/elementor.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/elementor.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/plugin/elementor.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/plugin/elementor.3.7.5.zip", "3.7.6": "https://downloads.wordpress.org/plugin/elementor.3.7.6.zip", "3.7.7": "https://downloads.wordpress.org/plugin/elementor.3.7.7.zip", "3.7.8": "https://downloads.wordpress.org/plugin/elementor.3.7.8.zip", "3.8.0": "https://downloads.wordpress.org/plugin/elementor.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/elementor.3.8.1.zip", "3.9.0": "https://downloads.wordpress.org/plugin/elementor.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/elementor.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/elementor.3.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/elementor.zip", "3.0.10": "https://downloads.wordpress.org/plugin/elementor.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/elementor.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/plugin/elementor.3.0.12.zip", "3.0.13": "https://downloads.wordpress.org/plugin/elementor.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/plugin/elementor.3.0.14.zip", "3.0.15": "https://downloads.wordpress.org/plugin/elementor.3.0.15.zip", "3.0.16": "https://downloads.wordpress.org/plugin/elementor.3.0.16.zip", "3.10.0": "https://downloads.wordpress.org/plugin/elementor.3.10.0.zip", "3.10.1": "https://downloads.wordpress.org/plugin/elementor.3.10.1.zip", "3.10.2": "https://downloads.wordpress.org/plugin/elementor.3.10.2.zip", "3.11.0": "https://downloads.wordpress.org/plugin/elementor.3.11.0.zip", "3.11.1": "https://downloads.wordpress.org/plugin/elementor.3.11.1.zip", "3.11.2": "https://downloads.wordpress.org/plugin/elementor.3.11.2.zip", "3.11.3": "https://downloads.wordpress.org/plugin/elementor.3.11.3.zip", "3.11.4": "https://downloads.wordpress.org/plugin/elementor.3.11.4.zip", "3.11.5": "https://downloads.wordpress.org/plugin/elementor.3.11.5.zip", "3.12.0": "https://downloads.wordpress.org/plugin/elementor.3.12.0.zip", "3.12.1": "https://downloads.wordpress.org/plugin/elementor.3.12.1.zip", "3.12.2": "https://downloads.wordpress.org/plugin/elementor.3.12.2.zip", "3.13.0": "https://downloads.wordpress.org/plugin/elementor.3.13.0.zip", "3.13.1": "https://downloads.wordpress.org/plugin/elementor.3.13.1.zip", "3.13.2": "https://downloads.wordpress.org/plugin/elementor.3.13.2.zip", "3.13.3": "https://downloads.wordpress.org/plugin/elementor.3.13.3.zip", "3.13.4": "https://downloads.wordpress.org/plugin/elementor.3.13.4.zip", "3.14.0": "https://downloads.wordpress.org/plugin/elementor.3.14.0.zip", "3.14.1": "https://downloads.wordpress.org/plugin/elementor.3.14.1.zip", "3.15.0": "https://downloads.wordpress.org/plugin/elementor.3.15.0.zip", "3.15.1": "https://downloads.wordpress.org/plugin/elementor.3.15.1.zip", "3.15.2": "https://downloads.wordpress.org/plugin/elementor.3.15.2.zip", "3.15.3": "https://downloads.wordpress.org/plugin/elementor.3.15.3.zip", "3.16.0": "https://downloads.wordpress.org/plugin/elementor.3.16.0.zip", "3.16.1": "https://downloads.wordpress.org/plugin/elementor.3.16.1.zip", "3.16.2": "https://downloads.wordpress.org/plugin/elementor.3.16.2.zip", "3.16.3": "https://downloads.wordpress.org/plugin/elementor.3.16.3.zip", "3.16.4": "https://downloads.wordpress.org/plugin/elementor.3.16.4.zip", "3.16.5": "https://downloads.wordpress.org/plugin/elementor.3.16.5.zip", "3.16.6": "https://downloads.wordpress.org/plugin/elementor.3.16.6.zip", "3.17.0": "https://downloads.wordpress.org/plugin/elementor.3.17.0.zip", "3.17.1": "https://downloads.wordpress.org/plugin/elementor.3.17.1.zip", "3.17.2": "https://downloads.wordpress.org/plugin/elementor.3.17.2.zip", "3.17.3": "https://downloads.wordpress.org/plugin/elementor.3.17.3.zip", "3.18.0": "https://downloads.wordpress.org/plugin/elementor.3.18.0.zip", "3.18.1": "https://downloads.wordpress.org/plugin/elementor.3.18.1.zip", "3.18.2": "https://downloads.wordpress.org/plugin/elementor.3.18.2.zip", "3.18.3": "https://downloads.wordpress.org/plugin/elementor.3.18.3.zip", "3.19.0": "https://downloads.wordpress.org/plugin/elementor.3.19.0.zip", "3.19.1": "https://downloads.wordpress.org/plugin/elementor.3.19.1.zip", "3.19.2": "https://downloads.wordpress.org/plugin/elementor.3.19.2.zip", "3.19.3": "https://downloads.wordpress.org/plugin/elementor.3.19.3.zip", "3.19.4": "https://downloads.wordpress.org/plugin/elementor.3.19.4.zip", "3.20.0": "https://downloads.wordpress.org/plugin/elementor.3.20.0.zip", "3.20.1": "https://downloads.wordpress.org/plugin/elementor.3.20.1.zip", "3.20.2": "https://downloads.wordpress.org/plugin/elementor.3.20.2.zip", "3.20.3": "https://downloads.wordpress.org/plugin/elementor.3.20.3.zip", "3.20.4": "https://downloads.wordpress.org/plugin/elementor.3.20.4.zip", "3.21.0": "https://downloads.wordpress.org/plugin/elementor.3.21.0.zip", "3.21.1": "https://downloads.wordpress.org/plugin/elementor.3.21.1.zip", "3.21.2": "https://downloads.wordpress.org/plugin/elementor.3.21.2.zip", "3.21.3": "https://downloads.wordpress.org/plugin/elementor.3.21.3.zip", "3.21.4": "https://downloads.wordpress.org/plugin/elementor.3.21.4.zip", "3.21.5": "https://downloads.wordpress.org/plugin/elementor.3.21.5.zip", "3.21.6": "https://downloads.wordpress.org/plugin/elementor.3.21.6.zip", "3.21.7": "https://downloads.wordpress.org/plugin/elementor.3.21.7.zip", "3.21.8": "https://downloads.wordpress.org/plugin/elementor.3.21.8.zip", "3.22.0": "https://downloads.wordpress.org/plugin/elementor.3.22.0.zip", "3.22.1": "https://downloads.wordpress.org/plugin/elementor.3.22.1.zip", "3.22.2": "https://downloads.wordpress.org/plugin/elementor.3.22.2.zip", "3.22.3": "https://downloads.wordpress.org/plugin/elementor.3.22.3.zip", "3.23.0": "https://downloads.wordpress.org/plugin/elementor.3.23.0.zip", "3.23.1": "https://downloads.wordpress.org/plugin/elementor.3.23.1.zip", "3.23.2": "https://downloads.wordpress.org/plugin/elementor.3.23.2.zip", "3.23.3": "https://downloads.wordpress.org/plugin/elementor.3.23.3.zip", "3.23.4": "https://downloads.wordpress.org/plugin/elementor.3.23.4.zip", "3.24.0": "https://downloads.wordpress.org/plugin/elementor.3.24.0.zip", "3.24.1": "https://downloads.wordpress.org/plugin/elementor.3.24.1.zip", "3.24.2": "https://downloads.wordpress.org/plugin/elementor.3.24.2.zip", "3.24.3": "https://downloads.wordpress.org/plugin/elementor.3.24.3.zip", "3.24.4": "https://downloads.wordpress.org/plugin/elementor.3.24.4.zip", "3.24.5": "https://downloads.wordpress.org/plugin/elementor.3.24.5.zip", "3.24.6": "https://downloads.wordpress.org/plugin/elementor.3.24.6.zip", "3.24.7": "https://downloads.wordpress.org/plugin/elementor.3.24.7.zip", "3.24.8": "https://downloads.wordpress.org/plugin/elementor.3.24.8.zip", "3.25.0": "https://downloads.wordpress.org/plugin/elementor.3.25.0.zip", "3.25.1": "https://downloads.wordpress.org/plugin/elementor.3.25.1.zip", "3.25.2": "https://downloads.wordpress.org/plugin/elementor.3.25.2.zip", "3.25.3": "https://downloads.wordpress.org/plugin/elementor.3.25.3.zip", "3.25.4": "https://downloads.wordpress.org/plugin/elementor.3.25.4.zip", "3.25.5": "https://downloads.wordpress.org/plugin/elementor.3.25.5.zip", "3.25.6": "https://downloads.wordpress.org/plugin/elementor.3.25.6.zip", "3.25.7": "https://downloads.wordpress.org/plugin/elementor.3.25.7.zip", "3.25.8": "https://downloads.wordpress.org/plugin/elementor.3.25.8.zip", "3.25.9": "https://downloads.wordpress.org/plugin/elementor.3.25.9.zip", "3.26.0": "https://downloads.wordpress.org/plugin/elementor.3.26.0.zip", "3.26.1": "https://downloads.wordpress.org/plugin/elementor.3.26.1.zip", "3.26.2": "https://downloads.wordpress.org/plugin/elementor.3.26.2.zip", "3.26.3": "https://downloads.wordpress.org/plugin/elementor.3.26.3.zip", "3.26.4": "https://downloads.wordpress.org/plugin/elementor.3.26.4.zip", "3.26.5": "https://downloads.wordpress.org/plugin/elementor.3.26.5.zip", "3.27.0": "https://downloads.wordpress.org/plugin/elementor.3.27.0.zip", "3.27.1": "https://downloads.wordpress.org/plugin/elementor.3.27.1.zip", "3.27.2": "https://downloads.wordpress.org/plugin/elementor.3.27.2.zip", "3.27.3": "https://downloads.wordpress.org/plugin/elementor.3.27.3.zip", "3.27.4": "https://downloads.wordpress.org/plugin/elementor.3.27.4.zip", "3.27.5": "https://downloads.wordpress.org/plugin/elementor.3.27.5.zip", "3.27.6": "https://downloads.wordpress.org/plugin/elementor.3.27.6.zip", "3.27.7": "https://downloads.wordpress.org/plugin/elementor.3.27.7.zip", "3.28.0": "https://downloads.wordpress.org/plugin/elementor.3.28.0.zip", "3.28.1": "https://downloads.wordpress.org/plugin/elementor.3.28.1.zip", "3.28.2": "https://downloads.wordpress.org/plugin/elementor.3.28.2.zip", "3.28.3": "https://downloads.wordpress.org/plugin/elementor.3.28.3.zip", "3.28.4": "https://downloads.wordpress.org/plugin/elementor.3.28.4.zip", "3.29.0": "https://downloads.wordpress.org/plugin/elementor.3.29.0.zip", "3.29.1": "https://downloads.wordpress.org/plugin/elementor.3.29.1.zip", "3.29.2": "https://downloads.wordpress.org/plugin/elementor.3.29.2.zip", "3.30.0": "https://downloads.wordpress.org/plugin/elementor.3.30.0.zip", "3.30.1": "https://downloads.wordpress.org/plugin/elementor.3.30.1.zip", "3.30.2": "https://downloads.wordpress.org/plugin/elementor.3.30.2.zip", "3.30.3": "https://downloads.wordpress.org/plugin/elementor.3.30.3.zip", "3.30.4": "https://downloads.wordpress.org/plugin/elementor.3.30.4.zip", "3.31.0": "https://downloads.wordpress.org/plugin/elementor.3.31.0.zip", "3.31.1": "https://downloads.wordpress.org/plugin/elementor.3.31.1.zip", "3.31.2": "https://downloads.wordpress.org/plugin/elementor.3.31.2.zip", "3.31.3": "https://downloads.wordpress.org/plugin/elementor.3.31.3.zip", "3.31.4": "https://downloads.wordpress.org/plugin/elementor.3.31.4.zip", "3.31.5": "https://downloads.wordpress.org/plugin/elementor.3.31.5.zip", "3.32.0": "https://downloads.wordpress.org/plugin/elementor.3.32.0.zip", "3.32.1": "https://downloads.wordpress.org/plugin/elementor.3.32.1.zip", "3.32.2": "https://downloads.wordpress.org/plugin/elementor.3.32.2.zip", "3.32.3": "https://downloads.wordpress.org/plugin/elementor.3.32.3.zip", "3.32.4": "https://downloads.wordpress.org/plugin/elementor.3.32.4.zip", "3.32.5": "https://downloads.wordpress.org/plugin/elementor.3.32.5.zip", "3.0.8.1": "https://downloads.wordpress.org/plugin/elementor.3.0.8.1.zip", "3.25.10": "https://downloads.wordpress.org/plugin/elementor.3.25.10.zip", "3.25.11": "https://downloads.wordpress.org/plugin/elementor.3.25.11.zip", "3.1.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.1.0-dev1.zip", "3.1.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.1.0-dev2.zip", "3.1.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.1.0-dev3.zip", "3.4.0-dev7": "https://downloads.wordpress.org/plugin/elementor.3.4.0-dev7.zip", "3.4.0-dev8": "https://downloads.wordpress.org/plugin/elementor.3.4.0-dev8.zip", "3.4.0-dev9": "https://downloads.wordpress.org/plugin/elementor.3.4.0-dev9.zip", "3.5.0-dev8": "https://downloads.wordpress.org/plugin/elementor.3.5.0-dev8.zip", "3.5.0-dev9": "https://downloads.wordpress.org/plugin/elementor.3.5.0-dev9.zip", "3.6.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.6.0-dev1.zip", "3.7.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.7.0-dev1.zip", "3.1.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.1.0-beta1.zip", "3.1.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.1.0-beta2.zip", "3.1.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.1.0-beta3.zip", "3.1.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.1.0-beta4.zip", "3.10.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.10.0-dev1.zip", "3.11.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.11.0-dev1.zip", "3.11.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.11.0-dev2.zip", "3.11.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.11.0-dev3.zip", "3.13.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.13.0-dev3.zip", "3.13.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.13.0-dev4.zip", "3.16.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.16.0-dev1.zip", "3.16.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.16.0-dev2.zip", "3.17.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.17.0-dev2.zip", "3.17.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.17.0-dev3.zip", "3.17.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.17.0-dev4.zip", "3.18.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.18.0-dev1.zip", "3.19.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev1.zip", "3.19.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev2.zip", "3.19.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev3.zip", "3.19.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev4.zip", "3.19.0-dev5": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev5.zip", "3.19.0-dev6": "https://downloads.wordpress.org/plugin/elementor.3.19.0-dev6.zip", "3.20.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.20.0-dev1.zip", "3.20.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.20.0-dev2.zip", "3.20.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.20.0-dev3.zip", "3.20.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.20.0-dev4.zip", "3.21.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.21.0-dev1.zip", "3.21.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.21.0-dev2.zip", "3.21.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.21.0-dev3.zip", "3.22.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev1.zip", "3.22.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev2.zip", "3.22.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev3.zip", "3.22.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev4.zip", "3.22.0-dev5": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev5.zip", "3.22.0-dev6": "https://downloads.wordpress.org/plugin/elementor.3.22.0-dev6.zip", "3.23.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev1.zip", "3.23.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev2.zip", "3.23.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev3.zip", "3.23.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev4.zip", "3.23.0-dev5": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev5.zip", "3.23.0-dev6": "https://downloads.wordpress.org/plugin/elementor.3.23.0-dev6.zip", "3.24.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.24.0-dev1.zip", "3.24.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.24.0-dev2.zip", "3.24.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.24.0-dev3.zip", "3.25.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.25.0-dev1.zip", "3.25.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.25.0-dev2.zip", "3.25.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.25.0-dev3.zip", "3.26.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.26.0-dev1.zip", "3.26.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.26.0-dev2.zip", "3.26.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.26.0-dev3.zip", "3.26.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.26.0-dev4.zip", "3.26.0-dev5": "https://downloads.wordpress.org/plugin/elementor.3.26.0-dev5.zip", "3.27.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.27.0-dev1.zip", "3.27.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.27.0-dev2.zip", "3.28.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.28.0-dev1.zip", "3.28.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.28.0-dev2.zip", "3.28.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.28.0-dev3.zip", "3.29.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.29.0-dev1.zip", "3.29.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.29.0-dev2.zip", "3.29.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.29.0-dev3.zip", "3.29.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.29.0-dev4.zip", "3.30.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.30.0-dev1.zip", "3.30.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.30.0-dev2.zip", "3.30.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.30.0-dev3.zip", "3.31.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.31.0-dev1.zip", "3.31.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.31.0-dev2.zip", "3.32.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.32.0-dev1.zip", "3.32.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.32.0-dev2.zip", "3.32.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.32.0-dev3.zip", "3.33.0-dev1": "https://downloads.wordpress.org/plugin/elementor.3.33.0-dev1.zip", "3.33.0-dev2": "https://downloads.wordpress.org/plugin/elementor.3.33.0-dev2.zip", "3.33.0-dev3": "https://downloads.wordpress.org/plugin/elementor.3.33.0-dev3.zip", "3.33.0-dev4": "https://downloads.wordpress.org/plugin/elementor.3.33.0-dev4.zip", "3.5.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta1.zip", "3.5.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta2.zip", "3.5.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta3.zip", "3.5.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta4.zip", "3.5.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta5.zip", "3.5.0-beta7": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta7.zip", "3.5.0-beta8": "https://downloads.wordpress.org/plugin/elementor.3.5.0-beta8.zip", "3.6.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.6.0-beta1.zip", "3.6.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.6.0-beta2.zip", "3.6.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.6.0-beta3.zip", "3.6.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.6.0-beta4.zip", "3.6.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.6.0-beta5.zip", "3.6.0-dev10": "https://downloads.wordpress.org/plugin/elementor.3.6.0-dev10.zip", "3.7.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.7.0-beta1.zip", "3.7.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.7.0-beta2.zip", "3.7.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.7.0-beta3.zip", "3.7.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.7.0-beta4.zip", "3.8.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.8.0-beta1.zip", "3.8.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.8.0-beta2.zip", "3.8.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.8.0-beta3.zip", "3.11.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.11.0-beta1.zip", "3.11.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.11.0-beta2.zip", "3.11.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.11.0-beta3.zip", "3.13.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.13.0-beta1.zip", "3.13.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.13.0-beta2.zip", "3.13.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.13.0-beta3.zip", "3.14.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.14.0-beta1.zip", "3.14.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.14.0-beta2.zip", "3.14.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.14.0-beta3.zip", "3.14.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.14.0-beta4.zip", "3.14.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.14.0-beta5.zip", "3.16.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.16.0-beta3.zip", "3.16.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.16.0-beta4.zip", "3.18.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.18.0-beta1.zip", "3.18.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.18.0-beta2.zip", "3.18.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.18.0-beta3.zip", "3.18.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.18.0-beta4.zip", "3.19.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta1.zip", "3.19.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta2.zip", "3.19.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta3.zip", "3.19.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta4.zip", "3.19.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta5.zip", "3.19.0-beta6": "https://downloads.wordpress.org/plugin/elementor.3.19.0-beta6.zip", "3.20.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.20.0-beta1.zip", "3.20.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.20.0-beta2.zip", "3.20.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.20.0-beta3.zip", "3.20.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.20.0-beta4.zip", "3.21.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.21.0-beta1.zip", "3.21.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.21.0-beta2.zip", "3.21.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.21.0-beta3.zip", "3.22.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta1.zip", "3.22.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta2.zip", "3.22.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta3.zip", "3.22.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta4.zip", "3.22.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta5.zip", "3.22.0-beta6": "https://downloads.wordpress.org/plugin/elementor.3.22.0-beta6.zip", "3.23.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta1.zip", "3.23.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta2.zip", "3.23.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta3.zip", "3.23.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta4.zip", "3.23.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta5.zip", "3.23.0-beta6": "https://downloads.wordpress.org/plugin/elementor.3.23.0-beta6.zip", "3.24.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.24.0-beta1.zip", "3.24.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.24.0-beta2.zip", "3.24.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.24.0-beta3.zip", "3.25.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.25.0-beta1.zip", "3.25.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.25.0-beta2.zip", "3.25.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.25.0-beta3.zip", "3.26.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.26.0-beta1.zip", "3.26.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.26.0-beta2.zip", "3.26.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.26.0-beta3.zip", "3.26.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.26.0-beta4.zip", "3.26.0-beta5": "https://downloads.wordpress.org/plugin/elementor.3.26.0-beta5.zip", "3.27.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.27.0-beta1.zip", "3.27.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.27.0-beta2.zip", "3.28.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.28.0-beta1.zip", "3.28.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.28.0-beta2.zip", "3.28.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.28.0-beta3.zip", "3.29.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.29.0-beta1.zip", "3.29.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.29.0-beta2.zip", "3.29.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.29.0-beta3.zip", "3.29.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.29.0-beta4.zip", "3.30.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.30.0-beta1.zip", "3.30.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.30.0-beta2.zip", "3.30.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.30.0-beta3.zip", "3.31.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.31.0-beta1.zip", "3.31.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.31.0-beta2.zip", "3.32.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.32.0-beta1.zip", "3.32.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.32.0-beta2.zip", "3.32.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.32.0-beta3.zip", "3.33.0-beta1": "https://downloads.wordpress.org/plugin/elementor.3.33.0-beta1.zip", "3.33.0-beta2": "https://downloads.wordpress.org/plugin/elementor.3.33.0-beta2.zip", "3.33.0-beta3": "https://downloads.wordpress.org/plugin/elementor.3.33.0-beta3.zip", "3.33.0-beta4": "https://downloads.wordpress.org/plugin/elementor.3.33.0-beta4.zip"}, "downloaded": 714027524, "description": "

    \n

    THE #1 NO CODE DRAG & DROP WORDPRESS WEBSITE BUILDER POWERING OVER 18M WEBSITES WORLDWIDE, NOW WITH AI.

    \n

    Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly.

    \n

    Unlock all features with Elementor Pro.

    \n

    Need fast and secure cloud hosting for your Elementor site? Try out Elementor Hosting Powered by Google Cloud & Cloudflare. 4.9/5 TrustPilot score.

    \n

    🌟 Create Professional Stunning Websites

    \n
      \n
    • Intuitive Drag & Drop Builder: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.
    • \n
    • Pixel-Perfect Design Tools: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.
    • \n
    • Template Library: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.
    • \n
    • Advanced Widgets: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.
    • \n
    • AI Capabilities: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.
    • \n
    \n

    🗝️ Key features:

    \n
      \n
    • Design System: Use Elementor’s Design System for consistent colors, typography, and design elements, ensuring a cohesive, professional look.
    • \n
    • Responsive Design: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.
    • \n
    • Mask Shapes: Turning any element, like an image or video, into whatever shape you desire to create standout designs.
    • \n
    • CSS Transform: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.
    • \n
    • Entrance Animations: Add entrance animations to elements to create engaging and interactive user experiences.
    • \n
    • Revision History: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.
    • \n
    • Developer-Friendly: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.
    • \n
    • Floating Buttons: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.
    • \n
    • Theme Builder [Pro]: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.
    • \n
    • Popup Builder [Pro]: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.
    • \n
    • Forms [Pro]: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.
    • \n
    • WooCommerce Builder [Pro]: Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.
    • \n
    • Dynamic Content [Pro]: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.
    • \n
    • Notes [Pro]: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.
    • \n
    • Custom Code [Pro]: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.
    • \n
    • Custom CSS [Pro]: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.
    • \n
    • Motion Effects [Pro]: Add advanced motion effects to elements for a more dynamic and engaging user experience.
    • \n
    • Custom Fonts & Icons [Pro]: Upload and use custom fonts and icons to match your brand’s identity.
    • \n
    \n

    😍 Elementor FREE widgets

    \n

    Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:

    \n
      \n
    • Heading. Add eye-catching headlines.
    • \n
    • Image. Control the size, opacity and more.
    • \n
    • Text Editor. Just like the WordPress editor.
    • \n
    • Video. Add YouTube, Vimeo, Dailymotion or self-hosted videos.
    • \n
    • Button. Create interactive buttons.
    • \n
    • Link in Bio. Build link in bio components to promote your business / services.
    • \n
    • Image Box. A box with image, headline and text.
    • \n
    • Testimonials. Customer testimonials.
    • \n
    • Icon. Place one or more of 600+ icons available.
    • \n
    • Icon Box. An icon, headline, and text with one widget.
    • \n
    • Social Icons. Link to your social pages with the Facebook/X (formerly Twitter) icons.
    • \n
    • Image Gallery. Display your images in a grid.
    • \n
    • Image Carousel. Create rotating carousels or sliders for chosen images.
    • \n
    • Icon List. Use any icon to create a bullet list.
    • \n
    • Counter. Show numbers in an escalating manner.
    • \n
    • Progress Bar. Include an escalating progress bar.
    • \n
    • Nested Tabs. Display content in vertical or horizontal tabs.
    • \n
    • Nested Accordion. Display any type of content in collapsible sections.
    • \n
    • Toggle. Use the Toggle to hide or display content, like FAQ.
    • \n
    • Rating. Display how many stars (or another icon) other visitors gave.
    • \n
    • Alert. Include a colored alert box to draw visitor’s attention.
    • \n
    • HTML. Insert code into the page.
    • \n
    • Shortcode. Insert shortcodes from any plugin into the page.
    • \n
    • Menu Anchor. Link any menu to this anchor.
    • \n
    • Read More. Set the Read More cut-off for the excerpt in archive pages.
    • \n
    • Sidebar. Add sidebars onto the page.
    • \n
    • Google Maps. Embed maps into the page.
    • \n
    • SoundCloud. Add SoundCloud audio bits.
    • \n
    • Divider. Separate content with a designed divider.
    • \n
    • Spacer. Add space between elements.
    • \n
    • Text Path. Attach your text to a path.
    • \n
    • And counting…
    • \n
    \n

    🚀 Enhance Your Website

    \n

    High-Performing Websites: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.

    \n

    Key features include:

    \n
      \n
    • Reduced DOM Output: Streamlined HTML structure for faster rendering.
    • \n
    • Improved Media File Loading: Optimized loading of images, videos, and other media assets.
    • \n
    • Reduced CSS and JS Files: Minimized and concatenated stylesheets and scripts for quicker loading times.
    • \n
    • Lazy Loading: Deferred loading of non-critical resources to improve initial page load speed.
    • \n
    • Faster Font Loading: Efficient delivery of web fonts to enhance text rendering speed.
    • \n
    • Optimized Front-End Asset Loading: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.
    • \n
    • Element Caching: Cache frequently accessed design elements to reduce server response time and enhance overall performance.
    • \n
    \n

    🔥 Elementor Pro Features

    \n

    Create unparalleled websites while saving time, money and resources with Elementor Pro’s full website builder. Get access to 100+ professional widgets, features, and tools.

    \n

    Pro Design Widgets:

    \n
      \n
    1. Posts: Display your blog posts with customizable layouts and styles.
    2. \n
    3. Share Buttons: Allow visitors to easily share your content on various social media platforms.
    4. \n
    5. Portfolio: Showcase your work or projects with stunning portfolio layouts.
    6. \n
    7. Slides: Create dynamic slideshows with custom animations and transitions.
    8. \n
    9. Form: Design and customize advanced forms for user interaction and data collection.
    10. \n
    11. Login: Add a login form or user registration module to your website.
    12. \n
    13. Nav Menu: Customize and style your website’s navigation menu for better user experience.
    14. \n
    15. Animated Headline: Create attention-grabbing headlines with animated effects.
    16. \n
    17. Price Table: Display pricing plans or packages in a structured and visually appealing format.
    18. \n
    19. Price List: Showcase a list of prices or services with customizable styling options.
    20. \n
    21. Gallery: Create beautiful image galleries with various layout options and lightbox support.
    22. \n
    23. Flip Box: Add interactive flip animations to highlight content or features.
    24. \n
    25. Call to Action: Encourage user interaction and conversions with compelling call-to-action sections.
    26. \n
    27. Media Carousel: Showcase a carousel of media files such as images or videos.
    28. \n
    29. Testimonial Carousel: Display client testimonials in a carousel format for social proof.
    30. \n
    31. Nested Carousel: Create nested carousels for more complex content organization.
    32. \n
    33. Loop Carousel: Display content in a looped carousel for continuous viewing.
    34. \n
    35. Table Of Content: Generate a table of contents for longer articles or guides to improve navigation.
    36. \n
    37. Countdown: Add countdown timers to create urgency for promotions or events.
    38. \n
    39. Facebook Page: Embed your Facebook page feed or content onto your website.
    40. \n
    41. Blockquote: Highlight quotes or testimonials with stylish formatting options.
    42. \n
    43. Template: Save and reuse design templates for consistent branding and layout.
    44. \n
    45. Reviews: Showcase customer reviews and ratings to build trust and credibility.
    46. \n
    47. Facebook Button: Add buttons to promote interactions with your Facebook page or content.
    48. \n
    49. Facebook Embed: Embed Facebook posts or content onto your website.
    50. \n
    51. Facebook Comments: Enable Facebook comments on your website’s pages or posts.
    52. \n
    53. PayPal Button: Integrate PayPal buttons for easy online payments.
    54. \n
    55. Stripe Button: Integrate Stripe payment buttons to facilitate secure online transactions.
    56. \n
    57. Lottie Widget: Add Lottie animations to enhance visual appeal and engagement.
    58. \n
    59. Code Highlight: Display code snippets with syntax highlighting for better readability.
    60. \n
    61. Video Playlist: Create and customize playlists for video content on your website.
    62. \n
    63. Mega Menu: Customize advanced menus for better navigation and displaying complex content.
    64. \n
    65. Off Canvas: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.
    66. \n
    \n

    Pro Theme Widgets:

    \n

    Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more

    \n
      \n
    1. Post Title: Customize the title of individual blog posts or pages.
    2. \n
    3. Post Excerpt: Display a brief summary or teaser of your blog posts.
    4. \n
    5. Post Content: Customize the main content area of your blog posts or pages.
    6. \n
    7. Featured Image: Set and customize featured images for blog posts or pages.
    8. \n
    9. Author Box: Display author information and bios on blog posts.
    10. \n
    11. Post Comments: Customize the appearance and functionality of comments sections on your website.
    12. \n
    13. Post Navigation: Add navigation links to adjacent posts for easy browsing.
    14. \n
    15. Post Info: Display additional information about blog posts, such as author and date.
    16. \n
    17. Site Logo: Upload and customize your website’s logo for branding purposes.
    18. \n
    19. Site Title: Customize the title of your website.
    20. \n
    21. Page Title: Customize the title of individual pages.
    22. \n
    23. Search Bar: Add a search bar to allow users to search your website’s content.
    24. \n
    25. Breadcrumbs: Display hierarchical navigation paths for better user navigation.
    26. \n
    27. Sitemap: Generate a sitemap for better search engine indexing and user navigation.
    28. \n
    29. Loop Grid: Design and customize grid layouts for blog post archives or product listings.
    30. \n
    \n

    Pro WooCommerce Widgets:

    \n

    Design and customize a complete online shopping experience across your entire website.

    \n
      \n
    1. Product: Display individual products with customizable layouts and styles.
    2. \n
    3. Breadcrumbs: Display hierarchical navigation paths for better user navigation within your store.
    4. \n
    5. Product Title: Customize the title of individual products.
    6. \n
    7. Product Images: Set and customize images for product listings.
    8. \n
    9. Product Price: Display the price of individual products.
    10. \n
    11. Add To Cart: Add customizable add to cart buttons for easy purchasing.
    12. \n
    13. Product Rating: Display ratings and reviews for products.
    14. \n
    15. Product Stock: Display stock availability for products.
    16. \n
    17. Product Meta: Display additional information about products, such as SKU and categories.
    18. \n
    19. Product Content: Customize the main content area of product descriptions.
    20. \n
    21. Short Description: Display brief summaries or teasers of products.
    22. \n
    23. Product Data Tabs: Organize product information into tabbed sections for better organization.
    24. \n
    25. Additional Information: Display additional details about products, such as dimensions and weight.
    26. \n
    27. Product Related: Showcase related products to encourage additional purchases.
    28. \n
    29. Upsells: Promote upsell products to increase average order value.
    30. \n
    31. Products: Display a grid or list of products with customizable settings.
    32. \n
    33. Custom Add To Cart: Customize the add to cart button for specific products.
    34. \n
    35. WooCommerce Pages: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.
    36. \n
    37. Product Categories: Display product categories for easy navigation within your store.
    38. \n
    39. Menu Cart: Display a cart icon in your navigation menu for easy access to the shopping cart.
    40. \n
    41. Cart: Customize the appearance and functionality of the shopping cart page.
    42. \n
    43. Checkout: Customize the appearance and functionality of the checkout page.
    44. \n
    45. My Account: Customize the appearance and functionality of the customer account area.
    46. \n
    47. Purchase Summary: Display a summary of purchases during the checkout process.
    48. \n
    49. WooCommerce Notices: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.
    50. \n
    \n

    Build professional websites with Elementor Pro!

    \n

    🔒 SECURITY AND COMPLIANCE

    \n

    Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.

    \n

    We encourage ethical security research through our Bug Bounty program. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.

    \n

    For more information: Trust Center.

    \n

    ♿ Accessibility Best Practices

    \n

    Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.

    \n

    🌐 Translated to 63+ languages, includes RTL support

    \n

    Elementor supports multiple languages, typographies, and RTL, with editor translations in over 63 languages.

    \n

    It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via translate.wordpress.org. See our guide on how to translate and localize the plugin.

    \n

    ⏩ Use of 3rd Party Services

    \n

    To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:

    \n
      \n
    • Google Fonts – are loaded to add additional fonts to your website. Google’s TOS and Privacy Policy
    • \n
    • Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly mentioned, requiring your approval and manual opt-in. Learn more in our TOS and Privacy Policy.
    • \n
    \n

    📧 Related Products by Elementor

    \n

    Image Optimizer: Superior image compression for faster, high-quality website performance.

    \n

    Site Mailer: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.

    \n

    📣 See What Our Users Have to Say

    \n
    \n

    “Elementor is hands down the best page builder out there” – ★★★★★ Graphicvision1

    \n

    “An incredibly user-friendly plugin” – ★★★★★ Hyeyoga

    \n

    “Easily, my most used WP plugin” – ★★★★★ Xander Venske

    \n

    “I upgraded to the Pro version and just love this plugin!” – ★★★★★ Andybarn56

    \n

    “Excellent product with great tech support” – ★★★★★ Martywilsonnj

    \n
    \n

    More testimonials

    \n

    🌍 Join a Global Community

    \n

    Join a global community that helps each other achieve their goals.

    \n
      \n
    • Discord Community – Topic and language-specific channels, plus Ella, an amazing AI helper, ready to assist you.
    • \n
    • Facebook Community – Over 150K+ members, offering support, advice, feedback, and tutorials.
    • \n
    • GitHub Community – Get information about releases, request features, or report a bug.
    • \n
    • Elementor Addons, Themes, and Kits Themes and Kits – created specifically for Elementor.
    • \n
    • Learn valuable insights and techniques from our YouTube Channel.
    • \n
    • Access our Academy and Help Center – Find guides, tutorials, and resources to answer your questions and boost creativity.
    • \n
    • Show your support by rating us on WordPress. Your feedback fuels our growth! 🤗
    • \n
    • If you have questions or need support, visit the Plugin’s Forum. Elementor Pro users can get 24/7 premium support, …
    • \n
    \n", "donate_link": "", "num_ratings": 7129, "screenshots": {"1": {"src": "https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087", "caption": "Visual Drag and Drop Editor - Design your website layouts and place any element anywhere on the page for pixel-perfect designs."}, "2": {"src": "https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087", "caption": "Full Design System - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time."}, "3": {"src": "https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087", "caption": "Responsive Design Fully edit your website and customize the behavior on desktop, tablet, & mobile to optimize the visitor experience on every device."}, "4": {"src": "https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087", "caption": "Kits and Templates - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization."}, "5": {"src": "https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087", "caption": "Nested Elements Leverage Elementor''s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility."}, "6": {"src": "https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087", "caption": "Motion Effects - Add entrance animations and transitions to any element in your website to captivate visitors."}}, "support_url": "https://wordpress.org/support/plugin/elementor/", "contributors": {"elemntor": {"avatar": "https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elemntor/", "display_name": "Elementor"}}, "last_updated": "2025-10-21 1:44pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/elementor.3.32.5.zip", "author_profile": "https://profiles.wordpress.org/elemntor/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 10000000, "aspiresync_meta": {"id": "019a30bf-f366-73bf-ac1f-dba1de893dc5", "name": "Elementor Website Builder – More Than Just a Page Builder", "slug": "elementor", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1761054240, "version": "3.32.5"}, "support_threads": 109, "requires_plugins": [], "short_description": "The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support", "support_threads_resolved": 86}'); -INSERT INTO public.plugins VALUES ('019a30c1-64e2-700d-baf4-d86ccd67d9a9', 'elementskit-lite', 'ElementsKit Elementor Addons and Templates', 'Join millions who empower their websites with ElementsKit Elementor Addons. Get templates, & 100+ widgets like header-footer, mega menu, custom widget', '

    ElementsKit Elementor addons is an ultimate and all-in-one addons for Elementor Page Builder. It brings a nice comprehensive solution with 90+ Elementor widgets, 20+ modules, and 1000+ pre-designed Elementor templates.

    -

    Everything is accessible through an easy drag-and-drop interface, including features like header-footer builder, mega menu, widget builder, and more to expand your Elementor capabilities.

    -

    Besides exclusive features & templates, ElementsKit offers copy-paste across domains and control content visibility with multiple conditions. It’s a versatile design toolkit packed with advanced widgets for content, forms, posts, charts, WooCommerce, etc, dedicated for building any Elementor site.

    -

    🏆 Great Elementor Addon! Check ElementsKit demos for new website-building possibilities.

    -

    -

    | ElementsKit Home Page | ElementsKit Elementor Templates | Blog | Documentation | Need Support? | How to get started with ElementsKit Pro |

    -

    🌟 Check all ElementsKit Elements 🌟
    -🌟 Elementor Mega Menu Builder 🌟
    -🌟 Elementor Header Footer Builder 🌟
    -🌟 Elementor Custom Widget Builder 🌟

    -

    KEY FEATURES

    -

    🔥 All time **downloads of ElementsKit : 41 million+

    -

    ⭐ 90+ Free and Premium Elementor Widgets

    -

    20+ Exclusive Modules for advanced design solution

    -

    45+ Pre-designed Header & Footer Elementor Templates

    -

    98+ Ready Pages to start Elementor website in no time

    -

    ⭐ Versatile Elementor template library of 1000+ Pre-made Sections

    -

    ⭐ No-code Elementor Custom Widget Builder

    -

    ⭐ Drag & Drop Elementor Mega Menu Builder

    -

    ⭐ Beneficial WooCommerce Elementor Templates & Widgets

    -

    ⭐ Cross-domain copy-paste compatibility

    -

    ⭐ Fully Responsive website for mobile, desktop, & tab

    -

    ⭐ No extra loading time for web pages

    -

    ⭐ Expert support team available 24/7

    -

    ⭐ Build with Elementor & has the same interface

    -

    ⭐ Packed with attractive animation effects

    -

    Extensive ElementsKit Templates for Elementor

    -

    ElementsKit is a popular Elementor addon among millions of users that eliminates the need to design from scratch. It ships with over 900+ pre-made section blocks and 40+ ready-made Elementor templates for designing a full website, including Elementor header-footer templates & Elementor mega menu templates. Whatever niche or industry, you’re working with, ElementsKit page builder addon layout library includes unique Elementor templates designed with royalty-free images.

    -

    Modular based and Lightweight

    -

    This modular-based page builder plugin, you only enable widgets or modules you need to create your design to ensure no additional bloat in website performance.

    -

    Completely Customizable & Dynamic Website Builder Functionality

    -

    ElementsKit widgets and modules come with powerful styling controls to customize every pixel of your Elementor sites and support dynamic conditions to show content by role, device, or time and different headers.

    -

    50+ FREE ELEMENTOR WIDGETS

    -

    If you’re looking for a free Elementor addon, ElementsKit offers a complete package in town, with 50+ widgets, 5+ modules, and professionally designed Elementor templates.

    -

    Heading – Design headings with multiple fancy, & custom styles. (Free WordPress Header Footer Builder)

    -

    Button – Add amazing buttons with text, color, CTA, etc.

    -

    Team – Customize team section with members’ names, positions, bios, etc.

    -

    Accordion – Display texts in a foldable & concise way.

    -

    Tab – Show texts divided into horizontal or vertical tabs with titles.

    -

    Social Icons – Displaying social media icons is easy now.

    -

    Client Logo – Showcase your client & sponsor logos with different styles.

    -

    Comparison Table: Easily compare and contrast different products, services, or options.

    -

    Countdown Timer – Comes with various effects, styles, and formats.

    -

    FAQ – Present all Q&As with different designs and unique styles.

    -

    Funfact – Show statistics, achievements, & fun facts.

    -

    Icon Box – Write short brief about services or products within boxes.

    -

    Image Accordion – Display multiple images in a shortened format easily.

    -

    Image Box – Combine images with headlines, texts, and call-to-action buttons.

    -

    Pie Chart – Create and style data pie charts on your web page within a short time.

    -

    Pricing Table – Describe your clear product/service value beautifully.

    -

    Progress Bar – Visualize project’s progress with intuitive graphics.

    -

    Testimonial – Show clients feedback, & recommendations on your sites.

    -

    MailChimp – Create and manage a mailing list, automated mailing, newsletter, etc.

    -

    Image Comparison – Design and compare two images.

    -

    Call To Action – Bring an image, content, and other features under one box.

    -

    Video – Add playable videos to your page and style them nicely.

    -

    Category List – Organize and customize every section of each category in a list.

    -

    Page List – Arrange & customize your list of pages in horizontal or vertical layout.

    -

    Drop Caps – Design content’s starting letter in a stylish, large, and capitalized format.

    -

    Dual Button – Display two buttons side by side with the Elementor dual button widget.

    -

    Business Hours – Inform your opening hours to users clearly and attractively.

    -

    Social Share – Share your content on your social media accounts easily.

    -

    Lottie – Export a JSON file or provide a URL to use amazing animations.

    -

    TablePress – Allows you to create and style nice responsive data tables.

    -

    Back to Top – Add and customize the back-to-top button easily.

    -

    ElementsKit Elementor Addon Featuring Free Header Widgets

    -

    Experience a no-cost WordPress site header navigation functions like dropdown menu, hamburger menu, offcanvas menu. Also, customize header info items like logos, text, address, social icons and display a functional search bar.

    -

    Free Elementor Widgets for Header Styling
    🔶 ElementsKit Nav Menu 🔶 Header Offcanvas 🔶 Header Search 🔶Header Info 🔶

    -

    Blog Post Addon for Elementor

    -

    Display and organize your blog posts in flexible blog layout options like grid, list, tab, etc. ElementsKit covers various blog post widgets that make it easy for visitors to navigate to your popular, related, recent blog posts, or a based on aspecific category through an intuitive blog post structure.

    -

    🔶 Blog Posts 🔶 Post Tab 🔶 Post List 🔶 Post Grid 🔶 Category List🔶

    -

    Free Elementor Addon for Third-Party Form Styling

    -

    If you’re using a popular form builder plugin on your website, chances are the ElementsKit Elementor addon includes a dedicated form style widget for it. With a flexible, Elementor-like interface, you can easily customize various form types, including contact forms, suggestion forms, and newsletters.

    -

    Whether you choose from pre-designed layouts or build a form from scratch, ElementsKit provides extensive customization options to match your design needs effortlessly.

    -

    Free Elementor Widgets for Form Styling
    🔶 Caldera Forms 🔶 Contact Form 7 🔶 Ninja Forms 🔶WP Forms 🔶 weForms 🔶 Fluent Forms 🔶 MailChimp 🔶

    -

    Highly Functional & Free Modules

    -

    This advanced Elementor addon offers some powerful modules in the free version.

    -

    🟢 ElementsKit Header and Footer Builder
    -Build and customize Elementor website header footer with a drag-and-drop interface. Enjoy features like conditional display, sticky menus, off-canvas menus, WooCommerce carts, etc, with Elementor header footer builder. ElementsKit has versatile pre-designed templates for Elementor header footer.

    -

    -

    🟢 Elementor Megamenu builder
    -Design multi-level WordPress mega menus with Elementor widgets, content, and visuals using ElementsKit’s no-code Elementor mega menu builder. Create horizontal or vertical menus effortlessly, ideal for any niche, including free e-commerce mega menu.

    -

    🟢 Elementor Widget Builder
    -ElementsKit gives web designers ultimate creative freedom to build custom widgets without coding. Just drag and drop controls to create fully responsive Elementor widgets.

    -

    🟢 Onepage Scroll
    -ElementsKit’s Onepage Scroll lets you create sleek, scrollable onepage scroll websites with interactive navigation. This Elementor onepage scroll feature also supports pre-designed onepage scroll layouts.

    -

    🟢ElementsKit Icon Pack Module**
    -ElementsKit ships with a collection of meticulously designed, high-quality custom icons (3000+) for WordPress.

    -

    Exclusive PRO Elementor Addons Widgets

    -

    Let’s look at advanced Elementor widgets in ElementsKit Pro version:

    -

    Gallery – Showcase your recent photos, company environment, events, etc.

    -

    Advanced Accordion) – Helps to arrange images, social feed, progress bar, MailChimp subscription form, etc. within the accordion in a nested format.

    -

    Vertical Menu – Easily design & add vertical navigation menus on your site.

    -

    Circle Menu – A creative solution for showing your menu items in a circle.

    -

    Advanced Tab – Style the tabs and display various nested elements.

    -

    Timeline – Create your timeline chart, design and showcase it.

    -

    Chart – Show a graphical representation of data and create charts.

    -

    Data Table – Let you create data tables with advanced styling options and features.

    -

    Creative Button – Customize buttons with hover effects, content, borders, shadows, and more.

    -

    Motion Text – Helps to display your text with various motion animations, with styles.

    -

    Advanced Toggle – Create amazing pricing tables, icon boxes, and packages and decorate them nicely.

    -

    Vertical Mega Menu – Display Mega Menu vertically & customize the content easily with this Elementor mega menu builder addon.

    -

    Hotspot – Identify a specific part of your image with a tooltip and reveal an associated text after user interactions.

    -

    Zoom – Set the meeting hosts, start time and date, time zone, duration, etc.

    -

    Breadcrumb – Customize the breadcrumb of your website by setting the max title word length and showing/hiding the category trail.

    -

    Video Gallery – Add as many videos as you want to your website and design an attractive video gallery.

    -

    Popup Modal – Design amazing popups and place them wherever you want them on your website.

    -

    Google Map – Show your business address to visitors with a Google Map effortlessly.

    -

    Unfold – Folding up certain sections (texts/images) is easy now.

    -

    Image Swap – Interactively swap or switch between different images displayed on a screen.

    -

    Advanced Slider – Mesmerizing sliders will assist you to boost engagement, conversion, and sales.

    -

    Image Hover Effect – Customize interesting hover effects in no time to make catchy images.

    -

    Fancy Animated Text – Create special and engaging animated texts.

    -

    Price Menu – Make an appealing price menu to start and plan a business.

    -

    Stylish List – Add a customized list and improve visitors’ engagement with your Elementor site.

    -

    Team Carousel Slider – Introduce your team members pleasingly on a slider.

    -

    Image Morphing – Control the display of your WordPress images without any hassles.

    -

    Flip Box – Add excellent before and after effects to your messages.

    -

    Audio Player – Make your music or audio files and present them on your website interestingly.

    -

    Content Ticker – Showcase recent posts, latest and trending news, etc. stylishly.

    -

    Coupon Code – Allows to make a small and customizable pop-up to display special offers.

    -

    Protected content – Protect your valuable or premium content with passwords or user roles.

    -

    Interactive Links – Clickable and animated links boosts user interactions.

    -

    Advanced Search – Design powerful live search panel to provide relevant search results.

    -

    WooCommerce Elementor Addon

    -

    Display and design e-commerce products in a list and intuitive sliders, along with their categories and mini cart option, anywhere you want.
    -
    🔶 WooCommerce Product List 🔶WooCommerce Product Carousel 🔶WooCommerce Category List 🔶WooCommerce Mini Cart

    -

    Effortless Integration with Different Social Platforms

    -

    ElementsKit Pro is a complete Elementor social media addon that lets you showcase social media content, sharing options, and other helpful engagement features directly into your WordPress website. Web page visitors can see and connect with dominant social media platforms with the help of widgets like:

    -


    🔶 Facebook Feed 🔶Instagram Feed 🔶 Twitter Feed 🔶Pinterest Feed 🔶

    -

    You can enable chat-head or a click to chat option on your Elementor website to easily integrate Messenger & WhatsApp.
    -
    🔶 Facebook Messenger Module 🔶 WhatsApp 🔶

    -

    Also, creative professionals can use this Elementor addon for building their professional-level portfolio website. It has Elementor widgets:
    -
    🔶 Behance Feed 🔶 Dribbble Feed 🔶

    -

    ElementsKit allows to showcase authentic user feedback from trusted platforms while offering detailed layout custoization to match your website’s design.
    -
    🔶 Yelp 🔶 Facebook Review 🔶

    -

    PRO Modules in Premium Elementor Addon version

    -

    To empower Elementor page builder, ElementsKit has some exclusive premium modules:

    -

    🟢 Conditional Content Module Show or hide a specific part of your webpage or content based on certain conditions.

    -

    🟢 Advanced Sticky Module Always Keep menu header at the top screen.

    -

    🟢 Advanced Parallax Module Design your page and tell stories while users scroll a page.

    -

    🟢 Advanced Tooltip Module – It guides you to arrange information, add any element or media and experiment different tooltips.

    -

    🟢 Cross-Domain Copy Paste Easily reuse any section, column, and widget of a website to another website, with this module.

    -

    🟢 Image Masking Helps you to customize the image shapes and make them more appealing.

    -

    🟢 Particles Grab attention with ElementsKit Particles and decorate backgrounds with dynamic particle effects.

    -

    🟢 Wrapper Link Advanced way to add a link to any section, column, or widget in Elementor.

    -

    🟢 Glass Morphism To apply frosted glass effects on your website backgrounds, this module is a fantastic choice.

    -

    🟢 Mouse Cursor Convert boring cursor to interesting ones with our latest module.

    -

    🟢 Liquid Glass Add trendy Apple liquid glass interface to your Elementor webstie.

    -

    This Elementor Addon supports Elementor Form Plugin:

    -

    🟢 Reset Button for Elementor Form: Add a reset button to Elementor Form and customize it to match your brand.

    -

    🟢 Google Sheet Integration for Elementor Form: Automate the data collection of Elementor Form and store form submission data directly in Google Sheets.

    -

    👉 Learn How to Install & Use ElementsKit

    -

    🤝 BACKED BY A TRUSTED TEAM

    -

    ElementsKit is brought to you by Wpmet, a name trusted by 10,00,000 satisfied users worldwide!

    -

    » DOCUMENTATION AND SUPPORT

    - -

    😍 LOVE ElementsKit Elementor Addon?

    -

    ⭐️ Rate us on WordPress

    -

    ✨ OUR OTHER PLUGINS

    -

    👉 MetForm – Super flexible and easy-to-use form builder.
    -👉 ShopEngine – Your complete WooCommerce solution, built for Elementor.
    -👉 GutenKit – Build websites 10x Faster with ZERO coding in the Gutenberg Block Editor.
    -👉 EmailKit – Effortless way to change your email-building experience.
    -👉 GetGenie Ai – An advanced Ai assistant for SEO-friendly content.
    -👉 Wp Social – Leverage Wp Social to add Social Login, Social Counter, and Social Login to your website.
    -👉 Wp Fundraising – Employ the power of Wp Fundraising to create a crowdfunding & donation sites.
    -👉 Wp Ultimate Review – Manage customer reviews with the Wp Ultimate Review plugin.
    -👉 PopupKit – Build exceptional popup for diverse needs within the WordPress block editor.
    -👉 TableKit – Make fully-customizable multipurpose table & generate data table within Gutenberg block editor.
    -👉 Genie Image – Generate images directly on your WordPress website with the magic of AI.

    -

    Visit wpmet for essential WordPress Tutorials, Tips & Tricks!

    -', '3.7.5', 'Roxnor', '6.0', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/elementskit-lite.3.7.5.zip', '2019-07-06 00:00:00+00', '2025-10-28 16:34:00+00', 'https://profiles.wordpress.org/roxnor/', 98, 1937, 11, 11, 1000000, 41657865, 'https://wpmet.com/plugin/elementskit/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/elementskit-lite/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "ElementsKit Elementor Addons and Templates", "slug": "elementskit-lite", "tags": {"elementor-addon": "elementor addon", "elementor-addons": "elementor addons", "elementor-widgets": "elementor widgets", "mega-menu-builder": "mega menu builder", "header-footer-builder": "header footer builder"}, "added": "2019-07-06", "icons": {"1x": "https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175", "2x": "https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175"}, "author": "Roxnor", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/elementskit-lite/assets/banner-772x250.jpg?rev=3250020", "high": "https://ps.w.org/elementskit-lite/assets/banner-1544x500.jpg?rev=3250020"}, "ratings": {"1": 45, "2": 5, "3": 14, "4": 62, "5": 1811}, "version": "3.7.5", "homepage": "https://wpmet.com/plugin/elementskit/", "requires": "6.0", "sections": {"faq": "\n
    \nHow do the ElementsKit Elementor addons reduce the extra loading time of your WordPress website?\n\n

    \n

    This well-coded addons caches API-related widget data to avoid calling directly to the API each time. Also, you can deactivate unused widgets and modules.

    \n

    \n
    \nDoes ElementsKit cause conflicts with other plugins or themes?\n\n

    \n

    No, you can work seamlessly with this Elementor addons.

    \n

    \n
    \nElementor editor fails to load or not working?\n\n

    \n

    It’s due to your servers’ PHP settings. Increase your server PHP memory limit from the wp-config.php file or php.ini file. For help, please contact your hosting provider and ask to increase
    \n* PHP memory_limit = 512M
    \n* max_execution_time = 300

    \n

    \n
    \nHow can I report security bugs for this Elementor addon?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very disappointing experience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mattdev25 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I bought the ElementsKit Pro plugin, but it doesn’t work as expected. The templates don’t insert properly, and I haven’t been able to use the features I paid for. I also tried to cancel my subscription renewal, but the cancellation option gives an error 404. Support hasn’t replied to any of my messages—very disappointing experience.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy guywimpory on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useful and esy to use

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice and Useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ibrahim65 on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice and Useful

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really great product and support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy intermagic on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I love ElementsKit for Elementor, really great and very good looking features and btw a very fast support. It''s worth the small amount of money to get my site looking beautiful ;-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super-charged plugin! Boost your Website!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy francesgandini on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ElementsKit has truly transformed the way I design with Elementor. The widgets are powerful yet lightweight, and the customization options are endless. I especially love how smoothly it integrates with other plugins — everything just works perfectly together.

    \n\n\n\n

    The pre-designed templates save so much time, and the header/footer builder gives me full creative control without needing extra code. Support has been quick and helpful every time I reached out.

    \n\n\n\n

    Highly recommended for anyone who wants to build professional websites faster and with a clean, modern look!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy andsongama on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    If you have Elementor, you need to have it!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome addition to Elementor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ilaos (webstuffguy) on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Elementor lacks so many elements however with ElementKit you now have tons of features to enhance your website. The customer support is also top-notch.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy prozvitok on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I just installed it, but I think it''s a good plugin...)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great technical support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy xenxenvn on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great technical support

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy glennt on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ElementsKit works perfectly for me.

    \n
    \n
    \n", "changelog": "

    ElementsKit Elementor Addons Version: 3.7.5 (2025-10-28)

    \n
      \n
    • Fixed: Mega menu hides after applying WooCommerce filter
    • \n
    • Improved: Dashboard onboard UI
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.7.4 (2025-10-20)

    \n
      \n
    • Fixed: Deprecated Elementor swiper button styles
    • \n
    • Fixed: Width and height not working in pricing table widget
    • \n
    • Improved: Input styling controls for mailchimp widget
    • \n
    • Improved: Admin dashboard page design
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.7.3 (2025-09-24)

    \n
      \n
    • Added: Elementor element manager compatibility
    • \n
    • Fixed: Social icon size not working for SVG in team widget
    • \n
    • Improved: Content retrieval using slugs for the mega menu and advanced widgets
    • \n
    • Improved: Query optimized for the content retrieval of advanced widgets content
    • \n
    • Improved: Slug-based page retrieval and CPT visibility for mega menu, advanced widgets
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.7.2 (2025-09-03)

    \n
      \n
    • Fixed: SVG icon compatibility issue in header search widget
    • \n
    • Fixed: Submenu icons not showing in mobile menu
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.7.1 (2025-09-02)

    \n
      \n
    • Fixed: Drop down icons are not showing in nav menu widget
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.7.0 (2025-09-01)

    \n
      \n
    • Added: Experimental SVG font icon support for ElementsKit icon pack
    • \n
    • Added: Inline video style for video widget
    • \n
    • Added: New glow animation for video widget
    • \n
    • Added: X (Twitter) and TikTok icons
    • \n
    • Fixed: Spinner icon not showing when ajax is enabled for megamenu
    • \n
    • Fixed: Autoplay not working in video widget
    • \n
    • Fixed: Mouse event box click not working in flipbox widget
    • \n
    • Improved: Removed SVG stroke in social icon widget
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.6.1 (2025-08-13)

    \n\n

    ElementsKit Elementor Addons Version: 3.6.0 (2025-08-05)

    \n
      \n
    • Added: Accordion widget title and icon hover color controls
    • \n
    • Added: Button Widget box shadow hover control
    • \n
    • Fixed: Post List widget icon list CSS loading issue
    • \n
    • Fixed: Advanced Tab widget tablet responsiveness issue
    • \n
    • Fixed: Pricing table widget button hover border issue
    • \n
    \n

    ElementsKit Elementor Addons Version: 3.5.6 (2025-07-22)
    \nImproved: Some minor dashboard UI

    \n

    ElementsKit Elementor Addons Version: 3.5.5 (2025-07-13)
    \nAdded: Child submenu indicator icon size control in Nav Menu
    \nFixed: Icon size not working for Funfact widget

    \n

    ElementsKit Elementor Addons Version: 3.5.4 (2025-06-23)
    \nFixed: Submenu indicator font size not working in nav menu widget

    \n

    ElementsKit Elementor Addons Version: 3.5.3 (2025-06-15)
    \nImproved: Escaped countdown timer widget labels in JavaScript
    \nImproved: Attributes escaping in widget builder module
    \nImproved: Data attributes escaping in image comparison widget

    \n

    ElementsKit Elementor Addons Version: 3.5.2 (2025-05-25)
    \nAdded: Skip to content link in header
    \nFixed: Keyboard tab navigation for focusable links was not working
    \nImproved: Overall accessibility experience
    \nImproved: Image comparison widget before after label escaping

    \n

    ElementsKit Elementor Addons Version: 3.5.1 (2025-05-11)
    \nImproved: Widget builder controls escaping

    \n

    ElementsKit Elementor Addons Version: 3.5.0 (2025-04-20)
    \nImproved: Countdown timer widget custom labels escaping
    \nImproved: Removed duplicate CSS for widgets

    \n

    ElementsKit Elementor Addons Version: 3.4.9 (2025-04-15)
    \nAdded: Compatibility with WordPress 6.8
    \nImproved: Update DataTables to v2 for table widget
    \nImproved: Just-in-time translation loading

    \n

    ElementsKit Elementor Addons Version: 3.4.8 (2025-03-27)
    \nFixed: Background gradient color not working in team widget
    \nFixed: Countdown timer widget flip style expiry title escaping

    \n

    ElementsKit Elementor Addons Version: 3.4.7 (2025-03-18)
    \nFixed: Swiper compatibility support for Elementor 3.28.0

    \n

    ElementsKit Elementor Addons Version: 3.4.6 (2025-03-18)
    \nFixed: Date picker issue in DateTime control in widget builder
    \nFixed: Ajax pagination not working in blog posts widget
    \nFixed: Add styles for swiper arrow buttons in image accordion widget

    \n

    ElementsKit Elementor Addons Version: 3.4.4 (2025-02-16)
    \nImproved: Submenu indicators styling controls in nav menu widget
    \nImproved: Countdown timer widget sanitization and escaping

    \n

    ElementsKit Elementor Addons Version: 3.4.3 (2025-02-12)
    \nImproved: Countdown timer widget sanitization and escaping

    \n

    ElementsKit Elementor Addons Version: 3.4.2 (2025-02-10)
    \nFixed: Fatal error cannot redeclare walker class of nav menu widget

    \n

    ElementsKit Elementor Addons Version: 3.4.1 (2025-02-09)
    \nAdded: URL validation method to ensure only valid protocols are used for links
    \nFixed: Megamenu content retrieval to check for published status
    \nFixed: Header search popup not showing correctly when use video widget
    \nFixed: Ensure default value is an array when retrieving options
    \nImproved: Enhance image rendering logic and clean up client logo widget markup
    \nImproved: PCP warnings and errors

    \n

    ElementsKit Elementor Addons Version: 3.4.0 (2025-01-27)
    \nFixed: Submenu broken when mega menu module is deactivate in nav menu widget
    \nFixed: Equal height feature is not working in icon and image box widget
    \nFixed: PHP warning on client image size in testimonial widget style five
    \nFixed: List style icon color not working in category list widget

    \n

    ElementsKit Elementor Addons Version: 3.3.9 (2025-01-22)
    \nAdded: Info icon color control in pricing table widget
    \nFixed: List style issue in category list widget

    \n

    ElementsKit Elementor Addons Version: 3.3.8 (2025-01-20)
    \nFixed: Icon box widget read more button attribute issue

    \n

    ElementsKit Elementor Addons Version: 3.3.7 (2025-01-06)
    \nFixed: Visibility issue with nav menu indicator icon
    \nFixed: Text not centering when use custom width in button widget
    \nFixed: One page navigation issue in nav menu widget

    \n

    ElementsKit Elementor Addons Version: 3.3.6 (2024-12-31)
    \nFixed: WPML compatibility issue with URLs in all widgets
    \nFixed: Fatal error in category list widget

    \n

    ElementsKit Elementor Addons Version: 3.3.5 (2024-12-29)
    \nFixed: Fatal error with Jetpack’s image accelerator
    \nFixed: Inline layout issue in the page list widget
    \nFixed: Title float left control responsive issue
    \nImproved: Responsive styles for the horizontal timeline
    \nImproved: Inline SVG icon compatibility for several widgets

    \n

    ElementsKit Elementor Addons Version: 3.3.4 (2024-12-19)
    \nAdded: Compatibility support for Elementor 3.26 in widgets relying on Swiper
    \nAdded: Compatibility support for Elementor 3.26 in has_widget_inner_wrapper() for certain widgets
    \nFixed: Star rating color is not working in testimonial widget

    \n

    ElementsKit Elementor Addons Version: 3.3.3 (2024-12-07)
    \nAdded: Typography control for header search widget input
    \nAdded: Icon size control for header search widget input
    \nAdded: Icon space controls for left and right alignment in icon box widget
    \nFixed: SVG icon color issue in icon box widget
    \nFixed: Pricing table widget help text SVG icon not showing
    \nFixed: Testimonial widget rating SVG icons issue
    \nImproved: Add inline flex alignment for post meta in blog post widget
    \nImproved: Removed elementor-column-wrap class as Elementor has deleted this deprecated CSS class

    \n

    ElementsKit Elementor Addons Version: 3.3.2 (2024-11-17)
    \nImproved: Countdown timer on expiry title sanitization

    \n

    ElementsKit Elementor Addons Version: 3.3.1 (2024-10-26)
    \nAdded: Interactive link icon
    \nImproved: Use <nav> element instead of <div> in nav menu widget

    \n

    ElementsKit Elementor Addons Version: 3.3.0 (2024-10-20)
    \nFixed: Hover watermark SVG icon not working in the icon box widget
    \nFixed: Percent background not working for tooltip rounded and stripe style in progress bar widget
    \nImproved: Icon alignment for icon box widget
    \nImproved: Sanitize after and before fields in image comparison widget

    \n

    ElementsKit Elementor Addons Version: 3.2.9 (2024-10-16)
    \nFixed: Sticky menu jumping to random sections when hovering over megamenu items
    \nFixed: Conflict between ElementsKit and Zoom In motion effect in SCSS keyframes
    \nFixed: Testimonial style six to correctly display client photos
    \nFixed: Undefined array key warnings in PHP 8.3

    \n

    ElementsKit Elementor Addons Version: 3.2.8 (2024-09-22)
    \nFixed: Addressed the URL vulnerability issue in the video widget
    \nFixed: Responsive click behavior in the nav menu widget
    \nImproved: Support for caption and colspan attributes in table elements

    \n

    ElementsKit Elementor Addons Version: 3.2.7 (2024-09-01)
    \nAdded: Schema tag for faq, accordion, tab widget
    \nAdded: Compatibility for waypoints.js using IntersectionObserver()
    \nFixed: Display different logo on hover not working in testimonial widget
    \nFixed: Undefined array key warning in pie chart widget

    \n

    ElementsKit Elementor Addons Version: 3.2.6 (2024-08-22)
    \nImproved: Data migration conditions
    \nRemoved: Edit with EmailKit button from WooCommerce email settings

    \n

    ElementsKit Elementor Addons Version: 3.2.5 (2024-08-13)
    \nFixed: Element caching compatibility

    \n

    ElementsKit Elementor Addons Version: 3.2.4 (2024-08-12)
    \nFixed: Corrected lottie loop count handling
    \nFixed: Korean language admin page display issue

    \n

    ElementsKit Elementor Addons Version: 3.2.3 (2024-07-27)
    \nAdded: Support for is_dynamic_content()

    \n

    ElementsKit Elementor Addons Version: 3.2.2 (2024-07-24)
    \nFixed: Warning notice on block editor

    \n

    ElementsKit Elementor Addons Version: 3.2.1 (2024-07-15)
    \nImproved: Widget area method ajax security
    \nFixed: Remove unused code for client logo arrow typography and add condition for position popover toggle
    \nFixed: Funfact widget text alignment issue

    \n

    ElementsKit Elementor Addons Version: 3.2.0 (2024-06-09)
    \nImproved: Enhanced security in dynamic content module
    \nImproved: Performance in dynamic content module
    \nFixed: Missing string translation issue
    \nFixed: Compatibility issue between team widget popup and elementor loop carousel
    \nFixed: Template library button compatibility with container
    \nFixed: Minor bugs & improvements

    \n

    ElementsKit Elementor Addons Version: 3.1.4 (2024-05-20)
    \nImproved: Social share widget crawlable for SEO
    \nFixed: Page list widget ‘nofollow’ issue
    \nFixed: Elementor popup not working inside advanced widget

    \n

    ElementsKit Elementor Addons Version: 3.1.3 (2024-04-28)
    \nImproved: Image accordion widget sanitization
    \nFixed: Nav menu widget indicator responsive issue

    \n

    ElementsKit Elementor Addons Version: 3.1.2 (2024-04-22)
    \nFixed: Add new form button compatibility with gravity form
    \nFixed: Template select field not working in protected content widget

    \n

    ElementsKit Elementor Addons Version: 3.1.1 (2024-04-15)
    \nImproved: Onepage scroll module sanitization

    \n

    ElementsKit Elementor Addons Version: 3.1.0 (2024-03-31)
    \nFixed: Contact form 7 widget textarea font size doesn’t work
    \nFixed: AJAX loading issue on advanced tab and accordion
    \nFixed: Nav menu widget sub menu indicator issue
    \nFixed: Conflict between search and video widget
    \nFixed: Minor bug & improvements

    \n

    ElementsKit Elementor Addons Version: 3.0.7 (2024-03-17)
    \nImproved: Button widget sanitization
    \nFixed: Link not working in blog posts widget
    \nFixed: Nav menu widget sub menu indicator issue
    \nFixed: Popup conflict between search and video widget
    \nFixed: AJAX Loading issue on advanced tab and accordion
    \nFixed: Minor bug & improvements

    \n

    ElementsKit Elementor Addons Version: 3.0.6 (2024-03-05)
    \nImproved: Testimonial and image accordion widget sanitization

    \n

    ElementsKit Elementor Addons Version: 3.0.5 (2024-02-27)
    \nFixed: Dynamic tag isn’t working for media in image comparison widget
    \nFixed: Minor bug & improvements

    \n

    ElementsKit Elementor Addons Version: 3.0.4 (2023-12-18)
    \nFixed: Mailchimp integration compatibility
    \nAdded: New zoom data fields due to JWT deprecation
    \nImproved: Removed unnecessary code and enhance security measures

    \n

    ElementsKit Elementor Addons Version: 3.0.3 (2023-11-27)
    \nFixed: Improve accessibility, performance, and security practices with 10up/plugin-check tool
    \nFixed: Optimize testimonial widget markup for improved performance
    \nFixed: Resolve testimonial conditional issue and align control
    \nAdded: Header offcanvas close button text control
    \nFixed: Client logo widget nav SVG support

    \n

    ElementsKit Elementor Addons Version: 3.0.2 (2023-11-08)
    \nFixed: Fix ajax loading icon issue for nav menu widget
    \nFixed: Team widget popup compatibility with elementor loop grid widget
    \nImproved: Pricing table widget control type for custom ordering

    \n

    ElementsKit Elementor Addons Version: 3.0.1 (2023-11-05)
    \nFixed: PHP notice at onepage scroll module

    \n

    ElementsKit Elementor Addons Version: 3.0.0 (2023-10-04)
    \nFixed: Header search accessibility issue
    \nFixed: Post tab click issue
    \nFixed: Adding dynamic width with ekit layout library
    \nFixed: PHPCS issue and resolved the warnings
    \nFixed: Video widget duration control issue
    \nFixed: Icon box widget custom attributes issue
    \nFixed: Piechart widget global color issue
    \nFixed: Nav menu justify align space between issue
    \nFixed: Nav menu widget textdoamin
    \nFixed: Testimonial widget layout breaking when link enable
    \nAdded: Submenu indicator font size control for nav menu widget

    \n

    ElementsKit Elementor Addons Version: 2.9.2 (2023-08-27)
    \nImproved: Access control security

    \n

    ElementsKit Elementor Addons Version: 2.9.0 (2023-06-21)
    \nAdded: Category filter in Post List Widget. Preview
    \nFixed: Pie chart Widget responsive issues
    \nFixed: Full-Width mega menu was showing in the wrong position for Mobile Breakpoint
    \nFixed: Megamenu was not showing when activating Polylang
    \nFixed: Compatibility issue with slick slider
    \nFixed: Custom attributes were not working in the Page List Widget
    \nFixed: The MailChimp Widget was not working inside the Elementor Popup
    \nFixed: Client Logo BG color was not working when the loop was enabled
    \nImproved: Editor template button placement
    \nImproved: Reduced JS and CSS up to 50 KB
    \nImproved: Optimized Testimonial and Client Logo Widget

    \n

    ElementsKit Elementor Addons Version: 2.8.8 (2023-05-03)
    \nFixed: Title HTML escaping in Tab Widget
    \nFixed: Image alt text was missing in the Image Accordion Widget
    \nFixed: Advanced widget popup was not centered in Elementor > 3.12.0
    \nImproved: Admin banner and Notice sanitization

    \n

    ElementsKit Elementor Addons Version: 2.8.7 (2023-04-06)
    \nFixed: Minor bug & improvements

    \n

    ElementsKit Elementor Addons Version: 2.8.6 (2023-04-05)
    \nTweaked: Using Elementor swiper instance to save up to 139KB of asset loading
    \nTweaked: Accessibility name on mobile menu hamburger icon
    \nFixed: ElementsKit Library category dropdown not showing
    \nImproved: Swiper v8.45 compatibility
    \nFixed: WP get_page_by_title() is deprecated

    \n

    ElementsKit Elementor Addons Version: 2.8.5 (2023-02-28)
    \nFixed: Swiper column break on initial load
    \nImproved: Tab Widget layout choose style
    \nImproved: Post Grid Widget title controls
    \nImproved: Accessibility for widgets and modules
    \nImproved: Pricing Table Widget button hover
    \nImproved: Layout Library responsiveness and category filter
    \nTweaked: Video Widget glow effect control

    \n

    ElementsKit Elementor Addons Version: 2.8.1 (2023-01-16)
    \nAdded: Flex container support
    \nImproved: Widgets searching keywords for editor panel
    \nFixed: Icon animation not working for svg in Team Widget
    \nFixed: Header Footer builder module on/off issue
    \nFixed: Video Widget Popup does not Open editor mode
    \nFixed: Swiper slider initial loading breaks columns

    \n

    ElementsKit Elementor Addons Version: 2.8.0 (2022-12-12)
    \nAdded: New animation style odometer in Funfact widget
    \nAdded: Video Widget self hosted video feature
    \nImproved: Funfact widget position controls
    \nImproved: Icon style and border-bottom controls in the Accordion widget
    \nTweaked: Removed Snapchat from Social Share widget due to no longer supported by Goodshare
    \nFixed: Onepage scroll is not working correctly when hiding a section
    \nFixed: Image box widget title and border radius issue
    \nFixed: Focused title font weight and text decoration color not working of Heading widget

    \n

    ElementsKit Elementor Addons Version: 2.7.5 (2022-11-17)
    \nImproved: Compatibility with WP 6.1
    \nFixed: Heading widget color changes issues
    \nFixed: Accordion widget box-shadow issue

    \n

    ElementsKit Elementor Addons Version: 2.7.4 (2022-11-07)
    \nImproved: Coding standard
    \nImproved: Edit Content button for advanced widgets
    \nImproved: Spelling error for Instagram User Data
    \nFixed: Submenu child items is not showing at WP 6.1

    \n

    ElementsKit Elementor Addons Version: 2.7.3 (2022-10-17)
    \nAdded: Widgets Documentation URL
    \nAdded: Title margin control in Post Grid widget
    \nAdded: Arrow icon vertical position in Client Logo widget
    \nAdded: Title styles in the Post Tab widget. Preview
    \nFixed: Label and input style in Caldera Forms widget
    \nFixed: The post item bottom space was not working in the Post Grid widget
    \nFixed: Elementor responsive visibility was not working properly when One Page Scroll was enabled.

    \n

    ElementsKit Elementor Addons Version: 2.7.2 (2022-10-02)
    \nAdded: Controls for Header Search widget and fixed CSS issue
    \nAdded: Control for border opening and closing in Accordion Widget
    \nAdded: Active property for Testimonial widget
    \nAdded: New icons in ElementsKit Icon Pack
    \nAdded: Dynamic content support for Elementor pro
    \nFixed: Testimonial widget alignment issue
    \nFixed: Focused title’s CSS not working after adding a link in the Heading widget

    \n

    ElementsKit Elementor Addons Version: 2.7.0 (2022-08-24)
    \nAdded: Mega menu ajax load for better performance
    \nAdded: Icon for Image box and Image swap widget
    \nAdded: Hover color for Heading Widget
    \nAdded: Spacing control between text and bar in Progress Bar widget
    \nAdded: Hiding percentage number control in the Progress Bar widget
    \nFixed: Image size can’t be changed and no border option for dots in the Testimonial widget
    \nFixed: Background overlay during hamburger flyout menu not open
    \nFixed: Header Offcanvas icon size can’t be changed
    \nFixed: Typography was not working for client description in Testimonial widget
    \nFixed: Margin bottom control didn’t work properly in Accordion widget
    \nFixed: Phone call sending issue in the Team widget
    \nFixed: Apostrophe on the Label Name field of Widget builder causing Fatal Error
    \nFixed: Compatibility with php v8.0 of Widget builder
    \nFixed: Content padding issue in Team widget
    \nTweaked: Dual button transparent hover not working

    \n

    ElementsKit Elementor Addons Version: 2.6.3 (2022-07-17)
    \nAdded: Nav menu widget border controls for menu items
    \nAdded: Control for Header Offcanvas wrapper padding
    \nAdded: Social Icons widget’s demo to Template library
    \nFixed: Code optimized
    \nFixed: Iconbox border issue
    \nFixed: Magnific popup CSS conflict with Essential addon
    \nFixed: Can’t import the Charity Page from Template library
    \nFixed: One Page Scroll conflict with Responsive feature of Elementor
    \nFixed: Widgets and modules active toggle button not working
    \nFixed: Lottie widget not working with twenty twenty-two
    \nFixed: Neve theme compatibility fix for header and footer
    \nFixed: The Black Overlay of Mobile Menu is getting pulled off
    \nFixed: Sticky Functionality of Electro not working when ElementsKit is activated
    \nTweaked: Typo issue

    \n

    ElementsKit Elementor Addons Version: 2.6.2 (2022-06-20)
    \nFixed: Twitter feed widget token not working
    \nFixed: WPML compatibility
    \nFixed: Post tab control
    \nFixed: Console error for image-accordion widget
    \nFixed: Widgets and modules active toggle button not working
    \nTweaked: Php cs security improvement
    \nTweaked: Control and placeholder of the Funfact widget

    \n

    ElementsKit Elementor Addons Version: 2.6.1 (2022-05-24)
    \nAdded: Form signature fields.
    \nAdded: Form conditional fields for Elementor.
    \nAdded: Form reset button.
    \nAdded: Google sheet for Elementor form.
    \nFixed: TablePress JS error in Elementor editor.
    \nFixed: Repeater field error in the Business Hour widget.
    \nFixed: Id attributes were not printing in the Tab widget.
    \nImproved: Added more secure escaping for HTML printing.

    \n

    ElementsKit Elementor Addons Version: 2.6.0 (2022-05-20)
    \nImproved: Added more secure escaping for HTML printing.

    \n

    ElementsKit Elementor Addons Version: 2.5.10 (2022-05-18)
    \nFixed: Minor CSS fix.
    \nFixed: TablePress JS console error.

    \n

    ElementsKit Elementor Addons Version: 2.5.9 (2022-05-10)
    \nFixed: HTML special character issue fix.

    \n

    ElementsKit Elementor Addons Version: 2.5.8 (2022-05-10)
    \nFixed: Missing HTML scape functions.

    \n

    ElementsKit Elementor Addons Version: 2.5.7 (2022-04-25)
    \nFixed: Advance Tab widget issue.
    \nFixed: Advance Accordion widget issue.
    \nFixed: Advance Toggle widget issue.
    \nFixed: Advance Slider widget issue.

    \n

    ElementsKit Elementor Addons Version: 2.5.6 (2022-04-18)
    \nAdded: Language Files.
    \nAdded: WPMI support for ElementsKit template, especially for Header & Footer Builder.
    \nFixed: Escaping issues.
    \nFixed: Theme support issue.
    \nFixed: One-page scroll issue.
    \nTweaked: Change some links.

    \n

    ElementsKit Elementor Addons Version: 2.5.5 (2022-03-24)
    \nAdded: WhatsApp widget.
    \nFixed: Elementor responsive control devices compatibility issue.
    \nFixed: Image accordion active issue on hover.
    \nFixed: One-page scroll not working for mobile with OceanWP theme.
    \nImproved: Added link for heading widget.
    \nFixed: Elementor 3.6.1 conflicts for depreciation.
    \nFixed: Menu dropdown and sticky feature issue.

    \n

    ElementsKit Elementor Addons Version: 2.5.4 (2022-02-15)
    \nImproved: Image_accordion widget for wrapper link, etc.
    \nFixed: Compatibility issues with Elementor Pro’s Latest Version.
    \nFixed: The Nav menu widget was not responding properly when the Elementor PRO is activated.
    \nFixed: Nav menu click issue.
    \nFixed: Nav menu widget issue with a jetpack.
    \nFixed: Video widget issue.
    \nFixed: Post list widget issue.
    \nFixed: Page list vertical alignment does not work for icons.
    \nFixed: WP submenu list isn’t working if Megamenu is activated.

    \n

    ElementsKit Elementor Addons Version: 2.5.3 (2022-01-22)
    \nFixed: Nav menu widget dropdown issue with on click.
    \nFixed: Nav menu links are not clickable if the item has a dropdown.
    \nFixed: The submenu list isn’t working if Megamenu is activated.
    \nTweaked: CSS and JS improved.

    \n

    ElementsKit Elementor Addons Version: 2.5.2 (2022-01-09)
    \nAdded: Nav menu widget dropdown open on click.
    \nAdded: Ajax Loading support for Advanced Tab Widget.
    \nFixed: Ask for rating notice logo not showing.
    \nImproved: HTML tags associated with the table.
    \nTweak: CSS and JS improved.

    \n

    ElementsKit Elementor Addons Version: 2.5.1 (2021-12-02)
    \nFixed: Megamenu Markup validation issue for the Nav Menu Widget.
    \nTweak: CSS and JS improved.

    \n

    ElementsKit Elementor Addons Version: 2.5.0 (2021-11-25)
    \nNew: Links support for Testimonial Widget.
    \nFixed: Mobile menu visual issue (theme compatibility).
    \nFixed: Price Tag hides without duration text for Pricing Widget.
    \nFixed: Minor Spelling for Widget Builder Module.
    \nFixed: Overlay responsive issue in the Editor for Nav Menu Widget.
    \nFixed: Menu Badge arrow styling for the Nav Menu Widget.
    \nFixed: Autoplay issue for Video Widget.
    \nFixed: Video widget short link embed issue.
    \nTweaked: Duration and Symbol Control Labels for Pricing Widget.

    \n

    ElementsKit Elementor Addons Version: 2.4.0 (2021-11-07)
    \nFixed: Mobile Menu Animation is fixed on iOS 15
    \nFixed: ‘Tab’ widget SVG icon visible issues have been fixed
    \nFixed: Notice width issue solved
    \nFixed: The right arrow icon issue
    \nFixed: Some minor code updates/fixes
    \nTweaked: CSS and JS improved
    \nCompatibility: fixed some compatibility issues

    \n

    ElementsKit Elementor Addons Version: 2.3.7 (23-09-2021)
    \nFixed: Image box title typography control does not work.
    \nFixed: Team widget popup issue with OceanWP theme
    \nFixed: Video widget loop and player control functional issue
    \nFixed: Dot Move navigation style for One Page Scroll Module.
    \nFixed: Responsive Slides Per View for Testimonial Widget.
    \nTweaked: Font faces display change for ElementsKit Icon Pack.

    \n

    ElementsKit Elementor Addons Version: 2.3.6 (19-08-2021)
    \nFixed: Sticky feature duplicates WP Forms Widget.
    \nFixed: Responsive controls issue for Post Grid Widget.
    \nFixed: Removed deprecated Elementor PHP Methods from Widgets.
    \nFixed: Alignment Control icons are not visible.

    \n

    ElementsKit Elementor Addons Version: 2.3.5 (02-08-2021)
    \nTweaked: Library Layout button support for Add New Section.
    \nFixed: Double Opt-in support for the Mailchimp Widget.
    \nFixed: Accordion and Tab widgets conflict with the OceanWP theme.
    \nFixed: Minor CSS issue for Nav Menu Widget.

    \n

    ElementsKit Elementor Addons Version: 2.3.4 (19-07-2021)
    \nFixed: Swiper Slider conflict issues are fixed with other themes.

    \n

    ElementsKit Elementor Addons Version: 2.3.3 (15-07-2021)
    \nFixed: In swiperJS slider is not working issue.

    \n

    ElementsKit Elementor Addons Version: 2.3.2 (14-07-2021)
    \nFixed: Multiple placeholder image upload issues when importing widgets.
    \nTweaked: Converted widgets slideshow from slick to swiper.
    \nTweaked: Optimized Images.
    \nTweaked: Improved CSS and JS.

    \n

    ElementsKit Elementor Addons Version: 2.3.1.1 (23-06-2021)
    \nFixed: Email field was required for Onboarding Wizard, changed it to optional.

    \n

    ElementsKit Elementor Addons Version: 2.3.1 (22-06-2021)
    \nNew: Onboarding User Guide to easily start using ElementsKit.
    \nNew: Group Templates count for Layout Library.
    \nFixed: Arabic text issue for Megamenu Badge.
    \nFixed: Minor CSS issue for Layout Library Modal Button.

    \n

    ElementsKit Elementor Addons Version: 2.3.0 (08-06-2021)
    \nNew: Hover trigger option for Tab Widget.
    \nTweaked: Caret placement issue for Tab Widget.
    \nTweaked: Getting access token made easy for Dribbble Widget.
    \nFixed: Icon Search option for Megamenu Popup.
    \nFixed: Image Width when Hovering on Social style for Team Widget.
    \nFixed: Duration control for the Progress bar Widget.
    \nFixed: Minor design issue for the Clients’ Logo Widget.

    \n

    ElementsKit Elementor Addons Version: 2.2.4 (10-05-2021)
    \nNew: Back To Top Widget.
    \nNew: Hover Trigger on Tab Widget.
    \nNew: Back to Top Widget.
    \nNew: Clear Cache button added for Facebook Feed Settings.
    \nTweaked: Dashboard UI Improvement.
    \nFixed: Duration control for the Progress bar Widget.

    \n

    ElementsKit Elementor Addons Version: 2.2.3 (05-05-2021)
    \nNew: Blog Posts Widget Floating Category.
    \nNew: Blog Posts Widget Various Missing Controls.
    \nNew: Client Image Position control for Testimonial Widget.
    \nNew: Background Hover Effect control for Testimonial Widget.
    \nNew: Rating Hover Color control for Testimonial Widget.
    \nTweaked: Replaced deprecated Elementor PHP Methods for Widgets.
    \nTweaked: Animating Pie Chart when in view.
    \nTweaked: Improvements to the Testimonial Widget.
    \nFixed: Border and Padding issues fixed on the ‘Video’ Widget.
    \nFixed: TablePress fatal error after deactivation.
    \nFixed: Submenu icon render issue.
    \nFixed: Minor CSS fixed for Sticky On Scroll Up.
    \nFixed: Minor JS error with OnePage Scroll Module.

    \n

    ElementsKit Elementor Addons Version: 2.2.2 (14-04-2021)
    \nNew: ‘Text’ option for the ‘Header Offcanvas’ widget menu.
    \nNew: ‘Info Text’ tooltip option to ‘Pricing Table’ Widget.
    \nNew: ‘Vertical Alignment’ control added for ‘Icon Box’ Widget.
    \nFixed: Compatibility issues with Elementor 3.2.0.
    \nFixed: Minutes typography options for the ‘Countdown Timer’ Widget.

    \n

    ElementsKit Elementor Addons Version: 2.2.1 (08-03-2021)
    \nNew: Added Responsive Alignment Control for Category List, Page List, and Post List Widgets.
    \nFixed: Missing dependency issue with One-Page Scroll Module.
    \nFixed: Category Query was empty for Woo Product Carousel Widget.

    \n

    ElementsKit Elementor Addons Version: 2.2.0 (02-03-2021)
    \nImprovement: Minor bug fixing and code improvements.
    \nImprovement: Minor escaping and validation improvements.

    \n

    ElementsKit Elementor Addons Version: 2.1.7 (25-02-2021)
    \nNew: Featured Image Size control for Post List Widget.
    \nNew: Option to Show/Hide Facebook Messenger Dialog Box.
    \nFixed: Widget builder limited widget issue.
    \nFixed: Tab Widget arrow not showing when body background was set.
    \nFixed: Nav Menu widget showing empty widget on responsive when the toggle button is visible.

    \n

    ElementsKit Elementor Addons Version: 2.1.6 (07-02-2021)
    \nFixed: basic tags support for text shadow option in Heading Widget.

    \n

    ElementsKit Elementor Addons Version: 2.1.5 (01-02-2021)
    \nNew: CSS Print Method ‘Internal Embedding’ options support for Header and Footer Builder.
    \nTweaked: Coding Standard improvement.
    \nFixed: Text Domain correction.
    \nFixed: Pot File updated.
    \nFixed: TablePress Widget row color ordering consistency in editor and frontend.

    \n

    ElementsKit Elementor Addons Version: 2.1.4 (27-01-2021)
    \nTweaked: Support W3C validation when using Header-Footer Builder.
    \nFixed: Slick Library update support for the Latest update.
    \nFixed: Mailchimp Widget minor CSS flex issue.
    \nFixed: Team Widget popup scroll bar showing inside content.

    \n

    ElementsKit Elementor Addons Version: 2.1.3 (25-01-2021)
    \nFixed: Added support for new Widget Categories hook.
    \nFixed: Team Widget modal close button wasn’t clickable on some edge cases.
    \nFixed: Blog Posts Widgets’ default image size changed to provide clear images.

    \n

    ElementsKit Elementor Addons Version: 2.1.2 (18-01-2021)
    \nNew: Banners consent for showing notices.

    \n

    ElementsKit Elementor Addons Version: 2.1.1 (10-01-2021)
    \nNew: Quickly turn on or off the Widgets and Modules from Dashboard.
    \nNew: Position option for Header Off-Canvas Widget.
    \nFixed: Team Widget minor CSS fix for Position text.
    \nFixed: Header Footer builder popup CSS conflict.
    \nFixed: Widget Builder control’s selector values backward support.
    \nFixed: Removed em tag from Testimonial Style 3.

    \n
      \n
    • Initial release
    • \n
    \n", "description": "

    ElementsKit Elementor addons is an ultimate and all-in-one addons for Elementor Page Builder. It brings a nice comprehensive solution with 90+ Elementor widgets, 20+ modules, and 1000+ pre-designed Elementor templates.

    \n

    Everything is accessible through an easy drag-and-drop interface, including features like header-footer builder, mega menu, widget builder, and more to expand your Elementor capabilities.

    \n

    Besides exclusive features & templates, ElementsKit offers copy-paste across domains and control content visibility with multiple conditions. It’s a versatile design toolkit packed with advanced widgets for content, forms, posts, charts, WooCommerce, etc, dedicated for building any Elementor site.

    \n

    🏆 Great Elementor Addon! Check ElementsKit demos for new website-building possibilities.

    \n

    \n

    | ElementsKit Home Page | ElementsKit Elementor Templates | Blog | Documentation | Need Support? | How to get started with ElementsKit Pro |

    \n

    🌟 Check all ElementsKit Elements 🌟
    \n🌟 Elementor Mega Menu Builder 🌟
    \n🌟 Elementor Header Footer Builder 🌟
    \n🌟 Elementor Custom Widget Builder 🌟

    \n

    KEY FEATURES

    \n

    🔥 All time **downloads of ElementsKit : 41 million+

    \n

    ⭐ 90+ Free and Premium Elementor Widgets

    \n

    20+ Exclusive Modules for advanced design solution

    \n

    45+ Pre-designed Header & Footer Elementor Templates

    \n

    98+ Ready Pages to start Elementor website in no time

    \n

    ⭐ Versatile Elementor template library of 1000+ Pre-made Sections

    \n

    ⭐ No-code Elementor Custom Widget Builder

    \n

    ⭐ Drag & Drop Elementor Mega Menu Builder

    \n

    ⭐ Beneficial WooCommerce Elementor Templates & Widgets

    \n

    ⭐ Cross-domain copy-paste compatibility

    \n

    ⭐ Fully Responsive website for mobile, desktop, & tab

    \n

    ⭐ No extra loading time for web pages

    \n

    ⭐ Expert support team available 24/7

    \n

    ⭐ Build with Elementor & has the same interface

    \n

    ⭐ Packed with attractive animation effects

    \n

    Extensive ElementsKit Templates for Elementor

    \n

    ElementsKit is a popular Elementor addon among millions of users that eliminates the need to design from scratch. It ships with over 900+ pre-made section blocks and 40+ ready-made Elementor templates for designing a full website, including Elementor header-footer templates & Elementor mega menu templates. Whatever niche or industry, you’re working with, ElementsKit page builder addon layout library includes unique Elementor templates designed with royalty-free images.

    \n

    Modular based and Lightweight

    \n

    This modular-based page builder plugin, you only enable widgets or modules you need to create your design to ensure no additional bloat in website performance.

    \n

    Completely Customizable & Dynamic Website Builder Functionality

    \n

    ElementsKit widgets and modules come with powerful styling controls to customize every pixel of your Elementor sites and support dynamic conditions to show content by role, device, or time and different headers.

    \n

    50+ FREE ELEMENTOR WIDGETS

    \n

    If you’re looking for a free Elementor addon, ElementsKit offers a complete package in town, with 50+ widgets, 5+ modules, and professionally designed Elementor templates.

    \n

    Heading – Design headings with multiple fancy, & custom styles. (Free WordPress Header Footer Builder)

    \n

    Button – Add amazing buttons with text, color, CTA, etc.

    \n

    Team – Customize team section with members’ names, positions, bios, etc.

    \n

    Accordion – Display texts in a foldable & concise way.

    \n

    Tab – Show texts divided into horizontal or vertical tabs with titles.

    \n

    Social Icons – Displaying social media icons is easy now.

    \n

    Client Logo – Showcase your client & sponsor logos with different styles.

    \n

    Comparison Table: Easily compare and contrast different products, services, or options.

    \n

    Countdown Timer – Comes with various effects, styles, and formats.

    \n

    FAQ – Present all Q&As with different designs and unique styles.

    \n

    Funfact – Show statistics, achievements, & fun facts.

    \n

    Icon Box – Write short brief about services or products within boxes.

    \n

    Image Accordion – Display multiple images in a shortened format easily.

    \n

    Image Box – Combine images with headlines, texts, and call-to-action buttons.

    \n

    Pie Chart – Create and style data pie charts on your web page within a short time.

    \n

    Pricing Table – Describe your clear product/service value beautifully.

    \n

    Progress Bar – Visualize project’s progress with intuitive graphics.

    \n

    Testimonial – Show clients feedback, & recommendations on your sites.

    \n

    MailChimp – Create and manage a mailing list, automated mailing, newsletter, etc.

    \n

    Image Comparison – Design and compare two images.

    \n

    Call To Action – Bring an image, content, and other features under one box.

    \n

    Video – Add playable videos to your page and style them nicely.

    \n

    Category List – Organize and customize every section of each category in a list.

    \n

    Page List – Arrange & customize your list of pages in horizontal or vertical layout.

    \n

    Drop Caps – Design content’s starting letter in a stylish, large, and capitalized format.

    \n

    Dual Button – Display two buttons side by side with the Elementor dual button widget.

    \n

    Business Hours – Inform your opening hours to users clearly and attractively.

    \n

    Social Share – Share your content on your social media accounts easily.

    \n

    Lottie – Export a JSON file or provide a URL to use amazing animations.

    \n

    TablePress – Allows you to create and style nice responsive data tables.

    \n

    Back to Top – Add and customize the back-to-top button easily.

    \n

    ElementsKit Elementor Addon Featuring Free Header Widgets

    \n

    Experience a no-cost WordPress site header navigation functions like dropdown menu, hamburger menu, offcanvas menu. Also, customize header info items like logos, text, address, social icons and display a functional search bar.

    \n

    Free Elementor Widgets for Header Styling
    🔶 ElementsKit Nav Menu 🔶 Header Offcanvas 🔶 Header Search 🔶Header Info 🔶

    \n

    Blog Post Addon for Elementor

    \n

    Display and organize your blog posts in flexible blog layout options like grid, list, tab, etc. ElementsKit covers various blog post widgets that make it easy for visitors to navigate to your popular, related, recent blog posts, or a based on aspecific category through an intuitive blog post structure.

    \n

    🔶 Blog Posts 🔶 Post Tab 🔶 Post List 🔶 Post Grid 🔶 Category List🔶

    \n

    Free Elementor Addon for Third-Party Form Styling

    \n

    If you’re using a popular form builder plugin on your website, chances are the ElementsKit Elementor addon includes a dedicated form style widget for it. With a flexible, Elementor-like interface, you can easily customize various form types, including contact forms, suggestion forms, and newsletters.

    \n

    Whether you choose from pre-designed layouts or build a form from scratch, ElementsKit provides extensive customization options to match your design needs effortlessly.

    \n

    Free Elementor Widgets for Form Styling
    🔶 Caldera Forms 🔶 Contact Form 7 🔶 Ninja Forms 🔶WP Forms 🔶 weForms 🔶 Fluent Forms 🔶 MailChimp 🔶

    \n

    Highly Functional & Free Modules

    \n

    This advanced Elementor addon offers some powerful modules in the free version.

    \n

    🟢 ElementsKit Header and Footer Builder
    \nBuild and customize Elementor website header footer with a drag-and-drop interface. Enjoy features like conditional display, sticky menus, off-canvas menus, WooCommerce carts, etc, with Elementor header footer builder. ElementsKit has versatile pre-designed templates for Elementor header footer.

    \n

    \n

    🟢 Elementor Megamenu builder
    \nDesign multi-level WordPress mega menus with Elementor widgets, content, and visuals using ElementsKit’s no-code Elementor mega menu builder. Create horizontal or vertical menus effortlessly, ideal for any niche, including free e-commerce mega menu.

    \n

    🟢 Elementor Widget Builder
    \nElementsKit gives web designers ultimate creative freedom to build custom widgets without coding. Just drag and drop controls to create fully responsive Elementor widgets.

    \n

    🟢 Onepage Scroll
    \nElementsKit’s Onepage Scroll lets you create sleek, scrollable onepage scroll websites with interactive navigation. This Elementor onepage scroll feature also supports pre-designed onepage scroll layouts.

    \n

    🟢ElementsKit Icon Pack Module**
    \nElementsKit ships with a collection of meticulously designed, high-quality custom icons (3000+) for WordPress.

    \n

    Exclusive PRO Elementor Addons Widgets

    \n

    Let’s look at advanced Elementor widgets in ElementsKit Pro version:

    \n

    Gallery – Showcase your recent photos, company environment, events, etc.

    \n

    Advanced Accordion) – Helps to arrange images, social feed, progress bar, MailChimp subscription form, etc. within the accordion in a nested format.

    \n

    Vertical Menu – Easily design & add vertical navigation menus on your site.

    \n

    Circle Menu – A creative solution for showing your menu items in a circle.

    \n

    Advanced Tab – Style the tabs and display various nested elements.

    \n

    Timeline – Create your timeline chart, design and showcase it.

    \n

    Chart – Show a graphical representation of data and create charts.

    \n

    Data Table – Let you create data tables with advanced styling options and features.

    \n

    Creative Button – Customize buttons with hover effects, content, borders, shadows, and more.

    \n

    Motion Text – Helps to display your text with various motion animations, with styles.

    \n

    Advanced Toggle – Create amazing pricing tables, icon boxes, and packages and decorate them nicely.

    \n

    Vertical Mega Menu – Display Mega Menu vertically & customize the content easily with this Elementor mega menu builder addon.

    \n

    Hotspot – Identify a specific part of your image with a tooltip and reveal an associated text after user interactions.

    \n

    Zoom – Set the meeting hosts, start time and date, time zone, duration, etc.

    \n

    Breadcrumb – Customize the breadcrumb of your website by setting the max title word length and showing/hiding the category trail.

    \n

    Video Gallery – Add as many videos as you want to your website and design an attractive video gallery.

    \n

    Popup Modal – Design amazing popups and place them wherever you want them on your website.

    \n

    Google Map – Show your business address to visitors with a Google Map effortlessly.

    \n

    Unfold – Folding up certain sections (texts/images) is easy now.

    \n

    Image Swap – Interactively swap or switch between different images displayed on a screen.

    \n

    Advanced Slider – Mesmerizing sliders will assist you to boost engagement, conversion, and sales.

    \n

    Image Hover Effect – Customize interesting hover effects in no time to make catchy images.

    \n

    Fancy Animated Text – Create special and engaging animated texts.

    \n

    Price Menu – Make an appealing price menu to start and plan a business.

    \n

    Stylish List – Add a customized list and improve visitors’ engagement with your Elementor site.

    \n

    Team Carousel Slider – Introduce your team members pleasingly on a slider.

    \n

    Image Morphing – Control the display of your WordPress images without any hassles.

    \n

    Flip Box – Add excellent before and after effects to your messages.

    \n

    Audio Player – Make your music or audio files and present them on your website interestingly.

    \n

    Content Ticker – Showcase recent posts, latest and trending news, etc. stylishly.

    \n

    Coupon Code – Allows to make a small and customizable pop-up to display special offers.

    \n

    Protected content – Protect your valuable or premium content with passwords or user roles.

    \n

    Interactive Links – Clickable and animated links boosts user interactions.

    \n

    Advanced Search – Design powerful live search panel to provide relevant search results.

    \n

    WooCommerce Elementor Addon

    \n

    Display and design e-commerce products in a list and intuitive sliders, along with their categories and mini cart option, anywhere you want.
    \n
    🔶 WooCommerce Product List 🔶WooCommerce Product Carousel 🔶WooCommerce Category List 🔶WooCommerce Mini Cart

    \n

    Effortless Integration with Different Social Platforms

    \n

    ElementsKit Pro is a complete Elementor social media addon that lets you showcase social media content, sharing options, and other helpful engagement features directly into your WordPress website. Web page visitors can see and connect with dominant social media platforms with the help of widgets like:

    \n


    🔶 Facebook Feed 🔶Instagram Feed 🔶 Twitter Feed 🔶Pinterest Feed 🔶

    \n

    You can enable chat-head or a click to chat option on your Elementor website to easily integrate Messenger & WhatsApp.
    \n
    🔶 Facebook Messenger Module 🔶 WhatsApp 🔶

    \n

    Also, creative professionals can use this Elementor addon for building their professional-level portfolio website. It has Elementor widgets:
    \n
    🔶 Behance Feed 🔶 Dribbble Feed 🔶

    \n

    ElementsKit allows to showcase authentic user feedback from trusted platforms while offering detailed layout custoization to match your website’s design.
    \n
    🔶 Yelp 🔶 Facebook Review 🔶

    \n

    PRO Modules in Premium Elementor Addon version

    \n

    To empower Elementor page builder, ElementsKit has some exclusive premium modules:

    \n

    🟢 Conditional Content Module Show or hide a specific part of your webpage or content based on certain conditions.

    \n

    🟢 Advanced Sticky Module Always Keep menu header at the top screen.

    \n

    🟢 Advanced Parallax Module Design your page and tell stories while users scroll a page.

    \n

    🟢 Advanced Tooltip Module – It guides you to arrange information, add any element or media and experiment different tooltips.

    \n

    🟢 Cross-Domain Copy Paste Easily reuse any section, column, and widget of a website to another website, with this module.

    \n

    🟢 Image Masking Helps you to customize the image shapes and make them more appealing.

    \n

    🟢 Particles Grab attention with ElementsKit Particles and decorate backgrounds with dynamic particle effects.

    \n

    🟢 Wrapper Link Advanced way to add a link to any section, column, or widget in Elementor.

    \n

    🟢 Glass Morphism To apply frosted glass effects on your website backgrounds, this module is a fantastic choice.

    \n

    🟢 Mouse Cursor Convert boring cursor to interesting ones with our latest module.

    \n

    🟢 Liquid Glass Add trendy Apple liquid glass interface to your Elementor webstie.

    \n

    This Elementor Addon supports Elementor Form Plugin:

    \n

    🟢 Reset Button for Elementor Form: Add a reset button to Elementor Form and customize it to match your brand.

    \n

    🟢 Google Sheet Integration for Elementor Form: Automate the data collection of Elementor Form and store form submission data directly in Google Sheets.

    \n

    👉 Learn How to Install & Use ElementsKit

    \n

    🤝 BACKED BY A TRUSTED TEAM

    \n

    ElementsKit is brought to you by Wpmet, a name trusted by 10,00,000 satisfied users worldwide!

    \n

    » DOCUMENTATION AND SUPPORT

    \n\n

    😍 LOVE ElementsKit Elementor Addon?

    \n

    ⭐️ Rate us on WordPress

    \n

    ✨ OUR OTHER PLUGINS

    \n

    👉 MetForm – Super flexible and easy-to-use form builder.
    \n👉 ShopEngine – Your complete WooCommerce solution, built for Elementor.
    \n👉 GutenKit – Build websites 10x Faster with ZERO coding in the Gutenberg Block Editor.
    \n👉 EmailKit – Effortless way to change your email-building experience.
    \n👉 GetGenie Ai – An advanced Ai assistant for SEO-friendly content.
    \n👉 Wp Social – Leverage Wp Social to add Social Login, Social Counter, and Social Login to your website.
    \n👉 Wp Fundraising – Employ the power of Wp Fundraising to create a crowdfunding & donation sites.
    \n👉 Wp Ultimate Review – Manage customer reviews with the Wp Ultimate Review plugin.
    \n👉 PopupKit – Build exceptional popup for diverse needs within the WordPress block editor.
    \n👉 TableKit – Make fully-customizable multipurpose table & generate data table within Gutenberg block editor.
    \n👉 Genie Image – Generate images directly on your WordPress website with the magic of AI.

    \n

    Visit wpmet for essential WordPress Tutorials, Tips & Tricks!

    \n", "screenshots": "
    1. \"Powerup

      Powerup WordPress Mega Menu Builder

    2. \"Elementor

      Elementor Header Footer Builder

    3. \"Drag-and-drop

      Drag-and-drop Elementor Mega Menu Builder

    4. \"\"
    5. \"\"
    ", "installation": "

    Prerequisite: This is an Elementor Addon plugin. So, first you need to activate Elementor.

    \n
      \n
    1. Upload the plugin files to the /wp-content/plugins/ directory, or install the plugin through the WordPress plugins screen directly.
    2. \n
    3. Activate the plugin through the ‘Plugins’ screen in WordPress
    4. \n
    5. All Settings will be found in the Admin sidebar -> ElementsKit menu
    6. \n
    7. In Elementor editor, find widgets under ElementsKit category or search “Ekit.”
    8. \n
    \n

    For further queries, contact our support team.

    \n"}, "versions": {"1.2.6": "https://downloads.wordpress.org/plugin/elementskit-lite.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/elementskit-lite.1.2.7.zip", "1.2.9": "https://downloads.wordpress.org/plugin/elementskit-lite.1.2.9.zip", "1.3.1": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.5.zip", "1.3.8": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/elementskit-lite.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.5.zip", "1.4.7": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/elementskit-lite.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.2.zip", "1.5.4": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.9.zip", "2.0.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/elementskit-lite.2.1.7.zip", "2.2.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.2.4.zip", "2.3.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.7.zip", "2.4.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.6.3.zip", "2.7.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.7.0.zip", "2.7.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/elementskit-lite.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.7.5.zip", "2.8.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.1.zip", "2.8.5": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.7.zip", "2.8.8": "https://downloads.wordpress.org/plugin/elementskit-lite.2.8.8.zip", "2.9.0": "https://downloads.wordpress.org/plugin/elementskit-lite.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.9.2.zip", "3.0.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/elementskit-lite.3.0.7.zip", "3.1.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.1.4.zip", "3.2.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/plugin/elementskit-lite.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.7.zip", "3.3.8": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.8.zip", "3.3.9": "https://downloads.wordpress.org/plugin/elementskit-lite.3.3.9.zip", "3.4.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.8.zip", "3.4.9": "https://downloads.wordpress.org/plugin/elementskit-lite.3.4.9.zip", "3.5.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/elementskit-lite.3.5.6.zip", "3.6.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.6.1.zip", "3.7.0": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.5.zip", "trunk": "https://downloads.wordpress.org/plugin/elementskit-lite.zip", "1.5.10": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.10.zip", "1.5.11": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.11.zip", "1.5.12": "https://downloads.wordpress.org/plugin/elementskit-lite.1.5.12.zip", "2.0.10": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.13.zip", "2.5.10": "https://downloads.wordpress.org/plugin/elementskit-lite.2.5.10.zip", "2.0.9.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.9.1.zip", "2.0.9.2": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.9.2.zip", "2.0.9.3": "https://downloads.wordpress.org/plugin/elementskit-lite.2.0.9.3.zip", "2.3.1.1": "https://downloads.wordpress.org/plugin/elementskit-lite.2.3.1.1.zip"}, "downloaded": 41657865, "description": "

    ElementsKit Elementor addons is an ultimate and all-in-one addons for Elementor Page Builder. It brings a nice comprehensive solution with 90+ Elementor widgets, 20+ modules, and 1000+ pre-designed Elementor templates.

    \n

    Everything is accessible through an easy drag-and-drop interface, including features like header-footer builder, mega menu, widget builder, and more to expand your Elementor capabilities.

    \n

    Besides exclusive features & templates, ElementsKit offers copy-paste across domains and control content visibility with multiple conditions. It’s a versatile design toolkit packed with advanced widgets for content, forms, posts, charts, WooCommerce, etc, dedicated for building any Elementor site.

    \n

    🏆 Great Elementor Addon! Check ElementsKit demos for new website-building possibilities.

    \n

    \n

    | ElementsKit Home Page | ElementsKit Elementor Templates | Blog | Documentation | Need Support? | How to get started with ElementsKit Pro |

    \n

    🌟 Check all ElementsKit Elements 🌟
    \n🌟 Elementor Mega Menu Builder 🌟
    \n🌟 Elementor Header Footer Builder 🌟
    \n🌟 Elementor Custom Widget Builder 🌟

    \n

    KEY FEATURES

    \n

    🔥 All time **downloads of ElementsKit : 41 million+

    \n

    ⭐ 90+ Free and Premium Elementor Widgets

    \n

    20+ Exclusive Modules for advanced design solution

    \n

    45+ Pre-designed Header & Footer Elementor Templates

    \n

    98+ Ready Pages to start Elementor website in no time

    \n

    ⭐ Versatile Elementor template library of 1000+ Pre-made Sections

    \n

    ⭐ No-code Elementor Custom Widget Builder

    \n

    ⭐ Drag & Drop Elementor Mega Menu Builder

    \n

    ⭐ Beneficial WooCommerce Elementor Templates & Widgets

    \n

    ⭐ Cross-domain copy-paste compatibility

    \n

    ⭐ Fully Responsive website for mobile, desktop, & tab

    \n

    ⭐ No extra loading time for web pages

    \n

    ⭐ Expert support team available 24/7

    \n

    ⭐ Build with Elementor & has the same interface

    \n

    ⭐ Packed with attractive animation effects

    \n

    Extensive ElementsKit Templates for Elementor

    \n

    ElementsKit is a popular Elementor addon among millions of users that eliminates the need to design from scratch. It ships with over 900+ pre-made section blocks and 40+ ready-made Elementor templates for designing a full website, including Elementor header-footer templates & Elementor mega menu templates. Whatever niche or industry, you’re working with, ElementsKit page builder addon layout library includes unique Elementor templates designed with royalty-free images.

    \n

    Modular based and Lightweight

    \n

    This modular-based page builder plugin, you only enable widgets or modules you need to create your design to ensure no additional bloat in website performance.

    \n

    Completely Customizable & Dynamic Website Builder Functionality

    \n

    ElementsKit widgets and modules come with powerful styling controls to customize every pixel of your Elementor sites and support dynamic conditions to show content by role, device, or time and different headers.

    \n

    50+ FREE ELEMENTOR WIDGETS

    \n

    If you’re looking for a free Elementor addon, ElementsKit offers a complete package in town, with 50+ widgets, 5+ modules, and professionally designed Elementor templates.

    \n

    Heading – Design headings with multiple fancy, & custom styles. (Free WordPress Header Footer Builder)

    \n

    Button – Add amazing buttons with text, color, CTA, etc.

    \n

    Team – Customize team section with members’ names, positions, bios, etc.

    \n

    Accordion – Display texts in a foldable & concise way.

    \n

    Tab – Show texts divided into horizontal or vertical tabs with titles.

    \n

    Social Icons – Displaying social media icons is easy now.

    \n

    Client Logo – Showcase your client & sponsor logos with different styles.

    \n

    Comparison Table: Easily compare and contrast different products, services, or options.

    \n

    Countdown Timer – Comes with various effects, styles, and formats.

    \n

    FAQ – Present all Q&As with different designs and unique styles.

    \n

    Funfact – Show statistics, achievements, & fun facts.

    \n

    Icon Box – Write short brief about services or products within boxes.

    \n

    Image Accordion – Display multiple images in a shortened format easily.

    \n

    Image Box – Combine images with headlines, texts, and call-to-action buttons.

    \n

    Pie Chart – Create and style data pie charts on your web page within a short time.

    \n

    Pricing Table – Describe your clear product/service value beautifully.

    \n

    Progress Bar – Visualize project’s progress with intuitive graphics.

    \n

    Testimonial – Show clients feedback, & recommendations on your sites.

    \n

    MailChimp – Create and manage a mailing list, automated mailing, newsletter, etc.

    \n

    Image Comparison – Design and compare two images.

    \n

    Call To Action – Bring an image, content, and other features under one box.

    \n

    Video – Add playable videos to your page and style them nicely.

    \n

    Category List – Organize and customize every section of each category in a list.

    \n

    Page List – Arrange & customize your list of pages in horizontal or vertical layout.

    \n

    Drop Caps – Design content’s starting letter in a stylish, large, and capitalized format.

    \n

    Dual Button – Display two buttons side by side with the Elementor dual button widget.

    \n

    Business Hours – Inform your opening hours to users clearly and attractively.

    \n

    Social Share – Share your content on your social media accounts easily.

    \n

    Lottie – Export a JSON file or provide a URL to use amazing animations.

    \n

    TablePress – Allows you to create and style nice responsive data tables.

    \n

    Back to Top – Add and customize the back-to-top button easily.

    \n

    ElementsKit Elementor Addon Featuring Free Header Widgets

    \n

    Experience a no-cost WordPress site header navigation functions like dropdown menu, hamburger menu, offcanvas menu. Also, customize header info items like logos, text, address, social icons and display a functional search bar.

    \n

    Free Elementor Widgets for Header Styling
    🔶 ElementsKit Nav Menu 🔶 Header Offcanvas 🔶 Header Search 🔶Header Info 🔶

    \n

    Blog Post Addon for Elementor

    \n

    Display and organize your blog posts in flexible blog layout options like grid, list, tab, etc. ElementsKit covers various blog post widgets that make it easy for visitors to navigate to your popular, related, recent blog posts, or a based on aspecific category through an intuitive blog post structure.

    \n

    🔶 Blog Posts 🔶 Post Tab 🔶 Post List 🔶 Post Grid 🔶 Category List🔶

    \n

    Free Elementor Addon for Third-Party Form Styling

    \n

    If you’re using a popular form builder plugin on your website, chances are the ElementsKit Elementor addon includes a dedicated form style widget for it. With a flexible, Elementor-like interface, you can easily customize various form types, including contact forms, suggestion forms, and newsletters.

    \n

    Whether you choose from pre-designed layouts or build a form from scratch, ElementsKit provides extensive customization options to match your design needs effortlessly.

    \n

    Free Elementor Widgets for Form Styling
    🔶 Caldera Forms 🔶 Contact Form 7 🔶 Ninja Forms 🔶WP Forms 🔶 weForms 🔶 Fluent Forms 🔶 MailChimp 🔶

    \n

    Highly Functional & Free Modules

    \n

    This advanced Elementor addon offers some powerful modules in the free version.

    \n

    🟢 ElementsKit Header and Footer Builder
    \nBuild and customize Elementor website header footer with a drag-and-drop interface. Enjoy features like conditional display, sticky menus, off-canvas menus, WooCommerce carts, etc, with Elementor header footer builder. ElementsKit has versatile pre-designed templates for Elementor header footer.

    \n

    \n

    🟢 Elementor Megamenu builder
    \nDesign multi-level WordPress mega menus with Elementor widgets, content, and visuals using ElementsKit’s no-code Elementor mega menu builder. Create horizontal or vertical menus effortlessly, ideal for any niche, including free e-commerce mega menu.

    \n

    🟢 Elementor Widget Builder
    \nElementsKit gives web designers ultimate creative freedom to build custom widgets without coding. Just drag and drop controls to create fully responsive Elementor widgets.

    \n

    🟢 Onepage Scroll
    \nElementsKit’s Onepage Scroll lets you create sleek, scrollable onepage scroll websites with interactive navigation. This Elementor onepage scroll feature also supports pre-designed onepage scroll layouts.

    \n

    🟢ElementsKit Icon Pack Module**
    \nElementsKit ships with a collection of meticulously designed, high-quality custom icons (3000+) for WordPress.

    \n

    Exclusive PRO Elementor Addons Widgets

    \n

    Let’s look at advanced Elementor widgets in ElementsKit Pro version:

    \n

    Gallery – Showcase your recent photos, company environment, events, etc.

    \n

    Advanced Accordion) – Helps to arrange images, social feed, progress bar, MailChimp subscription form, etc. within the accordion in a nested format.

    \n

    Vertical Menu – Easily design & add vertical navigation menus on your site.

    \n

    Circle Menu – A creative solution for showing your menu items in a circle.

    \n

    Advanced Tab – Style the tabs and display various nested elements.

    \n

    Timeline – Create your timeline chart, design and showcase it.

    \n

    Chart – Show a graphical representation of data and create charts.

    \n

    Data Table – Let you create data tables with advanced styling options and features.

    \n

    Creative Button – Customize buttons with hover effects, content, borders, shadows, and more.

    \n

    Motion Text – Helps to display your text with various motion animations, with styles.

    \n

    Advanced Toggle – Create amazing pricing tables, icon boxes, and packages and decorate them nicely.

    \n

    Vertical Mega Menu – Display Mega Menu vertically & customize the content easily with this Elementor mega menu builder addon.

    \n

    Hotspot – Identify a specific part of your image with a tooltip and reveal an associated text after user interactions.

    \n

    Zoom – Set the meeting hosts, start time and date, time zone, duration, etc.

    \n

    Breadcrumb – Customize the breadcrumb of your website by setting the max title word length and showing/hiding the category trail.

    \n

    Video Gallery – Add as many videos as you want to your website and design an attractive video gallery.

    \n

    Popup Modal – Design amazing popups and place them wherever you want them on your website.

    \n

    Google Map – Show your business address to visitors with a Google Map effortlessly.

    \n

    Unfold – Folding up certain sections (texts/images) is easy now.

    \n

    Image Swap – Interactively swap or switch between different images displayed on a screen.

    \n

    Advanced Slider – Mesmerizing sliders will assist you to boost engagement, conversion, and sales.

    \n

    Image Hover Effect – Customize interesting hover effects in no time to make catchy images.

    \n

    Fancy Animated Text – Create special and engaging animated texts.

    \n

    Price Menu – Make an appealing price menu to start and plan a business.

    \n

    Stylish List – Add a customized list and improve visitors’ engagement with your Elementor site.

    \n

    Team Carousel Slider – Introduce your team members pleasingly on a slider.

    \n

    Image Morphing – Control the display of your WordPress images without any hassles.

    \n

    Flip Box – Add excellent before and after effects to your messages.

    \n

    Audio Player – Make your music or audio files and present them on your website interestingly.

    \n

    Content Ticker – Showcase recent posts, latest and trending news, etc. stylishly.

    \n

    Coupon Code – Allows to make a small and customizable pop-up to display special offers.

    \n

    Protected content – Protect your valuable or premium content with passwords or user roles.

    \n

    Interactive Links – Clickable and animated links boosts user interactions.

    \n

    Advanced Search – Design powerful live search panel to provide relevant search results.

    \n

    WooCommerce Elementor Addon

    \n

    Display and design e-commerce products in a list and intuitive sliders, along with their categories and mini cart option, anywhere you want.
    \n
    🔶 WooCommerce Product List 🔶WooCommerce Product Carousel 🔶WooCommerce Category List 🔶WooCommerce Mini Cart

    \n

    Effortless Integration with Different Social Platforms

    \n

    ElementsKit Pro is a complete Elementor social media addon that lets you showcase social media content, sharing options, and other helpful engagement features directly into your WordPress website. Web page visitors can see and connect with dominant social media platforms with the help of widgets like:

    \n


    🔶 Facebook Feed 🔶Instagram Feed 🔶 Twitter Feed 🔶Pinterest Feed 🔶

    \n

    You can enable chat-head or a click to chat option on your Elementor website to easily integrate Messenger & WhatsApp.
    \n
    🔶 Facebook Messenger Module 🔶 WhatsApp 🔶

    \n

    Also, creative professionals can use this Elementor addon for building their professional-level portfolio website. It has Elementor widgets:
    \n
    🔶 Behance Feed 🔶 Dribbble Feed 🔶

    \n

    ElementsKit allows to showcase authentic user feedback from trusted platforms while offering detailed layout custoization to match your website’s design.
    \n
    🔶 Yelp 🔶 Facebook Review 🔶

    \n

    PRO Modules in Premium Elementor Addon version

    \n

    To empower Elementor page builder, ElementsKit has some exclusive premium modules:

    \n

    🟢 Conditional Content Module Show or hide a specific part of your webpage or content based on certain conditions.

    \n

    🟢 Advanced Sticky Module Always Keep menu header at the top screen.

    \n

    🟢 Advanced Parallax Module Design your page and tell stories while users scroll a page.

    \n

    🟢 Advanced Tooltip Module – It guides you to arrange information, add any element or media and experiment different tooltips.

    \n

    🟢 Cross-Domain Copy Paste Easily reuse any section, column, and widget of a website to another website, with this module.

    \n

    🟢 Image Masking Helps you to customize the image shapes and make them more appealing.

    \n

    🟢 Particles Grab attention with ElementsKit Particles and decorate backgrounds with dynamic particle effects.

    \n

    🟢 Wrapper Link Advanced way to add a link to any section, column, or widget in Elementor.

    \n

    🟢 Glass Morphism To apply frosted glass effects on your website backgrounds, this module is a fantastic choice.

    \n

    🟢 Mouse Cursor Convert boring cursor to interesting ones with our latest module.

    \n

    🟢 Liquid Glass Add trendy Apple liquid glass interface to your Elementor webstie.

    \n

    This Elementor Addon supports Elementor Form Plugin:

    \n

    🟢 Reset Button for Elementor Form: Add a reset button to Elementor Form and customize it to match your brand.

    \n

    🟢 Google Sheet Integration for Elementor Form: Automate the data collection of Elementor Form and store form submission data directly in Google Sheets.

    \n

    👉 Learn How to Install & Use ElementsKit

    \n

    🤝 BACKED BY A TRUSTED TEAM

    \n

    ElementsKit is brought to you by Wpmet, a name trusted by 10,00,000 satisfied users worldwide!

    \n

    » DOCUMENTATION AND SUPPORT

    \n\n

    😍 LOVE ElementsKit Elementor Addon?

    \n

    ⭐️ Rate us on WordPress

    \n

    ✨ OUR OTHER PLUGINS

    \n

    👉 MetForm – Super flexible and easy-to-use form builder.
    \n👉 ShopEngine – Your complete WooCommerce solution, built for Elementor.
    \n👉 GutenKit – Build websites 10x Faster with ZERO coding in the Gutenberg Block Editor.
    \n👉 EmailKit – Effortless way to change your email-building experience.
    \n👉 GetGenie Ai – An advanced Ai assistant for SEO-friendly content.
    \n👉 Wp Social – Leverage Wp Social to add Social Login, Social Counter, and Social Login to your website.
    \n👉 Wp Fundraising – Employ the power of Wp Fundraising to create a crowdfunding & donation sites.
    \n👉 Wp Ultimate Review – Manage customer reviews with the Wp Ultimate Review plugin.
    \n👉 PopupKit – Build exceptional popup for diverse needs within the WordPress block editor.
    \n👉 TableKit – Make fully-customizable multipurpose table & generate data table within Gutenberg block editor.
    \n👉 Genie Image – Generate images directly on your WordPress website with the magic of AI.

    \n

    Visit wpmet for essential WordPress Tutorials, Tips & Tricks!

    \n", "donate_link": "", "num_ratings": 1937, "screenshots": {"3": {"src": "https://ps.w.org/elementskit-lite/assets/Screenshot-3.gif?rev=3074791", "caption": "Powerup WordPress Mega Menu Builder"}, "4": {"src": "https://ps.w.org/elementskit-lite/assets/screenshot-4.gif?rev=3074791", "caption": "Elementor Header Footer Builder"}, "5": {"src": "https://ps.w.org/elementskit-lite/assets/screenshot-5.png?rev=2122447", "caption": "Drag-and-drop Elementor Mega Menu Builder"}, "6": {"src": "https://ps.w.org/elementskit-lite/assets/screenshot-6.png?rev=3074791", "caption": ""}, "7": {"src": "https://ps.w.org/elementskit-lite/assets/screenshot-7.png?rev=3074791", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/elementskit-lite/", "contributors": {"ataurr": {"avatar": "https://secure.gravatar.com/avatar/f73fad1d10f83bf8d56f91b0a7d6871339c2037406bd05028dabdfa782d078da?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ataurr/", "display_name": "Ataur R"}, "emranio": {"avatar": "https://secure.gravatar.com/avatar/e39465a364456601fee82491b8749d0ee33f1354b445e6043f8f5bef7fc8d8c1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/emranio/", "display_name": "Emran"}, "xpeedstudio": {"avatar": "https://secure.gravatar.com/avatar/fc68de72901b19de3ab443bfa9f8366b4c054cd487ee62bf5e9d4a7361bef3b0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/xpeedstudio/", "display_name": "XpeedStudio"}}, "last_updated": "2025-10-28 4:34pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/elementskit-lite.3.7.5.zip", "author_profile": "https://profiles.wordpress.org/roxnor/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    WordPress 4.9+

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f36d-7252-b2e2-b7a7f531bcb9", "name": "ElementsKit Elementor Addons and Templates", "slug": "elementskit-lite", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1761669240, "version": "3.7.5"}, "support_threads": 11, "requires_plugins": [], "short_description": "Join millions who empower their websites with ElementsKit Elementor Addons. Get templates, & 100+ widgets like header-footer, mega menu, custom widget", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 11}'); -INSERT INTO public.plugins VALUES ('019a30c1-64f0-7019-86e7-a980d6307e85', 'essential-addons-for-elementor-lite', 'Essential Addons for Elementor – Popular Elementor Templates & Widgets', 'Elementor addon offering 100+ widgets and templates — Elementor Gallery, Slider, Form, Post Grid, Menu, Accordion, WooCommerce & more.', '

    Enhance Elementor page building experience with 100+ creative elements and extensions. Add powers to your website builder using our easy-to-use Elementor widgets and ready Elementor templates, which were designed to make your next WordPress website design easier and prettier than ever before.

    -

    Essential Addons for Elementor offers 110+ advanced Elementor widgets with kits, 6,000+ ready templates & WooCommerce builder, serving 2 million+ active users.

    -

    Check the Demos

    -

    Completely Customizable

    -

    Each widget and extension comes with a bunch of options to customize your website in every possible way. You can achieve nearly any design of your imagination.

    -

    Light Weight & Instant Loading

    -

    No extra resources or messy code to slow down your website. Optimized for super fast loading and instant Live editing.

    -

    Elements Control option

    -

    Enable and disable individual elements adding to make your page load faster and smoother. You can deactivate unnecessary widgets to keep the site light.

    -

    6000+ Ready WordPress Templates & Blocks through Templately

    -

    Grab access to 3,000+ pre-made Elementor templates from Templately (a large templates cloud for WordPress), that come with Essential Addons.Unlock stunning Elementor templates, blocks & sections;and design your website to stand out from the crowd.

    -

    -

    Each of these Elementor templates is completely customizable and responsive, and also seamlessly compatible with Essential Addons. You can personalize them effortlessly by changing font, color, etc.

    -

    Templately also offers advanced features and facilities to save your templates to the cloud. Store all your ready and customized designs with Templately & deploy on hundreds of websites with 1-click. Increase productivity and power up your whole team to build websites faster than ever before.

    -

    Ready Elementor Templates From Templately:

    - -

    Expert Support

    -

    We have an extraordinary support team ready to help you. Ask your questions in the support forum, or contact us directly through live chat and contact form.

    -

    Elementor Website Builder is required for this plugin.

    -

    60+ FREE ELEMENTOR ADDONS AND COUNTING

    -

    We have designed more than 60 useful widgets to enhance your Elementor Page Building experience and allow you to climb the peak of your design capabilities.

    -
      -
    1. Post Grid – Showcase your blog posts in 3 unique styles
    2. -
    3. Post Timeline – Create stunning timeline for your posts & pages
    4. -
    5. Fancy Text – Design pages using animated texts in 8 different styles
    6. -
    7. Creative Buttons – Quickly add modern buttons with hover effects
    8. -
    9. Countdown – Include a countdown timer to boost click-through rates
    10. -
    11. Team Members – Feature your team members with a few clicks
    12. -
    13. Testimonials – Showcase customer reviews & increase credibility
    14. -
    15. WooCommerce Product Grid – Display WooCommerce products in grid layout
    16. -
    17. Contact Form 7 – Customize beautiful forms without any coding
    18. -
    19. Gravity Forms – Design forms with Elementor & Gravity Forms
    20. -
    21. Ninja Forms – Easily create your form style just the way you want
    22. -
    23. Caldera Forms – Design effective mobile-friendly forms
    24. -
    25. WPForms – Create powerful WordPress forms in minutes
    26. -
    27. weForms – Get an incredibly fast form building experience
    28. -
    29. Info Box – Design beautiful info box from predefined styles
    30. -
    31. Flip Box – Use animated Flip Boxes to highlight any content
    32. -
    33. Dual Color Heading – Highlight your headings with dual colors
    34. -
    35. Call to Action – Design call-to-action buttons with a few clicks
    36. -
    37. Pricing Table – Create Pricing Tables within minutes that convert
    38. -
    39. Twitter Feed – Showcase your latest tweets to your visitors
    40. -
    41. Data Table – Insert attractive data table anywhere you want
    42. -
    43. Filterable Gallery – Share images with an interactive gallery
    44. -
    45. Image Accordion – Highlight your images with amazing hover effects
    46. -
    47. Content Ticker – Use slider & ticker effects to display your content
    48. -
    49. Tooltip – Set tooltip for Icon, Image, Text or shortcodes
    50. -
    51. Advanced Tabs – Display information neatly in nested tabs
    52. -
    53. Advanced Accordion – Add beautiful nested accordions anywhere
    54. -
    55. Progress Bar – Display progress bars with 4+ different styles
    56. -
    57. Feature List – Display feature lists with custom icons and styles
    58. -
    59. Fluent Forms – Design your Fluent Forms container, fields and anything you want
    60. -
    61. Facebook Feed – Display Facebook post feed from your page
    62. -
    63. Sticky Video – Add videos that are sticky on scroll while playing
    64. -
    65. BetterDocs Category Grid – Create documentation in grid layout
    66. -
    67. BetterDocs Category Box – Create documentation in box layout
    68. -
    69. BetterDocs Search Form – Add a live search box for documentation
    70. -
    71. Advanced Data Table – Design large data tables without coding
    72. -
    73. Event Calendar – Create customized event pages
    74. -
    75. Formstack – Design your Formstack forms
    76. -
    77. Woo Checkout – Build attractive WooCommerce Checkout pages
      -youtube
    78. -
    79. Typeform – Embed & design your Typeform forms
    80. -
    81. Login | Register Form – Create amazing login/registration forms
    82. -
    83. Woo Product Compare – Design stunning product compare tables
    84. -
    85. Woo Product Carousel – Add Product Carousels for WooCommerce
    86. -
    87. Simple Menu– Design minimalist navigation menus
    88. -
    89. Woo Product Gallery– Show your products in a filterable gallery
    90. -
    91. Woo Cart– Use WooCommerce Cart page to boost online sales
    92. -
    93. Interactive Circle– Display content with engaging circular layouts
    94. -
    95. NFT Gallery– Add and showcase NFT collections effortlessly
    96. -
    97. Business Reviews– Display Google Customer Review to increase your online reputation
    98. -
    99. SVG Draw– Display SVG elements in a visually striking and interactive way on your website
    100. -
    101. Woo Product List– Showcase your store’s products with a stunning listicle format
    102. -
    103. Woo Product Price– Style your product price with custom colors and typography
    104. -
    105. Woo Product Rating– Show ratings to help customers make informed choices
    106. -
    107. Woo Product Images– Display WooCommerce product images with stunning effects
    108. -
    109. Woo Add to Cart– Make shopping easier with an ‘Add to Cart’ button
    110. -
    111. Breadcrumbs– Improve navigation with breadcrumbs for easy exploration
    112. -
    113. Code Snippet– Display beautifully formatted code on your Elementor website
    114. -
    -

    Extensions (Free):

    -
      -
    1. Reading Progress Bar – Add progress bar to show reading position
      -Watch YouTube Tutorial
    2. -
    3. Duplicator – Duplicate any page or post in a single click
    4. -
    5. Table of Contents – Display Table of Contents anywhere you want
      -Watch YouTube Tutorial
    6. -
    7. Custom JS – Add custom JavaScript with a few clicks
    8. -
    9. Scroll to Top – Let visitors quickly navigate to the top of your page
    10. -
    11. Wrapper Link – Add custom links into any section, column, or even flexbox
    12. -
    13. Hover Interactions – Create captivating effects on buttons, images, texts and more
    14. -
    15. Liquid Glass Effects – Give your website a sleek, futuristic feel with stunning glass effects
    16. -
    -

    More elements (50+) on Premium Version

    -
      -
    1. Post Block – Display your blog posts with a variety of styles
    2. -
    3. Lightbox & Modal – Create interactive popups after trigger actions
    4. -
    5. Testimonial Slider – Share customer reviews with animated sliders
    6. -
    7. Image Comparison – Let your viewers compare between two images
    8. -
    9. Interactive Promo – Display content with attractive animations
    10. -
    11. Instagram Feed – Display Instagram posts beautifully
    12. -
    13. Advanced Google Map – Create maps with unlimited themes
      -Watch YouTube Tutorial
    14. -
    15. Static Product – Present your static product just the way you want
    16. -
    17. Flip Carousel – Feature your content using a unique carousel style
    18. -
    19. Interactive Cards – Create fascinating effects for your content
    20. -
    21. Content Timeline – Create memory lane with animated scrolling
    22. -
    23. Advanced Menu – Use advanced navigation menu anywhere
    24. -
    25. Twitter Feed Carousel – Share Twitter posts in interactive styles
    26. -
    27. Dynamic Gallery – Add filterable gallery for any content
    28. -
    29. Smart Post List – Design your blog page with modern post list
    30. -
    31. Mailchimp – Design your Mailchimp form with ease
    32. -
    33. Toggle – Share any content in less space with a toggle
    34. -
    35. One Page Navigation – Create one page websites in Elementor
    36. -
    37. Price Menu – Make a beautiful pricing menu for your brands
    38. -
    39. Image Hotspots – Add hotspot icons with tooltips in an image
    40. -
    41. Divider – Separate your section with fancy divider
    42. -
    43. Counter – Highlight important data using the Counter element
    44. -
    45. Team Member Carousel – Display team members in a carousel
    46. -
    47. Post Carousel – Use a carousel to display multiple posts
    48. -
    49. Logo Carousel – Highlight brands or product logos in a carousel
    50. -
    51. Protected Content – Lock your content with password protection
    52. -
    53. Offcanvas – Display content in offcanvas with one click
    54. -
    55. Image Scroller – Show long height images with image scroller
    56. -
    57. Woo Product Slider – Showcase your products in a stunning slider
    58. -
    59. Woo Product Collections– Show product collections beautifully
    60. -
    61. LearnDash Course List– Share LearnDash course list on website
    62. -
    63. Advanced Search– Add a customizable, dynamic search bar
    64. -
    65. Woo Thank You– Design a personalized thank you message on the WooCommerce order confirmation page
    66. -
    67. Woo Cross Sells– Customize the display of cross-sell products to boost your sales potential
    68. -
    69. Woo Account Dashboard– Design a personalized WooCommerce Customer Account Dashboard
    70. -
    71. Fancy Chart– Visualize important data with interactive charts and graphs on your website
    72. -
    73. Stacked Cards– Showcase your website content in a distinctive and engaging way
    74. -
    75. 360 Degree Photo Viewer– Make your website image visible from every angle with adjustable controls
    76. -
    77. Multicolumn Pricing Table– Display pricing plans in multiple columns to compare features and choose the right option
    78. -
    79. Figma to Elementor Converter– Turn Figma designs into fully customizable Elementor Pages
    80. -
    -

    Extensions (Pro):

    -
      -
    1. Parallax – Add creative parallax effects to your content
    2. -
    3. Particles – Add animated particle effects to your content
    4. -
    5. Advanced Tooltip – Make any widget more informative with tooltip
    6. -
    7. Content Protection – Hide your content with password protection
    8. -
    9. Conditional Display– Display your preferred content based on the logic conditions you have set
    10. -
    11. Dynamic Tags– Display content dynamically on your preferred section of the website
    12. -
    13. Interactive animations– Create stunning animations & build a fully dynamic web page
    14. -
    15. Custom Cursor– Transform the default mouse pointer into a fully personalized design
    16. -
    -

    More features and improvements are coming on regular updates. Want to unlock the advanced elements? Upgrade to our Pro version

    -

    Elementor WooCommerce Widgets From Essential Addons

    -

    With Essential Addons, we bring you seamless compatibility with WooCommerce, enhancing your ability to showcase products, categories, and filters with ease. There are 11+ beautiful WooCommerce widgets for your every need:

    -

    EA Woo Product Carousel: Display your store’s products interactively with this WooCommerce widget and implement various styling options and ready-made layouts to create an interactive product showcase on your WordPress website.

    -

    EA Woo Product Gallery: Captivate visitors and drive immediate purchases on your WooCommerce store using the Product Gallery element from Essential Addons. Explore incredible ready layouts, abundant customization choices, and more.

    -

    EA Woo Product Price: Highlight the price of your WooCommerce product Price and style it using custom colors and typography.

    -

    EA Woo Product Rating: Display WooCommerce product rating to help customers make informed purchasing decisions and increase credibility.

    -

    EA Woo Product Images: Showcase eye-catching WooCommerce product images with advanced customization and effects.

    -

    EA Woo Add to Cart: Simplify the shopping experience by displaying an easy-to-access ‘Add to Cart’ button for all your WooCommerce products.

    -

    EA Woo Product Slider (PRO): Present your WooCommerce products in a stunning slider format with this advanced Elementor addon. You can also easily customize the entire slider appearance with fantastic pre-designed layouts, effects, and other advanced options.

    -

    EA Woo Product Collection (PRO): Exhibit your WooCommerce product collections on any section of your Elementor website to showcase items based on categories, tags, or attributes, and add engaging hover effects.

    -

    -

    EA Woo Product List: Easily add all your WooCommerce products in a listicle format on any Elementor page or post on your website and customize with unique layouts to attract customers instantly.

    -

    EA Woo Product Grid: Display your products in visually appealing grid-layouts on any website section and allow customers to view them based on category, tags, or attributes.

    -

    EA Woo Product Compare: Easily compare your preferred WooCommerce products anywhere on the page with this free Elementor addon. Benefit from numerous pre-designed theme layouts and much more.

    -

    EA Woo Cross Sells:: Effortlessly show related items to your customers with this premium Elementor widget, aiding them in discovering complementary products and enriching their overall shopping experience.

    -

    -

    EA Woo Cart: Elevate customers’ purchasing experience on your WooCommerce store by effortlessly designing an appealing Cart Page with Essential Addons using no coding.

    -

    EA Woo Checkout: Craft visually appealing Checkout pages for your WooCommerce store to customize and style the widget effortlessly to ensure increased sales.

    -

    EA Woo Account Dashboard (PRO): Create a user-friendly and visually appealing dashboard for your WooCommerce store, consolidating all vital tabs into one convenient location.

    -

    -

    EA Woo Thank You (PRO):Resonate with customers and ensure a positive post-purchase experience with this advanced Elementor WooCommerce widget from Essential Addons. It lets you create tailor-made thank-you messages with limitless personalization.

    -

    🏆 FEATURED BY 100+ RENOWNED PUBLICATIONS

    -

    WP Mayor: “If you use Elementor, Essential Addons is a great way to expand your library of available widgets without slowing your site down.”
    -WP Pagebuilders: “With 60+ additional widgets, Essential Addons is a great add-on to enhance your experience in building a website with WordPress+Elementor.”
    -MonsterPost: “Essential Addons for Elementor has a huge number of active users among all third-party extensions on the market. The widgets are tested in all popular web browsers to ensure full browser compatibility for all elements.”
    -WPCrafter: WordPress influencer Adam Preiser did a Speed Test & found Essential Addons for Elementor is the high-performance solution out there 👇

    -

    -

    BACKED BY A TRUSTED TEAM

    -

    Essential Addons is brought to you by WPDeveloper, a dedicated WordPress product company, trusted by 6 million+ happy users.

    -

    Documentation and Support

    -
      -
    • For documentation and tutorials go to our Documentation.
    • -
    • If you have any more questions, visit our support on the Plugin’s Forum.
    • -
    • For more information about features, FAQs and documentation, check out our website at Essential Addons.
    • -
    -

    Happy User of Essential Addons?

    - -

    🔥 WHAT’S NEXT

    -

    If you like Essential Addons, then consider checking out our other WordPress Plugins:

    -

    🔔 NotificationX – Powerful Social Proof & FOMO Marketing Solution to boost conversions & design stunning WordPress notification bars in Elementor

    -

    🗒️ BetterDocs – Advanced Documentation & Knowledge Base Plugin for WordPress, which also comes with ready doc templates for Elementor

    -

    SchedulePress – Complete solution for managing WordPress content scheduling through an editorial calendar & Social Share

    -

    🔗 EmbedPress – Easy WordPress solution for embedding videos, images, posts, audio, maps and PDF, DOC, PPT & all other types of content into your website using Elementor, Gutenberg and more.

    -

    🔎 easy.jobs – Smart and easy recruitment and talent sourcing solution for hiring with AI-powered screening system, question sets, remote interviews, and designing branded career pages with Elementor.

    -', '6.3.3', 'WPDeveloper', '5.0', '7.0', '6.8.3', 'https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.3.zip', '2017-07-20 00:00:00+00', '2025-10-08 06:11:00+00', 'https://profiles.wordpress.org/wpdevteam/', 98, 3953, 23, 20, 2000000, 110487233, 'https://essential-addons.com/', NULL, 'commercial', 'https://essential-addons.com/support/', 'https://wordpress.org/support/plugin/essential-addons-for-elementor-lite/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Essential Addons for Elementor – Popular Elementor Templates & Widgets", "slug": "essential-addons-for-elementor-lite", "tags": {"elementor": "elementor", "elementor-addons": "elementor addons", "elementor-widgets": "elementor widgets", "elementor-templates": "elementor templates", "elementor-woocommerce": "elementor woocommerce"}, "added": "2017-07-20", "icons": {"1x": "https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.gif?rev=3182943", "2x": "https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.gif?rev=3182943"}, "author": "WPDeveloper", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.png?rev=3349213", "high": "https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.png?rev=3349213"}, "ratings": {"1": 70, "2": 18, "3": 22, "4": 77, "5": 3766}, "version": "6.3.3", "homepage": "https://essential-addons.com/", "requires": "5.0", "sections": {"faq": "\n
    \nCan I use the plugin without Elementor Page Builder?\n\n

    \n

    No. You cannot use without Elementor since it’s an addon for Elementor.

    \n

    \n
    \nDoes it work with any theme?\n\n

    \n

    Absolutely! It will work with any theme where Elementor works.

    \n

    \n
    \nWhat if I update to Premium version?\n\n

    \n

    Your existing elements/content will work with premium version. So you won’t lose your developed contents.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy danduffett on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is already fantastic, but what really sets it apart is the super fast support when you need it! Loren was a lifesaver when I had a little styling issue and helped me sort it out in no time! Thanks again for everything!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazing Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gettoknowbig3 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I encountered an internal error within the plugin, which was frustrating. I contacted support, who were incredibly helpful. They fixed the bug in the plugin, which was conflicting with another, in just two days!

    \n\n\n\n

    Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy barryallen666 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plungin, fast customer support!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mussonking on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The little extra needed for the starters. lots of free stuff that help complete elementor free.

    \n\n\n\n

    thankss

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    More useful than Elementor Pro, actually.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dafshar on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I find the plugin to be very convenient and fun to use.

    \n\n\n\n

    When bugs do arise, support is quick to respond and take note for future updates.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rodman38 on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I just discovered a CSS bug in the \"Advanced Tabs\" widget. Support will quickly help find a temporary solution while we wait for a future plugin update.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great utility. Use it often

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy patrickhealy on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I picked this up years ago and use it on every site. So many great widgets that come in handy to extend Elementor. Big fan.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Help From Florence

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy domevisuals on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I just had an amzing experience with Florence, amazing support, went on and beyond what was asked from her

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stephfirst3 on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ryan at EA was super quick to respond to my request and provided some CSS I could use in the customizer to solve my issue. I would definitely give this plugin a try if you are using Elementor. They are responsive and provide solid support. Thanks EA Team!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Gran aporte al desarrollo de los sitios web

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cesarinrio on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excelente aporte para los desarrolladores, y en lo personal de maravilla.

    \n
    \n
    \n", "changelog": "

    6.3.3 – 08/10/2025

    \n
      \n
    • Fixed: EA Content Ticker | Tags not working properly with The Events Calendar
    • \n
    • Fixed: EA Advanced Tabs | Multiple saved templates causing design and responsiveness issues
    • \n
    • Fixed: EA Woo Checkout | Conflict with WooPayments
    • \n
    • Improved: EA Advanced Tab | Added Liquid Glass Effect
    • \n
    • Improved: EA Feature List | Horizontal layout enhancements
    • \n
    • Improved: EA Business Review | New design update
    • \n
    • Improved: EA Dynamic Tags | Enhanced flexibility
    • \n
    • Improved: EA Advanced Tabs | Added scheduling option for “Active as Default” controller
    • \n
    • Improved: EA Event Calendar | Added location field in event popup
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.3.2 – 18/09/2025

    \n
      \n
    • Fixed: EA Image Accordion | Horizontal layout not working on mobile
    • \n
    • Fixed: EA Product Images | Zoom lens size not working
    • \n
    • Fixed: EA Advanced Tabs | Tab title background color not working
    • \n
    • Fixed: EA Add to Cart & Rating | Conflict with Cusrev causing layout issues
    • \n
    • Fixed: EA Woo Product Compare | Header column styling issue
    • \n
    • Fixed: EA Feature List | Icon size rendering incorrectly
    • \n
    • Fixed: EA Woo Checkout | Styling issue with WooCommerce Subscriptions
    • \n
    • Fixed: EA Woo Cart | Body color issue on Safari/iPhone
    • \n
    • Improved: EA Advanced Tabs | Vertical layout offset now starts from content
    • \n
    • Improved: EA Feature List | Layout enhancements
    • \n
    • Improved: EA Pricing Table | Style & functional refinements
    • \n
    • Improved: Woo Product Grid | Show secondary image on hover
    • \n
    • Improved: Woo Product Grid | On Sale badge toggle added
    • \n
    • Improved: EA Content Ticker | “Order By” custom field meta key support
    • \n
    • Improved: EA Business Reviews | Google My Business API support
    • \n
    • Improved: EA Business Reviews | Display selected reviews
    • \n
    • Improved: EA Testimonial | New layout added
    • \n
    • Improved: EA Post Grid | Text placed before image for accessibility
    • \n
    • Improved: EA NFT Gallery | New source: Magic Eden
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.3.1 – 01/09/2025

    \n
      \n
    • Improvement | EA Woo Product Carousel | Add option to exclude “On Sale” and “Out of Stock” products
    • \n
    • Fixed: EA Login/Register Form | Auto login not working properly
    • \n
    • Fixed: EA Advanced Data Table | Header background color doesn’t work on the editor page when we import data from a CSV file
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.3.0 – 24/08/2025

    \n
      \n
    • Added: New Extension | Liquid Glass Effects
    • \n
    • Improved: Security Enhancement
    • \n
    • Fixed: EA Login/Register Form | Password reset URL is always showing expired when MemberPress is used to change Login URL
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.2.4 – 14/08/2025

    \n
      \n
    • Fixed: Fatal error on PHP 7.4 for some multisite setups
    • \n
    \n

    6.2.3 – 13/08/2025

    \n
      \n
    • Fixed: EA Simple Menu | Dropdown not working on iPhone
    • \n
    • Fixed: EA Filterable Gallery | Filters not updating in editor
    • \n
    • Fixed: Homepage not loading after updating from v6.1.8
    • \n
    • Fixed: Post Widgets | “Load More” button stays after full load
    • \n
    • Fixed: EA Woo Checkout | Shipping selection issue
    • \n
    • Fixed: EA Add to Cart | Spacing issue with variable products
    • \n
    • Fixed: Migration error | File integrity check added
    • \n
    • Fixed: EA Gravity Forms | List/File upload field color issue
    • \n
    • Fixed: EA SVG Draw | Not triggering on scroll
    • \n
    • Improved: EA Login/Register | Cloudflare Turnstile support
    • \n
    • Improved: EA Tooltip | WPML Media Translation support
    • \n
    • Improved: EA Flip Box | Auto height for all devices
    • \n
    • Improved: EA Woo Product Image | Custom hook for thumbnail
    • \n
    • Improved: EA Woo Product Image | Enhanced zoom effect
    • \n
    • Improved: EA Breadcrumbs | Home icon now clickable
    • \n
    • Improved: Performance | Reduced unnecessary queries
    • \n
    • Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.2.2 – 28/07/2025

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.2.1 – 20/07/2025

    \n
      \n
    • Improved: EA Call To Action | Added Multi-Color Title support
    • \n
    • Improved: EA Login/Register Form | Added reCAPTCHA support in Password Reset Form
    • \n
    • Fixed: EA Woo Product Carousel | Resolved add to cart button Duplication issue with Blocksy theme
    • \n
    • Fixed: EA Woo Product Carousel | Resolved Badge color styling issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.2.0 – 03/07/2025

    \n
      \n
    • Added: New Widget | EA Code Snippet
    • \n
    • Improved: Security Enhancements
    • \n
    • Improved: EA Event Calendar | Added label to search field for accessibility
    • \n
    • Fixed: EA Woo Product Gallery | Resolved cropping and misalignment issues with custom image sizes
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.20 – 26/06/2025

    \n
      \n
    • Improved: Security Enhancements
    • \n
    • Fixed: EA Woo Product Gallery | Compatibility issue with WPML
    • \n
    • Fixed: EA Filterable Gallery | Resolved layout issues
    • \n
    • Fixed: EA Woo Product Carousel | Addressed accessibility issues
    • \n
    • Fixed: EA Product Grid | Pricing now displays correctly in list layout
    • \n
    • Fixed: Resolved compatibility issue with GiveWP
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.19 – 20/06/2025

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.18 – 04/06/2025

    \n
      \n
    • Fixed: EA Woo Product Gallery | category tab not working
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.17 – 02/06/2025

    \n
      \n
    • Added: EA SVG Draw | New Fill Type (Always) Controller
    • \n
    • Added: EA Filterable Gallery | Added Captions for Videos
    • \n
    • Fixed: EA Advanced Data Table | Sorting Issue for non-English Languages
    • \n
    • Fixed: EA Advanced Data Table | Sorting Icon Shows Console Error
    • \n
    • Fixed: EA Woo Product Gallery | Quick View Popup Styling Issue
    • \n
    • Fixed: EA Woo Product Gallery | “View Cart” Button Line Height Is Incorrect
    • \n
    • Fixed: EA Simple Menu | Undefined Array Key “eael_simple_menu_menu” Warning
    • \n
    • Fixed: EA Woo Product Grid | “View More” Button Visible After Full Load in Elementor Tabs
    • \n
    • Fixed: EA Woo Product Grid | Issues with Missing Products
    • \n
    • Fixed: EA Woo Product Image | Image Scaling Issue
    • \n
    • Fixed: EA Login/Register Form | Validation Message Not Showing
    • \n
    • Fixed: EA Login/Register Form | Issue Submitting Forms With File Uploads
    • \n
    • Fixed: EA SVG Draw | Fill After Draw Issue
    • \n
    • Fixed: EA Post Grid | Excluding Pages Issue
    • \n
    • Fixed: Compatibility Issue with Newer PHP Versions.
    • \n
    • Improved: EA Fancy Text | Animation Delay Until Section Scrolls Into View.
    • \n
    • Improved: EA Filterable Gallery | Revamped Controls & Layouts
    • \n
    • Improved : Removed Unused Class “use” Declaration
    • \n
    • Improved: EA Post Grid, Team Member, Testimonial, Woo Product Grid, Woo Product Gallery | Controls Reorganized in Elementor Panel
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.15 – 25/05/2025

    \n
      \n
    • Improved: EA Filterable Gallery | Revamped Controls & Layouts
    • \n
    • Improved: EA Dual Color Heading | Added Multiple Heading Option
    • \n
    • Fixed: EA Login/Register Form | Google Social Login assigning “Subscriber” instead of “Editor” role after Signup
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.14 – 21/05/2025

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.13 – 19/05/2025

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.12 – 13/05/2025

    \n
      \n
    • Fixed: 404 Page not found page not working when built with Elementor template
    • \n
    • Fixed: EA Flip Box | Height Inconsistency and Scroll Not Working on iPhone
    • \n
    • Fixed: EA Woo Product List | Popup style not working
    • \n
    • Improved: EA Testimonial | Added Image Height Control
    • \n
    • Improved: EA Testimonial | Removed default 10px padding
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.11 – 22/04/2025

    \n
      \n
    • Improved: EA Info Box | Issues & Enhancements – Phase 2
    • \n
    • Fixed: EA Quick Setup Wizard | Basic and Advanced settings not working
    • \n
    • Fixed: EA Event Calendar | Language translation issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.10 – 10/04/2025

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.9 – 24/03/2025

    \n
      \n
    • Improved: EA Testimonial | Controller Mechanism
    • \n
    • Improved: EA Creative Button | Controller Mechanism
    • \n
    • Improved: EA Call To Action | Controller Mechanism
    • \n
    • Fixed: Elementor editor Overlapping issue
    • \n
    • Fixed: EA Filterable Gallery | Load more Button functionality issue
    • \n
    • Fixed: EA Filterable Gallery | Lightbox Slide number discrepancy issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.8 – 21/03/2025

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.7 – 20/03/2025

    \n
      \n
    • Fixed: Compatibility issue causing a critical error with Elementor Pro versions below 3.24.0
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.6 – 19/03/2025

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Improved: EA Facebook Feed | Load More button now functions correctly
    • \n
    • Improved: EA Info Box | Added Subtitle Option
    • \n
    • Improved: EA Sticky Video | Video now plays when clicked
    • \n
    • Improved: EA Woo Account Dashboard | Added additional controls inside tabs
    • \n
    • Fixed: Added support for Elementor 3.28.0 compatibility
    • \n
    • Fixed: EA SVG Draw | “Fill after draw” option now works correctly
    • \n
    • Fixed: EA Woo Product Images | Navigation arrows are now properly aligned
    • \n
    • Fixed: EA Filterable Gallery | Resolved masonry layout error
    • \n
    • Fixed: Resolved conflict with Elementor’s 404 page template
    • \n
    • Fixed: Woo Product Gallery | Now displays more than 4 products correctly
    • \n
    • Fixed: EA Login Register Form | Custom phone number field now appears in both user and admin emails
    • \n
    • Fixed: EA Team Member | Using an empty featured image from dynamic tags no longer causes a fatal error
    • \n
    • Fixed: EA Pricing Table | Icon color issue resolved
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.5 – 13/03/2025

    \n
      \n
    • Improved: Introduced Post Types selection mechanism for Widgets
    • \n
    • Improved: EA Product Grid | Added Stock Out products exclusion option
    • \n
    • Improved: EA Flip Box | Added option to control flip duration
    • \n
    • Fixed: EA Advanced Data Table | Issues with non English Special Characters
    • \n
    • Fixed: EA Woo Add to Cart | Multiple buttons double icon issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.4 – 17/02/2025

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.3 – 17/02/2025

    \n
      \n
    • Fixed: EA Creative Icon | SVG icon color not applying from settings
    • \n
    • Fixed: EA Advanced Data Table | Large CSV file import causes unresponsive page during widget edit
    • \n
    • Fixed: EA Filterable Gallery | Popup redirects to YouTube instead of opening modal
    • \n
    • Fixed: EA Woo Product Images | Images do not change with product variations
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.2 – 10/02/2025

    \n
      \n
    • Fixed: EA Woo Product Carousel | Regular price strikethrough color is not changing
    • \n
    • Fixed: EA Woo Product Carousel | Not able to style the pop-up with the woo product carousel
    • \n
    • Fixed: EA Woo Product Grid | Not able to style the pop-up with the woo product grid
    • \n
    • Fixed: EA Woo Product Gallery | Product Gallery Display Issue on Chrome (Repeating Rows After Navigation)
    • \n
    • Fixed: EA Fancy text | – & character can not be used
    • \n
    • Fixed: EA Advanced Tabs | Editor not loading when Advanced Tabs element is enabled in some cases
    • \n
    • Fixed: EA Fancy Text | Animation Not Working Except for “Typing Text”
    • \n
    • Improved: EA Woo Product Images | Added responsive controls
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.1 – 21/01/2025

    \n
      \n
    • Improved: Added Edit Template support right inside the page itself for the widgets which got Saved Template option
    • \n
    • Fixed: EA Breadcrumbs | When used on the Container, the background image of the container doesn’t show
    • \n
    • Fixed: Compatibility issue | WooCommerce Product Bundles | With bundle product quick view add to cart not working
    • \n
    • Fixed: EA Filterable Gallery | Accessibility issue with Filters
    • \n
    • Fixed: EA Filterable Gallery | Several fields from Filterable Gallery cannot be translated with WPML.
    • \n
    • Fixed: Advanced Data Table | open new tab does not work in link
    • \n
    • Fixed: EA Advanced Accordion | FAQ Schema Issue with Item Count
    • \n
    • Fixed: EA WPForms | Error text color is not being applied
    • \n
    • Fixed: EA Filterable Gallery | Load more is not showing properly in some cases
    • \n
    • Fixed: EA Event Calendar | Events overflowing the container if multiple events available on a day
    • \n
    • Improved: EA Team Member | Change Team Member name tag from H2 to span
    • \n
    • Fixed: EA Post timeline | Title font family can’t be changed
    • \n
    • Fixed: EA Gravity Forms | “Next” Button Issue with Ajax and Toggle Settings
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.1.0 – 29/12/2024

    \n
      \n
    • Added: EA Woo Product Price
    • \n
    • Added: EA Woo Product Rating
    • \n
    • Added: EA Woo Product Images
    • \n
    • Added: EA Woo Add to Cart
    • \n
    • Added: EA Breadcrumbs
    • \n
    • Fixed: Uncaught Error | Class XD_Copy not found
    • \n
    • Fixed: EA WPForms | Calendar selection not working in Elementor Popup
    • \n
    • Fixed: EA Woo Product Gallery | “Quick View” button custom URL issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.15 – 24/12/2024

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Improved: Added Optimized Markup Support
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.14 – 19/12/2024

    \n
      \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.13 – 15/12/2024

    \n
      \n
    • Fixed: EA Pricing Table | Throwing critical error when Pro version isn’t up-to-date
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.12 – 11/12/2024

    \n
      \n
    • Added: Elementor 3.26 Compatibility
    • \n
    • Fixed: EA Woo Cart | Quantity icons are showing multiple times on the cart page
    • \n
    • Fixed: EA Event Calendar | Multiple Issues with Date Formatting, Time Input, and Language Options
    • \n
    • Fixed: EA Scroll To Top | Not working on Search Result page
    • \n
    • Fixed: PHP Deprecated Warnings during Installation
    • \n
    • Fixed: EA Pricing Table | Trying to access array offset on null
    • \n
    • Fixed: Mismatched Text Domains
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.11 – 01/12/2024

    \n
      \n
    • Fixed: Compatibility issue with FunnelKit
    • \n
    • Fixed: EA Woo Product Carousel | On load carousel first item visibility issue
    • \n
    • Fixed: PHP Notice: Function “_load_textdomain_just_in_time” error in WordPress 6.7
    • \n
    • Fixed: EA Post Grid | Added Nickname support for Author
    • \n
    • Fixed: EA Info Box | Image styling Control issue
    • \n
    • Fixed: EA Sticky Video | Multiple Sticky Video in Same Page UI issue
    • \n
    • Fixed: EA Feature List | PHP undefined array notice : “eael_feature_list_icon_individual_box_bg_color”
    • \n
    • Fixed: EA Woo Product Grid | Product Rating Types issue on Default Preset
    • \n
    • Improved: EA Woo Product Gallery | Added relation between Category and Tags on Query
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.10 – 14/11/2024

    \n
      \n
    • Fixed: EA Advanced Accordion | When click on the accordion it jumps to another section
    • \n
    • Fixed: Woo Product Grid | Pagination Typography Font Weight is not being applied properly
    • \n
    • Fixed: Woo Product Grid | Product pricing isn’t displaying after the recent update, despite “Show Price” being enabled
    • \n
    • Fixed: WPForms Widget | Form Container Alignment Does Not Work properly
    • \n
    • Fixed: EA Dual Color Header | The Gradient color doesn’t work
    • \n
    • Fixed: EA Woo Product Grid | Price is not showing on list layout
    • \n
    • Fixed: EA Sticky Video | Sticky Video Misalignment Issue while scorlling
    • \n
    • Fixed: EA Login/Register Form | {password_reset_link} Shortcode Issue in Registration User Email Template
    • \n
    • Improved: EA Info Box | Width Controller for Image
    • \n
    • Improved: EA Woo Product Carrousel | Added rating count next to stars
    • \n
    • Improved: Select2 Ajax Control : Taxonomy – need to remove limit
    • \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.9 – 06/11/2024

    \n
      \n
    • Improved: Added Edit Template support right inside the page itself
    • \n
    • Improved: EA Post Grid | Added support to show custom post’s field/taxonomy
    • \n
    • Improved: EA Team Member | Added a dynamic tag option for showing ACF images in Team Member image
    • \n
    • Improved: EA Filterable Gallery | Added support for YouTube Shorts
    • \n
    • Fixed: EA Data Table | Using text area Content is visibility issue under < a > tag
    • \n
    • Fixed: EA Gravity Forms | Layout UI issue on the editor page
    • \n
    • Fixed: EA Interactive Circle | Conflicting with Whiskers Theme Pro
    • \n
    • Fixed: EA Post Grid | Author name issue in Style 1 & 2
    • \n
    • Fixed: EA Scroll To Top | Added support on Archive page
    • \n
    • Fixed: EA Woo Checkout | PHP Deprecated issue
    • \n
    • Fixed: EA Product Grid | Image clickable issue
    • \n
    • Fixed: Conflict with Formstack plugin
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.8 – 27/10/2024

    \n
      \n
    • Fixed: EA Pricing Table | Font weight changes while tooltip is used
    • \n
    • Fixed: EA Flip Box | Flip box click Not working on frontend when using more than one flip boxes with saved templates
    • \n
    • Fixed: EA Filterable Gallery | Not working while being used as shortcode from site review plugin
    • \n
    • Fixed: EA Scroll To Top | Global feature isn’t working after editing the page
    • \n
    • Fixed: EA Table of Contents | Undefined array key
    • \n
    • Fixed: EA Pricing Table | Dynamic tag for button is not working
    • \n
    • Fixed: Saved Template design breaks due to an issue with element caching
    • \n
    • Fixed: EA Woo Product Gallery | Show extra cart button on enabling woocommerce loop hooks
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.7 – 09/10/2024

    \n
      \n
    • Fixed: EA Advanced Tabs | While being hovered or active, the tab shows green border
    • \n
    • Fixed: EA Woo Cart | Style 2 – Remove product button size increase or decrease is not working for mobile
    • \n
    • Fixed: EA Contact form 7 | Form width doesn’t change
    • \n
    • Fixed: EA Woo Product Grid | Search results isn’t showing while being used as Search result template
    • \n
    • Fixed: EA Advanced Data Table | Sorting is not working
    • \n
    • Fixed: EA Advanced Tabs | JS compatibility issue
    • \n
    • Fixed: EA Advanced Data Table | Images are not showing
    • \n
    • Fixed: EA Advanced Tabs | Feature List as a saved template is broken
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.6 – 29/09/2024

    \n
      \n
    • Improved: EA Filterable Gallery | Pagination on video gallery
    • \n
    • Improved: EA Woo Product Carousel | Added Marquee support
    • \n
    • Improved: EA Wrapper Link | Add enable and disable option for traditional link
    • \n
    • Improved: EA Woo Product Carousel | Add option to select items count on slide
    • \n
    • Improved: EA Table of Contents | Position & Color
    • \n
    • Improved: Security enhancements
    • \n
    • Improved: EA Woo Checkout | Need an option to change Input field background color
    • \n
    • Improved: EA Interactive Circle | Interactive Circle content icon not displaying.
    • \n
    • Improved: EA Post Grid | Sticky posts visible at first
    • \n
    • Fixed: EA Flip Box | Purple Color Overlay Issue
    • \n
    • Fixed: EA Filterable Gallery | Field link not translatable with WPML
    • \n
    • Fixed: EA Login/Register Form | Absence of message validation
    • \n
    • Fixed: EA Advanced Tabs | Accessibility Issue, Screen Reader Focus Limited to First Tab
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.5 – 18/09/2024

    \n
      \n
    • Improved: EA Flip Box | UI for mobile devices
    • \n
    • Improved: EA Filterable Gallery | Added Overlay for the video gallery
    • \n
    • Improved: EA Woo Product Gallery | Added Archive Product Support for Product Category Page
    • \n
    • Improved: EA Woo Product Gallery | Added support to Turn off secondary image on hover for mobile
    • \n
    • Fixed: Animation conflicting issue with Elementor
    • \n
    • Fixed: EA Advanced Accordion | Conflict with Elementor 3.24.0
    • \n
    • Fixed: EA Woo Product List | HTML Tags Support for Product Excerpts
    • \n
    • Fixed: EA Woo Product Carousel | Added compatibility for Astra theme
    • \n
    • Fixed: EA Checkout | Conflict with USPS Shipping Method for WooCommerce
    • \n
    • Fixed: EA Countdown | Expiration issue with Saved Templates
    • \n
    • Fixed: EA Login Register Form | Warning message on reset password
    • \n
    • Fixed: EA Interactive Circle | UI issue when Scrolling
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.4 – 09/09/2024

    \n
      \n
    • Improved: Security enchancements in EA Fancy Chart & EA Filterably Gallery widgets
    • \n
    • Improved: EA Woo Product widgets | Added manual product selection option
    • \n
    • Added: Compatibility with Element Caching
    • \n
    • Fixed: Scroll position changing on click Elementor Tab when EA is activated
    • \n
    • Fixed: EA Interactive Circle | Link malfunction in interactive items
    • \n
    • Fixed: EA Filterable Gallery | Randomized Gallery option not randomizing the gallery items due to caching issue
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.3 – 04/09/2024

    \n
      \n
    • Fixed: EA Post Grid | Author related UI issues
    • \n
    • Fixed: EA Login Register Form | T&C Toggle Colour issue
    • \n
    • Fixed: EA Interactive Circle | Custom SVG icon’s Colour issue
    • \n
    • Fixed: EA Wrapper Link conflicts with Elementor Loop Grid
    • \n
    • Fixed: EA Advanced Accordion empty data issue with ACF field
    • \n
    • Fixed: EA Advanced Tabs | Custom ID offset issue
    • \n
    • Fixed: EA Post Grid | Fallback image display issue
    • \n
    • Fixed: EA Post Duplicator | Page Layout styling issue
    • \n
    • Fixed: EA Advanced Tabs compatibility issue with Ad inserter plugin
    • \n
    • Fixed: EA Advanced Data Table | Alphanumeric Sorting issue
    • \n
    • Fixed: EA WPForms | Submit button hover colour issue
    • \n
    • Fixed: Uncaught TypeError: When accessing a string offset on a string variable
    • \n
    • Fixed: EA Woo Product Carousel | Mobile landscape visibility issue
    • \n
    • Fixed: EA Woo Product Grid | Quick view compatibility issue with YITH WooCommerce product filter
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.2 – 29/08/2024

    \n
      \n
    • Fixed: Enabling elements inside Elementor causing blank EA dashboard
    • \n
    • Fixed: EA Filterable Gallery | “Load More” button shows on those filters which doesn’t have any items and less items
    • \n
    • Fixed: EA Interactive Circle | Add URL support for interactive items
    • \n
    • Fixed: EA Hover Interactions | Hover Interactions does not work on the front-end
    • \n
    • Fixed: EA Dashboard | Update CSS Print Method link
    • \n
    • Fixed: EA Post Grid | After Load More the terms are not displayed with Style 3
    • \n
    • Fixed: EA Flip Box | Add overlay for the background image
    • \n
    • Fixed: EA Woo Product Carousel | Carousel disappears when using Botiga theme
    • \n
    • Fixed: EA Post Grid | Child sections ignores ‘Show Meta’ parents
    • \n
    • Fixed: EA Scroll To Top | Scroll To Top icon doesn’t show
    • \n
    • Fixed: EA WPForms | Submit button hover color stays grey
    • \n
    • Fixed: EA Filterable Gallery | Updated label to “Notice” on display content notice
    • \n
    • Fixed: EA NFT Gallery | Not working
    • \n
    • Improved: EA Dual Color Heading | Vulnerable to Cross Site Scripting (XSS)
    • \n
    • Improved: EA Woo Checkout | EA Woo Checkout is missing some styling options
    • \n
    • Improved: EA Wrapper link | Elementor popup doesn’t work on wrapper link
    • \n
    • Improved: EA Table of Contents | Width option for mobile device
    • \n
    • Improved: Optimized Control Loading | EA Feature List, EA Sticky Video, EA Pricing Table, EA Progress Bar, EA Woo Product Compare
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.1 – 19/08/2024

    \n
      \n
    • Fixed: Elementor transform example rotate, skew etc features not working inside Elementor Editor
    • \n
    • Fixed: Custom Template shows broken inside Elementor Editor if EA is activated in some cases
    • \n
    • Fixed: Dashboard UI/UX related issues after EA 6.0 update
    • \n
    • Improved: Added async requests to all the actions inside EA Dashboard
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    6.0.0 – 11/08/2024

    \n
      \n
    • Revamped: New EA Dashboard for better UI/UX
    • \n
    • Revamped: New EA Quick Setup for better UI/UX
    • \n
    • Added: New Extension- EA Hover Interactions
    • \n
    • Added: New Skin Presets for different Post, WooCommerce & Other widgets
    • \n
    • Improved: Added proper sanitization inside EA Filterable Gallery widget
    • \n
    • Fixed: EA Pricing Table | Button Not Displaying and Getting Undefined index
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.27 – 11/07/2024

    \n
      \n
    • Updated: Custom Attributes inside EA Event Calendar
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.26 – 11/07/2024

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Fixed: EA Login / Register Form | Password form shows error when hit on “Forgot Password”
    • \n
    • Fixed: Cannot redeclare control with same name “eael_global_warning_text”
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.25 – 02/07/2024

    \n
      \n
    • Fixed: EA Simple Menu | Active menu not showing for archive pages
    • \n
    • Fixed: Missing translatable strings for EA Woo Product List & EA NFT Gallery
    • \n
    • Fixed: EA Call to action | Margin not being applied uniformly
    • \n
    • Updated: WPML Config file in some widgets
    • \n
    • Improved: EA Event Calendar for Security Enhancement
    • \n
    • Improved: EA Post Grid | Added option to show user’s first & last name instead of just username
    • \n
    • Improved: EA Advanced Data Table | CSV Data import/export mechanism
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.24 – 09/06/2024

    \n
      \n
    • Improved: User role permissions to add/edit custom JS
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.23 – 05/06/2024

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Improved: EA Login/Register Form | Added Score Threshold option for reCAPTCHA & option to remove the branding
    • \n
    • Improved: EA Woo product Grid | Added option to filter by tags
    • \n
    • Improved: EA Login/Register Form | Added support for register_form action hook
    • \n
    • Improved: EA Login/Register Form | Added field for honeypot
    • \n
    • Improved: EA Interactive Circle | Added option to rotate the Interactive Circle around the middle and pause on hover
    • \n
    • Improved: EA Feature List | Added Horizontal layout option
    • \n
    • Improved: EA Filterable Gallery | Added support for vertical 9:16 video
    • \n
    • Fixed: EA Simple Menu | Using a hash link (#) on a sub-menu item within a hamburger menu will not open the dropdown item on mobile/tablet view
    • \n
    • Fixed: EA Woo Product Grid | Not working properly with WordPress and WooCommerce Filter
    • \n
    • Fixed: EA Filterable Gallery | Image Tag being changed from tag to tag after Version 5.9.15
    • \n
    • Fixed: EA Advanced Data Table | Header text reverting to Black if the Sort option in the advanced Features is turned off
    • \n
    • Fixed: EA Post Grid | Conflict with Ultimate Member plugin
    • \n
    • Fixed: EA Post Grid | On Style 3 Terms on Hover is not showing after clicking on the Load More button
    • \n
    • Fixed: EA WP Forms | EA WP Forms Widget Width Restriction in Latest Update
    • \n
    • Fixed: EA Woo Product Gallery | Error in code — data-template and data-terms attributes
    • \n
    • Fixed: EA Woo Product Grid | “Out of stock” badge showing on top of “Sale” badge
    • \n
    • Fixed: EA Login/Register Form | Spinner is not visible on the front-end
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.22 – 22/05/2024

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.21 – 13/05/2024

    \n
      \n
    • Revamped: NFT Gallery | OpenSea API version
    • \n
    • Fixed: Filterable Gallery | iframe not working issue
    • \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.20 – 08/05/2024

    \n
      \n
    • Improved: Security Enhancement
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    5.9.19 – 05/05/2024

    \n
      \n
    • Fixed: EA Sticky Video | Conflicts with the Blocksy theme
    • \n
    • Fixed: EA Login Register Form | Validation message doesn’t show up while using the form in the popup
    • \n
    • Fixed: EA Login Register Form | Showing error message for not required field
    • \n
    • Fixed: EA Simple Menu | Dropdown icon is not showing on the desktop mode
    • \n
    • Fixed: EA Tooltip | Displaying the content after the hover is complete
    • \n
    • Fixed: EA Feature list | Icons don’t show when the shape view is set to Framed
    • \n
    • Fixed: EA Contact Form 7 | Alignment of the container, title & description is not working
    • \n
    • Fixed: EA Advanced Accordion | Conflicts with the Specia Standard theme
    • \n
    • Fixed: EA Advanced Data Table | Checkbox is not showing when using TablePress
    • \n
    • Fixed: EA Advanced Tabs| Switching tabs causes the page to scroll up or down
    • \n
    • Fixed: EA Woo Checkout | ‘User Account’ & ‘Coupon Percentage’ icons are broken on checkout page
    • \n
    • Fixed: EA Advanced Data Table | Data sorting icons’ colors don’t change while using table as a template
    • \n
    • Fixed: EA Simple Menu | Menu item doesn’t activate when scrolling the page
    • \n
    • Fixed: EA Advanced Data Table | Clearing the search values, all table contents appear when the rows per page is left blank
    • \n
    • Fixed: EA Woo Product Carousel | ‘Add to Cart’ button disappears from default shop page if EA Woo Carousel widget is present on the same page
    • \n
    • Improved: EA Event Calendar | Date format change option for week view
    • \n
    • Improved: EA Advanced Accordion | Stop auto-scrolling while anchoring tab
    • \n
    • Improved: EA Login Register Form | File max size description
    • \n
    • Improved: EA Facebook Feed | Graph API Upgrade
    • \n
    • Few minor bug fixes & improvements
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    Enhance Elementor page building experience with 100+ creative elements and extensions. Add powers to your website builder using our easy-to-use Elementor widgets and ready Elementor templates, which were designed to make your next WordPress website design easier and prettier than ever before.

    \n

    Essential Addons for Elementor offers 110+ advanced Elementor widgets with kits, 6,000+ ready templates & WooCommerce builder, serving 2 million+ active users.

    \n

    Check the Demos

    \n

    Completely Customizable

    \n

    Each widget and extension comes with a bunch of options to customize your website in every possible way. You can achieve nearly any design of your imagination.

    \n

    Light Weight & Instant Loading

    \n

    No extra resources or messy code to slow down your website. Optimized for super fast loading and instant Live editing.

    \n

    Elements Control option

    \n

    Enable and disable individual elements adding to make your page load faster and smoother. You can deactivate unnecessary widgets to keep the site light.

    \n

    6000+ Ready WordPress Templates & Blocks through Templately

    \n

    Grab access to 3,000+ pre-made Elementor templates from Templately (a large templates cloud for WordPress), that come with Essential Addons.Unlock stunning Elementor templates, blocks & sections;and design your website to stand out from the crowd.

    \n

    \n

    Each of these Elementor templates is completely customizable and responsive, and also seamlessly compatible with Essential Addons. You can personalize them effortlessly by changing font, color, etc.

    \n

    Templately also offers advanced features and facilities to save your templates to the cloud. Store all your ready and customized designs with Templately & deploy on hundreds of websites with 1-click. Increase productivity and power up your whole team to build websites faster than ever before.

    \n

    Ready Elementor Templates From Templately:

    \n\n

    Expert Support

    \n

    We have an extraordinary support team ready to help you. Ask your questions in the support forum, or contact us directly through live chat and contact form.

    \n

    Elementor Website Builder is required for this plugin.

    \n

    60+ FREE ELEMENTOR ADDONS AND COUNTING

    \n

    We have designed more than 60 useful widgets to enhance your Elementor Page Building experience and allow you to climb the peak of your design capabilities.

    \n
      \n
    1. Post Grid – Showcase your blog posts in 3 unique styles
    2. \n
    3. Post Timeline – Create stunning timeline for your posts & pages
    4. \n
    5. Fancy Text – Design pages using animated texts in 8 different styles
    6. \n
    7. Creative Buttons – Quickly add modern buttons with hover effects
    8. \n
    9. Countdown – Include a countdown timer to boost click-through rates
    10. \n
    11. Team Members – Feature your team members with a few clicks
    12. \n
    13. Testimonials – Showcase customer reviews & increase credibility
    14. \n
    15. WooCommerce Product Grid – Display WooCommerce products in grid layout
    16. \n
    17. Contact Form 7 – Customize beautiful forms without any coding
    18. \n
    19. Gravity Forms – Design forms with Elementor & Gravity Forms
    20. \n
    21. Ninja Forms – Easily create your form style just the way you want
    22. \n
    23. Caldera Forms – Design effective mobile-friendly forms
    24. \n
    25. WPForms – Create powerful WordPress forms in minutes
    26. \n
    27. weForms – Get an incredibly fast form building experience
    28. \n
    29. Info Box – Design beautiful info box from predefined styles
    30. \n
    31. Flip Box – Use animated Flip Boxes to highlight any content
    32. \n
    33. Dual Color Heading – Highlight your headings with dual colors
    34. \n
    35. Call to Action – Design call-to-action buttons with a few clicks
    36. \n
    37. Pricing Table – Create Pricing Tables within minutes that convert
    38. \n
    39. Twitter Feed – Showcase your latest tweets to your visitors
    40. \n
    41. Data Table – Insert attractive data table anywhere you want
    42. \n
    43. Filterable Gallery – Share images with an interactive gallery
    44. \n
    45. Image Accordion – Highlight your images with amazing hover effects
    46. \n
    47. Content Ticker – Use slider & ticker effects to display your content
    48. \n
    49. Tooltip – Set tooltip for Icon, Image, Text or shortcodes
    50. \n
    51. Advanced Tabs – Display information neatly in nested tabs
    52. \n
    53. Advanced Accordion – Add beautiful nested accordions anywhere
    54. \n
    55. Progress Bar – Display progress bars with 4+ different styles
    56. \n
    57. Feature List – Display feature lists with custom icons and styles
    58. \n
    59. Fluent Forms – Design your Fluent Forms container, fields and anything you want
    60. \n
    61. Facebook Feed – Display Facebook post feed from your page
    62. \n
    63. Sticky Video – Add videos that are sticky on scroll while playing
    64. \n
    65. BetterDocs Category Grid – Create documentation in grid layout
    66. \n
    67. BetterDocs Category Box – Create documentation in box layout
    68. \n
    69. BetterDocs Search Form – Add a live search box for documentation
    70. \n
    71. Advanced Data Table – Design large data tables without coding
    72. \n
    73. Event Calendar – Create customized event pages
    74. \n
    75. Formstack – Design your Formstack forms
    76. \n
    77. Woo Checkout – Build attractive WooCommerce Checkout pages
      \nyoutube
    78. \n
    79. Typeform – Embed & design your Typeform forms
    80. \n
    81. Login | Register Form – Create amazing login/registration forms
    82. \n
    83. Woo Product Compare – Design stunning product compare tables
    84. \n
    85. Woo Product Carousel – Add Product Carousels for WooCommerce
    86. \n
    87. Simple Menu– Design minimalist navigation menus
    88. \n
    89. Woo Product Gallery– Show your products in a filterable gallery
    90. \n
    91. Woo Cart– Use WooCommerce Cart page to boost online sales
    92. \n
    93. Interactive Circle– Display content with engaging circular layouts
    94. \n
    95. NFT Gallery– Add and showcase NFT collections effortlessly
    96. \n
    97. Business Reviews– Display Google Customer Review to increase your online reputation
    98. \n
    99. SVG Draw– Display SVG elements in a visually striking and interactive way on your website
    100. \n
    101. Woo Product List– Showcase your store’s products with a stunning listicle format
    102. \n
    103. Woo Product Price– Style your product price with custom colors and typography
    104. \n
    105. Woo Product Rating– Show ratings to help customers make informed choices
    106. \n
    107. Woo Product Images– Display WooCommerce product images with stunning effects
    108. \n
    109. Woo Add to Cart– Make shopping easier with an ‘Add to Cart’ button
    110. \n
    111. Breadcrumbs– Improve navigation with breadcrumbs for easy exploration
    112. \n
    113. Code Snippet– Display beautifully formatted code on your Elementor website
    114. \n
    \n

    Extensions (Free):

    \n
      \n
    1. Reading Progress Bar – Add progress bar to show reading position
      \nWatch YouTube Tutorial
    2. \n
    3. Duplicator – Duplicate any page or post in a single click
    4. \n
    5. Table of Contents – Display Table of Contents anywhere you want
      \nWatch YouTube Tutorial
    6. \n
    7. Custom JS – Add custom JavaScript with a few clicks
    8. \n
    9. Scroll to Top – Let visitors quickly navigate to the top of your page
    10. \n
    11. Wrapper Link – Add custom links into any section, column, or even flexbox
    12. \n
    13. Hover Interactions – Create captivating effects on buttons, images, texts and more
    14. \n
    15. Liquid Glass Effects – Give your website a sleek, futuristic feel with stunning glass effects
    16. \n
    \n

    More elements (50+) on Premium Version

    \n
      \n
    1. Post Block – Display your blog posts with a variety of styles
    2. \n
    3. Lightbox & Modal – Create interactive popups after trigger actions
    4. \n
    5. Testimonial Slider – Share customer reviews with animated sliders
    6. \n
    7. Image Comparison – Let your viewers compare between two images
    8. \n
    9. Interactive Promo – Display content with attractive animations
    10. \n
    11. Instagram Feed – Display Instagram posts beautifully
    12. \n
    13. Advanced Google Map – Create maps with unlimited themes
      \nWatch YouTube Tutorial
    14. \n
    15. Static Product – Present your static product just the way you want
    16. \n
    17. Flip Carousel – Feature your content using a unique carousel style
    18. \n
    19. Interactive Cards – Create fascinating effects for your content
    20. \n
    21. Content Timeline – Create memory lane with animated scrolling
    22. \n
    23. Advanced Menu – Use advanced navigation menu anywhere
    24. \n
    25. Twitter Feed Carousel – Share Twitter posts in interactive styles
    26. \n
    27. Dynamic Gallery – Add filterable gallery for any content
    28. \n
    29. Smart Post List – Design your blog page with modern post list
    30. \n
    31. Mailchimp – Design your Mailchimp form with ease
    32. \n
    33. Toggle – Share any content in less space with a toggle
    34. \n
    35. One Page Navigation – Create one page websites in Elementor
    36. \n
    37. Price Menu – Make a beautiful pricing menu for your brands
    38. \n
    39. Image Hotspots – Add hotspot icons with tooltips in an image
    40. \n
    41. Divider – Separate your section with fancy divider
    42. \n
    43. Counter – Highlight important data using the Counter element
    44. \n
    45. Team Member Carousel – Display team members in a carousel
    46. \n
    47. Post Carousel – Use a carousel to display multiple posts
    48. \n
    49. Logo Carousel – Highlight brands or product logos in a carousel
    50. \n
    51. Protected Content – Lock your content with password protection
    52. \n
    53. Offcanvas – Display content in offcanvas with one click
    54. \n
    55. Image Scroller – Show long height images with image scroller
    56. \n
    57. Woo Product Slider – Showcase your products in a stunning slider
    58. \n
    59. Woo Product Collections– Show product collections beautifully
    60. \n
    61. LearnDash Course List– Share LearnDash course list on website
    62. \n
    63. Advanced Search– Add a customizable, dynamic search bar
    64. \n
    65. Woo Thank You– Design a personalized thank you message on the WooCommerce order confirmation page
    66. \n
    67. Woo Cross Sells– Customize the display of cross-sell products to boost your sales potential
    68. \n
    69. Woo Account Dashboard– Design a personalized WooCommerce Customer Account Dashboard
    70. \n
    71. Fancy Chart– Visualize important data with interactive charts and graphs on your website
    72. \n
    73. Stacked Cards– Showcase your website content in a distinctive and engaging way
    74. \n
    75. 360 Degree Photo Viewer– Make your website image visible from every angle with adjustable controls
    76. \n
    77. Multicolumn Pricing Table– Display pricing plans in multiple columns to compare features and choose the right option
    78. \n
    79. Figma to Elementor Converter– Turn Figma designs into fully customizable Elementor Pages
    80. \n
    \n

    Extensions (Pro):

    \n
      \n
    1. Parallax – Add creative parallax effects to your content
    2. \n
    3. Particles – Add animated particle effects to your content
    4. \n
    5. Advanced Tooltip – Make any widget more informative with tooltip
    6. \n
    7. Content Protection – Hide your content with password protection
    8. \n
    9. Conditional Display– Display your preferred content based on the logic conditions you have set
    10. \n
    11. Dynamic Tags– Display content dynamically on your preferred section of the website
    12. \n
    13. Interactive animations– Create stunning animations & build a fully dynamic web page
    14. \n
    15. Custom Cursor– Transform the default mouse pointer into a fully personalized design
    16. \n
    \n

    More features and improvements are coming on regular updates. Want to unlock the advanced elements? Upgrade to our Pro version

    \n

    Elementor WooCommerce Widgets From Essential Addons

    \n

    With Essential Addons, we bring you seamless compatibility with WooCommerce, enhancing your ability to showcase products, categories, and filters with ease. There are 11+ beautiful WooCommerce widgets for your every need:

    \n

    EA Woo Product Carousel: Display your store’s products interactively with this WooCommerce widget and implement various styling options and ready-made layouts to create an interactive product showcase on your WordPress website.

    \n

    EA Woo Product Gallery: Captivate visitors and drive immediate purchases on your WooCommerce store using the Product Gallery element from Essential Addons. Explore incredible ready layouts, abundant customization choices, and more.

    \n

    EA Woo Product Price: Highlight the price of your WooCommerce product Price and style it using custom colors and typography.

    \n

    EA Woo Product Rating: Display WooCommerce product rating to help customers make informed purchasing decisions and increase credibility.

    \n

    EA Woo Product Images: Showcase eye-catching WooCommerce product images with advanced customization and effects.

    \n

    EA Woo Add to Cart: Simplify the shopping experience by displaying an easy-to-access ‘Add to Cart’ button for all your WooCommerce products.

    \n

    EA Woo Product Slider (PRO): Present your WooCommerce products in a stunning slider format with this advanced Elementor addon. You can also easily customize the entire slider appearance with fantastic pre-designed layouts, effects, and other advanced options.

    \n

    EA Woo Product Collection (PRO): Exhibit your WooCommerce product collections on any section of your Elementor website to showcase items based on categories, tags, or attributes, and add engaging hover effects.

    \n

    \n

    EA Woo Product List: Easily add all your WooCommerce products in a listicle format on any Elementor page or post on your website and customize with unique layouts to attract customers instantly.

    \n

    EA Woo Product Grid: Display your products in visually appealing grid-layouts on any website section and allow customers to view them based on category, tags, or attributes.

    \n

    EA Woo Product Compare: Easily compare your preferred WooCommerce products anywhere on the page with this free Elementor addon. Benefit from numerous pre-designed theme layouts and much more.

    \n

    EA Woo Cross Sells:: Effortlessly show related items to your customers with this premium Elementor widget, aiding them in discovering complementary products and enriching their overall shopping experience.

    \n

    \n

    EA Woo Cart: Elevate customers’ purchasing experience on your WooCommerce store by effortlessly designing an appealing Cart Page with Essential Addons using no coding.

    \n

    EA Woo Checkout: Craft visually appealing Checkout pages for your WooCommerce store to customize and style the widget effortlessly to ensure increased sales.

    \n

    EA Woo Account Dashboard (PRO): Create a user-friendly and visually appealing dashboard for your WooCommerce store, consolidating all vital tabs into one convenient location.

    \n

    \n

    EA Woo Thank You (PRO):Resonate with customers and ensure a positive post-purchase experience with this advanced Elementor WooCommerce widget from Essential Addons. It lets you create tailor-made thank-you messages with limitless personalization.

    \n

    🏆 FEATURED BY 100+ RENOWNED PUBLICATIONS

    \n

    WP Mayor: “If you use Elementor, Essential Addons is a great way to expand your library of available widgets without slowing your site down.”
    \nWP Pagebuilders: “With 60+ additional widgets, Essential Addons is a great add-on to enhance your experience in building a website with WordPress+Elementor.”
    \nMonsterPost: “Essential Addons for Elementor has a huge number of active users among all third-party extensions on the market. The widgets are tested in all popular web browsers to ensure full browser compatibility for all elements.”
    \nWPCrafter: WordPress influencer Adam Preiser did a Speed Test & found Essential Addons for Elementor is the high-performance solution out there 👇

    \n

    \n

    BACKED BY A TRUSTED TEAM

    \n

    Essential Addons is brought to you by WPDeveloper, a dedicated WordPress product company, trusted by 6 million+ happy users.

    \n

    Documentation and Support

    \n
      \n
    • For documentation and tutorials go to our Documentation.
    • \n
    • If you have any more questions, visit our support on the Plugin’s Forum.
    • \n
    • For more information about features, FAQs and documentation, check out our website at Essential Addons.
    • \n
    \n

    Happy User of Essential Addons?

    \n\n

    🔥 WHAT’S NEXT

    \n

    If you like Essential Addons, then consider checking out our other WordPress Plugins:

    \n

    🔔 NotificationX – Powerful Social Proof & FOMO Marketing Solution to boost conversions & design stunning WordPress notification bars in Elementor

    \n

    🗒️ BetterDocs – Advanced Documentation & Knowledge Base Plugin for WordPress, which also comes with ready doc templates for Elementor

    \n

    SchedulePress – Complete solution for managing WordPress content scheduling through an editorial calendar & Social Share

    \n

    🔗 EmbedPress – Easy WordPress solution for embedding videos, images, posts, audio, maps and PDF, DOC, PPT & all other types of content into your website using Elementor, Gutenberg and more.

    \n

    🔎 easy.jobs – Smart and easy recruitment and talent sourcing solution for hiring with AI-powered screening system, question sets, remote interviews, and designing branded career pages with Elementor.

    \n", "screenshots": "
    1. \"Overview

      Overview of few widgets

    2. \"Elements

      Elements control panel

    3. \"Introducing

      Introducing EA 5.0

    4. \"Advanced

      Advanced Google Map Widget

    5. \"Advanced

      Advanced Tooltip Extension

    6. \"Advanced

      Advanced Tabs Widget

    7. \"Fancy

      Fancy Text Widget

    8. \"Filterable

      Filterable Gallery Widget

    9. \"Feature

      Feature List Widget

    10. \"Image

      Image Hotspots Widget

    11. \"Woo

      Woo Product Grid Widget

    12. \"Team

      Team Member Carousel Widget

    13. \"Smart

      Smart Post List Widget

    14. \"One

      One Page Navigation Widget

    15. \"Protected

      Protected Content Widget

    16. \"Flip

      Flip Box Widget

    17. \"Creative

      Creative Buttons Widget

    ", "installation": "

    Note : This plugin works with Elementor. Make sure you have Elementor installed.

    \n
      \n
    1. Upload the plugin folder to the /wp-content/plugins/ directory, or install the plugin through the WordPress plugins screen directly.
    2. \n
    3. Activate the plugin through the ‘Plugins’ screen in WordPress
    4. \n
    5. You can type “EA” on your element tabs within Elementor editor and all the available elements will appear.
    6. \n
    7. Also you can see them under the category “Essential Addons for Elementor” on your element/widget list.
    8. \n
    \n"}, "versions": {"2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.1.zip", "1.0.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.1.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.2.5.zip", "2.3.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.4.3.zip", "2.5.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.5.0.zip", "2.6.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.6.0.zip", "2.7.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.8.zip", "2.7.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.9.zip", "2.8.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.8.7.zip", "2.9.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.6.zip", "2.9.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.9.9.zip", "3.0.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.0.5.zip", "3.1.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.5.zip", "3.2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.2.0.zip", "3.3.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.3.3.zip", "3.4.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.4.0.zip", "3.5.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.5.2.zip", "3.6.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.6.2.zip", "3.7.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.7.2.zip", "3.8.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.8.5.zip", "3.9.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.9.4.zip", "4.0.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.4.zip", "4.1.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.1.2.zip", "4.2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.2.4.zip", "4.3.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.4.zip", "4.3.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.5.zip", "4.3.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.6.zip", "4.3.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.7.zip", "4.3.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.8.zip", "4.3.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.3.9.zip", "4.4.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.4.1.zip", "4.5.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.5.5.zip", "4.6.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.1.zip", "4.6.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.2.zip", "4.6.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.3.zip", "4.6.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.4.zip", "4.6.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.5.zip", "4.6.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.6.zip", "4.7.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.4.zip", "4.7.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.7.5.zip", "4.8.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.8.3.zip", "4.8.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.8.4.zip", "4.9.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.2.zip", "4.9.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.3.zip", "4.9.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.4.zip", "4.9.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.5.zip", "4.9.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.6.zip", "4.9.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.9.7.zip", "5.0.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.8.zip", "5.0.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.9.zip", "5.1.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.6.zip", "5.1.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.7.zip", "5.1.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.8.zip", "5.1.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.9.zip", "5.2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.2.4.zip", "5.3.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.3.2.zip", "5.4.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.4.6.zip", "5.5.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.5.5.zip", "5.6.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.6.5.zip", "5.7.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.7.2.zip", "5.7.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.7.3.zip", "5.7.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.7.4.zip", "5.8.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.2.zip", "5.8.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.3.zip", "5.8.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.4.zip", "5.8.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.5.zip", "5.8.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.6.zip", "5.8.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.7.zip", "5.8.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.8.zip", "5.8.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.9.zip", "5.9.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.2.zip", "5.9.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.3.zip", "5.9.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.4.zip", "5.9.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.5.zip", "5.9.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.6.zip", "5.9.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.7.zip", "5.9.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.8.zip", "5.9.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.9.zip", "6.0.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.8.zip", "6.0.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.9.zip", "6.1.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.5.zip", "6.1.6": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.6.zip", "6.1.7": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.7.zip", "6.1.8": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.8.zip", "6.1.9": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.9.zip", "6.2.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.2.4.zip", "6.3.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.3.zip", "trunk": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.zip", "2.10.0": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.0.zip", "2.10.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.1.zip", "2.10.2": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.2.zip", "2.10.3": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.3.zip", "2.10.4": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.4.zip", "2.10.5": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.10.5.zip", "2.7.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.10.zip", "2.7.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.2.7.11.zip", "5.0.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.10.zip", "5.0.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.11.zip", "5.0.12": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.12.zip", "5.0.13": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.0.13.zip", "5.8.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.10.zip", "5.8.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.11.zip", "5.8.12": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.12.zip", "5.8.13": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.13.zip", "5.8.14": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.14.zip", "5.8.15": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.15.zip", "5.8.16": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.16.zip", "5.8.18": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.8.18.zip", "5.9.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.10.zip", "5.9.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.11.zip", "5.9.12": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.12.zip", "5.9.13": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.13.zip", "5.9.14": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.14.zip", "5.9.15": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.15.zip", "5.9.16": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.16.zip", "5.9.17": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.17.zip", "5.9.18": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.18.zip", "5.9.19": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.19.zip", "5.9.20": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.20.zip", "5.9.21": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.21.zip", "5.9.22": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.22.zip", "5.9.23": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.23.zip", "5.9.24": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.24.zip", "5.9.25": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.25.zip", "5.9.26": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.26.zip", "5.9.27": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.27.zip", "6.0.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.10.zip", "6.0.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.11.zip", "6.0.12": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.12.zip", "6.0.13": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.13.zip", "6.0.14": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.14.zip", "6.0.15": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.15.zip", "6.1.10": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.10.zip", "6.1.11": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.11.zip", "6.1.12": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.12.zip", "6.1.13": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.13.zip", "6.1.14": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.14.zip", "6.1.15": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.15.zip", "6.1.17": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.17.zip", "6.1.18": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.18.zip", "6.1.19": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.19.zip", "6.1.20": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.20.zip", "3.1.4.1": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.3.1.4.1.zip"}, "downloaded": 110487233, "description": "

    Enhance Elementor page building experience with 100+ creative elements and extensions. Add powers to your website builder using our easy-to-use Elementor widgets and ready Elementor templates, which were designed to make your next WordPress website design easier and prettier than ever before.

    \n

    Essential Addons for Elementor offers 110+ advanced Elementor widgets with kits, 6,000+ ready templates & WooCommerce builder, serving 2 million+ active users.

    \n

    Check the Demos

    \n

    Completely Customizable

    \n

    Each widget and extension comes with a bunch of options to customize your website in every possible way. You can achieve nearly any design of your imagination.

    \n

    Light Weight & Instant Loading

    \n

    No extra resources or messy code to slow down your website. Optimized for super fast loading and instant Live editing.

    \n

    Elements Control option

    \n

    Enable and disable individual elements adding to make your page load faster and smoother. You can deactivate unnecessary widgets to keep the site light.

    \n

    6000+ Ready WordPress Templates & Blocks through Templately

    \n

    Grab access to 3,000+ pre-made Elementor templates from Templately (a large templates cloud for WordPress), that come with Essential Addons.Unlock stunning Elementor templates, blocks & sections;and design your website to stand out from the crowd.

    \n

    \n

    Each of these Elementor templates is completely customizable and responsive, and also seamlessly compatible with Essential Addons. You can personalize them effortlessly by changing font, color, etc.

    \n

    Templately also offers advanced features and facilities to save your templates to the cloud. Store all your ready and customized designs with Templately & deploy on hundreds of websites with 1-click. Increase productivity and power up your whole team to build websites faster than ever before.

    \n

    Ready Elementor Templates From Templately:

    \n\n

    Expert Support

    \n

    We have an extraordinary support team ready to help you. Ask your questions in the support forum, or contact us directly through live chat and contact form.

    \n

    Elementor Website Builder is required for this plugin.

    \n

    60+ FREE ELEMENTOR ADDONS AND COUNTING

    \n

    We have designed more than 60 useful widgets to enhance your Elementor Page Building experience and allow you to climb the peak of your design capabilities.

    \n
      \n
    1. Post Grid – Showcase your blog posts in 3 unique styles
    2. \n
    3. Post Timeline – Create stunning timeline for your posts & pages
    4. \n
    5. Fancy Text – Design pages using animated texts in 8 different styles
    6. \n
    7. Creative Buttons – Quickly add modern buttons with hover effects
    8. \n
    9. Countdown – Include a countdown timer to boost click-through rates
    10. \n
    11. Team Members – Feature your team members with a few clicks
    12. \n
    13. Testimonials – Showcase customer reviews & increase credibility
    14. \n
    15. WooCommerce Product Grid – Display WooCommerce products in grid layout
    16. \n
    17. Contact Form 7 – Customize beautiful forms without any coding
    18. \n
    19. Gravity Forms – Design forms with Elementor & Gravity Forms
    20. \n
    21. Ninja Forms – Easily create your form style just the way you want
    22. \n
    23. Caldera Forms – Design effective mobile-friendly forms
    24. \n
    25. WPForms – Create powerful WordPress forms in minutes
    26. \n
    27. weForms – Get an incredibly fast form building experience
    28. \n
    29. Info Box – Design beautiful info box from predefined styles
    30. \n
    31. Flip Box – Use animated Flip Boxes to highlight any content
    32. \n
    33. Dual Color Heading – Highlight your headings with dual colors
    34. \n
    35. Call to Action – Design call-to-action buttons with a few clicks
    36. \n
    37. Pricing Table – Create Pricing Tables within minutes that convert
    38. \n
    39. Twitter Feed – Showcase your latest tweets to your visitors
    40. \n
    41. Data Table – Insert attractive data table anywhere you want
    42. \n
    43. Filterable Gallery – Share images with an interactive gallery
    44. \n
    45. Image Accordion – Highlight your images with amazing hover effects
    46. \n
    47. Content Ticker – Use slider & ticker effects to display your content
    48. \n
    49. Tooltip – Set tooltip for Icon, Image, Text or shortcodes
    50. \n
    51. Advanced Tabs – Display information neatly in nested tabs
    52. \n
    53. Advanced Accordion – Add beautiful nested accordions anywhere
    54. \n
    55. Progress Bar – Display progress bars with 4+ different styles
    56. \n
    57. Feature List – Display feature lists with custom icons and styles
    58. \n
    59. Fluent Forms – Design your Fluent Forms container, fields and anything you want
    60. \n
    61. Facebook Feed – Display Facebook post feed from your page
    62. \n
    63. Sticky Video – Add videos that are sticky on scroll while playing
    64. \n
    65. BetterDocs Category Grid – Create documentation in grid layout
    66. \n
    67. BetterDocs Category Box – Create documentation in box layout
    68. \n
    69. BetterDocs Search Form – Add a live search box for documentation
    70. \n
    71. Advanced Data Table – Design large data tables without coding
    72. \n
    73. Event Calendar – Create customized event pages
    74. \n
    75. Formstack – Design your Formstack forms
    76. \n
    77. Woo Checkout – Build attractive WooCommerce Checkout pages
      \nyoutube
    78. \n
    79. Typeform – Embed & design your Typeform forms
    80. \n
    81. Login | Register Form – Create amazing login/registration forms
    82. \n
    83. Woo Product Compare – Design stunning product compare tables
    84. \n
    85. Woo Product Carousel – Add Product Carousels for WooCommerce
    86. \n
    87. Simple Menu– Design minimalist navigation menus
    88. \n
    89. Woo Product Gallery– Show your products in a filterable gallery
    90. \n
    91. Woo Cart– Use WooCommerce Cart page to boost online sales
    92. \n
    93. Interactive Circle– Display content with engaging circular layouts
    94. \n
    95. NFT Gallery– Add and showcase NFT collections effortlessly
    96. \n
    97. Business Reviews– Display Google Customer Review to increase your online reputation
    98. \n
    99. SVG Draw– Display SVG elements in a visually striking and interactive way on your website
    100. \n
    101. Woo Product List– Showcase your store’s products with a stunning listicle format
    102. \n
    103. Woo Product Price– Style your product price with custom colors and typography
    104. \n
    105. Woo Product Rating– Show ratings to help customers make informed choices
    106. \n
    107. Woo Product Images– Display WooCommerce product images with stunning effects
    108. \n
    109. Woo Add to Cart– Make shopping easier with an ‘Add to Cart’ button
    110. \n
    111. Breadcrumbs– Improve navigation with breadcrumbs for easy exploration
    112. \n
    113. Code Snippet– Display beautifully formatted code on your Elementor website
    114. \n
    \n

    Extensions (Free):

    \n
      \n
    1. Reading Progress Bar – Add progress bar to show reading position
      \nWatch YouTube Tutorial
    2. \n
    3. Duplicator – Duplicate any page or post in a single click
    4. \n
    5. Table of Contents – Display Table of Contents anywhere you want
      \nWatch YouTube Tutorial
    6. \n
    7. Custom JS – Add custom JavaScript with a few clicks
    8. \n
    9. Scroll to Top – Let visitors quickly navigate to the top of your page
    10. \n
    11. Wrapper Link – Add custom links into any section, column, or even flexbox
    12. \n
    13. Hover Interactions – Create captivating effects on buttons, images, texts and more
    14. \n
    15. Liquid Glass Effects – Give your website a sleek, futuristic feel with stunning glass effects
    16. \n
    \n

    More elements (50+) on Premium Version

    \n
      \n
    1. Post Block – Display your blog posts with a variety of styles
    2. \n
    3. Lightbox & Modal – Create interactive popups after trigger actions
    4. \n
    5. Testimonial Slider – Share customer reviews with animated sliders
    6. \n
    7. Image Comparison – Let your viewers compare between two images
    8. \n
    9. Interactive Promo – Display content with attractive animations
    10. \n
    11. Instagram Feed – Display Instagram posts beautifully
    12. \n
    13. Advanced Google Map – Create maps with unlimited themes
      \nWatch YouTube Tutorial
    14. \n
    15. Static Product – Present your static product just the way you want
    16. \n
    17. Flip Carousel – Feature your content using a unique carousel style
    18. \n
    19. Interactive Cards – Create fascinating effects for your content
    20. \n
    21. Content Timeline – Create memory lane with animated scrolling
    22. \n
    23. Advanced Menu – Use advanced navigation menu anywhere
    24. \n
    25. Twitter Feed Carousel – Share Twitter posts in interactive styles
    26. \n
    27. Dynamic Gallery – Add filterable gallery for any content
    28. \n
    29. Smart Post List – Design your blog page with modern post list
    30. \n
    31. Mailchimp – Design your Mailchimp form with ease
    32. \n
    33. Toggle – Share any content in less space with a toggle
    34. \n
    35. One Page Navigation – Create one page websites in Elementor
    36. \n
    37. Price Menu – Make a beautiful pricing menu for your brands
    38. \n
    39. Image Hotspots – Add hotspot icons with tooltips in an image
    40. \n
    41. Divider – Separate your section with fancy divider
    42. \n
    43. Counter – Highlight important data using the Counter element
    44. \n
    45. Team Member Carousel – Display team members in a carousel
    46. \n
    47. Post Carousel – Use a carousel to display multiple posts
    48. \n
    49. Logo Carousel – Highlight brands or product logos in a carousel
    50. \n
    51. Protected Content – Lock your content with password protection
    52. \n
    53. Offcanvas – Display content in offcanvas with one click
    54. \n
    55. Image Scroller – Show long height images with image scroller
    56. \n
    57. Woo Product Slider – Showcase your products in a stunning slider
    58. \n
    59. Woo Product Collections– Show product collections beautifully
    60. \n
    61. LearnDash Course List– Share LearnDash course list on website
    62. \n
    63. Advanced Search– Add a customizable, dynamic search bar
    64. \n
    65. Woo Thank You– Design a personalized thank you message on the WooCommerce order confirmation page
    66. \n
    67. Woo Cross Sells– Customize the display of cross-sell products to boost your sales potential
    68. \n
    69. Woo Account Dashboard– Design a personalized WooCommerce Customer Account Dashboard
    70. \n
    71. Fancy Chart– Visualize important data with interactive charts and graphs on your website
    72. \n
    73. Stacked Cards– Showcase your website content in a distinctive and engaging way
    74. \n
    75. 360 Degree Photo Viewer– Make your website image visible from every angle with adjustable controls
    76. \n
    77. Multicolumn Pricing Table– Display pricing plans in multiple columns to compare features and choose the right option
    78. \n
    79. Figma to Elementor Converter– Turn Figma designs into fully customizable Elementor Pages
    80. \n
    \n

    Extensions (Pro):

    \n
      \n
    1. Parallax – Add creative parallax effects to your content
    2. \n
    3. Particles – Add animated particle effects to your content
    4. \n
    5. Advanced Tooltip – Make any widget more informative with tooltip
    6. \n
    7. Content Protection – Hide your content with password protection
    8. \n
    9. Conditional Display– Display your preferred content based on the logic conditions you have set
    10. \n
    11. Dynamic Tags– Display content dynamically on your preferred section of the website
    12. \n
    13. Interactive animations– Create stunning animations & build a fully dynamic web page
    14. \n
    15. Custom Cursor– Transform the default mouse pointer into a fully personalized design
    16. \n
    \n

    More features and improvements are coming on regular updates. Want to unlock the advanced elements? Upgrade to our Pro version

    \n

    Elementor WooCommerce Widgets From Essential Addons

    \n

    With Essential Addons, we bring you seamless compatibility with WooCommerce, enhancing your ability to showcase products, categories, and filters with ease. There are 11+ beautiful WooCommerce widgets for your every need:

    \n

    EA Woo Product Carousel: Display your store’s products interactively with this WooCommerce widget and implement various styling options and ready-made layouts to create an interactive product showcase on your WordPress website.

    \n

    EA Woo Product Gallery: Captivate visitors and drive immediate purchases on your WooCommerce store using the Product Gallery element from Essential Addons. Explore incredible ready layouts, abundant customization choices, and more.

    \n

    EA Woo Product Price: Highlight the price of your WooCommerce product Price and style it using custom colors and typography.

    \n

    EA Woo Product Rating: Display WooCommerce product rating to help customers make informed purchasing decisions and increase credibility.

    \n

    EA Woo Product Images: Showcase eye-catching WooCommerce product images with advanced customization and effects.

    \n

    EA Woo Add to Cart: Simplify the shopping experience by displaying an easy-to-access ‘Add to Cart’ button for all your WooCommerce products.

    \n

    EA Woo Product Slider (PRO): Present your WooCommerce products in a stunning slider format with this advanced Elementor addon. You can also easily customize the entire slider appearance with fantastic pre-designed layouts, effects, and other advanced options.

    \n

    EA Woo Product Collection (PRO): Exhibit your WooCommerce product collections on any section of your Elementor website to showcase items based on categories, tags, or attributes, and add engaging hover effects.

    \n

    \n

    EA Woo Product List: Easily add all your WooCommerce products in a listicle format on any Elementor page or post on your website and customize with unique layouts to attract customers instantly.

    \n

    EA Woo Product Grid: Display your products in visually appealing grid-layouts on any website section and allow customers to view them based on category, tags, or attributes.

    \n

    EA Woo Product Compare: Easily compare your preferred WooCommerce products anywhere on the page with this free Elementor addon. Benefit from numerous pre-designed theme layouts and much more.

    \n

    EA Woo Cross Sells:: Effortlessly show related items to your customers with this premium Elementor widget, aiding them in discovering complementary products and enriching their overall shopping experience.

    \n

    \n

    EA Woo Cart: Elevate customers’ purchasing experience on your WooCommerce store by effortlessly designing an appealing Cart Page with Essential Addons using no coding.

    \n

    EA Woo Checkout: Craft visually appealing Checkout pages for your WooCommerce store to customize and style the widget effortlessly to ensure increased sales.

    \n

    EA Woo Account Dashboard (PRO): Create a user-friendly and visually appealing dashboard for your WooCommerce store, consolidating all vital tabs into one convenient location.

    \n

    \n

    EA Woo Thank You (PRO):Resonate with customers and ensure a positive post-purchase experience with this advanced Elementor WooCommerce widget from Essential Addons. It lets you create tailor-made thank-you messages with limitless personalization.

    \n

    🏆 FEATURED BY 100+ RENOWNED PUBLICATIONS

    \n

    WP Mayor: “If you use Elementor, Essential Addons is a great way to expand your library of available widgets without slowing your site down.”
    \nWP Pagebuilders: “With 60+ additional widgets, Essential Addons is a great add-on to enhance your experience in building a website with WordPress+Elementor.”
    \nMonsterPost: “Essential Addons for Elementor has a huge number of active users among all third-party extensions on the market. The widgets are tested in all popular web browsers to ensure full browser compatibility for all elements.”
    \nWPCrafter: WordPress influencer Adam Preiser did a Speed Test & found Essential Addons for Elementor is the high-performance solution out there 👇

    \n

    \n

    BACKED BY A TRUSTED TEAM

    \n

    Essential Addons is brought to you by WPDeveloper, a dedicated WordPress product company, trusted by 6 million+ happy users.

    \n

    Documentation and Support

    \n
      \n
    • For documentation and tutorials go to our Documentation.
    • \n
    • If you have any more questions, visit our support on the Plugin’s Forum.
    • \n
    • For more information about features, FAQs and documentation, check out our website at Essential Addons.
    • \n
    \n

    Happy User of Essential Addons?

    \n\n

    🔥 WHAT’S NEXT

    \n

    If you like Essential Addons, then consider checking out our other WordPress Plugins:

    \n

    🔔 NotificationX – Powerful Social Proof & FOMO Marketing Solution to boost conversions & design stunning WordPress notification bars in Elementor

    \n

    🗒️ BetterDocs – Advanced Documentation & Knowledge Base Plugin for WordPress, which also comes with ready doc templates for Elementor

    \n

    SchedulePress – Complete solution for managing WordPress content scheduling through an editorial calendar & Social Share

    \n

    🔗 EmbedPress – Easy WordPress solution for embedding videos, images, posts, audio, maps and PDF, DOC, PPT & all other types of content into your website using Elementor, Gutenberg and more.

    \n

    🔎 easy.jobs – Smart and easy recruitment and talent sourcing solution for hiring with AI-powered screening system, question sets, remote interviews, and designing branded career pages with Elementor.

    \n", "donate_link": "", "num_ratings": 3953, "screenshots": {"1": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-1.png?rev=3133688", "caption": "Overview of few widgets"}, "2": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-2.gif?rev=3133688", "caption": "Elements control panel"}, "3": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-3.gif?rev=2771534", "caption": "Introducing EA 5.0"}, "4": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-4.png?rev=2598498", "caption": "Advanced Google Map Widget"}, "5": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-5.png?rev=2598498", "caption": "Advanced Tooltip Extension"}, "6": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-6.png?rev=2598498", "caption": "Advanced Tabs Widget"}, "7": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-7.gif?rev=3133688", "caption": "Fancy Text Widget"}, "8": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-8.png?rev=2598498", "caption": "Filterable Gallery Widget"}, "9": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-9.png?rev=2598498", "caption": "Feature List Widget"}, "10": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-10.gif?rev=3133688", "caption": "Image Hotspots Widget"}, "11": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-11.png?rev=2598498", "caption": "Woo Product Grid Widget"}, "12": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-12.png?rev=2598498", "caption": "Team Member Carousel Widget"}, "13": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-13.png?rev=2598498", "caption": "Smart Post List Widget"}, "14": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-14.gif?rev=3133688", "caption": "One Page Navigation Widget"}, "15": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-15.png?rev=2598498", "caption": "Protected Content Widget"}, "16": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-16.gif?rev=3133688", "caption": "Flip Box Widget"}, "17": {"src": "https://ps.w.org/essential-addons-for-elementor-lite/assets/screenshot-17.gif?rev=3133688", "caption": "Creative Buttons Widget"}}, "support_url": "https://wordpress.org/support/plugin/essential-addons-for-elementor-lite/", "contributors": {"nhrrob": {"avatar": "https://secure.gravatar.com/avatar/df1895ff781cb81a3a78b2d6cf070be0c125e1f9fc667644fc3706d1ba0fc5a4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nhrrob/", "display_name": "Nazmul Hasan Robin"}, "asif2bd": {"avatar": "https://secure.gravatar.com/avatar/751c37e897d7e5350a12329d48cb0a166c77f87fe00c47b9289e70417459fb92?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/asif2bd/", "display_name": "M Asif Rahman"}, "codetic": {"avatar": "https://secure.gravatar.com/avatar/abedf47ed327cf2445e9475f8fd558112778d81b2b44f7d0f39b85468ffecc01?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/codetic/", "display_name": "Codetic"}, "rudlinkon": {"avatar": "https://secure.gravatar.com/avatar/fb49a422d3d9363e0eab3001cd16d5d9f4f5d644aa8f32206a7ded9a5d803611?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rudlinkon/", "display_name": "Linkon Miyan"}, "wpdevteam": {"avatar": "https://secure.gravatar.com/avatar/78597fc6182399eaab6afcc3ac4324f4c4234266e2ec607a8770c57241301903?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpdevteam/", "display_name": "WPDeveloper"}, "himadree12": {"avatar": "https://secure.gravatar.com/avatar/e04d369c2031e715eb3b320a5628e40f39b24aa9a00beab79f71d0db11f1d5de?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/himadree12/", "display_name": "Himadree"}, "priyomukul": {"avatar": "https://secure.gravatar.com/avatar/fb8f3134e4dbbcb540ce412931c8fe4108927714d7e00cf34332dc48d8bf4389?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/priyomukul/", "display_name": "PriyoMukul"}, "jakariaistauk": {"avatar": "https://secure.gravatar.com/avatar/b58edec63e3af6d4f2528b35642e6c565ed9290a3f9875f2be5f1a455dd27b75?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jakariaistauk/", "display_name": "Jakaria Istauk"}, "re_enter_rupok": {"avatar": "https://secure.gravatar.com/avatar/a39cec9005b0dca1bdfd5c6f884f6da77d28f893d60274ca947586b638ab970f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/re_enter_rupok/", "display_name": "Rupok"}, "sumaiyasiddika": {"avatar": "https://secure.gravatar.com/avatar/7aab59fa87bcbd811cf375a18f9a892929fd6a6250d3162c45cd5c2c47b21927?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sumaiyasiddika/", "display_name": "Sumaiya Siddika"}}, "last_updated": "2025-10-08 6:11am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.3.3.zip", "author_profile": "https://profiles.wordpress.org/wpdevteam/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f4d9-7107-aee7-2134cc2aa10b", "name": "Essential Addons for Elementor – Popular Elementor Templates & Widgets", "slug": "essential-addons-for-elementor-lite", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1759903860, "version": "6.3.3"}, "support_threads": 23, "requires_plugins": [], "short_description": "Elementor addon offering 100+ widgets and templates — Elementor Gallery, Slider, Form, Post Grid, Menu, Accordion, WooCommerce & more.", "author_block_count": "21", "author_block_rating": 86.53061224489801, "commercial_support_url": "https://essential-addons.com/support/", "support_threads_resolved": 20}'); -INSERT INTO public.plugins VALUES ('019a30c1-6500-7197-af7c-ade78cbc1b02', 'ewww-image-optimizer', 'EWWW Image Optimizer', 'Smaller Images, Faster Sites, Happier Visitors. Comprehensive image optimization that doesn't require a degree in rocket science.', '

    Are you frustrated by a slow website? Do over-sized images make you say “ewww”… Let EWWW Image Optimizer help you make your site faster, improve your bounce rate, and boost your SEO. But most importantly, make your visitors happier so they keep coming back for more.

    -

    With EWWW IO you can optimize all your existing images, from any plugin, and then let EWWW IO take care of new image uploads automatically.

    -

    Why use EWWW Image Optimizer?

    -
      -
    1. No Speed Limits and unlimited file size.
    2. -
    3. Smooth Handling with pixel-perfect optimization using industry-leading tools and progressive rendering.
    4. -
    5. High Torque as we bring you the best compression/quality ratio available with our Premium compression for JPG, PNG, SVG, WebP, and PDF files.
    6. -
    7. Adaptive Steering with intelligent conversion options to get the right image format for the job (JPG, PNG, GIF, AVIF, or WebP).
    8. -
    9. Free Parking The core plugin is free and always will be. However, our paid services offer up to 80% compression, and a host of other features!
    10. -
    11. Comprehensive Coverage: no image gets left behind, optimize everything on your site, not just the WordPress Media Library.
    12. -
    13. Safety First: all communications are secured with top SSL encryption.
    14. -
    15. Roadside Assistance: top-notch support is in our DNA. While API customers get top priority, we answer every single support question with care.
    16. -
    17. Pack a Spare: free image backups store your original images for 30 days.
    18. -
    -

    EWWW IO is the only plugin that lets you optimize images using tools on your own server (jpegtran, optipng, pngout, pngquant, gifsicle, cwebp). If you feel the need for more speed, get more compression and offload the CPU-intensive process of optimization to our specialized servers.

    -

    Automatic Everything

    -

    With Easy IO, images are automatically compressed, scaled to fit the page and device size, lazy loaded, and converted to next-gen WebP and AVIF formats.

    -

    Support

    -

    Stuck? Feeling like maybe you DO need that rocket science degree? We provide free one-on-one email support to everyone.
    -Do you have an idea to make EWWW IO even better? Share it and vote on future features!

    -

    Found a bug? Report the issue on GitHub, and we’ll get it fixed!

    -

    You may report security issues through our Patchstack Vulnerability Disclosure Program. The Patchstack team helps validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    -

    Bulk Optimize

    -

    Optimize all your images from a single page. This includes the Media Library, your theme, and a handful of pre-configured folders (see Optimize Everything Else below). GRAND FlaGallery, NextCellent and NextGEN have their own Bulk Optimize pages.

    -

    Optimize Everything Else

    -

    Configure any folder within your WordPress install to be optimized. The Bulk Optimizer will compress theme images, BuddyPress avatars, BuddyPress Activity Plus images, Meta Slider slides, WP Symposium Pro avatars, GD bbPress attachments, Grand Media Galleries, and any user-specified folders. You can also use Scheduled optimization or run the optimizer from WP-CLI if that’s more your thing.

    -

    Plugin Compatibility

    -

    EWWW IO has been tested with hundreds (if not thousands) of plugins and themes, here are just a few of the most common ones: BuddyPress (Activity Plus add-on too), Cloudinary, Easy Watermark, FileBird, FooGallery, GD bbPress Attachments, GRAND FlAGallery, Gmedia Photo Gallery, MediaPress, Meta Slider, Microsoft Azure Storage, MyArcadePlugin, NextGEN Gallery, Regenerate Thumbnails, Weglot, WP Offload Media, WPML, WP Retina 2x, WP RSS Aggregator, WP Symposium. Read more…

    -

    WebP Images

    -

    If you want simple, get automatic WebP conversion with Easy IO, and be done with it! Otherwise, you can generate WebP versions of your images with the Bulk Optimizer, and deliver them to supported browsers. Take your pick between Apache-style rewrite rules, JS WebP Rewriting, and WebP Rewriting. EWWW IO even works with the WebP option in the Cache Enabler plugin from KeyCDN.

    -

    AVIF Images

    -

    AVIF conversion is built into the Easy IO CDN. Once your site is setup with Easy IO, edit the site settings to enable AVIF, and you’re done!

    -

    WP-CLI

    -

    Allows you to run all Bulk Optimization processes from your command line, instead of the web interface. It is much faster, and allows you to do things like run it in ‘screen’ or via regular cron (instead of wp-cron, which can be unpredictable on low-traffic sites). Install WP-CLI from wp-cli.org, and run ‘wp-cli.phar help ewwwio optimize’ for more information or see the Docs.

    -

    CDN Support

    -

    WP Offload Media is the officially supported (and recommended) plugin for uploads to Amazon S3, Digital Ocean Spaces, and Google Cloud Storage. Check our compatibility list for details on other plugins. All pull mode CDNs like Cloudflare, KeyCDN, MaxCDN, and Sucuri CloudProxy work automatically, but will require you to purge the cache after a bulk optimization.

    -

    Translations

    -

    Huge thanks to all our translators, see the full list!

    -

    If you would like to help translate this plugin, join the team.
    -Signup to receive updates when new strings are available for translation.

    -

    Credits

    -

    Written by Shane Bishop with special thanks to my Lord and Savior. Based upon CW Image Optimizer, which was written by Jacob Allred at Corban Works, LLC. CW Image Optimizer was based on WP Smush.it. Jpegtran is the work of the Independent JPEG Group. PEL is the work of Martin Geisler, Lars Olesen, and Erik Oskam. Easy IO and HTML parsing classes based upon the Photon module from Jetpack.

    -', '8.2.1', 'nosilver4u', '6.5', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.2.1.zip', '2012-06-07 00:00:00+00', '2025-08-27 17:48:00+00', 'https://profiles.wordpress.org/nosilver4u/', 96, 1802, 2, 1, 1000000, 43168420, 'https://wordpress.org/plugins/ewww-image-optimizer/', 'https://ewww.io/donate/', 'commercial', 'https://ewww.io/', 'https://wordpress.org/support/plugin/ewww-image-optimizer/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "EWWW Image Optimizer", "slug": "ewww-image-optimizer", "tags": {"webp": "webp", "resize": "resize", "convert": "convert", "compress": "compress", "lazy-load": "lazy load"}, "added": "2012-06-07", "icons": {"1x": "https://ps.w.org/ewww-image-optimizer/assets/icon-128x128.png?rev=1582276", "2x": "https://ps.w.org/ewww-image-optimizer/assets/icon-256x256.png?rev=1582276"}, "author": "nosilver4u", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/ewww-image-optimizer/assets/banner-772x250.jpg?rev=1582276", "high": "https://ps.w.org/ewww-image-optimizer/assets/banner-1544x500.jpg?rev=1582276"}, "ratings": {"1": 73, "2": 14, "3": 18, "4": 71, "5": 1626}, "version": "8.2.1", "homepage": "https://wordpress.org/plugins/ewww-image-optimizer/", "requires": "6.5", "sections": {"faq": "\n
    \nDoes the plugin remove EXIF and/or IPTC metadata?\n\n

    \n

    EWWW IO will remove metadata by default, but if you need to keep the EXIF/IPTC data for copyright purposes, you can disable the Remove Metadata option.
    \nEXIF data does not impact SEO, and it is recommended by Google (and just about everyone else) to remove EXIF data.

    \n

    \n
    \nGoogle Pagespeed says my images need compressing or resizing, but I already optimized all my images. What do I do?\n\n

    \n

    Try this for starters: https://docs.ewww.io/article/5-pagespeed-says-my-images-need-more-work

    \n

    \n
    \nThe plugin complains that I’m missing something, what do I do?\n\n

    \n

    This article will walk you through installing the required tools (and the alternatives if installation does not work): https://docs.ewww.io/article/6-the-plugin-says-i-m-missing-something

    \n

    \n
    \nDoes the plugin replace existing images?\n\n

    \n

    Yes, but only if the optimized version is smaller. The plugin should NEVER create a larger image.

    \n

    \n
    \nCan I resize my images with this plugin?\n\n

    \n

    Yes, you can, set it up on the Resize tab.

    \n

    \n
    \nCan I lower the compression setting for JPGs to save more space?\n\n

    \n

    Our premium compression can determine the ideal quality setting and give you the best results, but you may also adjust the default quality for conversion and resizing. Read more…

    \n

    \n
    \nThe bulk optimizer doesn’t seem to be working, what can I do?\n\n

    \n

    See https://docs.ewww.io/article/39-bulk-optimizer-failure for full troubleshooting instructions.

    \n

    \n
    \nWhat are the supported operating systems?\n\n

    \n

    Free mode using local server compression is supported on Windows, Linux, MacOS, and FreeBSD. The Compress API and Easy IO CDN will work on any OS.

    \n

    \n
    \nI want to know more about image optimization, and why you chose these options/tools.\n\n

    \n

    That’s not a question, but since I made it up, I’ll answer it. See this resource:
    \nhttps://developers.google.com/web/tools/lighthouse/audits/optimize-images

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Funciona muy bien

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy andayanda on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    HAce un mes que lo instalé y, de momento va bien

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works like a charm

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ferysjournal on October 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use and really helpful in optimizing all images on my blog.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy oftalmolog on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dhrajuwp on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Before installing this plugin I had problems uploading images. It never uploads. But had no issues after installing this plugin. My images are uploading superfast.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    5 stars

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mu55a on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Remove all the pain from image optimizations.
    Even better if you do self hosting.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    80

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sallemibtikrsa on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    good

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good for optimizing images

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy queno1809 on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very good for optimizing images and converting images to webp, it has functions that work very well such as lazy load. Many thanks to the creators.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works well for us

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy klynam on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We''ve been using EWWW IO for quite a while and quite pleased with the results.

    \n\n\n\n

    Two thumbs up :-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I love it

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy abdulkarimpreo on September 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a helpful plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy seanmnlawrence on September 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you

    \n
    \n
    \n", "changelog": "
      \n
    • Feature requests can be viewed and submitted on our feedback portal
    • \n
    • If you would like to help translate this plugin in your language, join the team
    • \n
    \n

    8.2.1

    \n

    Release Date – August 27, 2025

    \n
      \n
    • added: filters for cloud storage plugin integration
    • \n
    • fixed: Easy IO misses some preload links
    • \n
    • fixed: PHP error when API quota is exhausted during single image optimization
    • \n
    \n

    8.2.0

    \n

    Release Date – July 15, 2025

    \n
      \n
    • added: JS WebP support for HTML elements/tags added via eio_allowed_background_image_elements filter
    • \n
    • added: Easy IO support for dynamic cropping (crop=1) on WordPress.com sites
    • \n
    • changed: use native ImageMagick methods to detect, and correct, paletted PNG thumbnails
    • \n
    • changed: use authoritative classmap via composer to speed up autoloader, props @nlemoine
    • \n
    • changed: streamlined admin notices
    • \n
    • fixed: indexed PNG thumbnails with 8-bit alpha are distorted by quantization
    • \n
    • fixed: PHP warnings related to HTML parsing
    • \n
    • fixed: missing ImageMagick information on Site Health screen
    • \n
    • fixed: PHP warnings when link URLs contain special regex characters
    • \n
    \n

    8.1.4

    \n

    Release Date – May 15, 2025

    \n
      \n
    • added: customize lossy PDF compression by defining EWWW_IMAGE_OPTIMIZER_PDF_IMAGE_DPI and/or EWWW_IMAGE_OPTIMIZER_PDF_IMAGE_QUALITY
    • \n
    • fixed: WebP thumbnails have incorrect orientation when created from the original unoptimized image
    • \n
    \n

    8.1.3

    \n

    Release Date – March 26, 2025

    \n
      \n
    • added: exclude private BuddyBoss media from Easy IO with page:buddyboss exclusion
    • \n
    • changed: WebP Only mode no longer requires Force Re-optimize for already optimized images
    • \n
    • fixed: Easy IO rewriting some URLs when full page exclusions are used
    • \n
    • fixed: WebP rewriters alter PNG URLs when PNG to WebP conversion is unavailable
    • \n
    • fixed: regression in compatibility with plugins that recreate images via WP_Image_Editor
    • \n
    • fixed: previous fix to avoid translation notices caused errors with other plugins calling background processes earlier than ‘init’
    • \n
    \n

    8.1.2

    \n

    Release Date – March 6, 2025

    \n
      \n
    • changed: WebP Conversion mode configurable for API users
    • \n
    • changed: combine metadata queries for faster async scanning
    • \n
    • changed: Bulk Optimization no longer requires Force Re-optimization to create WebP images for previously optimized images
    • \n
    • fixed: background processes trigger notice from loading translations too early
    • \n
    • fixed: WooCommerce thumb regen still runs when WC sizes are disabled
    • \n
    • fixed: Easy IO fails to refresh CDN domain when site URL has changed
    • \n
    • fixed: Force and WebP Only options not applied when scanning additional folders in async mode
    • \n
    • fixed: PDF and SVG images queued in WebP Only mode
    • \n
    \n

    8.1.1

    \n

    Release Date – February 26, 2025

    \n
      \n
    • changed: added handling of HTTP errors to processes on Tools page
    • \n
    • changed: added nonce-renewal for long-running processes on Tools page
    • \n
    • changed: improved output for WebP Cleanup tool and Delete Converted Originals tool
    • \n
    • fixed: queue table upgrade fails to add ‘id’ column
    • \n
    \n

    8.1.0

    \n

    Release Date – February 18, 2025

    \n
      \n
    • added: Preserve Originals option to keep pre-scaled images for WebP and thumbnail generation
    • \n
    • added: ability for 3rd party plugins to hook into Lazy Load and WebP HTML parsers
    • \n
    • changed: ImageMagick is default WebP conversion method on supported servers
    • \n
    • changed: improved performance of custom *_option functions on multisite
    • \n
    • changed: Max Image Dimensions always override WP big_image threshold
    • \n
    • changed: local image backups not removed on plugin deactivation
    • \n
    • fixed: Sharpen Images not applied to new WebP Conversion process
    • \n
    • fixed: WebP Quality not applied to ImageMagick WebP Conversion for thumbnails
    • \n
    • fixed: WebP resizing overrides custom crop set by Crop Thumbnails
    • \n
    • fixed: pre-scaled original cannot be found if attachment metadata is incomplete
    • \n
    • fixed: PHP error in bulk image scanner
    • \n
    \n

    8.0.0

    \n

    Release Date – December 11, 2024

    \n
      \n
    • added: WebP Optimization via API, existing customers may enable it on the Local tab in Ludicrous Mode
    • \n
    • added: improved WebP Conversion quality by using full-size/original source for thumbs
    • \n
    • added: Above the Fold setting for Lazy Load (previously EIO_LAZY_FOLD override)
    • \n
    • added: High-DPI option for Easy IO
    • \n
    • changed: gravatar images excluded from Above the Fold/EIO_LAZY_FOLD counts
    • \n
    • fixed: Picture WebP ignores images with skip-lazy when it should not
    • \n
    • fixed: image records not reset after image restore
    • \n
    • fixed: several PHP warnings from bulk processes
    • \n
    • fixed: paths for thumbs were broken on Windows
    • \n
    • fixed: Easy IO adding images to srcset combined with broken WooCommerce gallery thumbnails causes oversized image sizes to be loaded
    • \n
    • fixed: Easy IO srcset filler using incorrect width for calculations
    • \n
    • fixed: PHP warning during bulk scan
    • \n
    \n

    7.9.1

    \n

    Release Date – October 31, 2024

    \n
      \n
    • changed: bulk optimizer links point to async bulk tool, if available
    • \n
    • fixed: Lazy Load for iframes results in empty src attribute
    • \n
    • fixed: debug actions on bulk optimizer missing nonces
    • \n
    • fixed: bulk optimize scanner queries are too long for some hosts
    • \n
    • fixed: Lazy Load breaks –background CSS variable
    • \n
    \n

    7.9.0

    \n

    Release Date – September 12, 2024

    \n
      \n
    • added: conversion of BMP images to JPG format
    • \n
    • changed: allow folders outside of WordPress install to be optimized via Folders to Optimize
    • \n
    • changed: improve performance of ewwwio_is_file(), props @rmpel
    • \n
    • changed: improve exceeded credit messages for sub-keys
    • \n
    • changed: warn when db connection is not using UTF-8
    • \n
    • changed: ensure all db statements are properly prepared/sanitized
    • \n
    • fixed: bulk async shows start optimizing instead of resume when queues are paused
    • \n
    • fixed: bulk async status refresh does not handle errors properly
    • \n
    • fixed: some strings with i18n had incorrect text domain
    • \n
    \n

    7.8.0

    \n

    Release Date – July 25, 2024

    \n
      \n
    • added: agency mode available by defining EWWWIO_WHITELABEL or using the ewwwio_whitelabel filter
    • \n
    • changed: skip lazy load for LCP images based on fetchpriority when auto-scaling is disabled
    • \n
    • fixed: JS WebP alters img srcset when src is non-WebP but srcset is already WebP
    • \n
    • fixed: Lazy Load and Easy IO fail to decode URLs with HTML-encoded characters, which causes esc_url to break the URL
    • \n
    • fixed: Easy IO fails to update CDN domain if site is re-registered while still active
    • \n
    \n

    7.7.0

    \n

    Release Date – June 6, 2024

    \n
      \n
    • added: improved resizing of paletted PNG images in WP_Image_Editor using pngquant or API
    • \n
    • added: warning when hiding query strings with Hide My WP
    • \n
    • changed: apply async loading to lazyload JS using WP core functionality
    • \n
    • fixed: missing srcset when using JS WebP rewriting
    • \n
    • fixed: multisite deactivate for Easy IO fails nonce verification
    • \n
    • fixed: some strings were missing i18n (props @DAnn2012)
    • \n
    \n

    7.6.0

    \n

    Release Date – April 24, 2024

    \n
      \n
    • added: Easy IO delivery for JS/CSS assets from additional domains
    • \n
    • added: Lazy Load can use dominant color placeholders via Easy IO
    • \n
    • added: ability to filter/parse admin-ajax.php requests via eio_filter_admin_ajax_response filter
    • \n
    • added: Easy IO support for Divi Pixel image masks
    • \n
    • changed: improved smoothing of LQIP for Lazy Load when using Easy IO
    • \n
    • changed: after editing an image in WordPress, optimization results for backup sizes will be hidden from Media Library list mode
    • \n
    • changed: Lazy Load checks for auto-scale exclusions on ancestors of lazyloaded element
    • \n
    • fixed: async bulk interface does not show Start Optimizing when image queue is already visible
    • \n
    • fixed: bulk process appears to have completed after clearing queue
    • \n
    • fixed: storing resize/webp results for new images fails with MySQL strict mode
    • \n
    • fixed: database records not cleaned after thumbs are removed by Force Regenerate Thumbnails
    • \n
    • fixed: JPG to PNG conversion on 8-bit PNGs sometimes uses incorrect black background
    • \n
    • fixed: Help links broken in Firefox’s Strict mode
    • \n
    • fixed: async queue status not properly checked on multi-site
    • \n
    \n

    7.5.0

    \n

    Release Date – March 26, 2024

    \n
      \n
    • added: Easy IO support for upcoming Slider Revolution 7 rendering engine
    • \n
    • added: Easy IO updates existing image preload URLs
    • \n
    • added: Lazy Load automatically excludes preloaded images
    • \n
    • changed: async process locking uses unique key on disk to avoid duplicate processes
    • \n
    • fixed: Easy IO skipping Slider Revolution 6 URLs
    • \n
    • fixed: Lazy Load incorrectly auto-scales fixed group background images
    • \n
    • fixed: uncaught errors when attempting svgcleaner install on FreeBSD
    • \n
    • fixed: optimized images list links to WebP thumbnail for all sizes
    • \n
    • fixed: optimized images list shows wrong thumbnail for non-media library images
    • \n
    • fixed: quirks with new bulk interface and optimized images list
    • \n
    • updated: cwebp to version 1.3.2
    • \n
    • updated: gifsicle to version 1.95
    • \n
    • updated: optipng to version 0.7.8
    • \n
    \n

    7.4.0

    \n

    Release Date – March 6, 2024

    \n
      \n
    • added: async bulk optimizer on settings page
    • \n
    • added: store WebP results/errors for display in Media Library, and in optimization table/results
    • \n
    • added: ability to view pending/queued images, remove images from queue, and sort queue by original image size
    • \n
    • fixed: restoring images from optimization table
    • \n
    • fixed: attempting to install x64 binaries on arm64 servers
    • \n
    \n

    Earlier versions

    \n

    Please refer to the separate changelog.txt file.

    \n", "description": "

    Are you frustrated by a slow website? Do over-sized images make you say “ewww”… Let EWWW Image Optimizer help you make your site faster, improve your bounce rate, and boost your SEO. But most importantly, make your visitors happier so they keep coming back for more.

    \n

    With EWWW IO you can optimize all your existing images, from any plugin, and then let EWWW IO take care of new image uploads automatically.

    \n

    Why use EWWW Image Optimizer?

    \n
      \n
    1. No Speed Limits and unlimited file size.
    2. \n
    3. Smooth Handling with pixel-perfect optimization using industry-leading tools and progressive rendering.
    4. \n
    5. High Torque as we bring you the best compression/quality ratio available with our Premium compression for JPG, PNG, SVG, WebP, and PDF files.
    6. \n
    7. Adaptive Steering with intelligent conversion options to get the right image format for the job (JPG, PNG, GIF, AVIF, or WebP).
    8. \n
    9. Free Parking The core plugin is free and always will be. However, our paid services offer up to 80% compression, and a host of other features!
    10. \n
    11. Comprehensive Coverage: no image gets left behind, optimize everything on your site, not just the WordPress Media Library.
    12. \n
    13. Safety First: all communications are secured with top SSL encryption.
    14. \n
    15. Roadside Assistance: top-notch support is in our DNA. While API customers get top priority, we answer every single support question with care.
    16. \n
    17. Pack a Spare: free image backups store your original images for 30 days.
    18. \n
    \n

    EWWW IO is the only plugin that lets you optimize images using tools on your own server (jpegtran, optipng, pngout, pngquant, gifsicle, cwebp). If you feel the need for more speed, get more compression and offload the CPU-intensive process of optimization to our specialized servers.

    \n

    Automatic Everything

    \n

    With Easy IO, images are automatically compressed, scaled to fit the page and device size, lazy loaded, and converted to next-gen WebP and AVIF formats.

    \n

    Support

    \n

    Stuck? Feeling like maybe you DO need that rocket science degree? We provide free one-on-one email support to everyone.
    \nDo you have an idea to make EWWW IO even better? Share it and vote on future features!

    \n

    Found a bug? Report the issue on GitHub, and we’ll get it fixed!

    \n

    You may report security issues through our Patchstack Vulnerability Disclosure Program. The Patchstack team helps validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    Bulk Optimize

    \n

    Optimize all your images from a single page. This includes the Media Library, your theme, and a handful of pre-configured folders (see Optimize Everything Else below). GRAND FlaGallery, NextCellent and NextGEN have their own Bulk Optimize pages.

    \n

    Optimize Everything Else

    \n

    Configure any folder within your WordPress install to be optimized. The Bulk Optimizer will compress theme images, BuddyPress avatars, BuddyPress Activity Plus images, Meta Slider slides, WP Symposium Pro avatars, GD bbPress attachments, Grand Media Galleries, and any user-specified folders. You can also use Scheduled optimization or run the optimizer from WP-CLI if that’s more your thing.

    \n

    Plugin Compatibility

    \n

    EWWW IO has been tested with hundreds (if not thousands) of plugins and themes, here are just a few of the most common ones: BuddyPress (Activity Plus add-on too), Cloudinary, Easy Watermark, FileBird, FooGallery, GD bbPress Attachments, GRAND FlAGallery, Gmedia Photo Gallery, MediaPress, Meta Slider, Microsoft Azure Storage, MyArcadePlugin, NextGEN Gallery, Regenerate Thumbnails, Weglot, WP Offload Media, WPML, WP Retina 2x, WP RSS Aggregator, WP Symposium. Read more…

    \n

    WebP Images

    \n

    If you want simple, get automatic WebP conversion with Easy IO, and be done with it! Otherwise, you can generate WebP versions of your images with the Bulk Optimizer, and deliver them to supported browsers. Take your pick between Apache-style rewrite rules, JS WebP Rewriting, and WebP Rewriting. EWWW IO even works with the WebP option in the Cache Enabler plugin from KeyCDN.

    \n

    AVIF Images

    \n

    AVIF conversion is built into the Easy IO CDN. Once your site is setup with Easy IO, edit the site settings to enable AVIF, and you’re done!

    \n

    WP-CLI

    \n

    Allows you to run all Bulk Optimization processes from your command line, instead of the web interface. It is much faster, and allows you to do things like run it in ‘screen’ or via regular cron (instead of wp-cron, which can be unpredictable on low-traffic sites). Install WP-CLI from wp-cli.org, and run ‘wp-cli.phar help ewwwio optimize’ for more information or see the Docs.

    \n

    CDN Support

    \n

    WP Offload Media is the officially supported (and recommended) plugin for uploads to Amazon S3, Digital Ocean Spaces, and Google Cloud Storage. Check our compatibility list for details on other plugins. All pull mode CDNs like Cloudflare, KeyCDN, MaxCDN, and Sucuri CloudProxy work automatically, but will require you to purge the cache after a bulk optimization.

    \n

    Translations

    \n

    Huge thanks to all our translators, see the full list!

    \n

    If you would like to help translate this plugin, join the team.
    \nSignup to receive updates when new strings are available for translation.

    \n

    Credits

    \n

    Written by Shane Bishop with special thanks to my Lord and Savior. Based upon CW Image Optimizer, which was written by Jacob Allred at Corban Works, LLC. CW Image Optimizer was based on WP Smush.it. Jpegtran is the work of the Independent JPEG Group. PEL is the work of Martin Geisler, Lars Olesen, and Erik Oskam. Easy IO and HTML parsing classes based upon the Photon module from Jetpack.

    \n", "screenshots": "
    1. \"Plugin

      Plugin settings page.

    2. \"Additional

      Additional optimize column added to media listing. You can see your savings, manually optimize individual images, and restore originals (converted only).

    3. \"Bulk

      Bulk optimization page. You can optimize all your images at once and resume a previous bulk optimization. This is very useful for existing blogs that have lots of images.

    ", "installation": "
      \n
    1. Upload the “ewww-image-optimizer” plugin to your /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    5. The plugin will attempt to install jpegtran, optipng, and gifsicle automatically for you. This requires that the wp-content folder is writable by the user running the web server.
    6. \n
    7. If the binaries don’t run locally, you may sign up for cloud-based optimization: https://ewww.io/plans/
    8. \n
    9. Recommended Visit the settings page to enable/disable specific tools and turn on advanced optimization features.
    10. \n
    11. Done!
    12. \n
    \n

    If these steps do not work, see the additional documentation. If you need further assistance using the plugin, please visit our Support Page.

    \n

    Webhosts

    \n

    To find out if your webhost works with the EWWW Image Optimizer, you can check the official list.

    \n"}, "versions": {"5.6.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.5.6.2.zip", "5.7.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.5.7.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.5.8.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.0.3.zip", "6.1.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.5.zip", "6.1.6": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.6.zip", "6.1.7": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.7.zip", "6.1.8": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.8.zip", "6.1.9": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.9.zip", "6.2.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.2.5.zip", "6.3.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.3.0.zip", "6.4.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.4.2.zip", "6.5.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.5.1.zip", "6.5.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.5.2.zip", "6.6.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.6.0.zip", "6.7.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.7.0.zip", "6.8.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.8.0.zip", "6.9.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.9.2.zip", "6.9.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.9.3.zip", "7.0.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.0.0.zip", "7.0.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.0.2.zip", "7.1.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.1.0.zip", "7.2.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.2.0.zip", "7.2.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.2.1.zip", "7.2.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.2.2.zip", "7.2.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.2.3.zip", "7.3.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.3.0.zip", "7.4.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.4.0.zip", "7.5.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.5.0.zip", "7.6.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.6.0.zip", "7.7.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.7.0.zip", "7.8.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.8.0.zip", "7.9.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.7.9.1.zip", "8.0.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.0.0.zip", "8.1.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.0.zip", "8.1.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.1.zip", "8.1.2": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.2.zip", "8.1.3": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.3.zip", "8.1.4": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.4.zip", "8.2.0": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.2.0.zip", "8.2.1": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.2.1.zip", "trunk": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.zip"}, "downloaded": 43168420, "description": "

    Are you frustrated by a slow website? Do over-sized images make you say “ewww”… Let EWWW Image Optimizer help you make your site faster, improve your bounce rate, and boost your SEO. But most importantly, make your visitors happier so they keep coming back for more.

    \n

    With EWWW IO you can optimize all your existing images, from any plugin, and then let EWWW IO take care of new image uploads automatically.

    \n

    Why use EWWW Image Optimizer?

    \n
      \n
    1. No Speed Limits and unlimited file size.
    2. \n
    3. Smooth Handling with pixel-perfect optimization using industry-leading tools and progressive rendering.
    4. \n
    5. High Torque as we bring you the best compression/quality ratio available with our Premium compression for JPG, PNG, SVG, WebP, and PDF files.
    6. \n
    7. Adaptive Steering with intelligent conversion options to get the right image format for the job (JPG, PNG, GIF, AVIF, or WebP).
    8. \n
    9. Free Parking The core plugin is free and always will be. However, our paid services offer up to 80% compression, and a host of other features!
    10. \n
    11. Comprehensive Coverage: no image gets left behind, optimize everything on your site, not just the WordPress Media Library.
    12. \n
    13. Safety First: all communications are secured with top SSL encryption.
    14. \n
    15. Roadside Assistance: top-notch support is in our DNA. While API customers get top priority, we answer every single support question with care.
    16. \n
    17. Pack a Spare: free image backups store your original images for 30 days.
    18. \n
    \n

    EWWW IO is the only plugin that lets you optimize images using tools on your own server (jpegtran, optipng, pngout, pngquant, gifsicle, cwebp). If you feel the need for more speed, get more compression and offload the CPU-intensive process of optimization to our specialized servers.

    \n

    Automatic Everything

    \n

    With Easy IO, images are automatically compressed, scaled to fit the page and device size, lazy loaded, and converted to next-gen WebP and AVIF formats.

    \n

    Support

    \n

    Stuck? Feeling like maybe you DO need that rocket science degree? We provide free one-on-one email support to everyone.
    \nDo you have an idea to make EWWW IO even better? Share it and vote on future features!

    \n

    Found a bug? Report the issue on GitHub, and we’ll get it fixed!

    \n

    You may report security issues through our Patchstack Vulnerability Disclosure Program. The Patchstack team helps validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    Bulk Optimize

    \n

    Optimize all your images from a single page. This includes the Media Library, your theme, and a handful of pre-configured folders (see Optimize Everything Else below). GRAND FlaGallery, NextCellent and NextGEN have their own Bulk Optimize pages.

    \n

    Optimize Everything Else

    \n

    Configure any folder within your WordPress install to be optimized. The Bulk Optimizer will compress theme images, BuddyPress avatars, BuddyPress Activity Plus images, Meta Slider slides, WP Symposium Pro avatars, GD bbPress attachments, Grand Media Galleries, and any user-specified folders. You can also use Scheduled optimization or run the optimizer from WP-CLI if that’s more your thing.

    \n

    Plugin Compatibility

    \n

    EWWW IO has been tested with hundreds (if not thousands) of plugins and themes, here are just a few of the most common ones: BuddyPress (Activity Plus add-on too), Cloudinary, Easy Watermark, FileBird, FooGallery, GD bbPress Attachments, GRAND FlAGallery, Gmedia Photo Gallery, MediaPress, Meta Slider, Microsoft Azure Storage, MyArcadePlugin, NextGEN Gallery, Regenerate Thumbnails, Weglot, WP Offload Media, WPML, WP Retina 2x, WP RSS Aggregator, WP Symposium. Read more…

    \n

    WebP Images

    \n

    If you want simple, get automatic WebP conversion with Easy IO, and be done with it! Otherwise, you can generate WebP versions of your images with the Bulk Optimizer, and deliver them to supported browsers. Take your pick between Apache-style rewrite rules, JS WebP Rewriting, and WebP Rewriting. EWWW IO even works with the WebP option in the Cache Enabler plugin from KeyCDN.

    \n

    AVIF Images

    \n

    AVIF conversion is built into the Easy IO CDN. Once your site is setup with Easy IO, edit the site settings to enable AVIF, and you’re done!

    \n

    WP-CLI

    \n

    Allows you to run all Bulk Optimization processes from your command line, instead of the web interface. It is much faster, and allows you to do things like run it in ‘screen’ or via regular cron (instead of wp-cron, which can be unpredictable on low-traffic sites). Install WP-CLI from wp-cli.org, and run ‘wp-cli.phar help ewwwio optimize’ for more information or see the Docs.

    \n

    CDN Support

    \n

    WP Offload Media is the officially supported (and recommended) plugin for uploads to Amazon S3, Digital Ocean Spaces, and Google Cloud Storage. Check our compatibility list for details on other plugins. All pull mode CDNs like Cloudflare, KeyCDN, MaxCDN, and Sucuri CloudProxy work automatically, but will require you to purge the cache after a bulk optimization.

    \n

    Translations

    \n

    Huge thanks to all our translators, see the full list!

    \n

    If you would like to help translate this plugin, join the team.
    \nSignup to receive updates when new strings are available for translation.

    \n

    Credits

    \n

    Written by Shane Bishop with special thanks to my Lord and Savior. Based upon CW Image Optimizer, which was written by Jacob Allred at Corban Works, LLC. CW Image Optimizer was based on WP Smush.it. Jpegtran is the work of the Independent JPEG Group. PEL is the work of Martin Geisler, Lars Olesen, and Erik Oskam. Easy IO and HTML parsing classes based upon the Photon module from Jetpack.

    \n", "donate_link": "https://ewww.io/donate/", "num_ratings": 1802, "screenshots": {"1": {"src": "https://ps.w.org/ewww-image-optimizer/assets/screenshot-1.png?rev=1557839", "caption": "Plugin settings page."}, "2": {"src": "https://ps.w.org/ewww-image-optimizer/assets/screenshot-2.png?rev=1557839", "caption": "Additional optimize column added to media listing. You can see your savings, manually optimize individual images, and restore originals (converted only)."}, "3": {"src": "https://ps.w.org/ewww-image-optimizer/assets/screenshot-3.png?rev=1557839", "caption": "Bulk optimization page. You can optimize all your images at once and resume a previous bulk optimization. This is very useful for existing blogs that have lots of images."}}, "support_url": "https://wordpress.org/support/plugin/ewww-image-optimizer/", "contributors": {"nosilver4u": {"avatar": "https://secure.gravatar.com/avatar/591c39f8101beaf38f818256c9cac460dd878b11aa6de3a815de1ac04eb60960?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nosilver4u/", "display_name": "nosilver4u"}}, "last_updated": "2025-08-27 5:48pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.2.1.zip", "author_profile": "https://profiles.wordpress.org/nosilver4u/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f47e-703b-a0b5-5520f9b9cc3d", "name": "EWWW Image Optimizer", "slug": "ewww-image-optimizer", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1756316880, "version": "8.2.1"}, "support_threads": 2, "requires_plugins": [], "short_description": "Smaller Images, Faster Sites, Happier Visitors. Comprehensive image optimization that doesn't require a degree in rocket science.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "https://ewww.io/", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-650a-73d5-9781-ae9adc7090c5', 'flamingo', 'Flamingo', 'A trustworthy message storage plugin for Contact Form 7.', '

    Flamingo is a message storage plugin originally created for Contact Form 7, which doesn’t store submitted messages.

    -

    After activation of the plugin, you’ll find Flamingo on the WordPress admin screen menu. All messages through contact forms are listed there and are searchable. With Flamingo, you no longer need to worry about losing important messages due to mail server issues or misconfiguration in mail setup.

    -

    For more detailed information, please refer to the Contact Form 7 documentation page.

    -

    Privacy Notices

    -

    This plugin stores submission data collected through contact forms, which may include the submitters’ personal information, in the database on the server that hosts the website.

    -', '2.6', 'Rock Lobster Inc.', '6.7', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/flamingo.2.6.zip', '2012-05-05 00:00:00+00', '2025-07-14 07:58:00+00', 'https://profiles.wordpress.org/rocklobsterinc/', 84, 118, 1, 0, 800000, 7575091, 'https://contactform7.com/save-submitted-messages-with-flamingo/', 'https://contactform7.com/donate/', NULL, NULL, 'https://wordpress.org/support/plugin/flamingo/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Flamingo", "slug": "flamingo", "tags": {"crm": "crm", "bird": "bird", "mail": "mail", "contact": "contact"}, "added": "2012-05-05", "icons": {"1x": "https://ps.w.org/flamingo/assets/icon-128x128.png?rev=1540977"}, "author": "Rock Lobster Inc.", "rating": 84, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/flamingo/assets/banner-772x250.png?rev=544829", "high": false}, "ratings": {"1": 7, "2": 9, "3": 9, "4": 20, "5": 73}, "version": "2.6", "homepage": "https://contactform7.com/save-submitted-messages-with-flamingo/", "requires": "6.7", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works Really Well

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nolanrichardson on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its a great addition to contact form 7 and much needed if you don''t have your email server setup yet.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Only works with PHP sendmail, not external SMTP

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy skylabb on January 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin only works with contact forms using PHP mail. It doesn''t seem to work with an external SMTP mail server. I tested it out and there were no messages collected in DB. Also there''s no option to add more email addresses under Contact Book tab which shows only the users already registered in your WP site. So this feature is useless.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great! (But has a minor bug)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy allamehw on November 8, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a great tool, especially with its integration into the Contact Form 7 plugin. However, there''s a minor bug when exporting non-Latin characters, such as Persian. It seems the encoding is set to Western by default. Switching to UTF-8 encoding should resolve the issue. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Just what i needed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy germanfriend on December 6, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really good for storing messages

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Performance

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sionline on June 2, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Sending contact forms takes usually 3s.
    With Flamingo active and 30k records in db the time is much greater, repeatable 15s which is unacceptable.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Ужасный плагин!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Mario62rus on February 3, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ни какого нормального функционала, все неудобно и примитивно! Никогда и никому не советую его использовать, есть нормальные варианты. Одна ценность - связь с Akismet.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    einfach und gut!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy clvkmedia on September 4, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    macht genau wie beschrieben.\nVielen Dank!
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very helpful plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shojil on June 13, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    In my last company we are using this plugin on more then 200 of sites and it is working fine.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin Update

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kiwihawk on April 28, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    Is this plugin going to be updated to keep up with the latest Wordpress version?\n\n
    Warning: This plugin has not been tested with your current version of WordPress.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    if the form has images, just forget about them

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy joelramirezleal on April 5, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    the images that are sent in the forms are saved as a hash and there is no way to recover them, the support does not seem to care about this
    \n
    \n", "changelog": "

    2.6

    \n
      \n
    • Bumps up the minimum required WordPress version to 6.7.
    • \n
    • Fixes errors reported by PCP.
    • \n
    • Performs a tune-up for the cron job scheduling.
    • \n
    \n

    2.5

    \n
      \n
    • Bumps up the minimum required WordPress version to 6.4.
    • \n
    • Uses wp_json_encode() instead of json_encode().
    • \n
    • Uses get_views_links().
    • \n
    • Uses null coalescing operators.
    • \n
    \n", "description": "

    Flamingo is a message storage plugin originally created for Contact Form 7, which doesn’t store submitted messages.

    \n

    After activation of the plugin, you’ll find Flamingo on the WordPress admin screen menu. All messages through contact forms are listed there and are searchable. With Flamingo, you no longer need to worry about losing important messages due to mail server issues or misconfiguration in mail setup.

    \n

    For more detailed information, please refer to the Contact Form 7 documentation page.

    \n

    Privacy Notices

    \n

    This plugin stores submission data collected through contact forms, which may include the submitters’ personal information, in the database on the server that hosts the website.

    \n", "installation": "
      \n
    1. Upload the entire flamingo folder to the /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/flamingo.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/flamingo.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/flamingo.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/flamingo.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/flamingo.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/flamingo.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/flamingo.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/flamingo.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/flamingo.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/flamingo.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/flamingo.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/flamingo.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/flamingo.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/flamingo.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/flamingo.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/flamingo.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/flamingo.2.6.zip", "1.0.1": "https://downloads.wordpress.org/plugin/flamingo.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/flamingo.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/flamingo.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/flamingo.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/flamingo.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/flamingo.1.0.6.zip", "1.1.1": "https://downloads.wordpress.org/plugin/flamingo.1.1.1.zip", "2.1.1": "https://downloads.wordpress.org/plugin/flamingo.2.1.1.zip", "2.2.1": "https://downloads.wordpress.org/plugin/flamingo.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/flamingo.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/flamingo.2.2.3.zip", "trunk": "https://downloads.wordpress.org/plugin/flamingo.zip"}, "downloaded": 7575091, "description": "

    Flamingo is a message storage plugin originally created for Contact Form 7, which doesn’t store submitted messages.

    \n

    After activation of the plugin, you’ll find Flamingo on the WordPress admin screen menu. All messages through contact forms are listed there and are searchable. With Flamingo, you no longer need to worry about losing important messages due to mail server issues or misconfiguration in mail setup.

    \n

    For more detailed information, please refer to the Contact Form 7 documentation page.

    \n

    Privacy Notices

    \n

    This plugin stores submission data collected through contact forms, which may include the submitters’ personal information, in the database on the server that hosts the website.

    \n", "donate_link": "https://contactform7.com/donate/", "num_ratings": 118, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/flamingo/", "contributors": {"itpixelz": {"avatar": "https://secure.gravatar.com/avatar/0ab29d30d725fc2b0da861c9894d1aea643d24b56bcb9796701a2d029f66c300?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/itpixelz/", "display_name": "Umar Draz"}, "megumithemes": {"avatar": "https://secure.gravatar.com/avatar/0e5967d66d77cdb8d140db3a2748fe9f7dc75c46b922c1a4e2a0459a3930f5a5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/megumithemes/", "display_name": "DigitalCube Inc."}, "takayukister": {"avatar": "https://secure.gravatar.com/avatar/538487024e649d43dea84ff38d14582d03119e3e7aaaca3b7692443335999133?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/takayukister/", "display_name": "Takayuki Miyoshi"}}, "last_updated": "2025-07-14 7:58am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/flamingo.2.6.zip", "author_profile": "https://profiles.wordpress.org/rocklobsterinc/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-f46b-7052-be4f-29abe7f4b8de", "name": "Flamingo", "slug": "flamingo", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1752479880, "version": "2.6"}, "support_threads": 1, "requires_plugins": [], "short_description": "A trustworthy message storage plugin for Contact Form 7.", "author_block_count": 0, "author_block_rating": 84, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-6514-730d-921e-a2e82f7ff087', 'google-analytics-for-wordpress', 'MonsterInsights – Google Analytics Dashboard for WordPress (Website Stats Made Easy)', 'The best free Google Analytics plugin for WordPress. See how visitors find and use your website so you can grow your business with powerful analytics.', '

    Google Analytics Plugin for WordPress

    -

    With over 3 million active installs, MonsterInsights is the most popular Google Analytics plugin for WordPress.

    -

    We believe that it’s easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights shows you the analytics and stats that matter, so you can grow your business with confidence.

    -

    At MonsterInsights, we make it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.

    -

    Unlike other Google Analytics plugins, MonsterInsights allows you to enable all advanced Google Analytics tracking features with just a few clicks (no need to hire a developer).

    -

    The best part is that MonsterInsights comes with an analytics dashboard for WordPress that shows you actionable analytics reports right inside your WordPress dashboard. We have created customized reports that eliminate the fluff and only show you the stats that matter, so you can see exactly what’s working and what’s not!

    -

    Simply put, MonsterInsights is the most complete Google Analytics plugin for WordPress that’s both EASY and POWERFUL.

    -

    That’s why millions of small businesses and top companies like Microsoft, Bloomberg, FedEx, Yelp, Subway, etc. use MonsterInsights to setup Google Analytics on their WordPress sites.

    -
    -

    MonsterInsights Pro
    - This plugin is the lite version of MonsterInsights Pro plugin that comes with all the tracking features you will ever need including events tracking, ecommerce tracking, custom dimensions tracking, page speed reports, popular post tracking, custom dimensions, affiliate link tracking, video tracking and tons more. Click here to purchase the best premium Google Analytics plugin for WordPress now!

    -
    -

    We took the pain out of installing Google Analytics in WordPress and made it easy. Here’s why over 3 million smart business owners, designers, and developers love MonsterInsights, and you will too!

    -

    -

    Quick & Easy Google Analytics Setup

    -

    Properly setting up Google Analytics is complicated. You have to either hire a developer or learn how to add advanced code snippets to your website in many different areas. This process can take days or weeks…and can even break your website!

    -

    With MonsterInsights, we made it “effortless” to properly setup Google Analytics in WordPress. Yes, you can enable all advanced Google Analytics features with just a few clicks.

    -

    If you can point-and-click, then you can set up Google Analytics inside WordPress and start seeing insights in under 15 minutes (no code necessary).

    -

    See what one business owner is saying about MonsterInsights:

    -
    -

    It just works. Really easy way to insert Google Analytics tracking code and keep it there when switching themes. No need to copy/paste code anywhere. This is the best way to handle Google Analytics in WordPress.
    - Steven Gliebe

    -
    -

    Google Analytics Dashboard

    -

    Our goal at MonsterInsights is to make Google Analytics easy and accessible for everyone.

    -

    We understand that Google Analytics has a steep learning curve. That’s why MonsterInsights comes with a built-in Google Analytics Dashboard for your WordPress site, so you can see all the useful information about your visitors right inside your WordPress dashboard.

    -

    We have even created customized reports to help you filter through the noise and see the stats that really matter!

    -
      -
    • -

      Audience Report shows you detailed insights like which country your visitors are coming from, what are they most interested in, which device are they using, their age, gender, and more.

      -
    • -
    • -

      Publishers Report helps you understand which pages your visitors are arriving, and which pages they are leaving from. Designed specifically for blogs and other resource sites, this powerful report will show you which outbound links are getting clicked so you can easily optimize for higher conversions.

      -
    • -
    • -

      Content Report shows you stats on exactly which content gets the most visits, so you can stop guessing and start creating content that gets more traffic and conversion.

      -
    • -
    • -

      Ecommerce Report shows you important store stats like total revenue, conversion rate, average order value, top referral sources, and more (all in one place).

      -
    • -
    • -

      Forms Report shows you conversion stats for various contact forms and lead forms on your website, so you can improve the conversions to grow your business.

      -
    • -
    • -

      Search Console Report shows you exactly how well your website is ranking in Google, so you can further optimize your SEO to grow your organic traffic.

      -
    • -
    • -

      Custom Dimensions Report helps you dig deeper by showing you useful stats like who are your most popular authors, what are the best publication times, which are your most popular categories or tags, how well are your Yoast focus keywords and SEO score performing, and more.

      -
    • -
    • -

      Site Speed Report makes it easy to track pagespeed insights and loading times for your website and get the information you need to improve user experience and your SEO rankings.

      -
    • -
    • -

      Landing Page Report instantly shows you which pages need to be optimized to increase engagement and help you make more money without needing to log into Google Analytics.

      -
    • -
    • -

      Source and Medium Report gives you an easy view of Google Analytics UTM tracking to see where you traffic comes from.

      -
    • -
    • -

      Technology Report shows you which devices and browsers visit your website, so you can optimize for each visitor.

      -
    • -
    • -

      Campaign Report easily unlocks all of your Google Analytics UTM tracking to show you how effective your marketing efforts have been.

      -
    • -
    • -

      Pages Report shows you which pages are most poplular on your website, and shows impressive metrics like bounce rate, engaged sessions to help you optimize.

      -
    • -
    • -

      Coupon Report showcases your coupon usage, and shows important metrics like average order value and revenue.

      -
    • -
    • -

      Cart Abandon Report shows you which products and the amount of revenue your customer’s are leaving in their carts.

      -
    • -
    • -

      Funnel Report visually shows you how many people view items in your store, add to cart, and make a purchase. You can easily breakdown the funnel and conversion report into channel, and customize your dates for in depth analysis. Works automatically with WooCommerce analytics, and Easy Digital Downloads.

      -
    • -
    -

    Our custom Google Analytics Dashboard reports are based on over 12+ years of online business experience. We built MonsterInsights to be the Google Analytics plugin that we wish we had.

    -

    We currently use MonsterInsights on all our portfolio companies which include both media sites generating tens of millions of pageviews and eCommerce sites generating millions in sales.

    -
    -

    I love being able to drill down into the analytics via the reporting feature. I have the PRO version and it makes a big difference what you can analyze. I’m glad that I can integrate with Pretty Links too!
    - Kim Beasley – MonsterInsights user

    -
    -

    Simply put, MonsterInsights allow you to take full advantage of all the powerful Google Analytics features.

    -

    After reading this exhaustive feature list, you can probably imagine why MonsterInsights is the best Google Analytics plugin for WordPress.

    -

    Give MonsterInsights a try.

    -

    Credits

    -

    This plugin is created by Chris Christoff and Syed Balkhi with sponsorship from WPBeginner.

    -

    Branding Guidelines

    -

    MonsterInsights® is a registered trademark of MonsterInsights LLC. When writing about the Google Analytics for WordPress plugin by MonsterInsights, please make sure to uppercase the first letters of both word.

    -
      -
    • MonsterInsights (correct)
    • -
    • Monster Insights (incorrect)
    • -
    • monsterinsights (incorrect)
    • -
    • monsterinsight (incorrect)
    • -
    -', '9.9.0', 'chriscct7', '5.6.0', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.9.0.zip', '2007-09-14 00:00:00+00', '2025-10-15 14:20:00+00', 'https://profiles.wordpress.org/chriscct7/', 92, 3086, 8, 6, 2000000, 240215068, 'https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=pluginurl&utm_content=7%2E0%2E0', 'http://www.wpbeginner.com/wpbeginner-needs-your-help/', NULL, NULL, 'https://wordpress.org/support/plugin/google-analytics-for-wordpress/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "MonsterInsights – Google Analytics Dashboard for WordPress (Website Stats Made Easy)", "slug": "google-analytics-for-wordpress", "tags": {"analytics": "analytics", "google-analytics": "google analytics", "website-analytics": "website analytics", "wordpress-analytics": "WordPress analytics", "google-analytics-dashboard": "google analytics dashboard"}, "added": "2007-09-14", "icons": {"1x": "https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=2976619", "svg": "https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=2976619"}, "author": "chriscct7", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/google-analytics-for-wordpress/assets/banner-772x250.png?rev=2159532", "high": "https://ps.w.org/google-analytics-for-wordpress/assets/banner-1544x500.png?rev=2159532"}, "ratings": {"1": 261, "2": 53, "3": 44, "4": 90, "5": 2638}, "version": "9.9.0", "homepage": "https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=pluginurl&utm_content=7%2E0%2E0", "requires": "5.6.0", "sections": {"faq": "

    For all frequently asked questions, and their answers, check the MonsterInsights Docs.

    \n\n
    \nWhy use Google Analytics vs WordPress stats?\n\n

    \n

    Native WordPress stats plugins will always slow down your website because they rely on your WordPress hosting server. Most of them do not provide accurate WordPress analytics either.

    \n

    Some WordPress stats plugins use third-party servers to mitigate this issue, but they all lack powerful features that Google Analytics can offer.

    \n

    Google Analytics is the #1 analytics solution in the world. It comes with all the powerful features that you can ever ask for. MonsterInsights makes it easy for you to use all advanced Google Analytics features in WordPress.

    \n

    \n
    \nWhy choose Google Analytics by MonsterInsights vs Google Site Kit?\n\n

    \n

    The MonsterInsights Google Analytics plugin is built for all types of websites, large or small, to get up and running quickly with Google Analytics and Google Analytics 4.

    \n

    Beyond simply providing a Google Analytics dashboard, our plugin makes configuring advanced features as easy as point-and-click that would otherwise still require a developer to implement.

    \n

    Our Google Analytics plugin also includes many features such as Google Ads tracking, Google Optimize support, form conversion reporting, goal tracking, Search Console integration, Pagespeed insights, advanced eCommerce tracking, and more.

    \n

    There’s a reason over 3 million users have trusted MonsterInsights to provide Google Analytics data to their website.

    \n

    \n
    \nCan I use MonsterInsights together with another Google Analytics plugin?\n\n

    \n

    No. You should only use one Google Analytics plugin on your WordPress site. If you use multiple Google Analytics plugins, then you will compromise your data integrity.

    \n

    We recommend uninstalling other Google Analytics plugins before you install MonsterInsights.

    \n

    \n
    \nWhy does MonsterInsights load Google Analytics in WordPress header section?\n\n

    \n

    Some people believe that loading Google Analytics in WordPress header will slow down your website. That’s a myth. The Analytics code loads asynchronously which means that it does not impact your website speed at all.

    \n

    MonsterInsights loads code in WordPress header because it makes sure that you have the most accurate tracking.

    \n

    \n
    \nDoes MonsterInsights work with ad blockers?\n\n

    \n

    As of version 7.18, Pro users of MontersInsights can use a locally hosted version of Google Analytics (gtag) which helps with tracking data accuracy. This version can also improve the performance of your website, compared to hosting the script on Google Analytics servers.

    \n

    \n
    \nCan I hide Google Analytics from tracking Administrators and Editors?\n\n

    \n

    Yes. By default we do not send data to Google Analytics for logged-in WordPress administrators and editors. You can add easily block additional user roles.

    \n

    \n
    \nHow does MonsterInsights help with Google Analytics GDPR compliance?\n\n

    \n

    MonsterInsights helps make Google Analytics GDPR compliance easier for business owners.

    \n

    Our EU compliance addon allows you to:

    \n
      \n
    • Anonymize IPs to Google Analytics
    • \n
    • Disable the Demographics and Interest Reports for Remarketing and Advertising
    • \n
    • Disable UserID and author name tracking
    • \n
    • Integrate with Cookie Notice and CookieBot plugins to collect user consent before tracking
    • \n
    • Integrate with Google AMP Consent Box before enable tracking
    • \n
    • Integrate with Google Analytics Chrome browser opt-out extension and built-in cookie opt-out system
    • \n
    • Offer Easy Opt Out link for Google Analytics tracking
    • \n
    \n

    While no single plugin can guarantee 100% GDPR compliance in WordPress, MonsterInsights goes to great lengths in helping business owners with GDPR compliance.

    \n

    For more details, see: GDPR and MonsterInsights – Everything You Need to Know.

    \n

    \n
    \nWhich eCommerce plugins are compatible with MonsterInsights Enhanced Ecommerce Tracking feature?\n\n

    \n

    If you are looking to enable Google Analytics Ecommerce tracking in WordPress, then MonsterInsights is the best solution to do that.

    \n

    With just 1-click, you can enable Google Analytics Enhanced Ecommerce Tracking for WooCommerce and see WooCommerce analytics report right inside your WordPress dashboard.

    \n

    MonsterInsights Enhanced eCommerce tracking works out of the box with WooCommerce, Easy Digital Downloads, MemberPress and 10+ other advanced integrations. These include:

    \n
      \n
    • Yoast SEO – Easily view and analyze YoastSEO scores directly inside Google Analytics with custom dimensions.
    • \n
    • Gravity Forms, Formidable Forms, Contact Forms 7 – View form events and conversion statistics.
    • \n
    • LifterLMS – Track sales data inside Google Analytics.
    • \n
    • GiveWP – Track donations as eCommerce events inside Google Analytics.
    • \n
    • Restrict Content Pro – View Google Analytics eCommerce data.
    • \n
    • WordPress Comment Forms – See which articles are driving the most engagement inside Google Analytics.
    • \n
    • Generic Forms – Easily add Google Analytics conversion tracking data to your website, no coding needed for all types of forms.
    • \n
    \n

    \n
    \nDoes MonsterInsights work on WordPress multisite?\n\n

    \n

    Yes. MonsterInsights offers the most comprehensive Google Analytics solution for WordPress multi-site.

    \n

    It comes with advanced permission control, sample rate control, and other options that you need to properly enable Google Analytics on WordPress multisite.

    \n

    \n
    \nDoes MonsterInsights support Google Analytics v4 (GAv4)\n\n

    \n

    Yes, we fully support Google Analytics v4 (GAv4) properties as well as GAv3 (Universal) properties. In fact, you can track your site to both at the same time using our exclusive dual tracking feature.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy BrahimLachgar (bralachcodex) on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very Good

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    nice and ease

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nurunnobi2924 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this is an very good plugin to use

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy martin80906 on October 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks, Google!

    \n\n\n\n

    Martin H.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tutto va bene

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy velikaya on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    recensione max

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Website Analytics Made Simple and Powerful!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy willfulmer on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    MonsterInsights makes tracking website performance effortless, with clear, real-time insights right inside WordPress. It’s powerful yet beginner-friendly—an absolute 5-star must-have for understanding and growing your site!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful plugin !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy a3design on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useful plugin, super simple to use!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Hace su trabajo

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Mariana (creatiburon) on September 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Es un plugin útil para personas que no tienen conocimientos técnicos y que necesitan tener un resumen en su web de la actividad en Analytics

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Da evitare

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy duccio75 on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Oltre al plugin per gli articoli correlati vengono installati anche diversi altri plugin non richiesti, come Wpform, AISEO e molti altri, alcuni dei quali vanno in conflitto con altri plugin già presenti sul sito.
    Mi ci sono voluti diversi minuti per ripulire il sito da tutti i plugin che mi sono stati installati e ancora mi sono rimaste tracce.
    Adesso devo andare a scollegarlo da Google Analitycs.
    Evitate questo plugin e vi risparmierete un sacco di grane inutili.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ashphillips387 on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Amazing tool

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jgaffphoto on September 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great tool

    \n
    \n
    \n", "changelog": "

    9.9.0: October 15, 2025

    \n
      \n
    • New: Unlock new organic traffic insights with our completely updated Google Search Console report
    • \n
    • New: Automatically track eCommerce sales with LinkedIn and SnapChat PPC campaigns-
    • \n
    • Updated: Various bug fixes and updates
    • \n
    \n

    9.8.0: September 10, 2025

    \n
      \n
    • New: Google Ads Integration! Set up Google Ads campaigns directly from the MonsterInsights dashboard.
    • \n
    • New: AI Traffic Report – see what LLMs are sending traffic to your website
    • \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.7.0: August 7, 2025

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.6.1: June 26, 2025

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.6.0: June 17, 2025

    \n
      \n
    • Enhancement: Updated Forms Report to include more metrics and stats
    • \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.5.3: May 14, 2025

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.5.2: May 6, 2025

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.5.1: May 5, 2025

    \n
      \n
    • New: Support for Pinterest PPC conversion tracking
    • \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.4.1: March 27, 2025

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.4.0: March 25, 2025

    \n
      \n
    • New: Support for TikTok PPC conversion tracking
    • \n
    • Enhancement: Adding translatable strings throughout our plugin. More to come!
    • \n
    • Enhancement: Our monthly statistics emails got a fresh facelift
    • \n
    • Enhancement: Our plugin code now follows WP VIP standards
    • \n
    \n

    9.3.0: February 18, 2025

    \n
      \n
    • New: Overview Report Metrics
    • \n
    • New: Cart Abandonment Report
    • \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.2.4: December 13, 2024

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.2.3: December 11, 2024

    \n
      \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.2.2: November 13, 2024

    \n
      \n
    • New: Our Year In Review report is here. This report will automatically show up starting on January 1
    • \n
    • Update: We’ll now check to ensure your website time zone matches Google Analytics
    • \n
    \n

    9.2.1: October 31, 2024

    \n
      \n
    • Fixed: Fixed a bug in the Headline Analyzer tool causing errors in WordPress versions lower than 6.6
    • \n
    \n

    9.2.0: October 23, 2024

    \n
      \n
    • New: Country and region report to see where and how your visitors find your website
    • \n
    • New: Advanced tracking options for users of Google Tag Manager
    • \n
    • New: SEO & RankMath Integrations with our Custom Dimensions addon
    • \n
    • Fixed: Minor updates and bug fixes
    • \n
    \n

    9.1.1: September 24, 2024

    \n
      \n
    • Fix: We fixed a PHP issue related to translations.
    • \n
    \n

    9.1.0: September 23, 2024

    \n
      \n
    • New: Stats at a Glance report shows you information about your website in a whole new way.
    • \n
    • New: Google Ads Enhanced Conversion Support & Meta Conversion API Support (CAPI) for PPC Campaigns
    • \n
    • Enhanced: Updated Google Analytics tag loading order to help increase Core Web Vital scores.
    • \n
    • Fixed: Lots of minor updates and bug fixes.
    • \n
    \n

    9.0.1: August 21, 2024

    \n
      \n
    • Fix: We resolved an issue in the Onboarding Recommended Addons page.
    • \n
    \n

    9.0.0: July 29, 2024

    \n
      \n
    • New: Conversations AI – chat with your website’s analytics without any need to read reports
    • \n
    • New: AI Insights – Get automated insights about your website with the power of AI
    • \n
    • Fix: We fixed a PHP error occurring inside our Forms reports
    • \n
    \n

    8.28.0: July 08, 2024

    \n

    -New: Date Comparisons – Now you can easily compare your stats on any chart or graph.
    \n-Enhancement: We updated tooltips to make it easier to understand some options.

    \n

    8.27.0: May 29, 2024

    \n
      \n
    • New: Site Notes Automations addon.
    • \n
    • Fix: We fixed an issue related to eCommerce abandoned checkouts.
    • \n
    • Fix: We fixed an issue related to UserJourney report pages.
    • \n
    • Enhancement: We improved the notification system.
    • \n
    \n

    8.26.0: April 16, 2024

    \n
      \n
    • New: Added new Exceptions Report
    • \n
    • New: Added new Google Consent support.
    • \n
    • Enhancement: We improved the country list in the Funnel Report.
    • \n
    • Fix: We solved an issue occurring in the plugin onboarding process.
    • \n
    • Fix: We solved a style issue related to abandoned checkouts in reports.
    • \n
    \n

    8.25.0: March 05, 2024

    \n
      \n
    • Enhancement: Improved Site Speed report.
    • \n
    • Fix: We solved an issue related to flag icons.
    • \n
    • Fix: We solved some JavaScript errors occurring with third-party plugins.
    • \n
    \n

    8.24.0: February 19, 2024

    \n
      \n
    • New: Site Insights Gutenberg block. Easily share website stats with your visitors.
    • \n
    • New: PrivacyGuard Feature – Proactively block PII (Personally Identifiable Information) from ever making it to Google Analytics
    • \n
    • New: EEA Checker tool for Google Ads / Analytics Requirements
    • \n
    • Fix: We solved an issue occurring in the Weekly/Monthly Email reports.
    • \n
    • Fix: We solved an issue occurring with Popular Posts.
    • \n
    • Fix: We solved an issue occurring with Tracking Video Title in Divi theme.
    • \n
    \n

    8.23.1: December 18, 2023

    \n
      \n
    • Fix: We fixed an issue related to All in One SEO plugin.
    • \n
    \n

    8.23.0: December 14, 2023

    \n
      \n
    • New: Our Year In Review report is here. This report will automatically show up starting in January 1 until Jan 14 2024.
    • \n
    • Fix: We fixed an issue occurring with Site Notes.
    • \n
    • Fix: We fixed minor issues in the Gutenberg blocks.
    • \n
    • Fix: We added support for WooCommerce custom order status.
    • \n
    \n

    8.22.0: November 29, 2023

    \n
      \n
    • Enhancement: Improved Social Media report.
    • \n
    • Fix: We fixed the View More link in the Email Summaries.
    • \n
    • Fix: We fixed a Vue warning in Site Notes.
    • \n
    • Fix: We fixed the sporadic Error 429 from Google Analytics API.
    • \n
    • Fix: We fixed a duplicate error message in the Setup Checklist.
    • \n
    \n

    8.21.0: November 13, 2023

    \n
      \n
    • New: Social Media report.
    • \n
    • New: Exclude query parameters from GA4 data stream.
    • \n
    • Enhancement: Improved compatibility towards WordPress 6.4.1.
    • \n
    • Fix: We fixed an issue that occurred with Pretty Links.
    • \n
    \n

    8.20.2: November 01, 2023

    \n
      \n
    • Fix: Popular posts, we fixed a bug occurring in curated popular posts.
    • \n
    \n

    8.20.1: October 09, 2023

    \n
      \n
    • Fix: We updated our lite emails to render better inside multiple mail clients. We also changed the emails to send out monthly instead of weekly. To disable emails go to Settings -> Advanced – Toggle the “Enable Email Summaries.
    • \n
    \n

    8.20: October 03, 2023

    \n
      \n
    • New: Google Analytics and eCommerce support for WishList Member
    • \n
    • New: Google Analytics and eCommerce support for WPCharitable
    • \n
    • Enhanced: Improved support for PHP 8.2.
    • \n
    • Enhanced: Improved Site Health compatibility.
    • \n
    • Fixed: Restrict Content Pro, we fixed the refund event in GoogleAnalytics when order status is failed or abandoned.
    • \n
    • Fixed: We fixed some minor bugs related to notifications.
    • \n
    • Fixed: Popular posts, we fixed a bug occurring in curated popular posts.
    • \n
    • Fixed: We fixed some minor bugs related to User Journey.
    • \n
    \n

    8.19: August 23, 2023

    \n
      \n
    • New: Ecommerce funnel report for WooCommerce and Easy Digital Downloads.
    • \n
    • New: Setup checklist to get up and running faster
    • \n
    • Enhanced: Improved support for PHP 8.2.
    • \n
    • Fixed: We fixed a bug that occurred with Yoast SEO Scores.
    • \n
    • Fixed: We fixed a bug in the Pretty Links integration.
    • \n
    \n

    8.18: July 24, 2023

    \n
      \n
    • New: Added 6 Completely New Pro Reports to bring the power of Google Analytics into your WordPress dashboard.
    • \n
    • Fixed: We fixed an issue that prevented tracking with WPML.
    • \n
    • Fixed: We fixed an issue that prevented tracking the User Journey with MemberPress.
    • \n
    \n

    8.17: June 29, 2023

    \n
      \n
    • Updated: Removed dual tracking panel and limit reporting to GA4 only properties.
    • \n
    • Fixed: We fixed a bug in the WPForms integration.
    • \n
    • Fixed: We fixed a bug in the AffiliateWP integration.
    • \n
    \n

    8.16: June 19, 2023

    \n
      \n
    • New: User Journey report now available! See all of your website’s purchases in one screen.
    • \n
    • Update: We updated the Popular Posts to support themes that allow widgets.
    • \n
    • Fixed: We fixed some layout issues in exported PDF reports.
    • \n
    • Fixed: We fixed the deprecated YOAST function WPSEO_Utils::translate_score().
    • \n
    • Fixed: We fixed a bug occurring while downloading files having the file download tracking enabled.
    • \n
    \n

    8.15: May 03, 2023

    \n
      \n
    • New: Site Notes allows you to record important website events right inside your WordPress dashboard.
    • \n
    • Update: Fix EDD integration.
    • \n
    • Update: Mobile screen optimizations.
    • \n
    \n

    8.14.1: Apr 11, 2023

    \n
      \n
    • Fixed: We fixed a PHP warning error and added additional security hardening.
    • \n
    \n

    8.14.0: Mar 29, 2023

    \n
      \n
    • New: Our New PPC Tracking addon allows you to effortlessly track sales inside Google Ads, Microsoft Ads, and Meta.
    • \n
    • Enhancement: We updated and tweaked lots elements to make our dashboard easier to use
    • \n
    \n

    8.13.1: Mar 14, 2023

    \n
      \n
    • Fixed: We fixed a bug that could cause an issue if Google’s API endpoint returned a non-200 response.
    • \n
    \n

    8.13.0: Mar 13, 2023

    \n
      \n
    • Enhancement: We enhanced the notifications user experience.
    • \n
    • Fixed: We fixed the PDF reports header.
    • \n
    • Update: We applied additional security hardening.
    • \n
    \n

    8.12.1: Jan 12, 2023

    \n
      \n
    • Fix: We made updates to authentication
    • \n
    \n

    8.12.0: Jan 12, 2023

    \n
      \n
    • Enhancement: We updated and fixed some UI/UX elements to make MonsterInsights easier to use
    • \n
    • Enhancement: We optimized our Javascript code to work better with minification plugins
    • \n
    • Enhancement: We optimized our code to work better with PHP8
    • \n
    \n

    See our changelog for previous releases.

    \n", "description": "

    Google Analytics Plugin for WordPress

    \n

    With over 3 million active installs, MonsterInsights is the most popular Google Analytics plugin for WordPress.

    \n

    We believe that it’s easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights shows you the analytics and stats that matter, so you can grow your business with confidence.

    \n

    At MonsterInsights, we make it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.

    \n

    Unlike other Google Analytics plugins, MonsterInsights allows you to enable all advanced Google Analytics tracking features with just a few clicks (no need to hire a developer).

    \n

    The best part is that MonsterInsights comes with an analytics dashboard for WordPress that shows you actionable analytics reports right inside your WordPress dashboard. We have created customized reports that eliminate the fluff and only show you the stats that matter, so you can see exactly what’s working and what’s not!

    \n

    Simply put, MonsterInsights is the most complete Google Analytics plugin for WordPress that’s both EASY and POWERFUL.

    \n

    That’s why millions of small businesses and top companies like Microsoft, Bloomberg, FedEx, Yelp, Subway, etc. use MonsterInsights to setup Google Analytics on their WordPress sites.

    \n
    \n

    MonsterInsights Pro
    \n This plugin is the lite version of MonsterInsights Pro plugin that comes with all the tracking features you will ever need including events tracking, ecommerce tracking, custom dimensions tracking, page speed reports, popular post tracking, custom dimensions, affiliate link tracking, video tracking and tons more. Click here to purchase the best premium Google Analytics plugin for WordPress now!

    \n
    \n

    We took the pain out of installing Google Analytics in WordPress and made it easy. Here’s why over 3 million smart business owners, designers, and developers love MonsterInsights, and you will too!

    \n

    \n

    Quick & Easy Google Analytics Setup

    \n

    Properly setting up Google Analytics is complicated. You have to either hire a developer or learn how to add advanced code snippets to your website in many different areas. This process can take days or weeks…and can even break your website!

    \n

    With MonsterInsights, we made it “effortless” to properly setup Google Analytics in WordPress. Yes, you can enable all advanced Google Analytics features with just a few clicks.

    \n

    If you can point-and-click, then you can set up Google Analytics inside WordPress and start seeing insights in under 15 minutes (no code necessary).

    \n

    See what one business owner is saying about MonsterInsights:

    \n
    \n

    It just works. Really easy way to insert Google Analytics tracking code and keep it there when switching themes. No need to copy/paste code anywhere. This is the best way to handle Google Analytics in WordPress.
    \n Steven Gliebe

    \n
    \n

    Google Analytics Dashboard

    \n

    Our goal at MonsterInsights is to make Google Analytics easy and accessible for everyone.

    \n

    We understand that Google Analytics has a steep learning curve. That’s why MonsterInsights comes with a built-in Google Analytics Dashboard for your WordPress site, so you can see all the useful information about your visitors right inside your WordPress dashboard.

    \n

    We have even created customized reports to help you filter through the noise and see the stats that really matter!

    \n
      \n
    • \n

      Audience Report shows you detailed insights like which country your visitors are coming from, what are they most interested in, which device are they using, their age, gender, and more.

      \n
    • \n
    • \n

      Publishers Report helps you understand which pages your visitors are arriving, and which pages they are leaving from. Designed specifically for blogs and other resource sites, this powerful report will show you which outbound links are getting clicked so you can easily optimize for higher conversions.

      \n
    • \n
    • \n

      Content Report shows you stats on exactly which content gets the most visits, so you can stop guessing and start creating content that gets more traffic and conversion.

      \n
    • \n
    • \n

      Ecommerce Report shows you important store stats like total revenue, conversion rate, average order value, top referral sources, and more (all in one place).

      \n
    • \n
    • \n

      Forms Report shows you conversion stats for various contact forms and lead forms on your website, so you can improve the conversions to grow your business.

      \n
    • \n
    • \n

      Search Console Report shows you exactly how well your website is ranking in Google, so you can further optimize your SEO to grow your organic traffic.

      \n
    • \n
    • \n

      Custom Dimensions Report helps you dig deeper by showing you useful stats like who are your most popular authors, what are the best publication times, which are your most popular categories or tags, how well are your Yoast focus keywords and SEO score performing, and more.

      \n
    • \n
    • \n

      Site Speed Report makes it easy to track pagespeed insights and loading times for your website and get the information you need to improve user experience and your SEO rankings.

      \n
    • \n
    • \n

      Landing Page Report instantly shows you which pages need to be optimized to increase engagement and help you make more money without needing to log into Google Analytics.

      \n
    • \n
    • \n

      Source and Medium Report gives you an easy view of Google Analytics UTM tracking to see where you traffic comes from.

      \n
    • \n
    • \n

      Technology Report shows you which devices and browsers visit your website, so you can optimize for each visitor.

      \n
    • \n
    • \n

      Campaign Report easily unlocks all of your Google Analytics UTM tracking to show you how effective your marketing efforts have been.

      \n
    • \n
    • \n

      Pages Report shows you which pages are most poplular on your website, and shows impressive metrics like bounce rate, engaged sessions to help you optimize.

      \n
    • \n
    • \n

      Coupon Report showcases your coupon usage, and shows important metrics like average order value and revenue.

      \n
    • \n
    • \n

      Cart Abandon Report shows you which products and the amount of revenue your customer’s are leaving in their carts.

      \n
    • \n
    • \n

      Funnel Report visually shows you how many people view items in your store, add to cart, and make a purchase. You can easily breakdown the funnel and conversion report into channel, and customize your dates for in depth analysis. Works automatically with WooCommerce analytics, and Easy Digital Downloads.

      \n
    • \n
    \n

    Our custom Google Analytics Dashboard reports are based on over 12+ years of online business experience. We built MonsterInsights to be the Google Analytics plugin that we wish we had.

    \n

    We currently use MonsterInsights on all our portfolio companies which include both media sites generating tens of millions of pageviews and eCommerce sites generating millions in sales.

    \n
    \n

    I love being able to drill down into the analytics via the reporting feature. I have the PRO version and it makes a big difference what you can analyze. I’m glad that I can integrate with Pretty Links too!
    \n Kim Beasley – MonsterInsights user

    \n
    \n

    Simply put, MonsterInsights allow you to take full advantage of all the powerful Google Analytics features.

    \n

    After reading this exhaustive feature list, you can probably imagine why MonsterInsights is the best Google Analytics plugin for WordPress.

    \n

    Give MonsterInsights a try.

    \n

    Credits

    \n

    This plugin is created by Chris Christoff and Syed Balkhi with sponsorship from WPBeginner.

    \n

    Branding Guidelines

    \n

    MonsterInsights® is a registered trademark of MonsterInsights LLC. When writing about the Google Analytics for WordPress plugin by MonsterInsights, please make sure to uppercase the first letters of both word.

    \n
      \n
    • MonsterInsights (correct)
    • \n
    • Monster Insights (incorrect)
    • \n
    • monsterinsights (incorrect)
    • \n
    • monsterinsight (incorrect)
    • \n
    \n", "screenshots": "
    1. \"The

      The overview report

    2. \"Top

      Top countries and referrals

    3. \"Top

      Top posts and pages

    4. \"Authentication

      Authentication with MonsterInsights

    5. \"Settings

      Settings page

    6. \"File

      File download tracking

    7. \"eCommerce

      eCommerce tracking - no configuration required (Pro feature)

    8. \"eCommerce

      eCommerce report (Pro feature)

    9. \"Search

      Search console report (Pro feature)

    10. \"Custom

      Custom dimensions tracking (Pro feature)

    11. \"Custom

      Custom Dimensions report (Pro feature)

    ", "installation": "
      \n
    1. Install Google Analytics for WordPress by MonsterInsights either via the WordPress.org plugin repository or by uploading the files to your server. (See instructions on how to install a WordPress plugin)
    2. \n
    3. Activate Google Analytics for WordPress by MonsterInsights.
    4. \n
    5. Navigate to the Insights tab in your WordPress admin menu and configure the plugin.
    6. \n
    7. Want more features? Purchase MonsterInsights Pro!
    8. \n
    \n"}, "versions": {"8.15": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.15.zip", "8.16": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.16.zip", "8.17": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.17.zip", "8.18": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.18.zip", "8.1.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.1.0.zip", "8.2.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.2.0.zip", "8.3.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.3.0.zip", "8.3.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.3.1.zip", "8.3.2": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.3.2.zip", "8.3.3": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.3.3.zip", "8.3.4": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.3.4.zip", "8.4.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.4.0.zip", "8.5.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.5.0.zip", "8.5.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.5.1.zip", "8.5.2": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.5.2.zip", "8.5.3": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.5.3.zip", "8.6.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.6.0.zip", "8.7.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.7.0.zip", "8.8.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.8.0.zip", "8.8.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.8.1.zip", "8.8.2": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.8.2.zip", "8.9.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.9.0.zip", "8.9.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.9.1.zip", "9.0.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.0.0.zip", "9.0.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.0.1.zip", "9.1.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.1.0.zip", "9.1.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.1.1.zip", "9.2.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.2.0.zip", "9.2.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.2.1.zip", "9.2.2": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.2.2.zip", "9.2.3": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.2.3.zip", "9.2.4": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.2.4.zip", "9.3.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.3.0.zip", "9.3.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.3.1.zip", "9.4.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.4.0.zip", "9.4.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.4.1.zip", "9.5.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.5.1.zip", "9.5.2": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.5.2.zip", "9.5.3": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.5.3.zip", "9.6.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.6.0.zip", "9.6.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.6.1.zip", "9.7.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.7.0.zip", "9.8.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.8.0.zip", "9.9.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.9.0.zip", "trunk": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.zip", "8.10.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.10.0.zip", "8.10.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.10.1.zip", "8.11.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.11.0.zip", "8.12.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.12.0.zip", "8.12.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.12.1.zip", "8.13.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.13.0.zip", "8.13.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.13.1.zip", "8.14.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.14.0.zip", "8.14.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.14.1.zip", "8.19.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.19.0.zip", "8.20.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.20.0.zip", "8.20.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.20.1.zip", "8.21.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.21.0.zip", "8.22.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.22.0.zip", "8.23.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.23.0.zip", "8.23.1": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.23.1.zip", "8.24.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.24.0.zip", "8.25.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.25.0.zip", "8.26.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.26.0.zip", "8.27.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.27.0.zip", "8.28.0": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.28.0.zip"}, "downloaded": 240215068, "description": "

    Google Analytics Plugin for WordPress

    \n

    With over 3 million active installs, MonsterInsights is the most popular Google Analytics plugin for WordPress.

    \n

    We believe that it’s easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights shows you the analytics and stats that matter, so you can grow your business with confidence.

    \n

    At MonsterInsights, we make it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.

    \n

    Unlike other Google Analytics plugins, MonsterInsights allows you to enable all advanced Google Analytics tracking features with just a few clicks (no need to hire a developer).

    \n

    The best part is that MonsterInsights comes with an analytics dashboard for WordPress that shows you actionable analytics reports right inside your WordPress dashboard. We have created customized reports that eliminate the fluff and only show you the stats that matter, so you can see exactly what’s working and what’s not!

    \n

    Simply put, MonsterInsights is the most complete Google Analytics plugin for WordPress that’s both EASY and POWERFUL.

    \n

    That’s why millions of small businesses and top companies like Microsoft, Bloomberg, FedEx, Yelp, Subway, etc. use MonsterInsights to setup Google Analytics on their WordPress sites.

    \n
    \n

    MonsterInsights Pro
    \n This plugin is the lite version of MonsterInsights Pro plugin that comes with all the tracking features you will ever need including events tracking, ecommerce tracking, custom dimensions tracking, page speed reports, popular post tracking, custom dimensions, affiliate link tracking, video tracking and tons more. Click here to purchase the best premium Google Analytics plugin for WordPress now!

    \n
    \n

    We took the pain out of installing Google Analytics in WordPress and made it easy. Here’s why over 3 million smart business owners, designers, and developers love MonsterInsights, and you will too!

    \n

    \n

    Quick & Easy Google Analytics Setup

    \n

    Properly setting up Google Analytics is complicated. You have to either hire a developer or learn how to add advanced code snippets to your website in many different areas. This process can take days or weeks…and can even break your website!

    \n

    With MonsterInsights, we made it “effortless” to properly setup Google Analytics in WordPress. Yes, you can enable all advanced Google Analytics features with just a few clicks.

    \n

    If you can point-and-click, then you can set up Google Analytics inside WordPress and start seeing insights in under 15 minutes (no code necessary).

    \n

    See what one business owner is saying about MonsterInsights:

    \n
    \n

    It just works. Really easy way to insert Google Analytics tracking code and keep it there when switching themes. No need to copy/paste code anywhere. This is the best way to handle Google Analytics in WordPress.
    \n Steven Gliebe

    \n
    \n

    Google Analytics Dashboard

    \n

    Our goal at MonsterInsights is to make Google Analytics easy and accessible for everyone.

    \n

    We understand that Google Analytics has a steep learning curve. That’s why MonsterInsights comes with a built-in Google Analytics Dashboard for your WordPress site, so you can see all the useful information about your visitors right inside your WordPress dashboard.

    \n

    We have even created customized reports to help you filter through the noise and see the stats that really matter!

    \n
      \n
    • \n

      Audience Report shows you detailed insights like which country your visitors are coming from, what are they most interested in, which device are they using, their age, gender, and more.

      \n
    • \n
    • \n

      Publishers Report helps you understand which pages your visitors are arriving, and which pages they are leaving from. Designed specifically for blogs and other resource sites, this powerful report will show you which outbound links are getting clicked so you can easily optimize for higher conversions.

      \n
    • \n
    • \n

      Content Report shows you stats on exactly which content gets the most visits, so you can stop guessing and start creating content that gets more traffic and conversion.

      \n
    • \n
    • \n

      Ecommerce Report shows you important store stats like total revenue, conversion rate, average order value, top referral sources, and more (all in one place).

      \n
    • \n
    • \n

      Forms Report shows you conversion stats for various contact forms and lead forms on your website, so you can improve the conversions to grow your business.

      \n
    • \n
    • \n

      Search Console Report shows you exactly how well your website is ranking in Google, so you can further optimize your SEO to grow your organic traffic.

      \n
    • \n
    • \n

      Custom Dimensions Report helps you dig deeper by showing you useful stats like who are your most popular authors, what are the best publication times, which are your most popular categories or tags, how well are your Yoast focus keywords and SEO score performing, and more.

      \n
    • \n
    • \n

      Site Speed Report makes it easy to track pagespeed insights and loading times for your website and get the information you need to improve user experience and your SEO rankings.

      \n
    • \n
    • \n

      Landing Page Report instantly shows you which pages need to be optimized to increase engagement and help you make more money without needing to log into Google Analytics.

      \n
    • \n
    • \n

      Source and Medium Report gives you an easy view of Google Analytics UTM tracking to see where you traffic comes from.

      \n
    • \n
    • \n

      Technology Report shows you which devices and browsers visit your website, so you can optimize for each visitor.

      \n
    • \n
    • \n

      Campaign Report easily unlocks all of your Google Analytics UTM tracking to show you how effective your marketing efforts have been.

      \n
    • \n
    • \n

      Pages Report shows you which pages are most poplular on your website, and shows impressive metrics like bounce rate, engaged sessions to help you optimize.

      \n
    • \n
    • \n

      Coupon Report showcases your coupon usage, and shows important metrics like average order value and revenue.

      \n
    • \n
    • \n

      Cart Abandon Report shows you which products and the amount of revenue your customer’s are leaving in their carts.

      \n
    • \n
    • \n

      Funnel Report visually shows you how many people view items in your store, add to cart, and make a purchase. You can easily breakdown the funnel and conversion report into channel, and customize your dates for in depth analysis. Works automatically with WooCommerce analytics, and Easy Digital Downloads.

      \n
    • \n
    \n

    Our custom Google Analytics Dashboard reports are based on over 12+ years of online business experience. We built MonsterInsights to be the Google Analytics plugin that we wish we had.

    \n

    We currently use MonsterInsights on all our portfolio companies which include both media sites generating tens of millions of pageviews and eCommerce sites generating millions in sales.

    \n
    \n

    I love being able to drill down into the analytics via the reporting feature. I have the PRO version and it makes a big difference what you can analyze. I’m glad that I can integrate with Pretty Links too!
    \n Kim Beasley – MonsterInsights user

    \n
    \n

    Simply put, MonsterInsights allow you to take full advantage of all the powerful Google Analytics features.

    \n

    After reading this exhaustive feature list, you can probably imagine why MonsterInsights is the best Google Analytics plugin for WordPress.

    \n

    Give MonsterInsights a try.

    \n

    Credits

    \n

    This plugin is created by Chris Christoff and Syed Balkhi with sponsorship from WPBeginner.

    \n

    Branding Guidelines

    \n

    MonsterInsights® is a registered trademark of MonsterInsights LLC. When writing about the Google Analytics for WordPress plugin by MonsterInsights, please make sure to uppercase the first letters of both word.

    \n
      \n
    • MonsterInsights (correct)
    • \n
    • Monster Insights (incorrect)
    • \n
    • monsterinsights (incorrect)
    • \n
    • monsterinsight (incorrect)
    • \n
    \n", "donate_link": "http://www.wpbeginner.com/wpbeginner-needs-your-help/", "num_ratings": 3086, "screenshots": {"1": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-1.png?rev=2142744", "caption": "The overview report"}, "2": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-2.png?rev=2142744", "caption": "Top countries and referrals"}, "3": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-3.png?rev=2142744", "caption": "Top posts and pages"}, "4": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-4.png?rev=2012676", "caption": "Authentication with MonsterInsights"}, "5": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-5.png?rev=2012676", "caption": "Settings page"}, "6": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-6.png?rev=2012676", "caption": "File download tracking"}, "7": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-7.png?rev=2012676", "caption": "eCommerce tracking - no configuration required (Pro feature)"}, "8": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-8.png?rev=2142744", "caption": "eCommerce report (Pro feature)"}, "9": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-9.png?rev=2142744", "caption": "Search console report (Pro feature)"}, "10": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-10.jpg?rev=2012676", "caption": "Custom dimensions tracking (Pro feature)"}, "11": {"src": "https://ps.w.org/google-analytics-for-wordpress/assets/screenshot-11.png?rev=2142744", "caption": "Custom Dimensions report (Pro feature)"}}, "support_url": "https://wordpress.org/support/plugin/google-analytics-for-wordpress/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "chriscct7": {"avatar": "https://secure.gravatar.com/avatar/9c0affc8ad4a25431f48a8563264a089650f6332b868bd0e7c999f72741967ed?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/chriscct7/", "display_name": "chriscct7"}}, "last_updated": "2025-10-15 2:20pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.9.0.zip", "author_profile": "https://profiles.wordpress.org/chriscct7/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f48d-731e-83c3-afb2ba7ba40d", "name": "MonsterInsights – Google Analytics Dashboard for WordPress (Website Stats Made Easy)", "slug": "google-analytics-for-wordpress", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760538000, "version": "9.9.0"}, "support_threads": 8, "requires_plugins": [], "short_description": "The best free Google Analytics plugin for WordPress. See how visitors find and use your website so you can grow your business with powerful analytics.", "author_block_count": 1, "author_block_rating": 92, "commercial_support_url": "", "support_threads_resolved": 6}'); -INSERT INTO public.plugins VALUES ('019a30c1-651e-710c-8630-f68eb9827512', 'google-listings-and-ads', 'Google for WooCommerce', 'Native integration with Google that allows merchants to easily display their products across Google’s network.', '

    Effortlessly sync your WooCommerce product feed across Google and be seen by millions of engaged shoppers with the Google for WooCommerce extension. Download and setup takes just five minutes.

    -

    Grow your business with $500 in Google Ads credit

    -

    To help you get started running campaigns, you can get $500 in ad credit when you spend your first $500 on Google Ads within 60 days.

    -

    Terms and conditions apply.

    -

    Sync your WooCommerce product feed to Google Merchant Center

    -

    Seamlessly integrate your WooCommerce store with Google and set yourself up for success.

    -
      -
    • -

      Sync your WooCommerce product feed to Google Merchant Center in just a few clicks. With our API-integrated Product Sync feature, all the data and functionalities from your WooCommerce store will be linked to Google with seamless server-to-server connection.

      -
    • -
    • -

      Have your product listings automatically updated in real time so your prices, promotions, inventories, and other product details stay accurate and synchronized across all your listings.

      -
    • -
    • -

      Access all the tools and features you need to manage your WooCommerce store and grow your business — centralized in one place.

      -
    • -
    -

    Find the right audiences and sell to high-intent customers with Google Ads

    -

    Now your WooCommerce store is discoverable on Google – and you’re ready to launch a Google Ads campaign!

    -
      -
    • Put Google AI to work for you by launching a Google Ads Performance Max campaign. Combined with your unique business insight, Performance Max can help you reach high-value customers using optimized placements, bidding, and more – all aligned with your budget and specific goals.
    • -
    • Showcase your products across Google Shopping, Search, YouTube, Gmail, Maps, Display, and Discover – from a single campaign. Manage all your Google Ads campaigns from your WooCommerce dashboard and on the WooCommerce Mobile App.
    • -
    • Save time and effort by using Google AI to help scale your asset creation. Performance Max will not only create additional copy and images based on the creative you upload, but also mix and match them for the best performing ad combinations.
    • -
    -

    Get custom insights and improve your conversions using Google tag

    -

    Once you’re running Google Ads campaigns, the Google tag feature in the extension enables conversion tracking to give you insights — so you can test and learn what works, and fine-tune your strategy.

    -
      -
    • Easily adjust your product listings in real time to reflect your learnings and business expertise. While the extension maps product attributes by default, it’s simple to modify if you’d like more control.
    • -
    • Leverage automatic Google tagging and conversion tracking to measure what’s working and what’s not. With insight into your customers’ purchase journey, you’ll be able to pinpoint how effectively your ads translate into valuable customer activity.
    • -
    • Take your conversion tracking further with enhanced conversions — a feature designed to improve your measurement accuracy by collecting privacy-conscious data without the need for third-party cookies. So you have the right data to help make your campaign more effective.
    • -
    -', '3.4.3', 'WooCommerce', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.3.zip', '2021-05-10 00:00:00+00', '2025-09-16 06:56:00+00', 'https://profiles.wordpress.org/woocommerce/', 54, 240, 28, 22, 900000, 37486309, NULL, NULL, NULL, NULL, 'https://wordpress.org/support/plugin/google-listings-and-ads/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Google for WooCommerce", "slug": "google-listings-and-ads", "tags": {"ads": "ads", "google": "google", "listings": "listings", "woocommerce": "woocommerce", "product-feed": "product feed"}, "added": "2021-05-10", "icons": {"1x": "https://ps.w.org/google-listings-and-ads/assets/icon.svg?rev=2775988", "svg": "https://ps.w.org/google-listings-and-ads/assets/icon.svg?rev=2775988"}, "author": "WooCommerce", "rating": 54, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/google-listings-and-ads/assets/banner-772x250.png?rev=3133149", "high": "https://ps.w.org/google-listings-and-ads/assets/banner-1544x500.png?rev=3133149"}, "ratings": {"1": 117, "2": 16, "3": 15, "4": 8, "5": 84}, "version": "3.4.3", "homepage": "", "requires": "6.6", "sections": {"faq": "\n
    \nWhat is Google Merchant Center?\n\n

    \n

    Google Merchant Center is like a digital storefront for your products on Google. It’s where you upload and manage information about your products, like titles, descriptions, images, prices, and availability. This data is used to create product listings that can appear across Google.

    \n

    \n
    \nWhy should I connect to Google Merchant Center?\n\n

    \n

    By syncing your product information to Google Merchant Center, your products can appear in relevant Google searches, Shopping tab, image searches, and even on other platforms like YouTube. When running Performance Max campaigns, Google Merchant Center ensures that shoppers see the most up-to-date and accurate information about your product feed, reducing confusion and improving the chances of a purchase.

    \n

    \n
    \nWill my deals and promotions display on Google?\n\n

    \n

    To show your coupons and promotions on Google Shopping listings, make sure you’re using the latest version of Google for WooCommerce. When you create or update a coupon in your WordPress dashboard under Marketing > Coupons, you’ll see a Channel Visibility settings box on the right: select “Show coupon on Google” to enable it. Learn more about managing promotions for Google for WooCommerce. This feature is currently available in Australia, Canada, Germany, France, India, the United Kingdom, and the United States.

    \n

    \n
    \nWhat is Product Sync?\n\n

    \n

    Product Sync is a feature fully integrated into WooCommerce’s management platform that automatically lets you sync your product feed to Google Merchant Center. It will sync all your WooCommerce product data, and you can also add or edit products individually or in bulk. To ensure products are approved by Google, check that your product feed includes the following information:

    \n

    \n
      \n
    • General product information
    • \n
    • Unique product identifiers
    • \n
    • Data requirements for specific categories (auto-assigned by Google):\n
        \n
      • Apparel & Accessories
      • \n
      • Media
      • \n
      • Books
      • \n
      \n
    • \n
    \n

    \n
    \nWhere do I manage my product feed and my Google Ads campaigns?\n\n

    \n

    You can manage and edit all of your products and your Google Ads campaigns right from your WooCommerce dashboard and on the WooCommerce Mobile App.

    \n

    \n
    \nWhere will my products appear?\n\n

    \n

    Once you start running a Performance Max campaign, your approved products will reach more shoppers to help grow your business by being shown on Google Search, Google Maps, the Shopping tab, Gmail, Youtube, the Google Display Network, and Discover feed.

    \n

    \n
    \nWhat are Performance Max campaigns?\n\n

    \n

    Performance Max campaigns help you combine your expertise with Google AI to reach your most valuable customers and drive sales. Just set your goals and budget and Google AI will get your ads seen by the right customers at the right time across Google Search, Google Maps, the Shopping tab, Gmail, Youtube, the Google Display Network, and Discover feed.

    \n

    \n
    \nHow much do Performance Max campaigns cost?\n\n

    \n

    Performance Max campaigns are pay-per-click, meaning you only pay when someone clicks on your ads. To get the best results and ensure your products reach the right customers, we recommend starting with the suggested Google for WooCommerce minimum daily budget for your Performance Max campaign. This helps jumpstart your campaign and drive early conversions. You can always adjust your budget later as you see what works best for your business.

    \n

    \n
    \nCan I sync my products and run Performance Max campaigns on Google for WooCommerce at the same time?\n\n

    \n

    Yes, you can run both at the same time, and we recommend you do! Once you sync your store it’s automatically listed on Google, so you can choose to run a paid Performance Max campaign as soon as you’d like. In the US, advertisers who sync their products to Google and run Google Ads Performance Max campaigns have seen an average of over 50% increase in clicks and over 100% increase in impressions in both their product listings and their ads on the Shopping tab.

    \n

    \n
    \nHow does Google for WooCommerce help me drive sales?\n\n

    \n

    With Google for WooCommerce, you can serve the best-performing ads more often, by using Google AI to pull headlines, images, product details, and more from your product feed and find more relevant customers. Your campaigns will learn and optimize in real time – to help deliver better performance and boost your ROI.

    \n

    \n
    \nWhat are Enhanced conversions?\n\n

    \n

    Enhanced conversions is a feature that can improve the accuracy of your conversion measurement and unlock more powerful bidding. It supplements your existing conversion tags by sending hashed first-party conversion data from your website to Google in a privacy-safe way.

    \n

    \n
    \nWhich countries are available for Google for WooCommerce?\n\n

    \n

    For Performance Max campaigns, learn more about supported countries and currencies here.

    \n

    \n
    \nWhat is Multi-Country Advertising?\n\n

    \n

    Multi-Country Advertising enables you to create a single Google Ads campaign that targets multiple countries at once. Google for WooCommerce automatically populates eligible countries from your Google Merchant Center account into the plug-in ads campaign creation flow.

    \n

    \n
    \nCan I enable Multi-Country Advertising on my existing campaigns?\n\n

    \n

    If you created a campaign before this feature launched, you’ll need to create a new campaign to target new countries with Multi-Country Advertising. Learn more.

    \n

    \n
    \nHow is my ads budget split between the different countries?\n\n

    \n

    Identify the best performing targeted countries with the help of Google AI, to make your ads reach the right shoppers at the right time.

    \n

    \n
    \nWhich countries can I target?\n\n

    \n

    You can only select the countries that you’re targeting on Google Merchant Center. Your target countries must be eligible for both Google Merchant Center and Google Ads.

    \n

    To allow your products to appear in all relevant locations, make sure you’ve correctly configured your shipping for countries where your products can be delivered. Keep in mind that shipping services can cover multiple countries. Learn more about multi-country shipping.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not syncing at all

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kenttkh92 on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Can''t make it to sync into google merchant.

    \n\n\n\n

    Wasting my time.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Got it working with help from plug-in support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kellyo000 on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My shops are on a sub-domain so it was not easy, but after a long text-support chain I think we got it figured out using a snippet :-)

    \n\n\n\n

    My help thread: \"Error updating merchant account in Google Partner APP\"

    \n\n\n\n

    Thanks Guys! WetRock.com

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Extremely poor performance and nothings changed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mrbeerheim on September 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It has been performing very poorly for a long time now, and there hasnt been any updates resolving the issues. This is unacceptable.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Dno i metr mułu

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dariuszpichalski on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    jak google może wypuszczać takie gnioty.... wtyczka nie do skonfigurowania, co chwile robi fikołki i sie wysypuje

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Lots of problems

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy melvinator12 on September 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin doesnt seem to work properly. The products in GOogle Merchant center keep getting sync issues every day. Price difference. It''s very anoying. I am switching to another plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Terrible Multilingual Support and Sync Issues

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy PLUGENIUS (plugenius) on September 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin seems to be created by a makeshift team of amateur programmers, just to throw a WooCommerce plugin on the table. I have never seen such carelessness in a plugin''s functionalities, and I am very surprised that this terrible and useless plugin was approved by the WooCommerce plugin team!

    \n\n\n\n

    First of all, products are never fully synchronized. In particular, this plugin does not handle languages correctly and does not appear to be compatible with the WPML plugin. It requires many hours of work to adapt some data, and even then, products continue to not sync or present issues on the Google Merchant Center platform.

    \n\n\n\n

    The connection with Google accounts, Google Merchant Center, and Google Ads was troublesome, again due to the multilingual nature of the site. It seems the plugin can only be configured for one language, while the others are ignored.

    \n\n\n\n

    I kept this plugin for almost a year, hoping that something would change, but unfortunately, that was not the case. Apparently, it''s not a priority for the developers to improve the functions and reliability of this plugin, which now more than ever proves to be useless.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Loops. Does not sync with Merchant Center.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy samirsmudge (samirbachour) on August 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Horrible plugin. Initially connects to Merchant Center but loops and goes back to fist step to connect again. Do the developers test before releasing? Please fix!

    \n\n\n\n

    If WooCommerce wants to compete with Shopify, this cannot keep happening. Too much time wasted on buggy plugins.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Horrible experience from the start to the end

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy krlg on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is the worst setup experience I''ve ever had - you have to repeat connecting to Google account million times, refresh setup page to finally go to the next step, then you have buttons to connect with Merchant Center and Google Ads account which in 99/100 cases doesn''t work - small circle spins for a few seconds and then nothing happens, you can click it million times and still noting happens. To complete setup you have to go to strange, hidden page (wp-admin/admin.php?page=connection-test-admin-page) where you have to click \"MC Disconnect/Ads Disconnect\" half a million times, then you paste your MC ID/Ads ID and click Setup, return to Official Setup, refresh it many times and when you repeat that whole magic thousand times it finally ''works''. Then it can''t sync your products or disconnects your Merchant Account without reason or just redirects you to Setup Page and you again waste an hour or two for a setup. Overall, I wasted a few hours on this and it the end it doesn''t work. On the ''positive side'' - Merchant Center somehow retrieved my products from Search Console or something, so my day wasn''t totally ruined.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    excelente complemento

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Alvaro Aleman (trabajabien) on June 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    gooo este complemento para woocomerce es demasiado bueno sobre todo para las personas que entramos a este mundo con poco presupuesto y luchamos todos los días por poder de alguna manera promocionar nuestro sitios a verdad muchos éxitos adoro google

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support & plugin both are A+

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy meroving on June 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin and super-fast great support!

    \n
    \n
    \n", "changelog": "

    3.4.3 – 2025-09-16

    \n
      \n
    • Dev – Update NPM packages with security issues.
    • \n
    • Dev – Update NPM packages with security issues.
    • \n
    • Fix – Improve focus handling in TreeSelectControl.
    • \n
    • Fix – Use isGoogleAdsReady property instead of hasGoogleAdsConnection to check for a connected Ads account.
    • \n
    • Tweak – WC 10.2 compatibility.
    • \n
    • Update – Incorporate API changes for EU political advertising.
    • \n
    \n

    3.4.2 – 2025-09-02

    \n
      \n
    • Add – Display the statuses of synchronization modes with Google Merchant Center in WooCommerce System Status Report.
    • \n
    • Tweak – Adjust the value of the Merchant Center setting in the WPCOM proxy endpoint to null before completing onboarding so that Google service can recognize whether the Merchant Center account has been disconnected.
    • \n
    • Tweak – Renamed the log file name from google-listings-and-ads to google-for-woocommerce.
    • \n
    • Update – Include the current plugin version in the WPCOM proxy endpoint for Google service to recognize which plugin version is being used.
    • \n
    • Update – Schedule resynchronization for all products via the Push mode when the Push mode of product synchronization is switched to enable.
    • \n
    \n

    3.4.1 – 2025-08-26

    \n
      \n
    • Fix – Replaced multiple setValue calls with a single setValues call to eliminate race conditions during form initialization and reduce inconsistent validation behavior.
    • \n
    • Tweak – Reduce the cache time for product statuses and issues from 12 hours to 30 minutes.
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    Effortlessly sync your WooCommerce product feed across Google and be seen by millions of engaged shoppers with the Google for WooCommerce extension. Download and setup takes just five minutes.

    \n

    Grow your business with $500 in Google Ads credit

    \n

    To help you get started running campaigns, you can get $500 in ad credit when you spend your first $500 on Google Ads within 60 days.

    \n

    Terms and conditions apply.

    \n

    Sync your WooCommerce product feed to Google Merchant Center

    \n

    Seamlessly integrate your WooCommerce store with Google and set yourself up for success.

    \n
      \n
    • \n

      Sync your WooCommerce product feed to Google Merchant Center in just a few clicks. With our API-integrated Product Sync feature, all the data and functionalities from your WooCommerce store will be linked to Google with seamless server-to-server connection.

      \n
    • \n
    • \n

      Have your product listings automatically updated in real time so your prices, promotions, inventories, and other product details stay accurate and synchronized across all your listings.

      \n
    • \n
    • \n

      Access all the tools and features you need to manage your WooCommerce store and grow your business — centralized in one place.

      \n
    • \n
    \n

    Find the right audiences and sell to high-intent customers with Google Ads

    \n

    Now your WooCommerce store is discoverable on Google – and you’re ready to launch a Google Ads campaign!

    \n
      \n
    • Put Google AI to work for you by launching a Google Ads Performance Max campaign. Combined with your unique business insight, Performance Max can help you reach high-value customers using optimized placements, bidding, and more – all aligned with your budget and specific goals.
    • \n
    • Showcase your products across Google Shopping, Search, YouTube, Gmail, Maps, Display, and Discover – from a single campaign. Manage all your Google Ads campaigns from your WooCommerce dashboard and on the WooCommerce Mobile App.
    • \n
    • Save time and effort by using Google AI to help scale your asset creation. Performance Max will not only create additional copy and images based on the creative you upload, but also mix and match them for the best performing ad combinations.
    • \n
    \n

    Get custom insights and improve your conversions using Google tag

    \n

    Once you’re running Google Ads campaigns, the Google tag feature in the extension enables conversion tracking to give you insights — so you can test and learn what works, and fine-tune your strategy.

    \n
      \n
    • Easily adjust your product listings in real time to reflect your learnings and business expertise. While the extension maps product attributes by default, it’s simple to modify if you’d like more control.
    • \n
    • Leverage automatic Google tagging and conversion tracking to measure what’s working and what’s not. With insight into your customers’ purchase journey, you’ll be able to pinpoint how effectively your ads translate into valuable customer activity.
    • \n
    • Take your conversion tracking further with enhanced conversions — a feature designed to improve your measurement accuracy by collecting privacy-conscious data without the need for third-party cookies. So you have the right data to help make your campaign more effective.
    • \n
    \n", "installation": "

    Minimum Requirements

    \n
      \n
    • WordPress 6.6 or greater
    • \n
    • WooCommerce 9.7 or greater
    • \n
    • PHP version 7.4 or greater
    • \n
    • PHP Architecture 64 bits
    • \n
    • MySQL version 5.6 or greater
    • \n
    \n

    Visit the WooCommerce server requirements documentation for a detailed list of server requirements.

    \n

    Automatic installation

    \n

    Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t need to leave your web browser. To do an automatic install of this plugin, log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.

    \n

    In the search field type “Google for WooCommerce” and click Search Plugins. Once you’ve found this plugin you can view details about it such as the point release, rating and description. Most importantly of course, you can install it by simply clicking “Install Now”.

    \n

    Manual installation

    \n

    The manual installation method involves downloading the plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains instructions on how to do this here.

    \n

    Where can I report bugs or contribute to the project?

    \n

    Bugs should be reported in the Google for WooCommerce GitHub repository.

    \n

    This is awesome! Can I contribute?

    \n

    Yes you can! Join in on our GitHub repository 🙂

    \n

    Release and roadmap notes available on the WooCommerce Developers Blog

    \n"}, "versions": {"0.5.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.0.5.5.zip", "0.5.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.0.5.6.zip", "0.6.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.0.6.0.zip", "1.0.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.2.1.zip", "1.3.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.4.3.zip", "1.5.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.6.0.zip", "1.7.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.7.0.zip", "1.8.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.8.0.zip", "1.9.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.9.0.zip", "2.0.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.0.4.zip", "2.1.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.1.4.zip", "2.2.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.2.1.zip", "2.3.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.7.7.zip", "2.8.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.8.7.zip", "2.9.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.6.zip", "2.9.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.9.zip", "3.0.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.0.0.zip", "3.1.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.1.1.zip", "3.2.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.2.0.zip", "3.3.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.3.1.zip", "3.4.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.3.zip", "trunk": "https://downloads.wordpress.org/plugin/google-listings-and-ads.zip", "1.10.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.10.0.zip", "1.11.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.11.0.zip", "1.11.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.11.1.zip", "1.12.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.2.zip", "1.12.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.3.zip", "1.12.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.4.zip", "1.12.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.5.zip", "1.12.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.6.zip", "1.12.7": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.7.zip", "1.12.8": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.12.8.zip", "1.13.0": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.1.zip", "1.13.2": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.2.zip", "1.13.3": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.3.zip", "1.13.4": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.4.zip", "1.13.5": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.5.zip", "1.13.6": "https://downloads.wordpress.org/plugin/google-listings-and-ads.1.13.6.zip", "2.3.10": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.3.10.zip", "2.4.10": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.10.zip", "2.4.11": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.4.11.zip", "2.5.10": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.10.zip", "2.5.11": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.11.zip", "2.5.12": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.12.zip", "2.5.13": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.13.zip", "2.5.14": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.14.zip", "2.5.15": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.15.zip", "2.5.16": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.16.zip", "2.5.17": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.17.zip", "2.5.18": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.5.18.zip", "2.9.10": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.10.zip", "2.9.11": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.11.zip", "2.9.12": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.12.zip", "2.9.13": "https://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.13.zip"}, "downloaded": 37486309, "description": "

    Effortlessly sync your WooCommerce product feed across Google and be seen by millions of engaged shoppers with the Google for WooCommerce extension. Download and setup takes just five minutes.

    \n

    Grow your business with $500 in Google Ads credit

    \n

    To help you get started running campaigns, you can get $500 in ad credit when you spend your first $500 on Google Ads within 60 days.

    \n

    Terms and conditions apply.

    \n

    Sync your WooCommerce product feed to Google Merchant Center

    \n

    Seamlessly integrate your WooCommerce store with Google and set yourself up for success.

    \n
      \n
    • \n

      Sync your WooCommerce product feed to Google Merchant Center in just a few clicks. With our API-integrated Product Sync feature, all the data and functionalities from your WooCommerce store will be linked to Google with seamless server-to-server connection.

      \n
    • \n
    • \n

      Have your product listings automatically updated in real time so your prices, promotions, inventories, and other product details stay accurate and synchronized across all your listings.

      \n
    • \n
    • \n

      Access all the tools and features you need to manage your WooCommerce store and grow your business — centralized in one place.

      \n
    • \n
    \n

    Find the right audiences and sell to high-intent customers with Google Ads

    \n

    Now your WooCommerce store is discoverable on Google – and you’re ready to launch a Google Ads campaign!

    \n
      \n
    • Put Google AI to work for you by launching a Google Ads Performance Max campaign. Combined with your unique business insight, Performance Max can help you reach high-value customers using optimized placements, bidding, and more – all aligned with your budget and specific goals.
    • \n
    • Showcase your products across Google Shopping, Search, YouTube, Gmail, Maps, Display, and Discover – from a single campaign. Manage all your Google Ads campaigns from your WooCommerce dashboard and on the WooCommerce Mobile App.
    • \n
    • Save time and effort by using Google AI to help scale your asset creation. Performance Max will not only create additional copy and images based on the creative you upload, but also mix and match them for the best performing ad combinations.
    • \n
    \n

    Get custom insights and improve your conversions using Google tag

    \n

    Once you’re running Google Ads campaigns, the Google tag feature in the extension enables conversion tracking to give you insights — so you can test and learn what works, and fine-tune your strategy.

    \n
      \n
    • Easily adjust your product listings in real time to reflect your learnings and business expertise. While the extension maps product attributes by default, it’s simple to modify if you’d like more control.
    • \n
    • Leverage automatic Google tagging and conversion tracking to measure what’s working and what’s not. With insight into your customers’ purchase journey, you’ll be able to pinpoint how effectively your ads translate into valuable customer activity.
    • \n
    • Take your conversion tracking further with enhanced conversions — a feature designed to improve your measurement accuracy by collecting privacy-conscious data without the need for third-party cookies. So you have the right data to help make your campaign more effective.
    • \n
    \n", "donate_link": "", "num_ratings": 240, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/google-listings-and-ads/", "contributors": {"google": {"avatar": "https://secure.gravatar.com/avatar/13d3110b26a00b8467e781d571df53f380ef6d5678f711eb5660485ccd83b09b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/google/", "display_name": "Google"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}}, "last_updated": "2025-09-16 6:56am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/google-listings-and-ads.3.4.3.zip", "author_profile": "https://profiles.wordpress.org/woocommerce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-f483-715f-a31b-267b4089fa0b", "name": "Google for WooCommerce", "slug": "google-listings-and-ads", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1758005760, "version": "3.4.3"}, "support_threads": 28, "requires_plugins": ["woocommerce"], "short_description": "Native integration with Google that allows merchants to easily display their products across Google’s network.", "author_block_count": 0, "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 22}'); -INSERT INTO public.plugins VALUES ('019a30c1-6529-713d-a097-9e709407f324', 'google-site-kit', 'Site Kit by Google – Analytics, Search Console, AdSense, Speed', 'Site Kit is a one-stop solution for WordPress users to use everything Google has to offer to make them successful on the web.', '

    Site Kit is the official WordPress plugin from Google for insights about how people find and use your site. Site Kit is the one-stop solution to deploy, manage, and get insights from critical Google tools to make the site successful on the web. It provides authoritative, up-to-date insights from multiple Google products directly on the WordPress dashboard for easy access, all for free.

    -

    Bringing the best of Google tools to WordPress

    -

    Site Kit includes powerful features that make using these Google products seamless and flexible:

    -
      -
    • Easy-to-understand stats directly on your WordPress dashboard
    • -
    • Official stats from multiple Google tools, all in one dashboard
    • -
    • Quick setup for multiple Google tools without having to edit the source code of your site
    • -
    • Metrics for your entire site and for individual posts
    • -
    • Easy-to-manage, granular permissions across WordPress and different Google products
    • -
    -

    Supported Google tools

    -

    Site Kit shows key metrics and insights from different Google products:

    -
      -
    • Search Console: Understand how Google Search discovers and displays your pages in Google Search. Track how many people saw your site in Search results, and what query they used to search for your site.
    • -
    • Analytics: Explore how users navigate your site and track goals you’ve set up for your users to complete.
    • -
    • AdSense: Keep track of how much your site is earning you.
    • -
    • PageSpeed Insights: See how your pages perform compared to other real-world sites. Improve performance with actionable tips from PageSpeed Insights.
    • -
    • Tag Manager: Use Site Kit to easily set up Tag Manager- no code editing required. Then, manage your tags in Tag Manager.
    • -
    -', '1.164.0', 'Google', '5.2', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/google-site-kit.1.164.0.zip', '2019-10-31 00:00:00+00', '2025-10-20 21:00:00+00', 'https://profiles.wordpress.org/google/', 84, 964, 73, 60, 5000000, 218565994, 'https://sitekit.withgoogle.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/google-site-kit/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Site Kit by Google – Analytics, Search Console, AdSense, Speed", "slug": "google-site-kit", "tags": {"google": "google", "adsense": "adsense", "analytics": "analytics", "search-console": "Search Console", "pagespeed-insights": "pagespeed insights"}, "added": "2019-10-31", "icons": {"1x": "https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=3141863", "2x": "https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=3141863"}, "author": "Google", "rating": 84, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=3141863", "high": "https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=3141863"}, "ratings": {"1": 141, "2": 39, "3": 27, "4": 43, "5": 714}, "version": "1.164.0", "homepage": "https://sitekit.withgoogle.com", "requires": "5.2", "sections": {"faq": "

    For more information, visit the official Site Kit website.

    \n\n
    \nIs Site Kit free?\n\n

    \n

    The Site Kit plugin is free and open source, and will remain so. Individual Google products included in Site Kit are subject to standard terms and fees (if any) for those products.

    \n

    \n
    \nWhat are the minimum requirements for Site Kit?\n\n

    \n

    In order to successfully install and use Site Kit, your site must meet the following requirements:

    \n
      \n
    • WordPress version 5.2+
    • \n
    • PHP version 7.4+
    • \n
    • Modern browser – Internet Explorer is not supported
    • \n
    • Is publicly accessible – it isn’t in maintenance mode, accessible only via password, or otherwise blocked
    • \n
    • REST API is available – Site Kit must be able to communicate via REST API with Google services. To ensure that the REST API is available for your site, go to Tools > Site Health.
    • \n
    \n

    \n
    \nWhy is my dashboard showing “gathering data” and none of my service data?\n\n

    \n

    It can take a few days after connecting Site Kit to a Google service for data to begin to display in your dashboard. The “gathering data” message typically appears when you’ve recently set up a Google service (i.e. just created a new Analytics account) and/or your site is new, and data is not yet available for display.

    \n

    If you are still seeing this message after a few days, feel free to get in touch with us on the support forum.

    \n

    \n
    \nWhy aren’t any ads appearing on my site after I connected AdSense?\n\n

    \n

    If you’re new to AdSense when you connect via Site Kit, your new AdSense account and your site will need to be manually reviewed and approved for ads by the AdSense team. Ads will not display until your account and site have been approved. Check out this guide for more information about the approval process and timeline.

    \n

    You can check your approval status in Site Kit by going to Settings > Connected Services > AdSense and clicking Check your site status. This link will direct you to AdSense. If you see “Ready,” your account and site have been approved and should be displaying ads. If you see “Getting ready…,” your account and site are still under review and your site will not display ads until they have been approved.

    \n

    If Site Kit has successfully added the AdSense snippet to your site and your account and site have been approved, but your site is still not showing ads, contact the AdSense Help Center for assistance.

    \n

    You can find more information on how Site Kit works with AdSense in our Managing AdSense guide.

    \n

    \n
    \nIs Site Kit GDPR compliant?\n\n

    \n

    When using Site Kit, site owners are responsible for managing notice and consent requirements – including GDPR requirements – as described in Google’s Terms of Service.

    \n

    By default, Site Kit does anonymize IP addresses upon activation of the Google Analytics module. This setting can be turned off in Site Kit > Settings > Analytics > Anonymize IP addresses.

    \n

    There are a number of third-party plugins that allow you to block Google Analytics, Tag Manager, or AdSense from capturing data until a visitor to the site consents. Some of these work natively with Site Kit by providing plugin-specific configurations. You can find out more about these by visiting our GDPR compliance and privacy page.

    \n

    \n
    \nWhere can I get additional support?\n\n

    \n

    Please create a new topic on our WordPress.org support forum. Be sure to follow the support forum guidelines when posting.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Too confusing

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy carmenbischof on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Too confusing for anybody who just wishes to run their own website - especially the Google Tag Manager.

    \n\n\n\n

    After running this for years (pain to install, then not noticable in the background) we now got an error message. Our website looks ok, but we have no clue what do do.

    \n\n\n\n

    The support also feels as if it was built by developers for developers only.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy FotoRK (romankrejcikcom) on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Convenient and hassle-free connection to [my website]. I use it on all websites that I have created or manage.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent analytics plugin for clients

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kiwise.com (kiwisenz) on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very easy plugin to install and setup. Highly recommended for any WordPress website.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    You are the best

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy elenkw on September 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    \n\n\n\n

    Thank you!!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    what in the world

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy embrasurespace on September 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Terrible - causing php fatal errors and crashing several of my sites. Can''t believe this is a google product. Don''t use it.


    Edit - we''ve resolved this issue.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    TIme saver

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ubaida (ubaidaabidganem) on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used to struggle checking Analytics & Search Console separately. Site Kit solved it by putting everything in WP.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Time Saver for WordPress Users

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Asif Hossain (asifhossain1) on September 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like how Site Kit connects Analytics, Search Console, and AdSense so I can see everything without switching tabs. The dashboard is straightforward and beginner friendly. More display options for the data would make it even better.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    That's an awesome and great plugins.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy asadujjamangood on September 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you so much Google for save my times. It''s really Great.

    Thanks again.

    \n\n\n\n

    Md. Asaduzzaman Shuvo
    [link removed by moderator -- forum guidelines do not allow links in reviews]

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks for the new updates

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy publipega on August 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really appreciate the improvements—makes it even easier to connect WordPress with Google tools. Great job 👏.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    very good plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy haim96 on August 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    works well with very good support!

    \n
    \n
    \n", "changelog": "

    1.164.0

    \n

    Added

    \n
      \n
    • Add setting for using Sign in with Google for WordPress comments. See #11472.
    • \n
    • Add One-Tap to Sign in with Google setup when user registrations are open. See #11469.
    • \n
    \n

    Enhanced

    \n
      \n
    • Add client side compatibility checks for Sign in with Google. See #11505.
    • \n
    • Add ability to load Sign in with Google compatibility checks from Site Kit. See #11463.
    • \n
    • Add support for detecting plugins/hosting environments incompatible with Sign in with Google. See #11458.
    • \n
    • Add third-party support for the Sign in with Google button via a WordPress Action: do_action( ''googlesitekit_render_sign_in_with_google_button'' ). See #11455.
    • \n
    • Add the email reporting settings selection panel. See #11424.
    • \n
    • Add API and data store infrastructure to preserve initial settings accompanying the new setup flow. See #11387.
    • \n
    • Add Analytics setup success toast notice in the Key Metrics setup screen. See #11384.
    • \n
    • Display the progress indicator on the Analytics setup screen when it’s navigated to in the new setup flow. See #11379.
    • \n
    • Add the progress indicator to the new version of the splash screen. See #11378.
    • \n
    • Add a ProgressIndicator component to display progressions in user flows. See #11377.
    • \n
    • Redirect users to the Key Metrics setup screen after successfully connecting Analytics when the setupFlowRefresh feature flag is enabled. See #11375.
    • \n
    • Add Key Metrics setup screen with site purpose questionnaire and dashboard redirection functionality. See #11374.
    • \n
    • Implement the foundation for the forthcoming splash screen update. See #11333.
    • \n
    • Add a selector to allow users to customize frequency of reports when Proactive User Engagement is enabled. See #11155.
    • \n
    • Add the email reporting overlay notification. See #11147.
    • \n
    • Add Enhanced Conversions support for Mailchimp for WordPress by capturing and sending user data. See #11127.
    • \n
    • Add Enhanced Conversions support for OptinMonster by capturing and sending user data. See #11126.
    • \n
    • Add Enhanced Conversions support for Easy Digital Downloads by capturing and sending user data. See #11011.
    • \n
    • Add “Learn more” link to Visitor Groups notification banner. See #10964.
    • \n
    • Include Reader Revenue Manager in the list of services identified by the unsatisfied scopes alert. See #10797.
    • \n
    • Don’t show the “How to Improve” tab in the Pagespeed Insights widget when no recommendations are available. See #7612.
    • \n
    • Standardize font sizes for Key Metric Widget subheadings. See #6107.
    • \n
    \n

    Fixed

    \n
      \n
    • Fix Reader Revenue Manager setup screen displaying empty content when API errors occur. See #11581.
    • \n
    • Add “pinned notifications” to the notifications API, and use it to ensure the Audience Segmentation and Enhanced Measurement setup banners continue to be shown when returning from OAuth. See #10890.
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    Site Kit is the official WordPress plugin from Google for insights about how people find and use your site. Site Kit is the one-stop solution to deploy, manage, and get insights from critical Google tools to make the site successful on the web. It provides authoritative, up-to-date insights from multiple Google products directly on the WordPress dashboard for easy access, all for free.

    \n

    Bringing the best of Google tools to WordPress

    \n

    Site Kit includes powerful features that make using these Google products seamless and flexible:

    \n
      \n
    • Easy-to-understand stats directly on your WordPress dashboard
    • \n
    • Official stats from multiple Google tools, all in one dashboard
    • \n
    • Quick setup for multiple Google tools without having to edit the source code of your site
    • \n
    • Metrics for your entire site and for individual posts
    • \n
    • Easy-to-manage, granular permissions across WordPress and different Google products
    • \n
    \n

    Supported Google tools

    \n

    Site Kit shows key metrics and insights from different Google products:

    \n
      \n
    • Search Console: Understand how Google Search discovers and displays your pages in Google Search. Track how many people saw your site in Search results, and what query they used to search for your site.
    • \n
    • Analytics: Explore how users navigate your site and track goals you’ve set up for your users to complete.
    • \n
    • AdSense: Keep track of how much your site is earning you.
    • \n
    • PageSpeed Insights: See how your pages perform compared to other real-world sites. Improve performance with actionable tips from PageSpeed Insights.
    • \n
    • Tag Manager: Use Site Kit to easily set up Tag Manager- no code editing required. Then, manage your tags in Tag Manager.
    • \n
    \n", "installation": "

    Note: Make sure that your website is live. If your website isn’t live yet, Site Kit can’t show you any data.
    \nHowever, if you have a staging environment in addition to your production site, Site Kit can display data from your production site in the staging environment. Learn how to use Site Kit with a staging environment.

    \n

    Installation from within WordPress

    \n
      \n
    1. Visit Plugins > Add New.
    2. \n
    3. Search for Site Kit by Google.
    4. \n
    5. Install and activate the Site Kit by Google plugin.
    6. \n
    7. Connect Site Kit to your Google account. If there are multiple WordPress admins, keep in mind that each admin must connect their own Google account in order to access the plugin.
    8. \n
    \n

    Manual installation

    \n
      \n
    1. Upload the entire google-site-kit folder to the /wp-content/plugins/ directory.
    2. \n
    3. Visit Plugins.
    4. \n
    5. Activate the Site Kit by Google plugin.
    6. \n
    7. Connect Site Kit to your Google account. If there are multiple WordPress admins, keep in mind that each admin must connect their own Google account in order to access the plugin.
    8. \n
    \n

    After activation

    \n
      \n
    1. Visit the new Site Kit menu.
    2. \n
    3. Follow the instructions in the setup flow.
    4. \n
    5. Go to the main Site Kit dashboard which already displays key metrics from Search Console.
    6. \n
    7. Connect additional Google tools under Site Kit > Settings. Learn more about which tools are right for you.
    8. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/google-site-kit.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/google-site-kit.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/google-site-kit.1.0.4.zip", "1.1.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/google-site-kit.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/google-site-kit.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/google-site-kit.1.1.4.zip", "1.2.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.3.1.zip", "1.4.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.4.0.zip", "1.5.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.6.0.zip", "1.7.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.8.1.zip", "1.9.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.9.0.zip", "trunk": "https://downloads.wordpress.org/plugin/google-site-kit.zip", "1.10.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.10.0.zip", "1.11.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.11.0.zip", "1.11.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.11.1.zip", "1.12.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.12.0.zip", "1.13.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.13.1.zip", "1.14.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.14.0.zip", "1.15.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.15.0.zip", "1.16.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.16.0.zip", "1.17.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.17.0.zip", "1.18.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.18.0.zip", "1.19.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.19.0.zip", "1.20.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.20.0.zip", "1.21.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.21.0.zip", "1.22.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.22.0.zip", "1.23.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.23.0.zip", "1.24.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.24.0.zip", "1.25.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.25.0.zip", "1.26.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.26.0.zip", "1.27.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.27.0.zip", "1.28.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.28.0.zip", "1.29.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.29.0.zip", "1.30.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.30.0.zip", "1.31.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.31.0.zip", "1.32.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.32.0.zip", "1.33.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.33.0.zip", "1.34.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.34.0.zip", "1.34.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.34.1.zip", "1.35.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.35.0.zip", "1.36.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.36.0.zip", "1.37.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.37.0.zip", "1.38.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.38.0.zip", "1.38.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.38.1.zip", "1.39.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.39.0.zip", "1.40.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.40.0.zip", "1.41.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.41.0.zip", "1.42.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.42.0.zip", "1.43.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.43.0.zip", "1.44.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.44.0.zip", "1.45.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.45.0.zip", "1.46.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.46.0.zip", "1.47.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.47.0.zip", "1.48.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.48.0.zip", "1.48.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.48.1.zip", "1.49.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.49.0.zip", "1.49.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.49.1.zip", "1.50.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.50.0.zip", "1.68.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.68.0.zip", "1.69.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.69.0.zip", "1.70.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.70.0.zip", "1.71.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.71.0.zip", "1.72.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.72.0.zip", "1.73.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.73.0.zip", "1.74.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.74.0.zip", "1.75.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.75.0.zip", "1.77.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.77.0.zip", "1.78.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.78.0.zip", "1.79.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.79.0.zip", "1.79.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.79.1.zip", "1.80.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.80.0.zip", "1.81.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.81.0.zip", "1.82.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.82.0.zip", "1.83.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.83.0.zip", "1.84.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.84.0.zip", "1.85.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.85.0.zip", "1.86.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.86.0.zip", "1.87.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.87.0.zip", "1.88.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.88.0.zip", "1.89.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.89.0.zip", "1.90.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.90.0.zip", "1.90.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.90.1.zip", "1.92.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.92.0.zip", "1.93.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.93.0.zip", "1.94.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.94.0.zip", "1.95.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.95.0.zip", "1.96.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.96.0.zip", "1.98.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.98.0.zip", "1.99.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.99.0.zip", "1.101.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.101.0.zip", "1.102.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.102.0.zip", "1.103.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.103.0.zip", "1.104.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.104.0.zip", "1.105.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.105.0.zip", "1.106.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.106.0.zip", "1.107.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.107.0.zip", "1.108.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.108.0.zip", "1.109.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.109.0.zip", "1.110.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.110.0.zip", "1.111.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.111.0.zip", "1.111.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.111.1.zip", "1.113.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.113.0.zip", "1.114.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.114.0.zip", "1.115.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.115.0.zip", "1.116.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.116.0.zip", "1.118.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.118.0.zip", "1.119.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.119.0.zip", "1.120.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.120.0.zip", "1.121.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.121.0.zip", "1.122.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.122.0.zip", "1.123.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.123.0.zip", "1.123.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.123.1.zip", "1.124.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.124.0.zip", "1.125.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.125.0.zip", "1.126.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.126.0.zip", "1.127.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.127.0.zip", "1.128.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.128.0.zip", "1.128.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.128.1.zip", "1.129.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.129.0.zip", "1.129.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.129.1.zip", "1.130.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.130.0.zip", "1.131.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.131.0.zip", "1.132.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.132.0.zip", "1.133.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.133.0.zip", "1.134.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.134.0.zip", "1.135.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.135.0.zip", "1.136.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.136.0.zip", "1.137.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.137.0.zip", "1.138.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.138.0.zip", "1.139.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.139.0.zip", "1.140.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.140.0.zip", "1.141.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.141.0.zip", "1.142.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.142.0.zip", "1.144.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.144.0.zip", "1.145.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.145.0.zip", "1.146.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.146.0.zip", "1.147.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.147.0.zip", "1.148.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.148.0.zip", "1.149.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.149.0.zip", "1.149.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.149.1.zip", "1.150.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.150.0.zip", "1.151.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.151.0.zip", "1.152.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.152.0.zip", "1.152.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.152.1.zip", "1.153.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.153.0.zip", "1.154.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.154.0.zip", "1.155.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.155.0.zip", "1.156.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.156.0.zip", "1.157.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.157.0.zip", "1.158.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.158.0.zip", "1.159.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.159.0.zip", "1.160.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.160.0.zip", "1.160.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.160.1.zip", "1.161.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.161.0.zip", "1.162.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.162.0.zip", "1.162.1": "https://downloads.wordpress.org/plugin/google-site-kit.1.162.1.zip", "1.163.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.163.0.zip", "1.164.0": "https://downloads.wordpress.org/plugin/google-site-kit.1.164.0.zip"}, "downloaded": 218565994, "description": "

    Site Kit is the official WordPress plugin from Google for insights about how people find and use your site. Site Kit is the one-stop solution to deploy, manage, and get insights from critical Google tools to make the site successful on the web. It provides authoritative, up-to-date insights from multiple Google products directly on the WordPress dashboard for easy access, all for free.

    \n

    Bringing the best of Google tools to WordPress

    \n

    Site Kit includes powerful features that make using these Google products seamless and flexible:

    \n
      \n
    • Easy-to-understand stats directly on your WordPress dashboard
    • \n
    • Official stats from multiple Google tools, all in one dashboard
    • \n
    • Quick setup for multiple Google tools without having to edit the source code of your site
    • \n
    • Metrics for your entire site and for individual posts
    • \n
    • Easy-to-manage, granular permissions across WordPress and different Google products
    • \n
    \n

    Supported Google tools

    \n

    Site Kit shows key metrics and insights from different Google products:

    \n
      \n
    • Search Console: Understand how Google Search discovers and displays your pages in Google Search. Track how many people saw your site in Search results, and what query they used to search for your site.
    • \n
    • Analytics: Explore how users navigate your site and track goals you’ve set up for your users to complete.
    • \n
    • AdSense: Keep track of how much your site is earning you.
    • \n
    • PageSpeed Insights: See how your pages perform compared to other real-world sites. Improve performance with actionable tips from PageSpeed Insights.
    • \n
    • Tag Manager: Use Site Kit to easily set up Tag Manager- no code editing required. Then, manage your tags in Tag Manager.
    • \n
    \n", "donate_link": "", "num_ratings": 964, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/google-site-kit/", "contributors": {"google": {"avatar": "https://secure.gravatar.com/avatar/13d3110b26a00b8467e781d571df53f380ef6d5678f711eb5660485ccd83b09b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/google/", "display_name": "Google"}}, "last_updated": "2025-10-20 9:00pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/google-site-kit.1.164.0.zip", "author_profile": "https://profiles.wordpress.org/google/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 5000000, "aspiresync_meta": {"id": "019a30bf-f486-70ff-966e-012107b4d63c", "name": "Site Kit by Google – Analytics, Search Console, AdSense, Speed", "slug": "google-site-kit", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760994000, "version": "1.164.0"}, "support_threads": 73, "requires_plugins": [], "short_description": "Site Kit is a one-stop solution for WordPress users to use everything Google has to offer to make them successful on the web.", "author_block_count": 0, "author_block_rating": 84, "commercial_support_url": "", "support_threads_resolved": 60}'); -INSERT INTO public.plugins VALUES ('019a30c1-6533-72af-beac-1ee2ee94a30e', 'google-sitemap-generator', 'XML Sitemap Generator for Google', 'Generate multiple types of sitemaps to improve SEO and get your website indexed quickly.', '

    Generate XML and HTML sitemaps for your website with ease using the XML Sitemap Generator for Google. This plugin enables you to improve your SEO rankings by creating page, image, news, video, HTML, and RSS sitemaps. It also supports custom post types and taxonomies, allowing you to ensure that all of your content is being indexed by search engines. With a user-friendly interface, you can easily configure the plugin to suit your needs and generate sitemaps in just a few clicks. Keep your website up-to-date and make sure that search engines are aware of all of your content by using the XML Sitemap Generator for Google.

    -

    The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.

    -

    Supported for more than a decade and rated among the best, it will do exactly what it’s supposed to do – providing a complete XML sitemap for search engines!

    -
    -

    If you like the plugin, feel free to rate it! 🙂

    -
    -

    Related Links:

    - -

    License

    -

    Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial site.

    -

    Translations

    -

    The plugin comes with various translations, please refer to the WordPress Codex for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all definitions and may be used with a gettext editor like Poedit (Windows).

    -', '4.1.21', 'Auctollo', '4.6', '5.0', '6.8.3', 'https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.21.zip', '2005-06-16 00:00:00+00', '2025-04-17 17:58:00+00', 'https://profiles.wordpress.org/auctollo/', 96, 2225, 7, 0, 1000000, 41432831, 'https://auctollo.com/', NULL, 'commercial', NULL, 'https://wordpress.org/support/plugin/google-sitemap-generator/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "XML Sitemap Generator for Google", "slug": "google-sitemap-generator", "tags": {"seo": "seo", "xml-sitemap": "xml sitemap", "html-sitemap": "html sitemap", "news-sitemap": "news sitemap", "video-sitemap": "video sitemap"}, "added": "2005-06-16", "icons": {"1x": "https://ps.w.org/google-sitemap-generator/assets/icon-128x128.png?rev=2713572", "2x": "https://ps.w.org/google-sitemap-generator/assets/icon-256x256.png?rev=2713572"}, "author": "Auctollo", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/google-sitemap-generator/assets/banner-772-250.png?rev=2713572", "high": false}, "ratings": {"1": 71, "2": 9, "3": 12, "4": 34, "5": 2099}, "version": "4.1.21", "homepage": "https://auctollo.com/", "requires": "4.6", "sections": {"faq": "\n
    \nHow do I generate a sitemap for my website?\n\n

    \n

    To generate a sitemap for your website, follow these steps:

    \n
      \n
    • Install and activate the XML Sitemap Generator for Google plugin on your WordPress site.
    • \n
    • Once activated, the plugin will automatically generate a sitemap.xml file for your website.
    • \n
    • You can access the sitemap by appending /sitemap.xml to your website’s URL (e.g., https://example.com/sitemap.xml).
    • \n
    • Submit your sitemap to search engines like Google, Bing, Yandex, and Baidu to ensure that your site is indexed and crawled properly.
    • \n
    \n

    \n
    \nHow do I submit my sitemap to search engines?\n\n

    \n

      \n
    • Go to the Google Search Console and sign in with your Google account.
    • \n
    • Click on the “Sitemaps” tab and enter the URL of your sitemap.xml file (e.g., https://example.com/sitemap.xml).
    • \n
    • Click on “Submit” to submit your sitemap to Google.
    • \n
    • Repeat the process for other search engines like Bing, Yandex, and Baidu.
    • \n
    \n

    \n
    \nHow often should I update my sitemap?\n\n

    \n

    It’s recommended that you update your sitemap whenever you make significant changes to your website’s content or structure. This will ensure that search engines are aware of any new pages or changes to existing pages on your site.

    \n

    \n
    \nWhat types of sitemaps does the plugin generate?\n\n

    \n

    The XML Sitemap Generator for Google plugin can generate sitemaps in XML, HTML, RSS formats and in various types, including: Pages/Posts, Google News, Video, Image, Mobile, and more! Note: Some formats and types are only available to subscribers.

    \n

    \n
    \nCan I include images and videos in my sitemap?\n\n

    \n

    Yes, you can include images and videos in your sitemap using the Google XML Sitemap Generator plugin. This will help search engines like Google and Bing to crawl and index your media files more efficiently.

    \n

    \n
    \nHow does the plugin work with WooCommerce?\n\n

    \n

    The XML Sitemap Generator for Google plugin is compatible with WooCommerce and can generate sitemaps for your online store’s product pages, categories, and tags. This will help search engines to index your products and improve your store’s visibility in search results.

    \n

    \n
    \nCan I customize the robots.txt file using this plugin?\n\n

    \n

    Yes, you can customize the robots.txt file using the Google XML Sitemap Generator for Google plugin. This will allow you to control which pages and directories search engines can crawl and index on your site.

    \n

    \n
    \nDoes this plugin support the Google Site Kit?\n\n

    \n

    Yes, the XML Sitemap Generator for Google plugin is compatible with the Google Site Kit. This will allow you to track your site’s performance in Google Search Console and Google Analytics directly from your WordPress dashboard.

    \n

    \n
    \nDoes this plugin support schema markup?\n\n

    \n

    Yes, the XML Sitemap Generator for Google plugin supports schema markup, which can help improve your site’s visibility in search results by providing more information about your content to search engines.

    \n

    \n
    \nWhere can I find the options page of the plugin?\n\n

    \n

    It is under Settings > XML-Sitemap. I know nowadays many plugins add top-level menu items, but in most of the cases it is just not necessary. I’ve seen WP installations which looked like an Internet Explorer ten years ago with 20 toolbars installed. 😉

    \n

    \n
    \nDoes this plugin use static files or “I can’t find the sitemap.xml file!”\n\n

    \n

    Not anymore. Since version 4, these files are dynamically generated just like any other WordPress content.

    \n

    \n
    \nThere are no comments yet (or I’ve disabled them) and all my postings have a priority of zero!\n\n

    \n

    Please disable automatic priority calculation and define a static priority for posts.

    \n

    \n
    \nSo many configuration options… Do I need to change them?\n\n

    \n

    No, only if you want to. Default values are ok for most sites.

    \n

    \n
    \nMy question isn’t answered here\n\n

    \n

    Please post your question at the WordPress support forum.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    XML Sitemap Generator for Google

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ronaldljohnson on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    If you''re already using the available Google features like ReCaptcha on your WordPress web site then go the next step and get the XML Sitemap Generator for Google. It integrates tightly with your site, is free, and is the gold standard for sitemap generation on your WordPress Site.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ちょっとわかりにくかった

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy 3216hobby on August 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ちょっとわかりにくかった

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy belenpajares on July 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use, very easy to understand, simple, and allows you to access the sitemap from the WordPress dashboard. I recommend it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It's my favorite SITEMAP so far...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ovidiuxxxc on July 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was looking for a decent and minimalistic sitemap, but this was the only one that worked well without being complicated. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does what I need very easily

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stuntnet on June 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy interface and has all the right features.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tut was es soll

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Birgit Ligotzky (ligoline) on May 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Einfach und unkompliziert, seit Jahren treuer Begleiter

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support team not respond

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Shubham Verma (s4shubhamverma) on May 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I needed an image sitemap and saw in the bio that it was supposed to be available, but I couldn''t find it anywhere. I even created a support ticket, but unfortunately, there was no response from the development team.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    XML File Does not always get read by Google

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jlc1964 on April 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Got the dreaded Google couldn''t fetch error. There is a formatting issue with the xml. I ended up using another plugin that just simply worked. This appears to be an ongoing issue in the forums.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy heronsuisse on April 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    No need of other stupid sitemap generator offered by SEo plugins, this one is the best

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Configuração simples

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy macrosann on March 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Não entrei no modo avançado ainda, mas mesmo assim no modo padrão já obtive resultados, sem falar que já vem configurações predefinidas que poupam esforços.

    \n
    \n
    \n", "changelog": "

    4.1.21 (2024-04-21)

    \n
      \n
    • Fixed a regression with saving post/page exclusions.
    • \n
    • Fixed an issue with post/tag priority settings.
    • \n
    \n

    4.1.20 (2024-04-14)

    \n
      \n
    • Fixed empty ping error
    • \n
    • Fixed response code issue with index sitemap
    • \n
    • Fixed interoperability with existing robots.txt file
    • \n
    • Fixed URL for guest authors
    • \n
    • Fixed uninstalled plugin error
    • \n
    • Fixed sitemap indexation
    • \n
    • Fixed “Trying to access array offset on value of type bool…” warning
    • \n
    • Fixed setting of custom taxonomy change frequency and priority
    • \n
    • Fixed missing custom taxonomies issue
    • \n
    • Fixed issue with hierarchical taxonomies
    • \n
    • Fixed missing categories issue
    • \n
    • Fixed sort order of URLs (changed from descending to ascending)
    • \n
    • Improved WooCommerce support (added products sitemap)
    • \n
    • Improved multisite support
    • \n
    • Improved SEO plugin interoperability
    • \n
    • Improved Nginx configuration
    • \n
    • Improved sitemap generation performance for large sites
    • \n
    • Added filter support for behavior/settings customization
    • \n
    • Added latest Microsoft Bing API Key to settings page
    • \n
    \n

    4.1.19 (2024-01-31)

    \n
      \n
    • Fixed “Links per page” bug causing sitemaps to not include all posts depending on the setting. Following Search Engine guidance is minimum links per sitemap is 1,000 pages.
    • \n
    • Fixed Google Search Console errors including “Fetch error” and “noindex” header
    • \n
    • Fixed the issue with “null” sitemaps
    • \n
    • Fixed sitemap generation for tags, categories, etc for large sites
    • \n
    • Improved performance by optimizing queries
    • \n
    • Improved IndexNow implementation
    • \n
    • Added WordPress’ sitemap to the list of detected sitemaps for deactivation
    • \n
    \n

    4.1.18 (2024-01-12)

    \n
      \n
    • Resolved functionality regressions since v4.1.13
    • \n
    • Improved IndexNow Protocol implementation
    • \n
    • Improved WooCommerce support
    • \n
    • Improved WPML support
    • \n
    • Fixed sitemap 404 issues (for Single and Multisite modes)
    • \n
    • Fixed auto update rewrite rule
    • \n
    • Fixed rewrite issues during plugin upgrade
    • \n
    • Fixed invalid XML syntax (cause of parsing issues in Google Search Console)
    • \n
    \n

    4.1.17 (2024-01-05)

    \n
      \n
    • Fixed sitemap URL issue in robots.txt etc
    • \n
    • Improved LastMod syntax for better support for indexation by Google
    • \n
    • Improved Network mode support
    • \n
    • Improved localization plugin support
    • \n
    • Improved custom taxonomy support
    • \n
    • Added IndexNow Protocol support for Microsoft Bing. Deprecated Sitemap Ping Protocol
    • \n
    • Added JetPack sitemap generator conflict detection
    • \n
    \n

    4.1.16 (2023-12-18)

    \n
      \n
    • Fixed a syntax error causing fatal errors for some users.
    • \n
    \n

    4.1.15 (2023-12-14)

    \n
      \n
    • Improved security by adding capability check via the current_user_can() calls
    • \n
    • Changed the text domain from “sitemap” to “google-sitemap-generator”
    • \n
    \n

    4.1.14 (2023-12-05)

    \n
      \n
    • Improved security with authentication and plugin management anchors
    • \n
    • Fixed an error in sitemap file name conventions
    • \n
    • Fixed an issue with disabling conflicting sitemap generators
    • \n
    • Added last modified date to category sitemaps
    • \n
    • Added min and max option for number of posts per sitemap
    • \n
    • Added support for local links in sitemap for different languages
    • \n
    \n

    4.1.13 (2023-08-04)

    \n
      \n
    • Fixed warning error displayed when Yoast SEO is not installed/active
    • \n
    \n

    4.1.12 (2023-08-02)

    \n
      \n
    • Improved various UI elements and notifications
    • \n
    • Fixed browser console errors
    • \n
    • Fixed null value in set_time_limit
    • \n
    \n

    4.1.11 (2023-05-19)

    \n
      \n
    • Fixed version compatibility thresholds
    • \n
    • Improved user interface
    • \n
    \n

    4.1.10 (2023-04-24)

    \n
      \n
    • Added support for automatic updates
    • \n
    \n

    4.1.9 (2023-04-12)

    \n
      \n
    • Improved beta program notifications and workflow to comply with guidelines
    • \n
    • Improved various UI elements
    • \n
    \n

    4.1.8 (2023-03-31)

    \n
      \n
    • Added Beta testing program
    • \n
    • Added check for disabled PHP functions
    • \n
    • Fixed handling of taxonomies containing hyphens
    • \n
    \n

    4.1.7 (2022-11-24)

    \n
      \n
    • Fixed custom taxonomy unit generation issue
    • \n
    • Fixed plugin deactivation notice
    • \n
    \n

    4.1.6 (2022-11-23)

    \n
      \n
    • Fixed mishandling of empty categories
    • \n
    • Fixed _url undefined notice error
    • \n
    • Fixed error when build_taxonomies throws a fatal error when accessing sub-sitemap without pagination
    • \n
    • Improved handling of line breaks e.g. showing
      tag without escaping HTML
    • \n
    • Improved handling of the Google TID field optional to ping Google
    • \n
    • Improved documentation, given some renaming of the methods
    • \n
    • Added support for paginated sitemap posts, pages, and product links
    • \n
    • Added conditional statements to prevent rewrite rules from being checked every time the sitemap loads
    • \n
    \n

    4.1.5 (2022-06-14)

    \n
      \n
    • Fixed code regressions moving from git to svn (preventing recent fixes from being available)
    • \n
    \n

    4.1.4 (2022-06-06)

    \n
      \n
    • Fixed the issue of PHP warnings
    • \n
    • Fixed links per page issue
    • \n
    • Improved WordPress 6.0 compatibility
    • \n
    \n

    4.1.3 (2022-05-31)

    \n
      \n
    • Added backward compatibility settings
    • \n
    • Changed Google Tracking ID field to optional
    • \n
    • Fixed PHP warnings
    • \n
    \n

    4.1.2 (2022-04-15)

    \n
      \n
    • Fixed security issue related to Cross-Site Scripting attacks on debug page
    • \n
    • Fixed HTTP error while generating sitemap (because of conflict of www and now www site)
    • \n
    • Fixed handling WordPress core sitemap entry from robots.txt
    • \n
    • Added option to flush database rewrite on plugin deactivation
    • \n
    • Added option to split the custom categories into multiple sitemaps by custom taxonomy
    • \n
    • Added option to omit the posts specified as disallow in robots.txt
    • \n
    • Added option to set links per page for tags and categories
    • \n
    • Added option to set a custom filename for the sitemap
    • \n
    • Added option to list custom post in the archive sitemap
    • \n
    \n

    4.1.1 (2022-04-07)

    \n
      \n
    • fix security issue related to Cross-Site Scripting attacks on debug page
    • \n
    • fix HTTP error while generating sitemap (because of conflict of www and now www site)
    • \n
    • fix handles the removal of WordPress native sitemap entry from robots.txt
    • \n
    • added option for flush database rewrite on deactivate plugin
    • \n
    • added options for split the custom categories into multiple sitemap by custom taxonomy
    • \n
    • added options to omit the posts which added in robots.txt to disallow
    • \n
    • added option to set links per page for tags and categories
    • \n
    • added option for provide the custom name for the sitemap.xml file
    • \n
    • added option for custom post type’s list into the archive sitemap
    • \n
    • added support of manage priorities and frequencies for products category
    • \n
    \n

    4.1.0 (2018-12-18)

    \n
      \n
    • Fixed security issue related to escaping external URLs
    • \n
    • Fixed security issue related to option tags in forms
    • \n
    \n

    4.0.9 (2017-07-24)

    \n
      \n
    • Fixed security issue related to donation functionality.
    • \n
    \n

    4.0.8 (2014-11-15)

    \n
      \n
    • Fixed bug regarding the exclude categories feature, thanks to Claus Schöffel!
    • \n
    \n

    4.0.7.1 (2014-09-02)

    \n
      \n
    • Sorry, no new features this time… This release only updates the Compatibility-Tag to WordPress 4.0. Unfortunately there is no way to do this anymore without a new version
    • \n
    \n

    4.0.7 (2014-06-23)

    \n
      \n
    • Better compatibility with GoDaddy managed WP hosting
    • \n
    • Better compatibility with QuickCache
    • \n
    • Removed WordPress version from the sitemap
    • \n
    • Corrected link to WordPress privacy settings (if search engines are blocked)
    • \n
    • Changed hook which is being used for sitemap pings to avoid pings on draft edit
    • \n
    \n

    4.0.6 (2014-06-03)

    \n
      \n
    • Added option to disable automatic gzipping
    • \n
    • Fixed bug with duplicated external sitemap entries
    • \n
    • Don’t gzip if behind Varnish since Varnish can do that
    • \n
    \n

    4.0.5 (2014-05-18)

    \n
      \n
    • Added function to manually start ping for main-sitemap or all sub-sitemaps
    • \n
    • Added support for changing the base of the sitemap URL to another URL (for WP installations in sub-folders)
    • \n
    • Fixed issue with empty post sitemaps (related to GMT/local time offset)
    • \n
    • Fixed some timing issues in archives
    • \n
    • Improved check for possible problems before gzipping
    • \n
    • Fixed empty archives and author sitemaps in case there were no posts
    • \n
    • Fixed bug which caused the Priority Provider to disappear in recent PHP versions
    • \n
    • Plugin will also ping with the corresponding sub-sitemap in case a post was modified
    • \n
    • Better checking for empty external urls
    • \n
    • Changed text in XSL template to be more clear about sitemap-index and sub-sitemaps
    • \n
    • Changed content type to text/xml to improve compatibility with caching plugins
    • \n
    • Changed query parameters to is_feed=true to improve compatibility with caching plugins
    • \n
    • Switched from using WP_Query to load posts to a custom SQL statement to avoid problems with other plugin filters
    • \n
    • Added caching of some SQL statements
    • \n
    • Added support feed for more help topics
    • \n
    • Added link to new help page
    • \n
    • Cleaned up code and renamed variables to be more readable
    • \n
    • Updated Japanese Translation, thanks to Daisuke Takahashi
    • \n
    \n

    4.0.4 (2014-04-19)

    \n
      \n
    • Removed deprecated get_page call
    • \n
    • Changed last modification time of sub-sitemaps to the last modification date of the posts instead of the publish date
    • \n
    • Removed information window if the statistic option has not been activated
    • \n
    • Added link regarding new sitemap format
    • \n
    • Updated Portuguese translation, thanks to Pedro Martinho
    • \n
    • Updated German translation
    • \n
    \n

    4.0.3 (2014-04-13)

    \n
      \n
    • Fixed compression if an gzlib handler was already active
    • \n
    • Help regarding permalinks for Nginx users
    • \n
    • Fix with gzip compression in case there was other output before already
    • \n
    • Return 404 for HTML sitemaps if the option has been disabled
    • \n
    • Updated translations
    • \n
    \n

    4.0.2 (2014-04-01)

    \n
      \n
    • Fixed warning if an gzip handler is already active
    • \n
    \n

    4.0.1 (2014-03-31)

    \n
      \n
    • Fixed bug with custom post types including a “-“
    • \n
    • Fixed some 404 Not Found Errors
    • \n
    \n

    4.0 (2014-03-30)

    \n
      \n
    • No static files anymore, sitemap is created on the fly!
    • \n
    • Sitemap is split-up into sub-sitemaps by month, allowing up to 50.000 posts per month! More information
    • \n
    • Support for custom post types and custom taxonomis!
    • \n
    • 100% Multisite compatible, including by-blog and network activation.
    • \n
    • Reduced server resource usage due to less content per request.
    • \n
    • New API allows other plugins to add their own, separate sitemaps.
    • \n
    • Note: PHP 5.1 and WordPress 3.3 is required! The plugin will not work with lower versions!
    • \n
    • Note: This version will try to rename your old sitemap files to *-old.xml. If that doesn’t work, please delete them manually since no static files are needed anymore!
    • \n
    \n

    3.4.1 (2014-04-10)

    \n
      \n
    • Compatibility with mysqli
    • \n
    \n

    Version 3.4 (2013-11-24)

    \n
      \n
    • Fixed deprecation warnings in PHP 5.4, thanks to Dion Hulse!
    • \n
    \n

    3.3 (2013-09-28)

    \n
      \n
    • Fixed problem with file permission checking
    • \n
    • Filter out hashs (#) in URLs
    • \n
    \n

    3.2.9 (2013-01-11)

    \n
      \n
    • Fixed security issue with change frequencies and filename of sitemap file. Exploit was only possible with admin account.
    • \n
    \n

    3.2.8 (2012-08-08)

    \n
      \n
    • Fixed wrong custom taxonomy URLs, thanks to ramon fincken of the wordpress.org forum!
    • \n
    • Removed ASK ping since they shut down their service.
    • \n
    • Exclude post_format taxonomy from custom taxonomy list
    • \n
    \n

    3.2.7 (2012-04-24)

    \n
      \n
    • Fixed custom post types, thanks to clearsite of the wordpress.org forum!
    • \n
    • Fixed broken admin layout on WP 3.4
    • \n
    \n

    3.2.6 (2011-09-19)

    \n
      \n
    • Removed YAHOO ping since YAHOO uses bing now
    • \n
    • Removed deprecated function call
    • \n
    \n

    3.2.5 (2011-07-11)

    \n
      \n
    • Backported Bing ping success fix from beta
    • \n
    • Added friendly hint to try out the new beta
    • \n
    \n

    3.2.4 (2010-05-29)

    \n
      \n
    • Added (GMT) to date column in sitemap xslt template to avoid confusion with different time zones
    • \n
    • Fixed wrong SQL statement for author pages, thanks to twoenoug
    • \n
    • Fixed several deprecated function calls
    • \n
    • Note: This release does not support the new multisite feature of WordPress yet and will not be active when multisite is enabled.
    • \n
    \n

    3.2.3 (2010-04-02)

    \n
      \n
    • Fixed that all pages were missing in the sitemap if the “Uncategorized” category was excluded
    • \n
    \n

    3.2.2 (2009-12-19)

    \n
      \n
    • Updated compatibility tag to WordPress 2.9
    • \n
    • Fixed PHP4 problems
    • \n
    \n

    3.2.1 (2009-12-16)

    \n
      \n
    • Notes and update messages at the top of the admin page could interfere with the manual build function
    • \n
    • Help links in the WP contextual help were not shown anymore since the last update
    • \n
    • IE 7 sometimes displayed a cached admin page
    • \n
    • Removed invalid link to config page from the plugin description (The link lead to a “Not enough permission error”)
    • \n
    • Improved performance of getting the current plugin version by caching
    • \n
    • Updated Spanish language files
    • \n
    \n

    3.2 (2009-11-23)

    \n
      \n
    • Added function to show the actual results of a ping instead of only linking to the url
    • \n
    • Added new hook (sm_rebuild) for third party plugins to start building the sitemap
    • \n
    • Fixed bug which showed the wrong URL for the latest Google ping result
    • \n
    • Added some missing documentation
    • \n
    • Removed hardcoded php name for sitemap file in admin urls
    • \n
    • Uses KSES for showing ping test results
    • \n
    • Ping test fixed for WP < 2.3
    • \n
    \n

    3.1.9 (2009-11-13)

    \n
      \n
    • Fixed MySQL Error if author pages were included
    • \n
    \n

    3.1.8 (2009-11-07)

    \n
      \n
    • Improved custom taxonomy handling and fixed wrong last modification date
    • \n
    • Fixed fatal error in WordPress versions lower than 2.3
    • \n
    • Fixed Update Notice for WordPress 2.8 and higher
    • \n
    • Added warning if blog privacy is activated
    • \n
    • Fixed priorities of additional pages were shown as 0 instead of 1
    • \n
    \n

    3.1.7 (2009-10-21)

    \n
      \n
    • Added support for custom taxonomies. Thanks to Lee!
    • \n
    \n

    3.1.6 (2009-08-31)

    \n
      \n
    • Fixed PHP error “Only variables can be passed by reference”
    • \n
    • Fixed wrong URLS of multi-page posts (Thanks artstorm!)
    • \n
    • Updated many language files
    • \n
    \n

    3.1.5 (2009-08-24)

    \n
      \n
    • Added option to completely disable the last modification time
    • \n
    • Fixed problem with HTTPS url for the XSL stylesheet if the sitemap was build via the admin panel
    • \n
    • Improved handling of homepage entry if a single page was set for it
    • \n
    • Fixed mktime warning which appeared sometimes
    • \n
    • Fixed bug which caused inf. reloads after rebuilding the sitemap via the admin panel
    • \n
    • Improved handling of missing sitemaps files if WP was moved to another location
    • \n
    \n

    3.1.4 (2009-06-22)

    \n
      \n
    • Fixed bug which broke all pings in WP older than 2.7
    • \n
    • Added more output in debug mode if pings fail
    • \n
    • Moved global post variable so other plugins can use it in get_permalink()
    • \n
    • Added small icon for ozh admin menu
    • \n
    • Added more help links in UI
    • \n
    \n

    3.1.3 (2009-06-07)

    \n
      \n
    • Changed MSN Live Search to Bing
    • \n
    • Exclude categories also now exludes the category itself and not only the posts
    • \n
    • Pings now use the new WordPress HTTP API instead of Snoopy
    • \n
    • Fixed bug that in localized WP installations priorities could not be saved
    • \n
    • The sitemap cron job is now cleared after a manual rebuild or after changing the config
    • \n
    • Adjusted style of admin area for WP 2.8 and refreshed icons
    • \n
    • Disabled the “Exclude categories” feature for WP 2.5.1, since it doesn’t have the required functions yet
    • \n
    \n

    3.1.2 (2008-12-26)

    \n
      \n
    • Changed the way the stylesheet is saved (default / custom stylesheet)
    • \n
    • Sitemap is now rebuild when a page is published
    • \n
    • Removed support for static robots.txt files, this is now handled via WordPress functions
    • \n
    • Added compat. exceptions for WP 2.0 and WP 2.1
    • \n
    \n

    3.1.1 (2008-12-21)

    \n
      \n
    • Fixed redirect issue if wp-admin is rewritten via mod_rewrite, thanks to macjoost
    • \n
    • Fixed wrong path to assets, thanks PozHonks
    • \n
    • Fixed wrong plugin URL if wp-content was renamed / redirected, thanks to wnorris
    • \n
    • Updated WP User Interface for 2.7
    • \n
    • Various other small things
    • \n
    \n

    3.1.0.1 (2008-05-27)

    \n
      \n
    • Extracted UI JS to external file
    • \n
    • Enabled the option to include following pages of multi-page posts
    • \n
    • Script tries to raise memory and time limit if active
    • \n
    \n

    3.1 (2008-05-22)

    \n
      \n
    • Marked as stable
    • \n
    \n

    3.1b3 (2008-05-19)

    \n
      \n
    • Cleaned up plugin directory and moved img files to subfolders
    • \n
    • Fixed background building bug in WP 2.1
    • \n
    • Removed auto-update plugin link for WP < 2.5
    • \n
    \n

    3.1b2 (2008-05-18)

    \n
      \n
    • Fixed critical bug with the build in background option
    • \n
    • Added notification if a build is scheduled
    • \n
    \n

    3.1b1 (2008-05-08)

    \n
      \n
    • Splitted plugin in loader, generator and user interface to save memory
    • \n
    • Generator and UI will only be loaded when needed
    • \n
    • Secured all admin actions with nonces
    • \n
    • Improved WP 2.5 handling
    • \n
    • New “Suggest a Feature” link
    • \n
    \n

    3.0.3.3 (2008-04-29)

    \n
      \n
    • Fixed author pages
    • \n
    • Enhanced background building and increased delay to 15 seconds
    • \n
    • Enabled background building by default
    • \n
    \n

    3.0.3.2 (2008-04-28)

    \n
      \n
    • Improved WP 2.5 handling (fixes blank screens and timeouts)
    • \n
    \n

    3.0.3.1 (2008-03-30)

    \n
      \n
    • Added compatibility CSS for WP 2.5
    • \n
    \n

    3.0.3 (2007-12-30)

    \n
      \n
    • Added option to ping MSN Live Search
    • \n
    • Removed some WordPress hooks (the sitemap isn’t updates with every comment anymore)
    • \n
    \n

    3.0.2.1 (2007-11-28)

    \n
      \n
    • Fixed wrong XML Schema Location (Thanks to Emanuele Tessore)
    • \n
    • Added Russian Language files by Sergey http://ryvkin.ru
    • \n
    \n

    3.0.2 (2007-11-25)

    \n
      \n
    • Fixed bug which caused that some settings were not saved correctly
    • \n
    • Added option to exclude pages or post by ID
    • \n
    • Restored YAHOO ping service with API key since the other one is to unreliable
    • \n
    \n

    3.0.1 (2007-11-03)

    \n
      \n
    • Changed HTTP client for ping requests to Snoopy
    • \n
    • Added “safemode” for SQL which doesn’t use unbuffered results
    • \n
    • Added option to run the building process in background using wp-cron
    • \n
    • Added links to test the ping if it failed
    • \n
    \n

    3.0 final (2007-09-24)

    \n
      \n
    • Marked as stable
    • \n
    • Removed useless functions
    • \n
    \n

    3.0b11 (2007-09-23)

    \n
      \n
    • Changed mysql queries to unbuffered queries
    • \n
    • Uses MUCH less memory
    • \n
    • Option to limit the number of posts
    • \n
    \n

    3.0b10 (2007-09-04)

    \n
      \n
    • Added category support for WordPress 2.3
    • \n
    • Fixed bug with empty URLs in sitemap
    • \n
    • Repaired GET building
    • \n
    \n

    3.0b9 (2007-09-02)

    \n
      \n
    • Added tag support for WordPress 2.3
    • \n
    • Fixed archive bug with static pages (Thanks to Peter Claus Lamprecht)
    • \n
    • Fixed some missing translation strings, thanks to Kirin Lin
    • \n
    \n

    3.0b8 (2007-07-22)

    \n
      \n
    • Fixed bug with empty categories
    • \n
    • Fixed bug with translation plugins
    • \n
    • Added support for robots.txt
    • \n
    • Switched YAHOO ping API from YAHOO Web Services to the “normal” ping service
    • \n
    • Search engines will only be pinged if the sitemap file has changed
    • \n
    \n

    3.0b7 (2007-05-17)

    \n
      \n
    • Added Ask.com notification
    • \n
    • Added option to include the author pages like /author/john
    • \n
    • Fixed WP 2.1 / Pre 2.1 post / pages database changes
    • \n
    • Added check to not build the sitemap if importing posts
    • \n
    • Fixed wrong XSLT location (Thanks froosh)
    • \n
    • Small enhancements and bug fixes
    • \n
    \n

    3.0b6 (2007-01-23)

    \n
      \n
    • sitemap.xml.gz was not compressed
    • \n
    • YAHOO update-notification was PHP5 only (Thanks to Joseph Abboud!)
    • \n
    • More WP 2.1 optimizations
    • \n
    • Reduced memory usage with PHP5
    • \n
    \n

    3.0b5 (2007-01-19)

    \n
      \n
    • WordPress 2 Design
    • \n
    • YAHOO update notification
    • \n
    • New status report, removed ugly logfiles
    • \n
    • Added option to define a XSLT stylesheet and added a default one
    • \n
    • Fixed bug with sub-pages, thanks to MikePeter and Glenn
    • \n
    • Improved file handling, thanks to VJTD3
    • \n
    • WP 2.1 improvements
    • \n
    \n

    3.0b4 (2006-11-16)

    \n
      \n
    • Fixed some smaller bugs
    • \n
    • Decreased memory usage which should solve timeout and memory problems
    • \n
    • Updated namespace to support YAHOO and MSN
    • \n
    \n

    3.0b2 (2006-01-14)

    \n
      \n
    • Fixed several bugs reported by users
    • \n
    \n

    3.0b (2005-11-25)

    \n
      \n
    • WordPress 2.0 (Beta, RC1) compatible
    • \n
    • Added different priority calculation modes and introduced an API to create custom ones (Some people didn’t like the way to calculate the post priority based on the count of user comments. This will give you the possibility to develop custom priority providers which fit your needs.)
    • \n
    • Added support to use the Popularity Contest plugin by Alex King to calculate post priority (If you are already using the Popularity Contest plugin, this will be the best way to determine the priority of the posts. Uses to new priority API noted above.)
    • \n
    • Added option to exclude password protected posts (This was one of the most requested features.)
    • \n
    • Posts and pages marked for publish with a date in the future won’t be included
    • \n
    • Added function to start sitemap creation via GET and a secret key (If you are using external software which directly writes into the database without using the WordPress API, you can rebuild the sitemap with a simple HTTP Request. This can be made with a cron job for example.)
    • \n
    • Improved compatibility with other plugins (There should no longer be problems with other plugins now which checked for existence of a specified function to determine if you are in the control panel or not.)
    • \n
    • Recoded plugin architecture which is now fully OOP (The code is now cleaner and better to understand which makes it easier to modify. This should also avoid namespace problems.)
    • \n
    • Improved speed and optimized settings handling (Settings and pages are only loaded if the sitemap generation process starts and not every time a page loads. This saves one MySQL Query on every request.)
    • \n
    • Added Button to restore default configuration (Messed up the config? You’ll need just one click to restore all settings.)
    • \n
    • Added log file to check everything is running (In the new log window you can see when your sitemap was rebuilt or if there was any error.)
    • \n
    • Improved user-interface
    • \n
    • Added several links to homepage and support (This includes the Notify List about new releases and the WordPress support forum.)
    • \n
    \n

    2.7 (2005-11-25)

    \n
      \n
    • Added Polish Translation by kuba
    • \n
    \n

    2.7 (2005-11-01)

    \n\n

    2.7 (2005-07-21)

    \n
      \n
    • Fixed bug with incorrect date in additional pages (wrong format)
    • \n
    • Added Swedish Translation by Tobias Bergius
    • \n
    \n

    2.6 (2005-07-16)

    \n
      \n
    • Included Chinese (Simplified) language files by june6
    • \n
    \n

    2.6 (2005-07-04)

    \n
      \n
    • Added support to store the files at a custom location
    • \n
    • Changed the home URL to have a slash at the end
    • \n
    • Fixed errors with wp-mail
    • \n
    • Added support for other plugins to add content to the sitemap
    • \n
    \n

    2.5 (2005-06-15)

    \n
      \n
    • You can include now external pages which aren’t generated by WordPress or are not recognized by this plugin
    • \n
    • You can define a minimum post priority, which will overrride the calculated value if it’s too low
    • \n
    • The plugin will automatically ping Google whenever the sitemap gets regenerated
    • \n
    • Update 1: Included Spanish translations by Cesar Gomez Martin
    • \n
    • Update 2: Included Italian translations by Stefano Aglietti
    • \n
    • Update 3: Included Traditional Chinese translations by Kirin Lin
    • \n
    \n

    2.2 (2005-06-08)

    \n
      \n
    • Language file support: Hiromasa from http://hiromasa.zone.ne.jp sent me a japanese version of the user interface and modified the script to support it! Thanks for this! Check the WordPress Codex how to set the language in WordPress.
    • \n
    • Added Japanese user interface by Hiromasa
    • \n
    • Added German user interface by me
    • \n
    \n

    2.12 (2005-06-07)

    \n
      \n
    • Changed SQL Statement for categories that it also works on MySQL 3
    • \n
    \n

    2.11 (2005-06-07)

    \n
      \n
    • Fixed a hardcoded tablename which made a SQL error
    • \n
    \n

    2.1 (2005-06-07)

    \n
      \n
    • Can also generate a gzipped version of the xml file (sitemap.xml.gz)
    • \n
    • Uses correct last modification dates for categories and archives. (Thanks to thx Rodney Shupe for the SQL)
    • \n
    • Supports now different WordPress / Blog directories
    • \n
    • Fixed bug which ignored different post/page priorities (Reported by Brad)
    • \n
    \n

    2.01 (2005-06-07)

    \n
      \n
    • Fixed compatibility for PHP installations which are not configured to use short open tags
    • \n
    • Changed Line 147 from _e($i); to _e(strval($i));
    • \n
    • Thanks to Christian Aust for reporting this!
    • \n
    \n", "description": "

    Generate XML and HTML sitemaps for your website with ease using the XML Sitemap Generator for Google. This plugin enables you to improve your SEO rankings by creating page, image, news, video, HTML, and RSS sitemaps. It also supports custom post types and taxonomies, allowing you to ensure that all of your content is being indexed by search engines. With a user-friendly interface, you can easily configure the plugin to suit your needs and generate sitemaps in just a few clicks. Keep your website up-to-date and make sure that search engines are aware of all of your content by using the XML Sitemap Generator for Google.

    \n

    The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.

    \n

    Supported for more than a decade and rated among the best, it will do exactly what it’s supposed to do – providing a complete XML sitemap for search engines!

    \n
    \n

    If you like the plugin, feel free to rate it! 🙂

    \n
    \n

    Related Links:

    \n\n

    License

    \n

    Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial site.

    \n

    Translations

    \n

    The plugin comes with various translations, please refer to the WordPress Codex for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all definitions and may be used with a gettext editor like Poedit (Windows).

    \n", "screenshots": "
    1. \"Plugin

      Plugin options page

    2. \"Sample

      Sample XML sitemap (with a stylesheet for making it readable)

    3. \"Sample

      Sample XML sitemap (without stylesheet)

    ", "installation": "
      \n
    1. Deactivate or disable other sitemap generators.
    2. \n
    3. Install the plugin like you always install plugins, either by uploading it via FTP or by using the “Add Plugin” function of WordPress.
    4. \n
    5. Activate the plugin on the plugin administration page
    6. \n
    7. If you want: Open the plugin configuration page, which is located under Settings -> XML-Sitemap and customize settings like priorities and change frequencies.
    8. \n
    9. The plugin will automatically update your sitemap if you publish new content, so there is nothing more to do 🙂
    10. \n
    \n"}, "versions": {"4.0": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.9.zip", "trunk": "https://downloads.wordpress.org/plugin/google-sitemap-generator.zip", "4.1.10": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.10.zip", "4.1.11": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.11.zip", "4.1.12": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.12.zip", "4.1.13": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.13.zip", "4.1.14": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.14.zip", "4.1.15": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.15.zip", "4.1.16": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.16.zip", "4.1.17": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.17.zip", "4.1.18": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.18.zip", "4.1.19": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.19.zip", "4.1.20": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.20.zip", "4.1.21": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.21.zip", "4.0.7.1": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.7.1.zip"}, "downloaded": 41432831, "description": "

    Generate XML and HTML sitemaps for your website with ease using the XML Sitemap Generator for Google. This plugin enables you to improve your SEO rankings by creating page, image, news, video, HTML, and RSS sitemaps. It also supports custom post types and taxonomies, allowing you to ensure that all of your content is being indexed by search engines. With a user-friendly interface, you can easily configure the plugin to suit your needs and generate sitemaps in just a few clicks. Keep your website up-to-date and make sure that search engines are aware of all of your content by using the XML Sitemap Generator for Google.

    \n

    The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.

    \n

    Supported for more than a decade and rated among the best, it will do exactly what it’s supposed to do – providing a complete XML sitemap for search engines!

    \n
    \n

    If you like the plugin, feel free to rate it! 🙂

    \n
    \n

    Related Links:

    \n\n

    License

    \n

    Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial site.

    \n

    Translations

    \n

    The plugin comes with various translations, please refer to the WordPress Codex for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all definitions and may be used with a gettext editor like Poedit (Windows).

    \n", "donate_link": "", "num_ratings": 2225, "screenshots": {"1": {"src": "https://ps.w.org/google-sitemap-generator/assets/screenshot-1.png?rev=1701944", "caption": "Plugin options page"}, "2": {"src": "https://ps.w.org/google-sitemap-generator/assets/screenshot-2.png?rev=1701944", "caption": "Sample XML sitemap (with a stylesheet for making it readable)"}, "3": {"src": "https://ps.w.org/google-sitemap-generator/assets/screenshot-3.png?rev=1701944", "caption": "Sample XML sitemap (without stylesheet)"}}, "support_url": "https://wordpress.org/support/plugin/google-sitemap-generator/", "contributors": {"auctollo": {"avatar": "https://secure.gravatar.com/avatar/2c6b3e63e6cab50f814f0b20881efe19a2ad2d7b841270d5210e769ee485ccd8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/auctollo/", "display_name": "Auctollo"}}, "last_updated": "2025-04-17 5:58pm GMT", "preview_link": "", "requires_php": "5.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.21.zip", "author_profile": "https://profiles.wordpress.org/auctollo/", "business_model": "commercial", "repository_url": "", "upgrade_notice": {"4.1.18": "

    Thank you for using XML Sitemap Generator! This release resolves critical issues reported in the support forum. Thank you to all who reported issues! Make sure to "Enable auto-updates!"

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f4e2-704a-b63b-acef94b9c848", "name": "XML Sitemap Generator for Google", "slug": "google-sitemap-generator", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1744912680, "version": "4.1.21"}, "support_threads": 7, "requires_plugins": [], "short_description": "Generate multiple types of sitemaps to improve SEO and get your website indexed quickly.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-653e-718d-b03b-e2d6bb231202', 'gtranslate', 'Translate WordPress with GTranslate', 'Translate WordPress with Google Translate multilanguage plugin to make your website multilingual. Complete multilingual SEO solution for WordPress.', '

    Translate WordPress with GTranslate plugin uses Google Translate automatic translation service to translate wordpress site with Google power and make it multilingual. With 103 available languages your site will be available to more than 99% of internet users. Our paid versions are fully SEO compatible which will increase your international traffic and sales. This translate plugin is a budget multilingual WordPress solution which combines automatic and human translations to save money and is easy to implement.

    -

    GTranslate is a leading website translation services provider since 2008, it moves away the language barriers.

    -

    Compared to other translation plugins for WordPress, we use cloud based approach which does not slow down your website. In addition to that, we can offer complete SEO features based on sub-domains with our paid options, which can make your website appear in search engines in different languages which will increase your international traffic and sales. In our paid versions we DO NOT limit the number of words or the number of translated pageviews. You DO NOT pay additionally for automatic translations.

    -

    Please use GTranslate Support for your questions and support requests! We are multilingual!

    -

    Please check our FAQ to get quick answers.

    -

    Features

    -
      -
    • Free Google automatic machine translation
    • -
    • Hides Google top frame after translation
    • -
    • Translate website on the fly
    • -
    • Translate posts and pages
    • -
    • Translate categories and tags
    • -
    • Menus and widgets translation
    • -
    • Themes and plugins translation
    • -
    • Right to left language support
    • -
    • Google language translator widget
    • -
    • Auto-switch language based on browser defined language
    • -
    • Available styles Float, Dropdown, Flags, Flags with dropdown, Nice dropdown with flags, Flags with language names, Flags with language codes, Language names, Language codes, Globe, Popup
    • -
    • Floating language selector
    • -
    • WooCommerce shop translation
    • -
    • Multilingual language names in native alphabet
    • -
    • Alternative flags for Quebec, Canada, USA, Brazil, Mexico, Argentina, Colombia
    • -
    • Lazy loading for language flags and js libraries to boost performance
    • -
    • Lightweight vanilla javascript without dependencies
    • -
    • Forum Support
    • -
    -

    Paid Features

    -
      -
    • Multilingual SEO – Enable search engine indexing
    • -
    • Neural machine translations with human level translation quality
    • -
    • Increase traffic and AdSense revenue
    • -
    • Search engine friendly (SEF) URLs
    • -
    • Yoast SEO compatible – translate meta keywords, meta description, schema.org data structures, translate sitemaps
    • -
    • WooCommerce compatible – translate products, schema.org data structures
    • -
    • You can have sub-directory (example.com/es/) or sub-domain (es.example.com) URL structure
    • -
    • URL Translation aka slug translation is possible (example.com/about-us → example.es/sobre-nosotros)
    • -
    • Add hreflang tags for translated alternatives
    • -
    • You can manually correct translations
    • -
    • In context translation interface (make corrections without losing the context)
    • -
    • Meta data translation (meta keywords, meta description)
    • -
    • Translating schema.org microdata for better search engine appearance
    • -
    • Seamless updates (cloud service updated on our side – SaaS, you do not need to worry about backups on your side)
    • -
    • JSON format translation
    • -
    • Translate WooCommerce emails
    • -
    • AMP translation (Accelerated Mobile Pages translation)
    • -
    • Image localization – Media translation
    • -
    • Translation Proxy (aka Translation Delivery Network)
    • -
    • Centralized Translation Cache – We revise and improve translations over time
    • -
    • Language Hosting (example.fr)
    • -
    • User Dashboard with Analytics
    • -
    • Live Chat Support
    • -
    -

    See also

    -

    If you are looking for unlimited, high-quality automatic translations, check out TranslateX – an automatic translation API offering unlimited translation for your website or application.

    -

    We also offer integration plugins:
    -TranslateX for Loco Translate – integrate TranslateX API directly into Loco Translate for seamless, unlimited automatic translations.
    -TranslateX for TranslatePress – bring unlimited automatic translation to TranslatePress using TranslateX API.

    -

    These solutions make it easy to supercharge your WordPress multilingual setup with TranslateX’s secure and affordable API.

    -

    GTranslate WordPress Demo
    -

    -

    Watch GTranslate Tour
    -

    -

    Edit Translations Demo (paid)
    -

    -', '3.0.9', 'edo888', '2.8.1', NULL, '6.8.3', 'https://downloads.wordpress.org/plugin/gtranslate.3.0.9.zip', '2010-03-31 00:00:00+00', '2025-07-08 14:54:00+00', 'https://profiles.wordpress.org/edo888/', 98, 4682, 50, 49, 800000, 13348112, 'https://gtranslate.io/?xyz=998', 'https://gtranslate.io/?xyz=998#pricing', NULL, NULL, 'https://wordpress.org/support/plugin/gtranslate/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Translate WordPress with GTranslate", "slug": "gtranslate", "tags": {"language": "language", "translate": "translate", "translator": "translator", "translation": "translation", "multilingual": "multilingual"}, "added": "2010-03-31", "icons": {"1x": "https://ps.w.org/gtranslate/assets/icon-128x128.png?rev=2595917", "2x": "https://ps.w.org/gtranslate/assets/icon-256x256.png?rev=2595917"}, "author": "edo888", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/gtranslate/assets/banner-772x250.png?rev=3287209", "high": "https://ps.w.org/gtranslate/assets/banner-1544x500.png?rev=3287209"}, "ratings": {"1": 68, "2": 25, "3": 37, "4": 152, "5": 4400}, "version": "3.0.9", "homepage": "https://gtranslate.io/?xyz=998", "requires": "2.8.1", "sections": {"faq": "\n
    \nIt doesn’t translate, what to do?\n\n

    \n

    Please check GTranslate Support Forum and feel free to create a new topic if you cannot find answers.

    \n

    \n
    \nWhat is GTranslate?\n\n

    \n

    GTranslate can translate your website into multiple languages and make it multilingual.

    \n
      \n
    • Multilingual solution makes your website available to the world
    • \n
    • One click translation helps visitors to read your site in their native language
    • \n
    • Free automatic translation translates your site instantly upon installation
    • \n
    • Professional translation by a human being is available
    • \n
    • Customizable language switcher lets you choose the suitable layout for your site
    • \n
    • Analytics provides insight into your audience and user activity
    • \n
    \n
    \n

    \n
    \nIs it FREE?\n\n

    \n

    Yes! We have free version and paid versions with advanced features.
    \nUnlike other translate plugins, which require you to pay for Google Translate API usage or other translate API usage, we also provide automatic translations for free.

    \n

    \n
    \nWhat is the quality of translation?\n\n

    \n

    In our free version we use Phrase Based Machine Translations provided by Google Translate, while in our paid versions use Google Translate Neural Translations which are very accurate for popular language pairs.
    \nIn the paid versions you can refine the automatic translations yourself or order professional translations or proofreading of a translated content.
    \nYou can get a translation cost estimate by using our Website Translation Cost Calculator

    \n

    \n
    \nAre the translations provided free of charge?\n\n

    \n

    Yes, we use Google Translate widget for website which provides free phrase based machine translations, which makes it possible to make your wordpress website multilingual instantly upon installation.
    \nIn our paid versions we use Google Translate state of the art Neural Translations which are included in the service price and there are no limits on the word count.

    \n

    Besides we offer cost effective automatic translation proofreading service and also professional translation service.
    \nYou can get an estimate from our Website Translation Price Calculator

    \n

    \n
    \nCan I modify the translations?\n\n

    \n

    That feature is available only in our paid version. You will be able to make edits directly on the page without losing the context.

    \n

    By the way, we can help you to translate your website with a cost effective approach by post-editing your automatic translated content.
    \nThe proofreading service will be done by a native speakers and if you want to take the quality to another service, we also have a professional website translation service available.
    \nYou can get an instant website translation estimate by using our Website Word Counter tool.

    \n

    \n
    \nWhich languages are supported?\n\n

    \n

    Here is the list: Afrikaans, Albanian, Amharic, Arabic, Armenian, Azerbaijani, Basque, Belarusian, Bengali, Bosnian, Bulgarian, Catalan, Cebuano, Chichewa, Chinese (Simplified), Chinese (Traditional), Corsican, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Filipino, Finnish, French, Frisian, Galician, Georgian, German, Greek, Gujarati, Haitian Creole, Hausa, Hawaiian, Hebrew, Hindi, Hmong, Hungarian, Icelandic, Igbo, Indonesian, Irish, Italian, Japanese, Javanese, Kannada, Kazakh, Khmer, Korean, Kurdish (Kurmanji), Kyrgyz, Lao, Latin, Latvian, Lithuanian, Luxembourgish, Macedonian, Malagasy, Malay, Malayalam, Maltese, Maori, Marathi, Mongolian, Myanmar (Burmese), Nepali, Norwegian, Pashto, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Samoan, Scottish Gaelic, Serbian, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenian, Somali, Spanish, Sundanese, Swahili, Swedish, Tajik, Tamil, Telugu, Thai, Turkish, Ukrainian, Urdu, Uzbek, Vietnamese, Welsh, Xhosa, Yiddish, Yoruba, Zulu

    \n

    \n
    \nIs GTranslate SEO compatible?\n\n

    \n

    Our free version doesn’t give any SEO advantage.

    \n

    For SEO features and multilingual SEO you need to go with a paid version which have all the SEO advantages. Our paid version will translate your website and allow search engines to discover and index the translated content.
    \nUnlike other translate plugins, we provide you all the possible tools to match with your multilingual SEO strategy.
    \nFor example you can have your translated content available via sub-directories (https://example.com/es, https://example.com/fr) or sub-domains (https://it.example.com, https://fr.example.com) or even you can host the translated versions on a top level country specific domain or any other domain like (https://example.fr, https://example.de), which will increase your chances to rank higher in local search engine’s results pages.

    \n

    \n
    \nWhat is multilingual SEO?\n\n

    \n

    Multilingual SEO is a SEO strategy which uses new content generation technique by translating your original content and making your website multilingual. When you translate your website into many languages you actually create many new multilingual keywords targeted for international market. It helps to increase your search appearnce or impressions count on search engines results pages (SERPs), which can generate more traffic, increase sales and rise the conversion rate, because when the wording is in the correct language it is more effective.

    \n

    \n
    \nIs URL Translation available?\n\n

    \n

    In our paid versions we have a feature to translate URL of your website which will give you more SEO advantage.
    \nFor example http://example.com/about-us → http://example.com/sobre-nosotros

    \n

    This is an important part of multilingual SEO strategy. When you have URL Translate option and translate also your website URLs also known us slugs, you are creating more keywords, which count as an improvement in your page rank for that keywords.

    \n

    \n
    \nDoes it translate emails too?\n\n

    \n

    Yes, with our paid version we can also translate WooCommerce emails.

    \n

    \n
    \nHow the free version differs from the paid versions?\n\n

    \n

    Free vesion is a nice looking language selector you can place on your website. It has a built in Javascript engine which allows to translate your website automatically to multiple languages. With our free translate plugin your website URL doesn’t change and the translations are not stored. While paid versions are a translation proxy also known as Translation Delivery Network. We host the translated versions of your website on our cloud network under a language specific domain. In that case every language will have a separate domain or separate URL and be indexed in search engines, which will help you to increase international traffic and sales.

    \n

    \n
    \nWhat is a Translation Delivery Network?\n\n

    \n

    Translation Delivery Network is a translation proxy which mirrors your website in different languages.

    \n

    GTranslate TDN technology is a cloud-based approach to the website translation task. There is no need to alter your environment and install software to localize your website. You can have your multilingual website up and running in less than 5 minutes.

    \n

    We will translate your content and host your translations in our cloud network. All the visits to your translated versions will be proxied through our network to your original website, so you will have a translated mirror of your website.

    \n

    This keeps away the need to use additional resources on your server like storage to store translations, compute time to render the translated pages or network bandwidth to deliver the translated pages to your website visitors. All is done through our network.

    \n

    \n
    \nCan I exclude some parts from being translated?\n\n

    \n

    Yes, you need to wrap the text you don’t want to be translated with <span class="notranslate"></span>.
    \nWith our paid versions you will have more control on the content which you do not want to translate. We have Skip Phrases, Skip Translations by CSS selectors and also Skip Pages features available.
    \nYou can read more about skipping translations on How to skip translations?

    \n

    \n
    \nWhich plugins can it translate?\n\n

    \n

    All plugins are supported including popular plugins like WooCommerce, Yoast SEO.

    \n

    Our technology allows us to translate what is visible on the page, since we are parsing the end result when your website is already generated and it doesn’t matter how the content is generated and by which plugin. We can translate all HTML websites.
    \nIf you notice that something is not translated, please contact our live chat and we will be happy to solve any issues. Usually the not translated content is being loaded on your website from 3rd party sources.

    \n

    We also offer you to change the images and media content on the translated versions and by doing that you can also translate the texts inside images and videos.

    \n
    \n

    \n
    \nHow Translation Delivery Network works?\n\n

    \n

    You just need to change your DNS records to add sub-domains or domains dedicated to your languages to our Translation Delivery Network.

    \n

    So when someone visits the new added sub-domain we will show the translated clone of your website.

    \n

    After that you can just configure and place the GTranslate Free widget on your site to enable language selection.

    \n

    \n
    \nWhat are the server requirements?\n\n

    \n

    There are no server requirements! Your website can be written in any programming language and hosted on any web server.

    \n

    \n
    \nWhat about updates?\n\n

    \n

    Updates are done seamlessly. Since the translations are hosted on our server we take care about updates. You just use up to date service every day. No need to worry about backups.

    \n

    \n
    \nDo I need to pay for Google Translate API key usage?\n\n

    \n

    No, we provide the automatic translations for free.

    \n

    In our free version, we provide Phrase Based machine translations from Google Translate. In our paid versions, you get state-of-the-art Neural Translations. We also do not limit the number of words or translated pageviews on your website, unlike other translate plugins.

    \n

    Unlike other plugins such as TranslatePress or Weglot, you do not pay additionally for automatic translations.

    \n

    We also offer a cost-effective approach for improving website translations: you can request an automatic translation post-editing service (done by a native speaker), or order a professional translation. Get an instant estimate for your website at our Website Translation Quote.

    \n

    If you need unlimited, fast, and affordable automatic translation, check out TranslateX – our automatic translation API that offers unlimited translation for your website or app. We also provide integration plugins for Loco Translate and TranslatePress to easily bring TranslateX’s unlimited API into other popular translation plugins.

    \n

    \n
    \nCan I test before making a payment?\n\n

    \n

    Yes, we have a 15 days free trial for our new customers.

    \n

    \n
    \nHow does the 15 day free trial work for your paid version?\n\n

    \n

    Trial is available for new customers only. If you do not wish to continue you may cancel any time during the trial period and you will not be charged anything.

    \n

    \n
    \nHow can I be sure that search engines will index my website translations?\n\n

    \n

    You can check that this website is indexed in Google by searching for site:gtranslate.io.

    \n

    \n
    \nHow I can edit the translations or order professional human translations?\n\n

    \n

    You need to go to the language you want to edit, for instance, French: http://domain.com/fr/ and add ?language_edit=1 to the end of the URL: http://domain.com/fr/?language_edit=1 and you will see the Edit buttons near each text. Read more at How to edit translations?

    \n

    If you want us to translate your website professionally or provide you a proofreading service for automatic translated content, you can get an instant estimate from Website Translation Quote, where you will get a detailed document with the list of pages, unique word count and prices to translate them.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    great and free

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy structurewebdesigner on October 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    you can choose a lot of languages

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy normastrapg on October 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    thank you very much!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    translation plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy morumbix on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks to the support team for helping to solve the related issues, especially Grikor, Hasmik, and Susanna 😊

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tmax530tuning on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy davidsalguero1697 on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I love it

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy niclashjulstrom on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin makes it easy to have several languages and domains connected to the same webpage. The setup was a bit tricky to setup multiple domains but the support from Susanna was very good. She helped me getting everything to work as we wanted.

    \n\n\n\n

    It would have been good if they could extend the features to allow multiple domain names for same language and add so that a domain could have multiple languages. For example if domain.fi (for Finland) could have Finnish as default and Swedish as optional. Some languages, for example Spanish, is the default language for many countries and therefore it should be good to have multiple local domains to the same language.

    \n\n\n\n

    But overall, very good plugin that makes the translations and domain handling easy.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Silvia (SIPIVI) on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A quick and easy way to translate your website. I am really grateful for it

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    5-Star Review for Developer Grikor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tonyzhou654 on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I want to express my sincere appreciation to Grikor for his excellent support and professionalism. He quickly identified and resolved the technical transaction issues I was experiencing, ensuring everything was back to normal in no time. His communication was clear and timely, and he went the extra mile to explain the cause of the problem and the steps he took to fix it.

    \n\n\n\n

    Thanks to his expertise and dedication, the entire process was smooth and stress-free. I highly recommend Grikor for any technical or development-related tasks — a true professional who delivers results efficiently and with great attention to detail.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    SSL handshake failed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy luca4532 on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I recently faced a serious issue with the plugin: for several days my website showed errors on the translated versions with the message “SSL handshake failed.” It was a critical situation because I was risking losing SEO rankings and having products blocked on Merchant.

    \n\n\n\n

    At first, the support team asked me for several technical details, but in the end they quickly fixed the issue by changing the connection IP, and everything started working again immediately. It’s important to note that this kind of error is not caused by the plugin itself, but by some hosting providers blocking proxy IPs.

    \n\n\n\n

    I want to thank the support team, especially Grikor, who handled my case with patience and professionalism until the problem was fully solved. Now my site is back online and I can continue my work without interruptions.

    \n\n\n\n

    This is a very useful plugin with a support team that – even in difficult situations – shows real dedication and competence.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple, friendly free and easily ugradable if you want/need

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy planettrazan on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Wonderful stuff. Choose the languages you need - and where to put the dropdown. Forgot a language? Just go back and add it.
    Works really well in free plan, but if you have tricky stuff you might want to upgrade so you can edit translations etc.

    \n
    \n
    \n", "changelog": "

    3.0.9

    \n
      \n
    • Updated localization strings on the GTranslate plugin settings page.
    • \n
    • Added information about TranslateX – unlimited automatic translation API, and integration plugins for Loco Translate and TranslatePress.
    • \n
    \n

    3.0.8

    \n
      \n
    • Fixed current URL for hreflang tags when WordPress is installed in a sub-folder
    • \n
    • Changed sessionStorage to localStorage for more persistence when auto switching language
    • \n
    • Added a check for gtranslateSettings variable which can be undefined due to some cache plugins
    • \n
    \n

    3.0.7

    \n
      \n
    • Added “gtranslate” into LiteSpeed cache delayed exclude list
    • \n
    \n

    3.0.6

    \n
      \n
    • Added email translation support for emails sent by WP SMTP MAIL plugin
    • \n
    • Added “gtranslate” into LiteSpeed cache exclude list
    • \n
    • Fix for WooCommerce geoIP detection on WP Engine platform
    • \n
    \n

    3.0.5

    \n
      \n
    • Fix for fatal error in email translation when args parameter is malformed
    • \n
    • Updated flags location to avoid additional 301 redirect for sub-domain URL structure
    • \n
    • Added skip translate for language links rendered by gt-link shortcode
    • \n
    \n

    3.0.4

    \n
      \n
    • Added protection against XSS by bad acting admins
    • \n
    • Added flag size option for Globe widget look
    • \n
    \n

    3.0.3

    \n
      \n
    • Fix mobile touch-no-click issue for float look in horizontal open direction mode
    • \n
    • Fix for invalid input in Custom CSS section which can break the settings interface
    • \n
    • Removed translated text highlight on hover
    • \n
    • Added more litespeed cache related excludes
    • \n
    \n

    3.0.2

    \n
      \n
    • Fix for multiple appearance of the language selector in menus for some themes which call the render menu more than once
    • \n
    • Removed unused CSS code and additional query string
    • \n
    \n

    3.0.1

    \n
      \n
    • Ground up rebuild with breaking changes to the language switcher
    • \n
    • Performance upgrades: all unnecessary assets are being lazy loaded, lightweight vanilla js without dependencies
    • \n
    • New CDN option for assets available
    • \n
    • New widget look: Float
    • \n
    • Popup widget look optimized and out of beta
    • \n
    • Dropdown widget look optimized, Select Language label customization option added
    • \n
    • Globe widget look optimized, globe size and color configuration options added
    • \n
    • Easy positioning into website menu
    • \n
    • Tested with the following caching plugins: Autoptimize, LiteSpeed Cache, W3 Total Cache, WP Fastest Cache, WP Rocket, WP Super Cache, WP Optimize, SG Optimizer
    • \n
    \n

    2.9.15

    \n
      \n
    • Google Translate Toolbar CSS updated
    • \n
    • Added main language validity check for config.php file before modifying it
    • \n
    \n

    2.9.14

    \n
      \n
    • Fix for images not appearing in WooCommerce PDF Invoices after translation
    • \n
    • Converted get parameters encoding from rfc1738 to rfc3986
    • \n
    • Replaced gzdecode with zlib_decode to be zlib encoding type independent
    • \n
    \n

    2.9.13

    \n
      \n
    • Added translation support for PDF invoices in WooCommerce PDF Invoices plugin
    • \n
    • Fixed email translation issue with custom domains
    • \n
    • Fixed typo in Sundanese language name
    • \n
    \n

    2.9.12

    \n
      \n
    • Fix for conflict with WP Rocket plugin when “Load JavaScript deferred” option is enabled
    • \n
    \n

    2.9.11

    \n
      \n
    • Fix for Divi when both “Defer jQuery” and “Enqueue jQuery Compatibility Script” are enabled in Divi Theme Performance options
    • \n
    \n

    2.9.10

    \n
      \n
    • Added support for deffered jQuery library loading, this should fix issues with Divi theme jQuery library defer option
    • \n
    \n

    2.9.9

    \n
      \n
    • Fixed information disclosure security issue through url_addon/debug.txt
    • \n
    • Added admin notification when translation debug mode is on
    • \n
    • Fixed typo in Irish language name in native alphabet
    • \n
    • Added is_readable check for config.php file before modifying it
    • \n
    • Added conflict notice for WPML Multilingual CMS plugin
    • \n
    \n

    2.9.8

    \n
      \n
    • Fix for email translation issue related to new base64 encoding format introduced in v2.9.7
    • \n
    • Added new fields into woocommerce script data for translation
    • \n
    • Removed script_loader_tag format modification, which is not necessary any more
    • \n
    \n

    2.9.7

    \n
      \n
    • Happy New Year! 🙂
    • \n
    • Fixed language selector issue when using custom domains for different languages
    • \n
    • Email translation logic updated to use base64 encoding to avoid potential firewall blocks
    • \n
    \n

    2.9.6

    \n
      \n
    • New flat flags style in SVG format
    • \n
    • Added check version to avoid double Google Translate library inclusion which may cause javascript “Uncaught RangeError” error in free version
    • \n
    \n

    2.9.5

    \n
      \n
    • Fix for javascript error introduced in 2.9.4
    • \n
    \n

    2.9.4

    \n
      \n
    • New interface for paid plans to easily configure custom domains for languages
    • \n
    • Adding Vary: Accept-Language response header when auto redirecting to browser language
    • \n
    • Google Analytics event tracking is on by default when analytics.js is present on the website, old ga.js support is removed
    • \n
    \n

    2.9.3

    \n
      \n
    • Avoid minification of Google Translate javascript library by LiteSpeed Cache and WP Rocket cache plugins in the free version
    • \n
    \n

    2.9.2

    \n
      \n
    • Smoother scrolling for Nice dropdown with flags language selector widget look
    • \n
    \n

    2.9.1

    \n
      \n
    • New server added into our Translation Delivery Network
    • \n
    \n

    2.8.65

    \n
      \n
    • Possible Cross-site scripting (XSS) vulnerability fixed, only possible for sub-domain, sub-directory paid options:
      \nAn attacker can generate a malicious link and if followed by a victim with an old browser without proper URL encoding support (<= IE 9) then javascript code can be executed on victim’s computer.
      \nKudos to Ram Gall @ Wordfence for notifying
    • \n
    \n

    2.8.64

    \n
      \n
    • New server added into our Translation Delivery Network
    • \n
    \n

    2.8.63

    \n
      \n
    • Minor change: prefer IPv4 in paid version server communication as some hosts have issues with IPv6
    • \n
    \n

    2.8.62

    \n
      \n
    • Tested with new WordPress 5.7 version
    • \n
    • Fix for email translation debug
    • \n
    • Avoid PHP warning suppression code
    • \n
    • Autoswitch to browser language issue related to Chinese language code is fixed
    • \n
    • Auto redirect to browser language issue related to Hebrew language code (he, iw) fixed
    • \n
    \n

    2.8.61

    \n
      \n
    • Tested with new WordPress 5.6 version
    • \n
    • Ground up rebuild of our Translation Proxy cloud network for paid customers, now page translations are 3x faster on average.\n
        \n
      • New proprietary spec-compliant HTML parser which is 8x faster than PHP SimpleHTMLDom library used by TranslatePress Multilingual and Weglot Translate plugins
      • \n
      • In case of invalid HTML, it will be fixed after page translation
      • \n
      • New caching layer to cache translated pages, previously only original pages were cached
      • \n
      • Optimized caching with option to clear all original and translated page caches
      • \n
      • Better error reporting
      • \n
      • New top of the line hardware with Intel Xeon multi-core processors with up to 5 Ghz clock speed
      • \n
      \n
    • \n
    \n

    2.8.60

    \n
      \n
    • Added debug option for WooCommerce Email translation
    • \n
    \n

    2.8.59

    \n
      \n
    • Fix for redirect loop in sub-directory translate mode caused by empty get parameters: ?a=&b= -> ?a&b
    • \n
    \n

    2.8.58

    \n
      \n
    • New monochrome flags option
    • \n
    • Avoids using /RegEx/ in JavaScript to not cause conflicts with WP Rocket optimizer
    • \n
    \n

    2.8.57

    \n
      \n
    • New control options for flag size and colors of the “Nice dropdown with flags” language switcher
    • \n
    • Removed old PNG images for dropdown arrow and gradient background, now using SVG and CSS instead
    • \n
    \n

    2.8.56

    \n
      \n
    • Translate WooCommerce Emails feature is fixed and is out of beta
    • \n
    \n

    2.8.55

    \n
      \n
    • Fixed blank settings page issue when settings data is in corrupted state in database
    • \n
    \n

    2.8.54

    \n
      \n
    • Added more servers into the list of our growing Translation Delivery Network
    • \n
    \n

    2.8.53

    \n
      \n
    • Fixed issue in Translate Woocommerce emails feature related to wordpress magic quotes
    • \n
    \n

    2.8.52

    \n
      \n
    • Cross-site scripting (XSS) vulnerability fixed: Only possible for sub-domain, sub-directory paid options with hreflang tags enabled:
      \nAn attacker can generate a malicious link and if followed by a victim then javascript code can be executed on victim’s computer
    • \n
    \n

    2.8.51

    \n
      \n
    • Translate WooCommerce Emails feature added, now we are in beta testing stage.
    • \n
    • Minor issue solved related to http request headers in Sub-directory URL structure
    • \n
    • FAQ updated
    • \n
    \n

    2.8.50

    \n
      \n
    • Solved issue with wp_get_referer checks not passing on translated sub-domains
    • \n
    • Solved issue with http Refresh header which was not redirecting to correct URL in translated version
    • \n
    • Email translation is coming: we need volunteers to test translation of emails, please contact live chat
    • \n
    \n

    2.8.49

    \n
      \n
    • Added translate support for MyHome IDX Broker plugin
    • \n
    \n

    2.8.48

    \n
      \n
    • Fix for Javanese language hreflang code: jv instead of jw
    • \n
    • Typo in variable name fixed
    • \n
    \n

    2.8.47

    \n
      \n
    • Fix for hebrew hreflang code when hebrew is the original language
    • \n
    • Visitor real IP detection fixed for woocommerce plugin
    • \n
    • Show warning when PHP Curl library is missing
    • \n
    • Fix {lang}.www.test.com case when auto-redirecting to browser language
    • \n
    \n

    2.8.46

    \n
      \n
    • Fix for relative path issue for some hosts
    • \n
    \n

    2.8.45

    \n
      \n
    • Fix for expired cacert.pem file, please update
    • \n
    \n

    2.8.44

    \n
      \n
    • Added cacert file to verify peer when calling home
    • \n
    • Passing real visitor IP address when loading translations
    • \n
    • Logos updated
    • \n
    \n

    2.8.43

    \n
      \n
    • New features in User Dashboard:
    • \n
    • Find and Replace before and after translation
    • \n
    • Skip Translation of Phrases
    • \n
    • Skip Translation by CSS selector
    • \n
    • Skip Translation by page URL
    • \n
    • Define HTML Blocks to edit translation as a whole
    • \n
    • Define JSON object keys which should be translated
    • \n
    • Optimized translation of URL slugs
    • \n
    • Fix for Sundanese flag
    • \n
    • Fix for double language code when redirection happens based on referrer
    • \n
    \n

    2.8.42

    \n
      \n
    • New dashboard for paid customers https://my.gtranslate.io/
    • \n
    • Minor changes
    • \n
    \n

    2.8.41

    \n
      \n
    • Added support for WP REST API JSON translation for posts and categories
    • \n
    • Deeper integration with WooCommerce
    • \n
    • Integration with WooCommerce Multi-Step Checkout plugin
    • \n
    • Integration with Agile Store Locator plugin
    • \n
    • Auto switch language based on browser language settigns for paid version added
    • \n
    \n

    2.8.40

    \n
      \n
    • Updated Hebrew language code for hreflang (he instead of iw)
    • \n
    • Added translation for ajax_url javascript variables, previously only wp_ajax_url were translated
    • \n
    • Multisite support added for hreflang tags
    • \n
    • Fix woocommerce cart cookie path when wp in installed in folder
    • \n
    • Fix for incorrect http response headers regex
    • \n
    \n

    2.8.39

    \n
      \n
    • 2 more translation proxy servers added: ani, evn
    • \n
    \n

    2.8.38

    \n
      \n
    • Hreflang tags bug fixed
    • \n
    • Pricing info updated
    • \n
    \n

    2.8.37

    \n
      \n
    • Fix for identical hreflang tags when using www prefix for domain
    • \n
    \n

    2.8.36

    \n
      \n
    • Option to add hreflang tags for translated pages
    • \n
    • Fix for Contact Form 7
    • \n
    \n

    2.8.35

    \n
      \n
    • Admin notice added for conflicting plugins
    • \n
    • Disabled translation of non-selected languages when accessed directly in sub-directory URL structure mode
    • \n
    • Update to WordPress 4.9.1 before updating GTranslate
    • \n
    • Fixed update issue related to bug in new WP 4.9 flatten_dirlist function
    • \n
    \n

    2.8.34

    \n
      \n
    • Non-stable: Fixed update issue related to bug in new WP 4.9 flatten_dirlist function. Important: If you are using Globe widget look, make sure to open GTranslate settings page, click “Reset Code to Default” under Widget Code section and Save.
    • \n
    \n

    2.8.33

    \n
      \n
    • Fixed issue related to new version of Contact Form 7
    • \n
    • Ready for WordPress 4.9
    • \n
    \n

    2.8.32

    \n
      \n
    • New feature: auto switch language based on browser language settigns
    • \n
    • Minor fixes: Greek name in native alphabet, Flag size option for Globe Widget look, vertical position in pixels
    • \n
    \n

    2.8.31

    \n
      \n
    • Removed email and name from Intercom chat
    • \n
    \n

    2.8.30

    \n
      \n
    • Fixed issue with double gzip compression when zlib.output_compression is on
    • \n
    \n

    2.8.29

    \n
      \n
    • Lazy image loading added for popup and nice dropdown look
    • \n
    • Fixed languages list hiding issue on narrow screens
    • \n
    • Fixed popup widget look issue for mobile devices
    • \n
    \n

    2.8.28

    \n
      \n
    • Changed static content paths to be relative to scheme
    • \n
    • Added “notranslate” class for dropdown widget look
    • \n
    • Added drodpown select wrapper id for easy CSS styling
    • \n
    • PHP URL rewriting added for some environments without .htaccess support: pantheon, flywheel, etc
    • \n
    • Fixed issue in url addon related to relative path location redirects
    • \n
    \n

    2.8.27

    \n
      \n
    • Fixed issue for some mobile phones related to nice looking dropdown selector staying open
    • \n
    • Fixed issue related to Cloudflare 1000 error
    • \n
    • Fixed caching issue with modified translations
    • \n
    \n

    2.8.26

    \n
      \n
    • Fixed relative path issue in .htaccess file for some websites which use mixed https and http
    • \n
    • Fixed IE javascript error on GTranslate Settings page preventing correct rendering of options
    • \n
    • Fixed popup view issue to show the selected language correctly
    • \n
    • Fixed issue when changing language from language with 3 letter language code to another
    • \n
    • A hint on re-ordering the languages list for better user experience was added
    • \n
    • Reset widget code to default button was added
    • \n
    \n

    2.8.25

    \n
      \n
    • New widget look added – Popup
    • \n
    • Native template RTL support added
    • \n
    \n

    2.8.24

    \n
      \n
    • No-scroll option added for floating language selector
    • \n
    • Now you can add more than one GTranslate widget to your sidebar
    • \n
    \n

    2.8.23

    \n
      \n
    • Show native language names option turned off by default
    • \n
    • Fixed issue with initial rendering of the language selector
    • \n
    • Documentation updated
    • \n
    \n

    2.8.22

    \n
      \n
    • Intercom live chat support integrated
    • \n
    • Gzip compression optimizations
    • \n
    \n

    2.8.21

    \n
      \n
    • Fix for gzip compression issues on mobile phones
    • \n
    \n

    2.8.20

    \n
      \n
    • Google neural machine translations, better quality!!!
    • \n
    • Added gzip compression for communication between server and client
    • \n
    • Fixed issue with double translation
    • \n
    \n

    2.8.19

    \n
      \n
    • Render gtranslate selector in a submenu if the menu link has gtranslate-parent class
    • \n
    • Bug fixed when select tag has more than one class assigned
    • \n
    \n

    2.8.18

    \n
      \n
    • Make sure default language is always selected
    • \n
    • Paid pricing updated
    • \n
    • Disable text highlighting when translated
    • \n
    \n

    2.8.17

    \n
      \n
    • Fixed saving translation issue which appeared in 2.8.16 version
    • \n
    • Minor readme fixes
    • \n
    \n

    2.8.16

    \n
      \n
    • Added option to save encoded HTML to avoid some firewall blocking
    • \n
    • Updated readme to look better with the new wp.org plugin updates
    • \n
    • Added link to easily navigate from widgets to plugin settings page
    • \n
    \n

    2.8.15

    \n
      \n
    • Fix for saving issue on GoDaddy hosting
    • \n
    • Fix for double gziping in sub-directory URL structure when using Sucuri service
    • \n
    \n

    2.8.14

    \n
      \n
    • Added Argentina and Colombia alternative flags
    • \n
    • Fixed bug in Nice looking dropdown look related to clicking the last dropdown element
    • \n
    • Fixed Quebec flag issue
    • \n
    • Fixed caching incompatability issue in nice looking dropdown look with GoDaddy cache, W3 Total Cache and WP Fastest Cache
    • \n
    \n

    2.8.13

    \n
      \n
    • Fixed bug with Globe widget look
    • \n
    • Disables conflicting similar translation plugins
    • \n
    • Fixed bug appeared in the latest version with the number of available languages
    • \n
    \n

    2.8.12

    \n
      \n
    • Tweaks to make it work better with WooCommerce
    • \n
    • Fixed bug when turning off native language names option
    • \n
    • Fixed bug with reordering languages
    • \n
    • Fixed bug with updating the plugin when using sub-directory option
    • \n
    • Fixed bug in doGTrnaslate javascript function
    • \n
    • Fixed bug with floating selector when admin bar is visible (thanks to @redoper)
    • \n
    • Readme updated to comply with WordPress directory guidelines (keywords removed WPML, qtranslate, transposh, loco translate, polylang, prisna translate, gts translation, lingotek, google website translator, global translator)
    • \n
    \n

    2.8.11

    \n
      \n
    • Fix for open redirect issue
    • \n
    • Fix for incorrect selected language in nice dropdown
    • \n
    \n

    2.8.10

    \n
      \n
    • Added Quebec and Canada alternative flags for French and English
    • \n
    \n

    2.8.9

    \n
      \n
    • Major changes
    • \n
    • Added missing flags, so all 104 languages have flags now
    • \n
    • New 48px size flags added
    • \n
    • New widget look added Flags and Language name
    • \n
    • New widget look added Flags and Language code
    • \n
    • New widget look added Language names
    • \n
    • New widget look added Language codes
    • \n
    \n

    2.8.8

    \n
      \n
    • Fix for flags rendering issue in menu
    • \n
    • Fix for analytics code in onfly mode
    • \n
    • Fixed issue with some template conflicts
    • \n
    \n

    2.8.7

    \n
      \n
    • Happy New Year! 🙂
    • \n
    • Fix for mystery language change when selecting default language
    • \n
    • .htaccess plugin_path now relative without http://example.com
    • \n
    • Bug fixed, scrolling for dropdown flags doesn’t work on some templates
    • \n
    \n

    2.8.6

    \n
      \n
    • Fixed bug on options page related to native language names
    • \n
    • Plugin keywords added: multilanguage, multilingual, language, bilingual, i18n
    • \n
    • Vimeo videos replaced by YouTube videos: GTranslate video and Translation Proxy video
    • \n
    \n

    2.8.5

    \n
      \n
    • Show languages in their native names
    • \n
    • Automatically select default language based on wordpress locale
    • \n
    • Coding issue with PHP Strict Standards and Fatal Error on some PHP versions fixed
    • \n
    • Error messages more informative
    • \n
    \n

    2.8.4

    \n
      \n
    • New option to select in which menu the selector should appear
    • \n
    \n

    2.8.3

    \n
      \n
    • Added URL add-on to easily enable sub-directory URL structure (paid)
    • \n
    • New option to easily enable URL Translation
    • \n
    • Disallow both sub-domain and sub-directory URL structure selection at the same time
    • \n
    • Fix for language change issue when URL Translation is on
    • \n
    \n

    2.8.2

    \n
      \n
    • Floating language selector option added: Top left, Top right, Bottom left, Bottom right
    • \n
    \n

    2.8.1

    \n
      \n
    • New Globe widget look added
    • \n
    • Plugin localization added
    • \n
    • Language list reordering added
    • \n
    \n

    2.0.21

    \n
      \n
    • New option to render in primary menu
    • \n
    \n

    2.0.20

    \n
      \n
    • Fix for depreciated code: PLUGINDIR
    • \n
    \n

    2.0.19

    \n
      \n
    • Added support message
    • \n
    • Added Live Chat on GTranslate options page
    • \n
    • Plugin tags added: polylang, prisna, gts, localize, lingotek, smartling
    • \n
    • Plugin tags added: qtranslate, loco translate, google website translator, translate wordpress
    • \n
    • Plugin tags added: translate, transposh, glabol translator, machine translate, wp translate
    • \n
    \n

    2.0.18

    \n
      \n
    • Alternative flags added: USA flag, Brazil flag, Mexico flag
    • \n
    \n

    2.0.17

    \n
      \n
    • GTranslate settings logo moved to localhost
    • \n
    \n

    2.0.16

    \n
      \n
    • Fixed possible Cross-Site-Scripting security issue
    • \n
    • GTranslate logo moved to localhost
    • \n
    • Update notice removed
    • \n
    \n

    2.0.15

    \n
      \n
    • Fix for not saving GTranslate configuration on some hostings
    • \n
    • Tested up to 4.6
    • \n
    • Plugin tags modified: language translator, weglot, scrybs, wpml
    • \n
    \n

    2.0.14

    \n
      \n
    • Fix for javascript CDATA
    • \n
    • Support for Google new analytics.js added
    • \n
    \n

    2.0.13

    \n
      \n
    • Notifications added
    • \n
    \n

    2.0.12

    \n
      \n
    • Readme updated, demo videos added
    • \n
    • Fixed issue in Nice dropdown look
    • \n
    \n

    2.0.11

    \n
      \n
    • Fixed issue with default language in Nice dropdown look
    • \n
    \n

    2.0.10

    \n
      \n
    • Updated links, FAQ and readme
    • \n
    \n

    2.0.9

    \n
      \n
    • Fixed undefined variable PHP notice
    • \n
    \n

    2.0.8

    \n
      \n
    • Added 13 new languages: Amharic, Corsican, Frisian, Kyrgyz, Hawaiian, Kurdish (Kurmanji), Luxembourgish, Samoan, Scots Gaelic, Shona, Sindhi, Pashto and Xhosa
    • \n
    \n

    2.0.7

    \n
      \n
    • PHP notice and warning messages fixed
    • \n
    \n

    2.0.6

    \n
      \n
    • Updated option names to be clear
    • \n
    \n

    2.0.5

    \n
      \n
    • New widget look has been added: Nice dropdown with flags
    • \n
    • Hiding and showing options in settings interface to be user friendly
    • \n
    \n

    2.0.4

    \n
      \n
    • Added 34 new languages!
    • \n
    • Support for wordpress 4.4
    • \n
    \n

    2.0.3

    \n
      \n
    • Update recommended message added – a minor change compared to 2.0.2
    • \n
    \n

    2.0.2

    \n
      \n
    • Added support for sites using SSL
    • \n
    \n

    2.0.1

    \n
      \n
    • Admin refreshed
    • \n
    \n

    1.0.38

    \n
      \n
    • Fix for flags display with some templates
    • \n
    \n

    1.0.37

    \n
      \n
    • Bug fixed with new versions of PHP
    • \n
    • Translation queue added
    • \n
    \n

    1.0.36

    \n
      \n
    • On Fly IE9 bug fixed
    • \n
    \n

    1.0.35

    \n
      \n
    • On Fly method is back
    • \n
    \n

    1.0.34

    \n
      \n
    • Error fixed with Chinese language in Enterprise mode
    • \n
    \n

    1.0.33

    \n
      \n
    • Support for Enterprise version added
    • \n
    \n

    1.0.30

    \n
      \n
    • Link and call home updated
    • \n
    \n

    1.0.29

    \n
      \n
    • Custom update checker added
    • \n
    \n

    1.0.28

    \n
      \n
    • Links changed
    • \n
    \n

    1.0.27

    \n
      \n
    • Changed text in noscript tag
    • \n
    \n

    1.0.26

    \n
      \n
    • Fixed issue with SSL admin
    • \n
    \n

    1.0.25

    \n
      \n
    • Fixed installation notification on update event
    • \n
    • Removed unnecessary commented code
    • \n
    \n

    1.0.24

    \n
      \n
    • Tracking added for collecting statistics
    • \n
    \n

    1.0.23

    \n
      \n
    • Bug fixed with javascript jquery loading option
    • \n
    \n

    1.0.22

    \n
      \n
    • Bug fixed with language change in Pro mode
    • \n
    • Added noscript tag
    • \n
    \n

    1.0.21

    \n
      \n
    • Statistics collector temporarily disabled
    • \n
    \n

    1.0.20

    \n
      \n
    • Changed the statistics collector server from Google AppEngine to GoDaddy
    • \n
    \n

    1.0.19

    \n
      \n
    • Added a dummy img to collect usage statistics
    • \n
    \n

    1.0.18

    \n
      \n
    • Fixed issue with the parameters saving in the admin
    • \n
    \n

    1.0.17

    \n
      \n
    • Minor changes in readme.txt
    • \n
    \n

    1.0.16

    \n
      \n
    • Added [GTranslate] syntax to be used inside wordpress articles/pages
    • \n
    \n

    1.0.15

    \n
      \n
    • Added aff link to track visits from wordpress on my site
    • \n
    \n

    1.0.14

    \n
      \n
    • Added notes, so people will not copy the code into their posts
    • \n
    \n

    1.0.13

    \n
      \n
    • jQuery conflicts fixed, using default wp jquery library
    • \n
    • jQuery Translate updated to v1.4.7
    • \n
    • CSRF Security Vulnerability fix
    • \n
    \n

    1.0.12

    \n
      \n
    • No changes made
    • \n
    \n

    1.0.11

    \n
      \n
    • Analytics feature implemented. If you have Google Analytics _gaq code on your site you can enable it and see the language usage.
    • \n
    • Fixed issue with the cookie path in On Fly method
    • \n
    \n

    1.0.10

    \n
      \n
    • Bug fixed: configuration settings were lost after update
    • \n
    • FAQ updated
    • \n
    • Changelog reordered
    • \n
    \n

    1.0.9

    \n
      \n
    • Updated the description
    • \n
    \n

    1.0.8

    \n
      \n
    • Keywords added in the description page
    • \n
    • FAQ updated
    • \n
    \n

    1.0.7

    \n
      \n
    • Widget title changed
    • \n
    • Link added
    • \n
    \n

    1.0.6

    \n
      \n
    • Bug fixed: magic_quotes_gpc problem
    • \n
    \n

    1.0.5

    \n
      \n
    • Bug fixed: settings save problem
    • \n
    \n

    1.0.4

    \n
      \n
    • Minor changes
    • \n
    \n

    1.0.3

    \n
      \n
    • Stable version released
    • \n
    \n

    1.0.2

    \n
      \n
    • RC2 version
    • \n
    \n

    1.0.1

    \n
      \n
    • RC1 version
    • \n
    \n

    1.0.0

    \n
      \n
    • Initial version for WordPress
    • \n
    \n", "description": "

    Translate WordPress with GTranslate plugin uses Google Translate automatic translation service to translate wordpress site with Google power and make it multilingual. With 103 available languages your site will be available to more than 99% of internet users. Our paid versions are fully SEO compatible which will increase your international traffic and sales. This translate plugin is a budget multilingual WordPress solution which combines automatic and human translations to save money and is easy to implement.

    \n

    GTranslate is a leading website translation services provider since 2008, it moves away the language barriers.

    \n

    Compared to other translation plugins for WordPress, we use cloud based approach which does not slow down your website. In addition to that, we can offer complete SEO features based on sub-domains with our paid options, which can make your website appear in search engines in different languages which will increase your international traffic and sales. In our paid versions we DO NOT limit the number of words or the number of translated pageviews. You DO NOT pay additionally for automatic translations.

    \n

    Please use GTranslate Support for your questions and support requests! We are multilingual!

    \n

    Please check our FAQ to get quick answers.

    \n

    Features

    \n
      \n
    • Free Google automatic machine translation
    • \n
    • Hides Google top frame after translation
    • \n
    • Translate website on the fly
    • \n
    • Translate posts and pages
    • \n
    • Translate categories and tags
    • \n
    • Menus and widgets translation
    • \n
    • Themes and plugins translation
    • \n
    • Right to left language support
    • \n
    • Google language translator widget
    • \n
    • Auto-switch language based on browser defined language
    • \n
    • Available styles Float, Dropdown, Flags, Flags with dropdown, Nice dropdown with flags, Flags with language names, Flags with language codes, Language names, Language codes, Globe, Popup
    • \n
    • Floating language selector
    • \n
    • WooCommerce shop translation
    • \n
    • Multilingual language names in native alphabet
    • \n
    • Alternative flags for Quebec, Canada, USA, Brazil, Mexico, Argentina, Colombia
    • \n
    • Lazy loading for language flags and js libraries to boost performance
    • \n
    • Lightweight vanilla javascript without dependencies
    • \n
    • Forum Support
    • \n
    \n

    Paid Features

    \n
      \n
    • Multilingual SEO – Enable search engine indexing
    • \n
    • Neural machine translations with human level translation quality
    • \n
    • Increase traffic and AdSense revenue
    • \n
    • Search engine friendly (SEF) URLs
    • \n
    • Yoast SEO compatible – translate meta keywords, meta description, schema.org data structures, translate sitemaps
    • \n
    • WooCommerce compatible – translate products, schema.org data structures
    • \n
    • You can have sub-directory (example.com/es/) or sub-domain (es.example.com) URL structure
    • \n
    • URL Translation aka slug translation is possible (example.com/about-us → example.es/sobre-nosotros)
    • \n
    • Add hreflang tags for translated alternatives
    • \n
    • You can manually correct translations
    • \n
    • In context translation interface (make corrections without losing the context)
    • \n
    • Meta data translation (meta keywords, meta description)
    • \n
    • Translating schema.org microdata for better search engine appearance
    • \n
    • Seamless updates (cloud service updated on our side – SaaS, you do not need to worry about backups on your side)
    • \n
    • JSON format translation
    • \n
    • Translate WooCommerce emails
    • \n
    • AMP translation (Accelerated Mobile Pages translation)
    • \n
    • Image localization – Media translation
    • \n
    • Translation Proxy (aka Translation Delivery Network)
    • \n
    • Centralized Translation Cache – We revise and improve translations over time
    • \n
    • Language Hosting (example.fr)
    • \n
    • User Dashboard with Analytics
    • \n
    • Live Chat Support
    • \n
    \n

    See also

    \n

    If you are looking for unlimited, high-quality automatic translations, check out TranslateX – an automatic translation API offering unlimited translation for your website or application.

    \n

    We also offer integration plugins:
    \nTranslateX for Loco Translate – integrate TranslateX API directly into Loco Translate for seamless, unlimited automatic translations.
    \nTranslateX for TranslatePress – bring unlimited automatic translation to TranslatePress using TranslateX API.

    \n

    These solutions make it easy to supercharge your WordPress multilingual setup with TranslateX’s secure and affordable API.

    \n

    GTranslate WordPress Demo
    \n

    \n

    Watch GTranslate Tour
    \n

    \n

    Edit Translations Demo (paid)
    \n

    \n", "screenshots": "
    1. \"Float\"

      Float

    2. \"Nice

      Nice dropdown with flags (closed)

    3. \"Nice

      Nice dropdown with flags (open)

    4. \"Globe

      Globe with language flags

    5. \"Flags

      Flags with language names

    6. \"Flags

      Flags with language codes

    7. \"Settings

      Settings page

    8. \"User

      User Dashboard (paid)

    ", "installation": "
      \n
    1. Upload the plugin files to the /wp-content/plugins/gtranslate directory, or install the plugin through the WordPress plugins screen directly.
    2. \n
    3. Activate the plugin through the ‘Plugins’ screen in WordPress
    4. \n
    5. Use the Settings → GTranslate screen to configure the plugin
    6. \n
    7. There are 6 ways you can place the language selector on your website
    8. \n
    \n

    1. Floating Language Selector
    \nYou can turn on Floating language selector option from Settings → GTranslate screen and it will show the language selector in appropriate location (Top Right, Bottom Right, Top Left or Bottom Left).

    \n

    2. Showing in Menu
    \nYou can select from the list of available menus in which menu the language selector should appear.

    \n

    3. Shortcode in Menu
    \nYou can create a new Custom Link menu item with URL = #, Link Text = English and add the following shortcode in the Description: [gt-link lang=\"en\" label=\"English\" widget_look=\"flags_name\"]
    \nWhere widget_look can be one of the following: flags, flags_code, flags_name, lang_codes, lang_names
    \nMake sure to enable “Description” under “Show advanced menu properties” in “Screen Options” dropdown on top of the screen.

    \n

    4. Use GTranslate shortcode
    \nYou can use [gtranslate] shortcode anywhere on your website including posts, pages, text widgets.
    \nYou can edit your template files and use <?php echo do_shortcode(''[gtranslate]''); ?> in HTML which will render the language selector.

    \n

    5. Use GTranslate Widget
    \nYou can use Appearence → Widgets screen to publish GTranslate widget inside a sidebar of your template.

    \n

    6. Wrapper CSS Selector
    \nYou can use a CSS selector and the language selector will appear inside the matching elements.

    \n

    If you have any issues, please do not hesitate to use our Support Forum for free version or Live Chat for paid version.

    \n"}, "versions": {"1.0.1": "https://downloads.wordpress.org/plugin/gtranslate.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/gtranslate.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/gtranslate.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/gtranslate.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/gtranslate.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/gtranslate.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/gtranslate.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/gtranslate.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/plugin/gtranslate.1.0.9.zip", "2.0.1": "https://downloads.wordpress.org/plugin/gtranslate.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/gtranslate.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/gtranslate.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/gtranslate.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/gtranslate.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/gtranslate.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/gtranslate.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/gtranslate.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/gtranslate.2.0.9.zip", "2.8.1": "https://downloads.wordpress.org/plugin/gtranslate.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/gtranslate.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/gtranslate.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/gtranslate.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/gtranslate.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/gtranslate.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/gtranslate.2.8.7.zip", "2.8.8": "https://downloads.wordpress.org/plugin/gtranslate.2.8.8.zip", "2.8.9": "https://downloads.wordpress.org/plugin/gtranslate.2.8.9.zip", "2.9.1": "https://downloads.wordpress.org/plugin/gtranslate.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/gtranslate.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/gtranslate.2.9.3.zip", "2.9.5": "https://downloads.wordpress.org/plugin/gtranslate.2.9.5.zip", "2.9.7": "https://downloads.wordpress.org/plugin/gtranslate.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/plugin/gtranslate.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/plugin/gtranslate.2.9.9.zip", "3.0.1": "https://downloads.wordpress.org/plugin/gtranslate.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/gtranslate.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/gtranslate.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/gtranslate.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/gtranslate.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/gtranslate.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/gtranslate.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/gtranslate.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/gtranslate.3.0.9.zip", "trunk": "https://downloads.wordpress.org/plugin/gtranslate.zip", "1.0.10": "https://downloads.wordpress.org/plugin/gtranslate.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/plugin/gtranslate.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/plugin/gtranslate.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/plugin/gtranslate.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/plugin/gtranslate.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/plugin/gtranslate.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/plugin/gtranslate.1.0.16.zip", "1.0.17": "https://downloads.wordpress.org/plugin/gtranslate.1.0.17.zip", "1.0.18": "https://downloads.wordpress.org/plugin/gtranslate.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/plugin/gtranslate.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/plugin/gtranslate.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/plugin/gtranslate.1.0.21.zip", "1.0.22": "https://downloads.wordpress.org/plugin/gtranslate.1.0.22.zip", "1.0.23": "https://downloads.wordpress.org/plugin/gtranslate.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/plugin/gtranslate.1.0.24.zip", "1.0.25": "https://downloads.wordpress.org/plugin/gtranslate.1.0.25.zip", "1.0.26": "https://downloads.wordpress.org/plugin/gtranslate.1.0.26.zip", "1.0.27": "https://downloads.wordpress.org/plugin/gtranslate.1.0.27.zip", "1.0.37": "https://downloads.wordpress.org/plugin/gtranslate.1.0.37.zip", "1.0.38": "https://downloads.wordpress.org/plugin/gtranslate.1.0.38.zip", "2.0.10": "https://downloads.wordpress.org/plugin/gtranslate.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/gtranslate.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/gtranslate.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/plugin/gtranslate.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/plugin/gtranslate.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/plugin/gtranslate.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/plugin/gtranslate.2.0.16.zip", "2.0.17": "https://downloads.wordpress.org/plugin/gtranslate.2.0.17.zip", "2.0.18": "https://downloads.wordpress.org/plugin/gtranslate.2.0.18.zip", "2.0.19": "https://downloads.wordpress.org/plugin/gtranslate.2.0.19.zip", "2.0.20": "https://downloads.wordpress.org/plugin/gtranslate.2.0.20.zip", "2.0.21": "https://downloads.wordpress.org/plugin/gtranslate.2.0.21.zip", "2.8.10": "https://downloads.wordpress.org/plugin/gtranslate.2.8.10.zip", "2.8.11": "https://downloads.wordpress.org/plugin/gtranslate.2.8.11.zip", "2.8.12": "https://downloads.wordpress.org/plugin/gtranslate.2.8.12.zip", "2.8.13": "https://downloads.wordpress.org/plugin/gtranslate.2.8.13.zip", "2.8.14": "https://downloads.wordpress.org/plugin/gtranslate.2.8.14.zip", "2.8.15": "https://downloads.wordpress.org/plugin/gtranslate.2.8.15.zip", "2.8.16": "https://downloads.wordpress.org/plugin/gtranslate.2.8.16.zip", "2.8.17": "https://downloads.wordpress.org/plugin/gtranslate.2.8.17.zip", "2.8.18": "https://downloads.wordpress.org/plugin/gtranslate.2.8.18.zip", "2.8.19": "https://downloads.wordpress.org/plugin/gtranslate.2.8.19.zip", "2.8.20": "https://downloads.wordpress.org/plugin/gtranslate.2.8.20.zip", "2.8.21": "https://downloads.wordpress.org/plugin/gtranslate.2.8.21.zip", "2.8.22": "https://downloads.wordpress.org/plugin/gtranslate.2.8.22.zip", "2.8.23": "https://downloads.wordpress.org/plugin/gtranslate.2.8.23.zip", "2.8.24": "https://downloads.wordpress.org/plugin/gtranslate.2.8.24.zip", "2.8.25": "https://downloads.wordpress.org/plugin/gtranslate.2.8.25.zip", "2.8.26": "https://downloads.wordpress.org/plugin/gtranslate.2.8.26.zip", "2.8.27": "https://downloads.wordpress.org/plugin/gtranslate.2.8.27.zip", "2.8.28": "https://downloads.wordpress.org/plugin/gtranslate.2.8.28.zip", "2.8.29": "https://downloads.wordpress.org/plugin/gtranslate.2.8.29.zip", "2.8.30": "https://downloads.wordpress.org/plugin/gtranslate.2.8.30.zip", "2.8.31": "https://downloads.wordpress.org/plugin/gtranslate.2.8.31.zip", "2.8.32": "https://downloads.wordpress.org/plugin/gtranslate.2.8.32.zip", "2.8.33": "https://downloads.wordpress.org/plugin/gtranslate.2.8.33.zip", "2.8.34": "https://downloads.wordpress.org/plugin/gtranslate.2.8.34.zip", "2.8.35": "https://downloads.wordpress.org/plugin/gtranslate.2.8.35.zip", "2.8.36": "https://downloads.wordpress.org/plugin/gtranslate.2.8.36.zip", "2.8.37": "https://downloads.wordpress.org/plugin/gtranslate.2.8.37.zip", "2.8.38": "https://downloads.wordpress.org/plugin/gtranslate.2.8.38.zip", "2.8.39": "https://downloads.wordpress.org/plugin/gtranslate.2.8.39.zip", "2.8.40": "https://downloads.wordpress.org/plugin/gtranslate.2.8.40.zip", "2.8.41": "https://downloads.wordpress.org/plugin/gtranslate.2.8.41.zip", "2.8.42": "https://downloads.wordpress.org/plugin/gtranslate.2.8.42.zip", "2.8.43": "https://downloads.wordpress.org/plugin/gtranslate.2.8.43.zip", "2.8.44": "https://downloads.wordpress.org/plugin/gtranslate.2.8.44.zip", "2.8.45": "https://downloads.wordpress.org/plugin/gtranslate.2.8.45.zip", "2.8.46": "https://downloads.wordpress.org/plugin/gtranslate.2.8.46.zip", "2.8.47": "https://downloads.wordpress.org/plugin/gtranslate.2.8.47.zip", "2.8.48": "https://downloads.wordpress.org/plugin/gtranslate.2.8.48.zip", "2.8.49": "https://downloads.wordpress.org/plugin/gtranslate.2.8.49.zip", "2.8.50": "https://downloads.wordpress.org/plugin/gtranslate.2.8.50.zip", "2.8.51": "https://downloads.wordpress.org/plugin/gtranslate.2.8.51.zip", "2.8.52": "https://downloads.wordpress.org/plugin/gtranslate.2.8.52.zip", "2.8.53": "https://downloads.wordpress.org/plugin/gtranslate.2.8.53.zip", "2.8.54": "https://downloads.wordpress.org/plugin/gtranslate.2.8.54.zip", "2.8.55": "https://downloads.wordpress.org/plugin/gtranslate.2.8.55.zip", "2.8.56": "https://downloads.wordpress.org/plugin/gtranslate.2.8.56.zip", "2.8.57": "https://downloads.wordpress.org/plugin/gtranslate.2.8.57.zip", "2.8.58": "https://downloads.wordpress.org/plugin/gtranslate.2.8.58.zip", "2.8.59": "https://downloads.wordpress.org/plugin/gtranslate.2.8.59.zip", "2.8.60": "https://downloads.wordpress.org/plugin/gtranslate.2.8.60.zip", "2.8.61": "https://downloads.wordpress.org/plugin/gtranslate.2.8.61.zip", "2.8.62": "https://downloads.wordpress.org/plugin/gtranslate.2.8.62.zip", "2.8.63": "https://downloads.wordpress.org/plugin/gtranslate.2.8.63.zip", "2.8.64": "https://downloads.wordpress.org/plugin/gtranslate.2.8.64.zip", "2.8.65": "https://downloads.wordpress.org/plugin/gtranslate.2.8.65.zip", "2.9.10": "https://downloads.wordpress.org/plugin/gtranslate.2.9.10.zip", "2.9.12": "https://downloads.wordpress.org/plugin/gtranslate.2.9.12.zip", "2.9.13": "https://downloads.wordpress.org/plugin/gtranslate.2.9.13.zip", "2.9.14": "https://downloads.wordpress.org/plugin/gtranslate.2.9.14.zip", "2.9.15": "https://downloads.wordpress.org/plugin/gtranslate.2.9.15.zip"}, "downloaded": 13348112, "description": "

    Translate WordPress with GTranslate plugin uses Google Translate automatic translation service to translate wordpress site with Google power and make it multilingual. With 103 available languages your site will be available to more than 99% of internet users. Our paid versions are fully SEO compatible which will increase your international traffic and sales. This translate plugin is a budget multilingual WordPress solution which combines automatic and human translations to save money and is easy to implement.

    \n

    GTranslate is a leading website translation services provider since 2008, it moves away the language barriers.

    \n

    Compared to other translation plugins for WordPress, we use cloud based approach which does not slow down your website. In addition to that, we can offer complete SEO features based on sub-domains with our paid options, which can make your website appear in search engines in different languages which will increase your international traffic and sales. In our paid versions we DO NOT limit the number of words or the number of translated pageviews. You DO NOT pay additionally for automatic translations.

    \n

    Please use GTranslate Support for your questions and support requests! We are multilingual!

    \n

    Please check our FAQ to get quick answers.

    \n

    Features

    \n
      \n
    • Free Google automatic machine translation
    • \n
    • Hides Google top frame after translation
    • \n
    • Translate website on the fly
    • \n
    • Translate posts and pages
    • \n
    • Translate categories and tags
    • \n
    • Menus and widgets translation
    • \n
    • Themes and plugins translation
    • \n
    • Right to left language support
    • \n
    • Google language translator widget
    • \n
    • Auto-switch language based on browser defined language
    • \n
    • Available styles Float, Dropdown, Flags, Flags with dropdown, Nice dropdown with flags, Flags with language names, Flags with language codes, Language names, Language codes, Globe, Popup
    • \n
    • Floating language selector
    • \n
    • WooCommerce shop translation
    • \n
    • Multilingual language names in native alphabet
    • \n
    • Alternative flags for Quebec, Canada, USA, Brazil, Mexico, Argentina, Colombia
    • \n
    • Lazy loading for language flags and js libraries to boost performance
    • \n
    • Lightweight vanilla javascript without dependencies
    • \n
    • Forum Support
    • \n
    \n

    Paid Features

    \n
      \n
    • Multilingual SEO – Enable search engine indexing
    • \n
    • Neural machine translations with human level translation quality
    • \n
    • Increase traffic and AdSense revenue
    • \n
    • Search engine friendly (SEF) URLs
    • \n
    • Yoast SEO compatible – translate meta keywords, meta description, schema.org data structures, translate sitemaps
    • \n
    • WooCommerce compatible – translate products, schema.org data structures
    • \n
    • You can have sub-directory (example.com/es/) or sub-domain (es.example.com) URL structure
    • \n
    • URL Translation aka slug translation is possible (example.com/about-us → example.es/sobre-nosotros)
    • \n
    • Add hreflang tags for translated alternatives
    • \n
    • You can manually correct translations
    • \n
    • In context translation interface (make corrections without losing the context)
    • \n
    • Meta data translation (meta keywords, meta description)
    • \n
    • Translating schema.org microdata for better search engine appearance
    • \n
    • Seamless updates (cloud service updated on our side – SaaS, you do not need to worry about backups on your side)
    • \n
    • JSON format translation
    • \n
    • Translate WooCommerce emails
    • \n
    • AMP translation (Accelerated Mobile Pages translation)
    • \n
    • Image localization – Media translation
    • \n
    • Translation Proxy (aka Translation Delivery Network)
    • \n
    • Centralized Translation Cache – We revise and improve translations over time
    • \n
    • Language Hosting (example.fr)
    • \n
    • User Dashboard with Analytics
    • \n
    • Live Chat Support
    • \n
    \n

    See also

    \n

    If you are looking for unlimited, high-quality automatic translations, check out TranslateX – an automatic translation API offering unlimited translation for your website or application.

    \n

    We also offer integration plugins:
    \nTranslateX for Loco Translate – integrate TranslateX API directly into Loco Translate for seamless, unlimited automatic translations.
    \nTranslateX for TranslatePress – bring unlimited automatic translation to TranslatePress using TranslateX API.

    \n

    These solutions make it easy to supercharge your WordPress multilingual setup with TranslateX’s secure and affordable API.

    \n

    GTranslate WordPress Demo
    \n

    \n

    Watch GTranslate Tour
    \n

    \n

    Edit Translations Demo (paid)
    \n

    \n", "donate_link": "https://gtranslate.io/?xyz=998#pricing", "num_ratings": 4682, "screenshots": {"1": {"src": "https://ps.w.org/gtranslate/assets/screenshot-1.jpg?rev=2877886", "caption": "Float"}, "2": {"src": "https://ps.w.org/gtranslate/assets/screenshot-2.jpg?rev=2596624", "caption": "Nice dropdown with flags (closed)"}, "3": {"src": "https://ps.w.org/gtranslate/assets/screenshot-3.jpg?rev=2596625", "caption": "Nice dropdown with flags (open)"}, "4": {"src": "https://ps.w.org/gtranslate/assets/screenshot-4.jpg?rev=1553215", "caption": "Globe with language flags"}, "5": {"src": "https://ps.w.org/gtranslate/assets/screenshot-5.jpg?rev=1579792", "caption": "Flags with language names"}, "6": {"src": "https://ps.w.org/gtranslate/assets/screenshot-6.jpg?rev=1579792", "caption": "Flags with language codes"}, "7": {"src": "https://ps.w.org/gtranslate/assets/screenshot-7.png?rev=2877886", "caption": "Settings page"}, "8": {"src": "https://ps.w.org/gtranslate/assets/screenshot-8.jpg?rev=2877886", "caption": "User Dashboard (paid)"}}, "support_url": "https://wordpress.org/support/plugin/gtranslate/", "contributors": {"edo888": {"avatar": "https://secure.gravatar.com/avatar/d8b6d5d2401e3bd02c336fcc247bd9be736d87bd77849e161d242bb81cd1e529?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/edo888/", "display_name": "edo888"}}, "last_updated": "2025-07-08 2:54pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/gtranslate.3.0.9.zip", "author_profile": "https://profiles.wordpress.org/edo888/", "business_model": false, "repository_url": "", "upgrade_notice": {"2.8.1": "

    A lot of new features added!

    ", "2.8.8": "

    Make sure to regenerate the widget code from GTranslate Settings page by checking/unchecking Analytics feature and Saving changes.

    ", "2.8.9": "

    Major changes, new flags added, optimized for HTTP/2 (SPDY).

    ", "3.0.1": "

    Ground up rebuild with major changes and performance upgrades, new widget look. If you are updating from older versions make sure to reconfigure.

    ", "1.0.22": "

    Users are highly recommended to upgrade to this version!

    "}, "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-f4eb-71a1-91f7-6af1efa1b8ae", "name": "Translate WordPress with GTranslate", "slug": "gtranslate", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1751986440, "version": "3.0.9"}, "support_threads": 50, "requires_plugins": [], "short_description": "Translate WordPress with Google Translate multilanguage plugin to make your website multilingual. Complete multilingual SEO solution for WordPress.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 49}'); -INSERT INTO public.plugins VALUES ('019a30c1-6548-7334-b5e7-2679c09493a4', 'header-footer-elementor', 'Ultimate Addons for Elementor (Formerly Elementor Header & Footer Builder)', 'Powerful Elementor addon with InfoCard, Fancy Heading, Before/After Slider, Price Box, FAQ Schema, WooCommerce widgets & Header-Footer builder.', '

    Ultimate Addons for Elementor (UAE) is a powerful yet lightweight plugin that extends Elementors capabilities with purposely built widgets, blocks, and features that help you build better websites—without adding complexity.

    -

    Formerly known as Elementor Header & Footer Builder, UAE has evolved into a trusted Elementor Addons used by over 2 million websites to design creative sections directly within Elementor—no coding required.

    -

    The free version of UAE includes a hand-picked set of essential widgets like Info Card, Navigation Menu and more—widgets that are genuinely useful for most websites. It also enables you to design headers and footers visually and adds features that improve your design process without cluttering your interface.

    -

    When you’re ready to go further, UAE Pro unlocks a library of 50+ premium widgets, 200+ pre-designed section blocks, and advanced features like Cross-Site Copy-Paste, Advanced Display Conditions, Form Stylers for popular form plugins, and visual effects like Particle Backgrounds.

    -

    These features are built to save time and offer more design freedom—not just to impress, but to genuinely improve how you build and manage websites.

    -

    Whether you’re just getting started with WordPress or managing multiple client sites, UAE – Elementor Addons gives you the control, performance, and reliability to design beautiful, high-converting websites efficiently.

    -

    Try the live demo of Ultimate Addons for Elementor

    -

    -

    Why Choose UAE Elementor Addon

    -

    Ultimate Addons for Elementor equips you with tools that make page design faster, cleaner, and more creative. Whether you’re just starting your web design journey or building complex websites for clients, UAE can help.

    -

    Here’s why over 2 million people trust UAE:

    -
      -
    • -

      Create Engaging Designs: Build visually stunning sections with widgets that go beyond basic blocks. From Before/After sliders to particle backgrounds, everything is built to captivate, engage, and convert.

      -
    • -
    • -

      Copy Elementor Designs From One Domain to Another: Use the Cross-Site Copy Paste feature to move sections and widgets between pages/sites, which streamlines the workflow and saves time.

      -
    • -
    • -

      Keep Your Website Light by Loading Only What Is Needed: UAE loads code only for the widgets you use, which helps maintain site performance and supports SEO best practices.

      -
    • -
    • -

      Build Faster With 200+ Readymade Section Blocks: Design faster with a massive library of pre-designed content sections. Just insert, customize, and publish. Ideal for agencies and freelancers seeking efficiency.

      -
    • -
    • -

      50+ Premium Widgets That Truly Matter: UAE Pro includes over 50+ carefully crafted widgets. High-impact tools designed to solve real design challenges and boost functionality where it counts.

      -
    • -
    • -

      Works Seamlessly With Any WordPress Theme: No theme lock-in or compatibility issues. UAE integrates smoothly with all compliant WordPress themes, including Astra.

      -
    • -
    • -

      Designed for Beginners, Loved by Pros: Whether you’re a DIY site builder or a seasoned designer, UAE strikes the balance between ease of use and advanced functionality.

      -
    • -
    • -

      Extend Elementor Without Plugin Overload: UAE packs multiple high-utility widgets into one lightweight plugin. Avoid installing multiple third-party plugins that slow down your site or create conflicts.

      -
    • -
    -

    Free Widgets in Ultimate Addons for Elementor

    -
      -
    • -

      Navigation Menu – With this powerful Elementor nav menu addon (widget), you can build responsive menus that match your style.

      -
    • -
    • -

      Site Logo & Retina Logo – Showcase crisp branding across all devices.

      -
    • -
    • -

      Site Title & Tagline – Display key identity elements clearly and elegantly.

      -
    • -
    • -

      Search – Add fast, user-friendly search to your header or footer.

      -
    • -
    • -

      Cart – Integrate a shopping cart preview for WooCommerce stores.

      -
    • -
    • -

      Page Title – Automatically show relevant page titles for better UX and SEO.

      -
    • -
    • -

      Breadcrumbs – Improve site navigation and search engine visibility.

      -
    • -
    • -

      Post Info – Display author, date, categories, and more for content clarity.

      -
    • -
    • -

      Scroll to Top – Give users a seamless way to navigate with this handy scroll addon for Elementor.

      -
    • -
    • -

      Reading Progress Bar – Visually indicate article progress for better engagement.

      -
    • -
    • -

      Info Card – Combine icons, headings, text, and CTAs in one flexible block.

      -
    • -
    • -

      Copyright – Easily add site-wide copyright or legal text in the footer.

      -
    • -
    -

    Note: You can refer to our step-by-step guide that will help you set headers and footers quickly.

    -

    How these Elementor widgets help:

    -
      -
    • Build complete headers and footers directly within Elementor
    • -
    • Avoid relying on theme settings or extra plugins
    • -
    • Keep your design consistent on all devices
    • -
    • Improve usability, accessibility, and SEO
    • -
    -

    The free UAE widgets give you a strong foundation to build a professional website and they work beautifully with any WordPress theme.

    -

    🚀 Upgrade to Ultimate Addons for Elementor Pro and unlock limitless possibilities!

    -

    Content and Interaction Widgets

    -

    Create compelling, high-converting layouts with powerful content widgets designed for Elementor. UAE widgets help you deliver clear, engaging content experiences that are both informative and interactive. Great for business sites, blogs, service pages, and portfolios.

    -
      -
    • -

      Advanced Heading – Design eye-catching headlines with layered styles and dynamic effects.

      -
    • -
    • -

      Business Hours – Display store or office hours clearly with styled layouts.

      -
    • -
    • -

      Content Toggle (Popular) – Switch between content blocks for comparisons, FAQs, or pricing plans.

      -
    • -
    • -

      Google Map – Add responsive, customizable location maps to boost trust and visibility.

      -
    • -
    • -

      Image Gallery – Showcase multiple images in a clean, organized grid or masonry layout.

      -
    • -
    • -

      Info Box – Combine icons, titles, and descriptions with CTA buttons in one elegant widget.

      -
    • -
    • -

      Modal Popup (Popular) – Easily trigger stylish popups for promotions, lead generation, or key messages.

      -
    • -
    • -

      Posts – Showcase your latest blog posts or any custom post types with this visually appealing post grid addon for Elementor.

      -
    • -
    • -

      Price List – Highlight products or services with pricing and description in a clean layout.

      -
    • -
    • -

      Table – Create sortable, responsive tables to organize data or feature comparisons.

      -
    • -
    • -

      Video (Popular) – Embed YouTube, Vimeo, or self-hosted videos with custom styling options.

      -
    • -
    • -

      Video Gallery – Show multiple videos in a neatly organized, responsive gallery.

      -
    • -
    -

    Creative Widgets

    -

    Add flair, functionality, and interactivity to your Elementor designs. Ideal for portfolios, agencies, service-based businesses, and conversion-focused landing pages.

    -
      -
    • -

      Before After Slider – Visually compare two images using a draggable slider.

      -
    • -
    • -

      Countdown Timer – Create urgency for offers, events, or product launches.

      -
    • -
    • -

      Display Conditions – Show or hide content dynamically based on user role, device, login status, and more.

      -
    • -
    • -

      Dual Color Heading – Highlight key phrases in headings with stylish dual-tone designs.

      -
    • -
    • -

      Fancy Heading – Create animated, visually distinct headlines to capture attention.

      -
    • -
    • -

      Hotspots (Popular) – Add interactive tooltips to images to explain features or details.

      -
    • -
    • -

      Login Form – Embed a beautifully styled, branded login form right into any page.

      -
    • -
    • -

      Marketing Button – Add call to action buttons with built-in icons, hover effects, and dual text.

      -
    • -
    • -

      Multi Buttons – Display multiple action buttons side-by-side for better decision making.

      -
    • -
    • -

      Navigation Menu – Create fully customizable, responsive menus directly within Elementor.

      -
    • -
    • -

      Off-Canvas – Create off-screen panels for menus, filters, or extra content that slides into view.

      -
    • -
    • -

      Price Box – Showcase pricing plans with styled headings, features, and call to action buttons.

      -
    • -
    • -

      Retina Image – Ensure images display perfectly on high-resolution (Retina) screens.

      -
    • -
    • -

      Team Member – Introduce your team with photos, bios, social links and layout options.

      -
    • -
    • -

      Timeline (Popular) – Display milestones, history, or process steps in vertical or horizontal timelines.

      -
    • -
    • -

      User Registration Form – Let visitors register with a styled, user-friendly form.

      -
    • -
    -

    Form Styler Widgets

    -

    Match forms to your site design and improve conversions without writing CSS. These widgets let you customize popular WordPress forms with full control over layout, colors, typography, and spacing.

    - -

    SEO Widgets

    -

    Boost search visibility, enhance content structure and build trust from the Elementor editor.

    -
      -
    • -

      Business Reviews – Display authentic reviews from platforms like Google.

      -
    • -
    • -

      How-To Schema – Format step-by-step guides with structured data to earn rich snippets.

      -
    • -
    • -

      FAQ Schema – Create styled FAQs that are also SEO-ready.

      -
    • -
    • -

      Table of Contents – Automatically generate clickable TOCs for long content.

      -
    • -
    -

    Social Widgets

    -

    Keep your website fresh, connected and shareable with built-in social media integrations.

    -
      -
    • -

      Instagram Feed (NEW) – Embed a stylish, responsive Instagram gallery that updates automatically.

      -
    • -
    • -

      X Feed (NEW) – Show your most recent posts from X (formerly Twitter).

      -
    • -
    • -

      Social Share – Add sleek, customizable share buttons to grow your audience.

      -
    • -
    -

    WooCommerce Widgets

    -

    Design high-converting online stores inside Elementor with this modern WooCommerce addon.

    - -

    Creative Features

    -

    Go beyond widgets and unlock tools that accelerate your workflow.

    -
      -
    • -

      Cross-Site Copy Paste – Instantly copy and paste entire Elementor sections between domains.

      -
    • -
    • -

      Particle Backgrounds – Add animated particle effects behind sections.

      -
    • -
    • -

      Party Propz – Celebrate special occasions with on-screen confetti and fun animations.

      -
    • -
    • -

      Presets – Apply consistent design styles across widgets with a single click.

      -
    • -
    • -

      Welcome Music – Play background music when a visitor lands on your site.

      -
    • -
    -

    Unlock Even More With the Essential Toolkit

    -

    Upgrade to the Essential Toolkit to access a powerful bundle designed to save time, spark creativity, and give you a real competitive advantage.

    -

    300+ Pre-built websites: Skip the blank canvas. Launch faster with professionally designed websites.

    -

    Templates for every niche: Build business sites, blogs, portfolios, or stores with no design experience needed.

    -

    Total design freedom: Tweak every pixel, colors, fonts, and layouts to make each site uniquely yours.

    -

    What Users Are Saying

    -

    “A must-have for any Elementor user. Incredible widget bundle — powerful, essential, and easy to use.”
    - – Carmelo Teran (nexodreams.com)

    -

    “Huge selection of widgets that help me deliver unique designs fast. Love the Hotspots, Heading, and Cross-Site Copy Paste!”
    - – Nicola Stobb (imoe.co)

    -

    “If Elementor Pro is the Iron Man suit, Ultimate Addons is the Hulkbuster upgrade. I don’t build without it!”
    - – Dean Loh (kaia.asia)

    -

    More Tools To Enhance Your WordPress Website

    -

    If you love Ultimate Addons, you’ll love what else we’ve built to make designing and managing websites easier.

    -
      -
    • -

      Astra theme – A popular WordPress theme known for speed and flexibility.

      -
    • -
    • -

      Astra Starter Templates – Pick from over 300+ professionally designed templates or use AI to create a custom website in minutes.

      -
    • -
    • -

      OttoKit (Formerly SureTriggers) – Automate daily tasks by connecting your favorite apps and plugins effortlessly.

      -
    • -
    • -

      SureForms – Build beautiful, high-converting forms, quizzes, and surveys.

      -
    • -
    • -

      SureCart – A powerful yet easy to use eCommerce plugin built for modern creators and digital sellers.

      -
    • -
    -

    Each tool is designed to help you build faster, work smarter, and grow your online presence with less effort and better results.

    -

    Need help getting started?

    -

    Check out our getting started guide and documentation for step-by-step tutorials.

    -

    Have a question?

    -

    Visit the support forum right here on WordPress.org. We’re happy to help!

    -

    Want to explore more?

    -

    Learn about all features, FAQs, and tips on our website.

    -

    🎉 Love Ultimate Addons for Elementor?

    - -', '2.6.1', 'Brainstorm Force', '5.0', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/header-footer-elementor.2.6.1.zip', '2017-03-07 00:00:00+00', '2025-10-15 11:34:00+00', 'https://profiles.wordpress.org/brainstormforce/', 98, 2501, 11, 4, 2000000, 56019705, 'https://wordpress.org/plugins/header-footer-elementor/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/header-footer-elementor/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Ultimate Addons for Elementor (Formerly Elementor Header & Footer Builder)", "slug": "header-footer-elementor", "tags": {"elementor": "elementor", "elementor-addon": "elementor addon", "elementor-widget": "elementor widget", "elementor-template": "elementor template", "header-footer-builder": "header footer builder"}, "added": "2017-03-07", "icons": {"1x": "https://ps.w.org/header-footer-elementor/assets/icon-128x128.gif?rev=3278750", "2x": "https://ps.w.org/header-footer-elementor/assets/icon-256x256.gif?rev=3278750"}, "author": "Brainstorm Force", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/header-footer-elementor/assets/banner-772x250.gif?rev=3278750", "high": "https://ps.w.org/header-footer-elementor/assets/banner-1544x500.gif?rev=3278750"}, "ratings": {"1": 44, "2": 11, "3": 8, "4": 58, "5": 2380}, "version": "2.6.1", "homepage": "https://wordpress.org/plugins/header-footer-elementor/", "requires": "5.0", "sections": {"faq": "\n
    \nWhat happened to Elementor Header & Footer Builder?\n\n

    \n

    Ultimate Addons for Elementor is the successor to Elementor Header & Footer Builder. This updated plugin offers the same features you love, plus new widgets like Site logo, Site Title, and many more. With a modern interface and an enable/disable switch for widgets, UAE delivers better performance, stability, and ease of use.

    \n

    \n
    \nCan I use Ultimate Addons for Elementor with any theme?\n\n

    \n

    Yes! UAE works with all WordPress themes. If you face compatibility issues, you can manually choose the theme support method. Visit UAE > Settings > Theme Support. Select a method to suit your current theme and you are good to go!

    \n

    \n
    \nCan I disable unused widgets?\n\n

    \n

    Absolutely. UAE allows you to disable widgets you don’t need to optimize performance.

    \n

    \n
    \nDo I need to keep both UAE and UAE – Pro plugins active for them to work effectively?\n\n

    \n

    No, both plugins are completely independent. You only need to activate both if you want to use features from each plugin. Otherwise, activate only the one that meets your needs.

    \n

    \n
    \nHow can I access all the features of the Ultimate Addons for Elementor?\n\n

    \n

    To access the advanced features and premium widgets, you’ll need to upgrade to the Pro version. Purchase your license now

    \n

    \n
    \nHow can I report a security bug?\n\n

    \n

    We take plugin security extremely seriously. If you discover a security vulnerability, please report it in a safe and responsible manner.

    \n

    You can report the issue through our Bug Bounty Program.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin & Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy yummyworks on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    First, I have been very happy with plugin which offers a lot of add on features and has really boosted both the front and back end capabilities. Second, the support team has been awesome if any issues arise and genuinely care about both their product and customers that use it. I had a technical issue arise and between the both of us were able to get it fixed relatively quick. I would highly recommend this plugin for anyone looking to elevate their website.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Products and First Class Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Andrew Behla (behladesign) on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We''ve used the Woo Products Elementor module for several projects and are really happy with the results. The team at Brainstorm Force make excellent products with useful UI/UX and are well designed. Their support team is always very helpful as well.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin and even better support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mgweb22 on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I use UAE un almost all my sites, I really love than you can activate et deactivate the plugins you don''t need.
    Support is awesome.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brainstorm Helped Me Lots

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mattwarren1972 on September 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Dhruv and Brainstorm support were really good at coming back to me when I had an issue (my fault!) and their support was quick and professional. Thanks

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brainstorm support was great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy granatdesign on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useful plugin. And great support

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brianstorm Support - Dhruv, Excellent!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy saintben on August 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ⭐️⭐️⭐️⭐️⭐️

    \n\n\n\n

    We’ve been using the Ultimate Addons for Elementor plugin and recently ran into a strange issue with the Hotspots feature. Every time we tried to edit the markers, we were faced with a blank page.

    \n\n\n\n

    Over several weeks, Dhruv from the Brainstorm Force support team worked tirelessly with me to get to the bottom of it. While some support agents weren’t quite as attentive, Dhruv was absolutely outstanding. He went above and beyond, showing genuine commitment to resolving the issue — even when it turned out that the problem wasn’t caused by the plugin at all, but by something on our end.

    \n\n\n\n

    What really impressed me was that Dhruv assembled a team of colleagues to help troubleshoot and ensure we got the problem fixed. They didn’t have to go that far, but they did it anyway because they truly wanted to help.

    \n\n\n\n

    I’m delighted to say the issue is now resolved, and I’m so grateful to the whole team who were on the call — but especially to Dhruv. His professionalism, patience, and dedication are an example to follow.

    \n\n\n\n

    Thank you again to the Brainstorm Force team, and a very big thank you to Dhruv! 🙏

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pkrijger on July 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have used this plugin for many years, since Brainstorm Force created it. I love it! You can greatly enhance your website with it and it´s very easy to use. You can be very creative with the widgets.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very happy, thank you!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy willvv on June 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Absolutely love Astra Theme, and support has been invaluable. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support doesn't answer

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy antoniofourmark on June 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    If you have a problem and didn''t pay for premium you are on your own, support is non-existent for non-premium users

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Michael Kwan (michoscopic) on May 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was having some trouble with a niche use-case. ChatGPT didn''t help, and I consider myself a fairly advanced user. The Ultimate Elementor devs helped me create a custom function to fix the issue and they''ll be implementing it in their future release as well. Thanks for the support!

    \n
    \n
    \n", "changelog": "

    2.6.1

    \n
      \n
    • Fix: Header not displaying on specific pages.
    • \n
    \n

    2.6.0

    \n
      \n
    • New: Added Woo Product Grid Widget – Display WooCommerce products in a responsive grid layout with customizable styling options.
    • \n
    • Improvement: Added Support for Blocksy, Neve and Kadence Theme.
    • \n
    \n

    2.5.2

    \n
      \n
    • Fix: Basic Post Widget not showing for logged out users.
    • \n
    \n

    2.5.1

    \n
      \n
    • Improvement: Updated required packages to the latest stable versions for improved compatibility and security.
    • \n
    \n

    2.5.0

    \n
      \n
    • New: Added Basic Blog Posts Widget – Showcase blog posts or any custom post type in a fully customizable, responsive grid layout.
    • \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.32 version.
    • \n
    • Fix: This update addressed a security bug. Props to Willow from WP Scan for reporting it responsibly to our team.
    • \n
    • Fix: Navigation Menu – Alignment now works for last menu item as button.
    • \n
    \n

    2.4.9

    \n
      \n
    • Fix: Navigation Menu – Resolved accessibility issue with the expandable menu layout.
    • \n
    • Fix: Navigation Menu – Widget closes when an anchor link is clicked.
    • \n
    \n

    2.4.8

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.31 version.
    • \n
    \n

    2.4.7

    \n
      \n
    • This update addresses a security bug. Props to Peter Thaleikis for privately reporting it to our team. We appreciate the responsible disclosure!
    • \n
    \n

    2.4.6

    \n
      \n
    • Improvement: Refactored and optimized codebase for improved maintainability.
    • \n
    \n

    2.4.5

    \n
      \n
    • Improvement: Updated Dashboard and Onboarding for Improved User Experience.
    • \n
    \n

    2.4.4

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.30 version.
    • \n
    • Improvement: Help button in widgets now links directly to relevant documentation.
    • \n
    \n

    2.4.3

    \n
      \n
    • Updated readme file.
    • \n
    \n

    2.4.2

    \n
      \n
    • Improvement: Optimize performance with the new “Deactivate Unused Widgets” option.
    • \n
    \n

    2.4.1

    \n
      \n
    • Improvement: Optimized codebase and improved code quality.
    • \n
    \n

    2.4.0

    \n
      \n
    • New: Reading Progress Bar – Added a sleek, customizable reading progress bar to enhance user engagement on your site.
    • \n
    \n

    2.3.2

    \n
      \n
    • Improvement: Updated Dashboard for Improved User Experience
    • \n
    \n

    2.3.1

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.29 version.
    • \n
    \n

    2.3.0

    \n
      \n
    • New: Info Card Widget – Create engaging and elegant content sections with this customizable widget. Easily configure text, icons, and buttons/links to match your design needs.
    • \n
    \n

    2.2.4

    \n
      \n
    • Fix: Buttons now correctly load the default color and font settings as defined in the Theme Customizer.
    • \n
    \n

    2.2.3

    \n
      \n
    • Improvement: Improved accessibility compliance throughout the plugin.
    • \n
    • Fix: Navigation Menu – The submenu now expands correctly when the “Full Width” option is enabled
    • \n
    \n

    2.2.2

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.28 version.
    • \n
    \n

    2.2.1

    \n
      \n
    • This update addressed a security bug. Please make sure you are using the latest version on your website.
    • \n
    • Improvement: Added a notice in the Elementor editor to prompt users to flush permalinks if it gets stuck after a plugin update.
    • \n
    • Improvement: Removed ‘elementor-button-wrapper’ to enhance performance and optimize the DOM structure.
    • \n
    • Fix: Navigation Menu – Full-width dropdown menu now stays correctly positioned when resizing in responsive mode.
    • \n
    \n

    2.2.0

    \n
      \n
    • New: Ultimate Addons for Elementor now includes translations for Dutch, French, Spanish, and German enhancing multilingual accessibility.
    • \n
    • Fix: Navigation Menu – Anchor links now correctly scroll to sections/container when submenu items with IDs are clicked.
    • \n
    • Fix: “Function map_meta_cap called incorrectly” notice appearing for logged out users when shortcode executed manually.
    • \n
    • Fix: Deprecated constant FILTER_SANITIZE_STRING replaced to ensure compatibility with PHP.
    • \n
    • Fix: Resolved PHP error with NPS library.
    • \n
    \n

    2.1.0

    \n
      \n
    • New: Added NPS Survey to gather your valuable feedback for Ultimate Addons for Elementor.
    • \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.27 version.
    • \n
    • Fix: Resolved issue where icons were displaying too large on page load for the Elementor and WordPress menu widget.
    • \n
    • Fix: Cart – Resolved an issue where icons were not displaying correctly for logged-out users.
    • \n
    \n

    2.0.6

    \n
      \n
    • Fix: Load text domain PHP warning when Loco Translate plugin is active.
    • \n
    \n

    2.0.5

    \n
      \n
    • Fix: Conflict with pro version update notice.
    • \n
    \n

    2.0.4

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.26 version.
    • \n
    • Improvement: Added a navigation bar to the Header and Footer Builder page to improve usability and navigation.
    • \n
    \n

    2.0.3

    \n
      \n
    • Fix: Load JS & CSS assets conditionally on relevant pages in the editor.
    • \n
    \n

    2.0.2

    \n
      \n
    • Fix: Added a class_exists check to prevent critical errors caused by class redeclaration.
    • \n
    • Fix: Verify Elementor Kit settings before accessing to avoid potential issues.
    • \n
    \n

    2.0.1

    \n
      \n
    • Fix: Conflict with site customizer style.
    • \n
    \n

    2.0.0

    \n
      \n
    • New Feature: Scroll to Top Button.
      \nAdd a dynamic “Scroll to Top” button to enhance navigation and improve user experience on long pages.
    • \n
    • New Widget: Post Info Widget.
      \nDisplay metadata like author name, publish date, categories, tags, and more dynamically on your posts or pages.
    • \n
    • New Widget: Breadcrumbs Widget.
      \nAdd navigational breadcrumbs to improve site navigation and guide users through your content hierarchy.
    • \n
    • Improvement: Revamped User Interface.
      \nIntroduced a new, user-friendly UI similar to UAE Pro for easier management of widgets and features.
    • \n
    • Improvement: Rebranded as UAE from Elementor Header & Footer Builder: Packed with all your favorite features plus new widgets, functionality, and a sleek UI.
    • \n
    \n

    1.6.47

    \n
      \n
    • Fix: This update addressed a security bug. Props to Wordfence for privately reporting it to our team. Please make sure you are using the latest version on your website.
    • \n
    \n

    1.6.46

    \n
      \n
    • Fix: This update addressed a security bug. Props to Wordfence and Francesco Carlucci for privately reporting it to our team. Please make sure you are using the latest version on your website.
    • \n
    \n

    1.6.45

    \n
      \n
    • Improvement: Enhanced the enqueue_scripts method with checks to ensure styles load safely.
    • \n
    \n

    1.6.44

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.25 version.
    • \n
    • Fix: This update addressed a security bug. Props to Wordfence and Francesco Carlucci for privately reporting it to our team. Please make sure you are using the latest version on your website.
    • \n
    \n

    1.6.43

    \n
      \n
    • Improvement: Icons displaying correctly on frontend.
    • \n
    \n

    1.6.42

    \n
      \n
    • Fix: Navigation Menu – Active color now changes correctly when moving between pages.
    • \n
    • Fix: Page Title – The icon was showing too big, now it appears the right size.
    • \n
    \n

    1.6.41

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.24 version.
    • \n
    • Improvement: Implemented widget output caching to enhance page performance.
    • \n
    • Improvement: Updated the deprecated code in codebase.
    • \n
    \n

    1.6.40

    \n
      \n
    • Improvement: Navigation Menu – The dropdown menu now extends to full width when the navigation menu container is set to full width on smaller screens.
    • \n
    • Fix: Navigation Menu – Console error for undefined property ‘left’.
    • \n
    \n

    1.6.39

    \n
      \n
    • Improvement: Updated minimum PHP version requirement to 7.4.
    • \n
    \n

    1.6.38

    \n
      \n
    • Improvement: Improved code quality syntax and security checks for better coding standards and practices.
    • \n
    \n

    1.6.37

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.23 version.
    • \n
    \n

    1.6.36

    \n
      \n
    • Fix: This update addressed a security bug. Props to Wordfence for privately reporting it to our team. Please make sure you are using the latest version on your website.
    • \n
    \n

    1.6.35

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.22 version.
    • \n
    • Improvement: Updated sanitize SVG function.
    • \n
    • Fix: Search – Compatibility with Polylang switcher.
    • \n
    \n

    1.6.34

    \n
      \n
    • Fix: Navigation Menu – Submenus show up for few seconds during the page load
    • \n
    • Fix: Navigation Menu – Huge icon show up for few seconds during the page load
    • \n
    • Fix: Navigation Menu – Unable to click on submenu when top distance is added for dropdown
    • \n
    \n

    1.6.33

    \n
      \n
    • Fix: Unable to edit the Header/Footer with Elementor in few cases.
    • \n
    \n

    1.6.32

    \n
      \n
    • Fix: Improved plugin security.
    • \n
    \n

    1.6.31

    \n
      \n
    • Fix: Conflict with WP SVG Images plugin.
    • \n
    \n

    1.6.30

    \n
      \n
    • Fix: Improved error messages during plugin activation.
    • \n
    \n

    1.6.29

    \n
      \n
    • Fix: Navigation Menu – The submenu container opens without hovering over the parent menu item.
    • \n
    • Fix: This update addressed a security bug. Props to Wordfence.
    • \n
    \n

    1.6.28

    \n
      \n
    • Fix: Error messages appearing for Display rules.
    • \n
    \n

    1.6.27

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.21 version.
    • \n
    • Improvement: Compatibility with PHP 8.3 version.
    • \n
    • Fix: This update addressed a security bug. Props to Wordfence.
    • \n
    \n

    1.6.26

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.20 version.
    • \n
    • Improvement: Compatibility with PHP 8.2 version.
    • \n
    \n

    1.6.25

    \n
      \n
    • Security Fix: Hardened the security of the plugin. Props: Wordfence.
    • \n
    • Fix: Automatic translation support for templates on Specific Pages / Posts / Taxonomies, etc.
    • \n
    • Fix: Navigation Menu – Multistep submenu fails to display when a border radius is applied to dropdown.
    • \n
    \n

    1.6.24

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.19 version.
    • \n
    • Fix: White Label – Astra’s theme name does not change when Astra is white-labeled.
    • \n
    • Fix: Navigation Menu – Language switcher flags not displaying when using Polylang plugin.
    • \n
    \n

    1.6.23

    \n
      \n
    • Fix: This update addressed a security bug. Props to WordPress Plugin Review Team and Plugin Vulnerabilities Team for reporting it to our team. Please make sure you are using the latest version on your website.
    • \n
    \n

    1.6.22

    \n
      \n
    • Fix: Retina Image – Navigating to custom URL by clicking on images.
    • \n
    \n

    1.6.21

    \n
      \n
    • Fix: Site Logo – Width and height settings not applying to the logo.
    • \n
    \n

    1.6.20

    \n
      \n
    • Fix: Flyout menu not appearing correctly.
    • \n
    \n

    1.6.19

    \n
      \n
    • Fix: Header and Footer layout broken after last update.
    • \n
    \n

    1.6.18

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.18 version.
    • \n
    • Improvement: Compatibility with WordPress VIP Go rules.
    • \n
    \n

    1.6.17

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.17 version.
    • \n
    • Fix: Site Logo – Added an alt text for the default logo.
    • \n
    \n

    1.6.16

    \n
      \n
    • Compatibility with latest Elementor and Elementor Pro 3.16 version.
    • \n
    • Compatibility with PHP 8.1 version.
    • \n
    \n

    1.6.15

    \n
      \n
    • Improvement: Compatibility with latest Elementor and Elementor Pro 3.15 version.
    • \n
    • Improvement: Added WPML support.
    • \n
    • Fix: Navigation Menu – HTML validation error on mobile layout related to tabindex inside elements with attribute [role=”button”].
    • \n
    • Fix: Polylang plugin language causes conflicts when set up with a custom Header Footer.
    • \n
    • Fix: Site Logo – Align icons not rendering in Elementor editor settings.
    • \n
    \n

    1.6.14

    \n
      \n
    • Improvement: Compatibility with Elementor version 3.13 and Elementor Pro version 3.13
    • \n
    • Fix: Navigation Menu – Accessibility error corrected for [aria-hidden=”true”] attribute.
    • \n
    \n

    1.6.13

    \n
      \n
    • Compatibility with Elementor version 3.7.2 and Elementor Pro version 3.7.3.
    • \n
    \n

    1.6.12

    \n
      \n
    • Compatibility with Elementor and Elementor Pro.
    • \n
    \n

    1.6.11

    \n
      \n
    • Improvement: Compatibility with Elementor Pro version 3.7
    • \n
    • Fix: Removed meta tag attribute [maximum-scale=1] for a better accessibility.
    • \n
    \n

    1.6.10

    \n
      \n
    • Improvement: Compatibility with Elementor version 3.6.
      \nRemoved elementor deprecated functions and replaced with latest functions.
      \nNow to work with Elementor Header & Footer Builder, Elementor minimum version 3.5.0 or higher will be required.
    • \n
    \n

    1.6.9

    \n
      \n
    • Improvement: Compatibility with Elementor Pro version 3.6
    • \n
    • Fix: Navigation Menu – If Polylang language switcher is present in the menu, it closes the menu with a click.
    • \n
    \n

    1.6.8

    \n
      \n
    • Improvement: WordPress 5.9 compatibility.
    • \n
    \n

    1.6.7

    \n
      \n
    • Improvement: Added GDPR support to Subscription form.
    • \n
    \n

    1.6.6

    \n
      \n
    • Improvement: Added compatibility to Elementor core version 3.5.0. Now to work with EHF, Elementor minimum version 3.1.0 or higher will be required.
    • \n
    • Fix: PHP warning of undefined array key on responsive controls in all widgets.
    • \n
    \n

    1.6.5

    \n
      \n
    • Fix: Hide empty cart count badge hiding even when cart is not empty.
    • \n
    \n

    1.6.4

    \n
      \n
    • Improvement: Elementor 3.4 compatibility.
    • \n
    \n

    1.6.3

    \n
      \n
    • Improvement: WordPress 5.8 compatibility.
    • \n
    • Improvement: Elementor 3.3 compatibility.
    • \n
    \n

    1.6.2

    \n
      \n
    • Improvement: Copyright – Added custom link attributes support.
    • \n
    • Improvement: Page Title – Added custom link attributes support.
    • \n
    • Improvement: Retina Image – Added custom link attributes support.
    • \n
    • Improvement: Search – Added gradient color support to the search button.
    • \n
    • Improvement: Site Logo – Added custom link attributes support.
    • \n
    • Improvement: Site Title – Added custom link attributes support.
    • \n
    • Fix: Templates views section not displaying correctly and related code conflicting with Yoast SEO plugin.
    • \n
    • Fix: Widgets icon color issue with Elementor’s dark mode.
    • \n
    \n

    1.6.1

    \n
      \n
    • Fix: Footer misplaced in the header or content area due to a bug introduced in v1.6.0.
    • \n
    \n

    1.6.0

    \n
      \n
    • New: Added Email Subscription and About Us section on the settings page.
    • \n
    • New: Renamed the plugin to Elementor Header & Footer Builder.
    • \n
    • Improvement: Added an option to hide + & – sign added by Twenty Twenty-One Theme.
    • \n
    • Fix: Navigation Menu – Border for dropdown is also applying to the menu trigger icon.
    • \n
    • Fix: Navigation Menu – Fix top distance option for dropdown adding a top-margin to sub-menu.
    • \n
    • Fix: Navigation Menu – Fixed active color issues in case of full-page anchor links used in nav links.
    • \n
    • Fix: Navigation Menu – Navigation schema not working.
    • \n
    \n

    1.5.9

    \n
      \n
    • Improvement: Added notice to update Elementor to v3.0.0 or higher
      \nElementor has deprecated few functions and namespaces with its v3.0.0. Following Elementor, our plugin too deprecates similar functions and namespaces. You will now require the Elementor v3.0.0 or higher.
    • \n
    • Improvement: Elementor 3.2 Compatibility – Added Elementor Global Color and Typography scheme support.
    • \n
    • Fix: Navigation Menu – Last menu item button disappearing while switching from mobile to desktop.
    • \n
    • Fix: Navigation Menu – Last menu item button alignment not working in RTL view.
    • \n
    \n

    1.5.8

    \n
      \n
    • Fix: Hardened allowed options in the editor to enforce better security policies.
    • \n
    \n

    1.5.7

    \n
      \n
    • Improvement: Compatibility with Elementor v3.1.
    • \n
    • Fix: Navigation Menu – Undefined index notice when menu is not set.
    • \n
    \n

    1.5.6

    \n
      \n
    • Fix: Buttons showing cart subtotal.
    • \n
    \n

    1.5.5

    \n
      \n
    • Improvement: Compatibility with Elementor v3.1.
    • \n
    • Improvement: Cart – Added Items Count hover color options.
    • \n
    • Fix: jQuery shorthand deprecation warning for click() and focus() functions.
    • \n
    • Fix: Cart – Fixed fatal error due to cart initialization.
    • \n
    \n

    1.5.4

    \n
      \n
    • Improvement: Compatibility to PHP v8.0.
    • \n
    • Improvement: Improved compatibility with Astra theme.
    • \n
    • Improvement: Navigation Menu – Added option to toggle menu item.
    • \n
    • Fix: Added ‘alt’ attribute to the widgets containing images.
    • \n
    • Fix: Closed the missing HTML tag in footer in the global theme compatibility.
    • \n
    • Fix: Navigation Menu – Alignment option not working for the last menu item set as ‘Button’.
    • \n
    \n

    1.5.3

    \n
      \n
    • Fix: Polylang plugin conflicting issue with target rules.
    • \n
    • Fix: Navigation Menu – Double link attributes issue with translation plugins.
    • \n
    \n

    1.5.2

    \n
      \n
    • Improvement: Compatibility with Polylang.
    • \n
    • Improvement: Navigation Menu – Added ‘SiteNavigationElement’ schema support.
    • \n
    • Improvement: Navigation Menu – Added support to SVG for toggle and close icon.
    • \n
    • Improvement: Navigation Menu – Added active color support to the link hover effects.
    • \n
    • Improvement: Page Title – Added option to disable the link.
    • \n
    • Fix: Exclude EHF templates from query for target rules – Specific Pages / Posts / taxonomies etc.
    • \n
    • Fix: Cart – Missing wrapper class in the control selector.
    • \n
    • Fix: Navigation Menu – Added responsive support to flyout box width.
    • \n
    \n

    1.5.1

    \n
      \n
    • Fix: Retained GeneratePress theme’s after header while using EHF header.
    • \n
    • Fix: Target rule ‘Specific Pages/Posts/Taxonomies etc’ not working.
    • \n
    • Fix: Cart – Error in some cases.
    • \n
    \n

    1.5.0

    \n
      \n
    • New: Search widget.
    • \n
    • New: Users can now share non-personal usage data to help us test and develop better products. ( Know More )
    • \n
    • Improvement: UI improvements.
    • \n
    • Improvement: Navigation Menu – Added active color for dropdown and current menu parent.
    • \n
    • Improvement: Navigation Menu – Changed the tablet breakpoint to 1024 in order to support iPad Pro.
    • \n
    • Fix: Compatibility to PHP v7.4.
    • \n
    • Fix: GeneratePress theme header now overridden by EHF.
    • \n
    • Fix: Cart – Count not increasing with AJAX call.
    • \n
    • Fix: Page Title – Added support for archive title.
    • \n
    • Fix: Site Title – Custom URL not working.
    • \n
    \n

    1.4.1

    \n
      \n
    • Fix: EHF header overlapping Astra WooCommerce Off-Canvas.
    • \n
    • Fix: WooCommerce Menu Cart – ‘div’ tag of custom cart layout was not closed.
    • \n
    • Fix: WooCommerce Menu Cart – Fatal error with count when cart is empty.
    • \n
    \n

    1.4.0

    \n
      \n
    • New: WooCommerce Menu Cart widget.
    • \n
    • Improvement: Compatibility to Elementor Pro v2.9 full site editing.
    • \n
    • Improvement: In-built support to Hello Elementor theme.
    • \n
    • Improvement: WPML support to before footer template.
    • \n
    • Improvement: Navigation Menu – Added option to convert last item into CTA.
    • \n
    \n

    1.3.1

    \n
      \n
    • Fix: Copyright – Link with open in new tab not working.
    • \n
    • Fix: Navigation Menu – Hamburger menu click not working on responsive devices.
    • \n
    • Deprecated: Removed the theme dependency for the plugin, so removed the associated notice.
    • \n
    \n

    1.3.0

    \n
      \n
    • New: Added ‘Site Logo’ widget.
    • \n
    • New: Added ‘Site Title’ widget.
    • \n
    • New: Added ‘Site Tagline’ widget.
    • \n
    • New: Added ‘Navigation Menu’ widget.
    • \n
    • New: Added ‘Page Title’ widget.
    • \n
    • Improvement: Elementor v2.9 compatibility.
    • \n
    \n

    1.2.2

    \n
      \n
    • Fix: Add default fallback theme support after checking if current theme does not add it.
    • \n
    \n

    1.2.1

    \n
      \n
    • Categorize the Elementor widgets in a separate category in the Elementor window.
    • \n
    • Hide target rules options when a custom block template is selected.
    • \n
    \n

    1.2.0

    \n
      \n
    • New: Support all the themes, Includes two separate fallback methods so that you can create custom headers and footers for any theme.
    • \n
    • New: Added target rule engine, which allows you to have different headers/footers for different pages.
    • \n
    • New: Added Retina Image Elementor widget, which can be used as a Site Logo.
    • \n
    • New: Added Copyright widget and Shortcode for current year & site title.
    • \n
    • Improvement: Allow before footer to work on Elementor Canvas Template when not using Astra Theme.
    • \n
    • Improvement: Added support of Before Footer action for all the themes.
    • \n
    \n

    1.1.4

    \n
      \n
    • Fix: Flush permalinks on plugin update to Elementor error when trying to edit the Header/Footer.
    • \n
    \n

    1.1.3

    \n
      \n
    • Improvement: Allow changing the permalinks for the hfe templates (#162)
    • \n
    • Fix: WPML Translations do not work when using the Elementor Template as a shortcode. (#159)
    • \n
    • Fix: Page content appears over the header. (#150)
    • \n
    • Fix: Remove the deprecated function warning for shortcode functions. (Props @hogash #145)
    • \n
    \n

    1.1.2

    \n
      \n
    • Fix: Depracated function warning from Elementor’s method \\Elementor\\Post_CSS_File
    • \n
    \n

    1.1.1

    \n
      \n
    • Fix: Blank header being displayed when only footer is translated using WPML.
    • \n
    \n

    1.1.0

    \n
      \n
    • New: Rename plugin to be Header Footer & Blocks builder as now the blocks templates can be used as shortcodes.
    • \n
    • New: Add templates before the footer for Astra Theme. Options for other themes will be coming soon.
    • \n
    • New: Use templates (Blocks) anywhere in your content with the help of shortcodes.
    • \n
    • Improvement: Improved the UI of the metabox for Header Footer post type.
    • \n
    \n

    1.0.16

    \n
      \n
    • Fix: Make the theme not supported notice dismissable.
    • \n
    • Fix: Use specific selector when adding z-index for the header.
    • \n
    \n

    1.0.15

    \n
      \n
    • Fix: Default Header being displayed for Generatepress and Genesis theme after v1.0.14.
    • \n
    \n

    1.0.14

    \n
      \n
    • Fix: Fixes possible PHP notices/Errors due to WP_Query being called early for all the supported themes.
    • \n
    \n

    1.0.13

    \n
      \n
    • Fix: PHP Notices and errors due to WP_Query being called early when some plugins use filters inside WP_Query.
    • \n
    \n

    1.0.12

    \n
      \n
    • Fix: Compatibility with Elementor 2.0 changed canvas template path.
    • \n
    \n

    1.0.11

    \n
      \n
    • Load the CSS footer early in the page to avoid slow rendering of CSS.
    • \n
    • Change the schema.org links to be https.
    • \n
    • Fix: Added correct schema markup for the footer.
    • \n
    \n

    1.0.10

    \n
      \n
    • Load the header layout correctly in the in Elementor canvas template.
    • \n
    • Load the Elementor Pro CSS/JS files in .
    • \n
    • Provide more filters for the helper functions.
    • \n
    \n

    1.0.9

    \n
      \n
    • Add Support for WPML.
    • \n
    • Updated the missing strings from the translations template.
    • \n
    \n

    1.0.8

    \n
      \n
    • Allow filters to override the WP_Query parameters when retrieving the Header / Footer template id.
    • \n
    \n

    1.0.7

    \n
      \n
    • Fix: Dismissible notice not actually dismissing.
    • \n
    \n

    1.0.6

    \n
      \n
    • New: Option to display the header/footer on the pages using Elementor Canvas Template.
    • \n
    \n

    1.0.5

    \n
      \n
    • Fix: Correctly check if Elementor actually is active before using its methods. This fixes errors for sites using older versions of PHP where Elementor does not actually get activated.
    • \n
    \n

    1.0.4

    \n
      \n
    • Improvement: Use Elementor’s created instance when rendering the markup for header/footer – Credits itay9001
    • \n
    \n

    1.0.3

    \n
      \n
    • Fix: Adding theme support for the plugin does not remove the “no supported” notice.
    • \n
    \n

    1.0.2

    \n
      \n
    • New: Added support for the OceanWP Theme.
    • \n
    • Fix: Load the Elementor header assets correctly in the header. This fixes header looking different just when loading the page as previously Elementor would load its CSS in the footer.
    • \n
    • Introduced helper functions for rendering and checking the headers to make it simpler to integrate HFE with more themes.
    • \n
    \n

    1.0.1

    \n
      \n
    • New: Added support for the Astra WordPress theme – The Fastest, Most Lightweight & Customizable WordPress Theme.
    • \n
    • Moved the menu under Appearance -> Header Footer Builder.
    • \n
    • Fix: Header content getting hidden behind the page content.
    • \n
    • Use Elementor’s canvas template when designing header and footer layout to have full width experience.
    • \n
    \n

    1.0.0

    \n
      \n
    • Initial Release.
    • \n
    \n", "description": "

    Ultimate Addons for Elementor (UAE) is a powerful yet lightweight plugin that extends Elementors capabilities with purposely built widgets, blocks, and features that help you build better websites—without adding complexity.

    \n

    Formerly known as Elementor Header & Footer Builder, UAE has evolved into a trusted Elementor Addons used by over 2 million websites to design creative sections directly within Elementor—no coding required.

    \n

    The free version of UAE includes a hand-picked set of essential widgets like Info Card, Navigation Menu and more—widgets that are genuinely useful for most websites. It also enables you to design headers and footers visually and adds features that improve your design process without cluttering your interface.

    \n

    When you’re ready to go further, UAE Pro unlocks a library of 50+ premium widgets, 200+ pre-designed section blocks, and advanced features like Cross-Site Copy-Paste, Advanced Display Conditions, Form Stylers for popular form plugins, and visual effects like Particle Backgrounds.

    \n

    These features are built to save time and offer more design freedom—not just to impress, but to genuinely improve how you build and manage websites.

    \n

    Whether you’re just getting started with WordPress or managing multiple client sites, UAE – Elementor Addons gives you the control, performance, and reliability to design beautiful, high-converting websites efficiently.

    \n

    Try the live demo of Ultimate Addons for Elementor

    \n

    \n

    Why Choose UAE Elementor Addon

    \n

    Ultimate Addons for Elementor equips you with tools that make page design faster, cleaner, and more creative. Whether you’re just starting your web design journey or building complex websites for clients, UAE can help.

    \n

    Here’s why over 2 million people trust UAE:

    \n
      \n
    • \n

      Create Engaging Designs: Build visually stunning sections with widgets that go beyond basic blocks. From Before/After sliders to particle backgrounds, everything is built to captivate, engage, and convert.

      \n
    • \n
    • \n

      Copy Elementor Designs From One Domain to Another: Use the Cross-Site Copy Paste feature to move sections and widgets between pages/sites, which streamlines the workflow and saves time.

      \n
    • \n
    • \n

      Keep Your Website Light by Loading Only What Is Needed: UAE loads code only for the widgets you use, which helps maintain site performance and supports SEO best practices.

      \n
    • \n
    • \n

      Build Faster With 200+ Readymade Section Blocks: Design faster with a massive library of pre-designed content sections. Just insert, customize, and publish. Ideal for agencies and freelancers seeking efficiency.

      \n
    • \n
    • \n

      50+ Premium Widgets That Truly Matter: UAE Pro includes over 50+ carefully crafted widgets. High-impact tools designed to solve real design challenges and boost functionality where it counts.

      \n
    • \n
    • \n

      Works Seamlessly With Any WordPress Theme: No theme lock-in or compatibility issues. UAE integrates smoothly with all compliant WordPress themes, including Astra.

      \n
    • \n
    • \n

      Designed for Beginners, Loved by Pros: Whether you’re a DIY site builder or a seasoned designer, UAE strikes the balance between ease of use and advanced functionality.

      \n
    • \n
    • \n

      Extend Elementor Without Plugin Overload: UAE packs multiple high-utility widgets into one lightweight plugin. Avoid installing multiple third-party plugins that slow down your site or create conflicts.

      \n
    • \n
    \n

    Free Widgets in Ultimate Addons for Elementor

    \n
      \n
    • \n

      Navigation Menu – With this powerful Elementor nav menu addon (widget), you can build responsive menus that match your style.

      \n
    • \n
    • \n

      Site Logo & Retina Logo – Showcase crisp branding across all devices.

      \n
    • \n
    • \n

      Site Title & Tagline – Display key identity elements clearly and elegantly.

      \n
    • \n
    • \n

      Search – Add fast, user-friendly search to your header or footer.

      \n
    • \n
    • \n

      Cart – Integrate a shopping cart preview for WooCommerce stores.

      \n
    • \n
    • \n

      Page Title – Automatically show relevant page titles for better UX and SEO.

      \n
    • \n
    • \n

      Breadcrumbs – Improve site navigation and search engine visibility.

      \n
    • \n
    • \n

      Post Info – Display author, date, categories, and more for content clarity.

      \n
    • \n
    • \n

      Scroll to Top – Give users a seamless way to navigate with this handy scroll addon for Elementor.

      \n
    • \n
    • \n

      Reading Progress Bar – Visually indicate article progress for better engagement.

      \n
    • \n
    • \n

      Info Card – Combine icons, headings, text, and CTAs in one flexible block.

      \n
    • \n
    • \n

      Copyright – Easily add site-wide copyright or legal text in the footer.

      \n
    • \n
    \n

    Note: You can refer to our step-by-step guide that will help you set headers and footers quickly.

    \n

    How these Elementor widgets help:

    \n
      \n
    • Build complete headers and footers directly within Elementor
    • \n
    • Avoid relying on theme settings or extra plugins
    • \n
    • Keep your design consistent on all devices
    • \n
    • Improve usability, accessibility, and SEO
    • \n
    \n

    The free UAE widgets give you a strong foundation to build a professional website and they work beautifully with any WordPress theme.

    \n

    🚀 Upgrade to Ultimate Addons for Elementor Pro and unlock limitless possibilities!

    \n

    Content and Interaction Widgets

    \n

    Create compelling, high-converting layouts with powerful content widgets designed for Elementor. UAE widgets help you deliver clear, engaging content experiences that are both informative and interactive. Great for business sites, blogs, service pages, and portfolios.

    \n
      \n
    • \n

      Advanced Heading – Design eye-catching headlines with layered styles and dynamic effects.

      \n
    • \n
    • \n

      Business Hours – Display store or office hours clearly with styled layouts.

      \n
    • \n
    • \n

      Content Toggle (Popular) – Switch between content blocks for comparisons, FAQs, or pricing plans.

      \n
    • \n
    • \n

      Google Map – Add responsive, customizable location maps to boost trust and visibility.

      \n
    • \n
    • \n

      Image Gallery – Showcase multiple images in a clean, organized grid or masonry layout.

      \n
    • \n
    • \n

      Info Box – Combine icons, titles, and descriptions with CTA buttons in one elegant widget.

      \n
    • \n
    • \n

      Modal Popup (Popular) – Easily trigger stylish popups for promotions, lead generation, or key messages.

      \n
    • \n
    • \n

      Posts – Showcase your latest blog posts or any custom post types with this visually appealing post grid addon for Elementor.

      \n
    • \n
    • \n

      Price List – Highlight products or services with pricing and description in a clean layout.

      \n
    • \n
    • \n

      Table – Create sortable, responsive tables to organize data or feature comparisons.

      \n
    • \n
    • \n

      Video (Popular) – Embed YouTube, Vimeo, or self-hosted videos with custom styling options.

      \n
    • \n
    • \n

      Video Gallery – Show multiple videos in a neatly organized, responsive gallery.

      \n
    • \n
    \n

    Creative Widgets

    \n

    Add flair, functionality, and interactivity to your Elementor designs. Ideal for portfolios, agencies, service-based businesses, and conversion-focused landing pages.

    \n
      \n
    • \n

      Before After Slider – Visually compare two images using a draggable slider.

      \n
    • \n
    • \n

      Countdown Timer – Create urgency for offers, events, or product launches.

      \n
    • \n
    • \n

      Display Conditions – Show or hide content dynamically based on user role, device, login status, and more.

      \n
    • \n
    • \n

      Dual Color Heading – Highlight key phrases in headings with stylish dual-tone designs.

      \n
    • \n
    • \n

      Fancy Heading – Create animated, visually distinct headlines to capture attention.

      \n
    • \n
    • \n

      Hotspots (Popular) – Add interactive tooltips to images to explain features or details.

      \n
    • \n
    • \n

      Login Form – Embed a beautifully styled, branded login form right into any page.

      \n
    • \n
    • \n

      Marketing Button – Add call to action buttons with built-in icons, hover effects, and dual text.

      \n
    • \n
    • \n

      Multi Buttons – Display multiple action buttons side-by-side for better decision making.

      \n
    • \n
    • \n

      Navigation Menu – Create fully customizable, responsive menus directly within Elementor.

      \n
    • \n
    • \n

      Off-Canvas – Create off-screen panels for menus, filters, or extra content that slides into view.

      \n
    • \n
    • \n

      Price Box – Showcase pricing plans with styled headings, features, and call to action buttons.

      \n
    • \n
    • \n

      Retina Image – Ensure images display perfectly on high-resolution (Retina) screens.

      \n
    • \n
    • \n

      Team Member – Introduce your team with photos, bios, social links and layout options.

      \n
    • \n
    • \n

      Timeline (Popular) – Display milestones, history, or process steps in vertical or horizontal timelines.

      \n
    • \n
    • \n

      User Registration Form – Let visitors register with a styled, user-friendly form.

      \n
    • \n
    \n

    Form Styler Widgets

    \n

    Match forms to your site design and improve conversions without writing CSS. These widgets let you customize popular WordPress forms with full control over layout, colors, typography, and spacing.

    \n\n

    SEO Widgets

    \n

    Boost search visibility, enhance content structure and build trust from the Elementor editor.

    \n
      \n
    • \n

      Business Reviews – Display authentic reviews from platforms like Google.

      \n
    • \n
    • \n

      How-To Schema – Format step-by-step guides with structured data to earn rich snippets.

      \n
    • \n
    • \n

      FAQ Schema – Create styled FAQs that are also SEO-ready.

      \n
    • \n
    • \n

      Table of Contents – Automatically generate clickable TOCs for long content.

      \n
    • \n
    \n

    Social Widgets

    \n

    Keep your website fresh, connected and shareable with built-in social media integrations.

    \n
      \n
    • \n

      Instagram Feed (NEW) – Embed a stylish, responsive Instagram gallery that updates automatically.

      \n
    • \n
    • \n

      X Feed (NEW) – Show your most recent posts from X (formerly Twitter).

      \n
    • \n
    • \n

      Social Share – Add sleek, customizable share buttons to grow your audience.

      \n
    • \n
    \n

    WooCommerce Widgets

    \n

    Design high-converting online stores inside Elementor with this modern WooCommerce addon.

    \n\n

    Creative Features

    \n

    Go beyond widgets and unlock tools that accelerate your workflow.

    \n
      \n
    • \n

      Cross-Site Copy Paste – Instantly copy and paste entire Elementor sections between domains.

      \n
    • \n
    • \n

      Particle Backgrounds – Add animated particle effects behind sections.

      \n
    • \n
    • \n

      Party Propz – Celebrate special occasions with on-screen confetti and fun animations.

      \n
    • \n
    • \n

      Presets – Apply consistent design styles across widgets with a single click.

      \n
    • \n
    • \n

      Welcome Music – Play background music when a visitor lands on your site.

      \n
    • \n
    \n

    Unlock Even More With the Essential Toolkit

    \n

    Upgrade to the Essential Toolkit to access a powerful bundle designed to save time, spark creativity, and give you a real competitive advantage.

    \n

    300+ Pre-built websites: Skip the blank canvas. Launch faster with professionally designed websites.

    \n

    Templates for every niche: Build business sites, blogs, portfolios, or stores with no design experience needed.

    \n

    Total design freedom: Tweak every pixel, colors, fonts, and layouts to make each site uniquely yours.

    \n

    What Users Are Saying

    \n

    “A must-have for any Elementor user. Incredible widget bundle — powerful, essential, and easy to use.”
    \n – Carmelo Teran (nexodreams.com)

    \n

    “Huge selection of widgets that help me deliver unique designs fast. Love the Hotspots, Heading, and Cross-Site Copy Paste!”
    \n – Nicola Stobb (imoe.co)

    \n

    “If Elementor Pro is the Iron Man suit, Ultimate Addons is the Hulkbuster upgrade. I don’t build without it!”
    \n – Dean Loh (kaia.asia)

    \n

    More Tools To Enhance Your WordPress Website

    \n

    If you love Ultimate Addons, you’ll love what else we’ve built to make designing and managing websites easier.

    \n
      \n
    • \n

      Astra theme – A popular WordPress theme known for speed and flexibility.

      \n
    • \n
    • \n

      Astra Starter Templates – Pick from over 300+ professionally designed templates or use AI to create a custom website in minutes.

      \n
    • \n
    • \n

      OttoKit (Formerly SureTriggers) – Automate daily tasks by connecting your favorite apps and plugins effortlessly.

      \n
    • \n
    • \n

      SureForms – Build beautiful, high-converting forms, quizzes, and surveys.

      \n
    • \n
    • \n

      SureCart – A powerful yet easy to use eCommerce plugin built for modern creators and digital sellers.

      \n
    • \n
    \n

    Each tool is designed to help you build faster, work smarter, and grow your online presence with less effort and better results.

    \n

    Need help getting started?

    \n

    Check out our getting started guide and documentation for step-by-step tutorials.

    \n

    Have a question?

    \n

    Visit the support forum right here on WordPress.org. We’re happy to help!

    \n

    Want to explore more?

    \n

    Learn about all features, FAQs, and tips on our website.

    \n

    🎉 Love Ultimate Addons for Elementor?

    \n\n", "screenshots": "
    1. \"\"
    2. \"\"
    3. \"\"
    4. \"\"
    5. \"\"
    ", "installation": "
      \n
    1. Download the plugin.
    2. \n
    3. Upload the plugin files to the /wp-content/plugins/ directory or install it through the WordPress plugins screen.
    4. \n
    5. Activate the plugin via the ‘Plugins’ screen in WordPress.
    6. \n
    7. Go to UAE > Dashboard to start designing your custom headers and footers.
    8. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.1.2.zip", "1.2.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.2.2.zip", "1.3.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.3.1.zip", "1.4.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.4.1.zip", "1.5.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.9.zip", "2.0.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.0.6.zip", "2.1.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.2.4.zip", "2.3.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.3.2.zip", "2.4.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.5.2.zip", "2.6.0": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.6.1.zip", "trunk": "https://downloads.wordpress.org/plugin/header-footer-elementor.zip", "1.0.10": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.0.16.zip", "1.6.10": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.10.zip", "1.6.11": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.11.zip", "1.6.12": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.12.zip", "1.6.13": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.13.zip", "1.6.14": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.14.zip", "1.6.15": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.15.zip", "1.6.16": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.16.zip", "1.6.17": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.17.zip", "1.6.18": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.18.zip", "1.6.19": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.19.zip", "1.6.20": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.20.zip", "1.6.21": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.21.zip", "1.6.22": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.22.zip", "1.6.23": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.23.zip", "1.6.24": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.24.zip", "1.6.25": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.25.zip", "1.6.26": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.26.zip", "1.6.27": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.27.zip", "1.6.28": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.28.zip", "1.6.29": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.29.zip", "1.6.30": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.30.zip", "1.6.31": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.31.zip", "1.6.32": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.32.zip", "1.6.33": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.33.zip", "1.6.34": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.34.zip", "1.6.35": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.35.zip", "1.6.36": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.36.zip", "1.6.37": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.37.zip", "1.6.38": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.38.zip", "1.6.39": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.39.zip", "1.6.40": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.40.zip", "1.6.41": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.41.zip", "1.6.42": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.42.zip", "1.6.43": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.43.zip", "1.6.44": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.44.zip", "1.6.45": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.45.zip", "1.6.46": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.46.zip", "1.6.47": "https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.47.zip", "v1.1.3": "https://downloads.wordpress.org/plugin/header-footer-elementor.v1.1.3.zip", "v1.1.4": "https://downloads.wordpress.org/plugin/header-footer-elementor.v1.1.4.zip"}, "downloaded": 56019705, "description": "

    Ultimate Addons for Elementor (UAE) is a powerful yet lightweight plugin that extends Elementors capabilities with purposely built widgets, blocks, and features that help you build better websites—without adding complexity.

    \n

    Formerly known as Elementor Header & Footer Builder, UAE has evolved into a trusted Elementor Addons used by over 2 million websites to design creative sections directly within Elementor—no coding required.

    \n

    The free version of UAE includes a hand-picked set of essential widgets like Info Card, Navigation Menu and more—widgets that are genuinely useful for most websites. It also enables you to design headers and footers visually and adds features that improve your design process without cluttering your interface.

    \n

    When you’re ready to go further, UAE Pro unlocks a library of 50+ premium widgets, 200+ pre-designed section blocks, and advanced features like Cross-Site Copy-Paste, Advanced Display Conditions, Form Stylers for popular form plugins, and visual effects like Particle Backgrounds.

    \n

    These features are built to save time and offer more design freedom—not just to impress, but to genuinely improve how you build and manage websites.

    \n

    Whether you’re just getting started with WordPress or managing multiple client sites, UAE – Elementor Addons gives you the control, performance, and reliability to design beautiful, high-converting websites efficiently.

    \n

    Try the live demo of Ultimate Addons for Elementor

    \n

    \n

    Why Choose UAE Elementor Addon

    \n

    Ultimate Addons for Elementor equips you with tools that make page design faster, cleaner, and more creative. Whether you’re just starting your web design journey or building complex websites for clients, UAE can help.

    \n

    Here’s why over 2 million people trust UAE:

    \n
      \n
    • \n

      Create Engaging Designs: Build visually stunning sections with widgets that go beyond basic blocks. From Before/After sliders to particle backgrounds, everything is built to captivate, engage, and convert.

      \n
    • \n
    • \n

      Copy Elementor Designs From One Domain to Another: Use the Cross-Site Copy Paste feature to move sections and widgets between pages/sites, which streamlines the workflow and saves time.

      \n
    • \n
    • \n

      Keep Your Website Light by Loading Only What Is Needed: UAE loads code only for the widgets you use, which helps maintain site performance and supports SEO best practices.

      \n
    • \n
    • \n

      Build Faster With 200+ Readymade Section Blocks: Design faster with a massive library of pre-designed content sections. Just insert, customize, and publish. Ideal for agencies and freelancers seeking efficiency.

      \n
    • \n
    • \n

      50+ Premium Widgets That Truly Matter: UAE Pro includes over 50+ carefully crafted widgets. High-impact tools designed to solve real design challenges and boost functionality where it counts.

      \n
    • \n
    • \n

      Works Seamlessly With Any WordPress Theme: No theme lock-in or compatibility issues. UAE integrates smoothly with all compliant WordPress themes, including Astra.

      \n
    • \n
    • \n

      Designed for Beginners, Loved by Pros: Whether you’re a DIY site builder or a seasoned designer, UAE strikes the balance between ease of use and advanced functionality.

      \n
    • \n
    • \n

      Extend Elementor Without Plugin Overload: UAE packs multiple high-utility widgets into one lightweight plugin. Avoid installing multiple third-party plugins that slow down your site or create conflicts.

      \n
    • \n
    \n

    Free Widgets in Ultimate Addons for Elementor

    \n
      \n
    • \n

      Navigation Menu – With this powerful Elementor nav menu addon (widget), you can build responsive menus that match your style.

      \n
    • \n
    • \n

      Site Logo & Retina Logo – Showcase crisp branding across all devices.

      \n
    • \n
    • \n

      Site Title & Tagline – Display key identity elements clearly and elegantly.

      \n
    • \n
    • \n

      Search – Add fast, user-friendly search to your header or footer.

      \n
    • \n
    • \n

      Cart – Integrate a shopping cart preview for WooCommerce stores.

      \n
    • \n
    • \n

      Page Title – Automatically show relevant page titles for better UX and SEO.

      \n
    • \n
    • \n

      Breadcrumbs – Improve site navigation and search engine visibility.

      \n
    • \n
    • \n

      Post Info – Display author, date, categories, and more for content clarity.

      \n
    • \n
    • \n

      Scroll to Top – Give users a seamless way to navigate with this handy scroll addon for Elementor.

      \n
    • \n
    • \n

      Reading Progress Bar – Visually indicate article progress for better engagement.

      \n
    • \n
    • \n

      Info Card – Combine icons, headings, text, and CTAs in one flexible block.

      \n
    • \n
    • \n

      Copyright – Easily add site-wide copyright or legal text in the footer.

      \n
    • \n
    \n

    Note: You can refer to our step-by-step guide that will help you set headers and footers quickly.

    \n

    How these Elementor widgets help:

    \n
      \n
    • Build complete headers and footers directly within Elementor
    • \n
    • Avoid relying on theme settings or extra plugins
    • \n
    • Keep your design consistent on all devices
    • \n
    • Improve usability, accessibility, and SEO
    • \n
    \n

    The free UAE widgets give you a strong foundation to build a professional website and they work beautifully with any WordPress theme.

    \n

    🚀 Upgrade to Ultimate Addons for Elementor Pro and unlock limitless possibilities!

    \n

    Content and Interaction Widgets

    \n

    Create compelling, high-converting layouts with powerful content widgets designed for Elementor. UAE widgets help you deliver clear, engaging content experiences that are both informative and interactive. Great for business sites, blogs, service pages, and portfolios.

    \n
      \n
    • \n

      Advanced Heading – Design eye-catching headlines with layered styles and dynamic effects.

      \n
    • \n
    • \n

      Business Hours – Display store or office hours clearly with styled layouts.

      \n
    • \n
    • \n

      Content Toggle (Popular) – Switch between content blocks for comparisons, FAQs, or pricing plans.

      \n
    • \n
    • \n

      Google Map – Add responsive, customizable location maps to boost trust and visibility.

      \n
    • \n
    • \n

      Image Gallery – Showcase multiple images in a clean, organized grid or masonry layout.

      \n
    • \n
    • \n

      Info Box – Combine icons, titles, and descriptions with CTA buttons in one elegant widget.

      \n
    • \n
    • \n

      Modal Popup (Popular) – Easily trigger stylish popups for promotions, lead generation, or key messages.

      \n
    • \n
    • \n

      Posts – Showcase your latest blog posts or any custom post types with this visually appealing post grid addon for Elementor.

      \n
    • \n
    • \n

      Price List – Highlight products or services with pricing and description in a clean layout.

      \n
    • \n
    • \n

      Table – Create sortable, responsive tables to organize data or feature comparisons.

      \n
    • \n
    • \n

      Video (Popular) – Embed YouTube, Vimeo, or self-hosted videos with custom styling options.

      \n
    • \n
    • \n

      Video Gallery – Show multiple videos in a neatly organized, responsive gallery.

      \n
    • \n
    \n

    Creative Widgets

    \n

    Add flair, functionality, and interactivity to your Elementor designs. Ideal for portfolios, agencies, service-based businesses, and conversion-focused landing pages.

    \n
      \n
    • \n

      Before After Slider – Visually compare two images using a draggable slider.

      \n
    • \n
    • \n

      Countdown Timer – Create urgency for offers, events, or product launches.

      \n
    • \n
    • \n

      Display Conditions – Show or hide content dynamically based on user role, device, login status, and more.

      \n
    • \n
    • \n

      Dual Color Heading – Highlight key phrases in headings with stylish dual-tone designs.

      \n
    • \n
    • \n

      Fancy Heading – Create animated, visually distinct headlines to capture attention.

      \n
    • \n
    • \n

      Hotspots (Popular) – Add interactive tooltips to images to explain features or details.

      \n
    • \n
    • \n

      Login Form – Embed a beautifully styled, branded login form right into any page.

      \n
    • \n
    • \n

      Marketing Button – Add call to action buttons with built-in icons, hover effects, and dual text.

      \n
    • \n
    • \n

      Multi Buttons – Display multiple action buttons side-by-side for better decision making.

      \n
    • \n
    • \n

      Navigation Menu – Create fully customizable, responsive menus directly within Elementor.

      \n
    • \n
    • \n

      Off-Canvas – Create off-screen panels for menus, filters, or extra content that slides into view.

      \n
    • \n
    • \n

      Price Box – Showcase pricing plans with styled headings, features, and call to action buttons.

      \n
    • \n
    • \n

      Retina Image – Ensure images display perfectly on high-resolution (Retina) screens.

      \n
    • \n
    • \n

      Team Member – Introduce your team with photos, bios, social links and layout options.

      \n
    • \n
    • \n

      Timeline (Popular) – Display milestones, history, or process steps in vertical or horizontal timelines.

      \n
    • \n
    • \n

      User Registration Form – Let visitors register with a styled, user-friendly form.

      \n
    • \n
    \n

    Form Styler Widgets

    \n

    Match forms to your site design and improve conversions without writing CSS. These widgets let you customize popular WordPress forms with full control over layout, colors, typography, and spacing.

    \n\n

    SEO Widgets

    \n

    Boost search visibility, enhance content structure and build trust from the Elementor editor.

    \n
      \n
    • \n

      Business Reviews – Display authentic reviews from platforms like Google.

      \n
    • \n
    • \n

      How-To Schema – Format step-by-step guides with structured data to earn rich snippets.

      \n
    • \n
    • \n

      FAQ Schema – Create styled FAQs that are also SEO-ready.

      \n
    • \n
    • \n

      Table of Contents – Automatically generate clickable TOCs for long content.

      \n
    • \n
    \n

    Social Widgets

    \n

    Keep your website fresh, connected and shareable with built-in social media integrations.

    \n
      \n
    • \n

      Instagram Feed (NEW) – Embed a stylish, responsive Instagram gallery that updates automatically.

      \n
    • \n
    • \n

      X Feed (NEW) – Show your most recent posts from X (formerly Twitter).

      \n
    • \n
    • \n

      Social Share – Add sleek, customizable share buttons to grow your audience.

      \n
    • \n
    \n

    WooCommerce Widgets

    \n

    Design high-converting online stores inside Elementor with this modern WooCommerce addon.

    \n\n

    Creative Features

    \n

    Go beyond widgets and unlock tools that accelerate your workflow.

    \n
      \n
    • \n

      Cross-Site Copy Paste – Instantly copy and paste entire Elementor sections between domains.

      \n
    • \n
    • \n

      Particle Backgrounds – Add animated particle effects behind sections.

      \n
    • \n
    • \n

      Party Propz – Celebrate special occasions with on-screen confetti and fun animations.

      \n
    • \n
    • \n

      Presets – Apply consistent design styles across widgets with a single click.

      \n
    • \n
    • \n

      Welcome Music – Play background music when a visitor lands on your site.

      \n
    • \n
    \n

    Unlock Even More With the Essential Toolkit

    \n

    Upgrade to the Essential Toolkit to access a powerful bundle designed to save time, spark creativity, and give you a real competitive advantage.

    \n

    300+ Pre-built websites: Skip the blank canvas. Launch faster with professionally designed websites.

    \n

    Templates for every niche: Build business sites, blogs, portfolios, or stores with no design experience needed.

    \n

    Total design freedom: Tweak every pixel, colors, fonts, and layouts to make each site uniquely yours.

    \n

    What Users Are Saying

    \n

    “A must-have for any Elementor user. Incredible widget bundle — powerful, essential, and easy to use.”
    \n – Carmelo Teran (nexodreams.com)

    \n

    “Huge selection of widgets that help me deliver unique designs fast. Love the Hotspots, Heading, and Cross-Site Copy Paste!”
    \n – Nicola Stobb (imoe.co)

    \n

    “If Elementor Pro is the Iron Man suit, Ultimate Addons is the Hulkbuster upgrade. I don’t build without it!”
    \n – Dean Loh (kaia.asia)

    \n

    More Tools To Enhance Your WordPress Website

    \n

    If you love Ultimate Addons, you’ll love what else we’ve built to make designing and managing websites easier.

    \n
      \n
    • \n

      Astra theme – A popular WordPress theme known for speed and flexibility.

      \n
    • \n
    • \n

      Astra Starter Templates – Pick from over 300+ professionally designed templates or use AI to create a custom website in minutes.

      \n
    • \n
    • \n

      OttoKit (Formerly SureTriggers) – Automate daily tasks by connecting your favorite apps and plugins effortlessly.

      \n
    • \n
    • \n

      SureForms – Build beautiful, high-converting forms, quizzes, and surveys.

      \n
    • \n
    • \n

      SureCart – A powerful yet easy to use eCommerce plugin built for modern creators and digital sellers.

      \n
    • \n
    \n

    Each tool is designed to help you build faster, work smarter, and grow your online presence with less effort and better results.

    \n

    Need help getting started?

    \n

    Check out our getting started guide and documentation for step-by-step tutorials.

    \n

    Have a question?

    \n

    Visit the support forum right here on WordPress.org. We’re happy to help!

    \n

    Want to explore more?

    \n

    Learn about all features, FAQs, and tips on our website.

    \n

    🎉 Love Ultimate Addons for Elementor?

    \n\n", "donate_link": "", "num_ratings": 2501, "screenshots": {"1": {"src": "https://ps.w.org/header-footer-elementor/assets/screenshot-1.png?rev=3202457", "caption": ""}, "2": {"src": "https://ps.w.org/header-footer-elementor/assets/screenshot-2.png?rev=3198980", "caption": ""}, "3": {"src": "https://ps.w.org/header-footer-elementor/assets/screenshot-3.png?rev=3198980", "caption": ""}, "4": {"src": "https://ps.w.org/header-footer-elementor/assets/screenshot-4.png?rev=3198980", "caption": ""}, "5": {"src": "https://ps.w.org/header-footer-elementor/assets/screenshot-5.png?rev=3198980", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/header-footer-elementor/", "contributors": {"brainstormforce": {"avatar": "https://secure.gravatar.com/avatar/b9280ac641a862e2e148513dfb9567e56a273b649dbfad5df6867d4700a685d2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brainstormforce/", "display_name": "Brainstorm Force"}}, "last_updated": "2025-10-15 11:34am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/header-footer-elementor.2.6.1.zip", "author_profile": "https://profiles.wordpress.org/brainstormforce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f541-7184-bf69-f77a0968b2d9", "name": "Ultimate Addons for Elementor (Formerly Elementor Header & Footer Builder)", "slug": "header-footer-elementor", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1760528040, "version": "2.6.1"}, "support_threads": 11, "requires_plugins": [], "short_description": "Powerful Elementor addon with InfoCard, Fancy Heading, Before/After Slider, Price Box, FAQ Schema, WooCommerce widgets & Header-Footer builder.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 4}'); -INSERT INTO public.plugins VALUES ('019a30c1-6552-7159-a761-5f4ea238afc1', 'hello-dolly', 'Hello Dolly', 'This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.', '

    This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.

    -

    Thanks to Sanjib Ahmad for the artwork.

    -', '1.7.2', 'Matt Mullenweg', '4.6', NULL, '6.9', 'https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip', '2008-07-06 00:00:00+00', '2025-10-24 04:13:00+00', 'https://profiles.wordpress.org/matt/', 88, 175, 0, 0, 700000, 15011621, 'http://wordpress.org/plugins/hello-dolly/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/hello-dolly/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Hello Dolly", "slug": "hello-dolly", "tags": [], "added": "2008-07-06", "icons": {"1x": "https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855", "2x": "https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855"}, "author": "Matt Mullenweg", "rating": 88, "status": "open", "tested": "6.9", "banners": {"low": "https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855", "high": "https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582"}, "ratings": {"1": 14, "2": 8, "3": 5, "4": 13, "5": 135}, "version": "1.7.2", "homepage": "http://wordpress.org/plugins/hello-dolly/", "requires": "4.6", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Classic Piece of WordPress History

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shadowheezy on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello Dolly might be simple, but it’s iconic. Every time I open my WordPress dashboard and see a lyric from Louis Armstrong’s “Hello, Dolly!” it’s a small reminder of WordPress’s roots — creativity, simplicity, and a touch of joy.

    \n\n\n\n

    It doesn’t do much, and that’s the beauty of it. It’s a little piece of nostalgia that connects every WordPress user to the spirit of open-source community and fun. Thanks for keeping this classic alive!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    “Easy to install, worked perfectly. Helped me learn WordPress plugin structur

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy manideep makkina (manideep42) on July 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    “Easy to install, worked perfectly. Helped me learn WordPress plugin structure

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Re-added this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy TapSuccess (tapsuccess) on May 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    In the past, I have deleted this plugin. Now I am learning how to make plugins.... I like it! Thanks, Matt

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice Biolerplate code plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dimkiriakos on August 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Even many people give a lot of hate to this plugin, they should not! This plugin is not something that it''s useful your site operations, but it''s a nice boilerplate for people that they want to start building plugins for WordPress. It shows that you don''t need to write so much code to customize something in your WordPress app. It introduces the wptexturize function the get_user_locale, the admin_notices action hook and the admin_head action hook too. Yes it''s not the mode elegant thing that comes. But it can be educational for beginners

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    My site was hacked. Found this was added

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy foreverozone on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My WP account was hacked. Deleted. Found this was added to my website.

    \n\n\n\n

    Not funny to me.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    what a wonderful world!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy duca22446688 on May 13, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    what a wonderful world!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    OG plugin for OG wp designers and developers

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy strahoten on May 6, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    naysayers cannot optimise web sites

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Bloatware

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stevenblakesley on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Why is this a default plugin on Godaddy and other wordpress installs?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ignore the naysayers

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mtonumaa on December 19, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A fabulous plugin for the joyous! :)) people who hate this plugin need to get out more :)) \"You''re lookin'' swell, Dolly\"

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Absolutely useless plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy niezmywalny on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I believe someone is paying money to add this useless plugin to WordPress with every installation. If you see this plugin, please remove it.

    \n
    \n
    \n", "description": "

    This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.

    \n

    Thanks to Sanjib Ahmad for the artwork.

    \n"}, "versions": {"1.5": "https://downloads.wordpress.org/plugin/hello-dolly.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip", "1.7.2": "https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip", "trunk": "https://downloads.wordpress.org/plugin/hello-dolly.zip"}, "downloaded": 15011621, "description": "

    This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.

    \n

    Thanks to Sanjib Ahmad for the artwork.

    \n", "donate_link": "", "num_ratings": 175, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/hello-dolly/", "contributors": {"matt": {"avatar": "https://secure.gravatar.com/avatar/33252cd1f33526af53580fcb1736172f06e6716f32afdd1be19ec3096d15dea5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/matt/", "display_name": "Matt Mullenweg"}, "wordpressdotorg": {"avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "display_name": "WordPress.org"}}, "last_updated": "2025-10-24 4:13am GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip", "author_profile": "https://profiles.wordpress.org/matt/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f4f2-7129-9f69-0acc8a77d86a", "name": "Hello Dolly", "slug": "hello-dolly", "type": "plugin", "origin": "wp_org", "pulled": 1761754477, "status": "open", "checked": 1761754477, "updated": 1761279180, "version": "1.7.2"}, "support_threads": 0, "requires_plugins": [], "short_description": "This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.", "author_block_count": 0, "author_block_rating": 88, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-6558-729d-983b-a8c56678bcea', 'hostinger', 'Hostinger Tools', 'Hostinger Tools is an all-in-one plugin designed to streamline essential tasks for WordPress site administrators. This plugin offers a range of featur …', '

    Hostinger Tools is an all-in-one plugin designed to streamline essential tasks for WordPress site administrators. This plugin offers a range of features to help you manage your site’s information, maintenance mode, security, and redirects effectively.

    -

    Features:

    -

    Basic Info

    -
      -
    • Displays the current WordPress version with automatic update checks.
    • -
    • Shows the current PHP version with automatic update checks.
    • -
    -

    Maintenance Mode

    -
      -
    • Easily enable or disable maintenance mode for your site.
    • -
    • Provide a URL to bypass maintenance mode for selected users.
    • -
    -

    Security

    -
      -
    • Enable or disable XML-RPC requests to enhance your site’s security.
    • -
    • Enable or disable Authorize application page to enhance your site’s security.
    • -
    -

    Redirects

    -
      -
    • Force all URLs to use HTTPS for secure browsing.
    • -
    • Force all URLs to use WWW to ensure consistency in site access.
    • -
    -

    LLMs.txt Generation

    -
      -
    • Automatically generate a structured LLMs.txt file in Markdown format.
    • -
    • Include website title, description, posts, pages, and products (if WooCommerce is active).
    • -
    • Keep the file updated when content changes or new content is published.
    • -
    • Help AI-powered tools better understand and interact with your website content.
    • -
    -

    Hostinger Tools is the new version of the previous Hostinger plugin, offering an updated and enhanced experience.
    -The Onboarding assistant and the Learning section previously included in this plugin were moved to the separate plugin Hostinger Easy Onboarding.

    -', '3.0.53', 'Hostinger', '5.5', '8.0', '6.8.3', 'https://downloads.wordpress.org/plugin/hostinger.3.0.53.zip', '2023-11-03 00:00:00+00', '2025-10-09 09:37:00+00', 'https://profiles.wordpress.org/hostinger/', 56, 21, 0, 0, 2000000, 15781370, 'https://hostinger.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/hostinger/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Hostinger Tools", "slug": "hostinger", "tags": {"tools": "tools", "security": "security", "hostinger": "hostinger", "redirects": "redirects", "maintenance": "maintenance"}, "added": "2023-11-03", "icons": {"1x": "https://ps.w.org/hostinger/assets/icon.svg?rev=3097386", "svg": "https://ps.w.org/hostinger/assets/icon.svg?rev=3097386"}, "author": "Hostinger", "rating": 56, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/hostinger/assets/banner-772x250.png?rev=3097370", "high": "https://ps.w.org/hostinger/assets/banner-1544x500.png?rev=3097370"}, "ratings": {"1": 10, "2": 1, "3": 1, "4": 1, "5": 8}, "version": "3.0.53", "homepage": "https://hostinger.com", "requires": "5.5", "sections": {"faq": "\n
    \nHow Do I Install the Plugin\n\n

    \n

    If you set up a WordPress site on Hostinger’s managed WordPress hosting account, this plugin will be automatically installed.

    \n

    Alternatively, you can install the plugin directly from your WordPress dashboard. Just go to Plugins > Add New Plugins, search for “Hostinger Tools” in the plugin repository, click Install, and then Activate.

    \n

    \n
    \nIs There a Cost Associated With Using the Hostinger Tools Plugin?\n\n

    \n

    The Hostinger Tools Plugin is available for free. However, the AI Assistant features for content creation are distributed with a different plugin exclusive to our Business and Cloud hosting plans customers.

    \n

    \n
    \nAre There Any Specific Hosting Requirements for This Plugin?\n\n

    \n

    The Hostinger Tools Plugin is designed to work seamlessly on any hosting platform, ensuring wide compatibility and ease of use. However, the plugin requires these minimum requirements:
    \n* PHP 8.0 or greater
    \n* MySQL 5.6 or greater

    \n

    \n
    \nCan I Access Educational Resources Outside This Plugin?\n\n

    \n

    Yes, the educational resources you can find in this plugin are available on our Hostinger Academy YouTube channel and Hostinger Tutorials website.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Отличный инструмент для управления сайтом

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shyshlov on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hostinger Tools приятно удивил своей простотой и функциональностью. Все нужные настройки — от редиректов и SSL до режима обслуживания — доступны в пару кликов. Интерфейс понятный, всё логично структурировано. Особенно удобно, что плагин хорошо интегрируется с хостингом и не требует лишних ручных действий.

    \n\n\n\n

    Использую его уже несколько месяцев — сайт работает стабильно, обновления проходят без ошибок. Для начинающих владельцев сайтов — просто находка.

    \n\n\n\n

    Итог: отличное решение «из коробки» для быстрого и надёжного запуска сайта.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    شكرا

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ali010ali on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    نشكركم

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Deprecated showing in Query Monitor for this

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wellwisherasad on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hostinger\\Admin\\PluginSettings::__construct(): Implicitly marking parameter $plugin_options as nullable is deprecated, the explicit nullable type must be used instead

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Unnecessary rubbish

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bobf000 on March 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Adds nothing useful to your Wordpress site. Only takes up space and resources. Their \"A.I.\" plugin is more like an \"A\" plugin. There''s no intelligence at all and is censored beyond usable.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Exellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wappsnet on October 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best hosting management plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Zero Stars

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tonyquicktech on October 25, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is totally unnecessary, redundant bloatware. Last year the sites connected to Hostinger just fine without needing a plugin. This is just another way for them to try and take more control of your site, for absolutely no benefit to you. This plugin tries to update much to frequently, which is ridiculous as its still full of bugs, breaks CSS in some cases, and constantly reminds you of its presence - EVERY SINGLE TIME YOU LOGIN TO YOUR SITE. This is against WP guidelines, where plugins are not allowed to over-notify. I like Hostinger hosting, but this plugin is, quite unfortunately, rubbish. You should give an option to install or not when creating a wordpress install. I don''t appreciate having to go through and uninstall multiple bloatware plugins every single time I create a website.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    https://micp.in

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Maa-Ideal-Clinic (0surojit9) on August 31, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My Hostinger Account Not Login Issu Two-Factor Authentication Not Support Please Help Me .
    Please Login My Hostinger Account & Help Me?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Annoying message

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sizar2 on August 3, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This message:

    \n\n\n\n

    \"Hostinger plugin updates

    \n\n\n\n

    The Hostinger plugin has been split into two different plugins:

    \n\n\n\n

    Hostinger Tools offers a toolkit for easier site maintenance.
    Hostinger Easy Onboarding provides guidance and learning resources for beginners to get started with building a site using WordPress.\"

    \n\n\n\n

    appears all the time. Even after I press \"Got it\", it may still show up later.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Messes with other plugins.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hendrikhere on July 13, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    When enabling this, other plugin CSS breaks. An example of this is the really popular ACF plugin.

    \n\n\n\n

    When enabling the plugins from Hostinger (Especially, the AI plugin) a lot of ACF styling breaks.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Unwanted Bloatware

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wordsmith247 on July 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hostinger decided to install multiple plugins without my permission. I do not recommend the plugin and question a hosting company that forces you to opt-out rather than providing a clean Wordpress install and presenting an opt-in proposition letting us decide for ourselves. Every time I spin up a Wordpress site I have to uninstall multiple Hostinger plugins and the artifacts remain long after.

    @Hostinger, Do not bother responding, I will probably never check back here again.

    \n
    \n
    \n", "changelog": "

    1.2.0 (2023-03-22)

    \n
      \n
    • Updated How To videos
    • \n
    • Added Lithuanian language translations
    • \n
    • Updated assets
    • \n
    • Redirect from Hostinger dashboard into plugin
    • \n
    \n

    1.3.0 (2023-04-11)

    \n
      \n
    • Autocomplete onboarding steps
    • \n
    • Redirect Hosting clients by segment
    • \n
    • Hide logo upload step if theme not support
    • \n
    • Updated How To videos
    • \n
    • Updated translations
    • \n
    • Updated onboarding steps
    • \n
    \n

    1.4.0 (2023-04-17)

    \n
      \n
    • Added new “Add product” step
    • \n
    • Adjusted onboarding steps by website type
    • \n
    • Updated logo upload step
    • \n
    • Autocomplete site title step on settings change
    • \n
    \n

    1.4.1 (2023-05-15)

    \n
      \n
    • Fix site health session warning
    • \n
    \n

    1.5.0 (2023-05-23)

    \n
      \n
    • Add onboarding steps autocomplete date
    • \n
    \n

    1.6.0 (2023-06-08)

    \n
      \n
    • Add plugin update feature
    • \n
    \n

    1.6.1 (2023-06-13)

    \n
      \n
    • Fixed unused assets
    • \n
    • Fixed maintenance mode cache
    • \n
    \n

    1.6.2 (2023-06-15)

    \n
      \n
    • Fixed maintenance mode conflicts with other plugins
    • \n
    \n

    1.6.3 (2023-07-11)

    \n
      \n
    • Add AI assistant
    • \n
    \n

    1.6.4 (2023-08-08)

    \n
      \n
    • Add additional AI assistant buttons
    • \n
    \n

    1.6.5 (2023-08-14)

    \n
      \n
    • Add translations
    • \n
    \n

    1.6.6 (2023-08-17)

    \n
      \n
    • Add additional submenu items
    • \n
    \n

    1.6.7 (2023-09-08)

    \n
      \n
    • Bugfixes
    • \n
    • Redirect all users from hPanel
    • \n
    • Text changes
    • \n
    \n

    1.7.0 (2023-09-08)

    \n
      \n
    • Add CSAT survey
    • \n
    \n

    1.7.1 (2023-09-20)

    \n
      \n
    • Add additional request header
    • \n
    \n

    1.7.2 (2023-09-22)

    \n
      \n
    • Hide notices in Hostinger page
    • \n
    \n

    1.8.0 (2023-09-27)

    \n
      \n
    • Additional amplitude events
    • \n
    \n

    1.8.1 (2023-10-03)

    \n
      \n
    • Remove video iframes
    • \n
    \n

    1.8.2 (2023-10-05)

    \n
      \n
    • Adjust CSAT survey
    • \n
    \n

    1.8.3 (2023-10-13)

    \n
      \n
    • Add domain connection step
    • \n
    • Hide preview banner
    • \n
    \n

    1.8.4 (2023-10-20)

    \n
      \n
    • Added regenerate website tab
    • \n
    • Style corrections
    • \n
    \n

    1.8.5 (2023-10-20)

    \n
      \n
    • Text corrections
    • \n
    \n

    1.8.6 (2023-10-23)

    \n
      \n
    • Translations
    • \n
    \n

    1.8.7 (2023-10-30)

    \n
      \n
    • Add WooCommerce onboarding survey
    • \n
    \n

    1.8.8 (2023-11-13)

    \n
      \n
    • Bugfixes
    • \n
    \n

    1.8.9 (2023-11-14)

    \n
      \n
    • Added onboarding survey
    • \n
    • Fix onboarding steps duplicates
    • \n
    \n

    1.9.0 (2023-11-15)

    \n
      \n
    • Fix survey transients
    • \n
    \n

    1.9.1 (2023-11-15)

    \n
      \n
    • Add translations
    • \n
    \n

    1.9.2 (2023-11-19)

    \n
      \n
    • Fixes
    • \n
    \n

    1.9.3 (2023-11-21)

    \n
      \n
    • Fixed RTL survey issues
    • \n
    • Added survey close button
    • \n
    \n

    1.9.4 (2023-11-23)

    \n
      \n
    • Fix survey requests
    • \n
    \n

    1.9.5 (2023-11-27)

    \n
      \n
    • Hide notices in Hostinger page
    • \n
    • Remove surveys
    • \n
    \n

    1.9.6 (2023-12-01)

    \n
      \n
    • Added filter for tabs / tab content
    • \n
    \n

    1.9.7 (2023-12-13)

    \n
      \n
    • Added tests, adjusted assets loading
    • \n
    • Fixed maintenance security issue
    • \n
    \n

    1.9.8 (2023-12-14)

    \n
      \n
    • Version mismatch fix
    • \n
    \n

    1.9.9 (2023-12-18)

    \n
      \n
    • Fixed assets load on subfolder installations
    • \n
    \n

    2.0.0 (2024-01-10)

    \n
      \n
    • Increased minimal WordPress version
    • \n
    \n

    2.0.1 (2024-01-16)

    \n
      \n
    • Added onboarding step for affiliate plugin
    • \n
    \n

    2.0.2 (2024-01-19)

    \n
      \n
    • Updated internal services
    • \n
    \n

    2.0.3 (2024-01-19)

    \n
      \n
    • Fixes
    • \n
    • Added promotional banner
    • \n
    \n

    2.0.4 (2024-02-02)

    \n
      \n
    • Added jump to hPanel
    • \n
    • Redesign tabs section
    • \n
    \n

    2.0.5 (2024-02-06)

    \n
      \n
    • Added surveys
    • \n
    \n

    2.0.6 (2024-02-09)

    \n
      \n
    • Added affiliate surveys
    • \n
    • Internal services improvements
    • \n
    \n

    2.0.7 (2024-02-13)

    \n
      \n
    • Survey adjustments
    • \n
    \n

    2.0.8 (2024-02-14)

    \n
      \n
    • Fixed files loading
    • \n
    \n

    2.0.9 (2024-02-20)

    \n
      \n
    • Astra theme compatibility
    • \n
    • Internal services improvements
    • \n
    \n

    2.1.0 (2024-03-04)

    \n
      \n
    • Lower WordPress version requirement
    • \n
    • Added “Omnisend” plugin upgrade promo message
    • \n
    \n

    2.1.1 (2024-03-08)

    \n
      \n
    • Changed “Omnisend” promo appearance conditions
    • \n
    \n

    2.1.2 (2024-03-13)

    \n
      \n
    • Removed sessions
    • \n
    \n

    2.1.3 (2024-03-14)

    \n
      \n
    • Refactored codebase
    • \n
    \n

    2.1.4 (2024-03-14)

    \n
      \n
    • Removed vendors
    • \n
    \n

    2.1.5 (2024-03-16)

    \n
      \n
    • Fixed Namespace issues
    • \n
    \n

    2.1.6 (2024-03-18)

    \n
      \n
    • CSS fixes
    • \n
    \n

    2.1.7 (2024-03-27)

    \n
      \n
    • Improved internal services
    • \n
    • Added links to hPanel in admin bar
    • \n
    • Fixed hPanel redirect to subdomain
    • \n
    \n

    2.1.8 (2024-03-29)

    \n
      \n
    • Assets compatibility fix
    • \n
    \n

    2.1.9 (2024-04-03)

    \n
      \n
    • CSAT survey improvements
    • \n
    \n

    2.2.0 (2024-04-15)

    \n
      \n
    • Compatibility fixes
    • \n
    \n

    2.2.1 (2024-04-16)

    \n
      \n
    • Fixed loading issues
    • \n
    \n

    2.2.2 (2024-04-17)

    \n
      \n
    • “Omnisend” authentication fix
    • \n
    \n

    2.2.3 (2024-05-08)

    \n
      \n
    • Increased minimum PHP version
    • \n
    \n

    2.2.4 (2024-05-13)

    \n
      \n
    • Update prebuilt websites
    • \n
    \n

    3.0.0 (2024-05-30)

    \n
      \n
    • Renamed plugin to Hostinger Tools
    • \n
    • Added check WordPress and PHP versions
    • \n
    • Added ability to enable/disable maintenance mode and get bypass link
    • \n
    • Added ability to enable/disable XML-RPC
    • \n
    • Added ability to force redirects to HTTPS and WWW URLs
    • \n
    • Moved Onboarding steps and Learning section to separate plugin Hostinger Easy Onboarding
    • \n
    \n

    3.0.1 (2024-06-06)

    \n
      \n
    • Added skeleton loader for UI
    • \n
    • Removed hPanel links from admin bar menu
    • \n
    \n

    3.0.2 (2024-06-19)

    \n
      \n
    • Updated menu package
    • \n
    \n

    3.0.3 (2024-07-02)

    \n
      \n
    • Added tests
    • \n
    \n

    3.0.4 (2024-07-09)

    \n
      \n
    • Vendor autoload fix
    • \n
    \n

    3.0.5 (2024-07-24)

    \n
      \n
    • PHP version card change
    • \n
    • Translations
    • \n
    \n

    3.0.6 (2024-07-30)

    \n
      \n
    • Added CLI commands descriptions
    • \n
    \n

    3.0.8 (2024-08-27)

    \n
      \n
    • Updated recommended PHP version
    • \n
    \n

    3.0.9 (2024-08-04)

    \n
      \n
    • Added conditional check for maintenance class CLI
    • \n
    \n

    3.0.10 (2024-09-11)

    \n
      \n
    • Update packages
    • \n
    \n

    3.0.11 (2024-09-13)

    \n
      \n
    • Fix logo visibility
    • \n
    \n

    3.0.12 (2024-10-01)

    \n
      \n
    • Fix maintenance mode cache issue
    • \n
    \n

    3.0.13 (2024-10-09)

    \n
      \n
    • Fix force www row not being shown when user is not eligible to adjust it
    • \n
    \n

    3.0.14 (2024-10-11)

    \n
      \n
    • Add tutorial link
    • \n
    \n

    3.0.15 (2024-10-18)

    \n
      \n
    • WooCommerce coming soon mode cache flush
    • \n
    \n

    3.0.16 (2024-10-22)

    \n
      \n
    • Fix cache LiteSpeed cleaning
    • \n
    \n

    3.0.17 (2024-10-24)

    \n
      \n
    • Updated plugin URL by locale
    • \n
    \n

    3.0.18 (2024-11-08)

    \n
      \n
    • Remove unused assets
    • \n
    • Remove flush cache duplicates
    • \n
    \n

    3.0.19 (2024-11-13)

    \n
      \n
    • Dismiss plugin split notice after close
    • \n
    \n

    3.0.20 (2024-12-03)

    \n
      \n
    • Updated packages
    • \n
    \n

    3.0.21 (2024-12-09)

    \n
      \n
    • Added recommended PHP version
    • \n
    \n

    3.0.22 (2025-01-08)

    \n
      \n
    • Added preview website link in navbar
    • \n
    \n

    3.0.23 (2025-02-07)

    \n
      \n
    • Added ability to enable or disable Authorize application page
    • \n
    \n

    3.0.24 (2025-02-10)

    \n
      \n
    • Fixed bypass input field visibility
    • \n
    \n

    3.0.25 (2025-02-10)

    \n
      \n
    • Added new translations
    • \n
    \n

    3.0.26 (2025-02-10)

    \n
      \n
    • Fixed settings update
    • \n
    \n

    3.0.27 (2025-02-11)

    \n
      \n
    • Fixed bypass code regeneration
    • \n
    \n

    3.0.28 (2025-02-12)

    \n
      \n
    • Added correct reseller link to PHP update
    • \n
    \n

    3.0.29 (2025-02-21)

    \n
      \n
    • Update packages
    • \n
    \n

    3.0.30 (2025-02-24)

    \n
      \n
    • Enhanced WordPress application security settings
    • \n
    \n

    3.0.31 (2025-02-24)

    \n
      \n
    • Fixed assets load issue
    • \n
    \n

    3.0.32 (2025-03-04)

    \n
      \n
    • Updated compatibility
    • \n
    \n

    3.0.33 (2025-04-04)

    \n
      \n
    • Remove hardcoded references
    • \n
    \n

    3.0.34 (2024-04-10)

    \n
      \n
    • Add preview and site edit buttons
    • \n
    \n

    3.0.35 (2024-04-28)

    \n
      \n
    • Add edit site button support for block themes
    • \n
    \n

    3.0.36 (2024-04-29)

    \n
      \n
    • Style corrections
    • \n
    \n

    3.0.37 (2024-05-12)

    \n
      \n
    • Remove unused assets
    • \n
    • Fixed Jetpack autoloader issue
    • \n
    • Added LLMS.txt generation functionality
    • \n
    • Added few new Spanish locales (es_AR, es_CO, es_MX)
    • \n
    \n

    3.0.38 (2025-06-09)

    \n
      \n
    • Tweaks the UI for PHP and WordPress version under Tools
    • \n
    • Fallback to Site URL when no Blog Title is set in LLMS.txt
    • \n
    • Clear cache on settings change
    • \n
    \n

    3.0.39 (2025-06-12)

    \n
      \n
    • Updated logic to detect 3rd Party LLMs files
    • \n
    • Updated UI and Copy for LLMS section
    • \n
    • Add support for WooCommerce products in LLMS.txt
    • \n
    • Added check for main plugin class to prevent class not found issues
    • \n
    • Update readme.txt tags
    • \n
    \n

    3.0.40 (2025-06-17)

    \n
      \n
    • Added latest translations
    • \n
    • Provide visual feedback to user when changing settings
    • \n
    • Fixed www urls rewrite
    • \n
    \n

    3.0.41 (2025-06-19)

    \n
      \n
    • Update translations for ES, MX and CO
    • \n
    \n

    3.0.42 (2025-07-03)

    \n
      \n
    • Menu translations
    • \n
    \n

    3.0.43 (2025-07-22)

    \n
      \n
    • Add Web2MCP feature
    • \n
    • Fix Settings state on failure
    • \n
    • Bump dependencies version
    • \n
    \n

    3.0.44 (2025-07-23)

    \n
      \n
    • Update translations
    • \n
    \n

    3.0.45 (2025-07-28)

    \n
      \n
    • Update WP helper package
    • \n
    \n

    3.0.46 (2025-08-05)

    \n
      \n
    • Fixed empty lines in llms.txt
    • \n
    \n

    3.0.47 (2025-08-08)

    \n
      \n
    • Add MCP choice
    • \n
    • Updated translations
    • \n
    \n

    3.0.48 (2025-08-21)

    \n
      \n
    • Support for MCP optional entry in llms.txt
    • \n
    • Add Learn More in MCP section
    • \n
    • Generate llms.txt entries in the background
    • \n
    \n

    3.0.49 (2025-09-05)

    \n
      \n
    • Removed warnings
    • \n
    • UI improvements
    • \n
    • Assets optimization
    • \n
    \n

    3.0.50 (2025-09-15)

    \n
      \n
    • Remove plugin split banner
    • \n
    \n

    3.0.51 (2025-09-18)

    \n
      \n
    • Feature: Added Cli command for AI discovery features
    • \n
    \n

    3.0.52 (2025-09-30)

    \n
      \n
    • Fix: Settings route
    • \n
    • Dev: Fix release updater
    • \n
    • Tweak: Bump dependencies
    • \n
    \n

    3.0.53 (2025-10-09)

    \n
      \n
    • Feature: Learn more destination link changed in LLMS section
    • \n
    \n", "description": "

    Hostinger Tools is an all-in-one plugin designed to streamline essential tasks for WordPress site administrators. This plugin offers a range of features to help you manage your site’s information, maintenance mode, security, and redirects effectively.

    \n

    Features:

    \n

    Basic Info

    \n
      \n
    • Displays the current WordPress version with automatic update checks.
    • \n
    • Shows the current PHP version with automatic update checks.
    • \n
    \n

    Maintenance Mode

    \n
      \n
    • Easily enable or disable maintenance mode for your site.
    • \n
    • Provide a URL to bypass maintenance mode for selected users.
    • \n
    \n

    Security

    \n
      \n
    • Enable or disable XML-RPC requests to enhance your site’s security.
    • \n
    • Enable or disable Authorize application page to enhance your site’s security.
    • \n
    \n

    Redirects

    \n
      \n
    • Force all URLs to use HTTPS for secure browsing.
    • \n
    • Force all URLs to use WWW to ensure consistency in site access.
    • \n
    \n

    LLMs.txt Generation

    \n
      \n
    • Automatically generate a structured LLMs.txt file in Markdown format.
    • \n
    • Include website title, description, posts, pages, and products (if WooCommerce is active).
    • \n
    • Keep the file updated when content changes or new content is published.
    • \n
    • Help AI-powered tools better understand and interact with your website content.
    • \n
    \n

    Hostinger Tools is the new version of the previous Hostinger plugin, offering an updated and enhanced experience.
    \nThe Onboarding assistant and the Learning section previously included in this plugin were moved to the separate plugin Hostinger Easy Onboarding.

    \n", "screenshots": "
    1. \"\"
    ", "installation": "

    Minimum Requirements

    \n
      \n
    • PHP 8.0 or greater is recommended
    • \n
    • MySQL 5.6 or greater is recommended
    • \n
    \n

    Automatic installation

    \n

    If you set up a WordPress site on Hostinger’s managed WordPress hosting account, this plugin will be automatically installed.

    \n

    Alternatively, you can use the automatic installation from the dashboard, and WordPress will handle the file transfer – you won’t need to leave your web browser. To do an automatic install of the Hostinger plugin, log in to your WordPress dashboard, navigate to the Plugins menu, and click Add New.

    \n

    In the search field, type Hostinger, then click Search Plugins. Once you find us, you can view details about it, such as the point release, rating, and description. Most importantly, of course, you can install it by clicking Install Now, and WordPress will take it from there.

    \n

    Manual installation

    \n

    The manual installation method requires downloading the Hostinger plugin and uploading it to your web server via your favorite FTP application. The WordPress codex contains instructions on how to do this here.

    \n

    Updating

    \n

    Automatic updates should work smoothly, but we still recommend you back up your site.

    \n"}, "versions": {"1.8.0": "https://downloads.wordpress.org/plugin/hostinger.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/hostinger.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/hostinger.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/hostinger.1.8.3.zip", "1.9.1": "https://downloads.wordpress.org/plugin/hostinger.1.9.1.zip", "1.9.4": "https://downloads.wordpress.org/plugin/hostinger.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/hostinger.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/hostinger.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/hostinger.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/hostinger.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/hostinger.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/plugin/hostinger.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/hostinger.2.0.1.zip", "2.0.4": "https://downloads.wordpress.org/plugin/hostinger.2.0.4.zip", "2.0.6": "https://downloads.wordpress.org/plugin/hostinger.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/hostinger.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/hostinger.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/hostinger.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/hostinger.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/hostinger.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/hostinger.2.1.2.zip", "2.1.4": "https://downloads.wordpress.org/plugin/hostinger.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/hostinger.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/hostinger.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/hostinger.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/hostinger.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/plugin/hostinger.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/plugin/hostinger.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/hostinger.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/hostinger.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/hostinger.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/hostinger.2.2.4.zip", "3.0.0": "https://downloads.wordpress.org/plugin/hostinger.3.0.0.zip", "3.0.2": "https://downloads.wordpress.org/plugin/hostinger.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/hostinger.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/hostinger.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/hostinger.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/hostinger.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/hostinger.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/hostinger.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/hostinger.3.0.9.zip", "trunk": "https://downloads.wordpress.org/plugin/hostinger.zip", "3.0.10": "https://downloads.wordpress.org/plugin/hostinger.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/hostinger.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/plugin/hostinger.3.0.12.zip", "3.0.13": "https://downloads.wordpress.org/plugin/hostinger.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/plugin/hostinger.3.0.14.zip", "3.0.15": "https://downloads.wordpress.org/plugin/hostinger.3.0.15.zip", "3.0.16": "https://downloads.wordpress.org/plugin/hostinger.3.0.16.zip", "3.0.17": "https://downloads.wordpress.org/plugin/hostinger.3.0.17.zip", "3.0.18": "https://downloads.wordpress.org/plugin/hostinger.3.0.18.zip", "3.0.19": "https://downloads.wordpress.org/plugin/hostinger.3.0.19.zip", "3.0.20": "https://downloads.wordpress.org/plugin/hostinger.3.0.20.zip", "3.0.21": "https://downloads.wordpress.org/plugin/hostinger.3.0.21.zip", "3.0.22": "https://downloads.wordpress.org/plugin/hostinger.3.0.22.zip", "3.0.23": "https://downloads.wordpress.org/plugin/hostinger.3.0.23.zip", "3.0.24": "https://downloads.wordpress.org/plugin/hostinger.3.0.24.zip", "3.0.25": "https://downloads.wordpress.org/plugin/hostinger.3.0.25.zip", "3.0.26": "https://downloads.wordpress.org/plugin/hostinger.3.0.26.zip", "3.0.27": "https://downloads.wordpress.org/plugin/hostinger.3.0.27.zip", "3.0.28": "https://downloads.wordpress.org/plugin/hostinger.3.0.28.zip", "3.0.29": "https://downloads.wordpress.org/plugin/hostinger.3.0.29.zip", "3.0.30": "https://downloads.wordpress.org/plugin/hostinger.3.0.30.zip", "3.0.31": "https://downloads.wordpress.org/plugin/hostinger.3.0.31.zip", "3.0.32": "https://downloads.wordpress.org/plugin/hostinger.3.0.32.zip", "3.0.33": "https://downloads.wordpress.org/plugin/hostinger.3.0.33.zip", "3.0.34": "https://downloads.wordpress.org/plugin/hostinger.3.0.34.zip", "3.0.35": "https://downloads.wordpress.org/plugin/hostinger.3.0.35.zip", "3.0.36": "https://downloads.wordpress.org/plugin/hostinger.3.0.36.zip", "3.0.37": "https://downloads.wordpress.org/plugin/hostinger.3.0.37.zip", "3.0.38": "https://downloads.wordpress.org/plugin/hostinger.3.0.38.zip", "3.0.39": "https://downloads.wordpress.org/plugin/hostinger.3.0.39.zip", "3.0.40": "https://downloads.wordpress.org/plugin/hostinger.3.0.40.zip", "3.0.41": "https://downloads.wordpress.org/plugin/hostinger.3.0.41.zip", "3.0.42": "https://downloads.wordpress.org/plugin/hostinger.3.0.42.zip", "3.0.43": "https://downloads.wordpress.org/plugin/hostinger.3.0.43.zip", "3.0.44": "https://downloads.wordpress.org/plugin/hostinger.3.0.44.zip", "3.0.45": "https://downloads.wordpress.org/plugin/hostinger.3.0.45.zip", "3.0.46": "https://downloads.wordpress.org/plugin/hostinger.3.0.46.zip", "3.0.47": "https://downloads.wordpress.org/plugin/hostinger.3.0.47.zip", "3.0.48": "https://downloads.wordpress.org/plugin/hostinger.3.0.48.zip", "3.0.49": "https://downloads.wordpress.org/plugin/hostinger.3.0.49.zip", "3.0.50": "https://downloads.wordpress.org/plugin/hostinger.3.0.50.zip", "3.0.51": "https://downloads.wordpress.org/plugin/hostinger.3.0.51.zip", "3.0.52": "https://downloads.wordpress.org/plugin/hostinger.3.0.52.zip", "3.0.53": "https://downloads.wordpress.org/plugin/hostinger.3.0.53.zip"}, "downloaded": 15781370, "description": "

    Hostinger Tools is an all-in-one plugin designed to streamline essential tasks for WordPress site administrators. This plugin offers a range of features to help you manage your site’s information, maintenance mode, security, and redirects effectively.

    \n

    Features:

    \n

    Basic Info

    \n
      \n
    • Displays the current WordPress version with automatic update checks.
    • \n
    • Shows the current PHP version with automatic update checks.
    • \n
    \n

    Maintenance Mode

    \n
      \n
    • Easily enable or disable maintenance mode for your site.
    • \n
    • Provide a URL to bypass maintenance mode for selected users.
    • \n
    \n

    Security

    \n
      \n
    • Enable or disable XML-RPC requests to enhance your site’s security.
    • \n
    • Enable or disable Authorize application page to enhance your site’s security.
    • \n
    \n

    Redirects

    \n
      \n
    • Force all URLs to use HTTPS for secure browsing.
    • \n
    • Force all URLs to use WWW to ensure consistency in site access.
    • \n
    \n

    LLMs.txt Generation

    \n
      \n
    • Automatically generate a structured LLMs.txt file in Markdown format.
    • \n
    • Include website title, description, posts, pages, and products (if WooCommerce is active).
    • \n
    • Keep the file updated when content changes or new content is published.
    • \n
    • Help AI-powered tools better understand and interact with your website content.
    • \n
    \n

    Hostinger Tools is the new version of the previous Hostinger plugin, offering an updated and enhanced experience.
    \nThe Onboarding assistant and the Learning section previously included in this plugin were moved to the separate plugin Hostinger Easy Onboarding.

    \n", "donate_link": "", "num_ratings": 21, "screenshots": {"1": {"src": "https://ps.w.org/hostinger/assets/screenshot-1.png?rev=3097370", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/hostinger/", "contributors": {"hostinger": {"avatar": "https://secure.gravatar.com/avatar/aaa8af14a0e10f0d84ad835b1498a397c376c1f909fb6cbe32208c1c68b9233d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hostinger/", "display_name": "Hostinger"}}, "last_updated": "2025-10-09 9:37am GMT", "preview_link": "", "requires_php": "8.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/hostinger.3.0.53.zip", "author_profile": "https://profiles.wordpress.org/hostinger/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f639-710b-9f9c-2e5c119bfeb2", "name": "Hostinger Tools", "slug": "hostinger", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1760002620, "version": "3.0.53"}, "support_threads": 0, "requires_plugins": [], "short_description": "Hostinger Tools is an all-in-one plugin designed to streamline essential tasks for WordPress site administrators. This plugin offers a range of featur …", "author_block_count": 0, "author_block_rating": 56, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-6560-71a2-a8a7-20856ff708fd', 'image-optimization', 'Image Optimizer – Optimize Images and Convert to WebP or AVIF', 'Automatically resize, optimize, and convert images to WebP and AVIF. Compress images in bulk or on upload to boost your WordPress site performance.', '

    -

    Image Optimizer is an easy-to-use WordPress plugin that reduces image size through various compression and resizing techniques – all of which preserve the highest possible image quality. Image Optimizer supports many popular formats, including JPEG, PNG, WebP, AVIF, and GIF.

    -

    REDUCED FILE SIZES FOR BOOSTED PERFORMANCE

    -

    Image Optimizer ensures faster loading times, enhanced user experience, and overall boosted website performance by reducing the size of your website’s images, resulting in improved Core Web Vitals and search engine rankings. With the Image Optimizer’s exceptional capabilities and unique algorithms, you can fine tune images and reduce their file sizes while retaining quality with lossless or lossy compression.

    -

    FEATURES

    -
      -
    • Image formats supported include JPEG, PNG, WebP, AVIF and GIF.
    • -
    • Works in the background: The only plugin in the category that optimizes your images in the background, without you having to stay on the page during optimization.
    • -
    • Resize large images: The user can set a maximum pixel width, after which images will automatically be resized. (default value set to 1920px)
    • -
    • 2 compression levels: Lossless – highest quality with minimal compression; Lossy – maximum compression with somewhat reduced quality.
    • -
    • Optimize on upload: Automatically optimizes images when you upload them.
    • -
    • Bulk or individual optimization: Flexible image optimization options, whether it’s on-demand scaling and compression, or bulk optimization for your entire image library.
    • -
    • EXIF Metadata: Select whether to clear image metadata to reduce size even further without impacting image quality.
    • -
    • Backup original images: Ability to delete backups permanently to save space. (We recommend backing up your website beforehand.)
    • -
    • Restore original images (all sizes) for selected media files if needed.
    • -
    • Convert to WebP and AVIF: Get efficient and faster-loading formats with WebP and AVIF for even better web performance.
    • -
    • Image thumbnails: Resize all image sizes by default. Allow the user to choose specific image sizes based on WordPress-registered thumbnail sizes.
    • -
    -

    BULK OR SINGLE IMAGE OPTIMIZATION

    -

    Image Optimizer by Elementor lets you optimize all images in your library either one at a time, or in a batch according to your preferences and settings. Easily configure the plugin to scale or compress your images on-demand, or automatically have them triggered as they are being uploaded. Or, if you have a large number of images already uploaded, the bulk optimization feature allows you to resize and/or compress your entire library of existing images in just a few clicks.

    -

    2 COMPRESSION LEVELS

    -

    With Image Optimizer’s advanced algorithms, you can compress images and reduce their file size at the level that makes the most sense for you. We offer 2 types of compression where images will be processed, giving you the perfect balance of compression and quality.

    -

    Lossless Compression: Lossless compression reduces image file sizes without sacrificing or diminishing the quality of your images. This type of compression reduces file sizes by removing unused or unnecessary data so that no image details are lost along the way. Hence, you are able to reduce the file size and still maintain the quality of your image.

    -

    Lossy Compression: Lossy compression performs maximum compression resulting in lightweight images and smaller file sizes. It reduces image size by removing image data that is generally invisible to the human eye and minimizes any compromise in image quality.

    -

    Convert to WebP and AVIF: Convert images to the slimmer WebP or AVIF formats for even better optimization with a 25-30% savings over JPEG and PNG. Most browsers support WebP, however if they don’t, you can have fallback versions of the image available in the same format as the original image.

    -

    By tailoring compression to the level you need, your visitors will enjoy faster load times, improved responsiveness, and a seamless browsing experience. Our approach also enables your website to rank higher in search results. Since a search engine’s ranking is heavily influenced by speed, user experience, and Core Web Vitals, Image Optimizer by Elementor is an invaluable tool for any website, especially one that’s abundant with images.

    -

    Get Started Today

    -

    For more information about Image Optimizer, visit our official website or Try It Now.
    -If you have any questions or need support, feel free to contact us or visit our help center.

    -

    This plugin requires a connection to an active Elementor account in order to identify the user and provide the user with the purchased service. This connection is triggered manually by the user via the plugin’s settings panel.
    -This plugin uses a 3rd party service operated by Elementor, which accepts a standard image in JPG, PNG, GIF or WEBP format and returns a web optimized image based on the selected settings. This flow is triggered by the user or automatically (based on the selected plugin settings) on compatible image upload or by manually initiating optimize process.

    -

    Related Plugins

    -

    Site Mailer: Effortlessly manage transactional emails with Site Mailer. High deliverability, logs and statistics, and no SMTP plugins needed.

    -', '1.6.8', 'Elementor', '6.2', '7.4', '6.7.4', 'https://downloads.wordpress.org/plugin/image-optimization.1.6.8.zip', '2024-01-08 00:00:00+00', '2025-09-11 08:55:00+00', 'https://profiles.wordpress.org/elemntor/', 28, 61, 1, 0, 1000000, 10123513, 'https://go.elementor.com/wp-repo-description-tab-io-product-page/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/image-optimization/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Image Optimizer – Optimize Images and Convert to WebP or AVIF", "slug": "image-optimization", "tags": {"performance": "performance", "convert-avif": "convert AVIF", "convert-webp": "convert webp", "image-compression": "image compression", "image-optimization": "image optimization"}, "added": "2024-01-08", "icons": {"1x": "https://ps.w.org/image-optimization/assets/icon-256x256.gif?rev=3308421", "2x": "https://ps.w.org/image-optimization/assets/icon-256x256.gif?rev=3308421"}, "author": "Elementor", "rating": 28, "status": "open", "tested": "6.7.4", "banners": {"low": "https://ps.w.org/image-optimization/assets/banner-772x250.png?rev=3018769", "high": "https://ps.w.org/image-optimization/assets/banner-1544x500.png?rev=3018769"}, "ratings": {"1": 50, "2": 4, "3": 2, "4": 1, "5": 4}, "version": "1.6.8", "homepage": "https://go.elementor.com/wp-repo-description-tab-io-product-page/", "requires": "6.2", "sections": {"faq": "\n
    \nCan I use Image Optimizer for any of my WordPress websites?\n\n

    \n

    Absolutely. Image Optimizer by Elementor is a stand-alone WordPress plugin that can be used to optimize images for any or all of your WordPress websites.

    \n

    \n
    \nWhy do I need to optimize images on my website?\n\n

    \n

    Image optimization can significantly improve your website’s loading time, which is crucial for user experience and SEO. It reduces the size of your images without compromising their quality, leading to faster page load times and better performance scores.

    \n

    \n
    \nWhy should I consider Image Optimizer by Elementor?\n\n

    \n

    This plugin is a modern approach that is designed to do all the “heavy lifting” of converting and compressing images on a dedicated server, so your own server won’t suffer from any downtime or the need to keep the tab open. It offers on-the-fly optimization, WebP and AVIF conversion, and other features tailored to WordPress users’ needs.

    \n

    \n
    \nWill the original version of my images be lost after compression?\n\n

    \n

    No, The Image Optimizer plugin will save both the original and the compressed versions of your images. You can always restore the original image if needed.

    \n

    \n
    \nWhy should I consider converting my images to WebP or AVIF?\n\n

    \n

    WebP and AVIF are modern image formats that provide superior lossless and lossy compression. They can significantly reduce the file size of images, leading to faster website load times. Most web browsers today support these format, but if they don’t – the original backup will be used.

    \n

    \n
    \nCan I choose which images to compress?\n\n

    \n

    Absolutely! You can either compress images in bulk, compress specific image files individually, or automatically compress upon image upload.

    \n

    \n
    \nIs the EXIF metadata of images removed?\n\n

    \n

    EXIF data can be removed if you choose so in the settings page. Best practice for better image optimization would be to remove EXIF metadata.

    \n

    \n
    \nIs it possible to re-optimize images?\n\n

    \n

    Yes. By changing the requested level of optimization in the settings page, you can re-optimize all images at once. In addition, at any point in time, you can reoptimize any of your images individually; whether after restoring the original, making changes to the optimization settings, or for any other reason.

    \n

    \n
    \nDo you offer support?\n\n

    \n

    Yes, the Elementor team offers full support for image optimization questions. You can contact us via https://elementor.com/contact/

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Too greedy plugin, avoid it.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy coderalamin on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It suggests to install in free version of elementor but later when you wanna do something it asks to connect with elementor pro.

    What the hell is this plan, why WP even approve this? Even you should 1% free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Made my media library unavailable?!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jeffsullivan on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used it in free trial mode, it optimized a handful of never-used images deep in my thousands of blog posts instead of letting me select front page ones. My home page is slow, and multiple images say \"error\", with advice to upgrade the plugin. It sure looks like extortion!

    Now I can''t upload new image files. I can''t get my media library to display.

    Has this plugin completely ruined my site?

    Why is the plugin not acknowledging the issues and displaying information on how to repair the damage and regain full use of our sites?

    WordPress needs to remove/ban this plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No Refund Policy for Not Working Plugin is Absurd

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy havocinthekitchen on September 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin only gave me frustration and a headache. The trial (200 credits) was conducted smoothly and without error. I was satisfied with the result (the quality of the compressed images and the amount of saved memory were good) and proceeded to purchase 1,000,000 credits, as I had a lot of images that needed to be optimized.

    \n\n\n\n

    However, after the purchase, the plugin started to behave. The bulk option did not work, i.e., it showed \"pending\" for hours without any result. Cancelling the process and deinstalling the plugin did not work - the number of optimized images remained the same as it had hours ago. The only way to navigate my large image database was to go through the media library and manually initiate the process, which is a long and frustrating process (and, well, does not justify the significant investment).

    \n\n\n\n

    The worst part is getting a refund, which is impossible according to their policy. Going through tickets / AI assistant is frustrating, as they show an error \"you cannot get cancellation and refund for this plan \". No refund policy is ludicrous - for the product I invested a lot of money on and cannot use?

    \n\n\n\n

    I have been waiting for a support response for a few days (I have a feeling I will be ghosted), and if there''s no positive result in a few more days, I will open a dispute due to product dissatisfaction to try to cancel the transaction through my bank.

    \n\n\n\n

    Once again, and to be fair, I think it''s a good plugin with some great results overall. However, it may not be effective if you have a large image database. But the company''s attitude / policy is something I would avoid dealing with.

    \n\n\n\n

    Update: Since the review, a customer representative has reached out, which is a positive step in itself. However, the response remains unchanged: no refund is offered after the trial, as the client had the opportunity to test the plugin before making a purchase. What does consumer protection for unsatisfactory services think about this? Additionally, the latest ticket containing a full description of the problem disappeared from their system, and, unlike other companies, the company did not send any email confirmation. How convenient.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Mas o menos

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Luis Eduardo Lopez Pacheco (mexiweb) on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    No me queda claro si los créditos se rellenan mensuales o anuales?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No Way

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy chook on September 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin comes across as overly aggressive in pushing users toward premium features, quickly depleting the available quota. Over time, I’ve observed a shift in Elementor’s business model, moving away from delivering value and focusing more on maximizing revenue. This change in approach has made me hesitant to recommend their products.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wordpress admin crash when this plugin is activated

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jedymaster on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hi

    I''ve been using this plugin for a year now. Lately, we have performances issues and many times, the Wordpress admin crash (won''t display) when it is activated. I tracked the problem to «Image Optimizer»

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    when asked to optimise

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy teejayukulele on September 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It takes me to a new page...and nothing happens. Why not just optimise from the pic?

    \n\n\n\n

    I have purchased the version that allows 20000 pices to be optimised. I was sent an email asking me to log on to create a ticket, but I can''t do this...either

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    messy app

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cluepac on August 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Do we have to constantly be pestered to rate and review EVERY TIME I''m in my media files? Closing the prompt makes it go away temporarily, it always comes back. Why does EVERY app and plug in need their version of Clippy up in our faces. I''m sorry I spent money on a subscription.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Horrible

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy baselaa on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Breaks images on the site optimizing

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Expensive plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alexanderviteria on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    He pay A LOT for Elementor PRO

    \n
    \n
    \n", "changelog": "

    1.6.8 2025-09-10

    \n

    New: Reviews & CSAT flow to gather user feedback
    \nNew: Added 80% usage reached notification
    \nTweak: Big galleries optimization for faster bulk image handling
    \nFix: Resolved image details issue appearing on some sites

    \n

    1.6.7 2025-05-27

    \n

    New: Added a Walk through video
    \nTweak: Added Bulk optimize shortcut from media library
    \nTweak: Harden connect security
    \nFix: Delayed translation loading

    \n

    1.6.6 – 2025-04-10

    \n

    Tweak: Added retry mechanism to improve optimization process
    \nTweak: Stop all operations before deactivation to avoid unexpected issues
    \nTweak: Improve the file size optimization indication for all media files
    \nTweak: Added What’s new modal for new features

    \n

    1.6.5 – 2025-02-03

    \n
      \n
    • Fix: Moved Connect Modal to Image Optimizer settings pages
    • \n
    \n

    1.6.4 – 2025-02-03

    \n
      \n
    • Tweak: Connect flow improvments
    • \n
    • Fix: Cancel Bulk optimisation button not working
    • \n
    • Fix: Connect refresh token stuck in edge cases
    • \n
    \n

    1.6.3 – 2024-12-19

    \n
      \n
    • Fix: Blank settings panel on edge cases
    • \n
    \n

    1.6.2 – 2024-12-17

    \n
      \n
    • New: Added Renewal notice for expired plans
    • \n
    • New: Added Upgrade notice for users with trial plan
    • \n
    \n

    1.6.1 – 2024-11-28

    \n
      \n
    • Fix: RTL issue in certain scenarios
    • \n
    \n

    1.6.0 – 2024-11-19

    \n
      \n
    • New: Added support for images up to 25Mb for eligible plans
    • \n
    • Tweak: Avoid creating past due actions
    • \n
    \n

    1.5.4 – 2024-10-01

    \n
      \n
    • New: Added a notice to help users connect from dashboard
    • \n
    • Fix: Undefined property notice
    • \n
    • Fix: Improved support for caching plugins
    • \n
    \n

    1.5.3 – 2024-09-24

    \n
      \n
    • New: Added an option to reset connect when invalid
    • \n
    • Tweak: Improved AVIF display support
    • \n
    • Fix: Invalid char in Plugin name header
    • \n
    \n

    1.5.2 – 2024-08-21

    \n
      \n
    • New: Implemented a solution for site URL update
    • \n
    • Tweak: Added an fallback for AVIF dimensions calculation when coming from 3rd party solution
    • \n
    • Tweak: Added asynchronous size calculation for large image galleries
    • \n
    • Tweak: Updated plugin CTAs on the plugins page
    • \n
    • Fix: File extension issues
    • \n
    • Fix: Optimization button stuck on edge cases
    • \n
    • Fix: Stats calculation for the total/optimized count on edge cases
    • \n
    \n

    1.5.1 – 2024-07-29

    \n
      \n
    • Fix: Optimized on upload not working in edge cases
    • \n
    \n

    1.5.0 – 2024-07-29

    \n
      \n
    • New: Option to convert images to AVIF
    • \n
    • Fix: Overall Saving display
    • \n
    • Fix: Bulk optimization stats calculation for big galleries
    • \n
    \n

    1.4.1 – 2024-07-08

    \n
      \n
    • Fix: API error message displayed when trying to reconnect
    • \n
    \n

    1.4.0 – 2024-06-26

    \n
      \n
    • New: Implement to “One Step” connect & activate
    • \n
    • Tweak: New error message for JPEG/Lossless not converted to WebP
    • \n
    • Tweak: Description string of convert to webP
    • \n
    • Fix: Image not resizing when height and width are equal
    • \n
    • Fix: Pointer is displayed for non-admin users
    • \n
    • Fix: Overall savings for optimized images is not correct
    • \n
    \n

    1.3.0 – 2024-03-05

    \n
      \n
    • Tweak: Updated reoptimization option when changing settings
    • \n
    • Tweak: Added RTL adjustments
    • \n
    • Fix: Optimization button status not updating
    • \n
    • Fix: Error while deactivating or switching Elementor account
    • \n
    \n

    1.2.1 – 2024-02-28

    \n
      \n
    • Fix: Image optimization stats not loading
    • \n
    • Tweak: Added notice regarding extended bulk optimization not affecting user’s website
    • \n
    \n

    1.2.0 – 2024-02-19

    \n
      \n
    • Tweak: Reduced status checks for better performance
    • \n
    • Tweak: Improved Elementor support by removing cached thumbnails
    • \n
    • Tweak: Added DB version check during activation to prevent requirement conflicts
    • \n
    • Fix: Optimization failed with numerous errors
    • \n
    • Fix: Bulk Optimization stopped with an Invalid WordPress image meta error
    • \n
    • Fix: Avoid optimizing too large image files as part of bulk optimization
    • \n
    • Fix: Added RTL support for plugin settings page
    • \n
    \n

    1.1.0 – 2024-02-06

    \n
      \n
    • Tweak: Design for quota reached in top bar
    • \n
    • Tweak: Refresh bulk token if the current one is expired
    • \n
    • Tweak: Rename all plugin assets, namespace and text-domain to image-optimization
    • \n
    • Tweak: Replace hardcoded references in posts content when updating image type
    • \n
    • Tweak: Added file checksum validation before updating an image
    • \n
    • Tweak: Avoid overriding existing images with identical file names
    • \n
    • Fix: Columns are not distributed properly on bulk optimization screen
    • \n
    • Fix: Incorrect behavior when trying to optimize without enough credits
    • \n
    • Fix: File is missing Error incorrectly shown
    • \n
    • Fix: Clear local data on disconnect
    • \n
    • Fix: Optimization error with broken image
    • \n
    \n

    1.0.2 – 2024-01-16

    \n
      \n
    • Tweak: Added tooltip to explain compression level in settings
    • \n
    • Tweak: Added failure notice when trying to activate the plugin without meeting requirements
    • \n
    • Fix: Usage progress bar filling incorrectly
    • \n
    \n

    1.0.1 – 2024-01-10

    \n
      \n
    • Tweak: Quota reached user notification messaging
    • \n
    • Tweak: Add Bulk Optimize success message
    • \n
    • Tweak: Add progress percentage number below the bulk optimization progress bar
    • \n
    • Fix: Top bar “Try again” option with error doesn’t work
    • \n
    \n

    1.0.0 – 2024-01-08

    \n
      \n
    • Initial release
    • \n
    \n", "description": "

    \n

    Image Optimizer is an easy-to-use WordPress plugin that reduces image size through various compression and resizing techniques – all of which preserve the highest possible image quality. Image Optimizer supports many popular formats, including JPEG, PNG, WebP, AVIF, and GIF.

    \n

    REDUCED FILE SIZES FOR BOOSTED PERFORMANCE

    \n

    Image Optimizer ensures faster loading times, enhanced user experience, and overall boosted website performance by reducing the size of your website’s images, resulting in improved Core Web Vitals and search engine rankings. With the Image Optimizer’s exceptional capabilities and unique algorithms, you can fine tune images and reduce their file sizes while retaining quality with lossless or lossy compression.

    \n

    FEATURES

    \n
      \n
    • Image formats supported include JPEG, PNG, WebP, AVIF and GIF.
    • \n
    • Works in the background: The only plugin in the category that optimizes your images in the background, without you having to stay on the page during optimization.
    • \n
    • Resize large images: The user can set a maximum pixel width, after which images will automatically be resized. (default value set to 1920px)
    • \n
    • 2 compression levels: Lossless – highest quality with minimal compression; Lossy – maximum compression with somewhat reduced quality.
    • \n
    • Optimize on upload: Automatically optimizes images when you upload them.
    • \n
    • Bulk or individual optimization: Flexible image optimization options, whether it’s on-demand scaling and compression, or bulk optimization for your entire image library.
    • \n
    • EXIF Metadata: Select whether to clear image metadata to reduce size even further without impacting image quality.
    • \n
    • Backup original images: Ability to delete backups permanently to save space. (We recommend backing up your website beforehand.)
    • \n
    • Restore original images (all sizes) for selected media files if needed.
    • \n
    • Convert to WebP and AVIF: Get efficient and faster-loading formats with WebP and AVIF for even better web performance.
    • \n
    • Image thumbnails: Resize all image sizes by default. Allow the user to choose specific image sizes based on WordPress-registered thumbnail sizes.
    • \n
    \n

    BULK OR SINGLE IMAGE OPTIMIZATION

    \n

    Image Optimizer by Elementor lets you optimize all images in your library either one at a time, or in a batch according to your preferences and settings. Easily configure the plugin to scale or compress your images on-demand, or automatically have them triggered as they are being uploaded. Or, if you have a large number of images already uploaded, the bulk optimization feature allows you to resize and/or compress your entire library of existing images in just a few clicks.

    \n

    2 COMPRESSION LEVELS

    \n

    With Image Optimizer’s advanced algorithms, you can compress images and reduce their file size at the level that makes the most sense for you. We offer 2 types of compression where images will be processed, giving you the perfect balance of compression and quality.

    \n

    Lossless Compression: Lossless compression reduces image file sizes without sacrificing or diminishing the quality of your images. This type of compression reduces file sizes by removing unused or unnecessary data so that no image details are lost along the way. Hence, you are able to reduce the file size and still maintain the quality of your image.

    \n

    Lossy Compression: Lossy compression performs maximum compression resulting in lightweight images and smaller file sizes. It reduces image size by removing image data that is generally invisible to the human eye and minimizes any compromise in image quality.

    \n

    Convert to WebP and AVIF: Convert images to the slimmer WebP or AVIF formats for even better optimization with a 25-30% savings over JPEG and PNG. Most browsers support WebP, however if they don’t, you can have fallback versions of the image available in the same format as the original image.

    \n

    By tailoring compression to the level you need, your visitors will enjoy faster load times, improved responsiveness, and a seamless browsing experience. Our approach also enables your website to rank higher in search results. Since a search engine’s ranking is heavily influenced by speed, user experience, and Core Web Vitals, Image Optimizer by Elementor is an invaluable tool for any website, especially one that’s abundant with images.

    \n

    Get Started Today

    \n

    For more information about Image Optimizer, visit our official website or Try It Now.
    \nIf you have any questions or need support, feel free to contact us or visit our help center.

    \n

    This plugin requires a connection to an active Elementor account in order to identify the user and provide the user with the purchased service. This connection is triggered manually by the user via the plugin’s settings panel.
    \nThis plugin uses a 3rd party service operated by Elementor, which accepts a standard image in JPG, PNG, GIF or WEBP format and returns a web optimized image based on the selected settings. This flow is triggered by the user or automatically (based on the selected plugin settings) on compatible image upload or by manually initiating optimize process.

    \n

    Related Plugins

    \n

    Site Mailer: Effortlessly manage transactional emails with Site Mailer. High deliverability, logs and statistics, and no SMTP plugins needed.

    \n", "screenshots": "
    1. \"Image

      Image Optimizer - Settings Page

    2. \"Image

      Image Optimizer - Bulk Optimization Page

    3. \"Image

      Image Optimizer - Bulk Actions and Individual Actions in the Media Library

    4. \"Image

      Image Optimizer - Image Optimization in the Media Library

    5. \"Image

      Image Optimizer - Image Optimization in the Media Uploader

    ", "installation": "

    Get started with a few easy steps

    \n
      \n
    1. Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the wp-content/plugins/ directory of your WordPress installation.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    5. Go to the Image Optimizer tab within the Media menu.
    6. \n
    7. Press the ‘Connect’ button and follow the instructions.
    8. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/image-optimization.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/image-optimization.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/image-optimization.1.0.2.zip", "1.1.0": "https://downloads.wordpress.org/plugin/image-optimization.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/image-optimization.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/image-optimization.1.2.1.zip", "1.3.0": "https://downloads.wordpress.org/plugin/image-optimization.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/plugin/image-optimization.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/image-optimization.1.4.1.zip", "1.5.0": "https://downloads.wordpress.org/plugin/image-optimization.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/image-optimization.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/image-optimization.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/image-optimization.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/image-optimization.1.5.4.zip", "1.6.0": "https://downloads.wordpress.org/plugin/image-optimization.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/image-optimization.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/image-optimization.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/image-optimization.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/image-optimization.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/image-optimization.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/image-optimization.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/image-optimization.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/image-optimization.1.6.8.zip", "trunk": "https://downloads.wordpress.org/plugin/image-optimization.zip"}, "downloaded": 10123513, "description": "

    \n

    Image Optimizer is an easy-to-use WordPress plugin that reduces image size through various compression and resizing techniques – all of which preserve the highest possible image quality. Image Optimizer supports many popular formats, including JPEG, PNG, WebP, AVIF, and GIF.

    \n

    REDUCED FILE SIZES FOR BOOSTED PERFORMANCE

    \n

    Image Optimizer ensures faster loading times, enhanced user experience, and overall boosted website performance by reducing the size of your website’s images, resulting in improved Core Web Vitals and search engine rankings. With the Image Optimizer’s exceptional capabilities and unique algorithms, you can fine tune images and reduce their file sizes while retaining quality with lossless or lossy compression.

    \n

    FEATURES

    \n
      \n
    • Image formats supported include JPEG, PNG, WebP, AVIF and GIF.
    • \n
    • Works in the background: The only plugin in the category that optimizes your images in the background, without you having to stay on the page during optimization.
    • \n
    • Resize large images: The user can set a maximum pixel width, after which images will automatically be resized. (default value set to 1920px)
    • \n
    • 2 compression levels: Lossless – highest quality with minimal compression; Lossy – maximum compression with somewhat reduced quality.
    • \n
    • Optimize on upload: Automatically optimizes images when you upload them.
    • \n
    • Bulk or individual optimization: Flexible image optimization options, whether it’s on-demand scaling and compression, or bulk optimization for your entire image library.
    • \n
    • EXIF Metadata: Select whether to clear image metadata to reduce size even further without impacting image quality.
    • \n
    • Backup original images: Ability to delete backups permanently to save space. (We recommend backing up your website beforehand.)
    • \n
    • Restore original images (all sizes) for selected media files if needed.
    • \n
    • Convert to WebP and AVIF: Get efficient and faster-loading formats with WebP and AVIF for even better web performance.
    • \n
    • Image thumbnails: Resize all image sizes by default. Allow the user to choose specific image sizes based on WordPress-registered thumbnail sizes.
    • \n
    \n

    BULK OR SINGLE IMAGE OPTIMIZATION

    \n

    Image Optimizer by Elementor lets you optimize all images in your library either one at a time, or in a batch according to your preferences and settings. Easily configure the plugin to scale or compress your images on-demand, or automatically have them triggered as they are being uploaded. Or, if you have a large number of images already uploaded, the bulk optimization feature allows you to resize and/or compress your entire library of existing images in just a few clicks.

    \n

    2 COMPRESSION LEVELS

    \n

    With Image Optimizer’s advanced algorithms, you can compress images and reduce their file size at the level that makes the most sense for you. We offer 2 types of compression where images will be processed, giving you the perfect balance of compression and quality.

    \n

    Lossless Compression: Lossless compression reduces image file sizes without sacrificing or diminishing the quality of your images. This type of compression reduces file sizes by removing unused or unnecessary data so that no image details are lost along the way. Hence, you are able to reduce the file size and still maintain the quality of your image.

    \n

    Lossy Compression: Lossy compression performs maximum compression resulting in lightweight images and smaller file sizes. It reduces image size by removing image data that is generally invisible to the human eye and minimizes any compromise in image quality.

    \n

    Convert to WebP and AVIF: Convert images to the slimmer WebP or AVIF formats for even better optimization with a 25-30% savings over JPEG and PNG. Most browsers support WebP, however if they don’t, you can have fallback versions of the image available in the same format as the original image.

    \n

    By tailoring compression to the level you need, your visitors will enjoy faster load times, improved responsiveness, and a seamless browsing experience. Our approach also enables your website to rank higher in search results. Since a search engine’s ranking is heavily influenced by speed, user experience, and Core Web Vitals, Image Optimizer by Elementor is an invaluable tool for any website, especially one that’s abundant with images.

    \n

    Get Started Today

    \n

    For more information about Image Optimizer, visit our official website or Try It Now.
    \nIf you have any questions or need support, feel free to contact us or visit our help center.

    \n

    This plugin requires a connection to an active Elementor account in order to identify the user and provide the user with the purchased service. This connection is triggered manually by the user via the plugin’s settings panel.
    \nThis plugin uses a 3rd party service operated by Elementor, which accepts a standard image in JPG, PNG, GIF or WEBP format and returns a web optimized image based on the selected settings. This flow is triggered by the user or automatically (based on the selected plugin settings) on compatible image upload or by manually initiating optimize process.

    \n

    Related Plugins

    \n

    Site Mailer: Effortlessly manage transactional emails with Site Mailer. High deliverability, logs and statistics, and no SMTP plugins needed.

    \n", "donate_link": "", "num_ratings": 61, "screenshots": {"1": {"src": "https://ps.w.org/image-optimization/assets/screenshot-1.jpg?rev=3139577", "caption": "Image Optimizer - Settings Page"}, "2": {"src": "https://ps.w.org/image-optimization/assets/screenshot-2.jpg?rev=3019964", "caption": "Image Optimizer - Bulk Optimization Page"}, "3": {"src": "https://ps.w.org/image-optimization/assets/screenshot-3.jpg?rev=3019964", "caption": "Image Optimizer - Bulk Actions and Individual Actions in the Media Library"}, "4": {"src": "https://ps.w.org/image-optimization/assets/screenshot-4.png?rev=3160624", "caption": "Image Optimizer - Image Optimization in the Media Library"}, "5": {"src": "https://ps.w.org/image-optimization/assets/screenshot-5.png?rev=3160624", "caption": "Image Optimizer - Image Optimization in the Media Uploader"}}, "support_url": "https://wordpress.org/support/plugin/image-optimization/", "contributors": {"elemntor": {"avatar": "https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elemntor/", "display_name": "Elementor"}}, "last_updated": "2025-09-11 8:55am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/image-optimization.1.6.8.zip", "author_profile": "https://profiles.wordpress.org/elemntor/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f643-7338-9167-71adaa2668bc", "name": "Image Optimizer – Optimize Images and Convert to WebP or AVIF", "slug": "image-optimization", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1757580900, "version": "1.6.8"}, "support_threads": 1, "requires_plugins": [], "short_description": "Automatically resize, optimize, and convert images to WebP and AVIF. Compress images in bulk or on upload to boost your WordPress site performance.", "author_block_count": 0, "author_block_rating": 28, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-656a-70f4-976c-b0d0239b4c64', 'imagify', 'Imagify Image Optimization – Optimize Images | Compress Images | Convert WebP | Convert AVIF', 'Optimize images in 1-click: compress images, convert to WebP & AVIF, resize, and boost your site with the easiest WordPress image optimization plugin!', '

    🏆 The Best Image Optimization Plugin For WordPress

    -

    Imagify is the most advanced image optimization plugin to help you optimize images. In fact, you can easily resize and compress images, and convert them to WebP and Avif. You can now use its power directly in WordPress to optimize images and reduce the weight of the photos you want to add to your site – image optimization is all done with just one click and without sacrificing their quality.

    -

    Imagify is the best WordPress image optimizer. Image optimization is simple and straightforward. The plugin lets you optimize images in one go with its asynchronous bulk optimization option. You can resize your images on the fly – they will be automatically optimized at the best compression level. If needed, you can always restore your images to their original versions.

    -

    On top of optimizing images, you’ll choose the best AVIF and WebP converter plugin for WordPress. Imagify also converts your images to WebP and AVIF, the next-gen formats for lighter images that will speed up your WordPress site, improve user experience, and even SEO. Convert WebP and convert AVIF will make a difference in image optimization, you’ll see that from yourself.

    -

    Lastly, it’s easy to use the best image compression plugin for better site performance. Speed up your WordPress site and improve Core Web Vitals thanks to Imagify’s state-of-the-art image optimization process.

    -

    Our video explains why Imagify is the easiest image optimization plugin and shows how it makes your website faster thanks to lighter images.

    - -

    ✨ Optimize Images – The Imagify Image Optimizer Key Features:

    -
      -
    • Resize and compress images for the most common formats, including PDF
    • -
    • Optimize images with Smart Compression to balance image optimization quality and performance automatically
    • -
    • Automatic WebP conversion
    • -
    • AVIF conversion in one click
    • -
    • Async bulk optimization
    • -
    -

    📸 Optimize Images: Resize and Compress Images Without Losing Quality

    -

    Imagify is a great image compressor and the ultimate solution to optimise images. You are able to resize and compress images from the most common image formats as well as PDF format. In case you have many images to optimize, you can also resize images in bulk thanks to our async bulk optimization option. In just one click, you will be able to compress multiple images super easily. Imagify compresses all your images in the background, so you can leave the page and not worry about anything.

    -

    Many of your high-quality images may be in sizes that are much too large. To reduce image size and compress large images, Imagify has a setting that allows you to choose a maximum width for all of your images, and if you upload images that are larger than that size, it will resize large images for you during optimization. Imagify will resize images proportionally without cropping them.

    -

    With such a great image optimizer like Imagify, you’ll get your images automatically optimized at the best compression level and quality – thanks to the Smart Compression Mode.

    -

    When using our image compression tool, Imagify, you will enjoy smaller file sizes and faster loading times. But the best part is that you will optimise images and reduce their weight without losing quality: why should you have to choose between beauty and speed? If you want to compress images, it’s now easier than ever with Imagify!

    -

    🔄 Convert to WebP and AVIF Formats

    -

    Thanks to Imagify, you can take a step further in your image optimization process. You can also convert all your images to next-gen image formats such as WebP and AVIF. WebP format, as well as the AVIF format, offers superior image compression and quality and is a way to optimise images and speed up their loading times on websites. By utilizing Imagify’s AVIF and WebP optimizer, you can efficiently convert images to these next-gen formats, saving you a precious amount of time.

    -

    With Imagify, WebP conversion and compression are indeed super easy. Wondering how the convert WebP option works? Imagify will automatically enable WebP and convert your images to WebP.

    -

    What about converting your images to AVIF? You can just select the AVIF option under the Optimization/Next-gen image format tab. Simply as that! Thanks to the best WebP and AVIF plugin for WordPress, you’ll be able to take advantage of the automatic convert WebP feature in no time, plus you’ll always have the convert AVIF option.

    -

    Imagify can also display the AVIF images directly on your front-end. But because some browser versions don’t support AVIF yet, Imagify lets you have both optimized versions of the original format images and the WebP versions ready. Imagify offers the automatic fallback. It means that it will serve the AVIF version if a visitor’s browser supports it and the WebP format if not (if you have previously converted the images to WebP).

    -

    WebP is definitively an excellent replacement for jpeg, png, and gif images, and the same goes for AVIF, which improves your image performance even further. Imagify offers WebP conversion for all image formats: you can convert gif to WebP, jpeg to WebP, and even png to WebP. You can also benefit from AVIF conversion and convert gif to AVIF, jpg and jpeg to AVIF, png to AVIF.
    -Whatever your favorite image format, let Imagify optimise your images!

    -

    ⚡ Optimize Images to Make Your Site Faster and Improve Core Web Vitals

    -

    Did you know that image optimization and web performance go hand in hand? In fact, when it comes to web page speed, one of the first things you should do is optimize your images. Large and heavy image sizes will indeed slow down your website and provide a bad user experience to your visitors – and that’s why you should compress images. On the contrary, when you optimise images and improve image loading speed, you should see a direct improvement in your website speed and performance. With Imagify, it’s time to say goodbye to images taking too long to load.

    -

    Images are one of the largest influencing factors in the Core Web Vitals. Image compression will ensure your images load faster and improve your overall website performance, including your Core Web Vitals metrics. If you’re looking to improve user experience and speed up your WordPress site, images are a good place to start.

    -

    Even Google tells you to take care of your images! If you have ever run a performance audit on PageSpeed Insights, you might have seen the “serve images in next-gen formats” opportunity popping up. Another PageSpeed Insights recommendation related to images is to “efficiently encode images”. When you use Imagify, you will be able to address both recommendations and fix your images for a faster website.

    -

    💬 What Do Our Users Think Of Imagify?

    -

    Here’s what our users have to say about us after optimizing their images with Imagify:

    -
    -

    “Images and other media are the largest parts on your web pages (most likely). Therefore don’t forget to optimise images for the web before adding to your site. For WordPress there are many optimisation plugins available. My favourite is Imagify” — Mark Wilkinson

    -

    ”To give your images a slimming treatment, without altering them aesthetically, there is a great plugin on WordPress: Imagify. Simple, efficient and functional, it’s really worth a look.”— WP Marmite

    -

    “Imagify is an awesome tool that is powerful & easy to use. It’s fast, rivals and surpasses other established plugins/software. Awesome!” — Simon Harper

    -

    “If you want to “squeeze” your images as much as possible and “trim out” your website on the highest professional level… Imagify” — Ivica Delic

    -

    “Clearly Imagify is the most awesome WordPress plugin to compress images on your website! A must try” — Eric Walter

    -
    -

    💰 Is Imagify Free?

    -

    You can optimize for free 20MB of images (that’s about 200 images) every month. You can also convert to the next-gen WebP format for free.

    -

    Need to compress more images? Have a look at our plans: https://imagify.io/pricing

    -

    💡 Want Image Optimization Tips?

    -

    If you want to optimize images and know more about using WebP images on WordPress, improving your PageSpeed score with Imagify, or compressing multiple images online, take a look at our blog: https://imagify.io/blog/

    -

    It’s packed with advice on image compression and so much more!

    - -

    👥 Who Are We?

    -

    We are WP Media, the company behind WP Rocket, the best caching plugin for WordPress.

    -

    Our mission is to improve the web, we are making it faster with WP Rocket and lighter with Imagify.

    -

    ✉️ Get In Touch!

    - -

    🚀 Related Plugins

    -
      -
    • WP Rocket: Best caching plugin to speed-up your WordPress website.
    • -
    • Lazy Load: Best Lazy Load script to reduce the number of HTTP requests and improve the website’s loading time.
    • -
    -

    License: GPLv2 or later
    -License URI: http://www.gnu.org/licenses/gpl-2.0.html

    -', '2.2.6', 'WP Media', '5.3', '7.3', '6.8.3', 'https://downloads.wordpress.org/plugin/imagify.2.2.6.zip', '2016-01-27 00:00:00+00', '2025-10-28 19:20:00+00', 'https://profiles.wordpress.org/wp_media/', 86, 1599, 4, 4, 900000, 16375314, 'https://wordpress.org/plugins/imagify/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/imagify/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Imagify Image Optimization – Optimize Images | Compress Images | Convert WebP | Convert AVIF", "slug": "imagify", "tags": {"convert-avif": "convert AVIF", "convert-webp": "convert webp", "compress-images": "compress images", "optimize-images": "optimize images", "image-optimization": "image optimization"}, "added": "2016-01-27", "icons": {"1x": "https://ps.w.org/imagify/assets/icon.svg?rev=2833113", "svg": "https://ps.w.org/imagify/assets/icon.svg?rev=2833113"}, "author": "WP Media", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/imagify/assets/banner-772x250.png?rev=2759224", "high": "https://ps.w.org/imagify/assets/banner-1544x500.png?rev=2759224"}, "ratings": {"1": 212, "2": 43, "3": 30, "4": 62, "5": 1252}, "version": "2.2.6", "homepage": "https://wordpress.org/plugins/imagify/", "requires": "5.3", "sections": {"faq": "\n
    \nHow can I measure the impact of Imagify on speed score?\n\n

    \n

    You can use GTMetrix and Google PageSpeed Insights to check the relevant suggestions. It is recommended to test the following metrics before and after the image optimization:

    \n
      \n
    • Total Page Size (GTMetrix)
    • \n
    • Optimize images (GTMetrix)
    • \n
    • Serve images in next-gen formats (PageSpeed Insights)
    • \n
    • Efficiently encode images (PageSpeed Insights)
    • \n
    \n

    \n
    \nWhat makes Imagify better than other image optimizer tools?\n\n

    \n

    Imagify is an extremely powerful image optimizer: our advanced compressing algorithm will compress images, reduce their weight without sacrificing their quality.

    \n

    Imagify is also super easy to use. Thanks to its intuitive design, you can easily get familiar with the interface and services without thinking about it.

    \n

    And our dedicated customer support will help you fix any issue with your image optimizing process. Support is available via contact form, either on our website, or directly on your Imagify plugin settings page.

    \n

    \n
    \nHow many websites can I optimize with Imagify?\n\n

    \n

    You can use Imagify on as many websites as you wish. Your image optimization quota to compress images will be shared evenly across all of the websites.

    \n

    If you need more control over how your Imagify subscription is used, you should create sub-accounts to allocate a quota for each.

    \n

    \n
    \nHow does the WebP feature work on non-supported browsers?\n\n

    \n

    Imagify will deliver images in the original format for browsers that don’t support the next-gen WebP format automatically, so there is nothing further to be done.

    \n

    \n
    \nIs Imagify compatible with NextGEN?\n\n

    \n

    Yes, Imagify is fully compatible with NextGEN Gallery, the most popular photo gallery plugin for WordPress. All Imagify optimization features related to NextGEN Gallery images are located and usable within the NextGEN Gallery menus and pages. So when you add images to your NextGEN galleries, you’ll be able to optimize them as well.

    \n

    \n
    \nWhich formats can be optimized?\n\n

    \n

    Imagify can optimize JPG, PNG, WebP, PDF files and GIFs (whether animated or not).

    \n

    When you optimize JPG, PNG, and GIF files, Imagify will also create WebP and AVIF versions of your original images and all your thumbnail sizes (if you have this option enabled).

    \n

    \n
    \nHow should I know which image compression level is best for me?\n\n

    \n

    Don’t worry! Imagify comes with the Smart Compression Mode. It means that your images will be automatically optimized for the best possible compression ratio and quality. There’s nothing else to do – just enjoy your lighter and faster images.

    \n

    \n
    \nHow does the image optimization process work?\n\n

    \n

    The image optimization process is performed on our servers. Once done, Imagify returns the optimized image to your server. We do not edit images’ titles or any other information, so there is nothing further to be done on your end than to compress images. Your original images will be moved to a dedicated backup folder (just make sure to keep the Backup option active in Imagify settings).

    \n

    \n
    \nHow to enable the Webp Converter?\n\n

    \n

    With Imagify v2.2, the creation of WebP images is enabled by default. This means that when Imagify optimizes your images using its built-in WebP optimizer, a WebP version will automatically be generated, provided you have disabled the “Create AVIF versions of images” option in your plugin settings. Although the WebP files won’t be directly visible in your Media Library, you can verify their creation by checking for the “Next-Gen generated: yes” indication in the Imagify column of your Media Library.

    \n

    \n
    \nHow long are images stored by Imagify?\n\n

    \n

    Once your images have been optimized via the WP plugin, the compressed images stay on your end forever (even if you delete the Imagify account).

    \n

    During the optimization process, compressed images sent via the API or WordPress plugin are stored for one hour on our server (they are already sent back to your site and stay there safely).

    \n

    Using the online application, compressed images are stored for 24 hours (with a free account) and for unlimited time if you have a paid subscription.

    \n

    \n
    \nCan I restore images after compression?\n\n

    \n

    Yes, as long as the Backup option is active in Imagify settings (it is active by default when you activate the WP Plugin).

    \n

    \n
    \nIf I remove Imagify, will my images stay compressed?\n\n

    \n

    Yes, your images will stay compressed even after removing Imagify (and even after you delete your Imagify account).

    \n

    \n
    \nIf I use Imagify, do I need to continue optimizing and resizing my images with Photoshop?\n\n

    \n

    Do not waste your time resizing and optimizing your images in Photoshop. Imagify takes care of everything to compress your images!

    \n

    \n
    \nIs the EXIF data of images removed?\n\n

    \n

    EXIF data is not removed.

    \n

    \n
    \nI used Kraken, Optimus, EWWW or WP Smush, will Imagify further optimize my images?\n\n

    \n

    Absolutely. Most of the time, Imagify will still be able to optimize your images even if you have already compressed them with another tool.

    \n

    \n
    \nWill the original images be deleted?\n\n

    \n

    No. Imagify automatically replaces the original images with an optimized image. The backup option allows you to keep the original images and restore them with one click.

    \n

    \n
    \nIs it possible to re-optimize images with a different level?\n\n

    \n

    Yes. By activating the backup option in the plugin, you can re-optimize each image to lossless compression with a single click.

    \n

    \n
    \nWhat happens when the plugin is disabled?\n\n

    \n

    When the plugin is disabled, your existing images remain optimized. Backups of the original images are still available if you have enabled the images backup option.

    \n

    \n
    \nOn which web hosts can the plugin be used?\n\n

    \n

    The plugin can be used on all hosts including “managed hosting” providers like WP Engine.

    \n

    \n
    \nIs Imagify compatible with Multi-Site?\n\n

    \n

    Yes, Imagify is 100% compatible with multi-site.

    \n

    \n
    \nCan we use Imagify on WordPress.com?\n\n

    \n

    It is possible to use the Imagify plugin on WordPress.com if you have a Business account.

    \n

    \n
    \nDo you offer support?\n\n

    \n

    Yes, the Imagify team offers full email support for image optimization questions. You can contact us via https://imagify.io/contact/.

    \n

    \n
    \nWhen is support available?\n\n

    \n

    Our support is currently available Monday-Friday 8AM-10PM CET. We answer every email so you can expect the answer from us within 24h max (unless during the weekends).

    \n

    \n
    \nIs registration free?\n\n

    \n

    Yes, and no credit card is required.

    \n

    \n
    \nDo you offer a trial version?\n\n

    \n

    No. However, you get 20MB of quota per month for free to optimize your images (around 200 images).

    \n

    \n
    \nWhere do I report security bugs found in this plugin?\n\n

    \n

    You can report any security bugs found in the source code of the site-reviews plugin through the Patchstack Vulnerability Disclosure Program. The Patchstack team will assist you with verification, CVE assignment and take care of notifying the developers of this plugin.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Makes a massive difference to site performance

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anthonyidle on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Worth remembering how much this plugin will make for you..

    \n\n\n\n
    \n

    “In A/B tests, we tried delaying the page in increments of 100 milliseconds and found that even very small delays would result in substantial and costly drops in revenue.”

    \nAmazon.com
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Image optimization plugin is lightning fast

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aegei on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I optimized over 700 images in one go. The tool even handled WebP conversion. Page load times improved immediately.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Effortless Image Optimization for Your WordPress Site

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ubaida (ubaidaabidganem) on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Imagify has been a game changer for optimizing images on my WordPress site. The plugin is incredibly straightforward—just a click and it compresses images without compromising quality. Its ability to convert images to modern formats like WebP and AVIF really boosts my site’s loading speed. I highly recommend it for anyone looking to quickly improve their website’s performance with minimal hassle.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best Image Optimizatin Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Maitreya Patni (maitpatni) on October 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Best Image Optimizatin Plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Quick and effective

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy haakonlw on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really good for content optimization! It''s the easiest way for me at least

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    no support - even for paid customers!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy itbuero on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Imagify broke my website. Imagify enabled didn''t show any pictures. Disabled and all pictures were back. Contacted the support - but no response. Since 2 weeks now and I''m paying customer with the monthly pro subscription. Horrible.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Avis Imagify

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cath31 on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Le poids des images est bien réduit dans le format next gen !

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Evaluation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mggp58 on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin qui apporte de la plus value sur mes sites et qui permet un meilleur confort de navigation. Grâce à une utilisation conviviale, très pratique à mettre en place.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Saving Space

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy livninctry on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works as intended and has reduced the load times.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect plugin for the job

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Brand Rocket on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    An excellent plugin for speeding up any WordPress website

    \n
    \n
    \n", "changelog": "

    2.2.6

    \n
      \n
    • Bugfix: Fix warning related to translation files being loaded too early, improving plugin stability during image optimization.
    • \n
    • 3rd-party library: Update bundled Action Scheduler to v3.9.2.
    • \n
    \n

    2.2.5

    \n
      \n
    • Enhancement: Optimize SQL queries inside the plugin to calculate necessary data faster and improve image optimization at scale.
    • \n
    • Enhancement: Improve the design of banners displayed within the image optimizer plugin interface.
    • \n
    • Enhancement: Correct the upgrade link to ensure smoother navigation within the image optimization flow.
    • \n
    \n

    2.2.4

    \n
      \n
    • Enhancement: Disable by default the calculation of media elements used for filters in the Media Library view to speed up image optimization workflows.
    • \n
    • Enhancement: Remove unnecessary API calls on each page load to enhance image optimizer performance.
    • \n
    • Enhancement: Update banner UI and remove an extra checkout step, streamlining the optimization setup.
    • \n
    • 3rd-party compatibility: Fix display issue with unstyled banners in the Gravity Forms plugin view, improving integration during image optimization tasks.
    • \n
    \n

    2.2.3.2

    \n
      \n
    • Enhancement: Optimize and cache the modal attachment counter database query for better performance to optimize images in bulk.
    • \n
    \n

    2.2.3.1

    \n
      \n
    • Enhancement: Reduce the number of requests sent to Imagify servers during large-scale image optimization operations.
    • \n
    \n

    2.2.3

    \n
      \n
    • Enhancement: Cache license API calls to reduce load and improve how users optimize images.
    • \n
    • 3rd-party compatibility: Update template_redirect priority to improve compatibility with WP Rocket’s LazyLoad and optimized image delivery.
    • \n
    • Bugfix: Fix Uncaught TypeError: strpos() expects parameter 1 to be string fatal error.
    • \n
    • Enhancement: UI improvements across the image optimizer interface.
    • \n
    • Enhancement: Improve plugin architecture to support more efficient image optimization routines.
    • \n
    \n

    2.2.2

    \n
      \n
    • Enhancement: Let users choose which Next-Gen image formats (WebP, AVIF) should be generated in the UI for more flexible image optimization.
    • \n
    • Enhancement: Add safeguards for image size values that are not strings to improve optimizer stability.
    • \n
    • Enhancement: Improve detection of file types for better image optimization compatibility.
    • \n
    • Bugfix: Fix fatal error related to “WP_List_Table”.
    • \n
    \n

    2.2.1

    \n
      \n
    • Enhancement: Prevent unnecessary .htaccess updates when switching between AVIF and WebP generation, improving image optimization stability.
    • \n
    • Enhancement: Display the smallest image version in the Media Library image details section for easier review of optimized image output.
    • \n
    • Enhancement: Correctly delete all Next-Gen versions when restoring the original image.
    • \n
    • Enhancement: Bump minimum supported PHP version to 7.3.
    • \n
    • Bugfix: Fix progress bar issue when disabling AVIF generation.
    • \n
    • Bugfix: Fix incorrect image count in the Bulk Optimization section.
    • \n
    • Bugfix: Correct display bug in original vs. optimized image comparison.
    • \n
    • 3rd-party compatibility: Update compatibility with NextGen Gallery for AVIF support.
    • \n
    • 3rd-party compatibility: Improve compatibility of AVIF images with AMP, Regenerate Thumbnails, and WooCommerce for consistent image optimization results.
    • \n
    \n

    2.2.0.1

    \n
      \n
    • Bugfix: Preserve “Display images in WebP format” setting when updating the plugin to maintain optimized image delivery.
    • \n
    \n

    2.2

    \n
      \n
    • New Feature: Add AVIF generation support to provide next-gen image formats for advanced image optimization.
    • \n
    \n

    Full changelog

    \n", "description": "

    🏆 The Best Image Optimization Plugin For WordPress

    \n

    Imagify is the most advanced image optimization plugin to help you optimize images. In fact, you can easily resize and compress images, and convert them to WebP and Avif. You can now use its power directly in WordPress to optimize images and reduce the weight of the photos you want to add to your site – image optimization is all done with just one click and without sacrificing their quality.

    \n

    Imagify is the best WordPress image optimizer. Image optimization is simple and straightforward. The plugin lets you optimize images in one go with its asynchronous bulk optimization option. You can resize your images on the fly – they will be automatically optimized at the best compression level. If needed, you can always restore your images to their original versions.

    \n

    On top of optimizing images, you’ll choose the best AVIF and WebP converter plugin for WordPress. Imagify also converts your images to WebP and AVIF, the next-gen formats for lighter images that will speed up your WordPress site, improve user experience, and even SEO. Convert WebP and convert AVIF will make a difference in image optimization, you’ll see that from yourself.

    \n

    Lastly, it’s easy to use the best image compression plugin for better site performance. Speed up your WordPress site and improve Core Web Vitals thanks to Imagify’s state-of-the-art image optimization process.

    \n

    Our video explains why Imagify is the easiest image optimization plugin and shows how it makes your website faster thanks to lighter images.

    \n\n

    ✨ Optimize Images – The Imagify Image Optimizer Key Features:

    \n
      \n
    • Resize and compress images for the most common formats, including PDF
    • \n
    • Optimize images with Smart Compression to balance image optimization quality and performance automatically
    • \n
    • Automatic WebP conversion
    • \n
    • AVIF conversion in one click
    • \n
    • Async bulk optimization
    • \n
    \n

    📸 Optimize Images: Resize and Compress Images Without Losing Quality

    \n

    Imagify is a great image compressor and the ultimate solution to optimise images. You are able to resize and compress images from the most common image formats as well as PDF format. In case you have many images to optimize, you can also resize images in bulk thanks to our async bulk optimization option. In just one click, you will be able to compress multiple images super easily. Imagify compresses all your images in the background, so you can leave the page and not worry about anything.

    \n

    Many of your high-quality images may be in sizes that are much too large. To reduce image size and compress large images, Imagify has a setting that allows you to choose a maximum width for all of your images, and if you upload images that are larger than that size, it will resize large images for you during optimization. Imagify will resize images proportionally without cropping them.

    \n

    With such a great image optimizer like Imagify, you’ll get your images automatically optimized at the best compression level and quality – thanks to the Smart Compression Mode.

    \n

    When using our image compression tool, Imagify, you will enjoy smaller file sizes and faster loading times. But the best part is that you will optimise images and reduce their weight without losing quality: why should you have to choose between beauty and speed? If you want to compress images, it’s now easier than ever with Imagify!

    \n

    🔄 Convert to WebP and AVIF Formats

    \n

    Thanks to Imagify, you can take a step further in your image optimization process. You can also convert all your images to next-gen image formats such as WebP and AVIF. WebP format, as well as the AVIF format, offers superior image compression and quality and is a way to optimise images and speed up their loading times on websites. By utilizing Imagify’s AVIF and WebP optimizer, you can efficiently convert images to these next-gen formats, saving you a precious amount of time.

    \n

    With Imagify, WebP conversion and compression are indeed super easy. Wondering how the convert WebP option works? Imagify will automatically enable WebP and convert your images to WebP.

    \n

    What about converting your images to AVIF? You can just select the AVIF option under the Optimization/Next-gen image format tab. Simply as that! Thanks to the best WebP and AVIF plugin for WordPress, you’ll be able to take advantage of the automatic convert WebP feature in no time, plus you’ll always have the convert AVIF option.

    \n

    Imagify can also display the AVIF images directly on your front-end. But because some browser versions don’t support AVIF yet, Imagify lets you have both optimized versions of the original format images and the WebP versions ready. Imagify offers the automatic fallback. It means that it will serve the AVIF version if a visitor’s browser supports it and the WebP format if not (if you have previously converted the images to WebP).

    \n

    WebP is definitively an excellent replacement for jpeg, png, and gif images, and the same goes for AVIF, which improves your image performance even further. Imagify offers WebP conversion for all image formats: you can convert gif to WebP, jpeg to WebP, and even png to WebP. You can also benefit from AVIF conversion and convert gif to AVIF, jpg and jpeg to AVIF, png to AVIF.
    \nWhatever your favorite image format, let Imagify optimise your images!

    \n

    ⚡ Optimize Images to Make Your Site Faster and Improve Core Web Vitals

    \n

    Did you know that image optimization and web performance go hand in hand? In fact, when it comes to web page speed, one of the first things you should do is optimize your images. Large and heavy image sizes will indeed slow down your website and provide a bad user experience to your visitors – and that’s why you should compress images. On the contrary, when you optimise images and improve image loading speed, you should see a direct improvement in your website speed and performance. With Imagify, it’s time to say goodbye to images taking too long to load.

    \n

    Images are one of the largest influencing factors in the Core Web Vitals. Image compression will ensure your images load faster and improve your overall website performance, including your Core Web Vitals metrics. If you’re looking to improve user experience and speed up your WordPress site, images are a good place to start.

    \n

    Even Google tells you to take care of your images! If you have ever run a performance audit on PageSpeed Insights, you might have seen the “serve images in next-gen formats” opportunity popping up. Another PageSpeed Insights recommendation related to images is to “efficiently encode images”. When you use Imagify, you will be able to address both recommendations and fix your images for a faster website.

    \n

    💬 What Do Our Users Think Of Imagify?

    \n

    Here’s what our users have to say about us after optimizing their images with Imagify:

    \n
    \n

    “Images and other media are the largest parts on your web pages (most likely). Therefore don’t forget to optimise images for the web before adding to your site. For WordPress there are many optimisation plugins available. My favourite is Imagify” — Mark Wilkinson

    \n

    ”To give your images a slimming treatment, without altering them aesthetically, there is a great plugin on WordPress: Imagify. Simple, efficient and functional, it’s really worth a look.”— WP Marmite

    \n

    “Imagify is an awesome tool that is powerful & easy to use. It’s fast, rivals and surpasses other established plugins/software. Awesome!” — Simon Harper

    \n

    “If you want to “squeeze” your images as much as possible and “trim out” your website on the highest professional level… Imagify” — Ivica Delic

    \n

    “Clearly Imagify is the most awesome WordPress plugin to compress images on your website! A must try” — Eric Walter

    \n
    \n

    💰 Is Imagify Free?

    \n

    You can optimize for free 20MB of images (that’s about 200 images) every month. You can also convert to the next-gen WebP format for free.

    \n

    Need to compress more images? Have a look at our plans: https://imagify.io/pricing

    \n

    💡 Want Image Optimization Tips?

    \n

    If you want to optimize images and know more about using WebP images on WordPress, improving your PageSpeed score with Imagify, or compressing multiple images online, take a look at our blog: https://imagify.io/blog/

    \n

    It’s packed with advice on image compression and so much more!

    \n\n

    👥 Who Are We?

    \n

    We are WP Media, the company behind WP Rocket, the best caching plugin for WordPress.

    \n

    Our mission is to improve the web, we are making it faster with WP Rocket and lighter with Imagify.

    \n

    ✉️ Get In Touch!

    \n\n

    🚀 Related Plugins

    \n
      \n
    • WP Rocket: Best caching plugin to speed-up your WordPress website.
    • \n
    • Lazy Load: Best Lazy Load script to reduce the number of HTTP requests and improve the website’s loading time.
    • \n
    \n

    License: GPLv2 or later
    \nLicense URI: http://www.gnu.org/licenses/gpl-2.0.html

    \n", "screenshots": "
    1. \"<p>Bulk

      Bulk Image Optimization

    2. \"<p>Settings

      Settings Page

    3. \"<p>Media

      Media Page

    4. \"<p>Other

      Other Media Page

    ", "installation": "

    WordPress Admin Method

    \n
      \n
    1. Go to you administration area in WordPress Plugins > Add
    2. \n
    3. Look for Imagify (use search form)
    4. \n
    5. Click on Install and activate the plugin
    6. \n
    7. Optional: find the settings page through Settings > Imagify
    8. \n
    \n

    FTP Method

    \n
      \n
    1. Upload the complete imagify folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Optional: find the settings page through Settings > Imagify
    6. \n
    \n"}, "versions": {"1.4": "https://downloads.wordpress.org/plugin/imagify.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/imagify.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/imagify.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/imagify.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/imagify.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/imagify.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/imagify.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/imagify.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/imagify.2.2.zip", "1.10": "https://downloads.wordpress.org/plugin/imagify.1.10.zip", "1.3.3": "https://downloads.wordpress.org/plugin/imagify.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/imagify.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/imagify.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/imagify.1.3.6.zip", "1.4.1": "https://downloads.wordpress.org/plugin/imagify.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/imagify.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/imagify.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/imagify.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/imagify.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/imagify.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/imagify.1.4.7.zip", "1.5.1": "https://downloads.wordpress.org/plugin/imagify.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/imagify.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/imagify.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/imagify.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/imagify.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/imagify.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/imagify.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/imagify.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/imagify.1.5.9.zip", "1.6.1": "https://downloads.wordpress.org/plugin/imagify.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/imagify.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/imagify.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/imagify.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/imagify.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/imagify.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/imagify.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/imagify.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/imagify.1.6.9.zip", "1.7.1": "https://downloads.wordpress.org/plugin/imagify.1.7.1.zip", "1.8.1": "https://downloads.wordpress.org/plugin/imagify.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/imagify.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/imagify.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/imagify.1.8.4.zip", "1.9.1": "https://downloads.wordpress.org/plugin/imagify.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/imagify.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/imagify.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/imagify.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/imagify.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/imagify.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/imagify.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/imagify.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/imagify.1.9.9.zip", "2.1.1": "https://downloads.wordpress.org/plugin/imagify.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/imagify.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/imagify.2.1.3.zip", "2.2.1": "https://downloads.wordpress.org/plugin/imagify.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/imagify.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/imagify.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/imagify.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/imagify.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/imagify.2.2.6.zip", "trunk": "https://downloads.wordpress.org/plugin/imagify.zip", "1.5.10": "https://downloads.wordpress.org/plugin/imagify.1.5.10.zip", "1.6.10": "https://downloads.wordpress.org/plugin/imagify.1.6.10.zip", "1.6.11": "https://downloads.wordpress.org/plugin/imagify.1.6.11.zip", "1.6.12": "https://downloads.wordpress.org/plugin/imagify.1.6.12.zip", "1.6.13": "https://downloads.wordpress.org/plugin/imagify.1.6.13.zip", "1.6.14": "https://downloads.wordpress.org/plugin/imagify.1.6.14.zip", "1.9.10": "https://downloads.wordpress.org/plugin/imagify.1.9.10.zip", "1.9.11": "https://downloads.wordpress.org/plugin/imagify.1.9.11.zip", "1.9.12": "https://downloads.wordpress.org/plugin/imagify.1.9.12.zip", "1.9.13": "https://downloads.wordpress.org/plugin/imagify.1.9.13.zip", "1.9.14": "https://downloads.wordpress.org/plugin/imagify.1.9.14.zip", "1.3.5.1": "https://downloads.wordpress.org/plugin/imagify.1.3.5.1.zip", "1.3.5.2": "https://downloads.wordpress.org/plugin/imagify.1.3.5.2.zip", "1.3.6.1": "https://downloads.wordpress.org/plugin/imagify.1.3.6.1.zip", "1.5.2.1": "https://downloads.wordpress.org/plugin/imagify.1.5.2.1.zip", "1.6.7.1": "https://downloads.wordpress.org/plugin/imagify.1.6.7.1.zip", "1.6.9.1": "https://downloads.wordpress.org/plugin/imagify.1.6.9.1.zip", "1.7.1.1": "https://downloads.wordpress.org/plugin/imagify.1.7.1.1.zip", "1.7.1.2": "https://downloads.wordpress.org/plugin/imagify.1.7.1.2.zip", "1.7.1.3": "https://downloads.wordpress.org/plugin/imagify.1.7.1.3.zip", "1.8.0.1": "https://downloads.wordpress.org/plugin/imagify.1.8.0.1.zip", "1.8.1.1": "https://downloads.wordpress.org/plugin/imagify.1.8.1.1.zip", "1.8.4.1": "https://downloads.wordpress.org/plugin/imagify.1.8.4.1.zip", "1.9.3.1": "https://downloads.wordpress.org/plugin/imagify.1.9.3.1.zip", "1.9.8.1": "https://downloads.wordpress.org/plugin/imagify.1.9.8.1.zip", "2.1.3.1": "https://downloads.wordpress.org/plugin/imagify.2.1.3.1.zip", "2.2.0.1": "https://downloads.wordpress.org/plugin/imagify.2.2.0.1.zip", "2.2.3.1": "https://downloads.wordpress.org/plugin/imagify.2.2.3.1.zip", "2.2.3.2": "https://downloads.wordpress.org/plugin/imagify.2.2.3.2.zip", "1.6.13.1": "https://downloads.wordpress.org/plugin/imagify.1.6.13.1.zip", "1.6.14.1": "https://downloads.wordpress.org/plugin/imagify.1.6.14.1.zip", "1.6.14.2": "https://downloads.wordpress.org/plugin/imagify.1.6.14.2.zip"}, "downloaded": 16375314, "description": "

    🏆 The Best Image Optimization Plugin For WordPress

    \n

    Imagify is the most advanced image optimization plugin to help you optimize images. In fact, you can easily resize and compress images, and convert them to WebP and Avif. You can now use its power directly in WordPress to optimize images and reduce the weight of the photos you want to add to your site – image optimization is all done with just one click and without sacrificing their quality.

    \n

    Imagify is the best WordPress image optimizer. Image optimization is simple and straightforward. The plugin lets you optimize images in one go with its asynchronous bulk optimization option. You can resize your images on the fly – they will be automatically optimized at the best compression level. If needed, you can always restore your images to their original versions.

    \n

    On top of optimizing images, you’ll choose the best AVIF and WebP converter plugin for WordPress. Imagify also converts your images to WebP and AVIF, the next-gen formats for lighter images that will speed up your WordPress site, improve user experience, and even SEO. Convert WebP and convert AVIF will make a difference in image optimization, you’ll see that from yourself.

    \n

    Lastly, it’s easy to use the best image compression plugin for better site performance. Speed up your WordPress site and improve Core Web Vitals thanks to Imagify’s state-of-the-art image optimization process.

    \n

    Our video explains why Imagify is the easiest image optimization plugin and shows how it makes your website faster thanks to lighter images.

    \n\n

    ✨ Optimize Images – The Imagify Image Optimizer Key Features:

    \n
      \n
    • Resize and compress images for the most common formats, including PDF
    • \n
    • Optimize images with Smart Compression to balance image optimization quality and performance automatically
    • \n
    • Automatic WebP conversion
    • \n
    • AVIF conversion in one click
    • \n
    • Async bulk optimization
    • \n
    \n

    📸 Optimize Images: Resize and Compress Images Without Losing Quality

    \n

    Imagify is a great image compressor and the ultimate solution to optimise images. You are able to resize and compress images from the most common image formats as well as PDF format. In case you have many images to optimize, you can also resize images in bulk thanks to our async bulk optimization option. In just one click, you will be able to compress multiple images super easily. Imagify compresses all your images in the background, so you can leave the page and not worry about anything.

    \n

    Many of your high-quality images may be in sizes that are much too large. To reduce image size and compress large images, Imagify has a setting that allows you to choose a maximum width for all of your images, and if you upload images that are larger than that size, it will resize large images for you during optimization. Imagify will resize images proportionally without cropping them.

    \n

    With such a great image optimizer like Imagify, you’ll get your images automatically optimized at the best compression level and quality – thanks to the Smart Compression Mode.

    \n

    When using our image compression tool, Imagify, you will enjoy smaller file sizes and faster loading times. But the best part is that you will optimise images and reduce their weight without losing quality: why should you have to choose between beauty and speed? If you want to compress images, it’s now easier than ever with Imagify!

    \n

    🔄 Convert to WebP and AVIF Formats

    \n

    Thanks to Imagify, you can take a step further in your image optimization process. You can also convert all your images to next-gen image formats such as WebP and AVIF. WebP format, as well as the AVIF format, offers superior image compression and quality and is a way to optimise images and speed up their loading times on websites. By utilizing Imagify’s AVIF and WebP optimizer, you can efficiently convert images to these next-gen formats, saving you a precious amount of time.

    \n

    With Imagify, WebP conversion and compression are indeed super easy. Wondering how the convert WebP option works? Imagify will automatically enable WebP and convert your images to WebP.

    \n

    What about converting your images to AVIF? You can just select the AVIF option under the Optimization/Next-gen image format tab. Simply as that! Thanks to the best WebP and AVIF plugin for WordPress, you’ll be able to take advantage of the automatic convert WebP feature in no time, plus you’ll always have the convert AVIF option.

    \n

    Imagify can also display the AVIF images directly on your front-end. But because some browser versions don’t support AVIF yet, Imagify lets you have both optimized versions of the original format images and the WebP versions ready. Imagify offers the automatic fallback. It means that it will serve the AVIF version if a visitor’s browser supports it and the WebP format if not (if you have previously converted the images to WebP).

    \n

    WebP is definitively an excellent replacement for jpeg, png, and gif images, and the same goes for AVIF, which improves your image performance even further. Imagify offers WebP conversion for all image formats: you can convert gif to WebP, jpeg to WebP, and even png to WebP. You can also benefit from AVIF conversion and convert gif to AVIF, jpg and jpeg to AVIF, png to AVIF.
    \nWhatever your favorite image format, let Imagify optimise your images!

    \n

    ⚡ Optimize Images to Make Your Site Faster and Improve Core Web Vitals

    \n

    Did you know that image optimization and web performance go hand in hand? In fact, when it comes to web page speed, one of the first things you should do is optimize your images. Large and heavy image sizes will indeed slow down your website and provide a bad user experience to your visitors – and that’s why you should compress images. On the contrary, when you optimise images and improve image loading speed, you should see a direct improvement in your website speed and performance. With Imagify, it’s time to say goodbye to images taking too long to load.

    \n

    Images are one of the largest influencing factors in the Core Web Vitals. Image compression will ensure your images load faster and improve your overall website performance, including your Core Web Vitals metrics. If you’re looking to improve user experience and speed up your WordPress site, images are a good place to start.

    \n

    Even Google tells you to take care of your images! If you have ever run a performance audit on PageSpeed Insights, you might have seen the “serve images in next-gen formats” opportunity popping up. Another PageSpeed Insights recommendation related to images is to “efficiently encode images”. When you use Imagify, you will be able to address both recommendations and fix your images for a faster website.

    \n

    💬 What Do Our Users Think Of Imagify?

    \n

    Here’s what our users have to say about us after optimizing their images with Imagify:

    \n
    \n

    “Images and other media are the largest parts on your web pages (most likely). Therefore don’t forget to optimise images for the web before adding to your site. For WordPress there are many optimisation plugins available. My favourite is Imagify” — Mark Wilkinson

    \n

    ”To give your images a slimming treatment, without altering them aesthetically, there is a great plugin on WordPress: Imagify. Simple, efficient and functional, it’s really worth a look.”— WP Marmite

    \n

    “Imagify is an awesome tool that is powerful & easy to use. It’s fast, rivals and surpasses other established plugins/software. Awesome!” — Simon Harper

    \n

    “If you want to “squeeze” your images as much as possible and “trim out” your website on the highest professional level… Imagify” — Ivica Delic

    \n

    “Clearly Imagify is the most awesome WordPress plugin to compress images on your website! A must try” — Eric Walter

    \n
    \n

    💰 Is Imagify Free?

    \n

    You can optimize for free 20MB of images (that’s about 200 images) every month. You can also convert to the next-gen WebP format for free.

    \n

    Need to compress more images? Have a look at our plans: https://imagify.io/pricing

    \n

    💡 Want Image Optimization Tips?

    \n

    If you want to optimize images and know more about using WebP images on WordPress, improving your PageSpeed score with Imagify, or compressing multiple images online, take a look at our blog: https://imagify.io/blog/

    \n

    It’s packed with advice on image compression and so much more!

    \n\n

    👥 Who Are We?

    \n

    We are WP Media, the company behind WP Rocket, the best caching plugin for WordPress.

    \n

    Our mission is to improve the web, we are making it faster with WP Rocket and lighter with Imagify.

    \n

    ✉️ Get In Touch!

    \n\n

    🚀 Related Plugins

    \n
      \n
    • WP Rocket: Best caching plugin to speed-up your WordPress website.
    • \n
    • Lazy Load: Best Lazy Load script to reduce the number of HTTP requests and improve the website’s loading time.
    • \n
    \n

    License: GPLv2 or later
    \nLicense URI: http://www.gnu.org/licenses/gpl-2.0.html

    \n", "donate_link": "", "num_ratings": 1599, "screenshots": {"1": {"src": "https://ps.w.org/imagify/assets/screenshot-1.png?rev=2759224", "caption": "

    Bulk Image Optimization

    "}, "2": {"src": "https://ps.w.org/imagify/assets/screenshot-2.png?rev=2759224", "caption": "

    Settings Page

    "}, "3": {"src": "https://ps.w.org/imagify/assets/screenshot-3.png?rev=2759224", "caption": "

    Media Page

    "}, "4": {"src": "https://ps.w.org/imagify/assets/screenshot-4.png?rev=2759224", "caption": "

    Other Media Page

    "}}, "support_url": "https://wordpress.org/support/plugin/imagify/", "contributors": {"imagify": {"avatar": "https://secure.gravatar.com/avatar/8c28d7790f9f23ad2576c1f657773766f65666c45365db38658a3aba0f7c6bb4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/imagify/", "display_name": "Imagify Image Optimizer"}, "wp_rocket": {"avatar": "https://secure.gravatar.com/avatar/8e1f1fe831228353ceabcfe40dccd4a769451d5f19fe733f46d8fb7d42dc1549?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wp_rocket/", "display_name": "WP Rocket"}}, "last_updated": "2025-10-28 7:20pm GMT", "preview_link": "", "requires_php": "7.3", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/imagify.2.2.6.zip", "author_profile": "https://profiles.wordpress.org/wp_media/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-f63e-7153-9350-c2aaec6e484d", "name": "Imagify Image Optimization – Optimize Images | Compress Images | Convert WebP | Convert AVIF", "slug": "imagify", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761679200, "version": "2.2.6"}, "support_threads": 4, "requires_plugins": [], "short_description": "Optimize images in 1-click: compress images, convert to WebP & AVIF, resize, and boost your site with the easiest WordPress image optimization plugin!", "author_block_count": 0, "author_block_rating": 86, "commercial_support_url": "", "support_threads_resolved": 4}'); -INSERT INTO public.plugins VALUES ('019a30c1-6573-712c-9931-96b45387ec69', 'insert-headers-and-footers', 'WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager', 'Easily add code snippets in WordPress. Insert header & footer scripts, add PHP code snippets with conditional logic, insert ads pixel code, and more.', '

    Insert Headers & Footers + Full WordPress Code Snippets Plugin

    -

    WPCode (formerly known as Insert Headers and Footers by WPBeginner) is the most popular code snippets plugin for WordPress used by over 2 million websites.

    -

    We make it easy for you to add code snippets in WordPress without having to edit your theme’s functions.php file.

    -

    Our simple insert headers and footers interface allows you to insert code like Google Analytics, custom CSS, Facebook Pixel, and more to your WordPress site’s header and footer as well other areas of your website. No need to edit your theme files!

    -

    Aside from Header and Footer scripts, you can also use WPCode to insert custom PHP code snippets, JavaScript code snippets, CSS code snippets, HTML code snippets, and text snippets with full conditional logic support.

    -

    We took the pain out of adding custom code snippets in WordPress and made it easy.

    -
    -

    I have been using Insert Headers and Footers and it is such a useful tool. Super helpful and the very best of its kind. Highly recommend
    - The_Gibble – WordPress user

    -
    -

    Quick Overview of WPCode from WPBeginner

    -

    -
    -

    Introducing New WPCode Pro
    - While WPCode Lite offers tons of powerful features for free, we listened to user feedback and created WPCode Pro with even more amazing features to improve your workflow. This includes smart conditional logic, saving code snippets to cloud library, code revisions, page-specific snippets, deeper integration with popular plugins like WooCommerce, Easy Digital Downloads, and so much more. Click here to purchase the best premium WordPress code snippet plugin now!

    -
    -

    Future Proof Code Snippet Management

    -

    Most WordPress tutorial websites ask you to add code snippets to your theme’s functions.php file. This makes managing code snippets messy, and it also prevents you from updating your theme.

    -

    If you ever update your theme or switch to another theme, then you will lose all custom code functions that you added in your functions.php file.

    -

    WPCode solves this by providing you an easy way to insert header and footer scripts along with other code snippets directly from your WordPress dashboard. These code snippets actually run as if they were in your theme’s functions.php file.

    -

    Our smart code snippet validation helps you prevent common code errors to ensure you never break your website when adding code snippets or header and footer scripts.

    -

    New WPCode Cloud Library even allows you to store all your custom code snippets in a cloud library, so you can easily re-use code snippets across multiple website projects and save time. You can keep your code snippets completely private or share it with the community to give back while boosting your social profile.

    -
    -

    This plugin allows me to not only add things to my site whenever needed, but it takes me only seconds to accomplish it.
    - David Weber – WordPress user

    -
    -

    Full Code Snippets Library and Code Generators

    -

    Ever wanted a central place to find all the most popular WordPress code snippets that are tested and proven to work?

    -

    When we started Insert Headers and Footers plugin, we did too. So we built a WordPress code snippets library right inside the WPCode plugin.

    -

    You will find verified PHP code snippets for popular feature requests like disable REST API, disable XML-RPC, disable comments, allow SVG file uploads, disable Gutenberg, add Classic Editor, and more without installing separate plugins for each.

    -
    -

    I was very hesitant to get into any of the code for my website. Your plugin made it easy for me to do.
    - Conbrio75 – WordPress user

    -
    -

    We also built the ability to save your code snippets to WPCode Cloud Library, so you can easily re-use it on your other websites, client projects, or even share it with the larger community.

    -

    WPCode Cloud Library helps you better organize your code snippets in one central location, so you can save more time and speed up your workflow when managing websites. No more wasting time looking for custom notes or Github gists.

    -

    Aside from our growing code snippets library, we also have WordPress code generators to help you quickly get ready-to-use custom code using the latest WordPress coding standards and API’s.

    -

    Conditional Logic for Code Snippets + Code Insertion Priority

    -

    Our goal with WPCode was to create a WordPress code snippets plugin that’s both EASY and POWERFUL.

    -

    That’s why aside from our global header and footer scripts, we added advanced features like conditional logic for code snippets and made it easy.

    -

    Instead of learning WordPress conditional logic queries, you can use our beginner-friendly conditional logic user interface to:

    -
      -
    • Load code snippets for logged in users only
    • -
    • Load PHP code snippets for specific user roles
    • -
    • Load PHP code snippets only on specific page URLs
    • -
    • Insert header and footer pixel scripts on specific pages
    • -
    • Show code snippets based on type of page
    • -
    • Run code snippet only on certain post types
    • -
    • Load header and footer code snippet based on referrer source
    • -
    • and more…
    • -
    -

    We also added both automatic code insertion and manual code output using shortcodes.

    -

    Our Auto Insert feature allows you to run the code snippet everywhere or choose from custom options like:

    -
      -
    • Run code snippet only on frontend
    • -
    • Run code snippet only in WordPress admin area
    • -
    • Add header and footer scripts sitewide
    • -
    • Insert PHP code snippet before or after post content
    • -
    • Insert code snippet before or after specific paragraph
    • -
    • Insert code snippet on specific archive pages
    • -
    • Insert code snippets after specific WooCommerce function (Pro Feature)
    • -
    -

    Aside from that, we also added a visual code snippet priority system, so you can choose the order for your custom functions to avoid code conflict.

    -
    -

    This is such a useful plugin! It makes it so much easier to include things on your website!
    - Understoryliving – WordPress user

    -
    -

    And for even more flexibility and customization, we have added the ability for you to add page-specific code snippets right from the WordPress classic editor as well as the Gutenberg editor. You can even load code snippets based on device type such as mobile only code snippets, desktop only code snippets, etc.

    -

    Import and Export Code Snippets

    -

    Managing multiple websites or developing in a staging environment?

    -

    We offer an easy way to import and export your custom code snippets, functions, and header and footer scripts to help you save time.

    -

    You can also save your code snippets to WPCode Cloud (Pro feature), so you can easily re-use the same code snippets across multiple websites. This also allows you to better organize your code snippets instead of wasting time searching for random Github gists.

    -
    -

    Simple plugin I use in quite every site. Very useful to insert scripts and tags.
    - tommasoperego – WordPress user

    -
    -

    Full WPCode Feature List

    -

    The simple interface of WPCode plugin (formerly known as Insert Headers and Footers) gives you one place where you can insert header and footer scripts as well as custom code snippets rather than dealing with dozens of different plugins.

    -

    Below is a full list of WPCode features:

    -
      -
    • Quick to set up
    • -
    • Unlimited code snippets
    • -
    • Simple to insert header and footer scripts globally
    • -
    • Beginner Friendly Code Editor with Syntax Highlighter for PHP, JavaScript, and HTML
    • -
    • Smart Code Validation to Prevent PHP Errors
    • -
    • Insert header code and/or footer code using Conditional Logic
    • -
    • Add Google Analytics code to header and footer
    • -
    • Add custom CSS code to any theme
    • -
    • Insert Facebook pixel code in header and footer
    • -
    • Insert any code or script, including HTML and Javascript
    • -
    • Insert PHP Code Snippets
    • -
    • Ready-made Code Snippet Library
    • -
    • Custom WordPress Code Snippet Generator
    • -
    • Show or Hide PHP Code Snippets based on conditional logic
    • -
    • Run PHP code and custom code snippets everywhere or in select areas using smart auto-insert rules.
    • -
    • Manually insert PHP code snippets using shortcodes anywhere on website
    • -
    • Add Rich Text Ads and Content Snippets automatically on posts & pages.
    • -
    • Export / Import Code Snippets
    • -
    • New Save snippets to Cloud Library – All your snippets stored in your private code snippet cloud.
    • -
    • New Deep integrations with Gutenberg, WooCommerce, and more.
    • -
    • Device specific code snippets (such as load code snippets on mobile only, desktop only, etc)
    • -
    • and more features coming soon.
    • -
    -

    Credits

    -

    Insert Headers and Footers plugin was first created by Syed Balkhi and the WPBeginner team in 2011.

    -

    It was later rebranded to WPCode in 2022 by Syed Balkhi to add powerful code snippets features that users were requesting for.

    -

    Branding Guideline

    -

    WPCode™ is a trademark of WPCode LLC. When writing about the Insert Headers and Footers – Code Snippets plugin by WPCode, please make sure to uppercase the initial 3 letters.

    -

    WPCode (correct)
    -WP Code (incorrect)
    -wpcode (incorrect)
    -wp code snippets (incorrect)

    -', '2.3.0', 'Syed Balkhi', '4.6', '5.5', '6.8.3', 'https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.3.0.zip', '2012-07-12 00:00:00+00', '2025-08-07 12:31:00+00', 'https://profiles.wordpress.org/smub/', 98, 1686, 10, 5, 2000000, 74919469, 'https://www.wpcode.com/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/insert-headers-and-footers/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager", "slug": "insert-headers-and-footers", "tags": {"css": "css", "php": "php", "code": "code", "header": "header", "code-snippets": "code-snippets"}, "added": "2012-07-12", "icons": {"1x": "https://ps.w.org/insert-headers-and-footers/assets/icon-128x128.png?rev=2758516", "2x": "https://ps.w.org/insert-headers-and-footers/assets/icon-256x256.png?rev=2758516"}, "author": "Syed Balkhi", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/insert-headers-and-footers/assets/banner-772x250.png?rev=2758516", "high": "https://ps.w.org/insert-headers-and-footers/assets/banner-1544x500.png?rev=2758516"}, "ratings": {"1": 43, "2": 9, "3": 3, "4": 9, "5": 1622}, "version": "2.3.0", "homepage": "https://www.wpcode.com/", "requires": "4.6", "sections": {"faq": "\n
    \nCan I use WPCode – Insert Headers and Footers to install Google Analytics?\n\n

    \n

    Yes, you can insert your Google Analytics code in the Scripts in Header field.

    \n

    \n
    \nCan I use WPCode – Insert Headers and Footers for Google AdSense?\n\n

    \n

    Yes, to verify your account or to tag your page for Auto ads, paste the code AdSense gives you, into the Scripts in Header field.

    \n

    \n
    \nWill I lose my snippets if I change my WordPress theme?\n\n

    \n

    No, the idea behind WPCode – Insert Headers, Footers, and Code Snippets plugin is so you can safely add code snippets.

    \n

    All code snippets are stored in the WordPress database, independent of the theme upgrades.

    \n

    \n
    \nCan I switch back to the old version of Insert Headers and Footers?\n\n

    \n

    Yes, if you don’t want the advanced code snippets functionality, then you can switch back to the old Insert Headers and Footers features by simply going to the Settings Menu and clicking on the Headers & Footers mode.

    \n

    \n
    \nWhat Type of Code Snippets can I add?\n\n

    \n

    With WPCode, you can add any type of code snippet that you would otherwise add in your theme’s functions.php file or in a site-specific plugin.

    \n

    This includes custom PHP snippets, JavaScript snippets, HTML snippet, CSS snippets, Text Snippets, Conversion pixels, Tracking scripts, AdSense or other banner ads code, and more.

    \n

    \n
    \nWhat are some example plugins WPCode can replace?\n\n

    \n

    WPCode comes with a ready-made code snippets library that allows you to replace several popular plugins including:

    \n
      \n
    • Disable Comment plugins
    • \n
    • Disable XML-RPC plugins
    • \n
    • Disable Rest API plugins
    • \n
    • Disable Gutenberg plugins
    • \n
    • Classic Editor plugin
    • \n
    • Allow SVG File Upload plugins
    • \n
    • Disable RSS feed plugins
    • \n
    • Disable Search plugins
    • \n
    • Disable Automatic Updates plugins
    • \n
    • Disable Admin Bar plugins
    • \n
    • Disable Widget Blocks plugin
    • \n
    • Classic Widgets plugin
    • \n
    • Remove WordPress Version Number plugins
    • \n
    • Google Analytics plugins
    • \n
    • Facebook Pixel plugins
    • \n
    • Google AdSense plugins
    • \n
    • Custom Post Types UI plugins
    • \n
    • Other WordPress Generator plugins
    • \n
    \n

    … and basically any plugin that adds a functionality which can be added via custom code snippets.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    sehr komfortabel bei Erstinstallation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sebabran on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Wirklich sehr komfortabel bei der Erstinstallation.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bark on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin does what it promises, thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incredibly simple, Incredibly functional

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Verity Cantare (veritycantare) on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    All the custom css was building up in my Gutenberg area. All the custom php was scattered around theme files. All the annotations I made didn''t make anything easier to find.

    \n\n\n\n

    This does.

    \n\n\n\n

    As near as I can tell, it''s fully functional even in the Lite version. Does what I need, doesn''t make me learn a degree to do it.

    \n\n\n\n

    Now the only css left in the Gutenberg area is what is needed by it to do WYSIWYG editing.

    \n\n\n\n

    Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    the best plugin I have found of the repository

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sitarag on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    One of the best plugins I have found. It has been useful for managing CSS, html and PHP, and without needing to alter theme or core files.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Solved the issues

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy salderman on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Needed to change Change ''Ship'' to ''Deliver'' on Checkout and it was a quick and painless fix. Took less than 60 seconds!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Funciona bacana!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Renan Rosa Meneguci (renangeographia) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Tem funcionalidades legais, ainda mais a versão pro.

    \n\n\n\n

    \n\n\n\n

    Grato

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    nice

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy khasmer on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    nice

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Love this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rosalynaustin31 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used this plugin to insert a livechat code into my website, easily

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best there is

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy SRD75 on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Clean, logical, powerful interface for adding custom code.

    \n\n\n\n

    The free version supports 90% of our needs.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect and easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jlesse on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It`s an easy to use and perfectly working plugin.

    \n
    \n
    \n", "changelog": "

    2.3.0

    \n
      \n
    • New: We added a way to 1-click update snippets installed from the WPCode library when new versions are available.
    • \n
    • Tweak: We improved JSON code snippets import validation to show accurate error messages when files are incorrectly formatted.
    • \n
    \n

    2.2.9

    \n
      \n
    • New: Added a new importer for the Post Snippets plugin to make it easier to migrate your code snippets.
    • \n
    • Tweak: We adjusted the way the safe mode works to limit its effects on frontend urls.
    • \n
    \n

    2.2.8

    \n
      \n
    • New: Schema Generators – we added 20 new code generators to make it easier to manage schema code on your website.
    • \n
    • Tweak: We moved the button to update generated snippets to the top so that you can update snippets easier.
    • \n
    • Tweak: We added “suppress_filters” to WP_Query used by WPCode to avoid conflicts with other plugins.
    • \n
    • Fix: We fixed an issue where the generated snippets were not automatically inserted when activated.
    • \n
    \n

    2.2.7

    \n
      \n
    • New: Added support for automatically importing snippets from 2 new plugins.
    • \n
    \n

    2.2.6

    \n
      \n
    • New: Easily find where your snippet is used as a shortcode with our new shortcode finder tool. 1-click search through your site.
    • \n
    • New: Improved editor for snippet notes. You can now add links and format text with a WYSIWYG editor.
    • \n
    • New: Snippet notes column. Display the notes for each snippet in the list of snippets.
    • \n
    • Fix: We improved the code snippets list filtering in the admin to avoid issues when JS errors are encountered on the page from other scripts.
    • \n
    \n

    2.2.5

    \n
      \n
    • New: We added a new way to quickly filter snippets by code type in the list of snippets.
    • \n
    • Tweak: Prevent content_save_pre from modifying snippet code.
    • \n
    \n

    2.2.4.1

    \n
      \n
    • Fix: Shortcode attributes variables were not being set correctly.
    • \n
    \n

    2.2.4

    \n
      \n
    • Tweak: We adjusted the way our plugin adds a version-specific body class to avoid conflicts with other plugins.
    • \n
    • Tweak: We improved the way custom PHP code is executed to avoid conflicts with variables in snippets.
    • \n
    • Fix: When removing the last Conditional Logic group the rule selector was no longer working.
    • \n
    \n

    2.2.3.1

    \n
      \n
    • Tweak: Updated the way we load translatable strings in some components for compatibility with WordPress 6.7.
    • \n
    \n

    2.2.3

    \n
      \n
    • Tweak: We updated the way we validate PHP snippets when making an edit to an active snippet for better feedback when debugging.
    • \n
    • Tweak: We replaced a dependency (SweetAlert2) for a more lightweight alternative to improve performance.
    • \n
    \n

    2.2.2

    \n
      \n
    • New: The Add Snippet screen now makes it easier to get started with more than just our library of snippets, choose from expert-picked snippets, snippet generators or plugin-specific snippets.
    • \n
    • New: We updated the code type picker for more clarity on what each code type is useful for and the last code type you used is now saved for a streamlined experience when adding multiple snippets.
    • \n
    • Tweak: We extended the unfiltered HTML permissions notice when the DISALLOW_UNFILTERED_HTML constant is defined to add more clarity.
    • \n
    \n

    2.2.1

    \n
      \n
    • Fix: We fixed a bug that was causing the selected conditional logic operator to not be displayed correctly for some rules.
    • \n
    • Fix: The auto-insert location picker was not opening again in some situations.
    • \n
    \n

    2.2.0

    \n
      \n
    • New: We updated the conditional logic rules picker for more clarity and ease of use.
    • \n
    • New: We expanded our automatic cache clearing to include the Swift Performance plugin.
    • \n
    • Tweak: The Page URL conditional logic option now supports query params and wp-admin URLs.
    • \n
    \n

    2.1.14

    \n
      \n
    • New: When making changes to the Global Header & Footer WPCode will attempt to automatically clear page cache for popular caching plugins.
    • \n
    • New: Save your snippet with a keyboard shortcut by pressing CTRL+S (Windows) or CMD+S (Mac) in the snippet editor.
    • \n
    • Tweak: Prevent error when TinyMCE is disabled by other plugins.
    • \n
    \n

    2.1.13

    \n
      \n
    • New: We added admin-specific locations for header and footer to streamline customizations in the wp-admin area.
    • \n
    • New: The code editor height can now be adjusted directly from the snippet editor screen. Auto-height is still available as an option on the settings page.
    • \n
    • Fix: When making changes to a snippet, the function to prevent you from navigating away was no longer working.
    • \n
    \n

    2.1.12

    \n
      \n
    • New: We added a new way to execute PHP snippets “On Demand” – look for the “On Demand” location in the Auto Insert settings.
    • \n
    • Tweak: We added checks in place to prevent malicious code patterns from being used in WPCode.
    • \n
    • Fix: We fixed a bug where the conditional logic for logged-in users was not being saved correctly the first time.
    • \n
    \n

    2.1.11

    \n
      \n
    • Tweak: We improved the admin bar menu to fix an JS error in some scenarios and a html validation issue.
    • \n
    • Tweak: We added support for importing snippets from the Code Snippets Pro plugin.
    • \n
    • Fix: We fixed an issue with importing CSS snippets.
    • \n
    \n

    2.1.10

    \n
      \n
    • New: When another user is editing the same snippet, we now show a warning to avoid conflicts.
    • \n
    • Tweak: Improved mobile styles across the plugin admin for better readability.
    • \n
    \n

    2.1.9

    \n
      \n
    • New: Conditional logic rule for Blog home page (posts page)
    • \n
    • Tweak: Improved the connect to library flow to avoid the connect window from getting blocked.
    • \n
    • Fix: Author archive condition was not working as intended.
    • \n
    \n

    2.1.8

    \n
      \n
    • Tweak: We changed the way the code generators are loaded to improve performance overall.
    • \n
    • Tweak: We changed the way translations are loaded for better performance.
    • \n
    \n

    2.1.7

    \n
      \n
    • New: WPCode now has a Dark Mode for those late night coding sessions. Enable it on the settings page.
    • \n
    • Tweak: We improved the way the error messages are displayed in the snippet editor for more clarity.
    • \n
    • Fix: The snippet editor was no longer running syntax checks for PHP snippets upon activation.
    • \n
    • Fix: We fixed a bug where in certain versions of Safari the auto-insert location was being unset when saving a snippet.
    • \n
    \n

    2.1.6

    \n
      \n
    • New: We added the option to delete all the plugin data on uninstall.
    • \n
    • Fix: The code of duplicated snippets was sometimes removing some slashes.
    • \n
    • Fix: Error count was not correctly updated when snippets were trashed or deleted.
    • \n
    \n

    2.1.5

    \n
      \n
    • New: Priority column added to the list of snippets, order by snippet priority.
    • \n
    • Fix: Fixed a notice that was being thrown in new sites when running the installation routines.
    • \n
    • Fix: Filtering by tag or location in the list of snippets was not working correctly.
    • \n
    \n

    2.1.4.1

    \n
      \n
    • Fix: Avoid notices for errors that don’t include the file parameter.
    • \n
    • Fix: Improve compatibility with PHP 8.2 for the snippet cache class.
    • \n
    \n

    2.1.4

    \n
      \n
    • New: Enhanced error tracking: Errors generated by PHP snippets on your website will be displayed within the snippet’s context, simplifying the debugging process.
    • \n
    • New: We’ve refined the snippet auto-deactivation process. Now, only snippets that produce fatal errors in the admin section will be deactivated. All other errors will be reported through the newly implemented error tracker.
    • \n
    • New: We introduced three new columns to the snippet list: ID, Code Type, and Shortcode.
    • \n
    • Tweak: We’ve enhanced our file caching mechanism to prevent redundant requests in scenarios where files aren’t written properly due to certain setups.
    • \n
    • Tweak: We’ve implemented an additional check to ensure that closing PHP tags don’t disrupt the execution of snippets.
    • \n
    • Fix: We’ve corrected the sorting of snippets when arranged by their last updated date.
    • \n
    \n

    2.1.3.1

    \n
      \n
    • Fix: Shortcode attributes were not being correctly parsed in some scenarios.
    • \n
    \n

    2.1.3

    \n
      \n
    • New: We improved how we manage automatic snippet disabling when errors occur. You’ll now get detailed insights into which snippet is responsible for the error and the exact line where the problem occurred.
    • \n
    • Tweak: We adjusted the way snippets are preloaded to improve compatibility with object cache.
    • \n
    • Fix: The snippets added as shortcodes were not correctly displayed in the admin bar.
    • \n
    \n

    2.1.2

    \n
      \n
    • Tweak: We adjusted the way snippets are tracked in the Admin Bar Code Spotter to avoid wrong numbers in certain locations.
    • \n
    • Tweak: We improved the way the Admin Bar Code Spotter menu is loaded for better compatibility with other plugins and older themes.
    • \n
    • Tweak: Changed the way assets used by the admin bar are loaded to avoid errors if the head is loaded multiple times.
    • \n
    \n

    2.1.1

    \n
      \n
    • New: Easily duplicate a snippet with all of its settings with the new Duplicate link in the list of snippets.
    • \n
    • Fix: Taxonomy page conditional logic was not being correctly assigned for category and tags archives.
    • \n
    • Tweak: Adjust admin bar markup to avoid using a heading.
    • \n
    \n

    2.1.0

    \n
      \n
    • New: See exactly which scripts and snippets are loaded on the current page with the WPCode admin bar info menu.
    • \n
    • Tweak: Minor update to connect process.
    • \n
    \n", "description": "

    Insert Headers & Footers + Full WordPress Code Snippets Plugin

    \n

    WPCode (formerly known as Insert Headers and Footers by WPBeginner) is the most popular code snippets plugin for WordPress used by over 2 million websites.

    \n

    We make it easy for you to add code snippets in WordPress without having to edit your theme’s functions.php file.

    \n

    Our simple insert headers and footers interface allows you to insert code like Google Analytics, custom CSS, Facebook Pixel, and more to your WordPress site’s header and footer as well other areas of your website. No need to edit your theme files!

    \n

    Aside from Header and Footer scripts, you can also use WPCode to insert custom PHP code snippets, JavaScript code snippets, CSS code snippets, HTML code snippets, and text snippets with full conditional logic support.

    \n

    We took the pain out of adding custom code snippets in WordPress and made it easy.

    \n
    \n

    I have been using Insert Headers and Footers and it is such a useful tool. Super helpful and the very best of its kind. Highly recommend
    \n The_Gibble – WordPress user

    \n
    \n

    Quick Overview of WPCode from WPBeginner

    \n

    \n
    \n

    Introducing New WPCode Pro
    \n While WPCode Lite offers tons of powerful features for free, we listened to user feedback and created WPCode Pro with even more amazing features to improve your workflow. This includes smart conditional logic, saving code snippets to cloud library, code revisions, page-specific snippets, deeper integration with popular plugins like WooCommerce, Easy Digital Downloads, and so much more. Click here to purchase the best premium WordPress code snippet plugin now!

    \n
    \n

    Future Proof Code Snippet Management

    \n

    Most WordPress tutorial websites ask you to add code snippets to your theme’s functions.php file. This makes managing code snippets messy, and it also prevents you from updating your theme.

    \n

    If you ever update your theme or switch to another theme, then you will lose all custom code functions that you added in your functions.php file.

    \n

    WPCode solves this by providing you an easy way to insert header and footer scripts along with other code snippets directly from your WordPress dashboard. These code snippets actually run as if they were in your theme’s functions.php file.

    \n

    Our smart code snippet validation helps you prevent common code errors to ensure you never break your website when adding code snippets or header and footer scripts.

    \n

    New WPCode Cloud Library even allows you to store all your custom code snippets in a cloud library, so you can easily re-use code snippets across multiple website projects and save time. You can keep your code snippets completely private or share it with the community to give back while boosting your social profile.

    \n
    \n

    This plugin allows me to not only add things to my site whenever needed, but it takes me only seconds to accomplish it.
    \n David Weber – WordPress user

    \n
    \n

    Full Code Snippets Library and Code Generators

    \n

    Ever wanted a central place to find all the most popular WordPress code snippets that are tested and proven to work?

    \n

    When we started Insert Headers and Footers plugin, we did too. So we built a WordPress code snippets library right inside the WPCode plugin.

    \n

    You will find verified PHP code snippets for popular feature requests like disable REST API, disable XML-RPC, disable comments, allow SVG file uploads, disable Gutenberg, add Classic Editor, and more without installing separate plugins for each.

    \n
    \n

    I was very hesitant to get into any of the code for my website. Your plugin made it easy for me to do.
    \n Conbrio75 – WordPress user

    \n
    \n

    We also built the ability to save your code snippets to WPCode Cloud Library, so you can easily re-use it on your other websites, client projects, or even share it with the larger community.

    \n

    WPCode Cloud Library helps you better organize your code snippets in one central location, so you can save more time and speed up your workflow when managing websites. No more wasting time looking for custom notes or Github gists.

    \n

    Aside from our growing code snippets library, we also have WordPress code generators to help you quickly get ready-to-use custom code using the latest WordPress coding standards and API’s.

    \n

    Conditional Logic for Code Snippets + Code Insertion Priority

    \n

    Our goal with WPCode was to create a WordPress code snippets plugin that’s both EASY and POWERFUL.

    \n

    That’s why aside from our global header and footer scripts, we added advanced features like conditional logic for code snippets and made it easy.

    \n

    Instead of learning WordPress conditional logic queries, you can use our beginner-friendly conditional logic user interface to:

    \n
      \n
    • Load code snippets for logged in users only
    • \n
    • Load PHP code snippets for specific user roles
    • \n
    • Load PHP code snippets only on specific page URLs
    • \n
    • Insert header and footer pixel scripts on specific pages
    • \n
    • Show code snippets based on type of page
    • \n
    • Run code snippet only on certain post types
    • \n
    • Load header and footer code snippet based on referrer source
    • \n
    • and more…
    • \n
    \n

    We also added both automatic code insertion and manual code output using shortcodes.

    \n

    Our Auto Insert feature allows you to run the code snippet everywhere or choose from custom options like:

    \n
      \n
    • Run code snippet only on frontend
    • \n
    • Run code snippet only in WordPress admin area
    • \n
    • Add header and footer scripts sitewide
    • \n
    • Insert PHP code snippet before or after post content
    • \n
    • Insert code snippet before or after specific paragraph
    • \n
    • Insert code snippet on specific archive pages
    • \n
    • Insert code snippets after specific WooCommerce function (Pro Feature)
    • \n
    \n

    Aside from that, we also added a visual code snippet priority system, so you can choose the order for your custom functions to avoid code conflict.

    \n
    \n

    This is such a useful plugin! It makes it so much easier to include things on your website!
    \n Understoryliving – WordPress user

    \n
    \n

    And for even more flexibility and customization, we have added the ability for you to add page-specific code snippets right from the WordPress classic editor as well as the Gutenberg editor. You can even load code snippets based on device type such as mobile only code snippets, desktop only code snippets, etc.

    \n

    Import and Export Code Snippets

    \n

    Managing multiple websites or developing in a staging environment?

    \n

    We offer an easy way to import and export your custom code snippets, functions, and header and footer scripts to help you save time.

    \n

    You can also save your code snippets to WPCode Cloud (Pro feature), so you can easily re-use the same code snippets across multiple websites. This also allows you to better organize your code snippets instead of wasting time searching for random Github gists.

    \n
    \n

    Simple plugin I use in quite every site. Very useful to insert scripts and tags.
    \n tommasoperego – WordPress user

    \n
    \n

    Full WPCode Feature List

    \n

    The simple interface of WPCode plugin (formerly known as Insert Headers and Footers) gives you one place where you can insert header and footer scripts as well as custom code snippets rather than dealing with dozens of different plugins.

    \n

    Below is a full list of WPCode features:

    \n
      \n
    • Quick to set up
    • \n
    • Unlimited code snippets
    • \n
    • Simple to insert header and footer scripts globally
    • \n
    • Beginner Friendly Code Editor with Syntax Highlighter for PHP, JavaScript, and HTML
    • \n
    • Smart Code Validation to Prevent PHP Errors
    • \n
    • Insert header code and/or footer code using Conditional Logic
    • \n
    • Add Google Analytics code to header and footer
    • \n
    • Add custom CSS code to any theme
    • \n
    • Insert Facebook pixel code in header and footer
    • \n
    • Insert any code or script, including HTML and Javascript
    • \n
    • Insert PHP Code Snippets
    • \n
    • Ready-made Code Snippet Library
    • \n
    • Custom WordPress Code Snippet Generator
    • \n
    • Show or Hide PHP Code Snippets based on conditional logic
    • \n
    • Run PHP code and custom code snippets everywhere or in select areas using smart auto-insert rules.
    • \n
    • Manually insert PHP code snippets using shortcodes anywhere on website
    • \n
    • Add Rich Text Ads and Content Snippets automatically on posts & pages.
    • \n
    • Export / Import Code Snippets
    • \n
    • New Save snippets to Cloud Library – All your snippets stored in your private code snippet cloud.
    • \n
    • New Deep integrations with Gutenberg, WooCommerce, and more.
    • \n
    • Device specific code snippets (such as load code snippets on mobile only, desktop only, etc)
    • \n
    • and more features coming soon.
    • \n
    \n

    Credits

    \n

    Insert Headers and Footers plugin was first created by Syed Balkhi and the WPBeginner team in 2011.

    \n

    It was later rebranded to WPCode in 2022 by Syed Balkhi to add powerful code snippets features that users were requesting for.

    \n

    Branding Guideline

    \n

    WPCode™ is a trademark of WPCode LLC. When writing about the Insert Headers and Footers – Code Snippets plugin by WPCode, please make sure to uppercase the initial 3 letters.

    \n

    WPCode (correct)
    \nWP Code (incorrect)
    \nwpcode (incorrect)
    \nwp code snippets (incorrect)

    \n", "screenshots": "
    1. \"WordPress

      WordPress Code Snippets Management Screen

    2. \"Ready-Made

      Ready-Made Code Snippets Library

    3. \"Edit

      Edit PHP Snippets with Code Syntax Highlighter

    4. \"Show

      Show / Hide Code Snippets with Smart Conditional Logic

    5. \"Custom

      Custom WordPress Code Generators

    6. \"Example

      Example of Custom Post Type Generator

    7. \"Insert

      Insert Header and Footer Scripts Globally

    8. \"Import

      Import and Export Code Snippets

    9. \"Private

      Private Snippets Library In Plugin

    10. \"Page-Specific

      Page-Specific Scripts Metabox

    ", "installation": "
      \n
    1. Install WPCode – Insert Headers, Footers, and Code Snippets plugin by uploading the insert-headers-and-footers directory to the /wp-content/plugins/ directory. (See instructions on how to install a WordPress plugin.)
    2. \n
    3. Activate WPCode – Insert Headers, Footers, and Code Snippets plugin through the Plugins menu in WordPress.
    4. \n
    5. Insert code in your header and footer or add custom code snippets by going to the Code Snippets menu.
    6. \n
    \n\n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.zip", "1.3.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.3.3.zip", "1.4.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.6.zip", "1.5.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.5.0.zip", "1.6.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.6.2.zip", "2.0.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.3.0.zip", "trunk": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.zip", "2.0.10": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.13.zip", "2.1.10": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.10.zip", "2.1.11": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.11.zip", "2.1.12": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.12.zip", "2.1.13": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.13.zip", "2.1.14": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.14.zip", "2.0.4.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.1.zip", "2.0.4.2": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.2.zip", "2.0.4.3": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.3.zip", "2.0.4.4": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.4.zip", "2.0.8.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.8.1.zip", "2.1.3.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.3.1.zip", "2.1.4.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.1.4.1.zip", "2.2.3.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.3.1.zip", "2.2.4.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.2.4.1.zip", "2.0.13.1": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.13.1.zip"}, "downloaded": 74919469, "description": "

    Insert Headers & Footers + Full WordPress Code Snippets Plugin

    \n

    WPCode (formerly known as Insert Headers and Footers by WPBeginner) is the most popular code snippets plugin for WordPress used by over 2 million websites.

    \n

    We make it easy for you to add code snippets in WordPress without having to edit your theme’s functions.php file.

    \n

    Our simple insert headers and footers interface allows you to insert code like Google Analytics, custom CSS, Facebook Pixel, and more to your WordPress site’s header and footer as well other areas of your website. No need to edit your theme files!

    \n

    Aside from Header and Footer scripts, you can also use WPCode to insert custom PHP code snippets, JavaScript code snippets, CSS code snippets, HTML code snippets, and text snippets with full conditional logic support.

    \n

    We took the pain out of adding custom code snippets in WordPress and made it easy.

    \n
    \n

    I have been using Insert Headers and Footers and it is such a useful tool. Super helpful and the very best of its kind. Highly recommend
    \n The_Gibble – WordPress user

    \n
    \n

    Quick Overview of WPCode from WPBeginner

    \n

    \n
    \n

    Introducing New WPCode Pro
    \n While WPCode Lite offers tons of powerful features for free, we listened to user feedback and created WPCode Pro with even more amazing features to improve your workflow. This includes smart conditional logic, saving code snippets to cloud library, code revisions, page-specific snippets, deeper integration with popular plugins like WooCommerce, Easy Digital Downloads, and so much more. Click here to purchase the best premium WordPress code snippet plugin now!

    \n
    \n

    Future Proof Code Snippet Management

    \n

    Most WordPress tutorial websites ask you to add code snippets to your theme’s functions.php file. This makes managing code snippets messy, and it also prevents you from updating your theme.

    \n

    If you ever update your theme or switch to another theme, then you will lose all custom code functions that you added in your functions.php file.

    \n

    WPCode solves this by providing you an easy way to insert header and footer scripts along with other code snippets directly from your WordPress dashboard. These code snippets actually run as if they were in your theme’s functions.php file.

    \n

    Our smart code snippet validation helps you prevent common code errors to ensure you never break your website when adding code snippets or header and footer scripts.

    \n

    New WPCode Cloud Library even allows you to store all your custom code snippets in a cloud library, so you can easily re-use code snippets across multiple website projects and save time. You can keep your code snippets completely private or share it with the community to give back while boosting your social profile.

    \n
    \n

    This plugin allows me to not only add things to my site whenever needed, but it takes me only seconds to accomplish it.
    \n David Weber – WordPress user

    \n
    \n

    Full Code Snippets Library and Code Generators

    \n

    Ever wanted a central place to find all the most popular WordPress code snippets that are tested and proven to work?

    \n

    When we started Insert Headers and Footers plugin, we did too. So we built a WordPress code snippets library right inside the WPCode plugin.

    \n

    You will find verified PHP code snippets for popular feature requests like disable REST API, disable XML-RPC, disable comments, allow SVG file uploads, disable Gutenberg, add Classic Editor, and more without installing separate plugins for each.

    \n
    \n

    I was very hesitant to get into any of the code for my website. Your plugin made it easy for me to do.
    \n Conbrio75 – WordPress user

    \n
    \n

    We also built the ability to save your code snippets to WPCode Cloud Library, so you can easily re-use it on your other websites, client projects, or even share it with the larger community.

    \n

    WPCode Cloud Library helps you better organize your code snippets in one central location, so you can save more time and speed up your workflow when managing websites. No more wasting time looking for custom notes or Github gists.

    \n

    Aside from our growing code snippets library, we also have WordPress code generators to help you quickly get ready-to-use custom code using the latest WordPress coding standards and API’s.

    \n

    Conditional Logic for Code Snippets + Code Insertion Priority

    \n

    Our goal with WPCode was to create a WordPress code snippets plugin that’s both EASY and POWERFUL.

    \n

    That’s why aside from our global header and footer scripts, we added advanced features like conditional logic for code snippets and made it easy.

    \n

    Instead of learning WordPress conditional logic queries, you can use our beginner-friendly conditional logic user interface to:

    \n
      \n
    • Load code snippets for logged in users only
    • \n
    • Load PHP code snippets for specific user roles
    • \n
    • Load PHP code snippets only on specific page URLs
    • \n
    • Insert header and footer pixel scripts on specific pages
    • \n
    • Show code snippets based on type of page
    • \n
    • Run code snippet only on certain post types
    • \n
    • Load header and footer code snippet based on referrer source
    • \n
    • and more…
    • \n
    \n

    We also added both automatic code insertion and manual code output using shortcodes.

    \n

    Our Auto Insert feature allows you to run the code snippet everywhere or choose from custom options like:

    \n
      \n
    • Run code snippet only on frontend
    • \n
    • Run code snippet only in WordPress admin area
    • \n
    • Add header and footer scripts sitewide
    • \n
    • Insert PHP code snippet before or after post content
    • \n
    • Insert code snippet before or after specific paragraph
    • \n
    • Insert code snippet on specific archive pages
    • \n
    • Insert code snippets after specific WooCommerce function (Pro Feature)
    • \n
    \n

    Aside from that, we also added a visual code snippet priority system, so you can choose the order for your custom functions to avoid code conflict.

    \n
    \n

    This is such a useful plugin! It makes it so much easier to include things on your website!
    \n Understoryliving – WordPress user

    \n
    \n

    And for even more flexibility and customization, we have added the ability for you to add page-specific code snippets right from the WordPress classic editor as well as the Gutenberg editor. You can even load code snippets based on device type such as mobile only code snippets, desktop only code snippets, etc.

    \n

    Import and Export Code Snippets

    \n

    Managing multiple websites or developing in a staging environment?

    \n

    We offer an easy way to import and export your custom code snippets, functions, and header and footer scripts to help you save time.

    \n

    You can also save your code snippets to WPCode Cloud (Pro feature), so you can easily re-use the same code snippets across multiple websites. This also allows you to better organize your code snippets instead of wasting time searching for random Github gists.

    \n
    \n

    Simple plugin I use in quite every site. Very useful to insert scripts and tags.
    \n tommasoperego – WordPress user

    \n
    \n

    Full WPCode Feature List

    \n

    The simple interface of WPCode plugin (formerly known as Insert Headers and Footers) gives you one place where you can insert header and footer scripts as well as custom code snippets rather than dealing with dozens of different plugins.

    \n

    Below is a full list of WPCode features:

    \n
      \n
    • Quick to set up
    • \n
    • Unlimited code snippets
    • \n
    • Simple to insert header and footer scripts globally
    • \n
    • Beginner Friendly Code Editor with Syntax Highlighter for PHP, JavaScript, and HTML
    • \n
    • Smart Code Validation to Prevent PHP Errors
    • \n
    • Insert header code and/or footer code using Conditional Logic
    • \n
    • Add Google Analytics code to header and footer
    • \n
    • Add custom CSS code to any theme
    • \n
    • Insert Facebook pixel code in header and footer
    • \n
    • Insert any code or script, including HTML and Javascript
    • \n
    • Insert PHP Code Snippets
    • \n
    • Ready-made Code Snippet Library
    • \n
    • Custom WordPress Code Snippet Generator
    • \n
    • Show or Hide PHP Code Snippets based on conditional logic
    • \n
    • Run PHP code and custom code snippets everywhere or in select areas using smart auto-insert rules.
    • \n
    • Manually insert PHP code snippets using shortcodes anywhere on website
    • \n
    • Add Rich Text Ads and Content Snippets automatically on posts & pages.
    • \n
    • Export / Import Code Snippets
    • \n
    • New Save snippets to Cloud Library – All your snippets stored in your private code snippet cloud.
    • \n
    • New Deep integrations with Gutenberg, WooCommerce, and more.
    • \n
    • Device specific code snippets (such as load code snippets on mobile only, desktop only, etc)
    • \n
    • and more features coming soon.
    • \n
    \n

    Credits

    \n

    Insert Headers and Footers plugin was first created by Syed Balkhi and the WPBeginner team in 2011.

    \n

    It was later rebranded to WPCode in 2022 by Syed Balkhi to add powerful code snippets features that users were requesting for.

    \n

    Branding Guideline

    \n

    WPCode™ is a trademark of WPCode LLC. When writing about the Insert Headers and Footers – Code Snippets plugin by WPCode, please make sure to uppercase the initial 3 letters.

    \n

    WPCode (correct)
    \nWP Code (incorrect)
    \nwpcode (incorrect)
    \nwp code snippets (incorrect)

    \n", "donate_link": "", "num_ratings": 1686, "screenshots": {"1": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-1.png?rev=2758516", "caption": "WordPress Code Snippets Management Screen"}, "2": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-2.png?rev=2758516", "caption": "Ready-Made Code Snippets Library"}, "3": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-3.png?rev=2821393", "caption": "Edit PHP Snippets with Code Syntax Highlighter"}, "4": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-4.png?rev=2758516", "caption": "Show / Hide Code Snippets with Smart Conditional Logic"}, "5": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-5.png?rev=2758516", "caption": "Custom WordPress Code Generators"}, "6": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-6.png?rev=2758516", "caption": "Example of Custom Post Type Generator"}, "7": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-7.png?rev=2758516", "caption": "Insert Header and Footer Scripts Globally"}, "8": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-8.png?rev=2758516", "caption": "Import and Export Code Snippets"}, "9": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-9.png?rev=2821393", "caption": "Private Snippets Library In Plugin"}, "10": {"src": "https://ps.w.org/insert-headers-and-footers/assets/screenshot-10.png?rev=2821393", "caption": "Page-Specific Scripts Metabox"}}, "support_url": "https://wordpress.org/support/plugin/insert-headers-and-footers/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "gripgrip": {"avatar": "https://secure.gravatar.com/avatar/ed53a5eccff446e669341b94f8e1bfbd59f90d0f68b0d96f8487d65476b3e1d3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/gripgrip/", "display_name": "Mircea Sandu"}, "wpbeginner": {"avatar": "https://secure.gravatar.com/avatar/a78776f81d142b747c7fb964cf8f135b17110654250e9bf353869474bca0c00c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpbeginner/", "display_name": "WPBeginner"}, "wpcodeteam": {"avatar": "https://secure.gravatar.com/avatar/2c52decea60a774b68ec646a31481783ab40de767200cad26ce9609ec8d5e871?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpcodeteam/", "display_name": "WPCode"}}, "last_updated": "2025-08-07 12:31pm GMT", "preview_link": "", "requires_php": "5.5", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.3.0.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f647-7349-a357-6ffb27f1f164", "name": "WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager", "slug": "insert-headers-and-footers", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1754569860, "version": "2.3.0"}, "support_threads": 10, "requires_plugins": [], "short_description": "Easily add code snippets in WordPress. Insert header & footer scripts, add PHP code snippets with conditional logic, insert ads pixel code, and more.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 5}'); -INSERT INTO public.plugins VALUES ('019a30c1-658b-7328-9a15-c7ef44921121', 'jetpack', 'Jetpack – WP Security, Backup, Speed, & Growth', 'Improve your WP security with powerful one-click tools like backup, WAF, and malware scan. Includes free tools like stats, CDN and social sharing.', '

    JETPACK – THE BEST WORDPRESS PLUGIN

    -

    -

    Jetpack is a WordPress plugin that helps you create better content, grow your subscribers, earn money from your website and keep it safe, fast, and secure. You can grow and keep track of your website traffic with Jetpack stats, and create better content with Jetpack AI. You can start a newsletter and grow your audience, turning fans into paying subscribers. Create beautiful content with Jetpack Creator and keep your site fast with Jetpack Boost.

    -

    HOW TO GET STARTED WITH JETPACK

    -

    Installation is free, quick, and easy. Set up Jetpack in minutes. Take advantage of more robust features like WordPress site security and design and growth tools by upgrading to a paid plan.

    -

    NEED EXPERT SUPPORT?

    -

    We have a global team of Happiness Engineers ready to provide incredible support. Ask your questions in the support forum or contact support.

    -

    WHY USE JETPACK ON YOUR SITE

    -

    Safer. Faster. More traffic.

    -

    WordPress security, performance, marketing, and design tools — Jetpack is made by WordPress experts to make WP sites safer and faster, and help you grow your traffic.

    -

    24/7 AUTO SITE SECURITY

    -

    We guard your site so you can run your site or business. Jetpack Security provides easy-to-use, comprehensive WordPress site security including auto real-time backups and easy restores, malware scans, and spam protection. Essential features like brute force protection and basic downtime / uptime monitoring are free.

    -
      -
    • Back up your site automatically in real time and restore to any point with one click. Cloud storage starts at 10GB, which is more than enough for most sites, with additional storage options available if needed. Great for eCommerce stores especially Woo.
    • -
    • Manage migration to a new host, migrate theme files and plugins to a new database, easily duplicate websites, create full database backups, clone websites, repair broken websites by restoring older backups or easily set up a test site by creating a duplicate of your existing WP website.
    • -
    • See every site change and who made it with the activity log, great for coordination, debug, maintenance, or troubleshooting.
    • -
    • Examine incoming traffic to your WordPress site with our WAF (Web Application Firewall) and decide to allow or block it based on various rules.
    • -
    • Add an important layer of protection to your site with our WAF (Web Application Firewall), particularly when attackers actively exploit unpatched vulnerabilities.
    • -
    • Automatically perform malware scans and security scans for other code threats. One click fix to restore your site for malware.
    • -
    • Block spam comments and form responses with anti spam features powered by Akismet.
    • -
    • Brute force attack protection to protect your WordPress login page from attacks.
    • -
    • Monitor your site uptime / downtime and get an instant alert of any change by email.
    • -
    • Secure WordPress.com powered login used by millions of sites with optional 2FA (two factor authentication) for extra protection.
    • -
    • Auto update individual plugins for easy site maintenance and management.
    • -
    -

    You can purchase all of Jetpack’s security features in our Security bundle, or VaultPress Backup, Scan, and Akismet Anti-spam can each be purchased individually.

    -

    PEAK SPEED AND PERFORMANCE

    -

    Get blazing fast site speed with Jetpack. Jetpack’s free CDN (content delivery network) auto optimizes your images. Watch your page load times decrease — we’ll optimize your images and serve them from our own powerful global network, and speed up your site on mobile devices to reduce bandwidth usage and save money!

    -
      -
    • Image CDN for images and core static files, like CSS and JavaScript, served from our servers, not yours, which saves you money and bandwidth.
    • -
    • Unlimited, high speed, ad free video hosting keeps the focus on your content, not on ads or recommendations that lead people off site.
    • -
    • Custom site search is incredibly powerful and customizable. Helps your visitors instantly find the right content so they read and buy more. Works great with WooCommerce / eCommerce sites to help filter products so customers get what they want on your site faster.
    • -
    • Recommended to use with Jetpack Boost for ultimate WordPress site speed.
    • -
    -

    POWERFUL TOOLS FOR GROWTH

    -

    Create and customize your WordPress site, optimize it for visitors and revenue, and enjoy watching your stats tick up. Build it, share it, and watch it grow.

    -
      -
    • Auto publish blog posts and products to social media by simply using our tools to connect to Facebook, Bluesky, Threads, Tumblr, Mastodon, LinkedIn, and Nextdoor.
    • -
    • Easily share Instagram posts on your pages and blog posts.
    • -
    • Collect a payment or donation, sell a product, service, or membership with simple integrations with PayPal and Stripe.
    • -
    • Grow traffic with SEO tools for Google, Bing, Facebook, and WordPress.com. XML sitemap created automatically.
    • -
    • Advertise on your site to generate revenue. The ad network automatically does the work for you to find high-quality ads that are placed on your site.
    • -
    • Manage Jetpack features from anywhere with the official WordPress mobile app, available for Apple iOS (iPhone or iPad) and Google Android.
    • -
    • Looking for Customer Relationship Management? Check out the Jetpack CRM plugin which works alongside Jetpack to give you a simple and practical way to build relationships with your customers and leads.
    • -
    -

    POWERFUL STATS TO GROW YOUR SITE

    -

    With Jetpack Stats, you don’t need to be a data scientist to see how your site is performing.

    -
      -
    • Advanced site stats and analytics to help you understand your audience.
    • -
    • Discover your top performing posts & pages.
    • -
    • See who is creating the most popular content on your team with our author metrics.
    • -
    • Easily keep track of your content creation habits & trends over the years.
    • -
    • View weekly and yearly trends with 7-day Highlights and Year in Review.
    • -
    • See what popular social networks your content is being shared to the most.
    • -
    • Explore real-time data on visitors, likes, and comments.
    • -
    • Get detailed insights on the referrers that bring traffic to your site.
    • -
    • Discover what countries your visitors are coming from.
    • -
    • Measure link clicks, video plays, and file downloads within your site.
    • -
    -

    WRITE SMARTER, NOT HARDER.

    -

    Experience the ease of crafting professional content with intuitive and powerful AI. Jetpack AI Assistant effortlessly integrates with your WordPress editor, offering an intuitive interface to interact with AI.
    -This powerful block lets you generate diverse content at your command, significantly reducing the time and effort required in content creation.

    -

    Simply provide a prompt, and watch as Jetpack AI Assistant crafts compelling blog posts, detailed pages, structured lists, and comprehensive tables – all tailored to your needs.

    -
      -
    • Harness AI power directly from your editor.
    • -
    • Unlock high-quality, tailored content at your command.
    • -
    • Maintain professional standards with ease.
    • -
    • AI-powered translations across numerous languages at your fingertips, breaking down language barriers.
    • -
    -

    PROMOTE YOUR CONTENT EASILY WITH JETPACK BLAZE

    -

    Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.

    -
      -
    • Create your ad. Choose your audience. Set your budget. It’s that easy.
    • -
    • Amplify your reach for just a few dollars.
    • -
    -

    EASY DESIGN TOOLS

    -

    Quickly customize your site to make it stand out — no coding needed.

    -
      -
    • Themes — Simple WordPress themes to get started on your site.
    • -
    • Related posts — Keep visitors on your site by automatically showing them related content they will be interested in.
    • -
    • Gallery and Slideshow tools — Image galleries, carousel slider, and slideshows for WP sites and stores.
    • -
    • Subscriptions — Make it easy for visitors to sign up to receive notifications of your latest posts and comments.
    • -
    • Contact form — Easily build unlimited contact forms for free without any coding. Receive email notifications for each response. Integrate with mail solutions like Creative Mail to reach your customers and leads quickly. Connect to Jetpack Anti spam (powered by Akismet) to filter submissions.
    • -
    • oEmbed Support — easily embed images, posts, and links from Facebook and Instagram.
    • -
    -

    INTEGRATIONS

    -

    Jetpack is updated monthly to ensure seamless integration with top WordPress plugins and other tech products.

    -
      -
    • Built for WooCommerce: Jetpack and WooCommerce are both made by Automattic. Backup, Scan, Anti-spam, integrate perfectly for Woo / eComm stores.
    • -
    • Jetpack is fully compatible with v2.0 of the official AMP plugin for WordPress.
    • -
    • Better understand your customers and marketing with Google Analytics (GA) integration.
    • -
    • Social media platforms: Instagram, Facebook, Tumblr, LinkedIn, Threads, Bluesky, Nextdoor.
    • -
    • Simple Blocks to customize your site: Pinterest, Whatsapp, Podcast player, GIFs, maps, tiled gallery, slideshow.
    • -
    • Payment processors: easily collect payments or donations and sell products through Stripe and PayPal.
    • -
    • Site speed and performance plugins: Works great with WP Super Cache by Automattic and Cloudflare.
    • -
    • Contact form: Anti-spam (Powered by Akismet) blocks spam comments for Jetpack forms, Contact Form 7, Ninja Forms, Gravity Forms, Formidable Forms, and more.
    • -
    • Other tech integrations: Instagram, Creative Mail, Mailchimp, Calendly, Whatsapp, Pinterest, Revue, and more.
    • -
    -

    EXPLORE MORE OF JETPACK

    -

    If you like Jetpack, consider checking out our other products and bundles

    -
      -
    • Jetpack Complete – The Complete bundle with real‑time security, top performance, and everything you need to grow your business.
    • -
    • Jetpack Security – Our Security bundle provides easy‑to‑use, comprehensive WordPress site security, including real‑time backups, a web application firewall, malware scanning, and spam protection.
    • -
    • Jetpack Backup – Save every change and get back online quickly with one‑click restores from Jetpack VaultPress Backup.
    • -
    • Jetpack Scan – Protect your site from bad actors around‑the‑clock ‑ with our web application firewall (WAF) and automated malware scanning with one‑click fixes.
    • -
    • Jetpack Search – Instantly deliver the most relevant results to your visitors with Jetpack Search. No coding required, no ads, and no tracking.
    • -
    • Jetpack Boost – Increase your website speed. Enjoy the same performance advantages as the world’s leading websites, no developer required.
    • -
    • Jetpack VideoPress – Display stunning‑quality video with none of the hassle. Drag and drop videos through the WordPress editor and keep the focus on your content, not the ads.
    • -
    • Jetpack AI – Turn your ideas into ready‑to‑publish content at lightspeed.
    • -
    • Jetpack Stats – Keep track of your website visits, popular posts, newsletter subscribers and more.
    • -
    • Jetpack Social – Automatically share your website content to your favorite social media platforms, from one place.
    • -
    • Jetpack CRM – Jetpack CRM has all of the tools you need to grow your business. It’s also modular, so you can customize it to suit your needs.
    • -
    • Jetpack Creator – Craft stunning content, boost your subscriber base, and monetize your online presence.
    • -
    • Jetpack Newsletter – Transform your blog posts into newsletters to easily reach your subscribers. Offer paid subscriptions and earn from your content.
    • -
    -

    KEEP SPAM OFF YOUR WEBSITE

    -
      -
    • Akismet Anti-spam – Automatically clear spam from comments and forms. Save time, get more responses, give your visitors a better experience – all without lifting a finger.
    • -
    -

    PROMOTE YOUR CONTENT FOR MORE VIEWS

    -
      -
    • Blaze – Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.
    • -
    -

    MANAGE MORE THAN ONE SITE?

    -
      -
    • Jetpack Manage – All the tools you need to manage multiple WordPress sites. Monitor site security, performance, and traffic, and get alerted if a site needs attention.
    • -
    -

    FLY HIGHER WITH INDIVIDUAL PLUGINS

    -

    Ever wish you could have just one feature of Jetpack in its own plugin? Now you can. Check out our individual plugins and install only what you need.

    - -', '15.1.1', 'Automattic', '6.7', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/jetpack.15.1.1.zip', '2011-01-20 00:00:00+00', '2025-10-10 13:23:00+00', 'https://profiles.wordpress.org/automattic/', 74, 2349, 90, 75, 4000000, 469854481, 'https://jetpack.com', NULL, 'commercial', 'https://jetpack.com/support/', 'https://wordpress.org/support/plugin/jetpack/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Jetpack – WP Security, Backup, Speed, & Growth", "slug": "jetpack", "tags": {"scan": "scan", "backup": "backup", "malware": "malware", "security": "security", "performance": "performance"}, "added": "2011-01-20", "icons": {"1x": "https://ps.w.org/jetpack/assets/icon.svg?rev=2819237", "svg": "https://ps.w.org/jetpack/assets/icon.svg?rev=2819237"}, "author": "Automattic", "rating": 74, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649", "high": "https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649"}, "ratings": {"1": 574, "2": 101, "3": 94, "4": 157, "5": 1423}, "version": "15.1.1", "homepage": "https://jetpack.com", "requires": "6.7", "sections": {"faq": "\n
    \nIs Jetpack free?\n\n

    \n

    Yes! Jetpack’s core features are free for non-commercial sites.

    \n

    These include: site stats, a high-speed CDN for images, related posts, downtime monitoring, brute force attack protection, automated sharing to social networks, sidebar customization, SEO (search engine optimization) tools, and much more.

    \n

    \n
    \nShould I purchase a paid plan?\n\n

    \n

    It depends on your site and what kind of protection, performance, and design you need. If you make money from your site, the answer is “yes.” For context, Jetpack’s paid services include real-time backups, security scanning, spam filtering, video hosting, site monetization, search, priority support, and more.

    \n

    To learn more about the essential security and WordPress services we provide and see how we can improve your site, visit our plans page.

    \n

    \n
    \nWhy do I need a WordPress.com account?\n\n

    \n

    Since Jetpack and its services are provided and hosted by WordPress.com, a WordPress.com account is required for Jetpack to function.

    \n

    \n
    \nI already have a WordPress account, but Jetpack isn’t working. What’s going on?\n\n

    \n

    A WordPress.com account is different from the account you use to log into your self-hosted WordPress. If you can log into WordPress.com, then you already have a WordPress.com account. If you can’t, you can easily create oneduring installation.

    \n

    \n
    \nHow do I view my stats?\n\n

    \n

    Once you’ve installed Jetpack, your stats will be available on your Jetpack dashboard and through the official WordPress mobile app.

    \n

    \n
    \nHow do I contribute to Jetpack?\n\n

    \n

    There are opportunities for developers at all levels to contribute. Learn more about contributing to Jetpack or consider joining our beta program.

    \n

    \n
    \nWhat else does Jetpack include?\n\n

    \n

    Jetpack is the ultimate toolkit for WP for both the classic editor and the block editor, giving you everything you need for a professional site. It includes the following features:

    \n
      \n
    • Activity log — Monitor all site changes for debug, troubleshooting, or maintenance
    • \n
    • Ads — Earn income by displaying high quality ads on your site.
    • \n
    • Beautiful Math — Use the LaTeX markup language for writing complex mathematical equations, formulas, and more.
    • \n
    • Carousel slider — Display a gorgeous full-screen photo browsing experience with comments and EXIF metadata.
    • \n
    • CDN — Helps your pages load faster by allowing Jetpack to optimize your images and serve your images and static files (like CSS and JavaScript) from our global network of servers.
    • \n
    • Comments — Replace your default comment form with an improved system with integrated social media login options.
    • \n
    • Comment Likes — Allows readers to like other comments to show their agreement, approval, or appreciation.
    • \n
    • Contact Form — Offer your readers the ability to get in touch, without giving out your personal email address.
    • \n
    • Custom CSS — Customize the appearance of your theme without creating a child theme or worrying about updates overwriting your customizations.
    • \n
    • Custom Content Types — Adds custom post types (CPTs) to your site.
    • \n
    • Downtime Monitor — Alerts you via electronic mail if your site goes down to ensure you keep uptime.
    • \n
    • Extra Sidebar Widgets — Extra widgets you can add to your blog, including RSS Links and Facebook Like Boxes.
    • \n
    • Gravatar Hovercards — Make your Gravatar profile visible to those viewing your blog.
    • \n
    • Google Analytics (GA) — Track your WordPress site statistics thanks to Google Analytics.
    • \n
    • Infinite Scroll — Pulls the next posts automatically into view when the reader approaches the bottom of the page.
    • \n
    • JSON API — Authorizes applications and services to securely connect to your blog, and allows them to use your content or offer you new functionality.
    • \n
    • Likes — Allows readers to show their appreciation for your posts with a single click.
    • \n
    • Markdown — Allows you to compose posts and comments with links, lists, and other styles using regular characters and punctuation marks. Markdown is used by writers and bloggers who want a quick and easy way to write rich text without having to take their hands off the keyboard.
    • \n
    • Malware detection – automatic malware scans that help protect your WP website with an automated resolution.
    • \n
    • Notifications — Receive notifications for new comments and Likes in your admin bar and on your mobile device.
    • \n
    • oEmbed Support — easily embed images, posts, and links from Facebook and Instagram.
    • \n
    • Plugin Management — Allows easy site maintenance by choosing which plugins update automatically.
    • \n
    • Post by Email — Publish posts using any mail client.
    • \n
    • Protect — Protect your site from traditional and distributed brute force login attacks.
    • \n
    • Publicize — Share new posts on social media networks automatically, or schedule future shares with custom messages.
    • \n
    • Related Posts — Show contextual posts your visitors might be interested in reading after they’re done with their current post.
    • \n
    • Secure Auth — Secure WordPress.com powered login used by millions of sites with optional 2FA (two factor authentication) for extra protection.
    • \n
    • Security Scanner — Anti-virus and other threat detection for your WordPress site with automated resolution.
    • \n
    • Search — A powerful replacement for WordPress’ built-in search, powered by Elasticsearch in the WordPress.com cloud
    • \n
    • SEO Tools — Optimize your site for search engines by taking advantage of our SEO tools.
    • \n
    • Sharing — Adds sharing buttons to your blog posts so readers can easily share your content.
    • \n
    • Shortcode Embeds — Embed videos from YouTube and other media across the web.
    • \n
    • Site Backup — Automatically back up your entire site. Duplicate, clone, migrate, transfer to a new host, and easily restore. Previously known as VaultPress.
    • \n
    • Site Stats — View site visits by date, as well as most popular Pages and Posts.
    • \n
    • Site Verification — Verify your site for use with Google, Bing, and Pinterest and their tools.
    • \n
    • Sitemap — Generate a list of pages to be indexed by search engines like Google or Bing.
    • \n
    • Spam Filtering — Automatically filter out spam comments, product reviews, or contact form submissions.
    • \n
    • Subscriptions — Allow visitors to receive notifications of your latest posts or comments.
    • \n
    • Tiled Galleries — Display your image galleries in three different styles: a rectangular mosaic, a square mosaic, and a circular grid.
    • \n
    • Video Hosting — Upload videos for fast, reliable hosting on WordPress.com.
    • \n
    • WP.me Shortlinks — Generate short and simple links to your content using the wp.me domain.
    • \n
    • Widget Visibility — Configure widgets to appear only on specific pages.
    • \n
    • WordPress.com Toolbar — The WordPress.com Toolbar feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.
    • \n
    \n

    \n
    \nWhat Blocks does Jetpack include?\n\n

    \n

    Blocks are the individual sections that make up a page. There are many block types for you to use. Each block can be edited or moved independently of other blocks. The following is a list of all blocks currently available in Jetpack.

    \n
      \n
    • Ad Block – The Ad block allows you to insert a Jetpack Ad unit anywhere within the content of any post or page.
    • \n
    • Business Hours Block – The Business Hours block allows you to display your business’s opening hours on your site.
    • \n
    • Calendly Block – Jetpack’s Calendly block allows your visitors to schedule one-on-one appointments, group events, and team meetings directly from your website.
    • \n
    • Contact Info Block – The Contact Info block lets you add your contact information (email address, physical address, phone number) to any post or page.
    • \n
    • Donations Block – The Donations block lets you add a payment button to any post or page for a donation, tips, and other contributions, using Stripe as the payment gateway.
    • \n
    • Eventbrite Block – With the Eventbrite block you can embed events on posts or pages.
    • \n
    • Form Block – The Form block lets you add a form to your post or page.
    • \n
    • GIF Block – The GIF block allows you to easily search for and embed an animated GIF image from Giphy directly into a post or page on your WordPress site.
    • \n
    • Google Calendar Block – The Google Calendar block allows you to easily embed a Google Calendar into your post or page
    • \n
    • Image Compare Block – The Image Compare Block allows you to display and compare the differences between two images side by side (or above and below) thanks to a slider.
    • \n
    • Latest Instagram Posts Block – The Latest Instagram Posts Block lets you display your most recent images from Instagram on your site. The block update automatically updates when you post new images to Instagram.
    • \n
    • Mailchimp Block – The Mailchimp block allows visitors to join your Mailchimp list.
    • \n
    • Map Block – The Map Block allows you to add a map to any post or page on your site.
    • \n
    • Markdown Block – With the Markdown block you can create formatted content using only regular characters and some punctuation marks.
    • \n
    • OpenTable Block – With the OpenTable block, you can add a reservation form on posts or pages.
    • \n
    • Pay with PayPal Block – Pay with PayPal lets you add a payment button to any post or page, and immediately start taking PayPal payments for physical products, digital goods, or a donation.
    • \n
    • Payments Block – The Payments Block lets you add a payment button using Stripe as the payment gateway. It works for one-time and recurring payments.
    • \n
    • Pinterest Block – The Pinterest block is the easiest way to embed Pinterest content to your site: it allows you to embed boards, profiles, and pins.
    • \n
    • Podcast Player Block – Jetpack’s Podcast Player block allows you to easily show your visitors a listing of recent episodes from a podcast and play them on your website.
    • \n
    • Related Posts Block – The Related Posts feature scans all of your posts’ contents, analyzes it, and uses that to display contextual posts your visitors might be interested in reading after they’re finished with the current post.
    • \n
    • Repeat Visitor Block – The Repeat Visitor block enables the author to control the visibility of its nested block(s) depending on how many times a visitor has previously visited the page.
    • \n
    • Revue Block – The Revue block creates a simple signup form for readers to opt-in to receive your newsletter.
    • \n
    • Slideshow Block – The Slideshow block lets you insert an image slideshow into a post or page.
    • \n
    • Star Rating Block – The Ratings block allows any site author to add reviews to the site.
    • \n
    • Subscription Form Block – The Subscription Form Block allows you to insert a subscription form within the content area of any post or page, enabling your readers to get notifications when you publish new posts.
    • \n
    • Tiled Gallery Block – With Tiled Galleries you can display your image galleries in four styles: tiled mosaic, circular grid, square tiles, and tiled columns.
    • \n
    • Video Block – The Video block enhances the existing WordPress Video block and allows you to upload videos from your computer to be hosted on WordPress.com, rather than on your host’s servers.
    • \n
    • WhatsApp Button Block – The WhatsAPP Button block will allow your customers to send them a message to enquire about their product or services, or ask for support. Clicking on the button will open WhatsApp and pre-fill the phone number and initial message.
    • \n
    \n

    Jetpack has also created extensions for some WordPress core blocks:

    \n
      \n
    • Social Previews – This extension of the Block Editor allows you to preview what your post / page will look like on search engines and social media.
    • \n
    \n

    \n
    \nDo I need an SSL certificate?\n\n

    \n

    You don’t need an SSL Certificate to run Jetpack on your WordPress website. However, it’s recommended to integrate them both into your overall WordPress security strategy. An SSL certificate (Secure Sockets Layer certificate) creates a secure connection between your website and your site visitors’ browsers. It encrypts any data shared on your site — like addresses, emails, phone numbers, and credit card information — and protects that data from hackers.

    \n

    If you don’t have an SSL certificate, your site will show a “not secure” warning on users’ browsers, which can reduce your legitimacy in their eyes. SSL certificates also have a positive impact on search engine rankings.

    \n

    The process of setting up an SSL certificate will depend on your hosting provider. Some hosts include free certificates, while others charge annually.

    \n

    \n
    \nHow does Jetpack work with WP Super Cache?\n\n

    \n

    WP Super Cache works by caching your WordPress pages as static HTML pages so that page requests, for an already cached page, do not need to be processed by the WordPress PHP scripts. Typically, most visitors of your site will view cached versions of the WordPress pages, so your server will have more processing power to serve an increased number of users.

    \n

    Jetpack has an image CDN that works by caching and serving your WordPress images globally from its own servers. These plugins are both maintained by Automattic and work together to give you ultimate site speed.

    \n

    Automattic actively develops Jetpack Boost to help you increase your website speed in ways beyond WP Super Cache. We recommend using Jetpack Boost instead of WP Super Cache.

    \n

    \n
    \nWhat version of PHP do I need?\n\n

    \n

    Sites must be built on PHP 7.2 or greater, but Jetpack always supports the latest version of PHP.

    \n

    \n
    \nCan Jetpack help my site comply with GDPR?\n\n

    \n

    Our Cookie and Consent Banner can help you comply with GDPR. The European Union’s ePrivacy Directive (often referred to as the ‘cookie law’) and General Data Protection Regulation (GDPR) place requirements on website owners and operators to provide information about, and gain consent for their use of cookies.

    \n

    \n
    \nCan Jetpack be used to transfer websites to a new host?\n\n

    \n

    Jetpack Backup can do a full website migration to a new host, migrate theme files and plugins to a new database, create full database backups, clone websites, repair broken websites by restoring older backups and allow you to easily set up a test site by creating a duplicate of your existing website.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Love it.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fufy on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just love this app.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Stats restored after URL Change

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anne Milne on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I lost both my subscriber list and my historical stats after I changed my URL. Jetpack calls this an Identity Crisis. I explained what had happened on the Forum and it was all restored within 48 hours. Very please with the service.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to restore, easy to backup, super useful option, love it

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lizradtke on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Haven''t had any issues, really helpful and works well

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Atrocious! Did the opposite of what it was supposed to do!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy justaddclaws on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Held me back for years by slowing my sight down so much as to be non-viable as a business prospect. Took me years and finally enlisting the help of ChatGPT to troubleshoot what was going on and, BINGO, Jetpack Boost!!!!!! A total waste of my time and money. I''ve happily just deleted my subscription and will be deleting everything to do with Jetpack right now!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A handy plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fever100 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s a handy plugin that helps keep your site running fast. It’s easy to use and has lots of great tools to make your website better.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Saved

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Detlef (detlefm) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s almost a miracle. I accidentally messed up my database with incorrect data. Then the Jetpack page appeared, and in no time at all, everything was back to normal. Simply brilliant! This saved me at least a day''s work. Thanks, Jetpack.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Attracting an Audience with a Paywall

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy milium5 on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Can I still attract an audience to my website if it uses a payment or subscription model? It feels like there’s a barrier keeping visitors from fully engaging with it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good All-in-One Tool, But Heavy on Performance

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy keithclambert on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Jetpack is packed with useful features — from backups to security and even analytics. It’s great for beginners who want everything in one place.
    However, I noticed my site took longer to load after activating several modules. It’s a solid plugin, but definitely not the lightest option out there. If you have a small site, it’s fine — just monitor your speed.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    horrible

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pieter Bos (senlin) on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    When a plugin, without releasing an update, wreaks havoc among sites bringing them down with Fatal Errors during a weekend, you know you''re dealing with a horrible piece of junk.

    \n\n\n\n

    Avoid this \"plugin\" like the plague!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    good better

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rahul32 on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Can I attract an audience to my site with a payment and subscription model? It feels like there’s some kind of barrier between visitors and the website.

    \n
    \n
    \n", "changelog": "

    15.1.1 – 2025-10-10

    \n

    Bug fixes

    \n
      \n
    • Asset CDN: avoid errors when we do not receive valid information about a plugin from WordPress.org.
    • \n
    \n

    15.1 – 2025-10-08

    \n
      \n
    • Testimonials: Prevent warning when custom post type is not registered.
    • \n
    \n

    Enhancements

    \n
      \n
    • Forms: Add hidden field.
    • \n
    • Forms: Add hidden input field block.
    • \n
    • Forms: Add integrations permissions check.
    • \n
    • Forms: Add new block toggle to skip saving form submisions on WP Admin.
    • \n
    • Forms: Add preloaded config endpoint.
    • \n
    • Forms: Add scheduled deletion for submissions that skip the submission’s inbox and are stored as temporary feedback.
    • \n
    • Forms: Add setting to enable or disable email notifications for form submissions.
    • \n
    • Forms: Allow enabling integration by default.
    • \n
    • Forms: Improve preloading for endpoints.
    • \n
    • Forms: Improve supported integrations filter.
    • \n
    • Forms: Make rating and slider fields available to self-hosted users.
    • \n
    • Forms: Phone field can now contain a country selector combobox.
    • \n
    • Forms: Rename ‘Manage responses’ forms sidebar block panel to ‘Responses storage’.
    • \n
    • Forms: Return integration titles from endpoint.
    • \n
    • Forms: Use localized number format for number of responses shown.
    • \n
    \n

    Improved compatibility

    \n
      \n
    • Change the location of the Jetpack -> Stats submenu item to a new top-level admin menu item called “Stats”.
    • \n
    • Cookie Consent Block: Ensure we always have a default set of colors to style the block when theme colors are not available.
    • \n
    • Forms: Add integrations feature flag.
    • \n
    • Site Accelerator (Image CDN): Add support for images added via Breakdance blocks.
    • \n
    \n

    Bug fixes

    \n
      \n
    • AI Assistant: Fix spacing on Forms block.
    • \n
    • Cookie Consent Widget: Ensure the default widget text can be translated.
    • \n
    • Forms: Don’t override field labels on transforms.
    • \n
    • Forms: Fix MailPoet string warning.
    • \n
    • Forms: Fix missing REST attributes.
    • \n
    • Forms: Fix slider min/max editing.
    • \n
    • Forms: Fix slider value position.
    • \n
    • Resolve conflict with WordPress 6.7.3.
    • \n
    • Sharing: Fix Facebook sharing URL.
    • \n
    • Widget Visibility: Prevent PHP error under specific block conditions.
    • \n
    \n

    See the previous changelogs here

    \n", "description": "

    JETPACK – THE BEST WORDPRESS PLUGIN

    \n

    \n

    Jetpack is a WordPress plugin that helps you create better content, grow your subscribers, earn money from your website and keep it safe, fast, and secure. You can grow and keep track of your website traffic with Jetpack stats, and create better content with Jetpack AI. You can start a newsletter and grow your audience, turning fans into paying subscribers. Create beautiful content with Jetpack Creator and keep your site fast with Jetpack Boost.

    \n

    HOW TO GET STARTED WITH JETPACK

    \n

    Installation is free, quick, and easy. Set up Jetpack in minutes. Take advantage of more robust features like WordPress site security and design and growth tools by upgrading to a paid plan.

    \n

    NEED EXPERT SUPPORT?

    \n

    We have a global team of Happiness Engineers ready to provide incredible support. Ask your questions in the support forum or contact support.

    \n

    WHY USE JETPACK ON YOUR SITE

    \n

    Safer. Faster. More traffic.

    \n

    WordPress security, performance, marketing, and design tools — Jetpack is made by WordPress experts to make WP sites safer and faster, and help you grow your traffic.

    \n

    24/7 AUTO SITE SECURITY

    \n

    We guard your site so you can run your site or business. Jetpack Security provides easy-to-use, comprehensive WordPress site security including auto real-time backups and easy restores, malware scans, and spam protection. Essential features like brute force protection and basic downtime / uptime monitoring are free.

    \n
      \n
    • Back up your site automatically in real time and restore to any point with one click. Cloud storage starts at 10GB, which is more than enough for most sites, with additional storage options available if needed. Great for eCommerce stores especially Woo.
    • \n
    • Manage migration to a new host, migrate theme files and plugins to a new database, easily duplicate websites, create full database backups, clone websites, repair broken websites by restoring older backups or easily set up a test site by creating a duplicate of your existing WP website.
    • \n
    • See every site change and who made it with the activity log, great for coordination, debug, maintenance, or troubleshooting.
    • \n
    • Examine incoming traffic to your WordPress site with our WAF (Web Application Firewall) and decide to allow or block it based on various rules.
    • \n
    • Add an important layer of protection to your site with our WAF (Web Application Firewall), particularly when attackers actively exploit unpatched vulnerabilities.
    • \n
    • Automatically perform malware scans and security scans for other code threats. One click fix to restore your site for malware.
    • \n
    • Block spam comments and form responses with anti spam features powered by Akismet.
    • \n
    • Brute force attack protection to protect your WordPress login page from attacks.
    • \n
    • Monitor your site uptime / downtime and get an instant alert of any change by email.
    • \n
    • Secure WordPress.com powered login used by millions of sites with optional 2FA (two factor authentication) for extra protection.
    • \n
    • Auto update individual plugins for easy site maintenance and management.
    • \n
    \n

    You can purchase all of Jetpack’s security features in our Security bundle, or VaultPress Backup, Scan, and Akismet Anti-spam can each be purchased individually.

    \n

    PEAK SPEED AND PERFORMANCE

    \n

    Get blazing fast site speed with Jetpack. Jetpack’s free CDN (content delivery network) auto optimizes your images. Watch your page load times decrease — we’ll optimize your images and serve them from our own powerful global network, and speed up your site on mobile devices to reduce bandwidth usage and save money!

    \n
      \n
    • Image CDN for images and core static files, like CSS and JavaScript, served from our servers, not yours, which saves you money and bandwidth.
    • \n
    • Unlimited, high speed, ad free video hosting keeps the focus on your content, not on ads or recommendations that lead people off site.
    • \n
    • Custom site search is incredibly powerful and customizable. Helps your visitors instantly find the right content so they read and buy more. Works great with WooCommerce / eCommerce sites to help filter products so customers get what they want on your site faster.
    • \n
    • Recommended to use with Jetpack Boost for ultimate WordPress site speed.
    • \n
    \n

    POWERFUL TOOLS FOR GROWTH

    \n

    Create and customize your WordPress site, optimize it for visitors and revenue, and enjoy watching your stats tick up. Build it, share it, and watch it grow.

    \n
      \n
    • Auto publish blog posts and products to social media by simply using our tools to connect to Facebook, Bluesky, Threads, Tumblr, Mastodon, LinkedIn, and Nextdoor.
    • \n
    • Easily share Instagram posts on your pages and blog posts.
    • \n
    • Collect a payment or donation, sell a product, service, or membership with simple integrations with PayPal and Stripe.
    • \n
    • Grow traffic with SEO tools for Google, Bing, Facebook, and WordPress.com. XML sitemap created automatically.
    • \n
    • Advertise on your site to generate revenue. The ad network automatically does the work for you to find high-quality ads that are placed on your site.
    • \n
    • Manage Jetpack features from anywhere with the official WordPress mobile app, available for Apple iOS (iPhone or iPad) and Google Android.
    • \n
    • Looking for Customer Relationship Management? Check out the Jetpack CRM plugin which works alongside Jetpack to give you a simple and practical way to build relationships with your customers and leads.
    • \n
    \n

    POWERFUL STATS TO GROW YOUR SITE

    \n

    With Jetpack Stats, you don’t need to be a data scientist to see how your site is performing.

    \n
      \n
    • Advanced site stats and analytics to help you understand your audience.
    • \n
    • Discover your top performing posts & pages.
    • \n
    • See who is creating the most popular content on your team with our author metrics.
    • \n
    • Easily keep track of your content creation habits & trends over the years.
    • \n
    • View weekly and yearly trends with 7-day Highlights and Year in Review.
    • \n
    • See what popular social networks your content is being shared to the most.
    • \n
    • Explore real-time data on visitors, likes, and comments.
    • \n
    • Get detailed insights on the referrers that bring traffic to your site.
    • \n
    • Discover what countries your visitors are coming from.
    • \n
    • Measure link clicks, video plays, and file downloads within your site.
    • \n
    \n

    WRITE SMARTER, NOT HARDER.

    \n

    Experience the ease of crafting professional content with intuitive and powerful AI. Jetpack AI Assistant effortlessly integrates with your WordPress editor, offering an intuitive interface to interact with AI.
    \nThis powerful block lets you generate diverse content at your command, significantly reducing the time and effort required in content creation.

    \n

    Simply provide a prompt, and watch as Jetpack AI Assistant crafts compelling blog posts, detailed pages, structured lists, and comprehensive tables – all tailored to your needs.

    \n
      \n
    • Harness AI power directly from your editor.
    • \n
    • Unlock high-quality, tailored content at your command.
    • \n
    • Maintain professional standards with ease.
    • \n
    • AI-powered translations across numerous languages at your fingertips, breaking down language barriers.
    • \n
    \n

    PROMOTE YOUR CONTENT EASILY WITH JETPACK BLAZE

    \n

    Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.

    \n
      \n
    • Create your ad. Choose your audience. Set your budget. It’s that easy.
    • \n
    • Amplify your reach for just a few dollars.
    • \n
    \n

    EASY DESIGN TOOLS

    \n

    Quickly customize your site to make it stand out — no coding needed.

    \n
      \n
    • Themes — Simple WordPress themes to get started on your site.
    • \n
    • Related posts — Keep visitors on your site by automatically showing them related content they will be interested in.
    • \n
    • Gallery and Slideshow tools — Image galleries, carousel slider, and slideshows for WP sites and stores.
    • \n
    • Subscriptions — Make it easy for visitors to sign up to receive notifications of your latest posts and comments.
    • \n
    • Contact form — Easily build unlimited contact forms for free without any coding. Receive email notifications for each response. Integrate with mail solutions like Creative Mail to reach your customers and leads quickly. Connect to Jetpack Anti spam (powered by Akismet) to filter submissions.
    • \n
    • oEmbed Support — easily embed images, posts, and links from Facebook and Instagram.
    • \n
    \n

    INTEGRATIONS

    \n

    Jetpack is updated monthly to ensure seamless integration with top WordPress plugins and other tech products.

    \n
      \n
    • Built for WooCommerce: Jetpack and WooCommerce are both made by Automattic. Backup, Scan, Anti-spam, integrate perfectly for Woo / eComm stores.
    • \n
    • Jetpack is fully compatible with v2.0 of the official AMP plugin for WordPress.
    • \n
    • Better understand your customers and marketing with Google Analytics (GA) integration.
    • \n
    • Social media platforms: Instagram, Facebook, Tumblr, LinkedIn, Threads, Bluesky, Nextdoor.
    • \n
    • Simple Blocks to customize your site: Pinterest, Whatsapp, Podcast player, GIFs, maps, tiled gallery, slideshow.
    • \n
    • Payment processors: easily collect payments or donations and sell products through Stripe and PayPal.
    • \n
    • Site speed and performance plugins: Works great with WP Super Cache by Automattic and Cloudflare.
    • \n
    • Contact form: Anti-spam (Powered by Akismet) blocks spam comments for Jetpack forms, Contact Form 7, Ninja Forms, Gravity Forms, Formidable Forms, and more.
    • \n
    • Other tech integrations: Instagram, Creative Mail, Mailchimp, Calendly, Whatsapp, Pinterest, Revue, and more.
    • \n
    \n

    EXPLORE MORE OF JETPACK

    \n

    If you like Jetpack, consider checking out our other products and bundles

    \n
      \n
    • Jetpack Complete – The Complete bundle with real‑time security, top performance, and everything you need to grow your business.
    • \n
    • Jetpack Security – Our Security bundle provides easy‑to‑use, comprehensive WordPress site security, including real‑time backups, a web application firewall, malware scanning, and spam protection.
    • \n
    • Jetpack Backup – Save every change and get back online quickly with one‑click restores from Jetpack VaultPress Backup.
    • \n
    • Jetpack Scan – Protect your site from bad actors around‑the‑clock ‑ with our web application firewall (WAF) and automated malware scanning with one‑click fixes.
    • \n
    • Jetpack Search – Instantly deliver the most relevant results to your visitors with Jetpack Search. No coding required, no ads, and no tracking.
    • \n
    • Jetpack Boost – Increase your website speed. Enjoy the same performance advantages as the world’s leading websites, no developer required.
    • \n
    • Jetpack VideoPress – Display stunning‑quality video with none of the hassle. Drag and drop videos through the WordPress editor and keep the focus on your content, not the ads.
    • \n
    • Jetpack AI – Turn your ideas into ready‑to‑publish content at lightspeed.
    • \n
    • Jetpack Stats – Keep track of your website visits, popular posts, newsletter subscribers and more.
    • \n
    • Jetpack Social – Automatically share your website content to your favorite social media platforms, from one place.
    • \n
    • Jetpack CRM – Jetpack CRM has all of the tools you need to grow your business. It’s also modular, so you can customize it to suit your needs.
    • \n
    • Jetpack Creator – Craft stunning content, boost your subscriber base, and monetize your online presence.
    • \n
    • Jetpack Newsletter – Transform your blog posts into newsletters to easily reach your subscribers. Offer paid subscriptions and earn from your content.
    • \n
    \n

    KEEP SPAM OFF YOUR WEBSITE

    \n
      \n
    • Akismet Anti-spam – Automatically clear spam from comments and forms. Save time, get more responses, give your visitors a better experience – all without lifting a finger.
    • \n
    \n

    PROMOTE YOUR CONTENT FOR MORE VIEWS

    \n
      \n
    • Blaze – Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.
    • \n
    \n

    MANAGE MORE THAN ONE SITE?

    \n
      \n
    • Jetpack Manage – All the tools you need to manage multiple WordPress sites. Monitor site security, performance, and traffic, and get alerted if a site needs attention.
    • \n
    \n

    FLY HIGHER WITH INDIVIDUAL PLUGINS

    \n

    Ever wish you could have just one feature of Jetpack in its own plugin? Now you can. Check out our individual plugins and install only what you need.

    \n\n", "screenshots": "
    1. \"Jetpack

      Jetpack Security provides easy-to-use, comprehensive WordPress site security including backups, malware scanning, and spam protection.

    2. \"Save

      Save every change with real-time backups and get back online quickly with one-click restores.

    3. \"Automated

      Automated malware scanning and one-click fixes keep your site one step ahead of security threats.

    4. \"Promote

      Promote your newest posts, pages, and products across your social media channels.

    5. \"Incredibly

      Incredibly powerful and customizable, help your visitors instantly find the right content – right when they need it.

    6. \"See

      See what’s working with content performance metrics. Simple, yet powerful stats to grow your site.

    7. \"Stunning‑quality

      Stunning‑quality video with none of the hassle. Drag and drop videos through the WordPress editor and keep the focus on your content, not the ads.

    ", "installation": "

    Automated Installation

    \n

    Installation is free, quick, and easy. Set up Jetpack in minutes.

    \n

    Manual Alternatives

    \n

    Alternatively, install Jetpack via the plugin directory, or upload the files manually to your server and follow the on-screen instructions. If you need additional help read our detailed instructions.

    \n"}, "versions": {"6.1": "https://downloads.wordpress.org/plugin/jetpack.6.1.zip", "6.2": "https://downloads.wordpress.org/plugin/jetpack.6.2.zip", "6.3": "https://downloads.wordpress.org/plugin/jetpack.6.3.zip", "6.4": "https://downloads.wordpress.org/plugin/jetpack.6.4.zip", "6.5": "https://downloads.wordpress.org/plugin/jetpack.6.5.zip", "6.6": "https://downloads.wordpress.org/plugin/jetpack.6.6.zip", "6.7": "https://downloads.wordpress.org/plugin/jetpack.6.7.zip", "6.8": "https://downloads.wordpress.org/plugin/jetpack.6.8.zip", "6.9": "https://downloads.wordpress.org/plugin/jetpack.6.9.zip", "7.0": "https://downloads.wordpress.org/plugin/jetpack.7.0.zip", "7.1": "https://downloads.wordpress.org/plugin/jetpack.7.1.zip", "7.2": "https://downloads.wordpress.org/plugin/jetpack.7.2.zip", "7.3": "https://downloads.wordpress.org/plugin/jetpack.7.3.zip", "7.4": "https://downloads.wordpress.org/plugin/jetpack.7.4.zip", "7.5": "https://downloads.wordpress.org/plugin/jetpack.7.5.zip", "7.6": "https://downloads.wordpress.org/plugin/jetpack.7.6.zip", "7.7": "https://downloads.wordpress.org/plugin/jetpack.7.7.zip", "7.8": "https://downloads.wordpress.org/plugin/jetpack.7.8.zip", "7.9": "https://downloads.wordpress.org/plugin/jetpack.7.9.zip", "8.0": "https://downloads.wordpress.org/plugin/jetpack.8.0.zip", "8.1": "https://downloads.wordpress.org/plugin/jetpack.8.1.zip", "8.2": "https://downloads.wordpress.org/plugin/jetpack.8.2.zip", "8.3": "https://downloads.wordpress.org/plugin/jetpack.8.3.zip", "8.4": "https://downloads.wordpress.org/plugin/jetpack.8.4.zip", "8.5": "https://downloads.wordpress.org/plugin/jetpack.8.5.zip", "8.6": "https://downloads.wordpress.org/plugin/jetpack.8.6.zip", "8.7": "https://downloads.wordpress.org/plugin/jetpack.8.7.zip", "8.8": "https://downloads.wordpress.org/plugin/jetpack.8.8.zip", "8.9": "https://downloads.wordpress.org/plugin/jetpack.8.9.zip", "9.0": "https://downloads.wordpress.org/plugin/jetpack.9.0.zip", "9.1": "https://downloads.wordpress.org/plugin/jetpack.9.1.zip", "9.2": "https://downloads.wordpress.org/plugin/jetpack.9.2.zip", "9.3": "https://downloads.wordpress.org/plugin/jetpack.9.3.zip", "9.4": "https://downloads.wordpress.org/plugin/jetpack.9.4.zip", "9.5": "https://downloads.wordpress.org/plugin/jetpack.9.5.zip", "9.6": "https://downloads.wordpress.org/plugin/jetpack.9.6.zip", "9.7": "https://downloads.wordpress.org/plugin/jetpack.9.7.zip", "9.8": "https://downloads.wordpress.org/plugin/jetpack.9.8.zip", "9.9": "https://downloads.wordpress.org/plugin/jetpack.9.9.zip", "10.0": "https://downloads.wordpress.org/plugin/jetpack.10.0.zip", "10.1": "https://downloads.wordpress.org/plugin/jetpack.10.1.zip", "10.2": "https://downloads.wordpress.org/plugin/jetpack.10.2.zip", "10.3": "https://downloads.wordpress.org/plugin/jetpack.10.3.zip", "10.4": "https://downloads.wordpress.org/plugin/jetpack.10.4.zip", "10.5": "https://downloads.wordpress.org/plugin/jetpack.10.5.zip", "10.6": "https://downloads.wordpress.org/plugin/jetpack.10.6.zip", "10.7": "https://downloads.wordpress.org/plugin/jetpack.10.7.zip", "10.8": "https://downloads.wordpress.org/plugin/jetpack.10.8.zip", "10.9": "https://downloads.wordpress.org/plugin/jetpack.10.9.zip", "11.0": "https://downloads.wordpress.org/plugin/jetpack.11.0.zip", "11.1": "https://downloads.wordpress.org/plugin/jetpack.11.1.zip", "11.2": "https://downloads.wordpress.org/plugin/jetpack.11.2.zip", "11.3": "https://downloads.wordpress.org/plugin/jetpack.11.3.zip", "11.4": "https://downloads.wordpress.org/plugin/jetpack.11.4.zip", "11.5": "https://downloads.wordpress.org/plugin/jetpack.11.5.zip", "11.6": "https://downloads.wordpress.org/plugin/jetpack.11.6.zip", "11.7": "https://downloads.wordpress.org/plugin/jetpack.11.7.zip", "11.8": "https://downloads.wordpress.org/plugin/jetpack.11.8.zip", "11.9": "https://downloads.wordpress.org/plugin/jetpack.11.9.zip", "12.0": "https://downloads.wordpress.org/plugin/jetpack.12.0.zip", "12.1": "https://downloads.wordpress.org/plugin/jetpack.12.1.zip", "12.2": "https://downloads.wordpress.org/plugin/jetpack.12.2.zip", "12.3": "https://downloads.wordpress.org/plugin/jetpack.12.3.zip", "12.4": "https://downloads.wordpress.org/plugin/jetpack.12.4.zip", "12.5": "https://downloads.wordpress.org/plugin/jetpack.12.5.zip", "12.6": "https://downloads.wordpress.org/plugin/jetpack.12.6.zip", "12.7": "https://downloads.wordpress.org/plugin/jetpack.12.7.zip", "12.8": "https://downloads.wordpress.org/plugin/jetpack.12.8.zip", "12.9": "https://downloads.wordpress.org/plugin/jetpack.12.9.zip", "13.0": "https://downloads.wordpress.org/plugin/jetpack.13.0.zip", "13.1": "https://downloads.wordpress.org/plugin/jetpack.13.1.zip", "13.2": "https://downloads.wordpress.org/plugin/jetpack.13.2.zip", "13.3": "https://downloads.wordpress.org/plugin/jetpack.13.3.zip", "13.4": "https://downloads.wordpress.org/plugin/jetpack.13.4.zip", "13.5": "https://downloads.wordpress.org/plugin/jetpack.13.5.zip", "13.6": "https://downloads.wordpress.org/plugin/jetpack.13.6.zip", "13.7": "https://downloads.wordpress.org/plugin/jetpack.13.7.zip", "13.8": "https://downloads.wordpress.org/plugin/jetpack.13.8.zip", "13.9": "https://downloads.wordpress.org/plugin/jetpack.13.9.zip", "14.0": "https://downloads.wordpress.org/plugin/jetpack.14.0.zip", "14.1": "https://downloads.wordpress.org/plugin/jetpack.14.1.zip", "14.2": "https://downloads.wordpress.org/plugin/jetpack.14.2.zip", "14.3": "https://downloads.wordpress.org/plugin/jetpack.14.3.zip", "14.4": "https://downloads.wordpress.org/plugin/jetpack.14.4.zip", "14.5": "https://downloads.wordpress.org/plugin/jetpack.14.5.zip", "14.6": "https://downloads.wordpress.org/plugin/jetpack.14.6.zip", "14.7": "https://downloads.wordpress.org/plugin/jetpack.14.7.zip", "14.8": "https://downloads.wordpress.org/plugin/jetpack.14.8.zip", "14.9": "https://downloads.wordpress.org/plugin/jetpack.14.9.zip", "15.0": "https://downloads.wordpress.org/plugin/jetpack.15.0.zip", "15.1": "https://downloads.wordpress.org/plugin/jetpack.15.1.zip", "2.0.9": "https://downloads.wordpress.org/plugin/jetpack.2.0.9.zip", "2.1.7": "https://downloads.wordpress.org/plugin/jetpack.2.1.7.zip", "2.4.7": "https://downloads.wordpress.org/plugin/jetpack.2.4.7.zip", "2.5.5": "https://downloads.wordpress.org/plugin/jetpack.2.5.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/jetpack.2.6.6.zip", "2.7.5": "https://downloads.wordpress.org/plugin/jetpack.2.7.5.zip", "2.8.5": "https://downloads.wordpress.org/plugin/jetpack.2.8.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/jetpack.2.9.6.zip", "3.0.6": "https://downloads.wordpress.org/plugin/jetpack.3.0.6.zip", "3.1.5": "https://downloads.wordpress.org/plugin/jetpack.3.1.5.zip", "3.2.5": "https://downloads.wordpress.org/plugin/jetpack.3.2.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/jetpack.3.3.6.zip", "3.4.6": "https://downloads.wordpress.org/plugin/jetpack.3.4.6.zip", "3.5.6": "https://downloads.wordpress.org/plugin/jetpack.3.5.6.zip", "3.6.4": "https://downloads.wordpress.org/plugin/jetpack.3.6.4.zip", "3.7.5": "https://downloads.wordpress.org/plugin/jetpack.3.7.5.zip", "3.8.5": "https://downloads.wordpress.org/plugin/jetpack.3.8.5.zip", "4.0.7": "https://downloads.wordpress.org/plugin/jetpack.4.0.7.zip", "4.1.4": "https://downloads.wordpress.org/plugin/jetpack.4.1.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/jetpack.4.2.5.zip", "4.3.5": "https://downloads.wordpress.org/plugin/jetpack.4.3.5.zip", "4.4.5": "https://downloads.wordpress.org/plugin/jetpack.4.4.5.zip", "4.5.3": "https://downloads.wordpress.org/plugin/jetpack.4.5.3.zip", "4.6.3": "https://downloads.wordpress.org/plugin/jetpack.4.6.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/jetpack.4.7.4.zip", "4.8.5": "https://downloads.wordpress.org/plugin/jetpack.4.8.5.zip", "4.9.3": "https://downloads.wordpress.org/plugin/jetpack.4.9.3.zip", "5.0.3": "https://downloads.wordpress.org/plugin/jetpack.5.0.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/jetpack.5.1.4.zip", "5.2.5": "https://downloads.wordpress.org/plugin/jetpack.5.2.5.zip", "5.3.4": "https://downloads.wordpress.org/plugin/jetpack.5.3.4.zip", "5.4.4": "https://downloads.wordpress.org/plugin/jetpack.5.4.4.zip", "5.5.5": "https://downloads.wordpress.org/plugin/jetpack.5.5.5.zip", "5.6.5": "https://downloads.wordpress.org/plugin/jetpack.5.6.5.zip", "5.7.5": "https://downloads.wordpress.org/plugin/jetpack.5.7.5.zip", "5.8.4": "https://downloads.wordpress.org/plugin/jetpack.5.8.4.zip", "5.9.4": "https://downloads.wordpress.org/plugin/jetpack.5.9.4.zip", "6.0.4": "https://downloads.wordpress.org/plugin/jetpack.6.0.4.zip", "6.1.1": "https://downloads.wordpress.org/plugin/jetpack.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/jetpack.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/jetpack.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/jetpack.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/jetpack.6.1.5.zip", "6.2.1": "https://downloads.wordpress.org/plugin/jetpack.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/jetpack.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/jetpack.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/jetpack.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/jetpack.6.2.5.zip", "6.3.1": "https://downloads.wordpress.org/plugin/jetpack.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/jetpack.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/jetpack.6.3.3.zip", "6.3.4": "https://downloads.wordpress.org/plugin/jetpack.6.3.4.zip", "6.3.5": "https://downloads.wordpress.org/plugin/jetpack.6.3.5.zip", "6.3.6": "https://downloads.wordpress.org/plugin/jetpack.6.3.6.zip", "6.3.7": "https://downloads.wordpress.org/plugin/jetpack.6.3.7.zip", "6.4.1": "https://downloads.wordpress.org/plugin/jetpack.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/jetpack.6.4.2.zip", "6.4.3": "https://downloads.wordpress.org/plugin/jetpack.6.4.3.zip", "6.4.4": "https://downloads.wordpress.org/plugin/jetpack.6.4.4.zip", "6.4.5": "https://downloads.wordpress.org/plugin/jetpack.6.4.5.zip", "6.4.6": "https://downloads.wordpress.org/plugin/jetpack.6.4.6.zip", "6.5.1": "https://downloads.wordpress.org/plugin/jetpack.6.5.1.zip", "6.5.2": "https://downloads.wordpress.org/plugin/jetpack.6.5.2.zip", "6.5.3": "https://downloads.wordpress.org/plugin/jetpack.6.5.3.zip", "6.5.4": "https://downloads.wordpress.org/plugin/jetpack.6.5.4.zip", "6.6.1": "https://downloads.wordpress.org/plugin/jetpack.6.6.1.zip", "6.6.2": "https://downloads.wordpress.org/plugin/jetpack.6.6.2.zip", "6.6.3": "https://downloads.wordpress.org/plugin/jetpack.6.6.3.zip", "6.6.4": "https://downloads.wordpress.org/plugin/jetpack.6.6.4.zip", "6.6.5": "https://downloads.wordpress.org/plugin/jetpack.6.6.5.zip", "6.7.1": "https://downloads.wordpress.org/plugin/jetpack.6.7.1.zip", "6.7.2": "https://downloads.wordpress.org/plugin/jetpack.6.7.2.zip", "6.7.3": "https://downloads.wordpress.org/plugin/jetpack.6.7.3.zip", "6.7.4": "https://downloads.wordpress.org/plugin/jetpack.6.7.4.zip", "6.8.1": "https://downloads.wordpress.org/plugin/jetpack.6.8.1.zip", "6.8.2": "https://downloads.wordpress.org/plugin/jetpack.6.8.2.zip", "6.8.3": "https://downloads.wordpress.org/plugin/jetpack.6.8.3.zip", "6.8.4": "https://downloads.wordpress.org/plugin/jetpack.6.8.4.zip", "6.8.5": "https://downloads.wordpress.org/plugin/jetpack.6.8.5.zip", "6.9.1": "https://downloads.wordpress.org/plugin/jetpack.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/jetpack.6.9.2.zip", "6.9.3": "https://downloads.wordpress.org/plugin/jetpack.6.9.3.zip", "6.9.4": "https://downloads.wordpress.org/plugin/jetpack.6.9.4.zip", "7.0.1": "https://downloads.wordpress.org/plugin/jetpack.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/jetpack.7.0.2.zip", "7.0.3": "https://downloads.wordpress.org/plugin/jetpack.7.0.3.zip", "7.0.4": "https://downloads.wordpress.org/plugin/jetpack.7.0.4.zip", "7.0.5": "https://downloads.wordpress.org/plugin/jetpack.7.0.5.zip", "7.1.1": "https://downloads.wordpress.org/plugin/jetpack.7.1.1.zip", "7.1.2": "https://downloads.wordpress.org/plugin/jetpack.7.1.2.zip", "7.1.3": "https://downloads.wordpress.org/plugin/jetpack.7.1.3.zip", "7.1.4": "https://downloads.wordpress.org/plugin/jetpack.7.1.4.zip", "7.1.5": "https://downloads.wordpress.org/plugin/jetpack.7.1.5.zip", "7.2.1": "https://downloads.wordpress.org/plugin/jetpack.7.2.1.zip", "7.2.2": "https://downloads.wordpress.org/plugin/jetpack.7.2.2.zip", "7.2.3": "https://downloads.wordpress.org/plugin/jetpack.7.2.3.zip", "7.2.4": "https://downloads.wordpress.org/plugin/jetpack.7.2.4.zip", "7.2.5": "https://downloads.wordpress.org/plugin/jetpack.7.2.5.zip", "7.3.1": "https://downloads.wordpress.org/plugin/jetpack.7.3.1.zip", "7.3.2": "https://downloads.wordpress.org/plugin/jetpack.7.3.2.zip", "7.3.3": "https://downloads.wordpress.org/plugin/jetpack.7.3.3.zip", "7.3.4": "https://downloads.wordpress.org/plugin/jetpack.7.3.4.zip", "7.3.5": "https://downloads.wordpress.org/plugin/jetpack.7.3.5.zip", "7.4.1": "https://downloads.wordpress.org/plugin/jetpack.7.4.1.zip", "7.4.2": "https://downloads.wordpress.org/plugin/jetpack.7.4.2.zip", "7.4.3": "https://downloads.wordpress.org/plugin/jetpack.7.4.3.zip", "7.4.4": "https://downloads.wordpress.org/plugin/jetpack.7.4.4.zip", "7.4.5": "https://downloads.wordpress.org/plugin/jetpack.7.4.5.zip", "7.5.1": "https://downloads.wordpress.org/plugin/jetpack.7.5.1.zip", "7.5.2": "https://downloads.wordpress.org/plugin/jetpack.7.5.2.zip", "7.5.3": "https://downloads.wordpress.org/plugin/jetpack.7.5.3.zip", "7.5.4": "https://downloads.wordpress.org/plugin/jetpack.7.5.4.zip", "7.5.5": "https://downloads.wordpress.org/plugin/jetpack.7.5.5.zip", "7.5.6": "https://downloads.wordpress.org/plugin/jetpack.7.5.6.zip", "7.5.7": "https://downloads.wordpress.org/plugin/jetpack.7.5.7.zip", "7.6.1": "https://downloads.wordpress.org/plugin/jetpack.7.6.1.zip", "7.6.2": "https://downloads.wordpress.org/plugin/jetpack.7.6.2.zip", "7.6.3": "https://downloads.wordpress.org/plugin/jetpack.7.6.3.zip", "7.6.4": "https://downloads.wordpress.org/plugin/jetpack.7.6.4.zip", "7.7.1": "https://downloads.wordpress.org/plugin/jetpack.7.7.1.zip", "7.7.2": "https://downloads.wordpress.org/plugin/jetpack.7.7.2.zip", "7.7.3": "https://downloads.wordpress.org/plugin/jetpack.7.7.3.zip", "7.7.4": "https://downloads.wordpress.org/plugin/jetpack.7.7.4.zip", "7.7.5": "https://downloads.wordpress.org/plugin/jetpack.7.7.5.zip", "7.7.6": "https://downloads.wordpress.org/plugin/jetpack.7.7.6.zip", "7.8.1": "https://downloads.wordpress.org/plugin/jetpack.7.8.1.zip", "7.8.2": "https://downloads.wordpress.org/plugin/jetpack.7.8.2.zip", "7.8.3": "https://downloads.wordpress.org/plugin/jetpack.7.8.3.zip", "7.8.4": "https://downloads.wordpress.org/plugin/jetpack.7.8.4.zip", "7.9.1": "https://downloads.wordpress.org/plugin/jetpack.7.9.1.zip", "7.9.2": "https://downloads.wordpress.org/plugin/jetpack.7.9.2.zip", "7.9.3": "https://downloads.wordpress.org/plugin/jetpack.7.9.3.zip", "7.9.4": "https://downloads.wordpress.org/plugin/jetpack.7.9.4.zip", "8.0.1": "https://downloads.wordpress.org/plugin/jetpack.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/plugin/jetpack.8.0.2.zip", "8.0.3": "https://downloads.wordpress.org/plugin/jetpack.8.0.3.zip", "8.1.1": "https://downloads.wordpress.org/plugin/jetpack.8.1.1.zip", "8.1.2": "https://downloads.wordpress.org/plugin/jetpack.8.1.2.zip", "8.1.3": "https://downloads.wordpress.org/plugin/jetpack.8.1.3.zip", "8.1.4": "https://downloads.wordpress.org/plugin/jetpack.8.1.4.zip", "8.2.1": "https://downloads.wordpress.org/plugin/jetpack.8.2.1.zip", "8.2.2": "https://downloads.wordpress.org/plugin/jetpack.8.2.2.zip", "8.2.3": "https://downloads.wordpress.org/plugin/jetpack.8.2.3.zip", "8.2.4": "https://downloads.wordpress.org/plugin/jetpack.8.2.4.zip", "8.2.5": "https://downloads.wordpress.org/plugin/jetpack.8.2.5.zip", "8.2.6": "https://downloads.wordpress.org/plugin/jetpack.8.2.6.zip", "8.3.1": "https://downloads.wordpress.org/plugin/jetpack.8.3.1.zip", "8.3.2": "https://downloads.wordpress.org/plugin/jetpack.8.3.2.zip", "8.3.3": "https://downloads.wordpress.org/plugin/jetpack.8.3.3.zip", "8.4.1": "https://downloads.wordpress.org/plugin/jetpack.8.4.1.zip", "8.4.2": "https://downloads.wordpress.org/plugin/jetpack.8.4.2.zip", "8.4.3": "https://downloads.wordpress.org/plugin/jetpack.8.4.3.zip", "8.4.4": "https://downloads.wordpress.org/plugin/jetpack.8.4.4.zip", "8.4.5": "https://downloads.wordpress.org/plugin/jetpack.8.4.5.zip", "8.5.1": "https://downloads.wordpress.org/plugin/jetpack.8.5.1.zip", "8.5.2": "https://downloads.wordpress.org/plugin/jetpack.8.5.2.zip", "8.5.3": "https://downloads.wordpress.org/plugin/jetpack.8.5.3.zip", "8.6.1": "https://downloads.wordpress.org/plugin/jetpack.8.6.1.zip", "8.6.2": "https://downloads.wordpress.org/plugin/jetpack.8.6.2.zip", "8.6.3": "https://downloads.wordpress.org/plugin/jetpack.8.6.3.zip", "8.6.4": "https://downloads.wordpress.org/plugin/jetpack.8.6.4.zip", "8.7.1": "https://downloads.wordpress.org/plugin/jetpack.8.7.1.zip", "8.7.2": "https://downloads.wordpress.org/plugin/jetpack.8.7.2.zip", "8.7.3": "https://downloads.wordpress.org/plugin/jetpack.8.7.3.zip", "8.7.4": "https://downloads.wordpress.org/plugin/jetpack.8.7.4.zip", "8.8.1": "https://downloads.wordpress.org/plugin/jetpack.8.8.1.zip", "8.8.2": "https://downloads.wordpress.org/plugin/jetpack.8.8.2.zip", "8.8.3": "https://downloads.wordpress.org/plugin/jetpack.8.8.3.zip", "8.8.4": "https://downloads.wordpress.org/plugin/jetpack.8.8.4.zip", "8.8.5": "https://downloads.wordpress.org/plugin/jetpack.8.8.5.zip", "8.9.1": "https://downloads.wordpress.org/plugin/jetpack.8.9.1.zip", "8.9.2": "https://downloads.wordpress.org/plugin/jetpack.8.9.2.zip", "8.9.3": "https://downloads.wordpress.org/plugin/jetpack.8.9.3.zip", "8.9.4": "https://downloads.wordpress.org/plugin/jetpack.8.9.4.zip", "9.0.1": "https://downloads.wordpress.org/plugin/jetpack.9.0.1.zip", "9.0.2": "https://downloads.wordpress.org/plugin/jetpack.9.0.2.zip", "9.0.3": "https://downloads.wordpress.org/plugin/jetpack.9.0.3.zip", "9.0.4": "https://downloads.wordpress.org/plugin/jetpack.9.0.4.zip", "9.0.5": "https://downloads.wordpress.org/plugin/jetpack.9.0.5.zip", "9.1.1": "https://downloads.wordpress.org/plugin/jetpack.9.1.1.zip", "9.1.2": "https://downloads.wordpress.org/plugin/jetpack.9.1.2.zip", "9.1.3": "https://downloads.wordpress.org/plugin/jetpack.9.1.3.zip", "9.2.1": "https://downloads.wordpress.org/plugin/jetpack.9.2.1.zip", "9.2.2": "https://downloads.wordpress.org/plugin/jetpack.9.2.2.zip", "9.2.3": "https://downloads.wordpress.org/plugin/jetpack.9.2.3.zip", "9.2.4": "https://downloads.wordpress.org/plugin/jetpack.9.2.4.zip", "9.3.1": "https://downloads.wordpress.org/plugin/jetpack.9.3.1.zip", "9.3.2": "https://downloads.wordpress.org/plugin/jetpack.9.3.2.zip", "9.3.3": "https://downloads.wordpress.org/plugin/jetpack.9.3.3.zip", "9.3.4": "https://downloads.wordpress.org/plugin/jetpack.9.3.4.zip", "9.3.5": "https://downloads.wordpress.org/plugin/jetpack.9.3.5.zip", "9.4.1": "https://downloads.wordpress.org/plugin/jetpack.9.4.1.zip", "9.4.2": "https://downloads.wordpress.org/plugin/jetpack.9.4.2.zip", "9.4.3": "https://downloads.wordpress.org/plugin/jetpack.9.4.3.zip", "9.4.4": "https://downloads.wordpress.org/plugin/jetpack.9.4.4.zip", "9.5.1": "https://downloads.wordpress.org/plugin/jetpack.9.5.1.zip", "9.5.2": "https://downloads.wordpress.org/plugin/jetpack.9.5.2.zip", "9.5.3": "https://downloads.wordpress.org/plugin/jetpack.9.5.3.zip", "9.5.4": "https://downloads.wordpress.org/plugin/jetpack.9.5.4.zip", "9.5.5": "https://downloads.wordpress.org/plugin/jetpack.9.5.5.zip", "9.6.1": "https://downloads.wordpress.org/plugin/jetpack.9.6.1.zip", "9.6.2": "https://downloads.wordpress.org/plugin/jetpack.9.6.2.zip", "9.6.3": "https://downloads.wordpress.org/plugin/jetpack.9.6.3.zip", "9.6.4": "https://downloads.wordpress.org/plugin/jetpack.9.6.4.zip", "9.7.1": "https://downloads.wordpress.org/plugin/jetpack.9.7.1.zip", "9.7.2": "https://downloads.wordpress.org/plugin/jetpack.9.7.2.zip", "9.7.3": "https://downloads.wordpress.org/plugin/jetpack.9.7.3.zip", "9.8.1": "https://downloads.wordpress.org/plugin/jetpack.9.8.1.zip", "9.8.2": "https://downloads.wordpress.org/plugin/jetpack.9.8.2.zip", "9.8.3": "https://downloads.wordpress.org/plugin/jetpack.9.8.3.zip", "9.9.1": "https://downloads.wordpress.org/plugin/jetpack.9.9.1.zip", "9.9.2": "https://downloads.wordpress.org/plugin/jetpack.9.9.2.zip", "9.9.3": "https://downloads.wordpress.org/plugin/jetpack.9.9.3.zip", "trunk": "https://downloads.wordpress.org/plugin/jetpack.zip", "10.0.1": "https://downloads.wordpress.org/plugin/jetpack.10.0.1.zip", "10.0.2": "https://downloads.wordpress.org/plugin/jetpack.10.0.2.zip", "10.1.1": "https://downloads.wordpress.org/plugin/jetpack.10.1.1.zip", "10.1.2": "https://downloads.wordpress.org/plugin/jetpack.10.1.2.zip", "10.2.1": "https://downloads.wordpress.org/plugin/jetpack.10.2.1.zip", "10.2.2": "https://downloads.wordpress.org/plugin/jetpack.10.2.2.zip", "10.2.3": "https://downloads.wordpress.org/plugin/jetpack.10.2.3.zip", "10.3.1": "https://downloads.wordpress.org/plugin/jetpack.10.3.1.zip", "10.3.2": "https://downloads.wordpress.org/plugin/jetpack.10.3.2.zip", "10.4.1": "https://downloads.wordpress.org/plugin/jetpack.10.4.1.zip", "10.4.2": "https://downloads.wordpress.org/plugin/jetpack.10.4.2.zip", "10.5.1": "https://downloads.wordpress.org/plugin/jetpack.10.5.1.zip", "10.5.2": "https://downloads.wordpress.org/plugin/jetpack.10.5.2.zip", "10.5.3": "https://downloads.wordpress.org/plugin/jetpack.10.5.3.zip", "10.6.1": "https://downloads.wordpress.org/plugin/jetpack.10.6.1.zip", "10.6.2": "https://downloads.wordpress.org/plugin/jetpack.10.6.2.zip", "10.7.1": "https://downloads.wordpress.org/plugin/jetpack.10.7.1.zip", "10.7.2": "https://downloads.wordpress.org/plugin/jetpack.10.7.2.zip", "10.8.1": "https://downloads.wordpress.org/plugin/jetpack.10.8.1.zip", "10.8.2": "https://downloads.wordpress.org/plugin/jetpack.10.8.2.zip", "10.9.1": "https://downloads.wordpress.org/plugin/jetpack.10.9.1.zip", "10.9.2": "https://downloads.wordpress.org/plugin/jetpack.10.9.2.zip", "10.9.3": "https://downloads.wordpress.org/plugin/jetpack.10.9.3.zip", "11.0.1": "https://downloads.wordpress.org/plugin/jetpack.11.0.1.zip", "11.0.2": "https://downloads.wordpress.org/plugin/jetpack.11.0.2.zip", "11.1.1": "https://downloads.wordpress.org/plugin/jetpack.11.1.1.zip", "11.1.2": "https://downloads.wordpress.org/plugin/jetpack.11.1.2.zip", "11.1.3": "https://downloads.wordpress.org/plugin/jetpack.11.1.3.zip", "11.1.4": "https://downloads.wordpress.org/plugin/jetpack.11.1.4.zip", "11.2.1": "https://downloads.wordpress.org/plugin/jetpack.11.2.1.zip", "11.2.2": "https://downloads.wordpress.org/plugin/jetpack.11.2.2.zip", "11.3.1": "https://downloads.wordpress.org/plugin/jetpack.11.3.1.zip", "11.3.2": "https://downloads.wordpress.org/plugin/jetpack.11.3.2.zip", "11.3.3": "https://downloads.wordpress.org/plugin/jetpack.11.3.3.zip", "11.3.4": "https://downloads.wordpress.org/plugin/jetpack.11.3.4.zip", "11.4.1": "https://downloads.wordpress.org/plugin/jetpack.11.4.1.zip", "11.4.2": "https://downloads.wordpress.org/plugin/jetpack.11.4.2.zip", "11.5.1": "https://downloads.wordpress.org/plugin/jetpack.11.5.1.zip", "11.5.2": "https://downloads.wordpress.org/plugin/jetpack.11.5.2.zip", "11.5.3": "https://downloads.wordpress.org/plugin/jetpack.11.5.3.zip", "11.6.1": "https://downloads.wordpress.org/plugin/jetpack.11.6.1.zip", "11.6.2": "https://downloads.wordpress.org/plugin/jetpack.11.6.2.zip", "11.7.1": "https://downloads.wordpress.org/plugin/jetpack.11.7.1.zip", "11.7.2": "https://downloads.wordpress.org/plugin/jetpack.11.7.2.zip", "11.7.3": "https://downloads.wordpress.org/plugin/jetpack.11.7.3.zip", "11.8.3": "https://downloads.wordpress.org/plugin/jetpack.11.8.3.zip", "11.8.4": "https://downloads.wordpress.org/plugin/jetpack.11.8.4.zip", "11.8.5": "https://downloads.wordpress.org/plugin/jetpack.11.8.5.zip", "11.8.6": "https://downloads.wordpress.org/plugin/jetpack.11.8.6.zip", "11.9.1": "https://downloads.wordpress.org/plugin/jetpack.11.9.1.zip", "11.9.2": "https://downloads.wordpress.org/plugin/jetpack.11.9.2.zip", "11.9.3": "https://downloads.wordpress.org/plugin/jetpack.11.9.3.zip", "12.0.1": "https://downloads.wordpress.org/plugin/jetpack.12.0.1.zip", "12.0.2": "https://downloads.wordpress.org/plugin/jetpack.12.0.2.zip", "12.1.1": "https://downloads.wordpress.org/plugin/jetpack.12.1.1.zip", "12.1.2": "https://downloads.wordpress.org/plugin/jetpack.12.1.2.zip", "12.2.1": "https://downloads.wordpress.org/plugin/jetpack.12.2.1.zip", "12.2.2": "https://downloads.wordpress.org/plugin/jetpack.12.2.2.zip", "12.3.1": "https://downloads.wordpress.org/plugin/jetpack.12.3.1.zip", "12.4.1": "https://downloads.wordpress.org/plugin/jetpack.12.4.1.zip", "12.5.1": "https://downloads.wordpress.org/plugin/jetpack.12.5.1.zip", "12.6.1": "https://downloads.wordpress.org/plugin/jetpack.12.6.1.zip", "12.6.2": "https://downloads.wordpress.org/plugin/jetpack.12.6.2.zip", "12.6.3": "https://downloads.wordpress.org/plugin/jetpack.12.6.3.zip", "12.7.1": "https://downloads.wordpress.org/plugin/jetpack.12.7.1.zip", "12.7.2": "https://downloads.wordpress.org/plugin/jetpack.12.7.2.zip", "12.8.1": "https://downloads.wordpress.org/plugin/jetpack.12.8.1.zip", "12.8.2": "https://downloads.wordpress.org/plugin/jetpack.12.8.2.zip", "12.9.1": "https://downloads.wordpress.org/plugin/jetpack.12.9.1.zip", "12.9.2": "https://downloads.wordpress.org/plugin/jetpack.12.9.2.zip", "12.9.3": "https://downloads.wordpress.org/plugin/jetpack.12.9.3.zip", "12.9.4": "https://downloads.wordpress.org/plugin/jetpack.12.9.4.zip", "13.0.1": "https://downloads.wordpress.org/plugin/jetpack.13.0.1.zip", "13.1.1": "https://downloads.wordpress.org/plugin/jetpack.13.1.1.zip", "13.1.2": "https://downloads.wordpress.org/plugin/jetpack.13.1.2.zip", "13.1.3": "https://downloads.wordpress.org/plugin/jetpack.13.1.3.zip", "13.1.4": "https://downloads.wordpress.org/plugin/jetpack.13.1.4.zip", "13.2.1": "https://downloads.wordpress.org/plugin/jetpack.13.2.1.zip", "13.2.2": "https://downloads.wordpress.org/plugin/jetpack.13.2.2.zip", "13.2.3": "https://downloads.wordpress.org/plugin/jetpack.13.2.3.zip", "13.3.1": "https://downloads.wordpress.org/plugin/jetpack.13.3.1.zip", "13.3.2": "https://downloads.wordpress.org/plugin/jetpack.13.3.2.zip", "13.4.1": "https://downloads.wordpress.org/plugin/jetpack.13.4.1.zip", "13.4.2": "https://downloads.wordpress.org/plugin/jetpack.13.4.2.zip", "13.4.3": "https://downloads.wordpress.org/plugin/jetpack.13.4.3.zip", "13.4.4": "https://downloads.wordpress.org/plugin/jetpack.13.4.4.zip", "13.5.1": "https://downloads.wordpress.org/plugin/jetpack.13.5.1.zip", "13.6.1": "https://downloads.wordpress.org/plugin/jetpack.13.6.1.zip", "13.7.1": "https://downloads.wordpress.org/plugin/jetpack.13.7.1.zip", "13.8.1": "https://downloads.wordpress.org/plugin/jetpack.13.8.1.zip", "13.8.2": "https://downloads.wordpress.org/plugin/jetpack.13.8.2.zip", "13.9.1": "https://downloads.wordpress.org/plugin/jetpack.13.9.1.zip", "14.2.1": "https://downloads.wordpress.org/plugin/jetpack.14.2.1.zip", "14.4.1": "https://downloads.wordpress.org/plugin/jetpack.14.4.1.zip", "14.9.1": "https://downloads.wordpress.org/plugin/jetpack.14.9.1.zip", "15.0.1": "https://downloads.wordpress.org/plugin/jetpack.15.0.1.zip", "15.0.2": "https://downloads.wordpress.org/plugin/jetpack.15.0.2.zip", "15.1.1": "https://downloads.wordpress.org/plugin/jetpack.15.1.1.zip", "2.2.10": "https://downloads.wordpress.org/plugin/jetpack.2.2.10.zip", "2.3.10": "https://downloads.wordpress.org/plugin/jetpack.2.3.10.zip", "3.9.10": "https://downloads.wordpress.org/plugin/jetpack.3.9.10.zip", "7.2.1.1": "https://downloads.wordpress.org/plugin/jetpack.7.2.1.1.zip", "7.3.0.1": "https://downloads.wordpress.org/plugin/jetpack.7.3.0.1.zip", "7.3.1.1": "https://downloads.wordpress.org/plugin/jetpack.7.3.1.1.zip", "7.5.0.1": "https://downloads.wordpress.org/plugin/jetpack.7.5.0.1.zip", "8.2.0.1": "https://downloads.wordpress.org/plugin/jetpack.8.2.0.1.zip", "8.7.0.1": "https://downloads.wordpress.org/plugin/jetpack.8.7.0.1.zip", "15.1-a.1": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.1.zip", "15.1-a.3": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.3.zip", "15.1-a.5": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.5.zip", "15.1-a.7": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.7.zip", "15.1-a.9": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.9.zip", "15.2-a.1": "https://downloads.wordpress.org/plugin/jetpack.15.2-a.1.zip", "15.2-a.3": "https://downloads.wordpress.org/plugin/jetpack.15.2-a.3.zip", "15.2-a.5": "https://downloads.wordpress.org/plugin/jetpack.15.2-a.5.zip", "15.2-a.7": "https://downloads.wordpress.org/plugin/jetpack.15.2-a.7.zip", "15.1-a.11": "https://downloads.wordpress.org/plugin/jetpack.15.1-a.11.zip", "15.1-beta": "https://downloads.wordpress.org/plugin/jetpack.15.1-beta.zip", "15.1-beta.2": "https://downloads.wordpress.org/plugin/jetpack.15.1-beta.2.zip"}, "downloaded": 469854481, "description": "

    JETPACK – THE BEST WORDPRESS PLUGIN

    \n

    \n

    Jetpack is a WordPress plugin that helps you create better content, grow your subscribers, earn money from your website and keep it safe, fast, and secure. You can grow and keep track of your website traffic with Jetpack stats, and create better content with Jetpack AI. You can start a newsletter and grow your audience, turning fans into paying subscribers. Create beautiful content with Jetpack Creator and keep your site fast with Jetpack Boost.

    \n

    HOW TO GET STARTED WITH JETPACK

    \n

    Installation is free, quick, and easy. Set up Jetpack in minutes. Take advantage of more robust features like WordPress site security and design and growth tools by upgrading to a paid plan.

    \n

    NEED EXPERT SUPPORT?

    \n

    We have a global team of Happiness Engineers ready to provide incredible support. Ask your questions in the support forum or contact support.

    \n

    WHY USE JETPACK ON YOUR SITE

    \n

    Safer. Faster. More traffic.

    \n

    WordPress security, performance, marketing, and design tools — Jetpack is made by WordPress experts to make WP sites safer and faster, and help you grow your traffic.

    \n

    24/7 AUTO SITE SECURITY

    \n

    We guard your site so you can run your site or business. Jetpack Security provides easy-to-use, comprehensive WordPress site security including auto real-time backups and easy restores, malware scans, and spam protection. Essential features like brute force protection and basic downtime / uptime monitoring are free.

    \n
      \n
    • Back up your site automatically in real time and restore to any point with one click. Cloud storage starts at 10GB, which is more than enough for most sites, with additional storage options available if needed. Great for eCommerce stores especially Woo.
    • \n
    • Manage migration to a new host, migrate theme files and plugins to a new database, easily duplicate websites, create full database backups, clone websites, repair broken websites by restoring older backups or easily set up a test site by creating a duplicate of your existing WP website.
    • \n
    • See every site change and who made it with the activity log, great for coordination, debug, maintenance, or troubleshooting.
    • \n
    • Examine incoming traffic to your WordPress site with our WAF (Web Application Firewall) and decide to allow or block it based on various rules.
    • \n
    • Add an important layer of protection to your site with our WAF (Web Application Firewall), particularly when attackers actively exploit unpatched vulnerabilities.
    • \n
    • Automatically perform malware scans and security scans for other code threats. One click fix to restore your site for malware.
    • \n
    • Block spam comments and form responses with anti spam features powered by Akismet.
    • \n
    • Brute force attack protection to protect your WordPress login page from attacks.
    • \n
    • Monitor your site uptime / downtime and get an instant alert of any change by email.
    • \n
    • Secure WordPress.com powered login used by millions of sites with optional 2FA (two factor authentication) for extra protection.
    • \n
    • Auto update individual plugins for easy site maintenance and management.
    • \n
    \n

    You can purchase all of Jetpack’s security features in our Security bundle, or VaultPress Backup, Scan, and Akismet Anti-spam can each be purchased individually.

    \n

    PEAK SPEED AND PERFORMANCE

    \n

    Get blazing fast site speed with Jetpack. Jetpack’s free CDN (content delivery network) auto optimizes your images. Watch your page load times decrease — we’ll optimize your images and serve them from our own powerful global network, and speed up your site on mobile devices to reduce bandwidth usage and save money!

    \n
      \n
    • Image CDN for images and core static files, like CSS and JavaScript, served from our servers, not yours, which saves you money and bandwidth.
    • \n
    • Unlimited, high speed, ad free video hosting keeps the focus on your content, not on ads or recommendations that lead people off site.
    • \n
    • Custom site search is incredibly powerful and customizable. Helps your visitors instantly find the right content so they read and buy more. Works great with WooCommerce / eCommerce sites to help filter products so customers get what they want on your site faster.
    • \n
    • Recommended to use with Jetpack Boost for ultimate WordPress site speed.
    • \n
    \n

    POWERFUL TOOLS FOR GROWTH

    \n

    Create and customize your WordPress site, optimize it for visitors and revenue, and enjoy watching your stats tick up. Build it, share it, and watch it grow.

    \n
      \n
    • Auto publish blog posts and products to social media by simply using our tools to connect to Facebook, Bluesky, Threads, Tumblr, Mastodon, LinkedIn, and Nextdoor.
    • \n
    • Easily share Instagram posts on your pages and blog posts.
    • \n
    • Collect a payment or donation, sell a product, service, or membership with simple integrations with PayPal and Stripe.
    • \n
    • Grow traffic with SEO tools for Google, Bing, Facebook, and WordPress.com. XML sitemap created automatically.
    • \n
    • Advertise on your site to generate revenue. The ad network automatically does the work for you to find high-quality ads that are placed on your site.
    • \n
    • Manage Jetpack features from anywhere with the official WordPress mobile app, available for Apple iOS (iPhone or iPad) and Google Android.
    • \n
    • Looking for Customer Relationship Management? Check out the Jetpack CRM plugin which works alongside Jetpack to give you a simple and practical way to build relationships with your customers and leads.
    • \n
    \n

    POWERFUL STATS TO GROW YOUR SITE

    \n

    With Jetpack Stats, you don’t need to be a data scientist to see how your site is performing.

    \n
      \n
    • Advanced site stats and analytics to help you understand your audience.
    • \n
    • Discover your top performing posts & pages.
    • \n
    • See who is creating the most popular content on your team with our author metrics.
    • \n
    • Easily keep track of your content creation habits & trends over the years.
    • \n
    • View weekly and yearly trends with 7-day Highlights and Year in Review.
    • \n
    • See what popular social networks your content is being shared to the most.
    • \n
    • Explore real-time data on visitors, likes, and comments.
    • \n
    • Get detailed insights on the referrers that bring traffic to your site.
    • \n
    • Discover what countries your visitors are coming from.
    • \n
    • Measure link clicks, video plays, and file downloads within your site.
    • \n
    \n

    WRITE SMARTER, NOT HARDER.

    \n

    Experience the ease of crafting professional content with intuitive and powerful AI. Jetpack AI Assistant effortlessly integrates with your WordPress editor, offering an intuitive interface to interact with AI.
    \nThis powerful block lets you generate diverse content at your command, significantly reducing the time and effort required in content creation.

    \n

    Simply provide a prompt, and watch as Jetpack AI Assistant crafts compelling blog posts, detailed pages, structured lists, and comprehensive tables – all tailored to your needs.

    \n
      \n
    • Harness AI power directly from your editor.
    • \n
    • Unlock high-quality, tailored content at your command.
    • \n
    • Maintain professional standards with ease.
    • \n
    • AI-powered translations across numerous languages at your fingertips, breaking down language barriers.
    • \n
    \n

    PROMOTE YOUR CONTENT EASILY WITH JETPACK BLAZE

    \n

    Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.

    \n
      \n
    • Create your ad. Choose your audience. Set your budget. It’s that easy.
    • \n
    • Amplify your reach for just a few dollars.
    • \n
    \n

    EASY DESIGN TOOLS

    \n

    Quickly customize your site to make it stand out — no coding needed.

    \n
      \n
    • Themes — Simple WordPress themes to get started on your site.
    • \n
    • Related posts — Keep visitors on your site by automatically showing them related content they will be interested in.
    • \n
    • Gallery and Slideshow tools — Image galleries, carousel slider, and slideshows for WP sites and stores.
    • \n
    • Subscriptions — Make it easy for visitors to sign up to receive notifications of your latest posts and comments.
    • \n
    • Contact form — Easily build unlimited contact forms for free without any coding. Receive email notifications for each response. Integrate with mail solutions like Creative Mail to reach your customers and leads quickly. Connect to Jetpack Anti spam (powered by Akismet) to filter submissions.
    • \n
    • oEmbed Support — easily embed images, posts, and links from Facebook and Instagram.
    • \n
    \n

    INTEGRATIONS

    \n

    Jetpack is updated monthly to ensure seamless integration with top WordPress plugins and other tech products.

    \n
      \n
    • Built for WooCommerce: Jetpack and WooCommerce are both made by Automattic. Backup, Scan, Anti-spam, integrate perfectly for Woo / eComm stores.
    • \n
    • Jetpack is fully compatible with v2.0 of the official AMP plugin for WordPress.
    • \n
    • Better understand your customers and marketing with Google Analytics (GA) integration.
    • \n
    • Social media platforms: Instagram, Facebook, Tumblr, LinkedIn, Threads, Bluesky, Nextdoor.
    • \n
    • Simple Blocks to customize your site: Pinterest, Whatsapp, Podcast player, GIFs, maps, tiled gallery, slideshow.
    • \n
    • Payment processors: easily collect payments or donations and sell products through Stripe and PayPal.
    • \n
    • Site speed and performance plugins: Works great with WP Super Cache by Automattic and Cloudflare.
    • \n
    • Contact form: Anti-spam (Powered by Akismet) blocks spam comments for Jetpack forms, Contact Form 7, Ninja Forms, Gravity Forms, Formidable Forms, and more.
    • \n
    • Other tech integrations: Instagram, Creative Mail, Mailchimp, Calendly, Whatsapp, Pinterest, Revue, and more.
    • \n
    \n

    EXPLORE MORE OF JETPACK

    \n

    If you like Jetpack, consider checking out our other products and bundles

    \n
      \n
    • Jetpack Complete – The Complete bundle with real‑time security, top performance, and everything you need to grow your business.
    • \n
    • Jetpack Security – Our Security bundle provides easy‑to‑use, comprehensive WordPress site security, including real‑time backups, a web application firewall, malware scanning, and spam protection.
    • \n
    • Jetpack Backup – Save every change and get back online quickly with one‑click restores from Jetpack VaultPress Backup.
    • \n
    • Jetpack Scan – Protect your site from bad actors around‑the‑clock ‑ with our web application firewall (WAF) and automated malware scanning with one‑click fixes.
    • \n
    • Jetpack Search – Instantly deliver the most relevant results to your visitors with Jetpack Search. No coding required, no ads, and no tracking.
    • \n
    • Jetpack Boost – Increase your website speed. Enjoy the same performance advantages as the world’s leading websites, no developer required.
    • \n
    • Jetpack VideoPress – Display stunning‑quality video with none of the hassle. Drag and drop videos through the WordPress editor and keep the focus on your content, not the ads.
    • \n
    • Jetpack AI – Turn your ideas into ready‑to‑publish content at lightspeed.
    • \n
    • Jetpack Stats – Keep track of your website visits, popular posts, newsletter subscribers and more.
    • \n
    • Jetpack Social – Automatically share your website content to your favorite social media platforms, from one place.
    • \n
    • Jetpack CRM – Jetpack CRM has all of the tools you need to grow your business. It’s also modular, so you can customize it to suit your needs.
    • \n
    • Jetpack Creator – Craft stunning content, boost your subscriber base, and monetize your online presence.
    • \n
    • Jetpack Newsletter – Transform your blog posts into newsletters to easily reach your subscribers. Offer paid subscriptions and earn from your content.
    • \n
    \n

    KEEP SPAM OFF YOUR WEBSITE

    \n
      \n
    • Akismet Anti-spam – Automatically clear spam from comments and forms. Save time, get more responses, give your visitors a better experience – all without lifting a finger.
    • \n
    \n

    PROMOTE YOUR CONTENT FOR MORE VIEWS

    \n
      \n
    • Blaze – Find new fans by promoting your posts and pages across millions of sites in the WordPress.com and Tumblr ad network.
    • \n
    \n

    MANAGE MORE THAN ONE SITE?

    \n
      \n
    • Jetpack Manage – All the tools you need to manage multiple WordPress sites. Monitor site security, performance, and traffic, and get alerted if a site needs attention.
    • \n
    \n

    FLY HIGHER WITH INDIVIDUAL PLUGINS

    \n

    Ever wish you could have just one feature of Jetpack in its own plugin? Now you can. Check out our individual plugins and install only what you need.

    \n\n", "donate_link": "", "num_ratings": 2349, "screenshots": {"1": {"src": "https://ps.w.org/jetpack/assets/screenshot-1.png?rev=2916090", "caption": "Jetpack Security provides easy-to-use, comprehensive WordPress site security including backups, malware scanning, and spam protection."}, "2": {"src": "https://ps.w.org/jetpack/assets/screenshot-2.png?rev=2916090", "caption": "Save every change with real-time backups and get back online quickly with one-click restores."}, "3": {"src": "https://ps.w.org/jetpack/assets/screenshot-3.png?rev=2916090", "caption": "Automated malware scanning and one-click fixes keep your site one step ahead of security threats."}, "4": {"src": "https://ps.w.org/jetpack/assets/screenshot-4.png?rev=2916090", "caption": "Promote your newest posts, pages, and products across your social media channels."}, "5": {"src": "https://ps.w.org/jetpack/assets/screenshot-5.png?rev=2916090", "caption": "Incredibly powerful and customizable, help your visitors instantly find the right content – right when they need it."}, "6": {"src": "https://ps.w.org/jetpack/assets/screenshot-6.png?rev=2916090", "caption": "See what’s working with content performance metrics. Simple, yet powerful stats to grow your site."}, "7": {"src": "https://ps.w.org/jetpack/assets/screenshot-7.png?rev=2916090", "caption": "Stunning‑quality video with none of the hassle. Drag and drop videos through the WordPress editor and keep the focus on your content, not the ads."}}, "support_url": "https://wordpress.org/support/plugin/jetpack/", "contributors": {"hew": {"avatar": "https://secure.gravatar.com/avatar/51b7a2da15b2677029fd15c046592147e0af325da150f63a2c2a6b881dd5ee75?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hew/", "display_name": "hew"}, "jgs": {"avatar": "https://secure.gravatar.com/avatar/d38734c97bc7fcedb3e02cd8bc0503554cea457805ab0a6ad21d44e60dd8de8e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jgs/", "display_name": "Greg"}, "andy": {"avatar": "https://secure.gravatar.com/avatar/be51113f41b3000046c3eb0c273b2d87ce746b6dbbe5475b68bf4f838a42e8d7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/andy/", "display_name": "Andy Skelton"}, "cena": {"avatar": "https://secure.gravatar.com/avatar/93060a05da7588b17307bf36b4dcf4b1b08a2cb69db4b3fb304e3a767d35b29f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cena/", "display_name": "Cena (a11n)"}, "dllh": {"avatar": "https://secure.gravatar.com/avatar/2a3d593a101c265b1cc149d14791c9bde71ea9f447e802e5cf33b021dbe9f091?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dllh/", "display_name": "Daryl L. L. Houston (dllh)"}, "enej": {"avatar": "https://secure.gravatar.com/avatar/4219631a4c265c99eeb168b16dda429b30e418fa05c6d16fcd9a58d72a5cf894?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/enej/", "display_name": "Enej Bajgorić"}, "jblz": {"avatar": "https://secure.gravatar.com/avatar/96fe4e56c258df250feff190f6a555880c59e538c9081435aa5eb303d1c624ef?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jblz/", "display_name": "Jeff Bowen"}, "joen": {"avatar": "https://secure.gravatar.com/avatar/901d78fbd98524005478290a4c9c01406d5b94f70fa508d0540516a421899543?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/joen/", "display_name": "Joen A."}, "koke": {"avatar": "https://secure.gravatar.com/avatar/f4cabd36e84d032e44c79a24fa9142db7bc388cfd5ade8a9ffabba978231b7ba?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/koke/", "display_name": "Jorge Bernal"}, "matt": {"avatar": "https://secure.gravatar.com/avatar/33252cd1f33526af53580fcb1736172f06e6716f32afdd1be19ec3096d15dea5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/matt/", "display_name": "Matt Mullenweg"}, "mcsf": {"avatar": "https://secure.gravatar.com/avatar/fa9bb9feab2f2f97662e7b07c9deaf0aca3ec7c037840a8cc3563ec022f77048?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mcsf/", "display_name": "Miguel Fonseca"}, "mkaz": {"avatar": "https://secure.gravatar.com/avatar/87bd845f7aec3a8e7467df8c2b7750753791c28bf50294f23765cd1f3f3020c1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mkaz/", "display_name": "Marcus Kazmierczak"}, "aduth": {"avatar": "https://secure.gravatar.com/avatar/f4226aad00975bb106756610d04b6bb3bd65027d37d1839dbd6c285f12c8a49d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aduth/", "display_name": "aduth"}, "akirk": {"avatar": "https://secure.gravatar.com/avatar/12b93d2a2baed035aa99f0cfbc4f00f3ed5d8a59563694910bcdffbccb5fa256?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/akirk/", "display_name": "Alex Kirk"}, "barry": {"avatar": "https://secure.gravatar.com/avatar/068b4bacad347c5646814baffb24c50033eb941925d275d056c29e416b024839?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/barry/", "display_name": "Barry"}, "brbrr": {"avatar": "https://secure.gravatar.com/avatar/421cf8d0b0b3f694162136cd630daa8cc6db578b6a234262d0901d694e0b9027?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brbrr/", "display_name": "brbrr"}, "cainm": {"avatar": "https://secure.gravatar.com/avatar/d82bee92d9c636feb5e7db0ee30f9fff8be0b8fb6b4671515dfeb739a664bf89?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cainm/", "display_name": "Michael Cain"}, "dzver": {"avatar": "https://secure.gravatar.com/avatar/1b0c31b864e3ecef551a19f6a421f1b02e4212ee1a1254022b8d1c0cf37abf77?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dzver/", "display_name": "dzver"}, "jenia": {"avatar": "https://secure.gravatar.com/avatar/9aee54ab1a0b870c86f16a3f8f37a9a90ed6c5010edc904f54cce5d5024ecf95?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jenia/", "display_name": "Jenia"}, "pento": {"avatar": "https://secure.gravatar.com/avatar/e522019adbe7cb4145f9e01c344c036baaa8bf76cd5d76e6b737b60be9af88cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pento/", "display_name": "Gary Pendergast"}, "tyxla": {"avatar": "https://secure.gravatar.com/avatar/774c1731d3e408331d6254fe7c5add84e6172385909ed73bd6a6922dc7b81d76?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tyxla/", "display_name": "Marin Atanasov"}, "westi": {"avatar": "https://secure.gravatar.com/avatar/34368b9c92a4bfa3bd2a84a222147375526d5ccfbbb3afe32abfbd1bc37f5b58?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/westi/", "display_name": "Peter Westwood"}, "yoavf": {"avatar": "https://secure.gravatar.com/avatar/b8b4c1e6328598569093af9249f1811977636a39f84eeeb4360b772ae79dbae1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/yoavf/", "display_name": "Yoav Farhi"}, "azaozz": {"avatar": "https://secure.gravatar.com/avatar/73c1045212929211deda7262005831319397c68d340a8c41d53633b3f7e7f129?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/azaozz/", "display_name": "Andrew Ozz"}, "batmoo": {"avatar": "https://secure.gravatar.com/avatar/5d837075dac137f919f08595bbe6dcd9436fad5b0da51c821ad8313437603542?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/batmoo/", "display_name": "Mohammad Jangda"}, "cfinke": {"avatar": "https://secure.gravatar.com/avatar/942f91a542ccc0d21a1b1b9de17296dceb648bb278011f76386aedbb96f37684?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cfinke/", "display_name": "Christopher Finke"}, "dkmyta": {"avatar": "https://secure.gravatar.com/avatar/b7b65e1d042082353364d7bef9892bd5931cda628a8848bb0f6234d44a78c7f1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dkmyta/", "display_name": "dkmyta"}, "dsmart": {"avatar": "https://secure.gravatar.com/avatar/6e220e167e341c28b1aa10bf0bb0374999068329f8683d3187ee3cf6749b8837?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dsmart/", "display_name": "Derek Smart"}, "eoigal": {"avatar": "https://secure.gravatar.com/avatar/b788473ed692a091f2a4b61e2fec643c116bd38a7d95d5a96ff6eae82a4aa6cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/eoigal/", "display_name": "Eoin Gallagher"}, "gcorne": {"avatar": "https://secure.gravatar.com/avatar/c47c86a6e780f2309c491d27ecd3feea89446df2c1d584ce329832d7c8158991?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/gcorne/", "display_name": "Gregory Cornelius"}, "jmdodd": {"avatar": "https://secure.gravatar.com/avatar/d4a893ff36478086e91271dab1e80c46119e715da37c6fdc5215d215dcb4f81e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jmdodd/", "display_name": "Jennifer M. Dodd"}, "keoshi": {"avatar": "https://secure.gravatar.com/avatar/a7d2558a93549fe9974c9f46f60928c5e5bc0a1b99f8840a4a9d718fe11ab270?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/keoshi/", "display_name": "keoshi"}, "matveb": {"avatar": "https://secure.gravatar.com/avatar/56bab68692c2a170323d65a02b2faec6c12e2b5eda10f0ee5b53610416f389d4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/matveb/", "display_name": "Matias Ventura"}, "mdbitz": {"avatar": "https://secure.gravatar.com/avatar/f470a1341315349e1006b505406c94c28eb6f74b48c25e9cc5273cb5d7cebc7c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mdbitz/", "display_name": "Matthew Denton"}, "oskosk": {"avatar": "https://secure.gravatar.com/avatar/f75bd6fe281a287d92608439a5e84e6a31890cfb7f6e2a40658bcf0c91c0f367?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/oskosk/", "display_name": "Osk"}, "rdcoll": {"avatar": "https://secure.gravatar.com/avatar/d615aeb453220100e58c2323f98d3ddf72e4800784b4f64ede1bab17788bfa9f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rdcoll/", "display_name": "Rich Collier"}, "samiff": {"avatar": "https://secure.gravatar.com/avatar/70396c77fe596b85aac82a0d3e4a03b6c04bae5d789b1457c0384a1dbe0a2274?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/samiff/", "display_name": "Sami Falah"}, "biskobe": {"avatar": "https://secure.gravatar.com/avatar/a793f17f0e41fe55c17234047405862cbed9f119ccf17b04849b875cef114aae?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/biskobe/", "display_name": "biskobe"}, "bjorsch": {"avatar": "https://secure.gravatar.com/avatar/d7dd9c0560c0fb4630dc76777202fd9e3f861b87d182f15cc5e06f69718dc5fd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bjorsch/", "display_name": "Brad Jorsch"}, "csonnek": {"avatar": "https://secure.gravatar.com/avatar/fcc14377a9152ecdf8255f67f2ab6c96322b018d49ad735d70567e5717dd6cde?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/csonnek/", "display_name": "csonnek"}, "dun2mis": {"avatar": "https://secure.gravatar.com/avatar/f82a9969159aff1c190adce4bdf67e4e408eed73063d9205d40121269f9187b9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dun2mis/", "display_name": "Jared"}, "egregor": {"avatar": "https://secure.gravatar.com/avatar/8926a4b8c6acb9e6516720c794e7035a4ad6ad04d3760343881b4ef5f2bcc607?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/egregor/", "display_name": "Echo"}, "gibrown": {"avatar": "https://secure.gravatar.com/avatar/c0113b43c8dd56a18f20323ef51486b72927d0785a23d6d9f87d06d1c4e85bcd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/gibrown/", "display_name": "Greg Ichneumon Brown"}, "iandunn": {"avatar": "https://secure.gravatar.com/avatar/5783a2d9b93f04f6d0a1ddabddcfd71f15136d7eaea7a87f9962d3f93f780224?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/iandunn/", "display_name": "Ian Dunn"}, "jeherve": {"avatar": "https://secure.gravatar.com/avatar/a37f47988721f803bbe82d58bae2033f180fcd3d7ad0cd35dd1dfdc8e9a2efaf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jeherve/", "display_name": "Jeremy Herve"}, "jkudish": {"avatar": "https://secure.gravatar.com/avatar/ca20d16a7871a44d060a80ad572c90be25dd5b73212b0a839fb0474e623ee357?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jkudish/", "display_name": "Joey Kudish"}, "joanrho": {"avatar": "https://secure.gravatar.com/avatar/e6df9d4f2229c8636775c217feaa014dcf0acbf5deffc1c8500f103af56df358?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/joanrho/", "display_name": "joanrho"}, "jshreve": {"avatar": "https://secure.gravatar.com/avatar/a195e320c3814c50cdc62ac06e44d0978e7be26c36782178e3bca7edf28b5792?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jshreve/", "display_name": "Em Shreve"}, "kraftbj": {"avatar": "https://secure.gravatar.com/avatar/7c839032ff595a75d8b9f88abb3522a56065f5ca890d92094796ab7cdf8dfb85?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kraftbj/", "display_name": "Brandon Kraft"}, "macmanx": {"avatar": "https://secure.gravatar.com/avatar/d0dea7177b2141973609a1adac244ce9843d70430350fff251144cb4d44968b4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/macmanx/", "display_name": "James Huff"}, "sdquirk": {"avatar": "https://secure.gravatar.com/avatar/d58df2f6b6340577addd2ab3ca790043722b07d7abf7f3af3b32fa6c4b0eaa1e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sdquirk/", "display_name": "Stephen Quirk"}, "sermitr": {"avatar": "https://secure.gravatar.com/avatar/50462b97435ce6205e83f55e458b461efe3f18a478e48754580d1eeff6715c7f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sermitr/", "display_name": "sermitr"}, "simison": {"avatar": "https://secure.gravatar.com/avatar/8337f2645519be33dbb5497e73ed4dcb2a69ca9eee8486c774db5bb95d41b019?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/simison/", "display_name": "Mikael Korpela"}, "wpkaren": {"avatar": "https://secure.gravatar.com/avatar/a57bd085df2c1ddd8207d60d907d54e6645640ba95bfae3181c599893ca88109?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpkaren/", "display_name": "Karen Attfield"}, "zinigor": {"avatar": "https://secure.gravatar.com/avatar/ede478200fe4c66ab6fc103ae78249fdf493929c95cc6cf4142f8e79c64f3e8b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/zinigor/", "display_name": "Igor Zinovyev (a11n)"}, "allendav": {"avatar": "https://secure.gravatar.com/avatar/6c18ebc68e4e3734db0d22cc70dd578066e68d8e95adde397c3f49d2b0eaf634?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/allendav/", "display_name": "Allen Snook"}, "annezazu": {"avatar": "https://secure.gravatar.com/avatar/4f50dc56c80eceb636a7ef7d036a019a7d4189e8b3f87d9c899e848248ef36d8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/annezazu/", "display_name": "annezazu"}, "arsihasi": {"avatar": "https://secure.gravatar.com/avatar/999ad02b22f0112b4d36b6445554e086f3e460f926a04dc4973abce8c9d058e2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/arsihasi/", "display_name": "arsihasi"}, "blobaugh": {"avatar": "https://secure.gravatar.com/avatar/607c6b260c5e485442be16d8598d288d5e719a5c938dfe3d8ae82f3239b13fa0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/blobaugh/", "display_name": "Ben Lobaugh (blobaugh)"}, "delawski": {"avatar": "https://secure.gravatar.com/avatar/0af62fa39768d1c5f4e7bccc5de8a33e653aab8b5dbcdd86512d2bba170e2bba?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/delawski/", "display_name": "Piotr Delawski"}, "ebinnion": {"avatar": "https://secure.gravatar.com/avatar/eeaec4da03676fcc587dc5a97fdf904ddd5fe956260e062a7e88a1d395bbfbd5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ebinnion/", "display_name": "Eric Binnion"}, "ethitter": {"avatar": "https://secure.gravatar.com/avatar/28c4fc4ed512b59cb61ab14f7f0f1711a41f7a605b9d85d40753fd46472b9c08?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ethitter/", "display_name": "Erick Hitter"}, "fgiannar": {"avatar": "https://secure.gravatar.com/avatar/df220c3afbdd5a297272d5f181fa54d67d608bf84c0f1de72904a0b2d325ada2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/fgiannar/", "display_name": "Foteini Giannaropoulou (a11n)"}, "jenhooks": {"avatar": "https://secure.gravatar.com/avatar/9e0e282acb4b080561f5b724095418cb65eaf9fc6b06caaf0d5839627e1fec1b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jenhooks/", "display_name": "Jen H. (a11n)"}, "kbrownkd": {"avatar": "https://secure.gravatar.com/avatar/2dbf1f6c2ab8011293a671eb45365aae2f323f662c0ea99e93102f7710fcb23b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kbrownkd/", "display_name": "kbrownkd (a11n)"}, "mdawaffe": {"avatar": "https://secure.gravatar.com/avatar/813f34a1a74baa1628c9876cb3e385bec2e3df5772b724aa97b7cc87bace6607?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mdawaffe/", "display_name": "Michael Adams (mdawaffe)"}, "migueluy": {"avatar": "https://secure.gravatar.com/avatar/862ee99e2ae2ac1cebddf3c3a6d57d4b5530737b67d30cf0b8ab318437aa7f13?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/migueluy/", "display_name": "Miguel Lezama"}, "njweller": {"avatar": "https://secure.gravatar.com/avatar/8bbdf7a6214e590ae6f4b51d13cde17116bc8bc8dd36f725332e197c658c427c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/njweller/", "display_name": "njweller"}, "nunyvega": {"avatar": "https://secure.gravatar.com/avatar/2958fa60229e73018496a81bd70c6092e4f8a8995043ed574a62aa4301b0f266?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nunyvega/", "display_name": "nunyvega"}, "obenland": {"avatar": "https://secure.gravatar.com/avatar/43e10bdac0c553eccd6b30644312cc245d1d4df3cb04dbc898f44cae8d7d68cf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/obenland/", "display_name": "Konstantin Obenland"}, "retrofox": {"avatar": "https://secure.gravatar.com/avatar/9ff3405a86b8178158b444dc6b44fc3ef321c9641b6d95a769956e7b50c26909?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/retrofox/", "display_name": "retrofox"}, "stephdau": {"avatar": "https://secure.gravatar.com/avatar/5778b0063f8a446b13be5c4b22fd51c5a5d7e330425ab0249ee28a60ddca0c3c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stephdau/", "display_name": "Stephane Daury (stephdau)"}, "tmoorewp": {"avatar": "https://secure.gravatar.com/avatar/0d3c5108787a04d1331dc54eac3cc5359abde69c537863fe1e42e45f77a5dd64?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tmoorewp/", "display_name": "Tim Moore"}, "apeatling": {"avatar": "https://secure.gravatar.com/avatar/de60e98510b3a58937f767fc9ce379f76bc77cd66a86c0e03447e7126aa38c3f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/apeatling/", "display_name": "Andy Peatling"}, "cgastrell": {"avatar": "https://secure.gravatar.com/avatar/93672c32dbab1719220330190a013716cc2884e99b2f8be2fcc11b2e54bd2cda?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cgastrell/", "display_name": "cgastrell"}, "chellycat": {"avatar": "https://secure.gravatar.com/avatar/1545fc495715222fccf488c5ccbe0ab48cfc11038f715391e0e5b32630244aac?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/chellycat/", "display_name": "Michelle Langston"}, "hugobaeta": {"avatar": "https://secure.gravatar.com/avatar/593b5018bc29853137ad3c94c6e0294ac50130fcc7fa42ddbeacb9672645b2ef?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hugobaeta/", "display_name": "Hugo Baeta"}, "lschuyler": {"avatar": "https://secure.gravatar.com/avatar/e42d73fdac4fb375f6a58dfda8ebc2a8ae3da4ce656583a6d1c8c645d31653b1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lschuyler/", "display_name": "Lisa Schuyler"}, "mattwiebe": {"avatar": "https://secure.gravatar.com/avatar/691090f38918a05360981a204985d62e29ebfaaf6d94a2180e7bbae0954e8a48?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mattwiebe/", "display_name": "Matt Wiebe"}, "mikeyarce": {"avatar": "https://secure.gravatar.com/avatar/c874a094de3814e0b4b87674503fa440d6e9cfa95ab1ce03a6a4021f950a0d03?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mikeyarce/", "display_name": "Mikey Arce"}, "scottsweb": {"avatar": "https://secure.gravatar.com/avatar/2b8d07f38917888c9dd482eb1197a3be9bb55cc9ac6ba29dee5523a38cea8670?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/scottsweb/", "display_name": "Scott (@scottsweb)"}, "sdixon194": {"avatar": "https://secure.gravatar.com/avatar/7a11ca17eaf55b5625489597e0cf43f95f7313c113ede14779af203314d9079d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sdixon194/", "display_name": "sdixon194"}, "annamcphee": {"avatar": "https://secure.gravatar.com/avatar/54800724be3e3d6154deade860d777e9f1a533c261a3b4ebec2961f87737ef3c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/annamcphee/", "display_name": "Anna McPhee"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "beaulebens": {"avatar": "https://secure.gravatar.com/avatar/d7a8778a3ad9a1b17d7c2c1bb5026ca4565f46bb5552c8f8853053279b02563e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/beaulebens/", "display_name": "Beau Lebens"}, "bindlegirl": {"avatar": "https://secure.gravatar.com/avatar/2da2adb35e8f2903237b373b00aa1a6db7c7a50240b12c6ee1cf1c1a22f0a8fe?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bindlegirl/", "display_name": "bindlegirl (a11n)"}, "drawmyface": {"avatar": "https://secure.gravatar.com/avatar/b6442b023217872517ec7222a3f2146cc872a22b28dfc9bd7dbae96b0425f83b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/drawmyface/", "display_name": "Dan (a11n)"}, "eliorivero": {"avatar": "https://secure.gravatar.com/avatar/110e75165c3d6e513c30364e25ab6939008a22cfed0a23e08cb70e95d24461fe?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/eliorivero/", "display_name": "Elio Rivero"}, "goldsounds": {"avatar": "https://secure.gravatar.com/avatar/b9eeae1c590dae32c9b4a61e2bd4ef445ab3d36ebdc57c71148dfe0bac3e1329?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/goldsounds/", "display_name": "goldsounds"}, "leogermani": {"avatar": "https://secure.gravatar.com/avatar/9198356582655c54b1c2112dd1bbec77cdb92cf30d41aa6a2d246e6c08ea4ab0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/leogermani/", "display_name": "leogermani"}, "lhkowalski": {"avatar": "https://secure.gravatar.com/avatar/0857d0acf736d92f33512dd4cc3a6baa4b95671c911672bf7a06a34babdfebc9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lhkowalski/", "display_name": "Luiz Kowalski"}, "martinremy": {"avatar": "https://secure.gravatar.com/avatar/a112a0c338abec8c44c3cfd5dbc98c2e8b9a201fd6733396c73d476cb212ebf7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/martinremy/", "display_name": "martinremy"}, "nickmomrik": {"avatar": "https://secure.gravatar.com/avatar/fb8c740c30d5ae82eccf1ff4e297ab5ebd2cf6d568499f554f0802affdca60d8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nickmomrik/", "display_name": "Nick Momrik"}, "renatoagds": {"avatar": "https://secure.gravatar.com/avatar/9b5933b9dcaa90de7c781754abe5516b0d371de67058d7095ed69845754f70eb?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/renatoagds/", "display_name": "Renato Augusto Gama dos Santos"}, "richardmtl": {"avatar": "https://secure.gravatar.com/avatar/96855b6fc001037e1ae449d489b91dd19a873ab1dae73b867f98400bbb2a5e9d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/richardmtl/", "display_name": "Richard Archambault"}, "ryancowles": {"avatar": "https://secure.gravatar.com/avatar/0652d120e06d9dd963cf05f84ddaca2b49a5b721d40362a983f538451a78df96?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ryancowles/", "display_name": "Ryan C."}, "scarstocea": {"avatar": "https://secure.gravatar.com/avatar/d0ce1531a1e147d36988127f5a5b6b83b848b131f7725373e74bd268098d78a6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/scarstocea/", "display_name": "Stefan Carstocea"}, "arcangelini": {"avatar": "https://secure.gravatar.com/avatar/b1d09359c0f4a0b35657baf45f943f6a30c58b62e64e586dbd6b0a432d3f87e3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/arcangelini/", "display_name": "arcangelini"}, "clickysteve": {"avatar": "https://secure.gravatar.com/avatar/0861825da60649d4c35658b9667dfb2f50951dfae8dba2948a5e2850802b512b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/clickysteve/", "display_name": "clickysteve"}, "davoraltman": {"avatar": "https://secure.gravatar.com/avatar/7a191efcd7f01c2dc296fc7471866e61ee52ffb0fd774a3625f869cf89e7cfc3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/davoraltman/", "display_name": "Davor"}, "maverick3x6": {"avatar": "https://secure.gravatar.com/avatar/8cc8f058dec63830ba9f93c556a4d5f7c5fb01cf0e8253257cc72e60e81f88f3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/maverick3x6/", "display_name": "Jeff Golenski"}, "nancythanki": {"avatar": "https://secure.gravatar.com/avatar/5c7071162e57b2103a51761d079581f709a222eb1355d5e30850444fc1d3535a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nancythanki/", "display_name": "Nancy"}, "professor44": {"avatar": "https://secure.gravatar.com/avatar/99b146b76fa6bf46fa0aa4c24b4abf6bd6fbbec58ae5f5a8c862da5e1922d1dd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/professor44/", "display_name": "Jesse Friedman"}, "robertbpugh": {"avatar": "https://secure.gravatar.com/avatar/edf07fa59572def75cbd5efdda26a18e844e7ca04332d452f8e6c13aaff76387?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/robertbpugh/", "display_name": "Rob Pugh"}, "thehenridev": {"avatar": "https://secure.gravatar.com/avatar/e7080e99e479cba4cceb009fa621b614b15cd6cf0bec0dde8501ad9ad78423e5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/thehenridev/", "display_name": "Douglas Henri"}, "adamkheckler": {"avatar": "https://secure.gravatar.com/avatar/f06e5592cd5e9cced51a66c16ed97339084dadf400ff0ccd6ded57eb94e02255?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/adamkheckler/", "display_name": "Adam Heckler"}, "alternatekev": {"avatar": "https://secure.gravatar.com/avatar/ac4d1df3d807082a8fe06e58c4856fe0abbb41e3e20f5b04bb6dbe1df3643c11?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alternatekev/", "display_name": "alternatekev"}, "brileyhooper": {"avatar": "https://secure.gravatar.com/avatar/a1a5b4151f9b70cbb397bdae122b2486150882961f5621d1f9f3e25e9c6793c4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brileyhooper/", "display_name": "Briley"}, "daniloercoli": {"avatar": "https://secure.gravatar.com/avatar/81eb5029dfff5a5c1885e24167f3317d598347249a643d6142af7152c51d0c77?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/daniloercoli/", "display_name": "daniloercoli"}, "designsimply": {"avatar": "https://secure.gravatar.com/avatar/5058d52425c1e7f41d9e5303d1d8adfaf3a25aa78c62c6e4ebe0ecce5329090b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/designsimply/", "display_name": "Sheri Grey"}, "jeffgolenski": {"avatar": "https://secure.gravatar.com/avatar/9a0891c1487ca483621d4c5768d0ea5fc4482dff7a3b757de8356a42f3ca35ae?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jeffgolenski/", "display_name": "jeffgolenski"}, "lancewillett": {"avatar": "https://secure.gravatar.com/avatar/0f2e7596b7dc9c730a4dc32c4498b1963ad03daa2ff6eb781a6b28a4a29f528b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lancewillett/", "display_name": "Lance Willett"}, "samhotchkiss": {"avatar": "https://secure.gravatar.com/avatar/b92f54503679707a63e22118a1dbc5adf12a634d6df97b1d957747ad85f196de?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/samhotchkiss/", "display_name": "Sam Hotchkiss"}, "viper007bond": {"avatar": "https://secure.gravatar.com/avatar/b5f16acb1bc24ca6bf644adb593384de64046fa69c5de867a7647c7f736a1271?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/viper007bond/", "display_name": "Alex Mills"}, "iammattthomas": {"avatar": "https://secure.gravatar.com/avatar/17a4afd592d3fca459103e047a9c29c6093ebf5f5d430b5fb50aa3711ab0528d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/iammattthomas/", "display_name": "Matt (Thomas) Miklic"}, "jessefriedman": {"avatar": "https://secure.gravatar.com/avatar/1f6ec3eae783881019af376435a442fb253163e0e6a827af80d315531c264713?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jessefriedman/", "display_name": "jessefriedman"}, "richardmuscat": {"avatar": "https://secure.gravatar.com/avatar/2091a0861065f147f8184167279bf71f65fe1803cb66f8af1ac7d4e8c6cadd56?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/richardmuscat/", "display_name": "Richard Muscat"}, "roccotripaldi": {"avatar": "https://secure.gravatar.com/avatar/d3e2507943e349b8e891a14a87304a92a21004b6923586597493cc2ee1c51ce5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/roccotripaldi/", "display_name": "Rocco Tripaldi"}, "williamvianas": {"avatar": "https://secure.gravatar.com/avatar/280e4e232ad1fc783c7e2c3dc1b94d56a0455b9fc45ccdcadf5dc328c77b482d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/williamvianas/", "display_name": "williamvianas"}, "erania-pinnera": {"avatar": "https://secure.gravatar.com/avatar/bcb89a46ebd083d39c4c985b9d16aac79e499a051d646554756fe2282980fbe9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/erania-pinnera/", "display_name": "Stef (a11n)"}, "hypertextranch": {"avatar": "https://secure.gravatar.com/avatar/264b42a3c85c1b6c390dcaca3139cfa9402ebb90f4d2302e17318041cd1cdca9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hypertextranch/", "display_name": "hypertextranch"}, "rachelsquirrel": {"avatar": "https://secure.gravatar.com/avatar/076318fb03ad52ba4e883e2aa16b5686f41cc1681b221e9ee7213d1bf9178641?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rachelsquirrel/", "display_name": "rachelsquirrel"}, "chaselivingston": {"avatar": "https://secure.gravatar.com/avatar/a2f2d7121609f0d52ce7d86336fed65bbc852deeb4c5d52207b40c52310fbb96?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/chaselivingston/", "display_name": "Chase Livingston"}, "danielbachhuber": {"avatar": "https://secure.gravatar.com/avatar/16b43937020e44059fb472b2e1f0b5bc19bb195123b9a303f7b1ed5abf2c35e5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/danielbachhuber/", "display_name": "Daniel Bachhuber"}, "georgestephanis": {"avatar": "https://secure.gravatar.com/avatar/7fab7a27d6eb1e11d63e8a5963991d4adacce3ae704dc2fb7f53d97fad88edce?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/georgestephanis/", "display_name": "George Stephanis"}, "johnjamesjacoby": {"avatar": "https://secure.gravatar.com/avatar/f8b3e78da513af70d22b0a942297a300eef15e3ce8080e877c054ebb83e24d82?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/johnjamesjacoby/", "display_name": "John James Jacoby"}, "michael-arestad": {"avatar": "https://secure.gravatar.com/avatar/9548b9d111425d5ffc518f40c446753d69a6e2574daaed57b458fd8ce835dad5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/michael-arestad/", "display_name": "Michael Arestad"}, "adrianmoldovanwp": {"avatar": "https://secure.gravatar.com/avatar/2bb23d3c653eb515995455eb7de5bdfe3a7a263efb78b5e77599bdd7c53b0671?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/adrianmoldovanwp/", "display_name": "adrianmoldovanwp"}, "miguelxavierpenha": {"avatar": "https://secure.gravatar.com/avatar/9f0c0915ebf37f1f41232f3d183bc7e93763f4f940b26b9ac2a032f6c1154d71?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/miguelxavierpenha/", "display_name": "miguelxavierpenha"}}, "last_updated": "2025-10-10 1:23pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/jetpack.15.1.1.zip", "author_profile": "https://profiles.wordpress.org/automattic/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 4000000, "aspiresync_meta": {"id": "019a30bf-f6b4-7329-ba29-6828bc816639", "name": "Jetpack – WP Security, Backup, Speed, & Growth", "slug": "jetpack", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1760102580, "version": "15.1.1"}, "support_threads": 90, "requires_plugins": [], "short_description": "Improve your WP security with powerful one-click tools like backup, WAF, and malware scan. Includes free tools like stats, CDN and social sharing.", "author_block_count": "6", "author_block_rating": 93.68421052631601, "commercial_support_url": "https://jetpack.com/support/", "support_threads_resolved": 75}'); -INSERT INTO public.plugins VALUES ('019a30c1-65f1-70af-822a-dab25bd88f06', 'limit-login-attempts-reloaded', 'Limit Login Attempts Reloaded – Login Security, Brute Force Protection, Firewall', 'Block excessive login attempts and protect your site against brute force attacks. Simple, yet powerful tools to improve site performance.', '

    Limit Login Attempts Reloaded functions as a robust deterrent against brute force attacks, bolstering your website’s security measures and optimizing its performance. It achieves this by restricting the number of login attempts allowed. This applies not only to the standard login method, but also to XMLRPC, Woocommerce, and custom login pages. With more than 2.5 million active users, this plugin fulfills all your login security requirements.

    -

    The plugin functions by automatically preventing further attempts from a particular Internet Protocol (IP) address and/or username once a predetermined limit of retries has been surpassed. This significantly weakens the effectiveness of brute force attacks on your website.

    -

    By default, WordPress permits an unlimited number of login attempts, posing a vulnerability where passwords can be easily deciphered through brute force methods.

    -

    Limit Login Attempts Reloaded Premium (Try Free with Micro Cloud)
    -Upgrade to Limit Login Attempts Reloaded Premium to extend cloud-based protection to the Limit Login Attempts Reloaded plugin, thereby enhancing your login security. The premium version includes a range of highly beneficial features, including IP intelligence to detect, counter and deny malicious login attempts. Your failed login attempts will be safely neutralized in the cloud so your website can function at its optimal performance during an attack.

    -

    -

    Features (Free Version):

    -
      -
    • Limit Logins – Limit the number of retry attempts when logging in (per each IP).
    • -
    • Configurable Lockout Timings – Modify the amount of time a user or IP must wait after a lockout.
    • -
    • Remaining Tries – Informs the user about the remaining retries or lockout time on the login page.
    • -
    • Lockout Email Notifications – Informs the admin via email of lockouts.
    • -
    • Denied Attempt Logs – View a log of all denied attempts and lockouts.
    • -
    • IP & Username Safelist/Denylist – Control access to usernames and IPs.
    • -
    • New User Registration Protection (Micro Cloud Accounts) – Protects default WP registration.
    • -
    • Sucuri compatibility.
    • -
    • Wordfence compatibility.
    • -
    • Ultimate Member compatibility.
    • -
    • WPS Hide Login compatibility.
    • -
    • XMLRPC gateway protection.
    • -
    • Woocommerce login page protection.
    • -
    • Multi-site compatibility with extra MU settings.
    • -
    • GDPR compliant.
    • -
    • Custom IP origins support (Cloudflare, Sucuri, etc.).
    • -
    • llar_admin own capability.
    • -
    -

    Features (Premium Version):

    -
      -
    • Performance Optimizer – Offload the burden of excessive failed logins from your server to protect your server resources, resulting in improved speed and efficiency of your website.
    • -
    • Enhanced IP Intelligence – Identify repetitive and suspicious login attempts to detect potential brute force attacks. IPs with known malicious activity are stored and used to help prevent and counter future attacks.
    • -
    • Enhanced Throttling – Longer lockout intervals each time a malicious IP or username tries to login unsuccessfully.
    • -
    • Deny By CountryBlock logins by country by simply selecting the countries you want to deny.
    • -
    • Auto IP Denylist – Automatically add IP addresses to your active cloud deny list that repeatedly fail login attempts.
    • -
    • New User Registration Protection – Protects default WP registration.
    • -
    • Global Denylist Protection – Utilize our active cloud IP data from thousands of websites in the LLAR network.
    • -
    • Synchronized Lockouts – Lockout IP data can be shared between multiple domains for enhanced protection in your network.
    • -
    • Synchronized Safelist/Denylist – Safelist/Denylist IP and username data can be shared between multiple domains.
    • -
    • Premium Support – Email support with a security tech.
    • -
    • Auto Backups of All IP Data – Store your active IP data in the cloud.
    • -
    • Successful Logins Log – Store successful logins in the cloud including IP info, city, state and lat/long.
    • -
    • Enhanced lockout logs – Gain valuable insights into the origins of IPs that are attempting logins.
    • -
    • CSV Download of IP Data – Download IP data direclty from the cloud.
    • -
    • Supports IPV6 Ranges For Safelist/Denylist
    • -
    • Unlock The Locked Admin – Easily unlock the locked admin through the cloud.
    • -
    -

    *Some features require higher level plans.

    -

    Upgrading from the old Limit Login Attempts plugin?

    -
      -
    1. Go to the Plugins section in your site’s backend.
    2. -
    3. Remove the Limit Login Attempts plugin.
    4. -
    5. Install the Limit Login Attempts Reloaded plugin.
    6. -
    -

    All your settings will be kept intact!

    -

    Many languages are currently supported in the Limit Login Attempts Reloaded plugin but we welcome any additional ones.

    -

    Help us bring Limit Login Attempts Reloaded to even more countries.

    -

    Translations: Bulgarian, Brazilian Portuguese, Catalan, Chinese (Traditional), Czech, Dutch, Finnish, French, German, Hungarian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish

    -

    Plugin uses standard actions and filters only.

    -

    Based on the original code from Limit Login Attempts plugin by Johan Eenfeldt.

    -

    Branding Guidelines

    -

    Limit Login Attempts Reloaded™ is a trademark of Atlantic Silicon Inc. When writing about the plugin, please make sure to use Reloaded after Limit Login Attempts. Limit Login Attempts is the old plugin.

    -
      -
    • Limit Login Attempts Reloaded (correct)
    • -
    • Limit Login Attempts (incorrect)
    • -
    -', '2.26.24', 'WPChef', '3.0', NULL, '6.8.3', 'https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.24.zip', '2016-08-03 00:00:00+00', '2025-10-29 15:27:00+00', 'https://profiles.wordpress.org/wpchefgadget/', 98, 1408, 5, 4, 2000000, 72836343, NULL, 'https://www.paypal.com/donate?hosted_button_id=FKD4MYFCMNVQQ', NULL, NULL, 'https://wordpress.org/support/plugin/limit-login-attempts-reloaded/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Limit Login Attempts Reloaded – Login Security, Brute Force Protection, Firewall", "slug": "limit-login-attempts-reloaded", "tags": {"spam": "spam", "firewall": "firewall", "security": "security", "brute-force": "Brute Force", "login-security": "login security"}, "added": "2016-08-03", "icons": {"1x": "https://ps.w.org/limit-login-attempts-reloaded/assets/icon-128x128.png?rev=2456910", "2x": "https://ps.w.org/limit-login-attempts-reloaded/assets/icon-256x256.png?rev=2456910"}, "author": "WPChef", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/limit-login-attempts-reloaded/assets/banner-772x250.png?rev=2954981", "high": "https://ps.w.org/limit-login-attempts-reloaded/assets/banner-1544x500.png?rev=2954981"}, "ratings": {"1": 32, "2": 10, "3": 6, "4": 24, "5": 1336}, "version": "2.26.24", "homepage": "", "requires": "3.0", "sections": {"faq": "\n
    \nWhat do I do if all users get blocked?\n\n

    \n

    If you are using contemporary hosting, it’s likely your site uses a proxy domain service like CloudFlare, Sucuri, Nginx, etc. They replace your user’s IP address with their own. If your server is not configured properly, all users will get the same IP address. This also applies to bots and hackers. Therefore, locking one user will lead to locking everybody else out. In the free version of the plugin, this can be adjusted using the Trusted IP Origin setting. In the premium version, the cloud service intelligently recognizes the non-standard IP origins and handles them correctly, even if your hosting provider does not.

    \n

    \n
    \nHow do I know if I’m under attack?\n\n

    \n

    An easy way to check if the attack is legitimate is to copy the IP address from the lockout notification and check its location using a IP locator tool. If the location is not somewhere you recognize and you have received several failed login attempts, then you are likely being attacked. You might notice dozens or hundreds of IPs each day. Visit our website to learn how can you prevent brute force attacks on your website.

    \n

    \n
    \nHow can I tell that the premium plugin is working?\n\n

    \n

    After you upgrade to our premium version, you will see a new dashboard in your WordPress admin that shows all attacks that will now relay through our cloud service. On the graph, you’ll see requests and failed login attempts. Each request will represent the cloud app validating an IP, which also includes denied logins.

    \n

    In some cases, you may notice an increase in speed and efficiency with your website. Also, a reduction in lockout notifications via email.

    \n

    \n
    \nCould these failed login attempts be fake?\n\n

    \n

    Some users find it hard to believe that they could experience numerous unsuccessful login attempts, particularly when their site has just been established or has minimal human traffic. The plugin is not responsible for generating these failed login attempts. Newly created websites are frequently hosted on shared IP addresses, making it easy for hackers to discover them. Additionally, newly registered domain names are often crawled soon after creation, rendering a WordPress website susceptible to attacks. Such websites are attractive targets as security is not a primary concern for their owners. We’ve created an article that delves deeper into the issue of fake login attempts in WordPress.

    \n

    \n
    \nWhat happens if my site exceeds the request limits in the plan?\n\n

    \n

    The premium plan’s resource limits start from 100,000 requests per month, which should accept almost any heavy brute-force attack. We monitor all of our sites and will alert the user if it appears they are going over their limits. If limits are reached, we will suggest to the user upgrading to the next plan. If you are using the free version, the load caused by brute force attacks will be absorbed by your current hosting bandwidth, which could cause your hosting costs to increase.

    \n

    \n
    \nWhat URLs are being attacked and protected?\n\n

    \n

    The URLs being protected are your login page (wp-login.php, wp-admin), xmlrpc.php, WooCommerce login page, and any custom login page you have that uses regular WordPress login hooks.

    \n

    \n
    \nWhy is LLAR more popular than other brute-force protection plugins?\n\n

    \n

    Our main focus is protecting your site from brute force attacks. This allows our plugin to be very lean and effective. It doesn’t require a lot of your web hosting resources and keeps your site well-protected. More importantly, it does all of this automatically as our service learns on its own about each IP it encounters. In contrast, a firewall would require manual blocking of IPs.

    \n

    \n
    \nWhat to do when an admin gets blocked?\n\n

    \n

    Open the site from another IP. You can do this from your cell phone, or using Opera browser and enabling free VPN there. You can also try turning off your router for a few minutes and then see if you get a different IP address. These will work if your hosting server is configured correctly. If that doesn’t work, connect to the site using FTP or your hosting control panel file manager. Navigate to wp-content/plugins/ and rename the limit-login-attempts-reloaded folder. Log in to the site then rename that folder back and whitelist your IP. By upgrading to our premium app, you will have the unlocking functionality right from the cloud so you’ll never have to deal with this issue.

    \n

    \n
    \nWhat settings should I use In the plugin?\n\n

    \n

    The settings are explained within the plugin in great detail. If you are unsure, use the default settings as they are the recommended ones.

    \n

    \n
    \nCan I share the safelist/denylist throughout all of my sites?\n\n

    \n

    By default, you will need to copy and paste the lists to each site manually. For the premium service, sites are grouped within the same private cloud account. Each site within that group can be configured if it shares its lockouts and access lists with other group members. The setting is located in the plugin’s interface. The default options are recommended.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    VERY GOOD

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy solucionespirita on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    fulfills its purpose completely

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It definitely works...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jkognq on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works, Very Well

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really good!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy thunqvist on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I only have positive experience so far.

    \n\n\n\n

    The plug-in has blocked so many login attempts but I can just relax and trust the program.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fine plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kingbolo on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yesterday the site went live. Just a day later the plugin reports multiple attempts to login with user admin. I know that these attempt are made, but within a day is suprising.
    Based on that I am taken extra measures to harden the login

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tradethong on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like this plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ta007403 on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a good plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy Go To Plugin for My Stack

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy paprikacreative on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you for creating this! Super easy and one of my goto plugins for all wordpress site builds.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks heaps LLAR team

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy munchywok on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Alex, Guriy & Greg you have my thanks for providing such an effective, easy to use tool which has such a profound impact on WP site security. Kind regards, Jono

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great, has blocked thousands of invalid attempts

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy longriver on September 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works great, has blocked thousands of invalid attempts

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Dankjewel

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy debeukeleerm on August 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Om mij te verwittigen van een vijandige poging tot inloggen

    \n
    \n
    \n", "changelog": "

    2.26.24

    \n
      \n
    • Fixed: json_decode(): Passing null to parameter #1 ($json) of type string is deprecated warning.
    • \n
    • Help and extensions page visual changes.
    • \n
    • Assets cleanup.
    • \n
    \n

    2.26.23

    \n
      \n
    • Fixed conflict with Hub and similar themes.
    • \n
    • Reorganized links.
    • \n
    \n

    2.26.22

    \n
      \n
    • Fixed REMOTE_ADDR if server is misconfigured.
    • \n
    • Lint.
    • \n
    \n

    2.26.21

    \n
      \n
    • Update notice position corrected.
    • \n
    • Debug tab – more info added.
    • \n
    • Lint.
    • \n
    \n

    2.26.20

    \n
      \n
    • Fixed formatting issues for Safari on some pages.
    • \n
    • Added displaying of Customer ID.
    • \n
    • Menu minor fix.
    • \n
    • Onboarding process updated.
    • \n
    \n

    2.26.19

    \n
      \n
    • Added links to the IP2Location page.
    • \n
    \n

    2.26.18

    \n
      \n
    • Better displaying IPv6 in the log.
    • \n
    \n

    2.26.17

    \n
      \n
    • Added default registration protection for cloud accounts (free and paid).
    • \n
    \n

    2.26.16

    \n
      \n
    • Fixed GDPR message issue for some themes.
    • \n
    \n

    2.26.15

    \n
      \n
    • Fixed translation compatibility with WordPress 6.7.
    • \n
    • Fixed GDPR message on the Woocommerce login page.
    • \n
    • Fix: load login-page-styles.css (on wp-login.php) only if it is necessary (thanks to georgejipa).
    • \n
    • CSS fixes.
    • \n
    \n

    2.26.14

    \n
      \n
    • Improved compatibility with custom login pages, including WooCommerce and UltimateMember.
    • \n
    • Standardized display of login messages.
    • \n
    • A new Custom Error Message setting is added. The message is being appended to all asynchronous messages.
    • \n
    • Fixed translation compatibility with WordPress 6.7.
    • \n
    • CSS fixes.
    • \n
    \n

    2.26.13

    \n
      \n
    • New “llar_admin” capability added to let other roles access the plugin.
    • \n
    • CSS fixes.
    • \n
    • Sticky headers added to the log tables.
    • \n
    • Small interface changes.
    • \n
    \n

    2.26.12

    \n
      \n
    • Better displaying IPv6 in successful login attempts block.
    • \n
    • Possible intersections in tabs with other plugins fixed.
    • \n
    • PHP 8, 9 compatibility updates.
    • \n
    • Refactoring.
    • \n
    \n

    2.26.11

    \n
      \n
    • Fixed possible style conflicts related to tables.
    • \n
    • Fixed possible PHP warnings.
    • \n
    • Fixed some I18N issues, thanks to alexclassroom!
    • \n
    • Better displaying multiple roles in login logs.
    • \n
    \n

    2.26.10

    \n
      \n
    • Log of successful login attempts implemented for Micro Cloud (Free) and Premium users.
    • \n
    • Checklist of recommended actions implemented.
    • \n
    • Settings page reorganized.
    • \n
    \n

    2.26.9

    \n
      \n
    • Chart library updated.
    • \n
    \n

    2.26.8

    \n
      \n
    • Fixed possible WooCommerce conflict.
    • \n
    \n

    2.26.7

    \n
      \n
    • Better informing on Micro Cloud.
    • \n
    \n

    2.26.6

    \n
      \n
    • Micro Cloud API url fix.
    • \n
    \n

    2.26.5

    \n
      \n
    • Better informing on cloud status.
    • \n
    \n

    2.26.4

    \n
      \n
    • Added country translation.
    • \n
    • Better Micro Cloud API response handling.
    • \n
    • A link fixed.
    • \n
    \n

    2.26.3

    \n
      \n
    • CSS issue fixed on Logs tab.
    • \n
    \n

    2.26.2

    \n
      \n
    • CSS issue fixed.
    • \n
    \n

    2.26.1

    \n
      \n
    • Micro Cloud link fixed.
    • \n
    \n

    2.26.0

    \n
      \n
    • New design.
    • \n
    • Free Micro Cloud plan introduced.
    • \n
    \n

    2.25.29

    \n
      \n
    • A link fixed.
    • \n
    \n

    2.25.28

    \n
      \n
    • Improved cloud charts.
    • \n
    \n

    2.25.27

    \n
      \n
    • Security improvement: Better shortcode escaping.
    • \n
    • Fixed date formatting on the logs page.
    • \n
    • Fixed top menu links on the front-end.
    • \n
    • Badge added to the top menu.
    • \n
    \n

    2.25.26

    \n
      \n
    • Security improvement: Different nonce for each AJAX action.
    • \n
    • Security improvement: The toggle_auto_update_callback checks for the update_plugins cap.
    • \n
    \n

    2.25.25

    \n
      \n
    • PHP 8.2/9 compatibility improved, thanks to Jer Turowetz!
    • \n
    • Button size and text typo fixed.
    • \n
    \n

    2.25.24

    \n
      \n
    • Better loading of translations.
    • \n
    • Fixed PHP warning related to menu.
    • \n
    \n

    2.25.23

    \n
      \n
    • Better side menu.
    • \n
    • Fixed I18N issues, thanks to alexclassroom!
    • \n
    \n

    2.25.22

    \n
      \n
    • Interface changes.
    • \n
    • Tested with WP 6.3.
    • \n
    \n

    2.25.21

    \n
      \n
    • Optimization: autoload for large options turned off.
    • \n
    • Interface changes.
    • \n
    \n

    2.25.20

    \n
      \n
    • Fix against network requests caching removed b/c some misconfigured servers can’t handle it.
    • \n
    \n

    2.25.19

    \n
      \n
    • Better handling of network connection issues.
    • \n
    • Fixed responsive formatting on dashboard.
    • \n
    • Added fix against network requests caching.
    • \n
    \n

    2.25.18

    \n
      \n
    • Fixed errors occurring in situations where two versions of the plugin are installed (which should not normally happen).
    • \n
    \n

    2.25.17

    \n
      \n
    • Refactoring.
    • \n
    • Server load reducing optimization.
    • \n
    \n

    2.25.16

    \n
      \n
    • Double slashes in paths removed.
    • \n
    • Better handling of cloud response codes.
    • \n
    \n

    2.25.15

    \n
      \n
    • Error messages logic fixed.
    • \n
    \n

    2.25.14

    \n
      \n
    • Multisite support improved.
    • \n
    • CSS outside of the plugin issue fixed.
    • \n
    • Better number formatting on the dashboard.
    • \n
    • Lockout email template updated.
    • \n
    \n

    2.25.13

    \n
      \n
    • Ultimate Member compatibility.
    • \n
    • Fixed conflicting URL parameters in some rare cases.
    • \n
    • Updated attempts counter logic.
    • \n
    \n

    2.25.12

    \n
      \n
    • Fixed IPv4 validation when passed with a port number.
    • \n
    • Fixed texts and translations.
    • \n
    \n

    2.25.11

    \n
      \n
    • PHP 8 compatibility fixed.
    • \n
    • Logs loading issue fixed.
    • \n
    • Help and Extensions tabs added.
    • \n
    • Notification about auto updates added.
    • \n
    • Displaying of plugin version added.
    • \n
    • Text changes made.
    • \n
    \n

    2.25.10

    \n
      \n
    • Tested with PHP 8.
    • \n
    • Small styles refactoring.
    • \n
    • Fixed a rare issue with events log not being displayed correctly.
    • \n
    • Chart library updated.
    • \n
    \n

    2.25.9

    \n
      \n
    • Welcome page replaced with a modal.
    • \n
    \n

    2.25.8

    \n
      \n
    • Email text, links updated.
    • \n
    \n

    2.25.7

    \n
      \n
    • Country flags added to log.
    • \n
    • Refresh button added to log.
    • \n
    • Email text updated.
    • \n
    \n

    2.25.6

    \n
      \n
    • Email links updated.
    • \n
    \n

    2.25.5

    \n
      \n
    • Fixed Woocommerce integration.
    • \n
    • Updated some interface links.
    • \n
    \n

    2.25.4

    \n
      \n
    • Fixed session error in rare cases.
    • \n
    • Access rules explained.
    • \n
    • Improved session behavior on the login page.
    • \n
    • Fixed warning on some GoDaddy installations.
    • \n
    \n

    2.25.3

    \n
      \n
    • Improved compatibility with WordFence.
    • \n
    • Better handling of HTTP_X_FORWARDED_FOR on Debug tab.
    • \n
    • Added option to hide warning badge.
    • \n
    \n

    2.25.2

    \n
      \n
    • Security indicator fixed for multisite.
    • \n
    \n

    2.25.1

    \n
      \n
    • Added setting to turn the dashboard widged off.
    • \n
    • The widget is visible to admins only.
    • \n
    \n

    2.25.0

    \n
      \n
    • Dashboard widged added.
    • \n
    • Security indicator added.
    • \n
    \n

    2.24.1

    \n
      \n
    • Fixed E_ERROR occurring in rare cases when the log table is corrupted.
    • \n
    \n

    2.24.0

    \n
      \n
    • Protection increased: bots can’t parse lockout messages anymore.
    • \n
    \n

    2.23.2

    \n
      \n
    • Cloud: better unlock UX.
    • \n
    • Litle cleanup.
    • \n
    \n

    2.23.1

    \n
      \n
    • Added infinite scroll for cloud logs.
    • \n
    \n

    2.23.0

    \n
      \n
    • Reduced plugin size by removing obsolete translations.
    • \n
    • Cleaned up the dashboard.
    • \n
    • Cloud: added information about auto/manually-blocked IPs.
    • \n
    • GDPR: added an option to insert a link to a Privacy Policy page via a shortcode, clarified GDPR compliance.
    • \n
    \n

    2.22.1

    \n
      \n
    • IP added to the email subject.
    • \n
    \n

    2.22.0

    \n
      \n
    • Added support of CIDR notation for specifying IP ranges.
    • \n
    • Texts updated.
    • \n
    • Refactoring.
    • \n
    \n

    2.21.1

    \n
      \n
    • Fixed: Uncaught Error: Call to a member function stats()
    • \n
    • Cloud API: added block by country.
    • \n
    • Refactoring.
    • \n
    \n

    2.21.0

    \n
      \n
    • GDPR compliance: IPs obfuscation replaced with a customizable consent message on the login page.
    • \n
    • Cloud API: fixed removing of blocked IPs from the access lists under certain conditions.
    • \n
    • Cloud API: domain for Setup Code is taken from the WordPress settings now.
    • \n
    \n

    2.20.6

    \n
      \n
    • Multisite tab links fixed.
    • \n
    \n

    2.20.5

    \n
      \n
    • Option to show and hide the top-level menu item.
    • \n
    \n

    2.20.4

    \n
      \n
    • Sucuri compatibility verified.
    • \n
    • Wordfence compatibility verified.
    • \n
    • Better menu navigation.
    • \n
    • Timezones fixed for the global chart.
    • \n
    \n

    2.20.3

    \n
      \n
    • More clear wording.
    • \n
    • Cloud API: fixed double submit in the settings form.
    • \n
    • Better displaying of stats.
    • \n
    \n

    2.20.2

    \n
      \n
    • Updated email text.
    • \n
    \n

    2.20.1

    \n
      \n
    • New dashboard more clear stats.
    • \n
    \n

    2.20.0

    \n
      \n
    • New dashboard with simple stats.
    • \n
    \n

    2.19.2

    \n
      \n
    • Texts and links updated.
    • \n
    \n

    2.19.1

    \n
      \n
    • Welcome page.
    • \n
    • Image and text updates.
    • \n
    \n

    2.19.0

    \n
      \n
    • Refactoring.
    • \n
    • Feedback message location fixed.
    • \n
    • Text changes.
    • \n
    \n

    2.18.0

    \n
      \n
    • Cloud API: usage chart added.
    • \n
    • Text changes.
    • \n
    \n

    2.17.4

    \n
      \n
    • Missing jQuery images added.
    • \n
    • PHP 5 compatibility fixed.
    • \n
    • Custom App setup link replaced with setup code.
    • \n
    \n

    2.17.3

    \n
      \n
    • Plugin pages message.
    • \n
    \n

    2.17.2

    \n
      \n
    • Lockout notification refactored.
    • \n
    \n

    2.17.1

    \n
      \n
    • CSS cache issue fixed.
    • \n
    • Notification text updated.
    • \n
    \n

    2.17.0

    \n
      \n
    • Refactoring.
    • \n
    • Email text and notification updated.
    • \n
    • New links in the list of plugins.
    • \n
    \n

    2.16.0

    \n
      \n
    • Custom Apps functionality implemented. More details: https://limitloginattempts.com/app/
    • \n
    \n

    2.15.2

    \n
      \n
    • Alternative method of closing the feedback message.
    • \n
    \n

    2.15.1

    \n
      \n
    • Refactoring.
    • \n
    \n

    2.15.0

    \n
      \n
    • Reset password feature has been removed as unwanted.
    • \n
    • Small refactoring.
    • \n
    \n

    2.14.0

    \n
      \n
    • BuddyPress login error compatibility implemented.
    • \n
    • UltimateMember compatibility implemented.
    • \n
    • A PHP warning fixed.
    • \n
    \n

    2.13.0

    \n
      \n
    • Fixed incompatibility with PHP < 5.6.
    • \n
    • Settings page layout refactored.
    • \n
    \n

    2.12.3

    \n
      \n
    • The feedback message is shown for admins only now, and it can also be closed even if the site has issues with AJAX.
    • \n
    \n

    2.12.2

    \n
      \n
    • Fixed the feedback message not being shown, again.
    • \n
    \n

    2.12.1

    \n
      \n
    • Fixed the feedback message not being shown.
    • \n
    \n

    2.12.0

    \n
      \n
    • Small refactoring.
    • \n
    • get_message() – fixed error notices.
    • \n
    • This is the first time we are asking you for a feedback.
    • \n
    \n

    2.11.0

    \n
      \n
    • Blacklisted usernames can’t be registered anymore.
    • \n
    \n

    2.10.1

    \n
      \n
    • Fixed: GDPR compliance option could not be selected on the multisite installations.
    • \n
    \n

    2.10.0

    \n
      \n
    • Debug information has been added for better support.
    • \n
    \n

    2.9.0

    \n
      \n
    • Trusted IP origins option has been added.
    • \n
    \n

    2.8.1

    \n
      \n
    • Extra lockout options are back.
    • \n
    \n

    2.8.0

    \n
      \n
    • The plugin doesn’t trust any IP addresses other than _SERVER[“REMOTE_ADDR”] anymore. Trusting other IP origins make protection useless b/c they can be easily faked. This new version provides a way of secure IP unlocking for those sites that use a reverse proxy coupled with misconfigurated servers that populate _SERVER[“REMOTE_ADDR”] with wrong IPs which leads to mass blocking of users.
    • \n
    \n

    2.7.4

    \n
      \n
    • The lockout alerts can be sent to a configurable email address now.
    • \n
    \n

    2.7.3

    \n
      \n
    • Settings page is moved back to “Settings”.
    • \n
    \n

    2.7.2

    \n
      \n
    • Settings are moved to a separate page.
    • \n
    • Fixed: login error message. https://wordpress.org/support/topic/how-to-change-login-error-message/
    • \n
    \n

    2.7.1

    \n
      \n
    • A security issue inherited from the ancestor plugin Limit Login Attempts has been fixed.
    • \n
    \n

    2.7.0

    \n
      \n
    • \n

      GDPR compliance implemented.

      \n
    • \n
    • \n

      Fixed: ip_in_range() loop $ip overrides itself causing invalid results.
      \nhttps://wordpress.org/support/topic/ip_in_range-loop-ip-overrides-itself-causing-invalid-results/

      \n
    • \n
    • \n

      Fixed: the plugin was locking out the same IP address multiple times, each with a different port.
      \nhttps://wordpress.org/support/topic/same-ip-different-port/

      \n
    • \n
    \n

    2.6.3

    \n
      \n
    • Added support of Sucuri Website Firewall.
    • \n
    \n

    2.6.2

    \n
      \n
    • Fixed the issue with backslashes in usernames.
    • \n
    \n

    2.6.1

    \n
      \n
    • \n

      Plugin returns the 403 Forbidden header after the limit of login attempts via XMLRPC is reached.

      \n
    • \n
    • \n

      Added support of IP ranges in white/black lists.

      \n
    • \n
    • \n

      Lockouts now can be released selectively.

      \n
    • \n
    • \n

      Fixed the issue with encoding of special symbols in email notifications.

      \n
    • \n
    \n

    2.5.0

    \n
      \n
    • Added Multi-site Compatibility and additional MU settings. https://wordpress.org/support/topic/multisite-compatibility-47/
    • \n
    \n

    2.4.0

    \n
      \n
    • Usernames and IP addresses can be white-listed and black-listed now. https://wordpress.org/support/topic/banning-specific-usernames/ https://wordpress.org/support/topic/good-831/
    • \n
    • The lockouts log has been inversed. https://wordpress.org/support/topic/inverse-log/
    • \n
    \n

    2.3.0

    \n
      \n
    • IP addresses can be white-listed now. https://wordpress.org/support/topic/legal-user/
    • \n
    • A “Gateway” column is added to the lockouts log. It shows what endpoint an attacker was blocked from. https://wordpress.org/support/topic/xmlrpc-7/
    • \n
    • The “Undefined index: client_type” error is fixed. https://wordpress.org/support/topic/php-notice-when-updating-settings-page/
    • \n
    \n

    2.2.0

    \n
      \n
    • Removed the “Handle cookie login” setting as they are now obsolete.
    • \n
    • Added bruteforce protection against Woocommerce login page attacks. https://wordpress.org/support/topic/how-to-integrate-with-woocommerce-2/
    • \n
    • Added bruteforce protection against XMLRPC attacks. https://wordpress.org/support/topic/xmlrpc-7/
    • \n
    \n

    2.1.0

    \n
      \n
    • The site connection settings are now applied automatically and therefore have been removed from the admin interface.
    • \n
    • Now compatible with PHP 5.2 to support some older WP installations.
    • \n
    \n

    2.0.0

    \n
      \n
    • fixed PHP Warning: Illegal offset type in isset or empty https://wordpress.org/support/topic/limit-login-attempts-generating-php-errors
    • \n
    • fixed the deprecated functions issue
      \nhttps://wordpress.org/support/topic/using-deprecated-function
    • \n
    • Fixed error with function arguments: https://wordpress.org/support/topic/warning-missing-argument-2-5
    • \n
    • added time stamp to unsuccessful tries on the plugin configuration page.
    • \n
    • fixed .po translation files issue.
    • \n
    • code refactoring and optimization.
    • \n
    \n", "description": "

    Limit Login Attempts Reloaded functions as a robust deterrent against brute force attacks, bolstering your website’s security measures and optimizing its performance. It achieves this by restricting the number of login attempts allowed. This applies not only to the standard login method, but also to XMLRPC, Woocommerce, and custom login pages. With more than 2.5 million active users, this plugin fulfills all your login security requirements.

    \n

    The plugin functions by automatically preventing further attempts from a particular Internet Protocol (IP) address and/or username once a predetermined limit of retries has been surpassed. This significantly weakens the effectiveness of brute force attacks on your website.

    \n

    By default, WordPress permits an unlimited number of login attempts, posing a vulnerability where passwords can be easily deciphered through brute force methods.

    \n

    Limit Login Attempts Reloaded Premium (Try Free with Micro Cloud)
    \nUpgrade to Limit Login Attempts Reloaded Premium to extend cloud-based protection to the Limit Login Attempts Reloaded plugin, thereby enhancing your login security. The premium version includes a range of highly beneficial features, including IP intelligence to detect, counter and deny malicious login attempts. Your failed login attempts will be safely neutralized in the cloud so your website can function at its optimal performance during an attack.

    \n

    \n

    Features (Free Version):

    \n
      \n
    • Limit Logins – Limit the number of retry attempts when logging in (per each IP).
    • \n
    • Configurable Lockout Timings – Modify the amount of time a user or IP must wait after a lockout.
    • \n
    • Remaining Tries – Informs the user about the remaining retries or lockout time on the login page.
    • \n
    • Lockout Email Notifications – Informs the admin via email of lockouts.
    • \n
    • Denied Attempt Logs – View a log of all denied attempts and lockouts.
    • \n
    • IP & Username Safelist/Denylist – Control access to usernames and IPs.
    • \n
    • New User Registration Protection (Micro Cloud Accounts) – Protects default WP registration.
    • \n
    • Sucuri compatibility.
    • \n
    • Wordfence compatibility.
    • \n
    • Ultimate Member compatibility.
    • \n
    • WPS Hide Login compatibility.
    • \n
    • XMLRPC gateway protection.
    • \n
    • Woocommerce login page protection.
    • \n
    • Multi-site compatibility with extra MU settings.
    • \n
    • GDPR compliant.
    • \n
    • Custom IP origins support (Cloudflare, Sucuri, etc.).
    • \n
    • llar_admin own capability.
    • \n
    \n

    Features (Premium Version):

    \n
      \n
    • Performance Optimizer – Offload the burden of excessive failed logins from your server to protect your server resources, resulting in improved speed and efficiency of your website.
    • \n
    • Enhanced IP Intelligence – Identify repetitive and suspicious login attempts to detect potential brute force attacks. IPs with known malicious activity are stored and used to help prevent and counter future attacks.
    • \n
    • Enhanced Throttling – Longer lockout intervals each time a malicious IP or username tries to login unsuccessfully.
    • \n
    • Deny By CountryBlock logins by country by simply selecting the countries you want to deny.
    • \n
    • Auto IP Denylist – Automatically add IP addresses to your active cloud deny list that repeatedly fail login attempts.
    • \n
    • New User Registration Protection – Protects default WP registration.
    • \n
    • Global Denylist Protection – Utilize our active cloud IP data from thousands of websites in the LLAR network.
    • \n
    • Synchronized Lockouts – Lockout IP data can be shared between multiple domains for enhanced protection in your network.
    • \n
    • Synchronized Safelist/Denylist – Safelist/Denylist IP and username data can be shared between multiple domains.
    • \n
    • Premium Support – Email support with a security tech.
    • \n
    • Auto Backups of All IP Data – Store your active IP data in the cloud.
    • \n
    • Successful Logins Log – Store successful logins in the cloud including IP info, city, state and lat/long.
    • \n
    • Enhanced lockout logs – Gain valuable insights into the origins of IPs that are attempting logins.
    • \n
    • CSV Download of IP Data – Download IP data direclty from the cloud.
    • \n
    • Supports IPV6 Ranges For Safelist/Denylist
    • \n
    • Unlock The Locked Admin – Easily unlock the locked admin through the cloud.
    • \n
    \n

    *Some features require higher level plans.

    \n

    Upgrading from the old Limit Login Attempts plugin?

    \n
      \n
    1. Go to the Plugins section in your site’s backend.
    2. \n
    3. Remove the Limit Login Attempts plugin.
    4. \n
    5. Install the Limit Login Attempts Reloaded plugin.
    6. \n
    \n

    All your settings will be kept intact!

    \n

    Many languages are currently supported in the Limit Login Attempts Reloaded plugin but we welcome any additional ones.

    \n

    Help us bring Limit Login Attempts Reloaded to even more countries.

    \n

    Translations: Bulgarian, Brazilian Portuguese, Catalan, Chinese (Traditional), Czech, Dutch, Finnish, French, German, Hungarian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish

    \n

    Plugin uses standard actions and filters only.

    \n

    Based on the original code from Limit Login Attempts plugin by Johan Eenfeldt.

    \n

    Branding Guidelines

    \n

    Limit Login Attempts Reloaded™ is a trademark of Atlantic Silicon Inc. When writing about the plugin, please make sure to use Reloaded after Limit Login Attempts. Limit Login Attempts is the old plugin.

    \n
      \n
    • Limit Login Attempts Reloaded (correct)
    • \n
    • Limit Login Attempts (incorrect)
    • \n
    \n", "screenshots": "
    1. \"Login

      Login screen after a failed login with remaining retries

    2. \"Lockout

      Lockout login screen

    3. \"LLAR

      LLAR Dashboard

    4. \"Plugin

      Plugin App Settings

    5. \"Plugin

      Plugin General Settings

    6. \"Login

      Login Firewall & Login Access Rules

    7. \"Debug\"

      Debug

    8. \"Support\"

      Support

    "}, "versions": {"2.0.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.2.0.zip", "2.3.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.3.0.zip", "2.4.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.5.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.6.3.zip", "2.7.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.7.4.zip", "2.8.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.8.1.zip", "2.9.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.9.0.zip", "trunk": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.zip", "2.10.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.10.0.zip", "2.10.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.10.1.zip", "2.11.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.11.0.zip", "2.12.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.12.0.zip", "2.12.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.12.1.zip", "2.12.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.12.2.zip", "2.12.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.12.3.zip", "2.13.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.13.0.zip", "2.14.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.14.0.zip", "2.15.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.15.0.zip", "2.15.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.15.1.zip", "2.15.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.15.2.zip", "2.16.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.16.0.zip", "2.17.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.17.0.zip", "2.17.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.17.1.zip", "2.17.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.17.2.zip", "2.17.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.17.3.zip", "2.17.4": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.17.4.zip", "2.18.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.18.0.zip", "2.19.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.19.0.zip", "2.19.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.19.1.zip", "2.19.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.19.2.zip", "2.20.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.0.zip", "2.20.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.1.zip", "2.20.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.2.zip", "2.20.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.3.zip", "2.20.4": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.4.zip", "2.20.5": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.5.zip", "2.20.6": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.20.6.zip", "2.21.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.21.0.zip", "2.21.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.21.1.zip", "2.22.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.22.0.zip", "2.22.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.22.1.zip", "2.23.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.23.0.zip", "2.23.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.23.1.zip", "2.23.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.23.2.zip", "2.24.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.24.0.zip", "2.24.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.24.1.zip", "2.25.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.0.zip", "2.25.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.1.zip", "2.25.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.2.zip", "2.25.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.3.zip", "2.25.4": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.4.zip", "2.25.5": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.5.zip", "2.25.6": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.6.zip", "2.25.7": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.7.zip", "2.25.8": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.8.zip", "2.25.9": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.9.zip", "2.26.0": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.0.zip", "2.26.1": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.1.zip", "2.26.2": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.2.zip", "2.26.3": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.3.zip", "2.26.4": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.4.zip", "2.26.5": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.5.zip", "2.26.6": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.6.zip", "2.26.7": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.7.zip", "2.26.8": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.8.zip", "2.26.9": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.9.zip", "2.25.10": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.10.zip", "2.25.11": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.11.zip", "2.25.12": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.12.zip", "2.25.13": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.13.zip", "2.25.14": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.14.zip", "2.25.15": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.15.zip", "2.25.16": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.16.zip", "2.25.17": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.17.zip", "2.25.18": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.18.zip", "2.25.19": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.19.zip", "2.25.20": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.20.zip", "2.25.21": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.21.zip", "2.25.22": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.22.zip", "2.25.23": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.23.zip", "2.25.24": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.24.zip", "2.25.25": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.25.zip", "2.25.26": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.26.zip", "2.25.27": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.27.zip", "2.25.28": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.28.zip", "2.25.29": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.25.29.zip", "2.26.10": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.10.zip", "2.26.11": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.11.zip", "2.26.12": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.12.zip", "2.26.13": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.13.zip", "2.26.14": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.14.zip", "2.26.15": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.15.zip", "2.26.16": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.16.zip", "2.26.17": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.17.zip", "2.26.18": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.18.zip", "2.26.19": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.19.zip", "2.26.20": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.20.zip", "2.26.21": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.21.zip", "2.26.22": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.22.zip", "2.26.23": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.23.zip", "2.26.24": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.24.zip"}, "downloaded": 72836343, "description": "

    Limit Login Attempts Reloaded functions as a robust deterrent against brute force attacks, bolstering your website’s security measures and optimizing its performance. It achieves this by restricting the number of login attempts allowed. This applies not only to the standard login method, but also to XMLRPC, Woocommerce, and custom login pages. With more than 2.5 million active users, this plugin fulfills all your login security requirements.

    \n

    The plugin functions by automatically preventing further attempts from a particular Internet Protocol (IP) address and/or username once a predetermined limit of retries has been surpassed. This significantly weakens the effectiveness of brute force attacks on your website.

    \n

    By default, WordPress permits an unlimited number of login attempts, posing a vulnerability where passwords can be easily deciphered through brute force methods.

    \n

    Limit Login Attempts Reloaded Premium (Try Free with Micro Cloud)
    \nUpgrade to Limit Login Attempts Reloaded Premium to extend cloud-based protection to the Limit Login Attempts Reloaded plugin, thereby enhancing your login security. The premium version includes a range of highly beneficial features, including IP intelligence to detect, counter and deny malicious login attempts. Your failed login attempts will be safely neutralized in the cloud so your website can function at its optimal performance during an attack.

    \n

    \n

    Features (Free Version):

    \n
      \n
    • Limit Logins – Limit the number of retry attempts when logging in (per each IP).
    • \n
    • Configurable Lockout Timings – Modify the amount of time a user or IP must wait after a lockout.
    • \n
    • Remaining Tries – Informs the user about the remaining retries or lockout time on the login page.
    • \n
    • Lockout Email Notifications – Informs the admin via email of lockouts.
    • \n
    • Denied Attempt Logs – View a log of all denied attempts and lockouts.
    • \n
    • IP & Username Safelist/Denylist – Control access to usernames and IPs.
    • \n
    • New User Registration Protection (Micro Cloud Accounts) – Protects default WP registration.
    • \n
    • Sucuri compatibility.
    • \n
    • Wordfence compatibility.
    • \n
    • Ultimate Member compatibility.
    • \n
    • WPS Hide Login compatibility.
    • \n
    • XMLRPC gateway protection.
    • \n
    • Woocommerce login page protection.
    • \n
    • Multi-site compatibility with extra MU settings.
    • \n
    • GDPR compliant.
    • \n
    • Custom IP origins support (Cloudflare, Sucuri, etc.).
    • \n
    • llar_admin own capability.
    • \n
    \n

    Features (Premium Version):

    \n
      \n
    • Performance Optimizer – Offload the burden of excessive failed logins from your server to protect your server resources, resulting in improved speed and efficiency of your website.
    • \n
    • Enhanced IP Intelligence – Identify repetitive and suspicious login attempts to detect potential brute force attacks. IPs with known malicious activity are stored and used to help prevent and counter future attacks.
    • \n
    • Enhanced Throttling – Longer lockout intervals each time a malicious IP or username tries to login unsuccessfully.
    • \n
    • Deny By CountryBlock logins by country by simply selecting the countries you want to deny.
    • \n
    • Auto IP Denylist – Automatically add IP addresses to your active cloud deny list that repeatedly fail login attempts.
    • \n
    • New User Registration Protection – Protects default WP registration.
    • \n
    • Global Denylist Protection – Utilize our active cloud IP data from thousands of websites in the LLAR network.
    • \n
    • Synchronized Lockouts – Lockout IP data can be shared between multiple domains for enhanced protection in your network.
    • \n
    • Synchronized Safelist/Denylist – Safelist/Denylist IP and username data can be shared between multiple domains.
    • \n
    • Premium Support – Email support with a security tech.
    • \n
    • Auto Backups of All IP Data – Store your active IP data in the cloud.
    • \n
    • Successful Logins Log – Store successful logins in the cloud including IP info, city, state and lat/long.
    • \n
    • Enhanced lockout logs – Gain valuable insights into the origins of IPs that are attempting logins.
    • \n
    • CSV Download of IP Data – Download IP data direclty from the cloud.
    • \n
    • Supports IPV6 Ranges For Safelist/Denylist
    • \n
    • Unlock The Locked Admin – Easily unlock the locked admin through the cloud.
    • \n
    \n

    *Some features require higher level plans.

    \n

    Upgrading from the old Limit Login Attempts plugin?

    \n
      \n
    1. Go to the Plugins section in your site’s backend.
    2. \n
    3. Remove the Limit Login Attempts plugin.
    4. \n
    5. Install the Limit Login Attempts Reloaded plugin.
    6. \n
    \n

    All your settings will be kept intact!

    \n

    Many languages are currently supported in the Limit Login Attempts Reloaded plugin but we welcome any additional ones.

    \n

    Help us bring Limit Login Attempts Reloaded to even more countries.

    \n

    Translations: Bulgarian, Brazilian Portuguese, Catalan, Chinese (Traditional), Czech, Dutch, Finnish, French, German, Hungarian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish

    \n

    Plugin uses standard actions and filters only.

    \n

    Based on the original code from Limit Login Attempts plugin by Johan Eenfeldt.

    \n

    Branding Guidelines

    \n

    Limit Login Attempts Reloaded™ is a trademark of Atlantic Silicon Inc. When writing about the plugin, please make sure to use Reloaded after Limit Login Attempts. Limit Login Attempts is the old plugin.

    \n
      \n
    • Limit Login Attempts Reloaded (correct)
    • \n
    • Limit Login Attempts (incorrect)
    • \n
    \n", "donate_link": "https://www.paypal.com/donate?hosted_button_id=FKD4MYFCMNVQQ", "num_ratings": 1408, "screenshots": {"1": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-1.png?rev=2104751", "caption": "Login screen after a failed login with remaining retries"}, "2": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-2.png?rev=2104751", "caption": "Lockout login screen"}, "3": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-3.png?rev=3238010", "caption": "LLAR Dashboard"}, "4": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-4.png?rev=3238010", "caption": "Plugin App Settings"}, "5": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-5.png?rev=3238010", "caption": "Plugin General Settings"}, "6": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-6.png?rev=3238010", "caption": "Login Firewall & Login Access Rules"}, "7": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-7.png?rev=3238010", "caption": "Debug"}, "8": {"src": "https://ps.w.org/limit-login-attempts-reloaded/assets/screenshot-8.png?rev=3238010", "caption": "Support"}}, "support_url": "https://wordpress.org/support/plugin/limit-login-attempts-reloaded/", "contributors": {"wpchefgadget": {"avatar": "https://secure.gravatar.com/avatar/b8de3412c688e2220f64cbb28b46cd18b00776c7b14c5a6e4e3867b890a448cf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpchefgadget/", "display_name": "WPChef"}}, "last_updated": "2025-10-29 3:27pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.26.24.zip", "author_profile": "https://profiles.wordpress.org/wpchefgadget/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f6bb-718a-b51c-244bc31d5a16", "name": "Limit Login Attempts Reloaded – Login Security, Brute Force Protection, Firewall", "slug": "limit-login-attempts-reloaded", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761751620, "version": "2.26.24"}, "support_threads": 5, "requires_plugins": [], "short_description": "Block excessive login attempts and protect your site against brute force attacks. Simple, yet powerful tools to improve site performance.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 4}'); -INSERT INTO public.plugins VALUES ('019a30c1-65fa-70cd-babd-32eb7f80498b', 'litespeed-cache', 'LiteSpeed Cache', 'All-in-one unbeatable acceleration & PageSpeed improvement: caching, image/CSS/JS optimization...', '

    LiteSpeed Cache for WordPress (LSCWP) is an all-in-one site acceleration plugin, featuring an exclusive server-level cache and a collection of optimization features.

    -

    LSCWP supports WordPress Multisite and is compatible with most popular plugins, including WooCommerce, bbPress, and Yoast SEO.

    -

    LiteSpeed Cache for WordPress is compatible with ClassicPress.

    -

    Requirements

    -

    General Features may be used by anyone with any web server (LiteSpeed, Apache, NGINX, etc.).

    -

    LiteSpeed Exclusive Features require one of the following: OpenLiteSpeed, commercial LiteSpeed products, LiteSpeed-powered hosting, or QUIC.cloud CDN. Why?

    -

    Plugin Features

    -

    General Features

    -
      -
    • Free QUIC.cloud CDN Cache
    • -
    • Object Cache (Memcached/LSMCD/Redis) Support+
    • -
    • Image Optimization (Lossless/Lossy)
    • -
    • Minify CSS, JavaScript, and HTML
    • -
    • Minify inline & external CSS/JS
    • -
    • Combine CSS/JS
    • -
    • Automatically generate Critical CSS
    • -
    • Lazy-load images/iframes
    • -
    • Responsive Image Placeholders
    • -
    • Multiple CDN Support+
    • -
    • Load CSS Asynchronously
    • -
    • Defer/delay JS loading
    • -
    • Browser Cache Support+
    • -
    • Database Cleaner and Optimizer
    • -
    • PageSpeed score (including Core Web Vitals) optimization
    • -
    • OPcode Cache Support+
    • -
    • HTTP/2 Push for CSS/JS (on web servers that support it)
    • -
    • DNS Prefetch
    • -
    • Cloudflare API
    • -
    • Single Site and Multisite (Network) support
    • -
    • Import/Export settings
    • -
    • Attractive, easy-to-understand interface
    • -
    • AVIF/WebP image format support
    • -
    • Heartbeat control
    • -
    -

    + This service is not provided by the LSCache plugin, nor is it guaranteed to be installed by your service provider. However, the plugin is compatible with the service if it is in use on your site.

    -

    LiteSpeed Exclusive Features

    -
      -
    • Automatic page caching to greatly improve site performance
    • -
    • Automatic purge of related pages based on certain events
    • -
    • Private cache for logged-in users
    • -
    • Caching of WordPress REST API calls
    • -
    • Separate caching of desktop and mobile views
    • -
    • Ability to schedule purge for specified URLs
    • -
    • WooCommerce and bbPress support
    • -
    • WordPress CLI commands
    • -
    • API system for easy cache integration
    • -
    • Exclude from cache by URI, Category, Tag, Cookie, User Agent
    • -
    • Smart preload crawler with support for SEO-friendly sitemap
    • -
    • Multiple crawlers for cache varies
    • -
    • HTTP/2 support
    • -
    • HTTP/3 & QUIC support
    • -
    • ESI (Edge Side Includes) support*
    • -
    • Widgets and Shortcodes as ESI blocks* (requires Classic Widgets plugin for WP 5.8+)
    • -
    -

    * Feature not available in OpenLiteSpeed

    -

    LSCWP Resources

    - -

    Third Party Compatibility

    -

    The vast majority of plugins and themes are compatible with LSCache. Our API is available for those that are not. Use the API to customize smart purging, customize cache rules, create cache varies, and make WP nonce cacheable, among other things.

    -

    Privacy

    -

    This plugin includes some suggested text that you can add to your site’s Privacy Policy via the Guide in the WordPress Privacy settings.

    -

    For your own information: LiteSpeed Cache for WordPress potentially stores a duplicate copy of every web page on display on your site. The pages are stored locally on the system where LiteSpeed server software is installed and are not transferred to or accessed by LiteSpeed employees in any way, except as necessary in providing routine technical support if you request it. All cache files are temporary, and may easily be purged before their natural expiration, if necessary, via a Purge All command. It is up to individual site administrators to come up with their own cache expiration rules.

    -

    In addition to caching, our WordPress plugin has online features provided by QUIC.cloud for Image Optimization and Page Optimization services. When one of these optimizations is requested, data is transmitted to a remote QUIC.cloud server, processed, and then transmitted back for use on your site. QUIC.cloud keeps copies of that data for up to 7 days and then permanently deletes it. Similarly, the WordPress plugin has a Reporting feature whereby a site owner can transmit an environment report to LiteSpeed so that we may better provide technical support. None of these features collects any visitor data. Only server and site data are involved.

    -

    QUIC.cloud CDN, if enabled, uses LSCache technology to access your site, and serve your content from remote global nodes. Your data is not accessed by QUIC.cloud employees in any way, except as necessary in providing maintenance or technical support.

    -

    Please see the QUIC.cloud Privacy Policy for our complete Privacy/GDPR statement.

    -', '7.6.2', 'LiteSpeed Technologies', '5.3', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/litespeed-cache.7.6.2.zip', '2016-01-29 00:00:00+00', '2025-10-17 14:55:00+00', 'https://profiles.wordpress.org/litespeedtech/', 96, 2685, 187, 143, 7000000, 118764951, 'https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/litespeed-cache/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "LiteSpeed Cache", "slug": "litespeed-cache", "tags": {"seo": "seo", "caching": "caching", "optimize": "Optimize", "pagespeed": "pagespeed", "performance": "performance"}, "added": "2016-01-29", "icons": {"1x": "https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181", "2x": "https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181"}, "author": "LiteSpeed Technologies", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181", "high": "https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181"}, "ratings": {"1": 98, "2": 21, "3": 22, "4": 48, "5": 2496}, "version": "7.6.2", "homepage": "https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration", "requires": "5.3", "sections": {"faq": "\n
    \nWhy do the cache features require LiteSpeed Server?\n\n

    \n

    This plugin communicates with your LiteSpeed Web Server and its built-in page cache (LSCache) to deliver superior performance to your WordPress site. The plugin’s cache features indicate to the server that a page is cacheable and for how long, or they invalidate particular cached pages using tags.

    \n

    LSCache is a server-level cache, so it’s faster than PHP-level caches. Compare with other PHP-based caches.

    \n

    A page cache allows the server to bypass PHP and database queries altogether. LSCache, in particular, because of its close relationship with the server, can remember things about the cache entries that other plugins cannot, and it can analyze dependencies. It can utilize tags to manage the smart purging of the cache, and it can use vary cookies to serve multiple versions of cached content based on things like mobile vs. desktop, geographic location, and currencies. See our Caching 101 blog series.

    \n

    If all of that sounds complicated, no need to worry. LSCWP works right out of the box with default settings that are appropriate for most sites. See the Beginner’s Guide.

    \n

    Don’t have a LiteSpeed server? Try our QUIC.cloud CDN service. It allows sites on any server (NGINX and Apache included) to experience the power of LiteSpeed caching! Click here to learn more or to give QUIC.cloud a try.

    \n

    \n
    \nWhat about the optimization features of LSCache?\n\n

    \n

    LSCWP includes additional optimization features, such as Database Optimization, Minification and Combination of CSS and JS files, HTTP/2 Push, CDN Support, Browser Cache, Object Cache, Lazy Load for Images, and Image Optimization! These features do not require the use of a LiteSpeed web server.

    \n

    \n
    \nIs the LiteSpeed Cache Plugin for WordPress free?\n\n

    \n

    Yes, LSCWP will always be free and open source. That said, a LiteSpeed server is required for the cache features, and there are fees associated with some LiteSpeed server editions. Some of the premium online services provided through QUIC.cloud (CDN Service, Image Optimization, Critical CSS, Low-Quality Image Placeholder, etc.) require payment at certain usage levels. You can learn more about what these services cost, and what levels of service are free, on your QUIC.cloud dashboard.

    \n

    \n
    \nWhat server software is required for this plugin?\n\n

    \n

    A LiteSpeed solution is required in order to use the LiteSpeed Exclusive features of this plugin. Any one of the following will work:

    \n
      \n
    1. LiteSpeed Web Server Enterprise with LSCache Module (v5.0.10+)
    2. \n
    3. OpenLiteSpeed (v1.4.17+)
    4. \n
    5. LiteSpeed WebADC (v2.0+)
    6. \n
    7. QUIC.cloud CDN
    8. \n
    \n

    The General Features may be used with any web server. LiteSpeed is not required.

    \n

    \n
    \nDoes this plugin work in a clustered environment?\n\n

    \n

    The cache entries are stored at the LiteSpeed server level. The simplest solution is to use LiteSpeed WebADC, as the cache entries will be stored at that level.

    \n

    If using another load balancer, the cache entries will only be stored at the backend nodes, not at the load balancer.

    \n

    The purges will also not be synchronized across the nodes, so this is not recommended.

    \n

    If a customized solution is required, please contact LiteSpeed Technologies at info@litespeedtech.com

    \n

    NOTICE: The rewrite rules created by this plugin must be copied to the Load Balancer.

    \n

    \n
    \nWhere are the cached files stored?\n\n

    \n

    The actual cached pages are stored and managed by LiteSpeed Servers.

    \n

    Nothing is stored within the WordPress file structure.

    \n

    \n
    \nDoes LiteSpeed Cache for WordPress work with OpenLiteSpeed?\n\n

    \n

    Yes it can work well with OpenLiteSpeed, although some features may not be supported. See Plugin Features above for details. Any setting changes that require modifying the .htaccess file will require a server restart.

    \n

    \n
    \nIs WooCommerce supported?\n\n

    \n

    In short, yes. However, for some WooCommerce themes, the cart may not be updated correctly. Please visit our blog for a quick tutorial on how to detect this problem and fix it if necessary.

    \n

    \n
    \nAre my images optimized?\n\n

    \n

    Images are not optimized automatically unless you set LiteSpeed Cache > Image Optimization > Image Optimization Settings > Auto Request Cron to ON. You may also optimize your images manually. Learn more.

    \n

    \n
    \nHow do I make a WP nonce cacheable in my third-party plugin?\n\n

    \n

    Our API includes a function that uses ESI to “punch a hole” in a cached page for a nonce. This allows the nonce to be cached separately, regardless of the TTL of the page it is on. Learn more in the API documentation. We also welcome contributions to our predefined list of known third party plugin nonces that users can optionally include via the plugin’s ESI settings.

    \n

    \n
    \nHow do I enable the crawler?\n\n

    \n

    The crawler is disabled by default, and must be enabled by the server admin first.

    \n

    Once the crawler is enabled on the server side, navigate to LiteSpeed Cache > Crawler > General Settings and set Crawler to ON.

    \n

    For more detailed information about crawler setup, please see the Crawler documentation.

    \n

    \n
    \nWhat are the known compatible plugins and themes?\n\n

    \n

    \n

    The vast majority of plugins and themes are compatible with LiteSpeed Cache. The most up-to-date compatibility information can be found in our documentation

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    works great.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy heinzhubertka on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    pretty impressive.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Berikan jempol

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Virgo (virgo14ridho) on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    i hope In the future have much integrated

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    فعال شدن QUIC.cloud

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hamid asgari (shahrestan) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    سلام و خسته نباشید من حمید رضا عسگری هستم لطفا غیر فعال شدن بررسی بفرمایید

    \n\n\n\n

    ممنونم از زحمتتان عسگری

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    good plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mrrabiee on October 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n
    \n

    As a professional designer who has optimized over 200 websites, I am truly satisfied with the performance of this plugin. Rest assured, your server also supports it, and you will get much better results.

    \n
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    What a great plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wav3front on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    superb!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    site mais rapido mas precisa configurar corretamente

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy janeteluz on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    gente, to usando o LiteSpeed Cache e meu site melhorou mto a velocidade, mas achei meio complicado de configurar no começo. depois q peguei o jeito, ta otimo e recomendo pra quem quer site rapido sem gastar mt.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Big Improvement!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy John (John Boyle) on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    80% improvement in page load time!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Only Cache I Trust

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy amanstacker on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Fast, stable, and feature-rich. Nothing else comes close!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wernerpj1 on October 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its easy to use, and made my wordpress faster, i recommend

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Cron scheduling fails with APCu object cache (could_not_set error)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy NAROLLES on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello LiteSpeed team,

    \n\n\n\n

    I’m using LiteSpeed Cache for WordPress with Object Cache enabled (APCu).
    On my site (WordPress 6.8.3, PHP 8.4.4 LiteSpeed), I get repeated cron scheduling errors:

    \n\n\n\n

    [30-Sep-2025 23:39:58 UTC] Error rescheduling event for hook bb_bg_log_clear – could_not_set
    [30-Sep-2025 12:08:04 UTC] Error rescheduling event for hook automator_userspost_posts_published – could_not_set
    [30-Sep-2025 13:26:47 UTC] Error rescheduling event for hook action_scheduler_run_queue – could_not_set
    [30-Sep-2025 15:59:17 UTC] Error unscheduling event for hook jetpack_scan_refresh_states_event – could_not_set
    [01-Oct-2025 05:29:44 UTC] Error rescheduling event for hook jetpack_sync_full_cron – could_not_set

    \n\n\n\n

    It seems that update_option(''cron'') fails to save when APCu object cache is active.
    Option size is small (11 KB), so not corrupted.

    \n\n\n\n

    Questions:

    \n\n\n\n
      \n
    1. Can LiteSpeed Cache exclude specific WordPress options from object cache (like cron, doing_cron, action_scheduler_lock_async_request_queue)?
    2. \n\n\n\n
    3. Do you recommend disabling APCu for cron events?
    4. \n\n\n\n
    5. Is there a known workaround for this under PHP 8.4 + LiteSpeed + APCu?
    6. \n
    \n\n\n\n

    Thanks,
    Luc Narolles – JAF-info

    \n
    \n
    \n", "changelog": "

    7.6.2 – Oct 17 2025

    \n
      \n
    • 🐞Cloud Fixed the PHP 8+ typecast issue in QUIC.cloud signature verification which caused activation failures.
    • \n
    • Purge Restored a delay purge hook while calling purge by CLI. (asafm7)
    • \n
    • REST Dropped legacy code that had been used for development purposes.
    • \n
    • GUI Use a stricter selector for dark mode to prevent side effects.
    • \n
    \n

    7.6.1 – Oct 15 2025

    \n
      \n
    • Cloud Increased POST connection timeout to prevent potential failures.
    • \n
    • ⚠️🐞GUI Fixed a frontend display issue caused by the dark mode CSS file loading on the website frontend. (Peter Wells PR#923)
    • \n
    • 🐞Page Optimize Corrected a typo in the DNS prefetch filter. (Yaroslav Yachmenov PR#922)
    • \n
    \n

    7.6 – Oct 15 2025

    \n
      \n
    • 🌱Admin Dark mode supported.
    • \n
    • 🌱Purge Added Purge All - VPI to the Purge menu. (PR#898)
    • \n
    • ⚠️🐞Debug Escaped comments to prevent a CSS vulnerability that could occur when debug is on. (#218778 Trustwave #CWE-79)
    • \n
    • Purge Gravatar purge now also clears the database records. (Serafín Danessa, PR#915)
    • \n
    • Conf Fixed an issue where the Drop Query String setting was not saved when in network mode. (Jory Hogeveen PR#910)
    • \n
    • VPI Add fetchpriority and decode attributes to VPI. (Hirak Kalita, serpentdriver, PR#903)
    • \n
    • Cloud Auto sync new Server IP to QUIC.cloud if changed. (cloud86)
    • \n
    • GUI Auto update port value when Object Cache Method is changed.
    • \n
    • API Dropped legacy conf::val() function.
    • \n
    • 🐞Misc Fixed PHP 7.2 compatibility issue. (Ulrich Viridis, PR#913)
    • \n
    • Misc Added UCSS file path to comment info for easier debug. (PR#914)
    • \n
    \n

    7.5.0.1 – Sep 11 2025

    \n
      \n
    • 🐞GUI Fixed an issue where the network dashboard template was missing. (mcworks)
    • \n
    \n

    7.5 – Sep 10 2025

    \n
      \n
    • 🌱Image Optimize New option Optimize Image Sizes to allow user to choose which image sizes to include in optimization request.
    • \n
    • 🐞Purge Purge Time setting will respect WP timezone setting now. (PR#893)
    • \n
    • 🐞Conf Fixed a minor type-casting bug, which could cause unnecessary QUIC.cloud sync configuration when the setting is empty.
    • \n
    • Misc Dropped unused rewrite rule from htaccess.
    • \n
    \n

    7.4 – Aug 28 2025

    \n
      \n
    • 🌱Media Added new Auto Rescale Original Image option.
    • \n
    • 🌱Toolbox Added ability to Disable All for 24 Hours. (PR#886)
    • \n
    • 🐞CDN Fixed a QUIC.cloud sync configuration failure on network child sites.
    • \n
    • 🐞Object Cache Fixed a bug that failed to detect the Redis connection status.
    • \n
    • Cache Better match iPhone browsers for mobile cache detection.
    • \n
    • Cache Dropped use of advanced-cache.php support since WP v5.3+ doesn’t need it, and LiteSpeed requires WP v5.3+.
    • \n
    • Cache When page is not cacheable, set header to value used by WordPress Cache-Control header. (asafm7)
    • \n
    • Page Optimize Better compatibility for dummy CSS removal in cases where other plugins manipulate the quotation marks.
    • \n
    • Page Optimize Dropped v4.2 legacy LITESPEED_BYPASS_OPTM.
    • \n
    • Crawler Now use an .html file to test the port, as some security plugins block .txt files and cause port test failure. (#661828)
    • \n
    • GUI Show current live values for options if they are overridden by filters or the server environment. (PR#885)
    • \n
    • Data Dropped legacy code and upgraded data migration support to LSCWP v5.7-.
    • \n
    • Misc Support the LITESPEED_DEV constant to allow switching to a development environment.
    • \n
    • Misc Allow leading underscore (_) for private functions and variables in format checker.
    • \n
    • Misc Suppress frequent version check when a certain database option is cached.
    • \n
    • Misc Dropped sanitize_file_name usage to prevent template failure when 3rd party plugins manipulate that filter.
    • \n
    \n

    7.3.0.1 – Jul 30 2025

    \n
      \n
    • Page Optimize Fixed the page score impact caused by CSS placeholder. (wpconvert, Sean Thompson)
    • \n
    • Page Optimize Fixed wrong prefetch/preload injection when a page contains other <title> tags. (idatahuy)
    • \n
    • Crawler Bypassed port test if no server IP set. (kptk, serkanix, Guillermo)
    • \n
    \n

    7.3 – Jul 24 2025

    \n
      \n
    • 🌱CLI Added wp litespeed-database database optimization command.
    • \n
    • 🌱Misc Added survey and data deletion reminder in deactivation process.
    • \n
    • Core Refactored the template files to comply with WordPress standards.
    • \n
    • Core Refactored the CLI files to comply with WordPress standards. Fixed a bug with CLI option command failure handler.
    • \n
    • ESI Fixed a case where the Edit button is missing on the frontend when the permalink structure is Plain. (#934261 PR#860)
    • \n
    • API Added litespeed_purge_tags filter to allow manipulation of purge tags.
    • \n
    • API Allowed overriding litespeed_ui_events via window property. (Zsombor Franczia PR#865)
    • \n
    • API Added litespeed_vpi_should_queue filter to allow control over appending to the VPI queue. (tompalmer #855, Viktor Szépe PR#856)
    • \n
    • Debug Allowed debug at multisite network level. (PR#861)
    • \n
    • Vary Fixed a possible duplicate WebP vary in Chrome when mimicking an iPhone visit.
    • \n
    • 🐞Vary Used simpler rewrite rule to check for next generation image format support.
    • \n
    • Page Optimize Tuned the optimized data injection location in HTML to improve SEO. (videofinanzas)
    • \n
    • Page Optimize Improved DNS prefetch and preconnect sequence in HTML to be as early as possible. Simplified DNS optimization code.
    • \n
    • 🐞Page Optimize Added the JS Delay library that was missing when page optimization was off while iframe lazy load was on. (Zsombor Franczia #867)
    • \n
    • 🐞Page Optimize Allowed lazy load threshold overwrite. (Zsombor Franczia #852 PR#857)
    • \n
    • 🐞Page Optimize Fixed an issue where the async attribute was replaced even when it contained a value, e.g. async=true. (@macorak)
    • \n
    • 🐞Cloud Fixed the API call timestamp file creation warning.
    • \n
    • Cloud No longer include public key when logging QUIC.cloud registration process.
    • \n
    • Image Optimize Resend all images that failed to pull instead of bypassing them. (Ryan D)
    • \n
    • Crawler Checked QUIC.cloud CDN for crawler hit. (PR#866)
    • \n
    • 🐞Crawler Fixed an issue where the non-role-simulator crawler added the whole map to the blocklist on servers that only support port 80.
    • \n
    • GUI Added Enable All Features icon to admin bar when all features are disabled. This replaces the banner that previously displayed in admin. (Tobolo, PR#868)
    • \n
    • GUI Dropped font files. (Masoud Najjar Khodabakhsh)
    • \n
    • 3rd Resolved an issue with an empty WooCommerce ESI nonce and HTML comments on geolocation redirection. (#612331 PR#708)
    • \n
    • OPcache Detected opcache.restrict_api setting to prevent PHP warning in purge. (ookris #9496550 PR#812)
    • \n
    • Misc Simplified admin JavaScript.
    • \n
    • Misc Fixed download import file extension issue on mobile. (autori76 #874)
    • \n
    • Misc Added existing plugin version to ping API for debugging purposes.
    • \n
    • Misc Fixed comment typos reported by static analysis. (Viktor Szépe PR#836)
    • \n
    • Misc Removed global variables from plugin initialization file. (Viktor Szépe PR#837)
    • \n
    \n

    7.2 – Jun 18 2025

    \n
      \n
    • 🌱CDN New option: Cloudflare Clear on purge all. (PR#828)
    • \n
    • Core Used site_url instead of home_url to fix the content folder parsing and QUIC.cloud calls.
    • \n
    • 🐞Cloud Fixed a bug where we tried to sync QUIC.cloud usage while debug mode was ON, even when QC was not activated.
    • \n
    • Cloud Stored request timestamp in static files along w/ database to prevent duplicate requests when database is down.
    • \n
    • Cache Dropped Cache PHP Resources option.
    • \n
    • Cache Added verification to prevent admin pages from caching even if the site is set to be globally cacheable.
    • \n
    • Image Optimize Disable image pull cron if there have been no image notifications.
    • \n
    • Crawler Non-role simulator crawler will now use DNS resolve to hit original server instead of CDN nodes.
    • \n
    • Media Resolved an issue where deleting an image from grid mode neglected to also remove the optimized versions of the image. (PR#844, Zsombor Franczia #841)
    • \n
    • Media Allowed filter litespeed_next_gen_format to manipulate the value of next gen format. (Zsombor Franczia #853)
    • \n
    • 3rd Elementor: Clear all caches on regenerate CSS & Data. (PR#806)
    • \n
    • Config Purge All On Upgrade now defaults to OFF.
    • \n
    • GUI Showed Disable all features message on all WP-Admin pages for Admin-level users when enabled.
    • \n
    • Misc Used PHPCS w/ WordPress core and security coding standards to reformat cache menu code. (Viktor Szépe #696)
    • \n
    • Misc Replaced use of SHOW TABLES with DESCRIBE to prevent database halt in very large WP Multisite installations. (Boone Gorges PR#834, PR#850)
    • \n
    • Misc Replaced constants with WordPress functions to check whether AJAX or CRON is running.
    • \n
    • API Added action litespeed_save_conf to provide a trigger for configuration updates.
    • \n
    \n

    7.1 – Apr 24 2025

    \n
      \n
    • 🌱Page Optimize Added allowlist support for CCSS.
    • \n
    • Cloud CCSS results are now generated asynchronously via QUIC.cloud queue services.
    • \n
    • Cloud Added TTL control to QUIC.cloud services to make next requests more flexible.
    • \n
    • Crawler Dropped non-WebP/AVIF crawler if Next Gen Images are being used.
    • \n
    • 🐞Config Fixed an .htaccess generation bug that occurred when reactivating after previous deactivation. (PR#825)
    • \n
    • GUI Improved the QC registration notice banner for online services thanks to user feedback.
    • \n
    • GUI QUIC.cloud management links will be opened in a single dedicated new window to prevent multiple sessions.
    • \n
    • Page Optimization Enhanced URL fetch validation to avoid exposing possible local info.
    • \n
    • Debug Added a Click to copy logs button under Log View tab.
    • \n
    • CLI Removed a vary warning log in CLI for QC activation process with a customized login cookie.
    • \n
    • CLI Removed a log failure in CLI in QC activation process when no existing admin message.
    • \n
    • Misc Check version only after upgrade to reduce the requests.
    • \n
    • Misc Switched to CyberPanel.sh to detect public IP for dash tool.
    • \n
    \n

    7.0.1 – Apr 8 2025

    \n
      \n
    • Page Optimize Migrate legacy data to append trailing slash for better compatibility with v7.0-optimized UCSS/CCSS data.
    • \n
    \n

    7.0.0.1 – Mar 27 2025

    \n
      \n
    • GUI Resolved a banner message display error in certain old version cases.
    • \n
    • GUI Fixed a continual error banner when site doesn’t use QC.
    • \n
    • Config Fixed a continual CDN sync_conf/purge check issue after upgraded to v7.0.
    • \n
    • 3rd Improved WPML multi lang sync_conf compatibility.
    • \n
    \n

    7.0 – Mar 25 2025

    \n
      \n
    • 🌱Image Optimization Added AVIF format.
    • \n
    • Core Changed plugin classes auto load to preload all to prevent upgrade problems.
    • \n
    • Core Refactored configuration data initialization method to realtime update instead of delayed update in plugin upgrade phase.
    • \n
    • Core Used const.default.json instead of const.default.ini for better compatibility in case parse_ini_file() is disabled.
    • \n
    • Core Minimum required PHP version escalated to PHP v7.2.0.
    • \n
    • Core Minimum required WP version escalated to WP v5.3.
    • \n
    • Cloud Dropped Domain Key. Now using sodium encryption for authentication and validation.
    • \n
    • Cloud Added support for list_preferred in online service node detection.
    • \n
    • Cloud Fixed a domain expiry removal PHP warning. (cheekymate06)
    • \n
    • Cloud Auto dropped Cloud error message banner when successfully reconnected.
    • \n
    • Cloud Simplified the configure sync parameters to only compare and post the necessary settings.
    • \n
    • Config Simplified QUIC.cloud CDN Setup. CDN service is now automatically detected when activated in the QUIC.cloud Dashboard.
    • \n
    • Config Dropped the initial version check when comparing md5 to decide if whether to sync the configuration when upgrading the plugin.
    • \n
    • Config LITESPEED_DISABLE_ALL will now check the value to determine whether it’s been applied.
    • \n
    • Database Optimize Fixed Autoload summary for WP6.6+. (Mukesh Panchal/Viktor Szépe)
    • \n
    • CLI Added QUIC.cloud CDN CLI command: wp litespeed-online cdn_init --ssl-cert=xxx.pem --ssl-key=xxx -method=cname|ns|cfi.
    • \n
    • CLI Added QUIC.cloud CDN CLI command: wp litespeed-online link --email=xxx@example.com --api-key=xxxx.
    • \n
    • CLI Added QUIC.cloud CDN CLI command: wp litespeed-online cdn_status.
    • \n
    • CLI Added --force argument for QUIC.cloud CLI command wp litespeed-online ping.
    • \n
    • Image Optimization Dropped Auto Pull Cron setting. Added PHP const LITESPEED_IMG_OPTM_PULL_CRON support.
    • \n
    • Image Optimization Added Soft Reset Counter button to allow restarting image optimization without destroying previously optimized images.
    • \n
    • Image Optimization Added support for LITESPEED_IMG_OPTM_PULL_THREADS to adjust the threads to avoid PHP max connection limits.
    • \n
    • Image Optimization Added support for the latest firefox WebP Accept header change for serving WebP.
    • \n
    • Image Optimization Allowed PHP Constant LITESPEED_FORCE_WP_REMOTE_GET to force using wp_remote_get() to pull images.
    • \n
    • Image Optimization Dropped API filter litespeed_img_optm_options_per_image.
    • \n
    • Image Optimization Auto redirect nodes if the server environment is switched between Preview and Production.
    • \n
    • Purge Allowed LSWCP_EMPTYCACHE to be defined as false to disable the ability to Purge all sites.
    • \n
    • Purge Each purge action now has a hook.
    • \n
    • Purge Fixed PURGESINGLE and PURGE query string purge tag bug.
    • \n
    • Purge PURGE will purge the single URL only like PURGESINGLE.
    • \n
    • ESI Fixed a log logic failure when ESI buffer is empty.
    • \n
    • ESI Added Elementor nonces (jujube0ajluxl PR#736)
    • \n
    • ESI Fixed a no-cache issue in no-vary ESI requests that occurred when Login Cookie was set.
    • \n
    • ESI ESI will no longer send cookie update headers.
    • \n
    • Vary Vary name correction, which used to happen in the after_setup_theme hook, now happens later in the init hook.
    • \n
    • Crawler Enhanced hash generation function for cryptographic security.
    • \n
    • Crawler Added back Role Simulator w/ IP limited to 127.0.0.1 only. Use LITESPEED_CRAWLER_LOCAL_PORT to use 80 if original server does not support 443.
    • \n
    • Crawler Enhanced Role Simulator security by disallowing editor or above access in settings.
    • \n
    • Crawler Defaulted and limited crawler Run Duration maximum to 900 seconds and dropped the setting.
    • \n
    • Crawler Crawler will be stopped when load limit setting is 0.
    • \n
    • Crawler Dropped Delay setting. Added PHP const LITESPEED_CRAWLER_USLEEP support.
    • \n
    • Crawler Dropped Timeout setting. Added PHP const LITESPEED_CRAWLER_TIMEOUT support.
    • \n
    • Crawler Dropped Threads setting. Added PHP const LITESPEED_CRAWLER_THREADS support.
    • \n
    • Crawler Dropped Interval Between Runs setting. Added PHP const LITESPEED_CRAWLER_RUN_INTERVAL support.
    • \n
    • Crawler Dropped Sitemap Timeout setting. Added PHP const LITESPEED_CRAWLER_MAP_TIMEOUT support.
    • \n
    • Crawler Dropped Drop Domain from Sitemap setting. Added PHP const LITESPEED_CRAWLER_DROP_DOMAIN support.
    • \n
    • Crawler Fixed wrong path of .pid file under wp-admin folder in certain case. (igobybus)
    • \n
    • Crawler Show an empty map error and disabled crawler when the map is not set yet.
    • \n
    • Page Optimize Updated request link parser to follow the site permalink. (Mijnheer Eetpraat #766)
    • \n
    • Page Optimize Updated latest CSS/JS optimization library to fix issues for RGB minification and external imports when combining CSS.
    • \n
    • Page Optimize Exclude Google Analytics from JavaScript optimization. (James M. Joyce #269 PR#726)
    • \n
    • Page Optimize Fixed typo in LITESPEED_NO_OPTM constant definition. (Roy Orbitson PR#796)
    • \n
    • CDN Fixed CDN replacement for inline CSS url with round brackets case. (agodbu)
    • \n
    • GUI Added an Online Service tab under General menu.
    • \n
    • GUI Added a QUIC.cloud CDN tab.
    • \n
    • GUI Combined all Crawler settings to a single setting tab.
    • \n
    • GUI Switch buttons rtl compatibility. (Eliza/Mehrshad Darzi #603)
    • \n
    • GUI Fixed an issue where an irremovable banner couldn’t be echoed directly.
    • \n
    • GUI Limited page speed chart to cacheable servers only.
    • \n
    • Tag Fixed a potential warning in tags. (ikiterder)
    • \n
    • Tag Appended AJAX action to cache tags.
    • \n
    • Tag Dropped normal HTTP code. Only error codes (403/404/500) will be used for tags.
    • \n
    • Misc Fixed fatal activation error on Network installation when no other plugins are active. (PR#808 #9496550)
    • \n
    • Misc Improved README file by adding minimum supported PHP/WordPress versions. (Viktor Szépe)
    • \n
    • Misc Added reliance on just-in-time translation loading. (Pascal Birchler #738)
    • \n
    • Misc Will now check whether the filename is valid before saving a file to fix the possible Object Cache log issue. (Mahdi Akrami #761)
    • \n
    • Misc Fixed PHP 7.2 compatibility in cloud message. (Viktor Szépe #771)
    • \n
    • Misc Incompatibility warning banner for third party plugins is now dismissible.
    • \n
    • Misc Generated robots.txt file under litespeed folder to discourage search engine indexing of static resource files. (djwilko12)
    • \n
    • Debug Escalated debug initialization to as early as possible to allow more configuration information to be logged.
    • \n
    • 3rd Fixed warning in Buddy Press code integration. (Viktor Szépe/antipole PR#778)
    • \n
    \n

    6.5.4 – Dec 16 2024

    \n
      \n
    • Page Optimize Fixed Google Fonts broken with the Async option. (HivePress #787)
    • \n
    \n

    6.5.3 – Dec 4 2024

    \n
      \n
    • Misc Quote escaped in attributes when building HTML. (CVE-2024-51915)
    • \n
    \n

    6.5.2 – Oct 17 2024

    \n
      \n
    • Crawler Removed barely used Role Simulator from Crawler, to prevent potential security issues.
    • \n
    • Misc Removed mt_srand function in random hash generation to slightly improve the hash result.
    • \n
    \n

    6.5.1 – Sep 25 2024

    \n
      \n
    • Security This release includes two security updates to enhance the post validation of the editor (CVE-2024-47373), and to secure the GUI queue display from malicious vary input (CVE-2024-47374).
    • \n
    • Media Sanitized dimensions for the images when replacing with placeholders. (TaiYou)
    • \n
    • Page Optimize Sanitized vary value in queue list. (TaiYou)
    • \n
    • Cloud Silent API error when failing to retrieve news updates.
    • \n
    \n

    6.5.0.2 – Sep 6 2024

    \n
      \n
    • Debug Compatibility improvement for WP installations w/o AUTH_KEY defined in wp-config.php.
    • \n
    \n

    6.5.0.1 – Sep 4 2024

    \n
      \n
    • 🔥Debug Fixed a corner case fatal error when Object Cache is ON but failed to connect, and wp-content/litespeed directory is not writable, and debug option is ON.
    • \n
    \n

    6.5 – Sep 4 2024

    \n

    *❗Security This release includes several debug log improvements for improved security, as listed below. Update strongly recommended.
    \n* Debug Moved debug log to litespeed individual folder /wp-content/litespeed/debug/.
    \n* Debug Disallowed visits to /litespeed/debug/ folder log files in .htaccess.
    \n* Debug Dropped const LSCWP_DEBUG_PATH support.
    \n* Debug Renamed debug.purge.log to purge.log.
    \n* Debug Added dummy index.php for debug folder.
    \n* Debug Used random string for log filenames.
    \n* Debug Removed cookies-related info. (Thanks to Rafie)
    \n* Debug Dropped Log Cookies option.
    \n* Report Escaped report content to protect it from potential XSS attack. (Islam R alsaid #505746)
    \n* ESI Added nonce for Advanced Custom Fields + Advanced Forms. (David Lapointe Gilbert #439)
    \n* Purge Run ACTION_PURGE_EMPTYCACHE even if cache is disabled in network admin. (Philip #453)
    \n* Page Optimize Disable UCSS exclusion when UCSS is inactived. (#640)
    \n* 3rd Fixed undefined warning in WooCommerce Widgets. (Lolosan #719)
    \n* 3rd Correct the integration with User Switching. (John Blackbourn #725)
    \n* 3rd Fixed Admin Bar Missing issue on DIVI + Elementor frontend. (thyran/robertstaddon PR#727)

    \n

    6.4.1 – Aug 19 2024

    \n
      \n
    • Security This release patches a security issue that may affect previous LSCWP versions since v1.9.
    • \n
    • 🐞Page Optimize Fixed HTML minification returning blank page issue. (#706)
    • \n
    • 🐞CDN Fixed a bug when Cloudflare status option is empty. (#684 #992174)
    • \n
    • Core Minimum required WP version escalated to WP v4.9.
    • \n
    \n

    6.4 – Aug 13 2024

    \n
      \n
    • Cache Corrected QC and LSADC cache hit status.
    • \n
    • Cloud Allow partner info removal in QUIC.cloud notification.
    • \n
    • Crawler Separated CSS preparation validation from crawler validation.
    • \n
    • GUI Moved WordPress Image Quality Control setting from Image Optimization menu to Page Optimization menu.
    • \n
    • 3rd Add Elementor Edit button back in ESI. (PR#635)
    • \n
    • 3rd Fixed Instant click potential conflict w/ other plugins.
    • \n
    \n

    6.3.0.1 – Jul 29 2024

    \n
      \n
    • 🔥🐞Rest Disabled WP default Editor cache for REST requests to fix editor errors. (Shivam)
    • \n
    • Cache Supported cache_nocacheable.txt predefined settings.
    • \n
    \n

    6.3 – Jul 22 2024

    \n
      \n
    • 🌱Page Optimize HTML Keep Comments: When minifying HTML do not discard comments that match a specified pattern. (#328853)
    • \n
    • 🌱Cache Cache POST requests. Now can configure POST/GET AJAX requests to be cached. (#647300)
    • \n
    • Cache Bypass admin initialization when doing ajax call. (Tim)
    • \n
    • Cache Better control over the cache location #541 (Gal Baras/Tanvir Israq)
    • \n
    • Cloud Added nonce for callback validation to enhance security. (Chloe@Wordfence)
    • \n
    • Cloud Fixed an error message for daily quota.
    • \n
    • Cloud Display error message when communicating with QUIC.cloud causes a token error.
    • \n
    • ESI Bypass ESI at an earlier stage when getting DONOTCACHEPAGE.
    • \n
    • ESI Added ESI nonce for Events Calendar and jetMenu mobile hamburger menu. (#306983 #163710 PR#419)
    • \n
    • ESI Added WP Data Access nonce (PR#665)
    • \n
    • ESI Added WP User Frontend ESI nonce (PR#675)
    • \n
    • Media Ignored images from JS in image size detection (PR#660)
    • \n
    • GUI Moved Preset menu from network level to site level for multisite networks.
    • \n
    • GUI Suppressed sitemap generation message if not triggered manually.
    • \n
    • GUI Added CloudFlare purge to front end menu.
    • \n
    • GUI Allowed customized partner CDN login link on dash.
    • \n
    • Page Optimize Cleaned up litespeed_url table when clearing url files. (PR#664)
    • \n
    • Page Optimize Updated Instant Click library to version 5.2.0.
    • \n
    • Page Optimize Added Flatsome theme random string excludes. (PR#415)
    • \n
    • Page Optimize Exclude Cloudflare turnstile from JS optimizations. (Tobolo)
    • \n
    • Page Optimize Fixed Cloudflare Turnstile issues. (Contributolo PR#671/672)
    • \n
    • Object Improved debug log for object cache status. (PR#669)
    • \n
    • Object Added brief parseable header comments to the drop-in file. (OllieJones)
    • \n
    • Debug Trimmed debug log.
    • \n
    • Misc Improved compatibility and sped up resolving for JSON functions json_encode/json_decode. (hosni/szepeviktor #693)
    • \n
    • Misc Fixed typos in params and comments. (szepeviktor #688)
    • \n
    • Image Optimization Fixed an issue which suppressed new requests when there were no new images in the library but there were unprocessed images in the send queue.
    • \n
    • Image Optimization Improved Cloud side quota check by disallowing new requests if notified but not pulled.
    • \n
    • Image Optimization Keep image attributes when replacing dimensions. (PR#686 #381779)
    • \n
    \n

    6.2.0.1 – Apr 25 2024

    \n
      \n
    • 🔥🐞Page Optimize Fixed the image display issue that occurs with Elementor’s data-settings attribute when the WebP image is not yet ready. (kanten/cbwwebmaster/reedock #132840 #680939 #326525)
    • \n
    \n

    6.2 – Apr 23 2024

    \n
      \n
    • 🌱Crawler Added Crawler hit/miss filter. (#328853)
    • \n
    • 🌱CLI Image optimization now supports wp litespeed-image batch_switch orig/optm. (A2Hosting)
    • \n
    • 🌱VPI Auto preload VPI images. (Ankit)
    • \n
    • Object Added support for username/password authentication for Redis (PR#616 Donatas Abraitis/hostinger)
    • \n
    • Page Optimize Now supporting Elementors data-settings WebP replacement. (Thanks to Ryan D)
    • \n
    • Cache Send Cache-Control: no-cache, no-store, must-revalidate, max-age=0 when page is not cacheable. (asafm7/Ruikai)
    • \n
    • Cache Cache control will respect X-Http-Method-Override now. (George)
    • \n
    • Cache No cache for X-Http-Method-Override: HEAD. (George)
    • \n
    • Cache Specified LSCWP in adv-cache compatible file.
    • \n
    • Cache Fixed redirection loop if query string has tailing ampersand (#389629)
    • \n
    • Cache Dropped “Cache Favicon.ico” option as it is redundant with 404 cache. (Lauren)
    • \n
    • Cache Fixed deprecated PHP v8 warning in page redirection. (Issue#617 dcx15)
    • \n
    • Cloud REST callback used ACL for QC ips validation.
    • \n
    • Cloud Fixed a typo in parsing cloud msg which prevented error messages to show.
    • \n
    • Cloud Carried on PHP ver for better version detection purpose.
    • \n
    • Cloud Escaped token to show correctly in report.
    • \n
    • Cloud Fixed a QC cloud ip verification setup failure in PHP 5.3.
    • \n
    • 🐞Cloud Fixed a continual new version detection.
    • \n
    • 🐞Image Optimize Fixed a summary counter mismatch for finished images. (A2Hosting)
    • \n
    • CDN Auto CDN setup compatibility with WP versions less than 5.3.
    • \n
    • 🐞CDN Fixed wrong replacement of non image files in image replacement. (Lucas)
    • \n
    • GUI Further filtered admin banner messages to prevent from existing danger code in database.
    • \n
    • REST Fixed a potential PHP warning in REST check when param is empty. (metikar)
    • \n
    \n

    6.1 – Feb 1 2024

    \n
      \n
    • 🌱Database New Clear Orphaned Post Meta optimizer function.
    • \n
    • Image Optimize Fixed possible PHP warning for WP requests library response.
    • \n
    • Image Optimize Unlocked noabort to all async tasks to avoid image optimization timeout. (Peter Wells)
    • \n
    • Image Optimize Fixed an issue where images weren’t being pulled with older versions of WordPress. (PR#608)
    • \n
    • Image Optimize Improved exception handling when node server cert expire.
    • \n
    • 🐞Image Optimize The failed to pull images due to 404 expiry will now be able to send the request again.
    • \n
    • Crawler CLI will now be able to force crawling even if a crawl was recently initiated within the plugin GUI.
    • \n
    • Page Optimize Fixed a dynamic property creation warning in PHP8. (PR#606)
    • \n
    • Page Optimize Fixed an issue where getimagesize could cause page optimization to fail. (PR#607)
    • \n
    • Tag Fixed an array to string conversion warning. (PR#604)
    • \n
    • Object Cache Return false to prevent PHP warning when Redis fails to set a value. (PR#612)
    • \n
    • Cache Tag Fixed an issue where $wp_query is null when getting cache tags. (PR#589)
    • \n
    \n

    6.0.0.1 – Dec 15 2023

    \n
      \n
    • 🐞Image Optimize Grouped the taken notification to regional center servers to reduce the load after image pulled.
    • \n
    \n

    6.0 – Dec 12 2023

    \n
      \n
    • 🌱Image Optimize Parallel pull. (⭐ Contributed by Peter Wells #581)
    • \n
    • 🌱Cache CLI Crawler.
    • \n
    • 🌱Cache New Vary Cookies option.
    • \n
    • 🌱Media New Preload Featured Image option. (Ankit)
    • \n
    • Core Codebase safety review. (Special thanks to Rafie Muhammad @ Patchstack)
    • \n
    • Purge Purge will not show QC message if no queue is cleared.
    • \n
    • Purge Fixed a potential warning when post type is not as expected. (victorzink)
    • \n
    • Conf Server IP field may now be emptied. (#111647)
    • \n
    • Conf CloudFlare CDN setting vulnerability patch. (Gulshan Kumar #541805)
    • \n
    • Crawler Suppressed sitemap generation msg when running by cron.
    • \n
    • Crawler PHP v8.2 Dynamic property creation warning fix. (oldrup #586)
    • \n
    • VPI VPI can now support non-alphabet filenames.
    • \n
    • VPI Fixed PHP8.2 deprecated warning. (Ryan D)
    • \n
    • ESI Fixed ESI nonce showing only HTML comment issue. (Giorgos K.)
    • \n
    • 🐞Page Optimize Fixed a fatal PHP error caused by the WHM plugin’s Mass Enable for services not in use. (Michael)
    • \n
    • 🐞Network Fix in-memory options for multisites. (Tynan #588)
    • \n
    • Network Correct Disable All Features link for Multisite.
    • \n
    • 🐞Image Optimize Removing original image will also remove optimized images.
    • \n
    • Image Optimize Increased time limit for pull process.
    • \n
    • Image Optimize Last pull time and cron tag now included in optimization summary.
    • \n
    • Image Optimize Fixed Elementors Slideshow unusual background images. (Ryan D)
    • \n
    • 🐞Database Optimize Fix an issue where cleaning post revisions would fail while cleaning postmeta. (Tynan #596)
    • \n
    • Crawler Added status updates to CLI. (Lars)
    • \n
    • 3rd WPML product category purge for WooCommerce. (Tynan #577)
    • \n
    \n

    5.7.0.1 – Oct 25 2023

    \n
      \n
    • GUI Improvements to admin banner messaging. (#694622)
    • \n
    • CDN Improvements to CDN Setup. (#694622)
    • \n
    • Image Optimize Improvements to the process of checking image identification. (#694622)
    • \n
    \n

    5.7 – Oct 10 2023

    \n
      \n
    • 🌱Page Optimize New option available: Preconnect. (xguiboy/Mukesh Patel)
    • \n
    • 🌱3rd New Vary for Mini Cart option for WooCommerce. (Ruikai)
    • \n
    • Cloud Force syncing the configuration to QUIC.cloud if CDN is reenabled.
    • \n
    • Cloud Force syncing the configuration to QUIC.cloud if domain key is readded.
    • \n
    • Cloud Limit multi-line fields when posting to QC.
    • \n
    • Cache Treat HEAD requests as cacheable as GET. (George Wang)
    • \n
    • 🐞ESI Patched a possible vulnerability issue. (István Márton@Wordfence #841011)
    • \n
    • 🐞ESI Overwrite SCRIPT_URI to prevent ESI sub request resulting in redirections. (Tobolo)
    • \n
    • 🐞Image Optimize Bypass unnecessary image processing when images were only partially optimized. (Ruikai)
    • \n
    • 🐞Guest Guest mode will not enable WebP directly anymore. (Michael Heymann)
    • \n
    • CDN Auto disable CDN if CDN URL is invalid. (Ruikai)
    • \n
    • CDN Fixed a null parameter warning for PHP v8.1 (#584)
    • \n
    • API Added litespeed_media_add_missing_sizes filter to allow bypassing Media’s “add missing sizes” option (for Guest Optimization and otherwise). (PR #564)
    • \n
    • Guest Fixed soft 404 and robots.txt report for guest.vary.php.
    • \n
    • Vary Enabled litespeed_vary_cookies for LSWS Enterprise.
    • \n
    • GUI Stopped WebP tip from wrongly displaying when Guest Mode is off.
    • \n
    • GUI Added QUIC.cloud promotion postbox on dashboard page.
    • \n
    • 3rd Added pagespeed ninja to blocklist due to its bad behavior.
    • \n
    \n", "description": "

    LiteSpeed Cache for WordPress (LSCWP) is an all-in-one site acceleration plugin, featuring an exclusive server-level cache and a collection of optimization features.

    \n

    LSCWP supports WordPress Multisite and is compatible with most popular plugins, including WooCommerce, bbPress, and Yoast SEO.

    \n

    LiteSpeed Cache for WordPress is compatible with ClassicPress.

    \n

    Requirements

    \n

    General Features may be used by anyone with any web server (LiteSpeed, Apache, NGINX, etc.).

    \n

    LiteSpeed Exclusive Features require one of the following: OpenLiteSpeed, commercial LiteSpeed products, LiteSpeed-powered hosting, or QUIC.cloud CDN. Why?

    \n

    Plugin Features

    \n

    General Features

    \n
      \n
    • Free QUIC.cloud CDN Cache
    • \n
    • Object Cache (Memcached/LSMCD/Redis) Support+
    • \n
    • Image Optimization (Lossless/Lossy)
    • \n
    • Minify CSS, JavaScript, and HTML
    • \n
    • Minify inline & external CSS/JS
    • \n
    • Combine CSS/JS
    • \n
    • Automatically generate Critical CSS
    • \n
    • Lazy-load images/iframes
    • \n
    • Responsive Image Placeholders
    • \n
    • Multiple CDN Support+
    • \n
    • Load CSS Asynchronously
    • \n
    • Defer/delay JS loading
    • \n
    • Browser Cache Support+
    • \n
    • Database Cleaner and Optimizer
    • \n
    • PageSpeed score (including Core Web Vitals) optimization
    • \n
    • OPcode Cache Support+
    • \n
    • HTTP/2 Push for CSS/JS (on web servers that support it)
    • \n
    • DNS Prefetch
    • \n
    • Cloudflare API
    • \n
    • Single Site and Multisite (Network) support
    • \n
    • Import/Export settings
    • \n
    • Attractive, easy-to-understand interface
    • \n
    • AVIF/WebP image format support
    • \n
    • Heartbeat control
    • \n
    \n

    + This service is not provided by the LSCache plugin, nor is it guaranteed to be installed by your service provider. However, the plugin is compatible with the service if it is in use on your site.

    \n

    LiteSpeed Exclusive Features

    \n
      \n
    • Automatic page caching to greatly improve site performance
    • \n
    • Automatic purge of related pages based on certain events
    • \n
    • Private cache for logged-in users
    • \n
    • Caching of WordPress REST API calls
    • \n
    • Separate caching of desktop and mobile views
    • \n
    • Ability to schedule purge for specified URLs
    • \n
    • WooCommerce and bbPress support
    • \n
    • WordPress CLI commands
    • \n
    • API system for easy cache integration
    • \n
    • Exclude from cache by URI, Category, Tag, Cookie, User Agent
    • \n
    • Smart preload crawler with support for SEO-friendly sitemap
    • \n
    • Multiple crawlers for cache varies
    • \n
    • HTTP/2 support
    • \n
    • HTTP/3 & QUIC support
    • \n
    • ESI (Edge Side Includes) support*
    • \n
    • Widgets and Shortcodes as ESI blocks* (requires Classic Widgets plugin for WP 5.8+)
    • \n
    \n

    * Feature not available in OpenLiteSpeed

    \n

    LSCWP Resources

    \n\n

    Third Party Compatibility

    \n

    The vast majority of plugins and themes are compatible with LSCache. Our API is available for those that are not. Use the API to customize smart purging, customize cache rules, create cache varies, and make WP nonce cacheable, among other things.

    \n

    Privacy

    \n

    This plugin includes some suggested text that you can add to your site’s Privacy Policy via the Guide in the WordPress Privacy settings.

    \n

    For your own information: LiteSpeed Cache for WordPress potentially stores a duplicate copy of every web page on display on your site. The pages are stored locally on the system where LiteSpeed server software is installed and are not transferred to or accessed by LiteSpeed employees in any way, except as necessary in providing routine technical support if you request it. All cache files are temporary, and may easily be purged before their natural expiration, if necessary, via a Purge All command. It is up to individual site administrators to come up with their own cache expiration rules.

    \n

    In addition to caching, our WordPress plugin has online features provided by QUIC.cloud for Image Optimization and Page Optimization services. When one of these optimizations is requested, data is transmitted to a remote QUIC.cloud server, processed, and then transmitted back for use on your site. QUIC.cloud keeps copies of that data for up to 7 days and then permanently deletes it. Similarly, the WordPress plugin has a Reporting feature whereby a site owner can transmit an environment report to LiteSpeed so that we may better provide technical support. None of these features collects any visitor data. Only server and site data are involved.

    \n

    QUIC.cloud CDN, if enabled, uses LSCache technology to access your site, and serve your content from remote global nodes. Your data is not accessed by QUIC.cloud employees in any way, except as necessary in providing maintenance or technical support.

    \n

    Please see the QUIC.cloud Privacy Policy for our complete Privacy/GDPR statement.

    \n", "screenshots": "
    1. \"Plugin

      Plugin Benchmarks

    2. \"Admin

      Admin - Dashboard

    3. \"Admin

      Admin - Image Optimization

    4. \"Admin

      Admin - Crawler

    5. \"Admin

      Admin Settings - Cache

    6. \"Admin

      Admin Settings - Page Optimization

    7. \"Admin

      Admin Settings - CDN

    8. \"Admin

      Admin Settings - DB Optimizer

    9. \"Admin

      Admin Settings - Toolbox

    10. \"Cache

      Cache Miss Example

    11. \"Cache

      Cache Hit Example

    ", "installation": "

    View detailed documentation.

    \n

    For Optimization Without a LiteSpeed Web Server

    \n
      \n
    1. Install the LiteSpeed Cache for WordPress plugin and activate it.
    2. \n
    3. From the WordPress Dashboard, navigate to LiteSpeed Cache > Page Optimization. Enable the available optimization features in the various tabs.
    4. \n
    \n

    For Caching and Optimization With a LiteSpeed Web Server

    \n
      \n
    1. Install LiteSpeed Web Server Enterprise with LSCache Module, LiteSpeed Web ADC, or OpenLiteSpeed with cache module (Free). Or sign up for QUIC.cloud CDN.
    2. \n
    3. Install the LiteSpeed Cache for WordPress plugin and activate it.
    4. \n
    5. From the WordPress Dashboard, navigate to LiteSpeed Cache > Cache, make sure the option Enable LiteSpeed Cache is set to ON.
    6. \n
    7. Enable any desired caching and optimization features in the various tabs.
    8. \n
    \n

    Notes for LiteSpeed Web Server Enterprise

    \n
      \n
    • Make sure that your license includes the LSCache module. A 2-CPU trial license with LSCache module is available for free for 15 days.
    • \n
    • The server must be configured to have caching enabled. If you are the server admin, click here for instructions. Otherwise, please request that the server admin configure the cache root for the server.
    • \n
    \n

    Notes for OpenLiteSpeed

    \n
      \n
    • This integration utilizes OpenLiteSpeed’s cache module.
    • \n
    • If it is a fresh OLS installation, the easiest way to integrate is to use ols1clk. If using an existing WordPress installation, use the --wordpresspath parameter.
    • \n
    • If OLS and WordPress are both already installed, please follow the instructions in How To Set Up LSCache For WordPress.
    • \n
    \n"}, "versions": {"4.6": "https://downloads.wordpress.org/plugin/litespeed-cache.4.6.zip", "7.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.1.zip", "7.2": "https://downloads.wordpress.org/plugin/litespeed-cache.7.2.zip", "7.3": "https://downloads.wordpress.org/plugin/litespeed-cache.7.3.zip", "7.4": "https://downloads.wordpress.org/plugin/litespeed-cache.7.4.zip", "7.5": "https://downloads.wordpress.org/plugin/litespeed-cache.7.5.zip", "7.6": "https://downloads.wordpress.org/plugin/litespeed-cache.7.6.zip", "3.6.4": "https://downloads.wordpress.org/plugin/litespeed-cache.3.6.4.zip", "6.5.4": "https://downloads.wordpress.org/plugin/litespeed-cache.6.5.4.zip", "7.0.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.0.1.zip", "7.6.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.6.1.zip", "7.6.2": "https://downloads.wordpress.org/plugin/litespeed-cache.7.6.2.zip", "trunk": "https://downloads.wordpress.org/plugin/litespeed-cache.zip", "1.0.15": "https://downloads.wordpress.org/plugin/litespeed-cache.1.0.15.zip", "1.9.1.1": "https://downloads.wordpress.org/plugin/litespeed-cache.1.9.1.1.zip", "2.9.9.2": "https://downloads.wordpress.org/plugin/litespeed-cache.2.9.9.2.zip", "5.7.0.1": "https://downloads.wordpress.org/plugin/litespeed-cache.5.7.0.1.zip", "7.0.0.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.0.0.1.zip", "7.3.0.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.3.0.1.zip", "7.5.0.1": "https://downloads.wordpress.org/plugin/litespeed-cache.7.5.0.1.zip"}, "downloaded": 118764951, "description": "

    LiteSpeed Cache for WordPress (LSCWP) is an all-in-one site acceleration plugin, featuring an exclusive server-level cache and a collection of optimization features.

    \n

    LSCWP supports WordPress Multisite and is compatible with most popular plugins, including WooCommerce, bbPress, and Yoast SEO.

    \n

    LiteSpeed Cache for WordPress is compatible with ClassicPress.

    \n

    Requirements

    \n

    General Features may be used by anyone with any web server (LiteSpeed, Apache, NGINX, etc.).

    \n

    LiteSpeed Exclusive Features require one of the following: OpenLiteSpeed, commercial LiteSpeed products, LiteSpeed-powered hosting, or QUIC.cloud CDN. Why?

    \n

    Plugin Features

    \n

    General Features

    \n
      \n
    • Free QUIC.cloud CDN Cache
    • \n
    • Object Cache (Memcached/LSMCD/Redis) Support+
    • \n
    • Image Optimization (Lossless/Lossy)
    • \n
    • Minify CSS, JavaScript, and HTML
    • \n
    • Minify inline & external CSS/JS
    • \n
    • Combine CSS/JS
    • \n
    • Automatically generate Critical CSS
    • \n
    • Lazy-load images/iframes
    • \n
    • Responsive Image Placeholders
    • \n
    • Multiple CDN Support+
    • \n
    • Load CSS Asynchronously
    • \n
    • Defer/delay JS loading
    • \n
    • Browser Cache Support+
    • \n
    • Database Cleaner and Optimizer
    • \n
    • PageSpeed score (including Core Web Vitals) optimization
    • \n
    • OPcode Cache Support+
    • \n
    • HTTP/2 Push for CSS/JS (on web servers that support it)
    • \n
    • DNS Prefetch
    • \n
    • Cloudflare API
    • \n
    • Single Site and Multisite (Network) support
    • \n
    • Import/Export settings
    • \n
    • Attractive, easy-to-understand interface
    • \n
    • AVIF/WebP image format support
    • \n
    • Heartbeat control
    • \n
    \n

    + This service is not provided by the LSCache plugin, nor is it guaranteed to be installed by your service provider. However, the plugin is compatible with the service if it is in use on your site.

    \n

    LiteSpeed Exclusive Features

    \n
      \n
    • Automatic page caching to greatly improve site performance
    • \n
    • Automatic purge of related pages based on certain events
    • \n
    • Private cache for logged-in users
    • \n
    • Caching of WordPress REST API calls
    • \n
    • Separate caching of desktop and mobile views
    • \n
    • Ability to schedule purge for specified URLs
    • \n
    • WooCommerce and bbPress support
    • \n
    • WordPress CLI commands
    • \n
    • API system for easy cache integration
    • \n
    • Exclude from cache by URI, Category, Tag, Cookie, User Agent
    • \n
    • Smart preload crawler with support for SEO-friendly sitemap
    • \n
    • Multiple crawlers for cache varies
    • \n
    • HTTP/2 support
    • \n
    • HTTP/3 & QUIC support
    • \n
    • ESI (Edge Side Includes) support*
    • \n
    • Widgets and Shortcodes as ESI blocks* (requires Classic Widgets plugin for WP 5.8+)
    • \n
    \n

    * Feature not available in OpenLiteSpeed

    \n

    LSCWP Resources

    \n\n

    Third Party Compatibility

    \n

    The vast majority of plugins and themes are compatible with LSCache. Our API is available for those that are not. Use the API to customize smart purging, customize cache rules, create cache varies, and make WP nonce cacheable, among other things.

    \n

    Privacy

    \n

    This plugin includes some suggested text that you can add to your site’s Privacy Policy via the Guide in the WordPress Privacy settings.

    \n

    For your own information: LiteSpeed Cache for WordPress potentially stores a duplicate copy of every web page on display on your site. The pages are stored locally on the system where LiteSpeed server software is installed and are not transferred to or accessed by LiteSpeed employees in any way, except as necessary in providing routine technical support if you request it. All cache files are temporary, and may easily be purged before their natural expiration, if necessary, via a Purge All command. It is up to individual site administrators to come up with their own cache expiration rules.

    \n

    In addition to caching, our WordPress plugin has online features provided by QUIC.cloud for Image Optimization and Page Optimization services. When one of these optimizations is requested, data is transmitted to a remote QUIC.cloud server, processed, and then transmitted back for use on your site. QUIC.cloud keeps copies of that data for up to 7 days and then permanently deletes it. Similarly, the WordPress plugin has a Reporting feature whereby a site owner can transmit an environment report to LiteSpeed so that we may better provide technical support. None of these features collects any visitor data. Only server and site data are involved.

    \n

    QUIC.cloud CDN, if enabled, uses LSCache technology to access your site, and serve your content from remote global nodes. Your data is not accessed by QUIC.cloud employees in any way, except as necessary in providing maintenance or technical support.

    \n

    Please see the QUIC.cloud Privacy Policy for our complete Privacy/GDPR statement.

    \n", "donate_link": "", "num_ratings": 2685, "screenshots": {"1": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-1.png?rev=2554181", "caption": "Plugin Benchmarks"}, "2": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-2.png?rev=2554181", "caption": "Admin - Dashboard"}, "3": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-3.png?rev=2554181", "caption": "Admin - Image Optimization"}, "4": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-4.png?rev=2554181", "caption": "Admin - Crawler"}, "5": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-5.png?rev=2554181", "caption": "Admin Settings - Cache"}, "6": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-6.png?rev=2554181", "caption": "Admin Settings - Page Optimization"}, "7": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-7.png?rev=2554181", "caption": "Admin Settings - CDN"}, "8": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-8.png?rev=2554181", "caption": "Admin Settings - DB Optimizer"}, "9": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-9.png?rev=2554181", "caption": "Admin Settings - Toolbox"}, "10": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-10.png?rev=2554181", "caption": "Cache Miss Example"}, "11": {"src": "https://ps.w.org/litespeed-cache/assets/screenshot-11.png?rev=2554181", "caption": "Cache Hit Example"}}, "support_url": "https://wordpress.org/support/plugin/litespeed-cache/", "contributors": {"litespeedtech": {"avatar": "https://secure.gravatar.com/avatar/b1503281757ffc27758bcd2bc44b33215b099a54a63ff42a6860800f042ea599?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/litespeedtech/", "display_name": "LiteSpeed Technologies"}}, "last_updated": "2025-10-17 2:55pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/litespeed-cache.7.6.2.zip", "author_profile": "https://profiles.wordpress.org/litespeedtech/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 7000000, "aspiresync_meta": {"id": "019a30bf-f6c0-73e5-9209-0652ffa8224f", "name": "LiteSpeed Cache", "slug": "litespeed-cache", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1760712900, "version": "7.6.2"}, "support_threads": 187, "requires_plugins": [], "short_description": "All-in-one unbeatable acceleration & PageSpeed improvement: caching, image/CSS/JS optimization...", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 143}'); -INSERT INTO public.plugins VALUES ('019a30c1-6603-7011-a2dd-b8b910a493a3', 'loco-translate', 'Loco Translate', 'Translate WordPress plugins and themes directly in your browser. Versatile PO file editor with integrated AI translation providers.', '

    Loco Translate provides in-browser editing of WordPress translation files and integration with automatic translation services.

    -

    It also provides Gettext/localization tools for developers, such as extracting strings and generating templates.

    -

    Features include:

    -
      -
    • Built-in translation editor within WordPress admin
    • -
    • Integration with translation APIs including DeepL, Google, Lecto, Microsoft and OpenAI.
    • -
    • Create and update language files directly in your theme or plugin
    • -
    • Extraction of translatable strings from your source code
    • -
    • Native MO file compilation without the need for Gettext on your system
    • -
    • JSON (Jed) file compilation compatible with WordPress script localization
    • -
    • Support for standard PO features including comments, references and plural forms
    • -
    • PO source view with clickable source code references
    • -
    • Protected language directory for saving custom translations
    • -
    • Configurable PO file backups with diff and restore capability
    • -
    • Built-in WordPress locale codes
    • -
    -

    Official Loco WordPress plugin by Tim Whitlock.
    -For more information please visit our plugin page.

    -

    Keyboard shortcuts

    -

    The PO file editor supports the following keyboard shortcuts for faster translating:

    -
      -
    • Done and Next: Ctrl ↵
    • -
    • Next string: Ctrl
    • -
    • Previous string: Ctrl
    • -
    • Next untranslated: Shift Ctrl
    • -
    • Previous untranslated: Shift Ctrl
    • -
    • Copy from source text: Ctrl B
    • -
    • Clear translation: Ctrl K
    • -
    • Toggle Fuzzy: Ctrl U
    • -
    • Save PO / compile MO: Ctrl S
    • -
    • Toggle invisibles: Shift Ctrl I
    • -
    • Suggest translation: Ctrl J
    • -
    -

    Mac users can use ⌘ Cmd instead of Ctrl.

    -', '2.8.0', 'Tim W', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/loco-translate.2.8.0.zip', '2013-07-23 00:00:00+00', '2025-05-21 12:59:00+00', 'https://profiles.wordpress.org/timwhitlock/', 96, 443, 16, 5, 1000000, 32398019, 'https://wordpress.org/plugins/loco-translate/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/loco-translate/', 'https://wordpress.org/plugins/loco-translate/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Loco Translate", "slug": "loco-translate", "tags": {"i18n": "i18n", "l10n": "l10n", "language": "language", "translation": "translation", "multilingual": "multilingual"}, "added": "2013-07-23", "icons": {"1x": "https://ps.w.org/loco-translate/assets/icon-128x128.png?rev=1000676", "2x": "https://ps.w.org/loco-translate/assets/icon-256x256.png?rev=1000676"}, "author": "Tim W", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/loco-translate/assets/banner-772x250.jpg?rev=745046", "high": false}, "ratings": {"1": 16, "2": 4, "3": 3, "4": 5, "5": 415}, "version": "2.8.0", "homepage": "https://wordpress.org/plugins/loco-translate/", "requires": "6.6", "sections": {"faq": "

    Please visit the FAQs page on our website for the most common issues.

    \n\n
    \nHow do I use Loco Translate?\n\n

    \n

    Try our Guides and Tutorials.

    \n

    \n
    \nHow do I get more help?\n\n

    \n

    If you have a problem using Loco Translate, please try our help pages.
    \nThere’s a lot of information there to help you understand how it works and the most common pitfalls to avoid.

    \n

    To report a bug please start a new topic in the support forum,
    \nbut please check the FAQs for similar issues first.
    \nIf you decide to submit a bug report please post enough relevant detail for us to reproduce your issue.

    \n

    \n
    \nIs my data protected?\n\n

    \n

    We don’t collect your data or track you. See the plugin privacy notice.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good plugin, but

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Nicolas Reznikoff (reznikoffnicolas) on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin conflict issue between WooCommerce and
    Locotranslate (blocking bug on (Woo) product variation management functions in the product sheet and image updates).
    Latest versions of WP, WooCommerce, Loco, and PHP 8.3
    I''m waiting for a correction (from one or the other) to re-edit this comment.
    Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin and support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Christian Wach (needle) on September 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A must-have plugin for managing the lifecycle of translations in custom plugins and themes.

    \n\n\n\n

    There''s a steep learning curve to climb when it comes to language and translation management. This plugin helps a lot and works really well.

    \n\n\n\n

    Also impressed with the speed of response to my help topic. Thanks Tim!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jaeffekt on August 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great for translate plugins in backend and frontend.
    Especially helpful in combination with Loco AI.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful plugin and great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Umberto (umberto69) on July 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its interface is clear and well-organized: just a few clicks are enough to start translating directly from the WordPress backend, without having to use external software or manually work on .po files
    The translation process is accessible to anyone, with automatic tools that help identify and modify text strings present in installed plugins.
    In addition, I found the technical support very good: the support is fast, competent and always available to solve the problem. Well done, 5 stars deserved!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I love this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy grahammiranda13work on July 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I paid for pro for two of the pro translate plugins! Guess what? It did not work! And then i tried a ''Free'' solution (this plugin) and it solved all my problems!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Amazingly simple translation system

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Dymytrii Ishchuk (ishchukdev) on May 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Loco has been serving great for me to translate custom themes and various plugins.

    \n\n\n\n

    Very simple, convenient, and reliable system. GOAT

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and free

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy paknejad on April 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple and free

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good plugin for automated translations

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Matthias Berndt (Matze202) on April 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m especially happy that DeepL API translation worked again so quickly. I was particularly pleasantly surprised by that, and THANK YOU again!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Extremely helpful to adjust translations

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy emmemm on March 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was not happy with a translation WooCommerce provided and was not successful to find the translation in order to change it. With this plugin, it was done in minutes. Very userfriendly and intuitive, you do not have to study tutorials. I hardly ever write reviews, but Loco Transfer defenitely deserves one. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Won't let you save your work if you have re-loged to Admin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Polaris (namrur) on March 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have faced this issues a few time already and is caused me a huge translating work loss every time. This plugin has a very harsh nonce security check. In case you have logged out as part of your website development, by mistake, or lost Internet connection- this plugin won''t aloow you to save your work even if your logged back from another Admin window.
    When hitig Save, it just throws a error message: \"Error: Failed security check for loco-nonce\".
    The only way to allow saving is by refreshing the LOCO interface.
    You can get this message with no warning after translatng numerous of phrases for a plugin,
    but you can''t do nothing to save your ork. Even not to download your work as a ZIP or PO file and to load them back after refreshing.
    I have''nt meet this \"Security\" feature in any other plugin until using LOCO translate.
    I had enouth after loosing about 2 hours of work in the last week, so I''m looking for a different translation tool.

    \n
    \n
    \n", "changelog": "

    2.8.0

    \n
      \n
    • Bugfix for PHP 8.0 compatibility
    • \n
    • Dropped support for PHP < 7.4
    • \n
    \n

    2.7.3

    \n
      \n
    • PHP 8.4 compatibility
    • \n
    • Bumped WordPress compatibility to 6.8.1
    • \n
    \n

    2.7.2

    \n
      \n
    • DeepL client moved to back end, because CORS
    • \n
    • Rolled in support for OpenAI / ChatGPT translation
    • \n
    • Workaround for JSON file references with no line number
    • \n
    • Bumped WordPress compatibility to 6.7.2
    • \n
    \n

    2.7.1

    \n
      \n
    • Debug logging of unloaded domains reduced to a summary
    • \n
    \n

    2.7.0

    \n
      \n
    • Raised minimum requirements to WordPress 6.6
    • \n
    • Minimum PHP version becomes 7.2.24 as per WordPress 6.6
    • \n
    • Locale-filtered bundle list now searches for base language
    • \n
    • Loading helper forcefully removes prematurely loaded text domains
    • \n
    • Machine translation hooks now have access to message context
    • \n
    • Persistent UI state for code view and invisible character modes
    • \n
    \n

    2.6.14

    \n
      \n
    • Critical fix: A relative path passed to load_textdomain no longer throws exception.
    • \n
    \n

    2.6.13

    \n
      \n
    • Fix for direct calls to load_textdomain with custom paths
    • \n
    • This resolves a regression in 2.6.12
    • \n
    \n

    2.6.12

    \n
      \n
    • Major fix to custom load_textdomain loader. Works when original file is absent
    • \n
    • Fixed bug in template comparison when JSON files need to be merged
    • \n
    • CSS fixes including reinstating of unsaved “star” icon
    • \n
    • Domain listener fixed for JIT loading
    • \n
    • Bumped WordPress compatibility to 6.7
    • \n
    \n

    2.6.11

    \n
      \n
    • Removed accidental console trace
    • \n
    • Bumped WordPress compatibility to 6.6.0
    • \n
    • Added lang_dir_for_domain fix to handle system file absence
    • \n
    \n

    2.6.10

    \n
      \n
    • Added loco_api_provider_{id} filter
    • \n
    • JSON compiler observes configured .js aliases
    • \n
    • Fixed a missing security check – thanks Nosa Shandy
    • \n
    • Added .blade.php tokenizer hack
    • \n
    • Bumped WordPress compatibility to 6.5.4
    • \n
    \n

    2.6.9

    \n
      \n
    • Rolled back load helper changes
    • \n
    • Moved debug messages to action hooks
    • \n
    • String debugger improvements
    • \n
    \n

    2.6.8

    \n
      \n
    • Added string debugger
    • \n
    • Added Zip download button instead of MO
    • \n
    • Added debug messages about premature domain loading
    • \n
    • Added warning when system translations not installed
    • \n
    • Compiler avoids writing empty JSON translation files
    • \n
    • UI promotes PO copy over msginit/xgettext routes
    • \n
    • Populating msginit fields when copying a PO
    • \n
    • Bumped WordPress compatibility to 6.5.3
    • \n
    \n

    2.6.7

    \n
      \n
    • WordPress 6.5.0 compatible
    • \n
    • Support for performant translation files in PHP format
    • \n
    • Added block.json and theme.json extraction
    • \n
    • Added theme pattern files to php string extractor
    • \n
    • Fixed a bug where unused plural forms were counted as untranslated
    • \n
    • Replaced CSS .notice with .panel to mitigate nag-blocker problems
    • \n
    • Removed bundle debug screen (deprecated since 2.6.5)
    • \n
    • Workaround for absent “source” references in JED files
    • \n
    • Extension polyfills now restricted to Loco admin screens.
    • \n
    \n

    2.6.6

    \n
      \n
    • Replaced open_basedir check with error capturing
    • \n
    \n

    2.6.5

    \n
      \n
    • Added syntax checking function
    • \n
    • Removed deepl_api_url config. Free API detected from :fx key suffix.
    • \n
    • Fixed bug in relative path calculations
    • \n
    • Fixed API suggestions for plural forms
    • \n
    • Fixed bug clearing unsaved state icons
    • \n
    • Added total strings count to PO file tables
    • \n
    • Sharper flags and spinners (@x2 pixel support)
    • \n
    • Handling upload_tmp_dir values outside of open_basedir
    • \n
    • Suppressing E_WARNING when testing file is_readable
    • \n
    • Bundle debug screen is deprecated (moving into Setup)
    • \n
    • Showing System Diagnostics when debug is off
    • \n
    • Bumped WordPress compatibility to 6.3.1
    • \n
    \n

    2.6.4

    \n
      \n
    • Bumped WordPress version to 6.1.1
    • \n
    • Dropped support for Internet Explorer
    • \n
    • Updated JavaScript to ECMAScript 6
    • \n
    • Added loco_bundle_configured hook
    • \n
    • Fixed error icon not clearing after correction
    • \n
    \n

    2.6.3

    \n
      \n
    • Fixed bug in plural forms comparison
    • \n
    • Fixed bug generating author theme jsons
    • \n
    • Fixed errors in bundle debugger
    • \n
    • Extended cli type argument to filter specific bundle
    • \n
    • Bumped WordPress version to 6.0.3
    • \n
    \n

    2.6.2

    \n
      \n
    • Bumped WordPress version to 6.0.0
    • \n
    • Better labelling of reverse-engineered plural forms
    • \n
    • Removed undocumented loco_locale_plurals filter; use loco_po_headers
    • \n
    • Added PO folder location indicator in breadcrumb
    • \n
    • Added syntax validation for formatted strings
    • \n
    \n

    2.6.1

    \n
      \n
    • Bumped WordPress version to 5.9.2
    • \n
    • Fix for CVE-2022-0765 reported by Taurus Omar via wpscan
    • \n
    \n

    2.6.0

    \n
      \n
    • Dropped support for WordPress < 5.2
    • \n
    • Code upgrades for >= PHP 5.6.20
    • \n
    • Bumped WordPress version to 5.9.1
    • \n
    • Removed Yandex API integration
    • \n
    • Added loco_compile_script_reference filter
    • \n
    • Plural-Forms retained when copying PO to same language
    • \n
    \n

    2.5.8

    \n
      \n
    • Compatible with PHP 8.1
    • \n
    • Bumped WordPress version to 5.9
    • \n
    • Added deprecation warning prior to v2.6
    • \n
    \n

    2.5.7

    \n
      \n
    • Fixed bug in 2.5.6 where remote APIs could not be used in batch mode
    • \n
    • Enforcing 10k character limit per request for Microsoft and Yandex Translators
    • \n
    • Style fix for revision/diff table under restore tab
    • \n
    \n

    2.5.6

    \n
      \n
    • Added loco_api_provider_source filter
    • \n
    • Fixed bug loading user preferences saved in older version
    • \n
    • Refactored file finder to avoid recursive function calls
    • \n
    • Fixed bug displaying two forms for zero plural languages
    • \n
    • Added Lecto AI to translation API providers
    • \n
    • Bumped WordPress version to 5.8.3
    • \n
    \n

    2.5.5

    \n
      \n
    • Fixed double file extension vulnerability reported by WordFence
    • \n
    • Better performance when scanning directories for file types
    • \n
    \n

    2.5.4

    \n
      \n
    • Fixed vulnerability reported by Tomi Ashari via wpscan
    • \n
    • Added filters loco_po_headers and loco_pot_headers
    • \n
    • Bumped WordPress version to 5.8.1
    • \n
    \n

    2.5.3

    \n
      \n
    • Adds option to merge JSON translations when syncing from PO
    • \n
    • Adds screen for editing file headers and sync options
    • \n
    • Fix for missing responseText in failed Ajax responses
    • \n
    • Fix for HTML entities returned from number_format_i18n
    • \n
    • Localized number formatting in JavaScript
    • \n
    • Replaced usage of date_i18n with wp_date
    • \n
    • Added configurable API endpoint for DeepL
    • \n
    • Bumped WordPress version to 5.7.2
    • \n
    \n

    2.5.2

    \n
      \n
    • Added implied formality and loco_locale_formality filter
    • \n
    • Added cli fetch command (experimental)
    • \n
    • Bumped WordPress version to 5.7
    • \n
    \n

    2.5.1

    \n
      \n
    • Support for new Yandex translate API
    • \n
    • Support for DeepL formality parameter
    • \n
    • Removed literal “1” and “one” instances from singular strings
    • \n
    • Buffering compiled JSON to support strings from multiple sources
    • \n
    • Added loco_compile_single_json filter for specifying custom JSON
    • \n
    • Added loco_extracted_template hook for adding custom strings
    • \n
    • Sync no longer removes the editor’s current text filter
    • \n
    • Bumped WordPress version to 5.6.2
    • \n
    \n

    2.5.0

    \n
      \n
    • PHP 8.0.0 compatibility
    • \n
    • Bumped WordPress version to 5.6.0
    • \n
    • Added JSON translation file generation
    • \n
    • Added custom JSON loading to LoadHelper
    • \n
    • Disabled emoji image replacement on our admin screens
    • \n
    \n

    2.4.6

    \n
      \n
    • Fixed critical bug syncing PO directly to source code
    • \n
    • Added plugin setting for allowing/disallowing missing POT
    • \n
    • Fixed WP5.5 issue with multiple ID attributes on script tags
    • \n
    \n

    2.4.5

    \n
      \n
    • Added WP-CLI sync and extract commands
    • \n
    • Fixed {locale} placeholder bug introduced in 2.4.4
    • \n
    • Improved handling of invalid character encodings
    • \n
    • Sync (msgmerge) moved to back end
    • \n
    • New fuzzy matching with fuzziness setting
    • \n
    • Bumped WordPress version to 5.5.3
    • \n
    \n

    2.4.4

    \n
      \n
    • Added PO file upload feature
    • \n
    • Added download button to file info page
    • \n
    • Fix for extracting plurals also used as singulars
    • \n
    • Updating API keys no longer require editor page reload
    • \n
    • Catching fatal startup errors in loco.php
    • \n
    • Supporting max_php_size=0 to mean no size restriction
    • \n
    • Auto-update detection now checks new site options
    • \n
    • Bumped WordPress version to 5.5.1
    • \n
    \n

    2.4.3

    \n
      \n
    • Improved fix for default syncing of msgstr fields
    • \n
    • Reverted accidental removal of js debug flag
    • \n
    • Minor fixes to API error messages
    • \n
    • Removed use of jQuery.browser
    • \n
    • Bugfix for new preferences in usermeta
    • \n
    \n

    2.4.2

    \n
      \n
    • Added loco_file_written hook
    • \n
    • Improved script tampering warning
    • \n
    • Added keypress for selecting auto-suggestion
    • \n
    • Sync no longer copies msgstr fields by default
    • \n
    • Style tweaks for WordPress 5.5
    • \n
    \n

    2.4.1

    \n
      \n
    • Fixed mapping of some API languages
    • \n
    • Added locale filter to user preferences
    • \n
    • Added debugging for credential form failures
    • \n
    • Fixed deprecated use of array_key_exists
    • \n
    • Added DeepL API service provider
    • \n
    • Improved script tampering detection
    • \n
    • Bumped WordPress version to 5.5
    • \n
    • Added “modern” skin styles
    • \n
    \n

    2.4.0

    \n
      \n
    • Added support for third party translation APIs
    • \n
    • Added file references to editor source pane in code view
    • \n
    • Added fuzzy matching during editor Sync operation
    • \n
    • Style changes including rearrangement of editor buttons
    • \n
    • Elevated warnings when scripts are tampered with
    • \n
    • Removed remnants of legacy version 1.x
    • \n
    \n

    2.3.4

    \n
      \n
    • Updated translatable strings
    • \n
    • Added missing template recommendation
    • \n
    • Alerting in debug mode when scripts are tampered with
    • \n
    • Fix for Hello Dolly being installed into a folder
    • \n
    • Removed translation column in POT edit mode
    • \n
    • Added setting to prevent ‘translating’ of POT files
    • \n
    • Enabled some linkable translations using wp_kses
    • \n
    • Bumped WordPress version to 5.4.1
    • \n
    \n

    2.3.3

    \n
      \n
    • Fixed fatal error when class not found
    • \n
    \n

    2.3.2

    \n
      \n
    • Removed login/email from default Last-Translator credit
    • \n
    • Bumped WP compatibility to 5.4
    • \n
    • Fixed PHP 7.4 deprecations
    • \n
    \n

    2.3.1

    \n
      \n
    • Default POT getter now looks in “lang” directory
    • \n
    • Not calling deprecated magic quotes functions under PHP 7.4
    • \n
    • Fixed issue with conflicting page hooks
    • \n
    • Ajax file uploads now enabled by default
    • \n
    • Removed legacy option migrations from 1.x branch
    • \n
    • Bumped WP compatibility to 5.2.4
    • \n
    \n

    2.3.0

    \n
      \n
    • Added experimental support for multipart uploads
    • \n
    • Added relocation tab for moving translation sets
    • \n
    • Creation of missing directories when writing new files
    • \n
    • Fixed duplicate file addition when iterating over symlink
    • \n
    • Bumped WP compatibility to 5.2.1
    • \n
    \n

    2.2.2

    \n
      \n
    • Security fixes as per exploit-db 46619
    • \n
    • Fixed old PHP version error in data files
    • \n
    • Bumped WP compatibility to 5.1.1
    • \n
    \n

    2.2.1

    \n
      \n
    • Fixed bug where plural tabs not displaying RTL
    • \n
    • Various improvements to PO parser incl. better charset handling
    • \n
    • Excluding node_modules and vendor directories by default
    • \n
    • Transients now have maximum lifespan of 10 days, refreshed after 24h
    • \n
    • Symlink fix for followed theme paths detected outside theme
    • \n
    • Deprecated config repository lookup
    • \n
    • Bumped WP compatibility to 5.1
    • \n
    \n

    2.2.0

    \n
      \n
    • Fix for empty language code when getting plural rules
    • \n
    • Added X-Loco-Version header to generated Gettext files
    • \n
    • Added sanity check for mbstring.func_overload madness
    • \n
    • Added “Assign template” link on missing template page
    • \n
    • Added JavaScript string extraction (experimental)
    • \n
    • Editor supports sprintf-js when javascript-format tag present
    • \n
    • Fix for duplicate comments when end punctuation differs
    • \n
    • Marking msgctxt more clearly in editor views
    • \n
    • Added loco_admin_shutdown action hook
    • \n
    • Bumped WP compatibility to 5.0 (beta)
    • \n
    \n

    2.1.5

    \n
      \n
    • Updated locale data
    • \n
    • Minor fix to file reference resolution
    • \n
    • Fixed windows paths with trailing backslash
    • \n
    • Fixed ssh-keys toggling issue
    • \n
    • Rejigged buffer handling during Ajax
    • \n
    • Bumped WP compatibility to 4.9.8
    • \n
    \n

    2.1.4

    \n
      \n
    • Bumped WP compatibility to 4.9.6
    • \n
    • Hooked in privacy policy suggestion
    • \n
    \n

    2.1.3

    \n
      \n
    • Added loco_locale_name filter and updated locale data
    • \n
    • Fixed editor column sorting to update as values change
    • \n
    • Supporting RTL text in editor preview rows
    • \n
    • Minor refactor of debug mode routing check
    • \n
    • Minor PO parser improvements
    • \n
    • Bumped WP compatibility to 4.9.5
    • \n
    \n

    2.1.2

    \n
      \n
    • Fixed undeclared property in admin hook
    • \n
    • Fixed incompatibility with older WordPress
    • \n
    • Fixed incorrect millisecond reporting in footer
    • \n
    • Removed locale progress column for en_US locale
    • \n
    • Tweaks to debugging and error logging
    • \n
    \n

    2.1.1

    \n
      \n
    • Setting Project-Id-Version on new POT files
    • \n
    • Added source view to quick links in file tables
    • \n
    • Supporting only WordPress style locale codes
    • \n
    • Editor screen tolerates missing PO headers
    • \n
    • Ajax debugging improvements for issue reporting
    • \n
    • Added loco_parse_locale action callback
    • \n
    \n

    2.1.0

    \n
      \n
    • Add fs_protect setting to avoid overwriting system files
    • \n
    • Fixed bug in connect dialogue where errors not redisplayed
    • \n
    • Minor improvements to inline notices
    • \n
    • Removed downgrade notice under version tab
    • \n
    • Fixed extraction bug where file header confused with comment
    • \n
    • Resolved some inconsistencies between PHP and JS utilities
    • \n
    • Added Restore tab with diff display
    • \n
    • Added loco_settings hook
    • \n
    • Prevented editor from changing PO document order
    • \n
    • Added default string sorting to extracted strings
    • \n
    • Added “Languages” section for grouping files by locale
    • \n
    • Fixed bug where translations loaded before user profile language set
    • \n
    • Added loco_locale_plurals filter for customising plural rules
    • \n
    • Allowing PO files to enforce their own Plural-Forms rules
    • \n
    • Added loco_allow_remote filter for debugging remote problems
    • \n
    • Updated plural forms from Unicode CLDR
    • \n
    • PHP extractor avoids repeated comments
    • \n
    • Bumped WP compatibility to 4.9.4
    • \n
    \n

    2.0.17

    \n
      \n
    • Unofficial languages showing in “Installed” dropdown
    • \n
    • Fixed extraction bug where comment confused with file header
    • \n
    • Fixed issue where src attributes requested from server during HTML strip
    • \n
    • Added loco_admin_init hook into ajax router for consistency
    • \n
    • Added warning on file info page when file is managed by WordPress
    • \n
    • Minor help link and layout tweaks
    • \n
    • Bumped WP compatibility to 4.9.1
    • \n
    \n

    2.0.16

    \n
      \n
    • File writer observes wp_is_file_mod_allowed
    • \n
    • Fixed progress bug in editor for locales with nplurals=1
    • \n
    • Made plural form categories translatable for editor UI
    • \n
    • Sync-from-source raises warning when files are skipped
    • \n
    • Added hack for extracting from .twig as per .php
    • \n
    • Added warning when child themes declare parent text domain
    • \n
    • Added option to control PO line wrapping
    • \n
    • Bumped WP compatibility to 4.8.2
    • \n
    \n

    2.0.15

    \n
      \n
    • Permanently removed legacy version 1.x
    • \n
    • Fixed bug where editor code view was not redrawn on resize
    • \n
    • Fixed bug where fuzzy flag caused format flag to be ignored
    • \n
    • Fixed bug where autoloader responded to very long class names
    • \n
    • Purging WP object cache when active plugin list changes
    • \n
    • Added experimental source word count into POT info tab
    • \n
    • Bumped WP compatibility to 4.8.1
    • \n
    \n

    2.0.14

    \n
      \n
    • Editor improvements inc. column sorting
    • \n
    • Added warnings that legacy version will be removed
    • \n
    • Added PO source view text filtering
    • \n
    • Added _fs_nonce for 4.7.5 compatibility
    • \n
    • Migrated to canonical text domain
    • \n
    • Removed wp class autoloading
    • \n
    \n

    2.0.13

    \n
      \n
    • CSS conflict fixes
    • \n
    • Added option for UTF-8 byte order mark
    • \n
    • Printf highlighting observes no-php-format flag
    • \n
    • Fixed issue with translator role losing “read” permission
    • \n
    \n

    2.0.12

    \n
      \n
    • Minor fix for root path configs
    • \n
    • Added alternative PHP extensions setting
    • \n
    • Bumped WP version to 4.7.3
    • \n
    • LoadHelper fix for core files
    • \n
    • Allow revoking of permissions from translator role
    • \n
    • Allow network admins to deny access to site admins
    • \n
    \n

    2.0.11

    \n
      \n
    • Extra debug logging and error diagnostics
    • \n
    • Forcefully clear output buffers before Ajax flush
    • \n
    • Bumped WordPress version to 4.7
    • \n
    • Experimental wildcard text domain support
    • \n
    \n

    2.0.10

    \n
      \n
    • Allows missing domain argument in plugin_locale filter
    • \n
    • Reverted editor changes that disabled readonly text
    • \n
    • Added invisibles and coding editor switches
    • \n
    • Added table filtering via text query
    • \n
    • Added Last-Translator user preference
    • \n
    \n

    2.0.9

    \n
      \n
    • Bumped minimum WordPress version to 4.1
    • \n
    • Some optimisation of transient caching
    • \n
    • Fixed hash table settings bug
    • \n
    \n

    2.0.8

    \n
      \n
    • Source refs fix for files in unknown subsets
    • \n
    • Downgrades PO formatting exceptions to PHP warnings
    • \n
    • Renamed function prefixes to avoid PHP 7 warnings
    • \n
    • Better support for php-format and no-php-format flag
    • \n
    • PO source and editor UI tweaks
    • \n
    • Localised strings and implemented in js
    • \n
    \n

    2.0.7

    \n
      \n
    • Fixed prototype.js conflict
    • \n
    • More Windows file path fixes
    • \n
    • Added loco_current_translator filter
    • \n
    • Fixed false positive in extra files test
    • \n
    \n

    2.0.6

    \n
      \n
    • PO wrapping bugfix
    • \n
    • Downgraded source code bugfix
    • \n
    • Tolerating headerless POT files
    • \n
    • Core bundle metadata tweaks
    • \n
    \n

    2.0.5

    \n
      \n
    • Deferred missing tokenizer warning
    • \n
    • Allows editing of files in unconfigured sets
    • \n
    • Added maximum PHP file size for string extraction
    • \n
    • Display of PHP fatal errors during Ajax
    • \n
    \n

    2.0.4

    \n
      \n
    • Reduced session failures to debug notices
    • \n
    • Added wp_roles support for WP < 4.3
    • \n
    • Fixed domain listener bugs
    • \n
    \n

    2.0.3

    \n
      \n
    • Added support for Windows servers
    • \n
    • Removed incomplete config warning on bundle overview
    • \n
    \n

    2.0.2

    \n
      \n
    • Fixed bug when absolute path used to get plugins
    • \n
    • Added loco_plugins_data filter
    • \n
    • Added theme Template Name header extraction
    • \n
    • Minor copy amends
    • \n
    \n

    2.0.1

    \n
      \n
    • Added help link in settings page
    • \n
    • Fixed opendir warnings in legacy code
    • \n
    • Catching session errors during init
    • \n
    • Removing meta row link when plugin not found
    • \n
    \n

    2.0.0

    \n
      \n
    • First release of completely rebuilt version 2
    • \n
    \n", "description": "

    Loco Translate provides in-browser editing of WordPress translation files and integration with automatic translation services.

    \n

    It also provides Gettext/localization tools for developers, such as extracting strings and generating templates.

    \n

    Features include:

    \n
      \n
    • Built-in translation editor within WordPress admin
    • \n
    • Integration with translation APIs including DeepL, Google, Lecto, Microsoft and OpenAI.
    • \n
    • Create and update language files directly in your theme or plugin
    • \n
    • Extraction of translatable strings from your source code
    • \n
    • Native MO file compilation without the need for Gettext on your system
    • \n
    • JSON (Jed) file compilation compatible with WordPress script localization
    • \n
    • Support for standard PO features including comments, references and plural forms
    • \n
    • PO source view with clickable source code references
    • \n
    • Protected language directory for saving custom translations
    • \n
    • Configurable PO file backups with diff and restore capability
    • \n
    • Built-in WordPress locale codes
    • \n
    \n

    Official Loco WordPress plugin by Tim Whitlock.
    \nFor more information please visit our plugin page.

    \n

    Keyboard shortcuts

    \n

    The PO file editor supports the following keyboard shortcuts for faster translating:

    \n
      \n
    • Done and Next: Ctrl ↵
    • \n
    • Next string: Ctrl
    • \n
    • Previous string: Ctrl
    • \n
    • Next untranslated: Shift Ctrl
    • \n
    • Previous untranslated: Shift Ctrl
    • \n
    • Copy from source text: Ctrl B
    • \n
    • Clear translation: Ctrl K
    • \n
    • Toggle Fuzzy: Ctrl U
    • \n
    • Save PO / compile MO: Ctrl S
    • \n
    • Toggle invisibles: Shift Ctrl I
    • \n
    • Suggest translation: Ctrl J
    • \n
    \n

    Mac users can use ⌘ Cmd instead of Ctrl.

    \n", "screenshots": "
    1. \"Translating

      Translating strings in the browser with the Loco PO Editor

    2. \"Showing

      Showing translation progress for theme language files

    3. \"PO

      PO source view with text filter and clickable file references

    4. \"Restore

      Restore tab showing PO diff view with revert function

    5. \"Showing

      Showing access to translations by installed language

    6. \"Suggestion

      Suggestion feature showing results from several providers

    ", "installation": "

    Basic usage:

    \n

    Translators: To translate a theme into your language, follow these steps:

    \n
      \n
    1. Create the protected languages directory at wp-content/languages/loco/themes
    2. \n
    3. Ensure this directory writeable by the web server
    4. \n
    5. Find your theme in the list at Loco Translate > Themes
    6. \n
    7. Click + New language and follow the on-screen prompts.
    8. \n
    \n

    Developers: To translate your own theme or plugin for distribution, follow these steps:

    \n
      \n
    1. Create a languages subdirectory in your bundle’s root directory
    2. \n
    3. Ensure this directory writeable by the web server
    4. \n
    5. Find the bundle at either Loco Translate > Themes or Loco Translate > Plugins
    6. \n
    7. Click + Create template and follow the on-screen prompts to extract your strings.
    8. \n
    9. Click + New language and follow the on-screen prompts to add your own translations.
    10. \n
    \n

    Installing manually:

    \n
      \n
    1. Unzip all files to the wp-content/plugins/loco-translate directory
    2. \n
    3. Log into WordPress admin and activate the ‘Loco Translate’ plugin through the ‘Plugins’ menu
    4. \n
    5. Go to Loco Translate > Home in the left-hand menu to start translating
    6. \n
    \n

    More information on using the plugin is available here.

    \n"}, "versions": {"1.2": "https://downloads.wordpress.org/plugin/loco-translate.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/loco-translate.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/loco-translate.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/loco-translate.1.5.zip", "1.0.0": "https://downloads.wordpress.org/plugin/loco-translate.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/loco-translate.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/loco-translate.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/loco-translate.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/loco-translate.1.1.3.zip", "1.2.1": "https://downloads.wordpress.org/plugin/loco-translate.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/loco-translate.1.2.2.zip", "1.3.1": "https://downloads.wordpress.org/plugin/loco-translate.1.3.1.zip", "1.4.1": "https://downloads.wordpress.org/plugin/loco-translate.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/loco-translate.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/loco-translate.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/loco-translate.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/loco-translate.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/loco-translate.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/loco-translate.1.4.7.zip", "1.5.1": "https://downloads.wordpress.org/plugin/loco-translate.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/loco-translate.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/loco-translate.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/loco-translate.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/loco-translate.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/loco-translate.1.5.6.zip", "2.0.0": "https://downloads.wordpress.org/plugin/loco-translate.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/loco-translate.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/loco-translate.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/loco-translate.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/loco-translate.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/loco-translate.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/loco-translate.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/loco-translate.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/loco-translate.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/loco-translate.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/loco-translate.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/loco-translate.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/loco-translate.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/loco-translate.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/loco-translate.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/loco-translate.2.1.5.zip", "2.2.0": "https://downloads.wordpress.org/plugin/loco-translate.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/loco-translate.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/loco-translate.2.2.2.zip", "2.3.0": "https://downloads.wordpress.org/plugin/loco-translate.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/loco-translate.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/loco-translate.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/loco-translate.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/loco-translate.2.3.4.zip", "2.4.0": "https://downloads.wordpress.org/plugin/loco-translate.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/loco-translate.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/loco-translate.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/loco-translate.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/loco-translate.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/loco-translate.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/plugin/loco-translate.2.4.6.zip", "2.5.0": "https://downloads.wordpress.org/plugin/loco-translate.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/loco-translate.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/loco-translate.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/loco-translate.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/loco-translate.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/loco-translate.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/loco-translate.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/loco-translate.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/loco-translate.2.5.8.zip", "2.6.0": "https://downloads.wordpress.org/plugin/loco-translate.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/loco-translate.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/loco-translate.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/loco-translate.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/loco-translate.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/loco-translate.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/loco-translate.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/loco-translate.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/loco-translate.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/loco-translate.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/plugin/loco-translate.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/loco-translate.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/loco-translate.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/loco-translate.2.7.3.zip", "2.8.0": "https://downloads.wordpress.org/plugin/loco-translate.2.8.0.zip", "trunk": "https://downloads.wordpress.org/plugin/loco-translate.zip", "2.0.10": "https://downloads.wordpress.org/plugin/loco-translate.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/loco-translate.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/loco-translate.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/plugin/loco-translate.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/plugin/loco-translate.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/plugin/loco-translate.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/plugin/loco-translate.2.0.16.zip", "2.0.17": "https://downloads.wordpress.org/plugin/loco-translate.2.0.17.zip", "2.6.10": "https://downloads.wordpress.org/plugin/loco-translate.2.6.10.zip", "2.6.11": "https://downloads.wordpress.org/plugin/loco-translate.2.6.11.zip", "2.6.12": "https://downloads.wordpress.org/plugin/loco-translate.2.6.12.zip", "2.6.13": "https://downloads.wordpress.org/plugin/loco-translate.2.6.13.zip", "2.6.14": "https://downloads.wordpress.org/plugin/loco-translate.2.6.14.zip"}, "downloaded": 32398019, "description": "

    Loco Translate provides in-browser editing of WordPress translation files and integration with automatic translation services.

    \n

    It also provides Gettext/localization tools for developers, such as extracting strings and generating templates.

    \n

    Features include:

    \n
      \n
    • Built-in translation editor within WordPress admin
    • \n
    • Integration with translation APIs including DeepL, Google, Lecto, Microsoft and OpenAI.
    • \n
    • Create and update language files directly in your theme or plugin
    • \n
    • Extraction of translatable strings from your source code
    • \n
    • Native MO file compilation without the need for Gettext on your system
    • \n
    • JSON (Jed) file compilation compatible with WordPress script localization
    • \n
    • Support for standard PO features including comments, references and plural forms
    • \n
    • PO source view with clickable source code references
    • \n
    • Protected language directory for saving custom translations
    • \n
    • Configurable PO file backups with diff and restore capability
    • \n
    • Built-in WordPress locale codes
    • \n
    \n

    Official Loco WordPress plugin by Tim Whitlock.
    \nFor more information please visit our plugin page.

    \n

    Keyboard shortcuts

    \n

    The PO file editor supports the following keyboard shortcuts for faster translating:

    \n
      \n
    • Done and Next: Ctrl ↵
    • \n
    • Next string: Ctrl
    • \n
    • Previous string: Ctrl
    • \n
    • Next untranslated: Shift Ctrl
    • \n
    • Previous untranslated: Shift Ctrl
    • \n
    • Copy from source text: Ctrl B
    • \n
    • Clear translation: Ctrl K
    • \n
    • Toggle Fuzzy: Ctrl U
    • \n
    • Save PO / compile MO: Ctrl S
    • \n
    • Toggle invisibles: Shift Ctrl I
    • \n
    • Suggest translation: Ctrl J
    • \n
    \n

    Mac users can use ⌘ Cmd instead of Ctrl.

    \n", "donate_link": "", "num_ratings": 443, "screenshots": {"1": {"src": "https://ps.w.org/loco-translate/assets/screenshot-1.png?rev=2310739", "caption": "Translating strings in the browser with the Loco PO Editor"}, "2": {"src": "https://ps.w.org/loco-translate/assets/screenshot-2.png?rev=1478713", "caption": "Showing translation progress for theme language files"}, "3": {"src": "https://ps.w.org/loco-translate/assets/screenshot-3.png?rev=1660312", "caption": "PO source view with text filter and clickable file references"}, "4": {"src": "https://ps.w.org/loco-translate/assets/screenshot-4.png?rev=1824083", "caption": "Restore tab showing PO diff view with revert function"}, "5": {"src": "https://ps.w.org/loco-translate/assets/screenshot-5.png?rev=1824083", "caption": "Showing access to translations by installed language"}, "6": {"src": "https://ps.w.org/loco-translate/assets/screenshot-6.png?rev=2354566", "caption": "Suggestion feature showing results from several providers"}}, "support_url": "https://wordpress.org/support/plugin/loco-translate/", "contributors": {"timwhitlock": {"avatar": "https://secure.gravatar.com/avatar/819e9cbcd4e21ce5fe1a4f50dddf153d5d0e9ead09190af36a6b262a82ef657c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/timwhitlock/", "display_name": "Tim W"}}, "last_updated": "2025-05-21 12:59pm GMT", "preview_link": "https://wordpress.org/plugins/loco-translate/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/loco-translate.2.8.0.zip", "author_profile": "https://profiles.wordpress.org/timwhitlock/", "business_model": false, "repository_url": "", "upgrade_notice": {"2.8.0": "
      \n
    • Various improvements and bug fixes
    • \n
    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f6c6-7312-89f4-319b96f212c9", "name": "Loco Translate", "slug": "loco-translate", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1747832340, "version": "2.8.0"}, "support_threads": 16, "requires_plugins": [], "short_description": "Translate WordPress plugins and themes directly in your browser. Versatile PO file editor with integrated AI translation providers.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 5}'); -INSERT INTO public.plugins VALUES ('019a30c1-660c-722b-ae00-c52b516a3b2d', 'loginizer', 'Loginizer', 'Loginizer is a WordPress security plugin which helps you fight against bruteforce attacks.', '

    Loginizer is a WordPress plugin which helps you fight against bruteforce attack by blocking login for the IP after it reaches maximum retries allowed. You can blacklist or whitelist IPs for login using Loginizer. You can use various other features like Two Factor Auth, reCAPTCHA, PasswordLess Login, etc. to improve security of your website.

    -

    Loginizer is actively used by more than 1000000+ WordPress websites.

    -

    You can find our official documentation at https://loginizer.com/docs. We are also active in our community support forums on wordpress.org if you are one of our free users. Our Premium Support Ticket System is at https://loginizer.deskuss.com

    -

    Free Features :

    -
      -
    • Brute force protection. IPs trying to brute force your website will be blocked for 15 minutes after 3 failed login attempts. After multiple lockouts the IP is blocked for 24 hours. This is the default configuration and can be changed from Loginizer -> Brute force page in WordPress admin panel.
    • -
    • Failed login attempts logs.
    • -
    • Blacklist IPs
    • -
    • Whitelist IPs
    • -
    • Custom error messages on failed login.
    • -
    • Permission check for important files and folders.
    • -
    • Allow only Trusted IP.
    • -
    • Blocked Screen in place of the Login page.
    • -
    • Email Notification on successful login.
    • -
    • Let users login with LinkedIn
    • -
    -

    Get Support and Pro Features

    -

    Get professional support from our experts and pro features to take your site’s security to the next level with Loginizer-Security.

    -

    Pro Features :

    -
      -
    • MD5 Checksum – of Core WordPress Files. The admin can check and ignore files as well.
    • -
    • PasswordLess Login – At the time of Login, the username / email address will be asked and an email will be sent to the email address of that account with a temporary link to login.
    • -
    • Two Factor Auth via Email – On login, an email will be sent to the email address of that account with a temporary 6 digit code to complete the login.
    • -
    • Two Factor Auth via App – The user can configure the account with a 2FA App like Google Authenticator, Authy, etc.
    • -
    • Login Challenge Question – The user can setup a Challenge Question and Answer as an additional security layer. After Login, the user will need to answer the question to complete the login.
    • -
    • reCAPTCHA – Google’s reCAPTCHA v3/v2, Cloudflare Turnstile, hCAPTCHA can be configured for the Login screen, Comments Section, Registration Form, etc. to prevent automated brute force attacks. Supports WooCommerce as well.
    • -
    • Rename Login Page – The Admin can rename the login URL (slug) to something different from wp-login.php to prevent automated brute force attacks.
    • -
    • Rename WP-Admin URL – The Admin area in WordPress is accessed via wp-admin. With loginizer you can change it to anything e.g. site-admin
    • -
    • CSRF Protection – This helps in preventing CSRF attacks as it updates the admin URL with a session string which makes it difficult and nearly impossible for the attacker to predict the URL.
    • -
    • Rename Login with Secrecy – If set, then all Login URL’s will still point to wp-login.php and users will have to access the New Login Slug by typing it in the browser.
    • -
    • Disable XML-RPC – An option to simply disable XML-RPC in WordPress. Most of the WordPress users don’t need XML-RPC and can disable it to prevent automated brute force attacks.
    • -
    • Rename XML-RPC – The Admin can rename the XML-RPC to something different from xmlrpc.php to prevent automated brute force attacks.
    • -
    • Username Auto Blacklist – Attackers generally use common usernames like admin, administrator, or variations of your domain name / business name. You can specify such username here and Loginizer will auto-blacklist the IP Address(s) of clients who try to use such username(s).
    • -
    • New Registration Domain Blacklist – If you would like to ban new registrations from a particular domain, you can use this utility to do so.
    • -
    • Change the Admin Username – The Admin can rename the admin username to something more difficult.
    • -
    • Auto Blacklist IPs – IPs will be auto blacklisted, if certain usernames saved by the Admin are used to login by malicious bots / users.
    • -
    • Disable Pingbacks – Simple way to disable PingBacks.
    • -
    • SSO – Single Sign-on, let any user access to your WordPress Dashboard without the need to share username or password.
    • -
    • Limit Concurrent Logins – It prevents user to login from different devices concurrently, you can define how many devices you want to allow, and how you want to restrict the user when concurrent limit is reached.
    • -
    • Social Login – Users can login or register with their Google, Github, Facebook, X (Twitter), Discord, Twitch, LinkedIn, Microsoft with support for WooCommerce and Ultimate Member.
    • -
    • Key Less Social Login – Use Loginizer’s Social Auth for easy key less Social login configuration, now supports Google, GitHub, X, LinkedIn more to be added later
    • -
    -

    Features in Loginizer include:

    -
      -
    • Blocks IP after maximum retries allowed
    • -
    • Extended Lockout after maximum lockouts allowed
    • -
    • Email notification to admin after max lockouts
    • -
    • Blacklist IP/IP range
    • -
    • Whitelist IP/IP range
    • -
    • Check logs of failed attempts
    • -
    • Create IP ranges
    • -
    • Delete IP ranges
    • -
    • Licensed under LGPLv2.1
    • -
    • Safe & Secure
    • -
    -', '2.0.3', 'Softaculous', '3.0', '5.5', '6.8.3', 'https://downloads.wordpress.org/plugin/loginizer.2.0.3.zip', '2016-01-27 00:00:00+00', '2025-09-22 09:44:00+00', 'https://profiles.wordpress.org/softaculous/', 96, 1011, 3, 1, 1000000, 28276615, 'https://wordpress.org/extend/plugins/loginizer/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/loginizer/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Loginizer", "slug": "loginizer", "tags": {"admin": "admin", "login": "login", "access": "access", "security": "security", "loginizer": "Loginizer"}, "added": "2016-01-27", "icons": {"1x": "https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093", "2x": "https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093"}, "author": "Softaculous", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/loginizer/assets/banner-772x250.png?rev=3131676", "high": "https://ps.w.org/loginizer/assets/banner-1544x500.png?rev=3131676"}, "ratings": {"1": 26, "2": 4, "3": 12, "4": 27, "5": 942}, "version": "2.0.3", "homepage": "https://wordpress.org/extend/plugins/loginizer/", "requires": "3.0", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Your site secure!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy addonisdl on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is the plugin that you need to keep your site access away from bad people.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic Security Plugin for Limiting Logins

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy evagabond on September 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very simple, powerful and easy to use plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Create a new review

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy netequad on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Create a new review

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mbaqirparvi on September 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin works perfectly as expected. Easy to use, lightweight, and very helpful for my website. Highly recommended!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works well

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rfreitaz on July 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Help to monitor logins attempts very well

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Well done!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy whitecsolutions on July 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    To say the least im quite impressed. This little plugin is packed with features and does the trick keeping my websites safe and secure. Good job!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good job$

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy zidstudio on July 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Loginizer Great Product

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Gary Alderson (garyalderson) on July 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My Hosting company requested that I find a replacement for
    AIOS (All-in-One-Security) as it has caused them problems.

    \n\n\n\n

    Amoung the products out there I first tried LLAR - Limit Login
    Access Reloaded. It was very comprehensive and its Premium Plus
    version includes Country Blocking. Unfortunately their accounting
    and licencing got very confused and could not include websites
    under the \"domains\" where they belonged. Technically it is an
    excellent product and would probably be better to purchase
    their Agency licence to avoid that confusion.

    \n\n\n\n

    Second, a review that I read directed me to also look at Loginizer.
    Although they address the same issues they do it from a different
    standpoint. Loginizer does most of what I need in their free version.
    The part that is missing is Country Blocking. However that is
    available through another plugin which I have run for many years,
    Login IP & Country Restriction by Iulia Cazan.

    \n\n\n\n

    We all have different needs, so I encourage you to try both
    products.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best ever - the last news made me so so happy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Adrian Negura (adrian87n) on June 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Im so so happy And proud to use Loginizer !

    \n\n\n\n

    Now that Loginizer helped me with this \"

    \n\n\n\n

    EnableUse Loginizer''s Social Auth New

    \n\n\n\n

    Uses Loginizer''s keys — no need to add your own.

    \n\n\n\n

    \" I LOVE LOGINIZER !!!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great insight of security vulnerabilities.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ádám Juhász (jadaml) on May 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It helped me realize, how is my blog being targeted by brute-force attacks, and see how these attempts diminished as I resolve the vulnerability.

    \n
    \n
    \n", "changelog": "

    2.0.3

    \n
      \n
    • [Improvement Pro] 2FA via Email now supports HTML content type for the content of the email.
    • \n
    • [Improvement Pro] Added an option to choose the location of Captcha on WooCommerce checkout page.
    • \n
    • [Improvement Pro] Trunstile captcha now supports Flexible size.
    • \n
    • [Bug-Fix Pro] There was an issue with TwitchTV social login, that has been fixed.
    • \n
    • [Bug-Fix] There was an issue with redirection if redirect_to was set on login, this has been fixed.
    • \n
    • [Bug-Fix] There was a notice with a Promo notice that has been fixed.
    • \n
    \n

    2.0.2

    \n
      \n
    • [Improvement Pro] reCAPTCHA v3 now supports score based threshold, making the v3 reCAPTCHA even more effective in blocking bots.
    • \n
    • [Task Pro] Limit concurrent attempts is now compatible with miniOrange Social login plugin.
    • \n
    • [Bug Fix Pro] Social Login now works with Limit concurrent attempts.
    • \n
    • [Bug Fix] There was an issue with social login where in some cases after Social login verification redirection back to the host site was getting blocked by the server’s firewall, this has been fixed.
    • \n
    \n

    2.0.1

    \n
      \n
    • [Feature Pro] Ultimate Member is now compatible with Loginizer’s Bruteforce, Social Login, Captcha and Two-Factor Auth.
    • \n
    • [Feature Pro] Social Login using Loginizer’s Login Keys, making Social Login single click setup.
    • \n
    • [Feature Pro] Support for Microsoft Social Login.
    • \n
    • [Bug Fix] [Pro] There was an issue with Hide WP-Admin in rename login, that has been fixed.
    • \n
    • [Bug Fix] [Pro] There was an issue with refresh button of 2FA App QR Code when it was displays on a page other than WP-Admin, that has been fixed.
    • \n
    • [Bug Fix] [Pro] Login Notification was not working with 2FA login this has been fixed.
    • \n
    • [Task] Social Login restructured and refactored.
    • \n
    \n

    2.0.0

    \n
      \n
    • [Task] Tested with WordPress 6.8.
    • \n
    • [Bug-Fix] A minor issue has been fixed which was reported by HedgeByte Security.
    • \n
    \n

    1.9.9

    \n
      \n
    • [Task] There was a warning on PHP 8.2, that has been fixed.
    • \n
    • [Bug-Fix] In some cases the session in Social Login was breaking that has been fixed.
    • \n
    • [Bug-Fix Pro] For some page builders, changing the login slug caused the wp-login.php 404 error page to not load shortcodes properly. This issue has now been fixed.
    • \n
    \n

    1.9.8

    \n
      \n
    • [Feature Pro] Now you can hide the wp-admin totally from non logged in users.
    • \n
    • [Improvement Pro] Option to Disable Passwordless login for specific login page.
    • \n
    • [Task] There was a Typo in X Social Login button which has been fixed and X buttons won’t have Formerly Twitter text.
    • \n
    • [Bug Fix Pro] There was an issue with Passwordless login for WooCommerce login page, that has been fixed.
    • \n
    \n

    1.9.7

    \n
      \n
    • [Task] A notice has been tweaked to prevent confusion among users.
    • \n
    \n

    1.9.6

    \n
      \n
    • [Task] Removed wpCentral Promo from Loginizer.
    • \n
    \n

    1.9.5

    \n
      \n
    • [Task] A few typos in description of features have been fixed.
    • \n
    \n

    1.9.4

    \n
      \n
    • [Task] Tested with WordPress 6.7, fixed translation Notice.
    • \n
    • [Bug-Fix] HOTP and Base32 caused conflict with some plugins that has been fixed.
    • \n
    \n

    1.9.3

    \n
      \n
    • [Security] There was a security issue in the Pro version of the plugin which has been fixed, was reported by wesley (wcraft)[Wordfence]
    • \n
    • [Task] Improved Compatibility with Softaculous Plugin.
    • \n
    \n

    1.9.2

    \n
      \n
    • [Task] Improved license handling.
    • \n
    \n

    1.9.1

    \n
      \n
    • [Bug-Fix] Social Login was not working on WooCommerce or registration page, that has been fixed.
    • \n
    • [Bug-Fix] A PHP warning has been fixed.
    • \n
    \n

    1.9.0

    \n
      \n
    • [Bug-Fix] For some users there was an issue in updating that has been fixed.
    • \n
    \n

    1.8.9

    \n
      \n
    • [Task] Structural changes.
    • \n
    • [Task] Tested with WordPress 6.6.
    • \n
    \n

    1.8.8

    \n
      \n
    • [Bug-Fix] Verison in one file was not updated, this has been fixed.
    • \n
    \n

    1.8.7

    \n
      \n
    • [Feature] Social Login: Now you can let the users login through LinkedIn Login.
    • \n
    • [Feature] Send Login Notification as HTML email.
    • \n
    • [Pro Feature] Supports social login with Google, GitHub, Facebook, X(Formerly Twitter) and more Login Providers.
    • \n
    \n

    1.8.6

    \n
      \n
    • [Bug-Fix] There was an issue with Login Notification body and subject, it was adding (slashes) if “(double-quotes) where being used. This has been fixed.
    • \n
    • [Task] Removal of unwanted code.
    • \n
    \n

    1.8.5

    \n
      \n
    • [Feature] Added Option to disable Login notification for whitelisted IPs.
    • \n
    • [Improvement] We have added variables for custom subject in Login notification.
    • \n
    • [Bug-Fix] Now the time shown in the Login Notification email, will respect the timezone set in the WordPress settings.
    • \n
    • [Bug-Fix] Error notice when 2FA fails had some CSS issue which has been fixed.
    • \n
    • [Task] We have remove unwanted code in reCAPTCHA.
    • \n
    \n

    1.8.4

    \n
      \n
    • [Feature] Block Page, now instead of showing error on the Login page of user being blacklisted, you can just show a page with error, reducing the resource being used to show the error.
    • \n
    • [Feature] Email notification on successful login and you can enforce this on your users too.
    • \n
    • [Pro Feature] Added Cloudflare Turnstile, and hCaptcha.
    • \n
    • [Task] Tested with WordPress 6.5.
    • \n
    \n

    1.8.3

    \n
      \n
    • [Task] We have removed unwanted code.
    • \n
    \n

    1.8.2

    \n
      \n
    • [Task] Tested on WordPress 6.4.
    • \n
    • [Improvement] Now SSO can live for multiple Login attempts, default being 1 and maximum is 15 Login access.
    • \n
    • [Imrpovement] Now SSO can live longer for upto 2 days.
    • \n
    • [Bug-Fixes] A few Warning related to PHP 8.2 has been fixed
    • \n
    \n

    1.8.1

    \n

    *[Bug-Fix] There was an issue while checking checksum, if the WordPress install was in en_US but the language was set to some other languages from the settings, then the checksum was comparing the checksums from the language selected in WordPress settings which is now always the language of the install, this has been fixed.

    \n

    1.8.0

    \n
      \n
    • [Feature][Pro] We have added Single Sign-on for you to create temporary login to share to let other login to your account without sharing password.
    • \n
    • [Refactor] We have reduced the amount of code that was being loaded when a login attempt was made by around 150KB.
    • \n
    • [Refactor] Screenshots of Loginizer were included in the plugin, we have shifted that to assets of WordPress.org, reducing the overall size of plugin by more than 100KB.
    • \n
    \n

    1.7.9

    \n
      \n
    • [Bug-Fix] Users were getting PHP notice in init.php file that has been fixed.
    • \n
    • [Bug-Fix] Math cookie has been set as secure now.
    • \n
    • [Security] We were sanitizing an output in place of escaping it, that has been fixed [Reported by Erwan Le Rousseau from WPScan]
    • \n
    \n

    1.7.8

    \n
      \n
    • [Task] Tested with WordPress 6.2
    • \n
    • [Feature] [Pro] Limit Concurrent user login, you can either block login attempt or revoke when limit of concurrent user is reached.
    • \n
    • [Feature] Login attempts stats chart on Loginizer Dashboard.
    • \n
    \n

    1.7.7

    \n
      \n
    • [Feature] Ability to allow only Whitelisted IP’s to be able to login with Trusted IP’s.
    • \n
    • [Feature] [Pro] Option to add custom redirect on 2FA Login based on user role.
    • \n
    • [Bug-Fix] [Pro] User’s were getting redirected to WP Admin when logging in from Checkout page in Passwordless and 2FA options that has been fixed.
    • \n
    • [Bug-Fix] Some users were getting PHP Warnings that has been fixed.
    • \n
    \n

    1.7.6

    \n
      \n
    • [Security] Minor security issues reported by patchstack have been fixed with in 24 hours of reporting.
    • \n
    • [Bug-Fix] For some themes the Maths capatch input was invisible that has been fixed.
    • \n
    \n

    1.7.5

    \n
      \n
    • [Task] Tested compatibility with WordPress 6.1
    • \n
    • [Bug Fix] There was an issue with sanitizing URL that has been fixed.
    • \n
    \n

    1.7.4

    \n
      \n
    • [Feature] CSRF Protection adds a unique session key in your admin URL when you login to it, which adds another layer of security to your WordPress website as it makes it difficult to predict the URL hence making it difficult and nearly impossible to do CSRF attacks on your WordPress admin panel.
    • \n
    • [Task] 2FA Support for MasterStudy Custom Login
    • \n
    • [Bug Fix] Some users were facing an error when using 2FA App verification that has been fixed.
    • \n
    \n

    1.7.3

    \n
      \n
    • [Bug Fix] Added validation not to allow values less than 0 for all Brute Force admin settings.
    • \n
    \n

    1.7.2

    \n
      \n
    • [Improvement] [Pro] Allowed HTML characters in Passwordless email.
    • \n
    • [Bug Fix] Improved performance on sites running Loginizer with WooCommerce.
    • \n
    • [Bug Fix] Added validation not to allow values less than 0 in Brute Force admin settings.
    • \n
    • [Bug Fix] Some language strings were hardcoded in English and could not be translated. This is fixed and all strings can now be translated.
    • \n
    • [Bug Fix] Resolved PHP Warnings and Notices on latest PHP versions.
    • \n
    \n

    1.7.1

    \n
      \n
    • [Improvement] [Pro] Added error message to not allow using same slug for wp-login.php and wp-admin as it causes conflict.
    • \n
    • [Improvement] [Pro] Added exception for readme.html, license.txt and wp-config-sample.php while checking the checksum to avoid false alarm about checksum mismatch.
    • \n
    • [Bug Fix] [Pro] In WordPress Multisite, on changing the admin username the super admins list was not updated. This is fixed now.
    • \n
    • [Task] Compatibility with WordPress 6.0
    • \n
    \n

    1.7.0

    \n
      \n
    • Compatible with WordPress 5.9
    • \n
    • [Feature] [Pro] Added option to choose recaptcha.net instead of google.com for countries that do not support google
    • \n
    • [Bug Fix] [Pro] Fix to email the correct unblock time when an IP is blocked for extended hours.
    • \n
    \n

    1.6.9

    \n
      \n
    • [Bug Fix] [Pro] Fix to not show Loginizer 2FA Security Settings in Edit Account page in WooCommerce Customer area. It will be shown in Security (registered by Loginizer) tab instead.
    • \n
    \n

    1.6.8

    \n
      \n
    • [Feature] Added option to export failed login attempts to CSV file.
    • \n
    • [Improvement] Added option to send failed login notifications to a custom email.
    • \n
    • [Improvement] [Pro] Added support for 2FA for WooCommerce customers
    • \n
    • [Bug Fix] [Pro] On WooCommerce customer login page the password field was not hidden when Passwordless login was enabled in Loginizer.
    • \n
    • [Bug Fix] [Pro] Autofill enabled in the browser caused the OTP field on 2FA login to be prefilled.
    • \n
    \n

    1.6.7

    \n
      \n
    • [Feature] Added Bulk Export/Import Blacklist and Whitelist IPs via CSV.
    • \n
    • [Improvement] Added option to Blacklist selected IPs from Failed Login Attempts Logs.
    • \n
    • [Improvement] Added external link in Brute Force logs for IP information of the IPs attempting brute force.
    • \n
    • [Improvement] [Pro] Added Loginizer 2FA status column on Users list page to show 2FA preferences selected by users.
    • \n
    • [Improvement] [Pro] Added Show/Hide button for OTP field on 2FA login page.
    • \n
    • [Bug Fix] [Pro] Two Factor Authentication lead to 502 Bad Gateway error on WP Engine instances. This is resolved now.
    • \n
    \n

    1.6.6

    \n
      \n
    • [Improvement] For new installs, the loginizer_logs table will now use the server default MySQL Engine.
    • \n
    • [Improvement] For the login attempts blocked by Loginizer, some other Activity Logs plugin still reported such blocked attempt as a failed login attempt.
    • \n
    • [Bug Fix] In rare cases when the username received in failed login attempt was blank, Loginizer failed to save such requests in the failed login logs table. This is fixed now.
    • \n
    \n

    1.6.5

    \n
      \n
    • [Bug Fix] After Interim Login due to session timeout, the popup for login was not closed. This is fixed now.
    • \n
    • [Bug Fix] reCAPTCHA was not working on registration page with BuddyPress plugin. This is fixed now.
    • \n
    \n

    1.6.4

    \n

    This version includes a security fix and we recommend all users to upgrade to 1.6.4 or higher immediately.

    \n
      \n
    • \n

      [Security Fix] : A properly crafted username used to login could lead to SQL injection. This has been fixed by using the prepare function in PHP which prepares the SQL query for safe execution.

      \n
    • \n
    • \n

      [Security Fix] : If the IP HTTP header was modified to have a null byte it could lead to stored XSS. This has been fixed by properly sanitizing the IP HTTP header before using the same.

      \n
    • \n
    \n

    1.6.3

    \n
      \n
    • [Fix] Fixed a PHP Notice that was caused by a change released yesterday.
    • \n
    \n

    1.6.2

    \n
      \n
    • [Feature] Added option to send Password Less Login email as HTML.
    • \n
    • [Fix] When reCAPTCHA was disabled on Woocommerce checkout page, Loginizer reported captcha error if a user tried to register on checkout page. This is fixed now.
    • \n
    • [Fix] The email sent to admin for brute force login attempts will now contain the site url as well.
    • \n
    • [Fix] Fixed PHP Notice on Two Factor Authentication page.
    • \n
    \n

    1.6.1

    \n
      \n
    • [Fix] The captcha on Registration form when using WooCommerce was not being rendered if the “WooCommerce Checkout” captcha setting was disabled in Loginizer. This is fixed now and this captcha can be disabled with “Registration Form” captcha setting in Loginizer.
    • \n
    • [Fix] Minor checkbox pre-filling UI fix on Two Factor Authentication page.
    • \n
    \n

    1.6.0

    \n
      \n
    • [Feature] Admin can white list an IP or an IP range for Two Factor Authentication.
    • \n
    • [Fix] If the plugins or themes which are included in the default WordPress package were not updated, the Checksum reported that the files for such plugins and themes did not matched. This is fixed now.
    • \n
    \n

    1.5.9

    \n
      \n
    • [Task] Admins can now customize email template for 2FA OTP via email.
    • \n
    • [Task] Admins can now customize the 2FA messages on login screen.
    • \n
    • [Fix] Changed the OTP via App field on login page to password type.
    • \n
    \n

    1.5.8

    \n
      \n
    • [Task] Permission for / folder was suggested as 0755 and 0750 permission which is secure was reported as insecure. This is fixed now.
    • \n
    • [Fix] Prevent PHP Deprecated Warning on plugin upgrade page on servers running PHP 7.3+
    • \n
    \n

    1.5.7

    \n
      \n
    • [Fix] Prevent PHP Notice on 1st failed login attempt from an IP.
    • \n
    \n

    1.5.6

    \n
      \n
    • [Task] Admins can now subscribe to our newsletter if they decide to opt-in.
    • \n
    \n

    1.5.5

    \n
      \n
    • [Bug Fix] Remember me during login was not working with 2FA features. This is fixed.
    • \n
    • [Task] Loginizer is now supported for translation via WordPress.
    • \n
    • [Task] Added option to fully customize the Lockout error message.
    • \n
    \n

    1.5.4

    \n
      \n
    • [Task] Added option to customize Lockout Error message.
    • \n
    \n

    1.5.3

    \n
      \n
    • [Task] Compatible with WordPress 5.5
    • \n
    • [Bug Fix] Due to a conflict with some plugin the upgrade for Loginizer Premium version did not work. This is fixed.
    • \n
    \n

    1.5.2

    \n
      \n
    • [Task] Some strings were not available in translations. They can now be translated.
    • \n
    \n

    1.5.1

    \n
      \n
    • [Task] Allowed to change the username of any administrator account. Previously it was supported only for user id 1
    • \n
    • [Bug Fix] Fixed some lines that generated PHP notice
    • \n
    \n

    1.5.0

    \n
      \n
    • [Task] Admins can now customize “attempt(s) left” error message.
    • \n
    \n

    1.4.9

    \n
      \n
    • [Bug Fix] Prevent brute force on 2FA pages.
    • \n
    \n

    1.4.8

    \n
      \n
    • [Premium Feature] Added Google reCAPTCHA v3 and v2 invisible.
    • \n
    \n

    1.4.7

    \n
      \n
    • [Security Fix] Our team internally conducted a security audit and have fixed couple of security issues. We recommend all users to upgrade to the latest version asap.
    • \n
    \n

    1.4.6

    \n
      \n
    • [Task] Added Timezone offset in the Brute Force attempts list to get the exact time of the failed login attempt.
    • \n
    • [Bug Fix] For HTTP_X_FORWARDED_FOR if the value had multiple IPs including proxied IPs, the user IP detection failed. This is fixed.
    • \n
    • [Bug Fix] Undefined variable was used in the title on the dashboard page. This is fixed.
    • \n
    \n

    1.4.5

    \n
      \n
    • [Announcement] Loginizer has joined forces with Softaculous team.
    • \n
    • [Task] Added OTP validity time in the email sent for OTP for login.
    • \n
    • [Bug Fix] In the premium version the Math Captcha used to fail in some conditions. This is fixed.
    • \n
    \n

    1.4.4

    \n
      \n
    • [Task] Made Loginizer compatible with PHP 7.4
    • \n
    • [Bug Fix] The password field was not hidden in some themes for PasswordLess Login. This is fixed.
    • \n
    \n

    1.4.3

    \n
      \n
    • [Bug Fix] At the time of login if recaptcha or 2FA using OTP was enabled and if you check mark on “Remember me”, the login used to go to an invalid redirect URL and did not load anything. This has been fixed now.
    • \n
    \n

    1.4.2

    \n
      \n
    • [Task] Tested up to: WordPress 5.2.0
    • \n
    • [Bug Fix] Placement of Captcha corrected for WooCommerce at the time of checkout for end users.
    • \n
    • [Bug Fix] Checksum check shall now skip for the files which are present in default WordPress package and does not exist in the installation like deleted theme(s)/plugin(s).
    • \n
    • [Bug Fix] Grammar correction
    • \n
    \n

    1.4.1

    \n
      \n
    • [Task] Tested up to: WordPress 5.0.2
    • \n
    • [Task] Refresh license will throw an error if the response received from our server is invalid
    • \n
    • [Bug Fix] The OTP input box (with respect to 2FA via SMS) was empty if the user was freshly registered and did not login at all. This is fixed.
    • \n
    \n

    1.4.0

    \n
      \n
    • [Feature] New Registration Domain Blacklist – If you would like to ban new registrations from a particular domain, you can use this utility to do so.
    • \n
    • [Feature] Made Loginizer Security for BuddyPress compatibility.
    • \n
    • [Task] Added a method to reset wp-admin rename settings if you get locked out.
    • \n
    • [Bug Fix] There is an XSS bug introduced in version 1.3.8. This is fixed. Please upgrade ASAP.
    • \n
    • [Bug Fix] In the user 2FA security wizard, the default selected option was wrongly shown when the user had not set any preference for 2FA. This is fixed.
    • \n
    \n

    1.3.9

    \n
      \n
    • [Feature] Added an option to Enable / Disable Brute Force checks.
    • \n
    • [Feature] Added the feature to log the URL of the page from which the brute force attempt is being made.
    • \n
    • [Bug Fix] Blanking the login slug used to show the value after submission. This is fixed.
    • \n
    • [Bug Fix] Allowed HTML chars in wp_admin_msg for renaming WP-ADMIN.
    • \n
    \n

    1.3.8

    \n
      \n
    • [Feature] Added Roles selection for Two Factor Authentication. The Admin can now enable 2FA for specific roles.
    • \n
    • [Feature] Added a Tester for WP-Admin Slug Renaming feature. Now you can test the new slug before saving it.
    • \n
    • [Feature] Added option to customize the Passwordless email being sent to the user.
    • \n
    • [Feature] Added a custom WP-Admin restriction message if wp-admin is restricted.
    • \n
    • [Feature] Added an option to Delete the entire Blacklist / Whitelist IP Ranges.
    • \n
    • [Feature] Custom IP Header added as an option for detecting the IP as per the Proxy settings of a server.
    • \n
    • [Task] Added an option to clear reCAPTCHA settings.
    • \n
    • [Task] Added Debugger in Updater
    • \n
    • [Task] Updater will show “Install License Key to check for Updates”
    • \n
    • [Bug Fix] In WooCommerce the number of login retries left was not being shown. This is fixed.
    • \n
    \n

    1.3.7

    \n
      \n
    • [Bug Fix] Blacklist and Whitelist IPs were not being deleted. This is fixed.
    • \n
    \n

    1.3.6

    \n
      \n
    • [Feature] Pagination added to the Blacklist and Whitelist IPs
    • \n
    • [Bug Fix] There used to be a login issue over SSL when wp-admin area is renamed. This is fixed.
    • \n
    • [Bug Fix] SQL Injection fix for X-Forwarded-For. This is fixed. Vulnerability was found by Jonas Lejon of WPScans.com
    • \n
    • [Bug Fix] There was a missing referrer check in Blacklist and Whitelist IP Wizard. This is fixed.
    • \n
    \n

    1.3.5

    \n
      \n
    • [Feature] Added a simple Math Captcha to show Maths Questions, if someone doesn’t want to use Google Captcha
    • \n
    • [Feature] Added a wizard for admins to set their own language strings for Brute Force messages
    • \n
    • [Bug Fix] In WooCommerce the Lost Password, Reset Password and Comment Form captcha verification failed. This is fixed.
    • \n
    • [Bug Fix] Hide Captcha for logged in users was not working. This is fixed.
    • \n
    • [Bug Fix] Twitter box shown in Loginizer was not accessed over HTTPS.
    • \n
    \n

    1.3.4

    \n
      \n
    • [Bug Fix] Fixed the BigInteger Class for PHP 7 compatibility.
    • \n
    \n

    1.3.3

    \n
      \n
    • [Feature] IPv6 support has been added.
    • \n
    • [Feature] The last attempted username will now be shown in the Login Logs.
    • \n
    • [Bug Fix] If the login page had been renamed, and wp-login.php was accessed over HTTPS, the login screen was shown instead of 404 not found. This is now fixed.
    • \n
    • [Bug Fix] If the user had used a “/” in the rename login slug, the new slug would not work without the “/” in the URL. This is now fixed.
    • \n
    • [Bug Fix] The license key could get reset in some cases. This also caused plugin updates to fail. This is now fixed.
    • \n
    • [Bug Fix] Wild Cards “*” in the Username Auto Blacklist did not work. This is now fixed.
    • \n
    • [Bug Fix] The documentation in the plugin was pointing to a wrong link. This is now fixed.
    • \n
    \n

    1.3.2

    \n
      \n
    • [Feature] Rename the wp-admin access URL is now possible with Loginizer
    • \n
    • [Feature] WooCommerce support has been improved for reCAPTCHA
    • \n
    • [Feature] Loginizer will now show a Notification to the Enduser to setup the preferred 2FA settings
    • \n
    • [Feature] Added option to choose between REMOTE_ADDR, HTTP_CLIENT_IP and HTTP_X_FORWARDED for websites behind a proxy
    • \n
    • [Task] Multiple reCAPTHCA on a single page is now supported
    • \n
    • [Task] Added a link to Google’s reCAPTCHA website for easy access in our reCAPTCHA wizard
    • \n
    \n

    1.3.1

    \n
      \n
    • [Feature] Admin’s can now remove a user’s Two Factor Authentication if needed
    • \n
    • [Feature] Added an option to change the Admin Username
    • \n
    • [Feature] Auto Blacklist IPs if certain usernames saved by the Admin are used to login by malicious bots / users
    • \n
    • [Feature] The Login attempt logs will now be shown as per the last attempt TIME and in Descending Order
    • \n
    • [Feature] Added an option to Reset the Login attempts for all or specific IPs
    • \n
    \n

    1.3.0

    \n
      \n
    • [Feature] Added MD5 File Checksum feature. If any core files are changed, Loginizer will log the differences and notify the Admin
    • \n
    • [Feature] Added an option to make Email OTP as the default Two Factor Auth when a user has not set the OTP method of their choice
    • \n
    • [Feature] Added WooCommerce support for Captcha forms
    • \n
    • [Feature] Added pagination in the Brute Force Logs Wizard
    • \n
    • [Bug Fix] Disabling and Re-Enabling Loginizer caused an SQL error
    • \n
    \n

    1.2.0

    \n
      \n
    • [Feature] Rename Login with Secrecy : If set, then all Login URL’s will still point to wp-login.php and users will have to access the New Login Slug by typing it in the browser.
    • \n
    • [Task] The brute force logs will now be sorted as per the time of failed login attempts
    • \n
    • [Bug Fix] Dashboard showed wrong permissions if wp-content path had been changed
    • \n
    • [Bug Fix] Added Directory path to include files which caused issues with some plugins
    • \n
    \n

    1.1.1

    \n
      \n
    • [Bug Fix] Added ABSPATH instead of get_home_path()
    • \n
    \n

    1.1.0

    \n
      \n
    • [Feature] PasswordLess Login
    • \n
    • [Feature] Two Factor Auth – Email
    • \n
    • [Feature] Two Factor Auth – App
    • \n
    • [Feature] Login Challenge Question
    • \n
    • [Feature] reCAPTCHA
    • \n
    • [Feature] Rename Login Page
    • \n
    • [Feature] Disable XML-RPC
    • \n
    • [Feature] Rename XML-RPC
    • \n
    • [Feature] Disable Pingbacks
    • \n
    • [Feature] New Dashboard
    • \n
    • [Feature] System Information added in the new Dashboard
    • \n
    • [Feature] File Permissions added in the new Dashboard
    • \n
    • [Feature] New UI
    • \n
    • [Bug Fix] Fixed bug to add IP Range from 0.0.0.1 – 255.255.255.255
    • \n
    • [Bug Fix] Removed /e from preg_replace causing warnings in PHP
    • \n
    \n

    1.0.2

    \n
      \n
    • Fixed Extended Lockout bug
    • \n
    • Fixed Lockout bug
    • \n
    • Handle login attempts via XML-RPC
    • \n
    \n

    1.0.1

    \n
      \n
    • Database structure changes to make the plugin work faster
    • \n
    • Minor fixes
    • \n
    \n

    1.0

    \n
      \n
    • Blocks IP after maximum retries allowed
    • \n
    • Extended Lockout after maximum lockouts allowed
    • \n
    • Email notification to admin after max lockouts
    • \n
    • Blacklist IP/IP range
    • \n
    • Whitelist IP/IP range
    • \n
    • Check logs of failed attempts
    • \n
    • Create IP ranges
    • \n
    • Delete IP ranges
    • \n
    • Licensed under LGPLv2.1
    • \n
    • Safe & Secure
    • \n
    \n", "description": "

    Loginizer is a WordPress plugin which helps you fight against bruteforce attack by blocking login for the IP after it reaches maximum retries allowed. You can blacklist or whitelist IPs for login using Loginizer. You can use various other features like Two Factor Auth, reCAPTCHA, PasswordLess Login, etc. to improve security of your website.

    \n

    Loginizer is actively used by more than 1000000+ WordPress websites.

    \n

    You can find our official documentation at https://loginizer.com/docs. We are also active in our community support forums on wordpress.org if you are one of our free users. Our Premium Support Ticket System is at https://loginizer.deskuss.com

    \n

    Free Features :

    \n
      \n
    • Brute force protection. IPs trying to brute force your website will be blocked for 15 minutes after 3 failed login attempts. After multiple lockouts the IP is blocked for 24 hours. This is the default configuration and can be changed from Loginizer -> Brute force page in WordPress admin panel.
    • \n
    • Failed login attempts logs.
    • \n
    • Blacklist IPs
    • \n
    • Whitelist IPs
    • \n
    • Custom error messages on failed login.
    • \n
    • Permission check for important files and folders.
    • \n
    • Allow only Trusted IP.
    • \n
    • Blocked Screen in place of the Login page.
    • \n
    • Email Notification on successful login.
    • \n
    • Let users login with LinkedIn
    • \n
    \n

    Get Support and Pro Features

    \n

    Get professional support from our experts and pro features to take your site’s security to the next level with Loginizer-Security.

    \n

    Pro Features :

    \n
      \n
    • MD5 Checksum – of Core WordPress Files. The admin can check and ignore files as well.
    • \n
    • PasswordLess Login – At the time of Login, the username / email address will be asked and an email will be sent to the email address of that account with a temporary link to login.
    • \n
    • Two Factor Auth via Email – On login, an email will be sent to the email address of that account with a temporary 6 digit code to complete the login.
    • \n
    • Two Factor Auth via App – The user can configure the account with a 2FA App like Google Authenticator, Authy, etc.
    • \n
    • Login Challenge Question – The user can setup a Challenge Question and Answer as an additional security layer. After Login, the user will need to answer the question to complete the login.
    • \n
    • reCAPTCHA – Google’s reCAPTCHA v3/v2, Cloudflare Turnstile, hCAPTCHA can be configured for the Login screen, Comments Section, Registration Form, etc. to prevent automated brute force attacks. Supports WooCommerce as well.
    • \n
    • Rename Login Page – The Admin can rename the login URL (slug) to something different from wp-login.php to prevent automated brute force attacks.
    • \n
    • Rename WP-Admin URL – The Admin area in WordPress is accessed via wp-admin. With loginizer you can change it to anything e.g. site-admin
    • \n
    • CSRF Protection – This helps in preventing CSRF attacks as it updates the admin URL with a session string which makes it difficult and nearly impossible for the attacker to predict the URL.
    • \n
    • Rename Login with Secrecy – If set, then all Login URL’s will still point to wp-login.php and users will have to access the New Login Slug by typing it in the browser.
    • \n
    • Disable XML-RPC – An option to simply disable XML-RPC in WordPress. Most of the WordPress users don’t need XML-RPC and can disable it to prevent automated brute force attacks.
    • \n
    • Rename XML-RPC – The Admin can rename the XML-RPC to something different from xmlrpc.php to prevent automated brute force attacks.
    • \n
    • Username Auto Blacklist – Attackers generally use common usernames like admin, administrator, or variations of your domain name / business name. You can specify such username here and Loginizer will auto-blacklist the IP Address(s) of clients who try to use such username(s).
    • \n
    • New Registration Domain Blacklist – If you would like to ban new registrations from a particular domain, you can use this utility to do so.
    • \n
    • Change the Admin Username – The Admin can rename the admin username to something more difficult.
    • \n
    • Auto Blacklist IPs – IPs will be auto blacklisted, if certain usernames saved by the Admin are used to login by malicious bots / users.
    • \n
    • Disable Pingbacks – Simple way to disable PingBacks.
    • \n
    • SSO – Single Sign-on, let any user access to your WordPress Dashboard without the need to share username or password.
    • \n
    • Limit Concurrent Logins – It prevents user to login from different devices concurrently, you can define how many devices you want to allow, and how you want to restrict the user when concurrent limit is reached.
    • \n
    • Social Login – Users can login or register with their Google, Github, Facebook, X (Twitter), Discord, Twitch, LinkedIn, Microsoft with support for WooCommerce and Ultimate Member.
    • \n
    • Key Less Social Login – Use Loginizer’s Social Auth for easy key less Social login configuration, now supports Google, GitHub, X, LinkedIn more to be added later
    • \n
    \n

    Features in Loginizer include:

    \n
      \n
    • Blocks IP after maximum retries allowed
    • \n
    • Extended Lockout after maximum lockouts allowed
    • \n
    • Email notification to admin after max lockouts
    • \n
    • Blacklist IP/IP range
    • \n
    • Whitelist IP/IP range
    • \n
    • Check logs of failed attempts
    • \n
    • Create IP ranges
    • \n
    • Delete IP ranges
    • \n
    • Licensed under LGPLv2.1
    • \n
    • Safe & Secure
    • \n
    \n", "screenshots": "
    1. \"Login

      Login Failed Error message

    2. \"Loginizer

      Loginizer Dashboard page

    3. \"Loginizer

      Loginizer Brute Force Settings page

    ", "installation": "

    Upload the Loginizer plugin to your blog, Activate it.
    \nThat’s it. You’re done!

    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/loginizer.1.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/loginizer.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/loginizer.1.0.2.zip", "1.1.0": "https://downloads.wordpress.org/plugin/loginizer.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/loginizer.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/plugin/loginizer.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/loginizer.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/loginizer.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/loginizer.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/loginizer.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/loginizer.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/loginizer.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/loginizer.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/loginizer.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/loginizer.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/loginizer.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/plugin/loginizer.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/loginizer.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/loginizer.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/loginizer.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/loginizer.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/loginizer.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/loginizer.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/loginizer.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/loginizer.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/loginizer.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/plugin/loginizer.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/loginizer.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/loginizer.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/loginizer.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/loginizer.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/loginizer.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/loginizer.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/loginizer.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/loginizer.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/loginizer.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/plugin/loginizer.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/loginizer.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/loginizer.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/loginizer.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/loginizer.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/loginizer.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/loginizer.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/loginizer.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/loginizer.1.6.8.zip", "1.7.0": "https://downloads.wordpress.org/plugin/loginizer.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/loginizer.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/loginizer.1.7.2.zip", "1.7.7": "https://downloads.wordpress.org/plugin/loginizer.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/loginizer.1.7.8.zip", "1.8.1": "https://downloads.wordpress.org/plugin/loginizer.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/loginizer.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/loginizer.1.8.3.zip", "1.9.1": "https://downloads.wordpress.org/plugin/loginizer.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/loginizer.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/loginizer.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/loginizer.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/loginizer.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/loginizer.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/loginizer.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/loginizer.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/loginizer.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/plugin/loginizer.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/loginizer.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/loginizer.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/loginizer.2.0.3.zip", "trunk": "https://downloads.wordpress.org/plugin/loginizer.zip"}, "downloaded": 28276615, "description": "

    Loginizer is a WordPress plugin which helps you fight against bruteforce attack by blocking login for the IP after it reaches maximum retries allowed. You can blacklist or whitelist IPs for login using Loginizer. You can use various other features like Two Factor Auth, reCAPTCHA, PasswordLess Login, etc. to improve security of your website.

    \n

    Loginizer is actively used by more than 1000000+ WordPress websites.

    \n

    You can find our official documentation at https://loginizer.com/docs. We are also active in our community support forums on wordpress.org if you are one of our free users. Our Premium Support Ticket System is at https://loginizer.deskuss.com

    \n

    Free Features :

    \n
      \n
    • Brute force protection. IPs trying to brute force your website will be blocked for 15 minutes after 3 failed login attempts. After multiple lockouts the IP is blocked for 24 hours. This is the default configuration and can be changed from Loginizer -> Brute force page in WordPress admin panel.
    • \n
    • Failed login attempts logs.
    • \n
    • Blacklist IPs
    • \n
    • Whitelist IPs
    • \n
    • Custom error messages on failed login.
    • \n
    • Permission check for important files and folders.
    • \n
    • Allow only Trusted IP.
    • \n
    • Blocked Screen in place of the Login page.
    • \n
    • Email Notification on successful login.
    • \n
    • Let users login with LinkedIn
    • \n
    \n

    Get Support and Pro Features

    \n

    Get professional support from our experts and pro features to take your site’s security to the next level with Loginizer-Security.

    \n

    Pro Features :

    \n
      \n
    • MD5 Checksum – of Core WordPress Files. The admin can check and ignore files as well.
    • \n
    • PasswordLess Login – At the time of Login, the username / email address will be asked and an email will be sent to the email address of that account with a temporary link to login.
    • \n
    • Two Factor Auth via Email – On login, an email will be sent to the email address of that account with a temporary 6 digit code to complete the login.
    • \n
    • Two Factor Auth via App – The user can configure the account with a 2FA App like Google Authenticator, Authy, etc.
    • \n
    • Login Challenge Question – The user can setup a Challenge Question and Answer as an additional security layer. After Login, the user will need to answer the question to complete the login.
    • \n
    • reCAPTCHA – Google’s reCAPTCHA v3/v2, Cloudflare Turnstile, hCAPTCHA can be configured for the Login screen, Comments Section, Registration Form, etc. to prevent automated brute force attacks. Supports WooCommerce as well.
    • \n
    • Rename Login Page – The Admin can rename the login URL (slug) to something different from wp-login.php to prevent automated brute force attacks.
    • \n
    • Rename WP-Admin URL – The Admin area in WordPress is accessed via wp-admin. With loginizer you can change it to anything e.g. site-admin
    • \n
    • CSRF Protection – This helps in preventing CSRF attacks as it updates the admin URL with a session string which makes it difficult and nearly impossible for the attacker to predict the URL.
    • \n
    • Rename Login with Secrecy – If set, then all Login URL’s will still point to wp-login.php and users will have to access the New Login Slug by typing it in the browser.
    • \n
    • Disable XML-RPC – An option to simply disable XML-RPC in WordPress. Most of the WordPress users don’t need XML-RPC and can disable it to prevent automated brute force attacks.
    • \n
    • Rename XML-RPC – The Admin can rename the XML-RPC to something different from xmlrpc.php to prevent automated brute force attacks.
    • \n
    • Username Auto Blacklist – Attackers generally use common usernames like admin, administrator, or variations of your domain name / business name. You can specify such username here and Loginizer will auto-blacklist the IP Address(s) of clients who try to use such username(s).
    • \n
    • New Registration Domain Blacklist – If you would like to ban new registrations from a particular domain, you can use this utility to do so.
    • \n
    • Change the Admin Username – The Admin can rename the admin username to something more difficult.
    • \n
    • Auto Blacklist IPs – IPs will be auto blacklisted, if certain usernames saved by the Admin are used to login by malicious bots / users.
    • \n
    • Disable Pingbacks – Simple way to disable PingBacks.
    • \n
    • SSO – Single Sign-on, let any user access to your WordPress Dashboard without the need to share username or password.
    • \n
    • Limit Concurrent Logins – It prevents user to login from different devices concurrently, you can define how many devices you want to allow, and how you want to restrict the user when concurrent limit is reached.
    • \n
    • Social Login – Users can login or register with their Google, Github, Facebook, X (Twitter), Discord, Twitch, LinkedIn, Microsoft with support for WooCommerce and Ultimate Member.
    • \n
    • Key Less Social Login – Use Loginizer’s Social Auth for easy key less Social login configuration, now supports Google, GitHub, X, LinkedIn more to be added later
    • \n
    \n

    Features in Loginizer include:

    \n
      \n
    • Blocks IP after maximum retries allowed
    • \n
    • Extended Lockout after maximum lockouts allowed
    • \n
    • Email notification to admin after max lockouts
    • \n
    • Blacklist IP/IP range
    • \n
    • Whitelist IP/IP range
    • \n
    • Check logs of failed attempts
    • \n
    • Create IP ranges
    • \n
    • Delete IP ranges
    • \n
    • Licensed under LGPLv2.1
    • \n
    • Safe & Secure
    • \n
    \n", "donate_link": "", "num_ratings": 1011, "screenshots": {"1": {"src": "https://ps.w.org/loginizer/assets/screenshot-1.png?rev=2938776", "caption": "Login Failed Error message"}, "2": {"src": "https://ps.w.org/loginizer/assets/screenshot-2.png?rev=2938776", "caption": "Loginizer Dashboard page"}, "3": {"src": "https://ps.w.org/loginizer/assets/screenshot-3.png?rev=2938776", "caption": "Loginizer Brute Force Settings page"}}, "support_url": "https://wordpress.org/support/plugin/loginizer/", "contributors": {"loginizer": {"avatar": "https://secure.gravatar.com/avatar/bf9daac91a2bdde173799b1bde509ad1c3a00bc01d59ec13f4fd15d6f7f4bc7f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/loginizer/", "display_name": "loginizer"}, "pagelayer": {"avatar": "https://secure.gravatar.com/avatar/da11d7dd9a75193431feed4a3e58a875f78b6180bd032bf980e311f10713bee2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pagelayer/", "display_name": "pagelayer"}, "softaculous": {"avatar": "https://secure.gravatar.com/avatar/d5f508eb226ae8cade7ed9f0f0cda7115f419afe760e0b64af278ed042b47c1f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/softaculous/", "display_name": "Softaculous"}}, "last_updated": "2025-09-22 9:44am GMT", "preview_link": "", "requires_php": "5.5", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/loginizer.2.0.3.zip", "author_profile": "https://profiles.wordpress.org/softaculous/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f6d4-7191-a04f-c8e41a541dba", "name": "Loginizer", "slug": "loginizer", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1758534240, "version": "2.0.3"}, "support_threads": 3, "requires_plugins": [], "short_description": "Loginizer is a WordPress security plugin which helps you fight against bruteforce attacks.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-6618-71a2-8fdf-914f8f033d71', 'mailchimp-for-wp', 'MC4WP: Mailchimp for WordPress', 'The #1 Mailchimp plugin for WordPress. Allows you to add a multitude of newsletter sign-up methods to your site.', '

    Allowing your visitors to subscribe to your newsletter should be easy. With this plugin, it finally is.

    -

    This plugins helps you grow your email list in Mailchimp. You can use it to create good looking and accessible sign-up forms or integrate with any other existing form on your WordPress site, like your contact, comment or checkout form.

    - -

    Some (but not all) features

    -
      -
    • -

      Connect with your Mailchimp account in seconds.

      -
    • -
    • -

      Sign-up forms which are good looking, user-friendly and mobile optimized. You have complete control over the form fields and can build your forms using native HTML.

      -
    • -
    • -

      Seamless integration with the following plugins:

      -
        -
      • WordPress Comment Form
      • -
      • WordPress Registration Form
      • -
      • Contact Form 7
      • -
      • WooCommerce
      • -
      • Gravity Forms
      • -
      • Ninja Forms 3
      • -
      • WPForms
      • -
      • BuddyPress
      • -
      • MemberPress
      • -
      • Events Manager
      • -
      • Easy Digital Downloads
      • -
      • Give
      • -
      • UltimateMember
      • -
      • HTML Forms
      • -
      • AffiliateWP
      • -
      -
    • -
    • -

      Is the plugin you want to integrate with not listed above? You can probably still use our custom integration feature. Alternatively, the plugin comes with a PHP API to programmatically add a new subscriber to Mailchimp.

      -
    • -
    • -

      Mailchimp for WordPress Premium: Send your WooCommerce orders to Mailchimp so you can see exactly what each subscriber purchased and how much revenue your email campaigns are generating.

      -
    • -
    • -

      A multitude of available add-on plugins and integrations:

      - -
    • -
    • -

      Well documented through our knowledge base.

      -
    • -
    • -

      Developer friendly. For some inspiration, check out our repository of example code snippets.

      -
    • -
    • -

      Ready for PHP 8.5, but backwards-compatible all the way down to PHP 7.4.

      -
    • -
    -

    What is Mailchimp?

    -

    Mailchimp is a newsletter service that allows you to send out email campaigns to a list of email subscribers. It is free for lists with up to 500 email subscribers, which is why it is the newsletter-service of choice for thousands of small businesses across the globe.

    -

    If you are not yet using Mailchimp, creating an account is 100% free and only takes you about 30 seconds.

    -

    Support

    -

    If you need some help in setting up the plugin, you have various options:

    - -

    Translations

    -

    You can help translate this plugin into your language using your WordPress.org account.

    -

    Development

    -

    This plugin is being developed on GitHub. If you want to collaborate, please look at ibericode/mailchimp-for-wordpress.

    -

    Customizing the plugin

    -

    The plugin provides various filter and action hooks that allow you to modify or extend the default behavior. We’re also maintaining a collection of sample code snippets.

    -', '4.10.8', 'Danny van Kooten', '4.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.8.zip', '2013-06-19 00:00:00+00', '2025-10-21 07:42:00+00', 'https://profiles.wordpress.org/dvankooten/', 96, 1483, 9, 9, 2000000, 69835064, 'https://www.mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page', 'https://www.mc4wp.com/contribute/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link', NULL, NULL, 'https://wordpress.org/support/plugin/mailchimp-for-wp/', 'https://wordpress.org/plugins/mailchimp-for-wp/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "MC4WP: Mailchimp for WordPress", "slug": "mailchimp-for-wp", "tags": {"form": "form", "email": "email", "mailchimp": "mailchimp", "subscribe": "subscribe", "newsletter": "newsletter"}, "added": "2013-06-19", "icons": {"1x": "https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577", "2x": "https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577"}, "author": "Danny van Kooten", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706", "high": false}, "ratings": {"1": 50, "2": 10, "3": 18, "4": 39, "5": 1366}, "version": "4.10.8", "homepage": "https://www.mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page", "requires": "4.6", "sections": {"faq": "\n
    \nWhere can I find my Mailchimp API key?\n\n

    \n

    You can find your API key here

    \n

    \n
    \nHow to display a form in posts or pages?\n\n

    \n

    Use the [mc4wp_form] shortcode or the Gutenberg block.

    \n

    \n
    \nHow to display a form in widget areas like the sidebar or footer?\n\n

    \n

    Go to Appearance > Widgets and use the Mailchimp for WP Form widget that comes with the plugin.

    \n

    \n
    \nHow to add a sign-up checkbox to my Contact Form 7 form?\n\n

    \n

    Use the following shortcode in your CF7 form to display a newsletter sign-up checkbox.

    \n
    [mc4wp_checkbox \"Subscribe to our newsletter?\"]\n
    \n

    Our knowledge base has more information on connecting Contact Form 7 and Mailchimp.

    \n

    \n
    \nThe form shows a success message but subscribers are not added to my list(s)?\n\n

    \n

    If the form shows a success message, there is no doubt that the sign-up request succeeded. Mailchimp could have a slight delay sending the confirmation email though. Please check again in a few minutes (sometimes hours) and don’t forget to check your junk folder too.

    \n

    When you have double opt-in disabled, new subscribers will be seen as imports by Mailchimp. They will not show up in your daily digest emails or statistics. We always recommend leaving double opt-in enabled.

    \n

    \n
    \nHow can I style the sign-up form?\n\n

    \n

    You can use custom CSS to style the sign-up form if you do not like the themes that come with the plugin. The following selectors can be used to target the various form elements.

    \n
    .mc4wp-form { ... } /* the form element */\n.mc4wp-form p { ... } /* form paragraphs */\n.mc4wp-form label { ... } /* labels */\n.mc4wp-form input { ... } /* input fields */\n.mc4wp-form input[type=\"checkbox\"] { ... } /* checkboxes */\n.mc4wp-form input[type=\"submit\"] { ... } /* submit button */\n.mc4wp-alert { ... } /* success & error messages */\n.mc4wp-success { ... } /* success message */\n.mc4wp-error { ... } /* error messages */\n
    \n

    You can add your custom CSS to your theme stylesheet or (easier) by using a plugin like Simple Custom CSS

    \n

    \n
    \nHow do I show a sign-up form in a pop-up?\n\n

    \n

    We recommend the Boxzilla pop-up plugin for this. You can use the form shortcode in your pop-up box to show a sign-up form.

    \n

    \n
    \nHow do I subscribe from my WooCommerce checkout form?\n\n

    \n

    You can use our WooCommerce integration for that. How to subscribe to Mailchimp from the WooCommerce checkout form.

    \n

    \n
    \nHow to connect my WooCommerce store with Mailchimp?\n\n

    \n

    You can find instructions for connecting your WooCommerce store with Mailchimp on our website.

    \n

    \n
    \nI’m getting an “HTTP Error” when trying to connect to Mailchimp.\n\n

    \n

    the “HTTP Error” type is usually because of a firewall configuration issue or outdated software on your web server.

    \n

    Please contact your webhost and ask them to check the following:

    \n
      \n
    • Whether remote HTTP requests to https://api.mailchimp.com are allowed.
    • \n
    • Whether cURL and the PHP-cURL extension are installed and updated to a recent version.
    • \n
    \n

    \n
    \nMy question is not listed here.\n\n

    \n

    Please search through our knowledge base.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Mailchimp integration is smooth

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tsengco on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Connected my newsletter lists in a minute. New subscribers sync immediately, no extra setup needed.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable, well-maintained, and highly recommended

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy m4 (mapo84) on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is an excellent plugin — reliable, well maintained, and easy to use. I’ve been using the Pro version for several years and it has always delivered exactly what I needed.

    \n\n\n\n

    The developers clearly put a lot of care into both the product and the documentation, and the support team is fast, professional, and very helpful.

    \n\n\n\n

    Highly recommended to anyone looking for a solid Mailchimp integration for WordPress!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Millan V.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Benova (Benjamin Millan) on August 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    Costa Brava contenidos muy agradecido y sencillo de aplicar
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Reliable for a decade

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ilumos on July 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We''ve used this for over a decade and it continues to work very reliably. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kosteve on July 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    nice plugin with good interface

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great integration offers!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bayejeed on July 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve heard about Mailchimp a lot, it''s time to install and best wishes for your upcoming plugins, thanks and be with us. You might deserve the 5 stars but yet to use it dear, so I''ll do that after using the plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Customer Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lstarnaud on April 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We installed this plugin but encountered some compatibility issues with our theme. The support team responded quickly and resolved everything efficiently. Highly recommend!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Won't let you configure unless you give public physical address

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mehlmanmedical (theforwardmale) on March 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After you activate the plugin and it collects your info and email, it forces you to provide a physical address to include in all footers of emails you''d send out to comply with \"anti-spam laws,\" even though I''ve never once been prompted with this. If you don''t want to give your address, it makes suggestions like renting out a PO box. Laughable. Point is, could you imagine sending a physical address to thousands of subscribers? In 2025 there''s something called Online businesses.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    MY new plugin is good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Trevor Locke (locketrevor) on March 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just started to use Mailchimp. So far, so good.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    very happy with this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy vanoweb on February 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    i use this for several websites and it works fine

    \n
    \n
    \n", "changelog": "

    4.10.8 – Oct 21, 2025

    \n
      \n
    • Show warning to administrators if a form is showing but Mailchimp API key is not set.
    • \n
    • Update third-party JS dependencies.
    • \n
    \n

    4.10.7 – Sep 05, 2025

    \n
      \n
    • Handle renewing lists through server-side redirect instead of JS component.
    • \n
    \n

    4.10.6 – Jul 23, 2025

    \n
      \n
    • [WooCommerce Checkout] Fix checkbox from showing up in order confirmation email if using Checkout Block.
    • \n
    • [Forms] Fix {response} tag being escaped.
    • \n
    \n

    4.10.5 – Jun 25, 2025

    \n
      \n
    • [Ninja Forms] Always show at least one list option so that onchange event fires properly (to load Audience fields).
    • \n
    • Update third-party JS dependencies.
    • \n
    • Optimize SVG icons for reduced file sizes.
    • \n
    \n

    4.10.4 – May 26, 2025

    \n
      \n
    • Improved context-dependent escaping in dynamic content tags.
    • \n
    \n

    4.10.3 – Apr 16, 2025

    \n
      \n
    • Update third-party JS dependencies.
    • \n
    • Add message setting for when a form submission is marked as spam.
    • \n
    • Log exact anti-spam rule when a form submission is marked as spam.
    • \n
    • Handle potential Prosopo connection errors gracefully.
    • \n
    \n

    4.10.2 – Feb 28, 2025

    \n
      \n
    • Fix WPForms parameter type change causing a fatal error if using WPForms with a Mailchimp sign-up field.
    • \n
    • Add Mailchimp data to Personal Data exporter. Contributed by David Anderson from UpdraftPlus.
    • \n
    • Prevent PHP notices in lists overview on general settings page.
    • \n
    \n

    4.10.1 – Feb 06, 2025

    \n
      \n
    • Fix JS error breaking Ninja Forms edit form page when not connected to a Mailchimp account or account has no audiences.
    • \n
    • Remove sprintf usage in hot path.
    • \n
    • Lazy load MC4WP_API_V3 class to save some memory and parse time.
    • \n
    • Save a tiny bit of memory in autoloader implementation by not repeatedly storing plugin directory.
    • \n
    • Remove unused setting key from default options.
    • \n
    \n

    4.10.0 – Jan 23, 2025

    \n
      \n
    • Bump required PHP version to 7.4 or higher.
    • \n
    • Obfuscate API key the same way as in the Mailchimp.com interface.
    • \n
    • Delete all plugin data when plugin is uninstalled / deleted via WP Admin.
    • \n
    • Fix several PHP 8.4 deprecation warnings.
    • \n
    • Address warning about translations being loaded too early if using Ninja Forms integration.
    • \n
    • Run stored setting values related to user-facing textual messages through i18n functions to allow translating them through plugins like Loco Translate or WPML.
    • \n
    \n

    4.9.21 – Jan 08, 2025

    \n
      \n
    • [Forms] Rename “list choice” to “audience choice” in available form fields.
    • \n
    • [Ninja Forms] Fix gettext being called too early warning in Ninja Forms base class.
    • \n
    • [WooCommerce] Allow pre-checking of sign-up checkbox in Checkout Block.
    • \n
    \n

    4.9.20 – Dec 18, 2024

    \n
      \n
    • Fix Ninja Forms integration field no longer showing up.
    • \n
    • Fix “link is expired” message because of missing nonce on button to dismiss API key notice.
    • \n
    • [WPML] Added text_no_lists_selected to the config file so it can be translated. Thanks Diego Pereira!
    • \n
    \n

    4.9.19 – Nov 11, 2024

    \n
      \n
    • Add integration with Prosopo, a GDPR compliant anti-spam solution for protecting your sign-up forms against bot sign-ups. Thanks Maxim Akimov!
    • \n
    \n

    4.9.18 – Oct 21, 2024

    \n
      \n
    • Bump required PHP version to 7.2.
    • \n
    • Prevent non-functional checkbox from showing up on WooCommerce my account page if WooCommerce checkout integration is enabled.
    • \n
    • Update default form content to include a “for” attribute on the label element.
    • \n
    • Minor performance optimizations to MC4WP_Form::get_subscriber_tags()
    • \n
    • Begrudgingly rename Mailchimp lists to Mailchimp audiences throughout the plugin’s admin interfaces.
    • \n
    \n

    4.9.17 – Sep 17, 2024

    \n
      \n
    • Fix compatibility with WooCommerce versions 8.5 to 8.8 because of private method that was later made public.
    • \n
    • Fix potential reflected XSS by stripping and escaping all HTML from {email} tag replacements. Thanks to kauenavarro for responsibly disclosing.
    • \n
    • Fix potential stored XSS for attackers with both administrator access and Mailchimp account access by escaping HTML from interest group name. Thanks to Jorge Diaz (ddiax) for responsibly disclosing.
    • \n
    \n

    4.9.16 – Sep 11, 2024

    \n
      \n
    • Add support for WooCommerce Checkout Block in sign-up checkbox integration.
    • \n
    \n

    4.9.15 – Aug 13, 2024

    \n
      \n
    • Improved anti-spam measures on the custom form integration. If you are using the custom form integration (using the mc4wp-subscribe checkbox), please test your forms after upgrading and report any issues to us.
    • \n
    • Improved anti-spam measures on all sign-up forms.
    • \n
    • Remove unsupported filter hook from Gravity Forms integration.
    • \n
    \n

    4.9.14 – Jul 17, 2024

    \n
      \n
    • Very minor code-size improvements to public forms related JavaScript.
    • \n
    • Update third-party JS dependencies.
    • \n
    • Bump tested WordPress version to 6.6.
    • \n
    \n

    4.9.13 – Apr 25, 2024

    \n
      \n
    • Fix issue with Composer classmap throwing a fatal error when an older version of Composer is already loaded.
    • \n
    \n

    4.9.12 – Apr 22, 2024

    \n
      \n
    • Fix last 10 Mailchimp lists not being pulled-in when having more than 10 lists.
    • \n
    \n

    4.9.11 – Jan 8, 2024

    \n
      \n
    • Update third-party JS dependencies.
    • \n
    • Bump tested WordPress version.
    • \n
    \n

    4.9.10 – Nov 20, 2023

    \n
      \n
    • Integrations: Update CheckoutWC hook name for WooCommerce checkbox integration.
    • \n
    • Forms: Don’t show form preview to users without edit_posts capability.
    • \n
    • Forms: Explicitly exclude form preview from search engine indexing.
    • \n
    • General: Don’t unnecessarily go through service contrainer while bootstrapping plugin.
    • \n
    • General: Remove some unnecessary JavaScript now that browser support has caught up.
    • \n
    \n

    4.9.9 – Oct 3, 2023

    \n
      \n
    • Fix class “MC4WP_Usage_Tracking” not found error for WP Cron / WP CLI processes.
    • \n
    \n

    4.9.8 – Oct 3, 2023

    \n
      \n
    • Remove the opt-in usage tracking functionality as we’re not really using it for decision making anymore.
    • \n
    • Add missing label element to the select element for setting the logging level.
    • \n
    • Our JavaScript assets are now transpiled to support the same set of browsers as WordPress core.
      \nThis drops support for some very old browsers, but results in smaller bundle sizes for the supported set of browsers.
    • \n
    • Update third-party JS dependencies to their latest versions.
    • \n
    \n

    4.9.7 – Aug 29, 2023

    \n
      \n
    • Update third-party JS dependencies.
    • \n
    • Minor textual improvements.
    • \n
    • Bump tested WordPress version.
    • \n
    \n

    4.9.6 – Jul 12, 2023

    \n
      \n
    • Update third-party JS dependencies.
    • \n
    • Address some minor codestyle issues.
    • \n
    \n

    4.9.5 – Jun 7, 2023

    \n
      \n
    • Fix generated HTML for list/audience choice fields.
    • \n
    • Fix deprecation warning in includes/admin/class-review-notice.php.
    • \n
    • Update JavaScript dependencies.
    • \n
    \n

    4.9.4 – May 2, 2023

    \n
      \n
    • Fallback to default checkbox label if none given. Thanks to Shojib Khan.
    • \n
    • Improve WooCommerce integration settings page by disabling position field if integration is disabled. Thanks to Shojib Khan.
    • \n
    • Update JavaScript dependencies.
    • \n
    \n

    4.9.3 – Mar 31, 2023

    \n
      \n
    • Defend against breaking change in latest WPForms update.
    • \n
    \n

    4.9.2 – Mar 21, 2023

    \n
      \n
    • Add support for a field named MARKETING_PERMISSIONS to enable GDPR fields configured in Mailchimp. A sample code snippet can be found here.
    • \n
    • Remove Google reCaptcha feature. This was already disabled if you were not already using it.
    • \n
    \n

    4.9.1 – Feb 7, 2023

    \n
      \n
    • Fix generated value attribute for fields of type choice (dropdown, checkboxes, radio fields).
    • \n
    • Fix type of marketing_permissions field in API requests. Thanks to George Korakas.
    • \n
    • Refactor list overview JS to not depend on Mithril.js anymore.
    • \n
    • Simplify admin footer text asking for a plugin review.
    • \n
    • When renewing lists, renew cached marketing permissions too.
    • \n
    \n

    4.9.0 – Jan 13, 2023

    \n
      \n
    • Removed deprecated filter hook mc4wp_settings_cap, use mc4wp_admin_required_capability instead.
    • \n
    • Removed deprecated filter hook mc4wp_merge_vars, use mc4wp_form_data or mc4wp_integration_data instead.
    • \n
    • Removed deprecated filter hook mc4wp_form_merge_vars, use mc4wp_form_data instead.
    • \n
    • Removed deprecated filter hook mc4wp_integration_merge_vars, use mc4wp_integration_data instead.
    • \n
    • Removed deprecated filter hook mc4wp_valid_form_request, use mc4wp_form_errors instead.
    • \n
    • Removed deprecated function mc4wp_get_api() and deprecated class MC4WP_API.
    • \n
    • Removed deprecated function mc4wp_checkbox().
    • \n
    • Removed deprecated function mc4wp_form(), use mc4wp_show_form() instead.
    • \n
    • Added filter mc4wp_debug_log_message to modify or disable messages that are written to the debug log.
    • \n
    • Fix color of invalid Mailchimp API key notice.
    • \n
    • Sanitize IP address value from $_SERVER[''REMOTE_ADDR''] too.
    • \n
    • Fetch GDPR marketing permissions via first subscriber on list and show them in lists overview table.
    • \n
    \n

    4.8.12 – Dec 06, 2022

    \n
      \n
    • Minor performance, memory usage & size optimizations for all JavaScript code bundled with this plugin.
    • \n
    \n

    4.8.11 – Nov 1, 2022

    \n
      \n
    • Improved default styling for the WooCommerce sign-up checkbox integration.
    • \n
    • Add <strong> to allowed HTML elements for GDPR disclaimer text on settings pages.
    • \n
    • Remove all references to obsolete placeholders.js polyfill.
    • \n
    • Move the GiveWP sign-up checkbox closer to the email input field. Thanks Matthew Lewis.
    • \n
    \n

    4.8.10 – Sep 14, 2022

    \n
      \n
    • Fix mc4wp_get_request_ip_address() to return an IP address that matches Mailchimp’s validation format when X-Forwarded-For header contains a port component.
    • \n
    \n

    4.8.8 – Aug 25, 2022

    \n
      \n
    • Fix mc4wp_get_request_ip_address() to pass new Mailchimp validation format. This fixes the “This value is not a valid IP.” error some users using a proxy may have been seeing.
    • \n
    \n

    4.8.7 – Mar 2, 2022

    \n
      \n
    • Fix PHP 8.1 deprecation warnings in MC4WP_Container class.
    • \n
    • Fix name of action hook that fires before Mailchimp settings rows are displayed on the settings page. Thanks LoonSongSoftware.
    • \n
    • Improve WPML compatibility. Thanks Sumit Singh.
    • \n
    • Fix deprecated function for AMP integration.
    • \n
    • Only allow unfiltered HTML if user has unfiltered_html capability. Please read the below.
    • \n
    \n

    Despite extensive testing, we may have missed some more obscure HTML elements or attributes from our whitelist.
    \nIf you notice that some of your form HTML is stripped after saving your form, please get in touch with our support team and provide the HTML you attempted to save.

    \n

    4.8.6 – Jun 24, 2021

    \n
      \n
    • Add nonce field to button for dismissing notice asking for plugin review.
    • \n
    • Add strings from config/ directory to POT file.
    • \n
    • Add nonce check to AJAX endpoint for refreshing cached Mailchimp lists.
    • \n
    • Add capability check to AJAX endpoint for retrieving list details.
    • \n
    • Schedule event to refresh cached Mailchimp list upon plugin activation.
    • \n
    \n

    Thanks to the team over at pluginvulnerabilities.com for bringing some of these changes to our attention.

    \n

    4.8.5 – Jun 1, 2021

    \n

    Add nonce verification to all URL’s using _mc4wp_action query parameter.
    \nThis fixes a CSRF vulnerability where a malicious website could trick a logged-in admin user in performing unwanted actions.

    \n

    A special thanks to Erwan from WPScan for bringing this issue to our attention.

    \n

    4.8.4 – May 7, 2021

    \n
      \n
    • Add defer attribute to JS file, so page parsing isn’t blocked at all.
    • \n
    • Rewrite plugin CSS to optimize for selector performance and get rid of some duplication.
    • \n
    \n

    After installing this update, make sure to also update any add-on plugins like Mailchimp for WordPress Premium and Mailchimp Top Bar.

    \n

    4.8.3 – Jan 21, 2021

    \n
      \n
    • Fix fatal error on older PHP versions when submitting form without any subscriber tags set in the form settings.
    • \n
    • Minor performance improvement in bootstrap method of the plugin.
    • \n
    \n

    4.8.2 – Jan 20, 2021

    \n
      \n
    • Allow short-circuiting mc4wp_subscriber_data filter by returning null or false.
    • \n
    • Use a subdirectory for the default debug log file location, so that it’s easier to protect using htaccess.
    • \n
    • Improved reliability for fetching lists from mailchimp when lists have high stats.member_count property.
    • \n
    \n

    4.8.1 – Aug 25, 2020

    \n
      \n
    • Fix notice by explicitly setting permission_callback on registered REST route.
    • \n
    • Minor internal code improvements.
    • \n
    \n

    4.8 – Jul 9, 2020

    \n
      \n
    • Plugin now requires PHP 5.3 or higher.
    • \n
    • Prefix overlay classname to prevent styling collissions with other plugins.
    • \n
    • Form sign-ups can now add tags to both new and existing subscribers.
    • \n
    • Update JavaScript dependencies.
    • \n
    • Register script early to work with Gutenberg preview.
    • \n
    \n

    4.7.8 – Jun 04, 2020

    \n
      \n
    • Add MC4WP_API_V3::add_template method.
    • \n
    • Minor code hardening to ensure a default form is always set.
    • \n
    • Update JS dependencies to their latest versions.
    • \n
    • Fix icon for Gutenberg block.
    • \n
    \n

    4.7.7 – Apr 28, 2020

    \n
      \n
    • Update JS dependencies to their latest versions.
    • \n
    • API client add_list_member method now has an additional parameter to skip merge field validation.
    • \n
    • Simplify code for updating an existing form.
    • \n
    \n

    4.7.6 – Apr 9, 2020

    \n
      \n
    • Update JS dependencies to their latest versions.
    • \n
    • Check if className is of type string, fixes a console warning when clicking inside a SVG element.
    • \n
    • Minor improvements to the AMP implementation to address harmless validation warnings.
    • \n
    \n

    4.7.5 – Feb 10, 2020

    \n
      \n
    • Add AMP compatibility to sign-up forms, thanks to Claudiu Lodromanean. This uses the official AMP plugin for WordPress.
    • \n
    • Add settings key to WPML config so settings can easily by copied over to translated versions of a form.
    • \n
    • Optimize size & performance of JavaScript code, resulting in a file that is 40% smaller.
    • \n
    • Update CodeMirror to its latest version.
    • \n
    • Escape all string translations.
    • \n
    \n

    4.7.4 – Dec 7, 2019

    \n

    Fixes

    \n
      \n
    • htaccess config for servers running Apache 2.4 or later.
    • \n
    \n

    4.7.3 – Dec 4, 2019

    \n

    Fixes

    \n
      \n
    • Top Bar & User Sync add-on using API v2 since version 4.7.1.
    • \n
    • Revert change in formatter for date fields, breaking all forms with date fields in them.
    • \n
    \n

    Improvements

    \n
      \n
    • Add getter method for raw (unmodified) data on form class.
    • \n
    \n

    4.7.2 – Nov 27, 2019

    \n

    Fixes

    \n
      \n
    • Invalid .htaccess file in case there already is one in the uploads directory.
    • \n
    \n

    4.7.1 – Nov 26, 2019

    \n

    Improvements

    \n
      \n
    • Update MemberPress hook names. Thanks Ian Heggaton!
    • \n
    • Use WordPress.org translations instead of bundling translation files in plugin itself.
    • \n
    • Write .htaccess to directory of debug log file, to prevent file access.
    • \n
    • Add some convenient hooks for Checkout for WooCommerce.
    • \n
    • Stop parsing shortcodes in text widgets as WordPress core does this since version 4.9.
    • \n
    \n

    4.7 – Nov 7, 2019

    \n

    Improvements

    \n
      \n
    • Add role=alert to form notices.
    • \n
    • Add setting to pre-check sign-up …
    • \n
    \n", "description": "

    Allowing your visitors to subscribe to your newsletter should be easy. With this plugin, it finally is.

    \n

    This plugins helps you grow your email list in Mailchimp. You can use it to create good looking and accessible sign-up forms or integrate with any other existing form on your WordPress site, like your contact, comment or checkout form.

    \n\n

    Some (but not all) features

    \n
      \n
    • \n

      Connect with your Mailchimp account in seconds.

      \n
    • \n
    • \n

      Sign-up forms which are good looking, user-friendly and mobile optimized. You have complete control over the form fields and can build your forms using native HTML.

      \n
    • \n
    • \n

      Seamless integration with the following plugins:

      \n
        \n
      • WordPress Comment Form
      • \n
      • WordPress Registration Form
      • \n
      • Contact Form 7
      • \n
      • WooCommerce
      • \n
      • Gravity Forms
      • \n
      • Ninja Forms 3
      • \n
      • WPForms
      • \n
      • BuddyPress
      • \n
      • MemberPress
      • \n
      • Events Manager
      • \n
      • Easy Digital Downloads
      • \n
      • Give
      • \n
      • UltimateMember
      • \n
      • HTML Forms
      • \n
      • AffiliateWP
      • \n
      \n
    • \n
    • \n

      Is the plugin you want to integrate with not listed above? You can probably still use our custom integration feature. Alternatively, the plugin comes with a PHP API to programmatically add a new subscriber to Mailchimp.

      \n
    • \n
    • \n

      Mailchimp for WordPress Premium: Send your WooCommerce orders to Mailchimp so you can see exactly what each subscriber purchased and how much revenue your email campaigns are generating.

      \n
    • \n
    • \n

      A multitude of available add-on plugins and integrations:

      \n\n
    • \n
    • \n

      Well documented through our knowledge base.

      \n
    • \n
    • \n

      Developer friendly. For some inspiration, check out our repository of example code snippets.

      \n
    • \n
    • \n

      Ready for PHP 8.5, but backwards-compatible all the way down to PHP 7.4.

      \n
    • \n
    \n

    What is Mailchimp?

    \n

    Mailchimp is a newsletter service that allows you to send out email campaigns to a list of email subscribers. It is free for lists with up to 500 email subscribers, which is why it is the newsletter-service of choice for thousands of small businesses across the globe.

    \n

    If you are not yet using Mailchimp, creating an account is 100% free and only takes you about 30 seconds.

    \n

    Support

    \n

    If you need some help in setting up the plugin, you have various options:

    \n\n

    Translations

    \n

    You can help translate this plugin into your language using your WordPress.org account.

    \n

    Development

    \n

    This plugin is being developed on GitHub. If you want to collaborate, please look at ibericode/mailchimp-for-wordpress.

    \n

    Customizing the plugin

    \n

    The plugin provides various filter and action hooks that allow you to modify or extend the default behavior. We’re also maintaining a collection of sample code snippets.

    \n", "screenshots": "
    1. \"Example

      Example sign-up form in the TwentyTwenty theme.

    2. \"Example

      Example sign-up integration with a contact form.

    3. \"Settings

      Settings page to connect with your Mailchimp account.

    4. \"Overview

      Overview of sign-up integrations.

    5. \"Overview

      Overview of sign-up forms.

    6. \"Settings

      Settings page to configure an integration.

    7. \"Page

      Page where you edit your sign-up forms.

    8. \"Page

      Page where you modify your form messages.

    9. \"Settings

      Settings page for e-commerce integration with Mailchimp. Requires Mailchimp for WordPress Premium.

    ", "installation": "

    Installing the plugin

    \n
      \n
    1. In your WordPress admin panel, go to Plugins > New Plugin, search for Mailchimp for WordPress and click “Install now
    2. \n
    3. Alternatively, download the plugin and upload the contents of mailchimp-for-wp.zip to your plugins directory, which usually is /wp-content/plugins/.
    4. \n
    5. Activate the plugin
    6. \n
    7. Set your API key in the plugin settings.
    8. \n
    \n

    Configuring Sign-Up Form(s)

    \n
      \n
    1. Go to Mailchimp for WP > Forms
    2. \n
    3. Select at least one list to subscribe people to.
    4. \n
    5. (Optional) Add more fields to your form.
    6. \n
    7. Embed a sign-up form in pages or posts using the [mc4wp_form] shortcode or Gutenberg block.
    8. \n
    9. Show a sign-up form in your widget areas using the “Mailchimp Sign-Up Form” widget.
    10. \n
    11. Show a sign-up form from your theme files by using the mc4wp_show_form() PHP function.
    12. \n
    \n

    Need help?

    \n

    Please take a look at the MC4WP knowledge base first.

    \n

    If you can’t find an answer there, please look through the plugin support forums or start your own topic.

    \n"}, "versions": {"1.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.zip", "2.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.zip", "3.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.zip", "4.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.zip", "4.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.4.zip", "4.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.zip", "4.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.zip", "1.1.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.1.5.zip", "1.2.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.2.1.zip", "1.2.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.2.5.zip", "1.3.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.3.1.zip", "1.4.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.4.8.zip", "1.5.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.1.5.8.zip", "2.0.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.0.5.zip", "2.1.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.1.7.zip", "2.2.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.2.9.zip", "2.3.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.8.zip", "3.0.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.9.zip", "3.1.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.9.zip", "4.0.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.9.zip", "4.2.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.5.zip", "4.3.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.3.3.zip", "4.5.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.5.5.zip", "4.6.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.6.1.zip", "4.6.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.6.2.zip", "4.7.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.4.zip", "4.7.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.5.zip", "4.7.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.6.zip", "4.7.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.7.zip", "4.7.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.7.8.zip", "4.8.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.3.zip", "4.8.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.4.zip", "4.8.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.5.zip", "4.8.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.6.zip", "4.8.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.7.zip", "4.8.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.8.zip", "4.8.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.9.zip", "4.9.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.2.zip", "4.9.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.3.zip", "4.9.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.4.zip", "4.9.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.5.zip", "4.9.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.6.zip", "4.9.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.7.zip", "4.9.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.8.zip", "4.9.9": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.zip", "2.3.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.12.zip", "2.3.13": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.13.zip", "2.3.14": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.14.zip", "2.3.15": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.15.zip", "2.3.16": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.16.zip", "2.3.17": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.17.zip", "2.3.18": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.2.3.18.zip", "3.0.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.0.12.zip", "3.1.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.10.zip", "3.1.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.11.zip", "3.1.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.3.1.12.zip", "4.0.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.10.zip", "4.0.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.11.zip", "4.0.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.12.zip", "4.0.13": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.0.13.zip", "4.1.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.10.zip", "4.1.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.11.zip", "4.1.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.12.zip", "4.1.13": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.13.zip", "4.1.14": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.14.zip", "4.1.15": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.1.15.zip", "4.10.0": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.0.zip", "4.10.1": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.1.zip", "4.10.2": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.2.zip", "4.10.3": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.3.zip", "4.10.4": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.4.zip", "4.10.5": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.5.zip", "4.10.6": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.6.zip", "4.10.7": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.7.zip", "4.10.8": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.8.zip", "4.8.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.10.zip", "4.8.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.11.zip", "4.8.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.12.zip", "4.9.10": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.10.zip", "4.9.11": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.11.zip", "4.9.12": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.12.zip", "4.9.13": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.13.zip", "4.9.14": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.14.zip", "4.9.15": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.15.zip", "4.9.16": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.16.zip", "4.9.17": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.17.zip", "4.9.18": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.18.zip", "4.9.19": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.19.zip", "4.9.20": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.20.zip", "4.9.21": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.9.21.zip"}, "downloaded": 69835064, "description": "

    Allowing your visitors to subscribe to your newsletter should be easy. With this plugin, it finally is.

    \n

    This plugins helps you grow your email list in Mailchimp. You can use it to create good looking and accessible sign-up forms or integrate with any other existing form on your WordPress site, like your contact, comment or checkout form.

    \n\n

    Some (but not all) features

    \n
      \n
    • \n

      Connect with your Mailchimp account in seconds.

      \n
    • \n
    • \n

      Sign-up forms which are good looking, user-friendly and mobile optimized. You have complete control over the form fields and can build your forms using native HTML.

      \n
    • \n
    • \n

      Seamless integration with the following plugins:

      \n
        \n
      • WordPress Comment Form
      • \n
      • WordPress Registration Form
      • \n
      • Contact Form 7
      • \n
      • WooCommerce
      • \n
      • Gravity Forms
      • \n
      • Ninja Forms 3
      • \n
      • WPForms
      • \n
      • BuddyPress
      • \n
      • MemberPress
      • \n
      • Events Manager
      • \n
      • Easy Digital Downloads
      • \n
      • Give
      • \n
      • UltimateMember
      • \n
      • HTML Forms
      • \n
      • AffiliateWP
      • \n
      \n
    • \n
    • \n

      Is the plugin you want to integrate with not listed above? You can probably still use our custom integration feature. Alternatively, the plugin comes with a PHP API to programmatically add a new subscriber to Mailchimp.

      \n
    • \n
    • \n

      Mailchimp for WordPress Premium: Send your WooCommerce orders to Mailchimp so you can see exactly what each subscriber purchased and how much revenue your email campaigns are generating.

      \n
    • \n
    • \n

      A multitude of available add-on plugins and integrations:

      \n\n
    • \n
    • \n

      Well documented through our knowledge base.

      \n
    • \n
    • \n

      Developer friendly. For some inspiration, check out our repository of example code snippets.

      \n
    • \n
    • \n

      Ready for PHP 8.5, but backwards-compatible all the way down to PHP 7.4.

      \n
    • \n
    \n

    What is Mailchimp?

    \n

    Mailchimp is a newsletter service that allows you to send out email campaigns to a list of email subscribers. It is free for lists with up to 500 email subscribers, which is why it is the newsletter-service of choice for thousands of small businesses across the globe.

    \n

    If you are not yet using Mailchimp, creating an account is 100% free and only takes you about 30 seconds.

    \n

    Support

    \n

    If you need some help in setting up the plugin, you have various options:

    \n\n

    Translations

    \n

    You can help translate this plugin into your language using your WordPress.org account.

    \n

    Development

    \n

    This plugin is being developed on GitHub. If you want to collaborate, please look at ibericode/mailchimp-for-wordpress.

    \n

    Customizing the plugin

    \n

    The plugin provides various filter and action hooks that allow you to modify or extend the default behavior. We’re also maintaining a collection of sample code snippets.

    \n", "donate_link": "https://www.mc4wp.com/contribute/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link", "num_ratings": 1483, "screenshots": {"1": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-1.png?rev=2837223", "caption": "Example sign-up form in the TwentyTwenty theme."}, "2": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-2.png?rev=2837223", "caption": "Example sign-up integration with a contact form."}, "3": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-3.png?rev=2837223", "caption": "Settings page to connect with your Mailchimp account."}, "4": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-4.png?rev=2837223", "caption": "Overview of sign-up integrations."}, "5": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-5.png?rev=2837223", "caption": "Overview of sign-up forms."}, "6": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-6.png?rev=2837223", "caption": "Settings page to configure an integration."}, "7": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-7.png?rev=2837223", "caption": "Page where you edit your sign-up forms."}, "8": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-8.png?rev=2837223", "caption": "Page where you modify your form messages."}, "9": {"src": "https://ps.w.org/mailchimp-for-wp/assets/screenshot-9.png?rev=3103917", "caption": "Settings page for e-commerce integration with Mailchimp. Requires Mailchimp for WordPress Premium."}}, "support_url": "https://wordpress.org/support/plugin/mailchimp-for-wp/", "contributors": {"lapzor": {"avatar": "https://secure.gravatar.com/avatar/66f6718604507cd65a1d4ef480526164a9a6df6647eec9de32fbd1bb30f7dae6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lapzor/", "display_name": "Lap"}, "hchouhan": {"avatar": "https://secure.gravatar.com/avatar/54a25d2575c011125ec5ea1e6c6e2f8e4325156aa67c0b74be20b771832e133d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hchouhan/", "display_name": "Harish Chouhan"}, "ibericode": {"avatar": "https://secure.gravatar.com/avatar/aa5fd5bb40d388381ac3e3944ad4e43752660919412d2d1a6dde86c55c6bd112?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ibericode/", "display_name": "ibericode"}, "dvankooten": {"avatar": "https://secure.gravatar.com/avatar/f8836eece576026e99b8d35323043da4431ffd244efa961fa07f52ea414c2811?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dvankooten/", "display_name": "Danny van Kooten"}}, "last_updated": "2025-10-21 7:42am GMT", "preview_link": "https://wordpress.org/plugins/mailchimp-for-wp/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.10.8.zip", "author_profile": "https://profiles.wordpress.org/dvankooten/", "business_model": false, "repository_url": "", "upgrade_notice": {"3.0.3": "

    Minor improvements and re-added support for Goodbye Captcha integration.

    "}, "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f7f4-7237-a6df-e56959996d17", "name": "MC4WP: Mailchimp for WordPress", "slug": "mailchimp-for-wp", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761032520, "version": "4.10.8"}, "support_threads": 9, "requires_plugins": [], "short_description": "The #1 Mailchimp plugin for WordPress. Allows you to add a multitude of newsletter sign-up methods to your site.", "author_block_count": 1, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 9}'); -INSERT INTO public.plugins VALUES ('019a30c1-6624-70bb-b619-0768ca14bc20', 'maintenance', 'Maintenance', 'Great looking maintenance, coming soon & under construction pages. Put your site under maintenance in minutes.', '

    Maintenance plugin allows the WordPress site administrator to close the website for maintenance, enable “503 Service temporarily unavailable”, set a temporary page with authorization, which can be edited via the plugin settings. Easy customize the good look on all devices. Add your logo, background image, select the desired color, add text. Maintenance uses Bunny Fonts for EU GDPR compliance.

    -

    Need pre-made themes and over 3 million free images to build maintenance, coming soon & landing pages faster? Have a look at WP Maintenance PRO plugin.

    -

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL.

    -

    Features

    -
      -
    • retina ready HTML/CSS layout
    • -
    • Full-screen background (Backstretch)
    • -
    • Blur background effect
    • -
    • Upload your own logo
    • -
    • Configurable colors: fonts, icons, background
    • -
    • Customize title, headline, text
    • -
    • User login on frontend
    • -
    • Admin bar status
    • -
    • 503 error on/off
    • -
    • Google analytics support
    • -
    • Exclude selected pages from Maintenance mode
    • -
    • Support for all popular caching plugins
    • -
    • mtnc_load_maintenance_page_for_this_user filter for modifying show sees the maintenance page
    • -
    -

    Support

    -

    If you have any problems, questions or recommendations about WP Maintenance please open a ticket in the official support forum. We answer all questions within hours!
    -Want to say “thank you”? Please leave a review.

    -

    GDPR Compatibility

    -

    We are not lawyers. Please do not take any of the following as legal advice.
    -If you don’t opt to use Bunny Fonts and don’t use Google Analytics then no resources are loaded or shared with 3rd parties. And nothing is tracked. Opting to use any of those services will result in data sharing/tracking as described in their terms of service.
    -If you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    -', '4.18', 'WebFactory', '4.0', '5.2', '6.8.3', 'https://downloads.wordpress.org/plugin/maintenance.4.18.zip', '2012-05-31 00:00:00+00', '2025-07-31 05:55:00+00', 'https://profiles.wordpress.org/webfactory/', 90, 836, 6, 6, 1000000, 15211089, 'https://wpmaintenancemode.com/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/maintenance/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Maintenance", "slug": "maintenance", "tags": {"coming-soon": "coming soon", "maintenance": "maintenance", "coming-soon-page": "coming soon page", "maintenance-mode": "maintenance mode", "maintenance-page": "maintenance page"}, "added": "2012-05-31", "icons": {"1x": "https://ps.w.org/maintenance/assets/icon-128x128.png?rev=2689583", "2x": "https://ps.w.org/maintenance/assets/icon-256x256.png?rev=2689583"}, "author": "WebFactory", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/maintenance/assets/banner-772x250.png?rev=1637471", "high": false}, "ratings": {"1": 71, "2": 24, "3": 16, "4": 34, "5": 691}, "version": "4.18", "homepage": "https://wpmaintenancemode.com/", "requires": "4.0", "sections": {"faq": "\n
    \nI have activated plugin and don’t see any changes, looks like plugin is not working.\n\n

    \n

    Try to check in different browser. If you a logged as WordPress user you see the website in normal mode.

    \n

    \n
    \nWill my site remain visible to search engines while maintenance mode is on?\n\n

    \n

    The site will not be visible to search engines only if “503 Service Temporarily Unavailable” option is enabled.

    \n

    \n
    \nWhere can I find out the username and password to get to the site?\n\n

    \n

    You can use your “normal” WP administrator access or create a new user in WordPress dashboard – Users.

    \n

    \n
    \nIf I incorrectly write a login and password I will see the error on the page wp-login?\n\n

    \n

    No, it will be display error on current maintenance page, without redirect to wp-login page.

    \n

    \n
    \nI haven’t found an answer to my question, what should I do?\n\n

    \n

    Please post the question on the support forum.

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    cant deactivate! Nightmare!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mariannehalavage on September 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I cannot deactivate this even when I delete the plugin including from file manager! Terrible. A nightmare!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Just what is needed, nothing extra

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy genepine on July 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works fine, easy to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Blocks API

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bernardberry646 on July 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Blocks API

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jewalker on June 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is good and the support forum is quick to help

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    works but full of bloat

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jolanxbl on March 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Doesn''t use your site''s fonts
    Ignores the \"Page Title\" field but displays site name (I used css to disable this).
    Crops the top and bottom of the background & darkens it by 40%.
    Page theme is paywalled so I just made the entire page as a background image instead.

    \n\n\n\n

    Despite all its advertised features, I only used background and background color, (and css to get around the paywall), because formatting the layout would have been more work that simply finishing the website. Frankly, I''m surprised that they didn''t seal away the CSS like Elementor does.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Website does not load

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pablopergara on March 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The website can not be accessed, and it is easy to activate and deactivate but when active it does not load. It only shows a white spinning cogwheel on a black background.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Exclusion Feature Make life Easier

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy itsjanel on January 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am not ready to launch my site, but I am having issues that need attention via tech support and they need the page I am having issues with open. I was happy to see that I could use the Exclusion feature.

    \n\n\n\n

    Happy...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Maintenance mode wont go away

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shirleyrma on January 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Set my site to Maintenance, wording under renovation. Now I want to move forward but it wont come out of maintenance mode. Cleared all ache no go, Webfactory wont do support because it was a free installation. Why not have a small charge for the app instead of giving a lousy app free that in my opinion and experience wont work. Now I have to set my site back to default and add back my other app. Ugh.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Can corrupt your website

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy seif2788 on January 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I had a bug, which isn''t usually a problem if there is documentation or support, i have lost a page in my wordpress website, i wouldn''t recommand this plugin, as it can corrupt your website

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Should not turn maintenance mode on by default

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy moonwalk (j0321) on December 16, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    You should not turn maintenance mode on by default once the plugin is installed and activated. It should be a setting that site admins can manually turned on. Imaging having to install this plugin on an eCommerce site to configure the maintenance mode for later use, and when the plugin is activated, it takes the site into maintenance mode....

    \n
    \n
    \n", "changelog": "

    v4.18

    \n
      \n
    • 2025/07/31
    • \n
    • improved mobile resposiveness
    • \n
    \n

    v4.17

    \n
      \n
    • 2025/01/22
    • \n
    • fixed Show some love option not saving
    • \n
    \n

    v4.16

    \n
      \n
    • 2025/01/10
    • \n
    • updated Google Analytics code
    • \n
    • added skip-lazy class to background image to fix Autoptimize compatibility
    • \n
    \n

    v4.15

    \n
      \n
    • 2024/10/22
    • \n
    • fixed bug with some options not being saved
    • \n
    \n

    v4.14

    \n
      \n
    • 2024/10/17
    • \n
    • excluded posts/pages not saving bug fix
    • \n
    \n

    v4.13

    \n
      \n
    • 2024/10/13
    • \n
    • minor security fixes
    • \n
    \n

    v4.12

    \n
      \n
    • 2024/06/07
    • \n
    • minor bug fixes
    • \n
    \n

    v4.09

    \n
      \n
    • 2024/06/03
    • \n
    • added Weglot support
    • \n
    \n

    v4.08

    \n
      \n
    • 2023/08/31
    • \n
    • fixed reset password URL changed if Maintenance is off
    • \n
    \n

    v4.07

    \n
      \n
    • 2022/05/06
    • \n
    • replaced Google Fonts with the privacy-oriented and GDPR compliant Bunny Fonts
    • \n
    • minor fix for image field
    • \n
    \n

    v4.06

    \n
      \n
    • 2022/05/06
    • \n
    • introduction of the PRO version
    • \n
    \n

    v4.05

    \n
      \n
    • 2022/01/04
    • \n
    • bug fix for retina image
    • \n
    • security fixes
    • \n
    • ad for our free WP Force SSL plugin
    • \n
    \n

    v4.03

    \n
      \n
    • 2021/07/18
    • \n
    • security fixes
    • \n
    • checked WP 5.8 compatibility
    • \n
    \n

    v4.02

    \n
      \n
    • 2021/03/06
    • \n
    • JS fixes on frontend
    • \n
    • Contact Form 7 conflict fix
    • \n
    \n

    v4.01

    \n
      \n
    • 2021/02/20
    • \n
    • added support for Cache Enabler plugin
    • \n
    • fixed a bug when background image isn’t defined
    • \n
    • fixed issue on sites with large numbers of posts/pages/CPTs
    • \n
    \n

    v4.0

    \n
      \n
    • 2021/01/30
    • \n
    • added flyout menu
    • \n
    • added mtnc_load_maintenance_page_for_this_user filter
    • \n
    \n

    v3.99

    \n
      \n
    • 2021/01/13
    • \n
    • minor fixes
    • \n
    • removed promo for WP 301 Redirects
    • \n
    \n

    v3.97

    \n
      \n
    • 2020/10/02
    • \n
    • minor fixes
    • \n
    • added promo for WP 301 Redirects
    • \n
    \n

    v3.96

    \n
      \n
    • 2020/08/19
    • \n
    • “headers already sent” bug fixed
    • \n
    \n

    v3.95

    \n
      \n
    • 2020/08/14
    • \n
    • bug fixes for WP v5.5
    • \n
    \n

    v3.90

    \n
      \n
    • 2020/05/30
    • \n
    • bug fixes
    • \n
    • removed integration with Amelia Booking
    • \n
    • added support for WP Rocket Cache plugin
    • \n
    • fixed blur issue
    • \n
    \n

    v3.85

    \n
      \n
    • 2019/11/28
    • \n
    • bug fixes
    • \n
    • added integration with Amelia Booking
    • \n
    • added support for Hummingbird Cache plugin
    • \n
    \n

    v3.80

    \n
      \n
    • 2019/09/25
    • \n
    • numerous bug fixes
    • \n
    • added preview button
    • \n
    • 400,000 installations; 3,790,000 downloads
    • \n
    • for older changelog entries please refer to https://wpmaintenancemode.com/old-changelog.txt
    • \n
    \n", "description": "

    Maintenance plugin allows the WordPress site administrator to close the website for maintenance, enable “503 Service temporarily unavailable”, set a temporary page with authorization, which can be edited via the plugin settings. Easy customize the good look on all devices. Add your logo, background image, select the desired color, add text. Maintenance uses Bunny Fonts for EU GDPR compliance.

    \n

    Need pre-made themes and over 3 million free images to build maintenance, coming soon & landing pages faster? Have a look at WP Maintenance PRO plugin.

    \n

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL.

    \n

    Features

    \n
      \n
    • retina ready HTML/CSS layout
    • \n
    • Full-screen background (Backstretch)
    • \n
    • Blur background effect
    • \n
    • Upload your own logo
    • \n
    • Configurable colors: fonts, icons, background
    • \n
    • Customize title, headline, text
    • \n
    • User login on frontend
    • \n
    • Admin bar status
    • \n
    • 503 error on/off
    • \n
    • Google analytics support
    • \n
    • Exclude selected pages from Maintenance mode
    • \n
    • Support for all popular caching plugins
    • \n
    • mtnc_load_maintenance_page_for_this_user filter for modifying show sees the maintenance page
    • \n
    \n

    Support

    \n

    If you have any problems, questions or recommendations about WP Maintenance please open a ticket in the official support forum. We answer all questions within hours!
    \nWant to say “thank you”? Please leave a review.

    \n

    GDPR Compatibility

    \n

    We are not lawyers. Please do not take any of the following as legal advice.
    \nIf you don’t opt to use Bunny Fonts and don’t use Google Analytics then no resources are loaded or shared with 3rd parties. And nothing is tracked. Opting to use any of those services will result in data sharing/tracking as described in their terms of service.
    \nIf you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    \n", "screenshots": "
    1. \"Maintenance

      Maintenance page with default design

    2. \"Log

      Log in form is built into the maintenance page

    3. \"Maintenance

      Maintenance plugin options page

    ", "installation": "

    Follow the usual routine;

    \n
      \n
    1. Open WordPress admin, go to Plugins, click Add New
    2. \n
    3. Enter “maintenance” in search and hit Enter
    4. \n
    5. Locate the Maintenance plugin by searching for our mascot, click “Install Now”
    6. \n
    7. Activate & open plugin’s settings page located in the main WP admin menu
    8. \n
    \n

    Or if needed, upload manually;

    \n
      \n
    1. Download the plugin.
    2. \n
    3. Unzip it and upload to /wp-content/plugins/
    4. \n
    5. Open WordPress admin – Plugins and click “Activate” next to the plugin
    6. \n
    7. Activate & open plugin’s settings page located in the main WP admin menu
    8. \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/maintenance.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/maintenance.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/maintenance.1.2.zip", "2.0": "https://downloads.wordpress.org/plugin/maintenance.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/maintenance.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/maintenance.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/maintenance.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/maintenance.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/maintenance.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/maintenance.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/maintenance.2.7.zip", "3.0": "https://downloads.wordpress.org/plugin/maintenance.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/maintenance.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/maintenance.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/maintenance.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/maintenance.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/maintenance.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/maintenance.3.6.zip", "3.8": "https://downloads.wordpress.org/plugin/maintenance.3.8.zip", "4.0": "https://downloads.wordpress.org/plugin/maintenance.4.0.zip", "3.85": "https://downloads.wordpress.org/plugin/maintenance.3.85.zip", "3.90": "https://downloads.wordpress.org/plugin/maintenance.3.90.zip", "3.95": "https://downloads.wordpress.org/plugin/maintenance.3.95.zip", "3.96": "https://downloads.wordpress.org/plugin/maintenance.3.96.zip", "3.97": "https://downloads.wordpress.org/plugin/maintenance.3.97.zip", "3.99": "https://downloads.wordpress.org/plugin/maintenance.3.99.zip", "4.01": "https://downloads.wordpress.org/plugin/maintenance.4.01.zip", "4.02": "https://downloads.wordpress.org/plugin/maintenance.4.02.zip", "4.03": "https://downloads.wordpress.org/plugin/maintenance.4.03.zip", "4.05": "https://downloads.wordpress.org/plugin/maintenance.4.05.zip", "4.06": "https://downloads.wordpress.org/plugin/maintenance.4.06.zip", "4.07": "https://downloads.wordpress.org/plugin/maintenance.4.07.zip", "4.08": "https://downloads.wordpress.org/plugin/maintenance.4.08.zip", "4.10": "https://downloads.wordpress.org/plugin/maintenance.4.10.zip", "4.12": "https://downloads.wordpress.org/plugin/maintenance.4.12.zip", "4.13": "https://downloads.wordpress.org/plugin/maintenance.4.13.zip", "4.14": "https://downloads.wordpress.org/plugin/maintenance.4.14.zip", "4.15": "https://downloads.wordpress.org/plugin/maintenance.4.15.zip", "4.16": "https://downloads.wordpress.org/plugin/maintenance.4.16.zip", "4.17": "https://downloads.wordpress.org/plugin/maintenance.4.17.zip", "4.18": "https://downloads.wordpress.org/plugin/maintenance.4.18.zip", "1.1.1": "https://downloads.wordpress.org/plugin/maintenance.1.1.1.zip", "1.2.1": "https://downloads.wordpress.org/plugin/maintenance.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/maintenance.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/maintenance.1.2.3.zip", "2.0.1": "https://downloads.wordpress.org/plugin/maintenance.2.0.1.zip", "2.1.1": "https://downloads.wordpress.org/plugin/maintenance.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/maintenance.2.1.2.zip", "2.2.1": "https://downloads.wordpress.org/plugin/maintenance.2.2.1.zip", "2.7.1": "https://downloads.wordpress.org/plugin/maintenance.2.7.1.zip", "3.1.1": "https://downloads.wordpress.org/plugin/maintenance.3.1.1.zip", "3.4.1": "https://downloads.wordpress.org/plugin/maintenance.3.4.1.zip", "3.5.1": "https://downloads.wordpress.org/plugin/maintenance.3.5.1.zip", "3.6.1": "https://downloads.wordpress.org/plugin/maintenance.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/maintenance.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/maintenance.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/maintenance.3.6.4.zip", "3.7.0": "https://downloads.wordpress.org/plugin/maintenance.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/maintenance.3.7.1.zip", "trunk": "https://downloads.wordpress.org/plugin/maintenance.zip"}, "downloaded": 15211089, "description": "

    Maintenance plugin allows the WordPress site administrator to close the website for maintenance, enable “503 Service temporarily unavailable”, set a temporary page with authorization, which can be edited via the plugin settings. Easy customize the good look on all devices. Add your logo, background image, select the desired color, add text. Maintenance uses Bunny Fonts for EU GDPR compliance.

    \n

    Need pre-made themes and over 3 million free images to build maintenance, coming soon & landing pages faster? Have a look at WP Maintenance PRO plugin.

    \n

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL.

    \n

    Features

    \n
      \n
    • retina ready HTML/CSS layout
    • \n
    • Full-screen background (Backstretch)
    • \n
    • Blur background effect
    • \n
    • Upload your own logo
    • \n
    • Configurable colors: fonts, icons, background
    • \n
    • Customize title, headline, text
    • \n
    • User login on frontend
    • \n
    • Admin bar status
    • \n
    • 503 error on/off
    • \n
    • Google analytics support
    • \n
    • Exclude selected pages from Maintenance mode
    • \n
    • Support for all popular caching plugins
    • \n
    • mtnc_load_maintenance_page_for_this_user filter for modifying show sees the maintenance page
    • \n
    \n

    Support

    \n

    If you have any problems, questions or recommendations about WP Maintenance please open a ticket in the official support forum. We answer all questions within hours!
    \nWant to say “thank you”? Please leave a review.

    \n

    GDPR Compatibility

    \n

    We are not lawyers. Please do not take any of the following as legal advice.
    \nIf you don’t opt to use Bunny Fonts and don’t use Google Analytics then no resources are loaded or shared with 3rd parties. And nothing is tracked. Opting to use any of those services will result in data sharing/tracking as described in their terms of service.
    \nIf you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    \n", "donate_link": "", "num_ratings": 836, "screenshots": {"1": {"src": "https://ps.w.org/maintenance/assets/screenshot-1.jpg?rev=2162740", "caption": "Maintenance page with default design"}, "2": {"src": "https://ps.w.org/maintenance/assets/screenshot-2.jpg?rev=2162740", "caption": "Log in form is built into the maintenance page"}, "3": {"src": "https://ps.w.org/maintenance/assets/screenshot-3.png?rev=2162740", "caption": "Maintenance plugin options page"}}, "support_url": "https://wordpress.org/support/plugin/maintenance/", "contributors": {"webfactory": {"avatar": "https://secure.gravatar.com/avatar/0128e826bd2acd495936bf252a4f0f80a3263c656cb8d69d9e306e2ea741a251?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/webfactory/", "display_name": "WebFactory"}}, "last_updated": "2025-07-31 5:55am GMT", "preview_link": "", "requires_php": "5.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/maintenance.4.18.zip", "author_profile": "https://profiles.wordpress.org/webfactory/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f80b-7322-946d-c926b0e7ec29", "name": "Maintenance", "slug": "maintenance", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1753941300, "version": "4.18"}, "support_threads": 6, "requires_plugins": [], "short_description": "Great looking maintenance, coming soon & under construction pages. Put your site under maintenance in minutes.", "author_block_count": "1", "author_block_rating": 91.42857142857198, "commercial_support_url": "", "support_threads_resolved": 6}'); -INSERT INTO public.plugins VALUES ('019a30c1-662c-72bf-b8a9-70f77563e954', 'mainwp-child', 'MainWP Child – Securely Connects to the MainWP Dashboard to Manage Multiple Sites', 'MainWP Child establishes a secure link between your WordPress sites and your self-hosted MainWP Dashboard, simplifying site management.', '

    The MainWP Child Plugin securely connects the WordPress sites you want to manage to the MainWP Dashboard.

    -

    The MainWP Child plugin creates a secure connection between your WordPress sites and your self-hosted MainWP Dashboard, enabling you to efficiently manage WP installations from a single, centralized location.

    -

    With MainWP Child and the MainWP Dashboard, you can update themes, plugins, and WordPress core across all connected sites, perform backups and security scans, manage posts, pages, users, and comments in bulk, and integrate with popular plugins like WooCommerce, Yoast SEO, and Wordfence.

    -

    The MainWP Dashboard also offers features for cost tracking and client management, making it an all-in-one solution for agencies and freelancers looking to manage WP sites efficiently. The functionality can be further extended with a growing library of MainWP Add-ons.

    -

    MainWP is the ideal solution for freelancers and agencies managing client sites, developers and designers working on multiple projects, marketers and content managers overseeing various websites, and anyone responsible for maintaining multiple WordPress sites.

    -

    Why Choose MainWP for WordPress Management?

    -

    MainWP is 100% free and open-source, with no monthly fees, even for unlimited sites.

    -

    As a self-hosted solution, it offers maximum control and privacy. MainWP provides comprehensive site management features and is highly customizable with add-ons and developer hooks. The MainWP Child plugin even comes with its own privacy policy to guarantee your privacy while using MainWP.

    -

    All of this makes MainWP the best non-SaaS alternative to ManageWP, InfiniteWP, WPRemote, and WP Umbrella.

    -

    Key Features

    -

    MainWP Child, combined with the MainWP Dashboard, offers secure management of unlimited WordPress sites, one-click updates for plugins, themes, and WordPress core, automated backups and security monitoring, bulk management of posts, pages, users, and comments, white-labeling and custom branding options, and powerful add-ons for WooCommerce, Yoast SEO, Wordfence, and more.

    -

    Expand Your MainWP Dashboard with Add-ons

    -

    MainWP offers a growing library of add-ons that add advanced functionality to your Dashboard. From client reporting to SEO management, MainWP add-ons provide the tools you need to deliver top-notch service to your clients.

    -

    Join the MainWP Community

    -

    MainWP is more than just a plugin; it’s a thriving community of WordPress professionals. Join our MainWP Users Facebook Group to connect with other users, share advice, and stay updated on the latest features and add-ons.

    -

    Developer-Friendly

    -

    MainWP is built with developers in mind. We provide extensive documentation, hooks, and an API to help you create custom extensions and integrations for the MainWP platform. We have a site at MainWP.dev dedicated to MainWP developers.

    -

    Get Started with MainWP Today

    -

    Take control of your WordPress site management with MainWP and the MainWP Child plugin. With its powerful features, unlimited site connections, and user-friendly interface, MainWP is the smart choice for anyone managing multiple WordPress sites.

    -

    Learn More About MainWP

    - -', '5.4.0.15', 'mainwp', '5.4', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.15.zip', '2013-08-27 00:00:00+00', '2025-10-07 15:57:00+00', 'https://profiles.wordpress.org/mainwp/', 100, 69, 0, 0, 700000, 38164253, 'https://mainwp.com/', NULL, 'commercial', NULL, 'https://wordpress.org/support/plugin/mainwp-child/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "MainWP Child – Securely Connects to the MainWP Dashboard to Manage Multiple Sites", "slug": "mainwp-child", "tags": {"update": "update", "backups": "backups", "security": "security", "monitoring": "monitoring", "site-management": "site management"}, "added": "2013-08-27", "icons": {"1x": "https://ps.w.org/mainwp-child/assets/icon-128x128.png?rev=2734948", "2x": "https://ps.w.org/mainwp-child/assets/icon-256x256.png?rev=2734948"}, "author": "mainwp", "rating": 100, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/mainwp-child/assets/banner-772x250.png?rev=3119259", "high": "https://ps.w.org/mainwp-child/assets/banner-1544x500.png?rev=3119259"}, "ratings": {"1": 0, "2": 1, "3": 0, "4": 0, "5": 68}, "version": "5.4.0.15", "homepage": "https://mainwp.com/", "requires": "5.4", "sections": {"faq": "\n
    \nIs the MainWP Child Plugin required to use MainWP?\n\n

    \n

    Yes, the MainWP Child plugin must be installed on each WordPress site you want to connect to your MainWP Dashboard.

    \n

    \n
    \nCan I hide the MainWP Child plugin from the WordPress admin?\n\n

    \n

    Yes, you can use the MainWP White Label extension to hide the MainWP Child plugin from the WordPress admin on your connected sites.

    \n

    \n
    \nHow does MainWP compare to ManageWP?\n\n

    \n

    While MainWP and ManageWP offer similar features, MainWP is self-hosted and open-source, providing more control and flexibility. Learn more about the differences between MainWP and ManageWP.

    \n

    \n
    \nHow does MainWP compare to WP Umbrella?\n\n

    \n

    Both MainWP and WP Umbrella offer features for managing multiple WordPress sites, but MainWP is self-hosted and open-source, while WP Umbrella is a SaaS platform hosted on their servers. MainWP’s open architecture provides greater control and flexibility. Discover more differences between MainWP and WP Umbrella.

    \n

    \n
    \nHow does MainWP compare to InfiniteWP?\n\n

    \n

    MainWP and InfiniteWP are both self-hosted WordPress management solutions. However, MainWP is open-source, allowing for code review and extensibility, while InfiniteWP’s Admin Panel is not open-source and obfuscates its code. MainWP also offers a comprehensive set of features tailored for agencies and freelancers managing client sites. Explore the differences between MainWP and InfiniteWP.

    \n

    \n
    \nHow does MainWP compare to WPRemote?\n\n

    \n

    MainWP and WPRemote are both WordPress management solutions, but they differ in their approach and feature set. MainWP is a self-hosted, open-source plugin that gives you full control over your data and offers a wide range of features. WP Remote is a cloud-based service that stores your data on its servers, which may be a concern for some users who prioritize data ownership, security, and GDPR. Learn more about the differences between MainWP and WPRemote.

    \n

    \n
    \nIs MainWP secure?\n\n

    \n

    Yes, security is a top priority for MainWP. We adhere to WordPress security best practices, and our code is open-source and available for review on GitHub. We also offer a bug bounty program to encourage responsible disclosure of any security issues. Read more about MainWP Security practices.

    \n

    \n
    \nCan I contribute to MainWP?\n\n

    \n

    Absolutely! MainWP is open-source, and we welcome community contributions. Visit our GitHub repository to get started.

    \n

    \n
    \nHow can I submit an idea for MainWP?\n\n

    \n

    Please follow the steps outlined in the MainWP Feature Requests to submit your idea and allow the MainWP Community to vote on it.

    \n

    \n
    \nWhere can I find more information about MainWP?\n\n

    \n

    We have an extensive FAQ with more questions and answers here.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Metromas (metromas) on May 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    Nice plugin. Useful.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A plugin that meets our expectations.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ahmetbilgic on August 20, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A plugin that meets our expectations. A very nice plugin for managing multiple websites. Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    excellent time saver for managing multiple sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kennethrg on June 14, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I installed this plugin on each of the sites I manage to connect them to my self-hosted MainWP Dashboard. Now I can perform updates and monitor my sites from a single location. It saves a bunch of time and it makes management simple and easy.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Einfach super!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy vonitalz on June 1, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Warum verwende ich das erst jetzt ?!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I just love how much time I save with this plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy FGU Nord / Lars (medieskolen) on April 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just love how easy it is to maintain many websites at once with MainWP

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brilliant plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Chris (Chrok) on June 22, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    This plugin works perfectly. It offers you a very good way to manage your websites. I''ve used other systems before, but MainWP stands head and shoulders above the rest.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best…

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy meisterleise on July 21, 2021\t\t\t

    \n\t\t
    \n\t
    \n\t
    …website manager out there. :D
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    powerful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy moesioli on November 6, 2020\t\t\t

    \n\t\t
    \n\t
    \n\t
    powerful tool for the administration of many WordPress
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin, But...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy c4h10o on October 28, 2020\t\t\t

    \n\t\t
    \n\t
    \n\t
    It is a great plugin, no doubt, but ... sometimes it has flaws that are not easily explained, such as not being able to create the \"uploads\" folder or saying that a certain site already has a link to the plugin, when it is not even installed. Whose fault is it: the wordpress, the plugin or the user? As it is not easily explained I do not know ... for what in doubt, and for everything else that made life easier for me, 5 stars.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent Service

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Lioneur (iadminwp) on November 4, 2019\t\t\t

    \n\t\t
    \n\t
    \n\t
    If you want to keep your data private then this tool will work for you. We are planning to move all our client websites over to MainWP.
    \n
    \n", "changelog": "

    5.4.0.15 – Maintenance Release – 10-7-2025

    \n
      \n
    • Fixed: Resolved an issue where certain Comments activity was not being captured in reports on specific server configurations.
    • \n
    • Updated: Improved output handling in the server information display by removing redundant HTML escaping to enhance performance and code clarity. (PR481) – thanks DAnn2012
    • \n
    • Updated: Changed the Delete Plugin function to use delete_plugins() instead of delete_old_plugin() to ensure all WordPress core actions and hooks are properly triggered during plugin deletion.
    • \n
    \n

    5.4.0.14 – Maintenance Release – 8-26-2025

    \n
      \n
    • Fixed: E_PARSE syntax error caused by arrow function usage.
    • \n
    \n

    5.4.0.13 – Maintenance Release – 8-19-2025

    \n
      \n
    • Fixed: PHP warning for undefined variable $new_version that occurred during WordPress core updates. (#822)
    • \n
    \n

    5.4.0.12 – Maintenance Release – 8-12-2025

    \n
      \n
    • Fixed: Restored compatibility with BackWPup version 5 and later.
    • \n
    • Added: Support for the AccelerateWP plugin in the Cache Control system.
    • \n
    • Updated: Support for the WP-Optimize Premium plugin in the Cache Control system.
    • \n
    \n

    5.4.0.11 – Maintenance Release – 7-8-2025

    \n
      \n
    • Fixed: Corrected the upload filesize limit display message on the “Upload/Clone” page to show the accurate maximum file size.
    • \n
    \n

    5.4.0.10 – Maintenance Release – 6-3-2025

    \n
      \n
    • Fixed: Restored cache and minified file clearing in Cache Control add-on when using WP Fastest Cache plugin.
    • \n
    \n

    5.4.0.9 – Maintenance Release – 5-27-2025

    \n
      \n
    • Fixed: Resolved an issue where sites would lose connection after being cloned and require manual reconnection. (#792)
    • \n
    • Fixed: Corrected the Solid Security plugin hiding feature to ensure complete concealment across all admin areas.
    • \n
    \n

    5.4.0.8 – Maintenance Release – 5-20-2025

    \n
      \n
    • Fixed: Resolved a critical error occurring when updating or installing BackWPup plugin version 5.2.2. The issue was caused by undocumented changes in the plugin. (#789)
    • \n
    \n

    5.4.0.7 – Maintenance Release – 5-13-2025

    \n
      \n
    • Fixed: Resolved caching issue in the mainwp_security option to ensure reliable option retrieval. (#785)
    • \n
    • Added: Introduced batching for plugin vulnerability checks to improve efficiency.
    • \n
    • Added: Implemented scheduled background tasks to continue vulnerability scanning in batches.
    • \n
    • Added: Enabled external customization of client report data via new filter hooks.
    • \n
    • Updated: Enhanced WooCommerce Status data retrieval with compatibility for newer versions. (#780)
    • \n
    • Updated: Improved plugin vulnerability checks by updating the NVD NIST API query to better match plugins, increasing the accuracy of vulnerability detection.
    • \n
    \n

    5.4.0.6 – Maintenance Release – 4-22-2025

    \n
      \n
    • Updated: Implemented the time() function to capture Sites Changes event timestamps instead of a custom method, resolving display issues caused by timezone differences.
    • \n
    • Updated: Implemented wp_get_wp_version() method to retrieve WordPress version instead of using the global $wp_version variable for improved code reliability. (#762)[https://github.com/mainwp/mainwp/issues/762]
    • \n
    \n

    5.4.0.5 – Maintenance Release – 4-15-2025

    \n
      \n
    • Fixed: Site Changes filter “Users” filter showing only some users.
    • \n
    • Fixed: When adding a child site that has never had Wordfence plugin installed, applying settings causes an error (#755).
    • \n
    \n

    5.4.0.4 – Maintenance Release – 4-3-2025

    \n
      \n
    • Fixed: PHP error caused by the disabled posix_getpwuid() function.
    • \n
    • Fixed: Issue with the %site% token not working correctly in UpdraftPlus extension settings.
    • \n
    • Updated: Enhanced WP Core vulnerability checks for better compatibility with the NIST NVD API.
    • \n
    \n

    5.4.0.3 – 3-24-2025

    \n
      \n
    • Fixed: Conflict with the Git Updater plugin
    • \n
    • Fixed: Issue with querying extra data in Non-MainWP Changes logs
    • \n
    \n

    5.4.0.2 – 3-12-2025

    \n
      \n
    • Updated: Site Hardening Inactive themes check now allows one default WordPress theme before raising an alert.
    • \n
    \n

    5.4.0.1 – 3-6-2025

    \n
      \n
    • Fixed: Detection of inactive themes in the Site Hardening process
    • \n
    \n

    5.4 – 3-5-2025

    \n
      \n
    • Added: Support for the new column displaying the child site language as a matching flag.
    • \n
    • Added: Support for the new column warning if a child site is not indexable by search engines.
    • \n
    • Added: Support for the option to select which data to include in the sync process.
    • \n
    • Added: Improved WP Debug Mode status check logic.
    • \n
    • Added: Support for the new Regression Testing extension
    • \n
    • Updated: Site Hardening checks, removing outdated ones and introducing new ones.
    • \n
    \n

    5.3.5 – 2-6-2025

    \n
      \n
    • Added: Pull Request #441 by aamplugin for future AAM integration.
    • \n
    • Added: Support of the “Delay JavaScript Execution” WP Rocket option.
    • \n
    • Updated: Improved the Security Hardening check to better detect if WP_DEBUG is enabled.
    • \n
    \n

    5.3.4 – 1-27-2025

    \n
      \n
    • Security Fix: Improved authentication security to ensure password verification cannot be bypassed on sites where the MainWP Child plugin is active but not connected to a Dashboard and not set to require Unique Security ID verification.
    • \n
    \n

    5.3.3 – 12-27-2024

    \n
      \n
    • Fixed: Incorrect feedback message displayed when running updates.
    • \n
    • Fixed: Issue causing WP Cron scheduled events to fail.
    • \n
    \n

    5.3.2 – 12-26-2024

    \n
      \n
    • Updated: Compatibility with the latest WP Rocket plugin settings.
    • \n
    \n

    5.3.1 – 12-12-2024

    \n
      \n
    • Fixed: Typo in the MainWP Child plugin settings page (#426) – thanks to Isaac Russell
    • \n
    • Added: Support for the new Vulnerability Checker service (#419) – thanks to Asif Zaman
    • \n
    • Updated: WPvivid Backups extension support with new feature improvements (#422) – thanks to LiuGeng399
    • \n
    • Updated: Redirection to the MainWP Child settings page now occurs only when the plugin is activated manually from the Plugins page.
    • \n
    \n

    5.3 – 11-26-2024

    \n
      \n
    • Security Enhancement: Enhanced the pre-connection process with additional security features to address recommendations from a security company. Read more
    • \n
    • Added: Password authorization requirement when connecting a site to enhance security.
    • \n
    • Added: “Clear Connection Data” button to unlock a site for a new connection.
    • \n
    • Added: Automatic deactivation of the MainWP Child plugin after a preset period if the site is not connected to a dashboard.
    • \n
    • Added: Translations for French (fr_FR), Spanish (es_ES), German (de_DE), and Portuguese (pt_BR).
    • \n
    • Updated: Plugin settings page design for improved consistency with the MainWP Dashboard plugin.
    • \n
    • Updated: Resetting of the pubkey value to ensure it remains intact when the plugin is deactivated.
    • \n
    • Updated: Compatibility with the latest WP Rocket plugin settings.
    • \n
    \n

    See Video Changelog

    \n

    See changelog for all versions.

    \n

    5.2.1 – 11-20-2024

    \n
      \n
    • Added: After activating the MainWP plugin, users are now redirected to the MainWP Settings page for a smoother onboarding experience.
    • \n
    • Updated: The Unique Security ID option is now enabled by default to enhance security for all MainWP installations.
    • \n
    \n", "description": "

    The MainWP Child Plugin securely connects the WordPress sites you want to manage to the MainWP Dashboard.

    \n

    The MainWP Child plugin creates a secure connection between your WordPress sites and your self-hosted MainWP Dashboard, enabling you to efficiently manage WP installations from a single, centralized location.

    \n

    With MainWP Child and the MainWP Dashboard, you can update themes, plugins, and WordPress core across all connected sites, perform backups and security scans, manage posts, pages, users, and comments in bulk, and integrate with popular plugins like WooCommerce, Yoast SEO, and Wordfence.

    \n

    The MainWP Dashboard also offers features for cost tracking and client management, making it an all-in-one solution for agencies and freelancers looking to manage WP sites efficiently. The functionality can be further extended with a growing library of MainWP Add-ons.

    \n

    MainWP is the ideal solution for freelancers and agencies managing client sites, developers and designers working on multiple projects, marketers and content managers overseeing various websites, and anyone responsible for maintaining multiple WordPress sites.

    \n

    Why Choose MainWP for WordPress Management?

    \n

    MainWP is 100% free and open-source, with no monthly fees, even for unlimited sites.

    \n

    As a self-hosted solution, it offers maximum control and privacy. MainWP provides comprehensive site management features and is highly customizable with add-ons and developer hooks. The MainWP Child plugin even comes with its own privacy policy to guarantee your privacy while using MainWP.

    \n

    All of this makes MainWP the best non-SaaS alternative to ManageWP, InfiniteWP, WPRemote, and WP Umbrella.

    \n

    Key Features

    \n

    MainWP Child, combined with the MainWP Dashboard, offers secure management of unlimited WordPress sites, one-click updates for plugins, themes, and WordPress core, automated backups and security monitoring, bulk management of posts, pages, users, and comments, white-labeling and custom branding options, and powerful add-ons for WooCommerce, Yoast SEO, Wordfence, and more.

    \n

    Expand Your MainWP Dashboard with Add-ons

    \n

    MainWP offers a growing library of add-ons that add advanced functionality to your Dashboard. From client reporting to SEO management, MainWP add-ons provide the tools you need to deliver top-notch service to your clients.

    \n

    Join the MainWP Community

    \n

    MainWP is more than just a plugin; it’s a thriving community of WordPress professionals. Join our MainWP Users Facebook Group to connect with other users, share advice, and stay updated on the latest features and add-ons.

    \n

    Developer-Friendly

    \n

    MainWP is built with developers in mind. We provide extensive documentation, hooks, and an API to help you create custom extensions and integrations for the MainWP platform. We have a site at MainWP.dev dedicated to MainWP developers.

    \n

    Get Started with MainWP Today

    \n

    Take control of your WordPress site management with MainWP and the MainWP Child plugin. With its powerful features, unlimited site connections, and user-friendly interface, MainWP is the smart choice for anyone managing multiple WordPress sites.

    \n

    Learn More About MainWP

    \n\n", "screenshots": "
    1. \"Sites

      Sites - Overview

    2. \"Sites

      Sites - Manage Sites

    3. \"Sites

      Sites - Add a New Site

    4. \"Sites

      Sites - Manage Plugins

    5. \"Sites

      Sites - Manage Posts

    6. \"Sites

      Sites - Manage Updates

    7. \"Clients

      Clients - Manage Clients

    8. \"Cost

      Cost Tracker - Cost Summary

    9. \"Cost

      Cost Tracker - Manage Costs

    10. \"Dashboard

      Dashboard Insights

    ", "installation": "

    How the MainWP Child Plugin Works
    \nInstall and activate the MainWP Dashboard plugin on a dedicated WordPress site.

    \n

    Install the MainWP Child plugin (this plugin) on the WordPress sites you want to connect to your MainWP Dashboard.
    \nActivate the plugin.
    \nFollow the Getting Started Guide to connect your sites to your MainWP Dashboard.

    \n"}, "versions": {"3.5": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.zip", "4.0": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.zip", "4.5": "https://downloads.wordpress.org/plugin/mainwp-child.4.5.zip", "4.6": "https://downloads.wordpress.org/plugin/mainwp-child.4.6.zip", "5.0": "https://downloads.wordpress.org/plugin/mainwp-child.5.0.zip", "5.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.1.zip", "5.2": "https://downloads.wordpress.org/plugin/mainwp-child.5.2.zip", "5.3": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.zip", "5.4": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.zip", "3.4.6": "https://downloads.wordpress.org/plugin/mainwp-child.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/plugin/mainwp-child.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/plugin/mainwp-child.3.4.8.zip", "3.4.9": "https://downloads.wordpress.org/plugin/mainwp-child.3.4.9.zip", "3.5.1": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.7.zip", "4.0.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.7.zip", "4.1.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.9.zip", "4.2.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.5.zip", "4.2.6": "https://downloads.wordpress.org/plugin/mainwp-child.4.2.6.zip", "4.3.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.3.1.zip", "4.4.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.1.zip", "4.5.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.5.3.zip", "5.0.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.0.1.zip", "5.1.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.1.1.zip", "5.2.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.2.1.zip", "5.3.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.3.zip", "5.3.4": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.4.zip", "5.3.5": "https://downloads.wordpress.org/plugin/mainwp-child.5.3.5.zip", "trunk": "https://downloads.wordpress.org/plugin/mainwp-child.zip", "4.1.10": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.10.zip", "3.4.7.1": "https://downloads.wordpress.org/plugin/mainwp-child.3.4.7.1.zip", "3.5.4.1": "https://downloads.wordpress.org/plugin/mainwp-child.3.5.4.1.zip", "4.0.5.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.5.1.zip", "4.0.6.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.6.1.zip", "4.0.6.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.6.2.zip", "4.0.7.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.7.1.zip", "4.0.7.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.0.7.2.zip", "4.1.3.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.3.1.zip", "4.1.6.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.6.1.zip", "4.1.7.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.1.7.1.zip", "4.3.0.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.3.0.1.zip", "4.4.0.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.1.zip", "4.4.0.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.2.zip", "4.4.0.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.3.zip", "4.4.0.4": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.4.zip", "4.4.1.1": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.1.1.zip", "4.4.1.2": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.1.2.zip", "4.4.1.3": "https://downloads.wordpress.org/plugin/mainwp-child.4.4.1.3.zip", "5.0.1.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.0.1.1.zip", "5.4.0.1": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.1.zip", "5.4.0.2": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.2.zip", "5.4.0.3": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.3.zip", "5.4.0.4": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.4.zip", "5.4.0.5": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.5.zip", "5.4.0.6": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.6.zip", "5.4.0.7": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.7.zip", "5.4.0.8": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.8.zip", "5.4.0.9": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.9.zip", "5.4.0.10": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.10.zip", "5.4.0.11": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.11.zip", "5.4.0.12": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.12.zip", "5.4.0.13": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.13.zip", "5.4.0.14": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.14.zip", "5.4.0.15": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.15.zip"}, "downloaded": 38164253, "description": "

    The MainWP Child Plugin securely connects the WordPress sites you want to manage to the MainWP Dashboard.

    \n

    The MainWP Child plugin creates a secure connection between your WordPress sites and your self-hosted MainWP Dashboard, enabling you to efficiently manage WP installations from a single, centralized location.

    \n

    With MainWP Child and the MainWP Dashboard, you can update themes, plugins, and WordPress core across all connected sites, perform backups and security scans, manage posts, pages, users, and comments in bulk, and integrate with popular plugins like WooCommerce, Yoast SEO, and Wordfence.

    \n

    The MainWP Dashboard also offers features for cost tracking and client management, making it an all-in-one solution for agencies and freelancers looking to manage WP sites efficiently. The functionality can be further extended with a growing library of MainWP Add-ons.

    \n

    MainWP is the ideal solution for freelancers and agencies managing client sites, developers and designers working on multiple projects, marketers and content managers overseeing various websites, and anyone responsible for maintaining multiple WordPress sites.

    \n

    Why Choose MainWP for WordPress Management?

    \n

    MainWP is 100% free and open-source, with no monthly fees, even for unlimited sites.

    \n

    As a self-hosted solution, it offers maximum control and privacy. MainWP provides comprehensive site management features and is highly customizable with add-ons and developer hooks. The MainWP Child plugin even comes with its own privacy policy to guarantee your privacy while using MainWP.

    \n

    All of this makes MainWP the best non-SaaS alternative to ManageWP, InfiniteWP, WPRemote, and WP Umbrella.

    \n

    Key Features

    \n

    MainWP Child, combined with the MainWP Dashboard, offers secure management of unlimited WordPress sites, one-click updates for plugins, themes, and WordPress core, automated backups and security monitoring, bulk management of posts, pages, users, and comments, white-labeling and custom branding options, and powerful add-ons for WooCommerce, Yoast SEO, Wordfence, and more.

    \n

    Expand Your MainWP Dashboard with Add-ons

    \n

    MainWP offers a growing library of add-ons that add advanced functionality to your Dashboard. From client reporting to SEO management, MainWP add-ons provide the tools you need to deliver top-notch service to your clients.

    \n

    Join the MainWP Community

    \n

    MainWP is more than just a plugin; it’s a thriving community of WordPress professionals. Join our MainWP Users Facebook Group to connect with other users, share advice, and stay updated on the latest features and add-ons.

    \n

    Developer-Friendly

    \n

    MainWP is built with developers in mind. We provide extensive documentation, hooks, and an API to help you create custom extensions and integrations for the MainWP platform. We have a site at MainWP.dev dedicated to MainWP developers.

    \n

    Get Started with MainWP Today

    \n

    Take control of your WordPress site management with MainWP and the MainWP Child plugin. With its powerful features, unlimited site connections, and user-friendly interface, MainWP is the smart choice for anyone managing multiple WordPress sites.

    \n

    Learn More About MainWP

    \n\n", "donate_link": "", "num_ratings": 69, "screenshots": {"1": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-1.jpg?rev=3051248", "caption": "Sites - Overview"}, "2": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-2.jpg?rev=3051248", "caption": "Sites - Manage Sites"}, "3": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-3.jpg?rev=3051248", "caption": "Sites - Add a New Site"}, "4": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-4.jpg?rev=3051248", "caption": "Sites - Manage Plugins"}, "5": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-5.jpg?rev=3051248", "caption": "Sites - Manage Posts"}, "6": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-6.jpg?rev=3051248", "caption": "Sites - Manage Updates"}, "7": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-7.jpg?rev=3051248", "caption": "Clients - Manage Clients"}, "8": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-8.jpg?rev=3051248", "caption": "Cost Tracker - Cost Summary"}, "9": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-9.jpg?rev=3051248", "caption": "Cost Tracker - Manage Costs"}, "10": {"src": "https://ps.w.org/mainwp-child/assets/screenshot-10.jpg?rev=3051248", "caption": "Dashboard Insights"}}, "support_url": "https://wordpress.org/support/plugin/mainwp-child/", "contributors": {"mainwp": {"avatar": "https://secure.gravatar.com/avatar/1a02e49e3a7cd503482a55a0bb482e49cc84f192d2d0209431c7de8957debacd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mainwp/", "display_name": "mainwp"}}, "last_updated": "2025-10-07 3:57pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/mainwp-child.5.4.0.15.zip", "author_profile": "https://profiles.wordpress.org/mainwp/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f813-7390-888a-d40b60f1124c", "name": "MainWP Child – Securely Connects to the MainWP Dashboard to Manage Multiple Sites", "slug": "mainwp-child", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1759852620, "version": "5.4.0.15"}, "support_threads": 0, "requires_plugins": [], "short_description": "MainWP Child establishes a secure link between your WordPress sites and your self-hosted MainWP Dashboard, simplifying site management.", "author_block_count": 0, "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-6635-7003-ae3b-9131ee337c53', 'ninja-forms', 'Ninja Forms – The Contact Form Builder That Grows With You', 'The 100% beginner friendly WordPress form builder. Drag & drop form fields to build beautiful, professional contact forms in minutes.', '

    Forms that grow with your business

    -

    As one of WordPress’ oldest form builders, we’re proud to serve users from around the world, from all walks of life, and from different stages of online growth. From the small businesses and local nonprofits that make up the core Ninja Forms user base to universities, hospitals, and even Fortune 500 companies, we’ll scale with you from startup to wherever you’re aiming for.

    -

    We’re committed to offering as many free, open source tools as we can get away with to back you up in the extremely price-conscious early days. As you grow, pick and choose only the premium features you need as you need them. We’ll grow with you from there for as far as you want to take us.

    -

    We’re also committed to respecting your privacy and time. No unsolicited emails or aggressive marketing. No paywalling basic features or scraping private data. We offer a fully staffed team of support experts and a comprehensive library of plugin documentation for all users, free and paid, to help keep you collecting the submissions that move your business forward.

    -

    We look forward to seeing where you’ll take us!

    -

    All the basics without the paywalls

    -

    When you’re starting out, even little expenses add up quickly. That’s why Ninja Forms core will always be free and open source. It’s why we try to offer as much in core as we can to cover your basic needs at no cost. Here’s a peek at some of what core has to offer.

    -

    Form Building Features
    -– 24+ FREE drag-and-drop form fields
    -– Customize fields with default values, specialty text, and much more
    -– Favorite and reuse any customized field
    -– Calculations: assign values to fields and calculate totals
    -– Merge tag system for pre-populating fields and passing field data between forms
    -– Configurable per-field submission storage for easy GDPR compliance
    -– Email notifications on submission (as many as you like, free!)
    -– Customizable success messages (supports links and downloads!)
    -– Redirect to new page after submission
    -– Customize callbacks to WP action hooks on submit
    -– Spam Protection: full integration with Google reCAPTCHA & Akismet
    -– Configurable form display settings
    -– Form restriction settings
    -– Unique field validation
    -– Unlimited forms & submissions
    -– Form Templates
    -– Form Import / Export
    -– Shareable forms (share the form via link without it being attached to a page)
    -– No aggressive marketing, pushy review asks, constant popups, or unsolicited emails
    -– Responsive and mobile friendly
    -– SEO friendly

    -

    Submission Management Features
    -– Unlimited FREE submissions
    -– Configurable submissions display
    -– Search and filter by field
    -– Search and filter by submitted value
    -– Search and filter by submission date
    -– Edit submitted values
    -– Refire any email notification from any submission
    -– Export to CSV
    -– Bulk submissions export
    -– Automated WordPress GDPR integration for export & delete data requests
    -– Mark fields as PII and selectively not store specific data
    -– All submissions stored locally on YOUR server only unless you specify otherwise
    -– We never see or collect your field or submission data

    -

    Dozens of buildable form types
    -– Contact form
    -– Email form
    -– Calculation form
    -– Lead form
    -– Quiz form
    -– Mortgage or Payment Calculator forms
    -– Quote and Cost Calculator forms
    -– Health and Fitness Calculator forms
    -– Polling form
    -– Survey form
    -– Lead Magnet Download form
    -– Event Registration form
    -– Sales form
    -– Appointment form
    -– Booking form
    -– Entry form
    -– Order form
    -– Lesson Plan form
    -– Job Application form
    -– RSVP form
    -– Request form
    -– Feedback form
    -– Support form
    -– GDPR Export or Delete Data Request forms
    -…and many more!

    -

    You get more than just a plugin
    -– Fully documented
    -– Regular updates
    -– FREE technical support
    -– Privacy and security minded
    -– Accessibility focused
    -– Translated into 24+ languages by the WordPress Polyglots team
    -– Long term partners of WPML for even more translations!
    -– Ecosystem aware: we know it’s not just you and Ninja Forms. We do our best to communicate and play nice with others.

    -

    Pick and choose just what you need as you need it

    -

    As you start to grow, so does what you need out of your forms. But there’s no need to dive into the deep end right away and spend more than is practical. All premium features are contained in add-ons to the core form builder and can be purchased independently. When you find yourself wanting just one or two things, you can grab just what you need without paying for extras.

    -

    When you’re ready for more, our membership plans bundle popular features together in budget friendly packages.

    -

    Select from 40+ add-ons across multiple categories:

    -

    Advanced Form Features
    -– Advanced Datepicker
    -– Conditional Logic
    -– File Uploads
    -– Layout & Styles
    -– Multi Step Forms
    -– Save Progress
    -– User Analytics
    -– User Management

    -

    Submissions Extended
    -– Excel Export
    -– Front End Posting
    -– PDF Form Submissions
    -– Scheduled Submissions Export

    -

    Accept Payments
    -– Authorize.net
    -– Elavon
    -– PayPal official partner
    -– Recurly
    -– Stripe

    -

    Email Marketing
    -– Active Campaign
    -– AWeber
    -– Campaign Monitor
    -– CleverReach
    -– Constant Contact
    -– ConvertKit
    -– EmailOctopus
    -– Emma
    -– Mailchimp
    -– MailPoet

    -

    CRMs
    -– Capsule
    -– CiviCRM
    -– HubSpot *official partners
    -– Insightly
    -– OnePageCRM
    -– PipelineDeals
    -– Salesforce
    -– Zoho CRM

    -

    Notifications & Workflow
    -– ClickSend SMS
    -– Help Scout
    -– Slack
    -– Trello
    -– Twilio SMS

    -

    Automation
    -– Webhooks
    -– Zapier official partners

    -

    The sky’s the limit on what you can build with add-on features, but here are some of the most popular forms we see in the wild:

    -
      -
    • Payment forms
    • -
    • Donation forms
    • -
    • Signup forms
    • -
    • User Registration form
    • -
    • Newsletter forms
    • -
    • CRM forms
    • -
    • User Registration form
    • -
    • Login forms
    • -
    • Upload forms
    • -
    • Google Sheets forms
    • -
    • Post Creation forms
    • -
    -

    Notes

    -

    We’ve been standing by our product and our users for over a decade, working to make your experience the best it can be. We’re one of the only form builders around that offers support for all users, whether you’ve made a purchase or not.

    -

    If you have any questions or suggestions, we’re always happy to hear from you. We have a dedicated support team with team members that span four continents standing by to help with technical questions every Monday to Friday. General feedback is always welcome too. It’s a big part of how we figure out what to do next, so chime in any time!

    -

    You’ll always have a direct line to us right here!

    -

    Additional Branding and Trademark Information

    -

    Ninja Forms® is a registered trademark of Saturday Drive INC. We are a WordPress forms or WP forms builder, not to be confused with the independent WPForms brand for WordPress. All official Ninja Forms add-ons and memberships can be found on our official website, ninjaforms.com.

    -', '3.13.0', 'Kevin Stover', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/ninja-forms.3.13.0.zip', '2011-12-21 00:00:00+00', '2025-10-28 12:13:00+00', 'https://profiles.wordpress.org/kstover/', 88, 1372, 9, 9, 600000, 56719273, 'http://ninjaforms.com/?utm_source=WordPress&utm_medium=readme', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/ninja-forms/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Ninja Forms – The Contact Form Builder That Grows With You", "slug": "ninja-forms", "tags": {"forms": "forms", "lead-form": "lead form", "contact-form": "contact form", "form-builder": "form builder", "registration-form": "registration form"}, "added": "2011-12-21", "icons": {"1x": "https://ps.w.org/ninja-forms/assets/icon-128x128.png?rev=1649747", "2x": "https://ps.w.org/ninja-forms/assets/icon-256x256.png?rev=1649747"}, "author": "Kevin Stover", "rating": 88, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/ninja-forms/assets/banner-772x250.png?rev=2069024", "high": "https://ps.w.org/ninja-forms/assets/banner-1544x500.png?rev=2069024"}, "ratings": {"1": 148, "2": 41, "3": 39, "4": 67, "5": 1077}, "version": "3.13.0", "homepage": "http://ninjaforms.com/?utm_source=WordPress&utm_medium=readme", "requires": "6.6", "sections": {"faq": "\n
    \nDo I have to pay to see my form submissions?\n\n

    \n

    No, Ninja Forms does not paywall submissions. You can view, edit, export, and more from Ninja Forms > Submissions with the core, free plugin. No purchase necessary.

    \n

    \n
    \nWhat free form fields are included in the form builder?\n\n

    \n

      \n
    • Date/Time
    • \n
    • Single Checkbox
    • \n
    • Checkbox List
    • \n
    • Radio List
    • \n
    • Select List
    • \n
    • Multi-Select List
    • \n
    • Select Image List
    • \n
    • Single Line Text
    • \n
    • Paragraph Text
    • \n
    • Submit
    • \n
    • First Name
    • \n
    • Last Name
    • \n
    • Email Address
    • \n
    • Phone Number
    • \n
    • Address
    • \n
    • City
    • \n
    • US States
    • \n
    • Country
    • \n
    • Zip Code
    • \n
    • HTML
    • \n
    • Divider
    • \n
    • Repeatable Fieldset
    • \n
    • Confirm
    • \n
    • Hidden
    • \n
    • Number
    • \n
    • reCAPTCHA
    • \n
    • Anti Spam
    • \n
    • Star Rating
    • \n
    \n

    \n
    \nIs Ninja Forms GDPR compliant?\n\n

    \n

    Yes. All user submitted data is stored locally on your server only, unless you expressly configure the plugin to send it elsewhere, for example via an email action. We never see or collect any user submitted data, nor do we act as Data Controllers or Data Processors per GDPR Article 4 for any data submitted by users of the forms you create. Your forms can be configured to flag and/or not record Personally Identifiable Information (PII) on a per form basis. If you do collect PII using Ninja Forms, you can automate export or delete data requests.

    \n

    \n
    \nIs Ninja Forms HIPAA compliant?\n\n

    \n

    Ninja Forms can be and is used on sites that require HIPAA compliance, but overall compliance depends on factors outside of the control of any WordPress form builder.

    \n

    \n
    \nCan I send email with Ninja Forms?\n\n

    \n

    Yes! Any number of emails can be sent to any number of recipients anytime a contact form is submitted. Every email triggered by a contact form submission can be customized in the form builder, including the presentation of the form submission data. Attachments are supported (and can include file uploads from the form). These form emails can also be sent conditionally based on specific triggers, and can be set up to include a PDF copy of the form.

    \n

    \n
    \nWhat types of forms can I build with Ninja Forms?\n\n

    \n

      \n
    • Contact form
    • \n
    • Email form
    • \n
    • Calculation form
    • \n
    • Lead form
    • \n
    • Quiz form
    • \n
    • Mortgage or Payment Calculator forms
    • \n
    • Quote and Cost Calculator forms
    • \n
    • Health and Fitness Calculator forms
    • \n
    • Polling form
    • \n
    • Survey form
    • \n
    • Lead Magnet Download form
    • \n
    • Event Registration form
    • \n
    • Sales form
    • \n
    • Appointment form
    • \n
    • Booking form
    • \n
    • Entry form
    • \n
    • Order form
    • \n
    • Lesson Plan form
    • \n
    • Job Application form
    • \n
    • RSVP form
    • \n
    • Request form
    • \n
    • Feedback form
    • \n
    • Support form
    • \n
    • Export or Delete Data Request forms
    • \n
    • Payment forms
    • \n
    • Donation forms
    • \n
    • Signup form
    • \n
    • User Registration form
    • \n
    • Newsletter forms
    • \n
    • CRM forms
    • \n
    • Conditional lead form
    • \n
    • Scorable lead form
    • \n
    • User Registration form
    • \n
    • Paid registration form
    • \n
    • Login forms
    • \n
    • Upload forms
    • \n
    • Google Sheets forms
    • \n
    • Post Creation forms
      \n…and many more!
    • \n
    \n

    \n
    \nCan I connect Ninja Forms to my CRM or Email Marketing service?\n\n

    \n

    Almost certainly. The contact form builder integrates directly with over a dozen email marketing and CRM services including MailChimp, Constant Contact, ActiveCampaign, HubSpot, Salesforce, Insightly, Zoho, and many more.

    \n

    Ninja Forms also integrates with 1,000+ other popular services through our Zapier integration.

    \n

    \n
    \nCan I import / export forms and fields with Ninja Forms?\n\n

    \n

    Yes, both forms and custom fields (any field you customize and designate as a favorite field) can be exported and imported between sites.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin. HATE the constant nagging.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy killerdesigner on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Quit nagging us to rate you, to signup for newsletters, blah blah blah. We''ve got work to do.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    bettelei nach bewertungen ist furchtbar

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ukasner on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    mN IST DABEI GRUNDLEGENDE sachen auszuprobieren und man will direkt eine bewertug , und das plopt dauernd wieder auf.. absolut nervtötend

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Deekshith is a superstar

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy thinkmarshstudio on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I needed help with intergrating a subscribe MailChimp work and Deekshith was calm, quick and effective with his replies. All now working wonderfully. Thanks again :D

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Outstanding support experience!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mirabela1982 on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was experiencing some issues with a Ninja Form, which turned out to be a cache conflict caused by another plugin. Deekshith quickly identified the problem and resolved it in no time. Thanks to his help, my website is now running perfectly. I truly appreciate the fast and professional support!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bweinandt on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Received a response within 24 hours when an add-on wasn''t working properly. Resolved the issue on the first response.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy Setup

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy blix742 on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    easy setup and use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and reliable support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tsc64 on September 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The support team is always very helpful and willing to find solutions quickly and effectively. I am very satisfied :-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fransjansen on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Patient support team doing everything to souvenirs the issue

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tonzobonzo on September 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    fast and user friendly, great prompts.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    簡単に作ることができました☆

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nstream on September 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ウェブは苦手ですが、こんな私でも簡単に作ることができました♪

    \n
    \n
    \n", "changelog": "

    3.12.2 (October 6, 2025)

    \n

    Bug Fixes:
    \n– fix undefined $outgoing
    \n– accessibility fix to set autocomplete
    \n– fix checkbox field calculation, was showing 0 when checked

    \n

    3.12.1 (September 22, 2025)

    \n

    Bug Fixes:
    \n– Ensure nonce use in download and telemetry

    \n

    3.12.0 (September 8, 2025)

    \n

    Features:
    \n– Add hCaptcha field

    \n

    Bug Fixes:
    \n– Ensure File Upload link in submissions table is clickable

    \n

    3.11.1 (August 20, 2025)

    \n

    Bug Fixes:
    \n– Prevent object wakeup from unserialization

    \n

    3.11.0 (July 28 2025)

    \n

    Features:
    \n– Adds Cloudflare Turnstile CAPTCHA as a modern, privacy-friendly alternative to traditional CAPTCHAs.
    \n– Adds configurable theme (light/dark/auto) and size options for Turnstile field.
    \n– Improves accessibility with screen reader support for CAPTCHA challenges.

    \n

    Bug Fixes:
    \n– Fixes submission expiration failing on forms with 50+ fields processed in chunks.
    \n– Fixes Summernote editor dropdown menus not displaying properly in certain themes.
    \n– Fixes JavaScript errors in merge tags functionality with improved function binding.
    \n– Fixes forced marketing email sending for late-reported opt-ins.
    \n– Prevents Turnstile field from being used within repeatable fieldsets.

    \n

    Performance:
    \n– Replaces full Summernote library with lightweight Summernote Lite version.
    \n– Removes unnecessary Bootstrap dependencies reducing CSS by 4,616 lines.
    \n– Reduces total codebase by ~12,000 lines for improved page load times.

    \n

    Other:
    \n– Updates build system to Node.js 20 for better compatibility.
    \n– Improves CSS build process with proper source map generation.
    \n– Adds comprehensive E2E tests for RTE settings and Turnstile integration.
    \n– Updates test folder structure for better organization.

    \n

    3.10.4 (July 7 2025)

    \n

    Bug Fixes:
    \n– Fixes value issue with time_only date field.
    \n– Fixes issue with common value for date/time field in repeatable field sets.
    \n– Fixes incorrect value for single checkbox merge tags.

    \n

    3.10.3 (June 30 2025)

    \n

    Bug Fixes:
    \n– Fixes rounding error for number fields.
    \n– Resolves a hang on save in certain circumstances.
    \n– Removes an unused uinstall hook method.

    \n

    Misc:
    \n– Updates several npm dependencies.

    \n

    3.10.2.2 (June 24 2025)

    \n

    Security Fixes:
    \n– Prevent script tag injection into templates via block prefixes. Thanks to Asaf Mozes for responsibly reporting this security issue.

    \n

    Misc:
    \n– Concatenates the readme changelog to prevent going over the WP.org word limit.

    \n

    3.10.2.1 (June 19 2025)

    \n

    Bug Fixes:
    \n– Fixes an issue with HelpText causing a collision on save with Conditional Logic add-on.
    \n– Fixes an issue with HelpText causing a collision on save with Stripe add-on.
    \n– Fixes an incorrect icon.

    \n

    3.10.2 (June 18 2025)

    \n

    Bug Fixes:
    \n– Fixes an issue with the help text for repeater fields.
    \n– Fixes an issue with form processing being slow on forms with many fields.
    \n– Fixes an issue with translations on the date picker field.
    \n– Fixes an issue with saving repeater fields on duplicated forms.
    \n– Fixes an issue with date/time field in repeatable fieldsets.
    \n– Fixes an issue with repeatable field help text.

    \n

    Features:
    \n– Improved drawer styles with a refreshed look.

    \n

    3.10.1 (14 April 2025)

    \n

    Bug Fixes:
    \n– Prevent stored XSS in various fields

    \n

    3.10.0 (26 March 2025)

    \n

    Features
    \n– Add a Google Analytics 4 Action.

    \n

    Bug Fixes:
    \n– Fix an error related to using calculations in payment gateway actions.
    \n– Fix an error related to File Uploads merge tags.
    \n– Required errors should no longer trigger on removed repeater sets.

    \n

    3.9.2 (12 March 2025)

    \n

    Bug Fixes:
    \n– List fields can now be used for determining the payment total in payment collection actions.
    \n– Fixed PHP warnings when using PHP 8.
    \n– Fixed an issue with the Password confirm field.
    \n– Ensure that time field IDs are unique.
    \n– Fixed an issue with the opt-in email.

    \n

    3.9.1 (24 February 2025)

    \n

    Features:
    \n– Allows repeatable fieldsets to be editable in the Submissions page.

    \n

    Bug Fixes:
    \n– Numbers over 10 billion no longer cause validation errors.

    \n

    Other:
    \n– Add add-on communication status logs to the System Status page.
    \n– Add additional data points for telemetry.
    \n– Build file updates.

    \n

    3.9.0 (10 February 2025)

    \n

    Features:
    \n– New user onboarding
    \n– Add delete forms WP-CLI command

    \n

    Other:
    \n– JS library updates

    \n

    3.8.25 (27 January 2025)

    \n

    Bug Fixes:
    \n– ensure form id value is numeric in shortcodes; responsibly reported by Peter Thaleikis via Wordfence

    \n

    3.8.24 (21 January 2025)

    \n

    Bug Fixes:
    \n– Fixed an accessibility issue related to text contrast when using opinionated styles.
    \n– Fixed accessibility errors related to missing field descriptions.

    \n

    3.8.23 (16 December 2024)

    \n

    Bug Fixes:
    \n– Ensure only permitted form previews are available to a given user

    \n

    3.8.22 (10 December 2024)

    \n

    Bug Fixes:
    \n– Update timing for widget loading on page builders

    \n

    3.8.21 (09 December 2024)

    \n

    Bug Fixes:
    \n– Update timing to load translations after init

    \n

    3.8.20 (26 November 2024)

    \n

    Bug Fixes:
    \n– Sanitize calculations input

    \n

    3.8.19 (18 November 2024)

    \n

    Bug Fixes:
    \n– Remove legacy duplicate field cleanup from render loop
    \n– Convert HTML encoded characters on submissions page
    \n– Verify we are on an nf_sub post type before loading terms list

    \n

    Other:
    \n– Add behavioural telemetry data
    \n– Add diagnost information to system status
    \n– Update end-to-end test

    \n

    3.8.18 (23 October 2024)

    \n

    Bug Fixes:
    \n– Prevent script in Favorite Fields
    \n– Prevent script in calculation name
    \n– Update field HTML for improved accessibility

    \n

    3.8.17 (01 October 2024)

    \n

    Bug Fixes:
    \n– Ensure help text is mobile responsive for single checkbox, single line text, paragraph text
    \n– Prevent non-required blank email field failing validation
    \n– Replace hard-coded strings for translation

    \n

    3.8.16 (17 September 2024)

    \n

    Bug Fixes:
    \n– Ensure sanitation of email address for merge tag
    \n– Prevent maintenance mode interception

    \n

    3.8.15 (10 September 2024)

    \n

    Bug Fixes:
    \n– Ensure “From Address” email warning shows
    \n– Prevent JS error on datepicker inside fieldset repeater

    \n

    Other:
    \n– Add PHP compatibility tests
    \n– Add usage telemetry data

    \n

    3.8.14 (03 September 2024)

    \n

    Bug Fixes:
    \n– Ensure submissions page form filter finds form titles
    \n– Provide PHP 7.4 support for jsonSerialize method call
    \n– Ensure hCaptcha field functions when safe-listed

    \n

    Other:
    \n– JS library updates

    \n

    3.8.13 (26 August 2024)

    \n

    Bug Fixes:
    \n– Prevent mouse scroll wheel from updating currency masked fields – Issues
    \n– Resolved an error where required field validation was not always firing properly on masked fields
    \n– Correct list value tooltip styling error for Safari and Firefox
    \n– A repeatable fieldset that has triggered a required error maintains the error when the repeatable fieldset is deleted
    \n– First Repeated Fieldset’s data is not captured when deleting one of the sets
    \n– Ensure form displays in WP Bakery without needing to refresh page

    \n

    Other:
    \n– Correct deprecation warnings in SCSS files
    \n– Library updates: The updates affect the structure of the components – mounting and data flow – and the blocks and styling
    \n– Set security resolution for Axios as a dependency of our dependencies
    \n– Reorganize cypress tests
    \n– Add unit tests
    \n– Add initial usage data to telemetry
    \n– High impact accessibility factor corrections

    \n

    3.8.12 (13 August 2024)

    \n

    Bug Fixes:
    \n– Validate label settings on change event

    \n

    3.8.11 (07 August 2024)

    \n

    Bug Fixes:
    \n– Prevent unused key values on Survey Promo link

    \n

    3.8.10 (05 August 2024)

    \n

    Bug Fixes:
    \n– Submissions Table block not displayed on published page on some themes
    \n– Phone field not disabled when expected
    \n– calc value option of list fields not set with help text
    \n– Submission page tooltip icon not displayed on environment not using conventional plugins folder path

    \n

    Other:
    \n– @wordpress dependencies updates

    \n

    3.8.9 (29 July 2024)

    \n

    Bug Fixes:
    \n– Submissions Block not showing all submissions data.
    \n– Fix deleted repeater field missing required data halting submission
    \n– Add “Administration” section for all fields
    \n– Add missing check_admin_referrer parameter
    \n– Sort by Shortcode on forms page as numerical
    \n– Accessibility: update field description and screen readers
    \n– Enable hidden fields in the unique field
    \n– Fix display Form iFrame in Elementor editor

    \n

    Other:
    \n– Refactor telemetry dispatch to add unit tests

    \n

    3.8.8 (22 July 2024)

    \n

    Bug Fixes:
    \n– Ensure submissions page and Append Ninja Form block are visible on WP 6.6

    \n

    Other:
    \n– Update readme ‘tested up to’ and ‘requires at least’

    \n

    3.8.7 (15 July 2024)

    \n

    Bug Fixes:
    \n– prevent licensing CSRF

    \n

    3.8.6 (8 July 2024)

    \n

    Bug Fixes:
    \n– prevent deprecated false to array notice in preview
    \n– prevent undefined array key ‘plugin’ warning in class extension updater
    \n– prevent invalid date error when setting default date format to “j F Y” on non-English languages

    \n

    Other:
    \n– automated test for version number
    \n– update wordpress library packages
    \n– add documentation links to settings in the form builder

    \n

    3.8.5 (13 June 2024)

    \n

    Bug Fixes:
    \n– Protect preview query parameters

    \n

    3.8.4 (28 May 2024)

    \n

    Bug Fixes:
    \n– Ensure first name field populates only first, not full, name
    \n– Enable personally identifiable setting outside of dev mode
    \n– Add merge tags ‘other’ for random, year, month, day

    \n

    Other:
    \n– Set version resolutions for certain packages
    \n– Improve discoverability of available actions
    \n– Update marketing feed

    \n

    3.8.3 (1 May 2024)

    \n

    Bug Fixes:
    \n– Ensure fieldset repeaters function on index values ending in 0 (10, 20, etc)

    \n

    Other:
    \n– Update tests to run on 6.5.2

    \n

    3.8.2 (29 March 2024)

    \n

    Bug Fixes:
    \n– Allow default span tags in form labels

    \n

    3.8.1 (27 March 2024)

    \n

    Bug Fixes:
    \n– Ensure submission exports can’t be called from any unintended pages
    \n– Prevent injected scripts into submit button and advanced labels
    \n– Prevent XSS on image lists

    \n

    Other:
    \n– Update add-on images

    \n

    3.8.0 (20 February 2024)

    \n

    Features:
    \n– Add ‘referer URL’ merge tag

    \n

    Bug Fixes:
    \n– Prevent display error when date format is not set
    \n– Ensure current date stored when default is not modified
    \n– Ensure translation of date strings

    \n

    Other:
    \n– Add user help text and images
    \n– Add automated tests

    \n", "description": "

    Forms that grow with your business

    \n

    As one of WordPress’ oldest form builders, we’re proud to serve users from around the world, from all walks of life, and from different stages of online growth. From the small businesses and local nonprofits that make up the core Ninja Forms user base to universities, hospitals, and even Fortune 500 companies, we’ll scale with you from startup to wherever you’re aiming for.

    \n

    We’re committed to offering as many free, open source tools as we can get away with to back you up in the extremely price-conscious early days. As you grow, pick and choose only the premium features you need as you need them. We’ll grow with you from there for as far as you want to take us.

    \n

    We’re also committed to respecting your privacy and time. No unsolicited emails or aggressive marketing. No paywalling basic features or scraping private data. We offer a fully staffed team of support experts and a comprehensive library of plugin documentation for all users, free and paid, to help keep you collecting the submissions that move your business forward.

    \n

    We look forward to seeing where you’ll take us!

    \n

    All the basics without the paywalls

    \n

    When you’re starting out, even little expenses add up quickly. That’s why Ninja Forms core will always be free and open source. It’s why we try to offer as much in core as we can to cover your basic needs at no cost. Here’s a peek at some of what core has to offer.

    \n

    Form Building Features
    \n– 24+ FREE drag-and-drop form fields
    \n– Customize fields with default values, specialty text, and much more
    \n– Favorite and reuse any customized field
    \n– Calculations: assign values to fields and calculate totals
    \n– Merge tag system for pre-populating fields and passing field data between forms
    \n– Configurable per-field submission storage for easy GDPR compliance
    \n– Email notifications on submission (as many as you like, free!)
    \n– Customizable success messages (supports links and downloads!)
    \n– Redirect to new page after submission
    \n– Customize callbacks to WP action hooks on submit
    \n– Spam Protection: full integration with Google reCAPTCHA & Akismet
    \n– Configurable form display settings
    \n– Form restriction settings
    \n– Unique field validation
    \n– Unlimited forms & submissions
    \n– Form Templates
    \n– Form Import / Export
    \n– Shareable forms (share the form via link without it being attached to a page)
    \n– No aggressive marketing, pushy review asks, constant popups, or unsolicited emails
    \n– Responsive and mobile friendly
    \n– SEO friendly

    \n

    Submission Management Features
    \n– Unlimited FREE submissions
    \n– Configurable submissions display
    \n– Search and filter by field
    \n– Search and filter by submitted value
    \n– Search and filter by submission date
    \n– Edit submitted values
    \n– Refire any email notification from any submission
    \n– Export to CSV
    \n– Bulk submissions export
    \n– Automated WordPress GDPR integration for export & delete data requests
    \n– Mark fields as PII and selectively not store specific data
    \n– All submissions stored locally on YOUR server only unless you specify otherwise
    \n– We never see or collect your field or submission data

    \n

    Dozens of buildable form types
    \n– Contact form
    \n– Email form
    \n– Calculation form
    \n– Lead form
    \n– Quiz form
    \n– Mortgage or Payment Calculator forms
    \n– Quote and Cost Calculator forms
    \n– Health and Fitness Calculator forms
    \n– Polling form
    \n– Survey form
    \n– Lead Magnet Download form
    \n– Event Registration form
    \n– Sales form
    \n– Appointment form
    \n– Booking form
    \n– Entry form
    \n– Order form
    \n– Lesson Plan form
    \n– Job Application form
    \n– RSVP form
    \n– Request form
    \n– Feedback form
    \n– Support form
    \n– GDPR Export or Delete Data Request forms
    \n…and many more!

    \n

    You get more than just a plugin
    \n– Fully documented
    \n– Regular updates
    \n– FREE technical support
    \n– Privacy and security minded
    \n– Accessibility focused
    \n– Translated into 24+ languages by the WordPress Polyglots team
    \n– Long term partners of WPML for even more translations!
    \n– Ecosystem aware: we know it’s not just you and Ninja Forms. We do our best to communicate and play nice with others.

    \n

    Pick and choose just what you need as you need it

    \n

    As you start to grow, so does what you need out of your forms. But there’s no need to dive into the deep end right away and spend more than is practical. All premium features are contained in add-ons to the core form builder and can be purchased independently. When you find yourself wanting just one or two things, you can grab just what you need without paying for extras.

    \n

    When you’re ready for more, our membership plans bundle popular features together in budget friendly packages.

    \n

    Select from 40+ add-ons across multiple categories:

    \n

    Advanced Form Features
    \n– Advanced Datepicker
    \n– Conditional Logic
    \n– File Uploads
    \n– Layout & Styles
    \n– Multi Step Forms
    \n– Save Progress
    \n– User Analytics
    \n– User Management

    \n

    Submissions Extended
    \n– Excel Export
    \n– Front End Posting
    \n– PDF Form Submissions
    \n– Scheduled Submissions Export

    \n

    Accept Payments
    \n– Authorize.net
    \n– Elavon
    \n– PayPal official partner
    \n– Recurly
    \n– Stripe

    \n

    Email Marketing
    \n– Active Campaign
    \n– AWeber
    \n– Campaign Monitor
    \n– CleverReach
    \n– Constant Contact
    \n– ConvertKit
    \n– EmailOctopus
    \n– Emma
    \n– Mailchimp
    \n– MailPoet

    \n

    CRMs
    \n– Capsule
    \n– CiviCRM
    \n– HubSpot *official partners
    \n– Insightly
    \n– OnePageCRM
    \n– PipelineDeals
    \n– Salesforce
    \n– Zoho CRM

    \n

    Notifications & Workflow
    \n– ClickSend SMS
    \n– Help Scout
    \n– Slack
    \n– Trello
    \n– Twilio SMS

    \n

    Automation
    \n– Webhooks
    \n– Zapier official partners

    \n

    The sky’s the limit on what you can build with add-on features, but here are some of the most popular forms we see in the wild:

    \n
      \n
    • Payment forms
    • \n
    • Donation forms
    • \n
    • Signup forms
    • \n
    • User Registration form
    • \n
    • Newsletter forms
    • \n
    • CRM forms
    • \n
    • User Registration form
    • \n
    • Login forms
    • \n
    • Upload forms
    • \n
    • Google Sheets forms
    • \n
    • Post Creation forms
    • \n
    \n

    Notes

    \n

    We’ve been standing by our product and our users for over a decade, working to make your experience the best it can be. We’re one of the only form builders around that offers support for all users, whether you’ve made a purchase or not.

    \n

    If you have any questions or suggestions, we’re always happy to hear from you. We have a dedicated support team with team members that span four continents standing by to help with technical questions every Monday to Friday. General feedback is always welcome too. It’s a big part of how we figure out what to do next, so chime in any time!

    \n

    You’ll always have a direct line to us right here!

    \n

    Additional Branding and Trademark Information

    \n

    Ninja Forms® is a registered trademark of Saturday Drive INC. We are a WordPress forms or WP forms builder, not to be confused with the independent WPForms brand for WordPress. All official Ninja Forms add-ons and memberships can be found on our official website, ninjaforms.com.

    \n", "screenshots": "
    1. \"The

      The most intuitive and beautiful form building experience

    2. \"Field

      Field Options

    3. \"Advanced

      Advanced Settings

    4. \"Beautiful

      Beautiful Forms Every Time!

    ", "installation": "

    This section describes how to install the plugin and get it working.
    \n1. Upload the ninja-forms plugin folder to your /wp-content/plugins/ directory
    \n2. Activate the plugin through the ‘Plugins’ menu in WordPress
    \n3. Visit the ‘Ninja Forms’ menu item in your admin sidebar

    \n

    Further Installation Documentation

    \n"}, "versions": {"3.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.0.zip", "3.7.3": "https://downloads.wordpress.org/plugin/ninja-forms.3.7.3.zip", "3.8.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.5.zip", "3.8.6": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.6.zip", "3.8.7": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.8.zip", "3.8.9": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.9.zip", "3.9.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/ninja-forms.zip", "2.9.58": "https://downloads.wordpress.org/plugin/ninja-forms.2.9.58.zip", "3.1.10": "https://downloads.wordpress.org/plugin/ninja-forms.3.1.10.zip", "3.10.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.0.zip", "3.10.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.1.zip", "3.10.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.2.zip", "3.10.3": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.3.zip", "3.10.4": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.4.zip", "3.11.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.11.0.zip", "3.11.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.11.1.zip", "3.12.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.12.0.zip", "3.12.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.12.1.zip", "3.12.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.12.2.zip", "3.13.0": "https://downloads.wordpress.org/plugin/ninja-forms.3.13.0.zip", "3.2.28": "https://downloads.wordpress.org/plugin/ninja-forms.3.2.28.zip", "3.6.34": "https://downloads.wordpress.org/plugin/ninja-forms.3.6.34.zip", "3.8.10": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.10.zip", "3.8.11": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.11.zip", "3.8.12": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.12.zip", "3.8.13": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.13.zip", "3.8.14": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.14.zip", "3.8.15": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.15.zip", "3.8.16": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.16.zip", "3.8.17": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.17.zip", "3.8.18": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.18.zip", "3.8.19": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.19.zip", "3.8.20": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.20.zip", "3.8.21": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.21.zip", "3.8.22": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.22.zip", "3.8.23": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.23.zip", "3.8.24": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.24.zip", "3.8.25": "https://downloads.wordpress.org/plugin/ninja-forms.3.8.25.zip", "3.5.8.4": "https://downloads.wordpress.org/plugin/ninja-forms.3.5.8.4.zip", "3.0.34.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.0.34.2.zip", "3.10.2.1": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.2.1.zip", "3.10.2.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.10.2.2.zip", "3.3.21.4": "https://downloads.wordpress.org/plugin/ninja-forms.3.3.21.4.zip", "3.4.34.2": "https://downloads.wordpress.org/plugin/ninja-forms.3.4.34.2.zip"}, "downloaded": 56719273, "description": "

    Forms that grow with your business

    \n

    As one of WordPress’ oldest form builders, we’re proud to serve users from around the world, from all walks of life, and from different stages of online growth. From the small businesses and local nonprofits that make up the core Ninja Forms user base to universities, hospitals, and even Fortune 500 companies, we’ll scale with you from startup to wherever you’re aiming for.

    \n

    We’re committed to offering as many free, open source tools as we can get away with to back you up in the extremely price-conscious early days. As you grow, pick and choose only the premium features you need as you need them. We’ll grow with you from there for as far as you want to take us.

    \n

    We’re also committed to respecting your privacy and time. No unsolicited emails or aggressive marketing. No paywalling basic features or scraping private data. We offer a fully staffed team of support experts and a comprehensive library of plugin documentation for all users, free and paid, to help keep you collecting the submissions that move your business forward.

    \n

    We look forward to seeing where you’ll take us!

    \n

    All the basics without the paywalls

    \n

    When you’re starting out, even little expenses add up quickly. That’s why Ninja Forms core will always be free and open source. It’s why we try to offer as much in core as we can to cover your basic needs at no cost. Here’s a peek at some of what core has to offer.

    \n

    Form Building Features
    \n– 24+ FREE drag-and-drop form fields
    \n– Customize fields with default values, specialty text, and much more
    \n– Favorite and reuse any customized field
    \n– Calculations: assign values to fields and calculate totals
    \n– Merge tag system for pre-populating fields and passing field data between forms
    \n– Configurable per-field submission storage for easy GDPR compliance
    \n– Email notifications on submission (as many as you like, free!)
    \n– Customizable success messages (supports links and downloads!)
    \n– Redirect to new page after submission
    \n– Customize callbacks to WP action hooks on submit
    \n– Spam Protection: full integration with Google reCAPTCHA & Akismet
    \n– Configurable form display settings
    \n– Form restriction settings
    \n– Unique field validation
    \n– Unlimited forms & submissions
    \n– Form Templates
    \n– Form Import / Export
    \n– Shareable forms (share the form via link without it being attached to a page)
    \n– No aggressive marketing, pushy review asks, constant popups, or unsolicited emails
    \n– Responsive and mobile friendly
    \n– SEO friendly

    \n

    Submission Management Features
    \n– Unlimited FREE submissions
    \n– Configurable submissions display
    \n– Search and filter by field
    \n– Search and filter by submitted value
    \n– Search and filter by submission date
    \n– Edit submitted values
    \n– Refire any email notification from any submission
    \n– Export to CSV
    \n– Bulk submissions export
    \n– Automated WordPress GDPR integration for export & delete data requests
    \n– Mark fields as PII and selectively not store specific data
    \n– All submissions stored locally on YOUR server only unless you specify otherwise
    \n– We never see or collect your field or submission data

    \n

    Dozens of buildable form types
    \n– Contact form
    \n– Email form
    \n– Calculation form
    \n– Lead form
    \n– Quiz form
    \n– Mortgage or Payment Calculator forms
    \n– Quote and Cost Calculator forms
    \n– Health and Fitness Calculator forms
    \n– Polling form
    \n– Survey form
    \n– Lead Magnet Download form
    \n– Event Registration form
    \n– Sales form
    \n– Appointment form
    \n– Booking form
    \n– Entry form
    \n– Order form
    \n– Lesson Plan form
    \n– Job Application form
    \n– RSVP form
    \n– Request form
    \n– Feedback form
    \n– Support form
    \n– GDPR Export or Delete Data Request forms
    \n…and many more!

    \n

    You get more than just a plugin
    \n– Fully documented
    \n– Regular updates
    \n– FREE technical support
    \n– Privacy and security minded
    \n– Accessibility focused
    \n– Translated into 24+ languages by the WordPress Polyglots team
    \n– Long term partners of WPML for even more translations!
    \n– Ecosystem aware: we know it’s not just you and Ninja Forms. We do our best to communicate and play nice with others.

    \n

    Pick and choose just what you need as you need it

    \n

    As you start to grow, so does what you need out of your forms. But there’s no need to dive into the deep end right away and spend more than is practical. All premium features are contained in add-ons to the core form builder and can be purchased independently. When you find yourself wanting just one or two things, you can grab just what you need without paying for extras.

    \n

    When you’re ready for more, our membership plans bundle popular features together in budget friendly packages.

    \n

    Select from 40+ add-ons across multiple categories:

    \n

    Advanced Form Features
    \n– Advanced Datepicker
    \n– Conditional Logic
    \n– File Uploads
    \n– Layout & Styles
    \n– Multi Step Forms
    \n– Save Progress
    \n– User Analytics
    \n– User Management

    \n

    Submissions Extended
    \n– Excel Export
    \n– Front End Posting
    \n– PDF Form Submissions
    \n– Scheduled Submissions Export

    \n

    Accept Payments
    \n– Authorize.net
    \n– Elavon
    \n– PayPal official partner
    \n– Recurly
    \n– Stripe

    \n

    Email Marketing
    \n– Active Campaign
    \n– AWeber
    \n– Campaign Monitor
    \n– CleverReach
    \n– Constant Contact
    \n– ConvertKit
    \n– EmailOctopus
    \n– Emma
    \n– Mailchimp
    \n– MailPoet

    \n

    CRMs
    \n– Capsule
    \n– CiviCRM
    \n– HubSpot *official partners
    \n– Insightly
    \n– OnePageCRM
    \n– PipelineDeals
    \n– Salesforce
    \n– Zoho CRM

    \n

    Notifications & Workflow
    \n– ClickSend SMS
    \n– Help Scout
    \n– Slack
    \n– Trello
    \n– Twilio SMS

    \n

    Automation
    \n– Webhooks
    \n– Zapier official partners

    \n

    The sky’s the limit on what you can build with add-on features, but here are some of the most popular forms we see in the wild:

    \n
      \n
    • Payment forms
    • \n
    • Donation forms
    • \n
    • Signup forms
    • \n
    • User Registration form
    • \n
    • Newsletter forms
    • \n
    • CRM forms
    • \n
    • User Registration form
    • \n
    • Login forms
    • \n
    • Upload forms
    • \n
    • Google Sheets forms
    • \n
    • Post Creation forms
    • \n
    \n

    Notes

    \n

    We’ve been standing by our product and our users for over a decade, working to make your experience the best it can be. We’re one of the only form builders around that offers support for all users, whether you’ve made a purchase or not.

    \n

    If you have any questions or suggestions, we’re always happy to hear from you. We have a dedicated support team with team members that span four continents standing by to help with technical questions every Monday to Friday. General feedback is always welcome too. It’s a big part of how we figure out what to do next, so chime in any time!

    \n

    You’ll always have a direct line to us right here!

    \n

    Additional Branding and Trademark Information

    \n

    Ninja Forms® is a registered trademark of Saturday Drive INC. We are a WordPress forms or WP forms builder, not to be confused with the independent WPForms brand for WordPress. All official Ninja Forms add-ons and memberships can be found on our official website, ninjaforms.com.

    \n", "donate_link": "", "num_ratings": 1372, "screenshots": {"1": {"src": "https://ps.w.org/ninja-forms/assets/screenshot-1.png?rev=1495254", "caption": "The most intuitive and beautiful form building experience"}, "2": {"src": "https://ps.w.org/ninja-forms/assets/screenshot-2.png?rev=1495254", "caption": "Field Options"}, "4": {"src": "https://ps.w.org/ninja-forms/assets/screenshot-4.png?rev=1495254", "caption": "Advanced Settings"}, "5": {"src": "https://ps.w.org/ninja-forms/assets/screenshot-5.png?rev=1495254", "caption": "Beautiful Forms Every Time!"}}, "support_url": "https://wordpress.org/support/plugin/ninja-forms/", "contributors": {"kstover": {"avatar": "https://secure.gravatar.com/avatar/43e29d085557263eeeefcf36af08404a9349c9c15099d6bf1fe9d24af3c5ca41?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kstover/", "display_name": "Kevin Stover"}, "wpnzach": {"avatar": "https://secure.gravatar.com/avatar/46c2c456d146d2234c97871633d94cc09de911578970654dc7818259127a11fd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpnzach/", "display_name": "Zach Skaggs"}, "jameslaws": {"avatar": "https://secure.gravatar.com/avatar/8a6179856336190834c520a99b587b2fd8cb5d72e4d60de8fd731091aff44160?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jameslaws/", "display_name": "James Laws"}, "jmcelhaney": {"avatar": "https://secure.gravatar.com/avatar/29f008315497ae833dd7e1ecf72059eb5089aefb360f63309265105c80419742?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jmcelhaney/", "display_name": "Justin McElhaney"}, "klhall1987": {"avatar": "https://secure.gravatar.com/avatar/58c7814ad708f3761458fded5efec8ab045ba6c9867f582d8e6d45694687c70a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/klhall1987/", "display_name": "klhall1987"}, "kbjohnson90": {"avatar": "https://secure.gravatar.com/avatar/d4da4f08d2060ef4c0601b5cdf6121c3b35e6436d03176622cce983472f7c7a7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kbjohnson90/", "display_name": "Kyle B. Johnson"}, "krmoorhouse": {"avatar": "https://secure.gravatar.com/avatar/d923fca564b97486d12e5394daeb6076c0fdf5ef11990ec6e0a47298b6f37465?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/krmoorhouse/", "display_name": "krmoorhouse"}, "mrpritchett": {"avatar": "https://secure.gravatar.com/avatar/e37877403959381493050f163cade646d072c84beec605da6dcace13cb05f7b0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mrpritchett/", "display_name": "Matt Pritchett"}, "wpninjasllc": {"avatar": "https://secure.gravatar.com/avatar/0c5832514a5fe21869e5677c5cf2eb791abf4a9eace0ff49e4001ffc96d08e24?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpninjasllc/", "display_name": "wpninjasllc"}, "ericwindhamsd": {"avatar": "https://secure.gravatar.com/avatar/a73cf408a9d4be423499495e0f7b4f428c9a3797d0effb43688239215bcb3d4b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ericwindhamsd/", "display_name": "ericwindhamsd"}}, "last_updated": "2025-10-28 12:13pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/ninja-forms.3.13.0.zip", "author_profile": "https://profiles.wordpress.org/kstover/", "business_model": false, "repository_url": "", "upgrade_notice": {"3.13.0 (October 27, 2025)": "

    Features:\n- NEW Signature field

    \n\n

    Bug Fixes:\n- Ensure opt-in popup can be dismissed\n- Allow only ExtraDataHandlers into Submission metabox\n- Require form id as integer\n- Fix an accessibility issue with labels for HTML and Divider fields.

    "}, "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-f82a-7052-aa9f-c071d09a307a", "name": "Ninja Forms – The Contact Form Builder That Grows With You", "slug": "ninja-forms", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761653580, "version": "3.13.0"}, "support_threads": 9, "requires_plugins": [], "short_description": "The 100% beginner friendly WordPress form builder. Drag & drop form fields to build beautiful, professional contact forms in minutes.", "author_block_count": 0, "author_block_rating": 88, "commercial_support_url": "", "support_threads_resolved": 9}'); -INSERT INTO public.plugins VALUES ('019a30c1-66b3-7342-8b1c-a5c8b5f3b157', 'royal-elementor-addons', 'Royal Addons for Elementor – Addons and Templates Kit for Elementor', 'Elementor Post Grid, Portfolio, Woocommerce Grid builder Widgets. Slider, Carousel, Form, Testimonial, Gallery, Nav menu addons, Elementor widgets &am …', '

    Royal Elementor addons is the most versatile, intuitive, and easy to use Popular Page Builder extension. Our goal is to provide you with the tools to make things happen, efficiently, and fast compare to other elementor addons. Choosing us is not only a mindset, but it is also a requirement if you intend to gain an edge over your competitors when creating your website. The best part is that you can design anything without having to touch a single line of code.

    -

    Comes with 100+ Elementor addons, 140+ Elementor Templates KIT (Growing Each Week), Theme Builder, WooCommerce Builder, Elementor Mega Menu Builder, Popup Builder, Premade Widget Blocks & Extensions. Creative and self-intuitive widgets to take your WordPress website to the next level. All widgets are Free and the Pro Version offers even more advanced functionality.

    -

    Free and Pro functionalities are mixed in the Widget Demos below.

    -

    Plugin Demo Page
    -Elementor Templates Demo Page
    -Woocommerce Elementor Templates Demo Page

    -

    Widget List:

    - -

    Woocommerce Widgets:

    - -

    Extensions and Other Features

    - -

    Elementor Wocommerce Builder Templates Kits

    - -

    Elementor Theme Builder Templates Kits

    - -

    Elementor Templates Kits

    - -

    How to Import Template Kit:

    -

    Navigate to plugin Menu > Templates Kit > Select Kit you want to import > Click on the import Template Kit button.
    -Demo Data will be installed from Our Website.
    -What’s imported: Posts, pages, images in the media library, menu items, some basic settings like which page will be set as homepage, premade headers, and premade footers, popups if demo includes it.
    -If you already have posts, pages, or any other data in your WordPress none of them will be deleted.

    -

    Widgets short Description:

    -

    1. Elementor Post Grid

    -

    Post Grid – Post Slider – Post Carousel – A free Elementor Post grid widget. This widget could be used as a recent posts slider, post carousel, FitRows grid, masonry grid (Pro), portfolio grid, list style grid, filtrable grid if you will enable isotope filters, media grid for video project showcase and more. Simply the best solution for WordPress blog posts or custom post types. Comes with the following options: multicolumns, numbered pagination, random post display option, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for filters, grid filters (live filters with isotope) and much more.

    -

    2. Elementor Woocommerce Grid

    -

    WooCommerce Product Grid – Product Slider – Product Carousel – A free WooCommerce Grid Widget. Could be used as product carousel, product slider, product list, product category grid, category carousel, category slider, filtrable grid to display wooCommerce products and much more. This elementor addon comes with the following options: multicolumn, numbered pagination, load more button, infinite scroll (Pro), product likes (Pro), product sharing (Pro), custom fields (Pro), lightbox with the gallery, linkable filters (deep linking), custom icons for filters, live grid filters (with isotope filters), sorting and much more.

    -

    3. Image Grid

    -

    Image Grid – Image Slider – Image Carousel – A free Image Grid Widget. Could be used as an image gallery, logo grid, image slider, image carousel, and much more. Addon comes with the following options: multicolumn grids, numbered pagination, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for the filters, FitRows grid with a isotope filters, masonry grid and much more.

    -

    Magazine Grid – Slider – A free Magazine Grid Widget. This widget is the #1 Magazine Grid builder widget on the repository. Could be used as magazine layout, newspaper layout, news grid, news slider(PRO).

    -

    5. Advanced Slider

    -

    Advanced Slider – Carousel – A free Image Slider Widget. Could be used as image slider, logo carousel, content slider, template slider (Pro). Creat unique looking hero section with this slider. It is fully responsive and has full width and full screen options. Also Pro version comes with Ken Burns effect & animated content.

    -

    6. Testimonial Slider

    -

    Testimonial Slider – A free Testimonial Slider Widget. This widget will showcase your customers reviews on your WordPress website. The widget offers following options: customers reviews slider, testimonials ratings (stars), company logo option, clients/customer image, texts with vintage quotes.

    -

    7. Elementor Menu widget

    -

    Nav Menu – A free Nav Menu Widget. This widget will make your WordPress Menu trully unique by customizing its look and feel without using code. Addon offers following options: mobile menu customization, drop down menu setup, hamburger menu, menu hover effects and hover animations. Also Pro version offers vertical menu and sticky header. Most advanced & customizable responsive menu.

    -

    8. Onepage Navigation

    -

    Onepage Navigation – A free Onepage Navigation Widget. This widget allows you to create an amazing onepage scroll experiance WordPress website with just a few clicks. Can be used to create floating menu, sticky navigation menu, side menu with icons to scroll to any section.

    -

    9. Pricing Table

    -

    Pricing Table – A free Pricing Table Widget. This Pricing Comparison Table widget helps you to create an effective price comparison table with unique styling, which allows you to display not just the cost, but also the features you offer. A widget could be used as a regular pricing table & as a pricing table with a toggle button to switch from Monthly/Yearly plans. Pro version offers different tooltip options for each pricing table feature, also it’s possible to have more than 2 pricing plans switcher, like Monthly/Yearly/Lifetime (You can check the demo on the widget preview page).

    -

    10. Content Toggle

    -

    Content Toggle – A free Content Toggle Widget. You can load Elementor Templates or simply insert images and text to style it the way you want. A widget could be used as a pricing switcher as well, for example, to switch between Monthly/Yearly/Lifetime pricing plans. Pro version offers more than 2 toggle options – Check out the widget demo page to see all its possibilities.

    -

    11. Countdown Timer

    -

    Countdown Timer – This widget allows you to display a timer that counts down to a specific time or date. A widget could be used as a black Friday sale countdown timer, to create urgency for users for your event, sales, or opt-in forms. You can set various actions after the timer expires: hide the timer, display a message, redirect or load the template. The Pro version offers an Evergreen timer (checkout widget demo page), recurring countdown timer, and restart timer options.

    -

    12. Progress Bar

    -

    Progress Bar – This Skill Bar widget offers unique ways to style various types of stats in percentages or numbers, can be used for classic animated progress bars, circle progress bars, or vertical progress bars (Pro).

    -

    13. Advanced Tabs

    -

    Tabs – This Advanced Tab widget lets you display key information in an interactive manner, that attracts visitors and also saves lots of space on your WordPress webpage. The widget offers horizontal tabs, vertical tabs, tab loading animation effects, and more. Trigger tab via mouse hover or click both options are available. Also, you can have nested tabs via the elementor templates loader which means you can use any elementor addons inside tab content.

    -

    14. Advanced Text

    -

    Advanced Text – Fancy Text – This Text animation widget lets you highlight any text with different colors, animation, and typing effects to draw your visitor’s attention instantly. Available effects: typewriter effect, fancy text effect, animated text effect, highlighted text effect, text-shadow effect, text over image effect, text and image mask effect, 3d text effect, text slider, gradient text, the background image on text, text glitch effect, text long colored shadow effect, word animation effect, text skew effect, text flip vertical and horizontal effect, slide, clip, zoom, scale, circle line, underline zigzag line, curly line, cross x line, line through and others. Pro Version offers extra effects and functionalities.

    -

    15. Flip Box

    -

    Flip Box – A free Flip Box Widget. This widget with hover box animation and call-to-action buttons will highlight your content in a great way and allows you to create stunning promo boxes and ads with CTA button functionality. The widget offers more flipping effects in the pro version and some extra functionality as well.

    -

    16. Promo Box

    -

    Promo Box – With this widget, you can create: a clickable image with varios effects like: a clickable image with image hover effects, option to add text over image, display call to action button over image, and many other options. Create a stunning sale or discount banners with CTA buttons and badges with this addon. The Pro Version offers extra effects and functionalities.

    -

    17. Before After Slider

    -

    Before After Slider – Image comparison Slider – A free Image comparison slider. This addon can compare two pictures with draggable or mouse hover options in horizontal and vertical(Pro) layouts.

    -

    18. Image Hotspot

    -

    Image Hotspots – A free Image Map Widget to build image hotspot maps, allows you to create hot spot image with 2x points on it. Add tooltips to icons to make it stunning and informative. The PRO versions offer unlimited hotspot points.

    -

    19. Forms Styler

    -

    Forms – This Form widget comes with the following options: contact form 7 styler, Gravity forms styler, Ninja Forms styler, and WPforms styler.

    -

    20. MailChimp Subscribe

    -

    MailChimp – This Newsletter addon helps you to collect emails from your website visitors by creating stunning email opt-in forms. Our Mailchimp Form is the best free Mailchimp integration tool for your WordPress website. Add …

    -', '1.7.1036', 'WP Royal', '5.0', '5.6', '6.8.3', 'https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1036.zip', '2021-06-07 00:00:00+00', '2025-10-26 08:30:00+00', 'https://profiles.wordpress.org/wproyal/', 96, 585, 40, 37, 600000, 13923945, 'https://royal-elementor-addons.com/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/royal-elementor-addons/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Royal Addons for Elementor – Addons and Templates Kit for Elementor", "slug": "royal-elementor-addons", "tags": {"elementor": "elementor", "elementor-addons": "elementor addons", "elementor-widgets": "elementor widgets", "elementor-templates": "elementor templates", "widgets-for-elementor": "widgets for elementor"}, "added": "2021-06-07", "icons": {"1x": "https://ps.w.org/royal-elementor-addons/assets/icon-128x128.gif?rev=2604295"}, "author": "WP Royal", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/royal-elementor-addons/assets/banner-772x250.png?rev=2782347", "high": "https://ps.w.org/royal-elementor-addons/assets/banner-1544x500.png?rev=2782347"}, "ratings": {"1": 21, "2": 4, "3": 5, "4": 13, "5": 542}, "version": "1.7.1036", "homepage": "https://royal-elementor-addons.com/", "requires": "5.0", "sections": {"faq": "\n
    \nWe have a query not addressed here, how can we contact you?\n\n

    \n

    Feel free to contact use anytime via this Contact form

    \n

    \n
    \nCan I use the plugin without Page Builder Plugin?\n\n

    \n

    No. You cannot use without Elementor since it’s an addon for Elementor.

    \n

    \n
    \nEditor fails to load or not working?\n\n

    \n

    It’s due to your server PHP settings. Increase your server PHP memory limit from the wp-config.php file or php.ini file. If you don’t have an idea about it. Please contact your hosting provider and ask to increase this parameters
    \n* PHP memory_limit = 512M
    \n* max_execution_time = 300

    \n

    \n
    \nDoes it work with any theme?\n\n

    \n

    YES! It will work with any theme where Elementor works.

    \n

    \n
    \nWill your plugin affect the performance of my site?\n\n

    \n

    We run tests to ensure the speed of the site is not affected when you activate our Elementor addons. We provide a way for you to deactivate those Elementor modules that you do not require for your site to avoid loading them unnecessarily on the pages built with Elementor page builder.

    \n

    \n
    \nWhat if I update to Premium version?\n\n

    \n

    Your existing Elementor elements & content will work with premium version. So you won’t lose your developed contents or any elementor elements.

    \n

    \n
    \nCan I use Royal Addons on a wordpress.com site?\n\n

    \n

    Since the plugin is hosted on wordpress.org, it is available on wordpress.com as well. However, you may need to opt for a business plan to install/activate third-party plugins on wordpress.com.

    \n

    \n
    \nDoes it work with Pro version of Page Builder?\n\n

    \n

    Yes, undoubtedly our addon works with Elementor Pro Version.

    \n

    \n
    \nWhat Are the Recommended PHP Settings\n\n

    \n

    Minimum php version 5.6
    \nmemory_limit 256M or more
    \npost_max_size 64M

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Muito bom

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy josysenna on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin muito bom

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Life Saver

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lejeantravels on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This has been the biggest learning experience I have ever had to endure. I am glad that the team held my hand and guided me through the process without giving me all the answers. You can''t learn if you are not willing to step out of your comfort zone and grow.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tesla Digital

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy marinho10 on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Indico a todos esse excelente PLUGIN!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incrivel

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy calendarioscriativo on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    <font dir=\"auto\" style=\"vertical-align: inherit;\"><font dir=\"auto\" style=\"vertical-align: inherit;\">Olá estão de parabéns o plugin é sensacional, rápido e dinâmico, muito fácil de manusear nota mil</font></font>

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome pluign Royal

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gerchin on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Royal Elementor Addons is a fantastic extension that really takes Elementor to the next level. It offers a wide range of unique widgets, templates, and effects that make designing websites faster and more creative. The interface feels seamless, and everything integrates perfectly with Elementor’s workflow. Support is responsive, and updates are frequent. Highly recommended for anyone who wants to build professional, visually stunning websites with ease!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Royal Addons

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy blackdragon46 on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I started using these addons and was surprised with their efficiency. There are many which are pro and require a hefty price to continue their use, but they also have a few free ones also.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kabir1240 on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great extension, really helps you get the most out of elementor. Has a lot of enhanced versions of pre-existing elements as well as some really cool new elements.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy traveler305 on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice Plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works for me.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Buddywarlock on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Getting up in age, however, even I found it easy to use this software.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Speeded up building

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kongcheng6 on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Pre-made kits + pro widgets cut my work time in half.

    \n
    \n
    \n", "changelog": "

    Royal Elementor Addons v1.7.1036 – 2025-10-26

    \n\n

    Royal Elementor Addons v1.7.1035 – 2025-10-8

    \n\n

    Royal Elementor Addons v1.7.1034 – 2025-9-19

    \n\n

    Royal Elementor Addons v1.7.1033 – 2025-9-16

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • ADDED: Business Coaching V2 – Elementor Template Kit – Business Coaching V2.
    • \n
    \n

    Royal Elementor Addons v1.7.1032 – 2025-9-5

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • ADDED: Lawyer V2 – Elementor Templates Kit – Lawyer V2.
    • \n
    • ADDED: Online Course V2 – Elementor Templates Kit – Online Course V2.
    • \n
    \n

    Royal Elementor Addons v1.7.1031 – 2025-8-15

    \n
      \n
    • FIXED: Minor Changes
    • \n
    \n

    Royal Elementor Addons v1.7.1030 – 2025-8-06

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1029 – 2025-8-03

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1028 – 2025-7-26

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1027 – 2025-7-04

    \n\n

    Royal Elementor Addons v1.7.1026 – 2025-6-18

    \n\n

    Royal Elementor Addons v1.7.1025 – 2025-6-10

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • ADDED: Taxonomy Condition for Single Templates of Theme Builder (by placing taxonomy-name/term-id in place of ‘all’)
    • \n
    • ADDED: Language option for google maps in dashboard settings
    • \n
    \n

    Royal Elementor Addons v1.7.1024 – 2025-6-5

    \n
      \n
    • ADDED: Business Landing Page V3 – Elementor Templates Kit – Landing Page Business V3.
    • \n
    • ADDED: Medical V2 – Elementor Templates Kit – Medical V2.
    • \n
    • ADDED: Yoga V2 – Elementor Templates Kit – Yoga V2.
    • \n
    • ADDED: Nutritionist V1 – Elementor Templates Kit – Nutritionist V1.
    • \n
    \n

    Royal Elementor Addons v1.7.1023 – 2025-6-2

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1022 – 2025-5-28

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1021 – 2025-5-27

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • FIXED: Freemius Security Related Issues
    • \n
    \n

    Royal Elementor Addons v1.7.1020 – 2025-5-21

    \n\n

    Royal Elementor Addons v1.7.1019 – 2025-5-15

    \n
      \n
    • ADDED: News Magazine Blog V8 – Elementor Template Kit – Magazine V8.
    • \n
    • ADDED: News Magazine Blog V9 – Elementor Template Kit – Magazine V9.
    • \n
    \n

    Royal Elementor Addons v1.7.1018 – 2025-5-01

    \n
      \n
    • FIXED: Minor Tweaks
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1017 – 2025-4-20

    \n
      \n
    • FIXED: Minor Tweaks
    • \n
    \n

    Royal Elementor Addons v1.7.1016 – 2025-4-02

    \n\n

    Royal Elementor Addons v1.7.1014 – 2025-3-31

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1013 – 2025-3-28

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1012 – 2025-3-14

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1010 – 2025-2-20

    \n
      \n
    • ADDED: Business Coaching V1 – Elementor Template Kit – Business Coaching V1.
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1009 – 2025-2-12

    \n\n

    Royal Elementor Addons v1.7.1008 – 2025-2-07

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • ADDED: Furniture Shop V2 – Elementor Template Kit – Furniture Store V2.
    • \n
    • ADDED: Jewelry Store V2 – Elementor Template Kit – Jewelry Store V2.
    • \n
    • ADDED: Date Widget
    • \n
    \n

    Royal Elementor Addons v1.7.1007 – 2025-1-12

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    • ADDED: Personal Blog V5 – Elementor Template Kit – Personal Blog V5.
    • \n
    \n

    Royal Elementor Addons v1.7.1006 – 2024-12-25

    \n
      \n
    • FIXED: Instagram Bug
    • \n
    \n

    Royal Elementor Addons v1.7.1005 – 2024-12-18

    \n
      \n
    • ADDED: New Year 2025 – Elementor Template Kit – New Year V1.
    • \n
    • ADDED: Christmas (Shop) – Elementor Templates Kit – Christmas V1.
    • \n
    • ADDED: Plumbing – Elementor Templates Kit – Plumbing V1.
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1004 – 2024-11-23

    \n
      \n
    • ADDED: Magazine Blog V7 – Elementor Template Kit – Magazine V7.
    • \n
    • ADDED: Business Landing Page V2 – Elementor Templates Kit – Landing Page Business V2.
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1003 – 2024-11-20

    \n
      \n
    • ADDED: Elementor Fashion (Shop) V4 Template Kit – Fashion.
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1002 – 2024-11-08

    \n
      \n
    • ADDED: Elementor Cleaning Services V2 Template Kit – Cleaning Services.
    • \n
    • ADDED: Elementor Car Repair V2 Template Kit – Car Repair.
    • \n
    • ADDED: Elementor Financial Services Template Kit – Financial Services.
    • \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1001 – 2024-10-30

    \n
      \n
    • FIXED: Minor Bugs
    • \n
    \n

    Royal Elementor Addons v1.7.1 – 2024-10-18

    \n
      \n
    • FIXED: Minor Bugs= Royal Elementor Addons v1.3.985 – 2024-08-26 =
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.987 – 2024-10-04

    \n
      \n
    • ADDED: Elementor Electrician V2 Template Kit – Electrician.
    • \n
    • ADDED: Elementor Book Shop (Shop) V1 Template Kit – Book Shop.
    • \n
    • ADDED: Taxonomy List Count Brackets option
    • \n
    • ADDED: Video Tutorial for License Mismatch Solution
    • \n
    • ADDED: Product Mini Cart Hover Color option
    • \n
    • ADDED: Search Notice for Booking and Appointment in Dashboard, Editor Panel and Templates Window.
    • \n
    • FIXED: Form Styler calling undefined wp forms function
    • \n
    • FIXED: Form Builder Shortcodes doesn’t work in to, cc and bcc fields of email action
    • \n
    • FIXED: AJAX Search Show Password Protected vulnerability
    • \n
    • FIXED: Magazine Grid Random Query Duplication on Front Page
    • \n
    • FIXED: Flip Box Active Class Issue on Safari Browser
    • \n
    • FIXED: Form Builder Webhook Action Label Issue
    • \n
    • FIXED: Google Maps, Team Member minor vulnerabilities
    • \n
    • FIXED: Post Grid post__not_in parameter passing empty string
    • \n
    • FIXED: Checkout Overflow Hidden Removed
    • \n
    • FIXED: Woo Grid Rating Icons in Incognito when Inline Fonts Activated
    • \n
    • FIXED: Phone Call SVG Hover
    • \n
    • FIXED: Some Controls used In JavaScript not Working due to Optimized Control Loading
    • \n
    \n

    Royal Elementor Addons v1.3.986 – 2024-09-04

    \n
      \n
    • FIXED: Countdown, Google Map and Media Grid minor vulnerability issues.
    • \n
    • FIXED: Restrict Show Password Protected Posts Control only to appear for admins (Ajax Search).
    • \n
    • FIXED: Add to Cart widget animation.
    • \n
    \n

    Royal Elementor Addons v1.3.985 – 2024-08-26

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.984 – 2024-08-26

    \n
      \n
    • FIXED: Mini Cart Browser Back/Forward arrows bug.
    • \n
    • FIXED: CSV not importing properly in Data Tables widget.
    • \n
    • FIXED: Back to Top Button SVG hover color issue.
    • \n
    • FIXED: Compare table not fetching attributes from different languages.
    • \n
    • FIXED: Mini Cart not expanding fully on sticky header.
    • \n
    • ADDED: Hide All Banners options to admin settings.
    • \n
    • ADDED: Option to display mobile mega menu content by default.
    • \n
    \n

    Royal Elementor Addons v1.3.983 – 2024-08-26

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.982 – 2024-08-19

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    • ADDED: Elementor Software Company V2 Template Kit – Software Company.
    • \n
    • ADDED: Elementor Fashion (Shop) V3 Template Kit – Fashion.
    • \n
    • ADDED: Elementor Wedding V2 Template Kit – Wedding.
    • \n
    • ADDED: Elementor Token Template Kit – Token.
    • \n
    \n

    Royal Elementor Addons v1.3.981 – 2024-07-18

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.980 – 2024-07-10

    \n\n

    Royal Elementor Addons v1.3.979 – 2024-06-27

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.978 – 2024-06-26

    \n
      \n
    • ADDED: Elementor Graphic Nature Template Kit – Graphic Nature.
    • \n
    • ADDED: Elementor Party Planer Template Kit – Party Planner.
    • \n
    • ADDED: Elementor Ico Landing Page Template Kit – Ico Landing Page.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.977 – 2024-06-06

    \n
      \n
    • ADDED: Elementor Car Rental Template Kit – Car Rental.
    • \n
    • ADDED: Elementor Cleaning Company Template Kit – Cleaning Company.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.976 – 2024-05-30

    \n
      \n
    • ADDED: Elementor Church V1 Template Kit – Church.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.975 – 2024-05-15

    \n
      \n
    • ADDED: Elementor Online Course V1 Template Kit – Online Course.
    • \n
    • ADDED: Elementor Electrician V1 Template Kit – Electrician.
    • \n
    • ADDED: Elementor Nail Salon V1 Template Kit – Nail Salon.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.974 – 2024-05-06

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.972 – 2024-04-17

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.971 – 2024-04-12

    \n
      \n
    • ADDED: Elementor Travel V3 Template Kit – Travel.
    • \n
    • ADDED: Digital Marketing V1 One Page Landing Page Template Kit – Digital Marketing.
    • \n
    • ADDED: Jewelry Store V1 Template Kit – Jewelry Store.
    • \n
    \n

    Royal Elementor Addons v1.3.97 – 2024-04-10

    \n
      \n
    • Tested up to Latest WP version
    • \n
    \n

    Royal Elementor Addons v1.3.96 – 2024-03-29

    \n\n

    Royal Elementor Addons v1.3.95 – 2024-03-22

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.94 – 2024-03-21

    \n\n

    Royal Elementor Addons v1.3.93 – 2024-03-13

    \n\n

    Royal Elementor Addons v1.3.92 – 2024-02-20

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.91 – 2024-02-18

    \n\n

    Royal Elementor Addons v1.3.90 – 2024-02-15

    \n\n

    Royal Elementor Addons v1.3.89 – 2024-02-08

    \n\n

    Royal Elementor Addons v1.3.88 – 2024-02-06

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    • ADDED: Designer Bio Template Kit Designer Bio.
    • \n
    \n

    Royal Elementor Addons v1.3.87 – 2024-01-25

    \n\n

    Royal Elementor Addons v1.3.86 – 2024-01-25

    \n\n

    Royal Elementor Addons v1.3.85 – 2023-12-27

    \n\n

    Royal Elementor Addons v1.3.84 – 2023-12-20

    \n\n

    Royal Elementor Addons v1.3.83 – 2023-12-11

    \n\n

    Royal Elementor Addons v1.3.82 – 2023-12-06

    \n
      \n
    • ADDED: WPML Multilingual Translation Support for REA Theme Builder Templates.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.81 – 2023-11-23

    \n\n

    Royal Elementor Addons v1.3.80 – 2023-10-17

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.79 – 2023-10-06

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    • FIXED: Security Issues.
    • \n
    \n

    Royal Elementor Addons v1.3.78 – 2023-09-29

    \n\n

    Royal Elementor Addons v1.3.77 – 2023-09-06

    \n\n

    Royal Elementor Addons v1.3.76 – 2023-08-30

    \n\n

    Royal Elementor Addons v1.3.75 – 2023-08-19

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.74 – 2023-08-18

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.73 – 2023-08-10

    \n\n

    Royal Elementor Addons v1.3.71 – 2023-07-11

    \n
      \n
    • ADDED: Business Landing Page – Elementor Templates Kit – Landing Page Business.
    • \n
    • ADDED: Digital Product Landing Page – Elementor Templates Kit – Landing Page Digital Product.
    • \n
    • ADDED: Construction v2 Elementor Templates Kit – Construction v2
    • \n
    • ADDED: Youtube, Vimeo and Custom Video Support for Advanced Slider Widget (Pro).
    • \n
    • ADDED: Category Filter for Ajax Search Widget (Pro). Preview
    • \n
    • ADDED: Category Grid Widget for any type of post types and taxonomies (Expert).
    • \n
    • ADDED: Sorting by Custom Fields for Advanced Post Grid/Slider/Carousel Widget (Pro).
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.70 – 2023-07-01

    \n
      \n
    • ADDED: Auto Parts Store Elementor Templates Kit – Auto Parts Store.
    • \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.69 – 2023-06-08

    \n
      \n
    • ADDED: Home Care v1 Elementor Templates Kit – Home Care v1.
    • \n
    • ADDED: Fintech v1 Elementor Templates Kit – Fintech v1.
    • \n
    • ADDED: One Page Portfolio v2 Elementor Templates Kit – One Page Portfolio v1.
    • \n
    • FIXED: Instagram and Twitter widgets related minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.68 – 2023-05-19

    \n
      \n
    • ADDED: Dynamic Tags for widgets,Custom Post Type Sypport (CTP), Custom Fields to build Dynamic Websites.
    • \n
    • ADDED: Wishlist & Compare functionality for Woocommerce. Check Demo.
    • \n
    • ADDED: Elementor Form Buidler Widget – Form Builder.
    • \n
    • ADDED: Secondary image on hover for Post Grid/Slider/Carousel and WooCommerce Grid/Slider/Carousel grid widgets.Check Demo.
    • \n
    • ADDED: Construction v3 Elementor Templates Kit – Construction v3.
    • \n
    • ADDED: Digital Agency v3 Elementor Templates Kit – Digital Agency v3.
    • \n
    • ADDED: Personal Blog v3 Elementor Templates Kit – Personal Blog v3.
    • \n
    • ADDED: Ecommerce v1 Elementor Templates Kit – Ecommerce v1.
    • \n
    • FIXED: Minor Bugs.
    • \n
    • FIXED: Elementor Ajax Search widgets – woocommerce search tempalte related bug.
    • \n
    \n

    Royal Elementor Addons v1.3.67 – 2023-04-03

    \n
      \n
    • ADDED: Fashion v2 Elementor Templates Kit – Fashion v2.
    • \n
    \n

    Royal Elementor Addons v1.3.66 – 2023-03-02

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.65 – 2023-02-27

    \n
      \n
    • FIXED: Minor Bugs for Instagram elementor feed widget.
    • \n
    • FIXED: Minor Bugs for the elementor ajax search widget.
    • \n
    • FIXED: Many other small improvements and fixes.
    • \n
    • FIXED: Parallax-related small bugs, now new elementor container supports parallax.
    • \n
    • ADDED: Many premade elementor template pages in the REA library.
    • \n
    • ADDED: Widgets Search and filter buttons in the plugin backend.
    • \n
    • ADDED: Free vs PRO version comparison Table in the plugin backend.
    • \n
    • ADDED: Real Estate v2 Elementor Templates Kit – Real Estate.
    • \n
    \n

    Royal Elementor Addons v1.3.64 – 2023-02-10

    \n
      \n
    • FIXED: Minor Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.63 – 2023-02-09

    \n
      \n
    • ADDED: Instagram Feed widget.
    • \n
    • ADDED: Twitter Feed widget.
    • \n
    • ADDED: Offcanvas Menu widget (aka side menu).
    • \n
    • ADDED: Lazy Loading for Elementor post grid widgets.
    • \n
    • ADDED: Display Only Scheduled Posts option for Elementor post grid widget.
    • \n
    • ADDED: Vertical Slider Option for Advanced Slider widget.
    • \n
    • ADDED: Option to open grid items in new tab for Elementor post grid, woocommerce grid, and for magazine grid widgets.
    • \n
    • FIXED: Elementor header footer was visible in coming soon and in maintenance mode.
    • \n
    • FIXED: Custom field, Linkable filters and extra text-related issues for Post grid, woocommerce grid and magazine grid.
    • \n
    • ADDED: Responsive Gutter controls for All grids.
    • \n
    • FIXED: One page navigation custom icon issues.
    • \n
    • ADDED: Business Consulting Elementor Templates Kit – Business Consulting.
    • \n
    • ADDED: Car Repair Elementor Templates Kit – Car Repair.
    • \n
    \n

    Royal Elementor Addons v1.3.62 – 2023-01-16

    \n
      \n
    • ADDED: Fytness & Gym Elementor Templates Kit – Fytness & Gym.
    • \n
    \n

    Royal Elementor Addons v1.3.61 – 2023-01-12

    \n
      \n
    • ADDED: Phone field added to elementor Mailchimp widget.
    • \n
    • ADDED: Clear fields option after form submission for elementor Mailchimp widget.
    • \n
    • FIXED: Whatsapp and telegram sharing widgets issues fixed.
    • \n
    • FIXED: Deprecated widgets registration hooks fixed.
    • \n
    • ADDED: Custom CSS turn on/off switcher added in the dashboard extensions panel.
    • \n
    • FIXED: Elementor Magazin grid widget featured image gradient bg color.
    • \n
    \n

    Royal Elementor Addons v1.3.60 – 2022-12-28

    \n
      \n
    • ADDED: Hotel Elementor Template Kit Hotel.
    • \n
    • ADDED: Premade Pages Templates Library(New requested feature).
    • \n
    • FIXED: Elementor Woocommerce Grid/Slider widget query-related issues.
    • \n
    • FIXED: Elementor mega menu, search widget, and template kit import related Security issues.
    • \n
    \n

    Royal Elementor Addons v1.3.59 – 2022-12-15

    \n
      \n
    • FIXED: Category and Tag query issue for elementor post grid widget.
    • \n
    \n

    Royal Elementor Addons v1.3.58 – 2022-12-13

    \n
      \n
    • TWEAK: One more improvement for elementor templates Kit import process, about 5-10% faster than in the previous versions. Now the image cropping process only starts after the content import will end. Please note this tweak does not apply to the pre-made elementor widgets importing process.
    • \n
    \n

    Royal Elementor Addons v1.3.57 – 2022-12-09

    \n
      \n
    • TWEAK: Improved import time for all elementor templates Kit, about 20% faster than before.
    • \n
    • FIXED: Templates kit import issue for some hosting providers.
    • \n
    • FIXED: Some bug fixes for the elementor toggle widget.
    • \n
    \n

    Royal Elementor Addons v1.3.56 – 2022-12-06

    \n
      \n
    • FIXED: Security Related issues.
    • \n
    • TWEAK: Custom Post type support (PRO) for Post grid, Magazin Grid, Content Ticker, and Timeline widget.
    • \n
    \n

    Royal Elementor Addons v1.3.55 – 2022-12-01

    \n\n

    Royal Elementor Addons v1.3.54 – 2022-11-25

    \n
      \n
    • Improvements: Huge Performance improvements – All elementor addons and extensions now use 2x less PHP memory.
    • \n
    • Improvements: All OLD Query Controls for Post Grid, Post Slider, Post Carousel, Image Grid, Woocommerce Grid, and Woocommerce Carousel widgets were replaced with Ajax Control Selection.
    • \n
    • ADDED: New feature to Elementor Taxonomy List widget – Extended Filters and Dropdown For Child Categories (Pro).
    • \n
    • FIXED: Minor bugs for Elementor Timeline Widget – Pro query options fixed.
    • \n
    • FIXED: Minor bugs for Elementor Mega Menu widget – Badge Style fixes.
    • \n
    • ADDED: New Control – “Display On Separate Lines” (Pro) for Elementor Post Navigation widget.
    • \n
    • ADDED: New Control – Trim Title & Excerpt By Letter Count for Post grid, Woocommerce grid and Magazin Grid Widgets.(Pro).
    • \n
    • ADDED: New Control – Grid Ordering feature for Post grid and Woocommerce grid(Pro).
    • \n
    • Improvements: All elementor template kits now use 2x less PHP memory in the frontend.
    • \n
    • ADDED: Feature request sections for all Elementor Widgets.
    • \n
    • TWEAK: Show Products Sorting is disabled by default for the Elementor Woocommerce Grid widget.
    • \n
    \n

    Royal Elementor Addons v1.3.53 – 2022-11-08

    \n
      \n
    • FIXED: Minor bugs for Elementor Mega Menu widget.
    • \n
    • ADDED: Feature request sections.
    • \n
    \n

    Royal Elementor Addons v1.3.52 – 2022-11-07

    \n
      \n
    • FIXED: Minor bugs for Elementor Mega Menu widget.
    • \n
    • FIXED: Minor bugs for Elementor Ajax Search widget.
    • \n
    \n

    Royal Elementor Addons v1.3.51 – 2022-10-31

    \n
      \n
    • ADDED: Elementro Mega Menu widget with Off-canvas mobile menu support(PRO).
    • \n
    • ADDED: Elementro Advanced Accordion widget with Search (PRO).
    • \n
    • ADDED: Elementro Image Accordion widget.
    • \n
    • ADDED: Elementro Charts Widget.
    • \n
    • ADDED: Live Ajax Search functionality for Elementor Search Widget. Supports Ajax Search for Woocommerce and for any post type.
    • \n
    • ADDED: Elementor Page List widget for Mega Menu.
    • \n
    • ADDED: Royal Elementor Theme Builder Architecture & Interior Templates Kit.
    • \n
    • FIXED: Minor bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.50 – 2022-09-23

    \n
      \n
    • FIXED: Minor bugs.
    • \n
    • ADDED: Some Controlls to the table widgets.
    • \n
    \n

    Royal Elementor Addons v1.3.49 – 2022-09-22

    \n
      \n
    • FIXED: Minor bugs.
    • \n
    • ADDED: Elementor Data Table Widget.
    • \n
    • ADDED: Elementor Reading Progress Bar Widget.
    • \n
    • ADDED: Royal Elementor Theme Builder Travel Agency Templates Kit.
    • \n
    \n

    Royal Elementor Addons v1.3.48 – 2022-09-13

    \n
      \n
    • FIXED: Fixed minor bugs.
    • \n
    • ADDED: Royal Elementor Theme Builder Electornic Store Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder Food Delivery Templates Kit.
    • \n
    \n

    Royal Elementor Addons v1.3.47 – 2022-08-10

    \n
      \n
    • FIXED: Fixed minor bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.46 – 2022-08-04

    \n
      \n
    • FIXED: Fixed minor woocommerce related bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.45 – 2022-07-027

    \n
      \n
    • ADDED: Elementor Woocommerce Builder in Theme Builder Section.
    • \n
    • ADDED: 14+ Elementor Woocommerce Single Product Builder Widgets like: Add to cart widget, product Price widget, product Breadcrumbs widget (only in PRO) , product Media widget, product Rating widget and so on…
    • \n
    • ADDED: Elementor Woocommerce Minicart Widgets (Minicart sidebar and other advanced options supported only in PRO).
    • \n
    • ADDED: Elementor Woocommerce Product Filter Widgets (only in PRO).
    • \n
    • ADDED: Elementor Woocommerce Category Grid Widgets (only in PRO).
    • \n
    • ADDED: Elementor Woocommerce My Account Widgets (only in PRO).
    • \n
    • ADDED: Query products by Sale, Featured, Upsell, Cross-sell in Woo Grid/Slider/Carousel widget (only in PRO).
    • \n
    • ADDED: Royal Elementor Woocommerce Builder Woo Shop Templates Kit.
    • \n
    • ADDED: Royal Elementor Woocommerce Builder Fashion Templates Kit. (only in PRO)
    • \n
    • ADDED: Royal Elementor Woocommerce Builder Grocery Store Templates Kit. (only in PRO)
    • \n
    • ADDED: Royal Elementor Woocommerce Builder Furniture Store Templates Kit. (only in PRO)
    • \n
    \n

    Royal Elementor Addons v1.3.44 – 2022-06-03

    \n\n

    Royal Elementor Addons v1.3.43 – 2022-31-05

    \n
      \n
    • NEWS: We are working hard to finish Woocommerce integration in the theme builder. We hope the first demo will be available in around 30-40 days.
    • \n
    • ADDED: Royal Elementor Theme Builder Digital Marketing Agency Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder One page – Digital Marketing Agency Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder Pet Care Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder NFT Portfolio Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder Car Wash Templates Kit.
    • \n
    • FIXED: Many small bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.42 – 2022-29-04

    \n
      \n
    • ADDED: Royal Elementor Theme Builder NFT Portfolio Templates Kit.
    • \n
    \n

    Royal Elementor Addons v1.3.40 – 2022-19-04

    \n
      \n
    • ADDED: Royal Elementor Theme Builder Magazine Blog v3 Free Templates Kit.
    • \n
    • ADDED: Royal Elementor Theme Builder Video Tutorial.
    • \n
    • ADDED: Elementor Flip Carousel widget.
    • \n
    • ADDED: Elementor Features List widget.
    • \n
    • ADDED: Elementor Dual Color Heading widget.
    • \n
    \n

    Royal Elementor Addons v1.3.39 – 2022-12-04

    \n
      \n
    • FIXED: Elementor Theme Builder minor issues.
    • \n
    \n

    Royal Elementor Addons v1.3.38 – 2022-04-06

    \n
      \n
    • ADDED: Elementor Theme Builder. Customize every fundamental part of your WordPress site without coding including your Header, Footer, Archives, Posts, Default Pages, 404 Pages, etc…
    • \n
    • ADDED: Elementor Theme Builder Widgets: Post Title, Post Media, Post Meta, Post Navigation, Post Comments, Post Author, Archive Page Title.
    • \n
    • ADDED: Elementor Theme Builder Demos:
    • \n
    • Personal Blog
    • \n
    • Magazine Blog v1
    • \n
    • Magazine Blog v2
    • \n
    • Food Blog
    • \n
    • Travel Blog
    • \n
    \n

    Royal Elementor Addons v1.3.37 – 2022-04-04

    \n
      \n
    • FIXED: Elementor Header, Elementor Footer, Elementor Popup import issue.
    • \n
    \n

    Royal Elementor Addons v1.3.36 – 2022-28-03

    \n
      \n
    • FIXED: Removed Reset CSS code which gives ability to adjust content better.
    • \n
    \n

    Royal Elementor Addons v1.3.34 – 2022-18-03

    \n
      \n
    • FIXED: Unordered and Ordered Lists spacing issue, also Headings size issue fixed in Royal Addons for Elementor.
    • \n
    \n

    Royal Elementor Addons v1.3.33 – 2022-4-03

    \n
      \n
    • ADDED: Travel Blogger & Influencer Elementor Template Kit.
    • \n
    • ADDED: Freemius SDK update to 2.4.3.
    • \n
    \n

    Royal Elementor Addons v1.3.32 – 2022-24-02

    \n
      \n
    • ADDED: Digital Agency Elementor Template Kit.
    • \n
    • ADDED: Video Tutorials to Particles Effects addon for Elementor and Sticky Section addon Elementor.
    • \n
    \n

    Royal Elementor Addons v1.3.30 – 2022-14-02

    \n
      \n
    • ADDED: Lawyer Elementor Template Kit.
    • \n
    • ADDED: Elementor Timeline Widget Predefined Styles.
    • \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.29 – 2022-7-02

    \n
      \n
    • FIX: Elementor Sticky Header conflict with other Elementor Addons.
    • \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.28 – 2022-2-02

    \n
      \n
    • FIX: Minor Posts Timeline Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.27 – 2022-31-01

    \n
      \n
    • ADDED: Photographer Portfolio Elementor Template Kit Dark.
    • \n
    • ADDED: Photographer Portfolio Elementor Template Kit Light.
    • \n
    • ADDED: Wine Bar Elementor Template Kit.
    • \n
    • ADDED: Elementor Timeline Widget.
    • \n
    • FIX: Elementor Template kit causes daouble header issue on some popular themes.
    • \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.26 – 2022-21-01

    \n
      \n
    • ADDED: Pizza Restaurant Elementor Template.
    • \n
    • ADDED: Royal Elementor Widget Pro Features List Section.
    • \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.25 – 2021-12-24

    \n
      \n
    • ADDED: Elementor Templates Kit Library (Elementor Starter Sites).
    • \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.23 – 2021-12-09

    \n
      \n
    • FIX: Minor but essential Bugs.
    • \n
    \n

    Royal Elementor Addons v1.3.22 – 2021-12-03

    \n
      \n
    • FIX: Elementor Pricing Table widget Button link is now clickable.
    • \n
    • FIX: Custom Post Types Elementor support option issue.
    • \n
    • ADDED: New Predefined Styles to Royal Elementor Addons Library.
    • \n
    • ADDED: Option to show Elementor Header and Footer on Elementor Canvas pages.
    • \n
    • ADDED: Youtube Video Tutorial link to Elementor OnePage Navigation Widget.
    • \n
    \n

    Royal Elementor Addons v1.3.21 – 2021-11-22

    \n
      \n
    • FIX: Minor but essential Bugs.
    • \n
    • ADDED: White Label Branding (Supported in PRO verison)
    • \n
    \n

    Royal Elementor Addons v1.3.2 – 2021-11-19

    \n
      \n
    • FIX: Elementor Text widget bullet list issue.
    • \n
    • FIX: Elementor Team member widget description option doesn’t accept HTML tags.
    • \n
    • FIX: Elementor Sharing widget WhatsApp sharing issue.
    • \n
    \n

    Royal Elementor Addons v1.3 – 2021-10-29

    \n
      \n
    • ADDED: Elementor Header and Footer Builder.
    • \n
    • ADDED: Elementor Popups (Elementor Modal Popups) Builder. Offer Sales Banners, Subscriptions Banners, GDPR Cookie Consent & Compliance Notice, Cookie Notice, Age Verification. With Exit Intent query parameter targeting (only in PRO).
    • \n
    • ADDED: Elementor Predefined Styles for Popups and various Royal Elementor Addons Widgets.
    • \n
    • ADDED: Elementor Particles Effect to the section options.
    • \n
    • ADDED: Elementor Parallax Background Effect to the section options.
    • \n
    • ADDED: Elementor Parallax Multi Layer Effect to the section options.
    • \n
    • ADDED: Elementor Custom CSS option to the Widgets, Columns and Sections.
    • \n
    • ADDED: Freemius has been integrated.
    • \n
    • FIX: Elementor Phone Call Widget has no icon in editor.
    • \n
    • FIX: Elementor Flip Box front button z-index issue.
    • \n
    \n

    Royal Elementor Addons v1.2 – 2021-09-24

    \n
      \n
    • FIX: Elementor Grid Widget responsive column issues.
    • \n
    • FIX: Elementor Slider Widget responsive column issues.
    • \n
    • FIX: Elementor Content Ticker Widget responsive column issues.
    • \n
    • FIX: Elementor Testimonial Carousel Widget responsive column issues.
    • \n
    • FIX: Added support for Elementor beta breakpoints.
    • \n
    \n

    Royal Elementor Addons v1.0 – 2021-08-14

    \n
      \n
    • Initial Release.
    • \n
    \n", "description": "

    Royal Elementor addons is the most versatile, intuitive, and easy to use Popular Page Builder extension. Our goal is to provide you with the tools to make things happen, efficiently, and fast compare to other elementor addons. Choosing us is not only a mindset, but it is also a requirement if you intend to gain an edge over your competitors when creating your website. The best part is that you can design anything without having to touch a single line of code.

    \n

    Comes with 100+ Elementor addons, 140+ Elementor Templates KIT (Growing Each Week), Theme Builder, WooCommerce Builder, Elementor Mega Menu Builder, Popup Builder, Premade Widget Blocks & Extensions. Creative and self-intuitive widgets to take your WordPress website to the next level. All widgets are Free and the Pro Version offers even more advanced functionality.

    \n

    Free and Pro functionalities are mixed in the Widget Demos below.

    \n

    Plugin Demo Page
    \nElementor Templates Demo Page
    \nWoocommerce Elementor Templates Demo Page

    \n

    Widget List:

    \n\n

    Woocommerce Widgets:

    \n\n

    Extensions and Other Features

    \n\n

    Elementor Wocommerce Builder Templates Kits

    \n\n

    Elementor Theme Builder Templates Kits

    \n\n

    Elementor Templates Kits

    \n\n

    How to Import Template Kit:

    \n

    Navigate to plugin Menu > Templates Kit > Select Kit you want to import > Click on the import Template Kit button.
    \nDemo Data will be installed from Our Website.
    \nWhat’s imported: Posts, pages, images in the media library, menu items, some basic settings like which page will be set as homepage, premade headers, and premade footers, popups if demo includes it.
    \nIf you already have posts, pages, or any other data in your WordPress none of them will be deleted.

    \n

    Widgets short Description:

    \n

    1. Elementor Post Grid

    \n

    Post Grid – Post Slider – Post Carousel – A free Elementor Post grid widget. This widget could be used as a recent posts slider, post carousel, FitRows grid, masonry grid (Pro), portfolio grid, list style grid, filtrable grid if you will enable isotope filters, media grid for video project showcase and more. Simply the best solution for WordPress blog posts or custom post types. Comes with the following options: multicolumns, numbered pagination, random post display option, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for filters, grid filters (live filters with isotope) and much more.

    \n

    2. Elementor Woocommerce Grid

    \n

    WooCommerce Product Grid – Product Slider – Product Carousel – A free WooCommerce Grid Widget. Could be used as product carousel, product slider, product list, product category grid, category carousel, category slider, filtrable grid to display wooCommerce products and much more. This elementor addon comes with the following options: multicolumn, numbered pagination, load more button, infinite scroll (Pro), product likes (Pro), product sharing (Pro), custom fields (Pro), lightbox with the gallery, linkable filters (deep linking), custom icons for filters, live grid filters (with isotope filters), sorting and much more.

    \n

    3. Image Grid

    \n

    Image Grid – Image Slider – Image Carousel – A free Image Grid Widget. Could be used as an image gallery, logo grid, image slider, image carousel, and much more. Addon comes with the following options: multicolumn grids, numbered pagination, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for the filters, FitRows grid with a isotope filters, masonry grid and much more.

    \n

    Magazine Grid – Slider – A free Magazine Grid Widget. This widget is the #1 Magazine Grid builder widget on the repository. Could be used as magazine layout, newspaper layout, news grid, news slider(PRO).

    \n

    5. Advanced Slider

    \n

    Advanced Slider – Carousel – A free Image Slider Widget. Could be used as image slider, logo carousel, content slider, template slider (Pro). Creat unique looking hero section with this slider. It is fully responsive and has full width and full screen options. Also Pro version comes with Ken Burns effect & animated content.

    \n

    6. Testimonial Slider

    \n

    Testimonial Slider – A free Testimonial Slider Widget. This widget will showcase your customers reviews on your WordPress website. The widget offers following options: customers reviews slider, testimonials ratings (stars), company logo option, clients/customer image, texts with vintage quotes.

    \n

    7. Elementor Menu widget

    \n

    Nav Menu – A free Nav Menu Widget. This widget will make your WordPress Menu trully unique by customizing its look and feel without using code. Addon offers following options: mobile menu customization, drop down menu setup, hamburger menu, menu hover effects and hover animations. Also Pro version offers vertical menu and sticky header. Most advanced & customizable responsive menu.

    \n

    8. Onepage Navigation

    \n

    Onepage Navigation – A free Onepage Navigation Widget. This widget allows you to create an amazing onepage scroll experiance WordPress website with just a few clicks. Can be used to create floating menu, sticky navigation menu, side menu with icons to scroll to any section.

    \n

    9. Pricing Table

    \n

    Pricing Table – A free Pricing Table Widget. This Pricing Comparison Table widget helps you to create an effective price comparison table with unique styling, which allows you to display not just the cost, but also the features you offer. A widget could be used as a regular pricing table & as a pricing table with a toggle button to switch from Monthly/Yearly plans. Pro version offers different tooltip options for each pricing table feature, also it’s possible to have more than 2 pricing plans switcher, like Monthly/Yearly/Lifetime (You can check the demo on the widget preview page).

    \n

    10. Content Toggle

    \n

    Content Toggle – A free Content Toggle Widget. You can load Elementor Templates or simply insert images and text to style it the way you want. A widget could be used as a pricing switcher as well, for example, to switch between Monthly/Yearly/Lifetime pricing plans. Pro version offers more than 2 toggle options – Check out the widget demo page to see all its possibilities.

    \n

    11. Countdown Timer

    \n

    Countdown Timer – This widget allows you to display a timer that counts down to a specific time or date. A widget could be used as a black Friday sale countdown timer, to create urgency for users for your event, sales, or opt-in forms. You can set various actions after the timer expires: hide the timer, display a message, redirect or load the template. The Pro version offers an Evergreen timer (checkout widget demo page), recurring countdown timer, and restart timer options.

    \n

    12. Progress Bar

    \n

    Progress Bar – This Skill Bar widget offers unique ways to style various types of stats in percentages or numbers, can be used for classic animated progress bars, circle progress bars, or vertical progress bars (Pro).

    \n

    13. Advanced Tabs

    \n

    Tabs – This Advanced Tab widget lets you display key information in an interactive manner, that attracts visitors and also saves lots of space on your WordPress webpage. The widget offers horizontal tabs, vertical tabs, tab loading animation effects, and more. Trigger tab via mouse hover or click both options are available. Also, you can have nested tabs via the elementor templates loader which means you can use any elementor addons inside tab content.

    \n

    14. Advanced Text

    \n

    Advanced Text – Fancy Text – This Text animation widget lets you highlight any text with different colors, animation, and typing effects to draw your visitor’s attention instantly. Available effects: typewriter effect, fancy text effect, animated text effect, highlighted text effect, text-shadow effect, text over image effect, text and image mask effect, 3d text effect, text slider, gradient text, the background image on text, text glitch effect, text long colored shadow effect, word animation effect, text skew effect, text flip vertical and horizontal effect, slide, clip, zoom, scale, circle line, underline zigzag line, curly line, cross x line, line through and others. Pro Version offers extra effects and functionalities.

    \n

    15. Flip Box

    \n

    Flip Box – A free Flip Box Widget. This widget with hover box animation and call-to-action buttons will highlight your content in a great way and allows you to create stunning promo boxes and ads with CTA button functionality. The widget offers more flipping effects in the pro version and some extra functionality as well.

    \n

    16. Promo Box

    \n

    Promo Box – With this widget, you can create: a clickable image with varios effects like: a clickable image with image hover effects, option to add text over image, display call to action button over image, and many other options. Create a stunning sale or discount banners with CTA buttons and badges with this addon. The Pro Version offers extra effects and functionalities.

    \n

    17. Before After Slider

    \n

    Before After Slider – Image comparison Slider – A free Image comparison slider. This addon can compare two pictures with draggable or mouse hover options in horizontal and vertical(Pro) layouts.

    \n

    18. Image Hotspot

    \n

    Image Hotspots – A free Image Map Widget to build image hotspot maps, allows you to create hot spot image with 2x points on it. Add tooltips to icons to make it stunning and informative. The PRO versions offer unlimited hotspot points.

    \n

    19. Forms Styler

    \n

    Forms – This Form widget comes with the following options: contact form 7 styler, Gravity forms styler, Ninja Forms styler, and WPforms styler.

    \n

    20. MailChimp Subscribe

    \n

    MailChimp – This Newsletter addon helps you to collect emails from your website visitors by creating stunning email opt-in forms. Our Mailchimp Form is the best free Mailchimp integration tool for your WordPress website. Add …

    \n", "screenshots": "
    1. \"\"
    2. \"\"
    3. \"\"
    4. \"\"
    5. \"\"
    6. \"\"
    7. \"\"
    8. \"\"
    ", "installation": "

    Note : This plugin works with Elementor. Make sure you have Elementor installed.

    \n
      \n
    1. Install the plugin through the WordPress plugins screen directly, or Upload the plugin files to the /wp-content/plugins/royal-elementor-addons directory,
    2. \n
    3. Activate the plugin through the ‘Plugins’ screen in WordPress
    4. \n
    5. All Settings will be found in Admin sidebar menu -> Royal Addons
    6. \n
    7. Also you can see all Widgets under the category “Royal Elementor Addons” inside Elementor editor in your element/widget list.
    8. \n
    \n

    If you have any questions please check out FAQ page or contact us via this Contact form

    \n"}, "versions": {"1.2": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.zip", "1.0.0": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.1.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.2.zip", "1.7.1": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1.zip", "trunk": "https://downloads.wordpress.org/plugin/royal-elementor-addons.zip", "1.3.21": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.21.zip", "1.3.22": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.22.zip", "1.3.23": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.23.zip", "1.3.24": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.24.zip", "1.3.25": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.25.zip", "1.3.26": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.26.zip", "1.3.27": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.27.zip", "1.3.28": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.28.zip", "1.3.29": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.29.zip", "1.3.30": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.30.zip", "1.3.31": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.31.zip", "1.3.32": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.32.zip", "1.3.33": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.33.zip", "1.3.34": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.34.zip", "1.3.35": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.35.zip", "1.3.36": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.36.zip", "1.3.37": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.37.zip", "1.3.38": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.38.zip", "1.3.39": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.39.zip", "1.3.40": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.40.zip", "1.3.41": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.41.zip", "1.3.42": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.42.zip", "1.3.43": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.43.zip", "1.3.44": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.44.zip", "1.3.45": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.45.zip", "1.3.46": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.46.zip", "1.3.47": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.47.zip", "1.3.48": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.48.zip", "1.3.49": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.49.zip", "1.3.50": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.50.zip", "1.3.51": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.51.zip", "1.3.52": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.52.zip", "1.3.53": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.53.zip", "1.3.54": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.54.zip", "1.3.55": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.55.zip", "1.3.56": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.56.zip", "1.3.57": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.57.zip", "1.3.58": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.58.zip", "1.3.59": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.59.zip", "1.3.60": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.60.zip", "1.3.61": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.61.zip", "1.3.62": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.62.zip", "1.3.63": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.63.zip", "1.3.64": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.64.zip", "1.3.65": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.65.zip", "1.3.66": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.66.zip", "1.3.67": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.67.zip", "1.3.68": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.68.zip", "1.3.69": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.69.zip", "1.3.70": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.70.zip", "1.3.71": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.71.zip", "1.3.72": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.72.zip", "1.3.73": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.73.zip", "1.3.74": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.74.zip", "1.3.75": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.75.zip", "1.3.76": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.76.zip", "1.3.77": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.77.zip", "1.3.78": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.78.zip", "1.3.79": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.79.zip", "1.3.80": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.80.zip", "1.3.81": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.81.zip", "1.3.82": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.82.zip", "1.3.83": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.83.zip", "1.3.84": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.84.zip", "1.3.85": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.85.zip", "1.3.86": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.86.zip", "1.3.87": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.87.zip", "1.3.88": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.88.zip", "1.3.89": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.89.zip", "1.3.90": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.90.zip", "1.3.91": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.91.zip", "1.3.92": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.92.zip", "1.3.93": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.93.zip", "1.3.94": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.94.zip", "1.3.95": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.95.zip", "1.3.96": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.96.zip", "1.3.97": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.97.zip", "1.3.971": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.971.zip", "1.3.972": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.972.zip", "1.3.973": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.973.zip", "1.3.974": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.974.zip", "1.3.975": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.975.zip", "1.3.976": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.976.zip", "1.3.977": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.977.zip", "1.3.978": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.978.zip", "1.3.979": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.979.zip", "1.3.980": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.980.zip", "1.3.981": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.981.zip", "1.3.982": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.982.zip", "1.3.983": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.983.zip", "1.3.984": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.984.zip", "1.3.985": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.985.zip", "1.3.986": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.986.zip", "1.3.987": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.3.987.zip", "1.7.1001": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1001.zip", "1.7.1002": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1002.zip", "1.7.1003": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1003.zip", "1.7.1004": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1004.zip", "1.7.1005": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1005.zip", "1.7.1006": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1006.zip", "1.7.1007": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1007.zip", "1.7.1008": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1008.zip", "1.7.1009": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1009.zip", "1.7.1010": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1010.zip", "1.7.1011": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1011.zip", "1.7.1012": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1012.zip", "1.7.1013": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1013.zip", "1.7.1014": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1014.zip", "1.7.1015": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1015.zip", "1.7.1016": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1016.zip", "1.7.1017": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1017.zip", "1.7.1018": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1018.zip", "1.7.1019": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1019.zip", "1.7.1020": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1020.zip", "1.7.1021": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1021.zip", "1.7.1022": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1022.zip", "1.7.1023": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1023.zip", "1.7.1024": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1024.zip", "1.7.1025": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1025.zip", "1.7.1026": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1026.zip", "1.7.1027": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1027.zip", "1.7.1028": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1028.zip", "1.7.1029": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1029.zip", "1.7.1030": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1030.zip", "1.7.1031": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1031.zip", "1.7.1032": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1032.zip", "1.7.1033": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1033.zip", "1.7.1034": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1034.zip", "1.7.1035": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1035.zip", "1.7.1036": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1036.zip"}, "downloaded": 13923945, "description": "

    Royal Elementor addons is the most versatile, intuitive, and easy to use Popular Page Builder extension. Our goal is to provide you with the tools to make things happen, efficiently, and fast compare to other elementor addons. Choosing us is not only a mindset, but it is also a requirement if you intend to gain an edge over your competitors when creating your website. The best part is that you can design anything without having to touch a single line of code.

    \n

    Comes with 100+ Elementor addons, 140+ Elementor Templates KIT (Growing Each Week), Theme Builder, WooCommerce Builder, Elementor Mega Menu Builder, Popup Builder, Premade Widget Blocks & Extensions. Creative and self-intuitive widgets to take your WordPress website to the next level. All widgets are Free and the Pro Version offers even more advanced functionality.

    \n

    Free and Pro functionalities are mixed in the Widget Demos below.

    \n

    Plugin Demo Page
    \nElementor Templates Demo Page
    \nWoocommerce Elementor Templates Demo Page

    \n

    Widget List:

    \n\n

    Woocommerce Widgets:

    \n\n

    Extensions and Other Features

    \n\n

    Elementor Wocommerce Builder Templates Kits

    \n\n

    Elementor Theme Builder Templates Kits

    \n\n

    Elementor Templates Kits

    \n\n

    How to Import Template Kit:

    \n

    Navigate to plugin Menu > Templates Kit > Select Kit you want to import > Click on the import Template Kit button.
    \nDemo Data will be installed from Our Website.
    \nWhat’s imported: Posts, pages, images in the media library, menu items, some basic settings like which page will be set as homepage, premade headers, and premade footers, popups if demo includes it.
    \nIf you already have posts, pages, or any other data in your WordPress none of them will be deleted.

    \n

    Widgets short Description:

    \n

    1. Elementor Post Grid

    \n

    Post Grid – Post Slider – Post Carousel – A free Elementor Post grid widget. This widget could be used as a recent posts slider, post carousel, FitRows grid, masonry grid (Pro), portfolio grid, list style grid, filtrable grid if you will enable isotope filters, media grid for video project showcase and more. Simply the best solution for WordPress blog posts or custom post types. Comes with the following options: multicolumns, numbered pagination, random post display option, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for filters, grid filters (live filters with isotope) and much more.

    \n

    2. Elementor Woocommerce Grid

    \n

    WooCommerce Product Grid – Product Slider – Product Carousel – A free WooCommerce Grid Widget. Could be used as product carousel, product slider, product list, product category grid, category carousel, category slider, filtrable grid to display wooCommerce products and much more. This elementor addon comes with the following options: multicolumn, numbered pagination, load more button, infinite scroll (Pro), product likes (Pro), product sharing (Pro), custom fields (Pro), lightbox with the gallery, linkable filters (deep linking), custom icons for filters, live grid filters (with isotope filters), sorting and much more.

    \n

    3. Image Grid

    \n

    Image Grid – Image Slider – Image Carousel – A free Image Grid Widget. Could be used as an image gallery, logo grid, image slider, image carousel, and much more. Addon comes with the following options: multicolumn grids, numbered pagination, load more button, infinite scroll (Pro), likes (Pro), sharing (Pro), custom fields (Pro), lightbox, linkable filters (deep linking), custom icons for the filters, FitRows grid with a isotope filters, masonry grid and much more.

    \n

    Magazine Grid – Slider – A free Magazine Grid Widget. This widget is the #1 Magazine Grid builder widget on the repository. Could be used as magazine layout, newspaper layout, news grid, news slider(PRO).

    \n

    5. Advanced Slider

    \n

    Advanced Slider – Carousel – A free Image Slider Widget. Could be used as image slider, logo carousel, content slider, template slider (Pro). Creat unique looking hero section with this slider. It is fully responsive and has full width and full screen options. Also Pro version comes with Ken Burns effect & animated content.

    \n

    6. Testimonial Slider

    \n

    Testimonial Slider – A free Testimonial Slider Widget. This widget will showcase your customers reviews on your WordPress website. The widget offers following options: customers reviews slider, testimonials ratings (stars), company logo option, clients/customer image, texts with vintage quotes.

    \n

    7. Elementor Menu widget

    \n

    Nav Menu – A free Nav Menu Widget. This widget will make your WordPress Menu trully unique by customizing its look and feel without using code. Addon offers following options: mobile menu customization, drop down menu setup, hamburger menu, menu hover effects and hover animations. Also Pro version offers vertical menu and sticky header. Most advanced & customizable responsive menu.

    \n

    8. Onepage Navigation

    \n

    Onepage Navigation – A free Onepage Navigation Widget. This widget allows you to create an amazing onepage scroll experiance WordPress website with just a few clicks. Can be used to create floating menu, sticky navigation menu, side menu with icons to scroll to any section.

    \n

    9. Pricing Table

    \n

    Pricing Table – A free Pricing Table Widget. This Pricing Comparison Table widget helps you to create an effective price comparison table with unique styling, which allows you to display not just the cost, but also the features you offer. A widget could be used as a regular pricing table & as a pricing table with a toggle button to switch from Monthly/Yearly plans. Pro version offers different tooltip options for each pricing table feature, also it’s possible to have more than 2 pricing plans switcher, like Monthly/Yearly/Lifetime (You can check the demo on the widget preview page).

    \n

    10. Content Toggle

    \n

    Content Toggle – A free Content Toggle Widget. You can load Elementor Templates or simply insert images and text to style it the way you want. A widget could be used as a pricing switcher as well, for example, to switch between Monthly/Yearly/Lifetime pricing plans. Pro version offers more than 2 toggle options – Check out the widget demo page to see all its possibilities.

    \n

    11. Countdown Timer

    \n

    Countdown Timer – This widget allows you to display a timer that counts down to a specific time or date. A widget could be used as a black Friday sale countdown timer, to create urgency for users for your event, sales, or opt-in forms. You can set various actions after the timer expires: hide the timer, display a message, redirect or load the template. The Pro version offers an Evergreen timer (checkout widget demo page), recurring countdown timer, and restart timer options.

    \n

    12. Progress Bar

    \n

    Progress Bar – This Skill Bar widget offers unique ways to style various types of stats in percentages or numbers, can be used for classic animated progress bars, circle progress bars, or vertical progress bars (Pro).

    \n

    13. Advanced Tabs

    \n

    Tabs – This Advanced Tab widget lets you display key information in an interactive manner, that attracts visitors and also saves lots of space on your WordPress webpage. The widget offers horizontal tabs, vertical tabs, tab loading animation effects, and more. Trigger tab via mouse hover or click both options are available. Also, you can have nested tabs via the elementor templates loader which means you can use any elementor addons inside tab content.

    \n

    14. Advanced Text

    \n

    Advanced Text – Fancy Text – This Text animation widget lets you highlight any text with different colors, animation, and typing effects to draw your visitor’s attention instantly. Available effects: typewriter effect, fancy text effect, animated text effect, highlighted text effect, text-shadow effect, text over image effect, text and image mask effect, 3d text effect, text slider, gradient text, the background image on text, text glitch effect, text long colored shadow effect, word animation effect, text skew effect, text flip vertical and horizontal effect, slide, clip, zoom, scale, circle line, underline zigzag line, curly line, cross x line, line through and others. Pro Version offers extra effects and functionalities.

    \n

    15. Flip Box

    \n

    Flip Box – A free Flip Box Widget. This widget with hover box animation and call-to-action buttons will highlight your content in a great way and allows you to create stunning promo boxes and ads with CTA button functionality. The widget offers more flipping effects in the pro version and some extra functionality as well.

    \n

    16. Promo Box

    \n

    Promo Box – With this widget, you can create: a clickable image with varios effects like: a clickable image with image hover effects, option to add text over image, display call to action button over image, and many other options. Create a stunning sale or discount banners with CTA buttons and badges with this addon. The Pro Version offers extra effects and functionalities.

    \n

    17. Before After Slider

    \n

    Before After Slider – Image comparison Slider – A free Image comparison slider. This addon can compare two pictures with draggable or mouse hover options in horizontal and vertical(Pro) layouts.

    \n

    18. Image Hotspot

    \n

    Image Hotspots – A free Image Map Widget to build image hotspot maps, allows you to create hot spot image with 2x points on it. Add tooltips to icons to make it stunning and informative. The PRO versions offer unlimited hotspot points.

    \n

    19. Forms Styler

    \n

    Forms – This Form widget comes with the following options: contact form 7 styler, Gravity forms styler, Ninja Forms styler, and WPforms styler.

    \n

    20. MailChimp Subscribe

    \n

    MailChimp – This Newsletter addon helps you to collect emails from your website visitors by creating stunning email opt-in forms. Our Mailchimp Form is the best free Mailchimp integration tool for your WordPress website. Add …

    \n", "donate_link": "", "num_ratings": 585, "screenshots": {"1": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-1.jpg?rev=2580277", "caption": ""}, "2": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-2.jpg?rev=2580277", "caption": ""}, "3": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-3.jpg?rev=2580279", "caption": ""}, "4": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-4.jpg?rev=2580279", "caption": ""}, "5": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-5.jpg?rev=2580279", "caption": ""}, "6": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-6.jpg?rev=2580279", "caption": ""}, "7": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-7.jpg?rev=2580279", "caption": ""}, "8": {"src": "https://ps.w.org/royal-elementor-addons/assets/screenshot-8.jpg?rev=2580279", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/royal-elementor-addons/", "contributors": {"wprduke": {"avatar": "https://secure.gravatar.com/avatar/5f5f0786fe143d60d62f4e5bc344a80707fd8b6422f74081972c4d70b00c25e9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wprduke/", "display_name": "Duke"}, "wproyal": {"avatar": "https://secure.gravatar.com/avatar/078c5c148dcfcc4983cb3fce756683ce03d7aebb69f1fb9e8ea08232e4b01fea?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wproyal/", "display_name": "WP Royal"}, "cyberpinky": {"avatar": "https://secure.gravatar.com/avatar/eed98dcca4e5e282ea2c107f264aafc91f5d7db869abf875694a0977a6626721?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cyberpinky/", "display_name": "Diana"}, "ggedenidze1982": {"avatar": "https://secure.gravatar.com/avatar/2d9f11cec3f59df2f5b3e395f8a851ddee8144d78b2b1ab5f8122efce9136b21?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ggedenidze1982/", "display_name": "Givi WP Royal Support"}, "rubeushagrid13": {"avatar": "https://secure.gravatar.com/avatar/331321efeb243889f4ce832b9959617b4dd706d13f0d095ec38a303dda9074b3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rubeushagrid13/", "display_name": "George"}, "elementoraddonswpr": {"avatar": "https://secure.gravatar.com/avatar/1133bdfb3ba269f20826868c0bd29989f6179f128839db564bada82d487efdc2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elementoraddonswpr/", "display_name": "Nick WP Royal Support"}}, "last_updated": "2025-10-26 8:30am GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1036.zip", "author_profile": "https://profiles.wordpress.org/wproyal/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-f9f7-7248-b139-c64a659ad13f", "name": "Royal Addons for Elementor – Addons and Templates Kit for Elementor", "slug": "royal-elementor-addons", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761467400, "version": "1.7.1036"}, "support_threads": 40, "requires_plugins": [], "short_description": "Elementor Post Grid, Portfolio, Woocommerce Grid builder Widgets. Slider, Carousel, Form, Testimonial, Gallery, Nav menu addons, Elementor widgets &am …", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 37}'); -INSERT INTO public.plugins VALUES ('019a30c1-6646-7081-a779-d25b3929c68c', 'one-click-demo-import', 'One Click Demo Import', 'Import your demo content, widgets and theme settings with one click. Theme authors! Enable simple theme demo import for your users.', '

    The best feature of this plugin is, that theme authors can define import files in their themes and so all you (the user of the theme) have to do is click on the “Import Demo Data” button.

    -
    -

    Are you a theme author?

    -

    Setup One Click Demo Imports for your theme and your users will thank you for it!

    -

    Follow this easy guide on how to setup this plugin for your themes!

    -

    Are you a theme user?

    -

    Contact the author of your theme and let them know about this plugin. Theme authors can make any theme compatible with this plugin in 15 minutes and make it much more user-friendly.

    -

    Where can I find the theme author contact?

    -
    -

    Please take a look at our plugin documentation for more information on how to import your demo content.

    -

    This plugin is using the modified version of the improved WP import 2.0 that is still in development and can be found here: https://github.com/humanmade/WordPress-Importer.

    -

    NOTE: There is no setting to “connect” authors from the demo import file to the existing users in your WP site (like there is in the original WP Importer plugin). All demo content will be imported under the current user.

    -

    Do you want to contribute?

    -

    Please refer to our official GitHub repository.

    -', '3.4.0', 'Syed Balkhi', '5.5', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/one-click-demo-import.3.4.0.zip', '2016-03-25 00:00:00+00', '2025-09-11 09:36:00+00', 'https://profiles.wordpress.org/smub/', 86, 79, 0, 0, 1000000, 19300298, 'https://wordpress.org/plugins/one-click-demo-import/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/one-click-demo-import/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "One Click Demo Import", "slug": "one-click-demo-import", "tags": {"import": "import", "content": "content", "widgets": "widgets", "settings": "settings", "theme-options": "theme options"}, "added": "2016-03-25", "icons": {"1x": "https://ps.w.org/one-click-demo-import/assets/icon-128x128.png?rev=2506685", "2x": "https://ps.w.org/one-click-demo-import/assets/icon-256x256.png?rev=2506685"}, "author": "Syed Balkhi", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/one-click-demo-import/assets/banner-772x250.png?rev=2506685", "high": "https://ps.w.org/one-click-demo-import/assets/banner-1544x500.png?rev=2506685"}, "ratings": {"1": 12, "2": 0, "3": 1, "4": 2, "5": 64}, "version": "3.4.0", "homepage": "https://wordpress.org/plugins/one-click-demo-import/", "requires": "5.5", "sections": {"faq": "\n
    \nI have activated the plugin. Where is the “Import Demo Data” page?\n\n

    \n

    You will find the import page in wp-admin -> Appearance -> Import Demo Data.

    \n

    \n
    \nWhere are the demo import files and the log files saved?\n\n

    \n

    The files used in the demo import will be saved to the default WordPress uploads directory. An example of that directory would be: ../wp-content/uploads/2023/03/.

    \n

    The log file will also be registered in the wp-admin -> Media section, so you can access it easily.

    \n

    \n
    \nHow to predefine demo imports?\n\n

    \n

    This question is for theme authors. To predefine demo imports, you just have to add the following code structure, with your own values to your theme (using the ocdi/import_files filter):

    \n
    function ocdi_import_files() {\n    return array(\n        array(\n            ''import_file_name''           => ''Demo Import 1'',\n            ''categories''                 => array( ''Category 1'', ''Category 2'' ),\n            ''import_file_url''            => ''http://www.your_domain.com/ocdi/demo-content.xml'',\n            ''import_widget_file_url''     => ''http://www.your_domain.com/ocdi/widgets.json'',\n            ''import_customizer_file_url'' => ''http://www.your_domain.com/ocdi/customizer.dat'',\n            ''import_redux''               => array(\n                array(\n                    ''file_url''    => ''http://www.your_domain.com/ocdi/redux.json'',\n                    ''option_name'' => ''redux_option_name'',\n                ),\n            ),\n            ''import_preview_image_url''   => ''http://www.your_domain.com/ocdi/preview_import_image1.jpg'',\n            ''import_notice''              => __( ''After you import this demo, you will have to setup the slider separately.'', ''your-textdomain'' ),\n            ''preview_url''                => ''http://www.your_domain.com/my-demo-1'',\n        ),\n        array(\n            ''import_file_name''           => ''Demo Import 2'',\n            ''categories''                 => array( ''New category'', ''Old category'' ),\n            ''import_file_url''            => ''http://www.your_domain.com/ocdi/demo-content2.xml'',\n            ''import_widget_file_url''     => ''http://www.your_domain.com/ocdi/widgets2.json'',\n            ''import_customizer_file_url'' => ''http://www.your_domain.com/ocdi/customizer2.dat'',\n            ''import_redux''               => array(\n                array(\n                    ''file_url''    => ''http://www.your_domain.com/ocdi/redux.json'',\n                    ''option_name'' => ''redux_option_name'',\n                ),\n                array(\n                    ''file_url''    => ''http://www.your_domain.com/ocdi/redux2.json'',\n                    ''option_name'' => ''redux_option_name_2'',\n                ),\n            ),\n            ''import_preview_image_url''   => ''http://www.your_domain.com/ocdi/preview_import_image2.jpg'',\n            ''import_notice''              => __( ''A special note for this import.'', ''your-textdomain'' ),\n            ''preview_url''                => ''http://www.your_domain.com/my-demo-2'',\n        ),\n    );\n}\nadd_filter( ''ocdi/import_files'', ''ocdi_import_files'' );\n
    \n

    You can set content import, widgets, customizer and Redux framework import files. You can also define a preview image, which will be used only when multiple demo imports are defined, so that the user will see the difference between imports. Categories can be assigned to each demo import, so that they can be filtered easily. The preview URL will display the “Preview” button in the predefined demo item, which will open this URL in a new tab and user can view how the demo site looks like.

    \n

    \n
    \nHow to automatically assign “Front page”, “Posts page” and menu locations after the importer is done?\n\n

    \n

    You can do that, with the ocdi/after_import action hook. The code would look something like this:

    \n
    function ocdi_after_import_setup() {\n    // Assign menus to their locations.\n    $main_menu = get_term_by( ''name'', ''Main Menu'', ''nav_menu'' );\n\n    set_theme_mod( ''nav_menu_locations'', array(\n            ''main-menu'' => $main_menu->term_id, // replace ''main-menu'' here with the menu location identifier from register_nav_menu() function\n        )\n    );\n\n    // Assign front page and posts page (blog page).\n    $front_page_id = get_page_by_title( ''Home'' );\n    $blog_page_id  = get_page_by_title( ''Blog'' );\n\n    update_option( ''show_on_front'', ''page'' );\n    update_option( ''page_on_front'', $front_page_id->ID );\n    update_option( ''page_for_posts'', $blog_page_id->ID );\n\n}\nadd_action( ''ocdi/after_import'', ''ocdi_after_import_setup'' );\n
    \n

    \n
    \nWhat about using local import files (from theme folder)?\n\n

    \n

    You have to use the same filter as in above example, but with a slightly different array keys: local_*. The values have to be absolute paths (not URLs) to your import files. To use local import files, that reside in your theme folder, please use the below code. Note: make sure your import files are readable!

    \n
    function ocdi_import_files() {\n    return array(\n        array(\n            ''import_file_name''             => ''Demo Import 1'',\n            ''categories''                   => array( ''Category 1'', ''Category 2'' ),\n            ''local_import_file''            => trailingslashit( get_template_directory() ) . ''ocdi/demo-content.xml'',\n            ''local_import_widget_file''     => trailingslashit( get_template_directory() ) . ''ocdi/widgets.json'',\n            ''local_import_customizer_file'' => trailingslashit( get_template_directory() ) . ''ocdi/customizer.dat'',\n            ''local_import_redux''           => array(\n                array(\n                    ''file_path''   => trailingslashit( get_template_directory() ) . ''ocdi/redux.json'',\n                    ''option_name'' => ''redux_option_name'',\n                ),\n            ),\n            ''import_preview_image_url''     => ''http://www.your_domain.com/ocdi/preview_import_image1.jpg'',\n            ''import_notice''                => __( ''After you import this demo, you will have to setup the slider separately.'', ''your-textdomain'' ),\n            ''preview_url''                  => ''http://www.your_domain.com/my-demo-1'',\n        ),\n        array(\n            ''import_file_name''             => ''Demo Import 2'',\n            ''categories''                   => array( ''New category'', ''Old category'' ),\n            ''local_import_file''            => trailingslashit( get_template_directory() ) . ''ocdi/demo-content2.xml'',\n            ''local_import_widget_file''     => trailingslashit( get_template_directory() ) . ''ocdi/widgets2.json'',\n            ''local_import_customizer_file'' => trailingslashit( get_template_directory() ) . ''ocdi/customizer2.dat'',\n            ''local_import_redux''           => array(\n                array(\n                    ''file_path''   => trailingslashit( get_template_directory() ) . ''ocdi/redux.json'',\n                    ''option_name'' => ''redux_option_name'',\n                ),\n                array(\n                    ''file_path''   => trailingslashit( get_template_directory() ) . ''ocdi/redux2.json'',\n                    ''option_name'' => ''redux_option_name_2'',\n                ),\n            ),\n            ''import_preview_image_url''     => ''http://www.your_domain.com/ocdi/preview_import_image2.jpg'',\n            ''import_notice''                => __( ''A special note for this import.'', ''your-textdomain'' ),\n            ''preview_url''                  => ''http://www.your_domain.com/my-demo-2'',\n        ),\n    );\n}\nadd_filter( ''ocdi/import_files'', ''ocdi_import_files'' );\n
    \n

    \n
    \nHow to handle different “after import setups” depending on which predefined import was selected?\n\n

    \n

    This question might be asked by a theme author wanting to implement different after import setups for multiple predefined demo imports. Lets say we have predefined two demo imports with the following names: ‘Demo Import 1’ and ‘Demo Import 2’, the code for after import setup would be (using the ocdi/after_import filter):

    \n
    function ocdi_after_import( $selected_import ) {\n    echo \"This will be displayed on all after imports!\";\n\n    if ( ''Demo Import 1'' === $selected_import[''import_file_name''] ) {\n        echo \"This will be displayed only on after import if user selects Demo Import 1\";\n\n        // Set logo in customizer\n        set_theme_mod( ''logo_img'', get_template_directory_uri() . ''/assets/images/logo1.png'' );\n    }\n    elseif ( ''Demo Import 2'' === $selected_import[''import_file_name''] ) {\n        echo \"This will be displayed only on after import if user selects Demo Import 2\";\n\n        // Set logo in customizer\n        set_theme_mod( ''logo_img'', get_template_directory_uri() . ''/assets/images/logo2.png'' );\n    }\n}\nadd_action( ''ocdi/after_import'', ''ocdi_after_import'' );\n
    \n

    \n
    \nCan I add some code before the widgets get imported?\n\n

    \n

    Of course you can, use the ocdi/before_widgets_import action. You can also target different predefined demo imports like in the example above. Here is a simple example code of the ocdi/before_widgets_import action:

    \n
    function ocdi_before_widgets_import( $selected_import ) {\n    echo \"Add your code here that will be executed before the widgets get imported!\";\n}\nadd_action( ''ocdi/before_widgets_import'', ''ocdi_before_widgets_import'' );\n
    \n

    \n
    \nHow can I import via the WP-CLI?\n\n

    \n

    In the 2.4.0 version of this plugin we added two WP-CLI commands:

    \n
      \n
    • wp ocdi list – Which will list any predefined demo imports currently active theme might have,
    • \n
    • \n

      wp ocdi import – which has a few options that you can use to import the things you want (content/widgets/customizer/predefined demos). Let’s look at these options below.

      \n

      wp ocdi import options:

      \n

      wp ocdi import [–content=] [–widgets=] [–customizer=] [–predefined=]

      \n
    • \n
    • \n

      --content=<file> – will run the content import with the WP import file specified in the <file> parameter,

      \n
    • \n
    • --widgets=<file> – will run the widgets import with the widgets import file specified in the <file> parameter,
    • \n
    • --customizer=<file> – will run the customizer settings import with the customizer import file specified in the <file> parameter,
    • \n
    • --predefined=<index> – will run the theme predefined import with the index of the predefined import in the <index> parameter (you can use the wp ocdi list command to check which index is used for each predefined demo import)
    • \n
    \n

    The content, widgets and customizer options can be mixed and used at the same time. If the predefined option is set, then it will ignore all other options and import the predefined demo data.

    \n

    \n
    \nI’m a theme author and I want to change the plugin intro text, how can I do that?\n\n

    \n

    You can change the plugin intro text by using the ocdi/plugin_intro_text filter:

    \n
    function ocdi_plugin_intro_text( $default_text ) {\n    $default_text .= ''<div class=\"ocdi__intro-text\">This is a custom text added to this plugin intro text.</div>'';\n\n    return $default_text;\n}\nadd_filter( ''ocdi/plugin_intro_text'', ''ocdi_plugin_intro_text'' );\n
    \n

    To add some text in a separate “box”, you should wrap your text in a div with a class of ‘ocdi__intro-text’, like in the code example above.

    \n

    \n
    \nHow to disable generation of smaller images (thumbnails) during the content import\n\n

    \n

    This will greatly improve the time needed to import the content (images), but only the original sized images will be imported. You can disable it with a filter, so just add this code to your theme function.php file:

    \n
    add_filter( ''ocdi/regenerate_thumbnails_in_content_import'', ''__return_false'' );\n
    \n

    \n
    \nHow to change the location, title and other parameters of the plugin page?\n\n

    \n

    As a theme author you do not like the location of the “Import Demo Data” plugin page in Appearance -> Import Demo Data? You can change that with the filter below. Apart from the location, you can also change the title or the page/menu and some other parameters as well.

    \n
    function ocdi_plugin_page_setup( $default_settings ) {\n    $default_settings[''parent_slug''] = ''themes.php'';\n    $default_settings[''page_title'']  = esc_html__( ''One Click Demo Import'' , ''one-click-demo-import'' );\n    $default_settings[''menu_title'']  = esc_html__( ''Import Demo Data'' , ''one-click-demo-import'' );\n    $default_settings[''capability'']  = ''import'';\n    $default_settings[''menu_slug'']   = ''one-click-demo-import'';\n\n    return $default_settings;\n}\nadd_filter( ''ocdi/plugin_page_setup'', ''ocdi_plugin_page_setup'' );\n
    \n

    \n
    \nHow to do something before the content import executes?\n\n

    \n

    In version 2.0.0 there is a new action hook: ocdi/before_content_import, which will let you hook before the content import starts. An example of the code would look like this:

    \n
    function ocdi_before_content_import( $selected_import ) {\n    if ( ''Demo Import 1'' === $selected_import[''import_file_name''] ) {\n        // Here you can do stuff for the \"Demo Import 1\" before the content import starts.\n        echo \"before import 1\";\n    }\n    else {\n        // Here you can do stuff for all other imports before the content import starts.\n        echo \"before import 2\";\n    }\n}\nadd_action( ''ocdi/before_content_import'', ''ocdi_before_content_import'' );\n
    \n

    \n
    \nHow can I enable the `customize_save*` wp action hooks in the customizer import?\n\n

    \n

    It’s easy, just add this to your theme:

    \n
    add_action( ''ocdi/enable_wp_customize_save_hooks'', ''__return_true'' );\n
    \n

    This will enable the following WP hooks when importing the customizer data: customize_save, customize_save_*, customize_save_after.

    \n

    \n
    \nHow can I pass Amazon S3 presigned URL’s (temporary links) as external files ?\n\n

    \n

    If you want to host your import content files on Amazon S3, but you want them to be publicly available, rather through an own API as presigned URL’s (which expires) you can use the filter ocdi/pre_download_import_files in which you can pass your own URL’s, for example:

    \n
    add_filter( ''ocdi/pre_download_import_files'', function( $import_file_info ){\n\n    // In this example get_my_custom_urls` is supposedly making a `wp_remote_get` request, getting the urls from an API server where you''re creating the presigned urls, [example here](https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/s3-presigned-url.html).\n// This request should return an array containing all the 3 links - `import_file_url`, `import_widget_file_url`, `import_customizer_file_url`\n$request = get_my_custom_urls( $import_file_info );\n\nif ( !is_wp_error( $request ) )\n{\n    if ( isset($request[''data'']) && is_array($request[''data'']) )\n    {\n        if( isset($request[''data''][''import_file_url'']) && $import_file_url = $request[''data''][''import_file_url''] ){\n            $import_file_info[''import_file_url''] = $import_file_url;\n        }\n        if( isset($request[''data''][''import_widget_file_url'']) && $import_widget_file_url = $request[''data''][''import_widget_file_url''] ){\n            $import_file_info[''import_widget_file_url''] = $import_widget_file_url;\n        }\n        if( isset($request[''data''][''import_customizer_file_url'']) && $import_customizer_file_url = $request[''data''][''import_customizer_file_url''] ){\n            $import_file_info[''import_customizer_file_url''] = $import_customizer_file_url;\n        }\n    }\n}\n\nreturn $import_file_info;\n
    \n

    } );
    \n`

    \n

    \n
    \nI can’t activate the plugin, because of a fatal error, what can I do?\n\n

    \n

    Update: since version 1.2.0, there is now a admin error notice, stating that the minimal PHP version required for this plugin is 5.3.2.

    \n

    You want to activate the plugin, but this error shows up:

    \n

    Plugin could not be activated because it triggered a fatal error

    \n

    This happens, because your hosting server is using a very old version of PHP. This plugin requires PHP version of at least 5.3.x, but we recommend version 5.6.x or better yet 7.x. Please contact your hosting company and ask them to update the PHP version for your site.

    \n

    \n
    \nIssues with the import, that we can’t fix in the plugin\n\n

    \n

    Please visit this docs page, for more answers to issues with importing data.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast & Easy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ajkastner77 on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Overall, this plugin is a must-have companion for theme authors and a lifesaver for users

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Import Failed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy 99ibrahim99 (ibrahim791) on April 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Import Failed

    \n\n\n\n

    Whoops, there was a problem importing your content.

    \n\n\n\n

    An error occurred while fetching file from: xxx site
    Reason: 403 - Forbidden.

    \n\n\n\n

    import error 🤔I have tried everything for a solution but I can''t find a solution.

    \n\n\n\n

    Edit: It was a hosting-related error. I rented a server and the problem was solved. Thanks for the great plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Quotes Ninja (quotesninja) on March 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    One Click Demo Import is a very helpful plugin to upload theme''s demo in one click, it''s easy to use, it is perfectly worked for my website and mainly it''s absolutely free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Need a progress bar and display for failed installation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Krishnakumar KA (krishnakumarka) on March 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Most of the time the plugin shows the gear animation. It would be better if they add a progress bar showing what are the things getting installed and a message to display if the installation is failed.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Helpful Plugin & Great Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Amine (ablamohamedamine) on February 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    OCDI is a very helpful plugin to upload theme''s demo in one click, it''s easy to use and 100% free.

    \n\n\n\n

    \n\n\n\n

    Even that I got a great support from its team, and they take a lot of time with me to give me the help.

    \n\n\n\n

    \n\n\n\n

    Really appreciate it, best team.

    \n\n\n\n

    \n\n\n\n

    Regards.

    \n\n\n\n

    Amine.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks for great plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anil Chandra Robidas (anilkumer) on November 13, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It works well

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect, very easy to use!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bonnie333 on March 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Perfect, very easy to use!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super Useless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy obadaalrefai on October 29, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    Not Working at all, its time wasting only
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works Perfectly!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy KoriA on September 2, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    Worked perfectly to help me import JSON files for my Divi theme layouts. What a great tool!
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Metromas (metromas) on November 22, 2021\t\t\t

    \n\t\t
    \n\t
    \n\t
    Useful Plug-In..
    \n
    \n", "changelog": "

    3.4.0

    \n

    Release Date – 11 September 2025

    \n
      \n
    • Fixed a PHP fatal error on some imports. The fatal error happens when the passed $widget is not the expected array data type.
    • \n
    • Bump the minimum required PHP version to PHP v7.4.
    • \n
    \n

    3.3.0

    \n

    Release Date – 10th October 2024

    \n
      \n
    • Added support to WPForms.
    • \n
    • Fixed a PHP warning notice.
    • \n
    \n

    3.2.1

    \n

    Release Date – 10th April 2024

    \n
      \n
    • Fixed customizer security issue.
    • \n
    \n

    3.2.0

    \n

    Release Date – 23rd November 2023

    \n
      \n
    • Added ocdi/import_successful_buttons filter hook that allow developers to add custom buttons in the import successful page.
    • \n
    • Added loading=\"lazy\" in import preview images for better performance.
    • \n
    • Fixed PHP warning notice when importing non-string term metadata.
    • \n
    • Fixed Navigation block not imported properly.
    • \n
    • Fixed issue with failed media import resulting to infinite loop.
    • \n
    • Fixed PHP deprecated notice when importing Redux Framework options.
    • \n
    • Fixed issue with old action hook, pt-{$hook}, not running when the new {$hook} is also used.
    • \n
    \n

    3.1.2

    \n

    Release Date – 8th July 2022

    \n
      \n
    • Fixed missing terms count update (fixes missing menu items after WP 6.0 update).
    • \n
    \n

    3.1.1

    \n

    Release Date – 22nd March 2022

    \n
      \n
    • Fixed missing sanitization for the redux option name.
    • \n
    \n

    3.1.0

    \n

    Release Date – 18th March 2022

    \n
      \n
    • Changed the minimal WordPress version to 5.2.
    • \n
    • Fixed upload file types. Allow just whitelisted import file types.
    • \n
    \n

    3.0.2

    \n

    Release Date – 2 April 2021

    \n
      \n
    • Fixed missing old default settings page (breaking existing links to the OCDI settings page).
    • \n
    • Fixed PHP notices in network admin area for WP Multisite.
    • \n
    • Fixed theme card image style in the sidebar.
    • \n
    \n

    3.0.1

    \n

    Release Date – 31 March 2021

    \n
      \n
    • Added more details about recommended plugins.
    • \n
    • Changed recommended plugins to opt-in.
    • \n
    \n

    3.0.0

    \n

    Release Date – 31 March 2021

    \n
      \n
    • IMPORTANT: Support for PHP 5.5 or lower has been discontinued. If you are running one of those versions, you MUST upgrade PHP before installing or upgrading to One Click Demo Import v3.0. Failure to do that will disable One Click Demo Import functionality.
    • \n
    • IMPORTANT: Support for WordPress core v4.9 or lower has been discontinued. If you are running one of those versions, you MUST upgrade WordPress core before installing or upgrading to One Click Demo Import v3.0. Failure to do that could cause issues with the One Click Demo Import functionality.
    • \n
    • Added support for recommended theme plugins.
    • \n
    • Added useful single page demo content imports.
    • \n
    • Added recommended plugins installer.
    • \n
    • Updated the UI/UX of the plugin.
    • \n
    • Fixed PHP8 warning.
    • \n
    • Fixed deprecated WP function wp_slash_strings_only.
    • \n
    \n

    2.6.1

    \n

    Release Date – 21 July 2020

    \n
      \n
    • Fixed Elementor import issues.
    • \n
    \n

    2.6.0

    \n

    Release Date – 21 July 2020

    \n
      \n
    • Improved code execution: not loading plugin code on frontend.
    • \n
    • Fixed incorrect post and post meta import (unicode and other special characters were not escaped properly).
    • \n
    • Fixed error (500 – internal error) for Widgets import on PHP 7.x.
    • \n
    • Fixed PHP notices for manual demo import.
    • \n
    • Fixed PHP warning if set_time_limit function is disabled.
    • \n
    • Fixed links for switching manual and predefined import modes.
    • \n
    \n

    2.5.2

    \n

    Release Date – 29 July 2019

    \n
      \n
    • Improved documentation and code sample
    • \n
    • Added pt-ocdi/pre_download_import_files filter
    • \n
    • Added two action hooks to plugin-page.php
    • \n
    • Bumped Tested up to tag
    • \n
    \n

    2.5.1

    \n

    Release Date – 25 October 2018

    \n
      \n
    • Fix missing translation strings
    • \n
    \n

    2.5.0

    \n

    Release Date – 8 January 2018

    \n
      \n
    • Add OCDI as a WordPress import tool in Tools -> Import,
    • \n
    • Add switching to the manual import, if the theme has predefined demo imports,
    • \n
    • Fix text domain loading
    • \n
    \n

    2.4.0

    \n

    Release Date – 23 August 2017

    \n
      \n
    • Add WP-CLI commands for importing with this plugin,
    • \n
    • Fix conflict with WooCommerce importer
    • \n
    \n

    2.3.0

    \n

    Release Date – 28 May 2017

    \n
      \n
    • Add preview button option to the predefined demo import items,
    • \n
    • Add custom JS event trigger when the import process is completed,
    • \n
    • Add custom filter for plugin page title,
    • \n
    • Remove content import as a required import. Now you can make separate imports for customizer, widgets or redux options.
    • \n
    • Fix custom menu widgets imports, the menus will now be set correctly.
    • \n
    \n

    2.2.1

    \n

    Release Date – 3 April 2017

    \n
      \n
    • Fix image importing error for server compressed files,
    • \n
    • Fix remapping of featured images,
    • \n
    • Fix custom post type existing posts check (no more multiple imports for custom post types).
    • \n
    \n

    2.2.0

    \n

    Release Date – 5 February 2017

    \n
      \n
    • Add ProteusThemes branding notice after successful import,
    • \n
    • Fix after import error reporting (duplicate errors were shown),
    • \n
    • Fix some undefined variables in the plugin, causing PHP notices.
    • \n
    \n

    2.1.0

    \n

    Release Date – 8 January 2017

    \n
      \n
    • Add grid layout import confirmation popup options filter,
    • \n
    • Fix term meta data double import,
    • \n
    • Fix WooCommerce product attributes import.
    • \n
    \n

    2.0.2

    \n

    Release Date – 13 December 2016

    \n
      \n
    • Fix issue with customizer options import
    • \n
    \n

    2.0.1

    \n

    Release Date – 12 December 2016

    \n
      \n
    • Fix issue with some browsers (Safari and IE) not supporting some FormData methods.
    • \n
    \n

    2.0.0

    \n

    Release Date – 10 December 2016

    \n
      \n
    • Add new layout for multiple predefined demo imports (a grid layout instead of the dropdown selector),
    • \n
    • Add support for Redux framework import,
    • \n
    • Change the code structure of the plugin (plugin rewrite, namespaces, autoloading),
    • \n
    • Now the whole import (content, widgets, customizer, redux) goes through even if something goes wrong in the content import (before content import errors blocked further import),
    • \n
    • Add pt-ocdi/before_content_import action hook, that theme authors can use to hook into before the content import starts,
    • \n
    • Fix frontend error reporting through multiple AJAX calls,
    • \n
    • Fix post formats (video/quote/gallery,…) not importing,
    • \n
    • Fix customizer import does not save some options (because of the missing WP actions – these can be enabled via a filter, more in the FAQ section).
    • \n
    \n

    1.4.0

    \n

    Release Date – 29 October 2016

    \n
      \n
    • Add support for WP term meta data in content importer,
    • \n
    • Fix the issue of having both plugins (OCDI and the new WP importer v2) activated at the same time.
    • \n
    \n

    1.3.0

    \n

    Release Date – 1 October 2016

    \n
      \n
    • Import/plugin page re-design. Updated the plugin page styles to match WordPress (thanks to Oliver Juhas).
    • \n
    \n

    1.2.0

    \n

    Release Date – 9 July 2016

    \n
      \n
    • Now also accepts predefined local import files (from theme folder),
    • \n
    • Fixes PHP fatal error on plugin activation, for sites using PHP versions older then 5.3.2 (added admin error notice),
    • \n
    • Register log file in wp-admin -> Media, so that it’s easier to access,
    • \n
    • No more “[WARNING] Could not find the author for …” messages in the log file.
    • \n
    \n

    1.1.3

    \n

    Release Date – 17 June 2016

    \n
      \n
    • Updated plugin design,
    • \n
    • Changed the plugin page setup filter name from pt-ocdi/plugin-page-setup to pt-ocdi/plugin_page_setup (mind the underscore characters instead of dashes).
    • \n
    \n

    1.1.2

    \n

    Release Date – 12 June 2016

    \n
      \n
    • An ‘import notice’ field has been added to the predefined demo import settings. This notice is displayed above the import button (it also accepts HTML),
    • \n
    • Now displays proper error message, if the file-system method is not set to “direct”,
    • \n
    • This plugin is now compatible with the new Humanmade content importer plugin,
    • \n
    • Added a filter to the plugin page creation, so that theme authors can now change the location of the plugin page (Demo data import) and some other parameters as well.
    • \n
    \n

    1.1.1

    \n

    Release Date – 22 May 2016

    \n
      \n
    • Preview import images can now be defined for multiple predefined import files (check FAQ “How to predefine demo imports?” for more info),
    • \n
    • You can now also import customizer settings.
    • \n
    \n

    1.1.0

    \n

    Release Date – 14 May 2016

    \n
      \n
    • Content import now imports in multiple AJAX calls, so there should be no more server timeout errors,
    • \n
    • The setting for generation of multiple image sizes in the content import is again enabled by default,
    • \n
    • Plugin textdomain was loaded, so that translations can be made.
    • \n
    \n

    1.0.3

    \n

    Release Date – 27 April 2016

    \n
      \n
    • Added filter to enable image regeneration,
    • \n
    • Added filter to change the plugin intro text,
    • \n
    • Added action to execute custom code before widget import,
    • \n
    • Disabled author imports.
    • \n
    \n

    1.0.2

    \n

    Release Date – 15 April 2016

    \n
      \n
    • Monkey fix for WP version 4.5. – disabled generation of multiple image sizes in the content import.
    • \n
    \n

    1.0.1

    \n

    Release Date – 2 April 2016

    \n

    Small code fixes:

    \n
      \n
    • Fixed undefined variable bug,
    • \n
    • Fixed naming of downloaded files and their filters.
    • \n
    \n

    1.0.0

    \n

    Release Date – 25 March 2016

    \n
      \n
    • Initial release!
    • \n
    \n", "description": "

    The best feature of this plugin is, that theme authors can define import files in their themes and so all you (the user of the theme) have to do is click on the “Import Demo Data” button.

    \n
    \n

    Are you a theme author?

    \n

    Setup One Click Demo Imports for your theme and your users will thank you for it!

    \n

    Follow this easy guide on how to setup this plugin for your themes!

    \n

    Are you a theme user?

    \n

    Contact the author of your theme and let them know about this plugin. Theme authors can make any theme compatible with this plugin in 15 minutes and make it much more user-friendly.

    \n

    Where can I find the theme author contact?

    \n
    \n

    Please take a look at our plugin documentation for more information on how to import your demo content.

    \n

    This plugin is using the modified version of the improved WP import 2.0 that is still in development and can be found here: https://github.com/humanmade/WordPress-Importer.

    \n

    NOTE: There is no setting to “connect” authors from the demo import file to the existing users in your WP site (like there is in the original WP Importer plugin). All demo content will be imported under the current user.

    \n

    Do you want to contribute?

    \n

    Please refer to our official GitHub repository.

    \n", "screenshots": "
    1. \"Example

      Example of multiple predefined demo imports, that a user can choose from.

    2. \"How

      How the import page looks like, when only one demo import is predefined.

    3. \"Example

      Example of how the import page looks like, when no demo imports are predefined a.k.a manual import.

    4. \"How

      How the Recommended & Required theme plugins step looks like, just before the import step.

    ", "installation": "

    From your WordPress dashboard

    \n
      \n
    1. Visit ‘Plugins > Add New’,
    2. \n
    3. Search for ‘One Click Demo Import’ and install the plugin,
    4. \n
    5. Activate ‘One Click Demo Import’ from your Plugins page.
    6. \n
    \n

    From WordPress.org

    \n
      \n
    1. Download ‘One Click Demo Import’.
    2. \n
    3. Upload the ‘one-click-demo-import’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…)
    4. \n
    5. Activate ‘One Click Demo Import’ from your Plugins page.
    6. \n
    \n

    Once the plugin is activated you will find the actual import page in: Appearance -> Import Demo Data.

    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.0.3.zip", "1.1.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.1.3.zip", "1.2.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.1.4.0.zip", "2.0.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.0.2.zip", "2.1.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.2.1.zip", "2.3.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.3.0.zip", "2.4.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.5.2.zip", "2.6.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.2.6.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.0.2.zip", "3.1.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.1.2.zip", "3.2.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.2.1.zip", "3.3.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.4.0.zip", "trunk": "https://downloads.wordpress.org/plugin/one-click-demo-import.zip"}, "downloaded": 19300298, "description": "

    The best feature of this plugin is, that theme authors can define import files in their themes and so all you (the user of the theme) have to do is click on the “Import Demo Data” button.

    \n
    \n

    Are you a theme author?

    \n

    Setup One Click Demo Imports for your theme and your users will thank you for it!

    \n

    Follow this easy guide on how to setup this plugin for your themes!

    \n

    Are you a theme user?

    \n

    Contact the author of your theme and let them know about this plugin. Theme authors can make any theme compatible with this plugin in 15 minutes and make it much more user-friendly.

    \n

    Where can I find the theme author contact?

    \n
    \n

    Please take a look at our plugin documentation for more information on how to import your demo content.

    \n

    This plugin is using the modified version of the improved WP import 2.0 that is still in development and can be found here: https://github.com/humanmade/WordPress-Importer.

    \n

    NOTE: There is no setting to “connect” authors from the demo import file to the existing users in your WP site (like there is in the original WP Importer plugin). All demo content will be imported under the current user.

    \n

    Do you want to contribute?

    \n

    Please refer to our official GitHub repository.

    \n", "donate_link": "", "num_ratings": 79, "screenshots": {"1": {"src": "https://ps.w.org/one-click-demo-import/assets/screenshot-1.png?rev=2506685", "caption": "Example of multiple predefined demo imports, that a user can choose from."}, "2": {"src": "https://ps.w.org/one-click-demo-import/assets/screenshot-2.png?rev=2506685", "caption": "How the import page looks like, when only one demo import is predefined."}, "3": {"src": "https://ps.w.org/one-click-demo-import/assets/screenshot-3.png?rev=2506685", "caption": "Example of how the import page looks like, when no demo imports are predefined a.k.a manual import."}, "4": {"src": "https://ps.w.org/one-click-demo-import/assets/screenshot-4.png?rev=2506685", "caption": "How the Recommended & Required theme plugins step looks like, just before the import step."}}, "support_url": "https://wordpress.org/support/plugin/one-click-demo-import/", "contributors": {"ocdi": {"avatar": "https://secure.gravatar.com/avatar/647a5b8f4490f80e79bbcb8595099a22f421eec4353f71e409a63ae6d81e46e1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ocdi/", "display_name": "ODCI"}, "smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "capuderg": {"avatar": "https://secure.gravatar.com/avatar/7f3dce4f4cf2b11cb8652edba21dd6171ad81c4acd28fd5728f012e38e6d658f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/capuderg/", "display_name": "Gregor Capuder"}, "jaredatch": {"avatar": "https://secure.gravatar.com/avatar/e48b918fcf7b3ef806516402e3b78524138f1a0c713fe5c0d835a7b6d8ae35a2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jaredatch/", "display_name": "Jared Atchison"}}, "last_updated": "2025-09-11 9:36am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/one-click-demo-import.3.4.0.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f818-71a2-9e41-1b1d71723471", "name": "One Click Demo Import", "slug": "one-click-demo-import", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1757583360, "version": "3.4.0"}, "support_threads": 0, "requires_plugins": [], "short_description": "Import your demo content, widgets and theme settings with one click. Theme authors! Enable simple theme demo import for your users.", "author_block_count": 0, "author_block_rating": 86, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-6651-7081-ae74-b7965b4fd136', 'optinmonster', 'Popup Builder & Popup Maker for WordPress – OptinMonster Email Marketing and Lead Generation', '🤩 Make popups & optin forms to get more email newsletter subscribers, leads, and sales - #1 most popular popup builder plugin! 🚀', '

    🤩 Make popups & optin forms to get more email newsletter subscribers, leads, and sales – #1 most popular popup builder plugin! 🚀

    -

    The Best Popup Builder for WordPress and Email Newsletter Popup Plugin

    -

    OptinMonster is the best WordPress popup plugin and the most popular, too! Over 1.2 MILLION smart marketers like you trust us to make sure no good lead goes uncaptured!

    -

    OptinMonster turns your website visitors into new leads, subscribers and sales.

    -
    -

    Excellent product and customer service
    - “I love the product. I didn’t think popups were important, but with the seamless integration of other products such as MailChimp and WPForms, they are a winner! It makes it easier to collect data and leads. OptinMonster team is always ready to fix any problem you encounter when setting up the forms. They are patient, kind, and upbeat. They make life easier for those who are not developers. This plugin is a must for your business.”
    - @sarana01

    -
    -

    -

    OptinMonster’s easy-to-use popup maker makes creating pop-ups and email subscription forms, sticky floating bars, engaging spin-a-wheel campaigns, and interactive popups a breeze.

    -

    And our mobile popups ensure that your marketing messages look great on all devices.

    -

    …all WITHOUT needing a coder or designer…saving you time AND money.

    -

    OptinMonster integrates with dozens of the most popular email marketing services, CRMs and eCommerce platforms including MailChimp, Hubspot, ConvertKit, Klaviyo, Keap/Infusionsoft, Active Campaign, WooCommerce, Easy Digital Downloads, MemberPress, Google Analytics and many others.

    -

    If we don’t have a native integration with your marketing platform, we’ve got you covered still with one of our no-code integrations:

    -
      -
    • Copy/paste your form’s code using our Embedded Form block
    • -
    • Embed WPForms, Gravity Forms, Formidable Forms, NinjaForms, CF7, or any other shortcode based form plugin for WordPress
    • -
    • Use our powerful Webhooks to send lead information wherever you’d like
    • -
    • Connect OptinMonster to Zapier
    • -
    • Unlock hundreds of automations using Uncanny Automator for WordPress
    • -
    -

    Do all this and more without sacrificing website performance because we’ve optimized the OptinMonster popup builder for both web and server performance.

    -

    And we have the best Customer Support team! With almost 800 five-star reviews on WordPress.org, award winning support (including optional live chat or video calls), our team is here to help you win and win more often!

    -

    OptinMonster is a SaaS service and requires an OptinMonster account.
    -When you install this plugin, you’ll get to register for a free account that includes 3 campaigns and up to 500 campaign impression credits. Those credits are yours forever. If you use all of them, your account will be upgraded so your campaigns continue to display. Of course, you can always control your upgrade preferences within your account.

    -

    When you’re ready to explode your growth, try OptinMonster Pro to access more advanced solutions like Exit-Intent, Campaign Scheduling, Countdown Timers and more.

    -

    Here’s why smart business owners, designers, and developers love OptinMonster!

    -

    Easy Pop-up Builder From OptinMonster Increase Conversions

    -
      -
    • Lightbox Popups – Easily create custom popups to grow your email list, show coupons, make a WooCommerce cross-sell or WooCommerce upsell campaign, and more using our popup maker.
    • -
    • Floating Bar Popups – Create sticky header bars, hello bars and floating bars to show free shipping notices, website announcement alert, sale countdown timer, and more.
    • -
    • Slide-in Popups – Create scroll box popups that slide out from bottom of the screen to highlight your offer, like WooCommerce upsells, related posts, and coupon codes.
    • -
    • Fullscreen Welcome Mats – Create full screen popups and welcome mats to focus your visitor’s attention on your best offer.
    • -
    • Gamified Spin a Wheel Popup – Create coupon wheel optins to increase your store’s conversions with gamification.
    • -
    • Inline Signup Forms – Unlike a popup, inline newsletter signup forms can be embedded anywhere inside your page content, or automatically at the start or end of each post.
    • -
    • Sidebar Forms – Add an email newsletter signup form in your blog’s sidebar to get more subscribers using a shortcode or Gutenberg block.
    • -
    • Content Locker Popups – Turn any inline campaign into a content locker or gated content with our easy to use inline optins.
    • -
    • Countdown Timers – Boost urgency and scarcity for limited time offers with countdown timers (great for sales promotion, live events, webinars, and product launches). Both static and evergreen timers included.
    • -
    • Yes / No Popups – Create multi-step, progressive optins that results in better list segmentation and higher marketing conversions.
    • -
    • Mobile Popups – Create mobile-specific popups that are only shown to users on smart phones and tablets. Great for mobile app downloads or making specific offers to your mobile visitors.
    • -
    • Canvas Custom Popup – Create campaigns from scratch using our drag & drop popup builder for any use case.
    • -
    • AI Popups Smart Optimizations – Our Smart Optimizations use proven, time-tested, high-converting copywriting principles and Artificial Intelligence (AI) to automatically improve the copy present within a text block.
    • -
    -

    Our Drag and Drop Popup Maker and Popup Templates Make It Easy

    -

    Easily customize the look and feel of your campaigns, and even add dynamic elements like countdown timers, spin a wheel, etc that change based on user behavior (no code necessary).

    -

    OptinMonster comes with hundreds of popup templates to help you save time, far more than competitors like Popup Builder, Popup Maker, Icegram (sometimes called Ice Gram), Sumo or Hustle. Easily search them by your industry, business goal, holiday or features.

    -
    -

    I have never before seen such effectiveness and efficiency in an optin tool than I have with OptinMonster. In under 2 hours of work, I doubled my daily optin rates thanks to OptinMonster’s incredible options.
    - Dave Chesson, Owner of Kindlepreneur See Case Study

    -
    -

    Exit Intent Popups and OnSite Retargeting

    -

    Did you know that over 70% of visitors abandoning your website will never return?

    -

    OptinMonster’s signature exit-intent popup technology can help you convert abandoning visitors into subscribers and customers.

    -

    With exit intent popups, visitors see a popup message with your best offer at the precise moment they’re about to leave.

    -

    Exit popups are proven to convert an additional 2 – 4% of your visitors into email subscribers and paying customers.

    -

    You can use exit intent popups combined with OnSite Retargeting to show different popup messages to new visitors vs returning visitors.

    -

    These advanced popup triggers are highly effective in growing your email list, reducing cart abandonment, and saving you moeny on PPC advertising and retargeting ads.

    -
    -

    In only 7 months, we added more than 95,000 names to our email list using OptinMonster’s Exit Intent™ technology. We strongly recommend it!
    - Michael Stelzner, Founder of Social Media Examiner See Case Study

    -
    -

    Smart Page Targeting and Behavior Based Personalization

    -

    And the best WordPress popup plugin comes with advanced page targeting and behavior based personalization, too!

    -

    This means you can show a popup for specific page or section of your site, or based on users’ geolocation, or even when a visitor clicks a specific link…and so much more.

    -

    You can even show unique popups based on user’s past behavior such as: have they clicked on an existing marketing popup, seen another popup campaign, closed a marketing popup, viewed X number of pages, etc.

    -

    These personalization features of OptinMonster popups make them highly effective in improving your lead generation, increasing subscribers, and growing sales.

    -
    -

    Using OptinMonster, I was able to increase sales $55,000 after capturing nearly 7% more leads with a single optin!
    - Cole Joseph, Owner of Cole’s Classroom See Case Study

    -
    -

    Popup A/B Testing, Email Marketing Integrations, and Popup Analytics

    -

    Unlike other WordPress lead generation plugins, OptinMonster comes with reliable A/B split testing and accurate analytics without slowing down your site.

    -

    Most of them use wp-ajax to setup analytics. This slows down your site and also results in unreliable analytics due to cache plugin settings.

    -

    Similarly, A/B testing in a most WordPress popup plugins is broken because caching plugins can skew the data.

    -

    We fixed both these issues with our superior infrastructure, so you can have reliable A/B testing for popups, accurate conversion analytics, and seamless email marketing / CRM integrations for your marketing (bonus: lead storage & lead backup are included, too).

    -

    Credits

    -

    This WordPress popup plugin is created by Thomas Griffin and Syed Balkhi.

    -

    Branding Guideline

    -

    OptinMonster® is a registered trademark of Retyp LLC. When writing about the popup plugin by OptinMonster, please make sure to uppercase the letter O and M.

    -
      -
    • OptinMonster (correct)
    • -
    • Optin Monster (incorrect)
    • -
    • optinmonster (incorrect)
    • -
    • optin monster (incorrect)
    • -
    -

    Exit-Intent®, OnSite Retargeting®, and OnSite Follow Up Campaigns® are also registered trademarks of Retyp LLC.

    -

    See our Press & Brand Assets page for more details.

    -', '2.16.21', 'Syed Balkhi', '5.0', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/optinmonster.2.16.21.zip', '2015-04-26 00:00:00+00', '2025-10-03 17:48:00+00', 'https://profiles.wordpress.org/smub/', 86, 793, 24, 23, 1000000, 128340867, 'https://optinmonster.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/optinmonster/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Popup Builder & Popup Maker for WordPress – OptinMonster Email Marketing and Lead Generation", "slug": "optinmonster", "tags": {"optin": "Optin", "popup": "popup", "popups": "popups", "ecommerce": "ecommerce", "marketing": "marketing"}, "added": "2015-04-26", "icons": {"1x": "https://ps.w.org/optinmonster/assets/icon-128x128.png?rev=1145864", "2x": "https://ps.w.org/optinmonster/assets/icon-256x256.png?rev=1145864"}, "author": "Syed Balkhi", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/optinmonster/assets/banner-772x250.png?rev=2311621", "high": "https://ps.w.org/optinmonster/assets/banner-1544x500.png?rev=2311621"}, "ratings": {"1": 128, "2": 7, "3": 5, "4": 15, "5": 638}, "version": "2.16.21", "homepage": "https://optinmonster.com", "requires": "5.0", "sections": {"faq": "\n
    \nWho should use OptinMonster’s WordPress Popups?\n\n

    \n

    OptinMonster is perfect for:

    \n
      \n
    • Business owners
    • \n
    • Bloggers
    • \n
    • eCommerce sites
    • \n
    • Designers
    • \n
    • Developers
    • \n
    • Marketing agencies
    • \n
    • Anyone who wants to grow their lists, leads, and sales.
    • \n
    \n

    \n
    \nWhat type of WordPress popups can I build with OptinMonster?\n\n

    \n

    Here are just some types of popups you can create with our easy-to-use popup builder:

    \n
      \n
    • Email Optins
    • \n
    • Exit Popups
    • \n
    • Floating Bars
    • \n
    • Spin a Wheel
    • \n
    • Slide-in
    • \n
    • Fullscreen and Welcome Mats
    • \n
    • Video Popups
    • \n
    • Contact Form Popup
    • \n
    • WooCommerce Popup
    • \n
    • Upsell Popup
    • \n
    • Cross Sell Popup
    • \n
    • Coupon Popup
    • \n
    • Sales Popup
    • \n
    • Lightbox
    • \n
    • Newsletter Popup
    • \n
    • Popup on Click of Button or Image
    • \n
    • Login Popup
    • \n
    • Registration Popup
    • \n
    • Lead Generation Popup
      \nand more.
    • \n
    \n

    \n
    \nCan I integrate OptinMonster popups with my CRM or Email Marketing Service?\n\n

    \n

    You can easily send data from your campaign to your favorite CRM, email newsletter, and other marketing platforms.

    \n

    Here is a list of our popular marketing integrations:

    \n\n

    \n
    \nHow can I target where my campaigns appear?\n\n

    \n

    Here are just a few of the powerful personalization and targeting options we offer:

    \n\n

    \n
    \nHow can I control when my campaigns appear?\n\n

    \n

    Our powerful Display Rules give you control so you can ensure your campaigns never annoy your visitors, but appear at just the most helpful time.

    \n\n

    Other Powerful Popup Features:

    \n
      \n
    • Animations – Add animation effects to capture users’ attention.
    • \n
    • Sound Effects – Add sound effects to grab users’ attention.
    • \n
    • Smart A/B Testing – A/B test popup ideas to increase conversions.
    • \n
    • Reliable Conversion Analytics – See how your OptinMonster campaigns are converting with reliable analytics.
    • \n
    • Advanced Google Analytics – Connect with Google Analytics to see event tracking, enhanced eCommerce tracking, and more.
    • \n
    • Lead Sharing – Easily share leads with joint venture / co-marketing partners while using the same optin form.
    • \n
    • Email Newsletter Segmentation – Group email subscribers based on their interests and the unique optin form they subscribed through for improved marketing automation.
    • \n
    • Lead Backup / Storage – Always backup your subscribers with MonsterLeads.
    • \n
    • Share on Social Media – Create shareable campaign links for social media using MonsterLinks.
    • \n
    • Success Tracking Scripts – Setup advertising conversion and retargeting pixels based on popup interaction to improve your PPC results.
    • \n
    \n

    \n
    \nDoes OptinMonster integrate with other WordPress plugins?\n\n

    \n

    Yes! OptinMonster integrates with many WordPress plugins out of the box and we’ve built unique integrations for the most popular WordPress plugins.

    \n
      \n
    • WooCommerce Popups – Add upsell and cross-sell popups, free shipping bars, announcement bars, coupon wheels, and more.
    • \n
    • BigCommerce Popups – Coupon popups, gamified coupon wheels, exit popups, and more to reduce cart abandonment and increase conversions.
    • \n
    • Shopify Popups – Exit intent popup, cart abandonment popup, upsell popup, free shipping bar, discount wheel popups, and more customized popups for Shopify stores.
    • \n
    • WPForms Popup – Create contact forms, survey popups, polls, or embed any WPForms form inside lightbox popup modals.
    • \n
    • Gravity Forms Popup – Create payment form, contact forms, user registrations, login forms, and other Gravity Forms campaigns with just a few clicks.
    • \n
    • Contact Form 7 Popup – Easily create Contact Form 7 popups with OptinMonster.
    • \n
    • MemberPress – Create popups for your membership site or course
    • \n
    • Easy Digital Downloads – Create popups to sell digital downloads and encourage users to buy
    • \n
    • Uncanny Automator – Easily integrate OptinMonster with hundreds of other WordPress plugins and apps, creating endless automations.
    • \n
    \n

    If your plugin utilizes Shortcodes, you should be able to use those shortcodes directly in your OptinMonster popups. Imagine the endless possibilities!

    \n

    \n
    \nWhich design elements / form fields can I add in OptinMonster popups?\n\n

    \n

    We made OptinMonster popup builder to be both easy and powerful with these fields and more…

    \n
      \n
    • Name
    • \n
    • Email
    • \n
    • Phone
    • \n
    • Text and Text Area
    • \n
    • Date
    • \n
    • Radio Buttons
    • \n
    • Checkboxes
    • \n
    • Dropdown
    • \n
    • HTML
    • \n
    • Embedded Forms
    • \n
    • Images
    • \n
    • Videos
    • \n
    • Buttons
    • \n
    • Countdown Timers
    • \n
    • Coupon Wheels
    • \n
    • Chatbots
    • \n
    • Progress Bars
    • \n
    • Social Icons
    • \n
    • Font Awesome Icons
    • \n
    • Spacers and Dividers
    • \n
    • Columns field – create multi-column layouts
    • \n
    • Google ReCAPTCHA
    • \n
    • GDPR privacy checkbox
    • \n
    \n

    \n
    \nDo popups really work? Show me the results.\n\n

    \n

    Here are just a few success stories from OptinMonster customers:

    \n
    \n

    Before using OptinMonster, our website conversion rate was 2-3%, as expected. Since using OptinMonster, we have been able to improve conversion rates to 5.75%, a 189% increase.
    \n Adam Rowles See Case Study

    \n

    OptinMonster played a critical role in increasing my email optin conversion rate by 469%. In real numbers, that is the difference between $7,765 and $47,748 per month in revenue.
    \n Matthew Woodward

    \n

    Exit-intent popups have doubled my email opt-in rate. When done right, you can see an instant 10% lift on driving sales. I highly recommend that you use OptinMonster for growing your email list and sales.
    \n Neil Patel

    \n
    \n

    Click here to see more case studies.

    \n

    \n
    \nWhat other plugins do you recommend I should use?\n\n

    \n

    The plugins below are built by the same team that builds OptinMonster. We think you’ll love them as much as you will OptinMonster!

    \n
      \n
    • TrustPulse – Add real-time social proof notifications to boost your store conversions by up to 15%.
    • \n
    • Beacon – Easily create and share lead magnets and resource libraries.
    • \n
    \n

    We also recommend WPBeginner for the best WordPress Tutorials and to discover more of the best WordPress plugins.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Take money automaticaly, lookout!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lukaszsielicki on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Take money automaticaly, lookout!. This like a scam!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin but extemely misleading pricing, verges on a scam in my view

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy digimarknz on September 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The support while setting up was very good, the plug-in itself is very good but they are (in my view) intentionally misleading with their pricing and it so bad it''s close to a scam. I''ve now removed it and use another plugin with an honest approach and without the spam.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Do not fall for the term of FREE account

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ashot2oo1 on August 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    When someone says a free account, it means a free account. These people say create your free account, once you register they want a credit card details. There is no free account here, only 1 month free subscription, then they start charging. Do not fall for it, do not download unless you intend to pay for it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to use and great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy estooza on August 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m using the free version and have no problems. I''ll consider purchasing the paid version once my site starts to get more traffic.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Installed itself??

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy LOK (LucLatulippe) on June 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This app installed itself after installing another plugin. Will report them.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I have never took the time to write a review on plugins, but this...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy capturefour on May 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    built with template, spend an hour on it, connected it, credit card added, published the pop up and it showed me the standard template on the published website.

    \n\n\n\n

    I have never took the time to write a review on plugins, but this... who is paying for this garbage?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Marketing tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wolfgangz on May 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    better optin rates than klaviyo Popup, great tools great rule sets. Using it for years. Love it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Experience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shawnp01 on May 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great customer service, promptly replied to my email support request and solved my issue very quickly. Plugin is relatively easy to use once setup and has some great functionality.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    awful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sheva_mytra (shevchenko.dmytro) on April 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    credit card even before using! just 500 pageviews on free tier.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very annoying

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mistaaaaaaaake on March 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    you have to register to use this plugin.

    \n\n\n\n

    I didnt want to so I didnt finish setting up and started using another plugin.

    \n\n\n\n

    This monster plugin keeps sending me messages like why you didnt finish up the setting?

    \n\n\n\n

    I answered Do not send me any messages anymore and i unsubscribed it , to be honest I didnt know I subscribed them , anyway I got more message. lol

    \n\n\n\n

    \n\n\n\n

    But they took care of it quick.

    \n
    \n
    \n", "changelog": "

    Most Recent Changes:

    \n

    Popup Builder 2.16.21

    \n
      \n
    • Maintenance updates.
    • \n
    • Preparation for ShareASale to AWIN migration.
    • \n
    \n

    Popup Builder 2.16.20

    \n
      \n
    • Maintenance updates.
    • \n
    \n

    Popup Builder 2.16.19

    \n
      \n
    • Improved support for the WPML plugin
    • \n
    \n

    Popup Builder 2.16.18

    \n
      \n
    • Fixed a scenario where the wrong screenshot may load
    • \n
    \n

    Popup Builder 2.16.17

    \n
      \n
    • Improvements to campaign screenshots
    • \n
    • Blocksy theme compatibility enhancements
    • \n
    \n

    Popup Builder 2.16.16

    \n
      \n
    • Added WooCommerce 9.6 compatibility.
    • \n
    • Performance improvements while in various editor contexts, by preventing unnecessary API calls.
    • \n
    • Updated URL used for OptinMonster API calls.
    • \n
    • Updates to the OptinMonster Gutenberg block to improve compatibility with iframes in the Block Editor.
    • \n
    \n

    Popup Builder 2.16.15

    \n
      \n
    • Added WordPress 6.7 compatibility.
    • \n
    \n

    Popup Builder 2.16.13

    \n
      \n
    • Removed UI elements that were no longer needed.
    • \n
    \n

    Popup Builder 2.16.12

    \n
      \n
    • Promotional updates to the dashboard.
    • \n
    \n

    Popup Builder 2.16.11

    \n
      \n
    • Documentation updates.
    • \n
    \n

    Popup Builder 2.16.10

    \n
      \n
    • Improve access to future events.
    • \n
    \n

    Popup Builder 2.16.9

    \n
      \n
    • Internal improvements to for future events 😉.
    • \n
    • Fixed a bug that may occur when generating URLs for use in our menu items.
    • \n
    \n

    Popup Builder 2.16.8

    \n
      \n
    • Avoid showing sidebar menu for role that does not have access when using User Role Editor plugin.
    • \n
    • Various npm package updates used for generating our JavaScript code.
    • \n
    \n

    Popup Builder 2.16.7

    \n
      \n
    • Improvements to campaign output settings management.
    • \n
    • UI improvements.
    • \n
    \n

    Popup Builder 2.16.6

    \n
      \n
    • Removed compatibility checks for WordFence as they are no longer needed.
    • \n
    • Updates to onboarding flow.
    • \n
    • Improved text when template search returns no results.
    • \n
    • Various npm package updates used for generating our JavaScript code.
    • \n
    \n

    View entire popup builder changelog

    \n", "description": "

    🤩 Make popups & optin forms to get more email newsletter subscribers, leads, and sales – #1 most popular popup builder plugin! 🚀

    \n

    The Best Popup Builder for WordPress and Email Newsletter Popup Plugin

    \n

    OptinMonster is the best WordPress popup plugin and the most popular, too! Over 1.2 MILLION smart marketers like you trust us to make sure no good lead goes uncaptured!

    \n

    OptinMonster turns your website visitors into new leads, subscribers and sales.

    \n
    \n

    Excellent product and customer service
    \n “I love the product. I didn’t think popups were important, but with the seamless integration of other products such as MailChimp and WPForms, they are a winner! It makes it easier to collect data and leads. OptinMonster team is always ready to fix any problem you encounter when setting up the forms. They are patient, kind, and upbeat. They make life easier for those who are not developers. This plugin is a must for your business.”
    \n @sarana01

    \n
    \n

    \n

    OptinMonster’s easy-to-use popup maker makes creating pop-ups and email subscription forms, sticky floating bars, engaging spin-a-wheel campaigns, and interactive popups a breeze.

    \n

    And our mobile popups ensure that your marketing messages look great on all devices.

    \n

    …all WITHOUT needing a coder or designer…saving you time AND money.

    \n

    OptinMonster integrates with dozens of the most popular email marketing services, CRMs and eCommerce platforms including MailChimp, Hubspot, ConvertKit, Klaviyo, Keap/Infusionsoft, Active Campaign, WooCommerce, Easy Digital Downloads, MemberPress, Google Analytics and many others.

    \n

    If we don’t have a native integration with your marketing platform, we’ve got you covered still with one of our no-code integrations:

    \n
      \n
    • Copy/paste your form’s code using our Embedded Form block
    • \n
    • Embed WPForms, Gravity Forms, Formidable Forms, NinjaForms, CF7, or any other shortcode based form plugin for WordPress
    • \n
    • Use our powerful Webhooks to send lead information wherever you’d like
    • \n
    • Connect OptinMonster to Zapier
    • \n
    • Unlock hundreds of automations using Uncanny Automator for WordPress
    • \n
    \n

    Do all this and more without sacrificing website performance because we’ve optimized the OptinMonster popup builder for both web and server performance.

    \n

    And we have the best Customer Support team! With almost 800 five-star reviews on WordPress.org, award winning support (including optional live chat or video calls), our team is here to help you win and win more often!

    \n

    OptinMonster is a SaaS service and requires an OptinMonster account.
    \nWhen you install this plugin, you’ll get to register for a free account that includes 3 campaigns and up to 500 campaign impression credits. Those credits are yours forever. If you use all of them, your account will be upgraded so your campaigns continue to display. Of course, you can always control your upgrade preferences within your account.

    \n

    When you’re ready to explode your growth, try OptinMonster Pro to access more advanced solutions like Exit-Intent, Campaign Scheduling, Countdown Timers and more.

    \n

    Here’s why smart business owners, designers, and developers love OptinMonster!

    \n

    Easy Pop-up Builder From OptinMonster Increase Conversions

    \n
      \n
    • Lightbox Popups – Easily create custom popups to grow your email list, show coupons, make a WooCommerce cross-sell or WooCommerce upsell campaign, and more using our popup maker.
    • \n
    • Floating Bar Popups – Create sticky header bars, hello bars and floating bars to show free shipping notices, website announcement alert, sale countdown timer, and more.
    • \n
    • Slide-in Popups – Create scroll box popups that slide out from bottom of the screen to highlight your offer, like WooCommerce upsells, related posts, and coupon codes.
    • \n
    • Fullscreen Welcome Mats – Create full screen popups and welcome mats to focus your visitor’s attention on your best offer.
    • \n
    • Gamified Spin a Wheel Popup – Create coupon wheel optins to increase your store’s conversions with gamification.
    • \n
    • Inline Signup Forms – Unlike a popup, inline newsletter signup forms can be embedded anywhere inside your page content, or automatically at the start or end of each post.
    • \n
    • Sidebar Forms – Add an email newsletter signup form in your blog’s sidebar to get more subscribers using a shortcode or Gutenberg block.
    • \n
    • Content Locker Popups – Turn any inline campaign into a content locker or gated content with our easy to use inline optins.
    • \n
    • Countdown Timers – Boost urgency and scarcity for limited time offers with countdown timers (great for sales promotion, live events, webinars, and product launches). Both static and evergreen timers included.
    • \n
    • Yes / No Popups – Create multi-step, progressive optins that results in better list segmentation and higher marketing conversions.
    • \n
    • Mobile Popups – Create mobile-specific popups that are only shown to users on smart phones and tablets. Great for mobile app downloads or making specific offers to your mobile visitors.
    • \n
    • Canvas Custom Popup – Create campaigns from scratch using our drag & drop popup builder for any use case.
    • \n
    • AI Popups Smart Optimizations – Our Smart Optimizations use proven, time-tested, high-converting copywriting principles and Artificial Intelligence (AI) to automatically improve the copy present within a text block.
    • \n
    \n

    Our Drag and Drop Popup Maker and Popup Templates Make It Easy

    \n

    Easily customize the look and feel of your campaigns, and even add dynamic elements like countdown timers, spin a wheel, etc that change based on user behavior (no code necessary).

    \n

    OptinMonster comes with hundreds of popup templates to help you save time, far more than competitors like Popup Builder, Popup Maker, Icegram (sometimes called Ice Gram), Sumo or Hustle. Easily search them by your industry, business goal, holiday or features.

    \n
    \n

    I have never before seen such effectiveness and efficiency in an optin tool than I have with OptinMonster. In under 2 hours of work, I doubled my daily optin rates thanks to OptinMonster’s incredible options.
    \n Dave Chesson, Owner of Kindlepreneur See Case Study

    \n
    \n

    Exit Intent Popups and OnSite Retargeting

    \n

    Did you know that over 70% of visitors abandoning your website will never return?

    \n

    OptinMonster’s signature exit-intent popup technology can help you convert abandoning visitors into subscribers and customers.

    \n

    With exit intent popups, visitors see a popup message with your best offer at the precise moment they’re about to leave.

    \n

    Exit popups are proven to convert an additional 2 – 4% of your visitors into email subscribers and paying customers.

    \n

    You can use exit intent popups combined with OnSite Retargeting to show different popup messages to new visitors vs returning visitors.

    \n

    These advanced popup triggers are highly effective in growing your email list, reducing cart abandonment, and saving you moeny on PPC advertising and retargeting ads.

    \n
    \n

    In only 7 months, we added more than 95,000 names to our email list using OptinMonster’s Exit Intent™ technology. We strongly recommend it!
    \n Michael Stelzner, Founder of Social Media Examiner See Case Study

    \n
    \n

    Smart Page Targeting and Behavior Based Personalization

    \n

    And the best WordPress popup plugin comes with advanced page targeting and behavior based personalization, too!

    \n

    This means you can show a popup for specific page or section of your site, or based on users’ geolocation, or even when a visitor clicks a specific link…and so much more.

    \n

    You can even show unique popups based on user’s past behavior such as: have they clicked on an existing marketing popup, seen another popup campaign, closed a marketing popup, viewed X number of pages, etc.

    \n

    These personalization features of OptinMonster popups make them highly effective in improving your lead generation, increasing subscribers, and growing sales.

    \n
    \n

    Using OptinMonster, I was able to increase sales $55,000 after capturing nearly 7% more leads with a single optin!
    \n Cole Joseph, Owner of Cole’s Classroom See Case Study

    \n
    \n

    Popup A/B Testing, Email Marketing Integrations, and Popup Analytics

    \n

    Unlike other WordPress lead generation plugins, OptinMonster comes with reliable A/B split testing and accurate analytics without slowing down your site.

    \n

    Most of them use wp-ajax to setup analytics. This slows down your site and also results in unreliable analytics due to cache plugin settings.

    \n

    Similarly, A/B testing in a most WordPress popup plugins is broken because caching plugins can skew the data.

    \n

    We fixed both these issues with our superior infrastructure, so you can have reliable A/B testing for popups, accurate conversion analytics, and seamless email marketing / CRM integrations for your marketing (bonus: lead storage & lead backup are included, too).

    \n

    Credits

    \n

    This WordPress popup plugin is created by Thomas Griffin and Syed Balkhi.

    \n

    Branding Guideline

    \n

    OptinMonster® is a registered trademark of Retyp LLC. When writing about the popup plugin by OptinMonster, please make sure to uppercase the letter O and M.

    \n
      \n
    • OptinMonster (correct)
    • \n
    • Optin Monster (incorrect)
    • \n
    • optinmonster (incorrect)
    • \n
    • optin monster (incorrect)
    • \n
    \n

    Exit-Intent®, OnSite Retargeting®, and OnSite Follow Up Campaigns® are also registered trademarks of Retyp LLC.

    \n

    See our Press & Brand Assets page for more details.

    \n", "screenshots": "
    1. \"Select

      Select a Campaign type (popup, full screen, floating bar, slide-in, inline or Gamified)

    2. \"Create

      Create and customize your campaign with our easy drag-and-drop popup builder

    3. \"Smart

      Smart targeting and personalization

    4. \"The

      The most powerful targeting and display rules engine

    5. \"Boost

      Boost conversions and engagement with spin a wheel campaign (also called Gamification)

    6. \"Exit

      Exit popup template gallery

    7. \"Floating

      Floating Bar (aka Hello Bar / Sticky Bar) gallery

    8. \"Sidebar

      Sidebar newsletter opt-in form template gallery

    9. \"Reliable

      Reliable conversion analytics for OptinMonster campaigns

    10. \"Free

      Free access to OptinMonster University (marketing courses and guides)

    "}, "versions": {"trunk": "https://downloads.wordpress.org/plugin/optinmonster.zip", "2.13.8": "https://downloads.wordpress.org/plugin/optinmonster.2.13.8.zip", "2.14.0": "https://downloads.wordpress.org/plugin/optinmonster.2.14.0.zip", "2.14.1": "https://downloads.wordpress.org/plugin/optinmonster.2.14.1.zip", "2.15.0": "https://downloads.wordpress.org/plugin/optinmonster.2.15.0.zip", "2.15.1": "https://downloads.wordpress.org/plugin/optinmonster.2.15.1.zip", "2.15.2": "https://downloads.wordpress.org/plugin/optinmonster.2.15.2.zip", "2.15.3": "https://downloads.wordpress.org/plugin/optinmonster.2.15.3.zip", "2.16.0": "https://downloads.wordpress.org/plugin/optinmonster.2.16.0.zip", "2.16.1": "https://downloads.wordpress.org/plugin/optinmonster.2.16.1.zip", "2.16.2": "https://downloads.wordpress.org/plugin/optinmonster.2.16.2.zip", "2.16.3": "https://downloads.wordpress.org/plugin/optinmonster.2.16.3.zip", "2.16.4": "https://downloads.wordpress.org/plugin/optinmonster.2.16.4.zip", "2.16.5": "https://downloads.wordpress.org/plugin/optinmonster.2.16.5.zip", "2.16.6": "https://downloads.wordpress.org/plugin/optinmonster.2.16.6.zip", "2.16.7": "https://downloads.wordpress.org/plugin/optinmonster.2.16.7.zip", "2.16.8": "https://downloads.wordpress.org/plugin/optinmonster.2.16.8.zip", "2.16.9": "https://downloads.wordpress.org/plugin/optinmonster.2.16.9.zip", "2.16.10": "https://downloads.wordpress.org/plugin/optinmonster.2.16.10.zip", "2.16.11": "https://downloads.wordpress.org/plugin/optinmonster.2.16.11.zip", "2.16.12": "https://downloads.wordpress.org/plugin/optinmonster.2.16.12.zip", "2.16.13": "https://downloads.wordpress.org/plugin/optinmonster.2.16.13.zip", "2.16.14": "https://downloads.wordpress.org/plugin/optinmonster.2.16.14.zip", "2.16.15": "https://downloads.wordpress.org/plugin/optinmonster.2.16.15.zip", "2.16.16": "https://downloads.wordpress.org/plugin/optinmonster.2.16.16.zip", "2.16.17": "https://downloads.wordpress.org/plugin/optinmonster.2.16.17.zip", "2.16.18": "https://downloads.wordpress.org/plugin/optinmonster.2.16.18.zip", "2.16.19": "https://downloads.wordpress.org/plugin/optinmonster.2.16.19.zip", "2.16.20": "https://downloads.wordpress.org/plugin/optinmonster.2.16.20.zip", "2.16.21": "https://downloads.wordpress.org/plugin/optinmonster.2.16.21.zip"}, "downloaded": 128340867, "description": "

    🤩 Make popups & optin forms to get more email newsletter subscribers, leads, and sales – #1 most popular popup builder plugin! 🚀

    \n

    The Best Popup Builder for WordPress and Email Newsletter Popup Plugin

    \n

    OptinMonster is the best WordPress popup plugin and the most popular, too! Over 1.2 MILLION smart marketers like you trust us to make sure no good lead goes uncaptured!

    \n

    OptinMonster turns your website visitors into new leads, subscribers and sales.

    \n
    \n

    Excellent product and customer service
    \n “I love the product. I didn’t think popups were important, but with the seamless integration of other products such as MailChimp and WPForms, they are a winner! It makes it easier to collect data and leads. OptinMonster team is always ready to fix any problem you encounter when setting up the forms. They are patient, kind, and upbeat. They make life easier for those who are not developers. This plugin is a must for your business.”
    \n @sarana01

    \n
    \n

    \n

    OptinMonster’s easy-to-use popup maker makes creating pop-ups and email subscription forms, sticky floating bars, engaging spin-a-wheel campaigns, and interactive popups a breeze.

    \n

    And our mobile popups ensure that your marketing messages look great on all devices.

    \n

    …all WITHOUT needing a coder or designer…saving you time AND money.

    \n

    OptinMonster integrates with dozens of the most popular email marketing services, CRMs and eCommerce platforms including MailChimp, Hubspot, ConvertKit, Klaviyo, Keap/Infusionsoft, Active Campaign, WooCommerce, Easy Digital Downloads, MemberPress, Google Analytics and many others.

    \n

    If we don’t have a native integration with your marketing platform, we’ve got you covered still with one of our no-code integrations:

    \n
      \n
    • Copy/paste your form’s code using our Embedded Form block
    • \n
    • Embed WPForms, Gravity Forms, Formidable Forms, NinjaForms, CF7, or any other shortcode based form plugin for WordPress
    • \n
    • Use our powerful Webhooks to send lead information wherever you’d like
    • \n
    • Connect OptinMonster to Zapier
    • \n
    • Unlock hundreds of automations using Uncanny Automator for WordPress
    • \n
    \n

    Do all this and more without sacrificing website performance because we’ve optimized the OptinMonster popup builder for both web and server performance.

    \n

    And we have the best Customer Support team! With almost 800 five-star reviews on WordPress.org, award winning support (including optional live chat or video calls), our team is here to help you win and win more often!

    \n

    OptinMonster is a SaaS service and requires an OptinMonster account.
    \nWhen you install this plugin, you’ll get to register for a free account that includes 3 campaigns and up to 500 campaign impression credits. Those credits are yours forever. If you use all of them, your account will be upgraded so your campaigns continue to display. Of course, you can always control your upgrade preferences within your account.

    \n

    When you’re ready to explode your growth, try OptinMonster Pro to access more advanced solutions like Exit-Intent, Campaign Scheduling, Countdown Timers and more.

    \n

    Here’s why smart business owners, designers, and developers love OptinMonster!

    \n

    Easy Pop-up Builder From OptinMonster Increase Conversions

    \n
      \n
    • Lightbox Popups – Easily create custom popups to grow your email list, show coupons, make a WooCommerce cross-sell or WooCommerce upsell campaign, and more using our popup maker.
    • \n
    • Floating Bar Popups – Create sticky header bars, hello bars and floating bars to show free shipping notices, website announcement alert, sale countdown timer, and more.
    • \n
    • Slide-in Popups – Create scroll box popups that slide out from bottom of the screen to highlight your offer, like WooCommerce upsells, related posts, and coupon codes.
    • \n
    • Fullscreen Welcome Mats – Create full screen popups and welcome mats to focus your visitor’s attention on your best offer.
    • \n
    • Gamified Spin a Wheel Popup – Create coupon wheel optins to increase your store’s conversions with gamification.
    • \n
    • Inline Signup Forms – Unlike a popup, inline newsletter signup forms can be embedded anywhere inside your page content, or automatically at the start or end of each post.
    • \n
    • Sidebar Forms – Add an email newsletter signup form in your blog’s sidebar to get more subscribers using a shortcode or Gutenberg block.
    • \n
    • Content Locker Popups – Turn any inline campaign into a content locker or gated content with our easy to use inline optins.
    • \n
    • Countdown Timers – Boost urgency and scarcity for limited time offers with countdown timers (great for sales promotion, live events, webinars, and product launches). Both static and evergreen timers included.
    • \n
    • Yes / No Popups – Create multi-step, progressive optins that results in better list segmentation and higher marketing conversions.
    • \n
    • Mobile Popups – Create mobile-specific popups that are only shown to users on smart phones and tablets. Great for mobile app downloads or making specific offers to your mobile visitors.
    • \n
    • Canvas Custom Popup – Create campaigns from scratch using our drag & drop popup builder for any use case.
    • \n
    • AI Popups Smart Optimizations – Our Smart Optimizations use proven, time-tested, high-converting copywriting principles and Artificial Intelligence (AI) to automatically improve the copy present within a text block.
    • \n
    \n

    Our Drag and Drop Popup Maker and Popup Templates Make It Easy

    \n

    Easily customize the look and feel of your campaigns, and even add dynamic elements like countdown timers, spin a wheel, etc that change based on user behavior (no code necessary).

    \n

    OptinMonster comes with hundreds of popup templates to help you save time, far more than competitors like Popup Builder, Popup Maker, Icegram (sometimes called Ice Gram), Sumo or Hustle. Easily search them by your industry, business goal, holiday or features.

    \n
    \n

    I have never before seen such effectiveness and efficiency in an optin tool than I have with OptinMonster. In under 2 hours of work, I doubled my daily optin rates thanks to OptinMonster’s incredible options.
    \n Dave Chesson, Owner of Kindlepreneur See Case Study

    \n
    \n

    Exit Intent Popups and OnSite Retargeting

    \n

    Did you know that over 70% of visitors abandoning your website will never return?

    \n

    OptinMonster’s signature exit-intent popup technology can help you convert abandoning visitors into subscribers and customers.

    \n

    With exit intent popups, visitors see a popup message with your best offer at the precise moment they’re about to leave.

    \n

    Exit popups are proven to convert an additional 2 – 4% of your visitors into email subscribers and paying customers.

    \n

    You can use exit intent popups combined with OnSite Retargeting to show different popup messages to new visitors vs returning visitors.

    \n

    These advanced popup triggers are highly effective in growing your email list, reducing cart abandonment, and saving you moeny on PPC advertising and retargeting ads.

    \n
    \n

    In only 7 months, we added more than 95,000 names to our email list using OptinMonster’s Exit Intent™ technology. We strongly recommend it!
    \n Michael Stelzner, Founder of Social Media Examiner See Case Study

    \n
    \n

    Smart Page Targeting and Behavior Based Personalization

    \n

    And the best WordPress popup plugin comes with advanced page targeting and behavior based personalization, too!

    \n

    This means you can show a popup for specific page or section of your site, or based on users’ geolocation, or even when a visitor clicks a specific link…and so much more.

    \n

    You can even show unique popups based on user’s past behavior such as: have they clicked on an existing marketing popup, seen another popup campaign, closed a marketing popup, viewed X number of pages, etc.

    \n

    These personalization features of OptinMonster popups make them highly effective in improving your lead generation, increasing subscribers, and growing sales.

    \n
    \n

    Using OptinMonster, I was able to increase sales $55,000 after capturing nearly 7% more leads with a single optin!
    \n Cole Joseph, Owner of Cole’s Classroom See Case Study

    \n
    \n

    Popup A/B Testing, Email Marketing Integrations, and Popup Analytics

    \n

    Unlike other WordPress lead generation plugins, OptinMonster comes with reliable A/B split testing and accurate analytics without slowing down your site.

    \n

    Most of them use wp-ajax to setup analytics. This slows down your site and also results in unreliable analytics due to cache plugin settings.

    \n

    Similarly, A/B testing in a most WordPress popup plugins is broken because caching plugins can skew the data.

    \n

    We fixed both these issues with our superior infrastructure, so you can have reliable A/B testing for popups, accurate conversion analytics, and seamless email marketing / CRM integrations for your marketing (bonus: lead storage & lead backup are included, too).

    \n

    Credits

    \n

    This WordPress popup plugin is created by Thomas Griffin and Syed Balkhi.

    \n

    Branding Guideline

    \n

    OptinMonster® is a registered trademark of Retyp LLC. When writing about the popup plugin by OptinMonster, please make sure to uppercase the letter O and M.

    \n
      \n
    • OptinMonster (correct)
    • \n
    • Optin Monster (incorrect)
    • \n
    • optinmonster (incorrect)
    • \n
    • optin monster (incorrect)
    • \n
    \n

    Exit-Intent®, OnSite Retargeting®, and OnSite Follow Up Campaigns® are also registered trademarks of Retyp LLC.

    \n

    See our Press & Brand Assets page for more details.

    \n", "donate_link": "", "num_ratings": 793, "screenshots": {"1": {"src": "https://ps.w.org/optinmonster/assets/screenshot-1.png?rev=2311621", "caption": "Select a Campaign type (popup, full screen, floating bar, slide-in, inline or Gamified)"}, "2": {"src": "https://ps.w.org/optinmonster/assets/screenshot-2.png?rev=2311621", "caption": "Create and customize your campaign with our easy drag-and-drop popup builder"}, "3": {"src": "https://ps.w.org/optinmonster/assets/screenshot-3.png?rev=2311621", "caption": "Smart targeting and personalization"}, "4": {"src": "https://ps.w.org/optinmonster/assets/screenshot-4.png?rev=2311621", "caption": "The most powerful targeting and display rules engine"}, "5": {"src": "https://ps.w.org/optinmonster/assets/screenshot-5.png?rev=2311627", "caption": "Boost conversions and engagement with spin a wheel campaign (also called Gamification)"}, "6": {"src": "https://ps.w.org/optinmonster/assets/screenshot-6.png?rev=2311627", "caption": "Exit popup template gallery"}, "7": {"src": "https://ps.w.org/optinmonster/assets/screenshot-7.png?rev=2311627", "caption": "Floating Bar (aka Hello Bar / Sticky Bar) gallery"}, "8": {"src": "https://ps.w.org/optinmonster/assets/screenshot-8.png?rev=2311627", "caption": "Sidebar newsletter opt-in form template gallery"}, "9": {"src": "https://ps.w.org/optinmonster/assets/screenshot-9.png?rev=2311627", "caption": "Reliable conversion analytics for OptinMonster campaigns"}, "10": {"src": "https://ps.w.org/optinmonster/assets/screenshot-10.png?rev=2311627", "caption": "Free access to OptinMonster University (marketing courses and guides)"}}, "support_url": "https://wordpress.org/support/plugin/optinmonster/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "griffinjt": {"avatar": "https://secure.gravatar.com/avatar/542c93f45f2a6622d0929c5cdd26e24b43222d78c2bd4e25c30cec6f3ea354d8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/griffinjt/", "display_name": "Thomas Griffin"}, "optinmonster": {"avatar": "https://secure.gravatar.com/avatar/5fad155ba0587fa8414132160d67525e42725758a3293d12cee3b20ed4734f3f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/optinmonster/", "display_name": "OptinMonster"}}, "last_updated": "2025-10-03 5:48pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/optinmonster.2.16.21.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f884-7231-8a2f-979c1a24d693", "name": "Popup Builder & Popup Maker for WordPress – OptinMonster Email Marketing and Lead Generation", "slug": "optinmonster", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1759513680, "version": "2.16.21"}, "support_threads": 24, "requires_plugins": [], "short_description": "🤩 Make popups & optin forms to get more email newsletter subscribers, leads, and sales - #1 most popular popup builder plugin! 🚀", "author_block_count": 1, "author_block_rating": 86, "commercial_support_url": "", "support_threads_resolved": 23}'); -INSERT INTO public.plugins VALUES ('019a30c1-665d-70fd-999b-32a298758e2c', 'polylang', 'Polylang', 'Go multilingual in a simple and efficient way. Keep writing posts and taxonomy terms as usual while defining their languages all at once.', '

    With Polylang fully integrated to WordPress and using only its built-in core features (taxonomies), keep steady performances on your site and create a multilingual site featuring from just one extra language to 10 or more depending on your needs. There is no limit in the number of languages added and WordPress’ language packs are automatically downloaded when ready.

    -

    Features

    -

    Depending on the type of site you have built or are planning to build, a combination of plugins from the list below might be of interest.
    -All plugins include a wizard allowing to setup them in just a few clicks.

    -

    Polylang

    -

    Polylang and Polylang Pro share the same core providing features such as:

    -
      -
    • Translating posts, pages, media, categories, post tags, custom post types and taxonomies, RSS feeds; RTL scripts are supported.
    • -
    • The language is either set by the language code in URL, or you can use a different sub-domain or domain per language.
    • -
    • Automatic copy of categories, post tags and other metas when creating a new post or page translation.
    • -
    • Translating classic menus and classic widgets. Also accessible with Site Editor Classic Features in block themes.
    • -
    • Customizable language switcher available as a classic widget or a classic navigation menu item.
    • -
    • Compatibility with Yoast SEO.
    • -
    -

    Polylang Pro

    -

    Helps optimizing the time spent translating your site with some very useful extra features such as:

    -
      -
    • Better integration in the new Block Editor.
    • -
    • Language switcher available as a block.
    • -
    • Language options available in the widget block editor.
    • -
    • Template parts translatable in the site editor (FSE).
    • -
    • Duplicate and/or synchronize content across post translations.
    • -
    • Improved compatibility with other plugins such as ACF Pro.
    • -
    • Share the same URL slug for posts or terms across languages.
    • -
    • Translate URL slugs for categories, author bases, custom post types and more…
    • -
    • Machine translation with DeepL.
    • -
    • Export and import of content in XLIFF format for outsourced professional translation.
    • -
    • Access to a Premium Support for personalized assistance.
    • -
    -

    Polylang for WooCommerce

    -

    Add-on for the compatibility with WooCommerce which provides features such as:

    -
      -
    • Translating WooCommerce pages (shop, check-out, cart, my account), product categories and global attribute terms directly in the WooCommerce interface.
    • -
    • Translating WooCommerce e-mails and sending them to customers in their language.
    • -
    • Products metadata synchronization.
    • -
    • Compatibility with the native WooCommerce CSV import & export tool.
    • -
    • Compatibility with popular plugins such as WooCommerce Subscriptions, Product Bundles, WooCommerce Bookings, Shipment Tracking and more.
    • -
    • Ability to use the WooCommerce REST API (available with Polylang Pro).
    • -
    • Access to a Premium Support for personalized assistance.
    • -
    -

    Our other free plugins

    - -

    Credits

    -

    Thanks a lot to all translators who help translating Polylang.
    -Thanks a lot to Alex Lopez for the design of the logo.
    -Most of the flags included with Polylang are coming from famfamfam and are public domain.
    -Wherever third party code has been used, credit has been given in the code’s comments.

    -', '3.7.4', 'Chouby', '6.2', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/polylang.3.7.4.zip', '2011-09-22 00:00:00+00', '2025-10-28 17:16:00+00', 'https://profiles.wordpress.org/chouby/', 94, 2862, 25, 8, 800000, 23942524, 'https://polylang.pro', 'https://polylang.pro', NULL, NULL, 'https://wordpress.org/support/plugin/polylang/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Polylang", "slug": "polylang", "tags": {"language": "language", "translate": "translate", "translation": "translation", "localization": "localization", "multilingual": "multilingual"}, "added": "2011-09-22", "icons": {"1x": "https://ps.w.org/polylang/assets/icon-128x128.png?rev=1331499", "2x": "https://ps.w.org/polylang/assets/icon-256x256.png?rev=1331499"}, "author": "Chouby", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/polylang/assets/banner-772x250.png?rev=1405299", "high": "https://ps.w.org/polylang/assets/banner-1544x500.png?rev=1405299"}, "ratings": {"1": 131, "2": 33, "3": 42, "4": 98, "5": 2558}, "version": "3.7.4", "homepage": "https://polylang.pro", "requires": "6.2", "sections": {"faq": "\n
    \nWhere to find help ?\n\n

    \n

    \n

    \n
    \nIs Polylang compatible with WooCommerce?\n\n

    \n

    \n

    \n
    \nWhere do I report security bugs found in this plugin?\n\n

    \n

      \n
    • Please report security bugs found in the source code of the Polylang plugin through the Patchstack Vulnerability Disclosure Program. The Patchstack team will assist you with verification, CVE assignment, and notify the developers of this plugin.
    • \n
    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A plugin that always works!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Staffan_Torner on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I hav used this plugin for many years, it just goes on working and working and .......

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works perfectly

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy crestanads on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    No issues whatsoever....

    \n\n\n\n

    Elementor connector works perfectly as well

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy felizycontento on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    And easy to use

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Ottimo plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mattadm on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Semplice e funziona molto bene. Prendero'' anche quello per woocommerce.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy actifred on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using this plugin for years. Still loving it !

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anitme6619 on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Its really easy for non-techs like me. Also, they don''t charge for additional languages like their competitors.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Veikia puikiai!!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Marius (trakas) on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Veikia puikiai!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Multilingual Website without extra cost.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Radwan Hallak (rdwan hlak) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin makes creating a multilingual website extremely easy, and at no extra cost. Thank you for your efforts.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    it's working Awesome!!! :)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dorafatih on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    it''s working Awesome, thank u so much :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iz0kba on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    OK

    \n
    \n
    \n", "changelog": "

    3.7.4 (2025-10-28)

    \n
      \n
    • Pro: Security: Fix a ReDoS vulnerability reported by Janine Moreira.
    • \n
    • Security: Fix deserialization of untrusted data reported by Phat RiO – BlueRock via Patchstack.
    • \n
    \n

    3.7.3 (2025-06-16)

    \n
      \n
    • Pro: Always display ACF translation settings for field groups formerly translated in versions older than 3.7
    • \n
    • Pro: Fix translation displayed in child fields of ACF layout fields when they should not
    • \n
    • Pro: Fix translation of the ACF field “Choice” when the translation is set to “Copy once” or “Synchronize”
    • \n
    • Pro: Fix a PHP warning when translating some blocks
    • \n
    • Pro: Fix impossibility to change the language of an empty post in the block editor
    • \n
    • Fix duplicate values in options #1672
    • \n
    • Fix JS error in media library (grid view) #1674
    • \n
    • Fix language dropdown not present in the media modal accessible from the media library grid view #1675
    • \n
    • Fix DB error introduce by WooCommerce 9.9 #1681
    • \n
    \n

    3.7.2 (2025-05-27)

    \n
      \n
    • Pro: Require ACF 6.0+ to activate the integration to avoid fatal errors with older versions
    • \n
    • Pro: Add a new ACF field group setting to decide if translations instructions must be displayed
    • \n
    • Pro: Fix a fatal error when using ACF blocks with ACF < 6.3.0
    • \n
    • Pro: Fix regression preventing to translate Oembed, URL and Email ACF fields
    • \n
    • Pro: Fix ACF fields not translated when they have a default value
    • \n
    • Pro: Fix empty ACF fields values not copied when the field has a default value
    • \n
    • Pro: Fix ACF field default values not translated when copying a post
    • \n
    • Pro: Fix possible fatal error if invalid types of data are sent for machine translation
    • \n
    • Pro: Fix term meta removed when a term is machine translated
    • \n
    • Fix nav menu locations not saved if invalid data are stored in database #1659
    • \n
    • Fix parent relationship removed when a new translated term is created without parent #1671
    • \n
    \n

    3.7.1 (2025-05-05)

    \n
      \n
    • Pro: Do not display ACF fields translations settings when language location is set.
    • \n
    • Pro: Fix ACF taxonomy field terms not synchronized when “Save Terms” and “load terms” settings are activated.
    • \n
    • Pro: Fix duplicate options when using numeric keys for ACF choice fields.
    • \n
    \n

    3.7 (2025-04-22)

    \n
      \n
    • Requires PHP 7.2 as minimum version
    • \n
    • Pro: Add DeepL machine translation for strings
    • \n
    • Pro: Consider Polylang Pro as equivalent to Polylang for plugin dependencies
    • \n
    • Pro: Add the details block and several labels in other blocks to XLIFF files and machine translation
    • \n
    • Pro: Allow to translate metas stored as objects
    • \n
    • Pro: Enhanced multilingual support of archive template hierarchy
    • \n
    • Pro: Wrap the language switcher block in a nav tag
    • \n
    • Pro: Support automatic IDs translation in blocks with new filters pll_sync_block_rules_for_attributes and pll_sync_blocks_xpath_rules
    • \n
    • Pro: Complete rewrite of ACF integration
    • \n
    • Pro: Add support for ACF blocks, post types and taxonomies.
    • \n
    • Pro: Remove the possibility to translate ACF field groups
    • \n
    • Pro: Add languages in ACF locations
    • \n
    • Pro: Add translation of ACF labels in the strings translations page
    • \n
    • Pro: Fix incorrect count of translated strings when importing strings translations
    • \n
    • Pro: Fix incorrect translation when an XLIFF import updates a term sharing its slug
    • \n
    • Pro: Fix term hierarchy with machine translation
    • \n
    • Pro: Fix indented items of a list block not translated with machine translation
    • \n
    • Pro: Fix navigation block inserted in the wrong language
    • \n
    • Update plugin updater to 1.9.4
    • \n
    • Add translation of widgets custom html in strings translations #1423
    • \n
    • Refactor core to manage the plugin options in an object #1451
    • \n
    • Refactor core to give access to languages management in all contexts #1503
    • \n
    • Remove the language set from the content option for new installs #1517
    • \n
    • Allow numbers in language codes #1546
    • \n
    • Display empty fields in the translations table for untranslated strings (instead of duplicating the original) #1574
    • \n
    • Add REST API endpoints to manage options and languages #1505 #1569
    • \n
    • Improve performance by registering the language taxonomy only once #1359
    • \n
    • Add new API functions to insert and update posts and terms in a given language #1500 #1520
    • \n
    • Add compatibility with jQuery 4 (planned in core for WP 6.8) #1612
    • \n
    • Fix translations not loaded when the language is set from the content #1395
    • \n
    • Fix possible term duplication #1490
    • \n
    • Fix sanitization of translated options that may impact other strings #1571
    • \n
    • Fix home link block not translated #1647
    • \n
    • Fix a conflict with WooCommerce Price Based on Country #1638
    • \n
    \n

    See changelog.txt for older changelog

    \n", "description": "

    With Polylang fully integrated to WordPress and using only its built-in core features (taxonomies), keep steady performances on your site and create a multilingual site featuring from just one extra language to 10 or more depending on your needs. There is no limit in the number of languages added and WordPress’ language packs are automatically downloaded when ready.

    \n

    Features

    \n

    Depending on the type of site you have built or are planning to build, a combination of plugins from the list below might be of interest.
    \nAll plugins include a wizard allowing to setup them in just a few clicks.

    \n

    Polylang

    \n

    Polylang and Polylang Pro share the same core providing features such as:

    \n
      \n
    • Translating posts, pages, media, categories, post tags, custom post types and taxonomies, RSS feeds; RTL scripts are supported.
    • \n
    • The language is either set by the language code in URL, or you can use a different sub-domain or domain per language.
    • \n
    • Automatic copy of categories, post tags and other metas when creating a new post or page translation.
    • \n
    • Translating classic menus and classic widgets. Also accessible with Site Editor Classic Features in block themes.
    • \n
    • Customizable language switcher available as a classic widget or a classic navigation menu item.
    • \n
    • Compatibility with Yoast SEO.
    • \n
    \n

    Polylang Pro

    \n

    Helps optimizing the time spent translating your site with some very useful extra features such as:

    \n
      \n
    • Better integration in the new Block Editor.
    • \n
    • Language switcher available as a block.
    • \n
    • Language options available in the widget block editor.
    • \n
    • Template parts translatable in the site editor (FSE).
    • \n
    • Duplicate and/or synchronize content across post translations.
    • \n
    • Improved compatibility with other plugins such as ACF Pro.
    • \n
    • Share the same URL slug for posts or terms across languages.
    • \n
    • Translate URL slugs for categories, author bases, custom post types and more…
    • \n
    • Machine translation with DeepL.
    • \n
    • Export and import of content in XLIFF format for outsourced professional translation.
    • \n
    • Access to a Premium Support for personalized assistance.
    • \n
    \n

    Polylang for WooCommerce

    \n

    Add-on for the compatibility with WooCommerce which provides features such as:

    \n
      \n
    • Translating WooCommerce pages (shop, check-out, cart, my account), product categories and global attribute terms directly in the WooCommerce interface.
    • \n
    • Translating WooCommerce e-mails and sending them to customers in their language.
    • \n
    • Products metadata synchronization.
    • \n
    • Compatibility with the native WooCommerce CSV import & export tool.
    • \n
    • Compatibility with popular plugins such as WooCommerce Subscriptions, Product Bundles, WooCommerce Bookings, Shipment Tracking and more.
    • \n
    • Ability to use the WooCommerce REST API (available with Polylang Pro).
    • \n
    • Access to a Premium Support for personalized assistance.
    • \n
    \n

    Our other free plugins

    \n\n

    Credits

    \n

    Thanks a lot to all translators who help translating Polylang.
    \nThanks a lot to Alex Lopez for the design of the logo.
    \nMost of the flags included with Polylang are coming from famfamfam and are public domain.
    \nWherever third party code has been used, credit has been given in the code’s comments.

    \n", "screenshots": "
    1. \"The

      The Polylang languages admin panel

    2. \"The

      The Strings translations admin panel

    3. \"Multilingual

      Multilingual media library

    4. \"The

      The Edit Post screen with the Languages metabox

    ", "installation": "
      \n
    1. Make sure you are using WordPress 6.2 or later and that your server is running PHP 7.2 or later (same requirement as WordPress itself).
    2. \n
    3. If you tried other multilingual plugins, deactivate them before activating Polylang, otherwise, you may get unexpected results!
    4. \n
    5. Install and activate the plugin as usual from the ‘Plugins’ menu in WordPress.
    6. \n
    7. The setup wizard is automatically launched to help you get started more easily with Polylang by configuring the main features.
    8. \n
    \n"}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/polylang.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/polylang.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/polylang.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/polylang.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/polylang.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/polylang.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/polylang.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/polylang.0.8.zip", "0.9": "https://downloads.wordpress.org/plugin/polylang.0.9.zip", "1.0": "https://downloads.wordpress.org/plugin/polylang.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/polylang.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/polylang.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/polylang.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/polylang.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/polylang.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/polylang.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/polylang.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/polylang.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/polylang.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/polylang.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/polylang.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/polylang.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/polylang.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/polylang.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/polylang.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/polylang.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/polylang.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/polylang.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/polylang.2.9.zip", "3.0": "https://downloads.wordpress.org/plugin/polylang.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/polylang.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/polylang.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/polylang.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/polylang.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/polylang.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/polylang.3.6.zip", "3.7": "https://downloads.wordpress.org/plugin/polylang.3.7.zip", "0.3.1": "https://downloads.wordpress.org/plugin/polylang.0.3.1.zip", "0.3.2": "https://downloads.wordpress.org/plugin/polylang.0.3.2.zip", "0.4.1": "https://downloads.wordpress.org/plugin/polylang.0.4.1.zip", "0.4.2": "https://downloads.wordpress.org/plugin/polylang.0.4.2.zip", "0.4.3": "https://downloads.wordpress.org/plugin/polylang.0.4.3.zip", "0.4.4": "https://downloads.wordpress.org/plugin/polylang.0.4.4.zip", "0.5.1": "https://downloads.wordpress.org/plugin/polylang.0.5.1.zip", "0.6.1": "https://downloads.wordpress.org/plugin/polylang.0.6.1.zip", "0.7.1": "https://downloads.wordpress.org/plugin/polylang.0.7.1.zip", "0.7.2": "https://downloads.wordpress.org/plugin/polylang.0.7.2.zip", "0.8.1": "https://downloads.wordpress.org/plugin/polylang.0.8.1.zip", "0.8.2": "https://downloads.wordpress.org/plugin/polylang.0.8.2.zip", "0.8.3": "https://downloads.wordpress.org/plugin/polylang.0.8.3.zip", "0.8.4": "https://downloads.wordpress.org/plugin/polylang.0.8.4.zip", "0.8.6": "https://downloads.wordpress.org/plugin/polylang.0.8.6.zip", "0.8.7": "https://downloads.wordpress.org/plugin/polylang.0.8.7.zip", "0.8.8": "https://downloads.wordpress.org/plugin/polylang.0.8.8.zip", "0.8.9": "https://downloads.wordpress.org/plugin/polylang.0.8.9.zip", "0.9.1": "https://downloads.wordpress.org/plugin/polylang.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/polylang.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/polylang.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/polylang.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/polylang.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/polylang.0.9.6.zip", "0.9.8": "https://downloads.wordpress.org/plugin/polylang.0.9.8.zip", "1.0.1": "https://downloads.wordpress.org/plugin/polylang.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/polylang.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/polylang.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/polylang.1.0.4.zip", "1.1.1": "https://downloads.wordpress.org/plugin/polylang.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/polylang.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/polylang.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/polylang.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/polylang.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/polylang.1.1.6.zip", "1.2.1": "https://downloads.wordpress.org/plugin/polylang.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/polylang.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/polylang.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/polylang.1.2.4.zip", "1.3.1": "https://downloads.wordpress.org/plugin/polylang.1.3.1.zip", "1.4.1": "https://downloads.wordpress.org/plugin/polylang.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/polylang.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/polylang.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/polylang.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/polylang.1.4.5.zip", "1.5.1": "https://downloads.wordpress.org/plugin/polylang.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/polylang.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/polylang.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/polylang.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/polylang.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/polylang.1.5.6.zip", "1.6.1": "https://downloads.wordpress.org/plugin/polylang.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/polylang.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/polylang.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/polylang.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/polylang.1.6.5.zip", "1.7.1": "https://downloads.wordpress.org/plugin/polylang.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/polylang.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/polylang.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/polylang.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/polylang.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/polylang.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/polylang.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/polylang.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/polylang.1.7.9.zip", "1.8.1": "https://downloads.wordpress.org/plugin/polylang.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/polylang.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/polylang.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/polylang.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/polylang.1.8.5.zip", "1.9.1": "https://downloads.wordpress.org/plugin/polylang.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/polylang.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/polylang.1.9.3.zip", "2.0.1": "https://downloads.wordpress.org/plugin/polylang.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/polylang.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/polylang.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/polylang.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/polylang.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/polylang.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/polylang.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/polylang.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/polylang.2.0.9.zip", "2.1.1": "https://downloads.wordpress.org/plugin/polylang.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/polylang.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/polylang.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/polylang.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/polylang.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/polylang.2.1.6.zip", "2.2.1": "https://downloads.wordpress.org/plugin/polylang.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/polylang.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/polylang.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/polylang.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/polylang.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/polylang.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/polylang.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/polylang.2.2.8.zip", "2.3.1": "https://downloads.wordpress.org/plugin/polylang.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/polylang.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/polylang.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/polylang.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/polylang.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/polylang.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/polylang.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/polylang.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/polylang.2.3.9.zip", "2.4.1": "https://downloads.wordpress.org/plugin/polylang.2.4.1.zip", "2.5.1": "https://downloads.wordpress.org/plugin/polylang.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/polylang.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/polylang.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/polylang.2.5.4.zip", "2.6.1": "https://downloads.wordpress.org/plugin/polylang.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/polylang.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/polylang.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/polylang.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/polylang.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/polylang.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/polylang.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/polylang.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/polylang.2.6.9.zip", "2.7.1": "https://downloads.wordpress.org/plugin/polylang.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/polylang.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/polylang.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/polylang.2.7.4.zip", "2.8.1": "https://downloads.wordpress.org/plugin/polylang.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/polylang.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/polylang.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/polylang.2.8.4.zip", "2.9.1": "https://downloads.wordpress.org/plugin/polylang.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/polylang.2.9.2.zip", "3.0.1": "https://downloads.wordpress.org/plugin/polylang.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/polylang.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/polylang.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/polylang.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/polylang.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/polylang.3.0.6.zip", "3.1.1": "https://downloads.wordpress.org/plugin/polylang.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/polylang.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/polylang.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/polylang.3.1.4.zip", "3.2.1": "https://downloads.wordpress.org/plugin/polylang.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/polylang.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/polylang.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/polylang.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/polylang.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/polylang.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/polylang.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/plugin/polylang.3.2.8.zip", "3.3.1": "https://downloads.wordpress.org/plugin/polylang.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/polylang.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/polylang.3.3.3.zip", "3.4.1": "https://downloads.wordpress.org/plugin/polylang.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/polylang.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/polylang.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/polylang.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/polylang.3.4.5.zip", "3.5.1": "https://downloads.wordpress.org/plugin/polylang.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/polylang.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/polylang.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/polylang.3.5.4.zip", "3.6.1": "https://downloads.wordpress.org/plugin/polylang.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/polylang.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/polylang.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/polylang.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/polylang.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/polylang.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/polylang.3.6.7.zip", "3.7.1": "https://downloads.wordpress.org/plugin/polylang.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/polylang.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/polylang.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/plugin/polylang.3.7.4.zip", "trunk": "https://downloads.wordpress.org/plugin/polylang.zip", "0.8.10": "https://downloads.wordpress.org/plugin/polylang.0.8.10.zip", "1.7.10": "https://downloads.wordpress.org/plugin/polylang.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/plugin/polylang.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/plugin/polylang.1.7.12.zip", "2.0.10": "https://downloads.wordpress.org/plugin/polylang.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/polylang.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/polylang.2.0.12.zip", "2.3.10": "https://downloads.wordpress.org/plugin/polylang.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/plugin/polylang.2.3.11.zip", "2.6.10": "https://downloads.wordpress.org/plugin/polylang.2.6.10.zip", "2.7.0.1": "https://downloads.wordpress.org/plugin/polylang.2.7.0.1.zip"}, "downloaded": 23942524, "description": "

    With Polylang fully integrated to WordPress and using only its built-in core features (taxonomies), keep steady performances on your site and create a multilingual site featuring from just one extra language to 10 or more depending on your needs. There is no limit in the number of languages added and WordPress’ language packs are automatically downloaded when ready.

    \n

    Features

    \n

    Depending on the type of site you have built or are planning to build, a combination of plugins from the list below might be of interest.
    \nAll plugins include a wizard allowing to setup them in just a few clicks.

    \n

    Polylang

    \n

    Polylang and Polylang Pro share the same core providing features such as:

    \n
      \n
    • Translating posts, pages, media, categories, post tags, custom post types and taxonomies, RSS feeds; RTL scripts are supported.
    • \n
    • The language is either set by the language code in URL, or you can use a different sub-domain or domain per language.
    • \n
    • Automatic copy of categories, post tags and other metas when creating a new post or page translation.
    • \n
    • Translating classic menus and classic widgets. Also accessible with Site Editor Classic Features in block themes.
    • \n
    • Customizable language switcher available as a classic widget or a classic navigation menu item.
    • \n
    • Compatibility with Yoast SEO.
    • \n
    \n

    Polylang Pro

    \n

    Helps optimizing the time spent translating your site with some very useful extra features such as:

    \n
      \n
    • Better integration in the new Block Editor.
    • \n
    • Language switcher available as a block.
    • \n
    • Language options available in the widget block editor.
    • \n
    • Template parts translatable in the site editor (FSE).
    • \n
    • Duplicate and/or synchronize content across post translations.
    • \n
    • Improved compatibility with other plugins such as ACF Pro.
    • \n
    • Share the same URL slug for posts or terms across languages.
    • \n
    • Translate URL slugs for categories, author bases, custom post types and more…
    • \n
    • Machine translation with DeepL.
    • \n
    • Export and import of content in XLIFF format for outsourced professional translation.
    • \n
    • Access to a Premium Support for personalized assistance.
    • \n
    \n

    Polylang for WooCommerce

    \n

    Add-on for the compatibility with WooCommerce which provides features such as:

    \n
      \n
    • Translating WooCommerce pages (shop, check-out, cart, my account), product categories and global attribute terms directly in the WooCommerce interface.
    • \n
    • Translating WooCommerce e-mails and sending them to customers in their language.
    • \n
    • Products metadata synchronization.
    • \n
    • Compatibility with the native WooCommerce CSV import & export tool.
    • \n
    • Compatibility with popular plugins such as WooCommerce Subscriptions, Product Bundles, WooCommerce Bookings, Shipment Tracking and more.
    • \n
    • Ability to use the WooCommerce REST API (available with Polylang Pro).
    • \n
    • Access to a Premium Support for personalized assistance.
    • \n
    \n

    Our other free plugins

    \n\n

    Credits

    \n

    Thanks a lot to all translators who help translating Polylang.
    \nThanks a lot to Alex Lopez for the design of the logo.
    \nMost of the flags included with Polylang are coming from famfamfam and are public domain.
    \nWherever third party code has been used, credit has been given in the code’s comments.

    \n", "donate_link": "https://polylang.pro", "num_ratings": 2862, "screenshots": {"1": {"src": "https://ps.w.org/polylang/assets/screenshot-1.png?rev=2112857", "caption": "The Polylang languages admin panel"}, "2": {"src": "https://ps.w.org/polylang/assets/screenshot-2.png?rev=2112857", "caption": "The Strings translations admin panel"}, "3": {"src": "https://ps.w.org/polylang/assets/screenshot-3.png?rev=2112857", "caption": "Multilingual media library"}, "4": {"src": "https://ps.w.org/polylang/assets/screenshot-4.png?rev=2112857", "caption": "The Edit Post screen with the Languages metabox"}}, "support_url": "https://wordpress.org/support/plugin/polylang/", "contributors": {"hugod": {"avatar": "https://secure.gravatar.com/avatar/556f6768aac8ac41c10bbd94e13fc8138dff1cbe93a7d01a4bcc5d0849ab4fca?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hugod/", "display_name": "hugod"}, "chouby": {"avatar": "https://secure.gravatar.com/avatar/c19c76940ef74dd439615510fff31c11e2d8705d1ac7670751f977fbc6039013?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/chouby/", "display_name": "Chouby"}, "greglone": {"avatar": "https://secure.gravatar.com/avatar/3d25b0c1eb9fcced32d65850b410cb6e79c3f4da5e1d1384a748f4f875a5c1a9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/greglone/", "display_name": "Grégory Viguier"}, "manooweb": {"avatar": "https://secure.gravatar.com/avatar/22c1d1e3a0b0a0152de2a83803bda81e9ce31822e7e55af8f538d9e9849a62b6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/manooweb/", "display_name": "Emmanuel Hesry"}, "raaaahman": {"avatar": "https://secure.gravatar.com/avatar/a428d9aac98a5dc55c6a3e26fa726d06bd08300a9107f1a233d5eb6bf6663e04?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/raaaahman/", "display_name": "Sylvain Schellenberger"}, "marianne38": {"avatar": "https://secure.gravatar.com/avatar/f29207ae437a1a8c8edf4533897c1e806d9a3683ee15036257daeb2f6b6cc76a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/marianne38/", "display_name": "Marianne"}, "sebastienserre": {"avatar": "https://secure.gravatar.com/avatar/93b9a9f3752143c427cca75c28708b41b9943f3a2d82ffedaa90f14a2d6f1a18?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sebastienserre/", "display_name": "Sébastien SERRE"}}, "last_updated": "2025-10-28 5:16pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/polylang.3.7.4.zip", "author_profile": "https://profiles.wordpress.org/chouby/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-f87a-737d-aacc-0a2ec37f451f", "name": "Polylang", "slug": "polylang", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761671760, "version": "3.7.4"}, "support_threads": 25, "requires_plugins": [], "short_description": "Go multilingual in a simple and efficient way. Keep writing posts and taxonomy terms as usual while defining their languages all at once.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 8}'); -INSERT INTO public.plugins VALUES ('019a30c1-666a-7033-bbeb-44bdd0336191', 'popup-maker', 'Popup Maker – Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popups Builder', 'Want to boost sales & marketing efforts? Use your favorite forms & builder. Unlimited popups & impressions, keep your data, no monthly subscription.', '

    📈 Drive More Sales, Leads & Email List Opt-Ins Using Popup Maker

    -

    Popup Maker™, rated as the best WordPress popup plugin by our community of 780,000+ users, empowers you to create stunning popups, modals, and overlays in minutes. Whether you’re a beginner or a pro, our versatile toolkit makes it easy to boost your WordPress site’s engagement.

    -

    Transform your WordPress site into a conversion powerhouse! Create targeted campaigns using popups, exit-intent forms, slide-ins, and smart banners to skyrocket your revenue and build your email list faster than ever.

    -
    -

    We switched to Popup Maker for our popups and couldn’t be happier.

    -

    “We recommend it to all our clients too. Popup Maker is an essential piece of our website for maximizing growing our email list, increasing sales conversions, and guiding users with strategic calls to action. Great support too.”

    -

    ~ Chris Badgett, LifterLMS CEO

    -
    -

    🔥 Ready to get started?

    -

    👉 Visit Our Website – Explore all features & pricing
    -👉 Join Our Conversion Optimization Community – Share strategies & learn from experts
    -👉 Read Our Guides – Learn popup best practices
    -👉 Get Help – World-class support when you need it

    -

    🎬 See What’s Possible with Popup Maker

    -

    -

    Stunning examples of what you can create in Popup Maker (View Video)

    -

    🛠️ Ultimate WordPress Popup Builder: Every Type of Conversion Popup at Your Fingertips

    -

    With Popup Maker, you have the ultimate popup builder toolkit at your disposal, create any type of popup in minutes:

    - -
    -

    Even the free version is great
    - “Does exactly what it says and is easy to use. Free version allows full control of where popup appears, how it looks and setting conditions for popup reappearing across website.”
    - ~@rsb1234

    -
    -

    🔑 Trigger Popups with Ease: Multiple Ways to Open Your Popups

    -

    Popup Maker offers a variety of triggers to open your popups:

    -
      -
    • Open automatically (with optional delay)
    • -
    • Click button (or any other element) to open
    • -
    • Form submission (open a popup when a form is submitted)
    • -
    • Open when someone is about to leave your site (requires premium Exit Intent feature)
    • -
    • Open when someone has scrolled down your page (requires premium Scroll Trigger feature)
    • -
    -

    🎯 Smart Popup Targeting: Deliver the Perfect Message to Every Visitor

    -

    Never show irrelevant popups again! Our powerful targeting system ensures your messages reach exactly who needs to see them, when they need to see them. From basic page targeting to advanced user behavior conditions, you have complete control over your popup’s visibility.

    -

    Free Targeting Options:

    -
      -
    • Target specific posts, pages, or custom post types
    • -
    • Target by post categories or tags, & custom taxonomies
    • -
    • Front page vs blog page targeting
    • -
    -

    Premium Targeting Features:

    -
      -
    • Advanced user behavior targeting
    • -
    • Show on specific URLs or URL patterns
    • -
    • Show/hide based on user roles
    • -
    • Geolocation targeting
    • -
    • Browser & OS targeting
    • -
    • Time & date scheduling
    • -
    • Page scroll depth targeting
    • -
    • User login status
    • -
    • Previous popup interactions
    • -
    • Ecommerce purchasing & cart rules
    • -
    • Advanced custom taxonomy targeting
    • -
    • Referrer source targeting
    • -
    -

    🔑 Integrate with Your Favorite Form Plugins

    -

    Popup Maker integrates with all of the most popular form plugins to allow you to open a popup when a form is submitted or close the popup when a form inside the popup is submitted. Popup Maker integrates with:

    -

    Form Plugin Integrations:

    -
      -
    • Ninja Forms
    • -
    • Gravity Forms
    • -
    • Contact Form 7 (CF7)
    • -
    • WPForms
    • -
    • WSForm
    • -
    • Fluent Forms
    • -
    • Mailchimp for WordPress (MC4WP)
    • -
    • Formidable Forms
    • -
    • and more!
    • -
    -

    Email Marketing & CRM Integrations:

    -

    Already created a form in your email marketing service? Using our free version, you can copy and paste any form created by most list building platforms, including but not limited to:

    -
      -
    • MailChimp
    • -
    • AWeber
    • -
    • InfusionSoft
    • -
    • GetResponse
    • -
    • Convertkit
    • -
    • Constant Contact
    • -
    • Mail Poet
    • -
    • Mad Mimi
    • -
    • FluentCRM
    • -
    • Hubspot
    • -
    • Emma
    • -
    • and more!
    • -
    -

    ⚙️ Advanced Popup Controls: Customize Every Aspect of Your Popups

    -

    Take complete control of your popups with our powerful customization features:

    -
      -
    • Visual Popup Editor – Design beautiful popups with our intuitive drag & drop editor. Control sizing, positioning, animations, and more
    • -
    • Smart Display Rules – Set cookie-based display frequency to prevent popup fatigue and improve user experience
    • -
    • Custom Animations – Choose from slide, fade, and other engaging entrance/exit animations
    • -
    • Mobile-First Design – Every popup is fully responsive and looks great on all devices
    • -
    • Custom Positioning – Place your popups exactly where you want them – centered, corners, or custom positions
    • -
    • Cookie Controls – Fine-tune when and how often visitors see your popups with advanced cookie settings
    • -
    -

    👍 Trusted by many people just like you!

    -

    Popup Maker is used on over 780,000 websites and has received over 4,200 5-star reviews just like this one:

    -
    -

    Great plugin, everything I needed
    - “Really nice plugin, simple to use, responsive, a good catch !” ~@lemmmy

    -
    -

    🛠️ Enhance Your WordPress Popups Using Our Premium Features

    -

    Need even more features? Popup Maker has over 20 premium features to supercharge your conversion rates:

    -
      -
    • Exit Intent – Catch abandoning visitors before they leave with perfectly timed offers
    • -
    • Popup Analytics – Track views, conversions, and optimize your popup performance with detailed insights
    • -
    • Advanced Targeting Conditions – Show popups based on user behavior, referral source, geolocation, and more
    • -
    • Forced Interaction – Ensure critical messages are seen with popups that require acknowledgment
    • -
    • Scheduling – Display time-sensitive offers and content automatically at the perfect moment
    • -
    • And many more premium features to help you maximize conversions!
    • -
    -

    🤝 Join Our Growing Community

    -

    We believe in making Popup Maker better together! Here’s how you can get involved:

    - -

    Created by Code Atlantic

    -

    Popup Maker is built by the Code Atlantic team. We create high-quality WordPress plugins that help you grow.

    -

    Check out some of our most popular plugins:

    - -', '1.21.5', 'Daniel Iser', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/popup-maker.1.21.5.zip', '2014-11-17 00:00:00+00', '2025-10-13 17:38:00+00', 'https://profiles.wordpress.org/danieliser/', 98, 4494, 20, 14, 700000, 19395898, 'https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=plugin-uri', NULL, 'commercial', 'https://wppopupmaker.com/support/', 'https://wordpress.org/support/plugin/popup-maker/', 'https://wordpress.org/plugins/popup-maker/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Popup Maker – Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popups Builder", "slug": "popup-maker", "tags": {"optin": "Optin", "popup": "popup", "popups": "popups", "marketing": "marketing", "conversion": "conversion"}, "added": "2014-11-17", "icons": {"1x": "https://ps.w.org/popup-maker/assets/icon-128x128.gif?rev=3097653", "2x": "https://ps.w.org/popup-maker/assets/icon-256x256.gif?rev=3097653"}, "author": "Daniel Iser", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/popup-maker/assets/banner-772x250.png?rev=3092398", "high": "https://ps.w.org/popup-maker/assets/banner-1544x500.png?rev=3092398"}, "ratings": {"1": 54, "2": 21, "3": 17, "4": 133, "5": 4269}, "version": "1.21.5", "homepage": "https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=plugin-uri", "requires": "6.6", "sections": {"faq": "\n
    \nWhat are some ways I can use popups to grow my email list?\n\n

    \n

    People who use Popup Maker to grow their email list have found many creative ways to do so. Some of the most common popups include:

    \n
      \n
    • Exit-intent popups – Asking for an opt-in when someone goes to leave your site, sometimes for a discount or PDF
    • \n
    • Content upgrade popups – Provide more value from your blog posts by giving visitors more resources in exchange for their email address within an optin popup
    • \n
    • White paper popups – Provide industry reports or other white papers using forms within a popup
    • \n
    \n

    Even better, Popup Maker integrates with all the most popular form plugins so you can easily embed a form you have already created right into your popups!

    \n

    \n
    \nWhat are some ways popups can increase my WooCommerce store’s sales and revenues?\n\n

    \n

    Many people don’t consider popups when trying to find ways to increase conversion rates and revenue on their WooCommerce site but they are actually very effective.

    \n

    Some popups we have seen work well for ecommerce sites include:

    \n
      \n
    • Cross-sell popups – recommending a companion product when viewing or adding a product to their cart
    • \n
    • Upsell popups – recommending a higher-tier product when viewing or adding a product to their cart
    • \n
    • Cart abandonment popups – offering discounts or support when someone is about to leave the checkout page
    • \n
    \n

    \n
    \nWhere is your documentation?\n\n

    \n

    You can find our documentation over on our docs site

    \n

    \n
    \nHow do I open a popup?\n\n

    \n

    Using “triggers”, you can customize what makes each popup open. Review our triggers documentation here

    \n

    \n
    \nHow do I stop popups from opening repeatedly?\n\n

    \n

    Using “cookies”, you can set up how long until the popup opens again, if ever. Review our cookies documentation

    \n

    \n
    \nWhat do I do if I want a popup to show only on a certain page/post/etc?\n\n

    \n

    Using “conditions”, you can specify where the popup will be shown. Check out our conditions documentation

    \n

    \n
    \nWhy aren’t my popups opening/working?\n\n

    \n

    There are several common causes for this, check this guide for help resolving it.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I love it

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy krassza on October 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use, customizable, great program.

    \n\n\n\n

    I highly recommend it, five stars, but more like six!

    \n\n\n\n

    Thank you to the developers for their work!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Krzysztof (autori76) on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hi. It seems to be doing its job. I am happy with it. Thanks :-)

    \n\n\n\n

    Popup Maker

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Almost perfect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Przemek (destroy666) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very good plugin, with almost everything you could desire in its free version, even Gutenberg support. The only flaw I found is that the popup offset configuration is not great for responsive purposes - e.g. 80 pixels from the top are quite different on laptop and mobile. It should at least support different kind of units, e.g. vh.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy TrungLun0112 (trunglun0112) on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is the best plugin among all the ones I’ve used.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy duffy1721 on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A really simple to use easy brilliant plugin

    \n\n\n\n

    Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    lightweight and great popup plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shayt on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been using Popup Maker and I’m really happy with it.
    It’s very lightweight, easy to use, and backed by good support.

    \n\n\n\n

    It’s not perfect — I did need to add some custom code to get it working smoothly with Uncanny Automator — but overall, I’m very pleased with the plugin. If you’re looking for a simple and effective popup solution, I definitely recommend it. ✅

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pandusetiawan on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good plugin. It easy to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Annoying IMPOSIBLE to remove dashboard notifications

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Samuel.Stroh (dis.soska.arki) on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ..

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No Exit Intent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ascottme on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    One star for advertising Exit Intent included, when it requires a paid extension.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin update crashed my site

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy wendymerritt on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is my review of the plugin - not a problem report or tech support request. This plugin crashed my site on the last update. After several hours from a support person it was back up and running. When it works - it''s great. I guess it was just a failed update and for this reason it is a 4 star review.

    \n
    \n
    \n", "changelog": "

    For the latest updates and release information:

    \n\n

    1.21.5 – 2025-10-13

    \n

    Improvements

    \n
      \n
    • Optimized Google Fonts integration by eliminating database transients and API calls in favor of direct JSON loading with in-memory caching. This resolves reported database crashes from large font data and improves performance by 83% (file size reduced from 1.5MB to 255KB) while eliminating all database overhead.
    • \n
    \n

    Fixes

    \n
      \n
    • Fixed accessibility tab trapping JavaScript error “trigger is not a function” when using keyboard navigation in popups.
    • \n
    • Fixed potential error when get_current_screen() is not available.
    • \n
    \n

    1.21.4 – 2025-09-25

    \n

    Improvements

    \n
      \n
    • Prevented misleading “Lite” messaging when extensions are active. Extension functionality will continue to work as expected.
    • \n
    \n

    Fixes

    \n
      \n
    • Fixed Editor role users not being able to edit popups and themes, changing default permissions from manage_options to edit_others_posts.
    • \n
    • Fixed issue with conditions not working properly when advanced cookie rules were enabled in Advanced Targeting.
    • \n
    • Fixed popup titles being cleared when editing popups.
    • \n
    \n

    Developers

    \n
      \n
    • Added popup_maker/permissions filter to allow customization of user permissions for Popup Maker functionality.
    • \n
    \n

    1.21.3 – 2025-09-21

    \n

    Fixes

    \n
      \n
    • Fixed page builder compatibility issues by reverting popup preloading timing to wp_enqueue_scripts:11 (matching v1.20.6 behavior).
    • \n
    • Fixed delayed initialization of $.fn.popmake.triggers object for proper backward compatibility with legacy extensions.
    • \n
    • Fixed prevent popup init console notice when Debug Mode is not enabled.
    • \n
    \n

    1.21.2 – 2025-09-18

    \n

    Fixes

    \n
      \n
    • Fixed Beaver Builder compatibility issue that appeared in v1.21.0, special thanks to @robbymccullough at Beaver Buidler for the assist
    • \n
    • Fixed PHP warning “Undefined property: stdClass::$post_content” in Assets.php when post object lacks post_content property.
    • \n
    • Fixed Restore missing initialization of $.fn.popmake.conditions object for backward compatibility You with legacy extensions.
    • \n
    \n

    1.21.1 – 2025-09-16

    \n

    Fixes

    \n
      \n
    • PHP 7.4 errors due to strict function return types with union types that are not supported.
    • \n
    • Ensure bundled scripts & styles dependencies are properly loaded.
    • \n
    \n

    1.21.0 – 2025-09-15

    \n

    This update begins the process of modernizing our codebase while polishing existing stuff & adding new features.

    \n

    Minimum Requirements Change

    \n
      \n
    • PHP: 7.4+
    • \n
    • WordPress: 6.6+
    • \n
    \n

    Features

    \n
      \n
    • Trackable Call to Actions\n
        \n
      • Create as many as you need.
      • \n
      • Track results, per link & per popup.
      • \n
      • Redirect to any page or url.
      • \n
      • Call To Action Button blocks for gutenberg to easily insert trackable links with style.
      • \n
      • CTA Shortcode to insert them without Gutenberg.
      • \n
      • Works with premium Popup Analytics.
      • \n
      • Upgrade to Popup Maker Pro or Pro+ to use them outside popups, for quick import/export, or to create WooCommerce add to cart & apply discount buttons.
      • \n
      \n
    • \n
    • Conversion tracking for all internal popup links enabling better analysis of popup performance and user engagement.
    • \n
    • New On Conversion cookie event to disable popups once they convert.
    • \n
    • New Bricks Builder form integration for conversion tracking, form based cookies, closing popups after submission, and more.
    • \n
    \n

    Security

    \n
      \n
    • Minor:Removed Easy Modal v2 [modal] shortcode compatibility mode as it has been deprecated for a long and was recently reported to include an unescaped title output.
    • \n
    \n

    Improvements

    \n
      \n
    • Refactored core analytics to prevent duplicate conversion tracking when Pro is active.
    • \n
    • Block editor is now the default for new popups, replacing the previous opt-in beta approach for a more streamlined editing experience.\n
        \n
      • Added “Use Classic Editor” setting for users who prefer the traditional popup editor interface.
      • \n
      • Existing users who previously disabled the block editor will see a one-time migration notice with options to continue using the block editor or switch to classic.
      • \n
      • Updated new user onboarding to include guidance about the classic editor option for users who prefer the traditional interface.
      • \n
      \n
    • \n
    • Optimized popup open functions to improve browser animation reliability and consistent user experience. This update aims to eliminate visual inconsistencies and resolve issues where popups occasionally failed to display.
    • \n
    • Fixed settings page save notifications that previously only appeared after redirects, now displays success notice on all settings saves.
    • \n
    • Added plugin settings shortcut to the admin toolbar menu.
    • \n
    • Updated CSS selector generation tool with click-to-copy and improved selectors.
    • \n
    • Better grouping of Popup Maker extensions in the Plugins page.
    • \n
    • Updated build processes to rely on @wordpress/scripts & Webpack, as well as improved developer tooling. This should result in smaller JS & CSS file sizes, more reliable builds, and faster development cycles.
    • \n
    • Updated all branding to use SVGs and new marks/logos.
    • \n
    • Improve reliability of admin notice dismissals.
    • \n
    • Use navigator.sendBeacon when available for more reliable analytics.
    • \n
    • Better handling of version changes & migration processing during plugin updates.
    • \n
    • Added ability to search multiple post types in postselect fields.
    • \n
    • Added ability to search multiple taxonomies in taxonomyselect fields.
    • \n
    • Added validation for hex color conversion to prevent deprecated notices.
    • \n
    \n

    Fixes

    \n
      \n
    • Fixed multicheck fields not properly saving when all options were unchecked, preventing users from clearing all selections in settings like analytics reporting permissions.
    • \n
    • Close on overlay click & Close on ESC press stopped working if 2 popups were open and one closed.
    • \n
    • Potential error due to post object missing a post type.
    • \n
    • Prevent missing options data in DB from throwing errors on PHP 8.3+.
    • \n
    • Prevent error when Gravity Forms settings are not set.
    • \n
    \n

    Developers

    \n
      \n
    • Optimized plugin loading & activation mechanisms.
    • \n
    • First stage of modernizing & reorganizing to use PHP namespaces & other PHP 7.4 optimizations.
    • \n
    • Updating frontend JavaScript to use hooks/filters system instead of global variables over time.\n
        \n
      • Added new JS popupMaker.triggers filter to allow adding custom triggers.
      • \n
      \n
    • \n
    • Added new helper methods for registering Popup Maker custom scripts & styles that will be bundled with our plugin JS/CSS files automatically via AssetCache API.
    • \n
    • Lots of WPCS & TypeScript/PHP Type enforcement fixes.
    • \n
    \n

    1.20.6 – 2025-08-14

    \n
      \n
    • Fix: WordPress 4.9 compatibility by checking has_blocks() function existence before calling it.
    • \n
    • Fix: WordPress 4.9 compatibility by checking wp_date() function existence before calling it.
    • \n
    \n

    1.20.5 – 2025-05-30

    \n
      \n
    • Security: Fix potential XSS for custom HTML based popups.
    • \n
    \n

    1.20.4 – 2025-01-29

    \n
      \n
    • Tweak: Updated documentation links to use new docs site.
    • \n
    • Fix: Popup title aria-labelledby attribute was being double-quoted. Thanks to the Equalize Digital team.
    • \n
    \n", "description": "

    📈 Drive More Sales, Leads & Email List Opt-Ins Using Popup Maker

    \n

    Popup Maker™, rated as the best WordPress popup plugin by our community of 780,000+ users, empowers you to create stunning popups, modals, and overlays in minutes. Whether you’re a beginner or a pro, our versatile toolkit makes it easy to boost your WordPress site’s engagement.

    \n

    Transform your WordPress site into a conversion powerhouse! Create targeted campaigns using popups, exit-intent forms, slide-ins, and smart banners to skyrocket your revenue and build your email list faster than ever.

    \n
    \n

    We switched to Popup Maker for our popups and couldn’t be happier.

    \n

    “We recommend it to all our clients too. Popup Maker is an essential piece of our website for maximizing growing our email list, increasing sales conversions, and guiding users with strategic calls to action. Great support too.”

    \n

    ~ Chris Badgett, LifterLMS CEO

    \n
    \n

    🔥 Ready to get started?

    \n

    👉 Visit Our Website – Explore all features & pricing
    \n👉 Join Our Conversion Optimization Community – Share strategies & learn from experts
    \n👉 Read Our Guides – Learn popup best practices
    \n👉 Get Help – World-class support when you need it

    \n

    🎬 See What’s Possible with Popup Maker

    \n

    \n

    Stunning examples of what you can create in Popup Maker (View Video)

    \n

    🛠️ Ultimate WordPress Popup Builder: Every Type of Conversion Popup at Your Fingertips

    \n

    With Popup Maker, you have the ultimate popup builder toolkit at your disposal, create any type of popup in minutes:

    \n\n
    \n

    Even the free version is great
    \n “Does exactly what it says and is easy to use. Free version allows full control of where popup appears, how it looks and setting conditions for popup reappearing across website.”
    \n ~@rsb1234

    \n
    \n

    🔑 Trigger Popups with Ease: Multiple Ways to Open Your Popups

    \n

    Popup Maker offers a variety of triggers to open your popups:

    \n
      \n
    • Open automatically (with optional delay)
    • \n
    • Click button (or any other element) to open
    • \n
    • Form submission (open a popup when a form is submitted)
    • \n
    • Open when someone is about to leave your site (requires premium Exit Intent feature)
    • \n
    • Open when someone has scrolled down your page (requires premium Scroll Trigger feature)
    • \n
    \n

    🎯 Smart Popup Targeting: Deliver the Perfect Message to Every Visitor

    \n

    Never show irrelevant popups again! Our powerful targeting system ensures your messages reach exactly who needs to see them, when they need to see them. From basic page targeting to advanced user behavior conditions, you have complete control over your popup’s visibility.

    \n

    Free Targeting Options:

    \n
      \n
    • Target specific posts, pages, or custom post types
    • \n
    • Target by post categories or tags, & custom taxonomies
    • \n
    • Front page vs blog page targeting
    • \n
    \n

    Premium Targeting Features:

    \n
      \n
    • Advanced user behavior targeting
    • \n
    • Show on specific URLs or URL patterns
    • \n
    • Show/hide based on user roles
    • \n
    • Geolocation targeting
    • \n
    • Browser & OS targeting
    • \n
    • Time & date scheduling
    • \n
    • Page scroll depth targeting
    • \n
    • User login status
    • \n
    • Previous popup interactions
    • \n
    • Ecommerce purchasing & cart rules
    • \n
    • Advanced custom taxonomy targeting
    • \n
    • Referrer source targeting
    • \n
    \n

    🔑 Integrate with Your Favorite Form Plugins

    \n

    Popup Maker integrates with all of the most popular form plugins to allow you to open a popup when a form is submitted or close the popup when a form inside the popup is submitted. Popup Maker integrates with:

    \n

    Form Plugin Integrations:

    \n
      \n
    • Ninja Forms
    • \n
    • Gravity Forms
    • \n
    • Contact Form 7 (CF7)
    • \n
    • WPForms
    • \n
    • WSForm
    • \n
    • Fluent Forms
    • \n
    • Mailchimp for WordPress (MC4WP)
    • \n
    • Formidable Forms
    • \n
    • and more!
    • \n
    \n

    Email Marketing & CRM Integrations:

    \n

    Already created a form in your email marketing service? Using our free version, you can copy and paste any form created by most list building platforms, including but not limited to:

    \n
      \n
    • MailChimp
    • \n
    • AWeber
    • \n
    • InfusionSoft
    • \n
    • GetResponse
    • \n
    • Convertkit
    • \n
    • Constant Contact
    • \n
    • Mail Poet
    • \n
    • Mad Mimi
    • \n
    • FluentCRM
    • \n
    • Hubspot
    • \n
    • Emma
    • \n
    • and more!
    • \n
    \n

    ⚙️ Advanced Popup Controls: Customize Every Aspect of Your Popups

    \n

    Take complete control of your popups with our powerful customization features:

    \n
      \n
    • Visual Popup Editor – Design beautiful popups with our intuitive drag & drop editor. Control sizing, positioning, animations, and more
    • \n
    • Smart Display Rules – Set cookie-based display frequency to prevent popup fatigue and improve user experience
    • \n
    • Custom Animations – Choose from slide, fade, and other engaging entrance/exit animations
    • \n
    • Mobile-First Design – Every popup is fully responsive and looks great on all devices
    • \n
    • Custom Positioning – Place your popups exactly where you want them – centered, corners, or custom positions
    • \n
    • Cookie Controls – Fine-tune when and how often visitors see your popups with advanced cookie settings
    • \n
    \n

    👍 Trusted by many people just like you!

    \n

    Popup Maker is used on over 780,000 websites and has received over 4,200 5-star reviews just like this one:

    \n
    \n

    Great plugin, everything I needed
    \n “Really nice plugin, simple to use, responsive, a good catch !” ~@lemmmy

    \n
    \n

    🛠️ Enhance Your WordPress Popups Using Our Premium Features

    \n

    Need even more features? Popup Maker has over 20 premium features to supercharge your conversion rates:

    \n
      \n
    • Exit Intent – Catch abandoning visitors before they leave with perfectly timed offers
    • \n
    • Popup Analytics – Track views, conversions, and optimize your popup performance with detailed insights
    • \n
    • Advanced Targeting Conditions – Show popups based on user behavior, referral source, geolocation, and more
    • \n
    • Forced Interaction – Ensure critical messages are seen with popups that require acknowledgment
    • \n
    • Scheduling – Display time-sensitive offers and content automatically at the perfect moment
    • \n
    • And many more premium features to help you maximize conversions!
    • \n
    \n

    🤝 Join Our Growing Community

    \n

    We believe in making Popup Maker better together! Here’s how you can get involved:

    \n\n

    Created by Code Atlantic

    \n

    Popup Maker is built by the Code Atlantic team. We create high-quality WordPress plugins that help you grow.

    \n

    Check out some of our most popular plugins:

    \n\n", "screenshots": "
    1. \"Example

      Example popup using our built-in Ninja Forms integration

    2. \"Example

      Example popup

    3. \"Example

      Example popup using our WooCommerce extension to make a popup appear when a product is added to their cart.

    4. \"Create

      Create and edit an infinite number of unique popups to get any job done.

    5. \"Use

      Use our popup editor to customize every facet of your popup completely.

    6. \"Add

      Add triggers to your popups to determine what causes it to open. Our free triggers include: Click Open and Auto Open.

    7. \"Choose

      Choose from many conditions to target exactly who will (and will not) see your popups.

    8. \"Prevent

      Prevent your popups from being annoying to users by using cookies to disable them once they have been viewed.

    9. \"Create

      Create and edit an unlimited number of popup themes for every situation.

    10. \"Use

      Use the theme editor to choose from over 60 options and theme every element of your popup: Background Overlay, Popup Container, Close Button, Google Fonts, and much more.

    "}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/popup-maker.1.0.zip", "1.2": "https://downloads.wordpress.org/plugin/popup-maker.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/popup-maker.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/popup-maker.1.4.zip", "1.0.1": "https://downloads.wordpress.org/plugin/popup-maker.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/popup-maker.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/popup-maker.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/popup-maker.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/popup-maker.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/popup-maker.1.0.6.zip", "1.1.0": "https://downloads.wordpress.org/plugin/popup-maker.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/popup-maker.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/popup-maker.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/popup-maker.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/popup-maker.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/popup-maker.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/popup-maker.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/plugin/popup-maker.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/plugin/popup-maker.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/plugin/popup-maker.1.1.9.zip", "1.2.1": "https://downloads.wordpress.org/plugin/popup-maker.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/popup-maker.1.2.2.zip", "1.3.1": "https://downloads.wordpress.org/plugin/popup-maker.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/popup-maker.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/popup-maker.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/popup-maker.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/popup-maker.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/popup-maker.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/popup-maker.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/popup-maker.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/popup-maker.1.3.9.zip", "1.4.1": "https://downloads.wordpress.org/plugin/popup-maker.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/popup-maker.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/popup-maker.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/popup-maker.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/popup-maker.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/popup-maker.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/popup-maker.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/popup-maker.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/popup-maker.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/plugin/popup-maker.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/popup-maker.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/popup-maker.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/popup-maker.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/popup-maker.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/popup-maker.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/popup-maker.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/popup-maker.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/popup-maker.1.5.8.zip", "1.6.0": "https://downloads.wordpress.org/plugin/popup-maker.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/popup-maker.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/popup-maker.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/popup-maker.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/popup-maker.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/popup-maker.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/popup-maker.1.6.6.zip", "1.7.0": "https://downloads.wordpress.org/plugin/popup-maker.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/popup-maker.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/popup-maker.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/popup-maker.1.7.3.zip", "1.7.5": "https://downloads.wordpress.org/plugin/popup-maker.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/popup-maker.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/popup-maker.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/popup-maker.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/popup-maker.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/plugin/popup-maker.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/popup-maker.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/popup-maker.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/popup-maker.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/popup-maker.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/popup-maker.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/plugin/popup-maker.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/plugin/popup-maker.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/plugin/popup-maker.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/plugin/popup-maker.1.8.9.zip", "1.9.0": "https://downloads.wordpress.org/plugin/popup-maker.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/popup-maker.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/popup-maker.1.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/popup-maker.zip", "1.1.10": "https://downloads.wordpress.org/plugin/popup-maker.1.1.10.zip", "1.10.0": "https://downloads.wordpress.org/plugin/popup-maker.1.10.0.zip", "1.10.1": "https://downloads.wordpress.org/plugin/popup-maker.1.10.1.zip", "1.10.2": "https://downloads.wordpress.org/plugin/popup-maker.1.10.2.zip", "1.11.0": "https://downloads.wordpress.org/plugin/popup-maker.1.11.0.zip", "1.11.1": "https://downloads.wordpress.org/plugin/popup-maker.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/plugin/popup-maker.1.11.2.zip", "1.12.0": "https://downloads.wordpress.org/plugin/popup-maker.1.12.0.zip", "1.13.0": "https://downloads.wordpress.org/plugin/popup-maker.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/popup-maker.1.13.1.zip", "1.14.0": "https://downloads.wordpress.org/plugin/popup-maker.1.14.0.zip", "1.15.0": "https://downloads.wordpress.org/plugin/popup-maker.1.15.0.zip", "1.16.0": "https://downloads.wordpress.org/plugin/popup-maker.1.16.0.zip", "1.16.1": "https://downloads.wordpress.org/plugin/popup-maker.1.16.1.zip", "1.16.2": "https://downloads.wordpress.org/plugin/popup-maker.1.16.2.zip", "1.16.3": "https://downloads.wordpress.org/plugin/popup-maker.1.16.3.zip", "1.16.4": "https://downloads.wordpress.org/plugin/popup-maker.1.16.4.zip", "1.16.5": "https://downloads.wordpress.org/plugin/popup-maker.1.16.5.zip", "1.16.7": "https://downloads.wordpress.org/plugin/popup-maker.1.16.7.zip", "1.16.8": "https://downloads.wordpress.org/plugin/popup-maker.1.16.8.zip", "1.16.9": "https://downloads.wordpress.org/plugin/popup-maker.1.16.9.zip", "1.17.0": "https://downloads.wordpress.org/plugin/popup-maker.1.17.0.zip", "1.17.1": "https://downloads.wordpress.org/plugin/popup-maker.1.17.1.zip", "1.18.0": "https://downloads.wordpress.org/plugin/popup-maker.1.18.0.zip", "1.18.1": "https://downloads.wordpress.org/plugin/popup-maker.1.18.1.zip", "1.18.2": "https://downloads.wordpress.org/plugin/popup-maker.1.18.2.zip", "1.18.3": "https://downloads.wordpress.org/plugin/popup-maker.1.18.3.zip", "1.18.4": "https://downloads.wordpress.org/plugin/popup-maker.1.18.4.zip", "1.18.5": "https://downloads.wordpress.org/plugin/popup-maker.1.18.5.zip", "1.19.0": "https://downloads.wordpress.org/plugin/popup-maker.1.19.0.zip", "1.19.1": "https://downloads.wordpress.org/plugin/popup-maker.1.19.1.zip", "1.19.2": "https://downloads.wordpress.org/plugin/popup-maker.1.19.2.zip", "1.20.0": "https://downloads.wordpress.org/plugin/popup-maker.1.20.0.zip", "1.20.1": "https://downloads.wordpress.org/plugin/popup-maker.1.20.1.zip", "1.20.2": "https://downloads.wordpress.org/plugin/popup-maker.1.20.2.zip", "1.20.3": "https://downloads.wordpress.org/plugin/popup-maker.1.20.3.zip", "1.20.4": "https://downloads.wordpress.org/plugin/popup-maker.1.20.4.zip", "1.20.5": "https://downloads.wordpress.org/plugin/popup-maker.1.20.5.zip", "1.20.6": "https://downloads.wordpress.org/plugin/popup-maker.1.20.6.zip", "1.21.0": "https://downloads.wordpress.org/plugin/popup-maker.1.21.0.zip", "1.21.1": "https://downloads.wordpress.org/plugin/popup-maker.1.21.1.zip", "1.21.2": "https://downloads.wordpress.org/plugin/popup-maker.1.21.2.zip", "1.21.3": "https://downloads.wordpress.org/plugin/popup-maker.1.21.3.zip", "1.21.4": "https://downloads.wordpress.org/plugin/popup-maker.1.21.4.zip", "1.21.5": "https://downloads.wordpress.org/plugin/popup-maker.1.21.5.zip", "1.4.10": "https://downloads.wordpress.org/plugin/popup-maker.1.4.10.zip", "1.4.12": "https://downloads.wordpress.org/plugin/popup-maker.1.4.12.zip", "1.4.13": "https://downloads.wordpress.org/plugin/popup-maker.1.4.13.zip", "1.4.14": "https://downloads.wordpress.org/plugin/popup-maker.1.4.14.zip", "1.4.15": "https://downloads.wordpress.org/plugin/popup-maker.1.4.15.zip", "1.4.16": "https://downloads.wordpress.org/plugin/popup-maker.1.4.16.zip", "1.4.17": "https://downloads.wordpress.org/plugin/popup-maker.1.4.17.zip", "1.4.18": "https://downloads.wordpress.org/plugin/popup-maker.1.4.18.zip", "1.4.19": "https://downloads.wordpress.org/plugin/popup-maker.1.4.19.zip", "1.4.20": "https://downloads.wordpress.org/plugin/popup-maker.1.4.20.zip", "1.4.21": "https://downloads.wordpress.org/plugin/popup-maker.1.4.21.zip", "1.7.10": "https://downloads.wordpress.org/plugin/popup-maker.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/plugin/popup-maker.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/plugin/popup-maker.1.7.12.zip", "1.7.13": "https://downloads.wordpress.org/plugin/popup-maker.1.7.13.zip", "1.7.14": "https://downloads.wordpress.org/plugin/popup-maker.1.7.14.zip", "1.7.15": "https://downloads.wordpress.org/plugin/popup-maker.1.7.15.zip", "1.7.16": "https://downloads.wordpress.org/plugin/popup-maker.1.7.16.zip", "1.7.17": "https://downloads.wordpress.org/plugin/popup-maker.1.7.17.zip", "1.7.18": "https://downloads.wordpress.org/plugin/popup-maker.1.7.18.zip", "1.7.19": "https://downloads.wordpress.org/plugin/popup-maker.1.7.19.zip", "1.7.20": "https://downloads.wordpress.org/plugin/popup-maker.1.7.20.zip", "1.7.21": "https://downloads.wordpress.org/plugin/popup-maker.1.7.21.zip", "1.7.22": "https://downloads.wordpress.org/plugin/popup-maker.1.7.22.zip", "1.7.23": "https://downloads.wordpress.org/plugin/popup-maker.1.7.23.zip", "1.7.24": "https://downloads.wordpress.org/plugin/popup-maker.1.7.24.zip", "1.7.25": "https://downloads.wordpress.org/plugin/popup-maker.1.7.25.zip", "1.7.26": "https://downloads.wordpress.org/plugin/popup-maker.1.7.26.zip", "1.7.27": "https://downloads.wordpress.org/plugin/popup-maker.1.7.27.zip", "1.7.28": "https://downloads.wordpress.org/plugin/popup-maker.1.7.28.zip", "1.7.29": "https://downloads.wordpress.org/plugin/popup-maker.1.7.29.zip", "1.7.30": "https://downloads.wordpress.org/plugin/popup-maker.1.7.30.zip", "1.8.10": "https://downloads.wordpress.org/plugin/popup-maker.1.8.10.zip", "1.8.11": "https://downloads.wordpress.org/plugin/popup-maker.1.8.11.zip", "1.8.12": "https://downloads.wordpress.org/plugin/popup-maker.1.8.12.zip", "1.8.13": "https://downloads.wordpress.org/plugin/popup-maker.1.8.13.zip", "1.8.14": "https://downloads.wordpress.org/plugin/popup-maker.1.8.14.zip", "1.16.10": "https://downloads.wordpress.org/plugin/popup-maker.1.16.10.zip", "1.16.11": "https://downloads.wordpress.org/plugin/popup-maker.1.16.11.zip", "1.16.12": "https://downloads.wordpress.org/plugin/popup-maker.1.16.12.zip", "1.16.13": "https://downloads.wordpress.org/plugin/popup-maker.1.16.13.zip", "1.16.14": "https://downloads.wordpress.org/plugin/popup-maker.1.16.14.zip"}, "downloaded": 19395898, "description": "

    📈 Drive More Sales, Leads & Email List Opt-Ins Using Popup Maker

    \n

    Popup Maker™, rated as the best WordPress popup plugin by our community of 780,000+ users, empowers you to create stunning popups, modals, and overlays in minutes. Whether you’re a beginner or a pro, our versatile toolkit makes it easy to boost your WordPress site’s engagement.

    \n

    Transform your WordPress site into a conversion powerhouse! Create targeted campaigns using popups, exit-intent forms, slide-ins, and smart banners to skyrocket your revenue and build your email list faster than ever.

    \n
    \n

    We switched to Popup Maker for our popups and couldn’t be happier.

    \n

    “We recommend it to all our clients too. Popup Maker is an essential piece of our website for maximizing growing our email list, increasing sales conversions, and guiding users with strategic calls to action. Great support too.”

    \n

    ~ Chris Badgett, LifterLMS CEO

    \n
    \n

    🔥 Ready to get started?

    \n

    👉 Visit Our Website – Explore all features & pricing
    \n👉 Join Our Conversion Optimization Community – Share strategies & learn from experts
    \n👉 Read Our Guides – Learn popup best practices
    \n👉 Get Help – World-class support when you need it

    \n

    🎬 See What’s Possible with Popup Maker

    \n

    \n

    Stunning examples of what you can create in Popup Maker (View Video)

    \n

    🛠️ Ultimate WordPress Popup Builder: Every Type of Conversion Popup at Your Fingertips

    \n

    With Popup Maker, you have the ultimate popup builder toolkit at your disposal, create any type of popup in minutes:

    \n\n
    \n

    Even the free version is great
    \n “Does exactly what it says and is easy to use. Free version allows full control of where popup appears, how it looks and setting conditions for popup reappearing across website.”
    \n ~@rsb1234

    \n
    \n

    🔑 Trigger Popups with Ease: Multiple Ways to Open Your Popups

    \n

    Popup Maker offers a variety of triggers to open your popups:

    \n
      \n
    • Open automatically (with optional delay)
    • \n
    • Click button (or any other element) to open
    • \n
    • Form submission (open a popup when a form is submitted)
    • \n
    • Open when someone is about to leave your site (requires premium Exit Intent feature)
    • \n
    • Open when someone has scrolled down your page (requires premium Scroll Trigger feature)
    • \n
    \n

    🎯 Smart Popup Targeting: Deliver the Perfect Message to Every Visitor

    \n

    Never show irrelevant popups again! Our powerful targeting system ensures your messages reach exactly who needs to see them, when they need to see them. From basic page targeting to advanced user behavior conditions, you have complete control over your popup’s visibility.

    \n

    Free Targeting Options:

    \n
      \n
    • Target specific posts, pages, or custom post types
    • \n
    • Target by post categories or tags, & custom taxonomies
    • \n
    • Front page vs blog page targeting
    • \n
    \n

    Premium Targeting Features:

    \n
      \n
    • Advanced user behavior targeting
    • \n
    • Show on specific URLs or URL patterns
    • \n
    • Show/hide based on user roles
    • \n
    • Geolocation targeting
    • \n
    • Browser & OS targeting
    • \n
    • Time & date scheduling
    • \n
    • Page scroll depth targeting
    • \n
    • User login status
    • \n
    • Previous popup interactions
    • \n
    • Ecommerce purchasing & cart rules
    • \n
    • Advanced custom taxonomy targeting
    • \n
    • Referrer source targeting
    • \n
    \n

    🔑 Integrate with Your Favorite Form Plugins

    \n

    Popup Maker integrates with all of the most popular form plugins to allow you to open a popup when a form is submitted or close the popup when a form inside the popup is submitted. Popup Maker integrates with:

    \n

    Form Plugin Integrations:

    \n
      \n
    • Ninja Forms
    • \n
    • Gravity Forms
    • \n
    • Contact Form 7 (CF7)
    • \n
    • WPForms
    • \n
    • WSForm
    • \n
    • Fluent Forms
    • \n
    • Mailchimp for WordPress (MC4WP)
    • \n
    • Formidable Forms
    • \n
    • and more!
    • \n
    \n

    Email Marketing & CRM Integrations:

    \n

    Already created a form in your email marketing service? Using our free version, you can copy and paste any form created by most list building platforms, including but not limited to:

    \n
      \n
    • MailChimp
    • \n
    • AWeber
    • \n
    • InfusionSoft
    • \n
    • GetResponse
    • \n
    • Convertkit
    • \n
    • Constant Contact
    • \n
    • Mail Poet
    • \n
    • Mad Mimi
    • \n
    • FluentCRM
    • \n
    • Hubspot
    • \n
    • Emma
    • \n
    • and more!
    • \n
    \n

    ⚙️ Advanced Popup Controls: Customize Every Aspect of Your Popups

    \n

    Take complete control of your popups with our powerful customization features:

    \n
      \n
    • Visual Popup Editor – Design beautiful popups with our intuitive drag & drop editor. Control sizing, positioning, animations, and more
    • \n
    • Smart Display Rules – Set cookie-based display frequency to prevent popup fatigue and improve user experience
    • \n
    • Custom Animations – Choose from slide, fade, and other engaging entrance/exit animations
    • \n
    • Mobile-First Design – Every popup is fully responsive and looks great on all devices
    • \n
    • Custom Positioning – Place your popups exactly where you want them – centered, corners, or custom positions
    • \n
    • Cookie Controls – Fine-tune when and how often visitors see your popups with advanced cookie settings
    • \n
    \n

    👍 Trusted by many people just like you!

    \n

    Popup Maker is used on over 780,000 websites and has received over 4,200 5-star reviews just like this one:

    \n
    \n

    Great plugin, everything I needed
    \n “Really nice plugin, simple to use, responsive, a good catch !” ~@lemmmy

    \n
    \n

    🛠️ Enhance Your WordPress Popups Using Our Premium Features

    \n

    Need even more features? Popup Maker has over 20 premium features to supercharge your conversion rates:

    \n
      \n
    • Exit Intent – Catch abandoning visitors before they leave with perfectly timed offers
    • \n
    • Popup Analytics – Track views, conversions, and optimize your popup performance with detailed insights
    • \n
    • Advanced Targeting Conditions – Show popups based on user behavior, referral source, geolocation, and more
    • \n
    • Forced Interaction – Ensure critical messages are seen with popups that require acknowledgment
    • \n
    • Scheduling – Display time-sensitive offers and content automatically at the perfect moment
    • \n
    • And many more premium features to help you maximize conversions!
    • \n
    \n

    🤝 Join Our Growing Community

    \n

    We believe in making Popup Maker better together! Here’s how you can get involved:

    \n\n

    Created by Code Atlantic

    \n

    Popup Maker is built by the Code Atlantic team. We create high-quality WordPress plugins that help you grow.

    \n

    Check out some of our most popular plugins:

    \n\n", "donate_link": "", "num_ratings": 4494, "screenshots": {"1": {"src": "https://ps.w.org/popup-maker/assets/screenshot-1.png?rev=2732428", "caption": "Example popup using our built-in Ninja Forms integration"}, "2": {"src": "https://ps.w.org/popup-maker/assets/screenshot-2.png?rev=2732428", "caption": "Example popup"}, "3": {"src": "https://ps.w.org/popup-maker/assets/screenshot-3.png?rev=2732428", "caption": "Example popup using our WooCommerce extension to make a popup appear when a product is added to their cart."}, "4": {"src": "https://ps.w.org/popup-maker/assets/screenshot-4.png?rev=2732428", "caption": "Create and edit an infinite number of unique popups to get any job done."}, "5": {"src": "https://ps.w.org/popup-maker/assets/screenshot-5.png?rev=2732428", "caption": "Use our popup editor to customize every facet of your popup completely."}, "6": {"src": "https://ps.w.org/popup-maker/assets/screenshot-6.png?rev=2732428", "caption": "Add triggers to your popups to determine what causes it to open. Our free triggers include: Click Open and Auto Open."}, "7": {"src": "https://ps.w.org/popup-maker/assets/screenshot-7.png?rev=2732428", "caption": "Choose from many conditions to target exactly who will (and will not) see your popups."}, "8": {"src": "https://ps.w.org/popup-maker/assets/screenshot-8.png?rev=2732428", "caption": "Prevent your popups from being annoying to users by using cookies to disable them once they have been viewed."}, "9": {"src": "https://ps.w.org/popup-maker/assets/screenshot-9.png?rev=2732428", "caption": "Create and edit an unlimited number of popup themes for every situation."}, "10": {"src": "https://ps.w.org/popup-maker/assets/screenshot-10.png?rev=2732428", "caption": "Use the theme editor to choose from over 60 options and theme every element of your popup: Background Overlay, Popup Container, Close Button, Google Fonts, and much more."}}, "support_url": "https://wordpress.org/support/plugin/popup-maker/", "contributors": {"danieliser": {"avatar": "https://secure.gravatar.com/avatar/749586fb2ffa57fab58380cd691c0d9a8878497e47e278e21602252bd8dfe8ba?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/danieliser/", "display_name": "Daniel Iser"}, "codeatlantic": {"avatar": "https://secure.gravatar.com/avatar/5ff4031eb58bc71be05166cf69878e19def3de05a3d48f368089c89745d2bf1c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/codeatlantic/", "display_name": "Code Atlantic"}}, "last_updated": "2025-10-13 5:38pm GMT", "preview_link": "https://wordpress.org/plugins/popup-maker/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/popup-maker.1.21.5.zip", "author_profile": "https://profiles.wordpress.org/danieliser/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f88c-721a-8bbd-829e3bfa8fdc", "name": "Popup Maker – Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popups Builder", "slug": "popup-maker", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1760377080, "version": "1.21.5"}, "support_threads": 20, "requires_plugins": [], "short_description": "Want to boost sales & marketing efforts? Use your favorite forms & builder. Unlimited popups & impressions, keep your data, no monthly subscription.", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "https://wppopupmaker.com/support/", "support_threads_resolved": 14}'); -INSERT INTO public.plugins VALUES ('019a30c1-6674-7239-b42d-fcbbcd7a6339', 'post-types-order', 'Post Types Order', 'Sort posts and custom post type objects using a drag-and-drop, sortable JavaScript AJAX interface, or through the default WordPress dashboard', '

    Over 12 MILLIONS DOWNLOADS and near PERFECT rating out of 200 REVIEWS.
    -Easily Sort Posts and Custom Post Types with Drag-and-Drop

    -

    Take full control of your post order with a powerful plugin that lets you effortlessly reorder posts and custom post types using a simple drag-and-drop interface.

    -

    Customize the order directly from the default WordPress post archive list or use the dedicated Re-Order interface, which displays all available items for easy management. Whether you’re working with default posts or custom post types, organizing your content has never been easier.

    -

    Usage

    -

    This plugin was designed to be user-friendly, ensuring that anyone can easily use its sorting feature, regardless of their WordPress experience:

    -
      -
    • Install the plugin via the “Install Plugins” interface or by uploading the post-types-order folder to the /wp-content/plugins/ directory.
    • -
    • Activate the Post Types Order plugin.
    • -
    • A new settings page will be added under Settings > Post Types Order. Visit this page and save the options for the first time.
    • -
    • With the AutoSort option enabled, no code changes are needed, the plugin will automatically apply the customized post order.
    • -
    • Use the Re-Order interface, available for every non-hierarchical custom post type, to change the post order as needed.
    • -
    • For sorting posts via code, include ‘orderby’ => ‘menu_order’ within the custom query arguments. For more details, visit this guide Sample Usage
    • -
    -

    Example of Usage

    - -

    As you can see, reordering posts is as simple as dragging and dropping, with the changes instantly reflected on the front end.

    -

    If the post order doesn’t update on your site, it could be due to one of two reasons: either there was a mistake during setup, or your theme/plugin is using a custom query that doesn’t follow WordPress Codex standards. But don’t worry—we’re here to help! You can report the issue in the forum, where many users are happy to assist, or you can contact us directly.

    -

    If you encounter any problems with the plugin, feel free to reach out via the forum or contact us directly through our support page, and we’ll take a look.

    -

    Need advanced features ?

    -

    For advanced features and functionality, check out the extended version of this plugin at Advanced Post Types Order
    - * Hierarchically post types order
    - * Manual Drag & Drop / Automatic Sorting
    - * Specify exact area where to apply through conditionals
    - * Advanced query interface filtering and complex sorts including multiple post types and taxonomies
    - * Posts Order by Custom Taxonomies
    - * Enhanced Interface, List / Grid View
    - * Allow Interface Filters (Categories, Dates, Search etc)
    - * Post Types Thumbnails
    - * Advanced query usage
    - * MultiSite Network Support, WPML, Polylang, WooCommerce, WP E-Commerce, Platform Pro, Genesis etc
    - * WPML 100% compatibility with sort synchronization across languages
    - * Mobile Touch Drag & Drop Ready
    - * Sort interfaces through admin and front end
    - * Pagination for sort lists
    - * Free Updates
    - * Free Support

    -

    This plugin is developed by Nsp-Code

    -

    Localization

    -

    Would you like to contribute a translation in your language? Please check at https://translate.wordpress.org/projects/wp-plugins/post-types-order

    -

    There isn’t any Editors for your native language on plugin Contributors? You can help to moderate! https://translate.wordpress.org/projects/wp-plugins/post-types-order/contributors

    -', '2.4', 'nsp-code', '2.8', '5.6', '6.8.3', 'https://downloads.wordpress.org/plugin/post-types-order.zip', '2010-09-05 00:00:00+00', '2025-09-23 13:18:00+00', 'https://profiles.wordpress.org/nsp-code/', 90, 292, 3, 1, 600000, 15049734, 'http://www.nsp-code.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/post-types-order/', 'https://wordpress.org/plugins/post-types-order/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Post Types Order", "slug": "post-types-order", "tags": {"post-sort": "post sort", "post-order": "post order", "posts-sort": "posts sort", "posts-order": "posts order", "post-types-order": "post types order"}, "added": "2010-09-05", "icons": {"1x": "https://ps.w.org/post-types-order/assets/icon-128x128.png?rev=1226428"}, "author": "nsp-code", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/post-types-order/assets/banner-772x250.png?rev=3303640", "high": "https://ps.w.org/post-types-order/assets/banner-1544x500.png?rev=3303640"}, "ratings": {"1": 25, "2": 4, "3": 11, "4": 8, "5": 244}, "version": "2.4", "homepage": "http://www.nsp-code.com", "requires": "2.8", "sections": {"faq": "

    Feel free to contact us at electronice_delphi@yahoo.com.

    \n\n
    \nSince I have no PHP knowledge at all, is this plugin for me?\n\n

    \n

    Absolutely! You don’t need any PHP knowledge to use this plugin.
    \nUnlike many other plugins, you won’t have to make any code changes for your custom post order to apply. There’s an option to automatically update WordPress queries so posts are displayed in your custom order. If you prefer to handle this manually, you can disable the AutoSort option.

    \n

    \n
    \nHow to manually apply the sort in queries\n\n

    \n

    Simply include ''orderby'' => ''menu_order'' in your custom query arguments.

    \n

    \n
    \nWhat types of posts/pages can I sort with this plugin?\n\n

    \n

    You can sort all post types you’ve defined in WordPress, as long as they are not hierarchical. This includes default post types like Posts, as well as custom types like Movies, Reviews, Data, etc.

    \n

    \n
    \nHow does the post order apply in the admin interface?\n\n

    \n

    There’s an option to display the custom post order, as defined in the sort list, directly within the main admin post list interface.

    \n

    \n
    \nI have a feature request. Can it be implemented?\n\n

    \n

    All ideas are welcome! I add them to my list for future versions. However, this may take some time. If you’re in a hurry, consider making a small donation, and I can prioritize the feature for you.

    \n

    \n
    \nCan I exclude certain queries from the custom sort when AutoSort is enabled?\n\n

    \n

    Yes, you can! To exclude certain queries, include the ignore_custom_sort argument in your custom query. An example is available at Sample Usage

    \n

    \n
    \nHow can I force custom sorting for specific queries when AutoSort is enabled?\n\n

    \n

    You can use the pto/posts_orderby filter to force the sort. An example is provided at Sample Usage

    \n

    \n
    \nI need additional features like front-end sorting, shortcodes, filters, conditionals, advanced queries, or taxonomy/category sorting\n\n

    \n

    Consider upgrading to our advanced version of this plugin, which offers these features at a very reasonable price Advanced Post Types Order

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fredvdp on July 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does exactly what it needs to do. Simple and straightforward.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple Effective

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pogojim on May 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    As per heading.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sequith on May 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I tried several post management tools and this one is by far the smoothest. Clean UI, fast performance, and I love the bulk editing features. Totally worth it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It does exactly what it says

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy danielepais on May 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    Works well, and it is a breeze to change the list order. Great plugin.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good and great customer service

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy imacreste on February 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It helped me a lot to organize my products. But it also helped me a lot to get my filters working with Ajax.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential for my porftolio

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alianur on January 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hi! I have been using it for many years, it has become essential to show my work portfolio in the way I need. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really Handy Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy WordPress Developer Ireland (papashivo) on January 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    This is a really nice and simple to install and use plugin.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Absolutely fantastic!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Manou Allou (manouallou) on November 20, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Finally!

    \n\n\n\n

    This great little plugin works wonders for sorting both categories and posts. It also works for custom post types and even for Bricks templates (you have to toggle the advanced switch in the plugin''s settings first and then select it).

    \n\n\n\n

    My OCD can now be put at rest.

    \n\n\n\n

    A big digital shout-out to the NSP-Code team. Thank you guys!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect plugin for sorting issue

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy muzzy1cyberbiz on December 27, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Did solve my problem, so i am extremely happy :-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does NOT work at all!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy GuentherLudwig on December 10, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does NOT work at all!

    \n
    \n
    \n", "changelog": "

    2.4

    \n
      \n
    • If query already sorting by FIELD, ignore the custom order.
    • \n
    • Compatibility class file changes.
    • \n
    • Compatibility file for Advanced Custom Fields PRO
    • \n
    \n

    2.3.7

    \n
      \n
    • Code improvements.
    • \n
    • Reduce the outputted HTML for the ReOrder interface to avoid memory limitation on very long lists.
    • \n
    • Re-Order interface style updates.
    • \n
    • WordPress 6.82 compatibility check and tag update.
    • \n
    \n

    2.3.5

    \n
      \n
    • WordPress 6.8 compatibility check and tag update.
    • \n
    \n

    2.3.4

    \n
      \n
    • PHP 8.3.4 tag and compatibility check.
    • \n
    • WordPress 6.7.2 compatibility check and tag update.
    • \n
    • Readme revision.
    • \n
    \n

    2.3.3

    \n
      \n
    • Add version to the plugin assets to avoid caching issues.
    • \n
    • Improve the options description for easier understanding.
    • \n
    • New filter pto/interface/table/tbody
    • \n
    • WordPress 6.7 compatibility check and tag update.
    • \n
    \n

    2.3.2

    \n
      \n
    • Fix: Change the CPT_VERSION constant to avoid conflict with CPT UI plugin.
    • \n
    \n

    2.3.1

    \n
      \n
    • Improve the descriptions in the readme.txt file for better clarity and user understanding.
    • \n
    • Add a version number to the CSS file to ensure that browsers load the latest version correctly and avoid caching issues.
    • \n
    \n

    2.3

    \n
      \n
    • Enhanced re-order interface to better align with the default WordPress styling.
    • \n
    • Added additional object actions (e.g., Edit, View) directly within each item row. New setting to control the visibility of actions.
    • \n
    • Introduced new filters for extending the re-order table: pto/interface/table/thead, pto/interface/table/tfoot, and pto/interface/table/tbody.
    • \n
    • Completed compatibility check and tagged update for WordPress 6.6.2.
    • \n
    \n

    2.2.6

    \n
      \n
    • Remove boolval on the filter ‘pto/posts_orderby’ to avoid returning wrong FALSE.
    • \n
    • FlyingPress cache lear method update.
    • \n
    \n

    2.2.4

    \n
      \n
    • Add code comments hints for easier understanding and follow.
    • \n
    • Use strval when comparing strings using ===
    • \n
    • Use additional sanitize_text_field and isset checks to avoid PHP notices.
    • \n
    • Use === “strict equality” comparison operator instead simple
    • \n
    • Include the check for JetPack mobile, if plugin is active.
    • \n
    • Check if there is a post_status filter and if set to ‘all’ to continue scripts enqueue.
    • \n
    • New filter pto/interface/query/args to allow adjustments for the re-order interface query arguments.
    • \n
    • WordPress 6.6.1 compatibility check and tag update.
    • \n
    \n

    2.2.3

    \n
      \n
    • When order update, attempt to clear the site / server caches.
    • \n
    • Set Yes as default for the option to Enable sortable drag-and-drop functionality within the default WordPress post type archive.
    • \n
    • WordPress 6.5.3 compatibility tag.
    • \n
    \n

    2.2.1

    \n
      \n
    • Options interface layout updates.
    • \n
    • Code cleanup
    • \n
    • Remove unused svg icon file.
    • \n
    \n

    2.2

    \n
      \n
    • Formidable style fix when Autosort is active.
    • \n
    • Plugin headers format update.
    • \n
    • WordPress 6.5 compatibility check and tag update ( RC1 )
    • \n
    \n

    2.1.8

    \n
      \n
    • Fix: Media/images order, retrieve the items per page from user upload_per_page
    • \n
    \n

    2.1.4

    \n
      \n
    • PHP Deprecated fix: Constant FILTER_SANITIZE_STRING is deprecated
    • \n
    • WordPress 6.4.3 compatibility check and tag update
    • \n
    \n

    2.1.2

    \n
      \n
    • PHP 8.2.4 check for compatibility
    • \n
    • WordPress 6.4.2 compatibility check and tag update
    • \n
    \n

    2.1

    \n
      \n
    • Trigger wp_cache_flush when saving the order to clear the internal caches
    • \n
    • WordPress 6.3 compatibility check and tag
    • \n
    • Compatibility update for lite speed cache
    • \n
    \n

    2.0.9

    \n
      \n
    • Fix: is_plugin_active
    • \n
    \n

    2.0.7

    \n
      \n
    • Compatibility class re-build
    • \n
    • Fix: Enfold templates when using Admin Sort
    • \n
    \n

    2.0.5

    \n
      \n
    • Merge the “default archive&drop” option and keep the individual menu Yes/No for the default WordPress interfaces, to avoid confusion.
    • \n
    \n

    2.0.2

    \n
      \n
    • The Archive drag & drop is disabled by default
    • \n
    • Small layout changes
    • \n
    • WordPress 6.2 compatibility tag
    • \n
    \n

    2.0

    \n
      \n
    • Update cmoposer.json to use the wpackagist.org
    • \n
    • New option to select the drag & drop available for post types.
    • \n
    • The drag & drop within the default WordPress interfaces can be done now through the new icon, under the checkbox, for each item.
    • \n
    • Check if ajax call to avoid applying the order when autosort is disabled.
    • \n
    • Update plugin header image
    • \n
    \n

    1.9.9.2

    \n
      \n
    • WordPress 6.1.1 compatibility tag
    • \n
    \n

    1.9.9.1

    \n
      \n
    • WordPress 6.0 compatibility tag
    • \n
    \n

    1.9.9

    \n
      \n
    • Fix layout change when sorting by drag&drop within default WordPress interface.
    • \n
    • Add placeholder row size by setting a tr colspan of the dragable element.
    • \n
    \n

    1.9.8

    \n
      \n
    • Readme file updates, typos fixes.
    • \n
    • WordPress 5.9 compatibility tag
    • \n
    \n

    1.9.7

    \n
      \n
    • Remove Twitter button
    • \n
    • Remove unused gif image
    • \n
    • HTPML and CSS cleanup
    • \n
    \n

    1.9.5.7

    \n
      \n
    • Code cleanup
    • \n
    • WordPress 5.8.1 compatibility tag
    • \n
    \n

    1.9.5.6

    \n
      \n
    • Fix PHP implode() notice
    • \n
    \n

    1.9.5.5

    \n
      \n
    • Fix PHP implode() notice
    • \n
    \n

    1.9.5.4

    \n
      \n
    • Fix PHP implode() notice
    • \n
    • Ensure the drag & drop interface show for correct post types, non hierarchically to ensure correct functionality
    • \n
    • WordPress 5.6 compatibility tag
    • \n
    \n

    1.9.5.2

    \n
      \n
    • Clean post cache on order update to allow menu_order to change on cached data
    • \n
    • WordPress 5.5 compatibility tag
    • \n
    \n

    1.9.5.1

    \n
      \n
    • Fix: Outputs the admin save notice through admin_notices filter
    • \n
    \n

    1.9.5

    \n
      \n
    • Fix: disable drag & drop within taxonomies interfaces; fix WooCommerce attributes sort issue
    • \n
    • Reorder interface slight styles improvements
    • \n
    • Compatibility tag update for WordPress 5.4.2
    • \n
    \n

    1.9.4.3

    \n
      \n
    • Option text translation update
    • \n
    • Changed the posts class to to wp-list-table when applying sortable for better compatibility
    • \n
    • Compatibility tag update for WordPress 5.4
    • \n
    \n

    1.9.4.2

    \n
      \n
    • Compatibility tag update for WordPress 5.3
    • \n
    \n

    1.9.4.1

    \n
      \n
    • Ignore the Events Calendar posts
    • \n
    • Filter typo fix
    • \n
    \n

    1.9.3.9

    \n
      \n
    • Ignore sorting when doing Search and there’s a search key-phrase specified.
    • \n
    • Ignore sorting when doing Search within admin dashboard
    • \n
    • Removed Google Social as it produced some JavaScript errors
    • \n
    • WordPress 4.9.7 tag update
    • \n
    \n

    1.9.3.6

    \n
      \n
    • Clear LiteSpeed Cache on order update to reflect on front side
    • \n
    • WordPress 4.9.1 tag update
    • \n
    \n

    1.9.3.5

    \n
      \n
    • Fix: updated capability from switch_theme to manage_options within ‘Minimum Level to use this plugin’ option
    • \n
    • Default admin capability changed from install_plugins to manage_options to prevent DISALLOW_FILE_MODS issue. https://wordpress.org/support/topic/plugin-breaks-when-disallow_file_mods-is-set-to-true/
    • \n
    • Prepare plugin for Composer package
    • \n
    \n

    1.9.3.3

    \n
      \n
    • Plugin option to include query argument ASC / DESC
    • \n
    \n

    1.9.3.2

    \n
      \n
    • Include ASC / DESC if there is a query order argument
    • \n
    • Avada fix ‘product_orderby’ ignore
    • \n
    \n

    1.9.3.1

    \n
      \n
    • WordPress 4.8 compatibility notice
    • \n
    • Slight code changes, remove unused activate / deactivate hooks
    • \n
    • Updated po translation file
    • \n
    • Updated assets
    • \n
    \n

    1.9.3

    \n
      \n
    • Fix for custom post type objects per page when using default archive interface drag & drop sort
    • \n
    • Plugin code redo and re-structure
    • \n
    • Improved compatibility with other plugins
    • \n
    • Security improvements for AJAX order updates
    • \n
    \n

    1.9

    \n
      \n
    • Remove translations from the package
    • \n
    • Remove link for donate
    • \n
    • Wp Hide plugin availability notification
    • \n
    • New Filter pto/get_options to allow to change default options; Custom capability can be set for ‘capability’
    • \n
    • New Filter pto/admin/plugin_options/capability to allow custom capability option to be inserted within html
    • \n
    \n", "description": "

    Over 12 MILLIONS DOWNLOADS and near PERFECT rating out of 200 REVIEWS.
    \nEasily Sort Posts and Custom Post Types with Drag-and-Drop

    \n

    Take full control of your post order with a powerful plugin that lets you effortlessly reorder posts and custom post types using a simple drag-and-drop interface.

    \n

    Customize the order directly from the default WordPress post archive list or use the dedicated Re-Order interface, which displays all available items for easy management. Whether you’re working with default posts or custom post types, organizing your content has never been easier.

    \n

    Usage

    \n

    This plugin was designed to be user-friendly, ensuring that anyone can easily use its sorting feature, regardless of their WordPress experience:

    \n
      \n
    • Install the plugin via the “Install Plugins” interface or by uploading the post-types-order folder to the /wp-content/plugins/ directory.
    • \n
    • Activate the Post Types Order plugin.
    • \n
    • A new settings page will be added under Settings > Post Types Order. Visit this page and save the options for the first time.
    • \n
    • With the AutoSort option enabled, no code changes are needed, the plugin will automatically apply the customized post order.
    • \n
    • Use the Re-Order interface, available for every non-hierarchical custom post type, to change the post order as needed.
    • \n
    • For sorting posts via code, include ‘orderby’ => ‘menu_order’ within the custom query arguments. For more details, visit this guide Sample Usage
    • \n
    \n

    Example of Usage

    \n\n

    As you can see, reordering posts is as simple as dragging and dropping, with the changes instantly reflected on the front end.

    \n

    If the post order doesn’t update on your site, it could be due to one of two reasons: either there was a mistake during setup, or your theme/plugin is using a custom query that doesn’t follow WordPress Codex standards. But don’t worry—we’re here to help! You can report the issue in the forum, where many users are happy to assist, or you can contact us directly.

    \n

    If you encounter any problems with the plugin, feel free to reach out via the forum or contact us directly through our support page, and we’ll take a look.

    \n

    Need advanced features ?

    \n

    For advanced features and functionality, check out the extended version of this plugin at Advanced Post Types Order
    \n * Hierarchically post types order
    \n * Manual Drag & Drop / Automatic Sorting
    \n * Specify exact area where to apply through conditionals
    \n * Advanced query interface filtering and complex sorts including multiple post types and taxonomies
    \n * Posts Order by Custom Taxonomies
    \n * Enhanced Interface, List / Grid View
    \n * Allow Interface Filters (Categories, Dates, Search etc)
    \n * Post Types Thumbnails
    \n * Advanced query usage
    \n * MultiSite Network Support, WPML, Polylang, WooCommerce, WP E-Commerce, Platform Pro, Genesis etc
    \n * WPML 100% compatibility with sort synchronization across languages
    \n * Mobile Touch Drag & Drop Ready
    \n * Sort interfaces through admin and front end
    \n * Pagination for sort lists
    \n * Free Updates
    \n * Free Support

    \n

    This plugin is developed by Nsp-Code

    \n

    Localization

    \n

    Would you like to contribute a translation in your language? Please check at https://translate.wordpress.org/projects/wp-plugins/post-types-order

    \n

    There isn’t any Editors for your native language on plugin Contributors? You can help to moderate! https://translate.wordpress.org/projects/wp-plugins/post-types-order/contributors

    \n", "screenshots": "
    1. \"<p>The

      The ReOrder interface through which the sort can be created.

    2. \"<p>Sort

      Sort can be managed within default WordPress post type interface.

    ", "installation": "
      \n
    1. Upload post-types-order folder to your /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin from Admin > Plugins menu.
    4. \n
    5. Once activated you should check with Settings > Post Types Order
    6. \n
    7. Use Re-Order link which appear into each post type section or use default WordPress interface to make your sorting.
    8. \n
    \n"}, "versions": {"0.9": "https://downloads.wordpress.org/plugin/post-types-order.0.9.zip", "1.9": "https://downloads.wordpress.org/plugin/post-types-order.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/post-types-order.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/post-types-order.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/post-types-order.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/post-types-order.2.3.zip", "1.0.2": "https://downloads.wordpress.org/plugin/post-types-order.1.0.2.zip", "1.1.2": "https://downloads.wordpress.org/plugin/post-types-order.1.1.2.zip", "1.3.9": "https://downloads.wordpress.org/plugin/post-types-order.1.3.9.zip", "1.4.3": "https://downloads.wordpress.org/plugin/post-types-order.1.4.3.zip", "1.4.6": "https://downloads.wordpress.org/plugin/post-types-order.1.4.6.zip", "1.5.1": "https://downloads.wordpress.org/plugin/post-types-order.1.5.1.zip", "1.5.4": "https://downloads.wordpress.org/plugin/post-types-order.1.5.4.zip", "1.5.7": "https://downloads.wordpress.org/plugin/post-types-order.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/post-types-order.1.5.8.zip", "1.6.2": "https://downloads.wordpress.org/plugin/post-types-order.1.6.2.zip", "1.6.5": "https://downloads.wordpress.org/plugin/post-types-order.1.6.5.zip", "1.6.8": "https://downloads.wordpress.org/plugin/post-types-order.1.6.8.zip", "1.7.4": "https://downloads.wordpress.org/plugin/post-types-order.1.7.4.zip", "1.7.7": "https://downloads.wordpress.org/plugin/post-types-order.1.7.7.zip", "1.7.9": "https://downloads.wordpress.org/plugin/post-types-order.1.7.9.zip", "1.8.1": "https://downloads.wordpress.org/plugin/post-types-order.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/post-types-order.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/post-types-order.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/post-types-order.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/post-types-order.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/plugin/post-types-order.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/plugin/post-types-order.1.8.7.zip", "1.8.9": "https://downloads.wordpress.org/plugin/post-types-order.1.8.9.zip", "1.9.3": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.zip", "1.9.5": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.zip", "1.9.7": "https://downloads.wordpress.org/plugin/post-types-order.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/post-types-order.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/post-types-order.1.9.9.zip", "2.0.2": "https://downloads.wordpress.org/plugin/post-types-order.2.0.2.zip", "2.0.5": "https://downloads.wordpress.org/plugin/post-types-order.2.0.5.zip", "2.0.7": "https://downloads.wordpress.org/plugin/post-types-order.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/post-types-order.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/post-types-order.2.0.9.zip", "2.1.1": "https://downloads.wordpress.org/plugin/post-types-order.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/post-types-order.2.1.2.zip", "2.1.4": "https://downloads.wordpress.org/plugin/post-types-order.2.1.4.zip", "2.1.8": "https://downloads.wordpress.org/plugin/post-types-order.2.1.8.zip", "2.2.1": "https://downloads.wordpress.org/plugin/post-types-order.2.2.1.zip", "2.2.3": "https://downloads.wordpress.org/plugin/post-types-order.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/post-types-order.2.2.4.zip", "2.2.6": "https://downloads.wordpress.org/plugin/post-types-order.2.2.6.zip", "2.3.1": "https://downloads.wordpress.org/plugin/post-types-order.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/post-types-order.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/post-types-order.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/post-types-order.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/post-types-order.2.3.5.zip", "2.3.7": "https://downloads.wordpress.org/plugin/post-types-order.2.3.7.zip", "1.8.9.2": "https://downloads.wordpress.org/plugin/post-types-order.1.8.9.2.zip", "1.9.3.1": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.1.zip", "1.9.3.2": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.2.zip", "1.9.3.3": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.3.zip", "1.9.3.5": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.5.zip", "1.9.3.6": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.6.zip", "1.9.3.9": "https://downloads.wordpress.org/plugin/post-types-order.1.9.3.9.zip", "1.9.4.1": "https://downloads.wordpress.org/plugin/post-types-order.1.9.4.1.zip", "1.9.4.2": "https://downloads.wordpress.org/plugin/post-types-order.1.9.4.2.zip", "1.9.4.3": "https://downloads.wordpress.org/plugin/post-types-order.1.9.4.3.zip", "1.9.5.1": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.1.zip", "1.9.5.2": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.2.zip", "1.9.5.4": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.4.zip", "1.9.5.5": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.5.zip", "1.9.5.6": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.6.zip", "1.9.5.7": "https://downloads.wordpress.org/plugin/post-types-order.1.9.5.7.zip", "1.9.9.1": "https://downloads.wordpress.org/plugin/post-types-order.1.9.9.1.zip", "1.9.9.2": "https://downloads.wordpress.org/plugin/post-types-order.1.9.9.2.zip"}, "downloaded": 15049734, "description": "

    Over 12 MILLIONS DOWNLOADS and near PERFECT rating out of 200 REVIEWS.
    \nEasily Sort Posts and Custom Post Types with Drag-and-Drop

    \n

    Take full control of your post order with a powerful plugin that lets you effortlessly reorder posts and custom post types using a simple drag-and-drop interface.

    \n

    Customize the order directly from the default WordPress post archive list or use the dedicated Re-Order interface, which displays all available items for easy management. Whether you’re working with default posts or custom post types, organizing your content has never been easier.

    \n

    Usage

    \n

    This plugin was designed to be user-friendly, ensuring that anyone can easily use its sorting feature, regardless of their WordPress experience:

    \n
      \n
    • Install the plugin via the “Install Plugins” interface or by uploading the post-types-order folder to the /wp-content/plugins/ directory.
    • \n
    • Activate the Post Types Order plugin.
    • \n
    • A new settings page will be added under Settings > Post Types Order. Visit this page and save the options for the first time.
    • \n
    • With the AutoSort option enabled, no code changes are needed, the plugin will automatically apply the customized post order.
    • \n
    • Use the Re-Order interface, available for every non-hierarchical custom post type, to change the post order as needed.
    • \n
    • For sorting posts via code, include ‘orderby’ => ‘menu_order’ within the custom query arguments. For more details, visit this guide Sample Usage
    • \n
    \n

    Example of Usage

    \n\n

    As you can see, reordering posts is as simple as dragging and dropping, with the changes instantly reflected on the front end.

    \n

    If the post order doesn’t update on your site, it could be due to one of two reasons: either there was a mistake during setup, or your theme/plugin is using a custom query that doesn’t follow WordPress Codex standards. But don’t worry—we’re here to help! You can report the issue in the forum, where many users are happy to assist, or you can contact us directly.

    \n

    If you encounter any problems with the plugin, feel free to reach out via the forum or contact us directly through our support page, and we’ll take a look.

    \n

    Need advanced features ?

    \n

    For advanced features and functionality, check out the extended version of this plugin at Advanced Post Types Order
    \n * Hierarchically post types order
    \n * Manual Drag & Drop / Automatic Sorting
    \n * Specify exact area where to apply through conditionals
    \n * Advanced query interface filtering and complex sorts including multiple post types and taxonomies
    \n * Posts Order by Custom Taxonomies
    \n * Enhanced Interface, List / Grid View
    \n * Allow Interface Filters (Categories, Dates, Search etc)
    \n * Post Types Thumbnails
    \n * Advanced query usage
    \n * MultiSite Network Support, WPML, Polylang, WooCommerce, WP E-Commerce, Platform Pro, Genesis etc
    \n * WPML 100% compatibility with sort synchronization across languages
    \n * Mobile Touch Drag & Drop Ready
    \n * Sort interfaces through admin and front end
    \n * Pagination for sort lists
    \n * Free Updates
    \n * Free Support

    \n

    This plugin is developed by Nsp-Code

    \n

    Localization

    \n

    Would you like to contribute a translation in your language? Please check at https://translate.wordpress.org/projects/wp-plugins/post-types-order

    \n

    There isn’t any Editors for your native language on plugin Contributors? You can help to moderate! https://translate.wordpress.org/projects/wp-plugins/post-types-order/contributors

    \n", "donate_link": "", "num_ratings": 292, "screenshots": {"1": {"src": "https://ps.w.org/post-types-order/trunk/screenshot-1.png?rev=3366526", "caption": "

    The ReOrder interface through which the sort can be created.

    "}, "2": {"src": "https://ps.w.org/post-types-order/trunk/screenshot-2.png?rev=3366526", "caption": "

    Sort can be managed within default WordPress post type interface.

    "}}, "support_url": "https://wordpress.org/support/plugin/post-types-order/", "contributors": {"tdgu": {"avatar": "https://secure.gravatar.com/avatar/33cd2778642a08ed5f692859713c051513a5281d1b850401f80408ba435c84cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tdgu/", "display_name": "Maya"}, "nsp-code": {"avatar": "https://secure.gravatar.com/avatar/b961b2e017c9707e4ba2b2d40dbb79756c50cbea5fb9b95ef2985fedd5ddc54d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nsp-code/", "display_name": "nsp-code"}}, "last_updated": "2025-09-23 1:18pm GMT", "preview_link": "https://wordpress.org/plugins/post-types-order/?preview=1", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/post-types-order.zip", "author_profile": "https://profiles.wordpress.org/nsp-code/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    Make sure you get the latest version.

    "}, "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-f875-70b2-9563-852e7404a667", "name": "Post Types Order", "slug": "post-types-order", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1758633480, "version": "2.4"}, "support_threads": 3, "requires_plugins": [], "short_description": "Sort posts and custom post type objects using a drag-and-drop, sortable JavaScript AJAX interface, or through the default WordPress dashboard", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-667e-72d7-a86e-4b34703c9fd2', 'premium-addons-for-elementor', 'Premium Addons for Elementor', '90+ Elementor widgets and 580+ templates. It includes elements like Nav Mega Menu, Carousel and Blog, WooCommerce widgets, Display Conditions.', '

    Supercharge your Elementor Page Builder with 90+ highly customizable addons and widgets, 550+ pre-made templates that will give you the ability to build sophisticated websites in less time with no coding required. Both Elementor and Premium Addons plugins take your WordPress website to the next level.

    -

    Check The Widgets & Addons Demo Pages

    -

    Useful Links

    -

    Support | Docs | Video Tutorials | Facebook Group | Upgrade to Pro

    -

    New: Image Carousel Option

    -

    We have recently added Source option in our Premium Carousel widget which helps you to create an image carousel/slider in a second just by selecting the images you want from site’s media library.

    -

    New: Performance and Speed Improvements

    -

    Premium Addons for Elementor is now much faster than ever. Only the required JS files will be loaded on your page to boost your page loading speed and site performance. All the editor loading issues have been fixed to make your site faster and minimize the time it takes for Elementor editor to load.

    -

    New: Liquid Glass Addon

    -

    Select between 6 attractive liquid glass and glassmorphism effects to be applied on any Elementor widget or container. It has also been added to be applied on specific parts inside our elements. Check it out now!.

    -

    New: WooCommerce Mini-Cart and Categories Listing Widgets

    -

    This powerful widget allows your customers to view the products in their shopping cart, change the quantity, remove items and check the total amount without leaving the page. We have also released Woo Categories widget to showcase your Woo categories in four neat skins. Check from here and here.

    -

    New: Mobile Nav Menu Widget

    -

    Create a neat mobile menu on your website with just few click with this powerful widget. You can set the click action of each menu item to a link or to open an off-canvas content. Check it out now!.

    -

    New: AJAX Search Form Widget

    -

    The ultimate solution to add a search form widget on Elementor websites. Customize the search results, add pagination or carousel and select between three different neat skins. Check it out now!.

    -

    Animated Shape Divider Addon

    -

    Add animated shape dividers for Elementor flexbox containers. You can select between 40+ shape dividers or use a custom SVG code to add your own divider. Check it out now!.

    -

    Advanced Media Carousel Widget

    -

    You can now create carousel using images, videos, Elementor templates to create the carousel you want. Select between four animations and dozens of customization options. Check it out now!.

    -

    Magazine Bundle

    -

    Smart Post Listing, Weather, World Clock, News Ticker, Tags Cloud and Recent Posts Notification widgets newly added to create the magazine website you ever dreamed. Check it out now!.

    -

    Elementor Navigation/Mega Menu Widget

    -

    Now, you build outstanding navigation menus and mega menus using Premium Navigation/Mega Menu Widget which allows you to select between four different layouts with dozens of options to create a responsive menu. Check it out now!.

    -

    Display Conditions

    -

    Premium Addons is proudly offering you a professional way to manage your website content with specific conditions which is perfect for marketers and eCommerce websites. You can show/hide content dynamically based on location, browser, operating system, user role, URL parameters, device type, Woocommerce display conditions such as WooCommerce product and WooCommerce shopping cart data, ACF fields, etc. Check the demo page

    -

    WooCommerce Products Listing widget

    -

    Show off your products in an elegant way using Premium Woo Products Widget that comes with unlimited customization options. Check the demo page

    -

    Equal Height Feature

    -

    Now, you can make your columns, widgets or any selector you want the same height with just ONE click using Equal Height feature in container settings -> Advanced tab.

    -

    Pre-made Container and Page Templates

    -

    NEW: Ever-growing Container/Page Templates Library Available on both Premium Addons Free and PRO versions. Browse, preview, and insert the template you like in your page/post with just ONE click. You can also select to insert the templates without media files (images, videos, etc.) to prevent overloading your WordPress Media Library with large files.

    -

    Lottie Animations Integration

    -

    You can now use Lottie Animations in ALL our widgets. Whatever widget that have an image or icon option now have also the option to add a Lottie animation. Lottie animations are open source, lightweight and available for free, Use them now to make your Elementor pages more eye-catching.

    -

    Post and Page Duplicator

    -

    Duplicate any post, page or template on your website with just ONE click. Check the documentation article from here.

    -

    Modular & Lightweight

    -

    Premium Addons for Elementor is fully modular. You can enable/disable specific elements to prevent overloading your website with code you will not actually use which helps your website have a blazing fast performance.

    -

    WPML Ready

    -

    You can use Premium Addons to build multilingual websites easily as our plugin is 100% compatible with WPML.

    -

    Fully Responsive & Cross Browser Ready

    -

    Each widget and addon has been tested on different screen sizes, mobile devices, and tablets keeping in mind to add special responsive controls for the tricky widgets and addons we create. We always test Premium Addons on BrowserStack to make sure that everything is stable.

    -

    Editor Panel Not Loading

    -

    How to resolve Elementor editor panel loading issue when Premium Addons is active.

    -

    Widgets & Addons Included

    -

    Content Widgets

    -
      -
    • Carousel Widget (FREE): Create a slider of any Elementor content.
    • -
    • -

      Blog Widget (FREE): Showcase posts or any custom post type in 5 neat skins.

      -
    • -
    • -

      AJAX Search Widget (FREE): Add search form to your website with custom search query.

      -
    • -
    • -

      Smart Post Listing Widget (PRO): Create any posts layout you want using this widget. You can use it to create any grid layout to show your posts or any custom post type on your website.

      -
    • -
    • -

      World Clock Widget (FREE): This widget helps you to show time from any place. You can use it to show analog/digital clock.

      -
    • -
    • -

      Weather Widget (FREE): Weather widget is useful for showing weather forecast data by city name or custom coordinates. You can select between three neat layouts with dozens of customization options.

      -
    • -
    • -

      News Ticker Widget (FREE): Show your posts in an attractive way using this news ticker widget. Select between four different layouts. You can also use the widget to show Gold, Stock and Currencies prices.

      -
    • -
    • -

      Textual Showcase Widget (FREE): Elevate your text into stunning visual art with Elementor Textual Showcase. Experiment with Text, Images, Font Awesome Icons, SVG Draw, and Lottie Animations to craft eye-catching designs. Engage your audience by making your words move, fade, and transform dynamically, leaving a lasting impression.

      -
    • -
    • -

      Tags Cloud Widget (FREE): Showcase tags and categories as cloud, sphere, labeled.

      -
    • -
    • -

      Recent Posts Notification Widget (FREE): This widget helps you to show a notification icon on your website to show the latest posts that your website users have not seen yet.

      -
    • -
    • -

      Google Maps Widget (FREE): Advanced Google Maps Widget comes with features like adding multiple markers, custom skins, and much more options.

      -
    • -
    • Team Members Widget (FREE): Very good widget to list team members, co-workers, etc. Team Members Widget comes with many customization options.
    • -
    • Tabs Widget (PRO): Create both Vertical and Horizontal tabs with tons of styling features.
    • -
    • Content Switcher (PRO): Present multiple content in a smart way.
    • -
    • Animated Text Widget (FREE): The animated Fancy Text Widget comes with very useful options to help you create attractive marketing messages.
    • -
    • Heading Widget (FREE): Heading Widget has many customization options and ready-made heading styles.
    • -
    • Dual Heading Widget (FREE): Create a headline with 2 different unique styles.
    • -
    -

    Image & Video Widgets

    -
      -
    • Site Logo Widget (PRO): Create an attractive logo for your brand using an image, SVG shape, or Lottie Animation with tens of customization options.
    • -
    • Media Gallery Widget (FREE): Highly customizable gallery widget that can be used for creating attractive looking image galleries and portfolios.
    • -
    • Advanced Media Carousel Widget (FREE): Create advanced carousel using images, videos or Elementor templates.
    • -
    • Image Scroll Widget (FREE): Allows you to represent your images in a brand new yet attractive way.
    • -
    • Image Comparison Widget (PRO): Create vertical or horizontal image comparisons easily using this amazing widget.
    • -
    • Image Hotspots Widget (PRO): The only Image Hotspots Widget with 100% freehand design experience. Add hotspots to your image using mouse drag n’ drop.
    • -
    • Image Layers Widget (PRO): Combine images, Lottie animations and texts.
    • -
    • Image Accordion Widget (PRO): Create eye-catching Image Accordions in both vertical and horizontal orientations.
    • -
    • Video Box Widget (FREE): Bring videos from YouTube, Vimeo, Dailymotion, or upload your own using Video Box Widget. The widget comes with many customization features.
    • -
    -

    Container Addons & Widgets

    - -

    Off-Grid Widgets

    -
      -
    • Modal Box Widget (FREE): All purpose modal box widget with the ability to use Elementor Templates and many other options.
    • -
    • Alert Box Widget (PRO): Show a popups, GDPR alerts and much more with this handy widget from Premium Addons.
    • -
    • Off-canvas Widget (PRO): Another off-canvas widget allows you to slide in a container from any direction with a trigger.
    • -
    • Preview Window Widget (PRO): Very clever way to show more data in less content area.
    • -
    -

    Social Reviews & Testimonials Widgets

    -
      -
    • Testimonials Widget (FREE): The modern Testimonials Widget is available with many customization options. It can be used with Carousel Widget to create testimonials carousel.
    • -
    • Facebook Reviews Widget (PRO): This widget allows you to show off your Facebook Reviews on your website.
    • -
    • Google Reviews Widget (PRO): Show your business’s latest Google Reviews right on your webpage.
    • -
    • Yelp Reviews Widget (PRO): Show your business’s Yelp Reviews in your website pages with this useful widget.
    • -
    -

    Blurbs & CTA Widgets

    -
      -
    • Bullet List Widget (FREE): Create a bullet list with icons, images, and text tags beside Lottie animations.
    • -
    • Countdown Widget (FREE): Create sense of urgency with this widget. It’s perfect for under construction pages, events, sale items, etc.
    • -
    • Banner Widget (FREE): Animated and interactive Banner Widget comes with multiple styles and customization features.
    • -
    • Button Widget (FREE): Advanced Button Widget comes with lots of interactive animation, styling options, and onClick event option.
    • -
    • Image Button Widget (FREE): Image Button Widget is a unique element that can be used for creative and innovative call to action ideas.
    • -
    • 3D Hover Box Widget (PRO): Comes with 8 cool 3D interactive effects.
    • -
    • Icon Box Widget (PRO): An advanced Icon Box Widgetwith endless customization options.
    • -
    • iHover Widget (PRO): The popular iHover Widget with various interactive animations and styling options.
    • -
    • Unfold Widget (PRO): Advanced way to fit long text in small area. Unfold Widget is a great trick as it will make your layout design look better.
    • -
    -

    Social Feed Widgets

    -
      -
    • Pinterest Feed Widget (FREE): Get pins and boards from your Pinterest account and show them on your website. Select between three layouts and four skins.
    • -
    • TikTok Feed Widget (FREE): Get feed from your TikTok account and show them on your website. Advanced filtering options, three layouts and three skins.
    • -
    • Facebook Feed Widget (PRO): Show your Facebook Feed directly inside your website.
    • -
    • Twitter Feed Widget (PRO): Display your Twitter Feed on your website pages.
    • -
    • Instagram Feed Widget (PRO): Show your Instagram photos right on your webpage.
    • -
    • Behance Feed Widget (PRO): Show off your amazing portfolio projects using Behance Feed Widget.
    • -
    -

    Tables, Charts & Anything Data Widgets

    -
      -
    • Progress Bar Widget (FREE): The most advanced Progress Bar Widget comes with multiple labels option.
    • -
    • Pricing Table Widget (FREE): Highly customizable Pricing Table Widget with tons of styling options.
    • -
    • Charts Widget (PRO): The only advanced Charts Widget is available in Premium Addons. Create Line Chart, Bar Chart, Doughnut Chart, Radar Chart, and more.
    • -
    • Tables Widget (PRO): Create sophisticated tables with unique styling and interactivity options.
    • -
    • Counter Widget (FREE): Show your facts & figures with Counter Widget.
    • -
    -

    Contact Widgets

    - -

    Design Widgets

    -
      -
    • Divider Widget (PRO): Design beautiful dividers with this unique widget.
    • -
    • Image Separator Widget (FREE): Add an Image Separator between containers with this handy yet fully responsive widget.
    • -
    -

    Support & Documentation

    -
      -
    • Documentation Search here first if you need to know how a widget or feature works or for troubleshooting.
    • -
    • Video Tutorials This playlist includes many widgets’ video tutorials. We are adding more regularly.
    • -
    • Facebook Group A great place to get help or ask a question about Premium Addons.
    • -
    • Community Forums Another good place to search for answers or post your own question.
    • -
    • Support Ticket System We also welcome Free users’ issues which require access credentials to check.
    • -
    -

    Check Premium Addons PRO

    -

    Love Premium Addons User? rate us on WordPress 🙂

    -', '4.11.45', 'Leap13', '5.0', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.45.zip', '2018-01-09 00:00:00+00', '2025-10-28 12:39:00+00', 'https://profiles.wordpress.org/leap13/', 98, 1649, 6, 6, 700000, 53624337, 'https://premiumaddons.com', 'https://premiumaddons.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme', 'commercial', 'https://my.leap13.com/contact-support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support', 'https://wordpress.org/support/plugin/premium-addons-for-elementor/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Premium Addons for Elementor", "slug": "premium-addons-for-elementor", "tags": {"widgets": "widgets", "elementor": "elementor", "elementor-addons": "elementor addons", "elementor-elements": "elementor elements", "elementor-templates": "elementor templates"}, "added": "2018-01-09", "icons": {"1x": "https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=2421900", "svg": "https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=2421900"}, "author": "Leap13", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/premium-addons-for-elementor/assets/banner-772x250.png?rev=3174756", "high": "https://ps.w.org/premium-addons-for-elementor/assets/banner-1544x500.png?rev=3174756"}, "ratings": {"1": 16, "2": 6, "3": 6, "4": 40, "5": 1581}, "version": "4.11.45", "homepage": "https://premiumaddons.com", "requires": "5.0", "sections": {"faq": "\n
    \nIs this a standalone Plugin?\n\n

    \n

    No. You cannot use Premium Addons without Elementor.

    \n

    \n
    \nDoes it work with any WordPress theme?\n\n

    \n

    Yes, it will work with any WordPress theme as long as you are using Elementor as a page builder.

    \n

    \n
    \nWill this plugin slow down my website speed?\n\n

    \n

    Premium Addons is light weight and we also gave you the control to enable only the elements you actually use on your website for faster performance.

    \n

    \n
    \nIs this plugin 100% Ads Free?\n\n

    \n

    Premium Addons is 100% Ads Free, Ads can only be detected from Youtube videos, that can be added to Premium Widgets ( eg. Modal Box, Video Box, Blog, etc.)

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy (fedorveuser) on October 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    There is some useful features.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Image Comparison Widget problem

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jhurtarte on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have a Premium Addons license. I had a minor issue using one of the widgets (Image Comparison Widget). I reported it to technical support, and they responded very quickly. They added a snippet of code (HTML), and the problem was resolved. Thanks to Abonob for your timely support.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Power-packed features for Pro WordPress sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bobsisf on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin that significantly enhances the free Elementor page builder. It offers a vast collection of over 60 customizable widgets and a large library of pre-made templates, enabling you to create professional and dynamic websites easily. The plugin is well-optimized for speed and includes unique features like Lottie animations and fancy text effects. It''s a reliable and regularly updated tool, perfect for anyone looking to expand their Elementor site''s capabilities. Perfect for creating professional WordPress sites efficiently. Highly recommended.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So professionals

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Stéphane (neotheps) on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Karima was helping me to solve a problem that I couldn''t do alone and was so attentive.
    Thanks again

    \n\n\n\n

    Stéphane

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy egholami on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s nice.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Flynova (flynova) on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A must-have plugin for development with Elementor!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Outstanding support and lots of Widgets

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy anakdelgado on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Premium Addons has tons of useful widgets that make building pages super easy. I had a small issue with video loading and their support team helped me fix it quickly. Really impressed!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ventima9900 on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Perfect

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A must have plugin for development with Elementor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bhanuka (bhanukaw) on August 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin offers a number of useful components for Website website development with Elementor.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This Good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rolex20 on August 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this plugin is good

    \n
    \n
    \n", "changelog": "

    4.11.45 – 28/10/2025

    \n
      \n
    • New: Added Discount Reveal Effect for price in Pricing Table widget.
    • \n
    • New: Added Allow Backorders option in Woo Mini Cart widget.
    • \n
    • Tweak: Improved Tags Cloud and Countdown widgets for better performance.
    • \n
    • Tweak: Improved Templates Live Editor to be able to edit any select template.
    • \n
    • Fixed: Product image is not showing in correct height in Woo Products Listing widget Quick View popup.
    • \n
    • Fixed: Layout #2 issue in Get Videos from Channel/Playlist option in Video Box widget.
    • \n
    \n

    4.11.44 – 20/10/2025

    \n
      \n
    • Tweak: Added Close Delay option in Woo Mini Cart widget.
    • \n
    • Tweak: Improved styling for Demo/Templates buttons on the editor for better UI.
    • \n
    \n

    4.11.43 – 16/10/2025

    \n
      \n
    • Tweak: Added transition for hover background in Image Button widget.
    • \n
    • Tweak: Added background image option for digits in Countdown widget.
    • \n
    • Tweak: Added Icon Background control for icons in Bullet List widget.
    • \n
    \n

    4.11.42 – 13/10/2025

    \n
      \n
    • Fixed: Security issue in TikTok Feed widget handler.
    • \n
    • Fixed: Page Publish button not detecting Premium Templates insert.
    • \n
    \n

    4.11.41 – 05/10/2025

    \n
      \n
    • New: Added Order controls in Pricing Table to allow content reordering.
    • \n
    • Tweak: Improve Button and Image Buttons widget performance by removing duplicate Icon Spacing control.
    • \n
    • Tweak: Added Media Info option for videos in Advanced Carousel widget.
    • \n
    • Fixed: Link not working in Animated Text widget.
    • \n
    \n

    4.11.40 – 28/09/2025

    \n
      \n
    • New: Gallery option in Carousel widget to create image carousel much easier.
    • \n
    • Tweak: Code improvements for better performance.
    • \n
    • Fixed: SVG Draw not working when draw option is disabled.
    • \n
    • Fixed: Link not working in Animated Text widget.
    • \n
    \n

    4.11.39 – 24/09/2025

    \n
      \n
    • Tweak: Load JS libraries only when needed for Contact Form, Dual Heading, Lottie Animation, Media Grid, News Ticker, Mega Menu and SVG Draw widgets.
    • \n
    • Fixed: Close Icon not showing in Recent Posts Notification widget.
    • \n
    • Fixed: Bullet List alignment issue.
    • \n
    \n

    4.11.38 – 22/09/2025

    \n
      \n
    • New: Load JS libraries only when needed to improve loading speed.
    • \n
    • Fixed: Returning Visitor Display Condition not working correctly.
    • \n
    • Fixed: View Cart string not being translated in Woo Mini Products Listing widget.
    • \n
    \n

    4.11.37 – 17/09/2025

    \n
      \n
    • New: Added Slide Bullet and Translate Bullet effects in Bullet List widget.
    • \n
    • Tweak: Added Sort By select in Premium Templates.
    • \n
    • Tweak: Improved compatibility between Bullet List, Weather Forecast and WPML translation plugin.
    • \n
    • Fixed: Accessibility issue in Advanced Carousel widget.
    • \n
    • Fixed: Gradient Effect not working in Bullet List widget.
    • \n
    \n

    4.11.36 – 15/09/2025

    \n
      \n
    • Tweak: Improved compatibility between Dynamic Assets feature and LiteSpeed caching plugin.
    • \n
    • Tweak: Compatibility with Elementor v3.32.
    • \n
    \n

    4.11.35 – 11/09/2025

    \n
      \n
    • Tweak: Code improvements in Tooltips addon, Advanced Carousel and Textual Showcase widgets for better performance and faster loading speed.
    • \n
    • Tweak: Make arrows in Carousel widget accessible via keyboard.
    • \n
    • Fixed: Thin Circle navigation dot icon not working in Carousel widget.
    • \n
    \n

    4.11.34 – 08/09/2025

    \n
      \n
    • Tweak: Code improvements in all widgets for better performance and faster loading speed.
    • \n
    \n

    4.11.33 – 08/09/2025

    \n
      \n
    • Tweak: Code improvements in Dynamic Assets feature for better performance and faster loading speed.
    • \n
    • Tweak: Loading speed improvements in Video Box and News Ticker widgets.
    • \n
    \n

    4.11.32 – 03/09/2025

    \n
      \n
    • Tweak: Code improvements in Animated Shape Divider addon for better performance and faster loading speed.
    • \n
    \n

    4.11.31 – 02/09/2025

    \n
      \n
    • Tweak: Added CSS ID option in Mobile Menu widget.
    • \n
    • Tweak: Improved RTL compatibility of Woo Mini Cart widget.
    • \n
    \n

    4.11.30 – 26/08/2025

    \n
      \n
    • Tweak: Code improvements for better performance.
    • \n
    \n

    4.11.29 – 19/08/2025

    \n
      \n
    • Tweak: Improved RTL compatibility of Woo Products, Woo Categories, Blog widgets.
    • \n
    • Tweak: Improved compatibility between Woo CTA and WPML translation plugin.
    • \n
    \n

    4.11.28 – 14/08/2025

    \n
      \n
    • Tweak: Improved compatibility between News Ticker and WPML translation plugin.
    • \n
    • Fixed: Carousel widget not showing templates in some cases.
    • \n
    • Fixed: Info window for Google Maps widget marker not positioned correctly on Chrome.
    • \n
    \n

    4.11.27 – 07/08/2025

    \n
      \n
    • Tweak: Improved RTL compatibility of Recent Posts Notification, News Ticker and Image Scroll widgets.
    • \n
    • Fixed: Appearance option not working on touch devices in Carousel widget.
    • \n
    \n

    4.11.26 – 06/08/2025

    \n
      \n
    • Tweak: Compatibility with Elementor v3.31.
    • \n
    • Tweak: Styling improved for Pre-made Templates button.
    • \n
    \n

    4.11.25 – 05/08/2025

    \n
      \n
    • Tweak: Added button to filter pre-made blocks by widget.
    • \n
    • Fixed: Mini Cart strings not showing in Loco translation plugin.
    • \n
    \n

    4.11.24 – 30/07/2025

    \n
      \n
    • Tweak: Premium Templates performance improvements.
    • \n
    • Fixed: PHP warnings when image has not alt attribute in Media Grid widget.
    • \n
    \n

    4.11.23 – 29/07/2025

    \n
      \n
    • Tweak: Equal Height in Woo Products widget.
    • \n
    • Tweak: Improved RTL compatibility of Weather Forecast widget.
    • \n
    • Tweak: Added Margin control for arrows in Carousel widget .
    • \n
    • Fixed: Carousel arrows conflict in Weather Forecast widget.
    • \n
    • Fixed: PHP warning when running setup wizard for first time.
    • \n
    \n

    4.11.22 – 24/07/2025

    \n
      \n
    • Tweak: Improved RTL compatibility of World Clock widget.
    • \n
    \n

    4.11.21 – 21/07/2025

    \n
      \n
    • Tweak: Dashboard pages loading speed improved by unloading unnecessary PHP files.
    • \n
    \n

    4.11.20 – 15/07/2025

    \n
      \n
    • Tweak: Editor loading speed improved by removing some JS files.
    • \n
    • Tweak: Added two more shadow presets in Liquid Glass addon.
    • \n
    \n

    4.11.19 – 14/07/2025

    \n
      \n
    • Tweak: Added Coupon Remove button in Mini Cart widget.
    • \n
    • Tweak: Added Tax Label option in Mini Cart widget.
    • \n
    • Tweak: Improved RTL compatibility in Tags Cloud widget.
    • \n
    • Tweak: Added option to search using Title or Description in AJAX Search widget.
    • \n
    • Fixed: Fatal error in Media Grid widget when mb_ PHP extension is not installed.
    • \n
    \n

    4.11.18 – 09/07/2025

    \n
      \n
    • Fixed: Google Maps markers not showing after v4.11.17
    • \n
    • Fixed: PHP warning when SVG Draw widget is used while Dynamic Assets feature is enabled.
    • \n
    \n

    4.11.17 – 03/07/2025

    \n
      \n
    • Fixed: Display Conditions showing code after v4.11.16.
    • \n
    \n

    4.11.16 – 03/07/2025

    \n
      \n
    • Tweak: Added “DC” icon when Display Condition is enabled.
    • \n
    • Tweak: Setup Wizard improved for better user experience.
    • \n
    • Fixed: Returning Visitor Display Condition causes unnecessary cookies to be stored.
    • \n
    \n

    4.11.15 – 24/06/2025

    \n
      \n
    • Tweak: Improved compatibility with RTL sites.
    • \n
    • Tweak: Plugin size decreased by improving Dynamic CSS generating.
    • \n
    • Fixed: Effect #8 not working on RTL in Banner widget.
    • \n
    • Fixed: Style #3 not working on RTL in Team Members widget.
    • \n
    • Fixed: Horizontal Direction not working on RTL in Image Scroll widget.
    • \n
    \n

    4.11.14 – 18/06/2025

    \n
      \n
    • New: Introducing Elementor Liquid Glass Addon – here.
    • \n
    • Tweak: Added Arrows Position option for carousel arrows in Testimonials widget.
    • \n
    • Fixed: Free shipping progress bar not working on Chrome in Woo Mini Cart widget.
    • \n
    \n

    4.11.13 – 04/06/2025

    \n
      \n
    • Tweak: Improved Countdown widget JS code.
    • \n
    • Tweak: Hide Google Maps until the API JS is loaded.
    • \n
    \n

    4.11.12 – 03/06/2025

    \n
      \n
    • Tweak: Added Align Submenu to Top option in Mega Menu widget.
    • \n
    • Tweak: Markers Clustering controls improved in Google Maps widget.
    • \n
    • Fixed: Fatal error when plugin is installed before Elementor.
    • \n
    \n

    4.11.11 – 25/05/2025

    \n
      \n
    • Fixed: Fatal error after v4.11.11.
    • \n
    \n

    4.11.10 – 25/05/2025

    \n
      \n
    • Fixed: Icons issue in Mega Menu widget since v4.11.9.
    • \n
    \n

    4.11.9 – 02/06/2025

    \n
      \n
    • Tweak: Added Slide Menu direction option in Mega Menu widget.
    • \n
    • Tweak: Submenu Trigger option in Mega Menu widget.
    • \n
    • Fixed: Error while saving Elementor templates after Elementor v3.29.
    • \n
    • Fixed: Icons from custom icons are not showing in some widgets.
    • \n
    • Fixed: Security issue in Coutdown widget.
    • \n
    \n

    4.11.8 – 17/05/2025

    \n
      \n
    • Fixed: Fatal error with ‘Page’ display condition after v4.11.7.
    • \n
    \n

    4.11.7 – 15/05/2025

    \n
      \n
    • Tweak: New layouts added to Woo Mini Cart widget.
    • \n
    • Tweak: Cross-sells carousel option added to Woo Mini Cart widget.
    • \n
    • Tweak: Added Language option for units in Countdown widget.
    • \n
    • Tweak: Added Profile Link option for member image/name in Team Members widget.
    • \n
    • Fixed: Layout broken in Woo Mini Cart widget in some cases.
    • \n
    • Fixed: Display conditions ‘Page’ doesn’t detect the shop page ID.
    • \n
    \n

    4.11.6 – 30/04/2025

    \n
      \n
    • Fixed: Prevent plugin rating banner from showing on each update.
    • \n
    • Fixed: Plugin causes slow dashboard loading in some cases.
    • \n
    \n

    4.11.5 – 24/04/2025

    \n
      \n
    • Fixed: All global features are disabled when setup wizard is completed.
    • \n
    • Fixed: Pro global feature name is not showing in setup wizard.
    • \n
    \n

    4.11.4 – 23/04/2025

    \n
      \n
    • New: Introducing Setup Wizard for easier plugin settings customization.
    • \n
    • Tweak: Compatibility between Woo Products widget and BeRocket filtering plugin.
    • \n
    • Fixed: Console error in Mobile Menu widget.
    • \n
    • Fixed: Layout broken with Style 7 in Heading widget.
    • \n
    \n

    4.11.3 – 16/04/2025

    \n
      \n
    • Tweak: Added Fill Color Speed option in SVG Draw widget.
    • \n
    • Fixed: Fatal error in Pinterest Feed widget when Board ID option is empty.
    • \n
    • Fixed: HTML markup issue in Heading widget.
    • \n
    • Fixed: Tooltips addon not working when Position control value has spaces in it.
    • \n
    \n

    4.11.2 – 08/04/2025

    \n
      \n
    • Tweak: Translate date based on site’s current language in Pinterest and TikTok Feed widgets.
    • \n
    \n

    4.11.1 – 07/04/2025

    \n
      \n
    • Tweak: Premium Blog HTML markup improved for better accessibility.
    • \n
    • Fixed: Templates not showing in Mega Menu when Hide Mobile Menu option is enabled.
    • \n
    • Fixed: Carousel arrows not showing in AJAX Search widget.
    • \n
    \n

    4.11.0 – 30/03/2025

    \n
      \n
    • Tweak: Added Delay control in Lottie animation widget.
    • \n
    • Tweak: Vertical Scroll widget behavior on Elementor editor.
    • \n
    • Tweak: Removed nofollow link attribute for links in Google Maps widget markers.
    • \n
    • Tweak: Removed Frontpage option from Static Page in Display Conditions addon.
    • \n
    • Tweak: Action control changed to show when Query is set to Posts in AJAX Search widget.
    • \n
    \n

    4.10.90 – 25/03/2025

    \n
      \n
    • Tweak: Compatibility with Google Maps AdvancedMarkers API in Google Maps widget.
    • \n
    • Tweak: Code improvements for better performance.
    • \n
    • Tweak: Added Maximum Height option for Quick View in Woo Products widget.
    • \n
    • Fixed: Elementor templates in Mega Menu widget can’t be edited.
    • \n
    • Fixed: Stock message in Woo Mini Cart widget can’t be translated.
    • \n
    • Fixed: Styling issue in Progress Bar widget on small screens.
    • \n
    \n

    4.10.89 – 17/03/2025

    \n
      \n
    • Tweak: Code improvements for better performance.
    • \n
    • Fixed: Dynamic Assets Generate not working in some cases.
    • \n
    \n

    4.10.88 – 10/03/2025

    \n
      \n
    • Tweak: Code improvements for better performance.
    • \n
    • Fixed: Image/Content Display option is not responsive in Woo Products Listing widget.
    • \n
    • Fixed: Fatal error caused by Dynamic Assets Generate.
    • \n
    \n

    4.10.87 – 27/02/2025

    \n
      \n
    • Tweak: Added option to use SVG icons in Mega Menu widget.
    • \n
    • Tweak: Improved compatibility between Woo CTA button widget and Woocommerce Subscriptions plugin.
    • \n
    • Fixed: Some issues related to alignment in Global Tooltips addon.
    • \n
    • Fixed: Elementor Templates not working on editor in Global Tooltips addon.
    • \n
    • Fixed: Security issue in Lottie JavaScript file.
    • \n
    \n

    4.10.86 – 20/02/2025

    \n
      \n
    • Tweak: Show message when PHP memory/time limit are low to improve usability.
    • \n
    • Fixed: Restart option in Countdown Timer widget not working correctly.
    • \n
    \n

    4.10.85 – 16/02/2025

    \n
      \n
    • Tweak: Added notice in Mega Menu Settings popup for better UX and prevent conflicts.
    • \n
    \n

    4.10.84 – 16/02/2025

    \n
      \n
    • Tweak: Added Show Parent Terms Only option in Tags Cloud.
    • \n
    • Tweak: Improved Tags Cloud to count posts in child terms.
    • \n
    • Fixed: Layout breaks in some cases when Dynamic Assets feature is enabled.
    • \n
    \n

    4.10.83 – 12/02/2025

    \n
      \n
    • Tweak: Added option to control if mobile menu should be rendered in Mega Menu widget.
    • \n
    • Fixed: PHP warning in Woo CTA widget.
    • \n
    • Fixed: Floating Effects not updating correctly.
    • \n
    • Fixed: PHP warning when rendering SVG icons.
    • \n
    \n

    4.10.82 – 03/02/2025

    \n
      \n
    • Tweak: Aspect Ratio option in Video Box widget.
    • \n
    • Tweak: Code formatting for better security.
    • \n
    • Fixed: Submenus overlapping issue in Mega Menu widget.
    • \n
    \n

    4.10.81 – 30/01/2025

    \n
      \n
    • Fixed: Fatal error in Button widget after v4.10.80
    • \n
    \n

    4.10.80 – 29/01/2025

    \n
      \n
    • Tweak: Core improved to run editor faster.
    • \n
    • Tweak: Added Dismissible option in Modal Box widget.
    • \n
    • Fixed: PHP warning in Timezone option in Display Conditions addon.
    • \n
    • Fixed: PHP warning in Heading widget.
    • \n
    \n

    4.10.79 – 22/01/2025

    \n
      \n
    • Tweak: Load some CSS files only when needed to improve performance.
    • \n
    • Fixed: PHP warning in Location display condition.
    • \n
    • Fixed: Brokens CSS links showing in broken link checker.
    • \n
    \n

    4.10.78 – 15/01/2025

    \n
      \n
    • Tweak: Removed unnecessary PHP files to minimize plugin size.
    • \n
    • Fixed: Navigation arrows not showing when lightbox is set to Elementor in Media Grid widget.
    • \n
    \n

    4.10.77 – 13/01/2025

    \n
      \n
    • Tweak: Change active menu item on scroll in Mega Menu widget.
    • \n
    • Tweak: Show a notice when inserting a template fails.
    • \n
    • Tweak: Woo Products Listing widget improved on RTL sites.
    • \n
    • Fixed: Get videos from Playlist in Video Box widget not working with YouTube Reels.
    • \n
    \n

    4.10.76 – 06/01/2025

    \n
      \n
    • Tweak: Added the ability to activate filters in Blog widget from other pages.
    • \n
    • Fixed: SVG Draw widget causes scroll to top on iOS devices.
    • \n
    \n

    4.10.75 – 31/12/2024

    \n
      \n
    • Fixed: PHP warning in Shape Divider container addon.
    • \n
    \n

    4.10.74 – 30/12/2024

    \n
      \n
    • Fixed: Wrapper Link global addon not working in some cases.
    • \n
    • Fixed: Issues in AJAX Search widget.
    • \n
    \n

    4.10.73 – 26/12/2024

    \n
      \n
    • Tweak: Loading speed improved when Dynamic Assets feature is enabled.
    • \n
    • Fixed: Compatibility issues with WP-Optimize plugin.
    • \n
    • Fixed: Go to Search option not working in AJAX Search widget.
    • \n
    • Fixed: Carousel option not working in Team Members widget.
    • \n
    \n

    4.10.72 – 24/12/2024

    \n
      \n
    • Tweak: Improved loading speed of widgets contain Draw Icon option.
    • \n
    • Fixed: Cross Domain Copy/Paste All Content not working.
    • \n
    \n

    4.10.71 – 22/12/2024

    \n
      \n
    • Fixed: Elementor Transform effects not working for some widgets.
    • \n
    • Fixed: Controls for global controls not being added in correct tabs.
    • \n
    \n

    4.10.70 – 19/12/2024

    \n
      \n
    • Tweak: Improved compatibility with Optimize Markup Elementor feature.
    • \n
    • Tweak: SVG Draw Icon option improved for better loading speed.
    • \n
    • Fixed: Premium Templates button not showing when adding a new container.
    • \n
    • Fixed: PHP warnings in Animated Text widget.
    • \n
    • Fixed: Security issue in Mobile Menu widget.
    • \n
    \n

    4.10.69 – 15/12/2024

    \n
      \n
    • Tweak: SVG Draw Icon option improved in some widgets.
    • \n
    \n

    4.10.68 – 12/12/2024

    \n
      \n
    • Tweak: Added Usage Type option in plugin’s dashboard settings page.
    • \n
    • Tweak: Added VW size unit for some controls.
    • \n
    • Fixed: Lightbox icon is showing even when option is disabled in Advanced Carousel widget.
    • \n
    • Fixed: Issues in Dynamic Assets.
    • \n
    \n

    4.10.67 – 11/12/2024

    \n
      \n
    • Tweak: Premium Templates loading speed improved.
    • \n
    \n

    4.10.66 – 03/12/2024

    \n
      \n
    • Tweak: Added options to control Author Image size, border and border radius in Blog widget.
    • \n
    • Tweak: Added Wave Effect in Dual Heading widget.
    • \n
    • Tweak: Added On Page Exit Intent trigger in Modal Box widget.
    • \n
    \n

    4.10.65 – 25/11/2024

    \n
      \n
    • Tweak: Added Full Width Custom CSS Selector option in Mega Menu widget.
    • \n
    • Fixed: Alignment issue in animation #7 in Banner widget.
    • \n
    \n

    4.10.64 – 24/11/2024

    \n
      \n
    • Tweak: Improved Reveal effect in Animated Text widget.
    • \n
    • Fixed: Wrapper Link feature not working with anchor links.
    • \n
    • Fixed: PHP Warning due to white labeling options.
    • \n
    • Fixed: Huge spacing after animation end in vertical direction in Advanced Carousel widget.
    • \n
    \n

    4.10.63 – 13/11/2024

    \n
      \n
    • Tweak: Added List Padding control in Bullet List widget.
    • \n
    • Tweak: Added option to load boards dynamically in Pinterest Feed widget.
    • \n
    • Fixed: Premium Templates not being inserted in correct position.
    • \n
    • Fixed: Console JS error showing on the editor page.
    • \n
    • Fixed: Alignment option not working correctly on responsive devices in Bullet List widget.
    • \n
    \n

    4.10.62 – 30/10/2024

    \n
      \n
    • Tweak: Load JS code for Wrapper Link only when its used on page.
    • \n
    • Fixed: Icon Size not working on SVG code icon in News Ticker widget.
    • \n
    • Fixed: Admin notices appear again after they are dismissed.
    • \n
    \n

    4.10.61 – 27/10/2024

    \n
      \n
    • Tweak: Premium Templates loading speed improved.
    • \n
    • Tweak: Added Item Name option in Advanced Carousel widget.
    • \n
    • Fixed: ACF fields are not showing in Display Conditions.
    • \n
    • Fixed: Typing effect not working in Animated Text widget when used multiple times on page.
    • \n
    • Fixed: Media Grid widget shows the first image only in the lightbox.
    • \n
    \n

    4.10.60 – 22/10/2024

    \n
      \n
    • Fixed: PHP warning in Recent Posts Notification widget.
    • \n
    \n

    4.10.59 – 17/10/2024

    \n
      \n
    • Fixed: PHP warning Undefined variable $search.
    • \n
    \n

    4.10.58 – 17/10/2024

    \n
      \n
    • Tweak: Added Text Content Position in News Ticker widget.
    • \n
    • Fixed: Conflict between Global Tooltips addon and Premium Image Hotspots widget.
    • \n
    • Fixed: Blog widget not working correctly after 4.10.57.
    • \n
    \n

    4.10.57 – 15/10/2024

    \n
      \n
    • Deprecated: Enable Full Section Scroll on Touch Devices control in Vertical Scroll widget.
    • \n
    • Tweak: Global addons code refactored to minimize memory usage.
    • \n
    • Tweak: Animated Shape Divider addon code refactored to improve editor loading speed.
    • \n
    • Tweak: Premium Templates code refactored to improve site’s frontend loading speed.
    • \n
    • Fixed: Security issue in Display Conditions addon and Mega Menu widget.
    • \n
    • Fixed: View and Empty Cart translation issue in Woo Mini Cart widget.
    • \n
    • Fixed: Vertical Scroll widget causing scroll issues on touch devices.
    • \n
    • Fixed: Media Grid lightbox always show the first image since v4.10.55.
    • \n
    • Fixed: TikTok Feed widget throws PHP warning.
    • \n
    \n

    4.10.56 – 09/10/2024

    \n
      \n
    • Tweak: Dashboard settings tab loading speed improved.
    • \n
    • Tweak: Improve layout rendering in Mini Cart widget for better loading speed.
    • \n
    • Fixed: Compatibility issues with WPML translation plugin.
    • \n
    \n

    4.10.55 – 01/10/2024

    \n
      \n
    • Fixed: Issues with Slide-in WooCommerce cart and Mini Cart layout after v4.10.54.
    • \n
    \n

    4.10.54 – 30/09/2024

    \n
      \n
    • Tweak: Plugin performance and loading speed improved.
    • \n
    • Fixed: WooCommerce mini-cart template broken after v4.10.53.
    • \n
    \n

    4.10.53 – 26/09/2024

    \n
      \n
    • New: Added WooCommerce Mini Cart widget – here.
    • \n
    • Tweak: Compatibility with Elementor Elements Caching feature.
    • \n
    • Tweak: Added “Load Animation on Page Load/Scroll” for Animated Text widget.
    • \n
    • Fixed: Carousel arrows not showing in Mobile Menu widget.
    • \n
    • Fixed: Layout break when Load More Products button clicked in Woo Products Listing widget.
    • \n
    \n

    4.10.52 – 24/09/2024

    \n
      \n
    • Tweak: Added Highlighted Text Color control in AJAX Search widget.
    • \n
    • Tweak: Remove any unwanted generated files after plugin deactivation.
    • \n
    • Fixed: Links not working in Mobile Menu widget.
    • \n
    • Fixed: Skin #4 not working on RTL sites in Testimonials widget.
    • \n
    • Fixed: Social icons not showing in Team Members widget.
    • \n
    \n

    4.10.51 – 12/09/2024

    \n
      \n
    • Tweak: Added Play Inline option in Video Box widget.
    • \n
    • Tweak: Added Cluster Icon size control in Google Maps widget.
    • \n
    • Fixed: Conflict in Dynamic Assets Generate feature.
    • \n
    • Fixed: Items links not working in Advanced Carousel widget.
    • \n
    \n

    4.10.50 – 04/09/2024

    \n
      \n
    • Tweak: Added control to apply Excerpt Length option on posts with defined excerpt.
    • \n
    • Fixed: PHP warning for Display condition in Display Conditions feature.
    • \n
    • Fixed: Conflict between Stretch Section option and Carousel widget.
    • \n
    • Fixed: Layout broken in some cases with Dynamic Assets feature.
    • \n
    • Fixed: PHP warning in Global Tooltip addon.
    • \n
    \n

    4.10.49 – 27/08/2024

    \n
      \n
    • Tweak: Added option to control typography, border and background for quantity field in Woo CTA widget.
    • \n
    • Tweak: Added option to automatically redirect to cart page after product is added to cart in Woo CTA widget.
    • \n
    • Tweak: Handle errors when inserting a template including a disabled element.
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    Supercharge your Elementor Page Builder with 90+ highly customizable addons and widgets, 550+ pre-made templates that will give you the ability to build sophisticated websites in less time with no coding required. Both Elementor and Premium Addons plugins take your WordPress website to the next level.

    \n

    Check The Widgets & Addons Demo Pages

    \n

    Useful Links

    \n

    Support | Docs | Video Tutorials | Facebook Group | Upgrade to Pro

    \n

    New: Image Carousel Option

    \n

    We have recently added Source option in our Premium Carousel widget which helps you to create an image carousel/slider in a second just by selecting the images you want from site’s media library.

    \n

    New: Performance and Speed Improvements

    \n

    Premium Addons for Elementor is now much faster than ever. Only the required JS files will be loaded on your page to boost your page loading speed and site performance. All the editor loading issues have been fixed to make your site faster and minimize the time it takes for Elementor editor to load.

    \n

    New: Liquid Glass Addon

    \n

    Select between 6 attractive liquid glass and glassmorphism effects to be applied on any Elementor widget or container. It has also been added to be applied on specific parts inside our elements. Check it out now!.

    \n

    New: WooCommerce Mini-Cart and Categories Listing Widgets

    \n

    This powerful widget allows your customers to view the products in their shopping cart, change the quantity, remove items and check the total amount without leaving the page. We have also released Woo Categories widget to showcase your Woo categories in four neat skins. Check from here and here.

    \n

    New: Mobile Nav Menu Widget

    \n

    Create a neat mobile menu on your website with just few click with this powerful widget. You can set the click action of each menu item to a link or to open an off-canvas content. Check it out now!.

    \n

    New: AJAX Search Form Widget

    \n

    The ultimate solution to add a search form widget on Elementor websites. Customize the search results, add pagination or carousel and select between three different neat skins. Check it out now!.

    \n

    Animated Shape Divider Addon

    \n

    Add animated shape dividers for Elementor flexbox containers. You can select between 40+ shape dividers or use a custom SVG code to add your own divider. Check it out now!.

    \n

    Advanced Media Carousel Widget

    \n

    You can now create carousel using images, videos, Elementor templates to create the carousel you want. Select between four animations and dozens of customization options. Check it out now!.

    \n

    Magazine Bundle

    \n

    Smart Post Listing, Weather, World Clock, News Ticker, Tags Cloud and Recent Posts Notification widgets newly added to create the magazine website you ever dreamed. Check it out now!.

    \n

    Elementor Navigation/Mega Menu Widget

    \n

    Now, you build outstanding navigation menus and mega menus using Premium Navigation/Mega Menu Widget which allows you to select between four different layouts with dozens of options to create a responsive menu. Check it out now!.

    \n

    Display Conditions

    \n

    Premium Addons is proudly offering you a professional way to manage your website content with specific conditions which is perfect for marketers and eCommerce websites. You can show/hide content dynamically based on location, browser, operating system, user role, URL parameters, device type, Woocommerce display conditions such as WooCommerce product and WooCommerce shopping cart data, ACF fields, etc. Check the demo page

    \n

    WooCommerce Products Listing widget

    \n

    Show off your products in an elegant way using Premium Woo Products Widget that comes with unlimited customization options. Check the demo page

    \n

    Equal Height Feature

    \n

    Now, you can make your columns, widgets or any selector you want the same height with just ONE click using Equal Height feature in container settings -> Advanced tab.

    \n

    Pre-made Container and Page Templates

    \n

    NEW: Ever-growing Container/Page Templates Library Available on both Premium Addons Free and PRO versions. Browse, preview, and insert the template you like in your page/post with just ONE click. You can also select to insert the templates without media files (images, videos, etc.) to prevent overloading your WordPress Media Library with large files.

    \n

    Lottie Animations Integration

    \n

    You can now use Lottie Animations in ALL our widgets. Whatever widget that have an image or icon option now have also the option to add a Lottie animation. Lottie animations are open source, lightweight and available for free, Use them now to make your Elementor pages more eye-catching.

    \n

    Post and Page Duplicator

    \n

    Duplicate any post, page or template on your website with just ONE click. Check the documentation article from here.

    \n

    Modular & Lightweight

    \n

    Premium Addons for Elementor is fully modular. You can enable/disable specific elements to prevent overloading your website with code you will not actually use which helps your website have a blazing fast performance.

    \n

    WPML Ready

    \n

    You can use Premium Addons to build multilingual websites easily as our plugin is 100% compatible with WPML.

    \n

    Fully Responsive & Cross Browser Ready

    \n

    Each widget and addon has been tested on different screen sizes, mobile devices, and tablets keeping in mind to add special responsive controls for the tricky widgets and addons we create. We always test Premium Addons on BrowserStack to make sure that everything is stable.

    \n

    Editor Panel Not Loading

    \n

    How to resolve Elementor editor panel loading issue when Premium Addons is active.

    \n

    Widgets & Addons Included

    \n

    Content Widgets

    \n
      \n
    • Carousel Widget (FREE): Create a slider of any Elementor content.
    • \n
    • \n

      Blog Widget (FREE): Showcase posts or any custom post type in 5 neat skins.

      \n
    • \n
    • \n

      AJAX Search Widget (FREE): Add search form to your website with custom search query.

      \n
    • \n
    • \n

      Smart Post Listing Widget (PRO): Create any posts layout you want using this widget. You can use it to create any grid layout to show your posts or any custom post type on your website.

      \n
    • \n
    • \n

      World Clock Widget (FREE): This widget helps you to show time from any place. You can use it to show analog/digital clock.

      \n
    • \n
    • \n

      Weather Widget (FREE): Weather widget is useful for showing weather forecast data by city name or custom coordinates. You can select between three neat layouts with dozens of customization options.

      \n
    • \n
    • \n

      News Ticker Widget (FREE): Show your posts in an attractive way using this news ticker widget. Select between four different layouts. You can also use the widget to show Gold, Stock and Currencies prices.

      \n
    • \n
    • \n

      Textual Showcase Widget (FREE): Elevate your text into stunning visual art with Elementor Textual Showcase. Experiment with Text, Images, Font Awesome Icons, SVG Draw, and Lottie Animations to craft eye-catching designs. Engage your audience by making your words move, fade, and transform dynamically, leaving a lasting impression.

      \n
    • \n
    • \n

      Tags Cloud Widget (FREE): Showcase tags and categories as cloud, sphere, labeled.

      \n
    • \n
    • \n

      Recent Posts Notification Widget (FREE): This widget helps you to show a notification icon on your website to show the latest posts that your website users have not seen yet.

      \n
    • \n
    • \n

      Google Maps Widget (FREE): Advanced Google Maps Widget comes with features like adding multiple markers, custom skins, and much more options.

      \n
    • \n
    • Team Members Widget (FREE): Very good widget to list team members, co-workers, etc. Team Members Widget comes with many customization options.
    • \n
    • Tabs Widget (PRO): Create both Vertical and Horizontal tabs with tons of styling features.
    • \n
    • Content Switcher (PRO): Present multiple content in a smart way.
    • \n
    • Animated Text Widget (FREE): The animated Fancy Text Widget comes with very useful options to help you create attractive marketing messages.
    • \n
    • Heading Widget (FREE): Heading Widget has many customization options and ready-made heading styles.
    • \n
    • Dual Heading Widget (FREE): Create a headline with 2 different unique styles.
    • \n
    \n

    Image & Video Widgets

    \n
      \n
    • Site Logo Widget (PRO): Create an attractive logo for your brand using an image, SVG shape, or Lottie Animation with tens of customization options.
    • \n
    • Media Gallery Widget (FREE): Highly customizable gallery widget that can be used for creating attractive looking image galleries and portfolios.
    • \n
    • Advanced Media Carousel Widget (FREE): Create advanced carousel using images, videos or Elementor templates.
    • \n
    • Image Scroll Widget (FREE): Allows you to represent your images in a brand new yet attractive way.
    • \n
    • Image Comparison Widget (PRO): Create vertical or horizontal image comparisons easily using this amazing widget.
    • \n
    • Image Hotspots Widget (PRO): The only Image Hotspots Widget with 100% freehand design experience. Add hotspots to your image using mouse drag n’ drop.
    • \n
    • Image Layers Widget (PRO): Combine images, Lottie animations and texts.
    • \n
    • Image Accordion Widget (PRO): Create eye-catching Image Accordions in both vertical and horizontal orientations.
    • \n
    • Video Box Widget (FREE): Bring videos from YouTube, Vimeo, Dailymotion, or upload your own using Video Box Widget. The widget comes with many customization features.
    • \n
    \n

    Container Addons & Widgets

    \n\n

    Off-Grid Widgets

    \n
      \n
    • Modal Box Widget (FREE): All purpose modal box widget with the ability to use Elementor Templates and many other options.
    • \n
    • Alert Box Widget (PRO): Show a popups, GDPR alerts and much more with this handy widget from Premium Addons.
    • \n
    • Off-canvas Widget (PRO): Another off-canvas widget allows you to slide in a container from any direction with a trigger.
    • \n
    • Preview Window Widget (PRO): Very clever way to show more data in less content area.
    • \n
    \n

    Social Reviews & Testimonials Widgets

    \n
      \n
    • Testimonials Widget (FREE): The modern Testimonials Widget is available with many customization options. It can be used with Carousel Widget to create testimonials carousel.
    • \n
    • Facebook Reviews Widget (PRO): This widget allows you to show off your Facebook Reviews on your website.
    • \n
    • Google Reviews Widget (PRO): Show your business’s latest Google Reviews right on your webpage.
    • \n
    • Yelp Reviews Widget (PRO): Show your business’s Yelp Reviews in your website pages with this useful widget.
    • \n
    \n

    Blurbs & CTA Widgets

    \n
      \n
    • Bullet List Widget (FREE): Create a bullet list with icons, images, and text tags beside Lottie animations.
    • \n
    • Countdown Widget (FREE): Create sense of urgency with this widget. It’s perfect for under construction pages, events, sale items, etc.
    • \n
    • Banner Widget (FREE): Animated and interactive Banner Widget comes with multiple styles and customization features.
    • \n
    • Button Widget (FREE): Advanced Button Widget comes with lots of interactive animation, styling options, and onClick event option.
    • \n
    • Image Button Widget (FREE): Image Button Widget is a unique element that can be used for creative and innovative call to action ideas.
    • \n
    • 3D Hover Box Widget (PRO): Comes with 8 cool 3D interactive effects.
    • \n
    • Icon Box Widget (PRO): An advanced Icon Box Widgetwith endless customization options.
    • \n
    • iHover Widget (PRO): The popular iHover Widget with various interactive animations and styling options.
    • \n
    • Unfold Widget (PRO): Advanced way to fit long text in small area. Unfold Widget is a great trick as it will make your layout design look better.
    • \n
    \n

    Social Feed Widgets

    \n
      \n
    • Pinterest Feed Widget (FREE): Get pins and boards from your Pinterest account and show them on your website. Select between three layouts and four skins.
    • \n
    • TikTok Feed Widget (FREE): Get feed from your TikTok account and show them on your website. Advanced filtering options, three layouts and three skins.
    • \n
    • Facebook Feed Widget (PRO): Show your Facebook Feed directly inside your website.
    • \n
    • Twitter Feed Widget (PRO): Display your Twitter Feed on your website pages.
    • \n
    • Instagram Feed Widget (PRO): Show your Instagram photos right on your webpage.
    • \n
    • Behance Feed Widget (PRO): Show off your amazing portfolio projects using Behance Feed Widget.
    • \n
    \n

    Tables, Charts & Anything Data Widgets

    \n
      \n
    • Progress Bar Widget (FREE): The most advanced Progress Bar Widget comes with multiple labels option.
    • \n
    • Pricing Table Widget (FREE): Highly customizable Pricing Table Widget with tons of styling options.
    • \n
    • Charts Widget (PRO): The only advanced Charts Widget is available in Premium Addons. Create Line Chart, Bar Chart, Doughnut Chart, Radar Chart, and more.
    • \n
    • Tables Widget (PRO): Create sophisticated tables with unique styling and interactivity options.
    • \n
    • Counter Widget (FREE): Show your facts & figures with Counter Widget.
    • \n
    \n

    Contact Widgets

    \n\n

    Design Widgets

    \n
      \n
    • Divider Widget (PRO): Design beautiful dividers with this unique widget.
    • \n
    • Image Separator Widget (FREE): Add an Image Separator between containers with this handy yet fully responsive widget.
    • \n
    \n

    Support & Documentation

    \n
      \n
    • Documentation Search here first if you need to know how a widget or feature works or for troubleshooting.
    • \n
    • Video Tutorials This playlist includes many widgets’ video tutorials. We are adding more regularly.
    • \n
    • Facebook Group A great place to get help or ask a question about Premium Addons.
    • \n
    • Community Forums Another good place to search for answers or post your own question.
    • \n
    • Support Ticket System We also welcome Free users’ issues which require access credentials to check.
    • \n
    \n

    Check Premium Addons PRO

    \n

    Love Premium Addons User? rate us on WordPress 🙂

    \n", "screenshots": "
    1. \"Premium

      Premium Addons Dashboard Tab

    2. \"Premium

      Premium Blog Widget

    3. \"Premium

      Premium Media Gallery Widget

    4. \"Premium

      Premium Dual Heading Widget

    5. \"Premium

      Premium Carousel Widget

    6. \"Premium

      Premium Progress Bar Widget

    7. \"Premium

      Premium Lottie Animations Widget

    8. \"Premium

      Premium Team Members Widget

    9. \"Premium

      Premium Video Box Widget

    10. \"Premium

      Premium Pricing Table Widget

    11. \"Premium

      Premium Blog Widget

    12. \"Premium

      Premium Image Separator Widget

    13. \"Premium

      Premium Counter Widget

    14. \"Premium

      Premium Progress Bar Widget

    ", "installation": "
      \n
    • First make sure that Elementor Page Builder is installed, As this plugin works only with it.
    • \n
    • Download the plugin then Upload it to the plugin folder: /wp-content/plugins/ or install it through the WordPress plugins screen directly.
    • \n
    • Activate the plugin through the ‘Plugins’ screen in WordPress.
    • \n
    • You can find Premium Addons Elements under the category “Premium Addons” on the editor panel.
    • \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.0.zip", "2.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.zip", "1.01": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.01.zip", "1.02": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.02.zip", "1.03": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.03.zip", "1.04": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.04.zip", "1.05": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.05.zip", "1.06": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.06.zip", "1.07": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.07.zip", "1.08": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.08.zip", "1.09": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.1.09.zip", "2.0.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.4.1.zip", "2.5.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.8.zip", "2.7.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.7.9.zip", "2.8.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.7.zip", "2.8.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.8.zip", "2.8.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.8.9.zip", "2.9.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.6.zip", "2.9.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.9.9.zip", "3.0.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.1.9.zip", "3.2.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.7.zip", "3.3.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.8.zip", "3.3.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.3.9.zip", "3.4.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.8.zip", "3.4.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.4.9.zip", "3.5.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.7.zip", "3.5.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.8.zip", "3.5.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.5.9.zip", "3.6.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.7.zip", "3.6.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.8.zip", "3.6.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.6.9.zip", "3.7.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.5.zip", "3.7.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.6.zip", "3.7.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.7.zip", "3.7.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.8.zip", "3.7.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.7.9.zip", "3.8.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.5.zip", "3.8.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.6.zip", "3.8.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.8.zip", "3.8.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.8.9.zip", "3.9.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.4.zip", "3.9.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.5.zip", "3.9.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.6.zip", "3.9.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.7.zip", "3.9.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.8.zip", "3.9.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.9.9.zip", "4.0.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.1.zip", "4.0.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.1.9.zip", "4.2.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.5.zip", "4.2.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.6.zip", "4.2.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.7.zip", "4.2.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.8.zip", "4.2.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.2.9.zip", "4.3.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.4.zip", "4.3.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.5.zip", "4.3.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.6.zip", "4.3.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.7.zip", "4.3.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.8.zip", "4.3.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.3.9.zip", "4.4.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.3.zip", "4.4.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.4.zip", "4.4.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.5.zip", "4.4.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.6.zip", "4.4.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.7.zip", "4.4.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.8.zip", "4.4.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.4.9.zip", "4.5.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.5.zip", "4.5.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.6.zip", "4.5.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.7.zip", "4.5.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.8.zip", "4.5.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.5.9.zip", "4.6.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.6.1.zip", "4.7.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.4.zip", "4.7.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.5.zip", "4.7.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.6.zip", "4.7.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.7.zip", "4.7.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.8.zip", "4.7.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.7.9.zip", "4.8.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.3.zip", "4.8.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.4.zip", "4.8.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.5.zip", "4.8.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.6.zip", "4.8.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.7.zip", "4.8.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.8.zip", "4.8.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.9.zip", "4.9.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.2.zip", "4.9.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.3.zip", "4.9.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.4.zip", "4.9.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.5.zip", "4.9.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.6.zip", "4.9.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.7.zip", "4.9.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.8.zip", "4.9.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.zip", "3.10.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.0.zip", "3.10.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.1.zip", "3.10.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.2.zip", "3.10.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.3.zip", "3.10.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.4.zip", "3.10.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.5.zip", "3.10.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.6.zip", "3.10.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.7.zip", "3.10.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.8.zip", "3.10.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.10.9.zip", "3.11.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.0.zip", "3.11.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.1.zip", "3.11.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.2.zip", "3.11.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.3.zip", "3.11.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.4.zip", "3.11.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.5.zip", "3.11.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.6.zip", "3.11.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.7.zip", "3.11.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.8.zip", "3.11.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.11.9.zip", "3.12.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.12.0.zip", "3.12.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.12.1.zip", "3.12.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.12.2.zip", "3.12.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.12.3.zip", "3.20.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.0.zip", "3.20.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.1.zip", "3.20.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.2.zip", "3.20.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.3.zip", "3.20.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.4.zip", "3.20.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.5.zip", "3.20.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.6.zip", "3.20.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.7.zip", "3.20.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.8.zip", "3.20.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.20.9.zip", "3.21.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.1.zip", "3.21.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.2.zip", "3.21.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.3.zip", "3.21.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.4.zip", "3.21.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.5.zip", "3.21.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.3.21.6.zip", "4.10.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.0.zip", "4.10.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.1.zip", "4.10.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.2.zip", "4.10.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.3.zip", "4.10.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.4.zip", "4.10.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.5.zip", "4.10.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.6.zip", "4.10.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.7.zip", "4.10.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.8.zip", "4.10.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.9.zip", "4.11.0": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.0.zip", "4.11.1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.1.zip", "4.11.2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.2.zip", "4.11.3": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.3.zip", "4.11.4": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.4.zip", "4.11.5": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.5.zip", "4.11.6": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.6.zip", "4.11.7": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.7.zip", "4.11.8": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.8.zip", "4.11.9": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.9.zip", "4.8.10": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.10.zip", "4.8.11": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.8.11.zip", "4.9.10": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.10.zip", "4.9.11": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.11.zip", "4.9.12": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.12.zip", "4.9.13": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.13.zip", "4.9.14": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.14.zip", "4.9.15": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.15.zip", "4.9.16": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.16.zip", "4.9.17": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.17.zip", "4.9.18": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.18.zip", "4.9.19": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.19.zip", "4.9.20": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.20.zip", "4.9.21": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.21.zip", "4.9.22": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.22.zip", "4.9.23": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.23.zip", "4.9.24": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.24.zip", "4.9.25": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.25.zip", "4.9.26": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.26.zip", "4.9.27": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.27.zip", "4.9.28": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.28.zip", "4.9.29": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.29.zip", "4.9.30": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.30.zip", "4.9.31": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.31.zip", "4.9.32": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.32.zip", "4.9.33": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.33.zip", "4.9.34": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.34.zip", "4.9.35": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.35.zip", "4.9.36": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.36.zip", "4.9.37": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.37.zip", "4.9.38": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.38.zip", "4.9.39": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.39.zip", "4.9.40": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.40.zip", "4.9.41": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.41.zip", "4.9.42": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.42.zip", "4.9.43": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.43.zip", "4.9.45": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.45.zip", "4.9.46": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.46.zip", "4.9.47": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.47.zip", "4.9.48": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.48.zip", "4.9.49": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.49.zip", "4.9.50": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.50.zip", "4.9.51": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.51.zip", "4.9.52": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.52.zip", "4.9.53": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.53.zip", "4.9.54": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.54.zip", "4.9.55": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.55.zip", "4.9.56": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.56.zip", "4.9.57": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.57.zip", "4.10.10": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.10.zip", "4.10.11": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.11.zip", "4.10.12": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.12.zip", "4.10.13": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.13.zip", "4.10.14": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.14.zip", "4.10.15": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.15.zip", "4.10.16": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.16.zip", "4.10.17": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.17.zip", "4.10.18": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.18.zip", "4.10.19": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.19.zip", "4.10.20": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.20.zip", "4.10.21": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.21.zip", "4.10.22": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.22.zip", "4.10.23": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.23.zip", "4.10.24": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.24.zip", "4.10.25": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.25.zip", "4.10.26": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.26.zip", "4.10.27": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.27.zip", "4.10.28": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.28.zip", "4.10.29": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.29.zip", "4.10.30": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.30.zip", "4.10.31": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.31.zip", "4.10.32": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.32.zip", "4.10.33": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.33.zip", "4.10.34": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.34.zip", "4.10.35": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.35.zip", "4.10.36": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.36.zip", "4.10.37": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.37.zip", "4.10.38": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.38.zip", "4.10.39": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.39.zip", "4.10.40": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.40.zip", "4.10.41": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.41.zip", "4.10.42": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.42.zip", "4.10.43": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.43.zip", "4.10.44": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.44.zip", "4.10.45": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.45.zip", "4.10.46": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.46.zip", "4.10.47": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.47.zip", "4.10.48": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.48.zip", "4.10.49": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.49.zip", "4.10.50": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.50.zip", "4.10.51": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.51.zip", "4.10.52": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.52.zip", "4.10.53": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.53.zip", "4.10.54": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.54.zip", "4.10.55": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.55.zip", "4.10.56": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.56.zip", "4.10.57": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.57.zip", "4.10.58": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.58.zip", "4.10.59": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.59.zip", "4.10.60": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.60.zip", "4.10.61": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.61.zip", "4.10.62": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.62.zip", "4.10.63": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.63.zip", "4.10.64": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.64.zip", "4.10.65": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.65.zip", "4.10.66": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.66.zip", "4.10.67": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.67.zip", "4.10.68": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.68.zip", "4.10.69": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.69.zip", "4.10.70": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.70.zip", "4.10.71": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.71.zip", "4.10.72": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.72.zip", "4.10.73": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.73.zip", "4.10.74": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.74.zip", "4.10.75": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.75.zip", "4.10.76": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.76.zip", "4.10.77": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.77.zip", "4.10.78": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.78.zip", "4.10.79": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.79.zip", "4.10.80": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.80.zip", "4.10.81": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.81.zip", "4.10.82": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.82.zip", "4.10.83": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.83.zip", "4.10.84": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.84.zip", "4.10.85": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.85.zip", "4.10.86": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.86.zip", "4.10.87": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.87.zip", "4.10.88": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.88.zip", "4.10.89": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.89.zip", "4.10.90": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.10.90.zip", "4.11.10": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.10.zip", "4.11.11": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.11.zip", "4.11.12": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.12.zip", "4.11.13": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.13.zip", "4.11.14": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.14.zip", "4.11.15": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.15.zip", "4.11.16": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.16.zip", "4.11.17": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.17.zip", "4.11.18": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.18.zip", "4.11.19": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.19.zip", "4.11.20": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.20.zip", "4.11.21": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.21.zip", "4.11.22": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.22.zip", "4.11.23": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.23.zip", "4.11.24": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.24.zip", "4.11.25": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.25.zip", "4.11.26": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.26.zip", "4.11.27": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.27.zip", "4.11.28": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.28.zip", "4.11.29": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.29.zip", "4.11.30": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.30.zip", "4.11.31": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.31.zip", "4.11.32": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.32.zip", "4.11.33": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.33.zip", "4.11.34": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.34.zip", "4.11.35": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.35.zip", "4.11.36": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.36.zip", "4.11.37": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.37.zip", "4.11.38": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.38.zip", "4.11.39": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.39.zip", "4.11.40": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.40.zip", "4.11.41": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.41.zip", "4.11.42": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.42.zip", "4.11.43": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.43.zip", "4.11.44": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.44.zip", "4.11.45": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.45.zip", "2.1.5-beta1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.2.1.5-beta1.zip", "4.9.0-beta1": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.0-beta1.zip", "4.9.0-beta2": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.0-beta2.zip"}, "downloaded": 53624337, "description": "

    Supercharge your Elementor Page Builder with 90+ highly customizable addons and widgets, 550+ pre-made templates that will give you the ability to build sophisticated websites in less time with no coding required. Both Elementor and Premium Addons plugins take your WordPress website to the next level.

    \n

    Check The Widgets & Addons Demo Pages

    \n

    Useful Links

    \n

    Support | Docs | Video Tutorials | Facebook Group | Upgrade to Pro

    \n

    New: Image Carousel Option

    \n

    We have recently added Source option in our Premium Carousel widget which helps you to create an image carousel/slider in a second just by selecting the images you want from site’s media library.

    \n

    New: Performance and Speed Improvements

    \n

    Premium Addons for Elementor is now much faster than ever. Only the required JS files will be loaded on your page to boost your page loading speed and site performance. All the editor loading issues have been fixed to make your site faster and minimize the time it takes for Elementor editor to load.

    \n

    New: Liquid Glass Addon

    \n

    Select between 6 attractive liquid glass and glassmorphism effects to be applied on any Elementor widget or container. It has also been added to be applied on specific parts inside our elements. Check it out now!.

    \n

    New: WooCommerce Mini-Cart and Categories Listing Widgets

    \n

    This powerful widget allows your customers to view the products in their shopping cart, change the quantity, remove items and check the total amount without leaving the page. We have also released Woo Categories widget to showcase your Woo categories in four neat skins. Check from here and here.

    \n

    New: Mobile Nav Menu Widget

    \n

    Create a neat mobile menu on your website with just few click with this powerful widget. You can set the click action of each menu item to a link or to open an off-canvas content. Check it out now!.

    \n

    New: AJAX Search Form Widget

    \n

    The ultimate solution to add a search form widget on Elementor websites. Customize the search results, add pagination or carousel and select between three different neat skins. Check it out now!.

    \n

    Animated Shape Divider Addon

    \n

    Add animated shape dividers for Elementor flexbox containers. You can select between 40+ shape dividers or use a custom SVG code to add your own divider. Check it out now!.

    \n

    Advanced Media Carousel Widget

    \n

    You can now create carousel using images, videos, Elementor templates to create the carousel you want. Select between four animations and dozens of customization options. Check it out now!.

    \n

    Magazine Bundle

    \n

    Smart Post Listing, Weather, World Clock, News Ticker, Tags Cloud and Recent Posts Notification widgets newly added to create the magazine website you ever dreamed. Check it out now!.

    \n

    Elementor Navigation/Mega Menu Widget

    \n

    Now, you build outstanding navigation menus and mega menus using Premium Navigation/Mega Menu Widget which allows you to select between four different layouts with dozens of options to create a responsive menu. Check it out now!.

    \n

    Display Conditions

    \n

    Premium Addons is proudly offering you a professional way to manage your website content with specific conditions which is perfect for marketers and eCommerce websites. You can show/hide content dynamically based on location, browser, operating system, user role, URL parameters, device type, Woocommerce display conditions such as WooCommerce product and WooCommerce shopping cart data, ACF fields, etc. Check the demo page

    \n

    WooCommerce Products Listing widget

    \n

    Show off your products in an elegant way using Premium Woo Products Widget that comes with unlimited customization options. Check the demo page

    \n

    Equal Height Feature

    \n

    Now, you can make your columns, widgets or any selector you want the same height with just ONE click using Equal Height feature in container settings -> Advanced tab.

    \n

    Pre-made Container and Page Templates

    \n

    NEW: Ever-growing Container/Page Templates Library Available on both Premium Addons Free and PRO versions. Browse, preview, and insert the template you like in your page/post with just ONE click. You can also select to insert the templates without media files (images, videos, etc.) to prevent overloading your WordPress Media Library with large files.

    \n

    Lottie Animations Integration

    \n

    You can now use Lottie Animations in ALL our widgets. Whatever widget that have an image or icon option now have also the option to add a Lottie animation. Lottie animations are open source, lightweight and available for free, Use them now to make your Elementor pages more eye-catching.

    \n

    Post and Page Duplicator

    \n

    Duplicate any post, page or template on your website with just ONE click. Check the documentation article from here.

    \n

    Modular & Lightweight

    \n

    Premium Addons for Elementor is fully modular. You can enable/disable specific elements to prevent overloading your website with code you will not actually use which helps your website have a blazing fast performance.

    \n

    WPML Ready

    \n

    You can use Premium Addons to build multilingual websites easily as our plugin is 100% compatible with WPML.

    \n

    Fully Responsive & Cross Browser Ready

    \n

    Each widget and addon has been tested on different screen sizes, mobile devices, and tablets keeping in mind to add special responsive controls for the tricky widgets and addons we create. We always test Premium Addons on BrowserStack to make sure that everything is stable.

    \n

    Editor Panel Not Loading

    \n

    How to resolve Elementor editor panel loading issue when Premium Addons is active.

    \n

    Widgets & Addons Included

    \n

    Content Widgets

    \n
      \n
    • Carousel Widget (FREE): Create a slider of any Elementor content.
    • \n
    • \n

      Blog Widget (FREE): Showcase posts or any custom post type in 5 neat skins.

      \n
    • \n
    • \n

      AJAX Search Widget (FREE): Add search form to your website with custom search query.

      \n
    • \n
    • \n

      Smart Post Listing Widget (PRO): Create any posts layout you want using this widget. You can use it to create any grid layout to show your posts or any custom post type on your website.

      \n
    • \n
    • \n

      World Clock Widget (FREE): This widget helps you to show time from any place. You can use it to show analog/digital clock.

      \n
    • \n
    • \n

      Weather Widget (FREE): Weather widget is useful for showing weather forecast data by city name or custom coordinates. You can select between three neat layouts with dozens of customization options.

      \n
    • \n
    • \n

      News Ticker Widget (FREE): Show your posts in an attractive way using this news ticker widget. Select between four different layouts. You can also use the widget to show Gold, Stock and Currencies prices.

      \n
    • \n
    • \n

      Textual Showcase Widget (FREE): Elevate your text into stunning visual art with Elementor Textual Showcase. Experiment with Text, Images, Font Awesome Icons, SVG Draw, and Lottie Animations to craft eye-catching designs. Engage your audience by making your words move, fade, and transform dynamically, leaving a lasting impression.

      \n
    • \n
    • \n

      Tags Cloud Widget (FREE): Showcase tags and categories as cloud, sphere, labeled.

      \n
    • \n
    • \n

      Recent Posts Notification Widget (FREE): This widget helps you to show a notification icon on your website to show the latest posts that your website users have not seen yet.

      \n
    • \n
    • \n

      Google Maps Widget (FREE): Advanced Google Maps Widget comes with features like adding multiple markers, custom skins, and much more options.

      \n
    • \n
    • Team Members Widget (FREE): Very good widget to list team members, co-workers, etc. Team Members Widget comes with many customization options.
    • \n
    • Tabs Widget (PRO): Create both Vertical and Horizontal tabs with tons of styling features.
    • \n
    • Content Switcher (PRO): Present multiple content in a smart way.
    • \n
    • Animated Text Widget (FREE): The animated Fancy Text Widget comes with very useful options to help you create attractive marketing messages.
    • \n
    • Heading Widget (FREE): Heading Widget has many customization options and ready-made heading styles.
    • \n
    • Dual Heading Widget (FREE): Create a headline with 2 different unique styles.
    • \n
    \n

    Image & Video Widgets

    \n
      \n
    • Site Logo Widget (PRO): Create an attractive logo for your brand using an image, SVG shape, or Lottie Animation with tens of customization options.
    • \n
    • Media Gallery Widget (FREE): Highly customizable gallery widget that can be used for creating attractive looking image galleries and portfolios.
    • \n
    • Advanced Media Carousel Widget (FREE): Create advanced carousel using images, videos or Elementor templates.
    • \n
    • Image Scroll Widget (FREE): Allows you to represent your images in a brand new yet attractive way.
    • \n
    • Image Comparison Widget (PRO): Create vertical or horizontal image comparisons easily using this amazing widget.
    • \n
    • Image Hotspots Widget (PRO): The only Image Hotspots Widget with 100% freehand design experience. Add hotspots to your image using mouse drag n’ drop.
    • \n
    • Image Layers Widget (PRO): Combine images, Lottie animations and texts.
    • \n
    • Image Accordion Widget (PRO): Create eye-catching Image Accordions in both vertical and horizontal orientations.
    • \n
    • Video Box Widget (FREE): Bring videos from YouTube, Vimeo, Dailymotion, or upload your own using Video Box Widget. The widget comes with many customization features.
    • \n
    \n

    Container Addons & Widgets

    \n\n

    Off-Grid Widgets

    \n
      \n
    • Modal Box Widget (FREE): All purpose modal box widget with the ability to use Elementor Templates and many other options.
    • \n
    • Alert Box Widget (PRO): Show a popups, GDPR alerts and much more with this handy widget from Premium Addons.
    • \n
    • Off-canvas Widget (PRO): Another off-canvas widget allows you to slide in a container from any direction with a trigger.
    • \n
    • Preview Window Widget (PRO): Very clever way to show more data in less content area.
    • \n
    \n

    Social Reviews & Testimonials Widgets

    \n
      \n
    • Testimonials Widget (FREE): The modern Testimonials Widget is available with many customization options. It can be used with Carousel Widget to create testimonials carousel.
    • \n
    • Facebook Reviews Widget (PRO): This widget allows you to show off your Facebook Reviews on your website.
    • \n
    • Google Reviews Widget (PRO): Show your business’s latest Google Reviews right on your webpage.
    • \n
    • Yelp Reviews Widget (PRO): Show your business’s Yelp Reviews in your website pages with this useful widget.
    • \n
    \n

    Blurbs & CTA Widgets

    \n
      \n
    • Bullet List Widget (FREE): Create a bullet list with icons, images, and text tags beside Lottie animations.
    • \n
    • Countdown Widget (FREE): Create sense of urgency with this widget. It’s perfect for under construction pages, events, sale items, etc.
    • \n
    • Banner Widget (FREE): Animated and interactive Banner Widget comes with multiple styles and customization features.
    • \n
    • Button Widget (FREE): Advanced Button Widget comes with lots of interactive animation, styling options, and onClick event option.
    • \n
    • Image Button Widget (FREE): Image Button Widget is a unique element that can be used for creative and innovative call to action ideas.
    • \n
    • 3D Hover Box Widget (PRO): Comes with 8 cool 3D interactive effects.
    • \n
    • Icon Box Widget (PRO): An advanced Icon Box Widgetwith endless customization options.
    • \n
    • iHover Widget (PRO): The popular iHover Widget with various interactive animations and styling options.
    • \n
    • Unfold Widget (PRO): Advanced way to fit long text in small area. Unfold Widget is a great trick as it will make your layout design look better.
    • \n
    \n

    Social Feed Widgets

    \n
      \n
    • Pinterest Feed Widget (FREE): Get pins and boards from your Pinterest account and show them on your website. Select between three layouts and four skins.
    • \n
    • TikTok Feed Widget (FREE): Get feed from your TikTok account and show them on your website. Advanced filtering options, three layouts and three skins.
    • \n
    • Facebook Feed Widget (PRO): Show your Facebook Feed directly inside your website.
    • \n
    • Twitter Feed Widget (PRO): Display your Twitter Feed on your website pages.
    • \n
    • Instagram Feed Widget (PRO): Show your Instagram photos right on your webpage.
    • \n
    • Behance Feed Widget (PRO): Show off your amazing portfolio projects using Behance Feed Widget.
    • \n
    \n

    Tables, Charts & Anything Data Widgets

    \n
      \n
    • Progress Bar Widget (FREE): The most advanced Progress Bar Widget comes with multiple labels option.
    • \n
    • Pricing Table Widget (FREE): Highly customizable Pricing Table Widget with tons of styling options.
    • \n
    • Charts Widget (PRO): The only advanced Charts Widget is available in Premium Addons. Create Line Chart, Bar Chart, Doughnut Chart, Radar Chart, and more.
    • \n
    • Tables Widget (PRO): Create sophisticated tables with unique styling and interactivity options.
    • \n
    • Counter Widget (FREE): Show your facts & figures with Counter Widget.
    • \n
    \n

    Contact Widgets

    \n\n

    Design Widgets

    \n
      \n
    • Divider Widget (PRO): Design beautiful dividers with this unique widget.
    • \n
    • Image Separator Widget (FREE): Add an Image Separator between containers with this handy yet fully responsive widget.
    • \n
    \n

    Support & Documentation

    \n
      \n
    • Documentation Search here first if you need to know how a widget or feature works or for troubleshooting.
    • \n
    • Video Tutorials This playlist includes many widgets’ video tutorials. We are adding more regularly.
    • \n
    • Facebook Group A great place to get help or ask a question about Premium Addons.
    • \n
    • Community Forums Another good place to search for answers or post your own question.
    • \n
    • Support Ticket System We also welcome Free users’ issues which require access credentials to check.
    • \n
    \n

    Check Premium Addons PRO

    \n

    Love Premium Addons User? rate us on WordPress 🙂

    \n", "donate_link": "https://premiumaddons.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme", "num_ratings": 1649, "screenshots": {"1": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-1.gif?rev=2422183", "caption": "Premium Addons Dashboard Tab"}, "2": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-2.png?rev=2515523", "caption": "Premium Blog Widget"}, "3": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-3.png?rev=2515523", "caption": "Premium Media Gallery Widget"}, "4": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-4.png?rev=2515523", "caption": "Premium Dual Heading Widget"}, "5": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-5.png?rev=2515523", "caption": "Premium Carousel Widget"}, "6": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-6.png?rev=2515523", "caption": "Premium Progress Bar Widget"}, "7": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-7.gif?rev=2422183", "caption": "Premium Lottie Animations Widget"}, "8": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-8.png?rev=2515523", "caption": "Premium Team Members Widget"}, "9": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-9.png?rev=2515523", "caption": "Premium Video Box Widget"}, "10": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-10.png?rev=2515523", "caption": "Premium Pricing Table Widget"}, "11": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-11.png?rev=2515523", "caption": "Premium Blog Widget"}, "12": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-12.png?rev=2515523", "caption": "Premium Image Separator Widget"}, "13": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-13.png?rev=2515523", "caption": "Premium Counter Widget"}, "14": {"src": "https://ps.w.org/premium-addons-for-elementor/assets/screenshot-14.png?rev=2515523", "caption": "Premium Progress Bar Widget"}}, "support_url": "https://wordpress.org/support/plugin/premium-addons-for-elementor/", "contributors": {"leap13": {"avatar": "https://secure.gravatar.com/avatar/cd4a5ce022109e7e89700a0063c2a4c2eb5b1b68cc4d8b60060fea75e2d0f0e5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/leap13/", "display_name": "Leap13"}, "rimoun": {"avatar": "https://secure.gravatar.com/avatar/df9a176d88740d47d20f48021131b653b159d2757294393b555beec3a9fe8cd3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rimoun/", "display_name": "Rimoun Saad"}}, "last_updated": "2025-10-28 12:39pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.45.zip", "author_profile": "https://profiles.wordpress.org/leap13/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-f8f0-73e9-a5bc-2e7549dbf4ac", "name": "Premium Addons for Elementor", "slug": "premium-addons-for-elementor", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761655140, "version": "4.11.45"}, "support_threads": 6, "requires_plugins": [], "short_description": "90+ Elementor widgets and 580+ templates. It includes elements like Nav Mega Menu, Carousel and Blog, WooCommerce widgets, Display Conditions.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "https://my.leap13.com/contact-support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support", "support_threads_resolved": 6}'); -INSERT INTO public.plugins VALUES ('019a30c1-668a-7128-b097-40ff1d3904e0', 'really-simple-ssl', 'Really Simple Security – Simple and Performant Security (formerly Really Simple SSL)', 'Easily improve site security with WordPress Hardening, Two-Factor Authentication (2FA), Login Protection, Vulnerability Detection and SSL certificate.', '

    Easily improve site security with WordPress Hardening, Two-Factor Authentication (2FA), Login Protection, Vulnerability Detection and SSL certificate.

    -

    Really simple, Effective and Performant WordPress Security

    -

    Really Simple Security is the most lightweight and easy-to-use security plugin for WordPress. It secures your WordPress website with SSL certificate generation, including proper 301 https redirection and SSL enforcement, scanning for possible vulnerabilities, Login Protection and implementing essential WordPress hardening features.

    -

    We believe that security should have the absolute minimum effect on website performance, user experience and maintainability. Therefore, Really Simple Security is:

    -
      -
    • Lightweight: Every security feature is developed with a modular approach and with performance in mind. Disabled features won’t load any redundant code.
    • -
    • Easy-to-use: 1-minute configuration with short onboarding setup.
    • -
    -

    Security Features

    -

    Easy SSL Migration

    -

    Migrates your website to HTTPS and enforces SSL in just one click.

    -
      -
    • 301 redirect via PHP or .htaccess
    • -
    • Secure cookies
    • -
    • Let’s Encrypt: Install an SSL Certificate if your hosting provider supports manual installation.
    • -
    • Server Health Check: Your server configuration is every bit as important for your website security.
    • -
    -

    WordPress Hardening

    -

    Tweak your configuration and keep WordPress fortified and safe by tackling potential weaknesses.

    -
      -
    • Prevent code execution in the uploads folder
    • -
    • Prevent login feedback and disable user enumeration
    • -
    • Disable XML-RPC
    • -
    • Disable directory browsing
    • -
    • Username restrictions (block ‘admin’ and public names)
    • -
    • and much more..
    • -
    -

    Vulnerability Detection

    -

    Get notified when plugins, themes or WP core contain vulnerabilities and need appropriate action.

    -

    Login Protection

    -

    Allow or enforce Two-Factor Authentication (2FA) for specific user roles. Users receive a two-factor code via Email.

    -

    Improve Security with Really Simple Security Pro

    -

    Protect your site with all essential security features by upgrading to Really Simple Security Pro.

    -

    Advanced SSL enforcement

    -
      -
    • Mixed Content Scan & Fixer. Detect files that are requested over HTTP and fix them to HTTPS, both Front- and Back-end.
    • -
    • Enable HTTP Strict Transport Security and configure your site for the HSTS Preload list.
    • -
    -

    Firewall

    -

    Really Simple Security Pro includes a performant and efficient WordPress firewall, to stop bots, crawlers and bad actors with IP and username blocks.

    -
      -
    • 404 blocking – Blocks crawlers as they trigger unusual numbers of 404 errors.
    • -
    • Region blocking – Only allow/block access to your site from specific regions.
    • -
    • Automated and customisable Firewall rules.
    • -
    • IP blocklist and allowlist.
    • -
    -

    Security Headers

    -

    Security headers protect your site visitors against the risk of clickjacking, cross-site-forgery attacks, stealing login credentials and malware.

    -
      -
    • Independent of your Server Configuration, works on Apache, LiteSpeed, NGINX, etc.
    • -
    • Protect your website visitors with X-XSS Protection, X-Content-Type-Options, X-Frame-Options, a Referrer Policy and CORS headers.
    • -
    • Automatically generate your WordPress-tailored Content Security Policy.
    • -
    -

    Vulnerability Measures

    -

    When a vulnerability is detected in a plugin, theme or WordPress core you will get notified accordingly. With Vulnerability Measures, you can configure simple but effective measures to make sure that a critical vulnerability won’t remain unattended.

    -
      -
    • Force update: An update process will be tried multiple times until it can be assumed development of a theme or plugin is abandoned. You will be notified during these steps.
    • -
    • Quarantine: When a plugin or theme can’t be updated to solve a vulnerability, Really Simple Security can quarantine the plugin.
    • -
    -

    Advanced Site Hardening

    -
      -
    • Choose a custom login URL
    • -
    • Automated File Permissions check and fixer
    • -
    • Rename and randomize your database prefix
    • -
    • Change the debug.log file location to a non-public folder
    • -
    • Disable application passwords
    • -
    • Control admin creation
    • -
    • Disable HTTP methods, reducing HTTP requests
    • -
    -

    Login Protection

    -

    Secure your website’s login process and user accounts with powerful security measures.

    -
      -
    • Two-Step verification (Email login)
    • -
    • 2FA (two factor authentication) with TOTP
    • -
    • Passwordless login with passkey login
    • -
    • Enforce strong passwords and frequent password change
    • -
    • Limit Login Attempts
    • -
    -

    With Limit Login Attempts you can configure a threshold to temporarily or permanently block IP addresses or (non-existing) usernames. You can also throw a CAPTCHA after a failed login (hCaptcha or Google reCaptcha)

    -

    Access Control

    -
      -
    • Restrict access to your site for specific regions.
    • -
    • Add specific IP addresses or IP ranges to the Blocklist or Allowlist.
    • -
    -

    Useful Links

    - -

    Love Really Simple Security?

    -

    If you want to support the continuing development of this plugin, please consider buying Really Simple Security Pro, which includes some excellent security features and premium support.

    -

    About Really Simple Plugins

    -

    Our mission is to make complex WordPress requirements really easy. Really Simple Security is developed by Really Simple Plugins.

    -

    For generating SSL certificates, Really Simple Security uses the le acme2 PHP Let’s Encrypt client library, thanks to ‘fbett’ for providing it. Vulnerability Detection uses WP Vulnerability, an open-source initiative by Javier Casares. Want to join as a collaborator? We’re on GitHub as well!

    -', '9.5.3', 'Really Simple Plugins', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.3.zip', '2015-03-15 00:00:00+00', '2025-10-27 15:03:00+00', 'https://profiles.wordpress.org/reallysimpleplugins/', 98, 8762, 15, 14, 4000000, 194761152, 'https://really-simple-ssl.com', 'https://www.paypal.me/reallysimplessl', NULL, NULL, 'https://wordpress.org/support/plugin/really-simple-ssl/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Really Simple Security – Simple and Performant Security (formerly Really Simple SSL)", "slug": "really-simple-ssl", "tags": {"2fa": "2FA", "https": "https", "security": "security", "two-factor": "two factor", "vulnerabilities": "vulnerabilities"}, "added": "2015-03-15", "icons": {"1x": "https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=2839720", "2x": "https://ps.w.org/really-simple-ssl/assets/icon-256x256.png?rev=2839720"}, "author": "Really Simple Plugins", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/really-simple-ssl/assets/banner-772x250.png?rev=3100992", "high": "https://ps.w.org/really-simple-ssl/assets/banner-1544x500.png?rev=3100992"}, "ratings": {"1": 84, "2": 16, "3": 23, "4": 101, "5": 8538}, "version": "9.5.3", "homepage": "https://really-simple-ssl.com", "requires": "6.6", "sections": {"faq": "\n
    \nKnowledge Base\n\n

    \n

    For more detailed explanations and documentation on all Really Simple Security features, please search the Knowledge Base

    \n

    \n
    \nWhat happened with Really Simple SSL?\n\n

    \n

    All features that made Really Simple SSL the most powerful and easy-to-use SSL generation and redirect plugin are still part of Really Simple Security. The plugin is developed with a modular approach: if you don’t want to use the full set of security features, the unused code will not be loaded and won’t have any effect on your site’s performance.

    \n

    \n
    \nWhy Really Simple Security?\n\n

    \n

    In our experience, security solutions for WordPress are often hard to configure, trigger many false positives and have a significant impact on site performance. We have been receiving requests from our users to simplify WordPress security for years, so that has become our mission!

    \n

    \n
    \nI want to share my feedback or contribute to Really Simple Security\n\n

    \n

    You couldn’t make us happier! Really Simple Security is GPL licensed and co-created by the WordPress community. All feedback is highly appreciated and has always helped us to better understand users’ needs. For code contributions or suggestions, we’re on GitHub. For suggestions, please open a support ticket You can also express your appreciation by leaving a review.

    \n

    \n
    \nWhat are Mixed Content issues?\n\n

    \n

    Most mixed content issues are caused by URLs in CSS or JS files. For detailed instructions on how to find mixed content read this article.

    \n

    \n
    \nGenerating a Let’s Encrypt SSL Certificate\n\n

    \n

    We added the possibility to generate a Free SSL Certificate with Let’s Encrypt in our Really Simple Security Wizard. We have an updated list available for all possible integrations here. Please leave feedback about another integration, incorrect information, or you need help.

    \n

    \n
    \nHow do I fix a redirect loop?\n\n

    \n

    If you are experiencing redirect loops on your site, try these instructions. This can sometimes happen during the migration to HTTPS or due to conflicting redirect rules.

    \n

    \n
    \nIs the plugin multisite compatible?\n\n

    \n

    Yes. There is a dedicated network settings page where you can control settings for your entire network, at once.

    \n

    \n
    \nHow do I enforce strong passwords?\n\n

    \n

    Under Login Protection, you can configure minimum strength settings and require users to change their passwords after a defined interval. Disabling weak password usage is a best practice.

    \n

    \n
    \nHow can I change my login URL?\n\n

    \n

    You can set a custom login URL under Advanced Site Hardening, which helps prevent brute force login attacks and bots targeting wp-login.php.

    \n

    \n
    \nDoes this plugin redirect HTTP to HTTPS?\n\n

    \n

    Yes. The plugin enforces HTTPS and handles all necessary redirects, optionally using .htaccess or PHP.

    \n

    \n
    \nCan I use Really Simple Security besides WordFence?\n\n

    \n

    Really Simple Security and WordFence greatly overlap in term of functionality. If you like to use specific features from both plugins, we strongly recommend not to enable similar features twice. The benefit of Really Simple Security is that disabled features don’t load any code, so won’t have an impact on site performance.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple as advertised and effective

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy yanartus on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I can''t do without it anymore.
    Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    weird sign in interface for email 2fa

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bowerwebsolutions on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Sign in interface for email verification doesn''t allow you to click on login. you put in the code and then wait. This is not web standard. OK for my purposes of verifying a few users but not ready for prime time.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really Simple Security helps a lot

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rmielniczek on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My rating is 5 star. Thank''s a lot guys.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I am satisfied

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lars7bruno on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am satisfied

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Product

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy antiques101 on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    So far has worked as advertised. No Problems do far...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good and useful plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jon63 on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very good and useful plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Impect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fetheve on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Impécable

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    super

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy barkmoon01 on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great add-on, although it could be a little more detailed in describing the problems.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good and easy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy opticamaxvision4 on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    good

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple, easy, and efficient

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fernandoguastella on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to set up, very simple and does what it says it does

    \n
    \n
    \n", "changelog": "

    9.5.3

    \n
      \n
    • Fix: removed an unused translation that could cause a textdomain loaded to early warning
    • \n
    • Fix: deactivation modal now always displays
    • \n
    • Improvement: refactored the onboarding code
    • \n
    \n

    9.5.2.3

    \n
      \n
    • Fix: the 2FA reset fix now correctly calls the 2FA reset service
    • \n
    \n

    9.5.2.2

    \n
      \n
    • Fix: a TypeError in the 2FA query builder that could occur when updating from older plugin versions
    • \n
    \n

    9.5.2

    \n
      \n
    • Fix: all users will now appear in the 2FA list
    • \n
    • Fix: tasks will now always display on multisite
    • \n
    • Improvement: the activate_ssl WP-CLI command can now be run with the –force argument to skip confirmation
    • \n
    \n

    9.5.1

    \n

    Improvement: standardized REST namespaces to really-simple-security
    \nFix: added a check for the getmyuid function to prevent errors in case this function was missing
    \nFix: Right-To-Left CSS now works correctly when SCRIPT_DEBUG is enabled

    \n

    9.5.0.2

    \n
      \n
    • Fix: Prevent empty content to be written into htaccess
    • \n
    \n

    9.5.0.1

    \n
      \n
    • Fix: Prevented .htaccess from being overwritten with an empty file, auto-creation now requires explicit filter opt-in
    • \n
    \n

    9.5.0

    \n
      \n
    • Improvement: reworked .htaccess handling with insert_with_markers and improved WP Rocket integration.
    • \n
    • Improvement: SBOM added to plugin.
    • \n
    • Improvement: corrected spelling, grammar, and consistency issues in plugin strings; updated geopolitical terms.
    • \n
    • Fix: whitelisted LiteSpeed Cache crawler in .htaccess to prevent redirect issues.
    • \n
    • Fix: corrected 2FA grace period email logic to avoid sending reminders to users with active 2FA.
    • \n
    • Fix: updated hosting provider name from “XXL Hosting” to “Superspace”.
    • \n
    \n

    9.4.3

    \n
      \n
    • Improvement: improved compatibility with plain permalinks.
    • \n
    • Improvement: updated links in the plugin.
    • \n
    • Fix: handled a case where the user ID could be empty in 2FA.
    • \n
    • Fix: learn more button in vulnerability e-mail link now links to the correct page.
    • \n
    • Fix: fixed an issue where rsssl_user_can_manage could be undefined when downloading the system status.
    • \n
    \n

    9.4.2

    \n
      \n
    • Fix: Adjusted .htaccess redirect requirements for subfolder configurations
    • \n
    • Fix: re-send e-mail button on the 2FA page will now show a message when the e-mail is sent.
    • \n
    • Fix: restored SCSS files.
    • \n
    • Fix: fixed an issue where the plugin kept redirecting to its settings page after activation.
    • \n
    • Improvement: updated the way other plugins are installed via the onboarding and dashboard page.
    • \n
    • Improvement: added notice with an option to force verify e-mail address.
    • \n
    • Improvement: updated minimum WordPress version to 6.6.
    • \n
    \n

    9.4.1

    \n
      \n
    • Fix: fixed a translations error where text domain was loaded too early.
    • \n
    \n

    9.4.0

    \n
      \n
    • Improvement: More detailed feedback when using CLI commands.
    • \n
    • Improvement: On activation, detect EXTENDIFY_PARTNER_ID constant and run wp rsssl activate_recommended_features.
    • \n
    • Improvement: Standardize RSS onboarding hoster list to brand names.
    • \n
    • Improvement: “Disable user enumeration” now returns 401 Unauthorized (instead of 404 Not Found) for non-authenticated requests to the /wp/v2/users/ endpoint.
    • \n
    • Include SimplyBook in “onboarding” and “other plugins” sections.
    • \n
    • Fix: Adjust plugin initialization timing to prevent a textdomain warning.
    • \n
    • Fix: Fixed the feedback when an email is resend during Two-Factor Authentication setup.
    • \n
    • Fix: Fixed the Single Sign on link to support custom login urls.
    • \n
    \n

    9.3.5

    \n
      \n
    • April 29th, 2025
    • \n
    • Improvement: Tested up to WordPress 6.8
    • \n
    • Improvement: Some translation updates
    • \n
    • Improvement: Check for autoloader in cron
    • \n
    • Fix: 2FA methods can now be set on profile page
    • \n
    \n

    9.3.3

    \n
      \n
    • April 2nd, 2025
    • \n
    • Improvement: Added multiple WP-CLI commands to better align with recent plugin features
    • \n
    • Improvement: Added support for custom/multiple roles in Two Factor Authentication
    • \n
    \n

    9.3.2.1

    \n
      \n
    • March 20th, 2025
    • \n
    • Fix: Properly handle unknown plugins in upgrade requests, preventing unintended behavior.
    • \n
    \n

    9.3.2

    \n
      \n
    • March 5th, 2025
    • \n
    • Improvement: Added filters to customize Let’s Encrypt Wizard behavior
    • \n
    • Fix: Removed default checkbox behavior from configuration settings.
    • \n
    • Fix: Handle multiple tooltip reasons for disabled select fields
    • \n
    \n

    9.3.1

    \n
      \n
    • February 12th, 2025
    • \n
    • Improvement: Not able to use email needed functions when email is not yet verified.
    • \n
    • Fix: All instruction links are now correct.
    • \n
    • Fix: Undefined array key “m” when showing vulnerability details.
    • \n
    • Fix: Prevent errors when downgrading to free.
    • \n
    • Fix: Compatibility between 2FA and JetPack “Log in using WordPress.com account” setting
    • \n
    \n

    9.2.0

    \n
      \n
    • January 20th, 2025
    • \n
    • Fix: Added nonce check to certificate re-check button.
    • \n
    • Fix: In some cases the review notice was not properly dismissible.
    • \n
    \n

    9.1.4

    \n
      \n
    • Improvement: do not track 404’s for logged in users
    • \n
    • Improvement: implemented the rsssl_wpconfig_path filter in all wp-config functions
    • \n
    • Improvement: Faster onboarding completion after clicking Finish button
    • \n
    • Improvement: CSS. Shields in user interface on datatables are no longer cut off
    • \n
    \n

    9.1.3

    \n
      \n
    • November 28th
    • \n
    • Improvement: Width Vulnerabilities -> configuration
    • \n
    • Improvement: 2Fa lockout notice
    • \n
    • Improvement: catch use of short init in advanced-headers file
    • \n
    • Improvement: string improvements and translator comments
    • \n
    • Improvement: Bitnami support for rsssl_find_wordpress_base_path()
    • \n
    • Improvement: integrate Site health notifications with Solid Security
    • \n
    • Improvement: Enhanced random password generation in Rename Admin User feature
    • \n
    • Improvement: Always return string in wpconfig_path() function
    • \n
    • Improvement: Removes configuration options for a user in edit user.
    • \n
    • Fix: Remove duplicate site URL.
    • \n
    • Fix: ensure rsssl_sanitize_uri_value() function always returns a string, to prevent errors.
    • \n
    • Fix: multisite users who have enabled roles couldn’t use the 2fa if an other role than theirs has been forced.
    • \n
    • Fix: The ‘Skip Onboarding’ button presented an undefined page after selecting the email method as an option.
    • \n
    • Fix: Update translation loading according to the new 6.7 method.
    • \n
    \n

    9.1.2

    \n
      \n
    • security: authentication bypass
    • \n
    \n

    9.1.1.1

    \n
      \n
    • November 5th, 2024
      \n*Improvement: updated black friday dates
    • \n
    \n

    9.1.1

    \n
      \n
    • November 5th, 2024
    • \n
    • Improvement: setting a rsssl-safe-mode.lock file now also enables safe mode and deactivates the Firewall, 2FA and LLA for debugging purposes.
    • \n
    • Improvement: update to system status
    • \n
    • Improvement: textual changes
    • \n
    • Improvement: Updated instructions URLs
    • \n
    • Improvement: Changed site health notices from critical to recommended
    • \n
    • Improvement: dropped obsolete react library
    • \n
    • Fix: fixed a bug where the 2FA grace period was kept active after a reset
    • \n
    \n

    9.1.0

    \n
      \n
    • October 22nd
    • \n
    • Improvement: Allow scanning for security headers via http://scan.really-simple-ssl.com with one click
    • \n
    • Improvement: Remove unnecessary rsssl_update_option calls.
    • \n
    • Fix: prevent potential errors with login feedback..
    • \n
    • Fix: Catch type error when $transients is not an array.
    • \n
    \n

    9.0.2

    \n
      \n
    • Fix: issue with deactivating 2fa
    • \n
    \n

    9.0.0

    \n
      \n
    • September 16th
    • \n
    • Fix: Instructions URL in the Firewall settings.
    • \n
    • Fix: Fixed incorrect instructions URL
    • \n
    • Fix: Let’s Encrypt returning an old certificate on auto-renewed certificates
    • \n
    • Improvement: As the X-Frame-Options is deprecated and replaced by frame ancestors, we drop the header as recommendation.
    • \n
    • Improvement: save and continue in vulnerabilities overview not working correctly
    • \n
    \n

    8.3.0.1

    \n
      \n
    • Fix: Issues with the decryption model
    • \n
    \n

    8.3.0

    \n
      \n
    • August 12th, 2024
    • \n
    • Feature: Password security scan. This feature scans your users for weak passwords, and allows you to enforce non-compromised passwords.
    • \n
    • Fix: Fixed some strings that were not translatable. This has been resolved.
    • \n
    • Fix: Premium support link did not work. Now links to the correct page.
    • \n
    • Improvement: Disable the cron schedules on deactivation.
    • \n
    • Fix: Links in emails were sometimes not correct. This has been fixed.
    • \n
    • Fix: Fatal error on permission detection. This has been resolved.
    • \n
    • Improvement: Custom header for the license checks for better compatibility with some hosting environments.
    • \n
    • Improvement: Added option to disable X-powered-by header.
    • \n
    • Improvement: New improved encryption method for some settings.
    • \n
    \n

    8.1.5

    \n
      \n
    • June 21th, 2024
    • \n
    • Fix: documentation links to website broken
    • \n
    • Improvement: some text changes in helptexts
    • \n
    • Improvement: new structure to upgrade database tables
    • \n
    \n

    8.1.4

    \n
      \n
    • June 11th, 2024
    • \n
    • Improvement: dropdown in onboarding not entirely visible
    • \n
    • Improvement: Styling of locked XML RPC overview
    • \n
    • Fix: Not loading cookie expiration change
    • \n
    • Fix: Visual Composer compatibility icw Enforce Strong Password
    • \n
    • Fix: Multiple CloudFlare detected notices in onboarding
    • \n
    • Fix: Checkbox position in onboarding
    • \n
    \n

    8.1.3

    \n
      \n
    • May 16th, 2024
    • \n
    • Fix: WP Rocket compatibility causing an issue when advanced-headers.php does not exist
    • \n
    \n

    8.1.2

    \n
      \n
    • May 16th, 2024
    • \n
    • Fix: upgrade advanced-headers.php file to allow early inclusion of the file. The ABSPATH defined check causes in issue for early inclusion, so must be removed.
    • \n
    \n

    8.1.1

    \n
      \n
    • May 14th, 2024
    • \n
    • New: detection of non-recommended permissions on files
    • \n
    • New: Configure region restrictions for your site
    • \n
    • Improvement: Textual change on premium overlay
    • \n
    • Improvement: Upgraded minimum required PHP version to 7.4
    • \n
    • Improvement: compatibility with Bitnami
    • \n
    • Improvement: compatibility of Limit Login Attempts with Woocommerce
    • \n
    • Improvement: remove duplicate X-Really-Simple-SSL-Test from advanced-headers-test.php
    • \n
    • Improvement: clear notice about .htaccess writable if do_not_edit_htaccess is enabled
    • \n
    • Fix: upgrade from <6.0 version to >8.0 causing a fatal error
    • \n
    • Fix: URL to details of detected vulnerabilities was incorrect
    • \n
    \n

    8.1.0

    \n
      \n
    • Improvement: some string corrections
    • \n
    • Fix: show ‘self’ as default in Frame Ancestors
    • \n
    • Improvement: catch not existing rsssl_version_compare
    • \n
    • Improvement: check for openSSL module existence
    • \n
    • Improvement: set default empty array for options, for legacy upgrades
    • \n
    • Improvement: disable custom login URL when plain permalinks are enabled
    • \n
    • New: Limit Login Attempts Captcha integration
    • \n
    • Improvement: drop renamed folder notice, not needed anymore
    • \n
    • Improvement: enable advanced headers in onboarding
    • \n
    • Improvement: is_object check in updater
    • \n
    \n

    8.0.1

    \n
      \n
    • Fix: enable 2FA during onboarding when not selected by user
    • \n
    • Improvement: better CSP defaults
    • \n
    • Fix: on upgrade to pro, free settings were cleared if “clear settings on deactivation” was enabled
    • \n
    • Fix: catch several array key not existing errors
    • \n
    \n

    8.0.0

    \n
      \n
    • New: hide remember me checkbox
    • \n
    • New: extend blocking of malicious admin creation to multisite
    • \n
    • Improvement: drop prefetch-src from Content Security Policy
    • \n
    • Improvement: disable two-fa when login protection is disabled
    • \n
    \n

    7.2.8

    \n
      \n
    • Fix: clear cron schedules on deactivation
    • \n
    • Improvement: translations update
    • \n
    • Notice: inform users about upcoming merge of free and pro plugin, not action needed, everything will be handled automatically
    • \n
    \n

    7.2.7

    \n
      \n
    • Improvement: added integration with FlyingPress and Fastest Cache
    • \n
    • Improvement: fix exiting a filter, causing a compatibility issue with BuddyPress
    • \n
    \n

    7.2.6

    \n
      \n
    • Improvement: text changes
    • \n
    • Improvement: css on login error message
    • \n
    • Improvement: header detection improved by always checking the last url in the redirect chain
    • \n
    • New: Added option to limit login cookie expiration time
    • \n
    • Fix: custom 404 pages i.c.w. custom login url
    • \n
    \n

    7.2.5

    \n
      \n
    • Fix: IP detection header order
    • \n
    • Fix: table creation on activation of LLA module
    • \n
    \n

    7.2.4

    \n
      \n
    • Fix: PHP warning in Password Security module
    • \n
    • Fix: change login url feature not working with password protected pages
    • \n
    • Improvement: move database table creation to Limit Login Attempts module
    • \n
    • Improvement: prevent php error caused by debug.log file hardening feature
    • \n
    \n

    7.2.3

    \n
      \n
    • Fix: CSP data not showing in datatable
    • \n
    \n

    7.2.2

    \n
      \n
    • Improvement: improved check for PharData class
    • \n
    \n

    7.2.1

    \n
      \n
    • Fix: Config for CSP preventing Learning mode from completing
    • \n
    • Fix: datatable styling
    • \n
    • Fix: using deactivate_https with wp-cli did not remove htaccess rules
    • \n
    • Improvement: add query parameter to enforce email verification &rsssl_force_verification
    • \n
    • Improvement: css for check certificate manually button
    • \n
    \n

    7.2.0

    \n
      \n
    • Fix: changed link to article
    • \n
    • Fix: remove flags .js file which was added twice, props @adamainsworth
    • \n
    • Fix: typo in missing advanced-headers.php notice
    • \n
    • Improvement: catch php warning when script src is empty when using hide wp version, props @chris-yau
    • \n
    • Improvement: new save & continue feedback
    • \n
    • Improvement: datatable styling
    • \n
    • Improvement: new react based modal
    • \n
    • Improvement: menu re-structured
    • \n
    • Improvement: re-check vulnerability status after core update
    • \n
    • Improvement: link in the email security notification to the vulnerability page instead of to a general explanation
    • \n
    \n

    7.1.3

    \n
      \n
    • October 11th 2023
    • \n
    • Fix: React ErrorBoundary preventing Let’s Encrypt generation to complete.
    • \n
    \n

    7.1.2

    \n
      \n
    • October 6th 2023
    • \n
    • Fix: hook change in integrations loader causing modules not to load. props @rami5342
    • \n
    \n

    7.1.1

    \n
      \n
    • October 5th 2023
    • \n
    • Fix: incorrect function usage, props @heutger
    • \n
    \n

    7.1.0

    \n
      \n
    • October 4th 2023
    • \n
    • Improvement: detection if advanced-headers.php file is running
    • \n
    \n

    7.0.9

    \n
      \n
    • September 5th 2023
    • \n
    • Improvement: typo update word
    • \n
    • Improvement: translatability in several strings.
    • \n
    \n

    7.0.8

    \n
      \n
    • August 8th 2023
    • \n
    • Improvement: WordPress tested up to 6.3
    • \n
    • Improvement: improve file existence check json
    • \n
    • Fix: handling of legacy options in php 8.1
    • \n
    • Fix: count remaining tasks
    • \n
    \n

    7.0.7

    \n
      \n
    • July 25th 2023
    • \n
    • Improvement: modal icon placement in wizard on smaller screens
    • \n
    • Improvement: expire cached detected headers five minutes after saving the settings
    • \n
    • Fix: handling of legacy options in php 8.1
    • \n
    • Fix: prevent issues with CloudFlare when submitting support form from within the plugin
    • \n
    • Fix: translations singular/plural for japanese translations @maboroshin
    • \n
    \n

    7.0.6

    \n
      \n
    • July 4th 2023
    • \n
    • Improvement: support custom wp-content directory in advanced-headers.php
    • \n
    • Improvement: prevent usage of subdirectories in custom login url
    • \n
    • Fix: translations not loading for chunked react components
    • \n
    • Improvement: add option to manually re-check vulnerabilities ‘&rsssl_check_vulnerabilities’, props @fawp
    • \n
    \n

    7.0.5

    \n
      \n
    • Fix: some users with a non www site reporting issues on the login page over http://www, due to the changes in the wp redirect. Reverting to the old method. props @pedalnorth, @mossifer.
    • \n
    \n

    7.0.4

    \n
      \n
    • June 14th 2023
    • \n
    • Improvement: notice informing about the new free vulnerability detection feature
    • \n
    • Improvement: improved the php redirect method
    • \n
    • Improvement: make the wp-config.php not writable notice dismissable
    • \n
    • Fix: feedback on hardening features enable action not showing as enabled, props @rtpHarry
    • \n
    \n

    7.0.3

    \n
      \n
    • Fix: fix false positives on some plugins
    • \n
    • Improvement: vulnerability notifications in site health, if notifications are enabled.
    • \n
    \n

    7.0.2

    \n
      \n
    • Improvement: improve matching precision on plugins with vulnerabilities.
    • \n
    \n

    7.0.1

    \n
      \n
    • Fix: When the Rest API is not available, the ajax fallback should kick in, which didn’t work correctly in 7.0. props @justaniceguy
    • \n
    \n

    7.0.0

    \n
      \n
    • New: Vulnerability Detection is in Beta – Read more or Get Started
    • \n
    • Improvement: move onboarding rest api to do_action rest_route
    • \n
    • Improvement: catch several edge situations in SSL Labs api
    • \n
    • Improvement: SSL Labs block responsiveness
    • \n
    • Improvement: more robust handling of wp-config.php detection
    • \n
    \n

    6.3.0

    \n
      \n
    • Improvement: added support for the new Let’s Encrypt staging environment
    • \n
    \n

    6.2.5

    \n
      \n
    • Improvement: add warning alert option
    • \n
    • Fix: capability mismatch in multisite. props @verkkovaraani
    • \n
    \n

    6.2.4

    \n
      \n
    • Improvement: optionally enable notification emails in onboarding wizard
    • \n
    • Improvement: onboarding styling
    • \n
    • Fix: catch non array value from notices array, props @kenrichman
    • \n
    • Fix: typo in documenation link, props @bookman53
    • \n
    \n

    6.2.3

    \n
      \n
    • Improvement: Changed Back-end react to functional components
    • \n
    • Improvement: multisite notice should link to network admin page
    • \n
    • Improvement: detect existing CAA records to check Let’s Encrypt compatibility
    • \n
    • Improvement: tested up to wp 6.2
    • \n
    • Improvement: UX improvement learning mode
    • \n
    \n

    6.2.2

    \n
      \n
    • Fix: capability mismatch for a non administrator in multisite admin, props @jg-visual
    • \n
    \n

    6.2.1

    \n
      \n
    • Fix: race condition when activating SSL through wp-cli, because of upgrade script
    • \n
    • Fix: missing disabled state in textarea and checkboxes
    • \n
    • Fix: some strings not translatable
    • \n
    • Fix: Let’s Encrypt renewal with add on
    • \n
    • Improvement: permissions check re-structuring
    • \n
    • Improvement: notice on subsite within multisite environment about wildcard updated
    • \n
    \n

    6.2.0

    \n
      \n
    • New: optional email notifications on advanced settings
    • \n
    • Improvement: added tooltips
    • \n
    • Improvement: added warnings for .htaccess redirect
    • \n
    • Improvement: don’t send user email change on renaming admin user, as the email doesn’t actually change
    • \n
    • Improvement: Use BASEPATH only for wp-load.php, so symlinked folders will load based on ABSPATH
    • \n
    • Improvement: Improved support for environments where Rest API is blocked
    • \n
    \n

    6.1.1

    \n
      \n
    • Fix: WP CLI not completing SSL when because site_has_ssl option is not set if website has not been visited before, props @oolongm
    • \n
    • Improvement: prevent ‘undefined’ status showing up in api calls on settings page
    • \n
    • Improvement: show notice if users are using an <2.0 Let’s Encrypt shell add-on which is not compatible with 6.0
    • \n
    \n

    6.1.0

    \n

    \n
      \n
    • Improvement: some UX changes
    • \n
    • Improvement: Limit number of notices in the dashboard
    • \n
    • Improvement: load rest api request url over https if website is loaded over https
    • \n
    • Fix: empty menu item visible in Let’s Encrypt menu
    • \n
    \n

    6.0.14

    \n

    \n
      \n
    • Fix: settings page when using plain permalinks, props @mvsitecreator, props @doug2son
    • \n
    \n

    6.0.13

    \n
      \n
    • Improvement: improve method of dropping empty menu items in settings dashboard
    • \n
    • Improvement: dynamic links in auto installer
    • \n
    • Improvement: Let’s Encrypt Auto installer not working correctly, props @mirkolofio
    • \n
    • Improvement: change rest_api method to core wp apiFetch()
    • \n
    • Improvement: scroll highlighted setting into view after clicking “fix” on a task
    • \n
    • Improvement: run http method test in batches, and set a default, to prevent possibility of curl timeouts on systems with CURL issues
    • \n
    • Improvement: clean up code-execution.php file after test, props @spinhead
    • \n
    • Improvement: give notification if ‘DISABLE_FILE_EDITING’ is set to false in the wp-config.php props @joeri1977
    • \n
    • Improvement: drop some unnecessary translations
    • \n
    • Improvement: set better default, and change transients to option for more persistent behavior in wp version test, props @photomaldives
    • \n
    • Fix: Burst Statistics not activating after installation
    • \n
    • Fix: CSS for blue labels in progress dashboard below 1080px
    • \n
    • Fix: WPCLI SSL activation not working due to capability checks, props @oolongm
    • \n
    • Fix: catch invalid account error in Let’s Encrypt generation, props @bugsjr
    • \n
    • Fix: do not block user enumeration for gutenberg
    • \n
    \n

    6.0.12

    \n
      \n
    • Fix: on multisite, the test for users with admin username did not use the correct prefix, $wpdb->base_prefix, props @jg-visual
    • \n
    • Improvement: allow submenu in back-end react application
    • \n
    • Improvement: Skip value update when no change has been made
    • \n
    • Improvement: no redirect on dismiss of admin notice, props @gangesh, @rtpHarry, @dumel
    • \n
    • Improvement: remove obsolete warning
    • \n
    • Improvement: qtranslate support on settings page
    • \n
    \n

    6.0.11

    \n
      \n
    • Fix: on some environments, the HTTP_X_WP_NONCE is not available in the code, changed logged in check to accomodate such environments
    • \n
    • Fix: dismiss on admin notices not immediately dismissing, requiring dismiss through dashboard, props @dumel
    • \n
    \n

    6.0.10

    \n
      \n
    • Fix: Apache 2.4 support for the block code execution in the uploads directory hardening feature, props @overlake
    • \n
    • Fix: When used with Varnish cache, Rest API get requests were cached, causing the settings page not to update.
    • \n
    • Fix: Ensure manage_security capability for users upgraded from versions before introduction of this capability
    • \n
    • Fix: allow for custom rest api prefixes, props @coderevolution
    • \n
    • Fix: bug in Let’s Encrypt generation with DNS verification: saving of ‘disable_ocsp’ setting, create_bundle_or_renew action with quotes
    • \n
    • Fix: change REST API response method to prevent script errors on environments with PHP warnings and errors, causing blank settings page
    • \n
    • Improvement: Simplify user enumeration test
    • \n
    • Improvement: catch unexpected response in SSL Labs object
    • \n
    • Improvement: z-index on on boarding modal on smaller screen sizes, props @rtpHarry
    • \n
    • Improvement: hide username field if no admin username is present, props @rtpHarry
    • \n
    \n

    6.0.9

    \n
      \n
    • Fix: incorrectly disabled email field in Let’s Encrypt wizard, props @cburgess
    • \n
    • Improvement: on rename admin user, catch existing username, and strange characters
    • \n
    • Improvement: catch openBaseDir restriction in cpanel detection function, props @alofnur
    • \n
    • Improvement: remove 6.0 update notices on subsites in a multisite network, props @wpcoderca, (@collizo4sky
    • \n
    \n

    6.0.8

    \n
      \n
    • Improvement: Lets Encrypt wizard CSS styling
    • \n
    • Improvement: re-add link to article about Let’s Encrypt so users can easily find the URL
    • \n
    • Improvement: let user choose a new username when selecting “rename admin user”
    • \n
    \n

    6.0.7

    \n
      \n
    • Fix: restrict conditions in which htaccess rewrite runs, preventing conflicts with other rewriting plugins
    • \n
    \n

    6.0.6

    \n
      \n
    • Fix: drop upgrade of .htaccess file in upgrade script
    • \n
    \n

    6.0.5

    \n
      \n
    • Fix: race condition in .htaccess update script, where multiple updates simultaneously caused issues with the .htaccess file
    • \n
    \n

    6.0.4

    \n
      \n
    • Fix: using the .htaccess redirect in combination with the block code execution in uploads causes an issue in the .htaccess redirect
    • \n
    • Fix: deactivating Really Simple SSL does not completely remove the wp-config.php fixes, causing errors, props @minalukic812
    • \n
    \n

    6.0.3

    \n
      \n
    • Fix: Rest Optimizer causing other plugins to deactivate when recommended plugins were activated, props @sardelich
    • \n
    \n

    6.0.2

    \n
      \n
    • Fix: do not show WP_DEBUG_DISPLAY notice if WP_DEBUG is false, props @janv01
    • \n
    • Fix: empty cron schedule, props @gilvansilvabr
    • \n
    • Improvement: several typo’s and string improvements
    • \n
    • Fix: auto installer used function not defined yet
    • \n
    • Fix: rest api optimizer causing an error in some cases @giorgos93
    • \n
    \n

    6.0.1

    \n
      \n
    • Fix translations not loading for scripts
    • \n
    \n

    6.0.0

    \n
      \n
    • Tested up to WordPress 6.1.0
    • \n
    • Improvement: User Interface
    • \n
    • New: Server Health Check – powered by SSLLabs
    • \n
    • New: WordPress Hardening Features
    • \n
    \n", "description": "

    Easily improve site security with WordPress Hardening, Two-Factor Authentication (2FA), Login Protection, Vulnerability Detection and SSL certificate.

    \n

    Really simple, Effective and Performant WordPress Security

    \n

    Really Simple Security is the most lightweight and easy-to-use security plugin for WordPress. It secures your WordPress website with SSL certificate generation, including proper 301 https redirection and SSL enforcement, scanning for possible vulnerabilities, Login Protection and implementing essential WordPress hardening features.

    \n

    We believe that security should have the absolute minimum effect on website performance, user experience and maintainability. Therefore, Really Simple Security is:

    \n
      \n
    • Lightweight: Every security feature is developed with a modular approach and with performance in mind. Disabled features won’t load any redundant code.
    • \n
    • Easy-to-use: 1-minute configuration with short onboarding setup.
    • \n
    \n

    Security Features

    \n

    Easy SSL Migration

    \n

    Migrates your website to HTTPS and enforces SSL in just one click.

    \n
      \n
    • 301 redirect via PHP or .htaccess
    • \n
    • Secure cookies
    • \n
    • Let’s Encrypt: Install an SSL Certificate if your hosting provider supports manual installation.
    • \n
    • Server Health Check: Your server configuration is every bit as important for your website security.
    • \n
    \n

    WordPress Hardening

    \n

    Tweak your configuration and keep WordPress fortified and safe by tackling potential weaknesses.

    \n
      \n
    • Prevent code execution in the uploads folder
    • \n
    • Prevent login feedback and disable user enumeration
    • \n
    • Disable XML-RPC
    • \n
    • Disable directory browsing
    • \n
    • Username restrictions (block ‘admin’ and public names)
    • \n
    • and much more..
    • \n
    \n

    Vulnerability Detection

    \n

    Get notified when plugins, themes or WP core contain vulnerabilities and need appropriate action.

    \n

    Login Protection

    \n

    Allow or enforce Two-Factor Authentication (2FA) for specific user roles. Users receive a two-factor code via Email.

    \n

    Improve Security with Really Simple Security Pro

    \n

    Protect your site with all essential security features by upgrading to Really Simple Security Pro.

    \n

    Advanced SSL enforcement

    \n
      \n
    • Mixed Content Scan & Fixer. Detect files that are requested over HTTP and fix them to HTTPS, both Front- and Back-end.
    • \n
    • Enable HTTP Strict Transport Security and configure your site for the HSTS Preload list.
    • \n
    \n

    Firewall

    \n

    Really Simple Security Pro includes a performant and efficient WordPress firewall, to stop bots, crawlers and bad actors with IP and username blocks.

    \n
      \n
    • 404 blocking – Blocks crawlers as they trigger unusual numbers of 404 errors.
    • \n
    • Region blocking – Only allow/block access to your site from specific regions.
    • \n
    • Automated and customisable Firewall rules.
    • \n
    • IP blocklist and allowlist.
    • \n
    \n

    Security Headers

    \n

    Security headers protect your site visitors against the risk of clickjacking, cross-site-forgery attacks, stealing login credentials and malware.

    \n
      \n
    • Independent of your Server Configuration, works on Apache, LiteSpeed, NGINX, etc.
    • \n
    • Protect your website visitors with X-XSS Protection, X-Content-Type-Options, X-Frame-Options, a Referrer Policy and CORS headers.
    • \n
    • Automatically generate your WordPress-tailored Content Security Policy.
    • \n
    \n

    Vulnerability Measures

    \n

    When a vulnerability is detected in a plugin, theme or WordPress core you will get notified accordingly. With Vulnerability Measures, you can configure simple but effective measures to make sure that a critical vulnerability won’t remain unattended.

    \n
      \n
    • Force update: An update process will be tried multiple times until it can be assumed development of a theme or plugin is abandoned. You will be notified during these steps.
    • \n
    • Quarantine: When a plugin or theme can’t be updated to solve a vulnerability, Really Simple Security can quarantine the plugin.
    • \n
    \n

    Advanced Site Hardening

    \n
      \n
    • Choose a custom login URL
    • \n
    • Automated File Permissions check and fixer
    • \n
    • Rename and randomize your database prefix
    • \n
    • Change the debug.log file location to a non-public folder
    • \n
    • Disable application passwords
    • \n
    • Control admin creation
    • \n
    • Disable HTTP methods, reducing HTTP requests
    • \n
    \n

    Login Protection

    \n

    Secure your website’s login process and user accounts with powerful security measures.

    \n
      \n
    • Two-Step verification (Email login)
    • \n
    • 2FA (two factor authentication) with TOTP
    • \n
    • Passwordless login with passkey login
    • \n
    • Enforce strong passwords and frequent password change
    • \n
    • Limit Login Attempts
    • \n
    \n

    With Limit Login Attempts you can configure a threshold to temporarily or permanently block IP addresses or (non-existing) usernames. You can also throw a CAPTCHA after a failed login (hCaptcha or Google reCaptcha)

    \n

    Access Control

    \n
      \n
    • Restrict access to your site for specific regions.
    • \n
    • Add specific IP addresses or IP ranges to the Blocklist or Allowlist.
    • \n
    \n

    Useful Links

    \n\n

    Love Really Simple Security?

    \n

    If you want to support the continuing development of this plugin, please consider buying Really Simple Security Pro, which includes some excellent security features and premium support.

    \n

    About Really Simple Plugins

    \n

    Our mission is to make complex WordPress requirements really easy. Really Simple Security is developed by Really Simple Plugins.

    \n

    For generating SSL certificates, Really Simple Security uses the le acme2 PHP Let’s Encrypt client library, thanks to ‘fbett’ for providing it. Vulnerability Detection uses WP Vulnerability, an open-source initiative by Javier Casares. Want to join as a collaborator? We’re on GitHub as well!

    \n", "screenshots": "
    1. \"The

      The Really Simple Security Dashboard provides a quick security overview.

    2. \"Enable

      Enable or enforce 2FA per user role.

    3. \"Stay

      Stay ahead of plugin, theme and WP core vulnerabilities.

    4. \"Harden

      Harden your site’s security with Basic Hardening features.

    5. \"1-minute

      1-minute configuration with the short security onboarding.

    ", "installation": "

    To install this plugin:

    \n
      \n
    1. Make a backup! See our recommendations.
    2. \n
    3. Download the plugin.
    4. \n
    5. Upload the plugin to the /wp-content/plugins/ directory.
    6. \n
    7. Go to “Plugins” in your WordPress admin, then click “Activate”.
    8. \n
    9. You will now see the Really Simple Security onboarding process, to quickly help you through the configuration process.
    10. \n
    \n"}, "versions": {"9.4.0": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.4.0.zip", "9.4.1": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.4.1.zip", "9.4.2": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.4.2.zip", "9.4.3": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.4.3.zip", "9.5.0": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.0.zip", "9.5.1": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.1.zip", "9.5.2": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.2.zip", "9.5.3": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.3.zip", "trunk": "https://downloads.wordpress.org/plugin/really-simple-ssl.zip", "9.5.0.1": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.0.1.zip", "9.5.0.2": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.0.2.zip", "9.5.2.2": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.2.2.zip", "9.5.2.3": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.2.3.zip"}, "downloaded": 194761152, "description": "

    Easily improve site security with WordPress Hardening, Two-Factor Authentication (2FA), Login Protection, Vulnerability Detection and SSL certificate.

    \n

    Really simple, Effective and Performant WordPress Security

    \n

    Really Simple Security is the most lightweight and easy-to-use security plugin for WordPress. It secures your WordPress website with SSL certificate generation, including proper 301 https redirection and SSL enforcement, scanning for possible vulnerabilities, Login Protection and implementing essential WordPress hardening features.

    \n

    We believe that security should have the absolute minimum effect on website performance, user experience and maintainability. Therefore, Really Simple Security is:

    \n
      \n
    • Lightweight: Every security feature is developed with a modular approach and with performance in mind. Disabled features won’t load any redundant code.
    • \n
    • Easy-to-use: 1-minute configuration with short onboarding setup.
    • \n
    \n

    Security Features

    \n

    Easy SSL Migration

    \n

    Migrates your website to HTTPS and enforces SSL in just one click.

    \n
      \n
    • 301 redirect via PHP or .htaccess
    • \n
    • Secure cookies
    • \n
    • Let’s Encrypt: Install an SSL Certificate if your hosting provider supports manual installation.
    • \n
    • Server Health Check: Your server configuration is every bit as important for your website security.
    • \n
    \n

    WordPress Hardening

    \n

    Tweak your configuration and keep WordPress fortified and safe by tackling potential weaknesses.

    \n
      \n
    • Prevent code execution in the uploads folder
    • \n
    • Prevent login feedback and disable user enumeration
    • \n
    • Disable XML-RPC
    • \n
    • Disable directory browsing
    • \n
    • Username restrictions (block ‘admin’ and public names)
    • \n
    • and much more..
    • \n
    \n

    Vulnerability Detection

    \n

    Get notified when plugins, themes or WP core contain vulnerabilities and need appropriate action.

    \n

    Login Protection

    \n

    Allow or enforce Two-Factor Authentication (2FA) for specific user roles. Users receive a two-factor code via Email.

    \n

    Improve Security with Really Simple Security Pro

    \n

    Protect your site with all essential security features by upgrading to Really Simple Security Pro.

    \n

    Advanced SSL enforcement

    \n
      \n
    • Mixed Content Scan & Fixer. Detect files that are requested over HTTP and fix them to HTTPS, both Front- and Back-end.
    • \n
    • Enable HTTP Strict Transport Security and configure your site for the HSTS Preload list.
    • \n
    \n

    Firewall

    \n

    Really Simple Security Pro includes a performant and efficient WordPress firewall, to stop bots, crawlers and bad actors with IP and username blocks.

    \n
      \n
    • 404 blocking – Blocks crawlers as they trigger unusual numbers of 404 errors.
    • \n
    • Region blocking – Only allow/block access to your site from specific regions.
    • \n
    • Automated and customisable Firewall rules.
    • \n
    • IP blocklist and allowlist.
    • \n
    \n

    Security Headers

    \n

    Security headers protect your site visitors against the risk of clickjacking, cross-site-forgery attacks, stealing login credentials and malware.

    \n
      \n
    • Independent of your Server Configuration, works on Apache, LiteSpeed, NGINX, etc.
    • \n
    • Protect your website visitors with X-XSS Protection, X-Content-Type-Options, X-Frame-Options, a Referrer Policy and CORS headers.
    • \n
    • Automatically generate your WordPress-tailored Content Security Policy.
    • \n
    \n

    Vulnerability Measures

    \n

    When a vulnerability is detected in a plugin, theme or WordPress core you will get notified accordingly. With Vulnerability Measures, you can configure simple but effective measures to make sure that a critical vulnerability won’t remain unattended.

    \n
      \n
    • Force update: An update process will be tried multiple times until it can be assumed development of a theme or plugin is abandoned. You will be notified during these steps.
    • \n
    • Quarantine: When a plugin or theme can’t be updated to solve a vulnerability, Really Simple Security can quarantine the plugin.
    • \n
    \n

    Advanced Site Hardening

    \n
      \n
    • Choose a custom login URL
    • \n
    • Automated File Permissions check and fixer
    • \n
    • Rename and randomize your database prefix
    • \n
    • Change the debug.log file location to a non-public folder
    • \n
    • Disable application passwords
    • \n
    • Control admin creation
    • \n
    • Disable HTTP methods, reducing HTTP requests
    • \n
    \n

    Login Protection

    \n

    Secure your website’s login process and user accounts with powerful security measures.

    \n
      \n
    • Two-Step verification (Email login)
    • \n
    • 2FA (two factor authentication) with TOTP
    • \n
    • Passwordless login with passkey login
    • \n
    • Enforce strong passwords and frequent password change
    • \n
    • Limit Login Attempts
    • \n
    \n

    With Limit Login Attempts you can configure a threshold to temporarily or permanently block IP addresses or (non-existing) usernames. You can also throw a CAPTCHA after a failed login (hCaptcha or Google reCaptcha)

    \n

    Access Control

    \n
      \n
    • Restrict access to your site for specific regions.
    • \n
    • Add specific IP addresses or IP ranges to the Blocklist or Allowlist.
    • \n
    \n

    Useful Links

    \n\n

    Love Really Simple Security?

    \n

    If you want to support the continuing development of this plugin, please consider buying Really Simple Security Pro, which includes some excellent security features and premium support.

    \n

    About Really Simple Plugins

    \n

    Our mission is to make complex WordPress requirements really easy. Really Simple Security is developed by Really Simple Plugins.

    \n

    For generating SSL certificates, Really Simple Security uses the le acme2 PHP Let’s Encrypt client library, thanks to ‘fbett’ for providing it. Vulnerability Detection uses WP Vulnerability, an open-source initiative by Javier Casares. Want to join as a collaborator? We’re on GitHub as well!

    \n", "donate_link": "https://www.paypal.me/reallysimplessl", "num_ratings": 8762, "screenshots": {"1": {"src": "https://ps.w.org/really-simple-ssl/assets/screenshot-1.png?rev=3153900", "caption": "The Really Simple Security Dashboard provides a quick security overview."}, "2": {"src": "https://ps.w.org/really-simple-ssl/assets/screenshot-2.png?rev=3153900", "caption": "Enable or enforce 2FA per user role."}, "3": {"src": "https://ps.w.org/really-simple-ssl/assets/screenshot-3.png?rev=3153900", "caption": "Stay ahead of plugin, theme and WP core vulnerabilities."}, "4": {"src": "https://ps.w.org/really-simple-ssl/assets/screenshot-4.png?rev=3153900", "caption": "Harden your site’s security with Basic Hardening features."}, "5": {"src": "https://ps.w.org/really-simple-ssl/assets/screenshot-5.png?rev=3153900", "caption": "1-minute configuration with the short security onboarding."}}, "support_url": "https://wordpress.org/support/plugin/really-simple-ssl/", "contributors": {"wimbraam": {"avatar": "https://secure.gravatar.com/avatar/744e8df1543407b7a5472d5e1a414eba1faa7d88bee2cadc898ffcbc44c73843?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wimbraam/", "display_name": "Wim Braam"}, "vicocotea": {"avatar": "https://secure.gravatar.com/avatar/16fe87b77342abeccadc8233df0fee7533d0df92dce82e0f338fa6193a12537a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/vicocotea/", "display_name": "vicocotea"}, "markwolters": {"avatar": "https://secure.gravatar.com/avatar/dab3ec58d4eedf545a03eff2ac363eaec029f64c05600d749b3fd923a4fc1432?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/markwolters/", "display_name": "Mark"}, "hesseldejong": {"avatar": "https://secure.gravatar.com/avatar/3dd39dd939945dc1fee0099cabf8a9d12a13ec555e000068bcf4a51a80ab0338?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hesseldejong/", "display_name": "Hessel de Jong"}, "marcelsanting": {"avatar": "https://secure.gravatar.com/avatar/cbb74cdcaf8643a3343c5fb8a8a3986abeb488f3a05dea32f6bf597e4c0e1312?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/marcelsanting/", "display_name": "Marcel Santing"}, "janwoostendorp": {"avatar": "https://secure.gravatar.com/avatar/8c541ac2ff7954183eef79106254fadc5e3d508d5542f706778ece0d4a68b397?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/janwoostendorp/", "display_name": "Jan-Willem"}, "rogierlankhorst": {"avatar": "https://secure.gravatar.com/avatar/da7d8197d253a9a792bf908dd77b0d4bcbf2d192f514ed4206903a96fd93f9b9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rogierlankhorst/", "display_name": "Rogier Lankhorst"}}, "last_updated": "2025-10-27 3:03pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/really-simple-ssl.9.5.3.zip", "author_profile": "https://profiles.wordpress.org/reallysimpleplugins/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    On settings page load, the .htaccess file is no rewritten. If you have made .htaccess customizations to the RSSSL block and have not blocked the plugin from editing it, do so before upgrading.\nAlways back up before any upgrade. Especially .htaccess, wp-config.php and the plugin folder. This way you can easily roll back.

    "}, "active_installs": 4000000, "aspiresync_meta": {"id": "019a30bf-f95d-708b-8e0a-948f0b37d9dc", "name": "Really Simple Security – Simple and Performant Security (formerly Really Simple SSL)", "slug": "really-simple-ssl", "type": "plugin", "origin": "wp_org", "pulled": 1761754478, "status": "open", "checked": 1761754478, "updated": 1761577380, "version": "9.5.3"}, "support_threads": 15, "requires_plugins": [], "short_description": "Easily improve site security with WordPress Hardening, Two-Factor Authentication (2FA), Login Protection, Vulnerability Detection and SSL certificate.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 14}'); -INSERT INTO public.plugins VALUES ('019a30c1-6697-73b4-91b1-d9289cc9c641', 'redirection', 'Redirection', 'Manage 301 redirects, track 404 errors, and improve your site. No knowledge of Apache or Nginx required.', '

    Redirection is the most popular redirect manager for WordPress. With it you can easily manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have. This can help reduce errors and improve your site ranking.

    -

    Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.

    -

    It has been a WordPress plugin for over 10 years and has been recommended countless times. And it’s free!

    -

    Full documentation can be found at https://redirection.me

    -

    Redirection is compatible with PHP from 7.0 to 8.3.

    -

    Redirect manager

    -

    Create and manage redirects quickly and easily without needing Apache or Nginx knowledge. If your WordPress supports permalinks then you can use Redirection to redirect any URL.

    -

    There is full support for regular expressions so you can create redirect patterns to match any number of URLs. You can match query parameters and even pass them through to the target URL.

    -

    The plugin can also be configured to monitor when post or page permalinks are changed and automatically create a redirect to the new URL.

    -

    Conditional redirects

    -

    In addition to straightforward URL matching you can redirect based on other conditions:

    -
      -
    • Login status – redirect only if the user is logged in or logged out
    • -
    • WordPress capability – redirect if the user is able to perform a certain capability
    • -
    • Browser – redirect if the user is using a certain browser
    • -
    • Referrer – redirect if the user visited the link from another page
    • -
    • Cookies – redirect if a particular cookie is set
    • -
    • HTTP headers – redirect based on a HTTP header
    • -
    • Custom filter – redirect based on your own WordPress filter
    • -
    • IP address – redirect if the client IP address matches
    • -
    • Server – redirect another domain if also hosted on this server
    • -
    • Page type – redirect if the current page is a 404
    • -
    -

    Full logging

    -

    A configurable logging option allows to view all redirects occurring on your site, including information about the visitor, the browser used, and the referrer. A ‘hit’ count is maintained for each redirect so you can see if a URL is being used.

    -

    Logs can be exported for external viewing, and can be searched and filtered for more detailed investigation.

    -

    Display geographic information about an IP address, as well as a full user agent information, to try and understand who the visitor is.

    -

    You are able to disable or reduce IP collection to meet the legal requirements of your geographic region, and can change the amount of information captured from the bare minimum to HTTP headers.

    -

    You can also log any redirect happening on your site, including those performed outside of Redirection.

    -

    Add HTTP headers

    -

    HTTP headers can be added to redirects or your entire site that help reduce the impact of redirects or help increase security. You can also add your own custom headers.

    -

    Track 404 errors

    -

    Redirection will keep track of all 404 errors that occur on your site, allowing you to track down and fix problems.

    -

    Errors can be grouped to show where you should focus your attention, and can be redirected in bulk.

    -

    Query parameter handling

    -

    You can match query parameters exactly, ignore them, and even pass them through to your target.

    -

    Migrate Permalinks

    -

    Changed your permalink structure? You can migrate old permalinks simply by entering the old permalink structure. Multiple migrations are supported.

    -

    Apache & Nginx support

    -

    By default Redirection will manage all redirects using WordPress. However you can configure it so redirects are automatically saved to a .htaccess file and handled by Apache itself.

    -

    If you use Nginx then you can export redirects to an Nginx rewrite rules file.

    -

    Fine-grained permissions

    -

    Fine-grained permissions are available so you can customise the plugin for different users. This makes it particularly suitable for client sites where you may want to prevent certain actions, and remove functionality.

    -

    Import & Export

    -

    The plugin has a fully-featured import and export system and you can:

    -
      -
    • Import and export to Apache .htaccess
    • -
    • Export to Nginx rewrite rules
    • -
    • Copy redirects between sites using JSON
    • -
    • Import and export to CSV for viewing in a spreadsheet
    • -
    • Use WP CLI to automate import and export
    • -
    -

    You can also import from the following plugins:

    -
      -
    • Simple 301 Redirects
    • -
    • SEO Redirection
    • -
    • Safe Redirect Manager
    • -
    • Rank Math
    • -
    • WordPress old slug redirects
    • -
    • Quick Post/Pages redirects
    • -
    -

    Search Regex compatible

    -

    Redirection is compatible with Search Regex, allowing you to bulk update your redirects.

    -

    Wait, it’s free?

    -

    Yes, it’s really free. There’s no premium version and no need to pay money to get access to features. This is a dedicated redirect management plugin.

    -

    Support

    -

    Please submit bugs, patches, and feature requests to:

    -

    https://github.com/johngodley/redirection

    -

    Please submit translations to:

    -

    https://translate.wordpress.org/projects/wp-plugins/redirection

    -', '5.5.2', 'John Godley', '6.4', '7.0', '6.8.3', 'https://downloads.wordpress.org/plugin/redirection.5.5.2.zip', '2007-09-10 00:00:00+00', '2025-04-26 11:57:00+00', 'https://profiles.wordpress.org/johnny5/', 88, 678, 18, 3, 2000000, 63120038, 'https://redirection.me/', 'https://redirection.me/donation/', NULL, NULL, 'https://wordpress.org/support/plugin/redirection/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Redirection", "slug": "redirection", "tags": {"301": "301", "404": "404", "apache": "Apache", "htaccess": "htaccess", "redirect": "redirect"}, "added": "2007-09-10", "icons": {"1x": "https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640", "2x": "https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639"}, "author": "John Godley", "rating": 88, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642", "high": "https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641"}, "ratings": {"1": 74, "2": 20, "3": 13, "4": 29, "5": 542}, "version": "5.5.2", "homepage": "https://redirection.me/", "requires": "6.4", "sections": {"faq": "\n
    \nWhy would I want to use this instead of .htaccess?\n\n

    \n

    Ease of use. Redirections are automatically created when a post URL changes, and it is a lot easier to manually add redirections than to hack around a .htaccess. You also get the added benefit of being able to keep track of 404 errors.

    \n

    \n
    \nWhat is the performance of this plugin?\n\n

    \n

    The plugin works in a similar manner to how WordPress handles permalinks and should not result in any noticeable slowdown to your site.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aaaaabb on September 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works very good, simple and advanced enough. Collects stats

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best Plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Matand Matos Kaumba (matandmatos09) on September 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using this plugin ever since and it helps me so much with my line of work. This has made everything easier.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Helpful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anil Dervishi (hopcle) on September 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Clear documentation, helpful support when issues arise.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brilliant Tool!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Abdulrashid Aushev (glawer) on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is surely a lifesaver. Redirection handled the hundreds of URL changes I had to make when I recently moved my entire website to a new structure. I could see every broken link in the log, and it was as simple as clicking a button to set up redirects. I didn''t lose traffic because of this plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works well and great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mooselt on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin is installed by default on all our websites, works as intended and support is available. What more to say?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works great!!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy flexjoly on July 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    And just found the permalinks-redirect feature.... did not see it before.... Just what I needed!!
    Thanks!!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incredibly Useful and Reliable

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy James Henry (jhonline2020) on July 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using Redirection for a while now and it''s easily one of the most essential plugins in my toolkit. Super helpful for managing 301 redirects, cleaning up broken links, and tracking errors — all without touching .htaccess. The interface is simple, and everything just works. Highly recommended!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    5 Star no brainer! A MUST HAVE!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pzsniper on June 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Even paid plugins aren''t so complete!
    Just a UX restyling and it will be A+++

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Updates break existing redirects

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jesse57 on May 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After updating the plugin some of the active redirects stopped working completely.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jason Ball (jasonfintips) on May 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to use.

    \n
    \n
    \n", "changelog": "

    A x.1 version increase introduces new or updated features and can be considered to contain ‘breaking’ changes. A x.x.1 increase is purely a bug fix and introduces no new features, and can be considered as containing no breaking changes.

    \n

    5.5.2

    \n
      \n
    • Fix saving of x-frame-options
    • \n
    • Fix CPT loading
    • \n
    • Fix last access date changing on update
    • \n
    • Remove newsletter option
    • \n
    \n

    5.5.1

    \n
      \n
    • Fix problem with category pages and permalink migration
    • \n
    • Don’t report invalid JSON import as successful
    • \n
    • Exclude CPTs without URLs for monitoring
    • \n
    • Update for WP 6.7
    • \n
    \n

    5.5.0

    \n
      \n
    • Multiple ‘URL and WP page type’ redirects will now work
    • \n
    • Translations now use WP core
    • \n
    \n

    5.4.2 – 27th January 2024

    \n
      \n
    • Remove Geo IP option (it may return)
    • \n
    • Fix crash in agent info
    • \n
    • Add new max-age header
    • \n
    • Remove deprecated ini_set call
    • \n
    • Don’t double encode URLs when checking
    • \n
    \n

    5.4.1 – 5th January 2024

    \n
      \n
    • Fix problem with some international URLs not appearing in the 404 log
    • \n
    \n

    5.4 – 1st January 2024

    \n
      \n
    • Don’t encode negative lookaheads
    • \n
    • Remove port from server name
    • \n
    • Importing into a disabled group now creates disabled items
    • \n
    • Add option to pick IP header
    • \n
    • Fix save of x-content-type-options: sniff
    • \n
    • Fix save of multiple spaces
    • \n
    \n

    5.3.10 – 2nd April 2023

    \n
      \n
    • Fix associated redirect setting not saving properly
    • \n
    \n

    5.3.9 – 25th January 2023

    \n
      \n
    • Fix incorrect sanitization applied to target URLs
    • \n
    \n

    5.3.8 – 22nd January 2023

    \n
      \n
    • Fix app rendering twice causing problems with upgrades
    • \n
    • Fix CSV header being detected as an error
    • \n
    \n

    5.3.7 – 8th January 2023

    \n
      \n
    • Fix problem with locales in certain directories
    • \n
    • Fix incorrect import of empty CSV lines
    • \n
    • Don’t encode regex for Nginx
    • \n
    \n

    5.3.6 – 12th November 2022

    \n
      \n
    • Fix for sites with a version of +OK
    • \n
    • Another fix for CZ locale
    • \n
    \n

    5.3.5 – 6th November 2022

    \n
      \n
    • Fix crash on options page for Czech language
    • \n
    \n

    5.3.4 – 14th September 2022

    \n
      \n
    • Fix query parameter name with a + not matching
    • \n
    \n

    5.3.3 – 7th September 2022

    \n
      \n
    • Fix default HTTP header not being set when first used
    • \n
    • Fix incorrect column heading in CSV
    • \n
    • Fix passing of mixed case parameters
    • \n
    \n

    5.3.2 – 6th August 2022

    \n
      \n
    • Fix missing props error
    • \n
    • Fix missing value for .htaccess location display
    • \n
    \n

    5.3.1 – 29th July 2022

    \n
      \n
    • Fix crash caused by bad translations in locale files
    • \n
    • Fix query match not working when it contained mixed case
    • \n
    • Fix missing flag in .htaccess export
    • \n
    \n

    5.3.0 – 21st July 2022

    \n
      \n
    • Improve installation process
    • \n
    • Improve permalink migration so it works with more permalinks
    • \n
    • Prevent ordering columns by HTTP code
    • \n
    • Better encode URLs in Nginx export
    • \n
    • Allow escaped characters to work in the redirect checker
    • \n
    • Reduce CSV import time
    • \n
    \n

    5.2.3 – 6th February 2022

    \n
      \n
    • Fix error when grouping by URL, adding redirect, and then adding another redirect
    • \n
    • Add a warning for unescaped ? regex
    • \n
    \n

    5.2.2 – 22nd January 2022

    \n
      \n
    • Further improve URL checker response to clarify responsibility
    • \n
    • Fix WordPress and pagetype match preventing the logging of 404s
    • \n
    • Fix title field being inactive
    • \n
    • Fix CSV export having duplicate column
    • \n
    \n

    5.2.1 – 16th January 2022

    \n
      \n
    • Include path with inline URL checker
    • \n
    \n

    5.2 – 15th January 2022

    \n
      \n
    • Improve URL checker and show more details
    • \n
    • Retain query parameter case when passing to target URL
    • \n
    • Remove unnecessary database stage option check
    • \n
    • PHP 8.1 compatibility
    • \n
    \n

    5.1.3 – 24th July 2021

    \n
      \n
    • Fix geo IP on log pages showing an API redirected error
    • \n
    • Fix crash when changing match type in edit dialog
    • \n
    \n

    5.1.2 – 17th July 2021

    \n
      \n
    • Fix random redirect not working
    • \n
    • Fix [userid] shortcode returning 1
    • \n
    \n

    5.1.1 – 11th April 2021

    \n
      \n
    • Revert the permalink migration improvement from 5.1 as it’s causing problems on some sites
    • \n
    \n

    5.1 – 10th April 2021

    \n
      \n
    • Add importer for PrettyLinks
    • \n
    • Fix crash converting a ‘do nothing’ to ‘redirect to URL’
    • \n
    • Improve warning messages
    • \n
    • Improve permalink migration when is_404 is not set
    • \n
    • Fix ‘delete log entries’ returning blank data
    • \n
    • Fix missing .htaccess location
    • \n
    • Fix hits & date not imported with JSON format
    • \n
    \n

    5.0.1 – 26th Jan 2021

    \n
      \n
    • Fix incorrect warning when creating a regular expression with captured data
    • \n
    • Fix JS error when upgrading a database with a broken REST API
    • \n
    • Increase regular expression redirect limit
    • \n
    • PHP8 support
    • \n
    \n

    5.0 – 16th Jan 2021

    \n
      \n
    • Add caching support
    • \n
    • Add support for migrated permalink structures
    • \n
    • Add dynamic URL variables
    • \n
    • Add fully automatic database upgrade option
    • \n
    • Add a new version release information prompt
    • \n
    • Improve performance when many redirects have the same path
    • \n
    • Move bulk all action to a separate button after selecting all
    • \n
    • Fix error in display with restricted capabilities
    • \n
    • Avoid problems with 7G Firewall
    • \n
    • Improve handling of invalid encoded characters
    • \n
    \n

    4.9.2 – 30th October

    \n
      \n
    • Fix warning with PHP 5.6
    • \n
    • Improve display of long URLs
    • \n
    \n

    4.9.1 – 26th October 2020

    \n
      \n
    • Restore missing time and referrer URL from log pages
    • \n
    • Restore missing client information from debug reports
    • \n
    • Fix order by count when grouping by URL
    • \n
    • Check for duplicate columns in DB upgrade
    • \n
    \n

    4.9 – 24th October 2020

    \n
      \n
    • Expand log information to capture HTTP headers, domain, HTTP code, and HTTP method
    • \n
    • Allow non-Redirection redirects to be logged – allows tracking of all redirects on a site
    • \n
    • Expand log and 404 pages with greatly improved filters
    • \n
    • Bulk delete logs and 404s by selected filter
    • \n
    • Logging is now optional per redirect rule
    • \n
    • Fix random action on a site with non-root URL
    • \n
    • Fix group and search being reset when searching
    • \n
    • Fix canonical alias not using request server name
    • \n
    \n

    4.8 – 23rd May 2020

    \n
      \n
    • Add importer for Quick Post/Page Redirects plugin
    • \n
    • Add plugin imports to WP CLI
    • \n
    • Fix install wizard using wrong relative API
    • \n
    • Fix sub menu outputting invalid HTML
    • \n
    \n

    4.7.2 – 8th May 2020

    \n
      \n
    • Fix PHP warning decoding an encoded question mark
    • \n
    • Fix site adding an extra period in a domain name
    • \n
    • Fix protocol appearing in .htaccess file server redirect
    • \n
    \n

    4.7.1 – 14th March 2020

    \n
      \n
    • Fix HTTP header over-sanitizing the value
    • \n
    • Fix inability to remove .htaccess location
    • \n
    • Fix 404 group by ‘delete all’
    • \n
    • Fix import of empty ‘old slugs’
    • \n
    \n

    4.7 – 15th February 2020

    \n
      \n
    • Relocate entire site to another domain, with exceptions
    • \n
    • Site aliases to map another site to current site
    • \n
    • Canonical settings for www/no-www
    • \n
    • Change content-type for API requests to help with mod_security
    • \n
    \n

    4.6.2 – 6th January 2020

    \n
      \n
    • Fix 404 log export button
    • \n
    • Fix HTTPS option not appearing enabled
    • \n
    • Fix another PHP compat issue
    • \n
    \n

    4.6.1 – 30th December 2019

    \n
      \n
    • Back-compatibility fix for old PHP versions
    • \n
    \n

    4.6 – 27th December 2019

    \n
      \n
    • Add fine-grained permissions allowing greater customisation of the plugin, and removal of functionality
    • \n
    • Add an import step to the install wizard
    • \n
    • Remove overriding of default WordPress ‘old slugs’
    • \n
    \n

    4.5.1 – 23rd November 2019

    \n
      \n
    • Fix broken canonical redirects
    • \n
    \n

    4.5 – 23rd November 2019

    \n
      \n
    • Add HTTP header feature, with x-robots-tag support
    • \n
    • Move HTTPS setting to new Site page
    • \n
    • Add filter to disable redirect hits
    • \n
    • Add ‘Disable Redirection’ option to stop Redirection, in case you break your site
    • \n
    • Fill out API documentation
    • \n
    • Fix style with WordPress 5.4
    • \n
    • Fix encoding of # in .htaccess
    • \n
    \n

    4.4.2 – 29th September 2019

    \n
      \n
    • Fix missing options for monitor group
    • \n
    • Fix check redirect not appearing if position column not shown
    • \n
    \n

    4.4.1 – 28th September 2019

    \n
      \n
    • Fix search highlighter causing problems with regex characters
    • \n
    • Fix ‘show all’ link not working
    • \n
    • Fix ‘Request URI Too Long’ error when switching pages after creating redirects
    • \n
    \n

    4.4 – 22nd September 2019

    \n
      \n
    • Add ‘URL and language’ match
    • \n
    • Add page display type for configurable information
    • \n
    • Add ‘search by’ to search by different information
    • \n
    • Add filter dropdown to filter data
    • \n
    • Add warning about relative absolute URLs
    • \n
    • Add 451, 500, 501, 502, 503, 504 error codes
    • \n
    • Fix multiple ‘URL and page type’ redirects
    • \n
    • Improve invalid nonce warning
    • \n
    • Encode replaced values in regular expression targets
    • \n
    \n

    4.3.3 – 8th August 2019

    \n

    =
    \n* Add back compatibility fix for URL sanitization

    \n

    4.3.2 – 4th August 2019

    \n

    =
    \n* Fix problem with UTF8 characters in a regex URL
    \n* Fix invalid characters causing an error message
    \n* Fix regex not disabled when removed

    \n

    4.3.1 – 8th June 2019

    \n
      \n
    • Fix + character being removed from source URL
    • \n
    \n

    4.3 – 2nd June 2019

    \n
      \n
    • Add support for UTF8 URLs without manual encoding
    • \n
    • Add manual database install option
    • \n
    • Add check for pipe character in target URL
    • \n
    • Add warning when problems saving .htaccess file
    • \n
    • Switch from ‘x-redirect-agent’ to ‘x-redirect-by’, for WP 5+
    • \n
    • Improve handling of invalid query parameters
    • \n
    • Fix query param name is a number
    • \n
    • Fix redirect with blank target and auto target settings
    • \n
    • Fix monitor trash option applying when deleting a draft
    • \n
    • Fix case insensitivity not applying to query params
    • \n
    • Disable IP grouping when IP option is disabled
    • \n
    • Allow multisite database updates to run when more than 100 sites
    • \n
    \n

    4.2.3 – 16th Apr 2019

    \n
      \n
    • Fix bug with old API routes breaking test
    • \n
    \n

    4.2.2 – 13th Apr 2019

    \n
      \n
    • Improve API checking logic
    • \n
    • Fix ‘1’ being logged for pass-through redirects
    • \n
    \n

    4.2.1 – 8th Apr 2019

    \n
      \n
    • Fix incorrect CSV download link
    • \n
    \n

    4.2 – 6th Apr 2019

    \n
      \n
    • Add auto-complete for target URLs
    • \n
    • Add manual database upgrade
    • \n
    • Add support for semi-colon separated import files
    • \n
    • Add user agent to 404 export
    • \n
    • Add workaround for qTranslate breaking REST API
    • \n
    • Improve API problem detection
    • \n
    • Fix JSON import ignoring group status
    • \n
    \n

    4.1.1 – 23rd Mar 2019

    \n
      \n
    • Remove deprecated PHP
    • \n
    • Fix REST API warning
    • \n
    • Improve WP CLI database output
    • \n
    \n

    4.1 – 16th Mar 2019

    \n
      \n
    • Move 404 export option to import/export page
    • \n
    • Add additional redirect suggestions
    • \n
    • Add import from Rank Math
    • \n
    • Fix ‘force https’ causing WP to redirect to admin URL when accessing www subdomain
    • \n
    • Fix .htaccess import adding ^ to the source
    • \n
    • Fix handling of double-slashed URLs
    • \n
    • Fix WP CLI on single site
    • \n
    • Add DB upgrade to catch URLs with double-slash URLs
    • \n
    • Remove unnecessary escaped slashes from JSON output
    • \n
    \n

    4.0.1 – 2nd Mar 2019

    \n
      \n
    • Improve styling of query flags
    • \n
    • Match DB upgrade for new match_url to creation script
    • \n
    • Fix upgrade on some hosts where plugin is auto-updated
    • \n
    • Fix pagination button style in WP 5.1
    • \n
    • Fix IP match when action is ‘error’
    • \n
    • Fix database upgrade on multisite WP CLI
    • \n
    \n

    4.0 – 23rd Feb 2019

    \n
      \n
    • Add option for case insensitive redirects
    • \n
    • Add option to ignore trailing slashes
    • \n
    • Add option to copy query parameters to target URL
    • \n
    • Add option to ignore query parameters
    • \n
    • Add option to set defaults for case, trailing, and query settings
    • \n
    • Improve upgrade for sites with missing tables
    • \n
    \n

    3.7.3 – 2nd Feb 2019

    \n
      \n
    • Add PHP < 5.4 message on plugins page
    • \n
    • Prevent upgrade message being hidden by other plugins
    • \n
    • Fix warning with regex and no leading slash
    • \n
    • Fix missing display of disabled redirects with a title
    • \n
    • Improve upgrade for sites with a missing IP column
    • \n
    • Improve API detection with plugins that use sessions
    • \n
    • Improve compatibility with ModSecurity
    • \n
    • Improve compatibility with custom API prefix
    • \n
    • Detect site where Redirection was once installed and has settings but no database tables
    • \n
    \n

    3.7.2 – 16th Jan 2019

    \n
      \n
    • Add further partial upgrade detection
    • \n
    • Add fallback for sites with no REST API value
    • \n
    \n

    3.7.1 – 13th Jan 2019

    \n
      \n
    • Clarify database upgrade text
    • \n
    • Fix Firefox problem with multiple URLs
    • \n
    • Fix 3.7 built against wrong dropzone module
    • \n
    • Add DB upgrade detection for people with partial 2.4 sites
    • \n
    \n

    3.7 – 12th Jan 2019

    \n
      \n
    • Add redirect warning for known problem redirects
    • \n
    • Add new database install and upgrade process
    • \n
    • Add database functions to WP CLI
    • \n
    • Add introduction message when first installed
    • \n
    • Drop PHP < 5.4 support. Please use version 3.6.3 if your PHP is too old
    • \n
    • Improve export filename
    • \n
    • Fix IPs appearing for bulk redirect
    • \n
    • Fix disabled redirects appearing in htaccess
    • \n
    \n

    3.6.3 – 14th November 2018

    \n
      \n
    • Remove potential CSRF
    • \n
    \n

    3.6.2 – 10th November 2018

    \n
      \n
    • Add another PHP < 5.4 compat fix
    • \n
    • Fix ‘delete all from 404 log’ when ungrouped deleting all 404s
    • \n
    • Fix IDs shown in bulk add redirect
    • \n
    \n

    3.6.1 – 3rd November 2018

    \n
      \n
    • Add another PHP < 5.4 fix. Sigh
    • \n
    \n

    3.6 – 3rd November 2018

    \n
      \n
    • Add option to ignore 404s
    • \n
    • Add option to block 404s by IP
    • \n
    • Add grouping of 404s by IP and URL
    • \n
    • Add bulk block or redirect a group of 404s
    • \n
    • Add option to redirect on a 404
    • \n
    • Better page navigation change monitoring
    • \n
    • Add URL & IP match
    • \n
    • Add 303 and 304 redirect codes
    • \n
    • Add 400, 403, and 418 (I’m a teapot!) error codes
    • \n
    • Fix server match not supporting regex properly
    • \n
    • Deprecated file pass through removed
    • \n
    • ‘Do nothing’ now stops processing further rules
    • \n
    \n

    3.5 – 23rd September 2018

    \n
      \n
    • Add redirect checker on redirects page
    • \n
    • Fix missing translations
    • \n
    • Restore 4.7 backwards compatibility
    • \n
    • Fix unable to delete server name in server match
    • \n
    • Fix error shown when source URL is blank
    • \n
    \n

    3.4.1 – 9th September 2018

    \n
      \n
    • Fix import of WordPress redirects
    • \n
    • Fix incorrect parsing of URLs with ‘http’ in the path
    • \n
    • Fix ‘force ssl’ not including path
    • \n
    \n

    3.4 – 17th July 2018

    \n
      \n
    • Add a redirect checker
    • \n
    • Fix incorrect host parsing with server match
    • \n
    • Fix PHP warning with CSV import
    • \n
    • Fix old capability check that was missed from 3.0
    • \n
    \n

    3.3.1 – 24th June 2018

    \n
      \n
    • Add a minimum PHP check for people < 5.4
    • \n
    \n

    3.3 – 24th June 2018

    \n
      \n
    • Add user role/capability match
    • \n
    • Add fix for IP blocking plugins
    • \n
    • Add server match to redirect other domains (beta)
    • \n
    • Add a force http to https option (beta)
    • \n
    • Use users locale setting, not site
    • \n
    • Check for mismatched site/home URLs
    • \n
    • Fix WP CLI not clearing logs
    • \n
    • Fix old capability check
    • \n
    • Detect BOM marker in response
    • \n
    • Improve detection of servers that block content-type json
    • \n
    • Fix incorrect encoding of entities in some locale files
    • \n
    • Fix table navigation parameters not affecting subsequent pages
    • \n
    • Fix .htaccess saving after WordPress redirects
    • \n
    • Fix get_plugin_data error
    • \n
    • Fix canonical redirect problem caused by change in WordPress
    • \n
    • Fix situation that prevented rules cascading
    • \n
    \n

    3.2 – 11th February 2018

    \n
      \n
    • Add cookie match – redirect based on a cookie
    • \n
    • Add HTTP header match – redirect based on an HTTP header
    • \n
    • Add custom filter match – redirect based on a custom WordPress filter
    • \n
    • Add detection of REST API redirect, causing ‘fetch error’ on some sites
    • \n
    • Update table responsiveness
    • \n
    • Allow redirects for canonical WordPress URLs
    • \n
    • Fix double include error on some sites
    • \n
    • Fix delete action on some sites
    • \n
    • Fix trailing slash redirect of API on some sites
    • \n
    \n

    3.1.1 – 29th January 2018

    \n
      \n
    • Fix problem fetching data on sites without https
    • \n
    \n

    3.1 – 27th January 2018

    \n
      \n
    • Add alternative REST API routes to help servers that block the API
    • \n
    • Move DELETE API calls to POST, to help servers that block DELETE
    • \n
    • Move API nonce to query param, to help servers that don’t pass HTTP headers
    • \n
    • Improve error messaging
    • \n
    • Preload support page so it can be used when REST API isn’t working
    • \n
    • Fix bug editing Nginx redirects
    • \n
    • Fix import from JSON not setting status
    • \n
    \n

    3.0.1 – 21st Jan 2018

    \n
      \n
    • Don’t show warning if per page setting is greater than max
    • \n
    • Don’t allow WP REST API to be redirected
    • \n
    \n

    3.0 – 20th Jan 2018

    \n
      \n
    • Add support for IPv6
    • \n
    • Add support for disabling or anonymising IP collection
    • \n
    • Add support for monitoring custom post types
    • \n
    • Add support for monitoring from quick edit mode
    • \n
    • Default to last group used when editing
    • \n
    • Permissions changed from ‘administrator’ role to ‘manage_options’ capability
    • \n
    • Swap to WP REST API
    • \n
    • Add new IP map service
    • \n
    • Add new useragent service
    • \n
    • Add ‘add new’ button to redirect page
    • \n
    • Increase ‘title’ length
    • \n
    • Fix position not saving on creation
    • \n
    • Fix log pages not remembering table settings
    • \n
    • Fix incorrect column used for HTTP code when importing CSV
    • \n
    • Add support links from inside the plugin
    • \n
    \n

    2.10.1 – 26th November 2017

    \n
      \n
    • Fix incorrect HTTP code reported in errors
    • \n
    • Improve management page hook usage
    • \n
    \n

    2.10 – 18th November 2017

    \n
      \n
    • Add support for WordPress multisite
    • \n
    • Add new Redirection documentation
    • \n
    • Add extra actions when creating redirects
    • \n
    • Fix user agent dropdown not setting agent
    • \n
    \n

    2.9.2 – 11th November 2017

    \n
      \n
    • Fix regex breaking .htaccess export
    • \n
    • Fix error when saving Error or No action
    • \n
    • Restore sortable table headers
    • \n
    \n

    2.9.1 – 4th November 2017

    \n
      \n
    • Fix const issues with PHP 5
    • \n
    \n

    2.9 – 4th November 2017

    \n
      \n
    • Add option to set redirect cache expiry, default 1 hour
    • \n
    • Add a check for unsupported versions of WordPress
    • \n
    • Add check for database tables before starting the plugin
    • \n
    • Improve JSON import memory usage
    • \n
    • Add importers for: Simple 301 Redirects, SEO Redirection, Safe Redirect Manager, and WordPress old post slugs
    • \n
    • Add responsive admin UI
    • \n
    \n

    2.8.1 – 22nd October 2017

    \n
      \n
    • Fix redirect edit not closing after save
    • \n
    • Fix user agent dropdown not auto-selecting regex
    • \n
    • Fix focus to bottom of page on load
    • \n
    • Improve error message when failing to start
    • \n
    • Fix associated redirect appearing at start of URL, not end
    • \n
    \n

    2.8 – 18th October 2017

    \n
      \n
    • Add a fixer to the support page
    • \n
    • Ignore case for imported files
    • \n
    • Fixes for Safari
    • \n
    • Fix WP CLI importing CSV
    • \n
    • Fix monitor not setting HTTP code
    • \n
    • Improve error, random, and pass-through actions
    • \n
    • Fix bug when saving long title
    • \n
    • Add user agent dropdown to user agent match
    • \n
    • Add pages and trashed posts to monitoring
    • \n
    • Add ‘associated redirect’ option to monitoring, for AMP
    • \n
    • Remove 404 after adding
    • \n
    • Allow search term to apply to deleting logs and 404s
    • \n
    • Deprecate file pass-through, needs to be enabled with REDIRECTION_SUPPORT_PASS_FILE and will be replaced with WP actions
    • \n
    • Further sanitize match data against bad serialization
    • \n
    \n

    2.7.3 – 26th August 2017

    \n
      \n
    • Fix an import regression bug
    • \n
    \n

    2.7.2 – 25th August 2017

    \n
      \n
    • Better IE11 support
    • \n
    • Fix Apache importer
    • \n
    • Show more detailed error messages
    • \n
    • Refactor match code and fix a problem saving referrer & user agent matches
    • \n
    • Fix save button not enabling for certain redirect types
    • \n
    \n

    2.7.1 – 14th August 2017

    \n
      \n
    • Improve display of errors
    • \n
    • Improve handling of CSV
    • \n
    • Reset tables when changing menus
    • \n
    • Change how the page is displayed to reduce change of interference from other plugins
    • \n
    \n

    2.7 – 6th August 2017

    \n
      \n
    • Finish conversion to React
    • \n
    • Add WP CLI support for import/export
    • \n
    • Add a JSON import/export that exports all data
    • \n
    • Edit redirect position
    • \n
    • Apache config moved to options page
    • \n
    • Fix 410 error code
    • \n
    • Fix page limits
    • \n
    • Fix problems with IE/Safari
    • \n
    \n

    2.6.6

    \n
      \n
    • Use React on redirects page
    • \n
    • Use translate.wordpress.org for language files
    • \n
    \n

    2.6.5

    \n
      \n
    • Use React on groups page
    • \n
    \n

    2.6.4

    \n
      \n
    • Add a limit to per page screen options
    • \n
    • Fix warning in referrer match when referrer doesn’t exist
    • \n
    • Fix 404 page showing options
    • \n
    • Fix RSS token not regenerating
    • \n
    • 404 and log filters can now avoid logging
    • \n
    • Use React on modules page
    • \n
    \n

    2.6.3

    \n
      \n
    • Use React on log and 404 pages
    • \n
    • Fix log option not saving ‘never’
    • \n
    • Additional check for auto-redirect from root
    • \n
    • Fix delete plugin button
    • \n
    • Improve IP detection for Cloudflare
    • \n
    \n

    2.6.2

    \n
      \n
    • Set auto_detect_line_endings when importing CSV
    • \n
    • Replace options page with a fancy React version that looks exactly the same
    • \n
    \n

    2.6.1

    \n
      \n
    • Fix CSV export merging everything into one line
    • \n
    • Fix bug with HTTP codes not being imported from CSV
    • \n
    • Add filters for source and target URLs
    • \n
    • Add filters for log and 404s
    • \n
    • Add filters for request data
    • \n
    • Add filter for monitoring post permalinks
    • \n
    • Fix export of 404 and logs
    • \n
    \n

    2.6

    \n
      \n
    • Show example CSV
    • \n
    • Allow regex and redirect code to be set on import
    • \n
    • Fix a bunch of database installation problems
    • \n
    \n

    2.5

    \n
      \n
    • Fix no group created on install
    • \n
    • Fix missing export key on install
    • \n
    • Add 308 HTTP code, props to radenui
    • \n
    • Fix imported URLs set to regex, props to alpipego
    • \n
    • Fix sorting of URLs, props to JordanReiter
    • \n
    • Don’t cache 307s, props to rmarchant
    • \n
    • Abort redirect exit if no redirection happened, props to junc
    • \n
    \n

    2.4.5

    \n
      \n
    • Ensure cleanup code runs even if plugin was updated
    • \n
    • Extra sanitization of Apache & Nginx files, props to Ed Shirey
    • \n
    • Fix regex bug, props to romulodl
    • \n
    • Fix bug in correct group not being shown in dropdown
    • \n
    \n

    2.4.4

    \n
      \n
    • Fix large advanced settings icon
    • \n
    • Add text domain to plugin file, props Bernhard Kau
    • \n
    • Better PHP7 compatibility, props to Ohad Raz
    • \n
    • Better Polylang compatibility, props to imrehg
    • \n
    \n

    2.4.3

    \n
      \n
    • Bump minimum WP to 4.0.0
    • \n
    • Updated German translation, props to Konrad Tadesse
    • \n
    • Additional check when creating redirections in case of bad data
    • \n
    \n

    2.4.2

    \n
      \n
    • Add Gulp task to generate POT file
    • \n
    • Fix a problem with duplicate positions in the redirect table, props to Jon Jensen
    • \n
    • Fix URL monitor not triggering
    • \n
    • Fix CSV export
    • \n
    \n

    2.4.1

    \n
      \n
    • Fix error for people with an unknown module in a group
    • \n
    \n

    2.4

    \n
      \n
    • Reworked modules now no longer stored in database
    • \n
    • Nginx module (experimental)
    • \n
    • View .htaccess/Nginx inline
    • \n
    • Beginnings of some unit tests!
    • \n
    • Fix DB creation on activation, props syntax53
    • \n
    • Updated Japanese locale, props to Naoko
    • \n
    • Remove deprecated like escaping
    • \n
    \n

    2.3.16

    \n
      \n
    • Fix export options not showing for some people
    • \n
    \n

    2.3.15

    \n
      \n
    • Fix error on admin page for WP 4.2
    • \n
    \n

    2.3.14

    \n
      \n
    • Remove error_log statements
    • \n
    • Fix incorrect table name when exporting 404 errors, props to brazenest/synchronos-t
    • \n
    \n

    2.3.13

    \n
      \n
    • Split admin and front-end code out to streamline the loading a bit
    • \n
    • Fix bad groups link when viewing redirects in a group, props to Patrick Fabre
    • \n
    • Improved plugin activation/deactivation and cleanup
    • \n
    • Improved log clearing
    • \n
    \n

    2.3.12

    \n
      \n
    • Persian translation by Danial Hatami
    • \n
    • Fix saving a redirection with login status, referrer, and user agent
    • \n
    • Fix problem where deleting your last group would cause Redirection to only show an error
    • \n
    • Add limits to referrer and destination in the logs
    • \n
    • Redirect title now shows in the main list again. The field is hidden when editing until toggled
    • \n
    • Fix ‘bad nonce’ error, props to Jonathan Harrell
    • \n
    • Remove old WP code
    • \n
    \n

    2.3.11

    \n
      \n
    • Fix log cleanup options
    • \n
    • More space when editing redirects
    • \n
    • Better detection of regex when importing
    • \n
    • Restore export options
    • \n
    • Fix unnecessary protected
    • \n
    \n

    2.3.10

    \n
      \n
    • Another compatibility fix for PHP < 5.3
    • \n
    • Fix incorrect module ID used when creating a group
    • \n
    • Fix .htaccess duplication, props to Jörg Liwa
    • \n
    \n

    2.3.9

    \n
      \n
    • Compatibility fix for PHP < 5.3
    • \n
    \n

    2.3.8

    \n
      \n
    • Fix plugin activation error
    • \n
    • Fix fatal error in table nav, props to spacedmonkey
    • \n
    \n

    2.3.7

    \n
      \n
    • New redirect page to match WP style
    • \n
    • New module page to match WP style
    • \n
    • Configurable permissions via redirection_role filter, props to RodGer-GR
    • \n
    • Fix saving 2 month log period
    • \n
    • Fix importer
    • \n
    • Fix DB creation to check for existing tables
    • \n
    \n

    2.3.6

    \n
      \n
    • Updated Italian translation, props to Raffaello Tesi
    • \n
    • Updated Romanian translation, props to Flo Bejgu
    • \n
    • Simplify logging options
    • \n
    • Fix log deletion by search term
    • \n
    • Export logs and 404s to CSV
    • \n
    \n

    2.3.5

    \n
      \n
    • Default log settings to 7 days, props to Maura
    • \n
    • Updated Danish translation thanks to Mikael Rieck
    • \n
    • Add per-page screen option for log pages
    • \n
    • Remove all the corners
    • \n
    \n

    2.3.4

    \n
      \n
    • Fix escaping of URL in admin page
    • \n
    \n

    2.3.3

    \n
      \n
    • Fix PHP strict, props to Juliette Folmer
    • \n
    • Fix RSS entry date, props to Juliette
    • \n
    • Fix pagination
    • \n
    \n

    2.3.2

    \n
      \n
    • WP 3.5 compatibility
    • \n
    • Fix export
    • \n
    \n

    2.3.0 and earlier

    \n
      \n
    • Remove 404 module and move 404 logs into a separate option
    • \n
    • Clean up log code, using WP_List_Table to power it
    • \n
    • Fix some broken links in admin pages
    • \n
    • Fix order of redirects, thanks to Nicolas Hatier
    • \n
    • Fix XSS in admin menu & referrers log
    • \n
    • Better database compatibility
    • \n
    • Remove warning from VaultPress
    • \n
    • Remove debug from htaccess module
    • \n
    • Fix encoding of JS strings
    • \n
    • Use fgetcsv for CSV importer – better handling
    • \n
    • Allow http as URL parameter
    • \n
    • Props to Ben Noordhuis for a patch
    • \n
    • WordPress 2.9+ only – cleaned up all the old cruft
    • \n
    • Better new-install process
    • \n
    • Upgrades from 1.0 of Redirection no longer supported
    • \n
    • Optimized DB tables
    • \n
    • Change to jQuery
    • \n
    • Nonce protection
    • \n
    • Disable category monitor in 2.7
    • \n
    • Refix log delete
    • \n
    • get_home_path seems not be available for some people
    • \n
    • Update plugin.php to better handle odd directories
    • \n
    • Correct DB install
    • \n
    • Install defaults when no existing redirection setup
    • \n
    • Fix problem with custom post types auto-redirecting (click on ‘groups’ and then ‘modified posts’ and clear any entries for ‘/’ from your list)
    • \n
    • Database optimization
    • \n
    • Add patch to disable logs (thanks to Simon Wheatley!)
    • \n
    • Fix for some users with problems deleting redirections
    • \n
    • Fix group edit and log add entry
    • \n
    • Disable category monitoring
    • \n
    • Fix ‘you do not permissions’ error on some non-English sites
    • \n
    • Fix category change ‘quick edit’
    • \n
    • RSS feed token
    • \n
    \n", "description": "

    Redirection is the most popular redirect manager for WordPress. With it you can easily manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have. This can help reduce errors and improve your site ranking.

    \n

    Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.

    \n

    It has been a WordPress plugin for over 10 years and has been recommended countless times. And it’s free!

    \n

    Full documentation can be found at https://redirection.me

    \n

    Redirection is compatible with PHP from 7.0 to 8.3.

    \n

    Redirect manager

    \n

    Create and manage redirects quickly and easily without needing Apache or Nginx knowledge. If your WordPress supports permalinks then you can use Redirection to redirect any URL.

    \n

    There is full support for regular expressions so you can create redirect patterns to match any number of URLs. You can match query parameters and even pass them through to the target URL.

    \n

    The plugin can also be configured to monitor when post or page permalinks are changed and automatically create a redirect to the new URL.

    \n

    Conditional redirects

    \n

    In addition to straightforward URL matching you can redirect based on other conditions:

    \n
      \n
    • Login status – redirect only if the user is logged in or logged out
    • \n
    • WordPress capability – redirect if the user is able to perform a certain capability
    • \n
    • Browser – redirect if the user is using a certain browser
    • \n
    • Referrer – redirect if the user visited the link from another page
    • \n
    • Cookies – redirect if a particular cookie is set
    • \n
    • HTTP headers – redirect based on a HTTP header
    • \n
    • Custom filter – redirect based on your own WordPress filter
    • \n
    • IP address – redirect if the client IP address matches
    • \n
    • Server – redirect another domain if also hosted on this server
    • \n
    • Page type – redirect if the current page is a 404
    • \n
    \n

    Full logging

    \n

    A configurable logging option allows to view all redirects occurring on your site, including information about the visitor, the browser used, and the referrer. A ‘hit’ count is maintained for each redirect so you can see if a URL is being used.

    \n

    Logs can be exported for external viewing, and can be searched and filtered for more detailed investigation.

    \n

    Display geographic information about an IP address, as well as a full user agent information, to try and understand who the visitor is.

    \n

    You are able to disable or reduce IP collection to meet the legal requirements of your geographic region, and can change the amount of information captured from the bare minimum to HTTP headers.

    \n

    You can also log any redirect happening on your site, including those performed outside of Redirection.

    \n

    Add HTTP headers

    \n

    HTTP headers can be added to redirects or your entire site that help reduce the impact of redirects or help increase security. You can also add your own custom headers.

    \n

    Track 404 errors

    \n

    Redirection will keep track of all 404 errors that occur on your site, allowing you to track down and fix problems.

    \n

    Errors can be grouped to show where you should focus your attention, and can be redirected in bulk.

    \n

    Query parameter handling

    \n

    You can match query parameters exactly, ignore them, and even pass them through to your target.

    \n

    Migrate Permalinks

    \n

    Changed your permalink structure? You can migrate old permalinks simply by entering the old permalink structure. Multiple migrations are supported.

    \n

    Apache & Nginx support

    \n

    By default Redirection will manage all redirects using WordPress. However you can configure it so redirects are automatically saved to a .htaccess file and handled by Apache itself.

    \n

    If you use Nginx then you can export redirects to an Nginx rewrite rules file.

    \n

    Fine-grained permissions

    \n

    Fine-grained permissions are available so you can customise the plugin for different users. This makes it particularly suitable for client sites where you may want to prevent certain actions, and remove functionality.

    \n

    Import & Export

    \n

    The plugin has a fully-featured import and export system and you can:

    \n
      \n
    • Import and export to Apache .htaccess
    • \n
    • Export to Nginx rewrite rules
    • \n
    • Copy redirects between sites using JSON
    • \n
    • Import and export to CSV for viewing in a spreadsheet
    • \n
    • Use WP CLI to automate import and export
    • \n
    \n

    You can also import from the following plugins:

    \n
      \n
    • Simple 301 Redirects
    • \n
    • SEO Redirection
    • \n
    • Safe Redirect Manager
    • \n
    • Rank Math
    • \n
    • WordPress old slug redirects
    • \n
    • Quick Post/Pages redirects
    • \n
    \n

    Search Regex compatible

    \n

    Redirection is compatible with Search Regex, allowing you to bulk update your redirects.

    \n

    Wait, it’s free?

    \n

    Yes, it’s really free. There’s no premium version and no need to pay money to get access to features. This is a dedicated redirect management plugin.

    \n

    Support

    \n

    Please submit bugs, patches, and feature requests to:

    \n

    https://github.com/johngodley/redirection

    \n

    Please submit translations to:

    \n

    https://translate.wordpress.org/projects/wp-plugins/redirection

    \n", "screenshots": "
    1. \"Redirection

      Redirection management interface

    2. \"Adding

      Adding a redirection

    3. \"Redirect

      Redirect logs

    4. \"Import/Export\"

      Import/Export

    5. \"Options\"

      Options

    6. \"Support\"

      Support

    ", "installation": "

    The plugin is simple to install:

    \n
      \n
    1. Download redirection.zip
    2. \n
    3. Unzip
    4. \n
    5. Upload redirection directory to your /wp-content/plugins directory
    6. \n
    7. Go to the plugin management page and enable the plugin
    8. \n
    9. Configure the options from the Tools/Redirection page
    10. \n
    \n

    You can find full details of installing a plugin on the plugin installation page.

    \n

    Full documentation can be found on the Redirection site.

    \n"}, "versions": {"2.4": "https://downloads.wordpress.org/plugin/redirection.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/redirection.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/redirection.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/redirection.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/redirection.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/redirection.2.9.zip", "3.0": "https://downloads.wordpress.org/plugin/redirection.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/redirection.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/redirection.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/redirection.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/redirection.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/redirection.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/redirection.3.6.zip", "3.7": "https://downloads.wordpress.org/plugin/redirection.3.7.zip", "4.0": "https://downloads.wordpress.org/plugin/redirection.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/redirection.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/redirection.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/redirection.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/redirection.4.4.zip", "4.5": "https://downloads.wordpress.org/plugin/redirection.4.5.zip", "4.8": "https://downloads.wordpress.org/plugin/redirection.4.8.zip", "4.9": "https://downloads.wordpress.org/plugin/redirection.4.9.zip", "5.0": "https://downloads.wordpress.org/plugin/redirection.5.0.zip", "5.1": "https://downloads.wordpress.org/plugin/redirection.5.1.zip", "5.2": "https://downloads.wordpress.org/plugin/redirection.5.2.zip", "5.4": "https://downloads.wordpress.org/plugin/redirection.5.4.zip", "2.10": "https://downloads.wordpress.org/plugin/redirection.2.10.zip", "2.2.2": "https://downloads.wordpress.org/plugin/redirection.2.2.2.zip", "2.2.7": "https://downloads.wordpress.org/plugin/redirection.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/plugin/redirection.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/redirection.2.2.9.zip", "2.3.2": "https://downloads.wordpress.org/plugin/redirection.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/redirection.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/redirection.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/redirection.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/redirection.2.3.6.zip", "2.3.8": "https://downloads.wordpress.org/plugin/redirection.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/redirection.2.3.9.zip", "2.4.2": "https://downloads.wordpress.org/plugin/redirection.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/redirection.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/redirection.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/redirection.2.4.5.zip", "2.6.1": "https://downloads.wordpress.org/plugin/redirection.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/redirection.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/redirection.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/redirection.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/redirection.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/redirection.2.6.6.zip", "2.7.1": "https://downloads.wordpress.org/plugin/redirection.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/redirection.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/redirection.2.7.3.zip", "2.8.1": "https://downloads.wordpress.org/plugin/redirection.2.8.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/redirection.2.9.2.zip", "3.0.1": "https://downloads.wordpress.org/plugin/redirection.3.0.1.zip", "3.1.1": "https://downloads.wordpress.org/plugin/redirection.3.1.1.zip", "3.2.1": "https://downloads.wordpress.org/plugin/redirection.3.2.1.zip", "3.3.1": "https://downloads.wordpress.org/plugin/redirection.3.3.1.zip", "3.4.1": "https://downloads.wordpress.org/plugin/redirection.3.4.1.zip", "3.6.1": "https://downloads.wordpress.org/plugin/redirection.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/redirection.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/redirection.3.6.3.zip", "3.7.1": "https://downloads.wordpress.org/plugin/redirection.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/redirection.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/redirection.3.7.3.zip", "4.0.1": "https://downloads.wordpress.org/plugin/redirection.4.0.1.zip", "4.1.1": "https://downloads.wordpress.org/plugin/redirection.4.1.1.zip", "4.2.1": "https://downloads.wordpress.org/plugin/redirection.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/redirection.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/redirection.4.2.3.zip", "4.3.1": "https://downloads.wordpress.org/plugin/redirection.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/redirection.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/redirection.4.3.3.zip", "4.4.1": "https://downloads.wordpress.org/plugin/redirection.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/redirection.4.4.2.zip", "4.5.1": "https://downloads.wordpress.org/plugin/redirection.4.5.1.zip", "4.6.2": "https://downloads.wordpress.org/plugin/redirection.4.6.2.zip", "4.7.1": "https://downloads.wordpress.org/plugin/redirection.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/redirection.4.7.2.zip", "4.9.1": "https://downloads.wordpress.org/plugin/redirection.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/redirection.4.9.2.zip", "5.0.1": "https://downloads.wordpress.org/plugin/redirection.5.0.1.zip", "5.1.1": "https://downloads.wordpress.org/plugin/redirection.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/redirection.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/redirection.5.1.3.zip", "5.2.1": "https://downloads.wordpress.org/plugin/redirection.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/redirection.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/redirection.5.2.3.zip", "5.3.0": "https://downloads.wordpress.org/plugin/redirection.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/redirection.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/redirection.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/redirection.5.3.3.zip", "5.3.4": "https://downloads.wordpress.org/plugin/redirection.5.3.4.zip", "5.3.5": "https://downloads.wordpress.org/plugin/redirection.5.3.5.zip", "5.3.6": "https://downloads.wordpress.org/plugin/redirection.5.3.6.zip", "5.3.7": "https://downloads.wordpress.org/plugin/redirection.5.3.7.zip", "5.3.8": "https://downloads.wordpress.org/plugin/redirection.5.3.8.zip", "5.3.9": "https://downloads.wordpress.org/plugin/redirection.5.3.9.zip", "5.4.1": "https://downloads.wordpress.org/plugin/redirection.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/redirection.5.4.2.zip", "5.5.0": "https://downloads.wordpress.org/plugin/redirection.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/redirection.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/redirection.5.5.2.zip", "trunk": "https://downloads.wordpress.org/plugin/redirection.zip", "2.1.29": "https://downloads.wordpress.org/plugin/redirection.2.1.29.zip", "2.10.1": "https://downloads.wordpress.org/plugin/redirection.2.10.1.zip", "2.2.10": "https://downloads.wordpress.org/plugin/redirection.2.2.10.zip", "2.2.11": "https://downloads.wordpress.org/plugin/redirection.2.2.11.zip", "2.2.12": "https://downloads.wordpress.org/plugin/redirection.2.2.12.zip", "2.2.13": "https://downloads.wordpress.org/plugin/redirection.2.2.13.zip", "2.2.14": "https://downloads.wordpress.org/plugin/redirection.2.2.14.zip", "2.3.10": "https://downloads.wordpress.org/plugin/redirection.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/plugin/redirection.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/plugin/redirection.2.3.12.zip", "2.3.13": "https://downloads.wordpress.org/plugin/redirection.2.3.13.zip", "2.3.14": "https://downloads.wordpress.org/plugin/redirection.2.3.14.zip", "2.3.15": "https://downloads.wordpress.org/plugin/redirection.2.3.15.zip", "2.3.16": "https://downloads.wordpress.org/plugin/redirection.2.3.16.zip", "5.3.10": "https://downloads.wordpress.org/plugin/redirection.5.3.10.zip"}, "downloaded": 63120038, "description": "

    Redirection is the most popular redirect manager for WordPress. With it you can easily manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have. This can help reduce errors and improve your site ranking.

    \n

    Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects.

    \n

    It has been a WordPress plugin for over 10 years and has been recommended countless times. And it’s free!

    \n

    Full documentation can be found at https://redirection.me

    \n

    Redirection is compatible with PHP from 7.0 to 8.3.

    \n

    Redirect manager

    \n

    Create and manage redirects quickly and easily without needing Apache or Nginx knowledge. If your WordPress supports permalinks then you can use Redirection to redirect any URL.

    \n

    There is full support for regular expressions so you can create redirect patterns to match any number of URLs. You can match query parameters and even pass them through to the target URL.

    \n

    The plugin can also be configured to monitor when post or page permalinks are changed and automatically create a redirect to the new URL.

    \n

    Conditional redirects

    \n

    In addition to straightforward URL matching you can redirect based on other conditions:

    \n
      \n
    • Login status – redirect only if the user is logged in or logged out
    • \n
    • WordPress capability – redirect if the user is able to perform a certain capability
    • \n
    • Browser – redirect if the user is using a certain browser
    • \n
    • Referrer – redirect if the user visited the link from another page
    • \n
    • Cookies – redirect if a particular cookie is set
    • \n
    • HTTP headers – redirect based on a HTTP header
    • \n
    • Custom filter – redirect based on your own WordPress filter
    • \n
    • IP address – redirect if the client IP address matches
    • \n
    • Server – redirect another domain if also hosted on this server
    • \n
    • Page type – redirect if the current page is a 404
    • \n
    \n

    Full logging

    \n

    A configurable logging option allows to view all redirects occurring on your site, including information about the visitor, the browser used, and the referrer. A ‘hit’ count is maintained for each redirect so you can see if a URL is being used.

    \n

    Logs can be exported for external viewing, and can be searched and filtered for more detailed investigation.

    \n

    Display geographic information about an IP address, as well as a full user agent information, to try and understand who the visitor is.

    \n

    You are able to disable or reduce IP collection to meet the legal requirements of your geographic region, and can change the amount of information captured from the bare minimum to HTTP headers.

    \n

    You can also log any redirect happening on your site, including those performed outside of Redirection.

    \n

    Add HTTP headers

    \n

    HTTP headers can be added to redirects or your entire site that help reduce the impact of redirects or help increase security. You can also add your own custom headers.

    \n

    Track 404 errors

    \n

    Redirection will keep track of all 404 errors that occur on your site, allowing you to track down and fix problems.

    \n

    Errors can be grouped to show where you should focus your attention, and can be redirected in bulk.

    \n

    Query parameter handling

    \n

    You can match query parameters exactly, ignore them, and even pass them through to your target.

    \n

    Migrate Permalinks

    \n

    Changed your permalink structure? You can migrate old permalinks simply by entering the old permalink structure. Multiple migrations are supported.

    \n

    Apache & Nginx support

    \n

    By default Redirection will manage all redirects using WordPress. However you can configure it so redirects are automatically saved to a .htaccess file and handled by Apache itself.

    \n

    If you use Nginx then you can export redirects to an Nginx rewrite rules file.

    \n

    Fine-grained permissions

    \n

    Fine-grained permissions are available so you can customise the plugin for different users. This makes it particularly suitable for client sites where you may want to prevent certain actions, and remove functionality.

    \n

    Import & Export

    \n

    The plugin has a fully-featured import and export system and you can:

    \n
      \n
    • Import and export to Apache .htaccess
    • \n
    • Export to Nginx rewrite rules
    • \n
    • Copy redirects between sites using JSON
    • \n
    • Import and export to CSV for viewing in a spreadsheet
    • \n
    • Use WP CLI to automate import and export
    • \n
    \n

    You can also import from the following plugins:

    \n
      \n
    • Simple 301 Redirects
    • \n
    • SEO Redirection
    • \n
    • Safe Redirect Manager
    • \n
    • Rank Math
    • \n
    • WordPress old slug redirects
    • \n
    • Quick Post/Pages redirects
    • \n
    \n

    Search Regex compatible

    \n

    Redirection is compatible with Search Regex, allowing you to bulk update your redirects.

    \n

    Wait, it’s free?

    \n

    Yes, it’s really free. There’s no premium version and no need to pay money to get access to features. This is a dedicated redirect management plugin.

    \n

    Support

    \n

    Please submit bugs, patches, and feature requests to:

    \n

    https://github.com/johngodley/redirection

    \n

    Please submit translations to:

    \n

    https://translate.wordpress.org/projects/wp-plugins/redirection

    \n", "donate_link": "https://redirection.me/donation/", "num_ratings": 678, "screenshots": {"1": {"src": "https://ps.w.org/redirection/assets/screenshot-1.png?rev=1764489", "caption": "Redirection management interface"}, "2": {"src": "https://ps.w.org/redirection/assets/screenshot-2.png?rev=1764495", "caption": "Adding a redirection"}, "3": {"src": "https://ps.w.org/redirection/assets/screenshot-3.png?rev=1764491", "caption": "Redirect logs"}, "4": {"src": "https://ps.w.org/redirection/assets/screenshot-4.png?rev=1764495", "caption": "Import/Export"}, "5": {"src": "https://ps.w.org/redirection/assets/screenshot-5.png?rev=1764493", "caption": "Options"}, "6": {"src": "https://ps.w.org/redirection/assets/screenshot-6.png?rev=1764494", "caption": "Support"}}, "support_url": "https://wordpress.org/support/plugin/redirection/", "contributors": {"johnny5": {"avatar": "https://secure.gravatar.com/avatar/489200106549666999cfd2e767e114a5700085fed374629275bc5b62172047e0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/johnny5/", "display_name": "John Godley"}}, "last_updated": "2025-04-26 11:57am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/redirection.5.5.2.zip", "author_profile": "https://profiles.wordpress.org/johnny5/", "business_model": false, "repository_url": "", "upgrade_notice": {"3.0": "
      \n
    • Upgrades the database to support IPv6. Please backup your data and visit the Redirection settings to perform the upgrade
    • \n
    • Switches to the WordPress REST API
    • \n
    • Permissions changed from 'administrator' role to 'manage_options' capability
    • \n
    ", "3.7": "
      \n
    • Requires minimum PHP 5.4. Do not upgrade if you are still using PHP < 5.4
    • \n
    ", "4.0": "
      \n
    • Alters database to support case insensitivity, trailing slashes, and query params. Please backup your data
    • \n
    ", "4.7": "
      \n
    • Requires minimum PHP 5.6+. Do not upgrade if you are still using PHP < 5.6
    • \n
    ", "4.9": "
      \n
    • Alters database to support enhanced logging. Please backup your data
    • \n
    ", "5.4": "
      \n
    • You may need to configure the IP header option if using a proxy
    • \n
    ", "3.6.1": "
      \n
    • Note Redirection will not work with PHP < 5.4 after 3.6 - please upgrade your PHP
    • \n
    "}, "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-f9df-7307-8231-ad9bbb54b22e", "name": "Redirection", "slug": "redirection", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1745668620, "version": "5.5.2"}, "support_threads": 18, "requires_plugins": [], "short_description": "Manage 301 redirects, track 404 errors, and improve your site. No knowledge of Apache or Nginx required.", "author_block_count": 0, "author_block_rating": 88, "commercial_support_url": "", "support_threads_resolved": 3}'); -INSERT INTO public.plugins VALUES ('019a30c1-66a0-72c9-bbe1-0ff9f3809efd', 'redux-framework', 'Redux Framework', 'Redux is a simple, truly extensible, and fully responsive options framework for WordPress themes and plugins. It ships with an integrated demo.', '

    Redux was built by developers for developers. We save you months if not years in your development time. Everything we do is to help innovation in the industry.

    -

    ♥️ What the Plugin does?

    -

    Redux is a simple, genuinely extensible, and fully responsive options framework for WordPress themes and plugins. Built on the WordPress Settings API; Redux supports many field types, custom error handling, custom fields & validation types, and import/export functionality.

    -

    But what does Redux actually DO? We don’t believe that theme and plugin developers should have to reinvent the wheel every time they start work on a project. Redux simplifies the development cycle by providing a streamlined, extensible framework for developers to build on. Through a simple, well-documented config file, third-party developers can build out an options panel limited only by their imagination in a fraction of the time it would take to build from the ground up!

    -

    🚀 What fields does Redux offer?

    -
      -
    • Accordion
    • -
    • ACE Editor
    • -
    • Background
    • -
    • Border
    • -
    • Box Shadow
    • -
    • Button Set
    • -
    • Checkbox / Multi-Check
    • -
    • Color (WordPress Native)
    • -
    • Color Gradient
    • -
    • Color Palette
    • -
    • Color RGBA
    • -
    • Color Scheme
    • -
    • Content
    • -
    • Custom Fonts
    • -
    • Customizer
    • -
    • Date
    • -
    • Date/Time
    • -
    • Dimensions (Height/Width)
    • -
    • Divide (Divider)
    • -
    • Editor (WordPress Native)
    • -
    • Gallery (WordPress Native)
    • -
    • Google Maps
    • -
    • Icon Select
    • -
    • Image Select (Patterns/Presets)
    • -
    • Import/Export
    • -
    • Info (Header/Notice)
    • -
    • JS Button
    • -
    • Link Color
    • -
    • Media (WordPress Native)
    • -
    • Metaboxes
    • -
    • Multi Media
    • -
    • Multi-Text
    • -
    • Palette
    • -
    • Password
    • -
    • Radio (w/ WordPress Data)
    • -
    • Raw (HTML/PHP/MarkDown)
    • -
    • Repeater
    • -
    • Section (Indent and Group Fields)
    • -
    • Select (Select/Multi-Select w/ Select2 & WordPress Data)
    • -
    • Select Image
    • -
    • Slider (Drag a Handle)
    • -
    • Slides (Multiple Images, Titles, and Descriptions)
    • -
    • Social Profiles
    • -
    • Sortable (Drag/Drop Checkbox/Input Fields)
    • -
    • Sorter (Drag/Drop Manager – Works great for content blocks)
    • -
    • Spacing (Margin/Padding/Absolute)
    • -
    • Spinner
    • -
    • Switch
    • -
    • Tabbed
    • -
    • Taxonomy Metaboxes
    • -
    • Text
    • -
    • Textarea
    • -
    • Typography
    • -
    • User Profile Metaboxes
    • -

      * The most advanced typography module complete with preview, Google fonts, and auto-css output!

      -
    • User Profile Metaboxes
    • -
    • Widget Areas (Classic Widgets only)
    • -
    -

    🎉Additional Features

    -
      -
    • Full value escaping
    • -
    • Required – Link visibility from parent fields. Set this to affect the visibility of the field on the parent’s value. Fully nested with multiple required parents possible.
    • -
    • Output CSS Automatically – Redux generates CSS and the appropriate Google Fonts stylesheets for you on select fields. You need to only specify the CSS selector to apply the CSS to (limited to certain fields).
    • -
    • Compiler integration! A custom hook runs when any fields with the argument `compile => true` are changed.
    • -
    • Field validation and sanitization
    • -
    • Field and section disabling
    • -
    • Oh, and did we mention a fully integrated Google Fonts setup that will make you so happy you’ll want to cry?
    • -
    -

    👍 BE A CONTRIBUTOR

    -

    If you want to help with translations, go to the Translation Portal at translate.wordpress.org.

    -

    You can also contribute code via our GitHub Repository. Be sure to use our develop branch to submit pull requests.

    -

    📝 Documentation and Support

    -
      -
    • We have extremely extensive docs. Please visit [https://devs.redux.io/](https://devs.redux.io). If that doesn’t solve your issue, search [the issue tracker on GitHub](https://github.com/reduxframework/redux-framework/issues). If you can’t locate any topics that pertain to your particular problem, [post a new issue](https://github.com/reduxframework/redux-framework/issues/new) for it. Before you submit an issue, please read [our contributing requirements](https://github.com/redux-framework/redux-framework/blob/master/CONTRIBUTING.md). We build on the dev version and push it to WordPress.org when we confirm Redux is stable and ready for release.
    • -
    • If you have additional questions, reach out to us at support@redux.io
    • -
    -

    ⚡ Like the Redux Plugin?

    - -

    🔐 Privacy

    -

    Redux does not interact with end users on your website. If a product is using Redux, the option panel will cease to function without Redux.

    -

    For more details on our privacy policy: https://redux.io/privacy
    -For more details on our terms and conditions: https://redux.io/terms

    -

    NOTE: Redux is not intended to be used on its own. It requires a config file provided by a third-party theme or plugin developer to actually do anything cool!

    -', '4.5.8', 'David Anderson / Team Updraft', '5.0', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/redux-framework.4.5.8.zip', '2013-10-24 00:00:00+00', '2025-10-01 18:14:00+00', 'https://profiles.wordpress.org/davidanderson/', 88, 272, 5, 5, 1000000, 30389276, 'https://wordpress.org/plugins/redux-framework', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/redux-framework/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Redux Framework", "slug": "redux-framework", "tags": {"admin": "admin", "options": "options", "theme-options": "theme options", "plugin-options": "plugin options", "options-framework": "options framework"}, "added": "2013-10-24", "icons": {"1x": "https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347", "svg": "https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347"}, "author": "David Anderson / Team Updraft", "rating": 88, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2889347", "high": false}, "ratings": {"1": 35, "2": 5, "3": 2, "4": 6, "5": 224}, "version": "4.5.8", "homepage": "https://wordpress.org/plugins/redux-framework", "requires": "5.0", "sections": {"faq": "\n
    \nWhy doesn’t this plugin do anything?\n\n

    \n

    Redux is an option framework… in other words, it’s not designed to do anything on its own! You can, however, activate a demo mode to see how it works.

    \n

    \n
    \nHow can I learn more about Redux?\n\n

    \n

    Visit our website at https://redux.io/

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Irina (irinashl) on August 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent and useful plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Translation Issue

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy masoud4x4 (masoud2018) on April 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    \n\n\n\n

    Hi Redux Framework team,
    I’m using Redux Framework for my theme (Liberty), but I’m really frustrated with its translation support, especially after WordPress 6.7 and later updates (I’m on 6.8). My theme’s primary text domain is liberty, but for Redux settings, I’ve used a separate text domain (liberty-settings) to avoid conflicts and gain more flexibility. However, Redux fails to apply translations for its sections and fields (e.g., \"General Settings\" or a test string in $args[''footer_credit'']), even though the strings are translated in the liberty-settings-fa_IR.po file. This inconsistency between WordPress’s translation system (which works fine for my theme’s liberty text domain) and Redux’s handling is a major drawback. The _load_textdomain_just_in_time error introduced since WordPress 6.7 only makes it worse. I’ve posted a detailed explanation in the support forum—hoping for a fix! Please prioritize improving Redux’s translation compatibility in future updates. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good framework

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy erictyl on November 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A good framework.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Highly Appreciate

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anil Chandra Robidas (anilkumer) on November 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks for great plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Insane!! Advanced Features given for free. Wow

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sone234 on September 10, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The theme is so great. I love these guys at Redux Framework, their eye is not on making money because most advanced features which are usually available on premium themes, Listingpro made them available for free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Redux Framework Slowed Down My Site - Not Recommended for Travelista Theme

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy abdulj89 on August 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using the Redux Framework as it was recommended for the Travelista theme on my WordPress site. However, my experience with this framework has been far from satisfactory due to its significant impact on site performance.

    \n\n\n\n
      \n
    1. Performance Issues: Unfortunately, the benefits of using Redux are heavily outweighed by the severe performance issues it has caused. Since installing Redux, I’ve noticed a substantial slowdown in my site’s loading times. This is particularly problematic where speed and user experience are crucial. My page load times have increased significantly, which negatively affects user experience.

      If you''re using the Travelista theme or any theme that recommends Redux, I would advise caution. While Redux may offer robust customization options, the cost to site performance is too high. In a time when speed and performance are critical, using a framework that slows down your site can have detrimental effects. I hope the developers prioritize optimizing Redux for better performance in future updates.
    2. \n
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Hot Mess

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rosiesamerica on August 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Absolutely a HOT MESS came up with errors immediately as soon a we disabled it the site went back to a normal appearance.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    lovely theme

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy SITE WEB PRO DESIGN (yme45) on June 28, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great Theme – Functional

    \n\n\n\n

    Thanks for this !
    recommendation earned 

    \n\n\n\n

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy webredox on March 22, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great support.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ok

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kiwioa (wvpalarao91) on November 27, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    an okay

    \n
    \n
    \n", "changelog": "

    = 4.5.8
    \n* Fix: Reported XSS vulnerability in the shortcode extension.
    \n* Fix: #4074 – Gallery field won’t load on screen refresh.
    \n* Fix: Prevent fatal error for improperly coded CPTs with metaboxes.
    \n* Added: New global arg custom_fonts to enable or disable the extension.
    \n* Added: New global arg widget_area to enable or disable the extension.
    \n* Added: social_profiles now support an argument for FA 6 classnames.
    \n* Improved: Callback validation for data fetching. Thanks @afonsolpjr
    \n* Release date: October 01, 2025

    \n

    4.5.7

    \n
      \n
    • Fixed: Bullet-proofed some global args when omitted from the config.
    • \n
    • Fixed: PHP 8.4 deprecation notices.
    • \n
    • Fixed: The Options constructor now filters out blank strings, causing fatal errors. Options must always be in an array.
    • \n
    • Fixed: gallery field errors on failed demo imports not installing images into the WP gallery.
    • \n
    • Release date: March 26, 2025
    • \n
    \n

    4.5.6

    \n
      \n
    • Fixed: Setting CHMOD defaults in construct to avoid errors in certain use cases.
    • \n
    • Fixed: Installed empty placeholder for old search extension as WP did not remove it from old versions to updates, thus causing errors.
    • \n
    • Fixed: raw field in sample-config.php trigger WP filesystem error when FS_METHOD set to FTP_EXT and creds are not entered.
    • \n
    • Fixed: Sorter not saving in customizer.
    • \n
    • Fixed: users metabox not saving on some setups.
    • \n
    • Fixed: Disable search bar on user profile and taxonomy metaboxes.
    • \n
    • Updated: Font Awesome 6.7.2
    • \n
    • Modified: custom_fonts now enqueues local font CSS with a version resource of last modified file time and not current time.
    • \n
    • Modified: Will pass mandatory PCP checks.
    • \n
    • Release date: January 20, 2025
    • \n
    \n

    4.5.4

    \n
      \n
    • Fixed: Filesystem class $creds not accepting bool value.
    • \n
    • Fixed: #4045: Old search extension throwing class not found error.
    • \n
    • Fixed: accordion extension throwing Type of Redux_Extension_Accordion::$version must be string error.
    • \n
    • Fixed: color_scheme typed property must not be accessed before initialization.
    • \n
    • Release date: December 16, 2024
    • \n
    \n

    4.5.3

    \n
      \n
    • Removed: Deprecation notice for $filesystem. Too many people think it’s an error. We’ll have to support old Redux 3 code for the foreseeable future.
    • \n
    • Release date: December 5, 2024
    • \n
    \n

    4.5.2

    \n
      \n
    • Fixed: New global filesystem access broke old methods used on old extensions. Deprecation notice added.
    • \n
    • Release date: December 5, 2024
    • \n
    \n

    4.5.1

    \n
      \n
    • Updated: Font Awesome 6.7.1
    • \n
    • Fixed: Options Search bar rendering multiple time on customizer UI.
    • \n
    • Fixed: Changed typesafe declarations to transient variables from array to mixed to prevent fatal errors.
    • \n
    • Fixed: color_scheme and social_profiles giving cannot assign null to array errors when fields not in use.
    • \n
    • Fixed: JavaScript errors in regard to TinyMCE when not loaded via editor field.
    • \n
    • Fixed: repeater “Add” button failing when no editor field was loaded.
    • \n
    • Fixed: WP 6.7 broke Redux menus in customizer.
    • \n
    • Fixed: “Reset Section” resetting everything to blank or zero.
    • \n
    • Fixed: Float loses precision in color_rgba when show_default is set to true. Thanks @andrejarh
    • \n
    • Fixed: multi_media field not saving or retaining data in customizer.
    • \n
    • Modified: Customizer HTML output to support WordPress installations prior to version 6.7.
    • \n
    • Modified: Option panel search bar moved to core (previously an extension).
    • \n
    • Modified: Allow null assignments to core variable to prevent fatal errors when devs disable Google Fonts.
    • \n
    • Added null to multiple typesafe declarations.
    • \n
    • Added: CSS output added to slider field.
    • \n
    • Added: Minimum PHP 7.4 warning message to admin screen to prevent fatal errors. Some people are, apparently, still using outdated PHP.
    • \n
    • Release date: December 4, 2024
    • \n
    \n

    4.5.0

    \n
      \n
    • Changed: Minimum PHP version now 7.4.
    • \n
    • Fixed: Datetime wasn’t escaping some translations and domain was incorrect.
    • \n
    • Fixed: required functionality in taxonomy and users.
    • \n
    • Fixed: repeater not rendering inside taxonomy metaboxes.
    • \n
    • Fixed: repeater not saving inside users metaboxes.
    • \n
    • Fixed: Metaboxes page_template feature not showing/hiding properly under Gutenberg due to class name change.
    • \n
    • Fixed: #4023 – google_maps instances bleeding over from previous issue.
    • \n
    • Fixed: google_maps deprecation notice regarding map markers.
    • \n
    • Fixed: repeater in taxonomy and user metaboxes.
    • \n
    • Fixed: Unnecessary loading of default data on load (unless metaboxes are in use).
    • \n
    • Fixed: editor and checkbox fields not saving in tabbed field.
    • \n
    • Fixed: custom_fonts not saving uploaded font on conversion failure.
    • \n
    • Fixed: #4009 – Google Font update issue resolved.
    • \n
    • Fixed: #4011 – editor in repeater field not saving.
    • \n
    • Fixed: editor in added repeater fields not properly initializing.
    • \n
    • Fixed: #4008 – Font conversion failure fallback.
    • \n
    • Fixed: Replaced validate_values deprecation in taxonomy metabox.
    • \n
    • Updated: Deprecated JavaScript in all the Metabox extensions.
    • \n
    • Updated: JavaScript for jQuery 4.0 release.
    • \n
    • Release date: October 28, 2024
    • \n
    \n

    4.4.18

    \n
      \n
    • Fixed: #4006: XSS fix in ‘color_scheme’ import.
    • \n
    • Updated: Font Awesome 6.6.0
    • \n
    • Release date: July 19, 2024
    • \n
    \n

    4.4.17

    \n
      \n
    • Fixed: social_profiles in customizer.
    • \n
    • Fixed: Section divide returning null, which caused a PHP warning.
    • \n
    • Fixed: Undefined index in tabbed when resetting settings.
    • \n
    • Release date: May 23, 2024
    • \n
    \n

    4.4.16

    \n
      \n
    • Modified: Temporarily disable social_profiles and color_scheme from customizer. They don’t work.
    • \n
    • Removed: Finished removing Redux Pro support.
    • \n
    • Removed: Extendify plugin banner at first launch.
    • \n
    • Updated: Font Awesome 6.5.2
    • \n
    • Release date: April 27, 2024
    • \n
    \n

    4.4.15

    \n
      \n
    • Fixed: spacing, dimension, and border fields not saving changed values.
    • \n
    • Fixed: switch and button_set not saving within tabbed interface.
    • \n
    • Release date: March 22, 2024
    • \n
    \n

    4.4.14

    \n
      \n
    • Fixed: “No Field ID is set” message causing jumbled backend layout.
    • \n
    • New: Content Field https://devs.redux.io/core-fields/content.html
    • \n
    • Updated: Bring inputs up to W3C standards.
    • \n
    • Updated: First round of PHP 8.3 compatibility.
    • \n
    • Release date: March 14, 2024
    • \n
    \n

    4.4.13

    \n
      \n
    • Fixed: color_scheme crashing WordPress with ‘critical error’ for users still using PHP 7.1.
    • \n
    • Added: Filter to disable Google Font updates: \"redux/{opt_name}/field/typography/google_font_update\". Return false to disable.
    • \n
    • Added: WordPress 6.5 compatibility.
    • \n
    • Release date: February 13, 2024
    • \n
    \n

    4.4.12

    \n
      \n
    • New: Color Schemes Extension https://devs.redux.io/core-extensions/color-schemes.html
    • \n
    • Fixed: PHP Error when color_scheme data doesn’t exist.
    • \n
    • Fixed: custom_fonts not importing original font on conversion failure.
    • \n
    • Fixed: Remove debug info from JS. FA version change.
    • \n
    • Fixed: #3988 – Warning/error count displayed NaN on color field validation.
    • \n
    • Fixed: Erroneous error in color_scheme when saved scheme array was blank (string).
    • \n
    • Fixed: Color schemes would not switch via select box after saving a new scheme.
    • \n
    • Fixed: typography sunset dropdown not rendering select2 styling.
    • \n
    • Fixed: Efficiency for extension loading improved.
    • \n
    • Removed: Redux Pro support. It’s no longer required as all Pro features are now part of Redux.
    • \n
    • Release date: February 12, 2024
    • \n
    \n

    4.4.11

    \n
      \n
    • Fixed: Cosmetic box_shadow fix.
    • \n
    • Fixed: Required not hiding linked fields in customizer.
    • \n
    • Fixed: tabbed and repeater fields not resetting when using Section Reset.
    • \n
    • Fixed: #3983 – Continued damage done by WP Filesystem PR
    • \n
    • Updated: Font Awesome 6.5.1
    • \n
    • Release date: December 18, 2023
    • \n
    \n

    4.4.10

    \n
      \n
    • New: Tabbed Extension https://devs.redux.io/core-extensions/tabbed.html
    • \n
    • Modified: Typography preview background will shift to black when lighter font colors are selected. Thanks, @herculesdesign
    • \n
    • Modified: Additional rollback changes made to the filesystem class causing false file permission issue messages.
    • \n
    • Fixed: Errant spaces in ACE Editor field.
    • \n
    • Fixed: Array check in color validation to avoid errors. It works ONLY with the color field. Nothing else.
    • \n
    • Improved: Filesystem killswitch logic.
    • \n
    • Release date: December 05, 2023
    • \n
    \n

    4.4.9

    \n
      \n
    • Modified: Rollback changes made to the filesystem class causing false file permission issue messages.
    • \n
    • Release date: October 26, 2023
    • \n
    \n

    4.4.8

    \n
      \n
    • Modified: Additional safeguards against read-only filesystems. Thanks @cezarpopa-cognita.
    • \n
    • Fixed: #3970 – Added is_string check to WordPress data callback argument.
    • \n
    • Removed: Unused code for Support Ticket Submission feature that was never finished.
    • \n
    • Fixed: Removed extra spaces from textarea.
    • \n
    • Added: WordPress 6.4 compatibility.
    • \n
    • Release date: October 17, 2023
    • \n
    \n

    4.4.7

    \n
      \n
    • Removed: CDN vendor support for ace_editor. Devs won’t update their code, leaving us no choice. Use the redux/<opt_name>/fields/ace/script filter to enqueue a local ACE Editor script if needed.
    • \n
    • Fixed: Redux template PHP not autoloading.
    • \n
    • Release date: September 14, 2023
    • \n
    \n

    4.4.6

    \n
      \n
    • New: Global arg fontawesome_frontend to enqueue the internal Font Awesome CSS on the front end.
    • \n
    • New: Taxonomy Metaboxes Extension https://devs.redux.io/core-extensions/taxonomy.html
    • \n
    • Fixed: Font Awesome not enqueueing on the frontend for social_profiles field.
    • \n
    • Fixed: HTML Output for User Profile Metaboxes.
    • \n
    • Fixed: Admin panel CSS.
    • \n
    • Fixed: Adjusted translation for Google Font update message.
    • \n
    • Fixed: Continuing effort to combat old CDN code because some devs aren’t updating their code.
    • \n
    • Fixed: REDUX_PLUGIN_FILE failed with embedded installed. WE NO LONGER SUPPORT EMBEDDED. IT’S FOR LEGACY INSTALLS ONLY.
    • \n
    • Release date: September 13, 2023
    • \n
    \n

    4.4.5

    \n
      \n
    • Fixed: Redux catches error when Google Fonts JSON cannot be read/written due to server misconfiguration.
    • \n
    • Fixed: Output HTML in the admin panel now complies with W3C standards.
    • \n
    • Fixed: typography letter-spacing and word-spacing stuck on zero value.
    • \n
    • Fixed: Field classes were disregarded when using hidden or disable arguments.
    • \n
    • Fixed: Added class alias for the old version of Redux Vendor Support so Redux doesn’t crash.
    • \n
    • Fixed: Added additional shim to fix Vendor Support code embedded by themes that are doing it incorrectly.
    • \n
    • Fixed: Add wp-util dependency to icon_select since, in some cases, WordPress does not.
    • \n
    • Added: Error trapping for panel template loading for missing or unreadable files to avoid crashing the site.
    • \n
    • Updated: Default Google Fonts.
    • \n
    • Updated: Font Awesome 6.4.2
    • \n
    • Release date: August 07, 2023
    • \n
    \n

    4.4.4

    \n
      \n
    • Fixed: Revert redux-admin CSS handle to previous handle.
    • \n
    • Fixed: color_rgba field not rendering properly due to misspelled CSS enqueue handle.
    • \n
    • Fixed: jQuery deprecation notices in typography JavaScript.
    • \n
    • Fixed: Error in connection banner on first-time activation.
    • \n
    • Fixed: Missing redux-banner-admin.min.js file.
    • \n
    • Fixed: Added extra check for the existence of the function name with callbacks. Some themes are not doing it correctly and crashing WordPress.
    • \n
    • Release date: July 02, 2023
    • \n
    \n

    4.4.3

    \n
      \n
    • Fixed: Typo in JavaScript enqueue handle broke typography and slider fields.
    • \n
    • Release date: June 29, 2023
    • \n
    \n

    4.4.2

    \n
      \n
    • New: Icon Select Extension. Please review notes in README.md. https://devs.redux.io/core-extensions/icon-select.html
    • \n
    • Added: init_empty argument for repeater field.
    • \n
    • Added: Class alias for customizer extension for Redux 3.x backward compatibility.
    • \n
    • Modified: Unused code cleanup.
    • \n
    • Modified: Moved font-display to Google font API enqueue and out of output CSS string.
    • \n
    • Updated: Default Google font list.
    • \n
    • Updated: ACE Editor 1.23.0
    • \n
    • Fixed: jQuery deprecation notices in typography field.
    • \n
    • Fixed: Special characters validation not catching special characters.
    • \n
    • Fixed: Validation routines not working complete with multiple metaboxes
    • \n
    • Improved: Redux no longer enqueues resources for each field instance.
    • \n
    • Release date: June 29, 2023
    • \n
    \n

    4.4.1

    \n
      \n
    • New: User Metaboxes Extensions https://devs.redux.io/core-extensions/user-metaboxes.html
    • \n
    • Fixed: Multiple multi_media fields in the same section not respecting max_upload_count.
    • \n
    • Fixed: Glitch in validation causing color pickers to fail in rare use case.
    • \n
    • Fixed: Google Maps JavaScript.
    • \n
    • Updated: Minimum WordPress version to 5.0
    • \n
    • Release date: April 26, 2023
    • \n
    \n

    4.4.0

    \n
      \n
    • Fixed: Invalid argument error inside custom_fonts on certain setups.
    • \n
    • Fixed: Deprecated Google Map API broke google_maps extension.
    • \n
    • Removed: Extendify Template Library
    • \n
    • Added: Connection banner to display Extendify removal notice with a plugin download option.
    • \n
    • Release date: March 29, 2023
    • \n
    \n

    4.3.26

    \n
      \n
    • Modified: Empty custom_font list no longer creates empty fonts.css file.
    • \n
    • Release date: February 02, 2023
    • \n
    \n

    4.3.25

    \n
      \n
    • Modified: Reworked directory enumeration for custom_fonts to avoid potential fatal errors.
    • \n
    \n

    4.3.24

    \n
      \n
    • Additional work to make custom_fonts override old standalone extension version.
    • \n
    • Release date: January 20, 2023
    • \n
    \n

    4.3.23

    \n
      \n
    • Tweaked Custom Fonts extension to avoid conflicts with the older standalone extension.
    • \n
    • Update: Extendify Library 1.2.4
    • \n
    • Release date: January 20, 2023
    • \n
    \n

    4.3.22

    \n
      \n
    • Added: Custom Fonts extension https://devs.redux.io/core-extensions/google-maps.html
    • \n
    • Fixed: Metaboxes post_format selections not responding to clicks when Gutenberg is active due to class name changes.
    • \n
    • Fixed: Custom font data added via filter would trigger a warning if not an array.
    • \n
    • Update: Extendify Library 1.2.3
    • \n
    • Release date: January 19, 2023
    • \n
    \n

    4.3.21

    \n
      \n
    • Added: Google Maps extension.
    • \n
    • Fixed: Widget area UI improperly aligned when dev_mode set to false.
    • \n
    • Fixed: spinner field not outputting output data.
    • \n
    • Fixed: Metaboxes CSS causing layout issues when dev_mode set to false.
    • \n
    • Update: Extendify Library 1.2.1
    • \n
    • Update: Font Awesome 6.2.1
    • \n
    • Release date: December 05, 2022
    • \n
    \n

    4.3.20

    \n
      \n
    • Added: Widget Areas extension (for use with Classic Widgets only).
    • \n
    • Fixed: spinner field returning JavaScript error.
    • \n
    • Fixed: required not working outside a repeater when repeater field is loaded somewhere in the project.
    • \n
    • Fixed: JS error when typography font-style set to false.
    • \n
    • Updated: Removed registration verbiage from Google Fonts update notice.
    • \n
    • Updated: Extendify Library 1.0.1
    • \n
    • Release date: November 2, 2022
    • \n
    \n

    4.3.19

    \n
      \n
    • Fixed: Extendify menu item appearing when it should not.
    • \n
    • Fixed: Blank page template would cause a fatal error.
    • \n
    • Release date: September 30, 2022
    • \n
    \n

    4.3.18

    \n
      \n
    • New: Typography weights argument to override standard default weights.
    • \n
    • Updated Extendify Library 0.10.2
    • \n
    • Updated: Font Awesome 6.2.0
    • \n
    • Modified: Attempt to override old theme embedded extensions that use the 3.x loading method.
    • \n
    • Fixed: Social Profiles in metaboxes, hopefully.
    • \n
    • Fixed: slides field not showing image upon select. Thanks, @animeiswrong
    • \n
    • Removed: Social Profiles Widget (use the shortcode in HTML widget instead. See docs).
    • \n
    • Removed: Redux template library (use Extendify template library instead).
    • \n
    • Removed: Appsero registration for Redux Pro.
    • \n
    • Modified: Cleanup of old or outdated code.
    • \n
    • Release date: September 26, 2022
    • \n
    \n

    4.3.17

    \n\n

    4.3.16

    \n\n

    4.3.15

    \n\n

    4.3.14

    \n
      \n
    • New: typography field supports individual unit types for subfields that support them (font-size, line-height, etc.) See: https://devs.redux.io/core-fields/typography.html
    • \n
    • Fixed: Redux installed via TGMPA failing with “This plugin does not have a valid header.”
    • \n
    • Updated: Extendify Library.
    • \n
    • Release date: May 19, 2022
    • \n
    \n

    4.3.13

    \n
      \n
    • Fixed: Work for required functionality within the repeater field.
    • \n
    • Fixed: Filter out bad default values for color_rgba field.
    • \n
    • Fixed: jQuery deprecation notice.
    • \n
    • Fixed: Type error in import_export field. Additional repeater JS fix.
    • \n
    • Fixed: required functionality within the repeater field.
    • \n
    • Modified: Additional sanitizing on color hex values.
    • \n
    • Modified: Customizer code to eliminate init() error.
    • \n
    • Updated: Extendify Library.
    • \n
    • Release date: May 05, 2022
    • \n
    \n

    4.3.12

    \n
      \n
    • Updated: Vendor libraries.
    • \n
    • Updated: Extendify Library.
    • \n
    • Fixed: jQuery deprecation notices.
    • \n
    • Fixed: Filesystem class error.
    • \n
    • Fixed: Customizer not saving data for sections not shown in the customizer.
    • \n
    • Fixed: Fix deprecation errors in customizer.
    • \n
    • Fixed: Fix core deprecation notices in metaboxes.
    • \n
    • Release date: March 08, 2022
    • \n
    \n

    4.3.11

    \n
      \n
    • Added: Advanced Customizer!
    • \n
    • Added: Font Awesome 6 Library for future extensions.
    • \n
    • Modified: Enforcing deprecation notices for deprecated functions. Developers: Please update your code as necessary.
    • \n
    • Modified: Connection banner to meet wp.org library standards.
    • \n
    • Updated: Extendify Library.
    • \n
    • Release date: February 23, 2022
    • \n
    \n

    4.3.10

    \n
      \n
    • Added: Repeater field for beta testing.
    • \n
    • Modified: Background field will now show background styling options even if background-image is not set.
    • \n
    • Modified: Connection banner now promotes Extendify plugin with download/activate option.
    • \n
    • Updated: Extendify Library.
    • \n
    • Release date: February 09, 2022
    • \n
    \n

    4.3.9

    \n
      \n
    • Fixed: Extendify Library JavaScript error.
    • \n
    • Release date: January 26, 2022
    • \n
    \n

    4.3.8

    \n
      \n
    • Fixed: Spacing field defaults to px if no default is set.
    • \n
    • Fixed: Remove plugin.php hack in Appsero SDK.
    • \n
    • Updated: Default Google Fonts list brought up to current release
    • \n
    • Updated: Extendify Library.
    • \n
    • Release date: January 25, 2022
    • \n
    \n

    4.3.7

    \n
      \n
    • Fixed: Incorrect global variable assignment. Thanks, @webbudesign.
    • \n
    • Release date: January 11, 2022
    • \n
    \n

    4.3.6

    \n
      \n
    • Modified: Update to the Extendify Library.
    • \n
    • Modified: Moved Extendify and Redux templates libraries back to root folder.
    • \n
    • Modified: Removed “Gutenberg is currently disabled” notice when the Classic Editor plugin is active.
    • \n
    • Fixed: date shortcode without attributes producing error.
    • \n
    • Fixed: Various jQuery deprecation fixes.
    • \n
    • Release date: January 11, 2022
    • \n
    \n

    4.3.5

    \n
      \n
    • Added: Add former premium feature: Option panel Search Bar. See Sample demo or the docs site.
    • \n
    • Added: Add former premium feature: Shortcodes. See Sample demo or the docs site.
    • \n
    • Fixed: Editor in metaboxes not saving HTML. WIll now save the same HTML posts/pages allows.
    • \n
    • Fixed: Front end formatting issue with the Extendify template library.
    • \n
    • Release date: December 01, 2021
    • \n
    \n

    4.3.4

    \n
      \n
    • Fixed: CSS and JS not loading when embedding Redux due to a malformed path.
    • \n
    • Modified: Update to the Extendify template library.
    • \n
    • Release date: November, 24 2021
    • \n
    \n

    4.3.3

    \n
      \n
    • Modified: Move template libraries to redux-core directory.
    • \n
    • Modified: Update to the Extendify template library.
    • \n
    • Release date: November 16, 2021
    • \n
    \n

    4.3.2

    \n
      \n
    • Added: Metaboxes!
    • \n
    • Fixed: Incorrect return type in Options Constructor.
    • \n
    • Modified: Prefixed Browser class to avoid conflict with older versions in other projects.
    • \n
    • Release date: November 11, 2021
    • \n
    \n

    4.3.1

    \n
      \n
    • Fixed: wp_mail has been declared by another process or plugin message.
    • \n
    • Fixed: Malformed README wouldn’t allow clicking of some support links.
    • \n
    • Release date: September 22, 2021
    • \n
    \n

    4.3.0

    \n
      \n
    • Added: Gutenberg Template Library updated to the new Extendify library. See more information here about this upgrade and how to access the legacy library: https://redux.io/gutenberg-template-library-upgrade.
    • \n
    • Added: Option to enable/disable Template libraries. Found under Settings > Redux > Templates
    • \n
    • Added: Redux debug data moved to WordPress Site Health Info screen.
    • \n
    • Removed: Redux Framework Health Screen.
    • \n
    • Modified: Tools > Redux Framework screen moved to Settings > Redux
    • \n
    • Modified: Redux Templates disabled by default.
    • \n
    • Release date: September 21, 2021
    • \n
    \n

    ** For a full changelog, see https://github.com/reduxframework/redux-framework/blob/master/CHANGELOG.md **

    \n", "description": "

    Redux was built by developers for developers. We save you months if not years in your development time. Everything we do is to help innovation in the industry.

    \n

    ♥️ What the Plugin does?

    \n

    Redux is a simple, genuinely extensible, and fully responsive options framework for WordPress themes and plugins. Built on the WordPress Settings API; Redux supports many field types, custom error handling, custom fields & validation types, and import/export functionality.

    \n

    But what does Redux actually DO? We don’t believe that theme and plugin developers should have to reinvent the wheel every time they start work on a project. Redux simplifies the development cycle by providing a streamlined, extensible framework for developers to build on. Through a simple, well-documented config file, third-party developers can build out an options panel limited only by their imagination in a fraction of the time it would take to build from the ground up!

    \n

    🚀 What fields does Redux offer?

    \n
      \n
    • Accordion
    • \n
    • ACE Editor
    • \n
    • Background
    • \n
    • Border
    • \n
    • Box Shadow
    • \n
    • Button Set
    • \n
    • Checkbox / Multi-Check
    • \n
    • Color (WordPress Native)
    • \n
    • Color Gradient
    • \n
    • Color Palette
    • \n
    • Color RGBA
    • \n
    • Color Scheme
    • \n
    • Content
    • \n
    • Custom Fonts
    • \n
    • Customizer
    • \n
    • Date
    • \n
    • Date/Time
    • \n
    • Dimensions (Height/Width)
    • \n
    • Divide (Divider)
    • \n
    • Editor (WordPress Native)
    • \n
    • Gallery (WordPress Native)
    • \n
    • Google Maps
    • \n
    • Icon Select
    • \n
    • Image Select (Patterns/Presets)
    • \n
    • Import/Export
    • \n
    • Info (Header/Notice)
    • \n
    • JS Button
    • \n
    • Link Color
    • \n
    • Media (WordPress Native)
    • \n
    • Metaboxes
    • \n
    • Multi Media
    • \n
    • Multi-Text
    • \n
    • Palette
    • \n
    • Password
    • \n
    • Radio (w/ WordPress Data)
    • \n
    • Raw (HTML/PHP/MarkDown)
    • \n
    • Repeater
    • \n
    • Section (Indent and Group Fields)
    • \n
    • Select (Select/Multi-Select w/ Select2 & WordPress Data)
    • \n
    • Select Image
    • \n
    • Slider (Drag a Handle)
    • \n
    • Slides (Multiple Images, Titles, and Descriptions)
    • \n
    • Social Profiles
    • \n
    • Sortable (Drag/Drop Checkbox/Input Fields)
    • \n
    • Sorter (Drag/Drop Manager – Works great for content blocks)
    • \n
    • Spacing (Margin/Padding/Absolute)
    • \n
    • Spinner
    • \n
    • Switch
    • \n
    • Tabbed
    • \n
    • Taxonomy Metaboxes
    • \n
    • Text
    • \n
    • Textarea
    • \n
    • Typography
    • \n
    • User Profile Metaboxes
    • \n

      * The most advanced typography module complete with preview, Google fonts, and auto-css output!

      \n
    • User Profile Metaboxes
    • \n
    • Widget Areas (Classic Widgets only)
    • \n
    \n

    🎉Additional Features

    \n
      \n
    • Full value escaping
    • \n
    • Required – Link visibility from parent fields. Set this to affect the visibility of the field on the parent’s value. Fully nested with multiple required parents possible.
    • \n
    • Output CSS Automatically – Redux generates CSS and the appropriate Google Fonts stylesheets for you on select fields. You need to only specify the CSS selector to apply the CSS to (limited to certain fields).
    • \n
    • Compiler integration! A custom hook runs when any fields with the argument `compile => true` are changed.
    • \n
    • Field validation and sanitization
    • \n
    • Field and section disabling
    • \n
    • Oh, and did we mention a fully integrated Google Fonts setup that will make you so happy you’ll want to cry?
    • \n
    \n

    👍 BE A CONTRIBUTOR

    \n

    If you want to help with translations, go to the Translation Portal at translate.wordpress.org.

    \n

    You can also contribute code via our GitHub Repository. Be sure to use our develop branch to submit pull requests.

    \n

    📝 Documentation and Support

    \n
      \n
    • We have extremely extensive docs. Please visit [https://devs.redux.io/](https://devs.redux.io). If that doesn’t solve your issue, search [the issue tracker on GitHub](https://github.com/reduxframework/redux-framework/issues). If you can’t locate any topics that pertain to your particular problem, [post a new issue](https://github.com/reduxframework/redux-framework/issues/new) for it. Before you submit an issue, please read [our contributing requirements](https://github.com/redux-framework/redux-framework/blob/master/CONTRIBUTING.md). We build on the dev version and push it to WordPress.org when we confirm Redux is stable and ready for release.
    • \n
    • If you have additional questions, reach out to us at support@redux.io
    • \n
    \n

    ⚡ Like the Redux Plugin?

    \n\n

    🔐 Privacy

    \n

    Redux does not interact with end users on your website. If a product is using Redux, the option panel will cease to function without Redux.

    \n

    For more details on our privacy policy: https://redux.io/privacy
    \nFor more details on our terms and conditions: https://redux.io/terms

    \n

    NOTE: Redux is not intended to be used on its own. It requires a config file provided by a third-party theme or plugin developer to actually do anything cool!

    \n", "installation": "
      \n
    1. Upload the entire plugin folder to the /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. \n
    \n"}, "versions": {"4.3.0": "https://downloads.wordpress.org/plugin/redux-framework.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/redux-framework.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/redux-framework.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/redux-framework.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/plugin/redux-framework.4.3.4.zip", "4.3.5": "https://downloads.wordpress.org/plugin/redux-framework.4.3.5.zip", "4.3.6": "https://downloads.wordpress.org/plugin/redux-framework.4.3.6.zip", "4.3.7": "https://downloads.wordpress.org/plugin/redux-framework.4.3.7.zip", "4.3.8": "https://downloads.wordpress.org/plugin/redux-framework.4.3.8.zip", "4.3.9": "https://downloads.wordpress.org/plugin/redux-framework.4.3.9.zip", "4.4.0": "https://downloads.wordpress.org/plugin/redux-framework.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/redux-framework.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/redux-framework.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/plugin/redux-framework.4.4.3.zip", "4.4.4": "https://downloads.wordpress.org/plugin/redux-framework.4.4.4.zip", "4.4.5": "https://downloads.wordpress.org/plugin/redux-framework.4.4.5.zip", "4.4.6": "https://downloads.wordpress.org/plugin/redux-framework.4.4.6.zip", "4.4.7": "https://downloads.wordpress.org/plugin/redux-framework.4.4.7.zip", "4.4.8": "https://downloads.wordpress.org/plugin/redux-framework.4.4.8.zip", "4.4.9": "https://downloads.wordpress.org/plugin/redux-framework.4.4.9.zip", "4.5.0": "https://downloads.wordpress.org/plugin/redux-framework.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/redux-framework.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/redux-framework.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/redux-framework.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/redux-framework.4.5.4.zip", "4.5.6": "https://downloads.wordpress.org/plugin/redux-framework.4.5.6.zip", "4.5.7": "https://downloads.wordpress.org/plugin/redux-framework.4.5.7.zip", "4.5.8": "https://downloads.wordpress.org/plugin/redux-framework.4.5.8.zip", "trunk": "https://downloads.wordpress.org/plugin/redux-framework.zip", "4.3.10": "https://downloads.wordpress.org/plugin/redux-framework.4.3.10.zip", "4.3.11": "https://downloads.wordpress.org/plugin/redux-framework.4.3.11.zip", "4.3.12": "https://downloads.wordpress.org/plugin/redux-framework.4.3.12.zip", "4.3.13": "https://downloads.wordpress.org/plugin/redux-framework.4.3.13.zip", "4.3.14": "https://downloads.wordpress.org/plugin/redux-framework.4.3.14.zip", "4.3.15": "https://downloads.wordpress.org/plugin/redux-framework.4.3.15.zip", "4.3.16": "https://downloads.wordpress.org/plugin/redux-framework.4.3.16.zip", "4.3.17": "https://downloads.wordpress.org/plugin/redux-framework.4.3.17.zip", "4.3.18": "https://downloads.wordpress.org/plugin/redux-framework.4.3.18.zip", "4.3.19": "https://downloads.wordpress.org/plugin/redux-framework.4.3.19.zip", "4.3.20": "https://downloads.wordpress.org/plugin/redux-framework.4.3.20.zip", "4.3.21": "https://downloads.wordpress.org/plugin/redux-framework.4.3.21.zip", "4.3.22": "https://downloads.wordpress.org/plugin/redux-framework.4.3.22.zip", "4.3.24": "https://downloads.wordpress.org/plugin/redux-framework.4.3.24.zip", "4.3.25": "https://downloads.wordpress.org/plugin/redux-framework.4.3.25.zip", "4.3.26": "https://downloads.wordpress.org/plugin/redux-framework.4.3.26.zip", "4.4.10": "https://downloads.wordpress.org/plugin/redux-framework.4.4.10.zip", "4.4.11": "https://downloads.wordpress.org/plugin/redux-framework.4.4.11.zip", "4.4.12": "https://downloads.wordpress.org/plugin/redux-framework.4.4.12.zip", "4.4.13": "https://downloads.wordpress.org/plugin/redux-framework.4.4.13.zip", "4.4.14": "https://downloads.wordpress.org/plugin/redux-framework.4.4.14.zip", "4.4.15": "https://downloads.wordpress.org/plugin/redux-framework.4.4.15.zip", "4.4.16": "https://downloads.wordpress.org/plugin/redux-framework.4.4.16.zip", "4.4.17": "https://downloads.wordpress.org/plugin/redux-framework.4.4.17.zip", "4.4.18": "https://downloads.wordpress.org/plugin/redux-framework.4.4.18.zip"}, "downloaded": 30389276, "description": "

    Redux was built by developers for developers. We save you months if not years in your development time. Everything we do is to help innovation in the industry.

    \n

    ♥️ What the Plugin does?

    \n

    Redux is a simple, genuinely extensible, and fully responsive options framework for WordPress themes and plugins. Built on the WordPress Settings API; Redux supports many field types, custom error handling, custom fields & validation types, and import/export functionality.

    \n

    But what does Redux actually DO? We don’t believe that theme and plugin developers should have to reinvent the wheel every time they start work on a project. Redux simplifies the development cycle by providing a streamlined, extensible framework for developers to build on. Through a simple, well-documented config file, third-party developers can build out an options panel limited only by their imagination in a fraction of the time it would take to build from the ground up!

    \n

    🚀 What fields does Redux offer?

    \n
      \n
    • Accordion
    • \n
    • ACE Editor
    • \n
    • Background
    • \n
    • Border
    • \n
    • Box Shadow
    • \n
    • Button Set
    • \n
    • Checkbox / Multi-Check
    • \n
    • Color (WordPress Native)
    • \n
    • Color Gradient
    • \n
    • Color Palette
    • \n
    • Color RGBA
    • \n
    • Color Scheme
    • \n
    • Content
    • \n
    • Custom Fonts
    • \n
    • Customizer
    • \n
    • Date
    • \n
    • Date/Time
    • \n
    • Dimensions (Height/Width)
    • \n
    • Divide (Divider)
    • \n
    • Editor (WordPress Native)
    • \n
    • Gallery (WordPress Native)
    • \n
    • Google Maps
    • \n
    • Icon Select
    • \n
    • Image Select (Patterns/Presets)
    • \n
    • Import/Export
    • \n
    • Info (Header/Notice)
    • \n
    • JS Button
    • \n
    • Link Color
    • \n
    • Media (WordPress Native)
    • \n
    • Metaboxes
    • \n
    • Multi Media
    • \n
    • Multi-Text
    • \n
    • Palette
    • \n
    • Password
    • \n
    • Radio (w/ WordPress Data)
    • \n
    • Raw (HTML/PHP/MarkDown)
    • \n
    • Repeater
    • \n
    • Section (Indent and Group Fields)
    • \n
    • Select (Select/Multi-Select w/ Select2 & WordPress Data)
    • \n
    • Select Image
    • \n
    • Slider (Drag a Handle)
    • \n
    • Slides (Multiple Images, Titles, and Descriptions)
    • \n
    • Social Profiles
    • \n
    • Sortable (Drag/Drop Checkbox/Input Fields)
    • \n
    • Sorter (Drag/Drop Manager – Works great for content blocks)
    • \n
    • Spacing (Margin/Padding/Absolute)
    • \n
    • Spinner
    • \n
    • Switch
    • \n
    • Tabbed
    • \n
    • Taxonomy Metaboxes
    • \n
    • Text
    • \n
    • Textarea
    • \n
    • Typography
    • \n
    • User Profile Metaboxes
    • \n

      * The most advanced typography module complete with preview, Google fonts, and auto-css output!

      \n
    • User Profile Metaboxes
    • \n
    • Widget Areas (Classic Widgets only)
    • \n
    \n

    🎉Additional Features

    \n
      \n
    • Full value escaping
    • \n
    • Required – Link visibility from parent fields. Set this to affect the visibility of the field on the parent’s value. Fully nested with multiple required parents possible.
    • \n
    • Output CSS Automatically – Redux generates CSS and the appropriate Google Fonts stylesheets for you on select fields. You need to only specify the CSS selector to apply the CSS to (limited to certain fields).
    • \n
    • Compiler integration! A custom hook runs when any fields with the argument `compile => true` are changed.
    • \n
    • Field validation and sanitization
    • \n
    • Field and section disabling
    • \n
    • Oh, and did we mention a fully integrated Google Fonts setup that will make you so happy you’ll want to cry?
    • \n
    \n

    👍 BE A CONTRIBUTOR

    \n

    If you want to help with translations, go to the Translation Portal at translate.wordpress.org.

    \n

    You can also contribute code via our GitHub Repository. Be sure to use our develop branch to submit pull requests.

    \n

    📝 Documentation and Support

    \n
      \n
    • We have extremely extensive docs. Please visit [https://devs.redux.io/](https://devs.redux.io). If that doesn’t solve your issue, search [the issue tracker on GitHub](https://github.com/reduxframework/redux-framework/issues). If you can’t locate any topics that pertain to your particular problem, [post a new issue](https://github.com/reduxframework/redux-framework/issues/new) for it. Before you submit an issue, please read [our contributing requirements](https://github.com/redux-framework/redux-framework/blob/master/CONTRIBUTING.md). We build on the dev version and push it to WordPress.org when we confirm Redux is stable and ready for release.
    • \n
    • If you have additional questions, reach out to us at support@redux.io
    • \n
    \n

    ⚡ Like the Redux Plugin?

    \n\n

    🔐 Privacy

    \n

    Redux does not interact with end users on your website. If a product is using Redux, the option panel will cease to function without Redux.

    \n

    For more details on our privacy policy: https://redux.io/privacy
    \nFor more details on our terms and conditions: https://redux.io/terms

    \n

    NOTE: Redux is not intended to be used on its own. It requires a config file provided by a third-party theme or plugin developer to actually do anything cool!

    \n", "donate_link": "", "num_ratings": 272, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/redux-framework/", "contributors": {"dovyp": {"avatar": "https://secure.gravatar.com/avatar/e960359a54d96235c26ea46d311b20fc47c77c5a15050e9d6a7d742e075fa9dc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dovyp/", "display_name": "Dōvy Paukstys"}, "redux": {"avatar": "https://secure.gravatar.com/avatar/9c7321aefd5f72f3e2d57015d3299d064b497ff18cd8fade5608ebaa75f064e1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/redux/", "display_name": "Redux"}, "kprovance": {"avatar": "https://secure.gravatar.com/avatar/ede698e148675cd9ec992f047848a781d36a17aabdfb487d2e446baffc69e9fe?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kprovance/", "display_name": "Kev Provance"}}, "last_updated": "2025-10-01 6:14pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/redux-framework.4.5.8.zip", "author_profile": "https://profiles.wordpress.org/davidanderson/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f9cb-7200-b067-ed06f280d9cd", "name": "Redux Framework", "slug": "redux-framework", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1759342440, "version": "4.5.8"}, "support_threads": 5, "requires_plugins": [], "short_description": "Redux is a simple, truly extensible, and fully responsive options framework for WordPress themes and plugins. It ships with an integrated demo.", "author_block_count": 0, "author_block_rating": 88, "commercial_support_url": "", "support_threads_resolved": 5}'); -INSERT INTO public.plugins VALUES ('019a30c1-66aa-70da-8302-bd81e530c406', 'regenerate-thumbnails', 'Regenerate Thumbnails', 'Regenerate the thumbnails for one or more of your image uploads. Useful when changing their sizes or your theme.', '

    Regenerate Thumbnails allows you to regenerate all thumbnail sizes for one or more images that have been uploaded to your Media Library.

    -

    This is useful for situations such as:

    -
      -
    • A new thumbnail size has been added and you want past uploads to have a thumbnail in that size.
    • -
    • You’ve changed the dimensions of an existing thumbnail size, for example via Settings → Media.
    • -
    • You’ve switched to a new WordPress theme that uses featured images of a different size.
    • -
    -

    It also offers the ability to delete old, unused thumbnails in order to free up server space.

    -

    In Memory of Alex Mills

    -

    In February 2019 Alex Mills, the author of this plugin, passed away. He leaves behind a number of plugins which will be maintained by Automattic and members of the WordPress community. If this plugin is useful to you please consider donating to the Oregon Health and Science University. You can find more information here.

    -

    Alternatives

    -

    WP-CLI

    -

    If you have command line access to your server, I highly recommend using WP-CLI instead of this plugin as it’s faster (no HTTP requests overhead) and can be run inside of a screen for those with many thumbnails. For details, see the documentation of its media regenerate command.

    -

    Jetpack’s Photon Module

    -

    Jetpack is a plugin by Automattic, makers of WordPress.com. It gives your self-hosted WordPress site some of the functionality that is available to WordPress.com-hosted sites.

    -

    The Photon module makes the images on your site be served from WordPress.com’s global content delivery network (CDN) which should speed up the loading of images. Importantly though it can create thumbnails on the fly which means you’ll never need to use this plugin.

    -

    I personally use Photon on my own website.

    -

    Disclaimer: I work for Automattic but I would recommend Photon even if I didn’t.

    -

    Need Help? Found A Bug? Want To Contribute Code?

    -

    Support for this plugin is provided via the WordPress.org forums.

    -

    The source code for this plugin is available on GitHub.

    -', '3.1.6', 'Alex Mills', '4.7', '5.2.4', '6.8.3', 'https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.6.zip', '2008-08-28 00:00:00+00', '2025-08-20 15:56:00+00', 'https://profiles.wordpress.org/viper007bond/', 92, 394, 3, 1, 1000000, 22291553, 'https://alex.blog/wordpress-plugins/regenerate-thumbnails/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/regenerate-thumbnails/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Regenerate Thumbnails", "slug": "regenerate-thumbnails", "tags": {"thumbnail": "thumbnail", "thumbnails": "thumbnails", "post-thumbnail": "post thumbnail", "post-thumbnails": "post thumbnails"}, "added": "2008-08-28", "icons": {"1x": "https://ps.w.org/regenerate-thumbnails/assets/icon-128x128.png?rev=1753390"}, "author": "Alex Mills", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/regenerate-thumbnails/assets/banner-772x250.jpg?rev=1753390", "high": "https://ps.w.org/regenerate-thumbnails/assets/banner-1544x500.jpg?rev=1753390"}, "ratings": {"1": 26, "2": 8, "3": 3, "4": 17, "5": 340}, "version": "3.1.6", "homepage": "https://alex.blog/wordpress-plugins/regenerate-thumbnails/", "requires": "4.7", "sections": {"faq": "\n
    \nIs this plugin [GDPR](https://en.wikipedia.org/wiki/General_Data_Protection_Regulation) compliant?\n\n

    \n

    This plugin does not log nor transmit any user data. Infact it doesn’t even do anything on the user-facing part of your website, only in the admin area. This means it should be compliant but I’m not a lawyer.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very, very, very happy with the results

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy JHouse on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    For layout and design purposes, I opted to increase the size of all my featured image thumbnails moving forward, but you guessed it, I still had to resize the previous photos. Well, this plugin handled it like a champ! Even removed the ones I wasn''t using any longer so I could free up some server space.

    \n\n\n\n

    Admittedly, I was a bit scared running this plugin for the first time, however, I made backup of my website files and database before doing so in the event sh!t went south. Not only did it resize them perfectly, it restored some thumbnails that were missing. Now all is awesome!

    \n\n\n\n

    Thanks for such a great plugin! I will use this exclusively in the future.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Screwed all the references to images in a Portrait orientation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy chrisdubea on September 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yea,

    \n\n\n\n

    That was stupid. Foolishly used this, still don''t know why. Screwed up all my references to images in a Portrait orientation.

    \n\n\n\n

    Luckily I was able to figure it out and with Better Search Replace was able to fix 326 instances of the wrong reference.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sjcm94 on August 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you, Alex, for still supporting us.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works. Good info too

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy moviemoon on March 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I really like this plug-in. I don''t need it very often but when I do it works great. For example when I changed the image size for my blog thumbnails and thought i would have a headache!

    \n\n\n\n

    It shows nice info about images and which sizes will be generated too. Useful. Thank you.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good cleanup tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Denny Müller (redaquamedia) on November 20, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works fine and does what it describes.

    \n\n\n\n

    And sorry to hear, that Alex has passed away.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks for great plugin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anil Chandra Robidas (anilkumer) on November 13, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice Tools

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Doesn't work well with -scaled images

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy 21stcn on July 30, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Wordpress scales down very big images, adding a ''full'' image with ''-scaled'' suffix, and stores the original file and it''s name in the db. RT plugin however regens thumbails based on the ''scaled'' image, so all the intermediate sizes are re-named. This can break images when combined with offloading etc.

    \n\n\n\n

    Unless I am missing something, this ''-scaled'' resizing of big images is default wordpress functionality so the RT plugin should handle it properly by using the original image (using functions like wp_get_original_image_url, wp_get_original_image_path) etc, so as not to orphan a whole set of thumbnails, use the wrong full image and generate a new set of intermediate sizes.

    \n\n\n\n

    Eg:
    These are the currently registered thumbnail sizes, whether they exist for this attachment, and their filenames:

    \n\n\n\n
      \n
    • thumbnail: 280×178 pixels (cropped to fit) 8C2A3575-scaled-280x178.jpg
    • \n\n\n\n
    • medium: 300×300 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-300x200.jpg
    • \n\n\n\n
    • medium_large: 0×0 pixels (thumbnail would be larger than original)
    • \n\n\n\n
    • large: 720×1200 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-720x480.jpg
    • \n\n\n\n
    • avatar: 180×180 pixels (cropped to fit) 8C2A3575-scaled-180x180.jpg
    • \n\n\n\n
    • 1536x1536: 1536×1536 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-1536x1024.jpg
    • \n\n\n\n
    • 2048x2048: 2048×2048 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-2048x1366.jpg
    • \n\n\n\n
    • featured-medium: 700×446 pixels (cropped to fit) 8C2A3575-scaled-700x446.jpg
    • \n\n\n\n
    • featured-large: 1398×1398 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-1398x932.jpg
    • \n\n\n\n
    • extra-large: 1598×1598 pixels (proportionally resized to fit inside dimensions) 8C2A3575-scaled-1598x1066.jpg
    • \n
    \n\n\n\n

    The attachment says it also has these thumbnail sizes but they are no longer in use by WordPress. You can probably safely have this plugin delete them, especially if you have this plugin update any posts that make use of this attachment.

    \n\n\n\n
      \n
    • medium (old): 300×200 pixels 8C2A3575-300x200.jpg
    • \n\n\n\n
    • large (old): 720×480 pixels 8C2A3575-720x480.jpg
    • \n\n\n\n
    • thumbnail (old): 280×178 pixels 8C2A3575-280x178.jpg
    • \n\n\n\n
    • avatar (old): 180×180 pixels 8C2A3575-180x180.jpg
    • \n\n\n\n
    • 1536x1536 (old): 1536×1024 pixels 8C2A3575-1536x1024.jpg
    • \n\n\n\n
    • 2048x2048 (old): 2048×1365 pixels 8C2A3575-2048x1365.jpg
    • \n\n\n\n
    • featured-medium (old): 700×446 pixels 8C2A3575-700x446.jpg
    • \n\n\n\n
    • featured-large (old): 1398×932 pixels 8C2A3575-1398x932.jpg
    • \n\n\n\n
    • extra-large (old): 1598×1065 pixels 8C2A3575-1598x1065.jpg
    • \n\n\n\n
    • cmplz_banner_image: 350×100 pixels 8C2A3575-350x100.jpg
    • \n
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Asad (asadpro) on July 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useful plugin. I have been using this plugin for the last 5 years.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This app saved my blog

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy infinityfree on July 3, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It should be built-in WordPress feature. So useful!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Au top !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy davs63 on March 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Bonjour et merci à l''auteur

    \n\n\n\n

    Ce plugin à sauvé mon site, ou en tout cas plusieurs heures de travail. Les images étaient présente dans le backup mais pas les miniatures. Donc je ne voyais plus rien dans la médiathèque. Et cette extension a recréé toute les mignatures !!

    \n\n\n\n

    Il mérite les 5 etoiles

    \n\n\n\n

    \n
    \n
    \n", "changelog": "

    Version 3.1.6

    \n
      \n
    • Fix: Respect “Skip regenerating existing correctly sized thumbnails” setting.
    • \n
    • Fix: Don’t delete all thumbnails when deleting old unregistered thumbnails size.
    • \n
    \n

    Version 3.1.5

    \n
      \n
    • Fix: Don’t overwrite ‘All X Attachment’ button label with featured images count.
    • \n
    • Tested successfully with PHP 8.1.
    • \n
    • Tested successfully with PHP 8.2.
    • \n
    \n

    Version 3.1.4

    \n
      \n
    • Fix: Don’t attempt to regenerate SVG’s.
    • \n
    • Bump tested version.
    • \n
    • Update dependencies.
    • \n
    \n

    Version 3.1.3

    \n
      \n
    • Update plugin dependencies to the latest version.
    • \n
    \n

    Version 3.1.2

    \n
      \n
    • Use wp_get_original_image_path() in WordPress 5.3
    • \n
    \n

    Version 3.1.1

    \n
      \n
    • Minor fix to avoid a divide by zero error when displaying thumbnail filenames.
    • \n
    \n

    Version 3.1.0

    \n
      \n
    • Bring back the ability to delete old, unregistered thumbnail sizes. Support for updating post contents is still disabled (too buggy).
    • \n
    • Various code improvements including string localization disambiguation.
    • \n
    \n

    Version 3.0.2

    \n
      \n
    • Fix slowdown in certain cases in the media library.
    • \n
    • Fix not being able to regenerate existing thumbnails for single images. Props @idofri.
    • \n
    • Fix JavaScript error that could occur if the REST API response was unexpected (empty or PHP error).
    • \n
    • Fix bug related to multibyte filenames.
    • \n
    • If an image is used as the featured image on multiple posts, only regenerate it once instead of once per post.
    • \n
    \n

    Version 3.0.1

    \n
      \n
    • Temporarily disable the update post functionality. I tested it a lot but it seems there’s still some bugs.
    • \n
    • Temporarily disable the delete old thumbnails functionality. It seems to work fine but without the update post functionality, it’s not as useful.
    • \n
    • Try to more gracefully handle cases where there’s missing metadata for attachments.
    • \n
    • Wait until init to initialize the plugin so themes can filter the plugin’s capability. plugins_loaded is too early.
    • \n
    • Fix a JavaScript error that would cause the whole regeneration process to stop if an individual image returned non-JSON, such as a 500 error code.
    • \n
    • Accept GET requests for the regenerate REST API endpoint instead of just POSTs. For some reasons some people’s sites are using GET despite the code saying use POST.
    • \n
    • Make the attachment ID clickable in error messages.
    • \n
    • Fetch 25 attachments at a time instead of 5. I was using 5 for testing.
    • \n
    • PHP notice fixes.
    • \n
    \n

    Version 3.0.0

    \n
      \n
    • Complete rewrite from scratch using Vue.js and the WordPress REST API.
    • \n
    \n

    Version 2.2.4

    \n
      \n
    • Better AJAX response error handling in the JavaScript. This should fix a long-standing bug in this plugin. Props Hew Sutton.
    • \n
    \n

    Version 2.2.3

    \n
      \n
    • Make the capability required to use this plugin filterable so themes and other plugins can change it. Props Jackson Whelan.
    • \n
    \n

    Version 2.2.2

    \n
      \n
    • Don’t check the nonce until we’re sure that the action called was for this plugin. Fixes lots of “Are you sure you want to do this?” error messages.
    • \n
    \n

    Version 2.2.1

    \n
      \n
    • Fix the bottom bulk action dropdown. Thanks Stefan for pointing out the issue!
    • \n
    \n

    Version 2.2.0

    \n
      \n
    • Changes to the Bulk Action functionality were made shortly before the release of WordPress 3.1 which broke the way I implemented the specific multiple image regeneration feature. This version adds to the Bulk Action menu using Javascript as that’s the only way to do it currently.
    • \n
    \n

    Version 2.1.3

    \n
      \n
    • Move the error_reporting() call in the AJAX handler to the beginning so that we’re more sure that no PHP errors are outputted. Some hosts disable usage of set_time_limit() and calling it was causing a PHP warning to be outputted.
    • \n
    \n

    Version 2.1.2

    \n
      \n
    • When regenerating all images, newest images are done first rather than the oldest.
    • \n
    • Fixed a bug with regeneration error reporting in some browsers. Thanks to pete-sch for reporting the error.
    • \n
    • Supress PHP errors in the AJAX handler to avoid sending an invalid JSON response. Thanks to pete-sch for reporting the error.
    • \n
    • Better and more detailed error reporting for when wp_generate_attachment_metadata() fails.
    • \n
    \n

    Version 2.1.1

    \n
      \n
    • Clean up the wording a bit to better match the new features and just be easier to understand.
    • \n
    • Updated screenshots.
    • \n
    \n

    Version 2.1.0

    \n

    Lots of new features!

    \n
      \n
    • Thanks to a lot of jQuery help from Boris Schapira, a failed image regeneration will no longer stop the whole process.
    • \n
    • The results of each image regeneration is now outputted. You can easily see which images were successfully regenerated and which failed. Was inspired by a concept by Boris.
    • \n
    • There is now a button on the regeneration page that will allow you to abort resizing images for any reason. Based on code by Boris.
    • \n
    • You can now regenerate single images from the Media page. The link to do so will show up in the actions list when you hover over the row.
    • \n
    • You can now bulk regenerate multiple from the Media page. Check the boxes and then select “Regenerate Thumbnails” form the “Bulk Actions” dropdown. WordPress 3.1+ only.
    • \n
    • The total time that the regeneration process took is now displayed in the final status message.
    • \n
    • jQuery UI Progressbar version upgraded.
    • \n
    \n

    Version 2.0.3

    \n
      \n
    • Switch out deprecated function call.
    • \n
    \n

    Version 2.0.2

    \n
      \n
    • Directly query the database to only fetch what the plugin needs (the attachment ID). This will reduce the memory required as it’s not storing the whole row for each attachment.
    • \n
    \n

    Version 2.0.1

    \n
      \n
    • I accidentally left a check_admin_referer() (nonce check) commented out.
    • \n
    \n

    Version 2.0.0

    \n
      \n
    • Recoded from scratch. Now uses an AJAX request per attachment to do the resizing. No more PHP maximum execution time errors or anything like that. Also features a pretty progress bar to let the user know how it’s going.
    • \n
    \n

    Version 1.1.0

    \n
      \n
    • WordPress 2.7 updates — code + UI. Thanks to jdub and Patrick F.
    • \n
    \n

    Version 1.0.0

    \n
      \n
    • Initial release.
    • \n
    \n

    Upgrade Notice

    \n

    Support for WordPress 5.3

    \n", "description": "

    Regenerate Thumbnails allows you to regenerate all thumbnail sizes for one or more images that have been uploaded to your Media Library.

    \n

    This is useful for situations such as:

    \n
      \n
    • A new thumbnail size has been added and you want past uploads to have a thumbnail in that size.
    • \n
    • You’ve changed the dimensions of an existing thumbnail size, for example via Settings → Media.
    • \n
    • You’ve switched to a new WordPress theme that uses featured images of a different size.
    • \n
    \n

    It also offers the ability to delete old, unused thumbnails in order to free up server space.

    \n

    In Memory of Alex Mills

    \n

    In February 2019 Alex Mills, the author of this plugin, passed away. He leaves behind a number of plugins which will be maintained by Automattic and members of the WordPress community. If this plugin is useful to you please consider donating to the Oregon Health and Science University. You can find more information here.

    \n

    Alternatives

    \n

    WP-CLI

    \n

    If you have command line access to your server, I highly recommend using WP-CLI instead of this plugin as it’s faster (no HTTP requests overhead) and can be run inside of a screen for those with many thumbnails. For details, see the documentation of its media regenerate command.

    \n

    Jetpack’s Photon Module

    \n

    Jetpack is a plugin by Automattic, makers of WordPress.com. It gives your self-hosted WordPress site some of the functionality that is available to WordPress.com-hosted sites.

    \n

    The Photon module makes the images on your site be served from WordPress.com’s global content delivery network (CDN) which should speed up the loading of images. Importantly though it can create thumbnails on the fly which means you’ll never need to use this plugin.

    \n

    I personally use Photon on my own website.

    \n

    Disclaimer: I work for Automattic but I would recommend Photon even if I didn’t.

    \n

    Need Help? Found A Bug? Want To Contribute Code?

    \n

    Support for this plugin is provided via the WordPress.org forums.

    \n

    The source code for this plugin is available on GitHub.

    \n", "screenshots": "
    1. \"The

      The main plugin interface.

    2. \"Regenerating

      Regenerating in progress.

    3. \"Interface

      Interface for regenerating a single attachment.

    4. \"Individual

      Individual images can be regenerated from the media library in list view.

    5. \"They

      They can also be regenerated from the edit attachment screen.

    ", "installation": "
      \n
    1. Go to your admin area and select Plugins → Add New from the menu.
    2. \n
    3. Search for “Regenerate Thumbnails”.
    4. \n
    5. Click install.
    6. \n
    7. Click activate.
    8. \n
    9. Navigate to Tools → Regenerate Thumbnails.
    10. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.1.1.0.zip", "2.0.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.1.0.zip", "2.1.2": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.1.2.zip", "2.2.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.2.0.zip", "2.2.3": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.2.6.zip", "2.3.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.2.3.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.0.2.zip", "3.1.1": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.6.zip", "trunk": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.zip"}, "downloaded": 22291553, "description": "

    Regenerate Thumbnails allows you to regenerate all thumbnail sizes for one or more images that have been uploaded to your Media Library.

    \n

    This is useful for situations such as:

    \n
      \n
    • A new thumbnail size has been added and you want past uploads to have a thumbnail in that size.
    • \n
    • You’ve changed the dimensions of an existing thumbnail size, for example via Settings → Media.
    • \n
    • You’ve switched to a new WordPress theme that uses featured images of a different size.
    • \n
    \n

    It also offers the ability to delete old, unused thumbnails in order to free up server space.

    \n

    In Memory of Alex Mills

    \n

    In February 2019 Alex Mills, the author of this plugin, passed away. He leaves behind a number of plugins which will be maintained by Automattic and members of the WordPress community. If this plugin is useful to you please consider donating to the Oregon Health and Science University. You can find more information here.

    \n

    Alternatives

    \n

    WP-CLI

    \n

    If you have command line access to your server, I highly recommend using WP-CLI instead of this plugin as it’s faster (no HTTP requests overhead) and can be run inside of a screen for those with many thumbnails. For details, see the documentation of its media regenerate command.

    \n

    Jetpack’s Photon Module

    \n

    Jetpack is a plugin by Automattic, makers of WordPress.com. It gives your self-hosted WordPress site some of the functionality that is available to WordPress.com-hosted sites.

    \n

    The Photon module makes the images on your site be served from WordPress.com’s global content delivery network (CDN) which should speed up the loading of images. Importantly though it can create thumbnails on the fly which means you’ll never need to use this plugin.

    \n

    I personally use Photon on my own website.

    \n

    Disclaimer: I work for Automattic but I would recommend Photon even if I didn’t.

    \n

    Need Help? Found A Bug? Want To Contribute Code?

    \n

    Support for this plugin is provided via the WordPress.org forums.

    \n

    The source code for this plugin is available on GitHub.

    \n", "donate_link": "", "num_ratings": 394, "screenshots": {"1": {"src": "https://ps.w.org/regenerate-thumbnails/assets/screenshot-1.png?rev=1787847", "caption": "The main plugin interface."}, "2": {"src": "https://ps.w.org/regenerate-thumbnails/assets/screenshot-2.png?rev=1787847", "caption": "Regenerating in progress."}, "3": {"src": "https://ps.w.org/regenerate-thumbnails/assets/screenshot-3.png?rev=1787847", "caption": "Interface for regenerating a single attachment."}, "4": {"src": "https://ps.w.org/regenerate-thumbnails/assets/screenshot-4.png?rev=1787847", "caption": "Individual images can be regenerated from the media library in list view."}, "5": {"src": "https://ps.w.org/regenerate-thumbnails/assets/screenshot-5.png?rev=1787847", "caption": "They can also be regenerated from the edit attachment screen."}}, "support_url": "https://wordpress.org/support/plugin/regenerate-thumbnails/", "contributors": {"viper007bond": {"avatar": "https://secure.gravatar.com/avatar/b5f16acb1bc24ca6bf644adb593384de64046fa69c5de867a7647c7f736a1271?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/viper007bond/", "display_name": "Alex Mills"}}, "last_updated": "2025-08-20 3:56pm GMT", "preview_link": "", "requires_php": "5.2.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.6.zip", "author_profile": "https://profiles.wordpress.org/viper007bond/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-f9bb-7389-8fd9-668735de8b61", "name": "Regenerate Thumbnails", "slug": "regenerate-thumbnails", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1755705360, "version": "3.1.6"}, "support_threads": 3, "requires_plugins": [], "short_description": "Regenerate the thumbnails for one or more of your image uploads. Useful when changing their sizes or your theme.", "author_block_count": 0, "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-66c2-7198-88d9-ff47ca70fe09', 'safe-svg', 'Safe SVG', 'Enable SVG uploads and sanitize them to stop XML/SVG vulnerabilities in your WordPress website.', '

    Safe SVG is the best way to Allow SVG Uploads in WordPress!

    -

    It gives you the ability to allow SVG uploads whilst making sure that they’re sanitized to stop SVG/XML vulnerabilities affecting your site. It also gives you the ability to preview your uploaded SVGs in the media library in all views.

    -

    Current Features

    -
      -
    • Sanitised SVGs – Don’t open up security holes in your WordPress site by allowing uploads of unsanitised files.
    • -
    • SVGO Optimisation – Runs your SVGs through the SVGO tool on upload to save you space. This feature is disabled by default but can be enabled by adding the following code: add_filter( ''safe_svg_optimizer_enabled'', ''__return_true'' );
    • -
    • View SVGs in the Media Library – Gone are the days of guessing which SVG is the correct one, we’ll enable SVG previews in the WordPress media library.
    • -
    • Choose Who Can Upload – Restrict SVG uploads to certain users on your WordPress site or allow anyone to upload.
    • -
    -

    Initially a proof of concept for #24251.

    -

    SVG Sanitization is done through the following library: https://github.com/darylldoyle/svg-sanitizer.

    -

    SVG Optimization is done through the following library: https://github.com/svg/svgo.

    -', '2.4.0', '10up', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/safe-svg.2.4.0.zip', '2015-07-03 00:00:00+00', '2025-09-22 14:09:00+00', 'https://profiles.wordpress.org/10up/', 98, 75, 2, 1, 1000000, 12157838, 'https://wordpress.org/plugins/safe-svg/', NULL, 'community', NULL, 'https://wordpress.org/support/plugin/safe-svg/', 'https://wordpress.org/plugins/safe-svg/?preview=1', 'https://github.com/10up/safe-svg', 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Safe SVG", "slug": "safe-svg", "tags": {"svg": "SVG", "mime": "mime", "media": "media", "vector": "Vector", "security": "security"}, "added": "2015-07-03", "icons": {"1x": "https://ps.w.org/safe-svg/assets/icon.svg?rev=2779013", "svg": "https://ps.w.org/safe-svg/assets/icon.svg?rev=2779013"}, "author": "10up", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/safe-svg/assets/banner-772x250.png?rev=2683939", "high": "https://ps.w.org/safe-svg/assets/banner-1544x500.png?rev=2683939"}, "ratings": {"1": 0, "2": 1, "3": 0, "4": 6, "5": 68}, "version": "2.4.0", "homepage": "https://wordpress.org/plugins/safe-svg/", "requires": "6.6", "sections": {"faq": "\n
    \nCan we change the allowed attributes and tags?\n\n

    \n

    Yes, this can be done using the svg_allowed_attributes and svg_allowed_tags filters.
    \nThey take one argument that must be returned. See below for examples:

    \n
    add_filter( ''svg_allowed_attributes'', function ( $attributes ) {\n\n    // Do what you want here...\n\n    // This should return an array so add your attributes to\n    // to the $attributes array before returning it. E.G.\n\n    $attributes[] = ''target''; // This would allow the target=\"\" attribute.\n\n    return $attributes;\n} );\n\n\nadd_filter( ''svg_allowed_tags'', function ( $tags ) {\n\n    // Do what you want here...\n\n    // This should return an array so add your tags to\n    // to the $tags array before returning it. E.G.\n\n    $tags[] = ''use''; // This would allow the <use> element.\n\n    return $tags;\n} );\n
    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin, but missing ...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rrvoigt on June 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Would have given a 5 star, but it seems support is missing for the taxonomy / terms section (like in categories) upload for SVG images. Keep getting an error that the upload isn''t supported. Hopefully this will be fixed in a future update. Will update once this is added. Cheers!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wonderful + fetaure request

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Stefano (stefacchio) on April 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin! very usefull, but please can you add the possibility to add an inline SVG on the block pasting svg code?

    \n\n\n\n


    Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ELEMENTOR+Safe SVG=It works

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bandgamin on March 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks to the plugin developers. The plugin helped me solve my issue.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Effortless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jimmy Lee (shirtguy72) on November 14, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks for creating this plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Caused very long loading times in homepage translations (wpml)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy headfalcon on July 31, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I didn''t look into it but this plugin caused my homepage in translations to take about 30 seconds to load, instead of 1-2. We use WPML. It was back to normal the moment I deleted the plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Quick and easy!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iz4atkal on July 30, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does what it says. 👍

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Sorry, you are not allowed to upload this file type.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy psyphi on January 10, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello everyone,
    the Plugin does not work for me, I refreshed, logged in and out, checked several different svg files but the uploading is still not possible.
    After having read so many positive reviews I think I am an exception.
    Thanks for any advice!

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    mandatory plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bartesuski on August 16, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I don''t understand why this isn''t in core wordpress. Plugin integrates flawlessly into the website and causes no issues.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does what is says. Quick and easy.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy geonaught on July 15, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does what is says. Quick and easy.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple yet exactly what I needed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jamesstaples on May 17, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy plugin for enabling svg uploads on your wordpress site

    \n
    \n
    \n", "changelog": "

    2.4.0 – 2025-09-22

    \n\n

    2.3.3 – 2025-08-13

    \n\n

    2.3.2 – 2025-07-21

    \n\n

    2.3.1 – 2024-12-05

    \n\n

    2.3.0 – 2024-11-25

    \n\n

    2.2.6 – 2024-08-28

    \n\n

    View historical changelog details here.

    \n", "description": "

    Safe SVG is the best way to Allow SVG Uploads in WordPress!

    \n

    It gives you the ability to allow SVG uploads whilst making sure that they’re sanitized to stop SVG/XML vulnerabilities affecting your site. It also gives you the ability to preview your uploaded SVGs in the media library in all views.

    \n

    Current Features

    \n
      \n
    • Sanitised SVGs – Don’t open up security holes in your WordPress site by allowing uploads of unsanitised files.
    • \n
    • SVGO Optimisation – Runs your SVGs through the SVGO tool on upload to save you space. This feature is disabled by default but can be enabled by adding the following code: add_filter( ''safe_svg_optimizer_enabled'', ''__return_true'' );
    • \n
    • View SVGs in the Media Library – Gone are the days of guessing which SVG is the correct one, we’ll enable SVG previews in the WordPress media library.
    • \n
    • Choose Who Can Upload – Restrict SVG uploads to certain users on your WordPress site or allow anyone to upload.
    • \n
    \n

    Initially a proof of concept for #24251.

    \n

    SVG Sanitization is done through the following library: https://github.com/darylldoyle/svg-sanitizer.

    \n

    SVG Optimization is done through the following library: https://github.com/svg/svgo.

    \n", "installation": "

    Install through the WordPress directory or download, unzip and upload the files to your /wp-content/plugins/ directory

    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/safe-svg.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/safe-svg.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/safe-svg.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/plugin/safe-svg.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/safe-svg.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/safe-svg.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/safe-svg.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/safe-svg.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/safe-svg.1.3.4.zip", "1.4.0": "https://downloads.wordpress.org/plugin/safe-svg.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/safe-svg.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/safe-svg.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/safe-svg.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/safe-svg.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/safe-svg.1.4.5.zip", "1.5.0": "https://downloads.wordpress.org/plugin/safe-svg.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/safe-svg.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/safe-svg.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/safe-svg.1.5.3.zip", "1.6.0": "https://downloads.wordpress.org/plugin/safe-svg.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/safe-svg.1.6.1.zip", "1.7.1": "https://downloads.wordpress.org/plugin/safe-svg.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/safe-svg.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/safe-svg.1.8.1.zip", "1.9.0": "https://downloads.wordpress.org/plugin/safe-svg.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/safe-svg.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/safe-svg.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/safe-svg.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/safe-svg.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/safe-svg.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/safe-svg.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/safe-svg.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/safe-svg.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/safe-svg.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/plugin/safe-svg.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/safe-svg.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/safe-svg.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/safe-svg.2.0.3.zip", "2.1.0": "https://downloads.wordpress.org/plugin/safe-svg.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/safe-svg.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/plugin/safe-svg.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/safe-svg.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/safe-svg.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/safe-svg.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/safe-svg.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/safe-svg.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/plugin/safe-svg.2.2.6.zip", "2.3.0": "https://downloads.wordpress.org/plugin/safe-svg.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/safe-svg.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/safe-svg.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/safe-svg.2.3.3.zip", "2.4.0": "https://downloads.wordpress.org/plugin/safe-svg.2.4.0.zip", "trunk": "https://downloads.wordpress.org/plugin/safe-svg.zip", "1.9.10": "https://downloads.wordpress.org/plugin/safe-svg.1.9.10.zip"}, "downloaded": 12157838, "description": "

    Safe SVG is the best way to Allow SVG Uploads in WordPress!

    \n

    It gives you the ability to allow SVG uploads whilst making sure that they’re sanitized to stop SVG/XML vulnerabilities affecting your site. It also gives you the ability to preview your uploaded SVGs in the media library in all views.

    \n

    Current Features

    \n
      \n
    • Sanitised SVGs – Don’t open up security holes in your WordPress site by allowing uploads of unsanitised files.
    • \n
    • SVGO Optimisation – Runs your SVGs through the SVGO tool on upload to save you space. This feature is disabled by default but can be enabled by adding the following code: add_filter( ''safe_svg_optimizer_enabled'', ''__return_true'' );
    • \n
    • View SVGs in the Media Library – Gone are the days of guessing which SVG is the correct one, we’ll enable SVG previews in the WordPress media library.
    • \n
    • Choose Who Can Upload – Restrict SVG uploads to certain users on your WordPress site or allow anyone to upload.
    • \n
    \n

    Initially a proof of concept for #24251.

    \n

    SVG Sanitization is done through the following library: https://github.com/darylldoyle/svg-sanitizer.

    \n

    SVG Optimization is done through the following library: https://github.com/svg/svgo.

    \n", "donate_link": "", "num_ratings": 75, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/safe-svg/", "contributors": {"10up": {"avatar": "https://secure.gravatar.com/avatar/a23224a610fd2e01327438b5faab5749d7afe5bb8a888ca23e7ab751824e5458?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/10up/", "display_name": "10up"}, "jeffpaul": {"avatar": "https://secure.gravatar.com/avatar/c95de1e6c222121175c2c0dddf4631d2ea45704938f53332d12710379c6153e6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jeffpaul/", "display_name": "Jeffrey Paul"}, "enshrined": {"avatar": "https://secure.gravatar.com/avatar/9c4f608be1318c7ca580fff7a037a860abe60a9886a8d12c44be2013c9e20901?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/enshrined/", "display_name": "Daryll Doyle"}}, "last_updated": "2025-09-22 2:09pm GMT", "preview_link": "https://wordpress.org/plugins/safe-svg/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/safe-svg.2.4.0.zip", "author_profile": "https://profiles.wordpress.org/10up/", "business_model": "community", "repository_url": "https://github.com/10up/safe-svg", "upgrade_notice": {"2.2.6": "

    Note that this release bumps the WordPress minimum version from 5.7 to 6.4.

    ", "2.3.0": "

    Note that this release bumps the WordPress minimum version from 6.4 to 6.5.

    ", "2.3.2": "

    Note that this release bumps the WordPress minimum version from 6.5 to 6.6.

    ", "1.9.10": "

    Important: bumped the WordPress minimum version from 4.0 to 4.7 and the PHP minimum version from 5.6 to 7.0.

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fa1f-7384-96cc-0936b3be8546", "name": "Safe SVG", "slug": "safe-svg", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1758550140, "version": "2.4.0"}, "support_threads": 2, "requires_plugins": [], "short_description": "Enable SVG uploads and sanitize them to stop XML/SVG vulnerabilities in your WordPress website.", "author_block_count": "2", "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-66cc-7387-bb82-513a03d10532', 'seo-by-rank-math', 'Rank Math SEO – AI SEO Tools to Dominate SEO Rankings', 'Rank Math SEO is the best WordPress SEO plugin with the features of many SEO and AI SEO tools in a single package to help multiply your SEO traffic.', '

    Rank Math SEO – Best SEO Plugin for WordPress

    -

    1st WordPress SEO Plugin to use AI (Artificial Intelligence) 🦾
    -★★★★★

    -

    SEO is the most consistent source of traffic for any website. We created Rank Math, a WordPress SEO plugin with AI SEO features better than ChatGPT, to help every website owner get access to the SEO tools they need to improve their SEO and attract more traffic to their website.

    -

    Try The FREE Demo of Rank Math

    - -

    Features | Why Choose Rank Math? | Compare | Screenshots | Benefits

    -

    SEO might be the best and most consistent source of traffic for one’s website, but it’s not without its quirks. The constant process of optimizing your posts for SEO can sometimes take more time than actually writing the content. If you always feel you can do more on the SEO front for your website but don’t have the time, then Rank Math SEO is what you’re looking for.

    -

    Its host of intelligent features brings top SEO capabilities in your hands that were previously out of reach. The smart automation features give you the power of an entire SEO team with just a few clicks. A well-thought-out design, powerful features, and years of development make Rank Math a game-changing SEO plugin that will level the SEO playing field in your favor to help increase traffic.

    -

    Exclusive Content AI. Write Highly Optimized SEO Content

    - -

    ➜ Use AI SEO to write better than ChatGPT
    -➜ Dynamic Suggestions
    -➜ Intelligent Recommendations
    -➜ Intelligent Questions (With Schema Markup)
    -➜ Smart Link Suggestions
    -➜ Extra Keyword Info
    -➜ Related Keywords
    -➜ Full Control via Role Manager

    -

    Rank Math beats all of its competitors, hands down.

    -

    See the features that are exclusive to the Rank Math plugin and understand why Rank Math is the Best SEO Plugin for WordPress.

    -
      -
    • -

      Setup Wizard (Easy to follow)
      -Rank Math practically configures itself. Rank Math features a step-by-step installation and configuration wizard that sets up SEO for WordPress perfectly.

      -
    • -
    • -

      Google Schema Markup aka Rich Snippets Integrated
      -Configuring Google Schema Markup, aka Rich Snippets, is now easy, thanks to Rank Math. With support for 16+ types of Schema Markups, aka Rich Snippets, including the Rating Schema, you’ll be able to optimize your posts in just a few clicks.

      -
    • -
    • -

      Optimize Unlimited Keywords
      -Unlike other plugins, Rank Math lets you optimize your posts for unlimited focus keywords per post. 5 by default. Increase by adding this filter.

      -
    • -
    • -

      Content AI
      -Rank Math is the FIRST & ONLY SEO plugin that uses AI to help you write content. Your personal AI Assistant for creating SEO-friendly content. Our Content AI takes all the hassle out of writing. It ensures that the content you write is great not only for your visitors but for search engines (SEO) as well. Learn how to use Content AI for writing SEO-optimized content that ranks.

      -
    • -
    • -

      Google Search Console Integration
      -Rank Math saves you a ton of time by integrating with Google Search Console and displaying important information about your website right inside WordPress.

      -
    • -
    • -

      Google Keyword Ranking
      -With the Rank Math plugin, you can track your keyword rankings on Google.

      -
    • -
    • -

      Google Analytics Integration
      -Rank Math offers a one-click solution to install Google Analytics script without pasting anything manually anywhere. You can also exclude the Logged-in users.

      -
    • -
    • -

      Optimal Settings Pre-Selected
      -Configuring an SEO plugin takes time and can be confusing. Rank Math saves you the trouble with its optimal default settings, which are ideal for most websites and, if needed, can be changed.

      -
    • -
    • -

      LSI Keyword Tool Integrated
      -Rank Math’s integrated LSI keyword tool gives you multiple keyword variations of your focus keyword, which helps you attract more traffic to your posts. A free account is needed.

      -
    • -
    • -

      Advanced SEO Analysis Tool
      -With just a single click, Rank Math can perform an SEO analysis for your website.

      -
    • -
    • -

      30 Detailed SEO Tests
      -Rank Math is designed to ultimately supercharge your website’s SEO with its 30 detailed SEO tests. A free account is needed.

      -
    • -
    • -

      Module Based System
      -Rank Math has been designed with a module-based system, each of which can be enabled or disabled as per your needs, giving you extra speed and control.

      -
    • -
    • -

      Smart Redirection Manager
      -Rank Math’s built-in smart redirection manager will help you create, manage, delete, enable, or disable redirects at scale.

      -
    • -
    • -

      Local Business SEO
      -Rank Math is designed to be used by global and local websites alike. With its local SEO features, local sites can stand out in search engine results like Google’s and attract more traffic.

      -
    • -
    • -

      SEO Optimized Breadcrumbs
      -Rank Math can display SEO-optimized Breadcrumbs on all websites, even if the theme doesn’t support Schema.org coding.

      -
    • -
    • -

      404 Monitor
      -Rank Math has a built-in 404 error monitor that helps you find and resolve 404 errors for a better user experience.

      -
    • -
    • -

      Deep Content Analysis Tests
      -On-page SEO is no longer a mystery with Rank Math’s deep content analysis and precise recommendations.

      -
    • -
    • -

      Internal Linking Suggestions
      -Rank Math intelligently suggests other posts from your website for internal linking from your current posts, improving the chances of ranking higher in the SERPs.

      -
    • -
    • -

      Role Manager
      -Even if you have multiple employees managing your website, you can precisely control what each of them has access to in Rank Math with its role manager.

      -
    • -
    • -

      Multisite Ready
      -Whether you run a single WordPress website or an entire network of sites – we are ready for you. Rank Math fully supports the WordPress Multiuser project (WPMU).

      -
    • -
    • -

      It has lightweight code compared to slow-loading in other SEO plugins.
      -Even with significantly more features than other plugins, Rank Math loads amazingly fast and keeps your website fast.

      -
    • -
    -

    Why is Rank Math such a game-changer?

    -
      -
    • -

      Auto Configuration — All you have to do is set a few options, and Rank Math will configure itself ideally for your website.

      -
    • -
    • -

      Super Fast SEO Plugin — Even after packing so many features, Rank Math has a negligible load on your server, thus making it one of the fastest SEO plugins for WordPress.

      -
    • -
    • -

      Automatic Keyword Suggestions from Google — Get keyword suggestions from Google as you start typing letters in the focus keyword field of Rank Math.

      -
    • -
    • -

      New SEO Analyzer — Rank Math’s built-in SEO analysis will give you SEO recommendations that you’d typically spend hundreds of dollars to get.

      -
    • -
    • -

      Elementor SEO – Deep integration with the Elementor Page builder. Now, you don’t need to go back and forth between tabs to configure your page’s SEO. Everything related to SEO for Elementor can be configured in the visual editor.

      -
    • -
    • -

      Divi SEO – One-of-a-kind integration with the Divi Page Builder and theme. Handle everything related to SEO from the page editor screen without jumping back to the default editor. This helps you optimize your website for SEO in real-time.

      -
    • -
    • -

      Page Builder SEO – The Rank Math plugin’s content analysis works perfectly with popular page builders and themes like Oxygen Builder, WPBakery, Avada, Astra, Kadence, Themify, Beaver Builder, Page Builder Framework, Schema theme, Flothemes, OceanWP, etc.

      -
    • -
    • -

      Image SEO – With Rank Math’s perfect solution to add ALT & Title tags on the fly, to optimize images, showing inside the content, and that too for FREE, there is no reason to choose any other SEO solution that does not provide all the essential SEO features.

      -
    • -
    • -

      WooCommerce SEO – Optimizing your store products is easier with Rank Math. SEO Meta tags and Schema are automatically added but can be customized with total control. Rank Math has the most advanced SEO for WooCommerce.

      -
    • -
    • -

      Google AMP SEO – Accelerated Mobile Pages must be prepared for search engines. What better way to do that than letting Rank Math use your regular SEO details and optimizing AMPs based on that data?

      -
    • -
    • -

      bbPress & BuddyPress SEO – User-generated content in bbPress/BuddyPress is optimized correctly, and Rank Math handles all the necessary SEO aspects. Q&A Schema is added to bbPress topics along with other essential meta tags.

      -
    • -
    • -

      Quick Edit SEO Details – Go through many posts/pages quickly by ensuring they are optimized for search engines. Quickly edit multiple SEO fields at once using Rank Math.

      -
    • -
    • -

      Instant Indexing for Google – Instantly getting indexed by Google used to be reserved for huge brands and large websites. Not anymore. Just about anyone can take advantage of Google’s Instant Indexing feature using Rank Math.

      -
    • -
    • -

      Translation Plugins Support — Rank Math works flawlessly with the top translation plugins like WPML, TranslatePress, Weglot, Polylang (not entirely compatible yet), etc., making it a perfect companion.

      -
    • -
    • -

      XML Sitemap – The Rank Math plugin comes with a fast-loading Sitemap feature that works with different post types, including custom ones, and provides deep control. One can also generate a Locations KML file via a filter for Local Sitemap, & a WooCommerce Sitemap.

      -
    • -
    • -

      1-Click Import From Yoast — With a single click of your mouse, Rank Math can import all your settings from Yoast SEO & Yoast SEO Premium to itself. The transfer is instant, and you don’t lose any SERP rankings as a result.

      -
    • -
    • -

      1-Click Import From AIO SEO — Rank Math can also import all your settings from AIO SEO & All in One SEO Pack Pro in a single click. The transfer is instant, and you don’t lose any SERP rankings as a result.

      -
    • -
    • -

      1-Click Import From All in One Schema, SEOPress, and Redirection —Rank Math allows seamless migration of settings from plugins like All In One Schema Rich Snippets, SEOPress (including Pro), and Redirection with just a single click, ensuring no loss of rankings or data during the transfer.

      -
    • -
    -

    Who Can Benefit From Rank Math?

    -

    Rank Math Plugin is perfect for:

    -

    ✔ Bloggers
    -✔ eCommerce Store Owners
    -✔ Niche Sites
    -✔ Businesses
    -✔ Local Businesses
    -✔ Startups
    -✔ The Real Estate
    -✔ Artists & Photographers
    -✔ The Solution Offerer
    -✔ Directories
    -✔ Vloggers (Video Bloggers)
    -✔ Or any WordPress Website

    -

    Take a sneak peek into Rank Math’s features

    -

    Detailed Setup Tutorial

    - -

    BIG Publications are Raving About Rank Math

    -

    Rank Math Reviews

    - - -

    Rank Math Review – Why I Ditched Yoast For Rank Math

    -

    Rank Math on Product Hunt

    -

    Rank Math Plugin Review from an SEO Consultant

    -

    and many more

    -

    Check RANK MATH PRO WHICH MAKES SEO EASIER & FASTER

    - -

    Rank Math FREE VS PRO COMPARISON

    -

    UNIQUE FEATURES OF Rank Math PRO

    -

    Google Analytics & Search Console Integration (The only SEO plugin that provides it)
    -✔ Integrated Google Analytics, AdSense & Search Console Data
    -✔ Analyze the SEO Performance of Each Post & Page
    -✔ See Top Winning/Losing Posts & Keywords
    -✔ Keep Track of Position History
    -✔ Rank Tracker for Important Keywords

    -

    Schema aka Structured Data aka Rich Snippets. The BEST Schema Generator Available Online
    -✔ 20+ Pre-defined Schema types (more than any other plugin) –
    -✔ Import Schema from Other Websites
    -✔ Advanced Schema Builder [Advanced SEOs can use this to create any complex Schema Markup]
    -✔ Schema Templates for Automation
    -✔ Conditional Schema Markup
    -✔ Multiple Location Schema On Any Page (using the Shortcode)

    -

    Automation At Its BEST
    -✔ Automated Image SEO
    -✔ Advanced Filtering for Images [https://i.rankmath.com/zAUHHP]
    -✔ Watermark Your images
    -✔ Advanced Post filtering
    -✔ Bulk Actions [index, noindex, redirect, etc.]
    -✔ Quick Edit SEO Details
    -✔ Bulk Import SEO Meta Details Using CSV file
    -✔ Auto Detect Videos and Generate Schema Markup for Them
    -✔ Auto Fetch Thumbnail, Duration of YouTube & Vimeo Videos
    -✔ Automatically Flush Facebook Thumbnails
    -✔ Open External Links in New Tabs
    -✔ Nofollow External Links
    -✔ Noindex Paginated, Archive, Search Result Pages
    -✔ Instant Indexing for Bing & Yandex [Also Google using our Instant Indexing Plugin]

    -

    WooCommerce SEO
    -✔ Automatic Schema for WooCommerce Products
    -✔ Advanced Open Graph Tags for WooCommerce Products
    -✔ Automatic NoIndex Hidden Products
    -✔ Remove WooCommerce Product and Category Base
    -✔ Add Custom Brands to Products
    -✔ Add Global Identifier Schema Like GTIN/MPN – Even to Variations

    -

    MANY MORE FEATURES
    -✔ PREMIUM 24x7x365 Dedicated Support Managers
    -✔ MOST COMPETITIVE PRICING EVER!

    -

    CHEK ALL THE PREMIUM FEATURES AND PRICING HERE

    -

    CONNECT WITH THE TEAM AND SEO EXPERTS

    -

    JOIN FACEBOOK GROUP COMMUNITY: The purpose of this Facebook group is to have a collective place where the community can help each other, and we can get some feedback to improve Rank Math as well. Joining the group is also a great way to connect with like-minded people and share your SEO experience.

    -

    Branding Guideline

    -

    Rank Math® SEO is a registered trademark. Please use the following format when mentioning the Rank Math plugin anywhere.
    -* Rank Math [correct]
    -* RankMath [incorrect]
    -* Rankmath [incorrect]
    -* rankmath [incorrect]
    -* rankMath [incorrect]

    -

    Getting Started:

    -

    1. How to Setup Rank Math: Once you install Rank Math for the first time, you will be greeted with the Setup Wizard, which is discussed in detail here.

    -

    2. User Documentation: Although Rank Math is already easy to set up, we’ve put together tutorials, guides, and some knowledge bases to help you set up and get started with Rank Math.

    -

    3. Contribute (Sharing is caring): If you are one of those caring hearts that want to help, please check the following resources:
    -* Rank Math’s GitHub repository – Includes all the uncompressed files.
    -* Content Analyzer Code Files – Includes all supplementary uncompressed files.
    -* Translation – If you want to translate the plugin into your local language.

    -

    4. Support Ticket Forum: Our dedicated forum is where you can get support for any issues you face with Rank Math. In the forum, we’ll also try to answer some SEO queries. User experience is important to us, and we aim to answer all the forum queries promptly.

    -

    5. Frequently Asked Questions: Here, we’ve answered the most commonly asked questions about Rank Math. The questions are related to features, pricing, and others.

    -', '1.0.256', 'Rank Math SEO', '6.3', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.256.zip', '2018-11-19 00:00:00+00', '2025-10-22 08:41:00+00', 'https://profiles.wordpress.org/rankmath/', 98, 7307, 77, 58, 3000000, 152922589, 'https://rankmath.com/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/seo-by-rank-math/', NULL, NULL, 'wp_org', '2025-10-29 16:16:12+00', '{"name": "Rank Math SEO – AI SEO Tools to Dominate SEO Rankings", "slug": "seo-by-rank-math", "tags": {"seo": "seo", "schema": "schema", "redirection": "redirection", "wordpress-seo": "wordpress seo", "google-search-console": "google search console"}, "added": "2018-11-19", "icons": {"1x": "https://ps.w.org/seo-by-rank-math/assets/icon.svg?rev=3218327", "svg": "https://ps.w.org/seo-by-rank-math/assets/icon.svg?rev=3218327"}, "author": "Rank Math SEO", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/seo-by-rank-math/assets/banner-772x250.png?rev=2639678", "high": "https://ps.w.org/seo-by-rank-math/assets/banner-1544x500.png?rev=2639678"}, "ratings": {"1": 173, "2": 41, "3": 48, "4": 129, "5": 6916}, "version": "1.0.256", "homepage": "https://rankmath.com/", "requires": "6.3", "sections": {"faq": "\n
    \nCan I transfer my SEO & Redirection settings from another plugin to Rank Math?\n\n

    \n

    Absolutely. Rank Math has a built-in feature to import SEO settings from popular SEO plugins like Yoast SEO, Yoast SEO Premium, AIO SEO Pack, All In One Schema Rich Snippets, and Redirection. Once you install Rank Math and run the setup wizard, you’ll see a dedicated step where you’ll get to import all your SEO settings to Rank Math.

    \n

    \n
    \nWhat themes does Rank Math support?\n\n

    \n

    Rank Math has been tested with many WordPress themes and supports all major WordPress themes. Since we follow WordPress plugin development guidelines, you can rest assured that Rank Math will work perfectly, no matter your theme. If you’ve installed Rank Math and are facing issues, it might not be because of theme incompatibility. Please contact the support team by opening a support ticket in our support forum, and we will fix it for you.

    \n

    \n
    \nWhat plugins is Rank Math compatible with?\n\n

    \n

    Rank Math has been designed using WordPress’ strict plugin development guidelines and, therefore, is compatible with most plugins. However, you might get unexpected results if you use another SEO plugin that performs any of the functions that Rank Math does. We recommend that you disable or delete other SEO plugins for best results.

    \n

    \n
    \nWill my website slow down if I Install Rank Math?\n\n

    \n

    No. Rank Math’s code has been created and optimized for maximum performance. That is why using Rank Math on your website will not slow down your website. On the contrary, your website will perform better than ever with Rank Math, as it does the job of multiple plugins. Once you remove the unnecessary plugins from your website, your website’s performance is sure to get better.

    \n

    \n
    \nIs creating a Rank Math account needed to use the plugin?\n\n

    \n

    Not at all. Creating a FREE Rank Math account is needed only to utilize our API, which allows you get automatic keyword suggestions from Google and run SEO Site Analysis inside WordPress. You can read more about that here.

    \n

    \n
    \nWill you set up Rank Math on my website?\n\n

    \n

    Rank Math is pretty easy to set up on your website. Apart from detailed instructions on installing Rank Math on our website, we’ve built a user-friendly setup wizard that will help you set up and configure Rank Math ideally for your website. If you face any issues even after using the setup wizard, please get in touch with the support team by sending an email to support@rankmath.com

    \n

    \n
    \nDo I have to remove other SEO plugins if I install Rank Math?\n\n

    \n

    That is recommended. Rank Math is designed to be an all-in-one SEO plugin that handles everything SEO-related. If you use other SEO plugins with Rank Math on your website, not only will the performance of your website be negatively affected, but both plugins working together can produce unexpected SEO results.

    \n

    \n
    \nI already use an SEO plugin. Can I use Rank Math on top of that plugin?\n\n

    \n

    You can, but we do not recommend it. Rank Math has all the functionalities you need in an SEO plugin. You can do that if you still prefer using another plugin for a specific feature. However, we recommend that you turn off that functionality of Rank Math to avoid potential conflicts/issues.

    \n

    \n
    \nWill I lose my rankings if I switch to Rank Math?\n\n

    \n

    No, you won’t. When you install Rank Math, it will seamlessly import your settings from your current SEO plugin. Once the process is complete, the search engines won’t notice a change on your website.

    \n

    If you set up Rank Math from scratch, your search engine rankings will depend on how you configure it. But please be advised that Google and other search engines prefer good, helpful content over anything else.

    \n

    \n
    \nCan I use Rank Math on a WordPress.com website?\n\n

    \n

    Yes, as the plugin is provided through WordPress.org, it is available on WordPress.com as well. However, you might be required to opt for the business plan on WordPress.com.

    \n

    Google is almost never willing to index all the pages and images available on a site. The number of pages and images that get indexed is based on the site’s reputation and the quality of the content, among others.

    \n

    \n
    \nI have further questions; how do I contact you?\n\n

    \n

    Please drop us an email at support@rankmath.com, and we will be more than happy to assist you.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy monoweb on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin, thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not Only Bad, But Very Bad Service

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kajari79 on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am user of Pro version of Rank Math. But after using 10-12 days my experience not good. Many issues occurred. I contacted to support team with a Ticket ID 1117767 before 6 days. But their response are too slow. My problem is not solved. They offer 24x7 support but practically it seems like 1 support in a week. They says premium care but no care about customer''s issue. I am going to cancel my pro subscription and want to get my money back.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Unable to login

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jtohme on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very unprofessional plugin. I''m unable to register on their website and unable to login. I get all kind of errors like: \"Oops! It seems like your account is banned. Please contact us to know more.\"

    \n\n\n\n

    Also, I''m unable to submit a support ticket because they say that I must login to submit a ticket, and I''m unable to login!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    5

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy farbod90 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    best

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    My favourite SEO Plugin for WordPress

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bjburn on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I really like RankMath. Prefer it to other SEO Plugins.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy djdesigner63 on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Beautiful application, well-made and easy to use, I''m using it on www.sergiodangelo.photography

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Aweome

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kewayne on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Use it on all my sites

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Updates need more Q&A before being released

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tranxhdr on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    In the next update, please make it so that \"Add SEO Controls\" is NOT enabled by default? This new feature obliterated the description column. Disabling it made everything back to normal.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wrong SEO Tool for us - You need an SEO Expert

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rockabyeannie on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yeah, No. After a 2 year battle and watching ranking tank to almost nonexistent we removed RankMath. Definitely was not for us. The schema output was messy garbage, very difficult to get all the options set properly, this plugin seriously needs an SEO expert to use properly. We ditched it and 99% of issues have cleared up. This was a big mistake.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Rank Math Outranks Yoast In my Experience by Miles

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy okcirmht on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I had Yoast for many years, thinking I had the best plugin. I am sure they are doing their best, but I could never get anything right with keywords, or even understand how to set them, as limited as they were, they were highly counterintuitive. Some features they said they were offering did not work and despite promises of fixing it, never did. Their autoloading feature regarding redirections was a bloater (I think their plugin generally is), one that you could not get rid off unless you did coding, slowing the site down.

    \n\n\n\n

    I learned about Rank Math by visiting its excellent comparison vids on Youtube (whose presenter really is a gifted explainer) and realized the faults were not just with me and my learning curve. I missed years of the site not being visible, and to give them credit, they did offer a full-hearted apology and have promised they will fix things (for others). I hope they do, but I did deserve a refund for a subscription year I had just started, one I did not receive unfortunately due to their \"policies.\" I can''t understand how large organizations can often miss simple common sense, one that should include making right things they do wrong, and make happiness of their long time customers a goal, even when they leave their ranks due to the company''s faults having caused much harm for their sites over many years.

    \n\n\n\n

    Rank Math is incomparable really. It is highly intuitive and does what it says it does, and almost immediately I could see my posts were appearing on google, and even ranking better, realizing what I had been missing. Their support has been very kind and helpful, and understanding, and even its co-founder actually reaches out to you to welcome you. There are tons of features I still need to learn and consider applying, but I have begun understanding how SEO and ranking work in a way that I could not, or was not motivated, to do with Yoast, because I always dreaded the keyword setting stage.

    \n\n\n\n

    So, do yourself a favor and reconsider your existing SEO plugin in comparison to Rank Math. I strongly recommend using Rank Math. Their explanations are very clear with lots of examples, and when things go wrong with a glitch, they reach out and offer batches until the next release. Finally, I feel I can see where I have gone wrong in ranking efforts, and how I can fix it. No plugin is perfect all the time, but the key is how they treat the problem and their users when it comes up, and I am happy so far on that account too with Rank Math.

    \n
    \n
    \n", "changelog": "

    1.0.256 [Oct 22, 2025]

    \n\n

    Full changelog can be found here – Rank Math changelog

    \n", "description": "

    Rank Math SEO – Best SEO Plugin for WordPress

    \n

    1st WordPress SEO Plugin to use AI (Artificial Intelligence) 🦾
    \n★★★★★

    \n

    SEO is the most consistent source of traffic for any website. We created Rank Math, a WordPress SEO plugin with AI SEO features better than ChatGPT, to help every website owner get access to the SEO tools they need to improve their SEO and attract more traffic to their website.

    \n

    Try The FREE Demo of Rank Math

    \n\n

    Features | Why Choose Rank Math? | Compare | Screenshots | Benefits

    \n

    SEO might be the best and most consistent source of traffic for one’s website, but it’s not without its quirks. The constant process of optimizing your posts for SEO can sometimes take more time than actually writing the content. If you always feel you can do more on the SEO front for your website but don’t have the time, then Rank Math SEO is what you’re looking for.

    \n

    Its host of intelligent features brings top SEO capabilities in your hands that were previously out of reach. The smart automation features give you the power of an entire SEO team with just a few clicks. A well-thought-out design, powerful features, and years of development make Rank Math a game-changing SEO plugin that will level the SEO playing field in your favor to help increase traffic.

    \n

    Exclusive Content AI. Write Highly Optimized SEO Content

    \n\n

    ➜ Use AI SEO to write better than ChatGPT
    \n➜ Dynamic Suggestions
    \n➜ Intelligent Recommendations
    \n➜ Intelligent Questions (With Schema Markup)
    \n➜ Smart Link Suggestions
    \n➜ Extra Keyword Info
    \n➜ Related Keywords
    \n➜ Full Control via Role Manager

    \n

    Rank Math beats all of its competitors, hands down.

    \n

    See the features that are exclusive to the Rank Math plugin and understand why Rank Math is the Best SEO Plugin for WordPress.

    \n
      \n
    • \n

      Setup Wizard (Easy to follow)
      \nRank Math practically configures itself. Rank Math features a step-by-step installation and configuration wizard that sets up SEO for WordPress perfectly.

      \n
    • \n
    • \n

      Google Schema Markup aka Rich Snippets Integrated
      \nConfiguring Google Schema Markup, aka Rich Snippets, is now easy, thanks to Rank Math. With support for 16+ types of Schema Markups, aka Rich Snippets, including the Rating Schema, you’ll be able to optimize your posts in just a few clicks.

      \n
    • \n
    • \n

      Optimize Unlimited Keywords
      \nUnlike other plugins, Rank Math lets you optimize your posts for unlimited focus keywords per post. 5 by default. Increase by adding this filter.

      \n
    • \n
    • \n

      Content AI
      \nRank Math is the FIRST & ONLY SEO plugin that uses AI to help you write content. Your personal AI Assistant for creating SEO-friendly content. Our Content AI takes all the hassle out of writing. It ensures that the content you write is great not only for your visitors but for search engines (SEO) as well. Learn how to use Content AI for writing SEO-optimized content that ranks.

      \n
    • \n
    • \n

      Google Search Console Integration
      \nRank Math saves you a ton of time by integrating with Google Search Console and displaying important information about your website right inside WordPress.

      \n
    • \n
    • \n

      Google Keyword Ranking
      \nWith the Rank Math plugin, you can track your keyword rankings on Google.

      \n
    • \n
    • \n

      Google Analytics Integration
      \nRank Math offers a one-click solution to install Google Analytics script without pasting anything manually anywhere. You can also exclude the Logged-in users.

      \n
    • \n
    • \n

      Optimal Settings Pre-Selected
      \nConfiguring an SEO plugin takes time and can be confusing. Rank Math saves you the trouble with its optimal default settings, which are ideal for most websites and, if needed, can be changed.

      \n
    • \n
    • \n

      LSI Keyword Tool Integrated
      \nRank Math’s integrated LSI keyword tool gives you multiple keyword variations of your focus keyword, which helps you attract more traffic to your posts. A free account is needed.

      \n
    • \n
    • \n

      Advanced SEO Analysis Tool
      \nWith just a single click, Rank Math can perform an SEO analysis for your website.

      \n
    • \n
    • \n

      30 Detailed SEO Tests
      \nRank Math is designed to ultimately supercharge your website’s SEO with its 30 detailed SEO tests. A free account is needed.

      \n
    • \n
    • \n

      Module Based System
      \nRank Math has been designed with a module-based system, each of which can be enabled or disabled as per your needs, giving you extra speed and control.

      \n
    • \n
    • \n

      Smart Redirection Manager
      \nRank Math’s built-in smart redirection manager will help you create, manage, delete, enable, or disable redirects at scale.

      \n
    • \n
    • \n

      Local Business SEO
      \nRank Math is designed to be used by global and local websites alike. With its local SEO features, local sites can stand out in search engine results like Google’s and attract more traffic.

      \n
    • \n
    • \n

      SEO Optimized Breadcrumbs
      \nRank Math can display SEO-optimized Breadcrumbs on all websites, even if the theme doesn’t support Schema.org coding.

      \n
    • \n
    • \n

      404 Monitor
      \nRank Math has a built-in 404 error monitor that helps you find and resolve 404 errors for a better user experience.

      \n
    • \n
    • \n

      Deep Content Analysis Tests
      \nOn-page SEO is no longer a mystery with Rank Math’s deep content analysis and precise recommendations.

      \n
    • \n
    • \n

      Internal Linking Suggestions
      \nRank Math intelligently suggests other posts from your website for internal linking from your current posts, improving the chances of ranking higher in the SERPs.

      \n
    • \n
    • \n

      Role Manager
      \nEven if you have multiple employees managing your website, you can precisely control what each of them has access to in Rank Math with its role manager.

      \n
    • \n
    • \n

      Multisite Ready
      \nWhether you run a single WordPress website or an entire network of sites – we are ready for you. Rank Math fully supports the WordPress Multiuser project (WPMU).

      \n
    • \n
    • \n

      It has lightweight code compared to slow-loading in other SEO plugins.
      \nEven with significantly more features than other plugins, Rank Math loads amazingly fast and keeps your website fast.

      \n
    • \n
    \n

    Why is Rank Math such a game-changer?

    \n
      \n
    • \n

      Auto Configuration — All you have to do is set a few options, and Rank Math will configure itself ideally for your website.

      \n
    • \n
    • \n

      Super Fast SEO Plugin — Even after packing so many features, Rank Math has a negligible load on your server, thus making it one of the fastest SEO plugins for WordPress.

      \n
    • \n
    • \n

      Automatic Keyword Suggestions from Google — Get keyword suggestions from Google as you start typing letters in the focus keyword field of Rank Math.

      \n
    • \n
    • \n

      New SEO Analyzer — Rank Math’s built-in SEO analysis will give you SEO recommendations that you’d typically spend hundreds of dollars to get.

      \n
    • \n
    • \n

      Elementor SEO – Deep integration with the Elementor Page builder. Now, you don’t need to go back and forth between tabs to configure your page’s SEO. Everything related to SEO for Elementor can be configured in the visual editor.

      \n
    • \n
    • \n

      Divi SEO – One-of-a-kind integration with the Divi Page Builder and theme. Handle everything related to SEO from the page editor screen without jumping back to the default editor. This helps you optimize your website for SEO in real-time.

      \n
    • \n
    • \n

      Page Builder SEO – The Rank Math plugin’s content analysis works perfectly with popular page builders and themes like Oxygen Builder, WPBakery, Avada, Astra, Kadence, Themify, Beaver Builder, Page Builder Framework, Schema theme, Flothemes, OceanWP, etc.

      \n
    • \n
    • \n

      Image SEO – With Rank Math’s perfect solution to add ALT & Title tags on the fly, to optimize images, showing inside the content, and that too for FREE, there is no reason to choose any other SEO solution that does not provide all the essential SEO features.

      \n
    • \n
    • \n

      WooCommerce SEO – Optimizing your store products is easier with Rank Math. SEO Meta tags and Schema are automatically added but can be customized with total control. Rank Math has the most advanced SEO for WooCommerce.

      \n
    • \n
    • \n

      Google AMP SEO – Accelerated Mobile Pages must be prepared for search engines. What better way to do that than letting Rank Math use your regular SEO details and optimizing AMPs based on that data?

      \n
    • \n
    • \n

      bbPress & BuddyPress SEO – User-generated content in bbPress/BuddyPress is optimized correctly, and Rank Math handles all the necessary SEO aspects. Q&A Schema is added to bbPress topics along with other essential meta tags.

      \n
    • \n
    • \n

      Quick Edit SEO Details – Go through many posts/pages quickly by ensuring they are optimized for search engines. Quickly edit multiple SEO fields at once using Rank Math.

      \n
    • \n
    • \n

      Instant Indexing for Google – Instantly getting indexed by Google used to be reserved for huge brands and large websites. Not anymore. Just about anyone can take advantage of Google’s Instant Indexing feature using Rank Math.

      \n
    • \n
    • \n

      Translation Plugins Support — Rank Math works flawlessly with the top translation plugins like WPML, TranslatePress, Weglot, Polylang (not entirely compatible yet), etc., making it a perfect companion.

      \n
    • \n
    • \n

      XML Sitemap – The Rank Math plugin comes with a fast-loading Sitemap feature that works with different post types, including custom ones, and provides deep control. One can also generate a Locations KML file via a filter for Local Sitemap, & a WooCommerce Sitemap.

      \n
    • \n
    • \n

      1-Click Import From Yoast — With a single click of your mouse, Rank Math can import all your settings from Yoast SEO & Yoast SEO Premium to itself. The transfer is instant, and you don’t lose any SERP rankings as a result.

      \n
    • \n
    • \n

      1-Click Import From AIO SEO — Rank Math can also import all your settings from AIO SEO & All in One SEO Pack Pro in a single click. The transfer is instant, and you don’t lose any SERP rankings as a result.

      \n
    • \n
    • \n

      1-Click Import From All in One Schema, SEOPress, and Redirection —Rank Math allows seamless migration of settings from plugins like All In One Schema Rich Snippets, SEOPress (including Pro), and Redirection with just a single click, ensuring no loss of rankings or data during the transfer.

      \n
    • \n
    \n

    Who Can Benefit From Rank Math?

    \n

    Rank Math Plugin is perfect for:

    \n

    ✔ Bloggers
    \n✔ eCommerce Store Owners
    \n✔ Niche Sites
    \n✔ Businesses
    \n✔ Local Businesses
    \n✔ Startups
    \n✔ The Real Estate
    \n✔ Artists & Photographers
    \n✔ The Solution Offerer
    \n✔ Directories
    \n✔ Vloggers (Video Bloggers)
    \n✔ Or any WordPress Website

    \n

    Take a sneak peek into Rank Math’s features

    \n

    Detailed Setup Tutorial

    \n\n

    BIG Publications are Raving About Rank Math

    \n

    Rank Math Reviews

    \n\n\n

    Rank Math Review – Why I Ditched Yoast For Rank Math

    \n

    Rank Math on Product Hunt

    \n

    Rank Math Plugin Review from an SEO Consultant

    \n

    and many more

    \n

    Check RANK MATH PRO WHICH MAKES SEO EASIER & FASTER

    \n\n

    Rank Math FREE VS PRO COMPARISON

    \n

    UNIQUE FEATURES OF Rank Math PRO

    \n

    Google Analytics & Search Console Integration (The only SEO plugin that provides it)
    \n✔ Integrated Google Analytics, AdSense & Search Console Data
    \n✔ Analyze the SEO Performance of Each Post & Page
    \n✔ See Top Winning/Losing Posts & Keywords
    \n✔ Keep Track of Position History
    \n✔ Rank Tracker for Important Keywords

    \n

    Schema aka Structured Data aka Rich Snippets. The BEST Schema Generator Available Online
    \n✔ 20+ Pre-defined Schema types (more than any other plugin) –
    \n✔ Import Schema from Other Websites
    \n✔ Advanced Schema Builder [Advanced SEOs can use this to create any complex Schema Markup]
    \n✔ Schema Templates for Automation
    \n✔ Conditional Schema Markup
    \n✔ Multiple Location Schema On Any Page (using the Shortcode)

    \n

    Automation At Its BEST
    \n✔ Automated Image SEO
    \n✔ Advanced Filtering for Images [https://i.rankmath.com/zAUHHP]
    \n✔ Watermark Your images
    \n✔ Advanced Post filtering
    \n✔ Bulk Actions [index, noindex, redirect, etc.]
    \n✔ Quick Edit SEO Details
    \n✔ Bulk Import SEO Meta Details Using CSV file
    \n✔ Auto Detect Videos and Generate Schema Markup for Them
    \n✔ Auto Fetch Thumbnail, Duration of YouTube & Vimeo Videos
    \n✔ Automatically Flush Facebook Thumbnails
    \n✔ Open External Links in New Tabs
    \n✔ Nofollow External Links
    \n✔ Noindex Paginated, Archive, Search Result Pages
    \n✔ Instant Indexing for Bing & Yandex [Also Google using our Instant Indexing Plugin]

    \n

    WooCommerce SEO
    \n✔ Automatic Schema for WooCommerce Products
    \n✔ Advanced Open Graph Tags for WooCommerce Products
    \n✔ Automatic NoIndex Hidden Products
    \n✔ Remove WooCommerce Product and Category Base
    \n✔ Add Custom Brands to Products
    \n✔ Add Global Identifier Schema Like GTIN/MPN – Even to Variations

    \n

    MANY MORE FEATURES
    \n✔ PREMIUM 24x7x365 Dedicated Support Managers
    \n✔ MOST COMPETITIVE PRICING EVER!

    \n

    CHEK ALL THE PREMIUM FEATURES AND PRICING HERE

    \n

    CONNECT WITH THE TEAM AND SEO EXPERTS

    \n

    JOIN FACEBOOK GROUP COMMUNITY: The purpose of this Facebook group is to have a collective place where the community can help each other, and we can get some feedback to improve Rank Math as well. Joining the group is also a great way to connect with like-minded people and share your SEO experience.

    \n

    Branding Guideline

    \n

    Rank Math® SEO is a registered trademark. Please use the following format when mentioning the Rank Math plugin anywhere.
    \n* Rank Math [correct]
    \n* RankMath [incorrect]
    \n* Rankmath [incorrect]
    \n* rankmath [incorrect]
    \n* rankMath [incorrect]

    \n

    Getting Started:

    \n

    1. How to Setup Rank Math: Once you install Rank Math for the first time, you will be greeted with the Setup Wizard, which is discussed in detail here.

    \n

    2. User Documentation: Although Rank Math is already easy to set up, we’ve put together tutorials, guides, and some knowledge bases to help you set up and get started with Rank Math.

    \n

    3. Contribute (Sharing is caring): If you are one of those caring hearts that want to help, please check the following resources:
    \n* Rank Math’s GitHub repository – Includes all the uncompressed files.
    \n* Content Analyzer Code Files – Includes all supplementary uncompressed files.
    \n* Translation – If you want to translate the plugin into your local language.

    \n

    4. Support Ticket Forum: Our dedicated forum is where you can get support for any issues you face with Rank Math. In the forum, we’ll also try to answer some SEO queries. User experience is important to us, and we aim to answer all the forum queries promptly.

    \n

    5. Frequently Asked Questions: Here, we’ve answered the most commonly asked questions about Rank Math. The questions are related to features, pricing, and others.

    \n", "screenshots": "
    1. \"Exclusive

      Exclusive AI Assistant for creating content that ranks.

    2. \"Fully

      Fully integrated with the Gutenberg, aka Block Editor.

    3. \"Optimize

      Optimize Content without any hassle and work with the Classic Editor.

    4. \"Analyze

      Analyze your website''s SEO with one click and fix the issues.

    5. \"Simple

      Simple Setup Wizard with 1-Click Importer.

    6. \"Support

      Support for 15+ Rich Snippet types.

    7. \"No

      No need to pay for any service when you can track keyword ranking changes from our own Search Console.

    8. \"Comes

      Comes with in-built options for social media optimization.

    9. \"Rank

      Rank Math Comes with a 404 monitor and an easy-to-use Redirection Manager.

    10. \"Ground-breaking

      Ground-breaking Integration with Elementor Page Builder.

    11. \"Powerful

      Powerful XML Sitemap.

    12. \"Role

      Role Manager gives you full control. Useful for multi-author sites.

    13. \"Rank

      Rank Math Comes with 15+ FREE modules.

    ", "installation": "
      \n
    1. Visit Plugins > Add New
    2. \n
    3. Search for Rank Math
    4. \n
    5. Install Rank Math once it appears
    6. \n
    7. Activate Rank Math from your Plugins page.
    8. \n
    9. Go to “after activation” below.
    10. \n
    \n

    Manually

    \n
      \n
    1. Upload the seo-by-rank-math folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the Rank Math plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to “after activation” below.
    6. \n
    \n

    After Activation

    \n
      \n
    1. You should see the Rank Math setup wizard.
    2. \n
    3. Go through the setup wizard and set up the plugin for your site.
    4. \n
    5. You’re done!
    6. \n
    \n"}, "versions": {"trunk": "https://downloads.wordpress.org/plugin/seo-by-rank-math.zip", "1.0.216": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.216.zip", "1.0.217": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.217.zip", "1.0.218": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.218.zip", "1.0.219": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.219.zip", "1.0.220": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.220.zip", "1.0.221": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.221.zip", "1.0.222": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.222.zip", "1.0.223": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.223.zip", "1.0.224": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.224.zip", "1.0.225": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.225.zip", "1.0.226": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.226.zip", "1.0.227": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.227.zip", "1.0.228": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.228.zip", "1.0.229": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.229.zip", "1.0.230": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.230.zip", "1.0.231": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.231.zip", "1.0.232": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.232.zip", "1.0.233": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.233.zip", "1.0.234": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.234.zip", "1.0.235": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.235.zip", "1.0.236": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.236.zip", "1.0.237": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.237.zip", "1.0.238": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.238.zip", "1.0.239": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.239.zip", "1.0.240": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.240.zip", "1.0.241": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.241.zip", "1.0.242": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.242.zip", "1.0.243": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.243.zip", "1.0.244": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.244.zip", "1.0.245": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.245.zip", "1.0.246": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.246.zip", "1.0.247": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.247.zip", "1.0.248": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.248.zip", "1.0.249": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.249.zip", "1.0.250": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.250.zip", "1.0.251": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.251.zip", "1.0.252": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.252.zip", "1.0.253": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.253.zip", "1.0.254": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.254.zip", "1.0.255": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.255.zip", "1.0.256": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.256.zip", "1.0.227.1": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.227.1.zip", "1.0.234.1": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.234.1.zip", "1.0.251.1": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.251.1.zip", "1.0.252.1": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.252.1.zip"}, "downloaded": 152922589, "description": "

    Rank Math SEO – Best SEO Plugin for WordPress

    \n

    1st WordPress SEO Plugin to use AI (Artificial Intelligence) 🦾
    \n★★★★★

    \n

    SEO is the most consistent source of traffic for any website. We created Rank Math, a WordPress SEO plugin with AI SEO features better than ChatGPT, to help every website owner get access to the SEO tools they need to improve their SEO and attract more traffic to their website.

    \n

    Try The FREE Demo of Rank Math

    \n\n

    Features | Why Choose Rank Math? | Compare | Screenshots | Benefits

    \n

    SEO might be the best and most consistent source of traffic for one’s website, but it’s not without its quirks. The constant process of optimizing your posts for SEO can sometimes take more time than actually writing the content. If you always feel you can do more on the SEO front for your website but don’t have the time, then Rank Math SEO is what you’re looking for.

    \n

    Its host of intelligent features brings top SEO capabilities in your hands that were previously out of reach. The smart automation features give you the power of an entire SEO team with just a few clicks. A well-thought-out design, powerful features, and years of development make Rank Math a game-changing SEO plugin that will level the SEO playing field in your favor to help increase traffic.

    \n

    Exclusive Content AI. Write Highly Optimized SEO Content

    \n\n

    ➜ Use AI SEO to write better than ChatGPT
    \n➜ Dynamic Suggestions
    \n➜ Intelligent Recommendations
    \n➜ Intelligent Questions (With Schema Markup)
    \n➜ Smart Link Suggestions
    \n➜ Extra Keyword Info
    \n➜ Related Keywords
    \n➜ Full Control via Role Manager

    \n

    Rank Math beats all of its competitors, hands down.

    \n

    See the features that are exclusive to the Rank Math plugin and understand why Rank Math is the Best SEO Plugin for WordPress.

    \n
      \n
    • \n

      Setup Wizard (Easy to follow)
      \nRank Math practically configures itself. Rank Math features a step-by-step installation and configuration wizard that sets up SEO for WordPress perfectly.

      \n
    • \n
    • \n

      Google Schema Markup aka Rich Snippets Integrated
      \nConfiguring Google Schema Markup, aka Rich Snippets, is now easy, thanks to Rank Math. With support for 16+ types of Schema Markups, aka Rich Snippets, including the Rating Schema, you’ll be able to optimize your posts in just a few clicks.

      \n
    • \n
    • \n

      Optimize Unlimited Keywords
      \nUnlike other plugins, Rank Math lets you optimize your posts for unlimited focus keywords per post. 5 by default. Increase by adding this filter.

      \n
    • \n
    • \n

      Content AI
      \nRank Math is the FIRST & ONLY SEO plugin that uses AI to help you write content. Your personal AI Assistant for creating SEO-friendly content. Our Content AI takes all the hassle out of writing. It ensures that the content you write is great not only for your visitors but for search engines (SEO) as well. Learn how to use Content AI for writing SEO-optimized content that ranks.

      \n
    • \n
    • \n

      Google Search Console Integration
      \nRank Math saves you a ton of time by integrating with Google Search Console and displaying important information about your website right inside WordPress.

      \n
    • \n
    • \n

      Google Keyword Ranking
      \nWith the Rank Math plugin, you can track your keyword rankings on Google.

      \n
    • \n
    • \n

      Google Analytics Integration
      \nRank Math offers a one-click solution to install Google Analytics script without pasting anything manually anywhere. You can also exclude the Logged-in users.

      \n
    • \n
    • \n

      Optimal Settings Pre-Selected
      \nConfiguring an SEO plugin takes time and can be confusing. Rank Math saves you the trouble with its optimal default settings, which are ideal for most websites and, if needed, can be changed.

      \n
    • \n
    • \n

      LSI Keyword Tool Integrated
      \nRank Math’s integrated LSI keyword tool gives you multiple keyword variations of your focus keyword, which helps you attract more traffic to your posts. A free account is needed.

      \n
    • \n
    • \n

      Advanced SEO Analysis Tool
      \nWith just a single click, Rank Math can perform an SEO analysis for your website.

      \n
    • \n
    • \n

      30 Detailed SEO Tests
      \nRank Math is designed to ultimately supercharge your website’s SEO with its 30 detailed SEO tests. A free account is needed.

      \n
    • \n
    • \n

      Module Based System
      \nRank Math has been designed with a module-based system, each of which can be enabled or disabled as per your needs, giving you extra speed and control.

      \n
    • \n
    • \n

      Smart Redirection Manager
      \nRank Math’s built-in smart redirection manager will help you create, manage, delete, enable, or disable redirects at scale.

      \n
    • \n
    • \n

      Local Business SEO
      \nRank Math is designed to be used by global and local websites alike. With its local SEO features, local sites can stand out in search engine results like Google’s and attract more traffic.

      \n
    • \n
    • \n

      SEO Optimized Breadcrumbs
      \nRank Math can display SEO-optimized Breadcrumbs on all websites, even if the theme doesn’t support Schema.org coding.

      \n
    • \n
    • \n

      404 Monitor
      \nRank Math has a built-in 404 error monitor that helps you find and resolve 404 errors for a better user experience.

      \n
    • \n
    • \n

      Deep Content Analysis Tests
      \nOn-page SEO is no longer a mystery with Rank Math’s deep content analysis and precise recommendations.

      \n
    • \n
    • \n

      Internal Linking Suggestions
      \nRank Math intelligently suggests other posts from your website for internal linking from your current posts, improving the chances of ranking higher in the SERPs.

      \n
    • \n
    • \n

      Role Manager
      \nEven if you have multiple employees managing your website, you can precisely control what each of them has access to in Rank Math with its role manager.

      \n
    • \n
    • \n

      Multisite Ready
      \nWhether you run a single WordPress website or an entire network of sites – we are ready for you. Rank Math fully supports the WordPress Multiuser project (WPMU).

      \n
    • \n
    • \n

      It has lightweight code compared to slow-loading in other SEO plugins.
      \nEven with significantly more features than other plugins, Rank Math loads amazingly fast and keeps your website fast.

      \n
    • \n
    \n

    Why is Rank Math such a game-changer?

    \n
      \n
    • \n

      Auto Configuration — All you have to do is set a few options, and Rank Math will configure itself ideally for your website.

      \n
    • \n
    • \n

      Super Fast SEO Plugin — Even after packing so many features, Rank Math has a negligible load on your server, thus making it one of the fastest SEO plugins for WordPress.

      \n
    • \n
    • \n

      Automatic Keyword Suggestions from Google — Get keyword suggestions from Google as you start typing letters in the focus keyword field of Rank Math.

      \n
    • \n
    • \n

      New SEO Analyzer — Rank Math’s built-in SEO analysis will give you SEO recommendations that you’d typically spend hundreds of dollars to get.

      \n
    • \n
    • \n

      Elementor SEO – Deep integration with the Elementor Page builder. Now, you don’t need to go back and forth between tabs to configure your page’s SEO. Everything related to SEO for Elementor can be configured in the visual editor.

      \n
    • \n
    • \n

      Divi SEO – One-of-a-kind integration with the Divi Page Builder and theme. Handle everything related to SEO from the page editor screen without jumping back to the default editor. This helps you optimize your website for SEO in real-time.

      \n
    • \n
    • \n

      Page Builder SEO – The Rank Math plugin’s content analysis works perfectly with popular page builders and themes like Oxygen Builder, WPBakery, Avada, Astra, Kadence, Themify, Beaver Builder, Page Builder Framework, Schema theme, Flothemes, OceanWP, etc.

      \n
    • \n
    • \n

      Image SEO – With Rank Math’s perfect solution to add ALT & Title tags on the fly, to optimize images, showing inside the content, and that too for FREE, there is no reason to choose any other SEO solution that does not provide all the essential SEO features.

      \n
    • \n
    • \n

      WooCommerce SEO – Optimizing your store products is easier with Rank Math. SEO Meta tags and Schema are automatically added but can be customized with total control. Rank Math has the most advanced SEO for WooCommerce.

      \n
    • \n
    • \n

      Google AMP SEO – Accelerated Mobile Pages must be prepared for search engines. What better way to do that than letting Rank Math use your regular SEO details and optimizing AMPs based on that data?

      \n
    • \n
    • \n

      bbPress & BuddyPress SEO – User-generated content in bbPress/BuddyPress is optimized correctly, and Rank Math handles all the necessary SEO aspects. Q&A Schema is added to bbPress topics along with other essential meta tags.

      \n
    • \n
    • \n

      Quick Edit SEO Details – Go through many posts/pages quickly by ensuring they are optimized for search engines. Quickly edit multiple SEO fields at once using Rank Math.

      \n
    • \n
    • \n

      Instant Indexing for Google – Instantly getting indexed by Google used to be reserved for huge brands and large websites. Not anymore. Just about anyone can take advantage of Google’s Instant Indexing feature using Rank Math.

      \n
    • \n
    • \n

      Translation Plugins Support — Rank Math works flawlessly with the top translation plugins like WPML, TranslatePress, Weglot, Polylang (not entirely compatible yet), etc., making it a perfect companion.

      \n
    • \n
    • \n

      XML Sitemap – The Rank Math plugin comes with a fast-loading Sitemap feature that works with different post types, including custom ones, and provides deep control. One can also generate a Locations KML file via a filter for Local Sitemap, & a WooCommerce Sitemap.

      \n
    • \n
    • \n

      1-Click Import From Yoast — With a single click of your mouse, Rank Math can import all your settings from Yoast SEO & Yoast SEO Premium to itself. The transfer is instant, and you don’t lose any SERP rankings as a result.

      \n
    • \n
    • \n

      1-Click Import From AIO SEO — Rank Math can also import all your settings from AIO SEO & All in One SEO Pack Pro in a single click. The transfer is instant, and you don’t lose any SERP rankings as a result.

      \n
    • \n
    • \n

      1-Click Import From All in One Schema, SEOPress, and Redirection —Rank Math allows seamless migration of settings from plugins like All In One Schema Rich Snippets, SEOPress (including Pro), and Redirection with just a single click, ensuring no loss of rankings or data during the transfer.

      \n
    • \n
    \n

    Who Can Benefit From Rank Math?

    \n

    Rank Math Plugin is perfect for:

    \n

    ✔ Bloggers
    \n✔ eCommerce Store Owners
    \n✔ Niche Sites
    \n✔ Businesses
    \n✔ Local Businesses
    \n✔ Startups
    \n✔ The Real Estate
    \n✔ Artists & Photographers
    \n✔ The Solution Offerer
    \n✔ Directories
    \n✔ Vloggers (Video Bloggers)
    \n✔ Or any WordPress Website

    \n

    Take a sneak peek into Rank Math’s features

    \n

    Detailed Setup Tutorial

    \n\n

    BIG Publications are Raving About Rank Math

    \n

    Rank Math Reviews

    \n\n\n

    Rank Math Review – Why I Ditched Yoast For Rank Math

    \n

    Rank Math on Product Hunt

    \n

    Rank Math Plugin Review from an SEO Consultant

    \n

    and many more

    \n

    Check RANK MATH PRO WHICH MAKES SEO EASIER & FASTER

    \n\n

    Rank Math FREE VS PRO COMPARISON

    \n

    UNIQUE FEATURES OF Rank Math PRO

    \n

    Google Analytics & Search Console Integration (The only SEO plugin that provides it)
    \n✔ Integrated Google Analytics, AdSense & Search Console Data
    \n✔ Analyze the SEO Performance of Each Post & Page
    \n✔ See Top Winning/Losing Posts & Keywords
    \n✔ Keep Track of Position History
    \n✔ Rank Tracker for Important Keywords

    \n

    Schema aka Structured Data aka Rich Snippets. The BEST Schema Generator Available Online
    \n✔ 20+ Pre-defined Schema types (more than any other plugin) –
    \n✔ Import Schema from Other Websites
    \n✔ Advanced Schema Builder [Advanced SEOs can use this to create any complex Schema Markup]
    \n✔ Schema Templates for Automation
    \n✔ Conditional Schema Markup
    \n✔ Multiple Location Schema On Any Page (using the Shortcode)

    \n

    Automation At Its BEST
    \n✔ Automated Image SEO
    \n✔ Advanced Filtering for Images [https://i.rankmath.com/zAUHHP]
    \n✔ Watermark Your images
    \n✔ Advanced Post filtering
    \n✔ Bulk Actions [index, noindex, redirect, etc.]
    \n✔ Quick Edit SEO Details
    \n✔ Bulk Import SEO Meta Details Using CSV file
    \n✔ Auto Detect Videos and Generate Schema Markup for Them
    \n✔ Auto Fetch Thumbnail, Duration of YouTube & Vimeo Videos
    \n✔ Automatically Flush Facebook Thumbnails
    \n✔ Open External Links in New Tabs
    \n✔ Nofollow External Links
    \n✔ Noindex Paginated, Archive, Search Result Pages
    \n✔ Instant Indexing for Bing & Yandex [Also Google using our Instant Indexing Plugin]

    \n

    WooCommerce SEO
    \n✔ Automatic Schema for WooCommerce Products
    \n✔ Advanced Open Graph Tags for WooCommerce Products
    \n✔ Automatic NoIndex Hidden Products
    \n✔ Remove WooCommerce Product and Category Base
    \n✔ Add Custom Brands to Products
    \n✔ Add Global Identifier Schema Like GTIN/MPN – Even to Variations

    \n

    MANY MORE FEATURES
    \n✔ PREMIUM 24x7x365 Dedicated Support Managers
    \n✔ MOST COMPETITIVE PRICING EVER!

    \n

    CHEK ALL THE PREMIUM FEATURES AND PRICING HERE

    \n

    CONNECT WITH THE TEAM AND SEO EXPERTS

    \n

    JOIN FACEBOOK GROUP COMMUNITY: The purpose of this Facebook group is to have a collective place where the community can help each other, and we can get some feedback to improve Rank Math as well. Joining the group is also a great way to connect with like-minded people and share your SEO experience.

    \n

    Branding Guideline

    \n

    Rank Math® SEO is a registered trademark. Please use the following format when mentioning the Rank Math plugin anywhere.
    \n* Rank Math [correct]
    \n* RankMath [incorrect]
    \n* Rankmath [incorrect]
    \n* rankmath [incorrect]
    \n* rankMath [incorrect]

    \n

    Getting Started:

    \n

    1. How to Setup Rank Math: Once you install Rank Math for the first time, you will be greeted with the Setup Wizard, which is discussed in detail here.

    \n

    2. User Documentation: Although Rank Math is already easy to set up, we’ve put together tutorials, guides, and some knowledge bases to help you set up and get started with Rank Math.

    \n

    3. Contribute (Sharing is caring): If you are one of those caring hearts that want to help, please check the following resources:
    \n* Rank Math’s GitHub repository – Includes all the uncompressed files.
    \n* Content Analyzer Code Files – Includes all supplementary uncompressed files.
    \n* Translation – If you want to translate the plugin into your local language.

    \n

    4. Support Ticket Forum: Our dedicated forum is where you can get support for any issues you face with Rank Math. In the forum, we’ll also try to answer some SEO queries. User experience is important to us, and we aim to answer all the forum queries promptly.

    \n

    5. Frequently Asked Questions: Here, we’ve answered the most commonly asked questions about Rank Math. The questions are related to features, pricing, and others.

    \n", "donate_link": "", "num_ratings": 7307, "screenshots": {"1": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-1.gif?rev=2626116", "caption": "Exclusive AI Assistant for creating content that ranks."}, "2": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-2.gif?rev=2626116", "caption": "Fully integrated with the Gutenberg, aka Block Editor."}, "3": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-3.gif?rev=2626116", "caption": "Optimize Content without any hassle and work with the Classic Editor."}, "4": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-4.gif?rev=2626116", "caption": "Analyze your website''s SEO with one click and fix the issues."}, "5": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-5.gif?rev=2626116", "caption": "Simple Setup Wizard with 1-Click Importer."}, "6": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-6.gif?rev=2626116", "caption": "Support for 15+ Rich Snippet types."}, "7": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-7.jpg?rev=2626116", "caption": "No need to pay for any service when you can track keyword ranking changes from our own Search Console."}, "8": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-8.gif?rev=2626116", "caption": "Comes with in-built options for social media optimization."}, "9": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-9.gif?rev=2626116", "caption": "Rank Math Comes with a 404 monitor and an easy-to-use Redirection Manager."}, "10": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-10.jpg?rev=2626116", "caption": "Ground-breaking Integration with Elementor Page Builder."}, "11": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-11.jpg?rev=2626116", "caption": "Powerful XML Sitemap."}, "12": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-12.jpg?rev=2626116", "caption": "Role Manager gives you full control. Useful for multi-author sites."}, "13": {"src": "https://ps.w.org/seo-by-rank-math/assets/screenshot-13.jpg?rev=2626116", "caption": "Rank Math Comes with 15+ FREE modules."}}, "support_url": "https://wordpress.org/support/plugin/seo-by-rank-math/", "contributors": {"rankmath": {"avatar": "https://secure.gravatar.com/avatar/3d9c6d1da105d8ad7373ff738d7163c92c92e1b6f11bdd2b2dc4983e3f9b891c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rankmath/", "display_name": "Rank Math SEO"}}, "last_updated": "2025-10-22 8:41am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.256.zip", "author_profile": "https://profiles.wordpress.org/rankmath/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 3000000, "aspiresync_meta": {"id": "019a30bf-fa57-70af-aa24-f6a66f4bd304", "name": "Rank Math SEO – AI SEO Tools to Dominate SEO Rankings", "slug": "seo-by-rank-math", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761122460, "version": "1.0.256"}, "support_threads": 77, "requires_plugins": [], "short_description": "Rank Math SEO is the best WordPress SEO plugin with the features of many SEO and AI SEO tools in a single package to help multiply your SEO traffic.", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 58}'); -INSERT INTO public.plugins VALUES ('019a30c1-66d7-712b-af5f-9cf4961ab5c2', 'sg-cachepress', 'Speed Optimizer – The All-In-One Performance-Boosting Plugin', 'Boost your website performance and page speed, and increase conversions with powerful caching, frontend, media, and environment optimizations.', '

    The award-winning Speed Optimizer plugin is a free WordPress performance-boosting solution to improve user experience, increase conversion rates and drive more traffic. Achieve better SEO rankings, improve Core Web Vitals and enhance your Google Page Speed Score.

    -

    Developed by the WordPress speed experts at SiteGround, our free plugin is actively used and trusted by more than 2 million website owners. It’s specially designed to be easy to use, allowing users of all skill levels to make complex speed optimizations, such as minifying HTML, CSS and JavaScript, image compression and lazy loading, in a few clicks.

    -

    Install our caching plugin now to dramatically improve your WordPress website performance on any hosting platform.

    -

    Essential Speed-boosting Features:

    -
      -
    • Powerful Caching for up to 20% faster website.
    • -
    • Frontend Optimizations to minify JS, HTML and CSS, reducing wait time due to the number of scripts and characters in your code
    • -
    • Media Optimizations by up to 85% image size compression without sacrificing quality
    • -
    • WordPress Environment Optimizations to optimize usage and efficiency of your WordPress site resources
    • -
    • Speed Test & tips to get on-demand optimization tips to help your site get even faster
    • -
    -

    Don’t let a slow website compromise your online success. Join the millions of satisfied website owners and see the difference with the free Speed Optimizer plugin.

    -

    AWARDS:

    -

    Monster Awards 2022: Best WordPress Optimization Plugin 🥈

    -

    Plugin Video

    - -

    Plugin Tutorial

    -

    To gain in-depth knowledge about our plugin and its functionalities, check our Speed Optimizer Tutorial. It provides detailed information on how to optimize each aspect of your site and maximizes your website performance and cache.

    -

    CACHING

    -

    The Caching page gives you full control of your website’s cache, allowing you to enhance its performance significantly. Take advantage of the powerful caching options available to boost your page speed:

    -

    DYNAMIC CACHING:

    -

    By enabling Dynamic Caching, all non-static resources of your website are intelligently cached, eliminating the need for repetitive database queries and enhancing page loading speed and TTFB (time to first byte). This default feature is available exclusively for SiteGround servers, ensuring optimal performance.

    -

    FILE-BASED CACHING:

    -

    By activating file-based caching, your website generates and stores static HTML versions, ensuring faster loading times and an improved user experience. This efficient caching method stores the cached files conveniently in the browser’s memory, allowing future visitors to access your site swiftly and seamlessly.

    -

    MEMCACHED:

    -

    Unleash the power of object caching for your WordPress website. Memcached revolutionizes website performance by storing frequently executed queries to your databases and reusing them for lightning-fast website results. This powerful feature is exclusively available in the SiteGround environment.

    -

    CACHING SETTINGS:

    -
      -
    • Automatic Cache Purge: ensure the cache is cleared whenever necessary
    • -
    • Manual Cache Purge: purge cache manually if you are editing new material and do not have automatic purge activated.
    • -
    • Browser-specific Caching: generate caching separately for different browsers
    • -
    • Exclude Post Types from Caching: exclude specific post types from being cached
    • -
    • Exclude URLs from Caching: exclude specific URLs or utilize wildcards to exclude any sub-pages of a designated “parent-page.”
    • -
    • Test URL Caching Status: verify if dynamic caching is actively running on specific URLs
    • -
    -

    ENVIRONMENT OPTIMIZATIONS

    -

    Optimize and fine-tune your site’s environment for optimal website performance:

    -

    HTTPS Enforce:

    -

    Ensure a secure browsing experience for your visitors by effortlessly enabling HTTPS for your site. Say goodbye to insecure content errors and build trust with your audience.

    -

    Scheduled Database Maintenance:

    -

    Take control of your database by activating the Database Optimization feature. This functionality removes unnecessary items and optimizes your database tables, leading to improved efficiency and website performance. If you’re using the InnoDB storage engine, table optimisation is automatically handled by the engine itself.

    -

    Heartbeat Control:

    -

    Manage the frequency of the WP Heartbeat for different areas of your website. By default, the WordPress Heartbeat API checks for scheduled tasks every 15 seconds on post edit pages and every 60 seconds on the dashboard and front end. With Heartbeat Control, you can adjust the frequency of these checks or even disable them entirely, providing you with greater control over resource allocation.

    -

    FRONTEND OPTIMIZATIONS

    -

    Enhance and fine-tune the performance of your website’s front end by minifying JS, HTML and CSS:

    -

    CSS Tab:

    -

    Minify CSS files, activate or deactivate CSS combinations to reduce server requests, and even preload combined CSS for optimized performance. Additionally, you can exclude specific styles from being combined or minified, giving you complete control over your CSS optimization.

    -

    JavaScript Tab:

    -

    Activate or deactivate Minify JavaScript Files to reduce script sizes and lower the number of server requests. You can also defer render-blocking JavaScript to expedite the initial page speed. Furthermore, you have the ability to exclude specific scripts from various optimisation processes, providing flexibility in optimizing your JavaScript resources.

    -

    General Tab:

    -

    Further optimization options include:

    -
      -
    • Web Fonts Optimization: Enhance the loading of Google fonts by adding a preconnect link in your head tag. This informs the browser to establish a connection to Google’s font repository as quickly as possible. Additionally, all other local fonts will be preloaded, resulting in faster caching and rendering. When combined with CSS Combination, we also modify the font-display property to improve rendering speed.
    • -
    • Fonts Preloading: With locally hosted fonts being preloaded, you’re allowing browsers to cache and render them at an accelerated pace.
    • -
    • Remove Query Strings from Static Resources: Improve caching efficiency by removing query strings from static resources, optimizing their caching capabilities.
    • -
    • Disable Emojis: Prevent WordPress from detecting and generating emojis on your pages by disabling emojis support. This helps boost your page speed and improve your website performance.
    • -
    • DNS Pre-fetch for External Domains: Enabling the DNS Pre-fetch for a domain will resolve it before resources from it get requested making those resources load faster.
    • -
    -

    MEDIA OPTIMIZATIONS

    -

    Optimize your website media by reducing image size by up to 85% times while maintaining top-notch quality.

    -

    Image Compression:

    -

    Effortlessly compress images to resize your existing images and reduce the space they occupy on your server. The dimensions of the images will remain unchanged, allowing for optimized storage. Fine-tune the compression level and choose whether to create backups of the original images. Please note that image compression feature is exclusive to the SiteGround Environment.

    -

    WebP Images:

    -

    Leverage the power of WebP, a cutting-edge image format supported by modern browsers, to significantly reduce the size of your images and skyrocket your page speed. If a browser doesn’t support WebP, the original images will be loaded.

    -

    Lazy Load Media:

    -

    Take control of your website’s asset loading with the ability to enable or disable Lazy Load for various assets. You can exclude specific assets such as iframes, videos, thumbnails, widgets, and shortcodes from the dropdown menu. Additionally, you have the option to exclude specific images from the Lazy Load by adding their respective class in the dedicated tab.

    -

    Maximum Image Width:

    -

    If you frequently upload large images to your website, you can enable the Maximum Image Width option that automatically resizes existing and future images whose width exceeds 2560 pixels. By optimizing image sizes, you can enhance your website performance and reduce bandwidth usage.
    -You can customize your media optimisation to your specific needs using the filters, we’ve designed for this purpose.

    -

    SPEED TEST

    -

    Evaluate the optimization level of your website with Speed Optimizer’s Speed test tool. Our website performance check utilizes the robust capabilities of Google PageSpeed to provide comprehensive insights into your site’s optimization. By conducting the speed test, you will receive detailed results highlighting areas that can be further optimized for enhanced performance. These insights will empower you to fine-tune your website and unlock its maximum potential and increase conversions.

    -

    Requirements

    -

    In order to work correctly, this plugin requires that your server meets the following criteria:

    -
      -
    • WordPress 4.7
    • -
    • PHP 7.0+
    • -
    -

    Our plugin uses a cookie in order to function properly. It does not store personal data and is used solely for the needs of our caching system.

    -

    Data Collection

    -

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    -

    Credits

    -

    Photo credits to Anna Shvets https://www.pexels.com/@shvetsa

    -', '7.7.2', 'SiteGround', '4.7', '7.0', '6.8.3', 'https://downloads.wordpress.org/plugin/sg-cachepress.7.7.2.zip', '2014-11-25 00:00:00+00', '2025-04-15 07:33:00+00', 'https://profiles.wordpress.org/siteground/', 84, 620, 8, 5, 1000000, 89679441, 'https://siteground.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/sg-cachepress/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Speed Optimizer – The All-In-One Performance-Boosting Plugin", "slug": "sg-cachepress", "tags": {"nginx": "nginx", "speed": "speed", "caching": "caching", "siteground": "SiteGround", "performance": "performance"}, "added": "2014-11-25", "icons": {"1x": "https://ps.w.org/sg-cachepress/assets/icon-128x128.gif?rev=2971889", "2x": "https://ps.w.org/sg-cachepress/assets/icon-256x256.gif?rev=2971889"}, "author": "SiteGround", "rating": 84, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/sg-cachepress/assets/banner-772x250.png?rev=2971889", "high": "https://ps.w.org/sg-cachepress/assets/banner-1544x500.png?rev=2971889"}, "ratings": {"1": 84, "2": 27, "3": 31, "4": 24, "5": 454}, "version": "7.7.2", "homepage": "https://siteground.com", "requires": "4.7", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No Faults, Works Well on My Site

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy WPWarrior on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have no complaints only gratitude for a plugin that does its job. I am thankful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Nice integration with Siteground hosting

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cabohe on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s a great plugin for basic and quick optimization. For advanced settings and fine-tuning, look for another plugin.

    \n\n\n\n

    I think a great improvement would be an \"Automatic Purge\" option or addon. Sometimes when updating a CPT, the plugin clears the cache, but if I have a custom query on another page of the site, the plugin doesn''t know, and that page is never uncached until I manually clear it.

    \n\n\n\n

    The update could be something like: If I update \"Books\" (CPT) or \"Posts,\" refresh all cache or refresh the cache for specific pages (with a page selector).

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    More Trouble than it is worth

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy profilebusiness947 on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin consistently delivers subpar results. Hours of tuning are usually required to get an acceptable LightHouse score.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast, Simple, Reliable

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ridwanhudhayfahkassis on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to set up and beginner-friendly

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Troublesome plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy patboran on August 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Be very careful of this plugin. Regular warnings from Siteground about the increasing size of my site can be traced back to this plugin storing more than 3GB of cache files, expanded from only a few K a week before, and I''''d done no''d done nothing but add a single WC product to my site with a single jpg! Siteground needs to sort out this problem: it''s not new. Clear cache every time you log in the back end seems to be the only way to stop this monster for screwing everything up

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Clicknathan (clicknathan) on July 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    With this plugin + SiteGround hosting, you can get all of the performance that expensive hosting like Pressable, WP Engine and Flywheel tout, but with better support and way, way cheaper.

    \n\n\n\n

    However, it has a major flaw that SiteGround refuses to admit.

    \n\n\n\n

    If you enable webp images, it will auto-generate those for you from your uploads. However, if you upload your own webp images, and then disable this feature, it deletes all of the webp images you uploaded.

    \n\n\n\n

    I tried to report this to SiteGround, but they insist it is not a bug. Deleting user data without their permission should never happen. Having a feature that, once turned on, can never be turned off without deleting your content, is a bug.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great for the basics

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Dan (dtrim) on June 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It has everything you need for all of the basic speed optimisations and a few more but I''d love to see them develop this further. For one, it''s missing support for embedded YouTube videos.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Elementor compatibility issues

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Kimba (kimba143) on June 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plug-in causes issues with images every time there is an update with elementor. I also find that it slows my site down.

    \n\n\n\n

    update on June 10, 2025

    \n\n\n\n

    I reached out to site ground and they fixed the Issue. I do like this plug-in over some of the other optimizer plug-ins. Usually works well with my site. I am updating from a one star to a four star.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Problem with menus and pop-ups

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Glenn (glennsvfr) on June 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After upgrading Elementor and Elementor Pro to 3.29.1, the speed optimizer caused problems:
    - My burger icon on mobile and tablet version was not clickable anymore.
    - Drop-down menus were not visible in desktop mode
    - It was no longer possible to trigger pop-ups

    \n\n\n\n

    UPDATE:

    \n\n\n\n

    I have been in contact with SiteGround Support. I was recommended to disable all CSS and JS features. That solved the issue.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Problems with menue burger icon from elementor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy goeschi on June 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The speed optimizer caused the problem, that my burger icon on mobile and tablet version was not clickable anymore.

    \n
    \n
    \n", "changelog": "

    Version 7.7.2

    \n

    Release Date: Dec 9th, 2024

    \n
      \n
    • Memcache improvements
    • \n
    • JavaScript Combination improvements
    • \n
    • Database Optimization improvements
    • \n
    • Woocommerce compatibility improvements
    • \n
    • File-caching improvements
    • \n
    \n

    Version 7.7.1

    \n

    Release Date: Nov 21st, 2024

    \n
      \n
    • Translation loading improvements
    • \n
    \n

    Version 7.7.0

    \n

    Release Date: Nov 7th, 2024

    \n
      \n
    • Disable Emojis optimization improvements
    • \n
    • File-Caching improvements
    • \n
    \n

    Version 7.6.8

    \n

    Release Date: Oct 23rd, 2024

    \n
      \n
    • CSS Combination improvements
    • \n
    • File-based caching improvements
    • \n
    • Database-Optimizer improvements
    • \n
    • Improved Memcache handling of excluded options
    • \n
    \n

    Version 7.6.7

    \n

    Release Date: Oct 7th, 2024

    \n
      \n
    • JS & CSS Combination improvements
    • \n
    • Front-end Optimizations improvements
    • \n
    • Image Optimization improvements
    • \n
    \n

    Version 7.6.6

    \n

    Release Date: Sept 18th, 2024

    \n
      \n
    • Templates improvements
    • \n
    • Settings improvements
    • \n
    • SSL improvements
    • \n
    \n

    Version 7.6.5

    \n

    Release Date: Sept 12th, 2024

    \n
      \n
    • Performance Reports improvements
    • \n
    • Message Service improvements
    • \n
    • Admin pages improvements
    • \n
    \n

    Version 7.6.4

    \n

    Release Date: Aug 14th, 2024

    \n
      \n
    • Improved memcache handling of autoload options
    • \n
    • Improved handling of heartbeat optimizations
    • \n
    \n

    Version 7.6.3

    \n

    Release Date: Aug 1st, 2024

    \n
      \n
    • Improved file-based cache purge
    • \n
    • Improved plugin config
    • \n
    • Fixed deprecated warnings in custom WP-CLI commands
    • \n
    \n

    Version 7.6.2

    \n

    Release Date: July 10th, 2024

    \n
      \n
    • Improved Disable Emojis optimization
    • \n
    • Improved JS combination
    • \n
    • Improved Comment cache purge handling
    • \n
    • Improved JS Minification script handling
    • \n
    \n

    Version 7.6.1

    \n

    Release Date: June 25th, 2024

    \n
      \n
    • Improved Multisite performance
    • \n
    • Improved JS combination
    • \n
    \n

    Version 7.6.0

    \n

    Release Date: May 22nd, 2024

    \n
      \n
    • Improved support for PHP 8.2 and 8.3.
    • \n
    • Improved plugin configuration.
    • \n
    \n

    Version 7.5.0

    \n

    Release Date: Mar 21st, 2024

    \n
      \n
    • Security improvements.
    • \n
    • Improved compatibility with WordPress 6.5.
    • \n
    • Plugin optimization.
    • \n
    \n

    Version 7.4.6

    \n

    Release Date: Jan 11th, 2024

    \n
      \n
    • Static assets are now part of the plugin package and load locally.
    • \n
    • New users will be prompted to give their consent for the collection of technical data upon their initial use of the plugin.
    • \n
    \n

    Version 7.4.5

    \n

    Release Date: Dec 12th, 2023

    \n
      \n
    • Improved functionality of Combine JS
    • \n
    • Improved compatibility with plugin “Admin Custom Login”
    • \n
    • Improved users access control
    • \n
    • Fix Image Compression Preview
    • \n
    \n

    Version 7.4.4

    \n

    Release Date: Nov 22nd, 2023

    \n
      \n
    • Dashboard visuals improvements
    • \n
    • Readme file improvements
    • \n
    \n

    Version 7.4.3

    \n

    Release Date: Oct 24th , 2023

    \n
      \n
    • Data collection opt out option
    • \n
    • Readme file formatting improvements
    • \n
    • Plugin name formatting improvements
    • \n
    • Exclude from Deferral compatibility issue with themes twentytwentytwo and twentytwentythree is fixed
    • \n
    \n

    Version 7.4.2

    \n

    Release Date: Sept 26th, 2023

    \n
      \n
    • Changing the name we use inside the plugin from SiteGround Optimizer to Speed Optimizer
    • \n
    • Updating data collection process and introducing a link in the plugin interface to the Plugin Privacy notice
    • \n
    \n

    Version 7.4.1

    \n

    Release Date: Sept 12th, 2023

    \n
      \n
    • Improved performance reports.
    • \n
    \n

    Version 7.4.0

    \n

    Release Date: August 22nd, 2023

    \n
      \n
    • Improved default enabled features.
    • \n
    • Campaign templates update.
    • \n
    • Performance reports for non SiteGround users.
    • \n
    \n

    Version 7.3.4

    \n

    Release Date: July 27th, 2023

    \n
      \n
    • Improved Dynamic Caching handling.
    • \n
    • Improved Speed Test results.
    • \n
    \n

    Version 7.3.3

    \n

    Release Date: June 8th, 2023

    \n
      \n
    • Downgraded wp-background-processing external lib due to incompatibility with third party themes and plugins.
    • \n
    \n

    Version 7.3.2

    \n

    Release Date: June 6th, 2023

    \n
      \n
    • Improved Optimized images filesize detection.
    • \n
    • Improved Defer Render-blocking JavaScript.
    • \n
    • Improved PHP 8.2 compatibility.
    • \n
    • Improved Flo forms and CSS Combination compatibility.
    • \n
    • Improved Avada theme compatibility.
    • \n
    \n

    Version 7.3.1

    \n

    Release Date: Feb 23rd, 2023

    \n
      \n
    • Improved compatibility with WooCommerce related plugins.
    • \n
    • Internal configuration improvements.
    • \n
    \n

    Version 7.3.0

    \n

    Release Date: Feb 1st, 2023

    \n
      \n
    • Improved Multisite File-Based cache support.
    • \n
    • Improved compatibility with woo-variation-swatches and facebook-for-woocommerce plugins.
    • \n
    • Improved compatibility with Foogra theme.
    • \n
    • Internal configuration changes.
    • \n
    \n

    Version 7.2.9

    \n

    Release Date: Dec 2nd, 2022

    \n
      \n
    • Fix for missing apache_response_headers function.
    • \n
    \n

    Version 7.2.8

    \n

    Release Date: Dec 1st, 2022

    \n
      \n
    • Improved namespace performance on other hosts.
    • \n
    • Improved WooCommerce Square plugin support.
    • \n
    \n

    Version 7.2.7

    \n

    Release Date: Nov 30rd, 2022

    \n
      \n
    • Improved Memcache Health status checks
    • \n
    • Improved FileBased Cache cleanup
    • \n
    • Improved FileBased Cache Headers checks
    • \n
    • Improved LazyLoad for sidebar images
    • \n
    • Improved Speed Test results
    • \n
    • Improved Test URL cache status
    • \n
    \n

    Version 7.2.6

    \n

    Release Date: Nov 21st, 2022

    \n
      \n
    • Discontinue of Cloudflare support
    • \n
    \n

    Version 7.2.5

    \n

    Release Date: October 18th, 2022

    \n
      \n
    • Improved Database Optimization interface
    • \n
    • Improved Multisite Memcached support
    • \n
    \n

    Version 7.2.4

    \n

    Release Date: October 11th, 2022

    \n
      \n
    • Memcached Service bug fix
    • \n
    \n

    Version 7.2.3

    \n

    Release Date: October 11th, 2022

    \n
      \n
    • Install Service fix
    • \n
    \n

    Version 7.2.2

    \n

    Release Date: October 10th, 2022

    \n
      \n
    • New filter – Exclude URL from cache
    • \n
    • New filter – Exclude inline scripts from combination
    • \n
    • Improved Database Optimization options
    • \n
    • Improved Memcached service
    • \n
    • Improved Toolset Types plugin support
    • \n
    • Improved admin menu ordering
    • \n
    • Legacy code removed
    • \n
    \n

    Version 7.2.1

    \n

    Release Date: August 10th, 2022

    \n
      \n
    • Improved Cloudflare detection
    • \n
    \n

    Version 7.2.0

    \n

    Release Date: July 14th, 2022

    \n
      \n
    • Brand New Design
    • \n
    • Improved Dynamic cache purge
    • \n
    • Improved data collection
    • \n
    \n

    Version 7.1.5

    \n

    Release Date: June 23rd, 2022

    \n
      \n
    • Improved Memcached service
    • \n
    \n

    Version 7.1.4

    \n

    Release Date: June 21st, 2022

    \n
      \n
    • Improved older PHP versions support
    • \n
    \n

    Version 7.1.3

    \n

    Release Date: June 20th, 2022

    \n
      \n
    • NEW Lazy Load exclude filters
    • \n
    • Improved Max Image Width
    • \n
    • Improved .htaccess modifications checks
    • \n
    • Improved File-Based cache Elementor support
    • \n
    • Improved Password Protected pages excluded from File-Based caching by default
    • \n
    • Improved Single Image compression functionality
    • \n
    • Improved Image Optimization for custom image sizes
    • \n
    • Improved Divi theme support
    • \n
    • Minor fixes
    • \n
    \n

    Version 7.1.2

    \n

    Release Date: June 16th, 2022

    \n
      \n
    • Adding Memcached UNIX socket support
    • \n
    • Improved data collection
    • \n
    \n

    Version 7.1.1

    \n

    Release Date: May 20th, 2022

    \n
      \n
    • Improved default settings
    • \n
    \n

    Version 7.1.0

    \n

    Release Date: May 10th, 2022

    \n
      \n
    • Improved HTTPS Enforce
    • \n
    • Improved Database Optimization
    • \n
    • Improved Auto Purge functionality for scheduled posts
    • \n
    • Improved File-Based cache exclude filtering
    • \n
    • Improved CSS Combination
    • \n
    • Improved JS Minification
    • \n
    • Improved Meks Flexible Shortcodes plugin support
    • \n
    • Improved All in One SEO plugin support
    • \n
    • Improved Authorize.Net Gateway support
    • \n
    \n

    Version 7.0.9

    \n

    Release Date: April 7th, 2022

    \n
      \n
    • Improved SG Security plugin support
    • \n
    \n

    Version 7.0.8

    \n

    Release Date: April 6th, 2022

    \n
      \n
    • Improved File-Based cache checks
    • \n
    • Improved Memcached service checks
    • \n
    • Improved activation checks
    • \n
    • Code Refactoring
    • \n
    \n

    Version 7.0.7

    \n

    Release Date: March 24th, 2022

    \n
      \n
    • Image deletion refactoring
    • \n
    \n

    Version 7.0.6

    \n

    Release Date: March 4th, 2022

    \n
      \n
    • Improved installation for users not hosted on SiteGround
    • \n
    \n

    Version 7.0.5

    \n

    Release Date: March 2nd, 2022

    \n
      \n
    • Improved Cache Preheat
    • \n
    • Improved Auto Purge functionality (File-Based cache, comments, custom post types)
    • \n
    • Improved new images WebP generation
    • \n
    • Improved Multisite support
    • \n
    \n

    Version 7.0.4

    \n

    Release Date: February 28th, 2022

    \n
      \n
    • Improved uninstall checks
    • \n
    \n

    Version 7.0.3

    \n

    Release Date: February 14th, 2022

    \n
      \n
    • Improved Divi support
    • \n
    • Improved WP-CLI support
    • \n
    \n

    Version 7.0.2

    \n

    Release Date: February 10th, 2022

    \n
      \n
    • Improved Cloudflare cache purge
    • \n
    • Improved Divi support
    • \n
    • Improved JS Combination
    • \n
    • Improved WP-CLI support
    • \n
    • Minor bug fixes
    • \n
    \n

    Version 7.0.1

    \n

    Release Date: February 4th, 2022

    \n
      \n
    • Improved Cache Preloading
    • \n
    • Improved Cloudflare detection
    • \n
    • Improved Divi support
    • \n
    • Minor bug fixes
    • \n
    \n

    Version 7.0.0

    \n

    Release Date: February 2nd, 2022

    \n
      \n
    • NEW – Plugin available for users not hosted on SiteGround
    • \n
    • NEW – File-Based Full Page Caching
    • \n
    • NEW – File-Based Full Page Caching for Logged-in Users
    • \n
    • NEW – Cache Preloading (requires FB Caching)
    • \n
    • NEW – Individual Image compression level settings
    • \n
    • Code Refactoring and General Improvements
    • \n
    • Improved HTML Minification
    • \n
    • Improved LazyLoad excludes
    • \n
    • Improved Automatic Purge for custom post types
    • \n
    • Improved Cache exclude for wp-json URLs
    • \n
    • Improved Test URL cache option
    • \n
    • Improved Cloudflare detection
    • \n
    • Improved Phlox theme support
    • \n
    • Improved WooCommerce email verification support
    • \n
    • Improved WP-CLI support
    • \n
    • Environment data collection consent added
    • \n
    \n

    Version 6.0.5

    \n

    Release Date: November 17th, 2021

    \n
      \n
    • Improved HTML minification
    • \n
    \n

    Version 6.0.4

    \n

    Release Date: November 16th, 2021

    \n
      \n
    • Improved HTML minification
    • \n
    • Improved HTTPS Enforce for multisites
    • \n
    • Improved Google PageSpeed Integration
    • \n
    • Improved multisite permissions for admins
    • \n
    • Improved autoflush
    • \n
    \n

    Version 6.0.3

    \n

    Release Date: November 8th, 2021

    \n
      \n
    • Improved translations
    • \n
    • Improved multisite support
    • \n
    • Improved Speed test result
    • \n
    • Improved assets cleanup
    • \n
    • Improved Cloudflare support
    • \n
    \n

    Version 6.0.2

    \n
      \n
    • Improved translations
    • \n
    • Improved image optimization
    • \n
    \n

    Version 6.0.1

    \n
      \n
    • Improved recommended optimizations labels
    • \n
    • Improved REST API error handling
    • \n
    • Improved CF authentication
    • \n
    • Improved multisite interface
    • \n
    • Improved database optimization
    • \n
    • Fixed Memcached healthcheck
    • \n
    \n

    Version 6.0.0

    \n
      \n
    • Brand New Design
    • \n
    • Code Refactoring
    • \n
    • NEW – Recommended Optimizations
    • \n
    • NEW – Plugin Dashboard Page
    • \n
    • NEW – Maximum Image Width
    • \n
    • NEW – Backup Original Images when Optimizing
    • \n
    • NEW – WordPress API Cache Control
    • \n
    • Improved WordPress Heartbeat Optimization
    • \n
    • Improved Image Compression Control
    • \n
    \n

    Version 5.9.7

    \n
      \n
    • Improved cache busting for themes utilizing custom post types
    • \n
    \n

    Version 5.9.6

    \n
      \n
    • Improved WP Json purging mechanisms
    • \n
    • Added protection against cronjob loops caused by 3rd party plugins
    • \n
    • Improved Spam comments handling
    • \n
    \n

    Version 5.9.5

    \n
      \n
    • Improved Page Builders Support (Elementor, Oxygen, Divi and others)
    • \n
    \n

    Version 5.9.4

    \n
      \n
    • Improved smart cache
    • \n
    \n

    Version 5.9.3

    \n
      \n
    • Fixed WebP regeneration issue
    • \n
    \n

    Version 5.9.2

    \n
      \n
    • Improved cache flush queue
    • \n
    \n

    Version 5.9.1

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    Version 5.9.0

    \n
      \n
    • Plugin refactoring
    • \n
    \n

    Version 5.8.5

    \n
      \n
    • Improved CF detection
    • \n
    • Minor bug fixes
    • \n
    \n

    Version 5.8.4

    \n
      \n
    • Improved cache purging mechanism
    • \n
    \n

    Version 5.8.3

    \n
      \n
    • Improved cache purge
    • \n
    \n

    Version 5.8.2

    \n
      \n
    • Improved speed tests
    • \n
    • Improved Google Fonts combination
    • \n
    • Improved HTTPS enforce
    • \n
    \n

    Version 5.8.1

    \n
      \n
    • Improved cache purge
    • \n
    \n

    Version 5.8.0

    \n
      \n
    • Added preloading for combined css scripts
    • \n
    • New and improved performance test
    • \n
    • Design improvements
    • \n
    • Custom error handler removed
    • \n
    • Increased WebP PNG optimization limit
    • \n
    • Changed tutorials urls
    • \n
    • Improved readme file
    • \n
    • Minor bug fixes
    • \n
    \n

    Version 5.7.20

    \n
      \n
    • Perform smart purge on the blog page when editing a post
    • \n
    • Remove jQuery Dependency from Lazy-load
    • \n
    \n

    Version 5.7.19

    \n
      \n
    • Change loseless quality
    • \n
    \n

    Version 5.7.18

    \n
      \n
    • Improved REST API cache invalidation
    • \n
    \n

    Version 5.7.17

    \n
      \n
    • Improved WordPress 5.7 support
    • \n
    \n

    Version 5.7.16

    \n
      \n
    • Improved Contact Form 7 support
    • \n
    • Improved Amelia booking support
    • \n
    • Improved support for sites with custom wp-content dir
    • \n
    \n

    Version 5.7.15

    \n
      \n
    • Improved Contact Form 7 support
    • \n
    \n

    Version 5.7.14

    \n
      \n
    • Improved Vary:User-Agent handling
    • \n
    \n

    Version 5.7.13

    \n
      \n
    • Add settings import/export cli command
    • \n
    • Exclude XML sitemaps from optimizations
    • \n
    • Fix DNS Resolver fatal error for non existing hosts
    • \n
    • Fix Cloudflare optimization for sites with custom wp-content dir
    • \n
    • Improved Speed Test description for Webfonts optimization
    • \n
    \n

    Version 5.7.12

    \n
      \n
    • Improved Feed Cache Flush
    • \n
    \n

    Version 5.7.11

    \n
      \n
    • Improved CloudFlare Optimization
    • \n
    • Add CloudFlare multisite support
    • \n
    • Improved RevSlider support
    • \n
    • Add uploads permissions check
    • \n
    \n

    Version 5.7.10

    \n
      \n
    • Revert to old HTML Minification
    • \n
    \n

    Version 5.7.9

    \n
      \n
    • Fixed bug with WooCommerce ajax
    • \n
    \n

    Version 5.7.8

    \n
      \n
    • Fix HTML Minification Refactoring
    • \n
    \n

    Version 5.7.7

    \n
      \n
    • HTML Minification Refactoring
    • \n
    \n

    Version 5.7.6

    \n
      \n
    • Improved cache flush, on automatic assets deletion
    • \n
    \n

    Version 5.7.5

    \n
      \n
    • Improved Flatsome UX Builder support
    • \n
    • Improved Essential Addons for Elementor support
    • \n
    • Updated readme
    • \n
    \n

    Version 5.7.4

    \n
      \n
    • Improved Leverage Browser Caching rules
    • \n
    • Add exclude by post type
    • \n
    • Improved Cloudflare cache purge
    • \n
    \n

    Version 5.7.3

    \n
      \n
    • Improved cache purge on Cludflare activation
    • \n
    • Improved deauthentication of Cloudflare
    • \n
    • Text improvements
    • \n
    \n

    Version 5.7.2

    \n
      \n
    • Fixed bug when external assets are not cleared properly
    • \n
    • Improved detection of active Cloudflare
    • \n
    • Text improvements
    • \n
    \n

    Version 5.7.1

    \n
      \n
    • Fixed bug with clearing cache from helper function
    • \n
    \n

    Version 5.7.0

    \n
      \n
    • Full-page Caching on CloudFlare
    • \n
    • Web Fonts Optimization
    • \n
    \n

    Version 5.6.8

    \n
      \n
    • Improved SSL Replace patterns
    • \n
    \n

    Version 5.6.7

    \n
      \n
    • Improved JS & CSS Combination exclude list
    • \n
    • Bumped JS Combination stop limit
    • \n
    • Improved functionality to stop JS Combination if randomized names create endless combination files
    • \n
    \n

    Version 5.6.6

    \n
      \n
    • Improved JS Combination exclude list
    • \n
    • Bumped JS Combination stop limit
    • \n
    • Fixed typos
    • \n
    \n

    Version 5.6.5

    \n
      \n
    • Improved Elementor Pro 3.0 support
    • \n
    \n

    Version 5.6.4

    \n
      \n
    • Fix error in CSS Combinator
    • \n
    \n

    Version 5.6.3

    \n
      \n
    • Better WP 5.5 support
    • \n
    • Improved log handling
    • \n
    \n

    Version 5.6.2

    \n
      \n
    • Improved JS Combination exclude list
    • \n
    • Disable native WordPress lazyloading
    • \n
    \n

    Version 5.6.1

    \n
      \n
    • Second stage of Memcached improvements applied
    • \n
    • Added WP-CLI control for heartbeat, dns-prefetching and db optimizations
    • \n
    • Fixed non-critical notices while using PHP 7.3
    • \n
    \n

    Version 5.6.0

    \n
      \n
    • Added Heartbeat Control
    • \n
    • Added Database Optimization
    • \n
    • Added DNS Prefetching
    • \n
    • Improved Browser Caching XML rules
    • \n
    • Refactored Lazy Load
    • \n
    • Deprecated Compatibility Checker & PHP Switcher
    • \n
    • Improved Lazyload Videos for Classic Editor
    • \n
    • Added functionality to stop JS Combination if randomized names create endless combination files
    • \n
    \n

    Version 5.5.8

    \n
      \n
    • Added proper AMP support
    • \n
    • Added samesite parameter to the bypass cookie
    • \n
    • Added support for Shortcodes Ultimate
    • \n
    • Extended the sg purge wp-cli command to delete assets too
    • \n
    • Improved support for Uncode Themes
    • \n
    \n

    Version 5.5.7

    \n
      \n
    • Improved Memcached Integration
    • \n
    • Added protection for objects too big to be stored in Memcached
    • \n
    • Improved JS and CSS Combination Exclude List
    • \n
    • Improved Lazy Load functionality
    • \n
    • Improved Image Optimization for sites using CDN
    • \n
    \n

    Version 5.5.6

    \n
      \n
    • Improved WP CLI commands
    • \n
    • Extended Combine JavaScript Exclude list
    • \n
    • Improved Beaver Builder Support
    • \n
    • Revamped bypass cookie functionality
    • \n
    • Improved Multisite Controls
    • \n
    \n

    Version 5.5.5

    \n
      \n
    • Improved Script Combinations Excluding Functionality
    • \n
    • Improved Internationalisation
    • \n
    • Improved Lazy Loading
    • \n
    • Improved WooCommerce Support for 3rd Party Payment Gateways
    • \n
    • Added Global JS exclude for Plugins with Known Issues
    • \n
    • Added WP-Authorized-Net support
    • \n
    • Added Facebook for WooCommerce support
    • \n
    \n

    Version 5.5.4

    \n
      \n
    • Fixed issue with CSS Combination causing problems with media specific stylesheets
    • \n
    • Added defer attribute for the Combined JS files when JS Defer is enabled
    • \n
    • Better support with sites using long domains (.blog, .marketing, etc.)
    • \n
    • Fixed Memcached XSS security issues
    • \n
    • Fixed CSS & JS Combination for sites with custom upload folders
    • \n
    \n

    Version 5.5.3

    \n
      \n
    • Fix ISE for Flatsome theme
    • \n
    \n

    Version 5.5.2

    \n
      \n
    • Better CSS Combination
    • \n
    • Better Fonts Combination
    • \n
    • Better concatenation of inline scripts
    • \n
    • Improved WebP Quaity Slider
    • \n
    • Updated readme.txt file
    • \n
    • Added WP-CLI Commands: combine-js and webp
    • \n
    • Better Polylang support
    • \n
    \n

    Version 5.5.1

    \n
      \n
    • Better Elementor support
    • \n
    • Better Divi support
    • \n
    • Better AMP support
    • \n
    • Better sourcemapping removal
    • \n
    \n

    Version 5.5.0

    \n
      \n
    • New – Combine JavaScript Files
    • \n
    • New – WebP quality control plus lossless option
    • \n
    • New – What’s new and opportunities slider
    • \n
    • Improved – better WPML support (mostly memcached)
    • \n
    • Improved – better Elementor support
    • \n
    • Improved – better Browser Caching rules for cPanel users
    • \n
    \n

    Version 5.4.6

    \n
      \n
    • Interface revamp for better accessability
    • \n
    • Improved compatibility with page builders
    • \n
    • Improved compatibility with latest Elementor
    • \n
    • Added support for popular AMP plugins
    • \n
    • Better WebP optiomization status reporting
    • \n
    \n

    Version 5.4.5

    \n
      \n
    • Improved elementor support
    • \n
    • Improved flothemes support
    • \n
    • Improved handling of @imports in combine css
    • \n
    \n

    Version 5.4.4

    \n
      \n
    • Improved transients handling
    • \n
    • Added Jet Popup support
    • \n
    \n

    Version 5.4.3

    \n
      \n
    • Added Lazy loading functionality for iframes
    • \n
    • Added Lazy loading functionality for videos
    • \n
    \n

    Version 5.4.2

    \n
      \n
    • Fixed bug with WebP image regeneration on image delete
    • \n
    \n

    Version 5.4.1

    \n
      \n
    • Added PHP 7.4 support for PHP Compatibility Checker
    • \n
    • Improved WebP Conversion
    • \n
    • Fixed bug with WebP image regeneration on image edit
    • \n
    • Improved plugin localization
    • \n
    \n

    Version 5.4.0

    \n
      \n
    • Added WebP Support on All Accounts on Site Tools
    • \n
    • Added Google PageSpeed Test
    • \n
    • Improved Image Optimization Process
    • \n
    • Improved SSL Certificate check
    • \n
    \n

    Version 5.3.10

    \n
      \n
    • Better PHP Version Management for Site Tools
    • \n
    • NGINX Direct Delivery for Site Tools
    • \n
    \n

    Version 5.3.9

    \n
      \n
    • Improved check for SiteGround Servers
    • \n
    \n

    Version 5.3.8

    \n
      \n
    • Fixed a bug when Memcached fails to purge when new WordPress version requiring a database update is released
    • \n
    • Added alert and check if you’re running SiteGround Optimizer on a host different than SiteGround
    • \n
    • Improved compatibility with WooCommerce
    • \n
    • Improved conditional styles combination
    • \n
    • Improved image optimization process
    • \n
    \n

    Version 5.3.7

    \n
      \n
    • Added WooCommerce Square Payment & Braintree For WooCommerce Exclude by Default
    • \n
    • Improved Google Fonts Optimization
    • \n
    • Added Notice for Defer Render-Blocking Scripts Optimization
    • \n
    • Added wp-cli commands for Google Fonts Optimization
    • \n
    • Changed New Images Optimizer hook to wp_generate_attachment_metadata
    • \n
    \n

    Version 5.3.6

    \n
      \n
    • Improved Google Fonts loading with better caching
    • \n
    • Improved Defer of render-blocking JS
    • \n
    \n

    Version 5.3.5

    \n
      \n
    • WordPress 5.3 Support Declared
    • \n
    • Better Elementor Compatibility
    • \n
    • Better Image Optimization Messaging
    • \n
    • Better Google Fonts combination
    • \n
    • Added PHP 7.4 support
    • \n
    \n

    Version 5.3.4

    \n
      \n
    • Improved Async load of JS files
    • \n
    • Added Google Fonts Combination optimization
    • \n
    • Moved lazyload script in footer
    • \n
    • Improved CSS combination
    • \n
    \n

    Version 5.3.3

    \n
      \n
    • Improved browser cache handling upon plugin update
    • \n
    • Added wp-cli commands for Dynamic Cache, Autoflush and Browser-Speciffic cache handling
    • \n
    \n

    Version 5.3.2

    \n
      \n
    • Fixed bug with https enforce for www websites
    • \n
    • Improved JILT support
    • \n
    \n

    Version 5.3.1

    \n
      \n
    • Better SSL force to accommodate websites with WWW in the URL
    • \n
    • Global exclusion of siteorigin-widget-icon-font-fontawesome from Combine CSS
    • \n
    \n

    Version 5.3.0

    \n
      \n
    • Refactoring of the Lazy Load functionality
    • \n
    • Redesign of the Lazy Load screen
    • \n
    • Improved WooCommerce product image Lazy Load
    • \n
    • Gzip functionality update for Site Tools accounts
    • \n
    • Browser caching functionality update for Site Tools accounts
    • \n
    • Improved Browser caching functionality for cPanel accounts
    • \n
    \n

    Version 5.2.5

    \n
      \n
    • New Feature: Option to split caches per User Agent
    • \n
    • New Feature: Option to disable lazy loading for mobile devices
    • \n
    • Improved Memcached check
    • \n
    \n

    Version 5.2.4

    \n
      \n
    • Improved XML RCP checks compatibility
    • \n
    \n

    Version 5.2.3

    \n
      \n
    • Improved LazyLoad
    • \n
    \n

    Version 5.2.2

    \n
      \n
    • Improved Events Calendar Compatibility
    • \n
    • Suppressed notices in the REST API in certain cases
    • \n
    • Improved nonscript tag in LazyLoad
    • \n
    \n

    Version 5.2.1

    \n
      \n
    • Improved Cloudflare compatibility
    • \n
    \n

    Version 5.2.0

    \n
      \n
    • Exclude list Interface for JavaScript handlers
    • \n
    • Exclude list Interface for CSS handlers
    • \n
    • Exclude list Interface for HTML minification (URL like dynamic)
    • \n
    • Exclude list interface for LazyLoading (Class)
    • \n
    • Improved Thrive Architect support
    • \n
    • Fixed notice when purging comment cache
    • \n
    \n

    Version 5.1.3

    \n
      \n
    • Improved Elementor support
    • \n
    • Improved CSS optimization for inclusions without protocol
    • \n
    • Excluded large PNGs from optimizations
    • \n
    • Added better WP-CLI command documentation
    • \n
    \n

    Version 5.1.2

    \n
      \n
    • Added support for Recommended by SiteGround PHP Version
    • \n
    • Improved LazyLoad Support for WooCommerce sites
    • \n
    • Improved Image Optimization checks
    • \n
    • Improved PHP Version switching checks
    • \n
    • Added wp cli status command for checking optimization status
    • \n
    • Fixed bug with Combine CSS
    • \n
    \n

    Version 5.1.1

    \n
      \n
    • Improved cache invalidation for combined styles
    • \n
    • Cache purge from the admin bar now handles combined files too
    • \n
    • Added filter to exclude images from Lazy Loading
    • \n
    • Added filter to exclude pages from HTML Minification
    • \n
    • Added Filter to query params from HTML Minification
    • \n
    • Added PHP 7.3 support
    • \n
    \n

    Version 5.1.0

    \n
      \n
    • Added CSS Combination Functionality
    • \n
    • Added Async Load of Render-Blocking JS
    • \n
    • Added WooCommerce Support for LazyLoad
    • \n
    • Added Filter to Exclude Styles from CSS Combination
    • \n
    • Improved Lazy Load Functionality on Mobile Devices
    • \n
    • Fixed Issue with WP Rocket’s .htaccess rules and GZIP
    • \n
    • Fixed Issue with Query String Removal Script in the Admin Section
    • \n
    • Fixed Compatibility Issues with 3rd Party Plugins and Lazy Load
    • \n
    • Fixed Compatibility Issues with Woo PDF Catalog Plugin and HTML Minification
    • \n
    • Improved Memcached Reliability
    • \n
    • Improved Lazy Load for Responsive Images
    • \n
    \n

    Version 5.0.13

    \n
      \n
    • Modified HTML minification to keep comments
    • \n
    • Interface Improvements
    • \n
    • Better input validation and sanitation for PHP Version check
    • \n
    • Improved security
    • \n
    \n

    Version 5.0.12

    \n
      \n
    • Better cache purge for multisite
    • \n
    • Surpress dynamic cache notices for localhost sites
    • \n
    \n

    Version 5.0.11

    \n
      \n
    • Improved handling of third party plugins causing issues with the compatibility checker functionality
    • \n
    • Optimized WP-CLI commands for better performance
    • \n
    • Better notice handling for Multisite and conflicting plugins
    • \n
    \n

    Version 5.0.10

    \n
      \n
    • Fixed issue with Mythemeshop themes
    • \n
    • Fixed issues with exclude URL on update
    • \n
    • Fixed issues with exclude URL on update
    • \n
    • Exclude Lazy Load from AMP pages
    • \n
    • Exclude Lazy Load from Backend pages
    • \n
    • Fixed WPML problems
    • \n
    • Fixed Beaver Builder issues
    • \n
    • Fixed Spanish translations
    • \n
    • Fixed incompatibility with JCH Optimize
    • \n
    \n

    Version 5.0.9

    \n
      \n
    • Fixed woocommerce bugs
    • \n
    • Improved memcached flush
    • \n
    • Improved https force
    • \n
    \n

    Version 5.0.8

    \n
      \n
    • Better .htaccess handling when disabling and enabling Browser Cache and Gzip
    • \n
    • Improved image optimization handling
    • \n
    • Added option to stop the image optimization and resume it later
    • \n
    • Fixed bug with memcached notifications
    • \n
    • Fixed bug with conflicting plugin notices for non-admins
    • \n
    • Fixed bug when user accesses their site through IP/~cPaneluser
    • \n
    • Fixed bug with labels for HTML, CSS & JS Minification
    • \n
    • SEO Improvements in the Lazy Load functionality
    • \n
    \n

    Version 5.0.7

    \n
      \n
    • Fixed bug with notifications removal
    • \n
    • Fixed bug with modifying wrong .htaccess file for installations in subdirectory
    • \n
    • Flush redux cache when updating to new version
    • \n
    • Improved check for existing SSL rules in your .htaccess file
    • \n
    • Added check and removal of duplicate Gzip rules in your .htaccess file
    • \n
    • Added check and removal of duplicate Browser caching rules in your .htaccess file
    • \n
    \n

    Version 5.0.6

    \n
      \n
    • Memcache issues fixed. Unique WP_CACHE_KEY_SALT is generated each time you enable it on your site.
    • \n
    • Better status update handling
    • \n
    • Added option to start checks even if the default WP Cron is disabled (in case you use real cronjob)
    • \n
    \n

    Version 5.0.5

    \n
      \n
    • Fixed Compatibility Checker progress issues.
    • \n
    • Fixed images optimization endless loops.
    • \n
    • Changed php version regex to handle rules from other plugins.
    • \n
    \n

    Version 5.0.4

    \n
      \n
    • Fixed CSS minification issues.
    • \n
    • Add option to re-optimize images.
    • \n
    • Allow users to hide notices.
    • \n
    \n

    Version 5.0.0

    \n
      \n
    • Complete plugin refactoring
    • \n
    • Frontend optimiztions added
    • \n
    • Environment optimizations added
    • \n
    • Images Optimizatoins adder
    • \n
    • Full WP-CLI Support
    • \n
    • Better Multisite Support
    • \n
    • Better Interface
    • \n
    \n

    Version 4.0.7

    \n
      \n
    • Fixed bug in the force SSL functionality in certain cases for MS
    • \n
    • Added information about the cookie our plugin uses in the readme file
    • \n
    \n

    Version 4.0.6

    \n
      \n
    • Bug fixes
    • \n
    • Better https enforcement in MS environment
    • \n
    \n

    Version 4.0.5

    \n
      \n
    • Removed stopping of WP Rocket cache
    • \n
    \n

    Version 4.0.4

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    Version 4.0.3

    \n
      \n
    • Switching recommended PHP Version to 7.1
    • \n
    \n

    Version 4.0.2

    \n
      \n
    • WPML and Memcache / Memcached bug fix
    • \n
    \n

    Version 4.0.1

    \n
      \n
    • Minor bug fixes
    • \n
    • UK locale issue fixed
    • \n
    \n

    Version 4.0.0

    \n
      \n
    • Added proper Multisite support
    • \n
    • Quick optimizations – Gzip and Browser cache config settings for the Network Admin
    • \n
    • Network admin can purge the cache per site
    • \n
    • Network admin can disallow Cache and HTTPS configuration pages per site
    • \n
    • WPML support when Memcached is enabled
    • \n
    • Cache is being purged per site and not for the entire network
    • \n
    • Multiple performance & interface improvements
    • \n
    • Security fixes against, additional access checks introduced
    • \n
    • Fixed minor cosmetic errors in the interface
    • \n
    \n

    Version 3.3.3

    \n
      \n
    • Fixed minor interface issues
    • \n
    \n

    Version 3.3.2

    \n
      \n
    • Fixed bug with disabling the Force HTTPS option
    • \n
    \n

    Version 3.3.1

    \n
      \n
    • Fixed cache purge issue when CloudFlare is enabled
    • \n
    • Added logging of failed attempts in XMLRPC API.
    • \n
    \n

    Version 3.3.0

    \n
      \n
    • Improved public purge function for theme and plugin developers
    • \n
    • Added WP-CLI command for cache purge – wp sg purge
    • \n
    \n

    Version 3.2.4

    \n
      \n
    • Updated Memcache.tpl
    • \n
    • Fixed a link in the PHP Check interface
    • \n
    \n

    Version 3.2.3

    \n
      \n
    • Improved WP-CLI compatibility
    • \n
    \n

    Version 3.2.1

    \n
      \n
    • Improved cron fallback, added error message if the WP CRON is disabled
    • \n
    \n

    Version 3.2.0

    \n
      \n
    • Adding PHP 7.0 Compatibility check & PHP Version switch
    • \n
    \n

    Version 3.0.5

    \n
      \n
    • Improved Certficiate check
    • \n
    \n

    Version 3.0.4

    \n
      \n
    • Fixed bug with unwrittable .htaccess
    • \n
    \n

    Version 3.0.3

    \n
      \n
    • Fixed bug in adding CSS files
    • \n
    \n

    Version 3.0.2

    \n
      \n
    • User-agent added to the SSL availability check
    • \n
    \n

    Version 3.0.1

    \n
      \n
    • PHP Compatibility fixes
    • \n
    \n

    Version 3.0.0

    \n
      \n
    • Plugin renamed to SG Optimizer
    • \n
    • Interface split into multiple screens
    • \n
    • HTTPS Force functionality added which will reconfigure WordPress, make an .htaccess redirect to force all the traffic through HTTPS and fixes any potential insecure content issues
    • \n
    • Plugin prepared for PHP version compatibility checker and changer tool
    • \n
    \n

    Version 2.3.11

    \n
      \n
    • Added public purge function
    • \n
    • Memcached bug fixes
    • \n
    \n

    Version 2.3.10

    \n
      \n
    • Improved Memcached performance
    • \n
    • Memcached bug fixes
    • \n
    \n

    Version 2.3.9

    \n
      \n
    • Improved WordPress 4.6 compatibilitty
    • \n
    \n

    Version 2.3.8

    \n
      \n
    • Improved compatibility with SiteGround Staging System
    • \n
    \n

    Version 2.3.7

    \n
      \n
    • Fixed PHP warnings in Object Cache classes
    • \n
    \n

    Version 2.3.6

    \n
      \n
    • Minor URL handling bug fixes
    • \n
    \n

    Version 2.3.5

    \n
      \n
    • Improved cache testing URL detection
    • \n
    \n

    Version 2.3.4

    \n
      \n
    • CSS Bug fixes
    • \n
    \n

    Version 2.3.3

    \n
      \n
    • Improved Memcache work
    • \n
    • Interface improvements
    • \n
    • Bug fixes
    • \n
    \n

    Version 2.3.2

    \n
      \n
    • Fixed bug with Memcached cache purge
    • \n
    \n

    Version 2.3.1

    \n
      \n
    • Interface improventes
    • \n
    • Internationalization support added
    • \n
    • Spanish translation added by SiteGround.es
    • \n
    • Bulgarian translation added
    • \n
    \n

    Version 2.3.0

    \n
      \n
    • Memcached support added
    • \n
    • Better PHP7 compatibility
    • \n
    \n

    Version 2.2.11

    \n
      \n
    • Improved compatibility with WP Rocket
    • \n
    • Bug fixes
    • \n
    \n

    Version 2.2.10

    \n
      \n
    • Revamped notices work
    • \n
    • Bug fixes
    • \n
    \n

    Version 2.2.9

    \n
      \n
    • Bug fixes
    • \n
    \n

    Version 2.2.8

    \n
      \n
    • Bug fixing and improved notification behaviour
    • \n
    • Fixed issues with MS installations
    • \n
    \n

    Version 2.2.7

    \n
      \n
    • Added testing box and notification if Dynamic Cache is not enabled in cPanel
    • \n
    \n

    Version 2.2.6

    \n
      \n
    • Fixed bug with Memcached causing issues after WP Database update
    • \n
    \n

    Version 2.2.5

    \n
      \n
    • Minor system improvements
    • \n
    \n

    Version 2.2.4

    \n
      \n
    • Minor system improvements
    • \n
    \n

    Version 2.2.3

    \n
      \n
    • Admin bar link visible only for admin users
    • \n
    \n

    Version 2.2.2

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    Version 2.2.1

    \n
      \n
    • Added Purge SG Cache button
    • \n
    • Redesigned mobile-friendly interface
    • \n
    \n

    Version 2.2.0

    \n
      \n
    • Added NGINX support
    • \n
    \n

    Version 2.1.7

    \n
      \n
    • Fixed plugin activation bug
    • \n
    \n

    Version 2.1.6

    \n
      \n
    • The purge button will now clear the Static cache even if Dynamic cache is not enabled
    • \n
    • Better and more clear button labeling
    • \n
    \n

    Version 2.1.5

    \n
      \n
    • Better plugin activation and added to the wordpress.org repo
    • \n
    \n

    Version 2.1.2

    \n
      \n
    • Fixed bug that prevents you from enabling Memcached if using a wildcard SSL Certificate
    • \n
    \n

    Version 2.1.1

    \n
      \n
    • Cache will flush when scheduled posts become live
    • \n
    \n

    Version 2.1.0

    \n
      \n
    • Cache will be purged if WordPress autoupdates
    • \n
    \n

    Version 2.0.3

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    Version 2.0.2

    \n
      \n
    • 3.8 support added
    • \n
    \n

    Version 2.0.1

    \n
      \n
    • Interface improvements
    • \n
    • Minor bug fixes
    • \n
    \n

    Version 2.0

    \n
      \n
    • New interface
    • \n
    • Minor bug fixes
    • \n
    • Settings and Purge pages combined into one
    • \n
    \n

    Version 1.2.3

    \n
      \n
    • Minor bug fixes
    • \n
    • SiteGround Memcached support added
    • \n
    • URL Exclude from caching list added
    • \n
    \n

    1.0

    \n
      \n
    • Plugin created.
    • \n
    \n", "description": "

    The award-winning Speed Optimizer plugin is a free WordPress performance-boosting solution to improve user experience, increase conversion rates and drive more traffic. Achieve better SEO rankings, improve Core Web Vitals and enhance your Google Page Speed Score.

    \n

    Developed by the WordPress speed experts at SiteGround, our free plugin is actively used and trusted by more than 2 million website owners. It’s specially designed to be easy to use, allowing users of all skill levels to make complex speed optimizations, such as minifying HTML, CSS and JavaScript, image compression and lazy loading, in a few clicks.

    \n

    Install our caching plugin now to dramatically improve your WordPress website performance on any hosting platform.

    \n

    Essential Speed-boosting Features:

    \n
      \n
    • Powerful Caching for up to 20% faster website.
    • \n
    • Frontend Optimizations to minify JS, HTML and CSS, reducing wait time due to the number of scripts and characters in your code
    • \n
    • Media Optimizations by up to 85% image size compression without sacrificing quality
    • \n
    • WordPress Environment Optimizations to optimize usage and efficiency of your WordPress site resources
    • \n
    • Speed Test & tips to get on-demand optimization tips to help your site get even faster
    • \n
    \n

    Don’t let a slow website compromise your online success. Join the millions of satisfied website owners and see the difference with the free Speed Optimizer plugin.

    \n

    AWARDS:

    \n

    Monster Awards 2022: Best WordPress Optimization Plugin 🥈

    \n

    Plugin Video

    \n\n

    Plugin Tutorial

    \n

    To gain in-depth knowledge about our plugin and its functionalities, check our Speed Optimizer Tutorial. It provides detailed information on how to optimize each aspect of your site and maximizes your website performance and cache.

    \n

    CACHING

    \n

    The Caching page gives you full control of your website’s cache, allowing you to enhance its performance significantly. Take advantage of the powerful caching options available to boost your page speed:

    \n

    DYNAMIC CACHING:

    \n

    By enabling Dynamic Caching, all non-static resources of your website are intelligently cached, eliminating the need for repetitive database queries and enhancing page loading speed and TTFB (time to first byte). This default feature is available exclusively for SiteGround servers, ensuring optimal performance.

    \n

    FILE-BASED CACHING:

    \n

    By activating file-based caching, your website generates and stores static HTML versions, ensuring faster loading times and an improved user experience. This efficient caching method stores the cached files conveniently in the browser’s memory, allowing future visitors to access your site swiftly and seamlessly.

    \n

    MEMCACHED:

    \n

    Unleash the power of object caching for your WordPress website. Memcached revolutionizes website performance by storing frequently executed queries to your databases and reusing them for lightning-fast website results. This powerful feature is exclusively available in the SiteGround environment.

    \n

    CACHING SETTINGS:

    \n
      \n
    • Automatic Cache Purge: ensure the cache is cleared whenever necessary
    • \n
    • Manual Cache Purge: purge cache manually if you are editing new material and do not have automatic purge activated.
    • \n
    • Browser-specific Caching: generate caching separately for different browsers
    • \n
    • Exclude Post Types from Caching: exclude specific post types from being cached
    • \n
    • Exclude URLs from Caching: exclude specific URLs or utilize wildcards to exclude any sub-pages of a designated “parent-page.”
    • \n
    • Test URL Caching Status: verify if dynamic caching is actively running on specific URLs
    • \n
    \n

    ENVIRONMENT OPTIMIZATIONS

    \n

    Optimize and fine-tune your site’s environment for optimal website performance:

    \n

    HTTPS Enforce:

    \n

    Ensure a secure browsing experience for your visitors by effortlessly enabling HTTPS for your site. Say goodbye to insecure content errors and build trust with your audience.

    \n

    Scheduled Database Maintenance:

    \n

    Take control of your database by activating the Database Optimization feature. This functionality removes unnecessary items and optimizes your database tables, leading to improved efficiency and website performance. If you’re using the InnoDB storage engine, table optimisation is automatically handled by the engine itself.

    \n

    Heartbeat Control:

    \n

    Manage the frequency of the WP Heartbeat for different areas of your website. By default, the WordPress Heartbeat API checks for scheduled tasks every 15 seconds on post edit pages and every 60 seconds on the dashboard and front end. With Heartbeat Control, you can adjust the frequency of these checks or even disable them entirely, providing you with greater control over resource allocation.

    \n

    FRONTEND OPTIMIZATIONS

    \n

    Enhance and fine-tune the performance of your website’s front end by minifying JS, HTML and CSS:

    \n

    CSS Tab:

    \n

    Minify CSS files, activate or deactivate CSS combinations to reduce server requests, and even preload combined CSS for optimized performance. Additionally, you can exclude specific styles from being combined or minified, giving you complete control over your CSS optimization.

    \n

    JavaScript Tab:

    \n

    Activate or deactivate Minify JavaScript Files to reduce script sizes and lower the number of server requests. You can also defer render-blocking JavaScript to expedite the initial page speed. Furthermore, you have the ability to exclude specific scripts from various optimisation processes, providing flexibility in optimizing your JavaScript resources.

    \n

    General Tab:

    \n

    Further optimization options include:

    \n
      \n
    • Web Fonts Optimization: Enhance the loading of Google fonts by adding a preconnect link in your head tag. This informs the browser to establish a connection to Google’s font repository as quickly as possible. Additionally, all other local fonts will be preloaded, resulting in faster caching and rendering. When combined with CSS Combination, we also modify the font-display property to improve rendering speed.
    • \n
    • Fonts Preloading: With locally hosted fonts being preloaded, you’re allowing browsers to cache and render them at an accelerated pace.
    • \n
    • Remove Query Strings from Static Resources: Improve caching efficiency by removing query strings from static resources, optimizing their caching capabilities.
    • \n
    • Disable Emojis: Prevent WordPress from detecting and generating emojis on your pages by disabling emojis support. This helps boost your page speed and improve your website performance.
    • \n
    • DNS Pre-fetch for External Domains: Enabling the DNS Pre-fetch for a domain will resolve it before resources from it get requested making those resources load faster.
    • \n
    \n

    MEDIA OPTIMIZATIONS

    \n

    Optimize your website media by reducing image size by up to 85% times while maintaining top-notch quality.

    \n

    Image Compression:

    \n

    Effortlessly compress images to resize your existing images and reduce the space they occupy on your server. The dimensions of the images will remain unchanged, allowing for optimized storage. Fine-tune the compression level and choose whether to create backups of the original images. Please note that image compression feature is exclusive to the SiteGround Environment.

    \n

    WebP Images:

    \n

    Leverage the power of WebP, a cutting-edge image format supported by modern browsers, to significantly reduce the size of your images and skyrocket your page speed. If a browser doesn’t support WebP, the original images will be loaded.

    \n

    Lazy Load Media:

    \n

    Take control of your website’s asset loading with the ability to enable or disable Lazy Load for various assets. You can exclude specific assets such as iframes, videos, thumbnails, widgets, and shortcodes from the dropdown menu. Additionally, you have the option to exclude specific images from the Lazy Load by adding their respective class in the dedicated tab.

    \n

    Maximum Image Width:

    \n

    If you frequently upload large images to your website, you can enable the Maximum Image Width option that automatically resizes existing and future images whose width exceeds 2560 pixels. By optimizing image sizes, you can enhance your website performance and reduce bandwidth usage.
    \nYou can customize your media optimisation to your specific needs using the filters, we’ve designed for this purpose.

    \n

    SPEED TEST

    \n

    Evaluate the optimization level of your website with Speed Optimizer’s Speed test tool. Our website performance check utilizes the robust capabilities of Google PageSpeed to provide comprehensive insights into your site’s optimization. By conducting the speed test, you will receive detailed results highlighting areas that can be further optimized for enhanced performance. These insights will empower you to fine-tune your website and unlock its maximum potential and increase conversions.

    \n

    Requirements

    \n

    In order to work correctly, this plugin requires that your server meets the following criteria:

    \n
      \n
    • WordPress 4.7
    • \n
    • PHP 7.0+
    • \n
    \n

    Our plugin uses a cookie in order to function properly. It does not store personal data and is used solely for the needs of our caching system.

    \n

    Data Collection

    \n

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    \n

    Credits

    \n

    Photo credits to Anna Shvets https://www.pexels.com/@shvetsa

    \n", "screenshots": "
    1. \"The

      The SiteGround Optimizer Dashboard Page offers a quick look at the current optimization status of your website, along with shortcuts to the relevant optimization pages.

    2. \"The

      The SiteGround Optimizer Caching Page handles your Dynamic caching and Memcached. Here, you can exclude URls from the cache, test your site and purge the Dynamic caching manually.

    3. \"The

      The SiteGround Optimizer Environment Page, you can force HTTPS for your site, tweak the WordPress Heartbeat Optimization, pre-fetch external domains and enable the Database Maintenance.

    4. \"The

      The SiteGround Optimizer Frontend Optimization Page allows you to Minify HTML, CSS & JS, as well as to remove query strings from your static resources and disable the Emoji support.

    5. \"The

      The SiteGround Optimizer Media Page allows you to optimize your Media Library images, as well as adds Lazy Loading functionality for your site.

    6. \"The

      The SiteGround Optimizer Speed Test Page, allows you to test your site loading speed, as well as additional tips on improving your site performance.

    ", "installation": "

    Automatic Installation

    \n
      \n
    1. Go to Plugins -> Add New
    2. \n
    3. Search for “SiteGround Optimizer”
    4. \n
    5. Click on the Install button under the SiteGround Optimizer plugin
    6. \n
    7. Once the plugin is installed, click on the Activate plugin link
    8. \n
    \n

    Manual Installation

    \n
      \n
    1. Login to the WordPress admin panel and go to Plugins -> Add New
    2. \n
    3. Select the ‘Upload’ menu
    4. \n
    5. Click the ‘Choose File’ button and point your browser to the sg-cachepress.zip file you’ve downloaded
    6. \n
    7. Click the ‘Install Now’ button
    8. \n
    9. Go to Plugins -> Installed Plugins and click the ‘Activate’ link under the WordPress SiteGround Optimizer listing
    10. \n
    \n"}, "versions": {"7.6.4": "https://downloads.wordpress.org/plugin/sg-cachepress.7.6.4.zip", "7.6.5": "https://downloads.wordpress.org/plugin/sg-cachepress.7.6.5.zip", "7.6.6": "https://downloads.wordpress.org/plugin/sg-cachepress.7.6.6.zip", "7.6.7": "https://downloads.wordpress.org/plugin/sg-cachepress.7.6.7.zip", "7.6.8": "https://downloads.wordpress.org/plugin/sg-cachepress.7.6.8.zip", "7.7.0": "https://downloads.wordpress.org/plugin/sg-cachepress.7.7.0.zip", "7.7.1": "https://downloads.wordpress.org/plugin/sg-cachepress.7.7.1.zip", "7.7.2": "https://downloads.wordpress.org/plugin/sg-cachepress.7.7.2.zip", "trunk": "https://downloads.wordpress.org/plugin/sg-cachepress.zip"}, "downloaded": 89679441, "description": "

    The award-winning Speed Optimizer plugin is a free WordPress performance-boosting solution to improve user experience, increase conversion rates and drive more traffic. Achieve better SEO rankings, improve Core Web Vitals and enhance your Google Page Speed Score.

    \n

    Developed by the WordPress speed experts at SiteGround, our free plugin is actively used and trusted by more than 2 million website owners. It’s specially designed to be easy to use, allowing users of all skill levels to make complex speed optimizations, such as minifying HTML, CSS and JavaScript, image compression and lazy loading, in a few clicks.

    \n

    Install our caching plugin now to dramatically improve your WordPress website performance on any hosting platform.

    \n

    Essential Speed-boosting Features:

    \n
      \n
    • Powerful Caching for up to 20% faster website.
    • \n
    • Frontend Optimizations to minify JS, HTML and CSS, reducing wait time due to the number of scripts and characters in your code
    • \n
    • Media Optimizations by up to 85% image size compression without sacrificing quality
    • \n
    • WordPress Environment Optimizations to optimize usage and efficiency of your WordPress site resources
    • \n
    • Speed Test & tips to get on-demand optimization tips to help your site get even faster
    • \n
    \n

    Don’t let a slow website compromise your online success. Join the millions of satisfied website owners and see the difference with the free Speed Optimizer plugin.

    \n

    AWARDS:

    \n

    Monster Awards 2022: Best WordPress Optimization Plugin 🥈

    \n

    Plugin Video

    \n\n

    Plugin Tutorial

    \n

    To gain in-depth knowledge about our plugin and its functionalities, check our Speed Optimizer Tutorial. It provides detailed information on how to optimize each aspect of your site and maximizes your website performance and cache.

    \n

    CACHING

    \n

    The Caching page gives you full control of your website’s cache, allowing you to enhance its performance significantly. Take advantage of the powerful caching options available to boost your page speed:

    \n

    DYNAMIC CACHING:

    \n

    By enabling Dynamic Caching, all non-static resources of your website are intelligently cached, eliminating the need for repetitive database queries and enhancing page loading speed and TTFB (time to first byte). This default feature is available exclusively for SiteGround servers, ensuring optimal performance.

    \n

    FILE-BASED CACHING:

    \n

    By activating file-based caching, your website generates and stores static HTML versions, ensuring faster loading times and an improved user experience. This efficient caching method stores the cached files conveniently in the browser’s memory, allowing future visitors to access your site swiftly and seamlessly.

    \n

    MEMCACHED:

    \n

    Unleash the power of object caching for your WordPress website. Memcached revolutionizes website performance by storing frequently executed queries to your databases and reusing them for lightning-fast website results. This powerful feature is exclusively available in the SiteGround environment.

    \n

    CACHING SETTINGS:

    \n
      \n
    • Automatic Cache Purge: ensure the cache is cleared whenever necessary
    • \n
    • Manual Cache Purge: purge cache manually if you are editing new material and do not have automatic purge activated.
    • \n
    • Browser-specific Caching: generate caching separately for different browsers
    • \n
    • Exclude Post Types from Caching: exclude specific post types from being cached
    • \n
    • Exclude URLs from Caching: exclude specific URLs or utilize wildcards to exclude any sub-pages of a designated “parent-page.”
    • \n
    • Test URL Caching Status: verify if dynamic caching is actively running on specific URLs
    • \n
    \n

    ENVIRONMENT OPTIMIZATIONS

    \n

    Optimize and fine-tune your site’s environment for optimal website performance:

    \n

    HTTPS Enforce:

    \n

    Ensure a secure browsing experience for your visitors by effortlessly enabling HTTPS for your site. Say goodbye to insecure content errors and build trust with your audience.

    \n

    Scheduled Database Maintenance:

    \n

    Take control of your database by activating the Database Optimization feature. This functionality removes unnecessary items and optimizes your database tables, leading to improved efficiency and website performance. If you’re using the InnoDB storage engine, table optimisation is automatically handled by the engine itself.

    \n

    Heartbeat Control:

    \n

    Manage the frequency of the WP Heartbeat for different areas of your website. By default, the WordPress Heartbeat API checks for scheduled tasks every 15 seconds on post edit pages and every 60 seconds on the dashboard and front end. With Heartbeat Control, you can adjust the frequency of these checks or even disable them entirely, providing you with greater control over resource allocation.

    \n

    FRONTEND OPTIMIZATIONS

    \n

    Enhance and fine-tune the performance of your website’s front end by minifying JS, HTML and CSS:

    \n

    CSS Tab:

    \n

    Minify CSS files, activate or deactivate CSS combinations to reduce server requests, and even preload combined CSS for optimized performance. Additionally, you can exclude specific styles from being combined or minified, giving you complete control over your CSS optimization.

    \n

    JavaScript Tab:

    \n

    Activate or deactivate Minify JavaScript Files to reduce script sizes and lower the number of server requests. You can also defer render-blocking JavaScript to expedite the initial page speed. Furthermore, you have the ability to exclude specific scripts from various optimisation processes, providing flexibility in optimizing your JavaScript resources.

    \n

    General Tab:

    \n

    Further optimization options include:

    \n
      \n
    • Web Fonts Optimization: Enhance the loading of Google fonts by adding a preconnect link in your head tag. This informs the browser to establish a connection to Google’s font repository as quickly as possible. Additionally, all other local fonts will be preloaded, resulting in faster caching and rendering. When combined with CSS Combination, we also modify the font-display property to improve rendering speed.
    • \n
    • Fonts Preloading: With locally hosted fonts being preloaded, you’re allowing browsers to cache and render them at an accelerated pace.
    • \n
    • Remove Query Strings from Static Resources: Improve caching efficiency by removing query strings from static resources, optimizing their caching capabilities.
    • \n
    • Disable Emojis: Prevent WordPress from detecting and generating emojis on your pages by disabling emojis support. This helps boost your page speed and improve your website performance.
    • \n
    • DNS Pre-fetch for External Domains: Enabling the DNS Pre-fetch for a domain will resolve it before resources from it get requested making those resources load faster.
    • \n
    \n

    MEDIA OPTIMIZATIONS

    \n

    Optimize your website media by reducing image size by up to 85% times while maintaining top-notch quality.

    \n

    Image Compression:

    \n

    Effortlessly compress images to resize your existing images and reduce the space they occupy on your server. The dimensions of the images will remain unchanged, allowing for optimized storage. Fine-tune the compression level and choose whether to create backups of the original images. Please note that image compression feature is exclusive to the SiteGround Environment.

    \n

    WebP Images:

    \n

    Leverage the power of WebP, a cutting-edge image format supported by modern browsers, to significantly reduce the size of your images and skyrocket your page speed. If a browser doesn’t support WebP, the original images will be loaded.

    \n

    Lazy Load Media:

    \n

    Take control of your website’s asset loading with the ability to enable or disable Lazy Load for various assets. You can exclude specific assets such as iframes, videos, thumbnails, widgets, and shortcodes from the dropdown menu. Additionally, you have the option to exclude specific images from the Lazy Load by adding their respective class in the dedicated tab.

    \n

    Maximum Image Width:

    \n

    If you frequently upload large images to your website, you can enable the Maximum Image Width option that automatically resizes existing and future images whose width exceeds 2560 pixels. By optimizing image sizes, you can enhance your website performance and reduce bandwidth usage.
    \nYou can customize your media optimisation to your specific needs using the filters, we’ve designed for this purpose.

    \n

    SPEED TEST

    \n

    Evaluate the optimization level of your website with Speed Optimizer’s Speed test tool. Our website performance check utilizes the robust capabilities of Google PageSpeed to provide comprehensive insights into your site’s optimization. By conducting the speed test, you will receive detailed results highlighting areas that can be further optimized for enhanced performance. These insights will empower you to fine-tune your website and unlock its maximum potential and increase conversions.

    \n

    Requirements

    \n

    In order to work correctly, this plugin requires that your server meets the following criteria:

    \n
      \n
    • WordPress 4.7
    • \n
    • PHP 7.0+
    • \n
    \n

    Our plugin uses a cookie in order to function properly. It does not store personal data and is used solely for the needs of our caching system.

    \n

    Data Collection

    \n

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    \n

    Credits

    \n

    Photo credits to Anna Shvets https://www.pexels.com/@shvetsa

    \n", "donate_link": "", "num_ratings": 620, "screenshots": {"1": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-1.png?rev=2763281", "caption": "The SiteGround Optimizer Dashboard Page offers a quick look at the current optimization status of your website, along with shortcuts to the relevant optimization pages."}, "2": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-2.png?rev=2763281", "caption": "The SiteGround Optimizer Caching Page handles your Dynamic caching and Memcached. Here, you can exclude URls from the cache, test your site and purge the Dynamic caching manually."}, "3": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-3.png?rev=2763281", "caption": "The SiteGround Optimizer Environment Page, you can force HTTPS for your site, tweak the WordPress Heartbeat Optimization, pre-fetch external domains and enable the Database Maintenance."}, "4": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-4.png?rev=2763281", "caption": "The SiteGround Optimizer Frontend Optimization Page allows you to Minify HTML, CSS & JS, as well as to remove query strings from your static resources and disable the Emoji support."}, "5": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-5.png?rev=2763281", "caption": "The SiteGround Optimizer Media Page allows you to optimize your Media Library images, as well as adds Lazy Loading functionality for your site."}, "6": {"src": "https://ps.w.org/sg-cachepress/assets/screenshot-6.png?rev=2763281", "caption": "The SiteGround Optimizer Speed Test Page, allows you to test your site loading speed, as well as additional tips on improving your site performance."}}, "support_url": "https://wordpress.org/support/plugin/sg-cachepress/", "contributors": {"sstoqnov": {"avatar": "https://secure.gravatar.com/avatar/16c4db5a3e2228a8bd2115ceed9d4fbd784a9a884d3178ac1997e6f0f1598c6b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sstoqnov/", "display_name": "Stanimir Stoyanov"}, "hristo-sg": {"avatar": "https://secure.gravatar.com/avatar/e48e95eba4f298f73069e3545b63f3e6ac6c20104ff14e664afa6d787625918a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hristo-sg/", "display_name": "Hristo Pandjarov"}, "siteground": {"avatar": "https://secure.gravatar.com/avatar/9062b915cdcde9dbcc9a9462f2f7a030d40a76a3ed831d2a0973c30c02977a75?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/siteground/", "display_name": "SiteGround"}, "ignatggeorgiev": {"avatar": "https://secure.gravatar.com/avatar/44f0331e6cafbc984fe23d168888aea42eefaf2515e3ca8b7da80f736211d407?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ignatggeorgiev/", "display_name": "Ignat Georgiev"}, "stoyangeorgiev": {"avatar": "https://secure.gravatar.com/avatar/61bc666b338c57c8cfdab31b559c98507650a3ef3eb2687638de9318bff2e2c9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stoyangeorgiev/", "display_name": "Stoyan Georgiev"}, "elenachavdarova": {"avatar": "https://secure.gravatar.com/avatar/c5ec7321923222a44319137b21294bc18ce0456899974592c57718afac62cd80?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elenachavdarova/", "display_name": "Elena Chavdarova"}}, "last_updated": "2025-04-15 7:33am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/sg-cachepress.7.7.2.zip", "author_profile": "https://profiles.wordpress.org/siteground/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fa5d-7365-8690-c2fc50c86cb1", "name": "Speed Optimizer – The All-In-One Performance-Boosting Plugin", "slug": "sg-cachepress", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1744702380, "version": "7.7.2"}, "support_threads": 8, "requires_plugins": [], "short_description": "Boost your website performance and page speed, and increase conversions with powerful caching, frontend, media, and environment optimizations.", "author_block_count": 0, "author_block_rating": 84, "commercial_support_url": "", "support_threads_resolved": 5}'); -INSERT INTO public.plugins VALUES ('019a30c1-66e4-7093-86f0-3d2eab291af5', 'sg-security', 'Security Optimizer – The All-In-One Protection Plugin', 'Secure your WordPress site from brute-force attacks, threats, malware, and bots. Free to use and easy to set up.', '

    Bulletproof your website security in a few clicks against a range of security breaches, including brute-force attacks, malware threats and bots, with our free WordPress security plugin – Security Optimizer.

    -

    Proactively monitor your site’s security to detect any suspicious activity and take immediate actions to protect your site and prevent further damage with these essential features:

    -
      -
    • Enable 2FA (Two-Factor Authentication) for an extra layer of website security
    • -
    • Set Limit Login Attempts to deter malicious login attempts and brute-force attacks
    • -
    • Change your default login URL to Custom Login URL to avoid attacks
    • -
    • Activate Advanced XSS Protection to fortify your website against malicious attacks
    • -
    • Lock and Protect System Folders to ensure no unauthorized or malicious scripts can be executed in your system folders
    • -
    • Disable Themes & Plugins Editor to safeguard your website from unauthorized access via the WordPress editor
    • -
    • Hide WordPress Version effortlessly, keeping it hidden from prying eyes
    • -
    • Use Activity Log to monitor your site and quickly prevent malicious actions
    • -
    • Post-Hack Actions to take immediate actions and prevent further damages
    • -
    -

    Developed by the website security experts at SiteGround and trusted by over 900,000 webmasters for its robust security shield and ease of use to safeguard WordPress applications from possible attacks on any hosting platform.

    -

    AWARDS:

    -

    Monster Awards 2022: Best WordPress Security Plugin 🥇
    -Monster Awards 2021: Best WordPress Security Plugin 🥇

    -

    Plugin Video

    - -

    Plugin Tutorial

    -

    Unveil the vast array of features and unleash the full potential of our security plugin in our Security Optimizer Tutorial.

    -

    SITE PROTECTION FEATURES

    -

    Safeguard your WordPress application using our powerful site security toolset. Our comprehensive features are specifically designed to strengthen your website’s defenses against malware, exploits, and various malicious activities. With these tools at your disposal, you can ensure the utmost bot, malware and brute force protection for your website:

    -

    Lock and Protect System Folders

    -

    Ensure the maximum security for your application’s system folders by preventing the execution of any unauthorized or malicious scripts. The Lock and Protect System Folders feature acts as a powerful shield against potential threats.

    -

    Hide WordPress Version

    -

    Protect your website from mass attacks by hiding the WordPress version, which helps to mitigate version-specific vulnerabilities.

    -

    Disable Themes & Plugins Editor

    -

    Enhance the security of your WordPress admin area by disabling the Themes & Plugins Editor, preventing potential coding errors and unauthorized access through the editor.

    -

    Disable XML-RPC

    -

    Mitigate potential security risks by disabling the XML-RPC protocol, which has been exploited in various attacks. Please note that disabling XML-RPC will restrict WordPress from communicating with third-party systems. We recommend enabling this feature unless you have a specific need for it.

    -

    Disable RSS and ATOM Feeds

    -

    Prevent content scraping and specific attacks on your site by disabling RSS and ATOM feeds. Unless you have readers accessing your site via RSS readers, it is recommended to keep this feature enabled.

    -

    Advanced XSS Protection

    -

    Add an extra layer of website security against cross-site scripting (XSS) attacks by enabling Advanced XSS Protection, bolstering the overall security of your website.

    -

    Delete Default Readme.html

    -

    Eliminate potential vulnerabilities by deleting the default readme.txt file, which contains information about your website. By removing this file, you reduce the risk of your site being listed in vulnerable sites targeted by hackers.

    -

    Login Security

    -

    Custom Login Url

    -

    Personalize your login URL to thwart potential attacks and create a strong entry point. Bid farewell to the default login URL and embrace a bespoke path of your choosing. Additionally, you have the freedom to modify the default sign-up URL as well.

    -

    Login Access

    -

    Restrict login page access to specific IP addresses or IP ranges, effectively thwarting malicious login attempts and deterring brute force attacks.

    -

    2FA (Two-Factor Authentication)

    -

    Immerse your website in an impenetrable shield of security with 2FA. This formidable feature demands that all admin users furnish a unique token, generated exclusively through the Google Authentication application, during the login process.

    -

    Disable Common Usernames

    -

    Don’t fall victim to predictable security breaches! The use of common usernames, such as ‘admin,’ poses a significant threat to the integrity of your website. Activate this option to disable the creation of common usernames. If any weak usernames already exist, we’ll prompt you to provide new, stronger alternatives.

    -

    Limit Login Attempts

    -

    Maintain control over unauthorized access attempts with Limit Login Attempts. Set a specific threshold for the number of login failures users can endure before consequences arise. After reaching the limit, the IP address associated with the unsuccessful login attempts will be blocked for one hour. Persistent failures will result in longer restrictions, starting with 24 hours and escalating to a week.

    -

    ACTIVITY MONITORING

    -

    Monitor your website and login page for unauthorized visitors and brute force attempts to prevent malicious actions

    -

    Activity Log

    -

    The Activity Log page provides you with a comprehensive view of the activities performed by registered, unknown, and blocked visitors. It allows you to closely monitor any suspicious behavior and take appropriate actions in case of a compromised user, plugin, or hacking attempt. You can leverage the quick tools available to swiftly block future attempts.

    -

    Weekly Security Reports

    -

    Receive a weekly traffic summary for your website directly to your inbox. This Weekly Security Report compiles data on both bot and human traffic, along with details about blocked login and visit attempts to proactively monitor traffic and promptly identify suspicious activity.

    -

    POST-HACK ACTIONS

    -

    Take immediate measures to protect your website if you suspect a compromise and prevent further damage. Here, you’ll find convenient solutions to address the situation effectively:

    -

    Reinstall All Free Plugins

    -

    In the event of a hack, utilizing the Reinstall All Free Plugins feature can help mitigate potential harm. This action reinstalls all of your free plugins, reducing the likelihood of additional exploits or the reuse of malicious code.

    -

    Log Out All Users

    -

    To prevent any further unauthorized activities by users or attackers, you can choose to log out all users instantly using the Log Out All Users feature.

    -

    Force Password Reset

    -

    By enforcing a password reset, you can ensure that all users are prompted to change their passwords during their next login. This not only strengthens the security of their accounts but also immediately logs out all currently logged-in users.

    -

    Requirements

    -
      -
    • WordPress 4.7
    • -
    • PHP 7.0
    • -
    • Working .htaccess file
    • -
    -

    Data Collection

    -

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    -', '1.5.7', 'SiteGround', '4.7', '7.0', '6.8.3', 'https://downloads.wordpress.org/plugin/sg-security.1.5.7.zip', '2021-05-31 00:00:00+00', '2025-04-15 07:48:00+00', 'https://profiles.wordpress.org/siteground/', 92, 149, 4, 3, 1000000, 29858556, 'https://siteground.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/sg-security/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Security Optimizer – The All-In-One Protection Plugin", "slug": "sg-security", "tags": {"login": "login", "firewall": "firewall", "security": "security", "malware-scanner": "malware scanner", "web-application-firewall": "web application firewall"}, "added": "2021-05-31", "icons": {"1x": "https://ps.w.org/sg-security/assets/icon-128x128.gif?rev=2971855", "2x": "https://ps.w.org/sg-security/assets/icon-256x256.gif?rev=2971855"}, "author": "SiteGround", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/sg-security/assets/banner-772x250.png?rev=2971855", "high": "https://ps.w.org/sg-security/assets/banner-1544x500.png?rev=2971855"}, "ratings": {"1": 12, "2": 2, "3": 4, "4": 4, "5": 127}, "version": "1.5.7", "homepage": "https://siteground.com", "requires": "4.7", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy solucionespirita on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    fulfills its purpose completely, very good

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Always my go to

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy deniz15 on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Pretty simple and light weight

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    extension indispensable

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy urbangames on September 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Cette extension m''a permis d''isoler les Bot indésirables et bloquer toute tentative d''attaque.

    \n\n\n\n

    J''en suis ravi !

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Annoying

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Kristof (MKristof) on July 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Wouldn''t matter if this was the best plug-in ever created. Having a pop-up ask to share data every time you do something is the most annoying thing in the world.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Minimislist, Lightweight and Secure

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy forgeeky on June 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Tried many security plugins, but this one is really simple with clean UI. The amazing part is it has 2FA and also offer to change default login path free of cost.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    SG Optimizer: "Lock Folders" Feature Problematic, Custom Filters Ineffective

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Francesco (seventhose) on June 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using the SiteGround Security Optimizer plugin to enhance the security of a WordPress site. While the plugin offers a useful suite of tools, I encountered a significant and frustrating obstacle with its \"Lock and Protect System Folders\" feature and the related PHP custom filter mechanism, which proved ineffective in my specific case.

    \n\n\n\n

    The Specific Problem: Activating the \"Lock and Protect System Folders\" option correctly identified and blocked direct access to a PHP JavaScript AJAX file (trp-ajax.php) belonging to a well-known and widely used multilingual translation plugin (TranslatePress). This block manifested as Apache AH01630: client denied by server configuration errors in the server logs. Although the basic translation of pages seemed to function initially, the persistence of these errors indicated an underlying malfunction that could compromise secondary but important AJAX functionalities of the translation plugin.

    \n\n\n\n

    Deactivating the \"Lock and Protect System Folders\" option immediately eliminated the errors, confirming that the block was imposed by this specific SG Optimizer feature.

    \n\n\n\n

    Troubleshooting Attempts Following Official SiteGround Documentation: Wanting to keep the folder protection active, I consulted SiteGround''s official guide \"How to Use Security Optimizer''s Custom Filters\" to create an exception (whitelist) for the legitimate file. The guide indicates using the sgs_whitelist_wp_content PHP filter.

    \n\n\n\n

    I implemented the necessary PHP snippet via a dedicated code snippet management plugin (Fluent Snippets), ensuring it was active, globally executed, and that all caches (SiteGround server-side, optimization plugins, browser, CDN if present) were meticulously cleared after each modification and before each test.

    \n\n\n\n

    The following path variations for the file to be added to the $whitelist[] array within the function hooked to the sgs_whitelist_wp_content filter were tested:

    \n\n\n\n
      \n
    1. Full relative path from the wp-content folder: Following the most common logic for WordPress filters operating on a base directory, I tried plugins/translation-plugin-name/includes/file-name.php.
    2. \n\n\n\n
    3. Base filename only: Literally interpreting the extremely simplified example (''file_name.php'') provided in the SiteGround guide for the sgs_whitelist_wp_content hook, I tried adding only ''file-name.php''.
    4. \n\n\n\n
    5. Intermediate variations or absolute paths (the latter are generally not used in WordPress filters but were tested for completeness in the initial stages).
    6. \n
    \n\n\n\n

    None of these attempts, despite scrupulously following the instructions and WordPress filter logic, succeeded in creating an effective exception. The trp-ajax.php file continued to be blocked, and the AH01630 errors persisted whenever the \"Lock and Protect System Folders\" protection was reactivated.

    \n\n\n\n

    Interactions with SiteGround''s AI Assistant: Seeking further assistance, I consulted SiteGround''s AI Assistant. The interactions can be summarized as follows:

    \n\n\n\n
      \n
    • Initial Report: I described the problem, the error, and the failure of whitelisting attempts using the sgs_whitelist_wp_content filter as per their guide, specifying the path formats already tested.
    • \n\n\n\n
    • AI''s Responses: The AI Assistant repeatedly suggested the standard solutions already tried and communicated as ineffective:\n
        \n
      1. Using the sgs_whitelist_wp_content filter with only the base filename.
      2. \n\n\n\n
      3. Using the sgs_whitelist_wp_content filter with the full relative file path.
      4. \n\n\n\n
      5. Generic troubleshooting suggestions (clearing cache, testing in incognito, checking file permissions and .htaccess – the latter less relevant given the AH01630 error indicated a server/plugin configuration block, and the PHP filter was intended to manage that configuration).
      6. \n
      \n
    • \n\n\n\n
    • Despite clarifying multiple times that these methods had already been applied unsuccessfully, the AI continued to propose them, entering a loop and eventually suggesting contact with human technical support.
    • \n
    \n\n\n\n

    Conclusions and Concerns: The experience demonstrates that, at least in my scenario (which I believe to be common: a PHP file from a popular plugin located in a subfolder of wp-content/plugins/), SiteGround Security Optimizer''s custom filter system, particularly sgs_whitelist_wp_content, does not function as documented or as one would expect.

    \n\n\n\n

    This leads to an unpleasant choice for the user:

    \n\n\n\n
      \n
    • Disable a key security feature (\"Lock and Protect System Folders\"), potentially reducing the site''s protection level.
    • \n\n\n\n
    • Accept the malfunctioning of legitimate and necessary plugins, with continuous errors in the logs.
    • \n
    \n\n\n\n

    The official documentation on custom filters, regarding the sgs_whitelist_wp_content hook, appears to be oversimplified and does not provide clear or effective examples for files nested in subdirectories, which constitute the majority of plugin files. The AI Assistant, relying on such documentation, is unable to offer practical solutions for this problem.

    \n\n\n\n

    A review by SiteGround''s development team would be desirable, both of the sgs_whitelist_wp_content filter''s functionality to ensure it correctly handles full relative paths, and of the documentation to provide more accurate and applicable examples. Furthermore, a clear channel for reporting such product-related issues without the user being immediately directed to potentially paid support channels would be beneficial, especially when the problem seems to lie in a flaw or documentary shortcoming of the tool provided by the hosting itself.

    \n\n\n\n

    As it stands, for anyone using plugins with specific PHP files that are blocked by \"Lock and Protect System Folders,\" this aspect of the SiteGround Security Optimizer can be more of a hindrance than a help if one is unwilling to forgo that protection.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Incompatible with Translate press

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy leopap on December 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin is quite heavy and makes conflict with translate press. Variations and titles of products disappeared in the second language. After disabling all is back to normal.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Has all of it

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Vedran Mandić (mandicvedran) on November 8, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like that this plugin involves all of the important things and does this in friendly manner ie. admin UI. Limit logins, 2fa, etc.

    \n\n\n\n

    Apart from speed optimizer a must have.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Cannot unsubscribe from the emails

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy swinggraphics on August 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Cannot unsubscribe from the emails without admin access. In my experience, this makes the plugin extremely annoying. They do not plan to fix this.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tinaponting (ponting) on August 12, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A simple plugin, who does what it supose to do - Protecting:)

    \n
    \n
    \n", "changelog": "

    Version 1.5.7

    \n

    Release Date Nov 21st, 2024

    \n
      \n
    • Translation loading improvements
    • \n
    \n

    Version 1.5.6

    \n

    Release Date: Oct 9th, 2024

    \n
      \n
    • Custom Login URL improvements
    • \n
    • 2FA improvements
    • \n
    • Activity Log improvements
    • \n
    \n

    Version 1.5.5

    \n

    Release Date: Sep 18th, 2024

    \n
      \n
    • Options improvements.
    • \n
    • Block Service improvements.
    • \n
    \n

    Version 1.5.4

    \n

    Release Date: Sep 10th, 2024

    \n
      \n
    • Activity log code improvements.
    • \n
    • Salt Shaker code improvements.
    • \n
    \n

    Version 1.5.3

    \n

    Release Date: Aug 27th, 2024

    \n
      \n
    • Code Improvements.
    • \n
    \n

    Version 1.5.2

    \n

    Release Date: Aug 1st, 2024

    \n
      \n
    • Improved Custom Login Url handling
    • \n
    • Improved Plugins Reinstall actions
    • \n
    • Improved Translations
    • \n
    • Improved plugin config
    • \n
    • Fixed deprecated warnings in custom WP-CLI commands
    • \n
    \n

    Version 1.5.1

    \n

    Release Date: July 17th, 2024

    \n
      \n
    • Improved Activity log bot detection
    • \n
    • Improved Activity log logout handling
    • \n
    • Improved 2FA with third-party custom logins
    • \n
    • Improved compatibility with third-party plugins
    • \n
    • Security improvements related to plugin notices
    • \n
    \n

    Version 1.5.0

    \n

    Release Date: May 23rd, 2024

    \n
      \n
    • Improved support for PHP 8.2 and 8.3.
    • \n
    • Improved plugin configuration.
    • \n
    \n

    Version 1.4.13

    \n

    Release Date: Mar 27th, 2024

    \n
      \n
    • Plugin optimization.
    • \n
    \n

    Version 1.4.12

    \n

    Release Date: Feb 20th, 2024

    \n
      \n
    • Bugfixes related to cookies and 2FA
    • \n
    \n

    Version 1.4.11

    \n

    Release Date: Feb 14th, 2024

    \n
      \n
    • Security improvements related to cookies
    • \n
    • Performance improvements
    • \n
    \n

    Version 1.4.10

    \n

    Release Date: Jan 11th, 2024

    \n
      \n
    • Static assets are now part of the plugin package and load locally.
    • \n
    • New users will be prompted to give their consent for the collection of technical data upon their initial use of the plugin.
    • \n
    \n

    Version 1.4.9

    \n

    Release Date: Dec 12th, 2023

    \n
      \n
    • Improved detection of bots in activity log
    • \n
    • Improved feature “Reinstall All Free Plugins” – deactivated plugins no longer get activated after the reinstall.
    • \n
    \n

    Version 1.4.8

    \n

    Release Date: Nov 22nd, 2023

    \n
      \n
    • Dashboard visuals improvements
    • \n
    • Readme file improvements
    • \n
    • Weekly Security Report improved translations
    • \n
    \n

    Version 1.4.7

    \n

    Release Date: Oct 24th, 2023

    \n
      \n
    • Data collection opt out option
    • \n
    • Readme file formatting improvements
    • \n
    • Plugin name formatting improvements
    • \n
    • Weekly Activity Report Sending Schedule Randomisation
    • \n
    \n

    Version 1.4.6

    \n

    Release Date: Sept 26th, 2023

    \n
      \n
    • Changing the name we use inside the plugin from SiteGround Security to Security Optimizer
    • \n
    • Updating data collection process and Introducing a link in the plugin interface to the Plugin Privacy notice
    • \n
    \n

    Version 1.4.5

    \n

    Release Date: May 4th, 2023

    \n
      \n
    • Improved log cleanup
    • \n
    \n

    Version 1.4.4

    \n

    Release Date: May 3rd, 2023

    \n
      \n
    • Improved Visitors DB table indexing
    • \n
    • Block service restored
    • \n
    \n

    Version 1.4.3

    \n

    Release Date: Apr 27th, 2023

    \n
      \n
    • Block service temporally disabled
    • \n
    \n

    Version 1.4.2

    \n

    Release Date: Apr 27th, 2023

    \n
      \n
    • Improved Activity Log process and filters
    • \n
    • Improved restricted login response code
    • \n
    • Improved PHP 8.2 compatibility
    • \n
    • Alternative constant added for non-standard cron job usage
    • \n
    \n

    Version 1.4.1

    \n

    Release Date: Feb 23rd, 2023

    \n
      \n
    • Internal configuration improvements
    • \n
    \n

    Version 1.4.0

    \n

    Release Date: Feb 1st, 2023

    \n
      \n
    • Internal configuration changes
    • \n
    \n

    Version 1.3.9

    \n

    Release Date: Jan 25th, 2023

    \n
      \n
    • Improved Foogra Theme support
    • \n
    \n

    Version 1.3.8

    \n

    Release Date: Dec 6th, 2022

    \n
      \n
    • Improved Rest response
    • \n
    • Improved Settings Page checks
    • \n
    • Improved Disable Themes & Plugins Editor
    • \n
    \n

    Version 1.3.7

    \n

    Release Date: Nov 15th, 2022

    \n
      \n
    • SG Security Dashboard bugfix
    • \n
    • Improved 2FA Encryption key validation
    • \n
    • Improved Custom Login/Register URL validation
    • \n
    • Improved LiteSpeed Cache support
    • \n
    • Option to use custom 2FA encryption key filepath
    • \n
    \n

    Version 1.3.6

    \n

    Release Date: Nov 8th, 2022

    \n
      \n
    • Improved 2FA security with encryption
    • \n
    • Improved Access Log filters
    • \n
    • New WP-CLI command: reset all users 2FA setup
    • \n
    \n

    Version 1.3.5

    \n

    Release Date: Oct 18th, 2022

    \n
      \n
    • Improved Custom Login URL
    • \n
    • Improved Activity log
    • \n
    \n

    Version 1.3.4

    \n

    Release Date: Oct 10th, 2022

    \n
      \n
    • Install service fix
    • \n
    \n

    Version 1.3.3

    \n

    Release Date: Oct 10th, 2022

    \n
      \n
    • New Manage Activity Log option
    • \n
    • New filter – Disable activity log
    • \n
    • Improved Custom login url
    • \n
    • Improved WP-CLI support
    • \n
    • Improved Jetpack plugin support
    • \n
    • Improved error handling
    • \n
    • Minor bug fixes
    • \n
    • Legacy code removed
    • \n
    \n

    Version 1.3.2

    \n

    Release Date: Sept 21st, 2022

    \n
      \n
    • 2FA Backup codes security strengthening
    • \n
    \n

    Version 1.3.1

    \n

    Release Date: Sept 13th, 2022

    \n
      \n
    • 2FA Authentication Security Strengthening
    • \n
    • IP Address detection Security Strengthening
    • \n
    \n

    Version 1.3.0

    \n

    Release Date: July 14th, 2022

    \n
      \n
    • Brand New Design
    • \n
    • Improved 2FA Authentication compatibility with Elementor custom login pages
    • \n
    • Improved data collection
    • \n
    • Minor fixes
    • \n
    \n

    Version 1.2.9

    \n

    Release Date: June 20th, 2022

    \n
      \n
    • NEW Filters for “Lock and Protect System Folders” excludes
    • \n
    • Improved IP Ranges support
    • \n
    • Improved Blocked IP addresses list
    • \n
    • Improved Delete the Default Readme.html
    • \n
    • Improved 2FA Authentication validation
    • \n
    • Improved 2FA Authentication support for “My Account” login
    • \n
    • Improved Data Collection
    • \n
    • Minor fixes
    • \n
    \n

    Version 1.2.8

    \n

    Release Date: May 18th, 2022

    \n
      \n
    • Improved plugin security
    • \n
    \n

    Version 1.2.7

    \n

    Release Date: April 8th, 2022

    \n
      \n
    • Minor bug fixes
    • \n
    \n

    Version 1.2.6

    \n

    Release Date: April 7th, 2022

    \n
      \n
    • 2FA Refactoring
    • \n
    \n

    Version 1.2.5

    \n

    Release Date: April 6th, 2022

    \n
      \n
    • 2FA Authentication refactoring
    • \n
    • Improved Weekly Emails
    • \n
    • HTST service deprecated
    • \n
    \n

    Version 1.2.4

    \n

    Release Date: March 16th, 2022

    \n
      \n
    • Improved Weekly Emails
    • \n
    • Improved Woocommerce Payments plugin support
    • \n
    • 2FA Authentication Security Strengthening
    • \n
    \n

    Version 1.2.3

    \n

    Release Date: March 11th, 2022

    \n
      \n
    • 2FA Authentication Security Strengthening
    • \n
    \n

    Version 1.2.2

    \n

    Release Date: March 11th, 2022

    \n
      \n
    • 2FA Authentication Security Strengthening
    • \n
    \n

    Version 1.2.1

    \n

    Release Date: March 9th, 2022

    \n
      \n
    • Improved Weekly reports
    • \n
    • Improved HTTP Headers service
    • \n
    • Code Refactoring
    • \n
    \n

    Version 1.2.0

    \n

    Release Date: February 28th, 2022

    \n
      \n
    • NEW – Weekly Reports
    • \n
    • Code Refactoring and General Improvements
    • \n
    • Improved 2FA user role support
    • \n
    • Improved error handling
    • \n
    • Improved Limit Login IP Range support
    • \n
    • Improved Event log
    • \n
    • Improved Phlox theme support
    • \n
    • Minor fixes
    • \n
    • Improved WP-CLI support
    • \n
    • Environment data collection consent added
    • \n
    \n

    Version 1.1.3

    \n

    Release Date: October 1st, 2021
    \n* Improved Hide WP version functionality

    \n

    Version 1.1.2

    \n

    Release Date: August 20th, 2021
    \n* Improved Custom Login URL functionality
    \n* Improved 2FA
    \n* Improved success/error messages

    \n

    Version 1.1.1

    \n

    Release Date: August 12th, 2021
    \n* Improved 2FA
    \n* Improved logout functionality

    \n

    Version 1.1.0

    \n

    Release Date: July 27th, 2021
    \n* NEW! Added 2FA backup codes to the profile edit page
    \n* NEW! Custom login and registration URLs
    \n* NEW! Added automatic HSTS headers generation
    \n* Improved Disable common usernames functionality
    \n* Improved Mass Logout Service
    \n* Improved Activity Logging and added custom labeling
    \n* Improved Password Reset functionality

    \n

    Version 1.0.4

    \n
      \n
    • Improved Limit Login Attempts
    • \n
    \n

    Version 1.0.3

    \n
      \n
    • Fixed rating box bug on safari
    • \n
    • Improved RSS & ATOM Feed Disabler service
    • \n
    \n

    Version 1.0.2

    \n
      \n
    • Added filter to configure log lifetime
    • \n
    • Added WP CLI support
    • \n
    • Improved strings
    • \n
    \n

    Version 1.0.1

    \n
      \n
    • Added defaults on install
    • \n
    • Improved translation support
    • \n
    • Added cleanup on uninstall
    • \n
    \n

    Version 1.0.0

    \n
      \n
    • First stable release.
    • \n
    \n

    Version 0.1

    \n
      \n
    • Initial release.
    • \n
    \n", "description": "

    Bulletproof your website security in a few clicks against a range of security breaches, including brute-force attacks, malware threats and bots, with our free WordPress security plugin – Security Optimizer.

    \n

    Proactively monitor your site’s security to detect any suspicious activity and take immediate actions to protect your site and prevent further damage with these essential features:

    \n
      \n
    • Enable 2FA (Two-Factor Authentication) for an extra layer of website security
    • \n
    • Set Limit Login Attempts to deter malicious login attempts and brute-force attacks
    • \n
    • Change your default login URL to Custom Login URL to avoid attacks
    • \n
    • Activate Advanced XSS Protection to fortify your website against malicious attacks
    • \n
    • Lock and Protect System Folders to ensure no unauthorized or malicious scripts can be executed in your system folders
    • \n
    • Disable Themes & Plugins Editor to safeguard your website from unauthorized access via the WordPress editor
    • \n
    • Hide WordPress Version effortlessly, keeping it hidden from prying eyes
    • \n
    • Use Activity Log to monitor your site and quickly prevent malicious actions
    • \n
    • Post-Hack Actions to take immediate actions and prevent further damages
    • \n
    \n

    Developed by the website security experts at SiteGround and trusted by over 900,000 webmasters for its robust security shield and ease of use to safeguard WordPress applications from possible attacks on any hosting platform.

    \n

    AWARDS:

    \n

    Monster Awards 2022: Best WordPress Security Plugin 🥇
    \nMonster Awards 2021: Best WordPress Security Plugin 🥇

    \n

    Plugin Video

    \n\n

    Plugin Tutorial

    \n

    Unveil the vast array of features and unleash the full potential of our security plugin in our Security Optimizer Tutorial.

    \n

    SITE PROTECTION FEATURES

    \n

    Safeguard your WordPress application using our powerful site security toolset. Our comprehensive features are specifically designed to strengthen your website’s defenses against malware, exploits, and various malicious activities. With these tools at your disposal, you can ensure the utmost bot, malware and brute force protection for your website:

    \n

    Lock and Protect System Folders

    \n

    Ensure the maximum security for your application’s system folders by preventing the execution of any unauthorized or malicious scripts. The Lock and Protect System Folders feature acts as a powerful shield against potential threats.

    \n

    Hide WordPress Version

    \n

    Protect your website from mass attacks by hiding the WordPress version, which helps to mitigate version-specific vulnerabilities.

    \n

    Disable Themes & Plugins Editor

    \n

    Enhance the security of your WordPress admin area by disabling the Themes & Plugins Editor, preventing potential coding errors and unauthorized access through the editor.

    \n

    Disable XML-RPC

    \n

    Mitigate potential security risks by disabling the XML-RPC protocol, which has been exploited in various attacks. Please note that disabling XML-RPC will restrict WordPress from communicating with third-party systems. We recommend enabling this feature unless you have a specific need for it.

    \n

    Disable RSS and ATOM Feeds

    \n

    Prevent content scraping and specific attacks on your site by disabling RSS and ATOM feeds. Unless you have readers accessing your site via RSS readers, it is recommended to keep this feature enabled.

    \n

    Advanced XSS Protection

    \n

    Add an extra layer of website security against cross-site scripting (XSS) attacks by enabling Advanced XSS Protection, bolstering the overall security of your website.

    \n

    Delete Default Readme.html

    \n

    Eliminate potential vulnerabilities by deleting the default readme.txt file, which contains information about your website. By removing this file, you reduce the risk of your site being listed in vulnerable sites targeted by hackers.

    \n

    Login Security

    \n

    Custom Login Url

    \n

    Personalize your login URL to thwart potential attacks and create a strong entry point. Bid farewell to the default login URL and embrace a bespoke path of your choosing. Additionally, you have the freedom to modify the default sign-up URL as well.

    \n

    Login Access

    \n

    Restrict login page access to specific IP addresses or IP ranges, effectively thwarting malicious login attempts and deterring brute force attacks.

    \n

    2FA (Two-Factor Authentication)

    \n

    Immerse your website in an impenetrable shield of security with 2FA. This formidable feature demands that all admin users furnish a unique token, generated exclusively through the Google Authentication application, during the login process.

    \n

    Disable Common Usernames

    \n

    Don’t fall victim to predictable security breaches! The use of common usernames, such as ‘admin,’ poses a significant threat to the integrity of your website. Activate this option to disable the creation of common usernames. If any weak usernames already exist, we’ll prompt you to provide new, stronger alternatives.

    \n

    Limit Login Attempts

    \n

    Maintain control over unauthorized access attempts with Limit Login Attempts. Set a specific threshold for the number of login failures users can endure before consequences arise. After reaching the limit, the IP address associated with the unsuccessful login attempts will be blocked for one hour. Persistent failures will result in longer restrictions, starting with 24 hours and escalating to a week.

    \n

    ACTIVITY MONITORING

    \n

    Monitor your website and login page for unauthorized visitors and brute force attempts to prevent malicious actions

    \n

    Activity Log

    \n

    The Activity Log page provides you with a comprehensive view of the activities performed by registered, unknown, and blocked visitors. It allows you to closely monitor any suspicious behavior and take appropriate actions in case of a compromised user, plugin, or hacking attempt. You can leverage the quick tools available to swiftly block future attempts.

    \n

    Weekly Security Reports

    \n

    Receive a weekly traffic summary for your website directly to your inbox. This Weekly Security Report compiles data on both bot and human traffic, along with details about blocked login and visit attempts to proactively monitor traffic and promptly identify suspicious activity.

    \n

    POST-HACK ACTIONS

    \n

    Take immediate measures to protect your website if you suspect a compromise and prevent further damage. Here, you’ll find convenient solutions to address the situation effectively:

    \n

    Reinstall All Free Plugins

    \n

    In the event of a hack, utilizing the Reinstall All Free Plugins feature can help mitigate potential harm. This action reinstalls all of your free plugins, reducing the likelihood of additional exploits or the reuse of malicious code.

    \n

    Log Out All Users

    \n

    To prevent any further unauthorized activities by users or attackers, you can choose to log out all users instantly using the Log Out All Users feature.

    \n

    Force Password Reset

    \n

    By enforcing a password reset, you can ensure that all users are prompted to change their passwords during their next login. This not only strengthens the security of their accounts but also immediately logs out all currently logged-in users.

    \n

    Requirements

    \n
      \n
    • WordPress 4.7
    • \n
    • PHP 7.0
    • \n
    • Working .htaccess file
    • \n
    \n

    Data Collection

    \n

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    \n", "screenshots": "
    1. \"\"
    2. \"\"
    3. \"\"
    4. \"\"
    5. \"\"
    ", "installation": "

    Automatic Installation

    \n
      \n
    1. Go to Plugins -> Add New
    2. \n
    3. Search for “Security Optimizer by SiteGround”
    4. \n
    5. Click on the Install button under the Security Optimizer by SiteGround plugin
    6. \n
    7. Once the plugin is installed, click on the Activate plugin link
    8. \n
    \n

    Manual Installation

    \n
      \n
    1. Login to the WordPress admin panel and go to Plugins -> Add New
    2. \n
    3. Select the ‘Upload’ menu
    4. \n
    5. Click the ‘Choose File’ button and point your browser to the sg-security.zip file you’ve downloaded
    6. \n
    7. Click the ‘Install Now’ button
    8. \n
    9. Go to Plugins -> Installed Plugins and click the ‘Activate’ link under the WordPress Security Optimizer by SiteGround listing
    10. \n
    \n"}, "versions": {"1.5.2": "https://downloads.wordpress.org/plugin/sg-security.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/sg-security.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/sg-security.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/sg-security.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/sg-security.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/sg-security.1.5.7.zip", "trunk": "https://downloads.wordpress.org/plugin/sg-security.zip"}, "downloaded": 29858556, "description": "

    Bulletproof your website security in a few clicks against a range of security breaches, including brute-force attacks, malware threats and bots, with our free WordPress security plugin – Security Optimizer.

    \n

    Proactively monitor your site’s security to detect any suspicious activity and take immediate actions to protect your site and prevent further damage with these essential features:

    \n
      \n
    • Enable 2FA (Two-Factor Authentication) for an extra layer of website security
    • \n
    • Set Limit Login Attempts to deter malicious login attempts and brute-force attacks
    • \n
    • Change your default login URL to Custom Login URL to avoid attacks
    • \n
    • Activate Advanced XSS Protection to fortify your website against malicious attacks
    • \n
    • Lock and Protect System Folders to ensure no unauthorized or malicious scripts can be executed in your system folders
    • \n
    • Disable Themes & Plugins Editor to safeguard your website from unauthorized access via the WordPress editor
    • \n
    • Hide WordPress Version effortlessly, keeping it hidden from prying eyes
    • \n
    • Use Activity Log to monitor your site and quickly prevent malicious actions
    • \n
    • Post-Hack Actions to take immediate actions and prevent further damages
    • \n
    \n

    Developed by the website security experts at SiteGround and trusted by over 900,000 webmasters for its robust security shield and ease of use to safeguard WordPress applications from possible attacks on any hosting platform.

    \n

    AWARDS:

    \n

    Monster Awards 2022: Best WordPress Security Plugin 🥇
    \nMonster Awards 2021: Best WordPress Security Plugin 🥇

    \n

    Plugin Video

    \n\n

    Plugin Tutorial

    \n

    Unveil the vast array of features and unleash the full potential of our security plugin in our Security Optimizer Tutorial.

    \n

    SITE PROTECTION FEATURES

    \n

    Safeguard your WordPress application using our powerful site security toolset. Our comprehensive features are specifically designed to strengthen your website’s defenses against malware, exploits, and various malicious activities. With these tools at your disposal, you can ensure the utmost bot, malware and brute force protection for your website:

    \n

    Lock and Protect System Folders

    \n

    Ensure the maximum security for your application’s system folders by preventing the execution of any unauthorized or malicious scripts. The Lock and Protect System Folders feature acts as a powerful shield against potential threats.

    \n

    Hide WordPress Version

    \n

    Protect your website from mass attacks by hiding the WordPress version, which helps to mitigate version-specific vulnerabilities.

    \n

    Disable Themes & Plugins Editor

    \n

    Enhance the security of your WordPress admin area by disabling the Themes & Plugins Editor, preventing potential coding errors and unauthorized access through the editor.

    \n

    Disable XML-RPC

    \n

    Mitigate potential security risks by disabling the XML-RPC protocol, which has been exploited in various attacks. Please note that disabling XML-RPC will restrict WordPress from communicating with third-party systems. We recommend enabling this feature unless you have a specific need for it.

    \n

    Disable RSS and ATOM Feeds

    \n

    Prevent content scraping and specific attacks on your site by disabling RSS and ATOM feeds. Unless you have readers accessing your site via RSS readers, it is recommended to keep this feature enabled.

    \n

    Advanced XSS Protection

    \n

    Add an extra layer of website security against cross-site scripting (XSS) attacks by enabling Advanced XSS Protection, bolstering the overall security of your website.

    \n

    Delete Default Readme.html

    \n

    Eliminate potential vulnerabilities by deleting the default readme.txt file, which contains information about your website. By removing this file, you reduce the risk of your site being listed in vulnerable sites targeted by hackers.

    \n

    Login Security

    \n

    Custom Login Url

    \n

    Personalize your login URL to thwart potential attacks and create a strong entry point. Bid farewell to the default login URL and embrace a bespoke path of your choosing. Additionally, you have the freedom to modify the default sign-up URL as well.

    \n

    Login Access

    \n

    Restrict login page access to specific IP addresses or IP ranges, effectively thwarting malicious login attempts and deterring brute force attacks.

    \n

    2FA (Two-Factor Authentication)

    \n

    Immerse your website in an impenetrable shield of security with 2FA. This formidable feature demands that all admin users furnish a unique token, generated exclusively through the Google Authentication application, during the login process.

    \n

    Disable Common Usernames

    \n

    Don’t fall victim to predictable security breaches! The use of common usernames, such as ‘admin,’ poses a significant threat to the integrity of your website. Activate this option to disable the creation of common usernames. If any weak usernames already exist, we’ll prompt you to provide new, stronger alternatives.

    \n

    Limit Login Attempts

    \n

    Maintain control over unauthorized access attempts with Limit Login Attempts. Set a specific threshold for the number of login failures users can endure before consequences arise. After reaching the limit, the IP address associated with the unsuccessful login attempts will be blocked for one hour. Persistent failures will result in longer restrictions, starting with 24 hours and escalating to a week.

    \n

    ACTIVITY MONITORING

    \n

    Monitor your website and login page for unauthorized visitors and brute force attempts to prevent malicious actions

    \n

    Activity Log

    \n

    The Activity Log page provides you with a comprehensive view of the activities performed by registered, unknown, and blocked visitors. It allows you to closely monitor any suspicious behavior and take appropriate actions in case of a compromised user, plugin, or hacking attempt. You can leverage the quick tools available to swiftly block future attempts.

    \n

    Weekly Security Reports

    \n

    Receive a weekly traffic summary for your website directly to your inbox. This Weekly Security Report compiles data on both bot and human traffic, along with details about blocked login and visit attempts to proactively monitor traffic and promptly identify suspicious activity.

    \n

    POST-HACK ACTIONS

    \n

    Take immediate measures to protect your website if you suspect a compromise and prevent further damage. Here, you’ll find convenient solutions to address the situation effectively:

    \n

    Reinstall All Free Plugins

    \n

    In the event of a hack, utilizing the Reinstall All Free Plugins feature can help mitigate potential harm. This action reinstalls all of your free plugins, reducing the likelihood of additional exploits or the reuse of malicious code.

    \n

    Log Out All Users

    \n

    To prevent any further unauthorized activities by users or attackers, you can choose to log out all users instantly using the Log Out All Users feature.

    \n

    Force Password Reset

    \n

    By enforcing a password reset, you can ensure that all users are prompted to change their passwords during their next login. This not only strengthens the security of their accounts but also immediately logs out all currently logged-in users.

    \n

    Requirements

    \n
      \n
    • WordPress 4.7
    • \n
    • PHP 7.0
    • \n
    • Working .htaccess file
    • \n
    \n

    Data Collection

    \n

    Collection of technical data is optional and is listed here. This data is collected only for technical analysis, improvements and the possibility to contact the plugin user in case urgent issues need to be fixed (for example a critical security release that needs to be communicated to site owners). The plugin user can manage their preferences within the WP admin to control the collection of technical data. We advise opting in for this data collection, as it can enhance the plugin’s performance. You may find more information on data collection in our Plugins Privacy Notice.

    \n", "donate_link": "", "num_ratings": 149, "screenshots": {"1": {"src": "https://ps.w.org/sg-security/assets/screenshot-1.png?rev=2763283", "caption": ""}, "2": {"src": "https://ps.w.org/sg-security/assets/screenshot-2.png?rev=2763283", "caption": ""}, "3": {"src": "https://ps.w.org/sg-security/assets/screenshot-3.png?rev=2763283", "caption": ""}, "4": {"src": "https://ps.w.org/sg-security/assets/screenshot-4.png?rev=2763283", "caption": ""}, "5": {"src": "https://ps.w.org/sg-security/assets/screenshot-5.png?rev=2763283", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/sg-security/", "contributors": {"sstoqnov": {"avatar": "https://secure.gravatar.com/avatar/16c4db5a3e2228a8bd2115ceed9d4fbd784a9a884d3178ac1997e6f0f1598c6b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sstoqnov/", "display_name": "Stanimir Stoyanov"}, "hristo-sg": {"avatar": "https://secure.gravatar.com/avatar/e48e95eba4f298f73069e3545b63f3e6ac6c20104ff14e664afa6d787625918a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hristo-sg/", "display_name": "Hristo Pandjarov"}, "siteground": {"avatar": "https://secure.gravatar.com/avatar/9062b915cdcde9dbcc9a9462f2f7a030d40a76a3ed831d2a0973c30c02977a75?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/siteground/", "display_name": "SiteGround"}, "ignatggeorgiev": {"avatar": "https://secure.gravatar.com/avatar/44f0331e6cafbc984fe23d168888aea42eefaf2515e3ca8b7da80f736211d407?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ignatggeorgiev/", "display_name": "Ignat Georgiev"}, "stoyangeorgiev": {"avatar": "https://secure.gravatar.com/avatar/61bc666b338c57c8cfdab31b559c98507650a3ef3eb2687638de9318bff2e2c9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stoyangeorgiev/", "display_name": "Stoyan Georgiev"}, "elenachavdarova": {"avatar": "https://secure.gravatar.com/avatar/c5ec7321923222a44319137b21294bc18ce0456899974592c57718afac62cd80?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elenachavdarova/", "display_name": "Elena Chavdarova"}}, "last_updated": "2025-04-15 7:48am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/sg-security.1.5.7.zip", "author_profile": "https://profiles.wordpress.org/siteground/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fa41-7313-804f-49a2edd2ebab", "name": "Security Optimizer – The All-In-One Protection Plugin", "slug": "sg-security", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1744703280, "version": "1.5.7"}, "support_threads": 4, "requires_plugins": [], "short_description": "Secure your WordPress site from brute-force attacks, threats, malware, and bots. Free to use and easy to set up.", "author_block_count": 0, "author_block_rating": 92, "commercial_support_url": "", "support_threads_resolved": 3}'); -INSERT INTO public.plugins VALUES ('019a30c1-66ef-719c-b1c2-01e15409d42c', 'smart-slider-3', 'Smart Slider 3', 'Responsive slider plugin to create sliders in visual editor easily. Build beautiful image slider, layer slider, video slider, post slider, and more.', ' -

    Homepage | Features | Templates | Videos | Docs | Support

    -

    Smart Slider 3 is the most powerful and intuitive WordPress plugin to create sliders which was never possible before. Fully responsive, SEO optimized and works with any WordPress theme. Create beautiful sliders and tell stories without any code.

    -

    Live slide editor

    -

    A beautiful interface makes creating slides fast and efficient. The complete freedom to build what you want, the way you want. Edit your slides as you used to in page builders. Drop layers after each other and structure them with rows and columns.

    -

    Unique Layouts with Layers

    -

    Enhance your slider with the layers and make your site even more unique and grandiose. Every heading, text, image, button and video can be edited easily with the customization options. Change all the details that really matter in typography and style.

    -

    Responsive, Mobile-Ready Sliders

    -

    Switch your slider to a different device mode and optimize your content for the resolution. Your site can be enjoyed in any environment, be it a mobile, tablet or desktop.

    -

    Beautiful Sliders to Start

    -

    No tech skills are needed, just pick a slider template. It works like magic! Choose from a variety of beautiful templates or start with a blank Slider. The simple way to build every kind: image, layer, video and post slider.

    -

    Most powerful features

    -
      -
    • Default position – Edit your slides as you used to in page builders.
    • -
    • Absolute position – Drag and drop your layers anywhere on the slide with absolute layers.
    • -
    • Slide LibrarySlide Library provides several pre-made slides to kickstart your work.
    • -
    • Totally integrated with WordPress – Media manager, shortcode, widget, post permalinks, post editor.
    • -
    • Page Builder support – Elementor, Divi, Beaver Builder, Page Builder by SiteOrigin, Visual Composer, WPBakery Page Builder, Gutenberg and many more…
    • -
    • Totally responsive and touch friendly – Sliders can be enjoyed on any device, be it a mobile, tablet or desktop.
    • -
    • Dynamic Slides – Available source: WordPress posts
    • -
    • Customizable controls – Arrows, Bullets, Autoplay, Bar, Thumbnails, Shadows
    • -
    • Slide backgrounds – 9 Super smooth background animations
    • -
    • Layers – Build unique designs with 6 varied layers: Image, Heading, Text, Button, Vimeo, YouTube
    • -
    • Font and Style manager system – Change easily all the details that really matter in typography and style.
    • -
    • Template sliders15 sliders to start
    • -
    -

    Features:

    -
      -
    • Import and Export sliders
    • -
    • Intuitive slide creation: choose images, select WordPress Posts or add YouTube and Vimeo videos
    • -
    • Static overlay
    • -
    • Touch swipe, scroll, keyboard navigation
    • -
    • Full-width and boxed responsive layouts
    • -
    • Slide-switching animations: Horizontal, Vertical, Fade
    • -
    • Slide background animations
    • -
    • Autoplay timing options
    • -
    • Slider controls: Arrow, Bullet, Autoplay, Bar, Thumbnail and Shadow
    • -
    • SEO optimized
    • -
    • Layers: Image, Heading, Text, Button, Vimeo, YouTube
    • -
    • Layer snap in visual slide editor
    • -
    • Adaptive layer font sizing
    • -
    • Hide layers on specific devices
    • -
    • Slide thumbnail image
    • -
    • WordPress Multi Site compatible
    • -
    • Custom responsive breakpoints
    • -
    -

    Testimonials

    -
    -

    “I can heartily recommend the free version. It already provides more functionality than any other slider plugin – even many premium ones.” – Daniel Pataki – WPMU DEV

    -

    “Having tried more than a few WordPress slider plugins, both free and paid, I can honestly say that this is one of the best that I’ve ever tested…” – Daryn Collier – WPKube

    -

    “Since Smart Slider is free to use, I do not have to really stress how good a plugin it is because you can download it yourself and see for yourself.” – Kevin Muldoon

    -

    “This plugin can be used for much more than a simple slider – being able to create whole sections of your website.” – Oliver Dale – WPLift

    -

    “Taking all this into consideration we can safely say that Smart Slider 3 is one of the top WordPress slider plugins.” – Mark Zahra – WP Mayor

    -
    -

    Support

    -

    Smart Slider 3 is a community-driven project that would not be the same without your feedback. If you have any problem or feature request for this plugin, please feel free to contact us!

    -

    Smart Slider 3 Pro Features:

    -
      -
    • All template sliders
    • -
    • Layer animation builder
    • -
    • Live animation timeline
    • -
    • 18 extra layers
    • -
    • 2 extra slider types
    • -
    • Full page responsive layout
    • -
    • All generators for dynamic slides
    • -
    • Extra background animations (more than 54)
    • -
    • Built-in lightbox
    • -
    • Advanced controls and many more control presets
    • -
    • A ton of customization options
    • -
    • Premium support
    • -
    • Full list of features
    • -
    -

    Unlock Your Full Potential with Smart Slider 3 Pro

    -

    Dynamic slide sources in the FREE version

    -
      -
    • WordPress Posts: WordPress posts by Category and Tag filter or only the specified posts.
    • -
    -

    Dynamic slide sources in PRO version

    -
      -
    • WordPress Custom Posts: WordPress posts from custom post types by custom taxonomy filter or only the specified custom posts
    • -
    • WooCommerce slider from products: Woocommerce products by Category, Tag, Featured, In Stock and downloadable filter or only the specified products.
    • -
    • NextGEN Gallery: displays the images and related meta from the selected source gallery.
    • -
    • Events: Events by Category and Tag filter. Supported plugins: All-in-One Event Calendar, Events Manager, The Events Calendar
    • -
    • Image slider: displays the images and related meta from the selected source gallery. Supported plugins: Gallery by BestWebSoft, Photo Gallery by WD
    • -
    • Social dynamic sources: Twitter, Facebook, Flickr, Picasa, YouTube, Pinterest
    • -
    -

    Translations

    -
      -
    • English
    • -
    • Spanish (es_ES) 99%
    • -
    • Portuguese (Brasil) (pt_BR) 60%
    • -
    • Polish (pl_PL) 60%
    • -
    • Russian (ru_RU) 59%
    • -
    • Italian (it_IT) 55%
    • -
    • French (fr_FR) 50%
    • -
    • Hungarian (hu_HU) 44%
    • -
    • Traditional Chinese (zh_TW) 42%
    • -
    • Finnish (fi_FI) 39%
    • -
    • Japanese (ja_JP) 37%
    • -
    • German (de_DE) 31%
    • -
    -

    Is Smart Slider 3 the tool you’ve been looking for?

    -
      -
    • Come hang out in our Facebook Community for tips and inspiration.
    • -
    • Dive into our fun YouTube tutorials and supercharge your skills.
    • -
    • Show some love on WordPress with a rating to support us.
    • -
    • Get inspired daily on Twitter by following us.
    • -
    -', '3.5.1.29', 'Nextendweb', '5.0', '7.0', '6.8.3', 'https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.29.zip', '2015-11-12 00:00:00+00', '2025-07-22 08:43:00+00', 'https://profiles.wordpress.org/nextendweb/', 98, 1113, 3, 2, 900000, 21216201, 'https://smartslider3.com/', 'https://sites.fastspring.com/nextend/product/smartslider3donate', 'commercial', 'https://smartslider3.com/help/', 'https://wordpress.org/support/plugin/smart-slider-3/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Smart Slider 3", "slug": "smart-slider-3", "tags": {"slider": "slider", "image-slider": "image slider", "layer-slider": "layer slider", "wordpress-slider": "wordpress slider", "responsive-slider": "responsive slider"}, "added": "2015-11-12", "icons": {"1x": "https://ps.w.org/smart-slider-3/assets/icon.svg?rev=2307688", "svg": "https://ps.w.org/smart-slider-3/assets/icon.svg?rev=2307688"}, "author": "Nextendweb", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/smart-slider-3/assets/banner-772x250.png?rev=2974547", "high": "https://ps.w.org/smart-slider-3/assets/banner-1544x500.png?rev=2974547"}, "ratings": {"1": 22, "2": 12, "3": 5, "4": 18, "5": 1056}, "version": "3.5.1.29", "homepage": "https://smartslider3.com/", "requires": "5.0", "sections": {"faq": "\n
    \n1. How do I add the slider to my site?\n\n

    \n

    You can add your slider by shortcode or via the widget control panel or PHP shortcode. Watch the 🎥 Publishing tutorial video to learn more about the topic.

    \n

    \n
    \n2. Where can I reach the documentation?\n\n

    \n

    https://smartslider.helpscoutdocs.com/

    \n

    \n
    \n3. Where is Canvas mode?\n\n

    \n

    Canvas mode was renamed to Absolute. You can add Absolute positioned layers using the toggle at the Add panel, and switch a Default layer to Absolute at layer window > Style tab > Position.

    \n

    But we recommend working with Default positioned layers because the responsive behavior is better, and the slide building is much faster. Most layouts people want to create can be done with Default positioned layers only. Absolute positioned layers should only be used for decoration.

    \n

    Want to learn more about Absolute positioned layers? 🎥 Check out the tutorial video!

    \n

    \n
    \n4. Why is there an empty space where the slider should be?\n\n

    \n

    It means that there is a JavaScript error on your site which blocks other scripts(for example Smart Slider’s scripts). You can open up the browser debugger window with F12 button and check the console if it shows error or not. If you solve these errors Smart Slider should work fine.

    \n

    Usual problem is that you have the latest WordPress version, but your theme loads very old jQuery version (1.7 or older) and the WordPress admin bar throws a JavaScript error. In this case, you have to remove the old jQuery from your theme’s functions.php.

    \n

    If you are unable to solve these problems, feel free to contact us!

    \n

    \n
    \n5. What should I do when I experience any problem?\n\n

    \n

    Contact us!

    \n

    \n
    \n6. Is Smart Slider 3 is totally responsive?\n\n

    \n

    Smart Slider 3 is 100% responsive with each items, so it will fit perfectly into your page, regardless of the size of your desktop screen or device.

    \n

    Be sure you check out the tutorial video about the 🎥 Responsive Settings.

    \n

    \n
    \n7. Can I customize the fonts of the slider?\n\n

    \n

    Yes you can customize everything for every state. (Hover, normal) The slider comes with Google Web Font support, allowing you to pick from over a dozen font families. You can also use your own font by simply writing its name to the font family field. Check out our tutorial video to learn how to use custom fonts.

    \n

    \n
    \n8. Can I show multiple instances of slider on one page?\n\n

    \n

    Yes, you can use as many sliders on a page as you want. But you can only use one slider once.

    \n

    \n
    \n9. How to include a slider in a post or a page?\n\n

    \n

    [smartslider3 slider=Here comes the slider id]

    \n

    \n
    \n10. How to include a slider into header.php or other PHP files?\n\n

    \n

    <?php echo do_shortcode('[smartslider3 slider=Here comes the slider id]'); ?>

    \n

    \n
    \n11. Does Smart Slider support sites with SSL?\n\n

    \n

    Of course! Smart Slider use protocol relative urls which works fine on http:// and on https:// too.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very satisifed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jwed on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We have been using Smartslider for about 5 years in many projects. It has just gotten better with the years.
    Smartslider has a steep learning curve and sometimes you might get stuck om a detail. But support is excellent and it is quickly resolved if you dont figure it out by yourself.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Très satisfaisant

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nourredine2007 on September 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Pour peu qu''on prenne le temps de se familiarise avec SMARTSlider 3 Version Pro, il devient un outil fascinant et performant et sans aller jusqu''à se compliquer la tache avec js ou autre, il s''avère utile à tout développeur de site web

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best application and support ever

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy niosme on September 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best slider out there. The app contains no bugs its my main app i install on every site and the support always there when you need them.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Smart Slider is the best!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stevecook6275 on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve tried just about every carousel/slider plugin out there, Smart Slider is the absolute best. I love it! I would recommend it to anyone looking for a top notch, easy to use plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Flexible and easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy elimelight on August 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Although shortcode driven, there''s not much you can''t do with this.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Waste of time

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy websitetalkingheads on August 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Poor Documentation, hides features, way to complicated for the little it does.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    SEO friendly, needs better documentation or....

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy artbild on July 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hey guys, I just purchased the Smart Slider 3 plugin and installed it today. So far so good. But right after choosing a caroussel layout, the trouble started. It is impossible to remove the spacing between the slides. Landscape images do not get scaled correctly, after the second scroll the slides have huge spaced in between. 2 or 3 demo sliders for most common use cases, would be really helpful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hegenberg on July 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simply the best. I thanks all the Gods and Goddesses for it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great (pricing, customization, loading) will be my go-to

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Anonymous User (anonymized_23333692) on July 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is affordable and great to have!
    I seldomly post on reviews, but this plugin after a day of use I have to.

    \n\n\n\n
      \n
    1. Pricing: it is NOT A SUBSCRIPTION!!!!!!!!! OMG, subscription pricing has been a pain and it''s everywhere. To see a plugin where you pay per site once is a breath of fresh air and very welcoming.
    2. \n\n\n\n
    3. Customization: It gives the user good amount of customization to really take it to the next level. I wish I can copy paste some custom settings to the next, but so far it''s been a pleasure.
    4. \n\n\n\n
    5. Loading: It''s very light and fast!
    6. \n
    \n\n\n\n

    Overall, this will be my go to. I will be very happy to end some of my subscription to other site and replace it with this. Thank you!!! Keep up the good work. :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A delight to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy scottdot on July 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Smart Slider is one of the best overall plugins I''ve used. If I don''t know what some setting or parameter does, it offers good explanations. Best of all, it''s wildly responsive, fast, and fun to use. I''m spending a good chunk of my day building new sliders for a website and I wanted to share the love. Very much thinking about upgrading to Pro later this afternoon. Great work, Smart Slider team!

    \n
    \n
    \n", "changelog": "

    3.5.1.29 – 22. July 2025

    \n
      \n
    • Feature: webGL background animation image smoothing can be turned off using custom js codes.
    • \n
    • Fix: Vulnerability fix.
    • \n
    • Fix: Empty lines at Posts by IDs generator will be filtered out.
    • \n
    • Fix: PHP 8.2+ compatibility fixes.
    • \n
    • Fix: Vimeo layer, YouTube layer videos couldn’t be started in some cases.
    • \n
    \n

    3.5.1.28 – 19. May 2025

    \n
      \n
    • Feature: Accessibility improvements on bullets.
    • \n
    • Fix: Filtering out unnecessary data from WordPress post generators.
    • \n
    • Fix: Numpad enter triggers clicking actions too.
    • \n
    • Fix: Thumbnail images will use their settings given size in their width and height html attributes.
    • \n
    • Fix: On dynamic slides, the Youtube layer’s Cover image field turned its variable into the value.
    • \n
    \n

    3.5.1.27 – 20. February 2025

    \n
      \n
    • Feature: The latest background animation limitations are hardcoded now, to avoid wrong usage.
    • \n
    • Feature: Title attribute for slide thumbnail.
    • \n
    • Fix: At WordPress Posts generators taxonomies with the same name overwrote each other.
    • \n
    \n

    3.5.1.26 – 9. December 2024

    \n
      \n
    • Fix: Customizer breaks in some cases.
    • \n
    • Fix: Sliding main animation doesn’t moves slides together.
    • \n
    • Other: Black Friday sale notification removed.
    • \n
    \n

    3.5.1.25 – 21. November 2024

    \n
      \n
    • Feature: Improved accessibility.
    • \n
    • Other: Black Friday sale notification added.
    • \n
    \n

    3.5.1.24 – 30. September 2024

    \n
      \n
    • Feature: Hide layer when variable is not empty option at dynamic slides.
    • \n
    • Feature: Asset (css, js) injector code improved.
    • \n
    • Feature: Active thumbnails will get aria-current=”true” attribute.
    • \n
    • Feature: Container element of bullets will get role=”group” attribute.
    • \n
    • Feature: Aria-label option for the container element of bullets.
    • \n
    • Feature: Blockquote option for Heading layer.
    • \n
    • Fix: Some background animations are buggy in Chrome, so we rewrote them to use a different animation system.
    • \n
    • Fix: Post IDs option cleared the given post’s cache at every page visit.
    • \n
    • Fix: WordPress free installer will include unminified js and css files.
    • \n
    • Fix: Generic font family names won’t have quotemarks around them.
    • \n
    • Fix: Autoplay button didn’t have width and height attributes.
    • \n
    \n

    3.5.1.23 – 11. April 2024

    \n
      \n
    • Fix: At WordPress Posts generator if you have a meta data or ACF data with a name already used as a variable, it can get overwritten.
    • \n
    • Fix: Security improvements for image uploads.
    • \n
    • Fix: Only allow files with WordPress allowed mime types to be uploaded.
    • \n
    • Fix: The Resize and Convert to webp features could have issues with images from certain external servers.
    • \n
    \n

    3.5.1.22 – 27. February 2024

    \n
      \n
    • Feature: Youtube videos cannot be started until they fully loaded, but from now on, we will detect early click actions on them and try to start the video once it loaded, as long as it is not prevented by a browser limitation.
    • \n
    • Removed: Black Friday sale notification removed.
    • \n
    \n

    3.5.1.21 – 15. November 2023

    \n
      \n
    • Fix: Previous widget rendering fix undone. Our widget will render, even when the theme doesn’t supports it, because you can use widgets in themes that way too.
    • \n
    \n

    3.5.1.20 – 14. November 2023

    \n
      \n
    • Fix: WP Compress compatibility.
    • \n
    • Fix: Our widget won’t render, when the theme doesn’t supports it.
    • \n
    • Fix: YouTube layer’s video won’t start on mobiles when the video is started before the page completely loaded.
    • \n
    • Fix: Row and Column background colors can create an error message in PHP 8.1+, when their color codes only contain numbers.
    • \n
    • Fix: The path of some images created PHP errors.
    • \n
    • Fix: iOS devices opened parent element links twice, when a text layer was clicked on them.
    • \n
    • Feature: Iframe Title option for Vimeo layer.
    • \n
    • Other: Black Friday sale notification added.
    • \n
    • Other: Spanish translation update. Thanks Rodrigo!
    • \n
    • Removed: A fix for an old Safari bug won’t be needed anymore, as it got resolved quite a while ago.
    • \n
    \n

    3.5.1.19 – 14. August 2023

    \n
      \n
    • Fix: Some WordPress 6.3 block theme editors (site editor, widget manager or page editor) won’t load next to Smart Slider.
    • \n
    \n

    3.5.1.18 – 10. August 2023

    \n
      \n
    • Fix: WP Grid Builder conflict, which made WP Grid Builder’s checkbox filtering not work.
    • \n
    • Fix: Gutenberg compatibility for WordPress 6.3
    • \n
    • Fix: Extra mouse buttons (like “back” button) won’t open links in sliders any longer.
    • \n
    • Fix: PHP8 compatibility.
    • \n
    • Fix: Sliders did not show up on websites using Perfmatters plugin.
    • \n
    • Fix: Wrong slider titles were written out within SiteOrigin Page Builder.
    • \n
    • Fix: Sliders sometimes did not load on websites using WP Meteor plugin.
    • \n
    • Feature: The “Image Width” setting of arrows and autoplay buttons are now available in the Free version too.
    • \n
    • Feature: Playsinline attribute added to all videos, to avoid them being opened fullscreen by default on iOS devices.
    • \n
    \n

    3.5.1.17 – 12. June 2023

    \n
      \n
    • Feature: Google font list got updated.
    • \n
    • Feature: Norwegian language update.
    • \n
    • Fix: Jetpack conflict could cause 500 Internal Server Error, or PHP error message appear.
    • \n
    • Removed: JetPack Photon image optimizer option got deprecated, because it creates too many possible issues.
    • \n
    \n

    3.5.1.16 – 18. May 2023

    \n
      \n
    • Fix: Block themes only display shortcodes instead of sliders in WordPress 6.2.1.
    • \n
    • Fix: Beaver Builder row duplication issue, when Smart Slider is in the row.
    • \n
    \n

    3.5.1.15 – 12. May 2023

    \n
      \n
    • Feature: Database managing codes got updated.
    • \n
    • Feature: Norwegian translation.
    • \n
    • Feature: Hebrew translation.
    • \n
    • Fix: Gutenberg plugin conflict.
    • \n
    • Fix: PHP8.2.4+ compatibility code.
    • \n
    • Fix: Image layer alt tag and title was encoded twice.
    • \n
    • Fix: Show editor icon option did not work in Text Editor mode.
    • \n
    • Fix: Some database column length limitations got increased.
    • \n
    • Fix: Meta (FB, Instagram) image files don’t always have the extension, which is indicated in their filenames. This caused issues with the Resize option.
    • \n
    \n

    3.5.1.14 – 16. February 2023

    \n
      \n
    • Feature: PHP 8.2 compatibility.
    • \n
    • Fix: Touch JS codes won’t affect one slide sliders, for better scrolling experience.
    • \n
    • Fix: Shortcode sanitization to strengthen security.
    • \n
    • Other: Spanish translation update. Thanks Rodrigo!
    • \n
    \n

    3.5.1.13 – 30. January 2023

    \n
      \n
    • Feature: Google font list is updated.
    • \n
    • Feature: Youtube layer will support youtube-nocookie.com urls too. But you should note, that still the YouTube And Vimeo Privacy Enhanced Mode setting defines, whether your videos come from youtube.com or from youtube-nocookie.com!
    • \n
    • Feature: Private Vimeo url support for Lightbox.
    • \n
    • Fix: Not selecting a slider in Avada Builder could cause PHP errors.
    • \n
    • Fix: Compatibility fix for WoodMart theme.
    • \n
    • Fix: MySQL 8.0 compatibility fix, where “system” is a reserved keyword so we’ll no longer use it as a column name.
    • \n
    • Fix: Divi module changes ensure that Divi sets the proper slider. (You might need to re-pick your sliders, if you haven’t changed the default value at the Divi module, as in that case your slider was not saved.)
    • \n
    • Fix: Avada Builder compatibility fix to ensure that the slider loads properly into the builder.
    • \n
    • Fix: On the Smart Slider admin area the shortcode did not appear correctly when Gutenberg’s “edit slider” button was leading you to the slider settings page.
    • \n
    • Other: Russian translation update.
    • \n
    \n

    3.5.1.12 – 15. November 2022

    \n
      \n
    • Feature: New Slide Library theme: Nala.
    • \n
    • Fix: RankMath SEO compatibility that caused problems within the Media Library in certain configurations.
    • \n
    • Fix: The last column could be deleted from the row if the row had a nested layer causing errors.
    • \n
    • Fix: The notice at the Change Slider Type modal was fixed so it no longer writes out HTML code but actually bolds the texts.
    • \n
    • Fix: Output buffer fix to avoid WP-CLI issues.
    • \n
    • Fix: Ionos performance compatibility.
    • \n
    • Fix: Usercentrics cookie consent plugin compatibility.
    • \n
    • Fix: WP Rocket compatibility that makes Smart Slider automatically excluded from WP Rocket’s Delay JavaScript execution feature.
    • \n
    • Fix: Compatibility fix for Zoho CRM Lead Magnet plugin.
    • \n
    • Fix: Smart Slider will no longer break if CUSTOM_TAGS is defined.
    • \n
    • Fix: Default value is set to Smart Slider Divi module to ensure proper slider selection.
    • \n
    • Fix: Improved security to avoid Javascript codes from admin area fields.
    • \n
    \n

    3.5.1.11 – 03. October 2022

    \n
      \n
    • Feature: Notice, when NONCE_SALT constant is not defined.
    • \n
    • Feature: YouTube layer will support YouTube shorts URLs too.
    • \n
    • Feature: The Export at the Bulk Actions will no longer create a zip file when only one slider is exported.
    • \n
    • Feature: Notice when the Autoplay is enabled in a slider that contains a single slide.
    • \n
    • Fix: Improved security during slider import
    • \n
    • Fix: Analyze and Repair now fix auto_increment issues within the slider’s tables.
    • \n
    • Fix: Split by words advanced generator function caused PHP error, when the length of the word was shorter than the start value.
    • \n
    • Fix: Better specify Functions.php location to avoid problems in certain cases.
    • \n
    • Fix: Finish autoplay did not stop at last slide, when carousel was turned off.
    • \n
    • Fix: Improved check for minimum system requirements.
    • \n
    • Fix: Save Fonts Locally option at Google fonts didn’t work.
    • \n
    • Fix: ?ver query string added to the CSS file the Save Fonts Locally option generates.
    • \n
    • Other: The minimum WordPress version Smart Slider requires is now 5.0. (WordPress 6.x is supported, too.)
    • \n
    • Other: The Spanish translation is updated. Thanks, Rodrigo!
    • \n
    \n

    3.5.1.9 – 19. August 2022

    \n
      \n
    • Feature: Improved notice when the Autoplay is used on a single slide to avoid confusion.
    • \n
    • Feature: u tag is now allowed in text layer.
    • \n
    • Fix: PHP 8.1. compatibility fixes.
    • \n
    • Fix: Allow data protocol when Jetpack is active to avoid it removing the arrows and other base64 images.
    • \n
    • Fix: Major overhaul of the way the plugin deals with options. This should fix a some bugs and provide improved security.
    • \n
    • Other: Spanish translation updated. Thanks, Rodrigo!
    • \n
    • Other: Dutch translation updated. Thanks, Frank!
    • \n
    • Other: PHP related conflicts were renamed at the Debug Information to more accurately reflect the cause of the conflict.
    • \n
    \n

    3.5.1.7 – 26. May 2022

    \n
      \n
    • Fix: Major overhaul of the way the plugin deals with options. This should fix a some bugs and provide improved security. To enhance security the “JavaScript callbacks” option was removed. If you need to write custom codes to manipulate the slider follow this guide to learn how.
    • \n
    • Fix: Improved check for valid values at layer content and name.
    • \n
    • Fix: Aria-role attribute is renamed to role.
    • \n
    • Fix: UIPress.co compatibility.
    • \n
    • Fix: Grabbing cursor now properly displays when the slides are switching with mouse grabbing.
    • \n
    • Fix: Fix for a Deprecated: preg_match(): Passing null to parameter #4 error in rare cases.
    • \n
    • Fix: The CSS code that hides the Bullet thumbnail was strengthened to avoid 3rd party codes overriding it and messing up the layout.
    • \n
    • Fix: The style tag for the Slide CSS will only be added to the HTML if it has any content.
    • \n
    • Fix: The old default family, Montserrat is not used anymore at the backend so its call was removed.
    • \n
    • Fix: Elementor has deprecated the controls_registered method so from 3.6.0 and above we use the new register method to include the Smart Slider widget to Elementor.
    • \n
    • Fix: Compatibility fix for Divi on PHP 8.
    • \n
    • Other: Translation related improvements, including unifying texts that do the same action on different places.
    • \n
    • Other: Spanish translation is updated. Thanks, Rodrigo!
    • \n
    \n

    3.5.1.4 – 28. Feburary 2022

    \n
      \n
    • Feature: Save Fonts Locally option to cache Google Fonts.
    • \n
    • Fix: Updating from really old Smart Slider versions might caused a PHP notice to appear.
    • \n
    • Fix: Smart Slider element doesn’t work within Elementor Pro when WooCommerce is also installed on the website.
    • \n
    • Fix: Weglot plugin’s language switcher appeared in page builder created sliders.
    • \n
    • Fix: Mobile Firefox slide swiping didn’t worked well, as mobile Firefox won’t allow to stop page scroll any longer.
    • \n
    • Fix: Better error handling for cases when the WebP support is disabled on the server to avoid PHP errors.
    • \n
    • Fix: Dynamic slides didn’t accepted variables in color fields.
    • \n
    • Fix: WordPress posts generator code optimization and Elementor compatibility.
    • \n
    • Fix: n2-clear class added to the main div that contains the ss3-force-full-width and ss3-fullpage elements to make the Clear Before option work properly.
    • \n
    • Fix: Smart Slider display fixed in Tatsu builder.
    • \n
    • Fix: Compatibility fix for lower WordPress versions which use the classic widgets.
    • \n
    • Deprecated: Slider’s Inline JavaScript option.
    • \n
    • Other: Spanish translation updated. Thanks, Rodrigo!
    • \n
    • Other: Google font list updated with latest fonts
    • \n
    • Other: Links updated in the Help Section to point to more appropriate help articles.
    • \n
    \n

    3.5.1.3 – 18. January 2022

    \n
      \n
    • Feature: Pagination and Search options in the Dashboard.
    • \n
    • Feature: The variable selector is now available at the column and row background colors.
    • \n
    • Feature: We’ll use pointer cursor at the thumbnails to indicate that they’re clickable.
    • \n
    • Feature: Perfmatter compatibility improvements.
    • \n
    • Fix: Overflow hidden is added to vertical thumbnails to allow rounded borders.
    • \n
    • Fix: Firefox changed the default background color of the select tag, which creates less contrast between the text and background. We changed it back to white.
    • \n
    • Fix: The color picker allowed saving a 7 digit color code, which resulted a bad color.
    • \n
    • Fix: Margin and padding values are now translatable in the Slide editor UI.
    • \n
    • Fix: Optimize images option now works on full URLs.
    • \n
    • Fix: The YouTube layer didn’t always recognize the youtu.be URLs properly.
    • \n
    • Fix: Static Overlay background options caused error when the only slide in the slider is a Static Overlay.
    • \n
    • Fix: Smart Slider’s custom widget area will now properly display the publishing instructions.
    • \n
    • Fix: Background Blur could show up even if the fill mode was not set to Blur fit.
    • \n
    • Other: Spanish translation updated. Thanks, Rodrigo!
    • \n
    • Other: The es_ES.po and es_ES.mo renamed to es.po and es.mo respectively to support all Spanish languages.
    • \n
    \n

    3.5.1.2 – 18. November 2021

    \n
      \n
    • Feature: The old background animations are allowed again when the fill mode is not fill, but anything else.
    • \n
    • Feature: You can now customize the Loading animation delay time.
    • \n
    • Fix: Image layer box shadow now shows up in the Slide Editor.
    • \n
    • Fix: We fixed an error that happened because Elementor has deprecated the _content_template method we used to create our Elementor Widget.
    • \n
    • Fix: Compatibility fixes with Perfmatters.
    • \n
    • Fix: The old Smart Slider WordPress widget can be moved back to Elementor using the SMART_SLIDER_ELEMENTOR_WIDGET_ALLOWED constant. As a result the sliders won’t be missing after the 3.4.1.7 update.
    • \n
    • Fix: The slider resize didn’t always get triggered on mobile when the device was rotated.
    • \n
    • Fix: The When ended Go to next slide option will no longer trigger the Scroll to slider behavior at the video layers.
    • \n
    • Other: Dutch translation added. Thanks, Frank!
    • \n
    • Other: Spanish translation updated. Thanks, Rodrigo!
    • \n
    \n

    3.5.1.1 – 20. October 2021

    \n
      \n
    • Feature: Background blur option for the Blur fit fill mode.
    • \n
    • Fix: Divi Builder plugin has strong codes so we use a special ss-p tag to display the texts. An issue was fixed related to these ss-p tags that made them display incorrectly.
    • \n
    • Fix: Focus incorrectly stayed on the arrow after slide switching.
    • \n
    • Fix: Arrows could get highlighted in Safari.
    • \n
    • Other: Better handling of the translation files.
    • \n
    • Other: French translation added. Thanks, Jean-Francois!
    • \n
    \n

    3.5.1.0 – 5. October 2021

    \n
      \n
    • Fix: 100% wide image layer appeared wrong when it had a link on it.
    • \n
    • Fix: Text Scale option could create different result in Preview and Editor in extreme cases.
    • \n
    • Fix: Column calculation adjusted for better responsive accuracy.
    • \n
    • Fix: When the Autoplay is enabled and only one slide is available, this one slide is duplicated to allow the autoplay to work. From now on the dynamic slides are skipped from this process. If there’s a dynamic slide that displays a single slide only, that won’t be duplicated for the autoplay.
    • \n
    • Fix: Translate URL now works on the background image of the Content layer.
    • \n
    • Fix: We adjusted the strength of the CSS codes affecting the Thumbnail control’s images to avoid 3rd party codes hiding them.
    • \n
    • Fix: A wrong path could be generated for the resized thumbnail image at the backend in rare cases.
    • \n
    • Fix: Rank Math SEO integration adjusted to avoid possible JavaScript errors at custom post types.
    • \n
    • Other: Spanish translation has been updated. Thanks, Rodrigo!
    • \n
    \n

    3.5.0.11 – 13. September 2021

    \n
      \n
    • Feature: The “Block carousel” feature is now available for free users as well.
    • \n
    • Feature: Gutenberg block toolbar is available at the slider. Also, there’s an option to go to the slide editor directly from the block.
    • \n
    • Feature: Pressing enter on any control will trigger the control’s action, as if it was clicked.
    • \n
    • Fix: Force full width sliders weren’t always properly positioned in Divi.
    • \n
    • Fix: SVG paths were wrong in the HTML export of the slider.
    • \n
    • Fix: Fix for an output buffer problem related to Themeco Pro theme.
    • \n
    • Fix: Fix for a conflict between “Scroll To Slider” and “Use as Anchor > Smooth scroll” that created a weird scrolling.
    • \n
    • Fix: The image size box overlapped the thumbnail text on RTL UI.
    • \n
    • Fix: Long slider names are cropped when copied/duplicated, to ensure that the new slider can be created.
    • \n
    • Fix: PHP 8 compatibility fix to avoid Heading layers creating hdiv tag.
    • \n
    • Fix: On WordPress multisite installation only administrators can have unfiltered_html capability, which is required to be able to access the slider. We’ve modified the error message to reflect this.
    • \n
    • Fix: Some Google fonts contain space character, which wasn’t properly encoded.
    • \n
    • Fix: Minimum height CSS won’t be added if the value is 0 or smaller.
    • \n
    • Fix: We added 50MS timeout to HTMLImageElement.decode() as its promise wasn’t always resolved in Safari.
    • \n
    • Fix: Outer positioned controls could create scrollbar, especially on small screens.
    • \n
    • Removed: Google font subsets are now removed, as in a browser that supports unicode-range the subset is dynamically served, there’s no need to force it.
    • \n
    • Other: A couple of strings were not translate-able, which is now fixed. Want to translate Smart Slider?
    • \n
    \n

    3.5.0.10 – 21. June 2021

    \n
      \n
    • Feature: Smart Slider displays a preview image in Gutenberg’s Add Block panel
    • \n
    • Feature: New Google fonts added to the font suggestion list.
    • \n
    • Fix: Slide title and description are copped at Static Save to avoid reaching server limitation.
    • \n
    • Fix: From now on the Wrap After option won’t be available on non-fullwidth rows, as they break automatically based on the space they need.
    • \n
    • Fix: Smart Slider now properly appears on Google’s Mobile friendly test.
    • \n
    • Fix: Scale to left main animation didn’t appear properly in the Free version.
    • \n
    • Fix: Compatibility fix for Yandex.News Feed by Teplitsa which wrongly fetched certain slide data. From now on no part of the slider appears in their fetch.
    • \n
    • Fix: Text bar will display the HTML codes in the Slide title and description field again.
    • \n
    • Fix: Outer right control position was wrong on RTL.
    • \n
    • Fix: Better check for RankMath dependency, so it won’t be loaded on pages where RankMath doesn’t loads its codes.
    • \n
    • Fix: Outer left and right controls had wrong width. From now on they’ll have the same width as the slider.
    • \n
    • Fix: Themify builder conflict fixed with background videos
    • \n
    • Fix: The slider’s force fullwidth calculation could position the slider wrongly when the slider was placed into another “force fullwith” container.
    • \n
    • Fix: Error handling for cases when the Top or Bottom focus selector is invalid.
    • \n
    • Fix: Allow transparent color as hover background.
    • \n
    • Fix: Pixel bug on the bottom of the slide in certain cases.
    • \n
    • Fix: Z-index fixes for the Simple and Block type to avoid 3rd parties modify the z-index of the background images.
    • \n
    • Fix: Better error handling for cases when the installation didn’t run properly due to some database error.
    • \n
    • Fix: WP Bakery Frontend editor will display the slider again when Yoast is enabled.
    • \n
    • Fix: From now on the unfiltered_html capability is required to edit the slides on WordPress
    • \n
    \n

    3.5.0.9 – 10. June 2021

    \n
      \n
    • Feature: From now on your can set an Alt tag for the Slide Thumbnail.
    • \n
    • Fix: Absolute positioned layers didn’t rotate.
    • \n
    • Fix: Workaround adjusted for the Safari bug which makes non-fullwidth rows create unnecessary line wrap.
    • \n
    • Fix: Slider and slide title fields are sanitized.
    • \n
    • Fix: Arrow style didn’t work in preview.
    • \n
    • Fix: Empty background color caused PHP error.
    • \n
    • Fix: Force fullwidth slider might appeared offscreen in rare cases.
    • \n
    • Fix: Compatibility fix for Admin 2020 plugin.
    • \n
    • Fix: Slider flickered in Gutenberg editor in rare cases.
    • \n
    • Fix: Nested, not full width Absolute layer width couldn’t be changed.
    • \n
    • Other: Editor role no longer gets access to Smart Slider on new installations.
    • \n
    \n

    3.5.0.8 – 02. June 2021

    \n

    Warning: Smart Slider 3.5 is not backwards compatible! Before upgrading check the possible issues and their solutions you might see after updating to 3.5.

    \n
      \n
    • New: Speed improvements which help you make Smart Slider 3 pass Core Web Vitals.
    • \n
    • Removed: jQuery dependency is removed. From now on Smart Slider only uses vanilla JavaScript.
    • \n
    • Removed: px+ from padding and margin values. From now on everything will be fix px value.
    • \n
    • Removed: Non adaptive font resizing is removed, and from now on everything will be adaptive. If you need the adaptive scaling at the layers you created before the update which previously used non-adaptive scaling, turn on “Legacy Font Scale” at Slider settings > Developer tab.
    • \n
    • Feature: Async option for non-primary CSS files.
    • \n
    • Feature: Horizontal mouse wheel control option.
    • \n
    • Fix: Compatibility fix for Cachify plugin.
    • \n
    • Fix: Compatibility fix for WooCommerce Blocks plugin.
    • \n
    • Fix: Compatibility fix for A3 Lazy Loading plugin.
    • \n
    • Fix: Compatibility fix for Woodmart theme.
    • \n
    • Fix: Compatibility fix for Flatsome theme.
    • \n
    • Fix: Compatibility fix for Newspaper theme’s tagDiv Composer.
    • \n
    • Fix: LiteSpeed cache plugin’s Generate Critical CSS option.
    • \n
    • Fix: Twenty Seventeen theme conflict with Scroll to Slider option.
    • \n
    • Fix: Divi Builder plugin caused problems with the align and max width options.
    • \n
    • Fix: Fixes for RTL display that affected the Inner align, force full width calculation and arrow control positioning.
    • \n
    \n

    3.4.1.17 – 08. March 2021

    \n
      \n
    • Feature: Remove script type attributes
    • \n
    • Feature: Exclude certain Google fonts from loading
    • \n
    • Feature: Allow less than 1000ms slide duration values to override the autoplay duration.
    • \n
    • Fix: Compatibility with AMP for WP
    • \n
    • Fix: Polylang ajax issue
    • \n
    • Fix: WP Security Audit Log conflict
    • \n
    • Fix: Generator fill background color end
    • \n
    • Fix: WP Rocket 3.8.1 changes
    • \n
    • Fix: Mouse wheel events outside the slider
    • \n
    • Fix: Removal of jQuery deprecated functions
    • \n
    • Other: Simplified Chinese translation
    • \n
    \n

    3.4.1.16 – 18. January 2021

    \n
      \n
    • Fix: WP Rocket compatibility
    • \n
    • Fix: B tag line break in Chrome
    • \n
    \n

    3.4.1.15 – 13. January 2021

    \n
      \n
    • Feature: PHP 8 compatibility
    • \n
    • Fix: WordPress post generator dates
    • \n
    • Fix: Thumbnail hover switching
    • \n
    • Fix: WP Rocket compatibility
    • \n
    \n

    3.4.1.14 – 26. November 2020

    \n
      \n
    • Feature: Accessibility improvements
    • \n
    • Fix: WPRocket RocketCDN compatibility
    • \n
    • Fix: Jetpack lazy loading compatibility
    • \n
    • Fix: Elementor fix when no slider is selected
    • \n
    • Deprecated: PX+
    • \n
    \n

    3.4.1.13 – 11. November 2020

    \n
      \n
    • Fix: Themify themes output buffer issue
    • \n
    \n

    3.4.1.12 – 11. November 2020

    \n
      \n
    • Fix: Layer duplication
    • \n
    • Fix: Themify themes output buffer issue
    • \n
    • Fix: Remove sliders from AMP pages
    • \n
    • Other: Black Friday sale notice added
    • \n
    \n

    3.4.1.11 – 28. October 2020

    \n
      \n
    • Fix: Autoptimize lazy loading cause flickering background image
    • \n
    \n

    3.4.1.10 – 27. October 2020

    \n
      \n
    • Feature: Certain HTML tags are enabled in the Heading layer. See the full list of supported tags.
    • \n
    • Feature: Post slug variable for WordPress Post generator
    • \n
    • Fix: WP Rocket compatibility
    • \n
    • Fix: Alias switching
    • \n
    • Fix: Rename in layer list and Breakpoint value change in Safari
    • \n
    • Fix: Nested Absolute layers in column
    • \n
    • Fix: Output buffer for Speed Booster Pack cache
    • \n
    • Fix: Slider loading optimization
    • \n
    • Fix: Simply Exclude plugin added to conflict list.
    • \n
    • Fix: PageSpeed ninja plugin compatibility (enabled Gzip caused missing files.)
    • \n
    \n

    3.4.1.9 – 26. August 2020.

    \n
      \n
    • Feature: Placeholder uses Min height when its set
    • \n
    • Feature: BoldGrid Post and Page Builder compatibility
    • \n
    • Feature: Smart Slider 3 now renders the sliders via iframe in Brizy editor
    • \n
    • Fix: Clear device Keyboard Shortcuts
    • \n
    • Fix: Trashed sliders showed up in the dashboard in rare cases
    • \n
    • Fix: Slide Library remove localStorage slide cache to avoid quota exceeded errors.
    • \n
    • Fix: Text bar animates with correct opacity
    • \n
    • Fix: Firefox click with keyboard
    • \n
    • Fix: Beaver Builder compatibility
    • \n
    • Fix: Image variables might caused errors in a Dynamic slide
    • \n
    • Fix: table names changed for better JEvents compatibility
    • \n
    • Fix: Redux Framework compatibility
    • \n
    • Fix: Generator custom sized image variable names
    • \n
    • Fix: Parallax is disabled in Mac Safari to avoid browser issues
    • \n
    • Fix: Image box layer image vertical align
    • \n
    • Other: Google font list updated
    • \n
    \n

    3.4.1.8 – 10. June 2020.

    \n
      \n
    • Feature: Vimeo layer custom aspect ratio
    • \n
    • Feature: YouTube layer custom aspect ratio
    • \n
    • Fix: Iframe window of Smart Slider in Divi builder
    • \n
    • Fix: Iframe slider fix when load delayed
    • \n
    • Fix: Divi fix for shortcode
    • \n
    • Fix: Hide notice of Analytify in Slide Editor and preview
    • \n
    • Fix: Remove pixel snapping codes as it might cause Firefox shaking and Chrome does not need is since Chrome v75.
    • \n
    • Fix: Arrow control – Mirror with previous disabled fix
    • \n
    • Fix: Disabled arrows for types, where there was no disabled option earlier.
    • \n
    • Fix: Prevent opening multiple lightboxes at the same time
    • \n
    • Fix: Slider height when vertical thumbnail hidden
    • \n
    • Fix: Fix youtube cover image flicker
    • \n
    • Fix: Empty slide background image after saving a slide which was created in 3.3.x version
    • \n
    • Fix: Exclude Smart Slider images from A3 Lazy Load plugin to avoid problems
    • \n
    • Fix: Force iframe mode when HTTP_X_REQUESTED_WITH = swup
    • \n
    • Fix: Slide padding value spaces.
    • \n
    \n

    3.4.1.7 – 19. May 2020.

    \n
      \n
    • Fix: Horizontal bar is not showing
    • \n
    \n

    3.4.1.6 – 19. May 2020.

    \n
      \n
    • Warning: 3.4 version is not backwards compatible! After installing this version, you won’t be able to go back to 3.3.x.
    • \n
    • Smart Slider 3.4 no longer supports Internet Explorer browser at all!
    • \n
    • Feature: Content mode was renamed to Default and Canvas mode is now called Absolute.
    • \n
    • Feature: Completely redesigned UI
    • \n
    • Feature: Breakpoint system
    • \n
    • Feature: Nesting
    • \n
    • Feature: Layer list
    • \n
    • Feature: Focus selector for background images
    • \n
    • Feature: New Preview
    • \n
    • Feature: Contextual menu
    • \n
    • Feature: Orion theme updated for Slide Library
    • \n
    • Feature: More Slide Library templates are available for free users
    • \n
    • Feature: Block type available in Free version
    • \n
    • Feature: Slider trash
    • \n
    • Feature: Stop autoplay on added to the free version
    • \n
    • Feature: Hide controls on devices added to the free version
    • \n
    • Feature: Loading type options
    • \n
    • Feature: Sliders now render in Nimble Builder’s editor when their shortcode is used in the builder’s shortcode or rich text editor module
    • \n
    • Fix: WordPress Gutenberg editor language won’t change to English on non-English sites
    • \n
    • Fix: PHP 7.4 fixes
    • \n
    • Fix: Sliders will no longer run on pages which are optimized by AMP on WordPress – weeblrAMP CE
    • \n
    • Fix: Alias is removed from duplicated slider
    • \n
    • Fix: Compatibility with BuddyBoss theme
    • \n
    • Fix: Slider’s inline JavaScript – Into the slider
    • \n
    • Fix: Scroll on older iPad devices
    • \n
    • Fix: SG Optimizer compatibility (?ver= for assets)
    • \n
    • Fix: Slider not showing in the content in Thrive theme
    • \n
    • Fix: Essential Grid conflict
    • \n
    • Fix: Oxygen builder force iframe in editor
    • \n
    • Fix: Adding .intrinsic-ignore class to frontend iframes and videos to prevent TwentyTwenty bug
    • \n
    • Fix: Horizontal thumbnail JS error
    • \n
    • Fix: Updating from 3.3.x with an empty Max height will no longer cause 0px tall slider
    • \n
    • Fix: WordPress Multisite conflict with Network Media Library plugin
    • \n
    • Fix: WordPress Free line between slides during slide switching with dragging
    • \n
    • Fix: Thumbnail positioning width Minimum thumbnail count
    • \n
    • Fix: Slide background without background image in Layer window
    • \n
    • Fix: OceanWP notice removed from slide editor
    • \n
    • Fix: Cursor during canvas interactions at the Slide Editor
    • \n
    • Other: Gantry 4 Mootools conflict test added to Help Center
    • \n
    • Other: Debug info now shows opcache and opcache.revalidate_freq
    • \n
    \n

    3.3.28 – 25. March 2020.

    \n
      \n
    • Feature: Slide background image Focus X and Y accept variables
    • \n
    • Feature: Google Font list updated
    • \n
    • Fix: Alias slide switching
    • \n
    • Fix: Google Cloud Storage plugin compatibility
    • \n
    • Fix: YouTube layer uses the hqdefault as the cover image
    • \n
    • Fix: Jetpack Photon compatibility
    • \n
    • Fix: Slide manager thumbnail fix
    • \n
    \n

    3.3.27 – 12. February 2020.

    \n
      \n
    • Feature: Edge selector at Scroll to slider on user interaction
    • \n
    • Feature: Vimeo privacy enhanced mode
    • \n
    • Fix: Youtube video adding
    • \n
    • Fix: Wordfence array to string errors
    • \n
    • Fix: Twenty twenty theme video compatibility
    • \n
    • Fix: WP Rocket compatibility
    • \n
    • Fix: WordPress Post generator author URL and avatar image
    • \n
    • Fix: Exclude from OceanWP lightbox
    • \n
    • Fix: PHP 7.4.1 PHP notices fixed
    • \n
    \n

    3.3.26 – 8. January 2020.

    \n
      \n
    • Feature: Keyboard navigation detection improvement
    • \n
    • Feature: Control hover delay increased
    • \n
    • Feature: WordPress disable pointer events in iframe in page builders
    • \n
    • Fix: Multiselect CSS issue at generator settings
    • \n
    • Fix: MobileDetect issues in rare cases
    • \n
    • Fix: Slider loading in Elementor Popup
    • \n
    • Fix: wp_delete_site action is used on WordPress 5.1 or newer sites instead of the deprecated delete_blog
    • \n
    • Fix: YouTube video conflict with Revolution Slider
    • \n
    • Fix: Shape divider height
    • \n
    • Fix: imagesloaded library
    • \n
    • Fix: iPhone ligthbox scroll
    • \n
    • Fix: Rubenz theme AJAX compatibility
      \n…
    • \n
    \n", "description": "\n

    Homepage | Features | Templates | Videos | Docs | Support

    \n

    Smart Slider 3 is the most powerful and intuitive WordPress plugin to create sliders which was never possible before. Fully responsive, SEO optimized and works with any WordPress theme. Create beautiful sliders and tell stories without any code.

    \n

    Live slide editor

    \n

    A beautiful interface makes creating slides fast and efficient. The complete freedom to build what you want, the way you want. Edit your slides as you used to in page builders. Drop layers after each other and structure them with rows and columns.

    \n

    Unique Layouts with Layers

    \n

    Enhance your slider with the layers and make your site even more unique and grandiose. Every heading, text, image, button and video can be edited easily with the customization options. Change all the details that really matter in typography and style.

    \n

    Responsive, Mobile-Ready Sliders

    \n

    Switch your slider to a different device mode and optimize your content for the resolution. Your site can be enjoyed in any environment, be it a mobile, tablet or desktop.

    \n

    Beautiful Sliders to Start

    \n

    No tech skills are needed, just pick a slider template. It works like magic! Choose from a variety of beautiful templates or start with a blank Slider. The simple way to build every kind: image, layer, video and post slider.

    \n

    Most powerful features

    \n
      \n
    • Default position – Edit your slides as you used to in page builders.
    • \n
    • Absolute position – Drag and drop your layers anywhere on the slide with absolute layers.
    • \n
    • Slide LibrarySlide Library provides several pre-made slides to kickstart your work.
    • \n
    • Totally integrated with WordPress – Media manager, shortcode, widget, post permalinks, post editor.
    • \n
    • Page Builder support – Elementor, Divi, Beaver Builder, Page Builder by SiteOrigin, Visual Composer, WPBakery Page Builder, Gutenberg and many more…
    • \n
    • Totally responsive and touch friendly – Sliders can be enjoyed on any device, be it a mobile, tablet or desktop.
    • \n
    • Dynamic Slides – Available source: WordPress posts
    • \n
    • Customizable controls – Arrows, Bullets, Autoplay, Bar, Thumbnails, Shadows
    • \n
    • Slide backgrounds – 9 Super smooth background animations
    • \n
    • Layers – Build unique designs with 6 varied layers: Image, Heading, Text, Button, Vimeo, YouTube
    • \n
    • Font and Style manager system – Change easily all the details that really matter in typography and style.
    • \n
    • Template sliders15 sliders to start
    • \n
    \n

    Features:

    \n
      \n
    • Import and Export sliders
    • \n
    • Intuitive slide creation: choose images, select WordPress Posts or add YouTube and Vimeo videos
    • \n
    • Static overlay
    • \n
    • Touch swipe, scroll, keyboard navigation
    • \n
    • Full-width and boxed responsive layouts
    • \n
    • Slide-switching animations: Horizontal, Vertical, Fade
    • \n
    • Slide background animations
    • \n
    • Autoplay timing options
    • \n
    • Slider controls: Arrow, Bullet, Autoplay, Bar, Thumbnail and Shadow
    • \n
    • SEO optimized
    • \n
    • Layers: Image, Heading, Text, Button, Vimeo, YouTube
    • \n
    • Layer snap in visual slide editor
    • \n
    • Adaptive layer font sizing
    • \n
    • Hide layers on specific devices
    • \n
    • Slide thumbnail image
    • \n
    • WordPress Multi Site compatible
    • \n
    • Custom responsive breakpoints
    • \n
    \n

    Testimonials

    \n
    \n

    “I can heartily recommend the free version. It already provides more functionality than any other slider plugin – even many premium ones.” – Daniel Pataki – WPMU DEV

    \n

    “Having tried more than a few WordPress slider plugins, both free and paid, I can honestly say that this is one of the best that I’ve ever tested…” – Daryn Collier – WPKube

    \n

    “Since Smart Slider is free to use, I do not have to really stress how good a plugin it is because you can download it yourself and see for yourself.” – Kevin Muldoon

    \n

    “This plugin can be used for much more than a simple slider – being able to create whole sections of your website.” – Oliver Dale – WPLift

    \n

    “Taking all this into consideration we can safely say that Smart Slider 3 is one of the top WordPress slider plugins.” – Mark Zahra – WP Mayor

    \n
    \n

    Support

    \n

    Smart Slider 3 is a community-driven project that would not be the same without your feedback. If you have any problem or feature request for this plugin, please feel free to contact us!

    \n

    Smart Slider 3 Pro Features:

    \n
      \n
    • All template sliders
    • \n
    • Layer animation builder
    • \n
    • Live animation timeline
    • \n
    • 18 extra layers
    • \n
    • 2 extra slider types
    • \n
    • Full page responsive layout
    • \n
    • All generators for dynamic slides
    • \n
    • Extra background animations (more than 54)
    • \n
    • Built-in lightbox
    • \n
    • Advanced controls and many more control presets
    • \n
    • A ton of customization options
    • \n
    • Premium support
    • \n
    • Full list of features
    • \n
    \n

    Unlock Your Full Potential with Smart Slider 3 Pro

    \n

    Dynamic slide sources in the FREE version

    \n
      \n
    • WordPress Posts: WordPress posts by Category and Tag filter or only the specified posts.
    • \n
    \n

    Dynamic slide sources in PRO version

    \n
      \n
    • WordPress Custom Posts: WordPress posts from custom post types by custom taxonomy filter or only the specified custom posts
    • \n
    • WooCommerce slider from products: Woocommerce products by Category, Tag, Featured, In Stock and downloadable filter or only the specified products.
    • \n
    • NextGEN Gallery: displays the images and related meta from the selected source gallery.
    • \n
    • Events: Events by Category and Tag filter. Supported plugins: All-in-One Event Calendar, Events Manager, The Events Calendar
    • \n
    • Image slider: displays the images and related meta from the selected source gallery. Supported plugins: Gallery by BestWebSoft, Photo Gallery by WD
    • \n
    • Social dynamic sources: Twitter, Facebook, Flickr, Picasa, YouTube, Pinterest
    • \n
    \n

    Translations

    \n
      \n
    • English
    • \n
    • Spanish (es_ES) 99%
    • \n
    • Portuguese (Brasil) (pt_BR) 60%
    • \n
    • Polish (pl_PL) 60%
    • \n
    • Russian (ru_RU) 59%
    • \n
    • Italian (it_IT) 55%
    • \n
    • French (fr_FR) 50%
    • \n
    • Hungarian (hu_HU) 44%
    • \n
    • Traditional Chinese (zh_TW) 42%
    • \n
    • Finnish (fi_FI) 39%
    • \n
    • Japanese (ja_JP) 37%
    • \n
    • German (de_DE) 31%
    • \n
    \n

    Is Smart Slider 3 the tool you’ve been looking for?

    \n
      \n
    • Come hang out in our Facebook Community for tips and inspiration.
    • \n
    • Dive into our fun YouTube tutorials and supercharge your skills.
    • \n
    • Show some love on WordPress with a rating to support us.
    • \n
    • Get inspired daily on Twitter by following us.
    • \n
    \n", "screenshots": "
    1. \"User-friendly

      User-friendly dashboard in our slider plugin for seamless management.

    2. \"Effortlessly

      Effortlessly customize your WordPress slider with our intuitive settings page.

    3. \"Create

      Create captivating slides with ease, using our WordPress slider''s beginner-friendly editing tools.

    4. \"Enhance

      Enhance your site with our FREE full-width responsive slider, featuring gradients and layers.

    5. \"Discover

      Discover our FREE, easy-to-use image slider with captions and navigation arrows.

    6. \"Explore

      Explore our FREE Thumbnail Image Slider – a visually engaging addition to your website.

    7. \"Experience

      Experience the FREE version''s dynamic Image Slider with a captivating static slide.

    8. \"Enhance

      Enhance your site with our FREE Full-Width Content Post Slider.

    9. \"Enhance

      Enhance your site with our FREE Layer Slider''s stylish layers for a better user experience.

    10. \"\"
    ", "installation": "

    Check our official documentation for more information

    \n

    Automatic installation

    \n
      \n
    1. Search for Smart Slider 3 through ‘Plugins > Add New’ interface.
    2. \n
    3. Find the plugin box of Smart Slider 3 and click on the ‘Install Now’ button.
    4. \n
    5. Then activate the Smart Slider 3 plugin.
    6. \n
    7. Create a new slider: Click on the ‘Smart Slider’ menu, click on the create slider button. Then you can add images and videos as slide and you can customize your slides with layers.
    8. \n
    9. Then copy the shortcode from the Publish slider box and paste it into a post or a page.
    10. \n
    \n

    Manual installation

    \n
      \n
    1. Download Smart Slider 3
    2. \n
    3. Upload the Smart Slider 3 through ‘Plugins > Add New > Upload’ interface or upload smart-slider-3 folder to the ‘/wp-content/plugins/’ directory.
    4. \n
    5. Activate the Smart Slider 3 plugin through the ‘Plugins’ menu in WordPress.
    6. \n
    7. Create a new slider: Click on the ‘Smart Slider’ menu, click on the create slider button. Then you can add images and videos as slide and you can customize your slides with layers.
    8. \n
    9. Then copy the shortcode from the Publish slider box and paste it into a post or a page.
    10. \n
    \n"}, "versions": {"3.1.6": "https://downloads.wordpress.org/plugin/smart-slider-3.3.1.6.zip", "3.2.4": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.6.zip", "3.2.8": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.9.zip", "3.3.1": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.4.zip", "3.3.6": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.7.zip", "3.3.8": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.8.zip", "3.3.9": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.9.zip", "trunk": "https://downloads.wordpress.org/plugin/smart-slider-3.zip", "3.0.37": "https://downloads.wordpress.org/plugin/smart-slider-3.3.0.37.zip", "3.1.10": "https://downloads.wordpress.org/plugin/smart-slider-3.3.1.10.zip", "3.2.10": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.10.zip", "3.2.12": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.12.zip", "3.2.13": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.13.zip", "3.2.14": "https://downloads.wordpress.org/plugin/smart-slider-3.3.2.14.zip", "3.3.10": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.10.zip", "3.3.11": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.11.zip", "3.3.12": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.12.zip", "3.3.13": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.13.zip", "3.3.15": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.15.zip", "3.3.18": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.18.zip", "3.3.20": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.20.zip", "3.3.21": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.21.zip", "3.3.22": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.22.zip", "3.3.23": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.23.zip", "3.3.24": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.24.zip", "3.3.25": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.25.zip", "3.3.26": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.26.zip", "3.3.27": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.27.zip", "3.3.28": "https://downloads.wordpress.org/plugin/smart-slider-3.3.3.28.zip", "3.4.1.6": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.6.zip", "3.4.1.7": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.7.zip", "3.4.1.8": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.8.zip", "3.4.1.9": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.9.zip", "3.5.0.8": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.0.8.zip", "3.5.0.9": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.0.9.zip", "3.5.1.0": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.0.zip", "3.5.1.1": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.1.zip", "3.5.1.2": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.2.zip", "3.5.1.3": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.3.zip", "3.5.1.4": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.4.zip", "3.5.1.7": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.7.zip", "3.5.1.9": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.9.zip", "3.4.1.10": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.10.zip", "3.4.1.11": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.11.zip", "3.4.1.12": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.12.zip", "3.4.1.13": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.13.zip", "3.4.1.14": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.14.zip", "3.4.1.15": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.15.zip", "3.4.1.16": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.16.zip", "3.4.1.17": "https://downloads.wordpress.org/plugin/smart-slider-3.3.4.1.17.zip", "3.5.0.10": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.0.10.zip", "3.5.0.11": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.0.11.zip", "3.5.1.11": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.11.zip", "3.5.1.12": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.12.zip", "3.5.1.13": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.13.zip", "3.5.1.14": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.14.zip", "3.5.1.15": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.15.zip", "3.5.1.16": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.16.zip", "3.5.1.17": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.17.zip", "3.5.1.18": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.18.zip", "3.5.1.19": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.19.zip", "3.5.1.21": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.21.zip", "3.5.1.23": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.23.zip", "3.5.1.24": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.24.zip", "3.5.1.25": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.25.zip", "3.5.1.26": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.26.zip", "3.5.1.27": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.27.zip", "3.5.1.28": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.28.zip", "3.5.1.29": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.29.zip"}, "downloaded": 21216201, "description": "\n

    Homepage | Features | Templates | Videos | Docs | Support

    \n

    Smart Slider 3 is the most powerful and intuitive WordPress plugin to create sliders which was never possible before. Fully responsive, SEO optimized and works with any WordPress theme. Create beautiful sliders and tell stories without any code.

    \n

    Live slide editor

    \n

    A beautiful interface makes creating slides fast and efficient. The complete freedom to build what you want, the way you want. Edit your slides as you used to in page builders. Drop layers after each other and structure them with rows and columns.

    \n

    Unique Layouts with Layers

    \n

    Enhance your slider with the layers and make your site even more unique and grandiose. Every heading, text, image, button and video can be edited easily with the customization options. Change all the details that really matter in typography and style.

    \n

    Responsive, Mobile-Ready Sliders

    \n

    Switch your slider to a different device mode and optimize your content for the resolution. Your site can be enjoyed in any environment, be it a mobile, tablet or desktop.

    \n

    Beautiful Sliders to Start

    \n

    No tech skills are needed, just pick a slider template. It works like magic! Choose from a variety of beautiful templates or start with a blank Slider. The simple way to build every kind: image, layer, video and post slider.

    \n

    Most powerful features

    \n
      \n
    • Default position – Edit your slides as you used to in page builders.
    • \n
    • Absolute position – Drag and drop your layers anywhere on the slide with absolute layers.
    • \n
    • Slide LibrarySlide Library provides several pre-made slides to kickstart your work.
    • \n
    • Totally integrated with WordPress – Media manager, shortcode, widget, post permalinks, post editor.
    • \n
    • Page Builder support – Elementor, Divi, Beaver Builder, Page Builder by SiteOrigin, Visual Composer, WPBakery Page Builder, Gutenberg and many more…
    • \n
    • Totally responsive and touch friendly – Sliders can be enjoyed on any device, be it a mobile, tablet or desktop.
    • \n
    • Dynamic Slides – Available source: WordPress posts
    • \n
    • Customizable controls – Arrows, Bullets, Autoplay, Bar, Thumbnails, Shadows
    • \n
    • Slide backgrounds – 9 Super smooth background animations
    • \n
    • Layers – Build unique designs with 6 varied layers: Image, Heading, Text, Button, Vimeo, YouTube
    • \n
    • Font and Style manager system – Change easily all the details that really matter in typography and style.
    • \n
    • Template sliders15 sliders to start
    • \n
    \n

    Features:

    \n
      \n
    • Import and Export sliders
    • \n
    • Intuitive slide creation: choose images, select WordPress Posts or add YouTube and Vimeo videos
    • \n
    • Static overlay
    • \n
    • Touch swipe, scroll, keyboard navigation
    • \n
    • Full-width and boxed responsive layouts
    • \n
    • Slide-switching animations: Horizontal, Vertical, Fade
    • \n
    • Slide background animations
    • \n
    • Autoplay timing options
    • \n
    • Slider controls: Arrow, Bullet, Autoplay, Bar, Thumbnail and Shadow
    • \n
    • SEO optimized
    • \n
    • Layers: Image, Heading, Text, Button, Vimeo, YouTube
    • \n
    • Layer snap in visual slide editor
    • \n
    • Adaptive layer font sizing
    • \n
    • Hide layers on specific devices
    • \n
    • Slide thumbnail image
    • \n
    • WordPress Multi Site compatible
    • \n
    • Custom responsive breakpoints
    • \n
    \n

    Testimonials

    \n
    \n

    “I can heartily recommend the free version. It already provides more functionality than any other slider plugin – even many premium ones.” – Daniel Pataki – WPMU DEV

    \n

    “Having tried more than a few WordPress slider plugins, both free and paid, I can honestly say that this is one of the best that I’ve ever tested…” – Daryn Collier – WPKube

    \n

    “Since Smart Slider is free to use, I do not have to really stress how good a plugin it is because you can download it yourself and see for yourself.” – Kevin Muldoon

    \n

    “This plugin can be used for much more than a simple slider – being able to create whole sections of your website.” – Oliver Dale – WPLift

    \n

    “Taking all this into consideration we can safely say that Smart Slider 3 is one of the top WordPress slider plugins.” – Mark Zahra – WP Mayor

    \n
    \n

    Support

    \n

    Smart Slider 3 is a community-driven project that would not be the same without your feedback. If you have any problem or feature request for this plugin, please feel free to contact us!

    \n

    Smart Slider 3 Pro Features:

    \n
      \n
    • All template sliders
    • \n
    • Layer animation builder
    • \n
    • Live animation timeline
    • \n
    • 18 extra layers
    • \n
    • 2 extra slider types
    • \n
    • Full page responsive layout
    • \n
    • All generators for dynamic slides
    • \n
    • Extra background animations (more than 54)
    • \n
    • Built-in lightbox
    • \n
    • Advanced controls and many more control presets
    • \n
    • A ton of customization options
    • \n
    • Premium support
    • \n
    • Full list of features
    • \n
    \n

    Unlock Your Full Potential with Smart Slider 3 Pro

    \n

    Dynamic slide sources in the FREE version

    \n
      \n
    • WordPress Posts: WordPress posts by Category and Tag filter or only the specified posts.
    • \n
    \n

    Dynamic slide sources in PRO version

    \n
      \n
    • WordPress Custom Posts: WordPress posts from custom post types by custom taxonomy filter or only the specified custom posts
    • \n
    • WooCommerce slider from products: Woocommerce products by Category, Tag, Featured, In Stock and downloadable filter or only the specified products.
    • \n
    • NextGEN Gallery: displays the images and related meta from the selected source gallery.
    • \n
    • Events: Events by Category and Tag filter. Supported plugins: All-in-One Event Calendar, Events Manager, The Events Calendar
    • \n
    • Image slider: displays the images and related meta from the selected source gallery. Supported plugins: Gallery by BestWebSoft, Photo Gallery by WD
    • \n
    • Social dynamic sources: Twitter, Facebook, Flickr, Picasa, YouTube, Pinterest
    • \n
    \n

    Translations

    \n
      \n
    • English
    • \n
    • Spanish (es_ES) 99%
    • \n
    • Portuguese (Brasil) (pt_BR) 60%
    • \n
    • Polish (pl_PL) 60%
    • \n
    • Russian (ru_RU) 59%
    • \n
    • Italian (it_IT) 55%
    • \n
    • French (fr_FR) 50%
    • \n
    • Hungarian (hu_HU) 44%
    • \n
    • Traditional Chinese (zh_TW) 42%
    • \n
    • Finnish (fi_FI) 39%
    • \n
    • Japanese (ja_JP) 37%
    • \n
    • German (de_DE) 31%
    • \n
    \n

    Is Smart Slider 3 the tool you’ve been looking for?

    \n
      \n
    • Come hang out in our Facebook Community for tips and inspiration.
    • \n
    • Dive into our fun YouTube tutorials and supercharge your skills.
    • \n
    • Show some love on WordPress with a rating to support us.
    • \n
    • Get inspired daily on Twitter by following us.
    • \n
    \n", "donate_link": "https://sites.fastspring.com/nextend/product/smartslider3donate", "num_ratings": 1113, "screenshots": {"1": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-1.png?rev=2974547", "caption": "User-friendly dashboard in our slider plugin for seamless management."}, "2": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-2.png?rev=2974547", "caption": "Effortlessly customize your WordPress slider with our intuitive settings page."}, "3": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-3.png?rev=2974547", "caption": "Create captivating slides with ease, using our WordPress slider''s beginner-friendly editing tools."}, "4": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-4.png?rev=2974547", "caption": "Enhance your site with our FREE full-width responsive slider, featuring gradients and layers."}, "5": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-5.png?rev=2974547", "caption": "Discover our FREE, easy-to-use image slider with captions and navigation arrows."}, "6": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-6.png?rev=2974547", "caption": "Explore our FREE Thumbnail Image Slider – a visually engaging addition to your website."}, "7": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-7.png?rev=2974547", "caption": "Experience the FREE version''s dynamic Image Slider with a captivating static slide."}, "8": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-8.png?rev=2974547", "caption": "Enhance your site with our FREE Full-Width Content Post Slider."}, "9": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-9.png?rev=2974547", "caption": "Enhance your site with our FREE Layer Slider''s stylish layers for a better user experience."}, "10": {"src": "https://ps.w.org/smart-slider-3/assets/screenshot-10.png?rev=2974547", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/smart-slider-3/", "contributors": {"nextendweb": {"avatar": "https://secure.gravatar.com/avatar/1b8dc77ecf0638ffa4405990f13eee857003536f5e0361fd89a6866aca551ee3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nextendweb/", "display_name": "Nextendweb"}}, "last_updated": "2025-07-22 8:43am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/smart-slider-3.3.5.1.29.zip", "author_profile": "https://profiles.wordpress.org/nextendweb/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-fab5-705f-adf9-6e8e56a6ee67", "name": "Smart Slider 3", "slug": "smart-slider-3", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1753173780, "version": "3.5.1.29"}, "support_threads": 3, "requires_plugins": [], "short_description": "Responsive slider plugin to create sliders in visual editor easily. Build beautiful image slider, layer slider, video slider, post slider, and more.", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "https://smartslider3.com/help/", "support_threads_resolved": 2}'); -INSERT INTO public.plugins VALUES ('019a30c1-66fa-735c-ba0f-b29e5bcf4c84', 'sucuri-scanner', 'Sucuri Security – Auditing, Malware Scanner and Security Hardening', 'The Sucuri WordPress Security plugin is a security toolset for security integrity monitoring, malware detection and security hardening.', '

    At Sucuri, we are dedicated to keeping your website safe and secure. With a focus on protection and monitoring, we offer solutions that help you stay ahead of potential threats for your WordPress site.

    -

    Our services include everything from malware detection to performance optimization, all designed to give you peace of mind.

    -

    We understand the importance of your online presence and are here to support you every step of the way. Join us, and let’s work together to ensure your website remains secure and resilient.

    -

    The Sucuri Security Monitoring Plugin is designed to safeguard your WordPress site with ease and reliability. Our plugin offers a range of essential security features, including:

    -
      -
    • Security Activity Auditing: Keep track of every security-related event within your WordPress environment.
    • -
    • File Integrity Monitoring: Detect unauthorized changes to your files and protect your site from potential vulnerabilities.
    • -
    • Remote Malware Scanning: Regularly scan your site for malware with our remote scanner to ensure it’s clean and secure.
    • -
    • Blocklist Monitoring: Receive alerts if your site is blocklisted by any major services, allowing for quick resolution.
    • -
    • Security Hardening: Implement recommended security practices to fortify your site against threats.
    • -
    • Post-Hack Security Actions: If the worst happens, our plugin helps you recover your site easily.
    • -
    -

    With Sucuri, you can focus on what matters most—growing your website—while we handle the security. Our feature set provides a clear view of your site’s status, making it easy to manage, monitor and take action.

    -

    Contributors & Maintenance Notice

    -

    Our dedicated team of engineers and security analysts is continually working to enhance the Sucuri Security Monitoring Plugin.

    -

    We provide regular updates, address bugs, and actively incorporate user feedback to ensure your WordPress site maintains its highest security stance. Our growth roadmap underscores our commitment to keeping you protected against emerging threats.

    -

    To support you further, we offer a variety of resources, including prompt responses for the forum, our website’s various content types, and an extensive knowledge base.

    -

    Our content is designed to help you maximize your plugin feature usage and benefits with the support you need.

    -

    If you want to be ahead of possible threats and keep up-to-date with Plugin updates, subscribe to our content here.

    -

    Introducing the Sucuri Firewall + WordPress Security Plugin

    -

    We’re excited to introduce the Sucuri Firewall + WordPress Security Plugin, designed for those who seek advanced protection for their WordPress sites.

    -

    Building upon our trusted free plugin, this premium offering provides a robust suite of features to ensure comprehensive security and peace of mind.

    -

    Key features include:
    -* Web Application Firewall (WAF): Protect your site from malicious traffic with our powerful firewall solution.
    -* Brute Force Protection: Safeguard your site against unauthorized login attempts.
    -* Brute Force Audit & Reporting: Gain insights into login attempts with detailed auditing and reporting.
    -* DDoS Mitigation: Maintain site availability even during targeted attacks.
    -* Core Vulnerabilities Scanning: Identify and address security weaknesses in WordPress core files.
    -* Plugins Vulnerability Scanning: Ensure your installed plugins are secure and up to date.
    -* Themes Vulnerability Scanning: Protect your site by scanning for vulnerabilities in installed themes.
    -* PHP Vulnerability Scanning: Detect and address potential security issues in your PHP environment.

    -

    With the Sucuri Firewall + WordPress Security Plugin, you benefit from the expertise and dedication of our team, committed to keeping your digital assets secure.

    -

    Experience the next level of protection and support, and enjoy the peace of mind that comes with knowing your site is in good hands.

    -', '2.5', 'Sucuri', '3.6', NULL, '6.8.3', 'https://downloads.wordpress.org/plugin/sucuri-scanner.2.5.zip', '2011-11-18 00:00:00+00', '2025-10-01 11:48:00+00', 'https://profiles.wordpress.org/sucuri/', 84, 382, 2, 2, 700000, 31415987, 'https://wordpress.sucuri.net/', 'https://sucuri.net/', NULL, NULL, 'https://wordpress.org/support/plugin/sucuri-scanner/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Sucuri Security – Auditing, Malware Scanner and Security Hardening", "slug": "sucuri-scanner", "tags": {"scan": "scan", "spam": "spam", "malware": "malware", "firewall": "firewall", "security": "security"}, "added": "2011-11-18", "icons": {"1x": "https://ps.w.org/sucuri-scanner/assets/icon-128x128.png?rev=2875755", "2x": "https://ps.w.org/sucuri-scanner/assets/icon-256x256.png?rev=2875755"}, "author": "Sucuri", "rating": 84, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/sucuri-scanner/assets/banner-772x250.png?rev=2875755", "high": false}, "ratings": {"1": 64, "2": 4, "3": 9, "4": 21, "5": 284}, "version": "2.5", "homepage": "https://wordpress.sucuri.net/", "requires": "3.6", "sections": {"faq": "

    More information on the Sucuri Security WordPress plugin can be found in our Knowledge Base.

    \n\n
    \nWhat is the security activity auditing?\n\n

    \n

    One of the standout features of our WordPress plugin is the comprehensive audit logging system. At Sucuri, we recognize that every change within your application can be a potential security event. From user logins to content modifications, our audit logs are designed to capture all security-related activities on your site.

    \n

    These logs provide you with crucial visibility into your website’s operations, answering key questions such as:
    \n* Who logged in? Understanding who accesses your site is fundamental to ensuring that only authorized users are logging in. This helps in identifying any unauthorized access attempts, allowing you to respond swiftly to potential security breaches.
    \n* What changes were made? Essential for maintaining its integrity and security. By knowing what modifications have been made, you can quickly pinpoint any suspicious activities or errors that need attention.

    \n

    With the release of version 1.9.6, we’ve enhanced this feature, allowing you to filter audit logs by event types and dates. This improvement offers you even greater insight into your site’s activities, enabling proactive security management.

    \n

    \n
    \nWhat is the file integrity monitoring\n\n

    \n

    Security File Integrity Monitoring has been fundamental to the world of security. It’s the act of comparing a known good with the current state. If the current state differs from the known good, you know you have a problem. This is the basis of a lot of host intrusion detection systems. We have built that into this plugin.

    \n

    It will create a known good the minute the plugin is installed. This will be of all the directories at the root of the install, including plugins, themes and core files.

    \n

    \n
    \nWhat is remote malware scanning?\n\n

    \n

    Once this plugin is installed and activated, we automatically scan your site searching for known malware, viruses, blacklisting status, website errors, out-of-date software, and malicious code.

    \n

    We access your site just like a regular visitor would as this helps us catch threats that try to stay hidden from bots or search engines. This feature is powered by our free website security scanner – SiteCheck.

    \n

    \n
    \nWhat is the blocklist monitoring?\n\n

    \n

    Another very interesting feature of the website Security Malware Scanner is that it checks various blocklist engines, including the following:

    \n
      \n
    • Sucuri Labs
    • \n
    • Google Safe Browsing
    • \n
    • Norton
    • \n
    • AVG
    • \n
    • Phish Tank
    • \n
    • ESET
    • \n
    • McAfee Site Advisor
    • \n
    • Yandex
    • \n
    • SpamHaus
    • \n
    • Bitdefender
    • \n
    \n

    These are some of the largest blocklisting entities, each having the ability to directly impact your brand’s online reputation. By synchronizing with their environments we’re able to tell you whether any of them are negatively flagging your website with a security related issue. If they do, then via our website security product, we’re able to help you get off of the security blocklist.

    \n

    \n
    \nWhat is effective security hardening?\n\n

    \n

    Our team cleans thousands of websites every day, giving us deep insight into the most effective ways to protect WordPress sites.

    \n

    We’ve used that experience to create a list of actionable recommendations available in the Hardening & Prevention section of this plugin.

    \n

    To name a few (note that this will depend on your environment), these actions are:

    \n
      \n
    • Enable Website Firewall Protection
    • \n
    • Remove WordPress Version
    • \n
    • Block PHP Files in Uploads, wp-content and wp-includes directories.
    • \n
    • Verify default admin account.
    • \n
    • Disable Plugin and Theme Editor.
    • \n
    • Automatic Secret Keys Updater.
    • \n
    \n

    \n
    \nWhat are the post-hack security actions?\n\n

    \n

    Even with the strongest security measures, no site is 100% safe from hacking. When a compromise occurs, the Post-Hack section of our plugin guides you through four critical steps to help you regain control of your site:

    \n
      \n
    • Update Secret Keys.
    • \n
    • Reset User Passwords.
    • \n
    • Reset Installed Plugins.
    • \n
    • Update Plugin and Themes.
    • \n
    \n

    These steps are designed to help you recover faster after a security incident.

    \n

    \n
    \nWhat are the security notifications?\n\n

    \n

    Security features only matter if you know when something’s wrong, that’s why we included a set of customizable security alerts inside our Settings > Alerts section. You can also customize how frequently you want to be alerted of security related events.

    \n

    \n
    \nWhat is the website firewall (premium)?\n\n

    \n

    This is by far the coolest security feature Sucuri has to offer everyday website owners. It’s an enterprise grade Website Firewall designed to give you the best security protection any website can hope for. It protects your website from a variety of website attacks, including:

    \n
      \n
    • Denial of Service (DOS / DDOS) Attacks.
    • \n
    • Exploitation of Software Vulnerabilities.
    • \n
    • Zero Day Disclosure Patches.
    • \n
    • Brute Force Attacks against your Access Control Mechanisms.
    • \n
    \n

    This is coupled with a number of features like:

    \n
      \n
    • Performance Optimization.
    • \n
    • Advanced Access Control Features.
    • \n
    • Failover and Redundancy.
    • \n
    \n

    This is not included as a free option of the plugin, but is integrated so that if purchased you are able to activate. If you prefer to leverage the Sucuri Firewall product by itself, you have the option to operate the Website Firewall WordPress Security plugin in standalone mode.

    \n

    The Sucuri WordPress Security plugin is built by the team that is known for their proactive approach to security. It is built using intelligence gathered from thousands upon thousands of remediation cases, millions of unique domain scans and 10’s of millions of website security attack blocks.

    \n

    \n
    \nWhat does this plugin do that other security plugins don’t do?\n\n

    \n

    Our expertise has given us deep insight into what truly helps prevent security incidents, and we’ve cooked that knowledge directly into this plugin.

    \n

    To give you a sense of what this security plugin offers, here are some of its most powerful features:

    \n
      \n
    • WordPress core, PHP, plugins and themes vulnerability scanners.
    • \n
    • Firewall Management.
    • \n
    • Events Reporting (auditlogs).
    • \n
    • Headers Management.
    • \n
    • Hardening & Prevention.
    • \n
    • Post-Hack Actions.
    • \n
    • Last Logins.
    • \n
    • And there’s more!
    • \n
    \n

    And while other security plugins may offer similar features, few deliver them as effectively as we do. Ask around! 🙂

    \n

    \n
    \nIf I install the Sucuri Security plugin do I get a Sucuri account?\n\n

    \n

    No, this is a free plugin that we offer at no charge. It does not mean you get a free account.

    \n

    \n
    \nIf I have the premium plugin, do I need the free plugin?\n\n

    \n

    Both the premium and the free version share the same codebase, however, this plugin has a few extra features that are only unlocked when you have a WAF account, some of these features include:

    \n
      \n
    • WordPress Core vulnerability scanning.
    • \n
    • PHP vulnerability scanning.
    • \n
    • Plugin vulnerability scanning.
    • \n
    • Themes vulnerability scanning.
    • \n
    • A beautiful dark theme!
    • \n
    \n

    To unlock these features you must go to Firewall Management and input a correct Sucuri Firewall API Key — In the Sucuri Dashboard you can find this key by going to the Sucuri WAF dashboard > API > API Key (for plugin).

    \n

    \n
    \nDo I still need Sucuri’s products if I have this plugin?\n\n

    \n

    Yes. This plugin compliments your existing security toolsets. It is not designed to replace the Sucuri Website Security or Firewall products.

    \n

    \n
    \nDo the logs get stored to my database?\n\n

    \n

    No, they do not.

    \n

    \n
    \nAre there any issues installing your plugin with any hosts?\n\n

    \n

    Not that we are aware of.

    \n

    \n
    \nDo I need this plugin to use the Website Firewall service?\n\n

    \n

    No, it is not required. The Website Firewall runs in the cloud without the need of anything installed. We recommend installing this plugin to see your firewall configuration and manage it from your WordPress dashboard.

    \n

    \n
    \nWhat information does Sucuri collect?\n\n

    \n

    We take your privacy seriously. For free plugin users without an API key, no information is collected by Sucuri. After activating an API key, Sucuri will store some information, such as logs. Please see our Terms of Service and Privacy Policy. Please email gdpr@sucuri.net if you have other questions about your privacy.

    \n

    \n
    \nHow do I configure the Cache-Control header?\n\n

    \n

    Go to the Headers Management page and enable Cache-Control header by selecting a mode according to your website’s need and click on submit.

    \n

    You can also activate the Cache-Control header by updating the cache header fields in one of the page types by using the “Edit” button in the table rows.

    \n

    Please remember to enable site caching on your WAF to use these settings. If you are a Sucuri client and require assistance, please create a ticket and reach out to the firewall team for support.

    \n

    \n
    \nHow do I configure the CORS headers?\n\n

    \n

    To enable CORS headers please visit the Headers Management page. For the time being, we only support “Report-Only” as these headers can break your site.

    \n

    \n
    \nHow do I configure the Content Security Policy (CSP) header?\n\n

    \n

    To enable CSP (Content Security Policy) headers please visit the Headers Management page.

    \n

    \n
    \nWhere do I get support for this plugin?\n\n

    \n

    The best place is to engage us via the Support Forum. If you are a client, you can submit a ticket here.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ♡ Sucuri

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bogdantd on March 16, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    No hack since Sucuri. Before hacked.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Must for Website Security

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dsitechmktg on January 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m really glad I set up this plugin because I was able to track suspicious logins and other security threats

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Слетел CSS после установки плагина

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy irinasaratov2 on January 23, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Плагин сразу нашел вирус, который был у меня на сайте, чем очень мне помог, т.к. другие плагины его не видели. Но плагин сломал мне админку Вордпресса, я теперь по сути не могу управлять своим сайтом, т.к. кнопки в админке не работают, все плагины отображаются косо и криво (слетели CSS стили). Что мне делать, чтобы восcтановить CSS?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The worst

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy richinberlin99 on June 19, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does not protect
    Does not detect.
    Paid service, does nothing, and does not fix.

    Absolute waste of time and money.

    Look elsewhere

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Abysmal support, plugin didn't install correctly

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy helen_wpd on May 11, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Absolutely rubbish support, couldn''t even help me with a relatively simple set up issue. Don''t even bother downloading this plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    DO NOT JOIN SUCURI DONT MAKE MY MISTAKE!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sgogroup42 on March 6, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    i am here to warn you not join sucuri .
    its all an advertisments of them but in the real world my site got blocked fro, all anti viruses and tons of ssl problems on there system.
    there support very pooor they only answer when you want to buy somthing but when you have a real problem with there product that its not working and caousing tons of problems they tellign you open a ticket.
    so i did open a ticket and for few monthes still 0 HELP and 0 solver problems ON SSL that they provide.
    Be aware.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Doesn't protect your site at all.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy locko69 on January 17, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The free version does not do what is advertised. Didn''t protect my site from malware and multiple sites (using this plugin) have been hacked.

    \n\n\n\n

    There''s much better alternatives to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Free & Pro Version

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jollygreen on December 28, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is a great plugin for securing and monitoring your WordPress website. I have the free version installed on around 20 sites and the Pro Firewall through custom Name Servers on a handful of other sites (Pro costs around $199/year per site at the time of this review). I most often use the default version of the plugin for monitoring and logging with my own custom .htaccess rules and .htaccess firewall for hardening.

    \n\n\n\n

    NOTE: Be careful when setting up functionality and hardening your settings through the plugin. Most of the 1* reviews are from people breaking their sites and getting themselves locked out by not understanding what the plugin settings do/affect and how to properly use the plugin''s settings. When in doubt, don''t enable every single security setting and just use the bare minimum until you back test your own site.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The firewall is plain dumb

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Alex Spataru (alexandrubr) on December 3, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    I''m trying to upload a new website for a client of mine and I keep getting blocked by the firewall, even tho'' I''m the administrator of the website. \n\nI get it, you want to make the website as secure as possible, but c''mon, blocking the administrator from accessing even the media upload (for SVGs) it is too much.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy snippet24 on November 13, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    IMHO is better than other security plugins out there and has prevention measures / hardening and post hacking measures that are great :)\nI only hope is not abandoned\nRegards\n
    \n
    \n", "changelog": "

    2.5

    \n
      \n
    • Add support for two-factor authentication.
    • \n
    \n

    This plugin bundles qrcode-generator (MIT) by Kazuhiko Arase.
    \nVendored copy due to npm package-injection concerns. We’ll switch back to npm when feasible.
    \nSource: https://github.com/kazuhikoarase/qrcode-generator

    \n

    2.4

    \n
      \n
    • Update list of files to ignore in integrity check.
    • \n
    \n

    2.3

    \n
      \n
    • Add theme toggle switch.
    • \n
    • Remove an unnecessary section for users without WAF key.
    • \n
    \n

    2.2

    \n
      \n
    • Update integrity section.
    • \n
    • Add a warning when the configured WAF domain does not match site’s domain.
    • \n
    \n

    2.1

    \n
      \n
    • Fix dark theme conflicting with Woo styles.
    • \n
    \n

    2.0

    \n
      \n
    • Added support for WordPress Core vulnerability scanner.
    • \n
    • Added support for PHP vulnerability scanner.
    • \n
    • Added support for plugin’s vulnerability scanner.
    • \n
    • Added support for theme’s vulnerability scanner.
    • \n
    • Added support for dark theme!
    • \n
    \n

    1.9.10

    \n
      \n
    • Fix bug deleting failed logins.
    • \n
    • Fix bug causing WAF blocks due user-agent containing domain names with specific words.
    • \n
    \n

    1.9.9

    \n
      \n
    • Fix secret key updater bug: Sometimes API return last character to be “\\” breaking configuration file
    • \n
    • Fix Undefined array key “woocommerce_category” PHP warning
    • \n
    • Fix ErrorException caused by stripping all “/” characters from path to htaccess file
    • \n
    • Fix warning caused from malformed path to htaccess file
    • \n
    \n

    1.9.8

    \n
      \n
    • Add support for configuration of CORS header
    • \n
    \n

    1.9.7

    \n
      \n
    • Add support for configuration of CSP header (report only)
    • \n
    \n

    1.9.6

    \n
      \n
    • Added support for filters in the audit logs
    • \n
    • Updated messaging for infected sites
    • \n
    \n

    1.9.5

    \n
      \n
    • Updated how the allow PHP files are handled in the integrity tool
    • \n
    \n

    1.9.4

    \n
      \n
    • Fixed warning in php 8
    • \n
    \n

    1.9.3

    \n
      \n
    • Fixed email notifications error handling
    • \n
    \n

    1.9.2

    \n
      \n
    • Improve how the WordPress integrity tool displays added, modified, and removed files
    • \n
    \n

    1.9.1

    \n
      \n
    • Add support for configuration of Cache-Control header
    • \n
    \n

    1.8.44

    \n
      \n
    • Update Firewall settings page to improve privacy and offer new options to handle API keys
    • \n
    \n

    1.8.43

    \n
      \n
    • Update readme and main plugin file to specify license
    • \n
    • Update plugin’s transient name to address to best practices
    • \n
    \n

    1.8.42

    \n
      \n
    • Update malware cleanup notification
    • \n
    \n

    1.8.41

    \n
      \n
    • Updates navigation to include “More” dropdown
    • \n
    • Add further validation when trying to write HTACCESS
    • \n
    • Update WordPress.org links (redirected from codex)
    • \n
    \n

    1.8.40

    \n
      \n
    • Update list of Sucuri cleanup files
    • \n
    • Update successful login screen to show date time
    • \n
    \n

    1.8.39

    \n
      \n
    • Fixed API service messaging
    • \n
    \n

    1.8.38

    \n
      \n
    • Fixed API service handling when the SUCURISCAN_API_URL config value is not defined
    • \n
    • Fixed API service UI messaging
    • \n
    \n

    1.8.37

    \n
      \n
    • Fixed plugin image assets and screenshots to match new branding
    • \n
    • Fixed password reset email link protocol
    • \n
    • Fixed remote fonts usage
    • \n
    • Removed wordpress.sucuri.net API dependency
    • \n
    • Updated screenshots
    • \n
    \n

    1.8.36

    \n
      \n
    • Changed Branding fonts, colors and images to match the current Sucuri brand
    • \n
    \n

    1.8.35

    \n
      \n
    • Fixed “Early referer checks on admin hooks”
    • \n
    \n

    1.8.34

    \n
      \n
    • Added referer check on admin hooks
    • \n
    \n

    1.8.33

    \n
      \n
    • Fixed “Added option to clear cache by path”
    • \n
    \n

    1.8.32

    \n
      \n
    • Fixed “Empty wp-config file after automatic secret key updates”
    • \n
    \n

    1.8.31

    \n
      \n
    • Fixed “Path cannot be empty” error
    • \n
    \n

    1.8.30

    \n
      \n
    • Bump version
    • \n
    \n

    1.8.29

    \n
      \n
    • Changed ownership
    • \n
    \n

    1.8.28

    \n
      \n
    • Silence fopen warning
    • \n
    \n

    1.8.27

    \n
      \n
    • Add support for PHP 8
    • \n
    • Reduce memory requirements when reading a log file
    • \n
    • Fix DISALLOW_FILE_EDIT related notice
    • \n
    \n

    1.8.26

    \n
      \n
    • Replace the word “blacklist” with “blocklist” in the codebase
    • \n
    • Replace the word “whitelist” with “allowlist” in the codebase
    • \n
    \n

    1.8.25

    \n
      \n
    • Fix notice about MONTH_IN_SECONDS in WP < 4.4
    • \n
    • Update reset password workflow
    • \n
    \n

    1.8.24

    \n
      \n
    • Fix warning caused by humanTime function
    • \n
    • Fix fatal error caused by cron jobs with nested arguments
    • \n
    \n

    1.8.23

    \n
      \n
    • Add Automatic Secret Keys Updater
    • \n
    • Improve button’s and link’s messaging on Last Logins sections
    • \n
    • Improve messaging on Hardening page
    • \n
    • Improve messaging on IP Access page
    • \n
    \n

    1.8.22

    \n
      \n
    • Add “SSL existence check” to WordPress Security Recommendations
    • \n
    • Add “Salt & Security Keys existence check” to WordPress Security Recommendations
    • \n
    • Add “Salt & Security Keys age check” to WordPress Security Recommendations
    • \n
    • Add “Admin account check” to WordPress Security Recommendations
    • \n
    • Add “Single super-admin check” to WordPress Security Recommendations
    • \n
    • Add “Too many plugins check” to WordPress Security Recommendations
    • \n
    • Add “File editing check” to WordPress Security Recommendations
    • \n
    • Add “WordPress debug check” to WordPress Security Recommendations
    • \n
    • Add “Basic hardening check” to WordPress Security Recommendations
    • \n
    • Add a delete button on Last Logins sections
    • \n
    • Add register of logs removal on Audit Logs
    • \n
    • Fix display of Access File Integrity on NGINX/IIS servers
    • \n
    • Remove PHP version check from hardening page
    • \n
    \n

    1.8.21

    \n
      \n
    • Add WordPress Security Recommendations section in the dashboard
    • \n
    • Add PHP version check
    • \n
    • Fix goo.gl links
    • \n
    • Fix post_type pattern match to allow numbers and max of 20 chars
    • \n
    • Fix Audit Logs queue timezone issue
    • \n
    • Fix regex in template string replacement
    • \n
    • Update translation file to include WordPress Security Recommendations section fields
    • \n
    • Make the menu icon use the menu color styling
    • \n
    • Remove block button from failed logins page
    • \n
    \n

    1.8.20

    \n
      \n
    • Add dynamic core directories in the hardening allowlist options
    • \n
    • Modify scheduled tasks panel to load the table via Ajax
    • \n
    • Allow hosting details display to be filterable
    • \n
    • Preparation for translations
    • \n
    \n

    1.8.19

    \n
      \n
    • Add option to refresh the SiteCheck malware scan results
    • \n
    • Add support for a CLI command to ignore files in the core integrity check
    • \n
    • Fix text
    • \n
    \n

    1.8.18

    \n
      \n
    • Keep settings when the plugin is deactivated, unless the plugin is uninstalled
    • \n
    \n

    1.8.17

    \n\n

    1.8.15

    \n
      \n
    • Make default plugin options filterable
    • \n
    • Fix missing button to manually activate the advanced features
    • \n
    • Remove unnecessary tags from README per WordPress guidelines
    • \n
    • Modify resolution of the images to respect retina display
    • \n
    \n

    1.8.14

    \n
      \n
    • Add filter to allow automatic configuration of the settings
    • \n
    \n

    1.8.13

    \n
      \n
    • Add new version of the GPL v2 license file
    • \n
    • Remove unused option to reduce number of failed logins
    • \n
    • Fix multiple typos in the code found after a diff parse
    • \n
    • Modify name of the base library file for consistency
    • \n
    • Modify wording of the API key panel in the settings page
    • \n
    • Add option to include the hostname in the alert subject
    • \n
    • Fix open_basedir restriction was not considered on scans
    • \n
    • Remove firewall API key deletion on re-authentication
    • \n
    \n

    1.8.12

    \n
      \n
    • Fix invalid array when deselecting all security alerts
    • \n
    • Add language files to the list of ignored changes
    • \n
    • Modify internal response to the log file not found error
    • \n
    • Add option to force the firewall cache flush
    • \n
    • Fix unexpected exception when open_basedir is in place
    • \n
    • Add support to export and import trusted IP addresses
    • \n
    • Add link to the audit logs API endpoint for developers
    • \n
    • Add reverse ip address in all email alerts from visitor
    • \n
    • Remove API key from the settings that can be exported
    • \n
    • Modify code to make default plugin options filterable
    • \n
    • Add ability to store the settings in the object cache
    • \n
    • Add support for wp-cli and command to generate an API key
    • \n
    • Fix missing documentation tags in the command line library
    • \n
    • Fix format and coding standard in CSS and JavaScript files
    • \n
    • Add button to toggle the visibility of the post-types table
    • \n
    • Modify order of the added, modified, removed core files
    • \n
    • Fix relative file path when ABSPATH is point to root
    • \n
    • Add additional notifications for changes on users
    • \n
    \n

    1.8.11

    \n
      \n
    • Modify Sucuri firewall detection with regular expressions
    • \n
    • Modify option to force scanner to ignore directories
    • \n
    • Modify form to monitor and ignore post-types
    • \n
    • Modify miscellaneous changes in some alert messages
    • \n
    • Modify error message displaying for invalid CSRF validations
    • \n
    • Fix minor issues with the version detection code
    • \n
    • Remove internationalization support for consistency
    • \n
    • Add support for the RTL reading direction
    • \n
    • Add API key in admin notice when it is being deleted
    • \n
    • Fix modification date for corrupt core files
    • \n
    • Fix audit log parser for incompatible JSON data
    • \n
    • Fix password visibility when the option is changed
    • \n
    \n

    1.8.10

    \n
      \n
    • Version bump skipped
    • \n
    \n

    1.8.9

    \n
      \n
    • Remove duplicated failed user authentication log
    • \n
    • Remove trailing forward slash from asset URL
    • \n
    • Fix post-type ignore tool to allow hyphens in the ID
    • \n
    • Fix queries to the database in the last logins page
    • \n
    • Remove unnecessary option queries to the database
    • \n
    • Fix PHP notice for a string offset cast occurred
    • \n
    • Remove unnecessary data from the website info page
    • \n
    • Modify timing for the execution of the Ajax requests
    • \n
    \n

    1.8.8

    \n
      \n
    • Add smart limit to send logs from the queue to the API
    • \n
    • Add option to ignore events for post transitions
    • \n
    • Fix infinite loop with email alerts and SMTP plugin
    • \n
    • Add option to configure the malware scanner target URL
    • \n
    • Add option to enable the auto clear cache firewall function
    • \n
    • Modify status of the directory hardening using the Firewall
    • \n
    • Modify error message in audit logs when the API key is missing
    • \n
    • Modify timing for the dashboard alerts after an update
    • \n
    • Modify firewall clear cache button to execute via Ajax
    • \n
    • Modify firewall settings page to load data via Ajax
    • \n
    • Add option to blocklist IP addresses with the Firewall API
    • \n
    • Fix order of the audit logs when the queue is merged
    • \n
    • Add more directories to ignore during the scans
    • \n
    • Add option to customize the URL for the malware scans
    • \n
    • Fix error interception for Firewall API errors
    • \n
    • Add support for other English and Spanish based languages
    • \n
    • Modify mechanism to ignore files from integrity checks
    • \n
    • Add option to stop sending the failed login passwords
    • \n
    • Modify default value for some of the alert settings
    • \n
    • Remove unnecessary statistics panel for the audit logs
    • \n
    • Modify output for the malware results to simplify links
    • \n
    • Add option to override the timezone for the datetime
    • \n
    • Add option to configure the WordPress checksums API
    • \n
    • Add maximum execution time avoidance in the integrity tool
    • \n
    • Add support to run diff on deleted WordPress files
    • \n
    \n

    1.8.7

    \n
      \n
    • Fix multiple issues with the API calls
    • \n
    • Add queue system to fix website performance
    • \n
    • Fix non-dismissable newsletter invitation message
    • \n
    • Fix performance of the audit log parser without regexp
    • \n
    • Add conditional to check for the availability of SPL
    • \n
    • Add cache for the audit logs to make dashboard responsive
    • \n
    • Modify frequency of the file system scans to run daily
    • \n
    • Remove option to configure the maximum API timeout
    • \n
    • Modify location of the scanner options and scheduled tasks
    • \n
    • Add button to send the logs from the queue to the API
    • \n
    \n

    1.8.6

    \n
      \n
    • Add default language for internationalization fallback
    • \n
    \n

    1.8.5

    \n
      \n
    • Fix minor bugs after post-testing of the new release
    • \n
    • Add full support for internationalization with en_US locale
    • \n
    • Add full support for internationalization with es_ES locale
    • \n
    \n

    1.8.4

    \n
      \n
    • Modify the entire interface to offer a fresh design
    • \n
    • Add support for internationalization via gettext
    • \n
    • Modify the structure of the project for maintainability
    • \n
    • Remove minified files to facilitate future contributions
    • \n
    • Add warning message in the reset plugin tool page
    • \n
    • Fix loading sequence for additional PHP files
    • \n
    • Add restriction to prevent direct access to PHP files
    • \n
    • Fix file search by name when the directory is passed
    • \n
    • Add HTTP request parameters to track some settings
    • \n
    • Fix reset plugin tool with the new WordPress API
    • \n
    • Fix length of the pagination helper with many pages
    • \n
    • Add performance boost for the failed logins page
    • \n
    • Modify structure of the failed logins data analyzer
    • \n
    • Fix deactivation of all the scheduled tasks from settings
    • \n
    • Modify entire code base to enforce HTTPS over HTTP
    • \n
    • Remove heartbeat settings after performance improvement
    • \n
    • Remove unnecessary XHR event monitor and report
    • \n
    • Remove deprecated functions from previous releases
    • \n
    • Remove deprecated tool to scan for error_log files
    • \n
    • Modify failed logins logger with wrong passwords
    • \n
    • Remove plugin checksum dependency to avoid asset cache
    • \n
    • Modify minimum PHP version in hardening page
    • \n
    • Fix email alerts with non-existing site_url option
    • \n
    • Add tool to import and export the plugin settings
    • \n
    • Add uninstall instructions during deactivation of the plugin
    • \n
    • Fix plugin reinstall procedure with backup and prechecks
    • \n
    • Modify mechanism to ignore irrelevant WordPress core files
    • \n
    • Modify list of available scheduled task frequencies
    • \n
    • Fix lazy load of the CSS and Scripts on the correct pages
    • \n
    • Add audit log message fixer for the wpephpcompat_jobs event
    • \n
    • Fix website URL in the template for the email alerts
    • \n
    • Add message in the core integrity tool for false positives
    • \n
    • Add option to reset the content of some storage files
    • \n
    • Add mechanism to display self-hosting logs as fallback
    • \n
    • Fix incoherent failed login processor on pagination
    • \n
    • Add option to display differences in core integrity checks
    • \n
    • Modify the default and maximum timeout for the API
    • \n
    • Fix static data storage path to allow server migrations
    • \n
    • Add option to ignore non-registered custom post-types
    • \n
    • Add more details into the event that monitors post deletions
    • \n
    • Fix event monitor for plugin activation and deactivation
    • \n
    • Fix dynamic directory tree deletion with improved performance
    • \n
    • Fix automatic deletion of conflicting plugins
    • \n
    • Add event monitor for all supported post status transitions
    • \n
    • Add one-time newsletter invitation after plugin updates
    • \n
    • Add code to delete legacy plugin options from database
    • \n
    • Modify error on non-processed files in the integrity checks
    • \n
    • Fix overflow of HTTP requests to SiteCheck API on failures
    • \n
    • Fix handling of the actions in the core integrity checks
    • \n
    • Add message and button to reset the audit logs cache
    • \n
    • Add ajax request to load malware scans for performance
    • \n
    \n

    1.8.3

    \n
      \n
    • Removed goo.gl links
    • \n
    • Fixed fatal error when PHPMailer failed
    • \n
    • Fixed incorrect selected value in settings
    • \n
    • Added SiteCheck for arbitrary domain
    • \n
    • Various code cleanup
    • \n
    \n

    1.8.2

    \n
      \n
    • Modified logic of the settings in database checker
    • \n
    • Modified default value for the available updates alerts
    • \n
    • Fixed undefined array and object keys in audit logs
    • \n
    • Fixed incompatibilities with foreign API service responses
    • \n
    • Added development option to keep using the database
    • \n
    • Added panel with information about the plugin settings
    • \n
    • Added conditional to prevent redeclaration of class
    • \n
    • Fixed cache flush method used to delete datastore
    • \n
    \n

    1.8.1

    \n
      \n
    • Modified default setting for the core integrity alerts
    • \n
    • Added more files to the core integrity ignore list
    • \n
    • Fixed support for custom data storage directory
    • \n
    • Fixed admin notices after changing alert settings
    • \n
    • Fixed settings and audit logs for the firewall page
    • \n
    • Fixed regression with clear cache in firewall page
    • \n
    \n

    1.8.0

    \n
      \n
    • Added error message when storage is not writable
    • \n
    • Fixed option getter to migrate plugin settings if possible
    • \n
    • Fixed base directory name without PHP DIR constant
    • \n
    • Fixed user authentication denial when no blocked users
    • \n
    • Fixed htaccess standard rules checker with no WP_Rewrite
    • \n
    \n

    1.7.19

    \n
      \n
    • Added method to rescue HTTP requests using sockets
    • \n
    • Fixed mishandled JSON data in audit logs Ajax request
    • \n
    • Modified list of firewall features and promo video
    • \n
    \n

    1.7.18

    \n
      \n
    • Added options library using external file instead of the database
    • \n
    • Modified API calls using custom HTTP request using Curl
    • \n
    • Fixed core files marked as broken in a Windows server
    • \n
    • Fixed pagination links in last and failed logins page
    • \n
    • Fixed password with ampersands in email alert
    • \n
    • Fixed allowlist hardening using the authz_core module
    • \n
    • Removed unnecessary emails to reduce spam
    • \n
    • Added constant to stop execution of admin init hooks
    • \n
    • Added explanation for invalid emails and no MX records
    • \n
    • Added link to open the form to insert the API key manually
    • \n
    • Added more options in the IP discoverer setting
    • \n
    • Added option to configure malware scanner timeout
    • \n
    • Added option to configure the API communication protocol
    • \n
    • Added option to reset the malware scanner cache
    • \n
    • Added scheduled task and email alert for available updates
    • \n
    • Added tool to block user accounts from attempting a login
    • \n
    • Added tool to debug HTTP requests to the API services
    • \n
    • Various minor adjustments and fixes
    • \n
    \n

    1.7.17

    \n
      \n
    • Added API service failback mechanism
    • \n
    • Added core integrity email on force scan
    • \n
    • Slight interface redesign
    • \n
    • Various bugfixes and improvements
    • \n
    \n

    1.7.16

    \n
      \n
    • Fixing a low severity XSS (needs admin access to create it)
    • \n
    \n

    1.7.14

    \n
      \n
    • Added alternative method to send email alerts
    • \n
    • Added button to reset options with explanation
    • \n
    • Added suggestion for new users to check plugin settings
    • \n
    • Allow mark as fixed non-writable core files
    • \n
    • Fixed display menus items single or network panels
    • \n
    • Fixed handle boolean values in PHP config retrieval
    • \n
    • Fixed non-standard content location in core integrity
    • \n
    • Fixed user identifier as integer on password reset
    • \n
    • Modified css and js files to reduce size
    • \n
    • Modified do not load resources on hidden sidebar
    • \n
    • Modified fully redesign of general settings page
    • \n
    • Modified hide update warning if versions are the same
    • \n
    • Modified wording of post-types alert settings
    • \n
    • Removed ellipsis of long IPv6 addresses in last logins
    • \n
    • Removed unnecessary dns lookups in infosys page
    • \n
    • Removed unnecessary monospace fonts in settings status
    • \n
    • Removed unnecessary ssl verification option processor
    • \n
    \n

    1.7.13

    \n
      \n
    • Fixed issue affecting site performance
    • \n
    • Fixed clear hardening of previous versions
    • \n
    • Modified report and block non-processable ajax actions
    • \n
    • Added configure DNS lookups for reverse proxy detection
    • \n
    • Added option to configure comment monitor and logs
    • \n
    • Added option to configure the XHR monitor and logs
    • \n
    \n

    1.7.12

    \n
      \n
    • Improved hardening options
    • \n
    • Added more logging events
    • \n
    • Various bugfixes and improvements
    • \n
    \n

    1.7.11

    \n
      \n
    • Reverted change for firewall detection to protect legacy users
    • \n
    \n

    1.7.10

    \n
      \n
    • Added better checks for SSL issues
    • \n
    • Fix for audit log timezones
    • \n
    • Various bugfixes and improvements
    • \n
    \n

    1.7.9

    \n
      \n
    • Improved reinstallation process
    • \n
    • Updated sidebar banners
    • \n
    • Various bugfixes and improvements
    • \n
    \n

    1.7.8

    \n
      \n
    • Fixed bug on the secret keys hardening.
    • \n
    \n

    1.7.7

    \n
      \n
    • Added better support for directory separators
    • \n
    • Added option to remove API key from plugin
    • \n
    • Various bugfixes and improvements
    • \n
    \n

    1.7.6

    \n
      \n
    • Added audit log reporting.
    • \n
    • Added more settings for better control.
    • \n
    • Added support for more actions.
    • \n
    • Improved multisite support.
    • \n
    • Added support for reverse proxies.
    • \n
    • Various bugfixes and improvements.
    • \n
    \n

    1.7.5

    \n
      \n
    • Added better handling of API responses of remote scanner.
    • \n
    \n

    1.7.4

    \n
      \n
    • Added option for keeping failed logins until the user removes them.
    • \n
    • Bugfixes for user reported issues.
    • \n
    \n

    1.7.3

    \n
      \n
    • Error log panel.
    • \n
    • Various bug fixes.
    • \n
    \n

    1.7.2

    \n
      \n
    • Messaging and FAQ updates.
    • \n
    \n

    1.7.1

    \n
      \n
    • Fixed remote scanning that was not loading automatically on some installs.
    • \n
    \n

    1.7.0

    \n
      \n
    • Added Hardening option to remove error log files
    • \n
    • Bug fixes on some new registrations.
    • \n
    • Changed format of the internal logs to json.
    • \n
    \n

    1.6.9

    \n
      \n
    • Multiple bug fixes (as reported on the support forums).
    • \n
    • Added heartbeat for the file scans.
    • \n
    • Code cleanup.
    • \n
    \n

    1.6.8

    \n
      \n
    • Fixing interface.
    • \n
    \n

    1.6.7

    \n
      \n
    • Added Support for integrity checks on i18n installations.
    • \n
    • Fixed the setting change bug.
    • \n
    \n

    1.6.6

    \n
      \n
    • Internal code cleanup and re-organization.
    • \n
    • More white lists for the integrity checks.
    • \n
    • Additional settings to customize some of the warnings.
    • \n
    \n

    1.6.5

    \n
      \n
    • Fixed integrity checking display.
    • \n
    \n

    1.6.4

    \n
      \n
    • Fixed API generation bug.
    • \n
    \n

    1.6.3

    \n
      \n
    • Added proper brute force alerts.
    • \n
    • Added option to restrict number of emails.
    • \n
    • Added more description to the emails.
    • \n
    • Added a list of failed login attempts inside the last login tab.
    • \n
    \n

    1.6.2

    \n
      \n
    • Setting a maximum number of emails per hour.
    • \n
    • Fixing typos.
    • \n
    \n

    1.6.1

    \n
      \n
    • Initial release with new auditing options.
    • \n
    \n

    1.6.0

    \n
      \n
    • A new dashboard to welcome users to the new features of the plugin.
    • \n
    • Overall design of the interface of all the pages were modified.
    • \n
    • SiteCheck scanner results were filled with more information.
    • \n
    • SiteCheck scanner results markers when the site is infected/clean.
    • \n
    • System Info page were simplified with tabulation containers.
    • \n
    • Integrity check for administrator accounts was optimized.
    • \n
    • Integrity check for outdated plugins/themes was optimized and merged.
    • \n
    • IPv6 support in last logins statistics.
    • \n
    \n

    1.5.7

    \n
      \n
    • WordPress 3.9 compatibility
    • \n
    \n

    1.5.6

    \n
      \n
    • Added IPv6 support.
    • \n
    • Fixed links and messaging.
    • \n
    \n

    1.5.5

    \n
      \n
    • Added list of logged in users.
    • \n
    • Added system page.
    • \n
    • Change the integrity checking to use WP API.
    • \n
    \n

    1.5.4

    \n
      \n
    • Bug fixes.
    • \n
    \n

    1.5.2

    \n
      \n
    • Adding additional information about .htaccess hacks and the server environment.
    • \n
    \n

    1.5.0

    \n
      \n
    • Fixing last login and giving better warns on permission errors.
    • \n
    • Making the integrity check messages more clear.
    • \n
    \n

    1.4.8

    \n
      \n
    • New and clean design for the scan results.
    • \n
    • Adding a web firewall check on our hardening page.
    • \n
    \n

    1.4.7

    \n
      \n
    • Cleaning up the code a bit.
    • \n
    • Only displaying last login messages to admin users.
    • \n
    • Storing the logs into a log file instead of the db.
    • \n
    \n

    1.4.6

    \n
      \n
    • Increasing last login table to the last 100 entries.
    • \n
    \n

    1.4.5

    \n
      \n
    • Fixing some issues on the last login and allowing the option to disable it.
    • \n
    \n

    1.4.4

    \n
      \n
    • Small bug fixes + forcing a re-scan on every scan attempt (not using the cache anymore).
    • \n
    \n

    1.4.3

    \n
      \n
    • Fixing a few PHP warnings.
    • \n
    \n

    1.4.2

    \n
      \n
    • Fixing a few PHP warnings.
    • \n
    \n

    1.4.1

    \n
      \n
    • Small bug fixes.
    • \n
    • Adding last IP to the last login page.
    • \n
    \n

    1.4

    \n
      \n
    • Added post-hack options (reset all passwords).
    • \n
    • Added last-login.
    • \n
    • Added more hardening and the option to revert any hardening done.
    • \n
    \n

    1.3

    \n
      \n
    • Removed some PHP warnings and code clean up.
    • \n
    • Added WordPress integrity checks.
    • \n
    • Added plugin/theme/user checks.
    • \n
    \n

    1.2.2

    \n
      \n
    • Tested on WP 3.5.1
    • \n
    \n

    1.2.1

    \n
      \n
    • Tested on WP 3.5-RC4
    • \n
    • Style changes
    • \n
    \n

    1.2

    \n
      \n
    • Cleared PHP warnings
    • \n
    • Added /inc directory
    • \n
    • Added /lib directory
    • \n
    • Logo added
    • \n
    • Default stylesheet added
    • \n
    • Header area added
    • \n
    • Sidebar area added
    • \n
    • Restyled 1-click hardening page
    • \n
    • Removed old malware page
    • \n
    \n

    1.1.7

    \n
      \n
    • Tested on WP 3.5-RC3.
    • \n
    \n

    1.1.6

    \n
      \n
    • Upgrading for WP 3.3.
    • \n
    \n

    1.1.5

    \n
      \n
    • Removed PHP warnings / code cleaning.
    • \n
    \n

    1.1.3

    \n
      \n
    • Cleaning up the results.
    • \n
    • Added 1-click hardening.
    • \n
    \n

    1.1.2

    \n
      \n
    • First release that is good to be used (debugging code removed).
    • \n
    \n

    1.1.1

    \n
      \n
    • First public release.
    • \n
    \n", "description": "

    At Sucuri, we are dedicated to keeping your website safe and secure. With a focus on protection and monitoring, we offer solutions that help you stay ahead of potential threats for your WordPress site.

    \n

    Our services include everything from malware detection to performance optimization, all designed to give you peace of mind.

    \n

    We understand the importance of your online presence and are here to support you every step of the way. Join us, and let’s work together to ensure your website remains secure and resilient.

    \n

    The Sucuri Security Monitoring Plugin is designed to safeguard your WordPress site with ease and reliability. Our plugin offers a range of essential security features, including:

    \n
      \n
    • Security Activity Auditing: Keep track of every security-related event within your WordPress environment.
    • \n
    • File Integrity Monitoring: Detect unauthorized changes to your files and protect your site from potential vulnerabilities.
    • \n
    • Remote Malware Scanning: Regularly scan your site for malware with our remote scanner to ensure it’s clean and secure.
    • \n
    • Blocklist Monitoring: Receive alerts if your site is blocklisted by any major services, allowing for quick resolution.
    • \n
    • Security Hardening: Implement recommended security practices to fortify your site against threats.
    • \n
    • Post-Hack Security Actions: If the worst happens, our plugin helps you recover your site easily.
    • \n
    \n

    With Sucuri, you can focus on what matters most—growing your website—while we handle the security. Our feature set provides a clear view of your site’s status, making it easy to manage, monitor and take action.

    \n

    Contributors & Maintenance Notice

    \n

    Our dedicated team of engineers and security analysts is continually working to enhance the Sucuri Security Monitoring Plugin.

    \n

    We provide regular updates, address bugs, and actively incorporate user feedback to ensure your WordPress site maintains its highest security stance. Our growth roadmap underscores our commitment to keeping you protected against emerging threats.

    \n

    To support you further, we offer a variety of resources, including prompt responses for the forum, our website’s various content types, and an extensive knowledge base.

    \n

    Our content is designed to help you maximize your plugin feature usage and benefits with the support you need.

    \n

    If you want to be ahead of possible threats and keep up-to-date with Plugin updates, subscribe to our content here.

    \n

    Introducing the Sucuri Firewall + WordPress Security Plugin

    \n

    We’re excited to introduce the Sucuri Firewall + WordPress Security Plugin, designed for those who seek advanced protection for their WordPress sites.

    \n

    Building upon our trusted free plugin, this premium offering provides a robust suite of features to ensure comprehensive security and peace of mind.

    \n

    Key features include:
    \n* Web Application Firewall (WAF): Protect your site from malicious traffic with our powerful firewall solution.
    \n* Brute Force Protection: Safeguard your site against unauthorized login attempts.
    \n* Brute Force Audit & Reporting: Gain insights into login attempts with detailed auditing and reporting.
    \n* DDoS Mitigation: Maintain site availability even during targeted attacks.
    \n* Core Vulnerabilities Scanning: Identify and address security weaknesses in WordPress core files.
    \n* Plugins Vulnerability Scanning: Ensure your installed plugins are secure and up to date.
    \n* Themes Vulnerability Scanning: Protect your site by scanning for vulnerabilities in installed themes.
    \n* PHP Vulnerability Scanning: Detect and address potential security issues in your PHP environment.

    \n

    With the Sucuri Firewall + WordPress Security Plugin, you benefit from the expertise and dedication of our team, committed to keeping your digital assets secure.

    \n

    Experience the next level of protection and support, and enjoy the peace of mind that comes with knowing your site is in good hands.

    \n", "screenshots": "
    1. \"WordPress

      WordPress Integrity Tool - Detects added, modified, and removed files.

    2. \"Integrity

      Integrity Diff Utility - Shows differences in the core WordPress files.

    3. \"Audit

      Audit Logs and Malware Scanner - Reports suspicious events and malicious code.

    4. \"Sucuri

      Sucuri Firewall - Settings visibility, audit logs, IP blocklisting, and cache.

    5. \"Website

      Website Hardening - Offers multiple options to increase the security of the website.

    6. \"Failed

      Failed Logins - Shows failed login attempts, successful logins and online users.

    7. \"Post

      Post Hack Tools - Offers multiple tools to react after the suspiciousness of a hack.

    8. \"Settings

      Settings - Offers multiple settings to configure the functionality of the plugin.

    9. \"Cache

      Cache control headers - Offers multiple options to configure the cache control header.

    ", "installation": "

    The installation of the Sucuri WordPress Security plugin is very simple and straight forward. A detailed breakdown of the process is available here (including images), however, below we outline the bare minimum steps.

    \n

    To install Sucuri Security and complement your Security posture:

    \n
      \n
    1. Log into your WordPress administration panel,
    2. \n
    3. In the sidebar, choose “Plugins” and then “Add New”,
    4. \n
    5. Type “sucuri” or “sucuri-scanner” in the search box,
    6. \n
    7. Install the option with the “By Sucuri Inc.” at the foot,
    8. \n
    9. Once activated, you will find a new icon in the sidebar with the Sucuri logo. Go to the plugin’s dashboard and click the button that says “Generate API Key” to activate the event monitoring, this will generate a unique key to authenticate your website against the remote Sucuri WordPress API service,
    10. \n
    11. Feel free to visit the plugin’ settings page to configure other options including the security alerts, hardening options, file system scanner paths and API service communication.
    12. \n
    \n

    Visit the Support Forum to ask questions, suggest new features, or report bugs. And recommend the plugin to your friends and colleagues if you think it can help them.

    \n"}, "versions": {"1.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.zip", "2.0": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.5.zip", "1.1.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.1.6.zip", "1.4.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.2.zip", "1.5.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.5.7.zip", "1.6.0": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.1.zip", "1.6.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.6.zip", "1.6.8": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.1.zip", "1.8.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.9.zip", "1.9.1": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/sucuri-scanner.zip", "1.7.10": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.12.zip", "1.7.13": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.13.zip", "1.7.14": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.14.zip", "1.7.15": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.15.zip", "1.7.16": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.16.zip", "1.7.17": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.17.zip", "1.7.18": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.18.zip", "1.7.19": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.7.19.zip", "1.8.10": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.10.zip", "1.8.11": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.11.zip", "1.8.12": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.12.zip", "1.8.13": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.13.zip", "1.8.14": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.14.zip", "1.8.15": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.15.zip", "1.8.16": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.16.zip", "1.8.17": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.17.zip", "1.8.18": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.18.zip", "1.8.19": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.19.zip", "1.8.20": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.20.zip", "1.8.21": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.21.zip", "1.8.22": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.22.zip", "1.8.23": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.23.zip", "1.8.24": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.24.zip", "1.8.25": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.25.zip", "1.8.26": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.26.zip", "1.8.27": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.27.zip", "1.8.28": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.28.zip", "1.8.29": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.29.zip", "1.8.30": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.30.zip", "1.8.31": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.31.zip", "1.8.32": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.32.zip", "1.8.33": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.33.zip", "1.8.34": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.34.zip", "1.8.35": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.35.zip", "1.8.36": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.36.zip", "1.8.37": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.37.zip", "1.8.38": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.38.zip", "1.8.39": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.39.zip", "1.8.40": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.40.zip", "1.8.41": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.41.zip", "1.8.42": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.42.zip", "1.8.43": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.43.zip", "1.8.44": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.44.zip", "1.9.10": "https://downloads.wordpress.org/plugin/sucuri-scanner.1.9.10.zip"}, "downloaded": 31415987, "description": "

    At Sucuri, we are dedicated to keeping your website safe and secure. With a focus on protection and monitoring, we offer solutions that help you stay ahead of potential threats for your WordPress site.

    \n

    Our services include everything from malware detection to performance optimization, all designed to give you peace of mind.

    \n

    We understand the importance of your online presence and are here to support you every step of the way. Join us, and let’s work together to ensure your website remains secure and resilient.

    \n

    The Sucuri Security Monitoring Plugin is designed to safeguard your WordPress site with ease and reliability. Our plugin offers a range of essential security features, including:

    \n
      \n
    • Security Activity Auditing: Keep track of every security-related event within your WordPress environment.
    • \n
    • File Integrity Monitoring: Detect unauthorized changes to your files and protect your site from potential vulnerabilities.
    • \n
    • Remote Malware Scanning: Regularly scan your site for malware with our remote scanner to ensure it’s clean and secure.
    • \n
    • Blocklist Monitoring: Receive alerts if your site is blocklisted by any major services, allowing for quick resolution.
    • \n
    • Security Hardening: Implement recommended security practices to fortify your site against threats.
    • \n
    • Post-Hack Security Actions: If the worst happens, our plugin helps you recover your site easily.
    • \n
    \n

    With Sucuri, you can focus on what matters most—growing your website—while we handle the security. Our feature set provides a clear view of your site’s status, making it easy to manage, monitor and take action.

    \n

    Contributors & Maintenance Notice

    \n

    Our dedicated team of engineers and security analysts is continually working to enhance the Sucuri Security Monitoring Plugin.

    \n

    We provide regular updates, address bugs, and actively incorporate user feedback to ensure your WordPress site maintains its highest security stance. Our growth roadmap underscores our commitment to keeping you protected against emerging threats.

    \n

    To support you further, we offer a variety of resources, including prompt responses for the forum, our website’s various content types, and an extensive knowledge base.

    \n

    Our content is designed to help you maximize your plugin feature usage and benefits with the support you need.

    \n

    If you want to be ahead of possible threats and keep up-to-date with Plugin updates, subscribe to our content here.

    \n

    Introducing the Sucuri Firewall + WordPress Security Plugin

    \n

    We’re excited to introduce the Sucuri Firewall + WordPress Security Plugin, designed for those who seek advanced protection for their WordPress sites.

    \n

    Building upon our trusted free plugin, this premium offering provides a robust suite of features to ensure comprehensive security and peace of mind.

    \n

    Key features include:
    \n* Web Application Firewall (WAF): Protect your site from malicious traffic with our powerful firewall solution.
    \n* Brute Force Protection: Safeguard your site against unauthorized login attempts.
    \n* Brute Force Audit & Reporting: Gain insights into login attempts with detailed auditing and reporting.
    \n* DDoS Mitigation: Maintain site availability even during targeted attacks.
    \n* Core Vulnerabilities Scanning: Identify and address security weaknesses in WordPress core files.
    \n* Plugins Vulnerability Scanning: Ensure your installed plugins are secure and up to date.
    \n* Themes Vulnerability Scanning: Protect your site by scanning for vulnerabilities in installed themes.
    \n* PHP Vulnerability Scanning: Detect and address potential security issues in your PHP environment.

    \n

    With the Sucuri Firewall + WordPress Security Plugin, you benefit from the expertise and dedication of our team, committed to keeping your digital assets secure.

    \n

    Experience the next level of protection and support, and enjoy the peace of mind that comes with knowing your site is in good hands.

    \n", "donate_link": "https://sucuri.net/", "num_ratings": 382, "screenshots": {"1": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-1.png?rev=3080515", "caption": "WordPress Integrity Tool - Detects added, modified, and removed files."}, "2": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-2.png?rev=3174473", "caption": "Integrity Diff Utility - Shows differences in the core WordPress files."}, "3": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-3.png?rev=2875755", "caption": "Audit Logs and Malware Scanner - Reports suspicious events and malicious code."}, "4": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-4.png?rev=2875755", "caption": "Sucuri Firewall - Settings visibility, audit logs, IP blocklisting, and cache."}, "5": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-5.png?rev=2875755", "caption": "Website Hardening - Offers multiple options to increase the security of the website."}, "6": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-6.png?rev=2875755", "caption": "Failed Logins - Shows failed login attempts, successful logins and online users."}, "7": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-7.png?rev=2875755", "caption": "Post Hack Tools - Offers multiple tools to react after the suspiciousness of a hack."}, "8": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-8.png?rev=2875755", "caption": "Settings - Offers multiple settings to configure the functionality of the plugin."}, "9": {"src": "https://ps.w.org/sucuri-scanner/assets/screenshot-9.png?rev=3115119", "caption": "Cache control headers - Offers multiple options to configure the cache control header."}}, "support_url": "https://wordpress.org/support/plugin/sucuri-scanner/", "contributors": {"sucuri": {"avatar": "https://secure.gravatar.com/avatar/a8e8b6d0a2b41fae590a7416f0a19b87117268c04905339f08b8610432f8e1d5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sucuri/", "display_name": "Sucuri"}}, "last_updated": "2025-10-01 11:48am GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/sucuri-scanner.2.5.zip", "author_profile": "https://profiles.wordpress.org/sucuri/", "business_model": false, "repository_url": "", "upgrade_notice": {"1.8.19": "

    This version adds an option to refresh the malware scan results on demand, as well as several small bug fixes and improvements.

    ", "1.8.37": "

    This version removes the API communication service dependency on https://wordpress.sucuri.net/api/, because this service has been discontinued until further notice. Users who have their custom APIs to use in place of https://wordpress.sucuri.net/api/ can still use the API communication service by adding the API endpoint as SUCURISCAN_API_URL on the wp-config.php file.

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fb0c-7398-84e8-0d22efc78a01", "name": "Sucuri Security – Auditing, Malware Scanner and Security Hardening", "slug": "sucuri-scanner", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1759319280, "version": "2.5"}, "support_threads": 2, "requires_plugins": [], "short_description": "The Sucuri WordPress Security plugin is a security toolset for security integrity monitoring, malware detection and security hardening.", "author_block_count": 0, "author_block_rating": 84, "commercial_support_url": "", "support_threads_resolved": 2}'); -INSERT INTO public.plugins VALUES ('019a30c1-6703-7285-bca7-72fb6b577478', 'svg-support', 'SVG Support', 'Securely upload SVG files to your media library, with built-in sanitization and advanced features for styling and animation.', '

    The complete SVG solution for WordPress – secure, flexible, and easy to use.

    -

    SVG Support enables secure SVG uploads with powerful features for both basic users and developers:

    -

    Key Features:
    -– Secure SVG uploads with automatic sanitization
    -– Inline rendering for direct CSS/JS manipulation
    -– File size optimization through minification
    -– Role-based access control
    -– Advanced developer options
    -– Multisite compatible
    -– Full Block Editor (Gutenberg) compatibility

    -

    🔒 Security First:
    -– Built-in sanitization removes potentially harmful code
    -– Role-based upload restrictions
    -– Comprehensive MIME type validation

    -

    🎨 Designer Friendly:
    -– Direct styling of SVG elements
    -– Animation support
    -– Custom class targeting
    -– Automatic dimension handling

    -

    💻 Developer Ready:
    -– Advanced mode for additional features
    -– REST API support
    -– Gutenberg compatible
    -– Extensive hooks and filters

    -

    Usage

    -

    Basic Usage:
    -– First, install and activate SVG Support via your WordPress dashboard
    -– Upload SVG files to your media library like any other image
    -– Works seamlessly with Image blocks, Cover blocks and featured images

    -

    Advanced Usage:
    -– Enable “Advanced Mode” for minification and inline rendering
    -– Customize with hooks and filters for tailored functionality

    -

    Block Editor Usage:
    -– Use Advanced Mode to enable inline rendering:
    - – Add the "style-svg" class to Image blocks
    - – Add the "style-svg" class to Cover blocks to render SVG backgrounds inline
    -– Use “Skip Nested SVGs” setting to control inline rendering of SVGs within Cover blocks

    -

    Classic Editor Usage:
    -– Use Advanced Mode to add the "style-svg" class to <img> tags for inline rendering
    -– Enable “Auto Insert Class” option for automatic class insertion in Classic Editor

    -

    Common Issues & Solutions:
    -– SVG not displaying? Ensure dimensions are set in CSS.
    -– Need help? Use the support tab and I will do my best to assist you.

    -

    Spin up a test site

    -

    With a single click, you can spin up a completely free test site to test SVG Support using TasteWP! No sign up, no cards, nothing! How cool is that? Give it a go:
    -Click Here to spin up a test site in seconds

    -

    Security

    -

    SVG Support prioritizes security with automatic sanitization and role-based restrictions. Only trusted users should have upload permissions. Configure settings to balance functionality and security.

    -

    Feedback

    -

    I’m open to your suggestions and feedback – Thanks for using SVG Support!

    -

    Follow @SVGSupport on Twitter
    -Follow @benbodhi on Twitter
    -Follow @benbodhi on Warpcast

    -

    Note: I hope you like this plugin! Please take a moment to rate it.

    -

    Development & Contributing

    -

    The development version of SVG Support is maintained on GitHub. Feel free to contribute:

    - -

    Translations

    -

    Contribute translations here. New to translating? Check the Translator Handbook.

    -', '2.5.14', 'Benbodhi', '5.8', '7.4', '6.7.4', 'https://downloads.wordpress.org/plugin/svg-support.2.5.14.zip', '2014-07-22 00:00:00+00', '2025-02-25 08:34:00+00', 'https://profiles.wordpress.org/benbodhi/', 96, 351, 3, 0, 1000000, 12273337, 'http://wordpress.org/plugins/svg-support/', 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Z9R7JERS82EQQ', NULL, NULL, 'https://wordpress.org/support/plugin/svg-support/', 'https://wordpress.org/plugins/svg-support/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "SVG Support", "slug": "svg-support", "tags": {"svg": "SVG", "vector": "Vector", "safe-svg": "safe svg", "mime-type": "mime type", "sanitization": "sanitization"}, "added": "2014-07-22", "icons": {"1x": "https://ps.w.org/svg-support/assets/icon.svg?rev=1417738", "svg": "https://ps.w.org/svg-support/assets/icon.svg?rev=1417738"}, "author": "Benbodhi", "rating": 96, "status": "open", "tested": "6.7.4", "banners": {"low": "https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377", "high": "https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377"}, "ratings": {"1": 11, "2": 5, "3": 6, "4": 2, "5": 327}, "version": "2.5.14", "homepage": "http://wordpress.org/plugins/svg-support/", "requires": "5.8", "sections": {"faq": "\n
    \nSVG not rendering inline since 2.3 update\n\n

    \n

    Ensure “Advanced Mode” is enabled in Settings > SVG Support.

    \n

    \n
    \nHow do I disable the Javascript on the front end if I am not using inline SVG?\n\n

    \n

    Disable “Advanced Mode” in the settings.

    \n

    \n
    \nI’m trying to use SVG in the customizer but it’s not working.\n\n

    \n

    To allow SVG to work in the customizer, you will need to modify/add some code in your child theme’s function file. Here is a great tutorial on how to do that. The important part is:

    \n
    ''flex-width''    => true\n''flex-height''   => true\n
    \n

    \n
    \nHow do I add animation to my SVG?\n\n

    \n

    You will need to edit your SVG file in a code editor so you can add CSS classes to each element you need to target within the SVG. Make sure that your IMG tag is being swapped out for your inline SVG and then you can use CSS or JS to apply animations to elements within your SVG file.

    \n

    \n
    \nWhy is SVG Support not working in multisite?\n\n

    \n

    If you installed multisite prior to WordPress 3.5, then you will need to remove your ms-files. Here is a couple of resources to help you: Dumping ms-files Removing ms-files after 3.5.

    \n

    \n
    \nWhy is my SVG not working in Visual Composer?\n\n

    \n

    If you are using SVG Support with Visual Composer or any other page builders, you will need to make sure that you can add your own class to the image. The easiest way to do this is by using a simple text or code block in the builder to put your image code in to. Additionally, there is now a setting to force all SVG files to be rendered inline.

    \n

    \n
    \nHow do I get this to work with the Media Library Assistant plugin?\n\n

    \n

    You need to add the mime type for svg and svgz to: “MLA Settings > Media Library Assistant > Uploads (tab)” and then it works.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works as advertised!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy atkulp on September 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I wanted to be able to use SVG files for logo and other assets and this plugin made it easy. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect plug-in

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Nandor (flashfabio) on August 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works well, happy to use. Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It works perfectly!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy viniferraz24 on July 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It did what it promised. I will definitely use it again in future projects!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does exactly what it claims

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy douglockyer64 on July 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Makes uploading and applying/styling custom svg icons a breeze. Integrates perfectly with elementor and font awesome.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ryan Tvenge (rtvenge) on April 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin we use on so many sites.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Causes significant memory spike

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy elaborate (Azinfiro) on April 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using this plugin on a client''s site for a while without thinking much of it, but after investigating a complaint of a sluggish UI, it turns out this plugin is responsible for a 500 MB memory increase when only two SVG files are displayed on the page.

    Enabling SVG support for the WordPress media library can be done with a dozen lines of PHP, so just switching form this plugin to a few lines in functions.php has returned RAM consumption back to normal again.

    I previously wrote that this plugin appears to convert SVG to HTML and CSS, but that''s not actually the case—that turned out to be the Safari LiveText implementation. The plugin does nevertheless trigger a memory leak. I haven''t investigated it further, but the developer is welcome to comment on it. I''ll update my review if necessary.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    svg

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy olegdvd on April 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    отлично молодцы

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Never failed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy luiggimon on April 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy garaldo22 on February 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Allows SVG uploads easily - 👌

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    File is not a valid SVG.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ssmx on February 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

     recall this plugin used to work correctly before. Why has it stopped uploading? Interestingly, if I upload a file from another plugin first, it seems the original plugin then properly converts it to inline SVG afterward.

    \n
    \n
    \n", "changelog": "

    2.5.14

    \n
      \n
    • \n

      Security Enhancements:

      \n
        \n
      • Remove default roles from the sanitizer bypass settings
      • \n
      \n
    • \n
    • \n

      Fixes:

      \n
        \n
      • More comprehensive upload checks, allowing generator tags and comment patterns
      • \n
      \n
    • \n
    • \n

      Performance Improvements:

      \n
        \n
      • Cleanup duplicate inline_featured_image meta entries more efficiently
      • \n
      • Remove inline_featured_image meta entries that aren’t explicitly set to 1 (enabled)
      • \n
      • Don’t store inline_featured_image meta for posts that previously had it enabled but don’t anymore
      • \n
      \n
    • \n
    • \n

      General Updates:

      \n
        \n
      • Restructured settings layout
      • \n
      • Better cleanup on uninstall when delete plugin data is selected
      • \n
      \n
    • \n
    \n

    2.5.13

    \n
      \n
    • Code Improvements:\n
        \n
      • Better PHP 8.3 compatibility – added null checks to prevent deprecated warnings in PHP 8.3
      • \n
      \n
    • \n
    \n

    2.5.12

    \n
      \n
    • \n

      General Updates:

      \n
        \n
      • Added blueprint.json for the live preview feature on wordpress.org
      • \n
      \n
    • \n
    • \n

      Fixes:

      \n
        \n
      • Fixed mime type check that was restricting SVG uploads without the XML tag in PHP 7.4
      • \n
      \n
    • \n
    \n

    2.5.11

    \n
      \n
    • Security Enhancement\n
        \n
      • Added more effective handling of sanitization for REST API uploads
      • \n
      \n
    • \n
    \n

    2.5.10

    \n
      \n
    • Fixes:\n
        \n
      • Fixed issue with upload checks preventing plugin uploads
      • \n
      \n
    • \n
    \n

    2.5.9

    \n
      \n
    • \n

      New Features:

      \n
        \n
      • Added new Advanced Mode setting “Skip Nested SVGs” to control inlining of SVGs within containers (for example: nested SVGs in Gutenberg Cover blocks)
      • \n
      • Added proper multisite support for SVG uploads across subsites
      • \n
      • Added network administrator support for SVG uploads on all subsites
      • \n
      \n
    • \n
    • \n

      Security Enhancements:

      \n
        \n
      • Updated DOMPurify library to version 2.5.8
      • \n
      • Updated enshrined/svg-sanitize to version 0.21.0
      • \n
      • Added nonce verification for non-REST uploads to prevent CSRF attacks
      • \n
      • Improved MIME type validation for SVG files
      • \n
      • Enhanced file content validation to ensure only valid SVG files are processed
      • \n
      • Moved security checks earlier in the upload process for better efficiency
      • \n
      • Updated and improved sanitization options for both frontend and admin
      • \n
      \n
    • \n
    • \n

      Code Improvements:

      \n
        \n
      • Changed synchronous XMLHttpRequest to asynchronous in vanilla JS version to improve performance and remove Chrome deprecation warnings
      • \n
      • Removed console logging statements from JavaScript files for cleaner browser console
      • \n
      • Reorganized upload validation flow for better performance
      • \n
      • Added proper error messages for failed security checks
      • \n
      • Improved handling of REST API uploads
      • \n
      • Enhanced code documentation and inline comments
      • \n
      • Added proper plugin asset handling and alt text for admin images
      • \n
      • Enhanced multisite compatibility with proper role and capability checks
      • \n
      • Added network-level upload permission validation
      • \n
      • Added AJAX hooks for featured image inline toggle
      • \n
      • Enqueue minified Gutenberg filters script instead of expanded version
      • \n
      • Added better version update handling
      • \n
      \n
    • \n
    • \n

      Fixes:

      \n
        \n
      • PHP Warning about undefined array key “css_target” in admin init.php
      • \n
      • Fixed “not allowed to upload this file type” error on multisite installations
      • \n
      • Fixed duplicate meta entries for inline featured images preventing post saves
      • \n
      • Added automatic cleanup of duplicate meta entries during plugin update
      • \n
      • Improved handling of featured image meta to prevent duplicate entries
      • \n
      • Updated and refactored Gutenberg featured image checkbox to use modern React hooks instead of deprecated withState
      • \n
      • Fixed missing file path in SVG attachment metadata causing issues with WPML Media Translation
      • \n
      • Fixed jQuery dependency only being required when not using vanilla JS option
      • \n
      \n
    • \n
    • \n

      General Updates:

      \n
        \n
      • Updated security documentation
      • \n
      • Refined error messaging for better user experience
      • \n
      \n
    • \n
    \n

    2.5.8

    \n
      \n
    • \n

      Security Enhancements:

      \n
        \n
      • Improved sanitization of SVG uploads and attachments for enhanced security.
      • \n
      • Ensured all output in the admin settings page is properly escaped.
      • \n
      • Replaced direct file handling functions with WordPress APIs for better security and compatibility.
      • \n
      • Improved translation support with added translators’ comments and ordered placeholders.
      • \n
      \n
    • \n
    • \n

      Admin Interface Improvements:

      \n
        \n
      • Updated admin-init.php with better escaping practices and enhanced security for the settings page.
      • \n
      • Added error logging to SVG processing to assist with debugging without disrupting the user experience.
      • \n
      \n
    • \n
    • \n

      Performance and Compatibility:

      \n
        \n
      • Updated enqueue functions to ensure scripts and styles are loaded efficiently with proper dependencies.
      • \n
      • Improved metadata handling for SVGs to prevent issues in the Media Library and with ACF integration.
      • \n
      • Optimized nonce verification and meta updates in the featured image functions to prevent unnecessary database writes.
      • \n
      \n
    • \n
    • \n

      General Code Improvements:

      \n
        \n
      • Refactored code to reduce redundancy and improve maintainability.
      • \n
      • Added detailed inline documentation for better code clarity and future development.
      • \n
      \n
    • \n
    • \n

      Experimental Integration with WP All Import:

      \n
        \n
      • Introduced integration with WP All Import for experimental SVG handling during imports.
      • \n
      • SVG files imported via WP All Import are sanitized, and their metadata is generated and updated correctly.
      • \n
      • Added error logging to track issues during SVG import processing.
      • \n
      • Note: This feature is experimental and commented out in the main plugin file for now. Feel free to uncomment the include lines to test it out, but please ensure you back up your data first.
      • \n
      \n
    • \n
    \n

    2.5.7

    \n
      \n
    • Compatibility with newer versions of php.
    • \n
    \n

    2.5.6

    \n
      \n
    • Addressed some security concerns.
    • \n
    \n

    2.5.5

    \n
      \n
    • More error fixes and general clean up.
    • \n
    \n

    2.5.4

    \n
      \n
    • Fixed errors.
    • \n
    \n

    2.5.3

    \n
      \n
    • Fixed fatal php error.
    • \n
    \n

    2.5.2

    \n
      \n
    • Added some defaults for better security by default.
    • \n
    \n

    2.5.1

    \n
      \n
    • Added missing quotes in uninstall.php.
    • \n
    \n

    2.5

    \n
      \n
    • Cleaned up spelling mistakes and general formatting.
    • \n
    • Addressed security concern.
    • \n
    • Added more sanitization options – frontend and admin both supported.
    • \n
    • Added support for SVG minification.
    • \n
    • Added ability to choose jQuery or vanilla JS.
    • \n
    • Added DB cleanup on uninstall.
    • \n
    • Fixed dimensions fallback.
    • \n
    \n

    2.4.2

    \n
      \n
    • Fixed srcset warning for some premium themes.
    • \n
    • Fixed original IMG IDs not getting preserved on replacement.
    • \n
    • Removed some rogue text from featured image box.
    • \n
    \n

    2.4.1

    \n
      \n
    • Fixed issue causing WP-CLI to break.
    • \n
    \n

    2.4

    \n
      \n
    • NEW FEATURE: Added optional SVG sanitization.
    • \n
    • NEW FEATURE: Added optional SVG minification.
    • \n
    • Added inline SVG checkbox to Gutenberg featured image.
    • \n
    • Better Gutenberg support in general.
    • \n
    • Modified class targeting to allow inline rendering of nested SVGs (any level deep) when you can’t set the IMG class directly.
    • \n
    • Modified JS to use vanilla JS instead of jQuery.
    • \n
    • Fixed accessibility issues on settings page.
    • \n
    • Fixed dimensions metadata issue.
    • \n
    • Fixed division by 0 issue when SVG had no width or height set.
    • \n
    • Fixed featured image spacing issue in both classic and block editor.
    • \n
    • Bumped required PHP version.
    • \n
    • Removed obsolete admin notice.
    • \n
    • Removed srcset for SVG files.
    • \n
    • Removed directory name from filepath metadata.
    • \n
    \n

    2.3.21

    \n
      \n
    • Fixed featured image SVG overlapping container.
    • \n
    \n

    2.3.20

    \n
      \n
    • Fixed admin setting not being escaped when output.
    • \n
    \n

    2.3.19

    \n
      \n
    • Fixed PHP Warning from localize_script in functions/enqueue.php.
    • \n
    • Added a check for SRC attribute in js/svgs-inline.js.
    • \n
    \n

    2.3.18

    \n
      \n
    • Updated author URL in main plugin file.
    • \n
    • Updated donate links.
    • \n
    • Cleaned up plugin action meta links and settings page.
    • \n
    • Rolled back a fix in functions/attachment.php due to it removing meta from other attachments.
    • \n
    \n

    2.3.17

    \n
      \n
    • Added setting to choose whether to load frontend CSS or not.
    • \n
    \n

    2.3.16

    \n
      \n
    • Fix for files that have the XML declaration.
    • \n
    • Fix for PHP warnings from image widget.
    • \n
    • Some small CSS changes to the frontend when displaying SVG media attachments.
    • \n
    \n

    2.3.15

    \n
      \n
    • Had to roll back a recent PHP warnings fix due to it breaking some theme compatibility.
    • \n
    \n

    2.3.14

    \n
      \n
    • Fixed: Fatal error in some cases when removing old option from the database.
    • \n
    \n

    2.3.13

    \n
      \n
    • Fixed: PHP warnings and notices from the image widget when using SVG files and wp_debug was on.
    • \n
    • Modified: Better front end CSS for displaying SVG attachments, both as images and inline.
    • \n
    • Removed: DB entry for deprecated admin notice.
    • \n
    \n

    2.3.12

    \n
      \n
    • New: Native “Help” tab on the SVG Support settings page.
    • \n
    • New: Wrapped the inline JS in a function so you can call it at will using bodhisvgsInlineSupport();.
    • \n
    • Modified: Admin CSS to target SVG src only.
    • \n
    • Modified: SVG Support settings page – cleaned it up a little.
    • \n
    • Removed: Version update admin notice.
    • \n
    \n

    2.3.11

    \n
      \n
    • New: Feature to use expanded JS file rather than the minified/compressed version (useful for bundling and minifying using external caching plugins).
    • \n
    • New: Force Inline SVG option. This feature allows you to force all of your SVG files to be rendered inline regardless of classes applied. Addresses issues where you can’t add your own class to an image for some reason. For example, some page builder image elements. Also addresses changing your target class in the settings and needing to change all of your already embedded media, allowing you to simply force render rather than update all of the classes.
    • \n
    • Modified the readme file and descriptions a bit.
    • \n
    • Refined some code in functions/featured-image.php line 69 to address a warning.
    • \n
    • Updated “Requires at least” tag to 4.8 (though it should still work in older versions, there was issues with core during the 4.7 phase and it’s time for you to update anyway).
    • \n
    \n

    2.3.10

    \n
      \n
    • Fixed missing links in settings page.
    • \n
    \n

    2.3.9

    \n
      \n
    • Modified plugin action meta link for settings page.
    • \n
    • Changed some language throughout the plugin.
    • \n
    • Added recommendation for ShortPixel Image Optimization.
    • \n
    • Added conditional to check post type supports thumbnail before setting meta data.
    • \n
    \n

    2.3.8

    \n
      \n
    • Added some CSS to make sure featured images show on WooCommerce products, Sensei Courses and Lessons.
    • \n
    • Fix: Auto insert class setting was stripping featured image HTML in some cases.
    • \n
    \n

    2.3.7

    \n
      \n
    • Added WP version check to wrap mime fix function needed for WP v4.7.1 – v4.7.2.
    • \n
    • Moved mime fix into mime type file.
    • \n
    • Modified admin notice code to make it neater.
    • \n
    • Fix: attachment-modal.php issues with some servers and external SVG files (props to @abstractourist & @malthejorgensen for providing fixes, as I could not consistently reproduce the issue).
    • \n
    • Compatibility: Changed a line to provide wider compatibility, specifically for WordPress Bedrock on a LEMP stack.
    • \n
    • Compatibility: Added another snippet to the JS to support IE11 (apparently people still use IE).
    • \n
    • Added more FAQ’s.
    • \n
    \n

    2.3.6

    \n
      \n
    • New: Added polyfill to make svgs-inline.js work with older browsers.
    • \n
    • New: Section to leave reviews on settings page.
    • \n
    • Removed: Redundant one time upgrade activate code.
    • \n
    • Fix: Errors reported on activation and on the settings page – Related Support Thread.
    • \n
    \n

    2.3.5

    \n
      \n
    • Revision and modification of the thumbnail display code.
    • \n
    \n

    2.3.4

    \n
      \n
    • Fix: Fatal error for some because a function wasn’t prefixed.
    • \n
    \n

    2.3.3

    \n
      \n
    • Fix: Missing arguments PHP warnings from new attribute control file.
    • \n
    • Update settings page text.
    • \n
    \n

    2.3.2

    \n
      \n
    • Modified the attribute control code that auto inserts our class to only apply to SVG files.
    • \n
    \n

    2.3.1

    \n
      \n
    • Fix: Fatal error in some cases due to admin notice.
    • \n
    \n

    2.3

    \n
      \n
    • New Feature – Advanced Mode: allows you to turn off the advanced features and simply upload SVG files like normal images. This addition also enables users to turn off the script added on front end by leaving Advanced Mode unchecked.
    • \n
    • New Feature – Featured Image Support: If your featured image is SVG, once the post is saved you will see a checkbox to render the SVG inline (advanced mode only).
    • \n
    • Performance – Stop inlining JS from running if image source is not SVG.
    • \n
    • Added new stylesheet for settings page.
    • \n
    • Moved SCSS files to their own folder.
    • \n
    • Changed donate link so I can track it and properly thank you for your generous donations.
    • \n
    • Added a rating link to the settings and media pages.
    • \n
    • Cleaned up code formatting, added more comments.
    • \n
    • Added a plugin version check.
    • \n
    • Added notice so people are aware they may need to turn on the advanced mode.
    • \n
    \n

    2.2.5

    \n
      \n
    • FIX: Display SVG thumbnails in attachment modals.
    • \n
    \n

    2.2.4

    \n
      \n
    • FIX: Added function to temporarily fix an issue with uploading in WP 4.7.1
    • \n
    \n

    2.2.32

    \n
      \n
    • Changed text domain to match plugin slug for localization.
    • \n
    \n

    2.2.31

    \n
      \n
    • Attempt to fix ability to translate
    • \n
    \n

    2.2.3

    \n
      \n
    • Modified code in svg-support/js/svg-inline.js and svg-support/js/min/svg-inline-min.js to allow JS control of the SVG elements and detect if they have been loaded (IMG tag swapped out). Thanks to laurosello for this suggestion and code contribution.
    • \n
    • Fixed SVG thumbnails not displaying correctly in list view of the media library.
    • \n
    • Cleaned up the code and comments a bit.
    • \n
    • Added translation for Spanish. Thanks to Apasionados del Marketing for the translation.
    • \n
    \n

    2.2.2

    \n
      \n
    • Changed another anonymous function in svg-support/functions/thumbnail-display.php that was causing errors for some.
    • \n
    \n

    2.2.1

    \n
      \n
    • Changed anonymous function in svg-support/functions/thumbnail-display.php line 15 to prevent fatal error in older PHP versions.
    • \n
    \n

    2.2

    \n
      \n
    • Added support to make SVG thumbnails visible in all media library screens.
    • \n
    • Added SVGZ to the mime types.
    • \n
    • Automatically removes the width and height attributes when inserting SVG files.
    • \n
    • Added ability to choose whether the target class is automatically inserted into img tags or not, stripping the default WordPress classes.
    • \n
    • Added ability to choose whether script is output in footer – true or false.
    • \n
    • Blocked direct access to PHP files.
    • \n
    • Added SCSS support using CodeKit – minified CSS + JS files.
    • \n
    • Updated spelling for incorrect function name.
    • \n
    • Changed comment formatting across all files for consistency.
    • \n
    • Added link to $25 Free credit at GoWebben on the settings page.
    • \n
    • Tested in WordPress 4.3.
    • \n
    • Updated Readme file.
    • \n
    \n

    2.1.7

    \n
      \n
    • Tested in WordPress 4.0 and added plugin icons for the new interface.
    • \n
    \n

    2.1.6

    \n
      \n
    • Added missing jQuery dependency in /functions/enqueue.php (pointed out by walbach) – was loading SVG Support JS before jQuery.
    • \n
    \n

    2.1.5

    \n
      \n
    • Added Serbian translation, submitted by Ogi Djuraskovic.
    • \n
    \n

    2.1.4

    \n
      \n
    • Fixed plugin settings link (on plugins page)
    • \n
    • Added more links – Support & Donate
    • \n
    • Modified the settings page a little
    • \n
    • Cleaned up settings page with CSS
    • \n
    • Satisfied my OCD tendencies a little
    • \n
    \n

    2.1.3

    \n
      \n
    • Added plugin_action_links file for custom menus on plugin page.
    • \n
    \n

    2.1.2

    \n
      \n
    • Cleaned up trunk, tags and readme.txt to show correct changelog and update notice.
    • \n
    \n

    2.1.1

    \n
      \n
    • Fixed JS file conditional – worked in local testing but not live.
    • \n
    \n

    2.1

    \n
      \n
    • Updates to language files for localization.
    • \n
    \n

    2.0

    \n
      \n
    • Added an admin settings page with instructions plus options for restricting to admin use only and setting a custom CSS target class.
    • \n
    • Whole plugin completely re-written and re-structured.
    • \n
    • Added option to restrict SVG uploads to administrators only.
    • \n
    • Added field for custom CSS target class.
    • \n
    • Added stylesheet to admin settings page.
    • \n
    \n

    1.0

    \n
      \n
    • Initial Release.
    • \n
    \n", "description": "

    The complete SVG solution for WordPress – secure, flexible, and easy to use.

    \n

    SVG Support enables secure SVG uploads with powerful features for both basic users and developers:

    \n

    Key Features:
    \n– Secure SVG uploads with automatic sanitization
    \n– Inline rendering for direct CSS/JS manipulation
    \n– File size optimization through minification
    \n– Role-based access control
    \n– Advanced developer options
    \n– Multisite compatible
    \n– Full Block Editor (Gutenberg) compatibility

    \n

    🔒 Security First:
    \n– Built-in sanitization removes potentially harmful code
    \n– Role-based upload restrictions
    \n– Comprehensive MIME type validation

    \n

    🎨 Designer Friendly:
    \n– Direct styling of SVG elements
    \n– Animation support
    \n– Custom class targeting
    \n– Automatic dimension handling

    \n

    💻 Developer Ready:
    \n– Advanced mode for additional features
    \n– REST API support
    \n– Gutenberg compatible
    \n– Extensive hooks and filters

    \n

    Usage

    \n

    Basic Usage:
    \n– First, install and activate SVG Support via your WordPress dashboard
    \n– Upload SVG files to your media library like any other image
    \n– Works seamlessly with Image blocks, Cover blocks and featured images

    \n

    Advanced Usage:
    \n– Enable “Advanced Mode” for minification and inline rendering
    \n– Customize with hooks and filters for tailored functionality

    \n

    Block Editor Usage:
    \n– Use Advanced Mode to enable inline rendering:
    \n – Add the \"style-svg\" class to Image blocks
    \n – Add the \"style-svg\" class to Cover blocks to render SVG backgrounds inline
    \n– Use “Skip Nested SVGs” setting to control inline rendering of SVGs within Cover blocks

    \n

    Classic Editor Usage:
    \n– Use Advanced Mode to add the \"style-svg\" class to <img> tags for inline rendering
    \n– Enable “Auto Insert Class” option for automatic class insertion in Classic Editor

    \n

    Common Issues & Solutions:
    \n– SVG not displaying? Ensure dimensions are set in CSS.
    \n– Need help? Use the support tab and I will do my best to assist you.

    \n

    Spin up a test site

    \n

    With a single click, you can spin up a completely free test site to test SVG Support using TasteWP! No sign up, no cards, nothing! How cool is that? Give it a go:
    \nClick Here to spin up a test site in seconds

    \n

    Security

    \n

    SVG Support prioritizes security with automatic sanitization and role-based restrictions. Only trusted users should have upload permissions. Configure settings to balance functionality and security.

    \n

    Feedback

    \n

    I’m open to your suggestions and feedback – Thanks for using SVG Support!

    \n

    Follow @SVGSupport on Twitter
    \nFollow @benbodhi on Twitter
    \nFollow @benbodhi on Warpcast

    \n

    Note: I hope you like this plugin! Please take a moment to rate it.

    \n

    Development & Contributing

    \n

    The development version of SVG Support is maintained on GitHub. Feel free to contribute:

    \n\n

    Translations

    \n

    Contribute translations here. New to translating? Check the Translator Handbook.

    \n", "screenshots": "
    1. \"Basic

      Basic Settings

    2. \"Advanced

      Advanced Settings

    3. \"Featured

      Featured Image checkbox to render SVG inline

    4. \"SVG

      SVG used in WP native Image Widget

    5. \"Inline

      Inline SVG in the front end markup

    6. \"Help

      Help tab - Overview

    7. \"Help

      Help tab - The Settings

    8. \"Help

      Help tab - Standard Usage

    9. \"Help

      Help tab - Render SVG Inline (advanced usage)

    10. \"\"
    11. \"\"
    "}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/svg-support.1.0.zip", "2.0": "https://downloads.wordpress.org/plugin/svg-support.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/svg-support.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/svg-support.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/svg-support.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/svg-support.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/svg-support.2.5.zip", "2.1.1": "https://downloads.wordpress.org/plugin/svg-support.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/svg-support.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/svg-support.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/svg-support.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/svg-support.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/svg-support.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/svg-support.2.1.7.zip", "2.2.1": "https://downloads.wordpress.org/plugin/svg-support.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/svg-support.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/svg-support.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/svg-support.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/svg-support.2.2.5.zip", "2.3.1": "https://downloads.wordpress.org/plugin/svg-support.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/svg-support.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/svg-support.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/svg-support.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/svg-support.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/svg-support.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/svg-support.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/plugin/svg-support.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/plugin/svg-support.2.3.9.zip", "2.4.1": "https://downloads.wordpress.org/plugin/svg-support.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/svg-support.2.4.2.zip", "2.5.1": "https://downloads.wordpress.org/plugin/svg-support.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/svg-support.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/svg-support.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/svg-support.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/svg-support.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/svg-support.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/svg-support.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/plugin/svg-support.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/plugin/svg-support.2.5.9.zip", "trunk": "https://downloads.wordpress.org/plugin/svg-support.zip", "2.3.10": "https://downloads.wordpress.org/plugin/svg-support.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/plugin/svg-support.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/plugin/svg-support.2.3.12.zip", "2.3.13": "https://downloads.wordpress.org/plugin/svg-support.2.3.13.zip", "2.3.14": "https://downloads.wordpress.org/plugin/svg-support.2.3.14.zip", "2.3.15": "https://downloads.wordpress.org/plugin/svg-support.2.3.15.zip", "2.3.16": "https://downloads.wordpress.org/plugin/svg-support.2.3.16.zip", "2.3.17": "https://downloads.wordpress.org/plugin/svg-support.2.3.17.zip", "2.3.18": "https://downloads.wordpress.org/plugin/svg-support.2.3.18.zip", "2.3.19": "https://downloads.wordpress.org/plugin/svg-support.2.3.19.zip", "2.3.20": "https://downloads.wordpress.org/plugin/svg-support.2.3.20.zip", "2.3.21": "https://downloads.wordpress.org/plugin/svg-support.2.3.21.zip", "2.5.10": "https://downloads.wordpress.org/plugin/svg-support.2.5.10.zip", "2.5.11": "https://downloads.wordpress.org/plugin/svg-support.2.5.11.zip", "2.5.12": "https://downloads.wordpress.org/plugin/svg-support.2.5.12.zip", "2.5.13": "https://downloads.wordpress.org/plugin/svg-support.2.5.13.zip", "2.5.14": "https://downloads.wordpress.org/plugin/svg-support.2.5.14.zip", "2.2.3.1": "https://downloads.wordpress.org/plugin/svg-support.2.2.3.1.zip", "2.2.3.2": "https://downloads.wordpress.org/plugin/svg-support.2.2.3.2.zip"}, "downloaded": 12273337, "description": "

    The complete SVG solution for WordPress – secure, flexible, and easy to use.

    \n

    SVG Support enables secure SVG uploads with powerful features for both basic users and developers:

    \n

    Key Features:
    \n– Secure SVG uploads with automatic sanitization
    \n– Inline rendering for direct CSS/JS manipulation
    \n– File size optimization through minification
    \n– Role-based access control
    \n– Advanced developer options
    \n– Multisite compatible
    \n– Full Block Editor (Gutenberg) compatibility

    \n

    🔒 Security First:
    \n– Built-in sanitization removes potentially harmful code
    \n– Role-based upload restrictions
    \n– Comprehensive MIME type validation

    \n

    🎨 Designer Friendly:
    \n– Direct styling of SVG elements
    \n– Animation support
    \n– Custom class targeting
    \n– Automatic dimension handling

    \n

    💻 Developer Ready:
    \n– Advanced mode for additional features
    \n– REST API support
    \n– Gutenberg compatible
    \n– Extensive hooks and filters

    \n

    Usage

    \n

    Basic Usage:
    \n– First, install and activate SVG Support via your WordPress dashboard
    \n– Upload SVG files to your media library like any other image
    \n– Works seamlessly with Image blocks, Cover blocks and featured images

    \n

    Advanced Usage:
    \n– Enable “Advanced Mode” for minification and inline rendering
    \n– Customize with hooks and filters for tailored functionality

    \n

    Block Editor Usage:
    \n– Use Advanced Mode to enable inline rendering:
    \n – Add the \"style-svg\" class to Image blocks
    \n – Add the \"style-svg\" class to Cover blocks to render SVG backgrounds inline
    \n– Use “Skip Nested SVGs” setting to control inline rendering of SVGs within Cover blocks

    \n

    Classic Editor Usage:
    \n– Use Advanced Mode to add the \"style-svg\" class to <img> tags for inline rendering
    \n– Enable “Auto Insert Class” option for automatic class insertion in Classic Editor

    \n

    Common Issues & Solutions:
    \n– SVG not displaying? Ensure dimensions are set in CSS.
    \n– Need help? Use the support tab and I will do my best to assist you.

    \n

    Spin up a test site

    \n

    With a single click, you can spin up a completely free test site to test SVG Support using TasteWP! No sign up, no cards, nothing! How cool is that? Give it a go:
    \nClick Here to spin up a test site in seconds

    \n

    Security

    \n

    SVG Support prioritizes security with automatic sanitization and role-based restrictions. Only trusted users should have upload permissions. Configure settings to balance functionality and security.

    \n

    Feedback

    \n

    I’m open to your suggestions and feedback – Thanks for using SVG Support!

    \n

    Follow @SVGSupport on Twitter
    \nFollow @benbodhi on Twitter
    \nFollow @benbodhi on Warpcast

    \n

    Note: I hope you like this plugin! Please take a moment to rate it.

    \n

    Development & Contributing

    \n

    The development version of SVG Support is maintained on GitHub. Feel free to contribute:

    \n\n

    Translations

    \n

    Contribute translations here. New to translating? Check the Translator Handbook.

    \n", "donate_link": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Z9R7JERS82EQQ", "num_ratings": 351, "screenshots": {"1": {"src": "https://ps.w.org/svg-support/assets/screenshot-1.png?rev=1860006", "caption": "Basic Settings"}, "2": {"src": "https://ps.w.org/svg-support/assets/screenshot-2.png?rev=1860006", "caption": "Advanced Settings"}, "3": {"src": "https://ps.w.org/svg-support/assets/screenshot-3.png?rev=1575314", "caption": "Featured Image checkbox to render SVG inline"}, "4": {"src": "https://ps.w.org/svg-support/assets/screenshot-4.png?rev=1860006", "caption": "SVG used in WP native Image Widget"}, "5": {"src": "https://ps.w.org/svg-support/assets/screenshot-5.png?rev=1860006", "caption": "Inline SVG in the front end markup"}, "6": {"src": "https://ps.w.org/svg-support/assets/screenshot-6.png?rev=1860724", "caption": "Help tab - Overview"}, "7": {"src": "https://ps.w.org/svg-support/assets/screenshot-7.png?rev=1860724", "caption": "Help tab - The Settings"}, "8": {"src": "https://ps.w.org/svg-support/assets/screenshot-8.png?rev=1860724", "caption": "Help tab - Standard Usage"}, "9": {"src": "https://ps.w.org/svg-support/assets/screenshot-9.png?rev=1860724", "caption": "Help tab - Render SVG Inline (advanced usage)"}, "91": {"src": "https://ps.w.org/svg-support/assets/screenshot-91.png?rev=1860724", "caption": ""}, "92": {"src": "https://ps.w.org/svg-support/assets/screenshot-92.png?rev=1860724", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/svg-support/", "contributors": {"benbodhi": {"avatar": "https://secure.gravatar.com/avatar/ca9922fd505e5086500482a586fb5ddb2fb374293304d9240401eca15e1709a3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/benbodhi/", "display_name": "Benbodhi"}}, "last_updated": "2025-02-25 8:34am GMT", "preview_link": "https://wordpress.org/plugins/svg-support/?preview=1", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/svg-support.2.5.14.zip", "author_profile": "https://profiles.wordpress.org/benbodhi/", "business_model": false, "repository_url": "", "upgrade_notice": {"1.0": "
      \n
    • Initial Release.
    • \n
    ", "2.0": "
      \n
    • SVG Support has been completely re-written and re-structured. It now includes an admin settings page with instructions, plus options for restricting to admin use only and setting a custom CSS target class.
    • \n
    ", "2.1": "
      \n
    • Updated language files for localization that were missed in version 2.0.
    • \n
    ", "2.2": "
      \n
    • Significant changes, added functionality, please BACKUP BEFORE UPDATING just in case.
    • \n
    ", "2.3": "

    IMPORTANT, MAJOR CHANGES, BACKUP BEFORE UPDATING: Users that are inlining SVG will need to make sure "Advanced Mode" is active under "Settings > SVG Support". Your settings should all still be there. Make sure you run a backup before updating just in case!!!

    ", "2.4": "

    Now featuring optional SVG sanitization and ability to target nested SVGs! This update contains a lot, please BACKUP YOUR DATABASE AND FILES BEFORE UPDATING!

    ", "2.5": "

    Adds new features and addresses a number of recent issues raised. Please take a backup before updating!

    ", "2.1.1": "
      \n
    • Update to conditional in JS file.
    • \n
    ", "2.1.2": "
      \n
    • A little bit of house cleaning, updates to changelog and readme.txt for correct output with current version.
    • \n
    ", "2.1.3": "
      \n
    • Added a link on the plugins page to the plugin settings page for easy access after install.
    • \n
    ", "2.1.4": "
      \n
    • Some more re-arranging, added a few helpful links, updated language files, tended to my OCD a bit.
    • \n
    ", "2.1.5": "
      \n
    • Added Serbian translation, submitted by Ogi Djuraskovic.
    • \n
    ", "2.1.6": "
      \n
    • Important update! Added missing jQuery dependency in /functions/enqueue.php - was loading SVG Support JS before jQuery.
    • \n
    ", "2.1.7": "
      \n
    • Tested in WordPress 4.0 and added plugin icons for the new interface.
    • \n
    ", "2.2.1": "
      \n
    • Minor change to remove anonymous function that triggered a fatal error in older PHP versions.
    • \n
    ", "2.2.2": "
      \n
    • Fix - Another change from anonymous function that was triggering errors for some.
    • \n
    ", "2.2.3": "
      \n
    • Feature - Changed code to allow JS detection if SVG has loaded and ability to control SVG using JS.
    • \n
    • Fix - Thumbnail display in media library list view.
    • \n
    • Added Spanish translation and cleaned up code/comments a bit.
    • \n
    ", "2.2.4": "
      \n
    • IMPORTANT: Fixes upload ability in WP 4.7.1
    • \n
    ", "2.2.5": "
      \n
    • Fix to display SVG thumbnails in attachment modals. (NOTE: You can not edit SVG files like other images in WordPress)
    • \n
    ", "2.3.1": "
      \n
    • Fixes fatal error in some cases due to admin notice in V2.3.
    • \n
    ", "2.3.2": "
      \n
    • Changes to the way the auto class insert works.
    • \n
    ", "2.3.3": "
      \n
    • This update fixes some PHP warnings introduced in 2.3.2 and also has updated settings page text.
    • \n
    ", "2.3.4": "
      \n
    • Fixes fatal error for some because a function wasn't prefixed.
    • \n
    ", "2.3.5": "
      \n
    • Modifications to thumbnail display code to prevent output buffer clash with another plugin.
    • \n
    ", "2.3.6": "
      \n
    • Adds support for older browsers, fixes a couple of seemingly isolated errors reported, removes some redundant code.
    • \n
    ", "2.3.7": "
      \n
    • Fixes issues with media library not loading for some, attachment-modal errors and adds some wider compatibility.
    • \n
    ", "2.3.8": "
      \n
    • Adds better support for WooCommerce and Sensei. Fixes issue with featured images not showing up when auto insert class setting is on.
    • \n
    ", "2.3.9": "
      \n
    • Cleaned up some code and language, now stores less meta when not needed and added a plugin recommendation for Image Optimization.
    • \n
    ", "2.4.1": "

    2.4.1 fixes broken WP-CLI. Now featuring optional SVG sanitization and ability to target nested SVGs! This update contains a lot, please BACKUP YOUR DATABASE AND FILES BEFORE UPDATING!

    ", "2.4.2": "

    2.4.2 fixes srcset issue firing PHP warnings for some themes and original image IDs missing on replacement to inline SVG.

    ", "2.5.1": "

    2.5 Adds new features and addresses a number of recent issues raised. Please take a backup before updating!\n2.5.1 fixes the uninstall file.

    ", "2.5.2": "

    Updating to 2.5+ Adds new features and addresses a number of earlier issues raised. Please take a backup before updating!\n2.5.2 introduces some defaults for better security.

    ", "2.5.3": "

    Updating to 2.5+ Adds new features and addresses a number of earlier issues raised. Please take a backup before updating!\n2.5.3 fixes fatal error in 2.5.2.

    ", "2.5.4": "

    Updating to 2.5+ Adds new features and addresses a number of earlier issues raised. Please take a backup before updating!\n2.5.4 fixes errors in the 2.5 series of updates.

    ", "2.5.5": "

    Updating to 2.5+ Adds new features and addresses a number of earlier issues raised. Please take a backup before updating!\n2.5.5 fixes more reported errors in the 2.5 series of updates.

    ", "2.5.6": "

    This update addresses some security concerns.

    ", "2.5.7": "

    This update addresses issues with newer PHP versions.

    ", "2.5.8": "

    Improved security, enhanced SVG processing, and updated admin interface. Includes better sanitization and escaping practices. Please take a backup before updating!

    ", "2.5.9": "

    Important security update that adds enhanced upload validation, MIME type checking, and CSRF protection. Please backup before updating. No configuration changes required - all security improvements work automatically.

    ", "2.2.31": "
      \n
    • This release attempts to fix translation issues.
    • \n
    ", "2.2.32": "
      \n
    • Changed text domain to match plugin slug for localization.
    • \n
    ", "2.3.10": "
      \n
    • Fixed missing links in settings page.
    • \n
    ", "2.3.11": "
      \n
    • New Features and Fixes: Added "Force Inline SVG" to render all SVG files inline with one click. Option to use an expanded JS version for separate minification with a caching plugin.
    • \n
    ", "2.3.12": "
      \n
    • Inline JS can now be called using bodhisvgsInlineSupport();. Added a native help tab and removed the admin update notice. General cleanup of code and settings page. Remember to back up your site before updating.
    • \n
    ", "2.3.13": "

    Update to address PHP warnings and notices on the image widget when wp_debug is enabled.

    ", "2.3.14": "

    Fixes fatal error in some cases when removing old option from the database.

    ", "2.3.15": "

    Had to roll back a recent PHP warnings fix due to it breaking some theme compatibility.

    ", "2.3.16": "

    This update addresses upload issues, PHP warnings and some frontend CSS changes with attachment display.

    ", "2.3.17": "

    Added a setting to choose whether to load the frontend CSS file or not. It was previously enabled by default, so you may want to flick that on after the update. This allows you to leave it out so your site has one less file to load :)

    ", "2.3.18": "

    General clean up of plugin, testing on latest nightly build plus fixed issue with metadata being removed from non SVG attachments.

    ", "2.3.19": "

    Quick update to address PHP warnings from localize_script and to add a SRC check.

    ", "2.3.20": "

    Added more security.

    ", "2.3.21": "

    Fixes featured image display on edit post screen.

    ", "2.5.10": "

    Fixed issue with upload checks preventing plugin uploads

    ", "2.5.11": "

    Security update: added more effective handling of sanitization for REST API uploads

    ", "2.5.12": "

    Fixes mime type check that was restricting SVG uploads without the XML tag in PHP 7.4

    ", "2.5.13": "

    Better PHP 8.3 compatibility (added null checks to prevent deprecated warnings in PHP 8.3)

    ", "2.5.14": "

    Better DB handling, better upload checks

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fb31-7212-8f63-9c0150083526", "name": "SVG Support", "slug": "svg-support", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1740472440, "version": "2.5.14"}, "support_threads": 3, "requires_plugins": [], "short_description": "Securely upload SVG files to your media library, with built-in sanitization and advanced features for styling and animation.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-670c-73c4-af58-317d7dddeeec', 'tablepress', 'TablePress – Tables in WordPress made easy', 'Embed beautiful, accessible, and interactive tables into your WordPress website’s posts and pages, without having to write code!', '

    Boost your website with feature-rich tables that your visitors will love!

    -

    TablePress is the most popular and highest-rated WordPress table plugin.

    -
      -
    • Easily create, edit, and manage beautiful and modern data tables, no matter if small or large!
    • -
    • Add live sorting, pagination, searching, and more interactivity for your site’s visitors!
    • -
    • Use any type of data, insert images, links, and even math formulas!
    • -
    • Import and export tables from/to Excel, CSV, HTML, and JSON files or URLs.
    • -
    • Embed tables into posts, pages, or other site areas using the block editor, an Elementor widget, or Shortcodes.
    • -
    • All with no coding knowledge needed!
    • -
    -

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    -

    More information

    -

    Visit tablepress.org for more information, take a look at example tables, or try TablePress on a free test site. For latest news, follow @TablePress on Twitter/X or subscribe to the TablePress Newsletter.

    -

    How to use TablePress

    -

    After installing the plugin, you can create and manage tables on the “TablePress” screen in the WordPress Dashboard.

    -

    To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.

    -

    Beginner-friendly step-by-step tutorials, guides, and how-tos show how to achieve common and popular tasks with TablePress.
    -Examples for common styling changes via “Custom CSS” code can be found on the TablePress FAQ page.
    -You may also add certain features (like sorting, pagination, filtering, alternating row colors, row highlighting, print name and/or description, …) by enabling the corresponding checkboxes on a table’s “Edit” screen.

    -

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    -', '3.2.5', 'Tobias Bäthge', '6.2', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/tablepress.3.2.5.zip', '2012-06-14 00:00:00+00', '2025-10-28 04:41:00+00', 'https://profiles.wordpress.org/tobiasbg/', 100, 4614, 22, 20, 700000, 21686612, 'https://tablepress.org/', 'https://tablepress.org/premium/?utm_source=wordpress.org&utm_medium=textlink&utm_content=donate-link', 'commercial', 'https://tablepress.org/support/', 'https://wordpress.org/support/plugin/tablepress/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "TablePress – Tables in WordPress made easy", "slug": "tablepress", "tags": {"csv": "csv", "excel": "excel", "table": "table", "tables": "tables", "spreadsheet": "spreadsheet"}, "added": "2012-06-14", "icons": {"1x": "https://ps.w.org/tablepress/assets/icon.svg?rev=3192944", "svg": "https://ps.w.org/tablepress/assets/icon.svg?rev=3192944"}, "author": "Tobias Bäthge", "rating": 100, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/tablepress/assets/banner-772x250.png?rev=3192944", "high": "https://ps.w.org/tablepress/assets/banner-1544x500.png?rev=3192944"}, "ratings": {"1": 27, "2": 8, "3": 9, "4": 39, "5": 4531}, "version": "3.2.5", "homepage": "https://tablepress.org/", "requires": "6.2", "sections": {"faq": "\n
    \nWhere can I find answers to Frequently Asked Questions?\n\n

    \n

    Many questions, regarding different features or styling, have been answered on the FAQ page and in the extensive TablePress plugin documentation on the TablePress website.

    \n

    \n
    \nSupport?\n\n

    \n

    Premium Support

    \n

    Users with an active TablePress Premium license plan are eligible for Priority Email Support, directly from the plugin developer! Find out more!

    \n

    Community Support for users of the Free version

    \n

    For support questions, bug reports, or feature requests, please use the WordPress Support Forums. Please search through the forums first, and only create a new topic if you don’t find an existing answer. Thank you!

    \n

    \n
    \nRequirements?\n\n

    \n

    In short: WordPress 6.2 or higher, while the latest version of WordPress is always recommended. In addition, the server must be running PHP 7.4 or newer.

    \n

    \n
    \nLanguages and Localization?\n\n

    \n

    TablePress uses the “Translate WordPress” platform. Please see the sidebar on the TablePress page in the WordPress Plugin Directory for available translations.

    \n

    To make TablePress available in your language, go to the TablePress translations page, log in with a free wordpress.org account and start translating.

    \n

    \n
    \nDevelopment\n\n

    \n

    You can follow the development of TablePress more closely in its official GitHub repository.

    \n

    \n
    \nWhere do I report security issues?\n\n

    \n

    Please report security issues and bugs found in the source code of TablePress through the Patchstack Vulnerability Disclosure Program.
    \nThe Patchstack team will assist you with verification, CVE assignment, and notify the TablePress developer.

    \n

    \n
    \nWhere can I get more information?\n\n

    \n

    Visit the plugin website at tablepress.org for the latest news on TablePress, follow @TablePress on Twitter/X, or subscribe to the TablePress Newsletter.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent!!! | Excelente!!!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ivison Ramos (ivisonramos) on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Muito bom, fácil de trabalhar, simples e eficiente.
    O melhor!

    \n\n\n\n

    Very good, easy to work with, simple and efficient.
    The best!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A top level support !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sturmy31 on August 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Not only does Tobias provide a powerful plugin, but he also provides highly responsive and efficient support, including for installations under free licenses!
    Thank you very much, Tobias, for my Volunteer Association.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very easy to use and style

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy creativeone on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    TablePress is a wonderful plugin that is exactly what we needed. My client is not tech-savvy, and he was able to create tables easily. Also, customer service is amazing.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Brilliant plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Steve Davison on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very easy to use and extremely flexible. The Author is very responsive on the support forum.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent and well-supported product

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tobnddl on July 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin does exactly what it says it does - provides interactive, clear, and usable tables in wordpress sites. This is a great product but what makes it even better is the excellent support from the developer. This team is fast and helpful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Features Hands Down!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jdevon80 on July 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    As a “max” plan user, I use at least 80% of all the features offered. Pretty much everything one could ask for in a table plugin is available with TablePress. If tables are indispensable for your web site then you cannot go wrong in taking the TablePress plugin out for a test drive. With a free version also available, there is absolutely no risk involved. Hands down a no-brainer to at least consider this plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tablepress is great, but the support is amazing

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy studioblank on June 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have never encountered such a willingness to help and create solutions.
    Tobias spent so much time and patience helping me. I don''t think I''ve ever encountered such a good customer service in any field.
    If everyone was a little more Tobias, the world would be a better place. no doubt.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Handles tables like magic

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mikkolahi on May 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin (paid version) handles Excel imports like a charm. Support works excellent. Many features are already built-in. This is starting to sound like a paid add but it is not.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect for Styling and Sharing Apparel Size Charts

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Vivek Revi (vivekrevi) on May 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I use it to create size charts for different apparel and share them easily anywhere on my site using shortcodes. Let''s me style the tables with custom CSS so they match my website''s look perfectly. The user-friendly interface makes creating and managing tables hassle-free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Renato Allodi (accr2024) on May 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin with most of the features needed for real use.
    Sure, some improvements are possible, but for the free use necessary for a non-profit organization like ours, what is there is more than enough.
    For professional use, which requires advanced features, it is right to pay a reasonable fee, after all the developer must be remunerated in some way.
    Tobias helped me promptly to solve an interface problem with another plugin, even without the plus support of the paid version; it is commendable.

    \n
    \n
    \n", "changelog": "

    Changes in recent versions are shown below. For earlier changes, please see the changelog history.

    \n

    Version 3.2.5 (October 28, 2025)

    \n
      \n
    • Security fix: Authenticated Stored XSS (CVE-2025-12324). Thanks to Rafshanzani Suhada and the Wordfence team for following responsible disclosure policies when reporting this issue!
    • \n
    • Cleaned up and simplified code, for easier future maintenance, to follow WordPress Coding Standards, and to offer helpful inline documentation.
    • \n
    • Updated external libraries to benefit from enhancements and bug fixes.
    • \n
    • Improved support for PHP 8.5.
    • \n
    \n

    Version 3.2.4 (October 21, 2025)

    \n
      \n
    • Improvement: Improve table import when importing URLs from external services like Google Sheets, Microsoft OneDrive, and Dropbox.
    • \n
    • Bugfix: Elementor integration: Prevent an error with the “Element Cache”.
    • \n
    • Cleaned up and simplified code, for easier future maintenance, to follow WordPress Coding Standards, and to offer helpful inline documentation.
    • \n
    • Updated external libraries to benefit from enhancements and bug fixes.
    • \n
    \n

    Version 3.2.3 (September 23, 2025)

    \n
      \n
    • Elementor integration: Support for clearing the “Element Cache” was added.
    • \n
    • Elementor widget: The “Configuration Parameters” field is now shown properly again.
    • \n
    • Elementor widget: “Dynamic Tags” are now supported for the “Configuration Parameters” field.
    • \n
    • New feature: The “Advanced Pagination Settings” feature module now offers pagination with a select dropdown field. (TablePress Pro and Max only.)
    • \n
    • Improvement: The “Individual Column Filtering” search fields now support the native Clear button. (TablePress Pro and Max only.)
    • \n
    • Bug fix: Ensure that available premium translation files are loaded correctly. (TablePress Pro and Max only.)
    • \n
    • Cleaned up and simplified code, for easier future maintenance, to follow WordPress Coding Standards, and to offer helpful inline documentation.
    • \n
    • Updated external libraries to benefit from enhancements and bug fixes.
    • \n
    • Improved support for PHP 8.5.
    • \n
    \n

    Version 3.2.2 (September 23, 2025)

    \n

    This version was not released, due to issues in the release process.

    \n

    Version 3.2.1 (August 28, 2025)

    \n
      \n
    • Security fix: Authenticated Stored XSS (CVE-2025-9500). Thanks to Muhammad Yudha and the Wordfence team for following responsible disclosure policies when reporting this issue!
    • \n
    • Cleaned up and simplified code, for easier future maintenance, to follow WordPress Coding Standards, and to offer helpful inline documentation.
    • \n
    • Updated external libraries to benefit from enhancements and bug fixes.
    • \n
    • Improved support for PHP 8.5.
    • \n
    \n

    Version 3.2 (August 26, 2025)

    \n

    TablePress 3.2 is a feature, stability, maintenance, and compatibility update. Here are the highlights:

    \n

    Improved Frontend Table Performance

    \n
      \n
    • Tables and their interactivity features are more accessible for visitors with disabilities and users of assistive technologies, with improved labelling and easier-to-use keyboard navigation!
    • \n
    \n

    Many New Features and Enhancements for Existing Premium Features

    \n
      \n
    • Fixed Header\n
        \n
      • When combining the Fixed Header Row with Horizontal Scrolling, the header will scroll properly as well.
      • \n
      \n
    • \n
    • Server-side Processing\n
        \n
      • It is now possible to use the “Column Filter Dropdowns”, “Individual Column Filtering”, and “Inverted Filtering” feature modules while benefitting from the fast loading of large tables from the server!
      • \n
      \n
    • \n
    • Advanced Access Rights\n
        \n
      • The user interface now allows filtering for users and tables, to quickly find the right combination!
      • \n
      • Only user roles that are allowed to edit tables will be shown, making the overview much more lightweight!
      • \n
      \n
    • \n
    • Index or Counter Column\n
        \n
      • The rendering performance has been improved for large tables.
      • \n
      \n
    • \n
    • Row Order and Column Order\n
        \n
      • The “Random” option is now shown in the block’s feature section’s dropdown!
      • \n
      \n
    • \n
    • Advanced Pagination Settings\n
        \n
      • The “Show more” button shows better scrolling behavior when using it with long tables!
      • \n
      \n
    • \n
    • Column Filter Dropdowns\n
        \n
      • The filtering dropdowns can now be used with Server-side Processing, making it a great choice for large tables!
      • \n
      \n
    • \n
    • Individual Column Filtering\n
        \n
      • Besides text input fields, the dropdowns are now also supported when using Server-side Processing!
      • \n
      \n
    • \n
    • Inverted Filtering\n
        \n
      • Large tables now benefit from speed improvements, when using Server-side Processing and Inverted Filtering!
      • \n
      \n
    • \n
    \n

    Behind the scenes

    \n
      \n
    • Several minor bugs and inconsistencies have been fixed and improved!
    • \n
    • Cleaned up and simplified code, for easier future maintenance, to follow WordPress Coding Standards, and to offer helpful inline documentation.
    • \n
    • Updated external libraries to benefit from enhancements and bug fixes.
    • \n
    • Automated code compatibility checks and build tools simplify chores for easier development.
    • \n
    • Improved support for PHP 8.4.
    • \n
    \n

    Premium versions

    \n
      \n
    • Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!
    • \n
    \n", "description": "

    Boost your website with feature-rich tables that your visitors will love!

    \n

    TablePress is the most popular and highest-rated WordPress table plugin.

    \n
      \n
    • Easily create, edit, and manage beautiful and modern data tables, no matter if small or large!
    • \n
    • Add live sorting, pagination, searching, and more interactivity for your site’s visitors!
    • \n
    • Use any type of data, insert images, links, and even math formulas!
    • \n
    • Import and export tables from/to Excel, CSV, HTML, and JSON files or URLs.
    • \n
    • Embed tables into posts, pages, or other site areas using the block editor, an Elementor widget, or Shortcodes.
    • \n
    • All with no coding knowledge needed!
    • \n
    \n

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    \n

    More information

    \n

    Visit tablepress.org for more information, take a look at example tables, or try TablePress on a free test site. For latest news, follow @TablePress on Twitter/X or subscribe to the TablePress Newsletter.

    \n

    How to use TablePress

    \n

    After installing the plugin, you can create and manage tables on the “TablePress” screen in the WordPress Dashboard.

    \n

    To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.

    \n

    Beginner-friendly step-by-step tutorials, guides, and how-tos show how to achieve common and popular tasks with TablePress.
    \nExamples for common styling changes via “Custom CSS” code can be found on the TablePress FAQ page.
    \nYou may also add certain features (like sorting, pagination, filtering, alternating row colors, row highlighting, print name and/or description, …) by enabling the corresponding checkboxes on a table’s “Edit” screen.

    \n

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    \n", "screenshots": "
    1. \""All

      \"All Tables\" screen

    2. \""Edit"

      \"Edit\" screen

    3. \""Add

      \"Add new Table\" screen

    4. \""Import"

      \"Import\" screen

    5. \""Export"

      \"Export\" screen

    6. \""Plugin

      \"Plugin Options\" screen

    7. \""About"

      \"About\" screen

    8. \"The

      The “TablePress table” block in the block editor

    9. \"An

      An example table (as it can be seen on the TablePress website)

    ", "installation": "

    The easiest way to install TablePress is via your WordPress Dashboard:

    \n
      \n
    1. Go to the “Plugins” screen, click “Add Plugin”, and search for “TablePress” in the WordPress Plugin Directory.
    2. \n
    3. Click “Install Now” and after that’s complete, click “Activate”.
    4. \n
    5. Create and manage tables by going to the “TablePress” screen in the admin menu.
    6. \n
    7. To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.
    8. \n
    \n

    Manual installation works just as for other WordPress plugins:

    \n
      \n
    1. Download the TablePress ZIP file.
    2. \n
    3. Go to the “Plugins” screen on your site and upload it by clicking “Add Plugin” “Upload Plugin”.
    4. \n
    5. Or, extract the ZIP file and move the folder “tablepress” to the “wp-content/plugins/” directory of your WordPress installation, e.g. via FTP.
    6. \n
    7. Activate “TablePress” on the “Plugins” screen of your WordPress Dashboard.
    8. \n
    9. Create and manage tables by going to the “TablePress” screen in the admin menu.
    10. \n
    11. To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.
    12. \n
    \n"}, "versions": {"2.2": "https://downloads.wordpress.org/plugin/tablepress.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/tablepress.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/tablepress.2.4.zip", "3.0": "https://downloads.wordpress.org/plugin/tablepress.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/tablepress.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/tablepress.3.2.zip", "1.12": "https://downloads.wordpress.org/plugin/tablepress.1.12.zip", "1.14": "https://downloads.wordpress.org/plugin/tablepress.1.14.zip", "1.9.2": "https://downloads.wordpress.org/plugin/tablepress.1.9.2.zip", "2.0.4": "https://downloads.wordpress.org/plugin/tablepress.2.0.4.zip", "2.1.7": "https://downloads.wordpress.org/plugin/tablepress.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/tablepress.2.1.8.zip", "2.2.1": "https://downloads.wordpress.org/plugin/tablepress.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/tablepress.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/tablepress.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/tablepress.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/tablepress.2.2.5.zip", "2.3.1": "https://downloads.wordpress.org/plugin/tablepress.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/tablepress.2.3.2.zip", "2.4.1": "https://downloads.wordpress.org/plugin/tablepress.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/tablepress.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/tablepress.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/tablepress.2.4.4.zip", "3.0.1": "https://downloads.wordpress.org/plugin/tablepress.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/tablepress.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/tablepress.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/tablepress.3.0.4.zip", "3.1.1": "https://downloads.wordpress.org/plugin/tablepress.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/tablepress.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/tablepress.3.1.3.zip", "3.2.1": "https://downloads.wordpress.org/plugin/tablepress.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/tablepress.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/tablepress.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/tablepress.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/tablepress.3.2.5.zip", "trunk": "https://downloads.wordpress.org/plugin/tablepress.zip"}, "downloaded": 21686612, "description": "

    Boost your website with feature-rich tables that your visitors will love!

    \n

    TablePress is the most popular and highest-rated WordPress table plugin.

    \n
      \n
    • Easily create, edit, and manage beautiful and modern data tables, no matter if small or large!
    • \n
    • Add live sorting, pagination, searching, and more interactivity for your site’s visitors!
    • \n
    • Use any type of data, insert images, links, and even math formulas!
    • \n
    • Import and export tables from/to Excel, CSV, HTML, and JSON files or URLs.
    • \n
    • Embed tables into posts, pages, or other site areas using the block editor, an Elementor widget, or Shortcodes.
    • \n
    • All with no coding knowledge needed!
    • \n
    \n

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    \n

    More information

    \n

    Visit tablepress.org for more information, take a look at example tables, or try TablePress on a free test site. For latest news, follow @TablePress on Twitter/X or subscribe to the TablePress Newsletter.

    \n

    How to use TablePress

    \n

    After installing the plugin, you can create and manage tables on the “TablePress” screen in the WordPress Dashboard.

    \n

    To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.

    \n

    Beginner-friendly step-by-step tutorials, guides, and how-tos show how to achieve common and popular tasks with TablePress.
    \nExamples for common styling changes via “Custom CSS” code can be found on the TablePress FAQ page.
    \nYou may also add certain features (like sorting, pagination, filtering, alternating row colors, row highlighting, print name and/or description, …) by enabling the corresponding checkboxes on a table’s “Edit” screen.

    \n

    Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. Go check them out!

    \n", "donate_link": "https://tablepress.org/premium/?utm_source=wordpress.org&utm_medium=textlink&utm_content=donate-link", "num_ratings": 4614, "screenshots": {"1": {"src": "https://ps.w.org/tablepress/assets/screenshot-1.png?rev=3192944", "caption": "\"All Tables\" screen"}, "2": {"src": "https://ps.w.org/tablepress/assets/screenshot-2.png?rev=3192944", "caption": "\"Edit\" screen"}, "3": {"src": "https://ps.w.org/tablepress/assets/screenshot-3.png?rev=3192944", "caption": "\"Add new Table\" screen"}, "4": {"src": "https://ps.w.org/tablepress/assets/screenshot-4.png?rev=3192944", "caption": "\"Import\" screen"}, "5": {"src": "https://ps.w.org/tablepress/assets/screenshot-5.png?rev=3192944", "caption": "\"Export\" screen"}, "6": {"src": "https://ps.w.org/tablepress/assets/screenshot-6.png?rev=3192944", "caption": "\"Plugin Options\" screen"}, "7": {"src": "https://ps.w.org/tablepress/assets/screenshot-7.png?rev=3192944", "caption": "\"About\" screen"}, "8": {"src": "https://ps.w.org/tablepress/assets/screenshot-8.png?rev=3192944", "caption": "The “TablePress table” block in the block editor"}, "9": {"src": "https://ps.w.org/tablepress/assets/screenshot-9.png?rev=3192944", "caption": "An example table (as it can be seen on the TablePress website)"}}, "support_url": "https://wordpress.org/support/plugin/tablepress/", "contributors": {"tobiasbg": {"avatar": "https://secure.gravatar.com/avatar/510d10a58d13cb587658fbae740f95bc94958e902ebb488c33796ea4fbf1c0b9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tobiasbg/", "display_name": "Tobias Bäthge"}}, "last_updated": "2025-10-28 4:41am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/tablepress.3.2.5.zip", "author_profile": "https://profiles.wordpress.org/tobiasbg/", "business_model": "commercial", "repository_url": "", "upgrade_notice": {"3.2": "

    This update is a feature, stability, maintenance, and compatibility release. Updating is highly recommended!

    ", "3.2.5": "

    This update is a security, maintenance, and compatibility release. Updating is highly recommended!

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fb2a-73cd-98d2-c026d98402ce", "name": "TablePress – Tables in WordPress made easy", "slug": "tablepress", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761626460, "version": "3.2.5"}, "support_threads": 22, "requires_plugins": [], "short_description": "Embed beautiful, accessible, and interactive tables into your WordPress website’s posts and pages, without having to write code!", "author_block_count": 1, "author_block_rating": 100, "commercial_support_url": "https://tablepress.org/support/", "support_threads_resolved": 20}'); -INSERT INTO public.plugins VALUES ('019a30c1-6714-7088-bd13-fbc900713e48', 'the-events-calendar', 'The Events Calendar', 'The Events Calendar: #1 calendar plugin for WordPress. Create/manage events (virtual too!) on your site with the free plugin.', '

    Easily create and manage an events calendar on your WordPress site with The Events Calendar free plugin. Whether your events are in-person or virtual events, this WordPress calendar plugin boasts professional features backed by our world-class team of developers and designers.

    -

    -

    See more videos on our YouTube channel

    -

    Packed with loads of features, The Events Calendar is ready to go out of the box. It’s also extensible, easy to use, and completely customizable.

    -

    📅 The #1 Calendar for WordPress

    -

    See the calendar in action on our demo experience. Just getting started? Read through the New User Primer to get set up.

    -

    Looking for additional features like recurring events, ticket sales, user-submitted events, automatic imports, and more?

    -

    Check out Events Calendar Pro, Event Aggregator, and more add-ons.

    -

    🔌🎨 Plug and Play or Customize

    -

    The Events Calendar is built to work out of the box. Simply install the plugin, configure your settings, and start creating events in minutes.

    -

    Want to add your personal touch? Use The Events Calendar as the foundation for customization. Personalize to your heart’s content with the help of a skeleton stylesheet, partial template overrides, template tags, hooks and filters, careful documentation, and a library of free extensions.

    -

    Whether your vision is big or small, you’re in good company. Hundreds of thousands of small businesses, musicians, venues, restaurants, and non-profits are publishing and promoting their in-person and virtual events with The Events Calendar. Our plugins have also been scaled to work on large networks for Fortune 100 companies, universities, and government institutions.

    -

    ✨ Features

    -

    Our feature-rich plugin comes with everything you need to create and manage your calendar.

    -

    ✔️ Rapidly create events
    -✔️ Saved venues & organizers
    -✔️ Calendar month view with tooltips
    -✔️ Event List view
    -✔️ Day view
    -✔️ Block Editor support
    -✔️ Event search
    -✔️ Google maps
    -✔️ Widget: Upcoming events list
    -✔️ Events Taxonomies (Categories & Tags)
    -✔️ Google Calendar and iCal exporting
    -✔️ WP REST API endpoints
    -✔️ Completely ajaxified for super smooth browsing
    -✔️ Completely responsive from mobile to tablet to desktop
    -✔️ Tested on the major theme frameworks such as Avada, Divi, Enfold, Genesis, and many more.
    -✔️ Increase your SEO with JSON-LD Structured Data
    -✔️ Internationalized & translated
    -✔️ Multiple stylesheets to improve integration
    -✔️ Extensive template tags for customization
    -✔️ Hooks & filters galore
    -✔️ Caching support
    -✔️ Debug mode for developers
    -✔️ Library of extensions

    -

    📃 Documentation

    -

    All of our documentation can be found in our Knowledgebase.

    -

    Additional helpful links:

    - -

    If you have any questions about this plugin, you can post a thread in the WordPress.org forum. Please search existing threads before starting a new one.

    -

    Add-Ons

    -

    Take your calendar to the next level by pairing it with our plugins for ticketing, crowdsourcing, email marketing, and more. Learn more about all our products on our website.

    -

    Our Free Plugins:

    -

    🎟️ Event Tickets
    -📐 Advanced Post Manager

    -

    Our Premium Plugins and Services:

    -

    Events Calendar PRO
    -↪️ Event Aggregator (service)
    -🎟️ Event Tickets Plus
    -✉️ Promoter
    -👥 Community Events
    -✏️ Filter Bar
    -🗓️ Eventbrite Tickets

    -

    Help

    -

    If you aren’t familiar with The Events Calendar, check out our New User Primer. It will have you creating events in no time.

    -

    Ready to dig deeper? Check out these resources:

    - -

    We check in on the The Events Calendar forum here on WordPress.org about once a week to help users with basic troubleshooting and identifying bugs. If you’re looking for premium, personalized support, consider upgrading to Events Calendar Pro.

    -

    Still have a question? Shoot us an email at support@theeventscalendar.com.

    -', '6.15.10', 'StellarWP', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/the-events-calendar.6.15.10.zip', '2010-01-19 00:00:00+00', '2025-10-28 17:38:00+00', 'https://profiles.wordpress.org/stellarwp/', 86, 2390, 92, 86, 700000, 76094565, NULL, 'https://evnt.is/29', NULL, NULL, 'https://wordpress.org/support/plugin/the-events-calendar/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "The Events Calendar", "slug": "the-events-calendar", "tags": {"event": "Event", "events": "events", "calendar": "calendar", "schedule": "schedule", "organizer": "organizer"}, "added": "2010-01-19", "icons": {"1x": "https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440", "2x": "https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440"}, "author": "StellarWP", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622", "high": "https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622"}, "ratings": {"1": 311, "2": 71, "3": 89, "4": 137, "5": 1782}, "version": "6.15.10", "homepage": "", "requires": "6.6", "sections": {"faq": "\n
    \nAre there any troubleshooting steps you’d suggest I try that might resolve my issue before I post a new thread?\n\n

    \n

    First, make sure that you’re running the latest version of The Events Calendar. If you’re running Events Calendar PRO or any other add-ons, make sure those are current / running the latest code as well.

    \n

    The most common issues we see are either plugin or theme conflicts. You can test if a plugin or theme is conflicting by manually deactivating other plugins until just The Events Calendar is running on your site. If the issue persists from there, revert to the default Twenty Twenty theme. If the issue is resolved after deactivating a specific plugin or your theme, you’ll know that is the source of the conflict.

    \n

    Note that we aren’t going to say “tough luck” if you identify a plugin/theme conflict. While we can’t guarantee 100% integration with any plugin or theme out there, we will do our best (and reach out the plugin/theme author as needed) to figure out a solution that benefits everyone.

    \n

    \n
    \nI’m still stuck. Where do I go to file a bug or ask a question?\n\n

    \n

    Users of the free The Events Calendar should post their questions in the plugin’s WordPress.org forum, which we visit about once a week. Please make sure to read our sticky post providing an overview of the support we provide free users BEFORE posting. If you find you’re not getting support in as timely a fashion as you wish, you might want to consider purchasing a license for Events Calendar Pro.

    \n

    If you’re already an Events Calendar Pro user, you’re entitled access to our actively-monitored Premium Support on our website. We can provide a deeper level of support here and hit these forums on a daily basis during the work week. Generally, except in times of increased support loads, we reply to all tickets within 24-48 hours during the business week.

    \n

    \n
    \nWhat’s the difference between The Events Calendar and Events Calendar Pro?\n\n

    \n

    The Events Calendar is our cornerstone plugin, and it’s required in order to run any of our premium calendar add-ons, including Events Calendar Pro, Community Events, Filter Bar, and others.

    \n

    In other words, Events Calendar Pro runs alongside The Events Calendar and enhances it with extra features, including recurring events, additional calendar views, calendar shortcodes, advanced widgets, custom event fields and more.

    \n

    \n
    \nWhat add-ons are available for The Events Calendar, and where can I read more about them?\n\n

    \n

    The following add-ons are available for The Events Calendar:

    \n
      \n
    • Events Calendar Pro, for adding premium calendar features like recurring events, advanced views, cool widgets, shortcodes, additional fields, and more!
    • \n
    • Event Aggregator, a service that effortlessly fills your calendar with events from Meetup, Google Calendar, iCalendar, Eventbrite, CSV, and ICS.
    • \n
    • Event Tickets (free), which allows you to sell tickets and collect RSVPs to events. It can run alongside The Events Calendar or as a standalone plugin that adds ticket and RSVP functionality to WordPress posts and pages.
    • \n
    • Event Tickets Plus, which allows you to sell tickets for your events using your favorite e-commerce platform.
    • \n
    • Promoter, automated email communication made just for The Events Calendar and Event Tickets. Stay in touch with your attendees every step of the way.
    • \n
    • Community Events, for allowing frontend event submission from your readers.
    • \n
    • Filter Bar, for adding advanced frontend filtering capabilities to your events calendar.
    • \n
    • Eventbrite Tickets, for selling tickets to your event directly through Eventbrite.
    • \n
    \n

    \n
    \nCan I import events to my calendar?\n\n

    \n

    Yes! The Events Calendar has a built-in CSV import tool. If you want to step it up and automatically import events from Google Calendar, Meetup, Eventbrite and more, check out Event Aggregator.

    \n

    \n
    \nHow do I sell tickets to events on my calendar?\n\n

    \n

    You’ll want to use our Event Tickets plugin for that. This free plugin works alongside The Events Calendar and lets you create RSVPs and tickets for events. Event Tickets integrates with PayPal so you can collect payments for tickets, while our premium solution, Event Tickets Plus fully integrates with WooCommerce or Easy Digital Downloads. If you want to include digital tickets like Apple Wallet passes and PDF tickets check out Event Tickets Wallet Plus.

    \n

    \n
    \nCan I have more than one calendar on my site?\n\n

    \n

    Unfortunately, no. However, you can use event categories or tags to create calendar views that only display certain events. For example, you could create a direct link to a calendar view that only shows events categorized as “Fitness,” like this example from our demo site.

    \n

    With Events Calendar Pro, you can use shortcodes to embed your calendar on other WordPress pages and posts, then filter that calendar by category.

    \n

    \n
    \nCan I allow people to submit events to my calendar?\n\n

    \n

    This is available with the Community Events add-on to facilitate submissions. Install Community Events alongside The Events Calendar and a page will be added to your WordPress site with a form that visitors can use to submit events. As the calendar owner, you have full control over whether event submissions are published immediately or require moderation first.

    \n

    If you want to let users sell tickets for the events they submit, check out Community Tickets. It runs with The Events Calendar, Community Events, and Event Tickets and empowers visitors to create and sell tickets, splitting the profits with you.

    \n

    \n
    \nWhat’s the difference between The Events Calendar and Events Calendar Pro\n\n

    \n

    The Events Calendar is our cornerstone plugin, and it’s required in order to run any of our premium calendar add-ons, including Events Calendar Pro, Community Events, Filter Bar, and others.

    \n

    In other words, Events Calendar Pro runs alongside The Events Calendar and enhances it with extra features, including recurring events and event Series, additional calendar views, calendar shortcodes, advanced widgets, custom event fields, a duplicate event tool, and more.

    \n

    \n
    \nFound a security vulnerability?\n\n

    \n

    Make sure you are reporting in a safe and responsible way. We take security very seriously. If you discover a security issue, please bring it to our attention right away! Below you will find all the methods to report security vulnerabilities:

    \n\n

    \n
    \nI have a feature idea. What’s the best way to tell you about it?\n\n

    \n

    We’ve got an ideas page where we’re actively watching for feature ideas from the community. Vote up existing feature requests or add your own, and help us shape our roadmap.

    \n

    \n
    \nI’ve still got questions. Where can I find answers?\n\n

    \n

    Check out our extensive knowledgebase for articles on using, tweaking, and troubleshooting our plugins.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    best event calendar plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aryanrajseo on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple, easy and fast. Best plugin with infinite customization options. Currently i only want to support single event blocks on post type gp_elements.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Love Events Calendar

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy MaYoga on October 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using this for years on my website and had no problems. Recently I had an issue and the tech support was excellent. Highly recommend.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Klaas (klaaswporg) on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I received very quick and efficient assistance. I was given a wide range of options, which was very helpful!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Tech support is great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tsteinh on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Problems arose with the category colors on a site whose main content revolves around events. The tech team used our staging site and helped address these issues in a way that pleased the client. We are so appreciative of the help!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Overdesigned and useless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alishaingram on September 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Even with all the paid add-ons, you''d still struggle to customise this plugin to suit your needs. So restrictive - it really sucks.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Customer Service Techs

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dougrooney on September 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    They''ve been very helpful in sorting out the CSS edits necessary for my particular application.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good one.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pat (patrickhaond) on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does the job.

    \n\n\n\n

    Sometimes a bit complex to configure and some small issues, but it is okay.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy codefisher on September 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Been using the free version for a long time. Just upgraded to pro. Support was very helpful with some of the issues I had getting it set up how I wanted.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Top Customer Suppport

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy itsyourbusinessatl on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Having support when setting up a new plugin on an old website is crucial. Thank you!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    the customer service is really good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy yvonnerethink on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    the customer service is really good!

    \n
    \n
    \n", "changelog": "

    [6.15.10] 2025-10-28

    \n
      \n
    • Security – Improve authorization checks in QR codes. [SVUL-28]
    • \n
    • Security – Improve ORDER BY clause validation. [SVUL-26]
    • \n
    \n

    [6.15.9] 2025-10-21

    \n
      \n
    • Fix – Alter logic so category colors CSS is ony enqueued on event archive pages. [TEC-5419]
    • \n
    • Tweak – Added actions: tec_conditional_content_assets
    • \n
    • Tweak – Add upsell banner for recurrence functionality in classic editor. [TEC-5589]
    • \n
    • Tweak – Add tec_is_valid_view() helper to check whether the current context represents a valid registered view. [TEC-5419]
    • \n
    • Tweak – Disable Yoast SEO pagination meta tags on Events Calendar views to prevent invalid rel=next/prev links. [TEC-5000]
    • \n
    • Tweak – Revert automatic CSS combination handling for Avada to restore default behavior. [TEC-5682]
    • \n
    • Language – 3 new strings added, 8 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.8] 2025-10-14

    \n
      \n
    • Fix – Tweak a few style rules to ensure Kadence overrides work. [TEC-5504]
    • \n
    • Tweak – Automatically disabled Avada’s “Combine Third Party CSS Files” option when The Events Calendar is active to prevent stylesheet conflicts. [TEC-5682]
    • \n
    • Tweak – Events list view structure updated to use proper list HTML. [TEC-5210]
    • \n
    • Tweak – Make Tooltips on calendar view dismissable with esc key. [TEC-5217]
    • \n
    • Language – 7 new strings added, 23 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    • Language – Fixed text domains and improved string translations across multiple components for better internationalization support.
    • \n
    • Language – Move ‘Free’ string to TEC text domain for improved i18n. [TEC-5603]
    • \n
    \n

    [6.15.7] 2025-10-07

    \n
      \n
    • Tweak – Added aria-label to nav tags to make page landmarks unique. [TEC-5208]
    • \n
    • Tweak – Event Date time block structure updated to improve accessibility. [TEC-5531]
    • \n
    • Tweak – Change default opt-in status to prevent false positives in checks when the value is not set. [TEC-5583]
    • \n
    • Tweak – Add ARIA landmark roles and aria-current attributes to breadcrumbs to improve screen reader support. [TEC-5205]
    • \n
    • Tweak – Replace breadcrumbs with a “Back to Events” link on Venue and Organizer single pages for clearer navigation and improved accessibility.[TEC-5207][TEC-5205]
    • \n
    • Tweak – Changed views: blocks/event-datetime, v2/components/backlink, v2/components/breadcrumbs, v2/components/breadcrumbs/breadcrumb, v2/components/breadcrumbs/linked-breadcrumb, v2/components/header, v2/list/nav, v2/list/top-bar/nav
    • \n
    • Language – 4 new strings added, 6 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.6] 2025-09-30

    \n
      \n
    • Version – The Events Calendar 6.15.6 is only compatible with Events Pro 7.7.6 and higher.
    • \n
    • Fix – Elementor Venue widget now shows the map show or hide option with proper styling options. [TEC-5092]
    • \n
    • Fix – Enhanced iCal feed timezone definitions to include extended DST transition data for better calendar compatibility. [TEC-5061]
    • \n
    • Fix – Onboarding wizard now shows loading spinner properly while waiting for Event Tickets installation. [TEC-5584]
    • \n
    • Fix – Prevent ICS download from redirecting when List view is disabled. [TEC-5609]
    • \n
    • Tweak – Added filters: tec_events_views_v2_should_redirect, tec_events_ical_timezone_extend_years
    • \n
    • Tweak – Changed views: v2/month/calendar-body/day/cell-title, v2/month/calendar-body/day/cell, v2/month/calendar-body/day/more-events, v2/month/mobile-events/mobile-day, v2/month/mobile-events/mobile-day/more-events
    • \n
    • Tweak – Hide the Event Tickets upsell on the currency page when Event Tickets is enabled. [TEC-5585]
    • \n
    • Tweak – Introduce subtabs for the Integration settings for better organization. [TEC-5681]
    • \n
    • Tweak – Updated Community Addon upsell link to go to the proper page. [TEC-5586]
    • \n
    • Accessibility – Add aria-label for the more events link in month view. [TEC-5216]
    • \n
    • Accessibility – Adjust aria-label for month view day link to use formatting from TEC settings. [TEC-5214]
    • \n
    • Compatibility – Conditionally remove template option if Elementor Pro is active to avoid conflicts. [TEC-5610]
    • \n
    • Language – 4 new strings added, 75 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.5] 2025-09-23

    \n
      \n
    • Tweak – Adds search capabilities to the countries dropdown in onboarding. [TEC-5581]
    • \n
    • Language – 0 new strings added, 0 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.4] 2025-09-16

    \n
      \n
    • Fix – Add more robust checking for dates to handle occurrences and similar non-post events. [TEC-1052]
    • \n
    • Fix – Fixed an issue where Venues and Organizers created via Community Events could have missing permalinks when events were published. [CE-330]
    • \n
    • Tweak – Changed views: blocks/event-venue, blocks/parts/map, blocks/parts/venue, modules/meta/map, modules/meta/organizer, modules/meta/venue, v2/components/header, v2/day/event/venue, v2/list, v2/list/event/venue
    • \n
    • Accessibility – Return keyboard focus to the triggering button after closing the datepicker for improved accessibility. [CE-278]
    • \n
    • Language – 0 new strings added, 13 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.3] 2025-09-10

    \n
      \n
    • Tweak – Changed views: blocks/event-venue, blocks/parts/map, blocks/parts/venue, modules/meta/map, modules/meta/organizer, modules/meta/venue, v2/components/header, v2/day, v2/day/event/venue, v2/list, v2/list/event/venue
    • \n
    • Security – Ensures password protected Venues and Organizers have their data protected. [SVUL-19]
    • \n
    • Language – 0 new strings added, 59 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.2] 2025-09-09

    \n
      \n
    • Fix – Corrected path for enqueuing ACF scripts to avoid 404 errors. [TEC-5604]
    • \n
    • Fix – Fix the process of updating event time zone data. [TEC-5423]
    • \n
    • Fix – Make sure the user is redirected to the correct settings page after clicking on the “Fix Time Zone Data” button. [TEC-5423]
    • \n
    • Tweak – Added search capabilities to the currency dropdown in onboarding. [TEC-5580]
    • \n
    • Tweak – Added search capabilities to the timezone dropdown in onboarding. [TEC-5579]
    • \n
    • Tweak – Changed views: blocks/parts/subscribe-list, v2/components/subscribe-links/item.
    • \n
    • Tweak – Hide unsupported items from the Subscribe to Calendar dropdown for archive pages. [TEC-4242]
    • \n
    • Tweak – Visual updates to the ECP teaser pill in TEC->Settings->Display.
    • \n
    • Language – 0 new strings added, 20 updated, 1 fuzzied, and 1 obsoleted.
    • \n
    \n

    [6.15.1.1] 2025-09-03

    \n
      \n
    • Security – Ensures only known values are accepted for the ORDER BY query clause. [SVUL-19]
    • \n
    \n

    [6.15.1] 2025-09-02

    \n
      \n
    • Fix – Figure out where assets are located in complex environments with a mix of symlinked or normally placed plugins. Resolving as a result issues with Recurring Events UI in WordPress.com. [ECP-1929]
    • \n
    • Tweak – Changed views: blocks/event-links, integrations/elementor/templates/starter, integrations/event-tickets/emails/template-parts/header/head/tec-styles
    • \n
    • Compatibility – PHP 8.3 compatibility improvements. [TEC-5571]
    • \n
    • Language – 0 new strings added, 2 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.15.0.1] 2025-08-20

    \n
      \n
    • Fix – Ensures the Actions Scheduler Logs table is present before attempting to use it. [TCMN-190]
    • \n
    • Fix – Resolves issues with Day breaking in multiple lines above the Calendar’s month view. [TEC-5590]
    • \n
    \n

    [6.15.0] 2025-08-19

    \n
      \n
    • Version – The Events Calendar 6.15.0 is only compatible with Event Tickets 5.26.0 and higher.
    • \n
    • [EXPERIMENTAL] Feature – Introduced new REST endpoints for managing your Events, Venues and Organizers. Note: This API is for experimental use only and requires the X-TEC-EEA header. It may be subject to breaking changes in upcoming releases.
    • \n
    • Language – 153 new strings added, 140 updated, 1 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.14.2] 2025-07-22

    \n
      \n
    • Tweak – Implemented an Enable setting for Category Colors. [TEC-5533]
    • \n
    • Tweak – Updated the Category Colors settings to add a tooltip to the Reset Button option that explains Superpowers must be enabled. [TEC-5534]
    • \n
    • Tweak – Changed views: v2/components/top-bar/category-color-picker, v2/day/event/featured-image, v2/list/event/featured-image, v2/month, v2/month/calendar-body/day, v2/month/calendar-body/day/calendar-events/calendar-event/featured-image, v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/featured-image, v2/month/calendar-body/day/cell-title, v2/month/calendar-header
    • \n
    • Performance – Avoid use of TIMESTAMPDIFF when fetching overlapping events. [TEC-5537]
    • \n
    • Accessibility – Updated day views with proper aria label and titles for event linked featured images. [TEC-5179]
    • \n
    • Language – 2 new strings added, 24 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.14.1] 2025-07-16

    \n
      \n
    • Fix – Ensure all featured images on calendar views have dimensions set to reduce layout shifts. [TEC-4715]
    • \n
    • Fix – Ensure views selector links have proper aria-current attributes.
      \nTweak – Changed views: v2/components/events-bar/views/list/item, v2/day/event/featured-image, v2/latest-past/event/featured-image, v2/list/event/featured-image, v2/month/calendar-body/day/calendar-events/calendar-event/featured-image, v2/month/mobile-events/mobile-day/mobile-event/featured-image
    • \n
    • Language – 0 new strings added, 1 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.14.0] 2025-07-03

    \n
      \n
    • Feature – Category Colors functionality has been merged into The Events Calendar. [TEC-5364]
    • \n
    • Feature – Events Variables for Yoast SEO [TEC-5437]
    • \n
    • Fix – Add width and height attributes on images displayed in our Events pages [TEC-4715]
    • \n
    • Fix – Disabled Event Views should redirect to default view [TEC-5427]
    • \n
    • Fix – Recognize when the theme is registering single or archive Event templates when using a Block theme, and avoid registering our own. [TEC-5525]
    • \n
    • Tweak – Added actions: tec_events_category_colors_saved, tec_events_category_colors_migration_status_updated, tec_events_category_colors_migration_reset, tribe_log, tec_events_category_colors_migration_preprocessor_start, tec_events_category_colors_migration_preprocessor_end, tec_events_category_colors_migration_validator_start, tec_events_category_colors_migration_validator_end, tec_events_category_colors_migration_runner_start, tec_events_category_colors_migration_runner_end, tec_events_category_colors_migration_post_schedule_action, tec_events_category_colors_migration_post_cancel_action, tec_events_settings_tab_display_category_colors, tec_conditional_content_header_notice
    • \n
    • Tweak – Added filters: tec_events_category_color_generator_batch_size, tec_events_category_colors_enabled, tec_events_category_colors_show_frontend_ui, tec_events_category_validate_meta_key, tec_events_category_validate_meta_value, tec_events_category_colors_force_migration_notice, tec_category_colors_is_tec_admin_page, tec_events_category_colors_migration_batch_size, tec_events_category_colors_migration_pre_schedule_action, tec_events_category_colors_migration_pre_execute_action, tec_events_category_colors_migration_, tec_events_category_colors_migration_pre_cancel_action, tec_events_category_color_enabled_views, tec_events_category_color_dropdown_categories, tec_events_category_color_raw_categories, tec_events_category_color_category_meta, tec_events_category_color_filtered_categories, tec_events_category_color_sorted_categories, tec_events_category_color_highest_priority_category, tec_events_category_color_event_categories, tec_events_category_color_category_priorities, tec_events_views_v2_view_template_vars
    • \n
    • Tweak – Add the conditional content notice to Event Aggregator pages [TEC-5530]
    • \n
    • Tweak – Changed views: blocks/classic-event-details, blocks/event-category, blocks/event-datetime, blocks/event-organizer, blocks/event-price, blocks/event-tags, blocks/event-venue, blocks/event-website, blocks/parts/subscribe-list, blocks/parts/subscribe-single, integrations/elementor/widgets/empty, integrations/elementor/widgets/event-calendar-link, integrations/elementor/widgets/event-categories, integrations/elementor/widgets/event-categories/header, integrations/elementor/widgets/event-cost, integrations/elementor/widgets/event-cost/header, integrations/elementor/widgets/event-datetime, integrations/elementor/widgets/event-datetime/all-day, integrations/elementor/widgets/event-datetime/end-date, integrations/elementor/widgets/event-datetime/end-time, integrations/elementor/widgets/event-datetime/header, integrations/elementor/widgets/event-datetime/range-separator, integrations/elementor/widgets/event-datetime/start-date, integrations/elementor/widgets/event-datetime/start-time, integrations/elementor/widgets/event-datetime/time-separator, integrations/elementor/widgets/event-export, integrations/elementor/widgets/event-export/button, integrations/elementor/widgets/event-export/link, integrations/elementor/widgets/event-export/list-item, integrations/elementor/widgets/event-image, integrations/elementor/widgets/event-navigation, integrations/elementor/widgets/event-navigation/next, integrations/elementor/widgets/event-navigation/previous, integrations/elementor/widgets/event-organizer, integrations/elementor/widgets/event-organizer/details, integrations/elementor/widgets/event-organizer/details/email, integrations/elementor/widgets/event-organizer/details/email/content, integrations/elementor/widgets/event-organizer/details/email/header, integrations/elementor/widgets/event-organizer/details/phone, integrations/elementor/widgets/event-organizer/details/phone/content, integrations/elementor/widgets/event-organizer/details/phone/header, integrations/elementor/widgets/event-organizer/details/website, integrations/elementor/widgets/event-organizer/details/website/content, integrations/elementor/widgets/event-organizer/details/website/header, integrations/elementor/widgets/event-organizer/header, integrations/elementor/widgets/event-organizer/names, integrations/elementor/widgets/event-status/passed, integrations/elementor/widgets/event-status/status, integrations/elementor/widgets/event-tags, integrations/elementor/widgets/event-tags/content, integrations/elementor/widgets/event-tags/header, integrations/elementor/widgets/event-title, integrations/elementor/widgets/event-venue, integrations/elementor/widgets/event-venue/address, integrations/elementor/widgets/event-venue/address/address, integrations/elementor/widgets/event-venue/address/header, integrations/elementor/widgets/event-venue/address/map_link, integrations/elementor/widgets/event-venue/header, integrations/elementor/widgets/event-venue/map, integrations/elementor/widgets/event-venue/name, integrations/elementor/widgets/event-venue/phone, integrations/elementor/widgets/event-venue/phone/header, integrations/elementor/widgets/event-venue/phone/phone, integrations/elementor/widgets/event-venue/single-venue, integrations/elementor/widgets/event-venue/website, integrations/elementor/widgets/event-venue/website/header, integrations/elementor/widgets/event-venue/website/website, integrations/elementor/widgets/event-website, integrations/elementor/widgets/event-website/header, integrations/elementor/widgets/event-website/link, modules/meta/venue, single-event, v2/components/events-bar, v2/components/events-bar/views, v2/components/header, v2/components/messages, v2/components/messages/error-icon, v2/components/messages/notice-icon, v2/components/top-bar/category-color-picker, v2/components/top-bar/today, v2/day, v2/day/event, v2/day/event/category, v2/day/event/date/featured, v2/day/event/featured-image, v2/day/top-bar, v2/day/top-bar/datepicker, v2/latest-past/event, v2/latest-past/event/date/featured, v2/latest-past/event/featured-image, v2/list, v2/list/event, v2/list/event/category, v2/list/event/date-tag, v2/list/event/date/featured, v2/list/nav/next-disabled, v2/list/nav/next, v2/list/nav/prev-disabled, v2/list/nav/prev, v2/list/top-bar, v2/list/top-bar/datepicker, v2/month, v2/month/calendar-body, v2/month/calendar-body/day, v2/month/calendar-body/day/calendar-events/calendar-event, v2/month/calendar-body/day/calendar-events/calendar-event/date/featured, v2/month/calendar-body/day/calendar-events/calendar-event/title, v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/date/featured, v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/title, v2/month/calendar-body/day/cell-title, v2/month/calendar-body/day/date-extras, v2/month/calendar-body/day/date, v2/month/calendar-body/day/multiday-events/multiday-event, v2/month/calendar-body/day/multiday-events/multiday-event/bar/featured, v2/month/calendar-body/day/multiday-events/multiday-event/bar/title, v2/month/calendar-body/day/multiday-events/multiday-event/hidden/link/featured, v2/month/calendar-body/day/multiday-events/multiday-event/hidden/link/title, v2/month/calendar-header, v2/month/mobile-events/mobile-day, v2/month/mobile-events/mobile-day/mobile-event, v2/month/mobile-events/mobile-day/mobile-event/date/featured, v2/month/mobile-events/mobile-day/mobile-event/featured-image, v2/month/mobile-events/mobile-day/mobile-event/title, v2/month/top-bar, v2/month/top-bar/datepicker, v2/widgets/widget-events-list, v2/widgets/widget-events-list/event, v2/widgets/widget-events-list/event/date/featured, v2/widgets/widget-events-qr-code
    • \n
    • Tweak – Update Month view templates to use a more semantically appropriate table structure. Developers are advised to carefully review any customizations for compatibility before updating. [TEC-5185]
    • \n
    • Accessibility – Changed aria-labels to aria-descriptions for WCAG compliance. [TEC-5524]
    • \n
    • Accessibility – Correct an issue where alert text was not announced by screen readers. [TEC-5184]
    • \n
    • Accessibility – Correct some heading uses that were confusing and/or misapplied. [TEC-5199]
    • \n
    • Accessibility – Correct some images where the alt text conflicted with the linked title. [TEC-5183]
    • \n
    • Accessibility – Improve the keyboard navigation of the Views menu. [TEC-5192]
    • \n
    • Accessibility – Remove redundant aria-label attributes where they duplicate existing visible text. [TEC-5197]
    • \n
    • Accessibility – Remove redundant title attributes on some images and links. [TEC-5194, TEC-5195]
    • \n
    • Accessibility – Updated featured icons in all calendar views to include accessible labels. Reorganized the Month view Feature icons to be more understandable when read by a screen reader. Reworked several icon applications to make them more accessible. [TEC-5190, TEC-5201]
    • \n
    • Language – 59 new strings added, 132 updated, 1 fuzzied, and 1 obsoleted.
    • \n
    \n

    [6.13.2.1] 2025-06-05

    \n
      \n
    • Fix – Fix some hardcoded asset paths. [TEC-5523]
    • \n
    • Fix – Utilize the newer version of our build process to ensure inline svgs are being handled properly. [TCMN-188]
    • \n
    • Security – Fixed an issue where some templates were not sanitized properly.
    • \n
    \n

    [6.13.2] 2025-06-03

    \n
      \n
    • Version – The Events Calendar 6.13.2 is only compatible with Event Tickets 5.24.0 and higher.
    • \n
    • Tweak – Updated Help Hub functionality to follow new standards.
    • \n
    • Language – 8 new strings added, 23 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.13.1] 2025-05-27

    \n
      \n
    • Fix – Add Domain Path to the plugin header to ensure installed files get read. [TEC-5520]
    • \n
    • Fix – Ensures symbolic links are followed on Assets Group Paths. [TCMN-187]
    • \n
    • Fix – Update aggregator scripts to ensure globals remain global. [TEC-5509]
    • \n
    • Language – 0 new strings added, 1 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.13.0] 2025-05-20

    \n
      \n
    • Version – The Events Calendar 6.13.0 is only compatible with Events Pro 7.6.0 and higher.
    • \n
    • Version – The Events Calendar 6.13.0 is only compatible with Events Community 5.0.7 and higher.
    • \n
    • Version – The Events Calendar 6.13.0 is only compatible with Event Tickets 5.23.0 and higher.
    • \n
    • Version – The Events Calendar 6.13.0 is only compatible with Event Tickets Plus 6.5.0 and higher.
    • \n
    • Feature – Add a Block_Trait to simplify block assets registration and avoid code duplication.
    • \n
    • Fix – Improve Settings UX by preventing unstyled error state when tab object does not exist.
    • \n
    • Fix – Update class steps to use namespaced class names consistently to improve class reusability.
    • \n
    • Fix – In the onboarding API, improve data management by merging new params instead of overwriting existing ones.
    • \n
    • Fix – Standardize asset loading by using a consistent function to load assets.
    • \n
    • Tweak – Alter Telemetry to allow classes to hook in and supress the modal for specific pages.
    • \n
    • Tweak – Hide Telemetry modal on the onboarding page.
    • \n
    • Tweak – Improve the onboarding wizard by properly storing current tab completion and adding filter to force redirect.
    • \n
    • Tweak – Replace tribe_asset with tec_asset function for proper asset pathing.
    • \n
    • Tweak – Add tec_events_onboarding_wizard_force_display filter to allow bypassing Guided Setup display checks.
    • \n
    • Tweak – Add tec_events_onboarding_force_redirect_to_guided_setup filter to bypass checks for redirecting to Guided Setup.
    • \n
    • Tweak – Move Country and Currency lists to Common for better code reuse.
    • \n
    • Tweak – Update asset handling to leverage group paths consistently.
    • \n
    • Language – 2 new strings added, 252 updated, 4 fuzzied, and 38 obsoleted.
    • \n
    \n

    [6.12.0.1] 2025-05-14

    \n
      \n
    • Fix – Prevents fatal if QR library in common has not loaded. [TEC-5497]
    • \n
    • Language – 10 new strings added, 247 updated, 1 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.12.0] 2025-05-13

    \n
      \n
    • Feature – Add an editor block to display an event QR code [TEC-5404]
    • \n
    • Feature – Add a widget to display a QR code for an event [TEC-5405]
    • \n
    • Feature – Add the [tec_event_qr] shortcode [TEC-5406]
    • \n
    • Feature – Generate QR Code link in the Events Admin Table [TEC-5428]
    • \n
    • Feature – QR Code metabox in Events Edit screen [TEC-5429]
    • \n
    • Feature – Support QR Codes in TEC [TEC-5396]
    • \n
    • Security – Harden backend requests to enforce user capabilities. [SVUL-15]
    • \n
    • Tweak – Added filters: tec_events_qr_enabled, tec_events_qr_valid_screens, tec_events_qr_code_supported_post_types, tec_events_qr_code_post_types, tec_events_qr_code_redirection_type, tec_events_qr_code_modal_vars, tec_events_qr_code_regenerate, tec_events_qr_current_event_url, tec_events_qr_upcoming_event_url, tec_events_qr_specific_event_url, tec_events_qr_redirection_url, tec_events_qr_widget_options, tec_events_qr_widget_fields, tec_events_qr_next_series_event_url,
    • \n
    • Tweak – Added actions: tec_events_fully_loaded
    • \n
    • Tweak – Changed views: blocks/parts/subscribe-list, v2/components/events-bar/views, v2/components/events-bar/views/list/item, v2/components/messages, v2/components/subscribe-links/single-event-list, v2/day, v2/list, v2/month, v2/widgets/widget-events-qr-code
    • \n
    • Accessibility – Add aria-labels to view options and aria-current to selected view. [TEC-5022]
    • \n
    • Accessibility – Add aria-label to view selector button. [TEC-5021]
    • \n
    • Accessibility – Add aria label to Add to calendar button. [TEC-5088]
    • \n
    • Accessibility – Change focus to results after filtering events/. [FBAR-332]
    • \n
    • Accessibility – Change wrapper div to a section tag to avoid multiple ‘banner’ landmarks. [TEC-3424]
    • \n
    • Accessibility – Small tweaks to improve accessibility of user-facing messages. [FBAR-333]
    • \n
    • Accessibility – Tweaked accordions so they will toggle and not submit when using keyboard navigation. [FBAR-343]
    • \n
    • Language – 61 new strings added, 145 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.11.2.1] 2025-04-28

    \n
      \n
    • Version – The Events Calendar 6.11.2.1 is only compatible with Event Tickets 5.21.1.1 or higher.
    • \n
    • Fix – Amend various callbacks of the External Calendar Embeds feature to not be so strict on the expected arguments, as a result fixing fatal errors when the arguments are not of the expected type. [TEC-5484]
    • \n
    • Security – Added more safety checks to telemetry opt-ins/opt-outs. [TCMN-186]
    • \n
    • Language – 0 new strings added, 186 updated, 0 fuzzied, and 61 obsoleted.
    • \n
    \n

    [6.11.2] 2025-04-09

    \n
      \n
    • Fix – Ensure that Copy and Render for our Legacy Widgets works for all Event related widgets [TEC-5447]
    • \n
    • Fix – Prevent language notice when loading Aggregator cron interval too early. props @peter8nss
    • \n
    • Language – 0 new strings added, 1 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.11.1] 2025-04-07

    \n
      \n
    • Version – The Events Calendar 6.11.1 is only compatible with Event Tickets 5.20.0 and higher
    • \n
    • Fix – Avoid running unbound queries, avoid too long queries being killed. [ECP-1898]
    • \n
    • Fix – Correct some text-domains copied from common
    • \n
    • Fix – Ensures the ajaxComplete callback is fired after AJAX has actually completed. [FBAR-344]
    • \n
    • Fix – Ensures delete_custom_tables_data method is called only for events. [TEC-5445]
    • \n
    • Fix – Ensures events_per_page is type casted to int before used. [TEC-5442]
    • \n
    • Fix – Include Label for viewing post type archives. props @mikeritter
    • \n
    • Fix – Makes sure that Custom Tables are loaded after our Common library is loaded. [TEC-5445]
    • \n
    • Fix – Prevent invalid argument supplied for foreach() warning, props to @zosterops-lateralis
    • \n
    • Tweak – Fixed typo in the First Time Setup page. [TEC-5415]
    • \n
    • Tweak – Improve our widgets to enable copying it in between different instances of the Block and Site editor.
    • \n
    • Tweak – Make sure our settings for showing comments is respected as much as possible. props @zosterops-lateralis
    • \n
    • Tweak – Modify the URL params for Views HTML REST Requests to enable usage of GET requests enabling caching
    • \n
    • Tweak – Modify the visibility of tribe-ea- statuses to prevent them from slowing down WP_Query that are unrelated to Aggregator
    • \n
    • Tweak – Prevent REST API notice from showing in certain cases of false positives.
    • \n
    • Performance – Aggregator query for Authors on the import form has better boundaries props @dilipbheda
    • \n
    • Performance – Avoid duplicate queries by caching model queries results. [ECP-1898]
    • \n
    • Language – 2 new strings added, 192 updated, 2 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.11.0.1] 2025-04-01

    \n
      \n
    • Fix – Ensures get_current_screen() function is only called if it exists, avoiding fatal error if called too early. [TEC-5439]
    • \n
    \n

    [6.11.0] 2025-03-31

    \n
      \n
    • Feature – Added External Calendar Embeds functionality. [TEC-5359]
    • \n
    • Tweak – Add auto-width to Subscribe to Calendar button to accommodate translations. Props to @huubl [TEC-5430]
    • \n
    • Tweak – Adjust CSS to make sure that onboarding wizard form elements are properly aligned on all WordPress versions. [TEC-5402]
    • \n
    • Tweak – Adjusted vertical spacing in the onboarding wizard to better fit the content on the screen. [TEC-5402]
    • \n
    • Tweak – Changed some organizer and venue fields in the onboarding wizard to not be required. [TEC-5408]
    • \n
    • Tweak – Make sure the Setup Guide page shows up only when asked for. [TEC-5411]
    • \n
    • Fix – Add check for single venue and single organizer to the Template_Bootstrap class. Use those checks for SEO titles and enable SEO plugins to overwrite their respective titles. [ECP-1059]
    • \n
    • Fix – Add notice that at least one view is required for Onboarding Wizard display tab. [TEC-5398]
    • \n
    • Fix – Add one time redirect to the Guided Setup page. [TEC-5401]
    • \n
    • Fix – Adjusted logic for when to reset isSaving state for Onboarding Wizard. [TEC-5409]
    • \n
    • Language – 49 new strings added, 158 updated, 0 fuzzied, and 2 obsoleted.
    • \n
    \n

    [6.10.3] 2025-03-25

    \n
      \n
    • Fix – Improved user experience by ensuring Event Tickets installation and activation notices only appear on TEC-related admin pages.
    • \n
    • Language – 0 new strings added, 5 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.10.2] 2025-03-04

    \n
      \n
    • Feature – Use the filter hook in TCMN to define the pages to show IAN notifications [ET-2294]
    • \n
    • Tweak – Added actions: tec_events_before_view_html_cache
    • \n
    • Tweak – Added check that $_FILES is set before setting the param on an HTTP request. [TEC-5363]
    • \n
    • Tweak – Added filters: tec_events_filter_wp_robots_meta_directives
    • \n
    • Tweak – Added link to Events Calendar Pro in onboarding wizard. [TEC-5397]
    • \n
    • Tweak – Changed views: v2/month/top-bar/datepicker, v2/widgets/widget-events-list/event/date-tag
    • \n
    • Tweak – Removed filters: tec_events_seo_robots_meta_content, tec_events_no_index_meta
    • \n
    • Tweak – Update docblocks in the Tribe__Events__iCal class.
    • \n
    • Fix – Corrected template override file path for Event List Widget date-tag. [ECP-1725]
    • \n
    • Fix – Fix past events shortcode attribute [TEC-5348]
    • \n
    • Fix – Fix the time zone blocks in the iCal feed to make sure the iCal feed is valid and the calendar can be subscribed to. [TEC-5360]
    • \n
    • Fix – Hide Not-Found notice in Astra Theme archive page [TEC-4853]
    • \n
    • Fix – Hook the noindex directives into a new hook before the View HTML cache check. [TEC-5354]
    • \n
    • Compatibility – Added 404 handling for day view when disabled or accessed outside the range of earliest and latest events, with an exception for the current month when no events exist. [TEC-5356]
    • \n
    • Compatibility – Added 404 handling for month view when disabled or accessed outside the range of earliest and latest events, with an exception for the current month when no events exist. [TEC-5356]
    • \n
    • Compatibility – Switched to using WordPress wp_robots for improved SEO plugin compatibility and to prevent duplicate meta robots tags. [TEC-5355]
    • \n
    • Language – 0 new strings added, 129 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.10.1.1] 2025-02-12

    \n
      \n
    • Fix – Updated common library to correct issues with notifications around licensing.
    • \n
    • Fix – Add a callback to remove the tribe_pue_key_notices once on upgrade to version 6.5.1.1 [TEC-5384]
    • \n
    • Fix – Adjustments were made to prevent a fatal error when tec_pue_checker_init was triggered too early, attempting to call tribe_is_truthy() before it was available. The license check and active plugin monitoring now run on admin_init to ensure proper loading. [TEC-5384]
    • \n
    • Fix – Update the license checker to ignore empty licenses. [TEC-5385]
    • \n
    • Language – 0 new strings added, 0 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.10.1] 2025-02-10

    \n
      \n
    • Fix – Added a check for $subscribe_links in single_event_links function. [TEC-5357]
    • \n
    • Fix – Added format_item() function so venues read from ORM are decorated objects. (props to @m8nmueller) [TEC-5353]
    • \n
    • Fix – Make Eventbrite import available when the Eventbrite Tickets plugin is installed [EBT-149]
    • \n
    • Fix – Replaced deprecated functions with their modern equivalents to maintain compatibility. [EA-476]
    • \n
    • Fix – Support Additional Fields in Events REST API [TEC-5015]
    • \n
    • Fix – Changed the way translations are loaded to work with the latest WordPress language changes.
    • \n
    • Accessibility – Increased pagination button sizes on the events page. [TEC-5176]
    • \n
    • Tweak – Added aliases for Venue ORM for show_map and show_map_link. (props to @m8nmueller) [TEC-5352]
    • \n
    • Tweak – Remove class_exists() and use register_on_action() for Notifications [TEC-5336]
    • \n
    • Tweak – Added filters: tribe_repository_venues_format_item
    • \n
    • Language – 0 new strings added, 8 updated, 1 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.10.0] 2025-01-30

    \n
      \n
    • Fix – Update asset, dependencies, customizations to align with WordPress 6.7 and React 18. [TEC-5322]
    • \n
    • Language – 0 new strings added, 44 updated, 0 fuzzied, and 1 obsoleted.
    • \n
    \n

    [6.9.1] 2025-01-22

    \n
      \n
    • Security – Ensure Elementor HTML tags are properly escaped to avoid potential Stored Cross Site Scripting. [SVUL-13]
    • \n
    • Fix – Added check to disable_blocks_on_display for if $content is null. [TEC-5343]
    • \n
    • Fix – Ensure Aggregator translations are not loaded before init. [TEC-5341]
    • \n
    • Fix – Fixes edge cases where the nonce_user_logged_out hook was returning a value when the user was logged out, causing the nonce validation to fail. [TEC-5340]
    • \n
    • Fix – Fix the filter name tec_views_v2_subscribe_links_{$slug}_label which was accidentally changed in a previous release. [TEC-5342]
    • \n
    • Fix – Re-add logic to add page template options from theme to Display Settings. [TEC-5337]
    • \n
    • Fix – Update Tribe__Events__Aggregator__Errors to ensure we don’t load translations before init. [TEC-5341]
    • \n
    • Fix – Update uses of unload_textdomain to ensure they allow JIT loading of translations afterwards. [TEC-5341]
    • \n
    • Tweak – Moved Action Scheduler loading into Common instead of TEC. [TEC-5345]
    • \n
    • Tweak – Updated Telemetry heading under Settings > Debugging. [TEC-5335]
    • \n
    • Tweak – Re-added filter: tec_views_v2_subscribe_links_{$slug}_label
    • \n
    • Tweak – Tweak – Removed duplicate filter: tec_views_v2_single_subscribe_links_{$slug}_label
    • \n
    • Tweak – Changed views: integrations/elementor/widgets/event-calendar-link, integrations/elementor/widgets/event-datetime/range-separator, v2/components/loader, v2/components/messages
    • \n
    • Accessibility – Updated the event search page to handle search results better for screen readers, with alerts noting the results of the search.[TEC-5175]
    • \n
    • Language – 3 new strings added, 84 updated, 0 fuzzied, and 2 obsoleted.
    • \n
    \n

    [6.9.0] 2024-12-17

    \n
      \n
    • Feature – Added new Onboarding Wizard and First Time Setup admin page for new installs. [TEC-5285]
    • \n
    • Fix – When importing events from Google Calendar when using Events Calendar Pro with a custom Google Maps API key, Provinces/States for non-US countries are now saved to the correct field. [ECP-1877]
    • \n
    • Fix – When using “Move to trash events older than”, trashed imported events are now ignored. [TEC-5319]
    • \n
    • Fix – Changed format method to format_i18n to allow for translations of dates in the TEC Elementor Widget. [TEC-5323]
    • \n
    • Fix – Correct template override path to match docblocks for event-export directory. [TEC-5326]
    • \n
    • Fix – Correct application of upsell classes in settings page.
    • \n
    • Tweak – Fix the integration with TEC Tweaks to avoid a fatal error when using the extension. [TEC-5316]
    • \n
    • Tweak – Updated the docblock for the tribe_get_previous_events_link, tribe_get_next_event_link, and tribe_get_gridview_link functions.
    • \n
    • Tweak – Improved documentation for the tribe_the_next_event_link, tribe_the_prev_event_link, and tribe_get_events_link functions.
    • \n
    • Tweak – Update docblocks in the Tribe__Events__Importer__File_Importer_Events class.
    • \n
    • Tweak – Added filters: tec_events_onboarding_wizard_permissions, tec_events_onboarding_wizard_handle, tec_events_onboarding_wizard_country_list, tec_events_onboarding_wizard_timezone_list, tec_events_onboarding_wizard_currencies_list, tribe_events_onboarding_wizard_initial_data, tec_events_admin_notice_event_tickets_should_display, tec_events_admin_notice_utc_timezone_should_display, tec_events_settings_should_filter_page_logo_source
    • \n
    • Tweak – Changed views: integrations/elementor/widgets/event-export, integrations/elementor/widgets/event-export/list-item
    • \n
    • Language – 87 new strings added, 156 updated, 2 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.8.3] 2024-12-05

    \n
      \n
    • Feature – In-App Notifications system. [TEC-5165]
    • \n
    • Tweak – Added actions: tec_ian_icon
    • \n
    • Language – 0 new strings added, 118 updated, 0 fuzzied, and 1 obsoleted.
    • \n
    \n

    [6.8.2.1] 2024-11-21

    \n
      \n
    • Tweak – Introduced filter tec_events_rest_api_password_protected_fields which can be used to control which event fields should be hidden in the REST API for password protected events. [SVUL-8]
    • \n
    • Security – Hide content fields from the archive REST endpoint for password protected events. [SVUL-8]
    • \n
    • Fix – Prevent notices on _load_textdomain_just_in_time due to Aggregator and Export links code.
    • \n
    \n

    [6.8.2] 2024-11-19

    \n
      \n
    • Feature – Introduced Help Hub, a centralized support and resource interface for enhanced user guidance and plugin assistance.
    • \n
    • Fix – Prevent a couple of instances where translations were loading too early, avoids notices with _load_textdomain_just_in_time on WordPress 6.7. [TEC-5325]
    • \n
    • Deprecated – Deprecated the unused update/activation page [TEC-5311]
    • \n
    • Language – 0 new strings added, 0 updated, 0 fuzzied, and 0 obsoleted.
    • \n
    \n

    [6.8.1] 2024-11-04

    \n
      \n
    • Fix – Order of past events in the list view when no future events exist. [TEC-5309]
    • \n
    • Fix – Prevent new Settings pages from over-sanitizing textarea fields, thus removing HTML from before/after in the Events UI. [TEC-5283]
    • \n
    • Fix – Include backwards compatibility for deprecated proprieties in the Settings class used in The Events Calendar and Event Tickets [TEC-5312]
    • \n
    \n

    [6.8.0] 2024-10-30

    \n
      \n
    • Version – The Events Calendar 6.8.0 is only compatible with Events Calendar Pro 7.3.0 and higher.
    • \n
    • Version – The Events Calendar 6.8.0 is only compatible with Events Tickets Plus 6.1.0 or higher.
    • \n
    • Version – The Events Calendar 6.8.0 is only compatible with Event Tickets 5.16.0 or higher.
    • \n
    • Feature – Added integration with new premium Seating product for Event Tickets.
    • \n
    • Language – 0 new strings added, 6 updated, 0 fuzzied, and 0 obsoleted
    • \n
    \n

    [6.7.1] 2024-10-21

    \n
      \n
    • Feature – Allow importing custom data when importing Organizers from a CSV file. [TEC-4846]
    • \n
    • Feature – Allow importing custom data when importing Venues from a CSV file. [TEC-5138]
    • \n
    • Security – Ensure restoring events from trash does not allow for unauthorized access. [SVUL-7] (props @patchstack)
    • \n
    • Fix – Ensure Latest Past Events appear properly in Category views [TEC-4991]
    • \n
    • Fix – Cast theme object to string to avoid a deprecation notice. [TEC-5062]
    • \n
    • Tweak – Removed the 6.0 welcome message. [TEC-5166]
    • \n
    • Tweak – Added filters: tribe_events_csv_import_organizer_additional_fields, tribe_events_csv_import_venue_additional_fields
    • \n
    • Tweak – Changed views: v2/latest-past
    • \n
    • Tweak – Updated docblocks in the Tribe__Events__Aggregator__Records, Tribe__Events__Importer__File_Importer, and Tribe__Events__Repositories__Organizer classes.
    • \n
    • Tweak – Improved documentation for the tribe_is_event, tribe_get_event_link, tribe_events_get_event_website_title, tribe_get_event_website_link, tribe_get_listview_display, tribe_get_listview_args, and tribe_get_listview_prev_link functions.
    • \n
    • Language – 3 new strings added, 218 updated, 0 fuzzied, and 32 obsoleted
    • \n
    \n

    [6.7.0] 2024-09-26

    \n
      \n
    • Version – The Events Calendar 6.7.0 is only compatible with Events Calendar Pro 7.1.0 and higher
    • \n
    • Version – The Events Calendar 6.7.0 is only compatible with Events Filterbar 5.5.7 and higher
    • \n
    • Version – The Events Calendar 6.7.0 is only compatible with Events Community 5.0.4 and higher
    • \n
    • Feature – New and improved settings layout and styles. [TEC-5124]
    • \n
    • Fix – Correct translation domains in a few templates. [6.7.2]
    • \n
    • Tweak – Added filters: tec_settings_gmaps_js_api_start, tec_events_settings_display_calendar_display_section, tec_general_settings_viewing_section, tec_events_aggregator_show_all_settings, tec_events_settings_tab_imports_fields
    • \n
    • Tweak – Removed filters: tec_events_should_display_events_template_setting, tec_events_display_settings_tab_fields, tribe_general_settings_tab_fields
    • \n
    • Tweak – Added actions: tec_events_settings_tab_display_additional_content, tec_events_settings_tab_display_calendar, tec_events_settings_tab_display_date_time, tec_events_settings_tab_display_maps, tec_events_settings_tab_general_debugging, tec_events_settings_tab_general_editing, tec_events_settings_tab_general_maintenance, tec_events_settings_tab_general_viewing, tec_settings_tab_addons, tec_events_settings_tab_display, tec_events_settings_tab_general, tec_events_settings_tab_imports
    • \n
    • Tweak – Changed views: v2/latest-past/event/venue
    • \n
    • Language – 6 new strings added, 356 updated, 3 fuzzied, and 29 obsoleted
    • \n
    \n

    [6.6.4.2] 2024-09-17

    \n
      \n
    • Fix – Resolve fatal errors happening when Events search was being used alongside query ordering. [TEC-5155]
    • \n
    \n

    [6.6.4.1] 2024-09-16

    \n
      \n
    • Security – Improve general escaping for ORM queries to prevent legacy Events methods to be used for SQL injections.
    • \n
    \n

    [6.6.4] 2024-09-11

    \n
      \n
    • Security – Improve handling of Date/Time Separator settings to prevent potential XSS vulnerabilities.
    • \n
    • Fix – Add an option to allow for duplicate Venue creation as part of creating/editing Events.
    • \n
    • Fix – Adding small adjustment to WPML integration to allow for location searches on a translated site. (props to @dgwatkins) [BTRIA-2353]
    • \n
    • Fix – Changed logic within the custom tables query to avoid a database error. (props @datadiver0x0) [ECP-1562]
    • \n
    • Fix – Update the logic that displays the “REST API blocked” banner to reduce false positives. [TEC-5105]
    • \n
    • Tweak – Include methods tec_events_get_date_time_separator and tec_events_get_time_range_separator and it’s respective filters.
    • \n
    • Tweak – Add docblock for make_select_box()
    • \n
    • Tweak – Add docblock for set_defaults() in the Tribe__Events__Importer__Column_Mapper class.
    • \n
    • Tweak – Add docblocks to the methods in the Tribe__Events__Importer__Column_Mapper class.
    • \n
    • Tweak – Add information and missing tags to tribe_get_listview_args() docblock.
    • \n
    • Tweak – Add information and missing tags to tribe_get_listview_dir_link() docblock.
    • \n
    • Tweak – Add information and missing tags to tribe_get_listview_link() docblock.
    • \n
    • Tweak – Add information and missing tags to tribe_get_listview_past_link() docblock.
    • \n
    • Tweak – Add information and missing tags to tribe_get_prev_event_link().
    • \n
    • Tweak – Made a string translatable in settings.php file. (props to @DAnn2012) [TEC-5142]
    • \n
    • Tweak – Update the docblock of the tribe_embed_google_map() method, change a variable name to match current naming conventions, and added a docblock to the tribe_embed_google_map filter.
    • \n
    • Tweak – Update the docblock of the tribe_embed_google_map_link() method, change a variable name to match current naming conventions, and added a docblock to the tribe_embed_google_map_link filter.
    • \n
    • Tweak – Changed views: silence, v2/month/calendar-body/day/calendar-events/calendar-event/date
    • \n
    • Language – 0 new strings added, 46 updated, 0 fuzzied, and 0 obsoleted
    • \n
    \n

    [6.6.3] 2024-08-29

    \n
      \n
    • Fix – Add an option to allow for duplicate Venue creation as part of creating/editing Events. [TEC-4941]
    • \n
    • Fix – Character encoding issues on subscribe URLs for Outlook. [TEC-5085, TEC-5094, TEC-5136]
    • \n
    • Fix – Update the logic that displays the “REST API blocked” banner to reduce false positives. [TEC-5105]
    • \n
    • Tweak – Add docblock for make_select_box()
    • \n
    • Tweak – Changed views: v2/month/calendar-body/day/calendar-events/calendar-event/date
    • \n
    • Language – 0 new strings added, 0 updated, 0 fuzzied, and 0 obsoleted
    • \n
    \n

    [6.6.2] 2024-09-20

    \n
      \n
    • Feature …
    • \n
    \n", "description": "

    Easily create and manage an events calendar on your WordPress site with The Events Calendar free plugin. Whether your events are in-person or virtual events, this WordPress calendar plugin boasts professional features backed by our world-class team of developers and designers.

    \n

    \n

    See more videos on our YouTube channel

    \n

    Packed with loads of features, The Events Calendar is ready to go out of the box. It’s also extensible, easy to use, and completely customizable.

    \n

    📅 The #1 Calendar for WordPress

    \n

    See the calendar in action on our demo experience. Just getting started? Read through the New User Primer to get set up.

    \n

    Looking for additional features like recurring events, ticket sales, user-submitted events, automatic imports, and more?

    \n

    Check out Events Calendar Pro, Event Aggregator, and more add-ons.

    \n

    🔌🎨 Plug and Play or Customize

    \n

    The Events Calendar is built to work out of the box. Simply install the plugin, configure your settings, and start creating events in minutes.

    \n

    Want to add your personal touch? Use The Events Calendar as the foundation for customization. Personalize to your heart’s content with the help of a skeleton stylesheet, partial template overrides, template tags, hooks and filters, careful documentation, and a library of free extensions.

    \n

    Whether your vision is big or small, you’re in good company. Hundreds of thousands of small businesses, musicians, venues, restaurants, and non-profits are publishing and promoting their in-person and virtual events with The Events Calendar. Our plugins have also been scaled to work on large networks for Fortune 100 companies, universities, and government institutions.

    \n

    ✨ Features

    \n

    Our feature-rich plugin comes with everything you need to create and manage your calendar.

    \n

    ✔️ Rapidly create events
    \n✔️ Saved venues & organizers
    \n✔️ Calendar month view with tooltips
    \n✔️ Event List view
    \n✔️ Day view
    \n✔️ Block Editor support
    \n✔️ Event search
    \n✔️ Google maps
    \n✔️ Widget: Upcoming events list
    \n✔️ Events Taxonomies (Categories & Tags)
    \n✔️ Google Calendar and iCal exporting
    \n✔️ WP REST API endpoints
    \n✔️ Completely ajaxified for super smooth browsing
    \n✔️ Completely responsive from mobile to tablet to desktop
    \n✔️ Tested on the major theme frameworks such as Avada, Divi, Enfold, Genesis, and many more.
    \n✔️ Increase your SEO with JSON-LD Structured Data
    \n✔️ Internationalized & translated
    \n✔️ Multiple stylesheets to improve integration
    \n✔️ Extensive template tags for customization
    \n✔️ Hooks & filters galore
    \n✔️ Caching support
    \n✔️ Debug mode for developers
    \n✔️ Library of extensions

    \n

    📃 Documentation

    \n

    All of our documentation can be found in our Knowledgebase.

    \n

    Additional helpful links:

    \n\n

    If you have any questions about this plugin, you can post a thread in the WordPress.org forum. Please search existing threads before starting a new one.

    \n

    Add-Ons

    \n

    Take your calendar to the next level by pairing it with our plugins for ticketing, crowdsourcing, email marketing, and more. Learn more about all our products on our website.

    \n

    Our Free Plugins:

    \n

    🎟️ Event Tickets
    \n📐 Advanced Post Manager

    \n

    Our Premium Plugins and Services:

    \n

    Events Calendar PRO
    \n↪️ Event Aggregator (service)
    \n🎟️ Event Tickets Plus
    \n✉️ Promoter
    \n👥 Community Events
    \n✏️ Filter Bar
    \n🗓️ Eventbrite Tickets

    \n

    Help

    \n

    If you aren’t familiar with The Events Calendar, check out our New User Primer. It will have you creating events in no time.

    \n

    Ready to dig deeper? Check out these resources:

    \n\n

    We check in on the The Events Calendar forum here on WordPress.org about once a week to help users with basic troubleshooting and identifying bugs. If you’re looking for premium, personalized support, consider upgrading to Events Calendar Pro.

    \n

    Still have a question? Shoot us an email at support@theeventscalendar.com.

    \n", "screenshots": "
    1. \"Month

      Month View with hover

    2. \"Mobile

      Mobile Views

    3. \"Single

      Single event

    4. \"List

      List View

    5. \"Event

      Event Editor

    6. \"Events

      Events admin listing

    7. \"General

      General Settings

    8. \"Display

      Display Settings

    9. \"CSV

      CSV Importer

    ", "installation": "

    Installing the plugin is easy. Just follow one of the following methods:

    \n

    Install The Events Calendar from within WordPress

    \n
      \n
    1. Visit the plugins page within your dashboard and select ‘Add New’
    2. \n
    3. Search for “Events Calendar”
    4. \n
    5. Activate The Events Calendar from your Plugins page
    6. \n
    7. You’re done!
    8. \n
    \n

    Install The Events Calendar Manually

    \n
      \n
    1. From the dashboard of your site, navigate to Plugins –> Add New.
    2. \n
    3. Select the Upload option and hit “Choose File.”
    4. \n
    5. When the popup appears select the the-events-calendar-x.x.zip file from your desktop. (The ‘x.x’ will change depending on the current version number).
    6. \n
    7. Follow the on-screen instructions and wait as the upload completes.
    8. \n
    9. When it’s finished, activate the plugin via the prompt. A message will show confirming activation was successful. A link to access the calendar directly on the frontend will be presented here as well.
    10. \n
    \n

    That’s it! Just configure your settings as you see fit, and you’re on your way to creating events in style. Need help getting things started? Check out our new user primer for help with settings and features.

    \n"}, "versions": {"1.5": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.zip", "2.0": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.zip", "3.0": "https://downloads.wordpress.org/plugin/the-events-calendar.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/the-events-calendar.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/the-events-calendar.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/the-events-calendar.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/the-events-calendar.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/the-events-calendar.3.6.zip", "3.7": "https://downloads.wordpress.org/plugin/the-events-calendar.3.7.zip", "3.8": "https://downloads.wordpress.org/plugin/the-events-calendar.3.8.zip", "3.9": "https://downloads.wordpress.org/plugin/the-events-calendar.3.9.zip", "4.0": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.zip", "4.5": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.zip", "4.7": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.zip", "4.8": "https://downloads.wordpress.org/plugin/the-events-calendar.4.8.zip", "3.10": "https://downloads.wordpress.org/plugin/the-events-calendar.3.10.zip", "3.11": "https://downloads.wordpress.org/plugin/the-events-calendar.3.11.zip", "3.12": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.zip", "1.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/the-events-calendar.1.5.6.zip", "1.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/the-events-calendar.1.6.5.zip", "2.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.9.zip", "3.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.3.0.3.zip", "3.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.3.1.zip", "3.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.4.1.zip", "3.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.5.1.zip", "3.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.6.1.zip", "3.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.8.1.zip", "3.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/the-events-calendar.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/the-events-calendar.3.9.3.zip", "4.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/the-events-calendar.4.0.7.zip", "4.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.4.zip", "4.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.5.zip", "4.2.6": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.6.zip", "4.2.7": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.7.zip", "4.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.1.zip", "4.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.2.zip", "4.5.8": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.8.zip", "4.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.1.zip", "4.9.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.zip", "5.0.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.zip", "5.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.zip", "5.1.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.6.zip", "5.2.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.zip", "5.3.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.zip", "5.4.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.zip", "5.5.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.zip", "5.6.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.6.0.zip", "5.7.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.7.1.zip", "5.8.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.8.2.zip", "5.9.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.9.2.zip", "6.0.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.8.zip", "6.0.9": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.9.zip", "6.1.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.4.zip", "6.2.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.5.zip", "6.2.6": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.6.zip", "6.2.7": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.7.zip", "6.2.8": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.8.zip", "6.2.9": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.9.zip", "6.3.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.3.zip", "6.3.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.4.zip", "6.3.5": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.5.zip", "6.3.6": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.6.zip", "6.3.7": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.7.zip", "6.4.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.4.0.zip", "6.5.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.zip", "6.5.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.2.zip", "6.6.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.1.zip", "6.6.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.2.zip", "6.6.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.3.zip", "6.6.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.4.zip", "6.7.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.7.0.zip", "6.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.7.1.zip", "6.8.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.8.0.zip", "6.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.8.1.zip", "6.8.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.8.2.zip", "6.8.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.8.3.zip", "6.9.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.9.1.zip", "trunk": "https://downloads.wordpress.org/plugin/the-events-calendar.zip", "2.0.10": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/the-events-calendar.2.0.11.zip", "3.10.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.10.1.zip", "3.11.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.11.1.zip", "3.11.2": "https://downloads.wordpress.org/plugin/the-events-calendar.3.11.2.zip", "3.12.1": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.1.zip", "3.12.2": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.2.zip", "3.12.3": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.3.zip", "3.12.4": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.4.zip", "3.12.5": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.5.zip", "3.12.6": "https://downloads.wordpress.org/plugin/the-events-calendar.3.12.6.zip", "4.5.10": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.10.zip", "4.5.12": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.zip", "4.6.10": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.10.zip", "4.6.11": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.11.zip", "4.6.14": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.14.zip", "4.6.20": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.20.zip", "4.6.22": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.22.zip", "4.6.24": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.24.zip", "4.6.26": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.26.zip", "5.10.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.10.0.zip", "5.10.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.10.1.zip", "5.11.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.11.0.zip", "5.12.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.12.0.zip", "5.12.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.12.1.zip", "5.12.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.12.2.zip", "5.12.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.12.3.zip", "5.12.4": "https://downloads.wordpress.org/plugin/the-events-calendar.5.12.4.zip", "5.13.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.13.0.zip", "5.14.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.zip", "5.14.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.1.zip", "5.14.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.2.zip", "5.15.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.15.0.zip", "5.16.0": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.0.zip", "5.16.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.1.zip", "5.16.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.2.zip", "5.16.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.3.zip", "5.16.4": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.4.zip", "6.0.10": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.10.zip", "6.0.11": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.11.zip", "6.0.12": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.12.zip", "6.0.13": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.13.zip", "6.10.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.10.0.zip", "6.10.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.10.1.zip", "6.10.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.10.2.zip", "6.10.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.10.3.zip", "6.11.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.11.0.zip", "6.11.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.11.1.zip", "6.11.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.11.2.zip", "6.12.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.12.0.zip", "6.13.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.13.0.zip", "6.13.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.13.1.zip", "6.13.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.13.2.zip", "6.14.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.14.0.zip", "6.14.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.14.1.zip", "6.14.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.14.2.zip", "6.15.0": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.0.zip", "6.15.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.1.zip", "6.15.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.2.zip", "6.15.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.3.zip", "6.15.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.4.zip", "6.15.5": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.5.zip", "6.15.6": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.6.zip", "6.15.7": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.7.zip", "6.15.8": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.8.zip", "6.15.9": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.9.zip", "4.1.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.0.1.zip", "4.1.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.1.1.1.zip", "4.2.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.2.1.1.zip", "4.3.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.0.2.zip", "4.3.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.1.2.zip", "4.3.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.2.1.zip", "4.3.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.3.1.zip", "4.3.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.1.zip", "4.3.4.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.3.zip", "4.3.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.3.5.1.zip", "4.4.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.0.2.zip", "4.4.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.1.2.zip", "4.4.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.2.1.zip", "4.4.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.3.1.zip", "4.4.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.4.1.zip", "4.4.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.4.5.1.zip", "4.5.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.0.1.zip", "4.5.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.0.3.zip", "4.5.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.1.1.zip", "4.5.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.2.2.zip", "4.5.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.3.1.zip", "4.5.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.4.1.zip", "4.5.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.5.1.zip", "4.5.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.6.1.zip", "4.5.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.7.1.zip", "4.5.8.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.8.2.zip", "4.5.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.9.1.zip", "4.6.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.0.1.zip", "4.6.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.1.1.zip", "4.6.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.2.1.zip", "4.6.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.3.1.zip", "4.6.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.4.1.zip", "4.6.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.5.1.zip", "4.6.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.6.1.zip", "4.6.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.7.1.zip", "4.6.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.8.1.zip", "4.6.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.9.1.zip", "4.7.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.0.2.zip", "4.7.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.1.1.zip", "4.7.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.2.1.zip", "4.7.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.3.1.zip", "4.7.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.7.4.1.zip", "4.8.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.8.0.2.zip", "4.8.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.8.1.1.zip", "4.8.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.8.2.1.zip", "4.9.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.1.zip", "4.9.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.2.zip", "4.9.0.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.4.zip", "4.9.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.1.2.zip", "4.9.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.2.1.zip", "4.9.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.1.zip", "4.9.3.3": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.3.zip", "4.9.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.4.1.zip", "4.9.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.5.1.zip", "4.9.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.6.1.zip", "4.9.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.7.1.zip", "4.9.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.8.1.zip", "4.9.9.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.9.1.zip", "5.0.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.1.zip", "5.0.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.3.zip", "5.0.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.1.1.zip", "5.0.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.1.2.zip", "5.0.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.2.zip", "5.0.2.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.3.zip", "5.0.3.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.2.zip", "5.0.3.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.3.zip", "5.1.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.0.1.zip", "5.1.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.0.2.zip", "5.1.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.1.1.zip", "5.1.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.1.2.zip", "5.1.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.2.1.zip", "5.1.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.2.2.zip", "5.1.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.3.1.zip", "5.1.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.4.1.zip", "5.1.5.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.5.1.zip", "5.1.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.1.6.1.zip", "5.2.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.2.0.1.zip", "5.2.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.1.zip", "5.2.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.2.zip", "5.3.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.0.1.zip", "5.3.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.1.zip", "5.3.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.2.zip", "5.3.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.1.zip", "5.3.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.2.zip", "5.4.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.1.zip", "5.4.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.2.zip", "5.4.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.3.zip", "5.5.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.1.zip", "5.5.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.2.zip", "6.0.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.0.1.zip", "6.0.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.1.1.zip", "6.0.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.3.1.zip", "6.0.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.6.1.zip", "6.0.6.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.6.2.zip", "6.0.7.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.7.1.zip", "6.1.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.0.1.zip", "6.1.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.0.2.zip", "6.1.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.2.1.zip", "6.1.2.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.1.2.2.zip", "6.15.10": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.10.zip", "6.2.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.0.1.zip", "6.2.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.2.1.zip", "6.2.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.3.1.zip", "6.2.3.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.3.2.zip", "6.2.6.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.6.1.zip", "6.2.8.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.8.1.zip", "6.2.8.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.2.8.2.zip", "6.3.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.3.3.1.zip", "6.4.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.4.0.1.zip", "6.5.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.0.1.zip", "6.5.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.1.zip", "6.5.1.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.2.zip", "6.5.1.3": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.3.zip", "6.5.1.4": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.4.zip", "6.5.1.5": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.5.zip", "6.5.1.6": "https://downloads.wordpress.org/plugin/the-events-calendar.6.5.1.6.zip", "6.6.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.0.1.zip", "6.6.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.0.2.zip", "6.6.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.4.1.zip", "6.6.4.2": "https://downloads.wordpress.org/plugin/the-events-calendar.6.6.4.2.zip", "6.8.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.8.2.1.zip", "4.5.10.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.10.2.zip", "4.5.11.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.11.1.zip", "4.5.12.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.1.zip", "4.5.12.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.2.zip", "4.5.12.4": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.4.zip", "4.5.13.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.5.13.1.zip", "4.6.10.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.10.2.zip", "4.6.11.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.11.2.zip", "4.6.12.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.12.1.zip", "4.6.13.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.13.1.zip", "4.6.14.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.14.2.zip", "4.6.15.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.15.1.zip", "4.6.16.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.16.1.zip", "4.6.17.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.17.1.zip", "4.6.18.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.18.1.zip", "4.6.19.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.19.1.zip", "4.6.20.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.20.2.zip", "4.6.21.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.21.1.zip", "4.6.22.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.22.2.zip", "4.6.23.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.23.1.zip", "4.6.24.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.24.2.zip", "4.6.25.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.25.1.zip", "4.6.26.2": "https://downloads.wordpress.org/plugin/the-events-calendar.4.6.26.2.zip", "4.9.10.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.10.1.zip", "4.9.11.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.11.1.zip", "4.9.12.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.12.1.zip", "4.9.13.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.13.1.zip", "4.9.14.1": "https://downloads.wordpress.org/plugin/the-events-calendar.4.9.14.1.zip", "5.14.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.1.zip", "5.14.0.2": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.2.zip", "5.14.0.3": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.3.zip", "5.14.0.4": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.0.4.zip", "5.14.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.14.2.1.zip", "5.15.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.15.0.1.zip", "5.16.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.1.1.zip", "5.16.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.2.1.zip", "5.16.3.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.3.1.zip", "5.16.4.1": "https://downloads.wordpress.org/plugin/the-events-calendar.5.16.4.1.zip", "6.0.13.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.0.13.1.zip", "6.10.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.10.1.1.zip", "6.11.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.11.0.1.zip", "6.11.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.11.2.1.zip", "6.12.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.12.0.1.zip", "6.13.2.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.13.2.1.zip", "6.15.0.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.0.1.zip", "6.15.1.1": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.1.1.zip"}, "downloaded": 76094565, "description": "

    Easily create and manage an events calendar on your WordPress site with The Events Calendar free plugin. Whether your events are in-person or virtual events, this WordPress calendar plugin boasts professional features backed by our world-class team of developers and designers.

    \n

    \n

    See more videos on our YouTube channel

    \n

    Packed with loads of features, The Events Calendar is ready to go out of the box. It’s also extensible, easy to use, and completely customizable.

    \n

    📅 The #1 Calendar for WordPress

    \n

    See the calendar in action on our demo experience. Just getting started? Read through the New User Primer to get set up.

    \n

    Looking for additional features like recurring events, ticket sales, user-submitted events, automatic imports, and more?

    \n

    Check out Events Calendar Pro, Event Aggregator, and more add-ons.

    \n

    🔌🎨 Plug and Play or Customize

    \n

    The Events Calendar is built to work out of the box. Simply install the plugin, configure your settings, and start creating events in minutes.

    \n

    Want to add your personal touch? Use The Events Calendar as the foundation for customization. Personalize to your heart’s content with the help of a skeleton stylesheet, partial template overrides, template tags, hooks and filters, careful documentation, and a library of free extensions.

    \n

    Whether your vision is big or small, you’re in good company. Hundreds of thousands of small businesses, musicians, venues, restaurants, and non-profits are publishing and promoting their in-person and virtual events with The Events Calendar. Our plugins have also been scaled to work on large networks for Fortune 100 companies, universities, and government institutions.

    \n

    ✨ Features

    \n

    Our feature-rich plugin comes with everything you need to create and manage your calendar.

    \n

    ✔️ Rapidly create events
    \n✔️ Saved venues & organizers
    \n✔️ Calendar month view with tooltips
    \n✔️ Event List view
    \n✔️ Day view
    \n✔️ Block Editor support
    \n✔️ Event search
    \n✔️ Google maps
    \n✔️ Widget: Upcoming events list
    \n✔️ Events Taxonomies (Categories & Tags)
    \n✔️ Google Calendar and iCal exporting
    \n✔️ WP REST API endpoints
    \n✔️ Completely ajaxified for super smooth browsing
    \n✔️ Completely responsive from mobile to tablet to desktop
    \n✔️ Tested on the major theme frameworks such as Avada, Divi, Enfold, Genesis, and many more.
    \n✔️ Increase your SEO with JSON-LD Structured Data
    \n✔️ Internationalized & translated
    \n✔️ Multiple stylesheets to improve integration
    \n✔️ Extensive template tags for customization
    \n✔️ Hooks & filters galore
    \n✔️ Caching support
    \n✔️ Debug mode for developers
    \n✔️ Library of extensions

    \n

    📃 Documentation

    \n

    All of our documentation can be found in our Knowledgebase.

    \n

    Additional helpful links:

    \n\n

    If you have any questions about this plugin, you can post a thread in the WordPress.org forum. Please search existing threads before starting a new one.

    \n

    Add-Ons

    \n

    Take your calendar to the next level by pairing it with our plugins for ticketing, crowdsourcing, email marketing, and more. Learn more about all our products on our website.

    \n

    Our Free Plugins:

    \n

    🎟️ Event Tickets
    \n📐 Advanced Post Manager

    \n

    Our Premium Plugins and Services:

    \n

    Events Calendar PRO
    \n↪️ Event Aggregator (service)
    \n🎟️ Event Tickets Plus
    \n✉️ Promoter
    \n👥 Community Events
    \n✏️ Filter Bar
    \n🗓️ Eventbrite Tickets

    \n

    Help

    \n

    If you aren’t familiar with The Events Calendar, check out our New User Primer. It will have you creating events in no time.

    \n

    Ready to dig deeper? Check out these resources:

    \n\n

    We check in on the The Events Calendar forum here on WordPress.org about once a week to help users with basic troubleshooting and identifying bugs. If you’re looking for premium, personalized support, consider upgrading to Events Calendar Pro.

    \n

    Still have a question? Shoot us an email at support@theeventscalendar.com.

    \n", "donate_link": "https://evnt.is/29", "num_ratings": 2390, "screenshots": {"1": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=2755131", "caption": "Month View with hover"}, "2": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=2755131", "caption": "Mobile Views"}, "3": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=2755131", "caption": "Single event"}, "4": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=2755131", "caption": "List View"}, "5": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-5.png?rev=2755131", "caption": "Event Editor"}, "6": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-6.png?rev=2755131", "caption": "Events admin listing"}, "7": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-7.png?rev=2755131", "caption": "General Settings"}, "8": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-8.png?rev=2755131", "caption": "Display Settings"}, "9": {"src": "https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=2755131", "caption": "CSV Importer"}}, "support_url": "https://wordpress.org/support/plugin/the-events-calendar/", "contributors": {"aguseo": {"avatar": "https://secure.gravatar.com/avatar/0de4fed4ea2fd2347884de250c661a0571a5e025c5952a981d49a06b4cf78b55?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aguseo/", "display_name": "András Guseo"}, "vicskf": {"avatar": "https://secure.gravatar.com/avatar/2a6151d990b5a3c45f1bebb25685cf1845f89e82ce29e2ec14a4f82a9785c4e9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/vicskf/", "display_name": "Victor Zarranz"}, "bordoni": {"avatar": "https://secure.gravatar.com/avatar/e3171496e198834c638911ad3c3220bec77871cdf6557eaa9e2a58d16600a1a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bordoni/", "display_name": "Gustavo Bordoni"}, "borkweb": {"avatar": "https://secure.gravatar.com/avatar/cc19377aa23016d5b6429e2420f71c551032c4397647ec1d418582ed3a8414b5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/borkweb/", "display_name": "Matthew Batchelder"}, "jentheo": {"avatar": "https://secure.gravatar.com/avatar/d7c75e17cffe14f16e231a807e0beb7400863d124cca6ac83ea5fffcaec1ce80?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jentheo/", "display_name": "Jennifer"}, "camwynsp": {"avatar": "https://secure.gravatar.com/avatar/825243412e57fee3f2ac012ed06dc585304018474c281384df5a35aa2f283926?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/camwynsp/", "display_name": "Stephen Page"}, "lucatume": {"avatar": "https://secure.gravatar.com/avatar/a4749105e66f40847bdffd6dc201f937280b9f54f4d348063a5728d17f5ca1dd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lucatume/", "display_name": "lucatume"}, "stellarwp": {"avatar": "https://secure.gravatar.com/avatar/d614d953044e11b41ac7023709e850df4db1005b6845af94909326b25137590c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stellarwp/", "display_name": "StellarWP"}, "zbtirrell": {"avatar": "https://secure.gravatar.com/avatar/9a7363c5cd50c59e5f55f1d528192c4dd240f37e69d6051265a6bbe2e5fbe773?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/zbtirrell/", "display_name": "Zach Tirrell"}, "brianjessee": {"avatar": "https://secure.gravatar.com/avatar/a2a3ad9f38044cc01967b3ae4dbb250282d1f82076b7a6c8c8384dd51e005ec4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brianjessee/", "display_name": "Brian"}, "leahkoerper": {"avatar": "https://secure.gravatar.com/avatar/82a33306f8c3ca72179178253a54f45ab037699e2fef7602f81df5b83b680d6c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/leahkoerper/", "display_name": "leahkoerper"}, "neillmcshea": {"avatar": "https://secure.gravatar.com/avatar/cf54e357ba7733d555025d50a854eac709957e900365460a686451419418b34f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/neillmcshea/", "display_name": "neillmcshea"}, "theeventscalendar": {"avatar": "https://secure.gravatar.com/avatar/435f23ee0f44cdd850b49b16431731ee9995dc2c3f66ce2da24fe11ba49e1dd5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/theeventscalendar/", "display_name": "The Events Calendar"}}, "last_updated": "2025-10-28 5:38pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/the-events-calendar.6.15.10.zip", "author_profile": "https://profiles.wordpress.org/stellarwp/", "business_model": false, "repository_url": "", "upgrade_notice": {"[6.0]": "

    Please see the changelog for the complete list of changes in this release.\nPrevious versions of The Events Calendar are not cross-compatible with 6.X add-ons.\nRemember to always make a backup of your database and files before updating!

    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fbc1-70ed-9884-4fb09b307b3d", "name": "The Events Calendar", "slug": "the-events-calendar", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761673080, "version": "6.15.10"}, "support_threads": 92, "requires_plugins": [], "short_description": "The Events Calendar: #1 calendar plugin for WordPress. Create/manage events (virtual too!) on your site with the free plugin.", "author_block_count": 0, "author_block_rating": 86, "commercial_support_url": "", "support_threads_resolved": 86}'); -INSERT INTO public.plugins VALUES ('019a30c1-6728-70dc-8414-f8db2d3135a2', 'tinymce-advanced', 'Advanced Editor Tools', 'Extends and enhances the block editor (Gutenberg) and the classic editor (TinyMCE).', '

    Advanced Editor Tools (previously TinyMCE Advanced) introduces a “Classic Paragraph” block for the block editor (Gutenberg).
    -If you are not quite ready to switch to the block editor, or have plugins that cannot be used there (yet), using the Classic Paragraph block is your best option. It lets you to continue to use the familiar TinyMCE editor for most tasks, and at the same time gives you full access to all blocks and new features in the block editor.

    -

    Version 5.5 continues to improve and enhance the new features introduced in version 5.0 of the plugin. It includes an improved “Clear Formatting” button, several advanced settings for tables, and importing and exporting of the settings to a file.

    -

    If you want to continue to use the previous (“classic”) editor in WordPress 5.0 and newer, this plugin has an option to replace the new editor with the previous one. If you prefer to have access to both editors side by side or to allow your users to switch editors, it would be better to install the Classic Editor plugin. Advanced Editor Tools is fully compatible with the classic editor plugin and similar plugins that restore use of the previous WordPress editor.

    -

    As always this plugin will let you add, remove and arrange the buttons that are shown on the Visual Editor toolbar in the Classic Paragraph and Classic blocks in the block editor, and in the classic editor (when enabled by a plugin). There you can configure up to four rows of buttons including Font Sizes, Font Family, text and background colors, tables, etc.

    -

    It includes 15 plugins for TinyMCE that are automatically enabled or disabled depending on the buttons you have chosen.
    -In addition this plugin adds options for keeping the paragraph tags in text mode and importing the CSS classes from the theme’s editor-style.css.

    -

    Some of the features added by this plugin

    -
      -
    • “Classic Paragraph” block that can be used instead of or together with the standard Paragraph block.
    • -
    • An option to set the Classic Paragraph or Classic block as the default block in the block editor.
    • -
    • Supports converting of most default blocks to classic paragraphs, and from classic paragraphs back to the default blocks.
    • -
    • Support for creating and editing tables in the Classic blocks and the classic editor.
    • -
    • More options when inserting lists in the Classic blocks and the classic editor.
    • -
    • Search and Replace in the Classic blocks and the classic editor.
    • -
    • Ability to set Font Family and Font Sizes in the Classic blocks and the classic editor.
    • -
    • And many others.
    • -
    -

    Privacy

    -

    Advanced Editor Tools does not collect or store any user related data. It does not set cookies, and it does not connect to any third-party websites. It only uses functionality that is available in WordPress, and in the TinyMCE editor.

    -

    In that terms Advanced Editor Tools does not affect your website’s user privacy in any way.

    -', '5.9.2', 'Andrew Ozz', '5.9', '5.6', '6.8.3', 'https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.2.zip', '2007-06-22 00:00:00+00', '2025-05-02 21:34:00+00', 'https://profiles.wordpress.org/azaozz/', 90, 350, 3, 0, 2000000, 34928077, 'https://wordpress.org/plugins/tinymce-advanced/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/tinymce-advanced/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Advanced Editor Tools", "slug": "tinymce-advanced", "tags": {"editor": "editor", "gutenberg": "gutenberg", "formatting": "formatting", "block-editor": "block-editor", "classic-editor": "classic editor"}, "added": "2007-06-22", "icons": {"1x": "https://ps.w.org/tinymce-advanced/assets/icon-128x128.png?rev=971511", "2x": "https://ps.w.org/tinymce-advanced/assets/icon-256x256.png?rev=971511"}, "author": "Andrew Ozz", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/tinymce-advanced/assets/banner-772x250.png?rev=2390186", "high": "https://ps.w.org/tinymce-advanced/assets/banner-1544x500.png?rev=2390186"}, "ratings": {"1": 28, "2": 3, "3": 10, "4": 25, "5": 284}, "version": "5.9.2", "homepage": "https://wordpress.org/plugins/tinymce-advanced/", "requires": "5.9", "sections": {"faq": "\n
    \nI see an error like: “Failed to load plugin from url…”\n\n

    \n

    These errors are usually caused by the file in question being blocked by some security setting on the server, or (rarely) by caching issues or wrong permissions.

    \n

    The first step to debug this is to try to access the file directly in the browser (i.e. copy the URL and paste in the browser and press Enter).

    \n

    If you see the file (that’s usually minified JS, so it is all on one line) chances are it was some sort of caching issue that is now resolved. Try using the editor again.

    \n

    If you see an HTTP error (like 403 or 500) best would be to contact your web hosting company for help. In some cases deleting and re-installing the plugin may help.

    \n

    \n
    \nTables look different (inline styles are missing) when I insert a table\n\n

    \n

    Please see the new (as of version 5.2.0) advanced settings for tables. It is possible to disable use of inline styles for tables but that would make the table non-resizable in the editor. If the advanced tabs on the table, row, and column dialogs are enabled (default), it will still be possible to enter width and height values which are set as inline styles.

    \n

    \n
    \nNo styles are imported in the Formats sub-menu\n\n

    \n

    These styles are imported from your current theme editor-style.css file. However some themes do not have this functionality. For these themes Advanced Editor Tools has the option to let you add a customized editor-style.css and import it into the editor.

    \n

    \n
    \nI have just installed this plugin, but it does not do anything\n\n

    \n

    Change some buttons on one of the toolbars, save your changes, clear your browser cache, and try again. If that does not work try reloading the Edit page several times while holding down Shift. There may also be a network cache somewhere between you and your host. You may need to wait for a few hours until this cache expires.

    \n

    \n
    \nWhen I add “Smilies”, they do not show in the editor\n\n

    \n

    The “Emoticons” button in TinyMCE adds the codes for the smilies. The actual images are added by WordPress when viewing the Post. Make sure the checkbox “Convert emoticons to graphics on display” in “Options – Writing” is checked.

    \n

    \n
    \nThe plugin does not add any buttons\n\n

    \n

    Make sure the “Disable the visual editor when writing” checkbox under “Users – Your Profile” is not checked.

    \n

    \n
    \nI still see the “old” buttons in the editor\n\n

    \n

    Re-save the settings or click the “Restore Default Settings” button on the plugin settings page and then set the buttons again and save.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Destroys your editing of website when deactivated.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gpotter on September 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Do not use this plugin. It create a sister paragraph and insert all your content in there. If the it is deactivated, all the content in their container (which they automatically integrate into every page) becomes uneditable - however still viewable to the public. You will have to manually change them all but I''m going to create a workaround.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Quick Take: Advanced Editor Tools - Your Gutenberg Safety Net

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Avir Media (avirmedia) on June 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hey! So I only see one plugin here - Advanced Editor Tools (formerly TinyMCE Advanced). It''s pretty solid if you''re not ready to fully embrace Gutenberg yet. The \"Classic Paragraph\" block is clever - lets you use the old familiar editor within the new one. Great for folks transitioning or with older plugins that don''t play nice with blocks. The table tools and formatting options are handy too. Worth a try if you miss the classic editor!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Helpful Tools

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kiyasugreen.com (kiyasu) on May 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like the added features that comes from this plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tkoc on April 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does exactly what it says on the box.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Time saver!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Matt Rock (mattrock1) on February 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Needed a way to remove some steps clearing formatting. Specifically, span tags in posts. This plugin does exactly what I need it to. Great addition to my Gutenburg toolbar.

    \n\n\n\n

    Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Best Classic Editor Plugin!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Josh Journey (ljosh) on December 16, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Lots of great options for customizing the classic editor and bringing in features I didn''t have before Gutenberg in TinyMCE. Works on the frontend too which is a great treat. It makes for a very enjoyable WP experience.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very handy plugin, indeed!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nealumphred on November 30, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I use the Classic Editor along with the Advanced Editor Tools plugin, which allows me to eliminate redundant editing options in the editor.

    \n\n\n\n

    Very handy plugin, indeed!

    \n\n\n\n

    \n\n\n\n

    Keep on keepin'' on! ...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    very handy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy datto510 on November 11, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    handy little plugin if you need extra ways to improve how your written content looks

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Gives me more control than block editor

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aaronlkh on September 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    While the simplicity of block editor is appealing, it just doesn''t give me the level of text formatting control that I''m used to from a word processor. This plug in brings back some word processor formatting functions without disabling Gutenberg. A little buggy at times but can''t write without it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useless plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sushil kumar (sushiltechvision) on July 19, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very useless plugin, updating posts becomes very complicated when used

    \n
    \n
    \n", "changelog": "

    5.9.2

    \n
      \n
    • Fixed a typo in the plugin header version string.
    • \n
    \n

    5.9.1

    \n
      \n
    • Fixed a warning in PHP 8.0 and never.
    • \n
    \n

    5.9.0

    \n
      \n
    • Updated for WordPress 5.9 and newer.
    • \n
    • Removed the Inline text color and Inline text background color side-panels as this functionality is now available in the block editor.
    • \n
    • Removed the side-panel toolbar. The drop-down on the main rich-text toolbar serves the same purpose – to unclutter the toolbar.
    • \n
    • Fixed some small bugs and compatibility issues.
    • \n
    \n

    5.6.0

    \n
      \n
    • Updated for WordPress 5.6 and TinyMCE 4.9.11.
    • \n
    \n

    5.5.1

    \n
      \n
    • Renamed the plugin to Advanced Editor Tools to comply with trademark requirements.
    • \n
    \n

    5.5.0

    \n
      \n
    • Updated for WordPress 5.5 and TinyMCE 4.9.10.
    • \n
    • Updated/renamed the subscript and superscript buttons as these are now in Gutenberg.
    • \n
    • Minor CSS fixes and enhancements.
    • \n
    \n

    5.4.0

    \n
      \n
    • Updated for WordPress 5.4.
    • \n
    • Improved “Reset Table Size” to reset all table elements (tr, th, td, thead, tbody, tfoot).
    • \n
    • Improved “Remove Table Styling” to remove all current and deprecated styling attributes from all table elements.
    • \n
    \n

    5.3.0

    \n
      \n
    • Updated for WordPress 5.3 and TinyMCE 4.9.6.
    • \n
    \n

    5.2.1

    \n
      \n
    • Updated for WordPress 5.2.1 and TinyMCE 4.9.4.
    • \n
    • Fixed resetting of the advanced options on update when all were unselected.
    • \n
    • Fixed and improved keepig of paragraph tags in the Classic block.
    • \n
    \n

    5.2.0

    \n
      \n
    • Updated for WordPress 5.2.
    • \n
    • Updated the buttons settings for the block editor toolbar. There are a few new limitations there: most buttons are now hidden in a drop-down and the users are not allowed to arrange the buttons.
    • \n
    • Added a new advanced settings section for tables. Makes it possible to better configure how tables are edited and whether to disable use of inline CSS styles. Note that disabling inline styles would make the tables non-resizable in the editor.
    • \n
    • Removed the option to enable pasting of image sources in some browsers. It was not working correctly.
    • \n
    • Added a new option to always keep paragraph tags in the Classic Paragraph and Classic blocks in the block editor.
    • \n
    • Updated exporting and importing of the settings. Now settings are exported to a (downloaded) file, and can be restored by uploading a previously exported settings file.
    • \n
    • Improved the block editor Clear Formatting button. If some text is selected, it only clears the styling from that text. If no selection, all styling from the paragraph is cleared.
    • \n
    \n

    5.0.1

    \n
      \n
    • Fixed importing of backed-up settings.
    • \n
    • Updated the FAQ section in the readme.
    • \n
    \n

    5.0.0

    \n
      \n
    • Added several new buttons to the rich-text toolbar in the block editor.
    • \n
    • Added functionality to add, remove and arrange most buttons on the rich-text toolbar in the block editor.
    • \n
    • Added alternative location for buttons for the rich-text component. That lets users move buttons that are not used frequently out of the way.
    • \n
    • Added settings for selected text color and background color.
    • \n
    • Improved fixes and enhancements for the Classic block.
    • \n
    • Improved the Classic Paragraph block and added support for converting from most blocks to classic paragraphs, and converting a classic paragraph into separate blocks.
    • \n
    \n

    4.8.2

    \n
      \n
    • Fixes and improvements for 4.8.1.
    • \n
    • Added separate option to enable the Classic Paragraph block.
    • \n
    • Added converting of most default blocks to classic paragraphs, and from classic paragraphs to default blocks.
    • \n
    \n

    4.8.1

    \n
      \n
    • Updated for WordPress 5.0.
    • \n
    • Added Hybrid Mode for the block editor. Includes a Classic Paragraph block that replaces the default Paragraph block.
    • \n
    • Added option to replace the block editor with the classic editor.
    • \n
    • Added another settings section for configuring the toolbars in the Classic block and the Classic Paragraph block.
    • \n
    • Added some CSS fixed for the Classic block.
    • \n
    • Fixed (removed) setting of inline CSS for table cells when inserting a table. Inline CSS is still added when a table is resized by dragging.
    • \n
    \n

    4.8.0

    \n
      \n
    • Updated for WordPress 4.9.8 and TinyMCE 4.8.0.
    • \n
    \n

    4.7.13

    \n
      \n
    • Updated the table and anchor plugins to 4.7.13 (2018-05-16). Fixes a bug in the table plugin in Edge.
    • \n
    \n

    4.7.11

    \n
      \n
    • Updated for WordPress 4.9.6 and TinyMCE 4.7.11.
    • \n
    \n

    4.6.7

    \n
      \n
    • Fixed compatibility with Gutenberg freeform block.
    • \n
    • Forced refresh of the TinyMCE plugins after activation.
    • \n
    • Updated for WordPress 4.9 and TinyMCE 4.6.7.
    • \n
    \n

    4.6.3

    \n
      \n
    • Updated for WordPress 4.8 and TinyMCE 4.6.3.
    • \n
    \n

    4.5.6

    \n
      \n
    • Updated for WordPress 4.7.4 and TinyMCE 4.5.6.
    • \n
    • Fixed PHP notice after importing settings.
    • \n
    \n

    4.4.3

    \n
      \n
    • Updated for WordPress 4.7 and TinyMCE 4.4.3.
    • \n
    • Fixed missing “Source code” button bug.
    • \n
    \n

    4.4.1

    \n
      \n
    • Updated for WordPress 4.6 and TinyMCE 4.4.1.
    • \n
    • Fixed multisite saving bug.
    • \n
    • Added new button in the Text editor to add or reset the line breaks. Adds line breaks only between tags. Works only when it detects that line breaks are missing so it doesn’t reformat posts with removed paragraphs.
    • \n
    \n

    4.3.10.1

    \n
      \n
    • Fixed adding paragraph tags when loading posts that were saved before turning wpautop off.
    • \n
    • Disabled the (new) inline toolbar for tables as it was overlapping the table in some cases.
    • \n
    \n

    4.3.10

    \n
      \n
    • Updated for WordPress 4.5.1 and TinyMCE 4.3.10.
    • \n
    • Fixed support for adding editor-style.css to themes that don’t have it.
    • \n
    \n

    4.3.8

    \n
      \n
    • Updated for WordPress 4.5 and TinyMCE 4.3.8.
    • \n
    • Separated standard options and admin options.
    • \n
    • Added settings that can disable the plugin for the main editor, other editors in wp-admin or editors on the front-end.
    • \n
    • Korean translation by Josh Kim and Greek translation by Stathis Mellios.
    • \n
    \n

    4.2.8

    \n
      \n
    • Updated for WordPress 4.4 and TinyMCE 4.2.8.
    • \n
    • Japanese translation by Manabu Miwa.
    • \n
    \n

    4.2.5

    \n
      \n
    • Updated for WordPress 4.3.1 and TinyMCE 4.2.5.
    • \n
    • Fixed text domain and plugin headers.
    • \n
    \n

    4.2.3.1

    \n
      \n
    • Fix error with removing the textpattern plugin.
    • \n
    \n

    4.2.3

    \n
      \n
    • Updated for WordPress 4.3 and TinyMCE 4.2.3.
    • \n
    • Removed the textpattern plugin as WordPress 4.3 includes similar functionality by default.
    • \n
    • French translation by Nicolas Schneider.
    • \n
    \n

    4.1.9

    \n
      \n
    • Updated for WordPress 4.2 and TinyMCE 4.1.9.
    • \n
    • Fixed bugs with showing oEmbed previews when pasting an URL.
    • \n
    • Fixed bugs with getting the content from TinyMCE with line breaks.
    • \n
    \n

    4.1.7

    \n
      \n
    • Updated for WordPress 4.1 and TinyMCE 4.1.7.
    • \n
    • Fixed bug where consecutive caption shortcodes may be split with an empty paragraph tag.
    • \n
    \n

    4.1.1

    \n
      \n
    • Fix bug with image captions when wpautop is disabled.
    • \n
    • Add translation support to the settings page. Button names/descriptions are translated from JS using the existing WordPress translation, so this part of the settings page will be translated by default. The other text still needs separate translation.
    • \n
    \n

    4.1

    \n
      \n
    • Updated for WordPress 4.0 and TinyMCE 4.1.
    • \n
    • Add the textpattern plugin that supports some of the markdown syntax while typing, (more info).
    • \n
    • Add the updated ‘table’ plugin that supports background and border color.
    • \n
    \n

    4.0.2

    \n
      \n
    • Fix showing of the second, third and forth button rows when the Toolbar Toggle button is not used.
    • \n
    • Fix adding the directionality plugin when RTL or LTR button is selected.
    • \n
    • Show the ”Advanced Options” to super admins on multisite installs.
    • \n
    • Add the link plugin including link rel setting. Replaces the Insert/Edit Link dialog when enabled.
    • \n
    • Include updated ”table” plugin that has support for vertical align for cells.
    • \n
    \n

    4.0.1

    \n

    Fix warnings on pages other than Edit Post. Update the description.

    \n

    4.0

    \n

    Updated for WordPress 3.9 and TinyMCE 4.0. Refreshed the settings screen. Added support for exporting and importing of the settings.

    \n

    3.5.9.1

    \n

    Updated for WordPress 3.8, fixed auto-embedding of single line URLs when not removing paragraph tags.

    \n

    3.5.9

    \n

    Updated for WordPress 3.7 and TinyMCE 3.5.9.

    \n

    3.5.8

    \n

    Updated for WordPress 3.5 and TinyMCE 3.5.8.

    \n

    3.4.9

    \n

    Updated for WordPress 3.4 and TinyMCE 3.4.9.

    \n

    3.4.5.1

    \n

    Fixed a bug preventing TinyMCE from importing CSS classes from editor-style.css.

    \n

    3.4.5

    \n

    Updated for WordPress 3.3 or later and TinyMCE 3.4.5.

    \n

    3.4.2.1

    \n

    Fix the removal of the media plugin so it does not require re-saving the settings.

    \n

    3.4.2

    \n

    Compatibility with WordPress 3.2 and TinyMCE 3.4.2, removed the options for support for iframe and HTML 5.0 elements as they are supported by default in WordPress 3.2, removed the media plugin as it is included by default.

    \n

    3.3.9.1

    \n

    Added advanced options: stop removing iframes, stop removing HTML 5.0 elements, moved the support for custom editor styles to editor-style.css in the current theme.

    \n

    Attention: if you have a customized tadv-mce.css file and your theme doesn’t have editor-style.css, please download tadv-mce.css, rename it to editor-style.css and upload it to your current theme directory. Alternatively you can add there the editor-style.css from the Twenty Ten theme. If your theme has editor-style.css you can add any custom styles there.

    \n

    3.3.9

    \n

    Compatibility with WordPress 3.1 and TinyMCE 3.3.9, improved P and BR tags option.

    \n

    3.2.7

    \n

    Compatibility with WordPress 2.9 and TinyMCE 3.2.7, several minor bug fixes.

    \n

    3.2.4

    \n

    Compatibility with WordPress 2.8 and TinyMCE 3.2.4, minor bug fixes.

    \n

    3.2

    \n

    Compatibility with WordPress 2.7 and TinyMCE 3.2, minor bug fixes.

    \n

    3.1

    \n

    Compatibility with WordPress 2.6 and TinyMCE 3.1, keeps empty paragraphs when disabling the removal of P and BR tags, the buttons for MCImageManager and MCFileManager can be arranged (if installed).

    \n

    3.0.1

    \n

    Compatibility with WordPress 2.5.1 and TinyMCE 3.0.7, added option to disable the removal of P and BR tags when saving and in the HTML editor (wpautop), added two more buttons to the HTML editor: wpautop and undo, fixed the removal of non-default TinyMCE buttons.

    \n

    3.0

    \n

    Support for WordPress 2.5 and TinyMCE 3.0.

    \n

    2.2

    \n

    Deactivate/Uninstall option page, font size drop-down menu and other small changes.

    \n

    2.1

    \n

    Improved language selection, improved compatibility with WordPress 2.3 and TinyMCE 2.1.1.1, option to override some of the imported css classes and other small improvements and bugfixes.

    \n

    2.0

    \n

    Includes an admin page for arranging the TinyMCE toolbar buttons, easy installation, a lot of bugfixes, customized “Smilies” plugin that uses the built-in WordPress smilies, etc. The admin page uses jQuery and jQuery UI that lets you “drag and drop” the TinyMCE buttons to arrange your own toolbars and enables/disables the corresponding plugins depending on the used buttons.

    \n", "description": "

    Advanced Editor Tools (previously TinyMCE Advanced) introduces a “Classic Paragraph” block for the block editor (Gutenberg).
    \nIf you are not quite ready to switch to the block editor, or have plugins that cannot be used there (yet), using the Classic Paragraph block is your best option. It lets you to continue to use the familiar TinyMCE editor for most tasks, and at the same time gives you full access to all blocks and new features in the block editor.

    \n

    Version 5.5 continues to improve and enhance the new features introduced in version 5.0 of the plugin. It includes an improved “Clear Formatting” button, several advanced settings for tables, and importing and exporting of the settings to a file.

    \n

    If you want to continue to use the previous (“classic”) editor in WordPress 5.0 and newer, this plugin has an option to replace the new editor with the previous one. If you prefer to have access to both editors side by side or to allow your users to switch editors, it would be better to install the Classic Editor plugin. Advanced Editor Tools is fully compatible with the classic editor plugin and similar plugins that restore use of the previous WordPress editor.

    \n

    As always this plugin will let you add, remove and arrange the buttons that are shown on the Visual Editor toolbar in the Classic Paragraph and Classic blocks in the block editor, and in the classic editor (when enabled by a plugin). There you can configure up to four rows of buttons including Font Sizes, Font Family, text and background colors, tables, etc.

    \n

    It includes 15 plugins for TinyMCE that are automatically enabled or disabled depending on the buttons you have chosen.
    \nIn addition this plugin adds options for keeping the paragraph tags in text mode and importing the CSS classes from the theme’s editor-style.css.

    \n

    Some of the features added by this plugin

    \n
      \n
    • “Classic Paragraph” block that can be used instead of or together with the standard Paragraph block.
    • \n
    • An option to set the Classic Paragraph or Classic block as the default block in the block editor.
    • \n
    • Supports converting of most default blocks to classic paragraphs, and from classic paragraphs back to the default blocks.
    • \n
    • Support for creating and editing tables in the Classic blocks and the classic editor.
    • \n
    • More options when inserting lists in the Classic blocks and the classic editor.
    • \n
    • Search and Replace in the Classic blocks and the classic editor.
    • \n
    • Ability to set Font Family and Font Sizes in the Classic blocks and the classic editor.
    • \n
    • And many others.
    • \n
    \n

    Privacy

    \n

    Advanced Editor Tools does not collect or store any user related data. It does not set cookies, and it does not connect to any third-party websites. It only uses functionality that is available in WordPress, and in the TinyMCE editor.

    \n

    In that terms Advanced Editor Tools does not affect your website’s user privacy in any way.

    \n", "screenshots": "
    1. \"Rich-text

      Rich-text toolbar.

    2. \"Rich-text

      Rich-text toolbar and extra formatting buttons in the Inspector (sidebar).

    3. \"Many

      Many of the buttons can be moved to the Formatting section in the Inspector.

    4. \"Converting

      Converting the content of the Classic Paragraph block into separate blocks.

    5. \"Converting

      Converting several paragraph blocks into a Classic Paragraph block.

    6. \"Settings

      Settings for the Rich-text toolbar and the optional Formatting section in the Inspector.

    7. \"Settings

      Settings for the toolbars in Classic Paragraph and Classic blocks.

    8. \"Additional

      Additional options.

    9. \"Advanced

      Advanced options for tables.

    ", "installation": "

    If manual installation is required, please make sure that the plugin files are in a folder named “tinymce-advanced” (not two nested folders) in the WordPress plugins folder, usually “wp-content/plugins”.

    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.1.0.zip", "2.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.2.0.zip", "2.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.2.2.zip", "3.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.2.zip", "4.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.1.zip", "5.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.2.zip", "5.3": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.3.zip", "1.0.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.1.0.1.zip", "3.0.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.0.1.zip", "3.2.4": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.2.4.zip", "3.2.7": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.2.7.zip", "3.3.9": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.3.9.zip", "3.4.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.4.2.zip", "3.4.5": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.4.5.zip", "3.4.9": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.4.9.zip", "3.5.8": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.5.8.zip", "3.5.9": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.5.9.zip", "4.0.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.0.2.zip", "4.1.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.1.1.zip", "4.1.7": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.1.7.zip", "4.1.9": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.1.9.zip", "4.2.3": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.2.3.zip", "4.2.5": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.2.5.zip", "4.2.8": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.2.8.zip", "4.3.8": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.3.8.zip", "4.4.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.4.1.zip", "4.4.3": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.4.3.zip", "4.5.6": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.5.6.zip", "4.6.3": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.6.3.zip", "4.6.7": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.6.7.zip", "4.8.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.8.2.zip", "5.0.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.0.1.zip", "5.1.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.1.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.2.1.zip", "5.4.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.4.0.zip", "5.5.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.5.1.zip", "5.6.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.6.0.zip", "5.9.0": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/tinymce-advanced.zip", "4.3.10": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.3.10.zip", "4.7.11": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.7.11.zip", "3.3.9.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.3.9.1.zip", "3.3.9.2": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.3.9.2.zip", "3.4.2.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.4.2.1.zip", "3.4.5.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.4.5.1.zip", "3.5.9.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.3.5.9.1.zip", "4.2.3.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.2.3.1.zip", "4.3.10.1": "https://downloads.wordpress.org/plugin/tinymce-advanced.4.3.10.1.zip"}, "downloaded": 34928077, "description": "

    Advanced Editor Tools (previously TinyMCE Advanced) introduces a “Classic Paragraph” block for the block editor (Gutenberg).
    \nIf you are not quite ready to switch to the block editor, or have plugins that cannot be used there (yet), using the Classic Paragraph block is your best option. It lets you to continue to use the familiar TinyMCE editor for most tasks, and at the same time gives you full access to all blocks and new features in the block editor.

    \n

    Version 5.5 continues to improve and enhance the new features introduced in version 5.0 of the plugin. It includes an improved “Clear Formatting” button, several advanced settings for tables, and importing and exporting of the settings to a file.

    \n

    If you want to continue to use the previous (“classic”) editor in WordPress 5.0 and newer, this plugin has an option to replace the new editor with the previous one. If you prefer to have access to both editors side by side or to allow your users to switch editors, it would be better to install the Classic Editor plugin. Advanced Editor Tools is fully compatible with the classic editor plugin and similar plugins that restore use of the previous WordPress editor.

    \n

    As always this plugin will let you add, remove and arrange the buttons that are shown on the Visual Editor toolbar in the Classic Paragraph and Classic blocks in the block editor, and in the classic editor (when enabled by a plugin). There you can configure up to four rows of buttons including Font Sizes, Font Family, text and background colors, tables, etc.

    \n

    It includes 15 plugins for TinyMCE that are automatically enabled or disabled depending on the buttons you have chosen.
    \nIn addition this plugin adds options for keeping the paragraph tags in text mode and importing the CSS classes from the theme’s editor-style.css.

    \n

    Some of the features added by this plugin

    \n
      \n
    • “Classic Paragraph” block that can be used instead of or together with the standard Paragraph block.
    • \n
    • An option to set the Classic Paragraph or Classic block as the default block in the block editor.
    • \n
    • Supports converting of most default blocks to classic paragraphs, and from classic paragraphs back to the default blocks.
    • \n
    • Support for creating and editing tables in the Classic blocks and the classic editor.
    • \n
    • More options when inserting lists in the Classic blocks and the classic editor.
    • \n
    • Search and Replace in the Classic blocks and the classic editor.
    • \n
    • Ability to set Font Family and Font Sizes in the Classic blocks and the classic editor.
    • \n
    • And many others.
    • \n
    \n

    Privacy

    \n

    Advanced Editor Tools does not collect or store any user related data. It does not set cookies, and it does not connect to any third-party websites. It only uses functionality that is available in WordPress, and in the TinyMCE editor.

    \n

    In that terms Advanced Editor Tools does not affect your website’s user privacy in any way.

    \n", "donate_link": "", "num_ratings": 350, "screenshots": {"1": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-1.jpg?rev=2390186", "caption": "Rich-text toolbar."}, "2": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-2.jpg?rev=2390186", "caption": "Rich-text toolbar and extra formatting buttons in the Inspector (sidebar)."}, "3": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-3.jpg?rev=2390186", "caption": "Many of the buttons can be moved to the Formatting section in the Inspector."}, "4": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-4.jpg?rev=2390186", "caption": "Converting the content of the Classic Paragraph block into separate blocks."}, "5": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-5.jpg?rev=2390186", "caption": "Converting several paragraph blocks into a Classic Paragraph block."}, "6": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-6.jpg?rev=2390186", "caption": "Settings for the Rich-text toolbar and the optional Formatting section in the Inspector."}, "7": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-7.jpg?rev=2390186", "caption": "Settings for the toolbars in Classic Paragraph and Classic blocks."}, "8": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-8.jpg?rev=2390186", "caption": "Additional options."}, "9": {"src": "https://ps.w.org/tinymce-advanced/assets/screenshot-9.jpg?rev=2390186", "caption": "Advanced options for tables."}}, "support_url": "https://wordpress.org/support/plugin/tinymce-advanced/", "contributors": {"azaozz": {"avatar": "https://secure.gravatar.com/avatar/73c1045212929211deda7262005831319397c68d340a8c41d53633b3f7e7f129?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/azaozz/", "display_name": "Andrew Ozz"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}}, "last_updated": "2025-05-02 9:34pm GMT", "preview_link": "", "requires_php": "5.6", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.2.zip", "author_profile": "https://profiles.wordpress.org/azaozz/", "business_model": false, "repository_url": "", "upgrade_notice": {"5.2.0": "

    Another large upgrade. Includes advanced options for tables, updated import and export of settings, and further improvements for the block editor.

    "}, "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-fbab-7034-a30d-4eee7d019dcb", "name": "Advanced Editor Tools", "slug": "tinymce-advanced", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1746221640, "version": "5.9.2"}, "support_threads": 3, "requires_plugins": [], "short_description": "Extends and enhances the block editor (Gutenberg) and the classic editor (TinyMCE).", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-6730-7165-b0b5-78f70809cbc6', 'ultimate-addons-for-gutenberg', 'Spectra Gutenberg Blocks – Website Builder for the Block Editor', 'Power-up Gutenberg with advanced blocks for faster website creation. Build your WordPress website effortlessly using powerful building blocks!', '

    SPECTRA WEBSITE BUILDER – BEST GUTENBERG BLOCKS PLUGIN TO EXTEND THE WORDPRESS BLOCK EDITOR WITH PAGE EDITING FEATURES, 30+ FREE CUSTOMIZABLE BLOCKS, COMING SOON MODE, POPUP BUILDER

    -

    ★★★★★

    - -

    Most helpful links

    - -

    DESIGN BEAUTIFUL FAST LOADING WEBSITES DIRECTLY ON THE WORDPRESS BLOCK EDITOR (GUTENBERG EDITOR) WITHOUT CODING

    -

    Try the live demo of Spectra

    -

    Our mission is to empower web designers like you with an end-to-end solution for building stunning websites.

    -

    We aim to simplify the website creation process by providing a versatile toolkit within a single plugin, eliminating the need to install multiple plugins for various functionalities.

    -

    With Spectra, we strive to make it extremely easy to use for beginners and feature-rich for experienced designers.

    -

    Spectra equips designers with a wide range of pre-designed website templates, allowing them to effortlessly create professional websites tailored to their unique requirements.

    -

    Beyond just aesthetics, we are committed to optimizing website performance. Spectra offers efficient code and performance-focused features, ensuring that the websites built with our plugin are not only visually appealing but also deliver exceptional speed and smooth functionality.

    -

    By providing an all-in-one solution for building websites, we aim to streamline their workflow and enhance their productivity. We continuously innovate and improve Spectra, integrating cutting-edge technologies and staying ahead of the evolving web design landscape. We empower our users to build websites that captivate, engage, and impress their clients or themselves.

    -

    HERE’S THE IMPORTANT THING ⭐

    -

    Finally, a website builder which allows you to design beautiful and professional-looking websites using the power of the default block editor of WordPress.

    -

    With utmost attention, the developers have ensured that Spectra is easy to use and provides everything you need to design a fully functional website.

    -

    Guess what! 🤩
    -Users of page builders like Elementor and Beaver Builder absolutely LOVE Spectra because of 3 reasons –

    -
      -
    • The code of Spectra is extremely optimized for performance and speed
    • -
    • Spectra designs and features make you look like an expert web designer
    • -
    • There’s zero learning curve as Spectra works on top of the default WordPress block editor.
    • -
    -

    Introducing Spectra – the ultimate solution to revolutionize your web design experience.

    -

    With Spectra, you can power up the block editor with advanced and powerful blocks that simplify the entire process. Say goodbye to the hassle of coding and say hello to effortless website creation.

    -

    Spectra provides a wide range of unique and creative blocks on top of the default WordPress page editor, enabling you to build and design pages or posts without writing a single line of code.

    -

    It offers an easy-to-use interface, customization options, and a library of pre-built website templates to help you build awesome websites in minutes.

    -

    Whether you need to launch an online store or promote your services, Spectra empowers you to build pixel-perfect websites that captivate your audience.

    -

    Don’t let coding complexities hold you back – unlock the potential of block editor with Spectra and build faster, better-performing websites today!

    -

    SOME POWERFUL FEATURES OF SPECTRA 💪

    -
      -
    1. Layouts – Easily move, resize, and hide different sections, rows, columns, and blocks using convenient layout navigation to make your page designing process faster.
    2. -
    3. Designs powered by Starter Templates – Thinking about switching from Elementor templates to a more performance-friendly alternative? Spectra gives you the same level of design flexibility – without the bloat. Spectra offers hundreds of designs to choose from.
    4. -
    5. Wireframes – Before diving into the design process, it’s crucial to create a structure for your website. With Spectra’s Wireframe Blocks, you can quickly create page or website mockups, improving work efficiency and saving time.
    6. -
    7. Block patterns – Import and customize pre-designed block patterns for various sections on your website. Spectra provides a collection of these patterns that can be easily tailored to your preferences.
    8. -
    9. Advanced block presets – Not sure how to design blocks optimally? No worries! Our team of expert designers has created highly converting and visually appealing presets for you to use.
    10. -
    11. Spectra Copy Paste – If you’ve customized a block with specific fonts, colors, spacings, borders, shadows, and animations, you can effortlessly replicate the same design on another block using Spectra Copy Paste feature.
    12. -
    13. Container – Create stunning layouts using the Container block, powered by flexbox technology.
    14. -
    15. Global styling support – Spectra allows you to set the default content width for your website with just a single click. You can also inherit button styles from your theme, maintain consistent container padding throughout your site, and set a default gap between rows and columns.
    16. -
    17. Popup Builder – Grab your audience’s attention or share important notices by designing beautiful popups using our intuitive popup builder.
    18. -
    19. Coming soon mode – Is your website still under construction? Not ready for public viewing yet? Enable the coming soon mode, and only the selected page will be visible to those not logged in.
    20. -
    21. Animations – Add a touch of life and interactivity to your website with Spectra’s wide range of animations. Choose from fade, slide, zoom, flip, zoom in, zoom out, and more. Free users have access to a selection of animations that can be easily applied to any block.
    22. -
    23. Load Google Fonts locally – Optimize your website’s speed and ensure GDPR compliance by enabling this option to download and save Google fonts on your server.
    24. -
    -

    INCLUDES 30+ ESSENTIAL BLOCKS 🔥

    -
      -
    1. Core Blocks – Spectra offers essential blocks that every website and landing page needs. You’ll find blocks like Container, Heading, Image, Icon, Buttons, Info Box, Call To Action, and Countdown, which are crucial for crafting your pages.
    2. -
    3. Creative Blocks – Unleash your creativity with Spectra’s creative blocks. These include Star Ratings, Countdown, Marketing Button, Icon List, Image Gallery, and even support for Lottie Animations. Let your imagination run wild and make your designs truly stand out.
    4. -
    5. Content Blocks – Showcase your content beautifully with Spectra’s content blocks. From Sliders and Image blocks to Content Timelines, Google Maps, Inline Notices, Tabs, Taxonomy Lists, Price Lists, and more, these blocks offer diverse options to present your content in an engaging manner. And if you’re using Spectra Pro, you’ll even have access to the powerful Loop Builder.
    6. -
    7. Post Blocks – Enhance your blog posts with Spectra’s Post Blocks. Add a Counter, Modal Popup, Post Carousel, Post Grid, or Post Timeline to make your blog visually appealing and user-friendly.
    8. -
    9. Social Blocks – Spectra provides blocks that help you showcase your social status. You’ll find blocks like Instagram Feed, Blockquote, Social Share, Team, and Testimonials, which allow you to highlight social proof and engage with your audience effectively.
    10. -
    11. Form Blocks – Create interactive forms easily with Spectra’s Form Blocks. Whether it’s a contact form, newsletter signup, or suggestion form, you can collect valuable leads. You can even enable reCAPTCHA to ensure form security. With Spectra Pro, you can even enable user registration or login forms.
    12. -
    13. SEO Blocks – Boost your website’s search engine optimization with Spectra’s SEO Blocks. These blocks, such as FAQ, How-To, Review, and Table of Contents, are designed to improve your site’s visibility and enhance the user experience.
    14. -
    15. Dynamic Content – Take control of your website’s archive feed with Spectra’s Dynamic Content blocks. You can customize the feed based on dynamic parameters like date, name, category, page, posts, and more, giving you flexibility and customization options.
    16. -
    -

    WHO CAN BENEFIT FROM SPECTRA? 📈

    -
      -
    • Web designers – Want to enhance your website-building process without getting stuck in coding? Spectra’s got your back! With its advanced blocks, you can create stunning layouts and customize elements like a pro, all without writing a single line of code.
    • -
    • Small business owners – Building a professional website for your business just got easier with Spectra. Choose from the pre-built WordPress Templates and customize them to match your branding and content. Say goodbye to costly web development and hello to a beautiful online presence.
    • -
    • Bloggers – Spice up your blog posts with Spectra’s eye-catching elements. Add images, engaging call-to-actions, content timelines, and social sharing blocks to make your content pop. It’s time to captivate your readers and take your blog to the next level.
    • -
    • SEO Specialists – Spectra has schema markup blocks like FAQ, How-To, Review, and Table of Content to boost your website rankings and improve search engine representation. Plus, its lightweight and optimized code ensures your site performs at its best. Get ready to conquer the search results!
    • -
    • eCommerce store owners – Spectra helps you create visually stunning product listings, showcase star ratings and reviews, and display pricing information that will make your customers click that “buy” button. Get ready to take your online store to new heights.
    • -
    • Marketers – Spectra is your secret weapon for creating effective landing pages and promotional materials. Use attention-grabbing blocks like call-to-actions, marketing buttons, and testimonials to drive conversions and engage your target audience. Your campaigns just got a whole lot better.
    • -
    • Freelancers – We’ve got something special for you! Streamline your workflow and save time with Spectra. Quickly build websites for your clients using the pre-built website templates and customize them to meet their requirements. It’s the ultimate toolkit for freelancers.
    • -
    • Podcasters and YouTubers – With Spectra, you can enhance your website or blog with ease. Add a podcast player, embed videos, showcase a content timeline, and create engaging content using the various blocks offered. Let your creativity flow and captivate your audience.
    • -
    • Non-profit organizations – Create visually appealing websites to showcase your cause, share inspiring success stories, and collect donations. Spectra’s image blocks, forms, testimonials, and social sharing options will help you engage your audience and promote your mission effectively.
    • -
    • Restaurant owners – Spectra’s ready-to-use Starter Templates cater specifically to restaurants. Show off your menus, feature customer testimonials, and even integrate a reservation form using the forms block. It’s the secret ingredient to a mouth-watering online presence.
    • -
    • Beginner WordPress users – Spectra’s user-friendly interface, pre-designed WordPress Templates, and comprehensive tutorials make website creation a breeze. No coding skills are needed! You can create professional-looking websites and amaze everyone with your online presence.
    • -
    -

    Anyone thinking of moving away from traditional page builders like Elementor and Divi Builder in favor of WordPress Block Editor (also known as Gutenberg) for a better page-building experience without the need for traditional page builders like Elementor and Divi.

    -

    SOME OF THE WORDPRESS THEMES & PLUGINS SPECTRA SUPPORTS 🔗

    -

    Spectra works with any theme, including:

    -
      -
    • Spectra One
    • -
    • Astra
    • -
    • Blocksy
    • -
    • Flatsome
    • -
    • GeneratePress
    • -
    • Hestia
    • -
    • Kadence
    • -
    • Neve
    • -
    -

    Spectra is compatible with all plugins, including:

    -
      -
    • Easy Digital Downloads
    • -
    • FluentCRM
    • -
    • FluentForm
    • -
    • GiveWP
    • -
    • Gravity Forms
    • -
    • LearnDash
    • -
    • LifterLMS
    • -
    • MemberPress
    • -
    • PrestoPlayer
    • -
    • Restrict Content Pro
    • -
    • SureCart
    • -
    • SureMembers
    • -
    • The Events Calendar
    • -
    • TutorLMS
    • -
    • Wishlist Member
    • -
    • WooCommerce
    • -
    • Yoast SEO
    • -
    • And many more
    • -
    -

    Note: Spectra does not offer Elementor Templates.

    -

    SUPPORT THAT CARES! ⛑️

    -

    We understand the need for a quality product backed by dedicated support that cares. We are here to listen to all your queries and help you make the most out of our plugin.

    -

    Need help? We are just a click away!

    -

    CONNECT WITH OUR TEAM AND COMMUNITY 🌐

    - -

    WANT TO CONTRIBUTE TO THE PLUGIN? 🙋

    -

    You may now contribute to the plugin on Github: Spectra on Github

    -

    Credits

    -

    Our external packages use Rating Star Component that are distributed under the terms of the ISC. While Slick, Lottie and Striptags is distributed under the terms of the MIT. Additionally, we incorporate FontAwesome v6 under the CC BY 4.0 License, and dnd kit licensed under the MIT License.

    -', '2.19.15', 'Brainstorm Force', '5.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.15.zip', '2018-06-13 00:00:00+00', '2025-10-03 06:23:00+00', 'https://profiles.wordpress.org/brainstormforce/', 94, 1796, 17, 13, 1000000, 36655144, 'https://www.brainstormforce.com', 'https://www.paypal.me/BrainstormForce', NULL, NULL, 'https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Spectra Gutenberg Blocks – Website Builder for the Block Editor", "slug": "ultimate-addons-for-gutenberg", "tags": {"block": "block", "blocks": "blocks", "editor": "editor", "gutenberg": "gutenberg", "gutenberg-blocks": "gutenberg blocks"}, "added": "2018-06-13", "icons": {"1x": "https://ps.w.org/ultimate-addons-for-gutenberg/assets/icon-128x128.gif?rev=3240412", "2x": "https://ps.w.org/ultimate-addons-for-gutenberg/assets/icon-256x256.gif?rev=3240412"}, "author": "Brainstorm Force", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/ultimate-addons-for-gutenberg/assets/banner-772x250.jpg?rev=3166947", "high": "https://ps.w.org/ultimate-addons-for-gutenberg/assets/banner-1544x500.jpg?rev=3166947"}, "ratings": {"1": 96, "2": 20, "3": 24, "4": 67, "5": 1589}, "version": "2.19.15", "homepage": "https://www.brainstormforce.com", "requires": "5.6", "sections": {"faq": "\n
    \nWho should use the Spectra?\n\n

    \n

    The Spectra is a complete package of unique and creative blocks that help build beautiful pages and posts on a website. Therefore, it is certainly an asset for all those who love Gutenberg.

    \n

    \n
    \nWhat are the requirements to use the Spectra?\n\n

    \n

    You only need to have the latest version of WordPress on your website, to begin with. The Spectra is basically an addon for the default WordPress editor. Therefore, the latest WordPress installation along with a theme should be enough, to begin with.

    \n

    \n
    \nWhat themes does the Spectra work with?\n\n

    \n

    The Spectra is built to work great with all the themes. But, Astra being among the first ones to be Gutenberg ready, we recommend you to try using Astra since it is lightweight, fast, simple and comes with a lot of options.

    \n

    \n
    \nCan I use the Spectra even while having another Page Builder?\n\n

    \n

    The basic need of the Spectra is the latest WordPress version. We have also made it compatible with all major page builders and therefore, it won’t interfere in their working. Should you need help, you can get in touch with us.

    \n

    \n
    \nCan I use the Spectra on client websites?\n\n

    \n

    Yes! You can certainly use the Spectra on yours as well as your client’s websites.

    \n

    \n
    \nWill the Spectra slow down my website?\n\n

    \n

    Absolutely no! The Spectra is built with ease and performance in mind. Its module architecture and the clean code keep it lightweight and fast. Therefore, it will not affect your website speed and performance in any way.

    \n

    \n
    \nWhat more do I get with the Spectra?\n\n

    \n

    When you use the Spectra along with the free Astra theme, you get a huge library of ready-to-use starter sites that can be imported and used to build your own. Read an article about the Starter Sites with Gutenberg to know more.

    \n

    \n
    \nHow can I report a security bug?\n\n

    \n

    We take plugin security extremely seriously. If you discover a security vulnerability, please report it in a safe and responsible manner.

    \n

    You can report the issue through our Bug Bounty Program.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Muy escondido para actualizar a pro

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy herga on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    He comprado la versión pro completa pero no encuentro actualizar producto a pro, siempre me lleva a pasarela de venta y estoy cansado de tanto buscar. Nio la IA os encuentra. Si no encuentro como actualizar, lamentablemente tendré que disentir los intentos y devolverlo por PayPal. Espero me ayuden y pueda instalarlos. Saludos

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and perfect customer support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy newbusinessvision on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am a \"free\" user of [Spectra Gutenberg Blocks – Website Builder for the Block Editor] - and yet the support helped me very quickly after writing a ticket over the Support Website.
    I am very grateful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Update damages the site but not fixed for 3 months

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Alona Gomez (alonagomez) on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Since releasing version 2.19.11 last July 15, the Image in the slider do not show in the Tablet and Mobile views. I rollback to version 2.19.10 to make it work. This issue was verified by Support in version 2.19.11.

    \n\n\n\n

    Support promised to fix this issue in the next update, but after 3 months and 4 updates, it was not fixed on the latest update. Please fix it immediately, so that we can use the latest version. 

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and efficient support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cybereve on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been using Spectra for many years without any problems. Yesterday, after a mistake on my part, I ran into an issue. I contacted support, and they immediately provided the right solution to restore a stable environment. I really appreciate. thx

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support, beautiful website

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy brntbltz on September 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Spectra is a great plugin. It helped me put together a professional looking site quickly. The support team has been responsive and very helpful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I can't disable the plugin to remove it

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pixer on September 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    the disable button doesn''t work for this plugin.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Error lastest version

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bất động sản kiên giang (batdongsankiengiang) on September 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My website encountered an error after updating to the latest version. I hope the technical team can release a new update to fix the issue

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent and fast support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy indigozeta on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I would like to thank the Spectra team for their quick and helpful support. Thanks to the clear video tutorial, I was able to solve my problem easily even as a rather inexperienced user.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and efficient

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sashimi on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I had an issue with the Spectra plugin, and the support team helped me immediately, detecting and fixing the error on the spot.
    I''m impressed.

    \n\n\n\n

    Sasha

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A must have

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy psychflex on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The Spectra One theme and Spectra plugin are must-haves for full site editing, allowing you to easily create templates and assign them to different pages, among other things. Additionally, the support is excellent, assisting every step of the way in resolving issues that inevitably arise with any WordPress website.

    \n
    \n
    \n", "changelog": "

    2.19.15 – Friday, 3rd October 2025

    \n
      \n
    • This update addressed a security bug. Props to Wordfence for reporting it responsibly to our team.
      \nPlease make sure you are using the latest version on your website.
    • \n
    \n

    2.19.14 – Wednesday, 17th September 2025

    \n
      \n
    • Fix: Removed unused dependencies from the Block Stats Processor.
    • \n
    \n

    2.19.13 – Wednesday, 17th September 2025

    \n
      \n
    • Improvement: Popup Builder – Improved popup creation through REST with role flexibility.
    • \n
    \n

    2.19.12 – Wednesday, 3rd September 2025

    \n
      \n
    • Improvement: Info Box – Alignment options now hide smartly based on icon/image settings.
    • \n
    • Fix: Post – Corrected behavior where invalid pagination on single posts prevented expected redirects.
    • \n
    • Fix: Global – Resolved a conflict where editor upsell assets were interfering with the SureCart price selector block.
    • \n
    \n

    2.19.11 – Tuesday, 15th July 2025

    \n
      \n
    • Fix: Buttons – Resolved an issue wherein the gap between buttons would not work as intended for mobile.
    • \n
    • Fix: Container – Resolved an issue wherein the advanced gradient locations 1 & 2 would not be applied on mobile & tablet.
    • \n
    \n

    2.19.10 – Tuesday, 17th June 2025

    \n
      \n
    • Updated the Zip AI Library.
    • \n
    \n

    2.19.9 – Thursday, 1st May 2025

    \n
      \n
    • Improvement: Added a WP-CLI command for regenerate the assets.
    • \n
    \n

    2.19.8 – Monday, 28th April 2025

    \n
      \n
    • Fix: Container – Resolved an issue where dynamic content fallback images were not being properly applied in the frontend.
    • \n
    • Fix: File Generation documentation link now redirects correctly instead of showing a 404 error.
    • \n
    \n

    2.19.7 – Wednesdays, 16th April 2025

    \n
      \n
    • Improvement: Added compatibility with WordPress v6.8.
    • \n
    • Fix: Tabs – Resolved an issue where the tabs block headers, was not translatable.
    • \n
    • Global: Removed the Spectra banner from the editor based on user feedback to provide a cleaner editing experience.
    • \n
    \n

    2.19.6 – Thursday, 10th April 2025

    \n
      \n
    • Updated the Zip AI Library.
    • \n
    \n

    2.19.5 – Monday, 31st March 2025

    \n
      \n
    • Improvement: Improved code quality.
    • \n
    • Fix: Image Gallery – Resolved an issue wherein lightbox functionality was broken when Imagify’s Next-Gen format option enabled.
    • \n
    • Fix: Global – Optimized block ID processing logic to prevent Allowed memory size errors when nesting patterns.
    • \n
    • Fix: Global – Resolved an issue where custom CSS for background images was not applying correctly on the frontend.
    • \n
    • Fix: Global – Resolved an issue wherein assets were not loading in SureCart’s template parts.
    • \n
    \n

    2.19.4 – Tuesday, 18th March 2025

    \n
      \n
    • Updated the Astra Notices Library.
    • \n
    • Fix: Popup Builder – Resolved an issue wherein the Popup Builder pattern was giving block encountered error message.
    • \n
    \n

    2.19.3 – Tuesday, 11th March 2025

    \n
      \n
    • This update addressed a security bug. Please make sure you are using the latest version on your website.
    • \n
    • Fix: Resolved the asset loading conflict in the SureForms editor.
    • \n
    \n

    2.19.2 – Monday, 10th March 2025

    \n
      \n
    • Improvement: Lottie – Added help text to inform users about the ALLOW_UNFILTERED_UPLOADS constant for JSON file uploads.
    • \n
    • Fix: Forms – Resolved an issue wherein the submit button hover background color is not working as intended on frontend.
    • \n
    • Fix: Popup Builder – Resolved an issue wherein the popup builder page in the admin dashboard throws a console error.
    • \n
    • Fix: Post Masonry – Resolved an issue wherein the Post Masonry block was getting a block recovery issue.
    • \n
    • Fix: Global – Resolved an issue where the Pro installation was not detected when WPML CMS was active.
    • \n
    \n

    The full changelog is available here.

    \n", "description": "

    SPECTRA WEBSITE BUILDER – BEST GUTENBERG BLOCKS PLUGIN TO EXTEND THE WORDPRESS BLOCK EDITOR WITH PAGE EDITING FEATURES, 30+ FREE CUSTOMIZABLE BLOCKS, COMING SOON MODE, POPUP BUILDER

    \n

    ★★★★★

    \n\n

    Most helpful links

    \n\n

    DESIGN BEAUTIFUL FAST LOADING WEBSITES DIRECTLY ON THE WORDPRESS BLOCK EDITOR (GUTENBERG EDITOR) WITHOUT CODING

    \n

    Try the live demo of Spectra

    \n

    Our mission is to empower web designers like you with an end-to-end solution for building stunning websites.

    \n

    We aim to simplify the website creation process by providing a versatile toolkit within a single plugin, eliminating the need to install multiple plugins for various functionalities.

    \n

    With Spectra, we strive to make it extremely easy to use for beginners and feature-rich for experienced designers.

    \n

    Spectra equips designers with a wide range of pre-designed website templates, allowing them to effortlessly create professional websites tailored to their unique requirements.

    \n

    Beyond just aesthetics, we are committed to optimizing website performance. Spectra offers efficient code and performance-focused features, ensuring that the websites built with our plugin are not only visually appealing but also deliver exceptional speed and smooth functionality.

    \n

    By providing an all-in-one solution for building websites, we aim to streamline their workflow and enhance their productivity. We continuously innovate and improve Spectra, integrating cutting-edge technologies and staying ahead of the evolving web design landscape. We empower our users to build websites that captivate, engage, and impress their clients or themselves.

    \n

    HERE’S THE IMPORTANT THING ⭐

    \n

    Finally, a website builder which allows you to design beautiful and professional-looking websites using the power of the default block editor of WordPress.

    \n

    With utmost attention, the developers have ensured that Spectra is easy to use and provides everything you need to design a fully functional website.

    \n

    Guess what! 🤩
    \nUsers of page builders like Elementor and Beaver Builder absolutely LOVE Spectra because of 3 reasons –

    \n
      \n
    • The code of Spectra is extremely optimized for performance and speed
    • \n
    • Spectra designs and features make you look like an expert web designer
    • \n
    • There’s zero learning curve as Spectra works on top of the default WordPress block editor.
    • \n
    \n

    Introducing Spectra – the ultimate solution to revolutionize your web design experience.

    \n

    With Spectra, you can power up the block editor with advanced and powerful blocks that simplify the entire process. Say goodbye to the hassle of coding and say hello to effortless website creation.

    \n

    Spectra provides a wide range of unique and creative blocks on top of the default WordPress page editor, enabling you to build and design pages or posts without writing a single line of code.

    \n

    It offers an easy-to-use interface, customization options, and a library of pre-built website templates to help you build awesome websites in minutes.

    \n

    Whether you need to launch an online store or promote your services, Spectra empowers you to build pixel-perfect websites that captivate your audience.

    \n

    Don’t let coding complexities hold you back – unlock the potential of block editor with Spectra and build faster, better-performing websites today!

    \n

    SOME POWERFUL FEATURES OF SPECTRA 💪

    \n
      \n
    1. Layouts – Easily move, resize, and hide different sections, rows, columns, and blocks using convenient layout navigation to make your page designing process faster.
    2. \n
    3. Designs powered by Starter Templates – Thinking about switching from Elementor templates to a more performance-friendly alternative? Spectra gives you the same level of design flexibility – without the bloat. Spectra offers hundreds of designs to choose from.
    4. \n
    5. Wireframes – Before diving into the design process, it’s crucial to create a structure for your website. With Spectra’s Wireframe Blocks, you can quickly create page or website mockups, improving work efficiency and saving time.
    6. \n
    7. Block patterns – Import and customize pre-designed block patterns for various sections on your website. Spectra provides a collection of these patterns that can be easily tailored to your preferences.
    8. \n
    9. Advanced block presets – Not sure how to design blocks optimally? No worries! Our team of expert designers has created highly converting and visually appealing presets for you to use.
    10. \n
    11. Spectra Copy Paste – If you’ve customized a block with specific fonts, colors, spacings, borders, shadows, and animations, you can effortlessly replicate the same design on another block using Spectra Copy Paste feature.
    12. \n
    13. Container – Create stunning layouts using the Container block, powered by flexbox technology.
    14. \n
    15. Global styling support – Spectra allows you to set the default content width for your website with just a single click. You can also inherit button styles from your theme, maintain consistent container padding throughout your site, and set a default gap between rows and columns.
    16. \n
    17. Popup Builder – Grab your audience’s attention or share important notices by designing beautiful popups using our intuitive popup builder.
    18. \n
    19. Coming soon mode – Is your website still under construction? Not ready for public viewing yet? Enable the coming soon mode, and only the selected page will be visible to those not logged in.
    20. \n
    21. Animations – Add a touch of life and interactivity to your website with Spectra’s wide range of animations. Choose from fade, slide, zoom, flip, zoom in, zoom out, and more. Free users have access to a selection of animations that can be easily applied to any block.
    22. \n
    23. Load Google Fonts locally – Optimize your website’s speed and ensure GDPR compliance by enabling this option to download and save Google fonts on your server.
    24. \n
    \n

    INCLUDES 30+ ESSENTIAL BLOCKS 🔥

    \n
      \n
    1. Core Blocks – Spectra offers essential blocks that every website and landing page needs. You’ll find blocks like Container, Heading, Image, Icon, Buttons, Info Box, Call To Action, and Countdown, which are crucial for crafting your pages.
    2. \n
    3. Creative Blocks – Unleash your creativity with Spectra’s creative blocks. These include Star Ratings, Countdown, Marketing Button, Icon List, Image Gallery, and even support for Lottie Animations. Let your imagination run wild and make your designs truly stand out.
    4. \n
    5. Content Blocks – Showcase your content beautifully with Spectra’s content blocks. From Sliders and Image blocks to Content Timelines, Google Maps, Inline Notices, Tabs, Taxonomy Lists, Price Lists, and more, these blocks offer diverse options to present your content in an engaging manner. And if you’re using Spectra Pro, you’ll even have access to the powerful Loop Builder.
    6. \n
    7. Post Blocks – Enhance your blog posts with Spectra’s Post Blocks. Add a Counter, Modal Popup, Post Carousel, Post Grid, or Post Timeline to make your blog visually appealing and user-friendly.
    8. \n
    9. Social Blocks – Spectra provides blocks that help you showcase your social status. You’ll find blocks like Instagram Feed, Blockquote, Social Share, Team, and Testimonials, which allow you to highlight social proof and engage with your audience effectively.
    10. \n
    11. Form Blocks – Create interactive forms easily with Spectra’s Form Blocks. Whether it’s a contact form, newsletter signup, or suggestion form, you can collect valuable leads. You can even enable reCAPTCHA to ensure form security. With Spectra Pro, you can even enable user registration or login forms.
    12. \n
    13. SEO Blocks – Boost your website’s search engine optimization with Spectra’s SEO Blocks. These blocks, such as FAQ, How-To, Review, and Table of Contents, are designed to improve your site’s visibility and enhance the user experience.
    14. \n
    15. Dynamic Content – Take control of your website’s archive feed with Spectra’s Dynamic Content blocks. You can customize the feed based on dynamic parameters like date, name, category, page, posts, and more, giving you flexibility and customization options.
    16. \n
    \n

    WHO CAN BENEFIT FROM SPECTRA? 📈

    \n
      \n
    • Web designers – Want to enhance your website-building process without getting stuck in coding? Spectra’s got your back! With its advanced blocks, you can create stunning layouts and customize elements like a pro, all without writing a single line of code.
    • \n
    • Small business owners – Building a professional website for your business just got easier with Spectra. Choose from the pre-built WordPress Templates and customize them to match your branding and content. Say goodbye to costly web development and hello to a beautiful online presence.
    • \n
    • Bloggers – Spice up your blog posts with Spectra’s eye-catching elements. Add images, engaging call-to-actions, content timelines, and social sharing blocks to make your content pop. It’s time to captivate your readers and take your blog to the next level.
    • \n
    • SEO Specialists – Spectra has schema markup blocks like FAQ, How-To, Review, and Table of Content to boost your website rankings and improve search engine representation. Plus, its lightweight and optimized code ensures your site performs at its best. Get ready to conquer the search results!
    • \n
    • eCommerce store owners – Spectra helps you create visually stunning product listings, showcase star ratings and reviews, and display pricing information that will make your customers click that “buy” button. Get ready to take your online store to new heights.
    • \n
    • Marketers – Spectra is your secret weapon for creating effective landing pages and promotional materials. Use attention-grabbing blocks like call-to-actions, marketing buttons, and testimonials to drive conversions and engage your target audience. Your campaigns just got a whole lot better.
    • \n
    • Freelancers – We’ve got something special for you! Streamline your workflow and save time with Spectra. Quickly build websites for your clients using the pre-built website templates and customize them to meet their requirements. It’s the ultimate toolkit for freelancers.
    • \n
    • Podcasters and YouTubers – With Spectra, you can enhance your website or blog with ease. Add a podcast player, embed videos, showcase a content timeline, and create engaging content using the various blocks offered. Let your creativity flow and captivate your audience.
    • \n
    • Non-profit organizations – Create visually appealing websites to showcase your cause, share inspiring success stories, and collect donations. Spectra’s image blocks, forms, testimonials, and social sharing options will help you engage your audience and promote your mission effectively.
    • \n
    • Restaurant owners – Spectra’s ready-to-use Starter Templates cater specifically to restaurants. Show off your menus, feature customer testimonials, and even integrate a reservation form using the forms block. It’s the secret ingredient to a mouth-watering online presence.
    • \n
    • Beginner WordPress users – Spectra’s user-friendly interface, pre-designed WordPress Templates, and comprehensive tutorials make website creation a breeze. No coding skills are needed! You can create professional-looking websites and amaze everyone with your online presence.
    • \n
    \n

    Anyone thinking of moving away from traditional page builders like Elementor and Divi Builder in favor of WordPress Block Editor (also known as Gutenberg) for a better page-building experience without the need for traditional page builders like Elementor and Divi.

    \n

    SOME OF THE WORDPRESS THEMES & PLUGINS SPECTRA SUPPORTS 🔗

    \n

    Spectra works with any theme, including:

    \n
      \n
    • Spectra One
    • \n
    • Astra
    • \n
    • Blocksy
    • \n
    • Flatsome
    • \n
    • GeneratePress
    • \n
    • Hestia
    • \n
    • Kadence
    • \n
    • Neve
    • \n
    \n

    Spectra is compatible with all plugins, including:

    \n
      \n
    • Easy Digital Downloads
    • \n
    • FluentCRM
    • \n
    • FluentForm
    • \n
    • GiveWP
    • \n
    • Gravity Forms
    • \n
    • LearnDash
    • \n
    • LifterLMS
    • \n
    • MemberPress
    • \n
    • PrestoPlayer
    • \n
    • Restrict Content Pro
    • \n
    • SureCart
    • \n
    • SureMembers
    • \n
    • The Events Calendar
    • \n
    • TutorLMS
    • \n
    • Wishlist Member
    • \n
    • WooCommerce
    • \n
    • Yoast SEO
    • \n
    • And many more
    • \n
    \n

    Note: Spectra does not offer Elementor Templates.

    \n

    SUPPORT THAT CARES! ⛑️

    \n

    We understand the need for a quality product backed by dedicated support that cares. We are here to listen to all your queries and help you make the most out of our plugin.

    \n

    Need help? We are just a click away!

    \n

    CONNECT WITH OUR TEAM AND COMMUNITY 🌐

    \n\n

    WANT TO CONTRIBUTE TO THE PLUGIN? 🙋

    \n

    You may now contribute to the plugin on Github: Spectra on Github

    \n

    Credits

    \n

    Our external packages use Rating Star Component that are distributed under the terms of the ISC. While Slick, Lottie and Striptags is distributed under the terms of the MIT. Additionally, we incorporate FontAwesome v6 under the CC BY 4.0 License, and dnd kit licensed under the MIT License.

    \n", "installation": "

    Install the Spectra either via the WordPress plugin directory or by uploading the files to your server at wp-content/plugins.

    \n

    You can refer to our getting started article to know more.

    \n

    For more information, please visit our Knowledge Base.

    \n"}, "versions": {"0.0.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.0.0.1.zip", "1.0.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.4.0.zip", "1.5.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.6.2.zip", "1.7.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.7.0.zip", "1.8.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.8.2.zip", "1.9.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.9.1.zip", "2.0.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.2.0.zip", "2.3.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.3.5.zip", "2.4.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.4.2.zip", "2.5.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.5.1.zip", "2.6.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.8.zip", "2.7.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.9.zip", "2.8.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.8.0.zip", "2.9.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.9.1.zip", "trunk": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.zip", "1.10.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.10.0.zip", "1.11.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.11.0.zip", "1.11.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.11.1.zip", "1.12.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.2.zip", "1.12.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.3.zip", "1.12.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.4.zip", "1.12.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.12.5.zip", "1.13.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.1.zip", "1.13.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.2.zip", "1.13.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.3.zip", "1.13.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.4.zip", "1.13.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.5.zip", "1.13.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.13.6.zip", "1.14.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.0.zip", "1.14.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.1.zip", "1.14.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.2.zip", "1.14.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.3.zip", "1.14.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.4.zip", "1.14.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.5.zip", "1.14.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.6.zip", "1.14.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.7.zip", "1.14.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.8.zip", "1.14.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.9.zip", "1.15.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.15.0.zip", "1.15.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.15.1.zip", "1.15.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.15.2.zip", "1.16.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.16.0.zip", "1.16.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.16.1.zip", "1.17.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.17.0.zip", "1.18.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.18.0.zip", "1.18.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.18.1.zip", "1.18.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.18.2.zip", "1.19.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.19.0.zip", "1.20.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.20.0.zip", "1.20.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.20.1.zip", "1.21.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.21.0.zip", "1.21.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.21.1.zip", "1.22.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.0.zip", "1.22.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.1.zip", "1.22.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.2.zip", "1.22.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.3.zip", "1.22.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.4.zip", "1.22.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.22.5.zip", "1.23.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.0.zip", "1.23.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.1.zip", "1.23.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.2.zip", "1.23.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.3.zip", "1.23.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.4.zip", "1.23.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.23.5.zip", "1.24.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.24.0.zip", "1.24.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.24.1.zip", "1.24.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.24.2.zip", "1.25.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.0.zip", "1.25.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.1.zip", "1.25.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.2.zip", "1.25.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.3.zip", "1.25.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.4.zip", "1.25.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.5.zip", "1.25.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.25.6.zip", "2.0.10": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.0.16.zip", "2.10.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.0.zip", "2.10.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.1.zip", "2.10.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.2.zip", "2.10.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.3.zip", "2.10.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.4.zip", "2.10.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.10.5.zip", "2.11.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.11.0.zip", "2.11.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.11.1.zip", "2.11.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.11.2.zip", "2.11.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.11.3.zip", "2.11.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.11.4.zip", "2.12.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.0.zip", "2.12.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.1.zip", "2.12.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.2.zip", "2.12.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.3.zip", "2.12.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.4.zip", "2.12.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.5.zip", "2.12.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.6.zip", "2.12.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.7.zip", "2.12.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.8.zip", "2.12.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.12.9.zip", "2.13.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.0.zip", "2.13.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.1.zip", "2.13.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.2.zip", "2.13.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.3.zip", "2.13.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.4.zip", "2.13.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.5.zip", "2.13.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.6.zip", "2.13.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.7.zip", "2.13.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.8.zip", "2.13.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.13.9.zip", "2.14.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.14.0.zip", "2.14.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.14.1.zip", "2.15.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.15.0.zip", "2.15.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.15.1.zip", "2.15.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.15.2.zip", "2.15.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.15.3.zip", "2.16.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.0.zip", "2.16.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.1.zip", "2.16.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.2.zip", "2.16.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.3.zip", "2.16.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.4.zip", "2.16.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.16.5.zip", "2.17.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.17.0.zip", "2.18.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.18.0.zip", "2.18.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.18.1.zip", "2.18.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.18.2.zip", "2.18.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.18.3.zip", "2.19.0": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.0.zip", "2.19.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.1.zip", "2.19.2": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.2.zip", "2.19.3": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.3.zip", "2.19.4": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.4.zip", "2.19.5": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.5.zip", "2.19.6": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.6.zip", "2.19.7": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.7.zip", "2.19.8": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.8.zip", "2.19.9": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.9.zip", "2.7.10": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.10.zip", "2.7.11": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.7.11.zip", "1.14.10": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.10.zip", "1.14.11": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.1.14.11.zip", "2.19.10": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.10.zip", "2.19.11": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.11.zip", "2.19.12": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.12.zip", "2.19.13": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.13.zip", "2.19.14": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.14.zip", "2.19.15": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.15.zip", "2.19.11-beta.1": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.11-beta.1.zip"}, "downloaded": 36655144, "description": "

    SPECTRA WEBSITE BUILDER – BEST GUTENBERG BLOCKS PLUGIN TO EXTEND THE WORDPRESS BLOCK EDITOR WITH PAGE EDITING FEATURES, 30+ FREE CUSTOMIZABLE BLOCKS, COMING SOON MODE, POPUP BUILDER

    \n

    ★★★★★

    \n\n

    Most helpful links

    \n\n

    DESIGN BEAUTIFUL FAST LOADING WEBSITES DIRECTLY ON THE WORDPRESS BLOCK EDITOR (GUTENBERG EDITOR) WITHOUT CODING

    \n

    Try the live demo of Spectra

    \n

    Our mission is to empower web designers like you with an end-to-end solution for building stunning websites.

    \n

    We aim to simplify the website creation process by providing a versatile toolkit within a single plugin, eliminating the need to install multiple plugins for various functionalities.

    \n

    With Spectra, we strive to make it extremely easy to use for beginners and feature-rich for experienced designers.

    \n

    Spectra equips designers with a wide range of pre-designed website templates, allowing them to effortlessly create professional websites tailored to their unique requirements.

    \n

    Beyond just aesthetics, we are committed to optimizing website performance. Spectra offers efficient code and performance-focused features, ensuring that the websites built with our plugin are not only visually appealing but also deliver exceptional speed and smooth functionality.

    \n

    By providing an all-in-one solution for building websites, we aim to streamline their workflow and enhance their productivity. We continuously innovate and improve Spectra, integrating cutting-edge technologies and staying ahead of the evolving web design landscape. We empower our users to build websites that captivate, engage, and impress their clients or themselves.

    \n

    HERE’S THE IMPORTANT THING ⭐

    \n

    Finally, a website builder which allows you to design beautiful and professional-looking websites using the power of the default block editor of WordPress.

    \n

    With utmost attention, the developers have ensured that Spectra is easy to use and provides everything you need to design a fully functional website.

    \n

    Guess what! 🤩
    \nUsers of page builders like Elementor and Beaver Builder absolutely LOVE Spectra because of 3 reasons –

    \n
      \n
    • The code of Spectra is extremely optimized for performance and speed
    • \n
    • Spectra designs and features make you look like an expert web designer
    • \n
    • There’s zero learning curve as Spectra works on top of the default WordPress block editor.
    • \n
    \n

    Introducing Spectra – the ultimate solution to revolutionize your web design experience.

    \n

    With Spectra, you can power up the block editor with advanced and powerful blocks that simplify the entire process. Say goodbye to the hassle of coding and say hello to effortless website creation.

    \n

    Spectra provides a wide range of unique and creative blocks on top of the default WordPress page editor, enabling you to build and design pages or posts without writing a single line of code.

    \n

    It offers an easy-to-use interface, customization options, and a library of pre-built website templates to help you build awesome websites in minutes.

    \n

    Whether you need to launch an online store or promote your services, Spectra empowers you to build pixel-perfect websites that captivate your audience.

    \n

    Don’t let coding complexities hold you back – unlock the potential of block editor with Spectra and build faster, better-performing websites today!

    \n

    SOME POWERFUL FEATURES OF SPECTRA 💪

    \n
      \n
    1. Layouts – Easily move, resize, and hide different sections, rows, columns, and blocks using convenient layout navigation to make your page designing process faster.
    2. \n
    3. Designs powered by Starter Templates – Thinking about switching from Elementor templates to a more performance-friendly alternative? Spectra gives you the same level of design flexibility – without the bloat. Spectra offers hundreds of designs to choose from.
    4. \n
    5. Wireframes – Before diving into the design process, it’s crucial to create a structure for your website. With Spectra’s Wireframe Blocks, you can quickly create page or website mockups, improving work efficiency and saving time.
    6. \n
    7. Block patterns – Import and customize pre-designed block patterns for various sections on your website. Spectra provides a collection of these patterns that can be easily tailored to your preferences.
    8. \n
    9. Advanced block presets – Not sure how to design blocks optimally? No worries! Our team of expert designers has created highly converting and visually appealing presets for you to use.
    10. \n
    11. Spectra Copy Paste – If you’ve customized a block with specific fonts, colors, spacings, borders, shadows, and animations, you can effortlessly replicate the same design on another block using Spectra Copy Paste feature.
    12. \n
    13. Container – Create stunning layouts using the Container block, powered by flexbox technology.
    14. \n
    15. Global styling support – Spectra allows you to set the default content width for your website with just a single click. You can also inherit button styles from your theme, maintain consistent container padding throughout your site, and set a default gap between rows and columns.
    16. \n
    17. Popup Builder – Grab your audience’s attention or share important notices by designing beautiful popups using our intuitive popup builder.
    18. \n
    19. Coming soon mode – Is your website still under construction? Not ready for public viewing yet? Enable the coming soon mode, and only the selected page will be visible to those not logged in.
    20. \n
    21. Animations – Add a touch of life and interactivity to your website with Spectra’s wide range of animations. Choose from fade, slide, zoom, flip, zoom in, zoom out, and more. Free users have access to a selection of animations that can be easily applied to any block.
    22. \n
    23. Load Google Fonts locally – Optimize your website’s speed and ensure GDPR compliance by enabling this option to download and save Google fonts on your server.
    24. \n
    \n

    INCLUDES 30+ ESSENTIAL BLOCKS 🔥

    \n
      \n
    1. Core Blocks – Spectra offers essential blocks that every website and landing page needs. You’ll find blocks like Container, Heading, Image, Icon, Buttons, Info Box, Call To Action, and Countdown, which are crucial for crafting your pages.
    2. \n
    3. Creative Blocks – Unleash your creativity with Spectra’s creative blocks. These include Star Ratings, Countdown, Marketing Button, Icon List, Image Gallery, and even support for Lottie Animations. Let your imagination run wild and make your designs truly stand out.
    4. \n
    5. Content Blocks – Showcase your content beautifully with Spectra’s content blocks. From Sliders and Image blocks to Content Timelines, Google Maps, Inline Notices, Tabs, Taxonomy Lists, Price Lists, and more, these blocks offer diverse options to present your content in an engaging manner. And if you’re using Spectra Pro, you’ll even have access to the powerful Loop Builder.
    6. \n
    7. Post Blocks – Enhance your blog posts with Spectra’s Post Blocks. Add a Counter, Modal Popup, Post Carousel, Post Grid, or Post Timeline to make your blog visually appealing and user-friendly.
    8. \n
    9. Social Blocks – Spectra provides blocks that help you showcase your social status. You’ll find blocks like Instagram Feed, Blockquote, Social Share, Team, and Testimonials, which allow you to highlight social proof and engage with your audience effectively.
    10. \n
    11. Form Blocks – Create interactive forms easily with Spectra’s Form Blocks. Whether it’s a contact form, newsletter signup, or suggestion form, you can collect valuable leads. You can even enable reCAPTCHA to ensure form security. With Spectra Pro, you can even enable user registration or login forms.
    12. \n
    13. SEO Blocks – Boost your website’s search engine optimization with Spectra’s SEO Blocks. These blocks, such as FAQ, How-To, Review, and Table of Contents, are designed to improve your site’s visibility and enhance the user experience.
    14. \n
    15. Dynamic Content – Take control of your website’s archive feed with Spectra’s Dynamic Content blocks. You can customize the feed based on dynamic parameters like date, name, category, page, posts, and more, giving you flexibility and customization options.
    16. \n
    \n

    WHO CAN BENEFIT FROM SPECTRA? 📈

    \n
      \n
    • Web designers – Want to enhance your website-building process without getting stuck in coding? Spectra’s got your back! With its advanced blocks, you can create stunning layouts and customize elements like a pro, all without writing a single line of code.
    • \n
    • Small business owners – Building a professional website for your business just got easier with Spectra. Choose from the pre-built WordPress Templates and customize them to match your branding and content. Say goodbye to costly web development and hello to a beautiful online presence.
    • \n
    • Bloggers – Spice up your blog posts with Spectra’s eye-catching elements. Add images, engaging call-to-actions, content timelines, and social sharing blocks to make your content pop. It’s time to captivate your readers and take your blog to the next level.
    • \n
    • SEO Specialists – Spectra has schema markup blocks like FAQ, How-To, Review, and Table of Content to boost your website rankings and improve search engine representation. Plus, its lightweight and optimized code ensures your site performs at its best. Get ready to conquer the search results!
    • \n
    • eCommerce store owners – Spectra helps you create visually stunning product listings, showcase star ratings and reviews, and display pricing information that will make your customers click that “buy” button. Get ready to take your online store to new heights.
    • \n
    • Marketers – Spectra is your secret weapon for creating effective landing pages and promotional materials. Use attention-grabbing blocks like call-to-actions, marketing buttons, and testimonials to drive conversions and engage your target audience. Your campaigns just got a whole lot better.
    • \n
    • Freelancers – We’ve got something special for you! Streamline your workflow and save time with Spectra. Quickly build websites for your clients using the pre-built website templates and customize them to meet their requirements. It’s the ultimate toolkit for freelancers.
    • \n
    • Podcasters and YouTubers – With Spectra, you can enhance your website or blog with ease. Add a podcast player, embed videos, showcase a content timeline, and create engaging content using the various blocks offered. Let your creativity flow and captivate your audience.
    • \n
    • Non-profit organizations – Create visually appealing websites to showcase your cause, share inspiring success stories, and collect donations. Spectra’s image blocks, forms, testimonials, and social sharing options will help you engage your audience and promote your mission effectively.
    • \n
    • Restaurant owners – Spectra’s ready-to-use Starter Templates cater specifically to restaurants. Show off your menus, feature customer testimonials, and even integrate a reservation form using the forms block. It’s the secret ingredient to a mouth-watering online presence.
    • \n
    • Beginner WordPress users – Spectra’s user-friendly interface, pre-designed WordPress Templates, and comprehensive tutorials make website creation a breeze. No coding skills are needed! You can create professional-looking websites and amaze everyone with your online presence.
    • \n
    \n

    Anyone thinking of moving away from traditional page builders like Elementor and Divi Builder in favor of WordPress Block Editor (also known as Gutenberg) for a better page-building experience without the need for traditional page builders like Elementor and Divi.

    \n

    SOME OF THE WORDPRESS THEMES & PLUGINS SPECTRA SUPPORTS 🔗

    \n

    Spectra works with any theme, including:

    \n
      \n
    • Spectra One
    • \n
    • Astra
    • \n
    • Blocksy
    • \n
    • Flatsome
    • \n
    • GeneratePress
    • \n
    • Hestia
    • \n
    • Kadence
    • \n
    • Neve
    • \n
    \n

    Spectra is compatible with all plugins, including:

    \n
      \n
    • Easy Digital Downloads
    • \n
    • FluentCRM
    • \n
    • FluentForm
    • \n
    • GiveWP
    • \n
    • Gravity Forms
    • \n
    • LearnDash
    • \n
    • LifterLMS
    • \n
    • MemberPress
    • \n
    • PrestoPlayer
    • \n
    • Restrict Content Pro
    • \n
    • SureCart
    • \n
    • SureMembers
    • \n
    • The Events Calendar
    • \n
    • TutorLMS
    • \n
    • Wishlist Member
    • \n
    • WooCommerce
    • \n
    • Yoast SEO
    • \n
    • And many more
    • \n
    \n

    Note: Spectra does not offer Elementor Templates.

    \n

    SUPPORT THAT CARES! ⛑️

    \n

    We understand the need for a quality product backed by dedicated support that cares. We are here to listen to all your queries and help you make the most out of our plugin.

    \n

    Need help? We are just a click away!

    \n

    CONNECT WITH OUR TEAM AND COMMUNITY 🌐

    \n\n

    WANT TO CONTRIBUTE TO THE PLUGIN? 🙋

    \n

    You may now contribute to the plugin on Github: Spectra on Github

    \n

    Credits

    \n

    Our external packages use Rating Star Component that are distributed under the terms of the ISC. While Slick, Lottie and Striptags is distributed under the terms of the MIT. Additionally, we incorporate FontAwesome v6 under the CC BY 4.0 License, and dnd kit licensed under the MIT License.

    \n", "donate_link": "https://www.paypal.me/BrainstormForce", "num_ratings": 1796, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg/", "contributors": {"brainstormforce": {"avatar": "https://secure.gravatar.com/avatar/b9280ac641a862e2e148513dfb9567e56a273b649dbfad5df6867d4700a685d2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brainstormforce/", "display_name": "Brainstorm Force"}}, "last_updated": "2025-10-03 6:23am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.15.zip", "author_profile": "https://profiles.wordpress.org/brainstormforce/", "business_model": false, "repository_url": "", "upgrade_notice": {"2.7.3": "

    We've optimized the internal structure of Spectra in this update. To ensure your website's safety, We recommend that you backup your website before updating.

    ", "2.7.4": "

    With WordPress 6.3 no longer supporting older versions of PHP, the next Spectra release will also require a minimum of PHP 7.4. For websites running on older version of PHP, we strongly recommend upgrading to PHP 7.4 or above to ensure optimal performance and compatibility.

    ", "2.14.1": "

    With WordPress 6.6 introducing the command palette and taking a place at the top of the editor, we had to retire the 'Move Title to Top' functionality in Spectra. However, there's no need for concern. After updating Spectra, the title in your editor will gracefully return to its default position.

    ", "2.18.2": "

    The Google Fonts library in Spectra has been updated in this version. Please check your font selections to replace any deprecated fonts and explore the new additions.

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fbaf-714d-8974-da6f8401463b", "name": "Spectra Gutenberg Blocks – Website Builder for the Block Editor", "slug": "ultimate-addons-for-gutenberg", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1759472580, "version": "2.19.15"}, "support_threads": 17, "requires_plugins": [], "short_description": "Power-up Gutenberg with advanced blocks for faster website creation. Build your WordPress website effortlessly using powerful building blocks!", "author_block_count": 1, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 13}'); -INSERT INTO public.plugins VALUES ('019a30c1-673a-7246-a5f8-68841a090d84', 'under-construction-page', 'Under Construction', 'Easy to use Under Construction Page & Coming Soon Page. Enable Under Construction Mode in seconds & show you're Under Construction!', '

    Create an Under Construction Page, Maintenance Mode Page, Coming Soon Page or a Landing Page that takes less than a minute to install & configure. Under Construction won’t waste your time! It’s simple, fast, efficient & user-friendly with great templates users love. Under Construction uses Bunny Fonts for GDPR compatibility.

    - -
    -

    PRO version offers more than 50 extra features and options including the drag&drop builder, over a million hi-res searchable images, 300+ templates, affiliate&traffic tracking, advanced access control, MailChimp, Zapier & universal autoresponder integration, white-label license mode and priority support. Find out more on the official plugin site.

    -
    -

    A simple, no-nonsense under construction plugin for all those situations when you have to hide the site behind an Under Construction page for a while. Live examples are available on the Under Construction website. Give us a shout on Twitter @WebFactoryLtd or check out the video.

    -

    Thanks to our partnership with Weglot, UCP is fully multilanguage ready and you can instantly translate your under construction page to 100+ languages with one click.

    -

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL and fix SSL issues.

    -

    Options

    -
      -
    • Under construction mode – on / off
    • -
    • Automatic End date & time – automatically disable under construction mode on a set date
    • -
    • Google Analytics Tracking ID – enable tracking via Google Analytics
    • -
    • Theme – test all available themes (200+)
    • -
    • Custom CSS – adjust any part of the page to fit your needs
    • -
    • Title – page title, for SEO
    • -
    • Description – page description, for SEO
    • -
    • Headline – main headline/title
    • -
    • Content – anything you need to display
    • -
    • Optin box, optin popup – collect leads and emails and sync with MailChimp and other autoresponders
    • -
    • Login Button – show a discrete link to the login form, or WP admin if you’re logged in
    • -
    • Social icons/links – new ones are added with every update; let us know if we missed your favorite ones -
        -
      • Facebook
      • -
      • Twitter
      • -
      • LinkedIn
      • -
      • YouTube
      • -
      • Vimeo
      • -
      • Pinterest
      • -
      • Dribbble
      • -
      • Behance
      • -
      • Instagram
      • -
      • Email
      • -
      • Phone
      • -
      • Skype
      • -
      • Telegram
      • -
      • WhatsApp
      • -
      • Tumblr
      • -
      • VK
      • -
      -
    • -
    • Whitelisted User Roles – user roles who see the site, instead of under construction page
    • -
    • Whitelisted Users – users who see the site, instead of under construction page
    • -
    -

    Under Construction Page is compatible with the following caching plugins: W3 Total Cache, WP Super Cache, Endurance Page Cache, SiteGround SuperCacher, WP Fastest Cache, Swift Performance Cache, WP Rocket, Cache Enabler, and Hummingbird cache.

    -

    What are others saying about the Under Construction Page plugin

    -
      -
    • WHSR wrote an in-depth guide on how to “Grow Your Blog Before It Is Born” featuring Under Construction Page
    • -
    • John Fraskos from Codestag says it’s “very friendly and easy to use”
    • -
    • WP Pluginsify wrote a review
    • -
    • Erik from NoPassiveIncome points out: “plugin is so easy and quick to use”
    • -
    • Planet WP gave it 5/5 stars
    • -
    • FirstSiteGuide says: “a perfect choice”
    • -
    • WPblog wrote a review as well
    • -
    • WP TopDog had Daniel explain how to use the Under Construction Page
    • -
    -

    GDPR Compatibility
    -We are not lawyers. Please do not take any of the following as legal advice.
    -Under Construction plugin uses Bunny Fonts on the front end, and in the admin. Usage of the Google Analytics service is optional. No other resources are loaded from or shared with 3rd parties. Opting to use Bunny Fonts and/or Google Analytics will result in data sharing/tracking as described in their terms of service.
    -If you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    -', '4.03', 'WebFactory', '4.0', '5.2', '6.8.3', 'https://downloads.wordpress.org/plugin/under-construction-page.4.03.zip', '2013-12-01 00:00:00+00', '2025-08-10 20:41:00+00', 'https://profiles.wordpress.org/webfactory/', 96, 1282, 4, 4, 600000, 12180046, 'https://underconstructionpage.com/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/under-construction-page/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Under Construction", "slug": "under-construction-page", "tags": {"coming-soon-mode": "coming soon mode", "coming-soon-page": "coming soon page", "under-construction": "under construction", "under-construction-mode": "under construction mode", "under-construction-page": "under construction page"}, "added": "2013-12-01", "icons": {"1x": "https://ps.w.org/under-construction-page/assets/icon-128x128.gif?rev=2284852", "2x": "https://ps.w.org/under-construction-page/assets/icon-256x256.gif?rev=2284849"}, "author": "WebFactory", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/under-construction-page/assets/banner-772x250.png?rev=1575797", "high": "https://ps.w.org/under-construction-page/assets/banner-1544x500.png?rev=1628376"}, "ratings": {"1": 44, "2": 9, "3": 9, "4": 54, "5": 1166}, "version": "4.03", "homepage": "https://underconstructionpage.com/", "requires": "4.0", "sections": {"faq": "\n
    \nWho is this plugin for?\n\n

    \n

    For anyone who wants to display a under construction / maintenance page while they’re doing work on their site.

    \n

    \n
    \nWill this plugin slow my site down?\n\n

    \n

    Absolutely not.

    \n

    \n
    \nWill it work on my theme?\n\n

    \n

    Sure! Under construction works 100% with all themes.

    \n

    \n
    \nWill it work with my plugins?\n\n

    \n

    Sure! It works 100% with all plugins.

    \n

    \n
    \nWhat changes will it make to my site?\n\n

    \n

    None. Once you disable the under construction page your site will function as it did before.

    \n

    \n
    \nIt’s not working!!! Arrrrrrrrr\n\n

    \n

    We did our very best to make Under Construction compatible with all plugins and themes, but problems can still happen. No worries, head over to the support forum open a new thread, and we’ll help you ASAP.

    \n

    \n
    \nHow can I work on my site while under construction mode is enabled?\n\n

    \n

    Make sure your user role (probably admin) is selected under Access – Whitelisted User Roles option and open the site while logged in.

    \n

    \n
    \nHow can I log in / access WordPress admin after under construction mode has been enabled?\n\n

    \n

    Enable the Login Button option (found in Content tab), and a login link will be shown in the lower right corner of the under construction page.

    \n

    \n
    \nHow do I add my logo to the page?\n\n

    \n

    Head over to the Content tab and click “Add Media”. Upload/select the logo, position it as you see fit and add other content.

    \n

    \n
    \nI’ve made changes to UCP, but they are not visible. What do I do?\n\n

    \n

    Click “Save Changes” one more time. Open your site and force refresh browser cache (Ctrl or Shift + F5). If that doesn’t help it means you have a caching plugin installed. Purge/delete cache in that plugin or disable it.

    \n

    \n
    \nHow can I get more designs? Where do I download them?\n\n

    \n

    We update the plugin every 7-10 days and each update comes with at least one new theme/design. There is no other way to get more designs nor a place to download them.

    \n

    \n
    \nHow can I edit designs?\n\n

    \n

    There is an option to add custom CSS. If you want more than that you will have to edit the source files located in /under-construction-page/themes/.

    \n

    \n
    \nI have disabled UCP but the under construction page is still visible. How do I remove it?\n\n

    \n

    Open your site and force refresh browser cache (Ctrl or Shift + F5). If that doesn’t help it means you have a caching plugin installed. Purge/delete cache in that plugin or disable it. If that fails too contact your hosting provider and ask them to empty the site cache for you.

    \n

    \n
    \nIs UCP compatible with caching plugins?\n\n

    \n

    UCP is compatible with all caching plugins. However, please note that we automatically empty cache when UCP status is changed only for the following plugins: W3 Total Cache, WP Super Cache, Endurance Page Cache, SiteGround SuperCacher and WP Fastest Cache.

    \n

    \n
    \nHow can I report security bugs?\n\n

    \n

    You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Valet Parking Companies templates are beautiful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy valetparkingdubai on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Never seen such beautiful websites in the category of cars and valet parking. As a part of 1st Class Valet parking company in Dubai, I must say all the web templates that are associated with hospitality, Dubai and cars are beautiful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    professional plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy matematikbitmistir on September 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    <font dir=\"auto\" style=\"vertical-align: inherit;\"><font dir=\"auto\" style=\"vertical-align: inherit;\">matematikbitmistir.com Websitem için kullandım ve harika bir deneyimdi.</font></font>

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy what1 on August 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin is great, fast and easy install and setup, works as it should. Thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Everything is PRO

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy markozi on August 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The free version is practically useless – key features, including basic things like the \"secret link\", are locked behind the PRO version. This feels more like bait to buy than an actual free tool. If they keep all the important features in PRO anyway, they should just clearly state it’s only a demo.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Too many settings

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Nicu Danciu on June 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Too many settings to setup a single Under Construction Page. Almost everybody needs a simple setup with one click and one row of text, but here you need to include or exclude list of people. No, these is not what we need.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Use it on all my sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sekirk on May 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just a great plugin, does the job well without much fuss.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    getting this annoying popup as the admin when editing the page

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bawa98 on March 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    im getting this annoying popup as the admin that the site is under construction when i edit the page with elementor, that can not be closed

    \n\n\n\n


    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    For building your own design need to be pro?

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy locker17 on February 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Honestly??

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    not working

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy azumadigital on February 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    not working at all

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    As a PRO user: Switch to CMP plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Eduardo Sans (mouskeen) on August 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I normally don''t leave such harsh reviews but man! is this bad.

    \n\n\n\n

    I make sites for a living so I take this very seriously. I made the mistake of buying the lifetime license (oh my god) and let me give you a crash course of my experience on working over approximately 20 sites this last year:

    \n\n\n\n

    1- Design breaking inside the page when enabling the plugin (there is a bug when interacting with Elements in Generatepress Pro). Imagine the implications: clients complaining about design magically looking different, etc... A definite red flag that has a very random behavior (sometimes it breaks, sometimes it doesn''t, just like that).
    2- Cookie notice popping up in front of the \"Under construction\" page -instead of hiding it- (you''ll find the same issue if you use CookieYes plugin)
    3- I asked support to review all these issues... and let me tell you, support sucks, the worst I had in a paid plugin. You know the kind of perdon that \"kind of\" reads whatever you send him and then they half-answer you with lies? well, his response was: \"this is a third party plugin issue\"... YES... of course, a third party plugin that crushes with your crappy old code.
    4- Also, check the changelog (one or two updates per year, that already tells you a lot about the work put behind).

    \n\n\n\n

    All in all, don''t make my mistake. This is what I did:

    \n\n\n\n

    Switch to CMP (Coming Soon & Maintenance Plugin) that is FREE (with no PRO or paid version). Once installed, it automatically solved all the issues with Generatepress and CookieYes from the get go.

    \n\n\n\n

    On top of that, offers way more customization and options are 10 times better. I guess that in the end, this was not a \"third party plugin issue\" huh Ivan? Lol

    \n
    \n
    \n", "changelog": "

    4.03

    \n
      \n
    • 2025/08/10
    • \n
    • expanded list of allowed CSS properties in Custom CSS
    • \n
    \n

    4.02

    \n
      \n
    • 2025/02/10
    • \n
    • fixed !doctype missing
    • \n
    • added robots meta tag
    • \n
    • minor security fixes
    • \n
    \n

    4.01

    \n
      \n
    • 2024/07/08
    • \n
    • minor security fixes
    • \n
    \n

    4.00

    \n
      \n
    • 2024/04/11
    • \n
    • updated Google Analytics tracking code
    • \n
    • fixed 2 templates so jquery is not loaded remotely
    • \n
    \n

    3.99

    \n
      \n
    • 2024/02/17
    • \n
    • fixed some template tags getting stripped by wp_kses
    • \n
    \n

    3.98

    \n
      \n
    • 2024/01/29
    • \n
    • fixed notice popup close button
    • \n
    \n

    3.97

    \n
      \n
    • 2023/02/10
    • \n
    • nonce fixes; thank you Wordfence!
    • \n
    \n

    3.96

    \n
      \n
    • 2023/01/16
    • \n
    • changes in PRO prices
    • \n
    • code cleanup
    • \n
    • minor compatibility fix
    • \n
    \n

    3.95

    \n
      \n
    • 2022/11/22
    • \n
    • Google Fonts replaced with GDPR friendly Bunny Fonts
    • \n
    \n

    3.93

    \n
      \n
    • 2022/04/13
    • \n
    • Fix for escaping HTML that shouldn’t be escaped
    • \n
    \n

    3.92

    \n
      \n
    • 2022/01/13
    • \n
    • Google Analytics fix
    • \n
    • sorry for the multiple updates 🙁
    • \n
    \n

    3.91

    \n
      \n
    • 2022/01/12
    • \n
    • fix for Weglot integration
    • \n
    \n

    3.90

    \n
      \n
    • 2022/01/05
    • \n
    • security fixes
    • \n
    • added ad for our WP Force SSL plugin
    • \n
    \n

    3.89

    \n
      \n
    • 2021/07/23
    • \n
    • bug fix for Weglot
    • \n
    \n

    3.88

    \n
      \n
    • 2021/02/20
    • \n
    • 500,000 installations hit on 2021/01/31
    • \n
    • added support for Cache Enabler plugin
    • \n
    \n

    3.87

    \n
      \n
    • 2021/01/30
    • \n
    • removed promo for WF plugins
    • \n
    \n

    3.86

    \n
      \n
    • 2021/01/20
    • \n
    • security fixes
    • \n
    • added quick links button
    • \n
    \n

    3.85

    \n
      \n
    • 2021/01/13
    • \n
    • removed Google+
    • \n
    • removed WP 301 Redirects promo campaign
    • \n
    \n

    3.83

    \n
      \n
    • 2020/10/27
    • \n
    • removed automatic PRO license activation
    • \n
    \n

    3.82

    \n
      \n
    • 2020/10/01
    • \n
    • minor fixes
    • \n
    • added promo for WP 301 Redirects
    • \n
    \n

    3.81

    \n
      \n
    • 2020/08/20
    • \n
    • bug fixes
    • \n
    \n

    3.80

    \n
      \n
    • 2020/06/17
    • \n
    • more cache handling improvements
    • \n
    • stripped HTML from page title and description
    • \n
    \n

    3.75

    \n
      \n
    • 2020/04/15
    • \n
    • better cache handling
    • \n
    \n

    3.70

    \n
      \n
    • 2020/03/27
    • \n
    • minor bug fixes
    • \n
    • removed Security Ninja ads
    • \n
    • 400,000 installations hit on 2019-12-06
    • \n
    • for older changelog entries please refer to https://underconstructionpage.com/old-changelog.txt
    • \n
    \n", "description": "

    Create an Under Construction Page, Maintenance Mode Page, Coming Soon Page or a Landing Page that takes less than a minute to install & configure. Under Construction won’t waste your time! It’s simple, fast, efficient & user-friendly with great templates users love. Under Construction uses Bunny Fonts for GDPR compatibility.

    \n\n
    \n

    PRO version offers more than 50 extra features and options including the drag&drop builder, over a million hi-res searchable images, 300+ templates, affiliate&traffic tracking, advanced access control, MailChimp, Zapier & universal autoresponder integration, white-label license mode and priority support. Find out more on the official plugin site.

    \n
    \n

    A simple, no-nonsense under construction plugin for all those situations when you have to hide the site behind an Under Construction page for a while. Live examples are available on the Under Construction website. Give us a shout on Twitter @WebFactoryLtd or check out the video.

    \n

    Thanks to our partnership with Weglot, UCP is fully multilanguage ready and you can instantly translate your under construction page to 100+ languages with one click.

    \n

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL and fix SSL issues.

    \n

    Options

    \n
      \n
    • Under construction mode – on / off
    • \n
    • Automatic End date & time – automatically disable under construction mode on a set date
    • \n
    • Google Analytics Tracking ID – enable tracking via Google Analytics
    • \n
    • Theme – test all available themes (200+)
    • \n
    • Custom CSS – adjust any part of the page to fit your needs
    • \n
    • Title – page title, for SEO
    • \n
    • Description – page description, for SEO
    • \n
    • Headline – main headline/title
    • \n
    • Content – anything you need to display
    • \n
    • Optin box, optin popup – collect leads and emails and sync with MailChimp and other autoresponders
    • \n
    • Login Button – show a discrete link to the login form, or WP admin if you’re logged in
    • \n
    • Social icons/links – new ones are added with every update; let us know if we missed your favorite ones\n
        \n
      • Facebook
      • \n
      • Twitter
      • \n
      • LinkedIn
      • \n
      • YouTube
      • \n
      • Vimeo
      • \n
      • Pinterest
      • \n
      • Dribbble
      • \n
      • Behance
      • \n
      • Instagram
      • \n
      • Email
      • \n
      • Phone
      • \n
      • Skype
      • \n
      • Telegram
      • \n
      • WhatsApp
      • \n
      • Tumblr
      • \n
      • VK
      • \n
      \n
    • \n
    • Whitelisted User Roles – user roles who see the site, instead of under construction page
    • \n
    • Whitelisted Users – users who see the site, instead of under construction page
    • \n
    \n

    Under Construction Page is compatible with the following caching plugins: W3 Total Cache, WP Super Cache, Endurance Page Cache, SiteGround SuperCacher, WP Fastest Cache, Swift Performance Cache, WP Rocket, Cache Enabler, and Hummingbird cache.

    \n

    What are others saying about the Under Construction Page plugin

    \n
      \n
    • WHSR wrote an in-depth guide on how to “Grow Your Blog Before It Is Born” featuring Under Construction Page
    • \n
    • John Fraskos from Codestag says it’s “very friendly and easy to use”
    • \n
    • WP Pluginsify wrote a review
    • \n
    • Erik from NoPassiveIncome points out: “plugin is so easy and quick to use”
    • \n
    • Planet WP gave it 5/5 stars
    • \n
    • FirstSiteGuide says: “a perfect choice”
    • \n
    • WPblog wrote a review as well
    • \n
    • WP TopDog had Daniel explain how to use the Under Construction Page
    • \n
    \n

    GDPR Compatibility
    \nWe are not lawyers. Please do not take any of the following as legal advice.
    \nUnder Construction plugin uses Bunny Fonts on the front end, and in the admin. Usage of the Google Analytics service is optional. No other resources are loaded from or shared with 3rd parties. Opting to use Bunny Fonts and/or Google Analytics will result in data sharing/tracking as described in their terms of service.
    \nIf you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    \n", "screenshots": "
    1. \"Build

      Build an under construction page in less than a minute with over 30 themes

    2. \"Under

      Under Construction Text theme

    3. \"Mad

      Mad Designer theme

    4. \"Plain

      Plain Text theme

    5. \"Under

      Under Construction theme

    6. \"Things

      Things Went Dark theme

    7. \"Forklift

      Forklift at Work theme

    8. \"Cyber

      Cyber Chick theme

    9. \"Rocket

      Rocket Launch theme

    10. \"Loader

      Loader at Work theme

    11. \"Cyber

      Cyber Chick Dark theme

    12. \"Safe

      Safe theme

    13. \"People

      People at Work theme

    14. \"Windmill

      Windmill theme

    15. \"Sad

      Sad Site theme

    16. \"Lighthouse\"

      Lighthouse

    17. \"Hot

      Hot Air Balloon

    18. \"People

      People at Work #2 theme

    19. \"Rocket

      Rocket Launch #2 theme

    20. \"Light

      Light Bulb theme

    21. \"Ambulance

      Ambulance theme

    22. \"Laptop

      Laptop theme

    23. \"Puzzles

      Puzzles theme contributed by Ralf Biester

    24. \"Internet

      Internet of Things

    25. \"Setup

      Setup theme

    26. \"Stop

      Stop theme

    27. \"Clock

      Clock theme

    28. \"Bulldozer

      Bulldozer theme

    29. \"Christmas

      Christmas theme

    30. \"Hard

      Hard Worker theme

    31. \"Temporarily

      Temporarily Closed theme

    32. \"Dumper

      Dumper Truck theme

    33. \"000webhost

      000webhost theme

    34. \"Work

      Work Desk theme

    35. \"Research

      Research theme

    36. \"Main

      Main settings

    37. \"Design

      Design settings

    38. \"Content

      Content settings

    39. \"Access

      Access settings

    40. \"Support\"

      Support

    ", "installation": "

    Follow the usual routine;

    \n
      \n
    1. Open WordPress admin, go to Plugins, click Add New
    2. \n
    3. Enter “under construction page” in search and hit Enter
    4. \n
    5. Plugin will show up as the first on the list, click “Install Now”
    6. \n
    7. Activate & open plugin’s settings page located under the Settings menu
    8. \n
    \n

    Or if needed, upload manually;

    \n
      \n
    1. Download the plugin.
    2. \n
    3. Unzip it and upload to /wp-content/plugins/
    4. \n
    5. Open WordPress admin – Plugins and click “Activate” next to the plugin
    6. \n
    7. Activate & open plugin’s settings page located under the Settings menu
    8. \n
    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/under-construction-page.1.1.zip", "2.0": "https://downloads.wordpress.org/plugin/under-construction-page.2.0.zip", "3.0": "https://downloads.wordpress.org/plugin/under-construction-page.3.0.zip", "4.0": "https://downloads.wordpress.org/plugin/under-construction-page.4.0.zip", "1.15": "https://downloads.wordpress.org/plugin/under-construction-page.1.15.zip", "1.20": "https://downloads.wordpress.org/plugin/under-construction-page.1.20.zip", "1.22": "https://downloads.wordpress.org/plugin/under-construction-page.1.22.zip", "1.24": "https://downloads.wordpress.org/plugin/under-construction-page.1.24.zip", "1.25": "https://downloads.wordpress.org/plugin/under-construction-page.1.25.zip", "1.30": "https://downloads.wordpress.org/plugin/under-construction-page.1.30.zip", "1.35": "https://downloads.wordpress.org/plugin/under-construction-page.1.35.zip", "1.40": "https://downloads.wordpress.org/plugin/under-construction-page.1.40.zip", "1.45": "https://downloads.wordpress.org/plugin/under-construction-page.1.45.zip", "1.50": "https://downloads.wordpress.org/plugin/under-construction-page.1.50.zip", "1.51": "https://downloads.wordpress.org/plugin/under-construction-page.1.51.zip", "1.55": "https://downloads.wordpress.org/plugin/under-construction-page.1.55.zip", "1.60": "https://downloads.wordpress.org/plugin/under-construction-page.1.60.zip", "1.65": "https://downloads.wordpress.org/plugin/under-construction-page.1.65.zip", "1.66": "https://downloads.wordpress.org/plugin/under-construction-page.1.66.zip", "1.70": "https://downloads.wordpress.org/plugin/under-construction-page.1.70.zip", "1.75": "https://downloads.wordpress.org/plugin/under-construction-page.1.75.zip", "1.80": "https://downloads.wordpress.org/plugin/under-construction-page.1.80.zip", "1.85": "https://downloads.wordpress.org/plugin/under-construction-page.1.85.zip", "1.90": "https://downloads.wordpress.org/plugin/under-construction-page.1.90.zip", "1.95": "https://downloads.wordpress.org/plugin/under-construction-page.1.95.zip", "1.96": "https://downloads.wordpress.org/plugin/under-construction-page.1.96.zip", "2.05": "https://downloads.wordpress.org/plugin/under-construction-page.2.05.zip", "2.10": "https://downloads.wordpress.org/plugin/under-construction-page.2.10.zip", "2.15": "https://downloads.wordpress.org/plugin/under-construction-page.2.15.zip", "2.20": "https://downloads.wordpress.org/plugin/under-construction-page.2.20.zip", "2.25": "https://downloads.wordpress.org/plugin/under-construction-page.2.25.zip", "2.30": "https://downloads.wordpress.org/plugin/under-construction-page.2.30.zip", "2.35": "https://downloads.wordpress.org/plugin/under-construction-page.2.35.zip", "2.40": "https://downloads.wordpress.org/plugin/under-construction-page.2.40.zip", "2.45": "https://downloads.wordpress.org/plugin/under-construction-page.2.45.zip", "2.50": "https://downloads.wordpress.org/plugin/under-construction-page.2.50.zip", "2.55": "https://downloads.wordpress.org/plugin/under-construction-page.2.55.zip", "2.60": "https://downloads.wordpress.org/plugin/under-construction-page.2.60.zip", "2.65": "https://downloads.wordpress.org/plugin/under-construction-page.2.65.zip", "2.66": "https://downloads.wordpress.org/plugin/under-construction-page.2.66.zip", "2.70": "https://downloads.wordpress.org/plugin/under-construction-page.2.70.zip", "2.75": "https://downloads.wordpress.org/plugin/under-construction-page.2.75.zip", "2.80": "https://downloads.wordpress.org/plugin/under-construction-page.2.80.zip", "2.85": "https://downloads.wordpress.org/plugin/under-construction-page.2.85.zip", "2.90": "https://downloads.wordpress.org/plugin/under-construction-page.2.90.zip", "2.95": "https://downloads.wordpress.org/plugin/under-construction-page.2.95.zip", "3.05": "https://downloads.wordpress.org/plugin/under-construction-page.3.05.zip", "3.10": "https://downloads.wordpress.org/plugin/under-construction-page.3.10.zip", "3.15": "https://downloads.wordpress.org/plugin/under-construction-page.3.15.zip", "3.20": "https://downloads.wordpress.org/plugin/under-construction-page.3.20.zip", "3.25": "https://downloads.wordpress.org/plugin/under-construction-page.3.25.zip", "3.30": "https://downloads.wordpress.org/plugin/under-construction-page.3.30.zip", "3.31": "https://downloads.wordpress.org/plugin/under-construction-page.3.31.zip", "3.35": "https://downloads.wordpress.org/plugin/under-construction-page.3.35.zip", "3.40": "https://downloads.wordpress.org/plugin/under-construction-page.3.40.zip", "3.45": "https://downloads.wordpress.org/plugin/under-construction-page.3.45.zip", "3.50": "https://downloads.wordpress.org/plugin/under-construction-page.3.50.zip", "3.55": "https://downloads.wordpress.org/plugin/under-construction-page.3.55.zip", "3.60": "https://downloads.wordpress.org/plugin/under-construction-page.3.60.zip", "3.65": "https://downloads.wordpress.org/plugin/under-construction-page.3.65.zip", "3.70": "https://downloads.wordpress.org/plugin/under-construction-page.3.70.zip", "3.75": "https://downloads.wordpress.org/plugin/under-construction-page.3.75.zip", "3.80": "https://downloads.wordpress.org/plugin/under-construction-page.3.80.zip", "3.81": "https://downloads.wordpress.org/plugin/under-construction-page.3.81.zip", "3.82": "https://downloads.wordpress.org/plugin/under-construction-page.3.82.zip", "3.83": "https://downloads.wordpress.org/plugin/under-construction-page.3.83.zip", "3.85": "https://downloads.wordpress.org/plugin/under-construction-page.3.85.zip", "3.86": "https://downloads.wordpress.org/plugin/under-construction-page.3.86.zip", "3.87": "https://downloads.wordpress.org/plugin/under-construction-page.3.87.zip", "3.88": "https://downloads.wordpress.org/plugin/under-construction-page.3.88.zip", "3.89": "https://downloads.wordpress.org/plugin/under-construction-page.3.89.zip", "3.90": "https://downloads.wordpress.org/plugin/under-construction-page.3.90.zip", "3.91": "https://downloads.wordpress.org/plugin/under-construction-page.3.91.zip", "3.92": "https://downloads.wordpress.org/plugin/under-construction-page.3.92.zip", "3.93": "https://downloads.wordpress.org/plugin/under-construction-page.3.93.zip", "3.95": "https://downloads.wordpress.org/plugin/under-construction-page.3.95.zip", "3.96": "https://downloads.wordpress.org/plugin/under-construction-page.3.96.zip", "3.97": "https://downloads.wordpress.org/plugin/under-construction-page.3.97.zip", "3.98": "https://downloads.wordpress.org/plugin/under-construction-page.3.98.zip", "3.99": "https://downloads.wordpress.org/plugin/under-construction-page.3.99.zip", "4.01": "https://downloads.wordpress.org/plugin/under-construction-page.4.01.zip", "4.02": "https://downloads.wordpress.org/plugin/under-construction-page.4.02.zip", "4.03": "https://downloads.wordpress.org/plugin/under-construction-page.4.03.zip", "trunk": "https://downloads.wordpress.org/plugin/under-construction-page.zip"}, "downloaded": 12180046, "description": "

    Create an Under Construction Page, Maintenance Mode Page, Coming Soon Page or a Landing Page that takes less than a minute to install & configure. Under Construction won’t waste your time! It’s simple, fast, efficient & user-friendly with great templates users love. Under Construction uses Bunny Fonts for GDPR compatibility.

    \n\n
    \n

    PRO version offers more than 50 extra features and options including the drag&drop builder, over a million hi-res searchable images, 300+ templates, affiliate&traffic tracking, advanced access control, MailChimp, Zapier & universal autoresponder integration, white-label license mode and priority support. Find out more on the official plugin site.

    \n
    \n

    A simple, no-nonsense under construction plugin for all those situations when you have to hide the site behind an Under Construction page for a while. Live examples are available on the Under Construction website. Give us a shout on Twitter @WebFactoryLtd or check out the video.

    \n

    Thanks to our partnership with Weglot, UCP is fully multilanguage ready and you can instantly translate your under construction page to 100+ languages with one click.

    \n

    If you’re having problems with SSL or HTTPS try our free WP Force SSL plugin. It’s a great plugin to enable SSL and fix SSL issues.

    \n

    Options

    \n
      \n
    • Under construction mode – on / off
    • \n
    • Automatic End date & time – automatically disable under construction mode on a set date
    • \n
    • Google Analytics Tracking ID – enable tracking via Google Analytics
    • \n
    • Theme – test all available themes (200+)
    • \n
    • Custom CSS – adjust any part of the page to fit your needs
    • \n
    • Title – page title, for SEO
    • \n
    • Description – page description, for SEO
    • \n
    • Headline – main headline/title
    • \n
    • Content – anything you need to display
    • \n
    • Optin box, optin popup – collect leads and emails and sync with MailChimp and other autoresponders
    • \n
    • Login Button – show a discrete link to the login form, or WP admin if you’re logged in
    • \n
    • Social icons/links – new ones are added with every update; let us know if we missed your favorite ones\n
        \n
      • Facebook
      • \n
      • Twitter
      • \n
      • LinkedIn
      • \n
      • YouTube
      • \n
      • Vimeo
      • \n
      • Pinterest
      • \n
      • Dribbble
      • \n
      • Behance
      • \n
      • Instagram
      • \n
      • Email
      • \n
      • Phone
      • \n
      • Skype
      • \n
      • Telegram
      • \n
      • WhatsApp
      • \n
      • Tumblr
      • \n
      • VK
      • \n
      \n
    • \n
    • Whitelisted User Roles – user roles who see the site, instead of under construction page
    • \n
    • Whitelisted Users – users who see the site, instead of under construction page
    • \n
    \n

    Under Construction Page is compatible with the following caching plugins: W3 Total Cache, WP Super Cache, Endurance Page Cache, SiteGround SuperCacher, WP Fastest Cache, Swift Performance Cache, WP Rocket, Cache Enabler, and Hummingbird cache.

    \n

    What are others saying about the Under Construction Page plugin

    \n
      \n
    • WHSR wrote an in-depth guide on how to “Grow Your Blog Before It Is Born” featuring Under Construction Page
    • \n
    • John Fraskos from Codestag says it’s “very friendly and easy to use”
    • \n
    • WP Pluginsify wrote a review
    • \n
    • Erik from NoPassiveIncome points out: “plugin is so easy and quick to use”
    • \n
    • Planet WP gave it 5/5 stars
    • \n
    • FirstSiteGuide says: “a perfect choice”
    • \n
    • WPblog wrote a review as well
    • \n
    • WP TopDog had Daniel explain how to use the Under Construction Page
    • \n
    \n

    GDPR Compatibility
    \nWe are not lawyers. Please do not take any of the following as legal advice.
    \nUnder Construction plugin uses Bunny Fonts on the front end, and in the admin. Usage of the Google Analytics service is optional. No other resources are loaded from or shared with 3rd parties. Opting to use Bunny Fonts and/or Google Analytics will result in data sharing/tracking as described in their terms of service.
    \nIf you opt to activate your PRO license in the plugin admin, some data will be shared with WebFactory Ltd; that’s clearly noted below the license activation form.

    \n", "donate_link": "", "num_ratings": 1282, "screenshots": {"1": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-1.gif?rev=1840052", "caption": "Build an under construction page in less than a minute with over 30 themes"}, "2": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-2.png?rev=1840052", "caption": "Under Construction Text theme"}, "3": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-3.png?rev=1840052", "caption": "Mad Designer theme"}, "4": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-4.png?rev=1840052", "caption": "Plain Text theme"}, "5": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-5.png?rev=1840052", "caption": "Under Construction theme"}, "6": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-6.png?rev=1840052", "caption": "Things Went Dark theme"}, "7": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-7.png?rev=1840052", "caption": "Forklift at Work theme"}, "8": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-8.png?rev=1840052", "caption": "Cyber Chick theme"}, "9": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-9.png?rev=1840052", "caption": "Rocket Launch theme"}, "10": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-10.png?rev=1840052", "caption": "Loader at Work theme"}, "11": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-11.png?rev=1840052", "caption": "Cyber Chick Dark theme"}, "12": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-12.png?rev=1840052", "caption": "Safe theme"}, "13": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-13.png?rev=1840052", "caption": "People at Work theme"}, "14": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-14.png?rev=1840052", "caption": "Windmill theme"}, "15": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-15.png?rev=1840052", "caption": "Sad Site theme"}, "16": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-16.png?rev=1840052", "caption": "Lighthouse"}, "17": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-17.png?rev=1840052", "caption": "Hot Air Balloon"}, "18": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-18.png?rev=1840052", "caption": "People at Work #2 theme"}, "19": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-19.png?rev=1840052", "caption": "Rocket Launch #2 theme"}, "20": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-20.png?rev=1840052", "caption": "Light Bulb theme"}, "21": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-21.png?rev=1840052", "caption": "Ambulance theme"}, "22": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-22.png?rev=1840052", "caption": "Laptop theme"}, "23": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-23.png?rev=1840052", "caption": "Puzzles theme contributed by Ralf Biester"}, "24": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-24.png?rev=1840052", "caption": "Internet of Things"}, "25": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-25.png?rev=1840052", "caption": "Setup theme"}, "26": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-26.png?rev=1840052", "caption": "Stop theme"}, "27": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-27.png?rev=1840052", "caption": "Clock theme"}, "28": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-28.png?rev=1840052", "caption": "Bulldozer theme"}, "29": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-29.png?rev=1840052", "caption": "Christmas theme"}, "30": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-30.png?rev=1846898", "caption": "Hard Worker theme"}, "31": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-31.png?rev=1862708", "caption": "Temporarily Closed theme"}, "32": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-32.png?rev=1883260", "caption": "Dumper Truck theme"}, "33": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-33.png?rev=1928264", "caption": "000webhost theme"}, "34": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-34.png?rev=1981084", "caption": "Work Desk theme"}, "35": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-35.png?rev=2158253", "caption": "Research theme"}, "36": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-36.png?rev=2158253", "caption": "Main settings"}, "37": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-37.png?rev=2158253", "caption": "Design settings"}, "38": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-38.png?rev=2158253", "caption": "Content settings"}, "39": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-39.png?rev=2158253", "caption": "Access settings"}, "40": {"src": "https://ps.w.org/under-construction-page/assets/screenshot-40.png?rev=2158253", "caption": "Support"}}, "support_url": "https://wordpress.org/support/plugin/under-construction-page/", "contributors": {"webfactory": {"avatar": "https://secure.gravatar.com/avatar/0128e826bd2acd495936bf252a4f0f80a3263c656cb8d69d9e306e2ea741a251?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/webfactory/", "display_name": "WebFactory"}}, "last_updated": "2025-08-10 8:41pm GMT", "preview_link": "", "requires_php": "5.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/under-construction-page.4.03.zip", "author_profile": "https://profiles.wordpress.org/webfactory/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-fc20-7397-b27d-33df5ec06934", "name": "Under Construction", "slug": "under-construction-page", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1754858460, "version": "4.03"}, "support_threads": 4, "requires_plugins": [], "short_description": "Easy to use Under Construction Page & Coming Soon Page. Enable Under Construction Mode in seconds & show you're Under Construction!", "author_block_count": "1", "author_block_rating": 91.42857142857198, "commercial_support_url": "", "support_threads_resolved": 4}'); -INSERT INTO public.plugins VALUES ('019a30c1-6743-729d-babd-57e3522f2c61', 'updraftplus', 'UpdraftPlus: WP Backup & Migration Plugin', 'Backup, restore or migrate your WordPress website to another host or domain. Schedule backups or run manually. Migrate in minutes.', '

    The UpdraftPlus Backup & Migration Plugin is trusted by the WordPress community to backup, restore and migrate their WordPress websites. UpdraftPlus is actively installed on more than 3 million websites around the world.

    -

    Backup with UpdraftPlus

    -

    UpdraftPlus is the world’s highest ranking and most popular scheduled backup and migration plugin. Backup to your preferred storage location and restore in just three clicks.

    -

    Backup to Dropbox, Google Drive, Amazon S3 (or compatible), Rackspace Cloud, FTP, DreamObjects, Openstack Swift or email.

    -

    The paid version also allows you to backup to Microsoft OneDrive, Microsoft Azure, Google Cloud, Backblaze B2, SFTP, SCP, pCloud, WebDAV or UpdraftVault, our integrated storage option for UpdraftPlus.

    -

    Backup manually or schedule to run every 2, 4, 8 or 12 hours, daily, weekly, monthly or fortnightly.

    -

    Restore with UpdraftPlus

    -

    Your WordPress website is vulnerable. Your site may get hacked. Something could go wrong with an update or your server could crash. You might need to reverse a change made or a mistake caused by human error.

    -

    Whatever the reason, you can restore your WordPress website in just a few clicks with UpdraftPlus. Choose which components to restore (e.g. plugins, themes, database etc.), click again to restore, then click again to return to the main screen.

    -

    Migrate with UpdraftPlus

    -

    It’s easy to migrate your WordPress website to another web host, server or domain with this free version of UpdraftPlus.

    -

    To migrate, simply download your database, plugins, themes etc. from the source site, then upload them into your destination site.

    -

    When migrating, a built-in search-and-replace engine identifies old strings and replaces these to reflect the new location. UpdraftPlus saves you time and reduces the risk of broken links or missing files associated with manual migrations.

    -

    Why UpdraftPlus?

    -

    Writing a reliable backup and migration plugin that ‘just works’ consistently across millions of different WordPress deployments is hard. UpdraftPlus is relied upon to do exactly that. We’re trusted and actively deployed on more websites around the world than any other WordPress backup and migration plugin.

    -

    UpdraftPlus:

    -
      -
    • Backs up, migrates and restores
    • -
    • Offers a huge number of remote storage locations
    • -
    • Allows you to schedule backups, so you can ‘set and forget’
    • -
    • Is comprehensive and easy to use
    • -
    • Is proven to work on over 3 million sites.
    • -
    -
    -

    UpdraftPlus Premium

    -

    The free version of UpdraftPlus will back up and migrate your website perfectly well. However if you need more features and options you can purchase our Premium version.

    -

    Backup and Migrate with UpdraftPlus Premium, and:

    -
      -
    • -

      Get automatic backups before updates. Restore the very latest version if a WordPress or plugin update breaks your site.

      -
    • -
    • -

      Backup Incrementally. Changes are added to the master, saving server resources vs repeatedly backing up in full.

      -
    • -
    • -

      Get more remote storage options including Microsoft OneDrive, SFTP, Microsoft Azure, WebDAV, Google Cloud, SCP, Backblaze and pCloud.

      -
    • -
    • -

      Get 1GB of integrated storage with UpdraftVault for 99.999% reliability, redundancy and scalability.

      -
    • -
    • -

      Get more control over how many backups are stored in a specified interval.
      -Restore from other backup plugins including BackWPup, BackupWordPress, Simple Backups and more.

      -
    • -
    • -

      Run backups at set times e.g. during periods of low traffic.

      -
    • -
    • -

      Backup to more than one location for added protection.

      -
    • -
    • -

      Get detailed reports. Includes cryptographic checksums so you can verify the integrity of the backup files and more.

      -
    • -
    • -

      Get Premium migration. Migrating to the destination site is more direct and can be done from the source site.

      -
    • -
    • -

      Get Multisite / multi-network compatibility.

      -
    • -
    • -

      Backup non-WP files and databases e.g. tables belonging to your e-commerce store or customisations to WordPress core.

      -
    • -
    • -

      Get database encryption.

      -
    • -
    • -

      Manage your backups and migrations from the WP-CLI.

      -
    • -
    • -

      Get Premium Support.

      -
    • -
    -

    Find out more on our comparison page. UpdraftPlus Premium is available for purchase here.

    -

    Managing multiple websites?

    -

    UpdraftCentral is a powerful remote control dashboard for WordPress that allows you to manage your backups, as well as updates, users, pages, posts, plugins and themes from one central location. Choose between:

    - -

    Optimize your sites centrally by combining the power of WP-Optimize and UpdraftCentral or manage your backups centrally by combining the power of UpdraftPlus with UpdraftCentral.

    -

    Need to create a temporary clone of your site?

    -

    UpdraftClone makes it quick and easy to create a temporary sandbox for changes you want to try out. Simply select the versions of WordPress and PHP that you want, and we’ll do the rest. More about UpdraftClone

    -

    The full suite of plugins from Team Updraft and friends

    -
      -
    • -

      UpdraftPlus.
      -Backup, migrate and restore. Rated 5* on the plugin directory and trusted by more than 3 million WordPress website owner

      -
    • -
    • -

      WP-Optimize.
      -Clean the database, compress images and caching. Optimize your WordPress website. 5* user rating. 1 million + active installs.

      -
    • -
    • -

      All-In-One Security (AIOS).
      -Secure your WordPress website. Comprehensive, feature rich and easy to use. 5* user rating and 1 million + active installs.

      -
    • -
    • -

      WP Overnight.
      -Quality Extensions for your WooCommerce store. 5* rated invoicing, order and product management, customer management solutions and more.

      -
    • -
    • -

      Easy Updates Manager.
      -Take control of updates. Lots of features for free, and a Premium version with even more – over 300,000 users.

      -
    • -
    • -

      Internal Link Juicer.Boost your SEO. Automate internal links within your WordPress website. Save time and rank higher in the search engines.

      -
    • -
    -

    For other useful, free plugins see our lead developer’s profile, here.

    -

    Are you multilingual? Can you translate?

    -

    Do you want to help people that speak your language to backup, migrate and restore their WordPress websites?

    -

    The UpdraftPlus backup, migration and restoration plugin is ready and waiting. The translation process is easy, and web-based – please go here for instructions: https://updraftplus.com/translate/.

    -

    Or, if you’re already an expert WordPress translator, just pick out the .pot file from the wp-content/plugins/updraftplus/languages/ directory – if you scan for translatable strings manually, then you need to get these functions: _x(), __(), _e(), _ex(), log_e().

    -

    Many thanks to our existing translators.

    -

    License

    -
    Copyright 2011-24 David Anderson
    -
    -This program is free software; you can redistribute it and/or modify
    -it under the terms of the GNU General Public License as published by
    -the Free Software Foundation; either version 3 of the License, or
    -(at your option) any later version.
    -
    -This program is distributed in the hope that it will be useful,
    -but WITHOUT ANY WARRANTY; without even the implied warranty of
    -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    -GNU General Public License for more details.
    -
    -You should have received a copy of the GNU General Public License
    -along with this program; if not, write to the Free Software
    -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    -
    -

    Non-English translators are provided by volunteers, and wordpress.org does not give plugin developers control over their translations; thus relying on them is at your own risk; UpdraftPlus cannot guarantee that translations from the original English are accurate.

    -

    We recognise and thank those mentioned at https://updraftplus.com/acknowledgements/ for code and/or libraries used and/or modified under the terms of their open source licences.

    -', '1.25.8', 'David Anderson / Team Updraft', '3.2', NULL, '6.8.3', 'https://downloads.wordpress.org/plugin/updraftplus.1.25.8.zip', '2012-05-22 00:00:00+00', '2025-10-06 15:23:00+00', 'https://profiles.wordpress.org/davidanderson/', 96, 8195, 42, 31, 3000000, 147298416, 'https://updraftplus.com', 'https://david.dw-perspective.org.uk/donate', NULL, NULL, 'https://wordpress.org/support/plugin/updraftplus/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "UpdraftPlus: WP Backup & Migration Plugin", "slug": "updraftplus", "tags": {"backup": "backup", "migration": "migration", "cloud-backup": "cloud backup", "database-backup": "database backup", "wordpress-backup": "wordpress backup"}, "added": "2012-05-22", "icons": {"1x": "https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200", "2x": "https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200"}, "author": "David Anderson / Team Updraft", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200", "high": "https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200"}, "ratings": {"1": 242, "2": 43, "3": 49, "4": 153, "5": 7708}, "version": "1.25.8", "homepage": "https://updraftplus.com", "requires": "3.2", "sections": {"faq": "\n
    \nHow do I install the UpdraftPlus backup & migration plugin?\n\n

    \n

    Here are the installation guidelines from our YouTube channel or from our website.

    \n

    \n
    \nWhat if I have a problem / need support ?\n\n

    \n

    If you’re struggling to backup, migrate or restore there’s help available.

    \n

    Search existing topics on the WordPress support forum or post a new one. Our support and development teams check and respond to queries everyday.

    \n

    UpdraftPlus Premium customers can log a ticket directly with our support and development teams via the UpdraftPlus support hub.

    \n

    Before you get in touch, please ensure that you have read through our <a href=https://updraftplus.com/frequently-asked-questions/”>FAQs and that you’ve updated to the latest release of our plugin.

    \n

    It helps greatly if you can include the backup log and as much other information as possible in your report, for example the PHP version, your website, the error description, how you got to the page that caused it, any other relevant plugins you have installed, plus any other information that might be of use.

    \n

    To find the backup log: there are links to download the logs on the UpdraftPlus settings page in the plugin – or you may be emailed it. Failing that, FTP into the directory wp-content/updraft and look for it there.

    \n

    If you know how, please send your PHP error logs – just the few lines that appear when you run a backup, often the file called error_log, possibly in your wp-admin directory which you can check via FTP. If you’re a programmer that can debug and send a patch, that’s even better.

    \n

    \n
    \nWhen it comes to migration, what does the premium plugin do that the free plugin can’t?\n\n

    \n

    Migrating in the free plugin involves downloading the backups from the source site then uploading these to the destination site.

    \n

    To find the backup log: there are links to download the logs on the UpdraftPlus settings page- or you may be emailed it. Failing that, FTP into the directory wp-content/updraft and look for it there.

    \n

    Both free and Premium plugins include a built-in search-and-replace engine to replace old strings with the new location.

    \n

    If migration is all you require, and for simple single site migrations the free plugin will likely be enough to meet your needs. If you have additional needs around backups e.g. the ability to backup before updates, if you require more remote storage locations or if you have a WordPress multisite then we recommend UpdraftPlus Premium for the additional benefits that it brings.

    \n

    \n
    \nUpdraftPlus runs out of time when it’s trying to backup, after I have left it for some time to give it a good chance. What can I do?\n\n

    \n

    This problem is probably caused by your account being starved of resources by your (cheap) web host provider. This is far from ideal; although UpdraftPlus supports resuming backup runs right from the beginning to avoid everything having to be done at once, it has its limits. The best thing is to choose a more reputable web host. Failing this, try going into the “Expert settings” and reducing the size at which zip files are split. UpdraftPlus is known to successfully backup websites that run into the multiple-gigabytes on web servers that are not resource-starved.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Prima backup/restore tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rwerdmuller on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Deze tool heeft mij al diverse keren uit de brand geholpen. Tot nu toe altijd het verwachte en gewenste resultaat!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    All backed up

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mkehoss on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using UpdraftPlus, basic version for several years. It''s easy to create backups, and though I''ve never needed to perform a restoration, that looks pretty straightforward as well.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Maybe it's me, but...

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy martinvie on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works well for backup on same site but troublesome for restoring backup from a different site.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Saved My Butt

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy DivaMom on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am in love since MON. Between Updraft back up and chap gpt, I am all good. Seriously, one of my top three plug-in''s.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy panduka on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excelente Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bancodeestagios on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very easy to use.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shivadattasougaijam on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    One of the best plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excelente Plugin para Backups

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pablo Scherpa (scherpablo) on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Super recomendable

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    LOVE THIS!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy katheevz on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It does exactly what I need it to and has since I started using it almost a year ago!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Goooood

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy diamtrade on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Super and free save mass ass few times. Always have a fresh update !!!

    \n
    \n
    \n", "changelog": "

    The UpdraftPlus backup blog is the best place to learn in more detail about any important changes.

    \n

    N.B. Paid versions of UpdraftPlus Backup / Restore have a version number which is 1 higher in the first digit, and has an extra component on the end, but the changelog below still applies. i.e. changes listed for 1.16.32.x of the free version correspond to changes made in 2.16.32.x of the paid version.

    \n

    1.25.8 – 07/Oct/2025

    \n
      \n
    • FIX: A fatal error in UpdraftCentral when trying to manage posts when no posts exist.
    • \n
    • FIX: During a failure in the file copy process while restoring, a directory was created with the same name as the file, and the restoration process persisted when it ought to have been stopped
    • \n
    • FIX: PHP fatal error in WP CLI commands for listing or scanning existing backups on PHP 8.0+ after a rescan
    • \n
    • TWEAK: Add UpdraftCentral support to import_settings function with return values
    • \n
    • TWEAK: Add support for new Amazon AWS S3 regions
    • \n
    • TWEAK: Added Burst Statistics to the family plugin list
    • \n
    • TWEAK: Adjust the backup logic to recognize invisible columns, and when that occurs, use a query that explicitly specifies the required columns instead of relying on “SELECT *”.
    • \n
    • TWEAK: Ensure the restore process terminates with an error when file copying/moving fails
    • \n
    • TWEAK: Improve the backup email report to better reflect the backup types and status.
    • \n
    • TWEAK: New endpoint for getting locked settings data for UpdraftCentral
    • \n
    • TWEAK: Perform a search and replace on __PHP_Incomplete_Class to make it work with unserialize() when object deserialization is not allowed.
    • \n
    • TWEAK: Refactoring site info section to deduplicate and read from single source
    • \n
    • TWEAK: Resolved a PHP warning triggered when uploading the plugin via the WP Plugins page — caused by translation functions (e.g. __()) being called too early.
    • \n
    • TWEAK: Some text was left out of the translation POT file, which meant that certain translator plugins and libraries could not find the text, making it impossible to translate.
    • \n
    • TWEAK: Update the db_size function to allow returning either data or html, depending on the argument that is passed in.
    • \n
    \n

    1.25.7 – 07/Aug/2025

    \n
      \n
    • FIX: A regression for verifying the presence of old folders in the backup directory; old folders created during the restoration of the “Others” entity were not detected correctly.
    • \n
    • FIX: The per-backup lock entries were not removed, resulting in an accumulation of these entries in the database over time. (Includes clean-up of old entries).
    • \n
    • TWEAK: Add IDrive e2 and MEGA to the S3-Compatible storage list
    • \n
    • TWEAK: Internal function call to prevent a PHP 8.1 deprecation notice on fresh WP installs
    • \n
    • TWEAK: Add wp-staging to the default uploads exclusion list
    • \n
    • TWEAK: Add UpdraftCentral handler for site icon upload request.
    • \n
    • TWEAK: Added support for the database view dashicon in WordPress versions prior to 5.5.
    • \n
    • TWEAK: Include site icon information in the ‘get_site_icon’ response of the UpdraftCentral core module.
    • \n
    • TWEAK: Resolve the empty list issue on the backup email reports created by the UpdraftPlus free version
    • \n
    • TWEAK: The “Get every feature of UpdraftPlus Premium” box shouldn’t be displayed after purchases got claimed/activated
    • \n
    • TWEAK: Remove seasonal (new year, summer, spring and plugin collection) sale notices
    • \n
    • TWEAK: Handle unsupported character set defined for table fields during database pre-restoration.
    • \n
    • TWEAK: Updated links in the Premium Extensions tab of the plugin’s admin menu page.
    • \n
    \n

    1.25.6 – 27/May/2025

    \n
      \n
    • FIX: A regression that prevented the remote storage label from being updated
    • \n
    • FIX: A regression that could cause unintended behaviour when restoring special files
    • \n
    • FIX: A fatal error when executing a standalone php backup script with “do_action(‘updraft_backup_all’)”.
    • \n
    • FIX: Regression that caused certain features (e.g. PHP Info) to break due to a missing HTML attribute on the triggering element
    • \n
    • FIX: An issue that caused migration failure for sites using the Performance Lab plugin or other plugins implementing an object cache drop-in
    • \n
    • TWEAK: handle non fatal file rename failure during restore
    • \n
    • TWEAK: The automatic backup feature is now disabled by default on new installs
    • \n
    • TWEAK: return post status and formatted date from UDC post API
    • \n
    • TWEAK: Replace a call to unserialize() in the Dropbox storage library
    • \n
    • TWEAK: Validate the DreamObjects endpoint to ensure only expected DreamObjects enpoint formats can pass through.
    • \n
    • TWEAK: Position the “includes all tables not listed below” option at the beginning of the first known table in the DB restoration widget.
    • \n
    • TWEAK: Add a new default endpoint in DreamObjects along with UI to allow users to add custom endpoint in the format “s3..dream.io”.
    • \n
    • TWEAK: The Azure Storage Service add-on now requires PHP 5.6 or higher to support the mandatory use of TLS 1.2, which will be enforced starting August 31, 2025.
    • \n
    \n

    1.25.5 – 17/Apr/2025

    \n
      \n
    • FIX: A bug that prevented the Rackspace “Create new API user and container” dialog from opening.
    • \n
    • TWEAK: An HTTP header intended to terminate the browser’s connection was incorrectly assigned a value that the header does not support.
    • \n
    • TWEAK: Ability to automatically choose the proper checkout page when the user is about to buy TeamUpdraft products from within the plugin
    • \n
    • TWEAK: Clear Divi theme CSS cache at the end of the restoration process
    • \n
    • TWEAK: Resolve PHP warning in pCloud addon when upgrading from free to premium version.
    • \n
    • TWEAK: Update error messages when the user fails to connect to their TeamUpdraft account on the ‘Premium/Extensions’ tab.
    • \n
    \n

    1.25.4 – 24/Mar/2025

    \n
      \n
    • FIX: Regression in 1.25.3 – missing database encryption input field due to the use of the “wp_kses_post” function that doesn’t allow “” tag to be rendered
    • \n
    • TWEAK: Add new fields to UpdraftCentral handler
    • \n
    \n

    1.25.3 – 21/Mar/2025

    \n
      \n
    • FIX: An issue that prevented an UpdraftClone backup from sending when attempting to boot an UpdraftClone from WP_CLI
    • \n
    • FIX: An issue that prevented changing the default UpdraftClone region when attempting to boot an UpdraftClone from WP_CLI
    • \n
    • TWEAK: The “x-amz-content-sha256” request header is now signed and included in the S3 signature version 4. Some S3-based providers mandate the signing of this header for accurate signature calculation.
    • \n
    • TWEAK: Introduce a new constant named “UPDRAFTPLUS_S3_EXCLUDE_SIGV4_CONTENT_SHA256_HEADER”. This constant allows for the exclusion of the “x-amz-content-sha256” headers from being signed if desired; it accepts a boolean value, defaulting to false.
    • \n
    • TWEAK: Add ‘noopener, noreferrer’ window features to the Javascript’s window.open() call to prevent the target page from changing content of the original page
    • \n
    • TWEAK: Favicon fetching feature for UpdraftCentral
    • \n
    • TWEAK: Minor tweak to “updates” module to include icons to plugin and screenshot url to theme update items
    • \n
    • TWEAK: New UpdraftCentral module for background fetching
    • \n
    • TWEAK: Revise the wording found in the expert settings regarding the deletion of local backup files
    • \n
    • TWEAK: Update seasonal notices
    • \n
    • TWEAK: Enhance the notifications to signify the introduction of other plugins that belong to the same plugin family
    • \n
    • TWEAK: To avoid CORS issues and ensure the UpdraftPlus plugin is functional and accessible via the UpdraftCentral dashboard, the hostname and/or domain origin is changed from updraftplus.com to teamupdraft.com.
    • \n
    • COMPATIBILITY: Resolved PHP deprecation warnings in lockadmin.php by eliminating the use of dynamic properties
    • \n
    \n

    1.25.2 – 26/Feb/2025

    \n
      \n
    • FEATURE: Added a “Cron events” tab in the Advanced Tools section to check for the presence of the UpdraftPlus cron job.
    • \n
    • FIX: Resolve the issue of uploads to pCloud failing after a folder name change by resetting the “folderid” whenever the folder name is updated.
    • \n
    • TWEAK: Add site information for WooCommerce and HPOS support to the database backup header.
    • \n
    • TWEAK: Create a log entry when a bot verification page appears during the file upload in the migration procedure.
    • \n
    • TWEAK: Improve error message clarity for failed connection tests in migration.
    • \n
    • TWEAK: Include details in the backup log file about the status and availability of the proxy configured in the system.
    • \n
    • TWEAK: Update the Google library to support the WP_PROXY_HOST and WP_PROXY_PORT constants.
    • \n
    • TWEAK: Update the link for Onedrive and Azure app creation
    • \n
    • COMPATIBILITY: Got rid of PHP 8.4 deprecation messages caused by the E_STRICT constant usage
    • \n
    \n

    1.25.1 – 11/Jan/2025

    \n
      \n
    • SECURITY: Fix a non-persistent reflected XSS vulnerability due to a missing nonce combined with missing sanitisation. This could allow an attacker, who persuaded you to click a personally-crafted link to your site’s dashboard whilst you were logged in, to once run JavaScript code in your dashboard. Thanks to Asaf Mozes for finding and responsibly disclosing this issue.
    • \n
    • FIX: Prevent the restoration from failing when there is a ‘sync-xhr=()’ permission policy on the response header.
    • \n
    • FIX: Improve the approach of acquiring a suggested region for Amazon AWS S3 if a failure arises during the getBucketLocation() call, particularly when the XML response fails to provide a field for the suggested region – this resolves issues with regions (e.g. us-east-2) which recently changed their response behaviour
    • \n
    • TWEAK: Broaden the support to incorporate the “ap-southeast-4” region of Amazon AWS S3 and additional recently updated regions
    • \n
    • TWEAK: A regression in the paid version update checker to version 4.13.2, resulting in non-appearance of notices concerning subscription status or WP version compatibility.
    • \n
    \n

    1.24.12 – 23/Dec/2024

    \n
      \n
    • FIX: The pre-restoration stage failed to properly address the tables that were to be excluded, which caused a logical error that misread the checked “include all tables not listed” option as an instruction to restore every table
    • \n
    • FIX: Update PHPSecLib library to version 2.0.48 which has the fixes for the “gmp_pow(): base and exponent overflow” on certain PHP versions and could cause backups to fail on the SFTP remote storage
    • \n
    • TWEAK: Complete the review and removal of calls to the unserialize() PHP function allowing class instantiation begun in 1.24.7. (The final removal involved a theoretical security defect, if your development site allowed an attacker to post content to it which you migrated to another site, and which contained customised code that could perform destructive actions which the attacker knew about, prior to you then cloning the site. The result of this removal is that some search-replaces, highly unlikely to be encountered in practice, will be skipped).
    • \n
    • TWEAK: Drop search and replace feature for PHP 5.2 users (to fulfil the preceding item)
    • \n
    • TWEAK: Tweak UpdraftCentral media module to add “has_image_editor” property to each media item
    • \n
    • TWEAK: On the restoration screen in a multisite configuration, the dropdown labeled “which site to restore” was covering other HTML elements, which caused some buttons to be positioned at the bottom instead of at the top
    • \n
    • TWEAK: Avoid deregistering jQuery-UI CSS if already printed by other plugins to prevent compatibility issues
    • \n
    • TWEAK: In the context of database restoration, the execution of LOCK and/or ALTER SQL statements must be avoided for any tables that are part of the “skipped tables” list
    • \n
    • TWEAK: openssl_free_key() is only needed on PHP < 8
    • \n
    • TWEAK: Various coding style changes to comply with “Plugin Check” rules
    • \n
    \n

    1.24.11 – 15/Nov/2024

    \n
      \n
    • TWEAK: Do not request drive.readonly scope on Google Drive connections, due to Google’s app permissions review (unannounced and requires us to create a Youtube video for their review process) – this means that (until the review completes) new connections to Google Drive can only access backups created by UpdraftPlus directly, and not backups which you manually upload to Google Drive. This restores the ability to make new connections to Google Drive.
    • \n
    • TWEAK: Adjustment of the UpdraftPlus_S3_Compat class to preserve compatibility with the external UpdraftPlus AWS SDK plugin (https://github.com/DavidAnderson684/updraftplus-aws-sdk).
    • \n
    \n

    1.24.9 – 14/Nov/2024

    \n
      \n
    • FIX: A regression in 1.24.8 when handling restoration of wp-config.php
    • \n
    • TWEAK: The changes in handling of loading text domains in 1.24.8 did not cover most cases
    • \n
    • TWEAK: Introduce the “updraftplus_use_builtin_wpcore_restoration” filter which can be used to restore WP-Core entity using a different WP-Core restoration mechanism especially in a case that the admin-ajax.php file couldn’t be deleted during the restoration
    • \n
    \n

    1.24.8 – 13/Nov/2024

    \n
      \n
    • TWEAK: Add descriptions for the ‘Clone Package’ dropdown when creating a clone.
    • \n
    • TWEAK: Move the “load_plugin_textdomain” call from being called through “plugins_loaded” action to being called via “init” action
    • \n
    • TWEAK: Update the log message to specify that backup files are marked as “processed” when no remote storage is selected, and as “uploaded” when remote storage is selected.
    • \n
    • TWEAK: Some code tidying in the restore class
    • \n
    \n

    1.24.7 – 04/Nov/2024

    \n
      \n
    • TWEAK: Include the .part file extension into the cleanup list, guaranteeing that files associated with this extension are regularly deleted from the backup directory
    • \n
    • TWEAK: The update functionalities in the WordPress plugin information box (6.5 and later) have been adjusted to stop updates from taking place in the same window, ensuring that the “auto-backup before update” dialog appears as intended
    • \n
    • TWEAK: Add customized “unserialized” method into the UpdraftPlus class which can handle the use of the “options” argument or its absence when running across different PHP versions
    • \n
    • TWEAK: Add the UPDRAFTPLUS_SEND_UNWRITABLE_BACKUP_DIRECTORY_EMAIL constant to disable the sending of unwritable backup directory emails to users.
    • \n
    • TWEAK: Clearer notifications to users regarding unconfigured remote storage settings and/or the selection of remote storage that are not part of their UpdraftPlus version
    • \n
    • TWEAK: During the resumption of OneDrive’s chunk uploads, the authorisation header and bearer token should not be included as it may lead to an unauthenticated error due to a different upload URL.
    • \n
    • TWEAK: Implement code to enable automatic activation of the UpdraftPlus plugin during the migration process from a multisite setup to a standalone site
    • \n
    • TWEAK: In a multisite environment, ensure that users can access the UpdraftPlus plugin page even in the absence of the WP_ALLOW_MULTISITE constant
    • \n
    • TWEAK: UpdraftClone now supports PHP 8.4
    • \n
    • TWEAK: Prevent a potential PHP deprecation notice when zip creation fails
    • \n
    \n

    1.24.6 – 25/Sep/2024

    \n
      \n
    • TWEAK: In 1.24.5, the browser title wrongly displayed as “UpdraftPlus” when accessing an unrelated plugin page using the main menu.
    • \n
    \n

    1.24.5 – 24/Sep/2024

    \n
      \n
    • FIX: Incorrect regular expression for DigitalOcean Spaces endpoint
    • \n
    • FIX: CSS conflicts with the LearnDash LMS Instructor Role Add-on plugin which caused some UI elements to disappear
    • \n
    • TWEAK: Reorganize UpdraftPlus in left-hand menu and rename it to “UpdraftPlus”; to disable it, follow this guide: https://updraftplus.com/new-location-of-updraftplus-in-the-wordpress-dashboard/
    • \n
    • TWEAK: Add span wrapper to UpdraftCentral connection failed message
    • \n
    • TWEAK: Add the “Go here to complete your settings” link into the appropriate admin notice that when clicked will jump to the UpdraftVault configuration if no settings are specified.
    • \n
    • TWEAK: Adjust regex patterns that didn’t match some temporary files, causing them to not be automatically removed
    • \n
    • TWEAK: After a restoration, clicking “Delete old folders” will also remove the wp-config-pre-ud-restore-backup.php file
    • \n
    • TWEAK: On the settings page/tab; prevent the floating “Save changes” button from getting clicked multiple times and/or sending multiple AJAX requests
    • \n
    • TWEAK: Remove pCloud from the add-ons list on the “Premium / Extensions” tab (there is no change in its availability)
    • \n
    • TWEAK: Renamed wp-config-backup.php to wp-config-pre-ud-restore-backup.php to clarify its purpose as a backup file created before restoring WordPress core entities, and it will only be generated if the user does not select the “Over-write wp-config.php” option during restoration, as the previous name was too generic and could cause confusion
    • \n
    • TWEAK: The popup modal for automatic plugin updates fails to retain the backup checkbox selection when the “remember” option is enabled in a Multisite environment.
    • \n
    • TWEAK: Updated autobackup selector to resolve issues caused by the missing “update-link” class in WPForms Pro plugin
    • \n
    \n

    1.24.4 – 2/Jul/2024

    \n
      \n
    • FIX: Case-sensitive issue of bit field type names in a table.
    • \n
    • FIX: Resolved issue where backup files could not be deleted from remote storage when either the root directory was active or no directory was specified in the OneDrive configuration form.
    • \n
    • FIX: When users attempt to update a plugin using the “View Version x.x.x Details” link instead of choosing “Update Now,” the plugin is successfully updated; however, the UI incorrectly displays an “Update Failed” message
    • \n
    • FIX: Conflict with the Gravity Forms plugin when there was an older version of jQuery UI presented on the “Installed Plugins” page.
    • \n
    • TWEAK: Ensure compliance with Google Granular Consent and check for required permissions during storage access authorisation of Google Drive and Google Cloud
    • \n
    • TWEAK: Prevent PHP warning and deprecation messages after completing access authorisation to Google Drive storage.
    • \n
    • TWEAK: Prevent PHP warning when Dropbox remote storage has been authenticated and the page is refreshed.
    • \n
    • TWEAK: Added filter updraftplus_working_dir_localpath to allow temporary unzip path to be modified by developers
    • \n
    • TWEAK: Modify the displayed title of the plugin from “WordPress Backup & Migration Plugin” to “WP Backup & Migration Plugin” as required by the plugin directory team
    • \n
    • TWEAK: Parse certain php events and log proper error messages
    • \n
    \n

    1.24.3 – 30/Apr/2024

    \n
      \n
    • FIX: Regression in 1.23.16 for improving logs which then caused incorrect_offset error reported by Dropbox wasn’t properly handled.
    • \n
    • TWEAK: The UpdraftVault remote storage can handle Wasabi as well as Amazon S3 storage in the background.
    • \n
    • TWEAK: Fix WP_Theme_JSON_Resolver::theme_has_support deprecation warning for UpdraftCentral
    • \n
    • TWEAK: Prevent “PHP Warning: Undefined property: UpdraftPlus_BackupModule_pcloud::$description” during rescan remote storage.
    • \n
    • TWEAK: Prevent PHP deprecation warnings during database backups when encountering null values in bit field types.
    • \n
    • TWEAK: Show a warning message when the WP_ACCESSIBLE_HOSTS constant is defined and updraftplus.com is not permitted by its value
    • \n
    • TWEAK: Update notices
    • \n
    • TWEAK: Split multiple sentences into separate translation function calls.
    • \n
    • TWEAK: Trim spaces from S3-Compatible (Generic) endpoint.
    • \n
    \n

    1.24.2 – 26/Mar/2024

    \n
      \n
    • FIX: The “Continue restoration” and “Dismiss” buttons on the unfinished restoration dialog were not responsive to being pressed due to a recent regression
    • \n
    • FIX: Conflict with other plugins due to different version of third party library (Guzzle) and the composer autoload.php was called too early
    • \n
    • FIX: Undefined “NET_SCP_LOCAL_FILE” constant when SCP was in use for the SFTP/SCP remote storage
    • \n
    • TWEAK: Add compatibility fields when returning plugins and themes to UpdraftCentral
    • \n
    • TWEAK: Due to issues in some cURL versions 7.x in handling HTTP/2 connections, all HTTP connections to the OneDrive API are now forced to use HTTP/1.1 version, on cURL versions after 7.61 and before 8.0. Also, a constant named UPDRAFTPLUS_ONEDRIVE_CURL_HTTP_VERSION can be set in the wp-config.php file to change the default HTTP version to another preferred version
    • \n
    • TWEAK: Adjust margin to fix broken UI for the ‘View logs’ button on backups.
    • \n
    • TWEAK: Ensure all “SET SQL_MODE” statements in the database backup file are internally handled and are subjected only to a restoration outside UpdraftPlus plugin
    • \n
    • TWEAK: Prevent PHP 8.2 coding style deprecation notices in the autobackup addon
    • \n
    • TWEAK: In the context of OneDrive’s chunk upload, authorisation header and bearer token should not be included during upload session as it may lead to 401 HTTP status due to different upload URL
    • \n
    • TWEAK: Remove default value for updraftplus_https_to_http_additional_warning and updraftplus_http_to_https_additional_warning filters.
    • \n
    • TWEAK: Set the SQL_MODE to ‘NO_AUTO_VALUE_ON_ZERO’ in the database backup file.
    • \n
    • TWEAK: Seasonal notice content update for 2024
    • \n
    • TWEAK: During the operations that require phpseclib, include the composer autoload.php only when the phpseclib is really needed
    • \n
    \n

    1.24.1 – 21/Feb/2024

    \n
      \n
    • FEATURE: Implement Backblaze Object Lock support (Premium version)
    • \n
    • FIX: The email backup and basic report setting didn’t work causing notification email confirming backup status couldn’t be delivered to admin’s email address (free version)
    • \n
    • FIX: Fix WP-Optimize premium discovery for UpdraftCentral
    • \n
    • FIX: Regression in 1.23.16 for correcting calls to translation functions which then caused some HTML attributes to be empty
    • \n
    • FIX: Restoring backup sets via Migrate/Clone tab had caused all associated backup entities being downloaded immediately ignoring user preferences about the entities they wanted to restore
    • \n
    • FIX: Third-party library conflict (phpseclib) with WP All Import Pro and AIO WP Migration plugins that caused failure in testing SFTP credentials and backing up to the SFTP remote storage
    • \n
    • FIX: Restore compatibility with WordPress multisite running on versions < 4.9 caused by use of function not present before then
    • \n
    • TWEAK: Add new translation entries for UpdraftCentral
    • \n
    • TWEAK: Got rid of PHP 8.2 deprecation messages caused by a null value being passed to the htmlspecialchars() function and creation of dynamic property
    • \n
    • TWEAK: Got rid of PHP 8.3 deprecation messages caused by calling get_class() without arguments.
    • \n
    • TWEAK: Refactor methods in UpdraftPlus_Database_Utility class
    • \n
    • TWEAK: Send an email if the backup directory is not writable.
    • \n
    • TWEAK: Add and set the filename_only parameter to reduce search times when looking for specific backup files in Dropbox.
    • \n
    • TWEAK: Autoload PHP secure communication library (phpseclib) in a better way that would prevent already-loaded phpseclib classes (by other plugin) from being used in certain operations
    • \n
    • TWEAK: Add updraftplus_backup_db_header_append filter to allow site owners to include arbitrary content in their database backup header
    • \n
    \n

    1.23.16 – 23/Dec/2023

    \n
      \n
    • TWEAK: Added demo link for the family plugin in advertisement
    • \n
    • TWEAK: Removed https / http prefix from s3generic endpoints
    • \n
    • TWEAK: Resolve PHP 8.0 compatibility with ob_implicit_flush function
    • \n
    • TWEAK: Dropbox error logs improvement
    • \n
    • TWEAK: As required by the wordpress.org plugin team, all UpdraftPlus news is forbidden to be displayed in the “WordPress News” section of the dashboard for users of the free plugin even if consent is first given.
    • \n
    • TWEAK: Fix some incorrect calls to translation functions
    • \n
    \n

    1.23.14 – 30/Nov/2023

    \n
      \n
    • FIX: Resolved Google Cloud remote storage authentication flow
    • \n
    • TWEAK: Changed updraftvault links functionality to open in different tab
    • \n
    • TWEAK: Clarify significance of warnings in report emails
    • \n
    • TWEAK: Make the news-consent’s layer fit with the confirmation text thus removing empty space that can reveal some of the UpdraftPlus news
    • \n
    • TWEAK: Declare a shim “php_uname” function when it’s found to be undefined to prevent a fatal error in the phpseclib library (which calls it)
    • \n
    \n

    1.23.13 – 22/Nov/2023

    \n
      \n
    • FIX: An issue that prevented incremental backups from running via WP-CLI or Cron when the option to backup mu-plugins was enabled but no mu-plugins existed
    • \n
    • FIX: OneDrive remote storage authentication was giving the error “Invalid input.”
    • \n
    • FIX: The option to back up additional, user-chosen files (i.e. the morefiles entity) was no longer present in the UI
    • \n
    • TWEAK: Remove unused “migrator-lite.php” string during search and replace operations
    • \n
    • TWEAK: Replace remaining hardcoded text domain with UPDRAFTCENTRAL_TEXT_DOMAIN placeholder within the central folder
    • \n
    • TWEAK: LiteSpeed admin dashboard warning is now displayed upon completion of migration on the destination site, even after dismissing the message on the source site.
    • \n
    • TWEAK: Do not show UpdraftPlus news in the WordPress events and news widget section without first gaining user consent
    • \n
    • TWEAK: Change order of checks when seeing if cPanel is present/accessible for asking about disk quota in order to prevent unwanted an PHP notice when safe_mode is active
    • \n
    • TWEAK: Prevent potential fatal error if something has modified an updates check’s ‘translation’ property to be invalid before passing on to UpdraftPlus
    • \n
    • TWEAK: Update bundled cacert.pem file
    • \n
    \n

    1.23.12 – 08/Nov/2023

    \n
      \n
    • FIX: Issue that prevented some database restores from completing due to a change in wpdb in WordPress 6.4
    • \n
    • TWEAK: Replace Javascript onchange event with oninput event to detect changes made for HTML tags on the settings page, also to add to the event handler so that unsaved changes can be detected
    • \n
    \n

    1.23.11 – 03/Nov/2023

    \n
      \n
    • SECURITY: Fix a vulnerability which could, if you had Google Drive storage enabled, and if an attacker targetted a logged-in administrator on your site and persuaded them to access a specific URL that the attacker creates, add the attacker’s own Google Drive account to the saved storage methods. Thanks to Nicolas Decayeux of Patrowl for finding and disclosing this issue.
    • \n
    • FEATURE: Add JSTree for Google Drive to select existing folder
    • \n
    • FEATURE: The “Must-use plugins” backup entity can be backed up and restored separately in a normal WordPress site
    • \n
    • FIX: OneDrive folder case sensitivity issue (successfully uploaded backup files to the remote storage but failed in pruning old backup files due to different letter capitalisation; also happened in manual deletions)
    • \n
    • FIX: When two instances of WebDav remote storage were sequentially added in the Premium version, filling some fields of the latest instance would break the WebDav URL of the previous instance
    • \n
    • TWEAK: Update phpseclib library from version 1 to 2. As previously advised, this also means that these features (Database Encryption, Dropbox & SFTP/SCP remote storage, and UpdraftCentral key creations) will no longer be available and can cause a fatal error when running on PHP 5.2
    • \n
    • TWEAK: Add a link to Trustpilot in the review prompt
    • \n
    • TWEAK: Added a warning message when the WP_HTTP_BLOCK_EXTERNAL is defined and set to true
    • \n
    • TWEAK: Added the “Copy to clipboard” button under the self-hosted central option
    • \n
    • TWEAK: File size is shown when pressing on the backup entity
    • \n
    • TWEAK: Fix the restore dialog to not display “plugins” checkbox when only there’s “mu-plugins” entity
    • \n
    • TWEAK: Fixed PHP 8.2 deprecation messages caused by a null value being passed to the rtrim() function
    • \n
    • TWEAK: Resolve PHP deprecations for the dynamic property access by declaring the variables in the class
    • \n
    • TWEAK: Includes the plugin.php file path if “get_mu_plugins” function does not exist.
    • \n
    • TWEAK: Provide default options for function UpdraftPlus::backup_all()
    • \n
    • TWEAK: Add and call the litespeed_finish_request() function to ensure the HTTP connection made from the browser gets closed immediately without having to wait the process to complete thus leaving it run in the background
    • \n
    • TWEAK: Ensure no PHP “Class not found” is showing up during credentials testing
    • \n
    • TWEAK: Add type checking in UpdraftPlus::handle_url_actions() to prevent plugin conflicts causing PHP errors on PHP 8+
    • \n
    \n

    1.23.10 – 05/Sep/2023

    \n
      \n
    • TWEAK: New S3 signature version setting is added to the S3-Compatible (Generic) configuration form, giving an opportunity for the user to choose which signature version to use (SigV2 or SigV4)
    • \n
    • TWEAK: Enable PHP 8.3 (see: https://stitcher.io/blog/new-in-php-83) support in UpdraftClone
    • \n
    • TWEAK: Adjust fread() sizes for better performance when uploading an archive via the widget
    • \n
    \n

    1.23.9 – 14/Aug/2023

    \n
      \n
    • FIX: Fatal error of Uncaught ArgumentCountError when the UpdraftPlus settings page is browsed from an IP-adressed site (i.e. no hostname) on PHP 7.1+
    • \n
    • FIX: Incorrect caching mechanism such that when multiple Google Drive storage back-ends were in use (Premium feature), uploading to a storage would fail due to unmatched folder ID taken from a different storage instance
    • \n
    • TWEAK: Define class properties in UpdraftPlus_Addons_Migrator class for PHP 8.2 compatibility
    • \n
    \n

    1.23.8 – 08/Aug/2023

    \n
      \n
    • FEATURE: Given the basic migration feature in the free plugin
    • \n
    • FIX: Content-MD5 and any V2-related headers were always included in the S3’s V4 SignedHeaders even though the headers were not presented in a HTTP request
    • \n
    • FIX: Generating URL-encoded queries for a canonical request should have used a method/mechanism which encoded query values according to RFC 3986 (for consistency and for not breaking the code)
    • \n
    • FIX: Search / replace database not working on Admin dashboard > Settings > UpdraftPlus Backups > Advanced Tools > Search / replace database on PHP 8.2 due to stricter type checking
    • \n
    • FIX: A newly added subsite that was restored from a normal site to the multisite was not listed in the site list in the multisite
    • \n
    • FIX: Manual deletion of backup sets appeared to skip some files when multiple instance and/or remote storage were in use
    • \n
    • FIX: The SFTP remote storage stopped working in the UpdraftPlus 2.23.6 release. Reverted the change “TWEAK: Validate SFTP key field on credential test and before save”
    • \n
    • TWEAK: Add a warning in the log file if AWS connection fails and a TLSv1.2 connection test fails
    • \n
    • TWEAK: Add warning for user if only PclZip available
    • \n
    • TWEAK: Fix unable to switch tab when a plugin (wrongly) loads certain CSS onto UD’s settings page
    • \n
    • TWEAK: Remove the word ‘apparently’ in the backup success message
    • \n
    • TWEAK: Update to latest phpseclib 1.0.X version (prevents deprecation notice on PHP 8.1+)
    • \n
    • TWEAK: Change “s3” property to “public” in UpdraftPlus_AWSRequest class for PHP 8.2 deprecation compatibility
    • \n
    • TWEAK: Fixed Missing/ broken links for the pCloud image in addons tab
    • \n
    • TWEAK: Buying UpdraftClone tokens through inline checkout
    • \n
    • TWEAK: Fixed Spelling errors in updraftplus repo
    • \n
    • TWEAK: Added save button at the top of setting tab content
    • \n
    • TWEAK: UpdraftCentral module now, by default, overwrites the same existing theme installed on the remote sites (if any), regardless of what version is currently installed or what version being uploaded and installed
    • \n
    • TWEAK: Define class properties in Updraft_Checkout_Embed class for PHP 8.2 deprecation compatibility
    • \n
    • TWEAK: Update the composer package yahnis-elsts/plugin-update-checker for PHP 8.2 compatibility
    • \n
    • TWEAK: Added username and email details for authenticated dropbox account in updraftplus settings
    • \n
    • TRANSLATIONS: Split sentences to make one sentence in any translation functions
    • \n
    \n

    1.23.7 – 04/Jul/2023

    \n
      \n
    • FIX: When Dropbox returns an error, this error was not always correctly passed up to the logging layer
    • \n
    • FIX: Search / replace database not working on Admin dashboard > Settings > UpdraftPlus Backups > Advanced Tools > Search / replace database on PHP 8.2 due to stricter type checking
    • \n
    • FIX: The SFTP remote storage stopped working in the UpdraftPlus 2.23.6 release. Reverted the change “TWEAK: Validate SFTP key field on credential test and before save”
    • \n
    • TWEAK: Fixed Missing/ broken links for the pCloud image in addons tab
    • \n
    • TWEAK: Buying UpdraftClone tokens through inline checkout
    • \n
    • TWEAK: Prevent PHP warning during some migrations when no table list provided
    • \n
    \n

    1.23.6 – 19/Jun/2023

    \n
      \n
    • FIX: Search / replace database not working on Admin dashboard > Settings > UpdraftPlus Backups > Advanced Tools > Search / replace database on PHP 8.2 due to stricter type checking
    • \n
    • TWEAK: Remove the incremental dropdown on incremental backup restore when the user selects only …
    • \n
    \n", "description": "

    The UpdraftPlus Backup & Migration Plugin is trusted by the WordPress community to backup, restore and migrate their WordPress websites. UpdraftPlus is actively installed on more than 3 million websites around the world.

    \n

    Backup with UpdraftPlus

    \n

    UpdraftPlus is the world’s highest ranking and most popular scheduled backup and migration plugin. Backup to your preferred storage location and restore in just three clicks.

    \n

    Backup to Dropbox, Google Drive, Amazon S3 (or compatible), Rackspace Cloud, FTP, DreamObjects, Openstack Swift or email.

    \n

    The paid version also allows you to backup to Microsoft OneDrive, Microsoft Azure, Google Cloud, Backblaze B2, SFTP, SCP, pCloud, WebDAV or UpdraftVault, our integrated storage option for UpdraftPlus.

    \n

    Backup manually or schedule to run every 2, 4, 8 or 12 hours, daily, weekly, monthly or fortnightly.

    \n

    Restore with UpdraftPlus

    \n

    Your WordPress website is vulnerable. Your site may get hacked. Something could go wrong with an update or your server could crash. You might need to reverse a change made or a mistake caused by human error.

    \n

    Whatever the reason, you can restore your WordPress website in just a few clicks with UpdraftPlus. Choose which components to restore (e.g. plugins, themes, database etc.), click again to restore, then click again to return to the main screen.

    \n

    Migrate with UpdraftPlus

    \n

    It’s easy to migrate your WordPress website to another web host, server or domain with this free version of UpdraftPlus.

    \n

    To migrate, simply download your database, plugins, themes etc. from the source site, then upload them into your destination site.

    \n

    When migrating, a built-in search-and-replace engine identifies old strings and replaces these to reflect the new location. UpdraftPlus saves you time and reduces the risk of broken links or missing files associated with manual migrations.

    \n

    Why UpdraftPlus?

    \n

    Writing a reliable backup and migration plugin that ‘just works’ consistently across millions of different WordPress deployments is hard. UpdraftPlus is relied upon to do exactly that. We’re trusted and actively deployed on more websites around the world than any other WordPress backup and migration plugin.

    \n

    UpdraftPlus:

    \n
      \n
    • Backs up, migrates and restores
    • \n
    • Offers a huge number of remote storage locations
    • \n
    • Allows you to schedule backups, so you can ‘set and forget’
    • \n
    • Is comprehensive and easy to use
    • \n
    • Is proven to work on over 3 million sites.
    • \n
    \n
    \n

    UpdraftPlus Premium

    \n

    The free version of UpdraftPlus will back up and migrate your website perfectly well. However if you need more features and options you can purchase our Premium version.

    \n

    Backup and Migrate with UpdraftPlus Premium, and:

    \n
      \n
    • \n

      Get automatic backups before updates. Restore the very latest version if a WordPress or plugin update breaks your site.

      \n
    • \n
    • \n

      Backup Incrementally. Changes are added to the master, saving server resources vs repeatedly backing up in full.

      \n
    • \n
    • \n

      Get more remote storage options including Microsoft OneDrive, SFTP, Microsoft Azure, WebDAV, Google Cloud, SCP, Backblaze and pCloud.

      \n
    • \n
    • \n

      Get 1GB of integrated storage with UpdraftVault for 99.999% reliability, redundancy and scalability.

      \n
    • \n
    • \n

      Get more control over how many backups are stored in a specified interval.
      \nRestore from other backup plugins including BackWPup, BackupWordPress, Simple Backups and more.

      \n
    • \n
    • \n

      Run backups at set times e.g. during periods of low traffic.

      \n
    • \n
    • \n

      Backup to more than one location for added protection.

      \n
    • \n
    • \n

      Get detailed reports. Includes cryptographic checksums so you can verify the integrity of the backup files and more.

      \n
    • \n
    • \n

      Get Premium migration. Migrating to the destination site is more direct and can be done from the source site.

      \n
    • \n
    • \n

      Get Multisite / multi-network compatibility.

      \n
    • \n
    • \n

      Backup non-WP files and databases e.g. tables belonging to your e-commerce store or customisations to WordPress core.

      \n
    • \n
    • \n

      Get database encryption.

      \n
    • \n
    • \n

      Manage your backups and migrations from the WP-CLI.

      \n
    • \n
    • \n

      Get Premium Support.

      \n
    • \n
    \n

    Find out more on our comparison page. UpdraftPlus Premium is available for purchase here.

    \n

    Managing multiple websites?

    \n

    UpdraftCentral is a powerful remote control dashboard for WordPress that allows you to manage your backups, as well as updates, users, pages, posts, plugins and themes from one central location. Choose between:

    \n\n

    Optimize your sites centrally by combining the power of WP-Optimize and UpdraftCentral or manage your backups centrally by combining the power of UpdraftPlus with UpdraftCentral.

    \n

    Need to create a temporary clone of your site?

    \n

    UpdraftClone makes it quick and easy to create a temporary sandbox for changes you want to try out. Simply select the versions of WordPress and PHP that you want, and we’ll do the rest. More about UpdraftClone

    \n

    The full suite of plugins from Team Updraft and friends

    \n
      \n
    • \n

      UpdraftPlus.
      \nBackup, migrate and restore. Rated 5* on the plugin directory and trusted by more than 3 million WordPress website owner

      \n
    • \n
    • \n

      WP-Optimize.
      \nClean the database, compress images and caching. Optimize your WordPress website. 5* user rating. 1 million + active installs.

      \n
    • \n
    • \n

      All-In-One Security (AIOS).
      \nSecure your WordPress website. Comprehensive, feature rich and easy to use. 5* user rating and 1 million + active installs.

      \n
    • \n
    • \n

      WP Overnight.
      \nQuality Extensions for your WooCommerce store. 5* rated invoicing, order and product management, customer management solutions and more.

      \n
    • \n
    • \n

      Easy Updates Manager.
      \nTake control of updates. Lots of features for free, and a Premium version with even more – over 300,000 users.

      \n
    • \n
    • \n

      Internal Link Juicer.Boost your SEO. Automate internal links within your WordPress website. Save time and rank higher in the search engines.

      \n
    • \n
    \n

    For other useful, free plugins see our lead developer’s profile, here.

    \n

    Are you multilingual? Can you translate?

    \n

    Do you want to help people that speak your language to backup, migrate and restore their WordPress websites?

    \n

    The UpdraftPlus backup, migration and restoration plugin is ready and waiting. The translation process is easy, and web-based – please go here for instructions: https://updraftplus.com/translate/.

    \n

    Or, if you’re already an expert WordPress translator, just pick out the .pot file from the wp-content/plugins/updraftplus/languages/ directory – if you scan for translatable strings manually, then you need to get these functions: _x(), __(), _e(), _ex(), log_e().

    \n

    Many thanks to our existing translators.

    \n

    License

    \n
    Copyright 2011-24 David Anderson\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\n
    \n

    Non-English translators are provided by volunteers, and wordpress.org does not give plugin developers control over their translations; thus relying on them is at your own risk; UpdraftPlus cannot guarantee that translations from the original English are accurate.

    \n

    We recognise and thank those mentioned at https://updraftplus.com/acknowledgements/ for code and/or libraries used and/or modified under the terms of their open source licences.

    \n", "screenshots": "
    1. \"<p>Main

      Main dashboard - screenshots are from UpdraftPlus Premium, so may reference some features that are not part of the free version

    2. \"<p>Configuring

      Configuring your backups

    3. \"<p>Take

      Take a backup

    4. \"<p>Choose

      Choose which components to restore

    "}, "versions": {"0.7.4": "https://downloads.wordpress.org/plugin/updraftplus.0.7.4.zip", "0.7.7": "https://downloads.wordpress.org/plugin/updraftplus.0.7.7.zip", "0.9.1": "https://downloads.wordpress.org/plugin/updraftplus.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/updraftplus.0.9.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/updraftplus.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/updraftplus.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/updraftplus.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/updraftplus.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/updraftplus.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/updraftplus.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/plugin/updraftplus.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/plugin/updraftplus.1.1.0.zip", "1.1.2": "https://downloads.wordpress.org/plugin/updraftplus.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/updraftplus.1.1.3.zip", "1.1.5": "https://downloads.wordpress.org/plugin/updraftplus.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/updraftplus.1.1.6.zip", "1.1.8": "https://downloads.wordpress.org/plugin/updraftplus.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/plugin/updraftplus.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/plugin/updraftplus.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/updraftplus.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/updraftplus.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/updraftplus.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/updraftplus.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/updraftplus.1.2.5.zip", "1.2.7": "https://downloads.wordpress.org/plugin/updraftplus.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/updraftplus.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/updraftplus.1.2.9.zip", "1.3.2": "https://downloads.wordpress.org/plugin/updraftplus.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/updraftplus.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/updraftplus.1.3.4.zip", "1.3.6": "https://downloads.wordpress.org/plugin/updraftplus.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/updraftplus.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/updraftplus.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/updraftplus.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/plugin/updraftplus.1.4.0.zip", "1.4.2": "https://downloads.wordpress.org/plugin/updraftplus.1.4.2.zip", "1.4.4": "https://downloads.wordpress.org/plugin/updraftplus.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/updraftplus.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/updraftplus.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/updraftplus.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/updraftplus.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/updraftplus.1.4.9.zip", "1.5.5": "https://downloads.wordpress.org/plugin/updraftplus.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/updraftplus.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/updraftplus.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/updraftplus.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/updraftplus.1.5.9.zip", "1.6.1": "https://downloads.wordpress.org/plugin/updraftplus.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/updraftplus.1.6.2.zip", "1.7.0": "https://downloads.wordpress.org/plugin/updraftplus.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/updraftplus.1.7.1.zip", "1.7.3": "https://downloads.wordpress.org/plugin/updraftplus.1.7.3.zip", "1.8.1": "https://downloads.wordpress.org/plugin/updraftplus.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/updraftplus.1.8.2.zip", "1.8.5": "https://downloads.wordpress.org/plugin/updraftplus.1.8.5.zip", "1.8.8": "https://downloads.wordpress.org/plugin/updraftplus.1.8.8.zip", "1.9.0": "https://downloads.wordpress.org/plugin/updraftplus.1.9.0.zip", "1.9.4": "https://downloads.wordpress.org/plugin/updraftplus.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/updraftplus.1.9.5.zip", "trunk": "https://downloads.wordpress.org/plugin/updraftplus.zip", "0.8.28": "https://downloads.wordpress.org/plugin/updraftplus.0.8.28.zip", "0.8.29": "https://downloads.wordpress.org/plugin/updraftplus.0.8.29.zip", "0.8.30": "https://downloads.wordpress.org/plugin/updraftplus.0.8.30.zip", "0.8.31": "https://downloads.wordpress.org/plugin/updraftplus.0.8.31.zip", "0.8.32": "https://downloads.wordpress.org/plugin/updraftplus.0.8.32.zip", "0.8.33": "https://downloads.wordpress.org/plugin/updraftplus.0.8.33.zip", "0.8.36": "https://downloads.wordpress.org/plugin/updraftplus.0.8.36.zip", "0.8.37": "https://downloads.wordpress.org/plugin/updraftplus.0.8.37.zip", "0.8.50": "https://downloads.wordpress.org/plugin/updraftplus.0.8.50.zip", "0.8.51": "https://downloads.wordpress.org/plugin/updraftplus.0.8.51.zip", "0.9.10": "https://downloads.wordpress.org/plugin/updraftplus.0.9.10.zip", "0.9.11": "https://downloads.wordpress.org/plugin/updraftplus.0.9.11.zip", "0.9.12": "https://downloads.wordpress.org/plugin/updraftplus.0.9.12.zip", "0.9.20": "https://downloads.wordpress.org/plugin/updraftplus.0.9.20.zip", "0.9.21": "https://downloads.wordpress.org/plugin/updraftplus.0.9.21.zip", "0.9.22": "https://downloads.wordpress.org/plugin/updraftplus.0.9.22.zip", "1.0.10": "https://downloads.wordpress.org/plugin/updraftplus.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/plugin/updraftplus.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/plugin/updraftplus.1.0.12.zip", "1.0.15": "https://downloads.wordpress.org/plugin/updraftplus.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/plugin/updraftplus.1.0.16.zip", "1.0.18": "https://downloads.wordpress.org/plugin/updraftplus.1.0.18.zip", "1.0.20": "https://downloads.wordpress.org/plugin/updraftplus.1.0.20.zip", "1.1.10": "https://downloads.wordpress.org/plugin/updraftplus.1.1.10.zip", "1.1.11": "https://downloads.wordpress.org/plugin/updraftplus.1.1.11.zip", "1.1.12": "https://downloads.wordpress.org/plugin/updraftplus.1.1.12.zip", "1.1.13": "https://downloads.wordpress.org/plugin/updraftplus.1.1.13.zip", "1.1.14": "https://downloads.wordpress.org/plugin/updraftplus.1.1.14.zip", "1.1.15": "https://downloads.wordpress.org/plugin/updraftplus.1.1.15.zip", "1.1.16": "https://downloads.wordpress.org/plugin/updraftplus.1.1.16.zip", "1.1.17": "https://downloads.wordpress.org/plugin/updraftplus.1.1.17.zip", "1.10.1": "https://downloads.wordpress.org/plugin/updraftplus.1.10.1.zip", "1.10.3": "https://downloads.wordpress.org/plugin/updraftplus.1.10.3.zip", "1.11.1": "https://downloads.wordpress.org/plugin/updraftplus.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/plugin/updraftplus.1.11.2.zip", "1.11.3": "https://downloads.wordpress.org/plugin/updraftplus.1.11.3.zip", "1.11.4": "https://downloads.wordpress.org/plugin/updraftplus.1.11.4.zip", "1.11.5": "https://downloads.wordpress.org/plugin/updraftplus.1.11.5.zip", "1.11.8": "https://downloads.wordpress.org/plugin/updraftplus.1.11.8.zip", "1.11.9": "https://downloads.wordpress.org/plugin/updraftplus.1.11.9.zip", "1.12.0": "https://downloads.wordpress.org/plugin/updraftplus.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/updraftplus.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/updraftplus.1.12.2.zip", "1.12.4": "https://downloads.wordpress.org/plugin/updraftplus.1.12.4.zip", "1.12.6": "https://downloads.wordpress.org/plugin/updraftplus.1.12.6.zip", "1.13.1": "https://downloads.wordpress.org/plugin/updraftplus.1.13.1.zip", "1.13.2": "https://downloads.wordpress.org/plugin/updraftplus.1.13.2.zip", "1.13.3": "https://downloads.wordpress.org/plugin/updraftplus.1.13.3.zip", "1.13.4": "https://downloads.wordpress.org/plugin/updraftplus.1.13.4.zip", "1.13.5": "https://downloads.wordpress.org/plugin/updraftplus.1.13.5.zip", "1.13.6": "https://downloads.wordpress.org/plugin/updraftplus.1.13.6.zip", "1.13.7": "https://downloads.wordpress.org/plugin/updraftplus.1.13.7.zip", "1.13.8": "https://downloads.wordpress.org/plugin/updraftplus.1.13.8.zip", "1.13.9": "https://downloads.wordpress.org/plugin/updraftplus.1.13.9.zip", "1.14.2": "https://downloads.wordpress.org/plugin/updraftplus.1.14.2.zip", "1.14.3": "https://downloads.wordpress.org/plugin/updraftplus.1.14.3.zip", "1.14.4": "https://downloads.wordpress.org/plugin/updraftplus.1.14.4.zip", "1.14.5": "https://downloads.wordpress.org/plugin/updraftplus.1.14.5.zip", "1.14.7": "https://downloads.wordpress.org/plugin/updraftplus.1.14.7.zip", "1.14.9": "https://downloads.wordpress.org/plugin/updraftplus.1.14.9.zip", "1.15.0": "https://downloads.wordpress.org/plugin/updraftplus.1.15.0.zip", "1.15.2": "https://downloads.wordpress.org/plugin/updraftplus.1.15.2.zip", "1.15.3": "https://downloads.wordpress.org/plugin/updraftplus.1.15.3.zip", "1.15.5": "https://downloads.wordpress.org/plugin/updraftplus.1.15.5.zip", "1.15.6": "https://downloads.wordpress.org/plugin/updraftplus.1.15.6.zip", "1.15.7": "https://downloads.wordpress.org/plugin/updraftplus.1.15.7.zip", "1.16.0": "https://downloads.wordpress.org/plugin/updraftplus.1.16.0.zip", "1.16.4": "https://downloads.wordpress.org/plugin/updraftplus.1.16.4.zip", "1.16.5": "https://downloads.wordpress.org/plugin/updraftplus.1.16.5.zip", "1.16.6": "https://downloads.wordpress.org/plugin/updraftplus.1.16.6.zip", "1.16.7": "https://downloads.wordpress.org/plugin/updraftplus.1.16.7.zip", "1.16.8": "https://downloads.wordpress.org/plugin/updraftplus.1.16.8.zip", "1.16.9": "https://downloads.wordpress.org/plugin/updraftplus.1.16.9.zip", "1.2.10": "https://downloads.wordpress.org/plugin/updraftplus.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/plugin/updraftplus.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/plugin/updraftplus.1.2.12.zip", "1.2.14": "https://downloads.wordpress.org/plugin/updraftplus.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/plugin/updraftplus.1.2.15.zip", "1.2.16": "https://downloads.wordpress.org/plugin/updraftplus.1.2.16.zip", "1.2.17": "https://downloads.wordpress.org/plugin/updraftplus.1.2.17.zip", "1.2.19": "https://downloads.wordpress.org/plugin/updraftplus.1.2.19.zip", "1.2.20": "https://downloads.wordpress.org/plugin/updraftplus.1.2.20.zip", "1.2.24": "https://downloads.wordpress.org/plugin/updraftplus.1.2.24.zip", "1.2.25": "https://downloads.wordpress.org/plugin/updraftplus.1.2.25.zip", "1.2.26": "https://downloads.wordpress.org/plugin/updraftplus.1.2.26.zip", "1.2.27": "https://downloads.wordpress.org/plugin/updraftplus.1.2.27.zip", "1.2.28": "https://downloads.wordpress.org/plugin/updraftplus.1.2.28.zip", "1.2.29": "https://downloads.wordpress.org/plugin/updraftplus.1.2.29.zip", "1.2.30": "https://downloads.wordpress.org/plugin/updraftplus.1.2.30.zip", "1.2.31": "https://downloads.wordpress.org/plugin/updraftplus.1.2.31.zip", "1.2.33": "https://downloads.wordpress.org/plugin/updraftplus.1.2.33.zip", "1.2.35": "https://downloads.wordpress.org/plugin/updraftplus.1.2.35.zip", "1.2.36": "https://downloads.wordpress.org/plugin/updraftplus.1.2.36.zip", "1.2.38": "https://downloads.wordpress.org/plugin/updraftplus.1.2.38.zip", "1.2.39": "https://downloads.wordpress.org/plugin/updraftplus.1.2.39.zip", "1.2.40": "https://downloads.wordpress.org/plugin/updraftplus.1.2.40.zip", "1.2.41": "https://downloads.wordpress.org/plugin/updraftplus.1.2.41.zip", "1.2.42": "https://downloads.wordpress.org/plugin/updraftplus.1.2.42.zip", "1.2.43": "https://downloads.wordpress.org/plugin/updraftplus.1.2.43.zip", "1.2.44": "https://downloads.wordpress.org/plugin/updraftplus.1.2.44.zip", "1.2.45": "https://downloads.wordpress.org/plugin/updraftplus.1.2.45.zip", "1.2.46": "https://downloads.wordpress.org/plugin/updraftplus.1.2.46.zip", "1.22.1": "https://downloads.wordpress.org/plugin/updraftplus.1.22.1.zip", "1.22.3": "https://downloads.wordpress.org/plugin/updraftplus.1.22.3.zip", "1.22.4": "https://downloads.wordpress.org/plugin/updraftplus.1.22.4.zip", "1.22.5": "https://downloads.wordpress.org/plugin/updraftplus.1.22.5.zip", "1.22.6": "https://downloads.wordpress.org/plugin/updraftplus.1.22.6.zip", "1.22.7": "https://downloads.wordpress.org/plugin/updraftplus.1.22.7.zip", "1.22.8": "https://downloads.wordpress.org/plugin/updraftplus.1.22.8.zip", "1.22.9": "https://downloads.wordpress.org/plugin/updraftplus.1.22.9.zip", "1.23.1": "https://downloads.wordpress.org/plugin/updraftplus.1.23.1.zip", "1.23.2": "https://downloads.wordpress.org/plugin/updraftplus.1.23.2.zip", "1.23.3": "https://downloads.wordpress.org/plugin/updraftplus.1.23.3.zip", "1.23.4": "https://downloads.wordpress.org/plugin/updraftplus.1.23.4.zip", "1.23.5": "https://downloads.wordpress.org/plugin/updraftplus.1.23.5.zip", "1.23.6": "https://downloads.wordpress.org/plugin/updraftplus.1.23.6.zip", "1.23.7": "https://downloads.wordpress.org/plugin/updraftplus.1.23.7.zip", "1.23.8": "https://downloads.wordpress.org/plugin/updraftplus.1.23.8.zip", "1.23.9": "https://downloads.wordpress.org/plugin/updraftplus.1.23.9.zip", "1.24.1": "https://downloads.wordpress.org/plugin/updraftplus.1.24.1.zip", "1.24.2": "https://downloads.wordpress.org/plugin/updraftplus.1.24.2.zip", "1.24.3": "https://downloads.wordpress.org/plugin/updraftplus.1.24.3.zip", "1.24.4": "https://downloads.wordpress.org/plugin/updraftplus.1.24.4.zip", "1.24.5": "https://downloads.wordpress.org/plugin/updraftplus.1.24.5.zip", "1.24.6": "https://downloads.wordpress.org/plugin/updraftplus.1.24.6.zip", "1.24.7": "https://downloads.wordpress.org/plugin/updraftplus.1.24.7.zip", "1.24.8": "https://downloads.wordpress.org/plugin/updraftplus.1.24.8.zip", "1.24.9": "https://downloads.wordpress.org/plugin/updraftplus.1.24.9.zip", "1.25.1": "https://downloads.wordpress.org/plugin/updraftplus.1.25.1.zip", "1.25.2": "https://downloads.wordpress.org/plugin/updraftplus.1.25.2.zip", "1.25.3": "https://downloads.wordpress.org/plugin/updraftplus.1.25.3.zip", "1.25.5": "https://downloads.wordpress.org/plugin/updraftplus.1.25.5.zip", "1.25.6": "https://downloads.wordpress.org/plugin/updraftplus.1.25.6.zip", "1.25.7": "https://downloads.wordpress.org/plugin/updraftplus.1.25.7.zip", "1.25.8": "https://downloads.wordpress.org/plugin/updraftplus.1.25.8.zip", "1.3.10": "https://downloads.wordpress.org/plugin/updraftplus.1.3.10.zip", "1.3.12": "https://downloads.wordpress.org/plugin/updraftplus.1.3.12.zip", "1.3.14": "https://downloads.wordpress.org/plugin/updraftplus.1.3.14.zip", "1.3.15": "https://downloads.wordpress.org/plugin/updraftplus.1.3.15.zip", "1.3.17": "https://downloads.wordpress.org/plugin/updraftplus.1.3.17.zip", "1.3.18": "https://downloads.wordpress.org/plugin/updraftplus.1.3.18.zip", "1.3.19": "https://downloads.wordpress.org/plugin/updraftplus.1.3.19.zip", "1.3.20": "https://downloads.wordpress.org/plugin/updraftplus.1.3.20.zip", "1.3.22": "https://downloads.wordpress.org/plugin/updraftplus.1.3.22.zip", "1.3.23": "https://downloads.wordpress.org/plugin/updraftplus.1.3.23.zip", "1.3.24": "https://downloads.wordpress.org/plugin/updraftplus.1.3.24.zip", "1.3.25": "https://downloads.wordpress.org/plugin/updraftplus.1.3.25.zip", "1.4.10": "https://downloads.wordpress.org/plugin/updraftplus.1.4.10.zip", "1.4.11": "https://downloads.wordpress.org/plugin/updraftplus.1.4.11.zip", "1.4.12": "https://downloads.wordpress.org/plugin/updraftplus.1.4.12.zip", "1.4.13": "https://downloads.wordpress.org/plugin/updraftplus.1.4.13.zip", "1.4.14": "https://downloads.wordpress.org/plugin/updraftplus.1.4.14.zip", "1.4.15": "https://downloads.wordpress.org/plugin/updraftplus.1.4.15.zip", "1.4.27": "https://downloads.wordpress.org/plugin/updraftplus.1.4.27.zip", "1.4.28": "https://downloads.wordpress.org/plugin/updraftplus.1.4.28.zip", "1.4.29": "https://downloads.wordpress.org/plugin/updraftplus.1.4.29.zip", "1.4.30": "https://downloads.wordpress.org/plugin/updraftplus.1.4.30.zip", "1.4.48": "https://downloads.wordpress.org/plugin/updraftplus.1.4.48.zip", "1.5.16": "https://downloads.wordpress.org/plugin/updraftplus.1.5.16.zip", "1.5.20": "https://downloads.wordpress.org/plugin/updraftplus.1.5.20.zip", "1.5.21": "https://downloads.wordpress.org/plugin/updraftplus.1.5.21.zip", "1.5.22": "https://downloads.wordpress.org/plugin/updraftplus.1.5.22.zip", "1.6.17": "https://downloads.wordpress.org/plugin/updraftplus.1.6.17.zip", "1.6.46": "https://downloads.wordpress.org/plugin/updraftplus.1.6.46.zip", "1.7.18": "https://downloads.wordpress.org/plugin/updraftplus.1.7.18.zip", "1.7.20": "https://downloads.wordpress.org/plugin/updraftplus.1.7.20.zip", "1.7.34": "https://downloads.wordpress.org/plugin/updraftplus.1.7.34.zip", "1.7.35": "https://downloads.wordpress.org/plugin/updraftplus.1.7.35.zip", "1.7.39": "https://downloads.wordpress.org/plugin/updraftplus.1.7.39.zip", "1.7.40": "https://downloads.wordpress.org/plugin/updraftplus.1.7.40.zip", "1.7.41": "https://downloads.wordpress.org/plugin/updraftplus.1.7.41.zip", "1.8.11": "https://downloads.wordpress.org/plugin/updraftplus.1.8.11.zip", "1.8.12": "https://downloads.wordpress.org/plugin/updraftplus.1.8.12.zip", "1.8.13": "https://downloads.wordpress.org/plugin/updraftplus.1.8.13.zip", "1.9.13": "https://downloads.wordpress.org/plugin/updraftplus.1.9.13.zip", "1.9.15": "https://downloads.wordpress.org/plugin/updraftplus.1.9.15.zip", "1.9.17": "https://downloads.wordpress.org/plugin/updraftplus.1.9.17.zip", "1.9.19": "https://downloads.wordpress.org/plugin/updraftplus.1.9.19.zip", "1.9.25": "https://downloads.wordpress.org/plugin/updraftplus.1.9.25.zip", "1.9.26": "https://downloads.wordpress.org/plugin/updraftplus.1.9.26.zip", "1.9.30": "https://downloads.wordpress.org/plugin/updraftplus.1.9.30.zip", "1.9.31": "https://downloads.wordpress.org/plugin/updraftplus.1.9.31.zip", "1.9.32": "https://downloads.wordpress.org/plugin/updraftplus.1.9.32.zip", "1.9.40": "https://downloads.wordpress.org/plugin/updraftplus.1.9.40.zip", "1.9.41": "https://downloads.wordpress.org/plugin/updraftplus.1.9.41.zip", "1.9.42": "https://downloads.wordpress.org/plugin/updraftplus.1.9.42.zip", "1.9.43": "https://downloads.wordpress.org/plugin/updraftplus.1.9.43.zip", "1.9.44": "https://downloads.wordpress.org/plugin/updraftplus.1.9.44.zip", "1.9.45": "https://downloads.wordpress.org/plugin/updraftplus.1.9.45.zip", "1.9.46": "https://downloads.wordpress.org/plugin/updraftplus.1.9.46.zip", "1.9.50": "https://downloads.wordpress.org/plugin/updraftplus.1.9.50.zip", "1.9.51": "https://downloads.wordpress.org/plugin/updraftplus.1.9.51.zip", "1.9.60": "https://downloads.wordpress.org/plugin/updraftplus.1.9.60.zip", "1.9.62": "https://downloads.wordpress.org/plugin/updraftplus.1.9.62.zip", "1.9.63": "https://downloads.wordpress.org/plugin/updraftplus.1.9.63.zip", "1.9.64": "https://downloads.wordpress.org/plugin/updraftplus.1.9.64.zip", "1.11.12": "https://downloads.wordpress.org/plugin/updraftplus.1.11.12.zip", "1.11.15": "https://downloads.wordpress.org/plugin/updraftplus.1.11.15.zip", "1.11.17": "https://downloads.wordpress.org/plugin/updraftplus.1.11.17.zip", "1.11.18": "https://downloads.wordpress.org/plugin/updraftplus.1.11.18.zip", "1.11.20": "https://downloads.wordpress.org/plugin/updraftplus.1.11.20.zip", "1.11.23": "https://downloads.wordpress.org/plugin/updraftplus.1.11.23.zip", "1.11.24": "https://downloads.wordpress.org/plugin/updraftplus.1.11.24.zip", "1.11.25": "https://downloads.wordpress.org/plugin/updraftplus.1.11.25.zip", "1.11.26": "https://downloads.wordpress.org/plugin/updraftplus.1.11.26.zip", "1.11.27": "https://downloads.wordpress.org/plugin/updraftplus.1.11.27.zip", "1.11.28": "https://downloads.wordpress.org/plugin/updraftplus.1.11.28.zip", "1.12.12": "https://downloads.wordpress.org/plugin/updraftplus.1.12.12.zip", "1.12.13": "https://downloads.wordpress.org/plugin/updraftplus.1.12.13.zip", "1.12.15": "https://downloads.wordpress.org/plugin/updraftplus.1.12.15.zip", "1.12.17": "https://downloads.wordpress.org/plugin/updraftplus.1.12.17.zip", "1.12.20": "https://downloads.wordpress.org/plugin/updraftplus.1.12.20.zip", "1.12.23": "https://downloads.wordpress.org/plugin/updraftplus.1.12.23.zip", "1.12.24": "https://downloads.wordpress.org/plugin/updraftplus.1.12.24.zip", "1.12.25": "https://downloads.wordpress.org/plugin/updraftplus.1.12.25.zip", "1.12.28": "https://downloads.wordpress.org/plugin/updraftplus.1.12.28.zip", "1.12.29": "https://downloads.wordpress.org/plugin/updraftplus.1.12.29.zip", "1.12.30": "https://downloads.wordpress.org/plugin/updraftplus.1.12.30.zip", "1.12.32": "https://downloads.wordpress.org/plugin/updraftplus.1.12.32.zip", "1.12.34": "https://downloads.wordpress.org/plugin/updraftplus.1.12.34.zip", "1.12.35": "https://downloads.wordpress.org/plugin/updraftplus.1.12.35.zip", "1.12.37": "https://downloads.wordpress.org/plugin/updraftplus.1.12.37.zip", "1.12.39": "https://downloads.wordpress.org/plugin/updraftplus.1.12.39.zip", "1.12.40": "https://downloads.wordpress.org/plugin/updraftplus.1.12.40.zip", "1.13.11": "https://downloads.wordpress.org/plugin/updraftplus.1.13.11.zip", "1.13.12": "https://downloads.wordpress.org/plugin/updraftplus.1.13.12.zip", "1.13.15": "https://downloads.wordpress.org/plugin/updraftplus.1.13.15.zip", "1.13.16": "https://downloads.wordpress.org/plugin/updraftplus.1.13.16.zip", "1.14.10": "https://downloads.wordpress.org/plugin/updraftplus.1.14.10.zip", "1.14.11": "https://downloads.wordpress.org/plugin/updraftplus.1.14.11.zip", "1.14.12": "https://downloads.wordpress.org/plugin/updraftplus.1.14.12.zip", "1.14.13": "https://downloads.wordpress.org/plugin/updraftplus.1.14.13.zip", "1.16.10": "https://downloads.wordpress.org/plugin/updraftplus.1.16.10.zip", "1.16.11": "https://downloads.wordpress.org/plugin/updraftplus.1.16.11.zip", "1.16.12": "https://downloads.wordpress.org/plugin/updraftplus.1.16.12.zip", "1.16.13": "https://downloads.wordpress.org/plugin/updraftplus.1.16.13.zip", "1.16.14": "https://downloads.wordpress.org/plugin/updraftplus.1.16.14.zip", "1.16.15": "https://downloads.wordpress.org/plugin/updraftplus.1.16.15.zip", "1.16.16": "https://downloads.wordpress.org/plugin/updraftplus.1.16.16.zip", "1.16.17": "https://downloads.wordpress.org/plugin/updraftplus.1.16.17.zip", "1.16.20": "https://downloads.wordpress.org/plugin/updraftplus.1.16.20.zip", "1.16.21": "https://downloads.wordpress.org/plugin/updraftplus.1.16.21.zip", "1.16.22": "https://downloads.wordpress.org/plugin/updraftplus.1.16.22.zip", "1.16.23": "https://downloads.wordpress.org/plugin/updraftplus.1.16.23.zip", "1.16.24": "https://downloads.wordpress.org/plugin/updraftplus.1.16.24.zip", "1.16.25": "https://downloads.wordpress.org/plugin/updraftplus.1.16.25.zip", "1.16.26": "https://downloads.wordpress.org/plugin/updraftplus.1.16.26.zip", "1.16.28": "https://downloads.wordpress.org/plugin/updraftplus.1.16.28.zip", "1.16.29": "https://downloads.wordpress.org/plugin/updraftplus.1.16.29.zip", "1.16.32": "https://downloads.wordpress.org/plugin/updraftplus.1.16.32.zip", "1.16.34": "https://downloads.wordpress.org/plugin/updraftplus.1.16.34.zip", "1.16.35": "https://downloads.wordpress.org/plugin/updraftplus.1.16.35.zip", "1.16.36": "https://downloads.wordpress.org/plugin/updraftplus.1.16.36.zip", "1.16.37": "https://downloads.wordpress.org/plugin/updraftplus.1.16.37.zip", "1.16.40": "https://downloads.wordpress.org/plugin/updraftplus.1.16.40.zip", "1.16.41": "https://downloads.wordpress.org/plugin/updraftplus.1.16.41.zip", "1.16.42": "https://downloads.wordpress.org/plugin/updraftplus.1.16.42.zip", "1.16.43": "https://downloads.wordpress.org/plugin/updraftplus.1.16.43.zip", "1.16.44": "https://downloads.wordpress.org/plugin/updraftplus.1.16.44.zip", "1.16.45": "https://downloads.wordpress.org/plugin/updraftplus.1.16.45.zip", "1.16.46": "https://downloads.wordpress.org/plugin/updraftplus.1.16.46.zip", "1.16.47": "https://downloads.wordpress.org/plugin/updraftplus.1.16.47.zip", "1.16.48": "https://downloads.wordpress.org/plugin/updraftplus.1.16.48.zip", "1.16.49": "https://downloads.wordpress.org/plugin/updraftplus.1.16.49.zip", "1.16.50": "https://downloads.wordpress.org/plugin/updraftplus.1.16.50.zip", "1.16.51": "https://downloads.wordpress.org/plugin/updraftplus.1.16.51.zip", "1.16.53": "https://downloads.wordpress.org/plugin/updraftplus.1.16.53.zip", "1.16.55": "https://downloads.wordpress.org/plugin/updraftplus.1.16.55.zip", "1.16.56": "https://downloads.wordpress.org/plugin/updraftplus.1.16.56.zip", "1.16.59": "https://downloads.wordpress.org/plugin/updraftplus.1.16.59.zip", "1.16.60": "https://downloads.wordpress.org/plugin/updraftplus.1.16.60.zip", "1.16.61": "https://downloads.wordpress.org/plugin/updraftplus.1.16.61.zip", "1.16.62": "https://downloads.wordpress.org/plugin/updraftplus.1.16.62.zip", "1.16.63": "https://downloads.wordpress.org/plugin/updraftplus.1.16.63.zip", "1.16.64": "https://downloads.wordpress.org/plugin/updraftplus.1.16.64.zip", "1.16.65": "https://downloads.wordpress.org/plugin/updraftplus.1.16.65.zip", "1.16.66": "https://downloads.wordpress.org/plugin/updraftplus.1.16.66.zip", "1.16.67": "https://downloads.wordpress.org/plugin/updraftplus.1.16.67.zip", "1.16.68": "https://downloads.wordpress.org/plugin/updraftplus.1.16.68.zip", "1.16.69": "https://downloads.wordpress.org/plugin/updraftplus.1.16.69.zip", "1.22.10": "https://downloads.wordpress.org/plugin/updraftplus.1.22.10.zip", "1.22.11": "https://downloads.wordpress.org/plugin/updraftplus.1.22.11.zip", "1.22.12": "https://downloads.wordpress.org/plugin/updraftplus.1.22.12.zip", "1.22.14": "https://downloads.wordpress.org/plugin/updraftplus.1.22.14.zip", "1.22.15": "https://downloads.wordpress.org/plugin/updraftplus.1.22.15.zip", "1.22.16": "https://downloads.wordpress.org/plugin/updraftplus.1.22.16.zip", "1.22.17": "https://downloads.wordpress.org/plugin/updraftplus.1.22.17.zip", "1.22.18": "https://downloads.wordpress.org/plugin/updraftplus.1.22.18.zip", "1.22.19": "https://downloads.wordpress.org/plugin/updraftplus.1.22.19.zip", "1.22.20": "https://downloads.wordpress.org/plugin/updraftplus.1.22.20.zip", "1.22.21": "https://downloads.wordpress.org/plugin/updraftplus.1.22.21.zip", "1.22.22": "https://downloads.wordpress.org/plugin/updraftplus.1.22.22.zip", "1.22.23": "https://downloads.wordpress.org/plugin/updraftplus.1.22.23.zip", "1.22.24": "https://downloads.wordpress.org/plugin/updraftplus.1.22.24.zip", "1.23.10": "https://downloads.wordpress.org/plugin/updraftplus.1.23.10.zip", "1.23.11": "https://downloads.wordpress.org/plugin/updraftplus.1.23.11.zip", "1.23.12": "https://downloads.wordpress.org/plugin/updraftplus.1.23.12.zip", "1.23.13": "https://downloads.wordpress.org/plugin/updraftplus.1.23.13.zip", "1.23.15": "https://downloads.wordpress.org/plugin/updraftplus.1.23.15.zip", "1.23.16": "https://downloads.wordpress.org/plugin/updraftplus.1.23.16.zip", "1.24.10": "https://downloads.wordpress.org/plugin/updraftplus.1.24.10.zip", "1.24.11": "https://downloads.wordpress.org/plugin/updraftplus.1.24.11.zip", "1.24.12": "https://downloads.wordpress.org/plugin/updraftplus.1.24.12.zip"}, "downloaded": 147298416, "description": "

    The UpdraftPlus Backup & Migration Plugin is trusted by the WordPress community to backup, restore and migrate their WordPress websites. UpdraftPlus is actively installed on more than 3 million websites around the world.

    \n

    Backup with UpdraftPlus

    \n

    UpdraftPlus is the world’s highest ranking and most popular scheduled backup and migration plugin. Backup to your preferred storage location and restore in just three clicks.

    \n

    Backup to Dropbox, Google Drive, Amazon S3 (or compatible), Rackspace Cloud, FTP, DreamObjects, Openstack Swift or email.

    \n

    The paid version also allows you to backup to Microsoft OneDrive, Microsoft Azure, Google Cloud, Backblaze B2, SFTP, SCP, pCloud, WebDAV or UpdraftVault, our integrated storage option for UpdraftPlus.

    \n

    Backup manually or schedule to run every 2, 4, 8 or 12 hours, daily, weekly, monthly or fortnightly.

    \n

    Restore with UpdraftPlus

    \n

    Your WordPress website is vulnerable. Your site may get hacked. Something could go wrong with an update or your server could crash. You might need to reverse a change made or a mistake caused by human error.

    \n

    Whatever the reason, you can restore your WordPress website in just a few clicks with UpdraftPlus. Choose which components to restore (e.g. plugins, themes, database etc.), click again to restore, then click again to return to the main screen.

    \n

    Migrate with UpdraftPlus

    \n

    It’s easy to migrate your WordPress website to another web host, server or domain with this free version of UpdraftPlus.

    \n

    To migrate, simply download your database, plugins, themes etc. from the source site, then upload them into your destination site.

    \n

    When migrating, a built-in search-and-replace engine identifies old strings and replaces these to reflect the new location. UpdraftPlus saves you time and reduces the risk of broken links or missing files associated with manual migrations.

    \n

    Why UpdraftPlus?

    \n

    Writing a reliable backup and migration plugin that ‘just works’ consistently across millions of different WordPress deployments is hard. UpdraftPlus is relied upon to do exactly that. We’re trusted and actively deployed on more websites around the world than any other WordPress backup and migration plugin.

    \n

    UpdraftPlus:

    \n
      \n
    • Backs up, migrates and restores
    • \n
    • Offers a huge number of remote storage locations
    • \n
    • Allows you to schedule backups, so you can ‘set and forget’
    • \n
    • Is comprehensive and easy to use
    • \n
    • Is proven to work on over 3 million sites.
    • \n
    \n
    \n

    UpdraftPlus Premium

    \n

    The free version of UpdraftPlus will back up and migrate your website perfectly well. However if you need more features and options you can purchase our Premium version.

    \n

    Backup and Migrate with UpdraftPlus Premium, and:

    \n
      \n
    • \n

      Get automatic backups before updates. Restore the very latest version if a WordPress or plugin update breaks your site.

      \n
    • \n
    • \n

      Backup Incrementally. Changes are added to the master, saving server resources vs repeatedly backing up in full.

      \n
    • \n
    • \n

      Get more remote storage options including Microsoft OneDrive, SFTP, Microsoft Azure, WebDAV, Google Cloud, SCP, Backblaze and pCloud.

      \n
    • \n
    • \n

      Get 1GB of integrated storage with UpdraftVault for 99.999% reliability, redundancy and scalability.

      \n
    • \n
    • \n

      Get more control over how many backups are stored in a specified interval.
      \nRestore from other backup plugins including BackWPup, BackupWordPress, Simple Backups and more.

      \n
    • \n
    • \n

      Run backups at set times e.g. during periods of low traffic.

      \n
    • \n
    • \n

      Backup to more than one location for added protection.

      \n
    • \n
    • \n

      Get detailed reports. Includes cryptographic checksums so you can verify the integrity of the backup files and more.

      \n
    • \n
    • \n

      Get Premium migration. Migrating to the destination site is more direct and can be done from the source site.

      \n
    • \n
    • \n

      Get Multisite / multi-network compatibility.

      \n
    • \n
    • \n

      Backup non-WP files and databases e.g. tables belonging to your e-commerce store or customisations to WordPress core.

      \n
    • \n
    • \n

      Get database encryption.

      \n
    • \n
    • \n

      Manage your backups and migrations from the WP-CLI.

      \n
    • \n
    • \n

      Get Premium Support.

      \n
    • \n
    \n

    Find out more on our comparison page. UpdraftPlus Premium is available for purchase here.

    \n

    Managing multiple websites?

    \n

    UpdraftCentral is a powerful remote control dashboard for WordPress that allows you to manage your backups, as well as updates, users, pages, posts, plugins and themes from one central location. Choose between:

    \n\n

    Optimize your sites centrally by combining the power of WP-Optimize and UpdraftCentral or manage your backups centrally by combining the power of UpdraftPlus with UpdraftCentral.

    \n

    Need to create a temporary clone of your site?

    \n

    UpdraftClone makes it quick and easy to create a temporary sandbox for changes you want to try out. Simply select the versions of WordPress and PHP that you want, and we’ll do the rest. More about UpdraftClone

    \n

    The full suite of plugins from Team Updraft and friends

    \n
      \n
    • \n

      UpdraftPlus.
      \nBackup, migrate and restore. Rated 5* on the plugin directory and trusted by more than 3 million WordPress website owner

      \n
    • \n
    • \n

      WP-Optimize.
      \nClean the database, compress images and caching. Optimize your WordPress website. 5* user rating. 1 million + active installs.

      \n
    • \n
    • \n

      All-In-One Security (AIOS).
      \nSecure your WordPress website. Comprehensive, feature rich and easy to use. 5* user rating and 1 million + active installs.

      \n
    • \n
    • \n

      WP Overnight.
      \nQuality Extensions for your WooCommerce store. 5* rated invoicing, order and product management, customer management solutions and more.

      \n
    • \n
    • \n

      Easy Updates Manager.
      \nTake control of updates. Lots of features for free, and a Premium version with even more – over 300,000 users.

      \n
    • \n
    • \n

      Internal Link Juicer.Boost your SEO. Automate internal links within your WordPress website. Save time and rank higher in the search engines.

      \n
    • \n
    \n

    For other useful, free plugins see our lead developer’s profile, here.

    \n

    Are you multilingual? Can you translate?

    \n

    Do you want to help people that speak your language to backup, migrate and restore their WordPress websites?

    \n

    The UpdraftPlus backup, migration and restoration plugin is ready and waiting. The translation process is easy, and web-based – please go here for instructions: https://updraftplus.com/translate/.

    \n

    Or, if you’re already an expert WordPress translator, just pick out the .pot file from the wp-content/plugins/updraftplus/languages/ directory – if you scan for translatable strings manually, then you need to get these functions: _x(), __(), _e(), _ex(), log_e().

    \n

    Many thanks to our existing translators.

    \n

    License

    \n
    Copyright 2011-24 David Anderson\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\n
    \n

    Non-English translators are provided by volunteers, and wordpress.org does not give plugin developers control over their translations; thus relying on them is at your own risk; UpdraftPlus cannot guarantee that translations from the original English are accurate.

    \n

    We recognise and thank those mentioned at https://updraftplus.com/acknowledgements/ for code and/or libraries used and/or modified under the terms of their open source licences.

    \n", "donate_link": "https://david.dw-perspective.org.uk/donate", "num_ratings": 8195, "screenshots": {"1": {"src": "https://ps.w.org/updraftplus/assets/screenshot-1.png?rev=1927660", "caption": "

    Main dashboard - screenshots are from UpdraftPlus Premium, so may reference some features that are not part of the free version

    "}, "2": {"src": "https://ps.w.org/updraftplus/assets/screenshot-2.png?rev=1927660", "caption": "

    Configuring your backups

    "}, "3": {"src": "https://ps.w.org/updraftplus/assets/screenshot-3.png?rev=1686200", "caption": "

    Take a backup

    "}, "4": {"src": "https://ps.w.org/updraftplus/assets/screenshot-4.png?rev=1686200", "caption": "

    Choose which components to restore

    "}}, "support_url": "https://wordpress.org/support/plugin/updraftplus/", "contributors": {"aporter": {"avatar": "https://secure.gravatar.com/avatar/e6022bd1050be79e76d099696b2e0e277c2b23ed227fca2453ba961b1e87f8e4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aporter/", "display_name": "aporter"}, "bcrodua": {"avatar": "https://secure.gravatar.com/avatar/21a37ce3323f1624488277ab7eb892e4fa93be3bc798b75437820a9618cf1a26?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bcrodua/", "display_name": "bcrodua"}, "pmbaldha": {"avatar": "https://secure.gravatar.com/avatar/c351da0b667baf3599ca3492cb29b3f872fca04ace42e252cd8bdc8f9eb059e9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pmbaldha/", "display_name": "Prashant Baldha"}, "dnutbourne": {"avatar": "https://secure.gravatar.com/avatar/9cb6b0d01619d3c87f8610d2d7e887f4cba4bd8c8056f56c898ec91086c5f94e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dnutbourne/", "display_name": "DNutbourne"}, "davidanderson": {"avatar": "https://secure.gravatar.com/avatar/8cf7655071f82970f9635a0c7e7646551756c333b57166083e506a72cad98916?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/davidanderson/", "display_name": "David Anderson / Team Updraft"}, "backup-with-updraftplus": {"avatar": "https://secure.gravatar.com/avatar/03e4c4f513274842a212a10e28e8235445f074f6de013a69b8aee6a0c82d63ed?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/backup-with-updraftplus/", "display_name": "Backup with UpdraftPlus"}}, "last_updated": "2025-10-06 3:23pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/updraftplus.1.25.8.zip", "author_profile": "https://profiles.wordpress.org/davidanderson/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "
      \n
    • 1.25.8: Support for new Amazon AWS S3 regions (New Zealand, Taipei and Mexico), better statuses in the backup email report, search and replace improvement for the __PHP_Incomplete_Class. Various fixes and small tweaks - see the changelog for details. A recommended update for all.
    • \n
    "}, "active_installs": 3000000, "aspiresync_meta": {"id": "019a30bf-fc2a-706f-9b7e-8e9cc4086bc2", "name": "UpdraftPlus: WP Backup & Migration Plugin", "slug": "updraftplus", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1759764180, "version": "1.25.8"}, "support_threads": 42, "requires_plugins": [], "short_description": "Backup, restore or migrate your WordPress website to another host or domain. Schedule backups or run manually. Migrate in minutes.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 31}'); -INSERT INTO public.plugins VALUES ('019a30c1-674f-73ae-be63-188b07a7ba75', 'user-role-editor', 'User Role Editor', 'User Role Editor WordPress plugin makes user roles and capabilities changing easy. Edit/add/delete WordPress user roles and capabilities.', '

    User Role Editor WordPress plugin allows you to change user roles and capabilities easy.
    -Just turn on check boxes of capabilities you wish to add to the selected role and click “Update” button to save your changes. That’s done.
    -Add new roles and customize its capabilities according to your needs, from scratch of as a copy of other existing role.
    -Unnecessary self-made role can be deleted if there are no users whom such role is assigned.
    -Role assigned every new created user by default may be changed too.
    -Capabilities could be assigned on per user basis. Multiple roles could be assigned to user simultaneously.
    -You can add new capabilities and remove unnecessary capabilities which could be left from uninstalled plugins.
    -Multi-site support is provided.

    -

    Try it out on your free TasteWP test site.

    -

    To read more about ‘User Role Editor’ visit this page at shinephp.com

    -

    Do you need more functionality with quality support in a real time? Do you wish to remove advertisements from User Role Editor pages?
    -Buy Pro version.
    -User Role Editor Pro includes extra modules:

    -
      -
    • Block selected admin menu items for role.
    • -
    • Hide selected front-end menu items for no logged-in visitors, logged-in users, roles.
    • -
    • Block selected widgets under “Appearance” menu for role.
    • -
    • Show widgets at front-end for selected roles.
    • -
    • Block selected meta boxes (dashboard, posts, pages, custom post types) for role.
    • -
    • “Export/Import” module. You can export user role to the local file and import it to any WordPress site or other sites of the multi-site WordPress network.
    • -
    • Roles and Users permissions management via Network Admin for multisite configuration. One click Synchronization to the whole network.
    • -
    • “Other roles access” module allows to define which other roles user with current role may see at WordPress: dropdown menus, e.g assign role to user editing user profile, etc.
    • -
    • Manage user access to editing posts/pages/custom post type using posts/pages, authors, taxonomies ID list.
    • -
    • Per plugin users access management for plugins activate/deactivate operations.
    • -
    • Per form users access management for Gravity Forms plugin.
    • -
    • Shortcode to show enclosed content to the users with selected roles only.
    • -
    • Posts and pages view restrictions for selected roles.
    • -
    • Admin back-end pages permissions viewer
    • -
    -

    Pro version is advertisement free. Premium support is included.

    -

    Additional Documentation

    -

    You can find more information about “User Role Editor” plugin at this page

    -

    I am ready to answer on your questions about plugin usage. Use plugin page comments for that.

    -', '4.64.5', 'Vladimir Garagulya', '4.4', '7.3', '6.8.3', 'https://downloads.wordpress.org/plugin/user-role-editor.4.64.5.zip', '2010-03-22 00:00:00+00', '2025-04-16 12:45:00+00', 'https://profiles.wordpress.org/shinephp/', 90, 287, 3, 0, 700000, 20757215, 'https://www.role-editor.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/user-role-editor/', 'https://wordpress.org/plugins/user-role-editor/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "User Role Editor", "slug": "user-role-editor", "tags": {"role": "role", "user": "user", "access": "access", "editor": "editor", "security": "security"}, "added": "2010-03-22", "icons": {"1x": "https://ps.w.org/user-role-editor/assets/icon-128x128.jpg?rev=1020390", "2x": "https://ps.w.org/user-role-editor/assets/icon-256x256.jpg?rev=1020390"}, "author": "Vladimir Garagulya", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/user-role-editor/assets/banner-772x250.png?rev=1263116", "high": false}, "ratings": {"1": 24, "2": 4, "3": 6, "4": 10, "5": 243}, "version": "4.64.5", "homepage": "https://www.role-editor.com", "requires": "4.4", "sections": {"faq": "
      \n
    • Does it work with WordPress in multi-site environment?
      \nYes, it works with WordPress multi-site. By default plugin works for every blog from your multi-site network as for locally installed blog.
      \nTo update selected role globally for the Network you should turn on the “Apply to All Sites” checkbox. You should have superadmin privileges to use User Role Editor under WordPress multi-site.
      \nPro version allows to manage roles of the whole network from the Netwok Admin.
    • \n
    \n

    To read full FAQ section visit this page at shinephp.com.

    \n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and works nicely

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pk Gibson (pkgibson101) on June 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is working well. Thank you for the developer who put lot of time into it. Very nice, lightest and most simple.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Worked great for my site

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy indivisible on April 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m a DIY self learner, and had a great experience with URE. It has vast capabilities and is organized to make it easy to navigate and apply so many customizations. Very intuitive. On the one occasion I needed guidance, the tech support was quick, personal and a success. Highly recommend.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wont save capabilities for custom role

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jen000 on April 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I hate giving bad reviews as I know how much work goes into these plugins, often by one person. But we have wasted so much time and lost orders because of a known bug. I can see that others have reported this bug from at least 4 months ago. So I want to warn others. The whole point of us using this plugin was to create a custom role and to assign specific capabilities to that role. For a short while it worked so we launched the site. And then it stopped working and caused chaos. We have spent FOREVER trying to figure this out. We will be moving to a different plugin asap.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Didn't work on multisite

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shirax on March 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Didn''t break my site, it just doesn''t work. On multisite, trying to give user permissions to install plugins--as it indicated in settings that it could do that. Appears to uninstall cleanly, at least.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Plugin works great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy LambrosHatzini on November 6, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve tried two other plugins to no avail. This one works great!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    sadly give

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cicavizio on September 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    its set several user role randomly, and sadly the uninstall didnt fix

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Broke my entire multisite

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy RonnyDee on September 25, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Congratulations on this plugin. This destroyed my entire WP Multisite, so that the registration process could no longer assign the created websites to any user.

    \n\n\n\n

    There was no way to fix this error. Really great. Maybe you should think about how you can better a) save changes and b) restore them BEFORE you make any changes at all.

    \n\n\n\n

    A plugin like this should almost be banned!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best user role editing plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy skylabb on September 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I like the simplicity of the UI making it easy to edit user roles.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works for me

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy aaronlkh on September 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Used the free version and worked well for me. Thanks developer!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does not appear to copy role 100%

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rowland (jollyroger99) on April 9, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    If a user has shop manager rights, I use ure to copy the role to a new role name, the user with the new role does not have the same rights as shop manager. Moving the user back to shop manager restores their rights ?

    \n
    \n
    \n", "changelog": "

    [4.64.5] 16.04.2025

    \n
      \n
    • Update: Marked as compatible with WordPress 6.8
    • \n
    • Update: Minor changes were applied to the CSS/JS loading code to minimize “Plugin Check” tool warnings.
    • \n
    • Plugin headers were extended at role-editor.php and readme.txt files according to wordpress.org recommendations.
    • \n
    \n

    [4.64.4] 15.12.2024

    \n
      \n
    • Security Fix: Users – “Add Role”, “Revoke Role” buttons: Cross-Site request forgery to privilege escalation was possible due to missed nonce validation. This issue was discovered and responsibly reported by vgo0.
    • \n
    \n

    File changelog.txt contains the full list of changes.

    \n", "description": "

    User Role Editor WordPress plugin allows you to change user roles and capabilities easy.
    \nJust turn on check boxes of capabilities you wish to add to the selected role and click “Update” button to save your changes. That’s done.
    \nAdd new roles and customize its capabilities according to your needs, from scratch of as a copy of other existing role.
    \nUnnecessary self-made role can be deleted if there are no users whom such role is assigned.
    \nRole assigned every new created user by default may be changed too.
    \nCapabilities could be assigned on per user basis. Multiple roles could be assigned to user simultaneously.
    \nYou can add new capabilities and remove unnecessary capabilities which could be left from uninstalled plugins.
    \nMulti-site support is provided.

    \n

    Try it out on your free TasteWP test site.

    \n

    To read more about ‘User Role Editor’ visit this page at shinephp.com

    \n

    Do you need more functionality with quality support in a real time? Do you wish to remove advertisements from User Role Editor pages?
    \nBuy Pro version.
    \nUser Role Editor Pro includes extra modules:

    \n
      \n
    • Block selected admin menu items for role.
    • \n
    • Hide selected front-end menu items for no logged-in visitors, logged-in users, roles.
    • \n
    • Block selected widgets under “Appearance” menu for role.
    • \n
    • Show widgets at front-end for selected roles.
    • \n
    • Block selected meta boxes (dashboard, posts, pages, custom post types) for role.
    • \n
    • “Export/Import” module. You can export user role to the local file and import it to any WordPress site or other sites of the multi-site WordPress network.
    • \n
    • Roles and Users permissions management via Network Admin for multisite configuration. One click Synchronization to the whole network.
    • \n
    • “Other roles access” module allows to define which other roles user with current role may see at WordPress: dropdown menus, e.g assign role to user editing user profile, etc.
    • \n
    • Manage user access to editing posts/pages/custom post type using posts/pages, authors, taxonomies ID list.
    • \n
    • Per plugin users access management for plugins activate/deactivate operations.
    • \n
    • Per form users access management for Gravity Forms plugin.
    • \n
    • Shortcode to show enclosed content to the users with selected roles only.
    • \n
    • Posts and pages view restrictions for selected roles.
    • \n
    • Admin back-end pages permissions viewer
    • \n
    \n

    Pro version is advertisement free. Premium support is included.

    \n

    Additional Documentation

    \n

    You can find more information about “User Role Editor” plugin at this page

    \n

    I am ready to answer on your questions about plugin usage. Use plugin page comments for that.

    \n", "screenshots": "
    1. \"screenshot-1.png

      screenshot-1.png User Role Editor main form

    2. \"screenshot-2.png

      screenshot-2.png Add/Remove roles or capabilities

    3. \"screenshot-3.png

      screenshot-3.png User Capabilities link

    4. \"screenshot-4.png

      screenshot-4.png User Capabilities Editor

    5. \"screenshot-5.png

      screenshot-5.png Bulk change role for users without roles

    6. \"screenshot-6.png

      screenshot-6.png Assign multiple roles to the selected users

    ", "installation": "

    Installation procedure:

    \n
      \n
    1. Deactivate plugin if you have the previous version installed.
    2. \n
    3. Extract “user-role-editor.zip” archive content to the “/wp-content/plugins/user-role-editor” directory.
    4. \n
    5. Activate “User Role Editor” plugin via ‘Plugins’ menu in WordPress admin menu.
    6. \n
    7. Go to the “Users”-“User Role Editor” menu item and change your WordPress standard roles capabilities according to your needs.
    8. \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/user-role-editor.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/user-role-editor.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/user-role-editor.1.2.zip", "2.0": "https://downloads.wordpress.org/plugin/user-role-editor.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.zip", "3.0": "https://downloads.wordpress.org/plugin/user-role-editor.3.0.zip", "3.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.1.zip", "3.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.2.zip", "3.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.3.zip", "3.4": "https://downloads.wordpress.org/plugin/user-role-editor.3.4.zip", "3.5": "https://downloads.wordpress.org/plugin/user-role-editor.3.5.zip", "3.6": "https://downloads.wordpress.org/plugin/user-role-editor.3.6.zip", "3.8": "https://downloads.wordpress.org/plugin/user-role-editor.3.8.zip", "3.9": "https://downloads.wordpress.org/plugin/user-role-editor.3.9.zip", "4.0": "https://downloads.wordpress.org/plugin/user-role-editor.4.0.zip", "4.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.1.zip", "4.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.2.zip", "4.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.3.zip", "4.4": "https://downloads.wordpress.org/plugin/user-role-editor.4.4.zip", "4.6": "https://downloads.wordpress.org/plugin/user-role-editor.4.6.zip", "4.8": "https://downloads.wordpress.org/plugin/user-role-editor.4.8.zip", "4.9": "https://downloads.wordpress.org/plugin/user-role-editor.4.9.zip", "3.10": "https://downloads.wordpress.org/plugin/user-role-editor.3.10.zip", "3.12": "https://downloads.wordpress.org/plugin/user-role-editor.3.12.zip", "3.14": "https://downloads.wordpress.org/plugin/user-role-editor.3.14.zip", "4.10": "https://downloads.wordpress.org/plugin/user-role-editor.4.10.zip", "4.11": "https://downloads.wordpress.org/plugin/user-role-editor.4.11.zip", "4.12": "https://downloads.wordpress.org/plugin/user-role-editor.4.12.zip", "4.14": "https://downloads.wordpress.org/plugin/user-role-editor.4.14.zip", "4.15": "https://downloads.wordpress.org/plugin/user-role-editor.4.15.zip", "4.16": "https://downloads.wordpress.org/plugin/user-role-editor.4.16.zip", "4.17": "https://downloads.wordpress.org/plugin/user-role-editor.4.17.zip", "4.18": "https://downloads.wordpress.org/plugin/user-role-editor.4.18.zip", "4.19": "https://downloads.wordpress.org/plugin/user-role-editor.4.19.zip", "4.20": "https://downloads.wordpress.org/plugin/user-role-editor.4.20.zip", "4.21": "https://downloads.wordpress.org/plugin/user-role-editor.4.21.zip", "4.22": "https://downloads.wordpress.org/plugin/user-role-editor.4.22.zip", "4.23": "https://downloads.wordpress.org/plugin/user-role-editor.4.23.zip", "4.24": "https://downloads.wordpress.org/plugin/user-role-editor.4.24.zip", "4.25": "https://downloads.wordpress.org/plugin/user-role-editor.4.25.zip", "4.26": "https://downloads.wordpress.org/plugin/user-role-editor.4.26.zip", "4.27": "https://downloads.wordpress.org/plugin/user-role-editor.4.27.zip", "4.28": "https://downloads.wordpress.org/plugin/user-role-editor.4.28.zip", "4.29": "https://downloads.wordpress.org/plugin/user-role-editor.4.29.zip", "4.30": "https://downloads.wordpress.org/plugin/user-role-editor.4.30.zip", "4.31": "https://downloads.wordpress.org/plugin/user-role-editor.4.31.zip", "4.32": "https://downloads.wordpress.org/plugin/user-role-editor.4.32.zip", "4.33": "https://downloads.wordpress.org/plugin/user-role-editor.4.33.zip", "4.34": "https://downloads.wordpress.org/plugin/user-role-editor.4.34.zip", "4.35": "https://downloads.wordpress.org/plugin/user-role-editor.4.35.zip", "4.36": "https://downloads.wordpress.org/plugin/user-role-editor.4.36.zip", "4.37": "https://downloads.wordpress.org/plugin/user-role-editor.4.37.zip", "4.38": "https://downloads.wordpress.org/plugin/user-role-editor.4.38.zip", "4.39": "https://downloads.wordpress.org/plugin/user-role-editor.4.39.zip", "4.40": "https://downloads.wordpress.org/plugin/user-role-editor.4.40.zip", "4.41": "https://downloads.wordpress.org/plugin/user-role-editor.4.41.zip", "4.42": "https://downloads.wordpress.org/plugin/user-role-editor.4.42.zip", "4.43": "https://downloads.wordpress.org/plugin/user-role-editor.4.43.zip", "4.44": "https://downloads.wordpress.org/plugin/user-role-editor.4.44.zip", "4.45": "https://downloads.wordpress.org/plugin/user-role-editor.4.45.zip", "4.46": "https://downloads.wordpress.org/plugin/user-role-editor.4.46.zip", "4.47": "https://downloads.wordpress.org/plugin/user-role-editor.4.47.zip", "4.48": "https://downloads.wordpress.org/plugin/user-role-editor.4.48.zip", "4.49": "https://downloads.wordpress.org/plugin/user-role-editor.4.49.zip", "4.50": "https://downloads.wordpress.org/plugin/user-role-editor.4.50.zip", "4.51": "https://downloads.wordpress.org/plugin/user-role-editor.4.51.zip", "4.52": "https://downloads.wordpress.org/plugin/user-role-editor.4.52.zip", "4.53": "https://downloads.wordpress.org/plugin/user-role-editor.4.53.zip", "4.54": "https://downloads.wordpress.org/plugin/user-role-editor.4.54.zip", "4.55": "https://downloads.wordpress.org/plugin/user-role-editor.4.55.zip", "4.56": "https://downloads.wordpress.org/plugin/user-role-editor.4.56.zip", "4.57": "https://downloads.wordpress.org/plugin/user-role-editor.4.57.zip", "4.58": "https://downloads.wordpress.org/plugin/user-role-editor.4.58.zip", "4.59": "https://downloads.wordpress.org/plugin/user-role-editor.4.59.zip", "4.60": "https://downloads.wordpress.org/plugin/user-role-editor.4.60.zip", "4.61": "https://downloads.wordpress.org/plugin/user-role-editor.4.61.zip", "4.62": "https://downloads.wordpress.org/plugin/user-role-editor.4.62.zip", "4.63": "https://downloads.wordpress.org/plugin/user-role-editor.4.63.zip", "4.64": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.zip", "2.0.1": "https://downloads.wordpress.org/plugin/user-role-editor.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/user-role-editor.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/user-role-editor.2.0.3.zip", "2.1.1": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.9.zip", "2.2.1": "https://downloads.wordpress.org/plugin/user-role-editor.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/user-role-editor.2.2.2.zip", "3.0.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/user-role-editor.3.0.4.zip", "3.1.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.1.1.zip", "3.2.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.2.1.zip", "3.3.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.3.3.zip", "3.5.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/user-role-editor.3.5.4.zip", "3.6.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.6.2.zip", "3.7.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/plugin/user-role-editor.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/plugin/user-role-editor.3.7.5.zip", "3.8.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/user-role-editor.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/user-role-editor.3.8.3.zip", "4.1.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.1.1.zip", "4.5.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.5.2.zip", "4.7.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.7.1.zip", "trunk": "https://downloads.wordpress.org/plugin/user-role-editor.zip", "2.1.10": "https://downloads.wordpress.org/plugin/user-role-editor.2.1.10.zip", "3.14.1": "https://downloads.wordpress.org/plugin/user-role-editor.3.14.1.zip", "4.14.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.14.1.zip", "4.14.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.14.2.zip", "4.14.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.14.3.zip", "4.14.4": "https://downloads.wordpress.org/plugin/user-role-editor.4.14.4.zip", "4.17.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.17.1.zip", "4.17.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.17.2.zip", "4.17.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.17.3.zip", "4.18.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.18.1.zip", "4.18.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.18.2.zip", "4.18.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.18.3.zip", "4.18.4": "https://downloads.wordpress.org/plugin/user-role-editor.4.18.4.zip", "4.19.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.19.1.zip", "4.19.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.19.2.zip", "4.19.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.19.3.zip", "4.20.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.20.1.zip", "4.21.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.21.1.zip", "4.23.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.23.1.zip", "4.23.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.23.2.zip", "4.25.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.25.1.zip", "4.25.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.25.2.zip", "4.26.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.26.1.zip", "4.26.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.26.2.zip", "4.26.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.26.3.zip", "4.27.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.27.1.zip", "4.27.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.27.2.zip", "4.31.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.31.1.zip", "4.32.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.32.1.zip", "4.32.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.32.2.zip", "4.32.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.32.3.zip", "4.35.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.35.1.zip", "4.35.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.35.2.zip", "4.35.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.35.3.zip", "4.36.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.36.1.zip", "4.40.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.40.1.zip", "4.40.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.40.3.zip", "4.50.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.50.1.zip", "4.50.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.50.2.zip", "4.51.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.51.1.zip", "4.51.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.51.2.zip", "4.51.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.51.3.zip", "4.52.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.52.1.zip", "4.52.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.52.2.zip", "4.53.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.53.1.zip", "4.55.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.55.1.zip", "4.56.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.56.1.zip", "4.57.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.57.1.zip", "4.58.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.58.1.zip", "4.58.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.58.2.zip", "4.58.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.58.3.zip", "4.59.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.59.1.zip", "4.60.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.60.1.zip", "4.60.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.60.2.zip", "4.61.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.61.1.zip", "4.61.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.61.2.zip", "4.63.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.63.1.zip", "4.63.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.63.2.zip", "4.63.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.63.3.zip", "4.64.1": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.1.zip", "4.64.2": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.2.zip", "4.64.3": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.3.zip", "4.64.4": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.4.zip", "4.64.5": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.5.zip"}, "downloaded": 20757215, "description": "

    User Role Editor WordPress plugin allows you to change user roles and capabilities easy.
    \nJust turn on check boxes of capabilities you wish to add to the selected role and click “Update” button to save your changes. That’s done.
    \nAdd new roles and customize its capabilities according to your needs, from scratch of as a copy of other existing role.
    \nUnnecessary self-made role can be deleted if there are no users whom such role is assigned.
    \nRole assigned every new created user by default may be changed too.
    \nCapabilities could be assigned on per user basis. Multiple roles could be assigned to user simultaneously.
    \nYou can add new capabilities and remove unnecessary capabilities which could be left from uninstalled plugins.
    \nMulti-site support is provided.

    \n

    Try it out on your free TasteWP test site.

    \n

    To read more about ‘User Role Editor’ visit this page at shinephp.com

    \n

    Do you need more functionality with quality support in a real time? Do you wish to remove advertisements from User Role Editor pages?
    \nBuy Pro version.
    \nUser Role Editor Pro includes extra modules:

    \n
      \n
    • Block selected admin menu items for role.
    • \n
    • Hide selected front-end menu items for no logged-in visitors, logged-in users, roles.
    • \n
    • Block selected widgets under “Appearance” menu for role.
    • \n
    • Show widgets at front-end for selected roles.
    • \n
    • Block selected meta boxes (dashboard, posts, pages, custom post types) for role.
    • \n
    • “Export/Import” module. You can export user role to the local file and import it to any WordPress site or other sites of the multi-site WordPress network.
    • \n
    • Roles and Users permissions management via Network Admin for multisite configuration. One click Synchronization to the whole network.
    • \n
    • “Other roles access” module allows to define which other roles user with current role may see at WordPress: dropdown menus, e.g assign role to user editing user profile, etc.
    • \n
    • Manage user access to editing posts/pages/custom post type using posts/pages, authors, taxonomies ID list.
    • \n
    • Per plugin users access management for plugins activate/deactivate operations.
    • \n
    • Per form users access management for Gravity Forms plugin.
    • \n
    • Shortcode to show enclosed content to the users with selected roles only.
    • \n
    • Posts and pages view restrictions for selected roles.
    • \n
    • Admin back-end pages permissions viewer
    • \n
    \n

    Pro version is advertisement free. Premium support is included.

    \n

    Additional Documentation

    \n

    You can find more information about “User Role Editor” plugin at this page

    \n

    I am ready to answer on your questions about plugin usage. Use plugin page comments for that.

    \n", "donate_link": "", "num_ratings": 287, "screenshots": {"1": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-1.png?rev=3274698", "caption": "screenshot-1.png User Role Editor main form"}, "2": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-2.png?rev=3274698", "caption": "screenshot-2.png Add/Remove roles or capabilities"}, "3": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-3.png?rev=3274698", "caption": "screenshot-3.png User Capabilities link"}, "4": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-4.png?rev=3274698", "caption": "screenshot-4.png User Capabilities Editor"}, "5": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-5.png?rev=3274698", "caption": "screenshot-5.png Bulk change role for users without roles"}, "6": {"src": "https://ps.w.org/user-role-editor/trunk/screenshot-6.png?rev=3274698", "caption": "screenshot-6.png Assign multiple roles to the selected users"}}, "support_url": "https://wordpress.org/support/plugin/user-role-editor/", "contributors": {"shinephp": {"avatar": "https://secure.gravatar.com/avatar/5885f2ba31c290757d4e756971436b971adde9b0c95aae93b27bd93ac2fa8407?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/shinephp/", "display_name": "Vladimir Garagulya"}}, "last_updated": "2025-04-16 12:45pm GMT", "preview_link": "https://wordpress.org/plugins/user-role-editor/?preview=1", "requires_php": "7.3", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/user-role-editor.4.64.5.zip", "author_profile": "https://profiles.wordpress.org/shinephp/", "business_model": false, "repository_url": "", "upgrade_notice": {"[4.64.5] 16.04.2025": "
      \n
    • Update: Marked as compatible with WordPress 6.8
    • \n
    • Update: Minor changes were applied to the CSS/JS loading code to minimize "Plugin Check" tool warnings.
    • \n
    "}, "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fc26-72c6-bddb-cdf62567f15f", "name": "User Role Editor", "slug": "user-role-editor", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1744807500, "version": "4.64.5"}, "support_threads": 3, "requires_plugins": [], "short_description": "User Role Editor WordPress plugin makes user roles and capabilities changing easy. Edit/add/delete WordPress user roles and capabilities.", "author_block_count": 0, "author_block_rating": 90, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-6757-719f-aedc-7dcb27b8349e', 'w3-total-cache', 'W3 Total Cache', 'Search Engine (SEO) & Performance Optimization (WPO) via caching. Integrated caching: CDN, Page, Minify, Object, Fragment, Database support.', '

    W3 Total Cache (W3TC) improves the SEO, Core Web Vitals and overall user experience of your site by increasing website performance and reducing load times by leveraging features like content delivery network (CDN) integration and the latest best practices.

    -

    W3TC is the only web host agnostic Web Performance Optimization (WPO) framework for WordPress trusted by millions of publishers, web developers, and web hosts worldwide for more than a decade. It is the total performance solution for optimizing WordPress Websites.

    -

    BENEFITS

    -
      -
    • Improvements in search engine result page rankings, especially for mobile-friendly websites and sites that use SSL
    • -
    • At least 10x improvement in overall site performance (Grade A in WebPagetest or significant Google PageSpeed improvements) when fully configured
    • -
    • Improved conversion rates and “site performance” which affect your site’s rank on Google.com
    • -
    • “Instant” repeat page views: browser caching
    • -
    • Optimized progressive render: pages start rendering quickly and can be interacted with more quickly
    • -
    • Reduced page load time: increased visitor time on site; visitors view more pages
    • -
    • Improved web server performance; sustain high traffic periods
    • -
    • Up to 80% bandwidth savings when you minify HTML, minify CSS and minify JS files.
    • -
    -

    KEY FEATURES

    -
      -
    • Compatible with shared hosting, virtual private / dedicated servers and dedicated servers / clusters
    • -
    • Transparent content delivery network (CDN) management with Media Library, theme files and WordPress itself
    • -
    • Mobile support: respective caching of pages by referrer or groups of user agents including theme switching for groups of referrers or user agents
    • -
    • Accelerated Mobile Pages (AMP) support
    • -
    • Secure Socket Layer (SSL/TLS) support
    • -
    • Caching of (minified and compressed) pages and posts in memory or on disk or on (FSD) CDN (by user agent group)
    • -
    • Caching of (minified and compressed) CSS and JavaScript in memory, on disk or on CDN
    • -
    • Caching of feeds (site, categories, tags, comments, search results) in memory or on disk or on CDN
    • -
    • Caching of search results pages (i.e. URIs with query string variables) in memory or on disk
    • -
    • Caching of database objects in memory or on disk
    • -
    • Caching of objects in memory or on disk
    • -
    • Caching of fragments in memory or on disk
    • -
    • Caching methods include local Disk, Redis, Memcached, APC, APCu, eAccelerator, XCache, and WinCache
    • -
    • Minify CSS, Minify JavaScript and Minify HTML with granular control
    • -
    • Minification of posts and pages and RSS feeds
    • -
    • Minification of inline, embedded or 3rd party JavaScript with automated updates to assets
    • -
    • Minification of inline, embedded or 3rd party CSS with automated updates to assets
    • -
    • Defer non critical CSS and Javascript for rendering pages faster than ever before
    • -
    • Defer offscreen images using Lazy Load to improve the user experience
    • -
    • Browser caching using cache-control, future expire headers and entity tags (ETag) with “cache-busting”
    • -
    • JavaScript grouping by template (home page, post page etc) with embed location control
    • -
    • Non-blocking JavaScript embedding
    • -
    • Import post attachments directly into the Media Library (and CDN)
    • -
    • Leverage our multiple CDN integrations to optimize images
    • -
    • WP-CLI support for cache purging, query string updating and more
    • -
    • Various security features to help ensure website safety
    • -
    • Caching statistics for performance insights of any enabled feature
    • -
    • Extension framework for customization or extensibility for Cloudflare, WPML and much more
    • -
    • Reverse proxy integration via Nginx or Varnish
    • -
    • WebP Converter extension provides WebP image format conversion from common image formats (on upload and on demand)
    • -
    -

    W3 Total Cache Pro Features

    -

    With over a million active installs, W3 Total Cache is the most comprehensive WordPress caching plugin available and has robust premium features that help deliver an exceptional user experience.

    -
      -
    • Full Site Delivery: Serve your entire site from a Content Delivery Network (CDN), ensuring faster load times worldwide.
    • -
    • Fragment Cache: Optimize the caching of dynamic content while still improving performance.
    • -
    • REST API Caching: Speed up your headless WordPress site by caching REST API calls.
    • -
    • Eliminate Render-Blocking CSS: Ensure your CSS doesn’t hold up page loading, providing faster initial paint.
    • -
    • Delay Scripts: Improve performance by delaying the loading of non-essential scripts until they are needed.
    • -
    • Preload Requests: Boost page performance by preloading critical resources before they’re requested.
    • -
    • Remove CSS/JS: Clean up unnecessary CSS and JavaScript files that slow down your pages.
    • -
    • Lazy Load Google Maps: Load Google Maps only when it’s visible, reducing unnecessary requests.
    • -
    • WPML Extension: Optimize performance on multilingual sites powered by WPML.
    • -
    • Caching Statistics: Get detailed insights on cache usage and performance improvements.
    • -
    • Purge Logs: Keep your site clean by automatically purging unnecessary cache logs.
    • -
    -

    30-Day Money-Back Guarantee

    -

    Try W3 Total Cache Pro risk-free with our 30-day money-back guarantee. If you’re not satisfied, we will refund your purchase.

    -

    PAGESPEED SCORE IMPROVEMENTS

    -

    To help you understand the impact of individual features on your website’s performance, we’ve tested each feature separately to see its effect on Google PageSpeed scores. While optimal results come from configuring several different caching tools together, the following individual features also show significant improvements on their own:

    -

    Remove Unused CSS/JS

    -

    This feature removes CSS and JavaScript files that are not needed for the current page, reducing the load time.

    -
      -
    • Added over 27 points to the Google PageSpeed score (Before: 57.2 / After: 86.7)
    • -
    • Reduced the Potential Savings From Unused JavaScript from 127.5 KiB to 84 KiB
    • -
    • View the test results
    • -
    -

    Full Site Delivery

    -

    Full Site Delivery optimizes the delivery of your entire site, enhancing the server response time.

    -
      -
    • Added a 99% performance enhancement to the Average Server Response Time (Before: 3413 ms / After: 34 ms)
    • -
    • View the test results
    • -
    -

    Eliminate Render Blocking CSS

    -

    This feature eliminates CSS that blocks the rendering of your page, speeding up the initial load time.

    -
      -
    • Added over 17 points to the Google PageSpeed score (Before: 53.75 / After: 71)
    • -
    • Reduced the Potential Savings From Render-Blocking Resources by over 94% (Before: 2432.5 ms / After: 125 ms)
    • -
    • Improved the Largest Contentful Paint time by over 56% (Before: 7s / After: 3.04s)
    • -
    • View the test results
    • -
    -

    Delay Scripts

    -

    Delay Scripts postpones the loading of certain scripts until they are needed, reducing initial load times.

    -
      -
    • Added 14 points to the Google PageSpeed Performance score (Before: 54.25 / After: 68.5)
    • -
    • Reduced the Time Third-Party Code Blocked The Main Thread For by 62% (Before: 825 ms / After: 197.5 ms)
    • -
    • View the test results
    • -
    -

    Rest API Caching

    -

    This feature caches API responses, reducing server load and speeding up API interactions.

    -
      -
    • Reduced the Average Server Load by 40% (Before: 0.62 / After: 0.37)
    • -
    • Sped up API Responses by 84.5% (Before: 968ms / After: 150ms)
    • -
    • Reduced the Average Server Load by 24% under during a major traffic spike (Before: 34.55 / After: 26.19)
    • -
    • View the test results
    • -
    -

    WebP Images

    -

    Converts images to the WebP format, which is more efficient and faster to load.

    -
      -
    • Added over 9 points to the Google PageSpeed score (Before: 84.67 / After: 93.83)
    • -
    • View the test results
    • -
    -

    Lazy Load Google Maps

    -

    Delays the loading of Google Maps until the user interacts with them, reducing initial load time.

    -
      -
    • Added 10 points to the Google PageSpeed score (Before: 66 / After: 76)
    • -
    • Reduced the Total Blocking Time Performance score by 72% (Before: 287.5 ms / After: 80 ms)
    • -
    • View the test results
    • -
    -

    Speed up your site tremendously, improve core web vitals and the overall user experience for your visitors without having to change your WordPress host, theme, plugins or your content production workflow.

    -

    What users have to say:

    - -

    Who do I thank for all of this?

    -

    It’s quite difficult to recall all of the innovators that have shared their thoughts, code and experiences in the blogosphere over the years, but here are some names to get you started:

    - -

    Please reach out to all of these people and support their projects if you’re so inclined.

    -', '2.8.14', 'BoldGrid', '5.3', '7.2.5', '6.8.3', 'https://downloads.wordpress.org/plugin/w3-total-cache.2.8.14.zip', '2009-07-29 00:00:00+00', '2025-10-20 16:29:00+00', 'https://profiles.wordpress.org/boldgrid/', 88, 5409, 25, 19, 1000000, 60000372, 'https://www.boldgrid.com/totalcache/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/w3-total-cache/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "W3 Total Cache", "slug": "w3-total-cache", "tags": {"cdn": "cdn", "caching": "caching", "optimize": "Optimize", "pagespeed": "pagespeed", "performance": "performance"}, "added": "2009-07-29", "icons": {"1x": "https://ps.w.org/w3-total-cache/assets/icon-128x128.png?rev=1041806", "2x": "https://ps.w.org/w3-total-cache/assets/icon-256x256.png?rev=1041806"}, "author": "BoldGrid", "rating": 88, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/w3-total-cache/assets/banner-772x250.jpg?rev=1041806", "high": false}, "ratings": {"1": 512, "2": 101, "3": 158, "4": 585, "5": 4053}, "version": "2.8.14", "homepage": "https://www.boldgrid.com/totalcache/", "requires": "5.3", "sections": {"faq": "\n
    \nWhy does speed matter?\n\n

    \n

    Search engines like Google, measure and factor in the speed of web sites in their ranking algorithm. When they recommend a site they want to make sure users find what they’re looking for quickly. So in effect you and Google should have the same objective.

    \n

    Speed is among the most significant success factors web sites face. In fact, your site’s speed directly affects your income (revenue) — it’s a fact. Some high traffic sites conducted research and uncovered the following:

    \n
      \n
    • Google.com: +500 ms (speed decrease) -> -20% traffic loss [1]
    • \n
    • Yahoo.com: +400 ms (speed decrease) -> -5-9% full-page traffic loss (visitor left before the page finished loading) [2]
    • \n
    • Amazon.com: +100 ms (speed decrease) -> -1% sales loss [1]
    • \n
    \n

    A thousandth of a second is not a long time, yet the impact is quite significant. Even if you’re not a large company (or just hope to become one), a loss is still a loss. W3 Total Cache is your solution for faster websites, happier visitors and better results.

    \n

    Many of the other consequences of poor performance were discovered more than a decade ago:

    \n
      \n
    • Lower perceived credibility (Fogg et al. 2001)
    • \n
    • Lower perceived quality (Bouch, Kuchinsky, and Bhatti 2000)
    • \n
    • Increased user frustration (Ceaparu et al. 2004)
    • \n
    • Increased blood pressure (Scheirer et al. 2002)
    • \n
    • Reduced flow rates (Novak, Hoffman, and Yung 200)
    • \n
    • Reduced conversion rates (Akamai 2007)
    • \n
    • Increased exit rates (Nielsen 2000)
    • \n
    • Are perceived as less interesting (Ramsay, Barbesi, and Preece 1998)
    • \n
    • Are perceived as less attractive (Skadberg and Kimmel 2004)
    • \n
    \n

    There are a number of resources that have been documenting the role of performance in success on the web, W3 Total Cache exists to give you a framework to tune your application or site without having to do years of research.

    \n

    \n
    \nWhy is W3 Total Cache better than other caching solutions?\n\n

    \n

    It’s a complete framework. Most cache plugins available do a great job at achieving a couple of performance gains. Total Cache is different because it remedies numerous performance reducing aspects of any web site. It goes farther than the basics, beyond merely reducing CPU usage (load) or bandwidth consumption for HTML pages. Equally important, the plugin requires no theme modifications, modifications to your .htaccess (mod_rewrite rules) or programming compromises to get started. Most importantly, it’s the only plugin designed to optimize all practical hosting environments small or large. The options are many and setup is easy.

    \n

    \n
    \nI’ve never heard of any of this stuff; my site is fine, no one complains about the speed. Why should I install this?\n\n

    \n

    Rarely do readers take the time to complain. They typically just stop browsing earlier than you’d prefer and may not return altogether. This is the only plugin specifically designed to make sure that all aspects of your site are as fast as possible. Google is placing more emphasis on the speed of a site as a factor in rankings; this plugin helps with that too.

    \n

    It’s in every web site owner’s best interest is to make sure that the performance of your site is not hindering its success.

    \n

    \n
    \nWhich WordPress versions are supported?\n\n

    \n

    To use all features in the suite, a minimum of version WordPress 5.3 with PHP 7.2.5 is required. Earlier versions will benefit from our Media Library Importer to get them back on the upgrade path and into a CDN of their choosing.

    \n

    \n
    \nWhy doesn’t minify work for me?\n\n

    \n

    Great question. W3 Total Cache uses several open source tools to attempt to combine and optimize CSS, JavaScript and HTML etc. Unfortunately some trial and error is required on the part of developers is required to make sure that their code can be successfully minified with the various libraries W3 Total Cache supports. Even still, if developers do test their code thoroughly, they cannot be sure that interoperability with other code your site may have. This fault does not lie with any single party here, because there are thousands of plugins and theme combinations that a given site can have, there are millions of possible combinations of CSS, JavaScript etc.

    \n

    A good rule of thumb is to try auto mode, work with a developer to identify the code that is not compatible and start with combine only mode (the safest optimization) and increase the optimization to the point just before functionality (JavaScript) or user interface / layout (CSS) breaks in your site.

    \n

    We’re always working to make this more simple and straight forward in future releases, but this is not an undertaking we can realize on our own. When you find a plugin, theme or file that is not compatible with minification reach out to the developer and ask them either to provide a minified version with their distribution or otherwise make sure their code is minification-friendly.

    \n

    \n
    \nWhat about comments? Does the plugin slow down the rate at which comments appear?\n\n

    \n

    On the contrary, as with any other action a user can perform on a site, faster performance will encourage more of it. The cache is so quickly rebuilt in memory that it’s no trouble to show visitors the most current version of a post that’s experiencing Digg, Slashdot, Drudge Report, Yahoo Buzz or Twitter effect.

    \n

    \n
    \nWill the plugin interfere with other plugins or widgets?\n\n

    \n

    No, on the contrary if you use the minify settings you will improve their performance by several times.

    \n

    \n
    \nDoes this plugin work with WordPress in network mode?\n\n

    \n

    Indeed it does.

    \n

    \n
    \nDoes this plugin work with BuddyPress (bbPress)?\n\n

    \n

    Yes.

    \n

    \n
    \nWill this plugin speed up WP Admin?\n\n

    \n

    Yes, indirectly – if you have a lot of bloggers working with you, you will find that it feels like you have a server dedicated only to WP Admin once this plugin is enabled; the result, increased productivity.

    \n

    \n
    \nWhich web servers do you support?\n\n

    \n

    We are aware of no incompatibilities with apache 1.3+, nginx 0.7+, IIS 5+ or litespeed 4.0.2+. If there’s a web server you feel we should be actively testing (e.g. lighttpd), we’re interested in hearing.

    \n

    \n
    \nIs this plugin server cluster and load balancer friendly?\n\n

    \n

    Yes, built from the ground up with scale and current hosting paradigms in mind.

    \n

    \n
    \nWhat is the purpose of the “Media Library Import” tool and how do I use it?\n\n

    \n

    The media library import tool is for old or “messy” WordPress installations that have attachments (images etc in posts or pages) scattered about the web server or “hot linked” to 3rd party sites instead of properly using the media library.

    \n

    The tool will scan your posts and pages for the cases above and copy them to your media library, update your posts to use the link addresses and produce a .htaccess file containing the list of of permanent redirects, so search engines can find the files in their new location.

    \n

    You should backup your database before performing this operation.

    \n

    \n
    \nHow do I find the JS and CSS to optimize (minify) them with this plugin?\n\n

    \n

    Use the “Help” button available on the Minify settings tab. Once open, the tool will look for and populate the CSS and JS files used in each template of the site for the active theme. To then add a file to the minify settings, click the checkbox next to that file. The embed location of JS files can also be specified to improve page render performance. Minify settings for all installed themes can be managed from the tool as well by selecting the theme from the drop down menu. Once done configuring minify settings, click the apply and close button, then save settings in the Minify settings tab.

    \n

    \n
    \nI don’t understand what a CDN has to do with caching, that’s completely different, no?\n\n

    \n

    Technically no, a CDN is a high performance cache that stores static assets (your theme files, media library etc) in various locations throughout the world in order to provide low latency access to them by readers in those regions. Use Total Cache to accelerate your site by putting your content closer to your users with our many CDN integrations including Cloudflare, StackPath, AWS and more.

    \n

    \n
    \nHow do I use an Origin Pull (Mirror) CDN?\n\n

    \n

    Login to your CDN providers control panel or account management area. Following any set up steps they provide, create a new “pull zone” or “bucket” for your site’s domain name. If there’s a set up wizard or any troubleshooting tips your provider offers, be sure to review them. In the CDN tab of the plugin, enter the hostname your CDN provider provided in the “replace site’s hostname with” field. You should always do a quick check by opening a test file from the CDN hostname, e.g. http://cdn.domain.com/favicon.ico. Troubleshoot with your CDN provider until this test is successful.

    \n

    Now go to the General tab and click the checkbox and save the settings to enable CDN functionality and empty the cache for the changes to take effect.

    \n

    \n
    \nHow do I configure Amazon Simple Storage Service (Amazon S3) or Amazon CloudFront as my CDN?\n\n

    \n

    First create an S3 account (unless using origin pull); it may take several hours for your account credentials to be functional. Next, you need to obtain your “Access key ID” and “Secret key” from the “Access Credentials” section of the “Security Credentials” page of “My Account.” Make sure the status is “active.” Next, make sure that “Amazon Simple Storage Service (Amazon S3)” is the selected “CDN type” on the “General Settings” tab, then save the changes. Now on the “Content Delivery Network Settings” tab enter your “Access key,” “Secret key” and enter a name (avoid special characters and spaces) for your bucket in the “Create a bucket” field by clicking the button of the same name. If using an existing bucket simply specify the bucket name in the “Bucket” field. Click the “Test S3 Upload” button and make sure that the test is successful, if not check your settings and try again. Save your settings.

    \n

    Unless you wish to use CloudFront, you’re almost done, skip to the next paragraph if you’re using CloudFront. Go to the “General Settings” tab and click the “Enable” checkbox and save the settings to enable CDN functionality. Empty the cache for the changes to take effect. If preview mode is active you will need to “deploy” your changes for them to take effect.

    \n

    To use CloudFront, perform all of the steps above, except select the “Amazon CloudFront” “CDN type” in the “Content Delivery Network” section of the “General Settings” tab. When creating a new bucket, the distribution ID will automatically be populated. Otherwise, proceed to the AWS Management Console and create a new distribution: select the S3 Bucket you created earlier as the “Origin,” enter a CNAME if you wish to add one or more to your DNS Zone. Make sure that “Distribution Status” is enabled and “State” is deployed. Now on “Content Delivery Network” tab of the plugin, copy the subdomain found in the AWS Management Console and enter the CNAME used for the distribution in the “CNAME” field.

    \n

    You may optionally, specify up to 10 hostnames to use rather than the default hostname, doing so will improve the render performance of your site’s pages. Additional hostnames should also be specified in the settings for the distribution you’re using in the AWS Management Console.

    \n

    Now go to the General tab and click the “Enable” checkbox and save the settings to enable CDN functionality and empty the cache for the changes to take effect. If preview mode is active you will need to “deploy” your changes for them to take effect.

    \n

    \n
    \nHow do I configure Rackspace Cloud Files as my CDN?\n\n

    \n

    First create an account. Next, in the “Content Delivery Network” section of the “General Settings” tab, select Rackspace Cloud Files as the “CDN Type.” Now, in the “Configuration” section of the “Content Delivery Network” tab, enter the “Username” and “API key” associated with your account (found in the API Access section of the rackspace cloud control panel) in the respective fields. Next enter a name for the container to use (avoid special characters and spaces). If the operation is successful, the container’s ID will automatically appear in the “Replace site’s hostname with” field. You may optionally, specify the container name and container ID of an existing container if you wish. Click the “Test Cloud Files Upload” button and make sure that the test is successful, if not check your settings and try again. Save your settings. You’re now ready to export your media library, theme and any other files to the CDN.

    \n

    You may optionally, specify up to 10 hostnames to use rather than the default hostname, doing so will improve the render performance of your site’s pages.

    \n

    Now go to the General tab and click the “Enable” checkbox and save the settings to enable CDN functionality and empty the cache for the changes to take effect. If preview mode is active you will need to “deploy” your changes for them to take effect.

    \n

    \n
    \nWhat is the purpose of the “modify attachment URLs” button?\n\n

    \n

    If the domain name of your site has changed, this tool is useful in updating your posts and pages to use the current addresses. For example, if your site used to be www.domain.com, and you decided to change it to domain.com, the result would either be many “broken” images or many unnecessary redirects (which slow down the visitor’s browsing experience). You can use this tool to correct this and similar cases. Correcting the URLs of your images also allows the plugin to do a better job of determining which images are actually hosted with the CDN.

    \n

    As always, it never hurts to back up your database first.

    \n

    \n
    \nIs this plugin comptatible with TDO Mini Forms?\n\n

    \n

    Captcha and recaptcha will work fine, however you will need to prevent any pages with forms from being cached. Add the page’s URI to the “Never cache the following pages” box on the Page Cache Settings tab.

    \n

    \n
    \nIs this plugin comptatible with GD Star Rating?\n\n

    \n

    Yes. Follow these steps:

    \n
      \n
    1. Enable dynamic loading of ratings by checking GD Star Rating -> Settings -> Features “Cache support option”
    2. \n
    3. If Database cache enabled in W3 Total Cache add wp_gdsr to “Ignored query stems” field in the Database Cache settings tab, otherwise ratings will not updated after voting
    4. \n
    5. Empty all caches
    6. \n
    \n

    \n
    \nI see garbage characters instead of the normal web site, what’s going on here?\n\n

    \n

    If a theme or it’s files use the call php_flush() or function flush() that will interfere with the plugins normal operation; making the plugin send cached files before essential operations have finished. The flush() call is no longer necessary and should be removed.

    \n

    \n
    \nHow do I cache only the home page?\n\n

    \n

    Add /.+ to page cache “Never cache the following pages” option on the page cache settings tab.

    \n

    \n
    \nI’m getting blank pages or 500 error codes when trying to upgrade on WordPress in network mode\n\n

    \n

    First, make sure the plugin is not active (disabled) network-wide. Then make sure it’s deactivated network-wide. Now you should be able to successful upgrade without breaking your site.

    \n

    \n
    \nA notification about file owner appears along with an FTP form, how can I resolve this?\n\n

    \n

    The plugin uses WordPress FileSystem functionality to write to files. It checks if the file owner, file owner group of created files match process owner. If this is not the case it cannot write or modify files.

    \n

    Typically, you should tell your web host about the permission issue and they should be able to resolve it.

    \n

    You can however try adding define(‘FS_METHOD’, ‘direct’); to wp-config.php to circumvent the file and folder checks.

    \n

    \n
    \nDoes the WebP Converter extension use a lot of resources to convert images to WebP?\n\n

    \n

    No. The WebP Converter extension converts common image file formats to the modern WebP format using our API services. The conversions occur on our API service, so that resource usage does not impact your website server.

    \n

    \n
    \nIs image data retained by the Total Cache WebP Converter API?\n\n

    \n

    Image data received by our API is destroyed after a converted image is generated. The converted iamges are destroyed once picked-up/downloaded to your website by the Total Cache plugin.

    \n

    \n
    \nThis is too good to be true, how can I test the results?\n\n

    \n

    You will be able to see the results instantly on each page load, but for tangible metrics, you should consider using the following tools:

    \n\n

    \n
    \nI don’t have time to deal with this, but I know I need it. Will you help me?\n\n

    \n

    Yes! Please reach out to us and we’ll get you acclimated so you can “set it and forget it.”

    \n

    Install the plugin to read the full FAQ on the plugins FAQ tab.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Ha creato migliaia di cartelle e milioni di file wp-content\\cache

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy salviodj on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Sto provando a scaricare il sito web in locale con Filezilla, è un giorno intero che sto scaricando solo la cache !!!

    \n\n\n\n

    Ho provato a disinstallare il Plugin, risultato Sito web distrutto. inaccessibile sia lato pubblico che lato sito!!!

    \n\n\n\n

    Cambiate mestiere!!!

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Complete Caching System

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shoulders1024 on September 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using Total Cache for a while and never had any issues with it and I run it on many sites.

    \n\n\n\n

    I use the free version which has all of the features that a small website needs. It is feature complete and no caching setting has been left out. I am am impressed in the amount of thought has gone into this plugin.

    \n\n\n\n

    When you first set it up there is a learning curve, but the documentation really helps with this and when you have the perfect setup you can export your settings and use them on your next site.

    \n\n\n\n

    I have asked on the support forum for a few things and the developers were kind enough to help me.

    \n\n\n\n

    I would not consider using any other caching software so when any of my sites grow enough and require better caching features, I will upgrade to Pro.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Bad performance and critical error after uninstalling

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy vegapchirinos on September 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Just changed to another plugin recommended by my hosting provider and after a lot of changes and effort my pagespeed drastically improved. After that I obviously wanted to uninstall it... but then a critical error appeared, asking to erase one file from my server. When I did so, another critical error appeared, making it impossible to access my WP admin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Huge win

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mpeng7 on September 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WebP conversion alone boosted both performance and SEO rankings

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Chimera (haonas) on August 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am really satisfied with this plugin. It’s a powerful add-on that enhances my website, and the support provided even for the free version is truly top-notch.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    垃圾中的垃圾

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jonasoress on June 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    安装后在数据库产生了一堆垃圾文件,卸载后还直接导致网站错误!流氓垃圾插件。

    \n\n\n\n

    这么多好评应该是虚假评价吧!

    \n\n\n\n

    垃圾插件!!!

    \n\n\n\n

    千万别用!!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great help resolving a JS issue

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy panoramicpathways on June 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I got great and responsive help finding and fixing a JS minification issue with image enlargement functionality. This saved me a lot of time and helped to preserve the speed increases realized with the W3 Total Cache plug-in.

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Supports a lot of caching methods

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy w-sky on May 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    W3 Total Cache was the best choice for my site because it makes best use of the server capabilities by choosing the appropriate caching methods.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best caching plugin I could find

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jaredatbrtc on May 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Spent the last several weeks testing out every free caching plugin with a decent rating in an attempt to find one that has the best results \"out of the box,\" and W3 Total Cache takes the cake. It is a little more complex to set up than others, but the level of control you do have - even in the free version - is wonderful. Enabling any minify settings caused me a significant decrease in speed, but the general speed increase without that option has still been substantial. My only real quibble is that once I installed this, the header banner images on each page of my site started loading in with a quick zoom in/out animation. Simple enough to fix with a manual application of a different, less visually obtrusive animation, but still strange and a difficult problem to track down setting-by-setting. But even then after enabling and disabling every available option, the only thing that fixed it was disabling the plugin altogether, but I can live with alternative image animations for now.

    All in all, a pretty solid caching plugin. Do take the time to go through each setting while wiping the caches and reloading a test page to figure out which setting work best for you. It''s definitely time-consuming, but totally worth it once you''re dialed-in.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Completely crashed my site!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy markjames1234 on April 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Made my entire site un-usable and I have had to spend hours tracing the error to this plugin, followed by ages having to remove it from all the nooks and crannies it had wormed its way into to make the site work again.

    \n
    \n
    \n", "changelog": "

    2.8.14

    \n
      \n
    • Fix: Better logic for mfunc/mclude processing
    • \n
    • Enhancement: More consistent purge notices
    • \n
    \n

    2.8.13

    \n
      \n
    • Fix: Sanitize mfunc/mclude content in REST calls
    • \n
    • Fix: Resolved plugin check errors
    • \n
    • Fix: Discard simplexml errors
    • \n
    • Fix: Missing text domains
    • \n
    • Fix: Ensure array type for filter “w3tc_footer_comment”
    • \n
    • Enhancement: WebP Converter: WP_Query optimizations
    • \n
    \n

    2.8.12

    \n
      \n
    • Fix: Lazy load background-image style handing
    • \n
    • Fix: Elementor: Also flush Object Cache after Page Cache is flushed
    • \n
    • Fix: Canonicalize Cache read path to avoid variants
    • \n
    \n

    2.8.11

    \n
      \n
    • Fix: Avoid redundant object cache misses in WP 6.4 – 6.7
    • \n
    • Fix: Admin bar: Do not show “Purge All Caches Except Cloudflare” if disabled after it was configured
    • \n
    • Fix: Error handling for URL downloads
    • \n
    • Fix: Menu items for non-administrators
    • \n
    • Update: Lazy load library: 12.2.0 => 19.1.2
    • \n
    • Enhancement: Use SimpleXMLElement to parse sitemaps and RSS feeds
    • \n
    • Enhancement: Flush Elementor cache when all caches are flushed
    • \n
    \n

    2.8.10

    \n
      \n
    • Fix: Exception handling on activation
    • \n
    • Fix: wp_resource_hint handling for arrays
    • \n
    • Enhancement: Added X-W3TC-CDN header
    • \n
    \n

    2.8.9

    \n
      \n
    • Fix: AWS S3 test
    • \n
    • Fix: Gravity Forms submissions
    • \n
    • Fix: Windows: Configuration import
    • \n
    • Fix: Redis: Fix PHP 8 warning for incrBy value not being an integer
    • \n
    • Fix: DbCache Cluster: Check for mysqli_result before using the object
    • \n
    • Fix: PHP 8 warnings
    • \n
    • Fix: Typos on settings pages
    • \n
    \n

    2.8.8

    \n
      \n
    • Fix: Usage Statistics JavaScript error
    • \n
    • Fix: Regex matching for Cookie Cache Groups
    • \n
    • Fix: Image Service: Error when get_current_screen() is run before admin_init
    • \n
    • Fix: _load_textdomain_just_in_time timing issue for WP-CLI and the Setup Guide
    • \n
    • Fix: “DOMDocument::loadHTML(): ID already defined in Entity” errors
    • \n
    • Fix: Cloudflare: Saving settings with a value of 0
    • \n
    • Update: Removed StackPath, Limelight, and Highwinds CDNs due to end of service
    • \n
    \n

    2.8.7

    \n
      \n
    • Fix: Exit survey email field submission
    • \n
    • Fix: Setup Guide analytics
    • \n
    • Update: Allow deleting plugin data when skipping the exit survey on deactivation
    • \n
    • Update: aws/aws-php-sns-message-validator (1.9.0 => 1.9.1)
    • \n
    \n

    2.8.6

    \n
      \n
    • Fix: Error deactivating when selected to delete plugin data
    • \n
    • Fix: WP-CLI: Enable Object Cache depending on settings
    • \n
    • Fix: Delete all plugin WordPress Options if selected on deactivation
    • \n
    • Enhancement: Automatically disable Object Cache after plugin update if set to Disk and display a notice
    • \n
    • Enhancement: WP-CLI: Added settings to enable Object and DB Cache for WP-CLI
    • \n
    • Enhancement: Added an email field to the exit survey for requesting help
    • \n
    • Enhancement: Added a popup modal to accept the risk when enabling Object Cache using Disk
    • \n
    \n

    2.8.5

    \n
      \n
    • Fix: CDN: Amazon S3 long hostname for default region
    • \n
    • Fix: WP-CLI: Error running “wp w3tc alwayscached_*” commands
    • \n
    • Fix: WP-CLI: Remove HTML in output
    • \n
    • Enhancement: Simplified license messsaging
    • \n
    \n

    2.8.4

    \n
      \n
    • Fix: Deactivation modal JS error
    • \n
    \n

    2.8.3

    \n
      \n
    • Fix: HTTP API calls for checking required files
    • \n
    • Fix: script-src-elem and style-src-attr security headers
    • \n
    • Fix: Handle multiple line srcset attributes for CDN URL replacement
    • \n
    • Fix: Fragment Cache: Fixed logic for navigation links
    • \n
    • Fix: Check for modified advanced-cache.php dropin/addin file
    • \n
    • Fix: Log directory name is made unique
    • \n
    • Enhancement: Added an exit survey with option to delete plugin data on deactivation
    • \n
    • Enhancement: Fragment Cache: Added notices for configuration
    • \n
    • Enhancement: Use admin-ajax for settings help tab content links
    • \n
    • Update: Handle XML MIME types in cache by default
    • \n
    • Update: Added “immutable” options for cache-control headers
    • \n
    • Update: Added WP-CLI command descriptions
    • \n
    • Update: CDN widget notices for BunnyCDN
    • \n
    • Update: WebP Converter widget notice
    • \n
    \n

    2.8.2

    \n
      \n
    • Fix: Added additional user capability checks
    • \n
    • Fix: Ensure Object Cache garbage collection (disk) WP Cron event is scheduled
    • \n
    • Fix: Added additional checks when loading the Object Cache dropin
    • \n
    • Fix: Disable Database, Object, and Fragment Cache when using WP-CLI
    • \n
    • Fix: Object Cache debug logging
    • \n
    • Fix: FAQ help tabs
    • \n
    • Update: Coding standards
    • \n
    \n

    = 2.8.1=
    \n* Fix: Ensure WP Cron events get scheduled when using the Setup Guide wizard and on upgrade
    \n* Fix: Undefined variable when the Object Cache purge debug log is enabled
    \n* Update: Added warnings in the Setup Guide and the General Settings page when using Disk for Database and Object Caches
    \n* Update: Skip Database and Object caches when using WP-CLI

    \n

    2.8.0

    \n
      \n
    • Feature: Always Cached extension
    • \n
    • Feature: Purge caches on WP-Cron schedules
    • \n
    • Fix: Cloudflare: Some settings were not saved correctly
    • \n
    • Fix: Check and update file mode/permissions for cache files
    • \n
    • Fix: Issue prompting for credentials for some non-direct filesystem types
    • \n
    • Enhancement: Added an admin notice if WP-Cron is not functioning correctly
    • \n
    • Enhancement: Added Browser Cache filters
    • \n
    • Update: Upgraded JSMin library to 2.4.3
    • \n
    • Update: Added Premium Services tabs
    • \n
    \n", "description": "

    W3 Total Cache (W3TC) improves the SEO, Core Web Vitals and overall user experience of your site by increasing website performance and reducing load times by leveraging features like content delivery network (CDN) integration and the latest best practices.

    \n

    W3TC is the only web host agnostic Web Performance Optimization (WPO) framework for WordPress trusted by millions of publishers, web developers, and web hosts worldwide for more than a decade. It is the total performance solution for optimizing WordPress Websites.

    \n

    BENEFITS

    \n
      \n
    • Improvements in search engine result page rankings, especially for mobile-friendly websites and sites that use SSL
    • \n
    • At least 10x improvement in overall site performance (Grade A in WebPagetest or significant Google PageSpeed improvements) when fully configured
    • \n
    • Improved conversion rates and “site performance” which affect your site’s rank on Google.com
    • \n
    • “Instant” repeat page views: browser caching
    • \n
    • Optimized progressive render: pages start rendering quickly and can be interacted with more quickly
    • \n
    • Reduced page load time: increased visitor time on site; visitors view more pages
    • \n
    • Improved web server performance; sustain high traffic periods
    • \n
    • Up to 80% bandwidth savings when you minify HTML, minify CSS and minify JS files.
    • \n
    \n

    KEY FEATURES

    \n
      \n
    • Compatible with shared hosting, virtual private / dedicated servers and dedicated servers / clusters
    • \n
    • Transparent content delivery network (CDN) management with Media Library, theme files and WordPress itself
    • \n
    • Mobile support: respective caching of pages by referrer or groups of user agents including theme switching for groups of referrers or user agents
    • \n
    • Accelerated Mobile Pages (AMP) support
    • \n
    • Secure Socket Layer (SSL/TLS) support
    • \n
    • Caching of (minified and compressed) pages and posts in memory or on disk or on (FSD) CDN (by user agent group)
    • \n
    • Caching of (minified and compressed) CSS and JavaScript in memory, on disk or on CDN
    • \n
    • Caching of feeds (site, categories, tags, comments, search results) in memory or on disk or on CDN
    • \n
    • Caching of search results pages (i.e. URIs with query string variables) in memory or on disk
    • \n
    • Caching of database objects in memory or on disk
    • \n
    • Caching of objects in memory or on disk
    • \n
    • Caching of fragments in memory or on disk
    • \n
    • Caching methods include local Disk, Redis, Memcached, APC, APCu, eAccelerator, XCache, and WinCache
    • \n
    • Minify CSS, Minify JavaScript and Minify HTML with granular control
    • \n
    • Minification of posts and pages and RSS feeds
    • \n
    • Minification of inline, embedded or 3rd party JavaScript with automated updates to assets
    • \n
    • Minification of inline, embedded or 3rd party CSS with automated updates to assets
    • \n
    • Defer non critical CSS and Javascript for rendering pages faster than ever before
    • \n
    • Defer offscreen images using Lazy Load to improve the user experience
    • \n
    • Browser caching using cache-control, future expire headers and entity tags (ETag) with “cache-busting”
    • \n
    • JavaScript grouping by template (home page, post page etc) with embed location control
    • \n
    • Non-blocking JavaScript embedding
    • \n
    • Import post attachments directly into the Media Library (and CDN)
    • \n
    • Leverage our multiple CDN integrations to optimize images
    • \n
    • WP-CLI support for cache purging, query string updating and more
    • \n
    • Various security features to help ensure website safety
    • \n
    • Caching statistics for performance insights of any enabled feature
    • \n
    • Extension framework for customization or extensibility for Cloudflare, WPML and much more
    • \n
    • Reverse proxy integration via Nginx or Varnish
    • \n
    • WebP Converter extension provides WebP image format conversion from common image formats (on upload and on demand)
    • \n
    \n

    W3 Total Cache Pro Features

    \n

    With over a million active installs, W3 Total Cache is the most comprehensive WordPress caching plugin available and has robust premium features that help deliver an exceptional user experience.

    \n
      \n
    • Full Site Delivery: Serve your entire site from a Content Delivery Network (CDN), ensuring faster load times worldwide.
    • \n
    • Fragment Cache: Optimize the caching of dynamic content while still improving performance.
    • \n
    • REST API Caching: Speed up your headless WordPress site by caching REST API calls.
    • \n
    • Eliminate Render-Blocking CSS: Ensure your CSS doesn’t hold up page loading, providing faster initial paint.
    • \n
    • Delay Scripts: Improve performance by delaying the loading of non-essential scripts until they are needed.
    • \n
    • Preload Requests: Boost page performance by preloading critical resources before they’re requested.
    • \n
    • Remove CSS/JS: Clean up unnecessary CSS and JavaScript files that slow down your pages.
    • \n
    • Lazy Load Google Maps: Load Google Maps only when it’s visible, reducing unnecessary requests.
    • \n
    • WPML Extension: Optimize performance on multilingual sites powered by WPML.
    • \n
    • Caching Statistics: Get detailed insights on cache usage and performance improvements.
    • \n
    • Purge Logs: Keep your site clean by automatically purging unnecessary cache logs.
    • \n
    \n

    30-Day Money-Back Guarantee

    \n

    Try W3 Total Cache Pro risk-free with our 30-day money-back guarantee. If you’re not satisfied, we will refund your purchase.

    \n

    PAGESPEED SCORE IMPROVEMENTS

    \n

    To help you understand the impact of individual features on your website’s performance, we’ve tested each feature separately to see its effect on Google PageSpeed scores. While optimal results come from configuring several different caching tools together, the following individual features also show significant improvements on their own:

    \n

    Remove Unused CSS/JS

    \n

    This feature removes CSS and JavaScript files that are not needed for the current page, reducing the load time.

    \n
      \n
    • Added over 27 points to the Google PageSpeed score (Before: 57.2 / After: 86.7)
    • \n
    • Reduced the Potential Savings From Unused JavaScript from 127.5 KiB to 84 KiB
    • \n
    • View the test results
    • \n
    \n

    Full Site Delivery

    \n

    Full Site Delivery optimizes the delivery of your entire site, enhancing the server response time.

    \n
      \n
    • Added a 99% performance enhancement to the Average Server Response Time (Before: 3413 ms / After: 34 ms)
    • \n
    • View the test results
    • \n
    \n

    Eliminate Render Blocking CSS

    \n

    This feature eliminates CSS that blocks the rendering of your page, speeding up the initial load time.

    \n
      \n
    • Added over 17 points to the Google PageSpeed score (Before: 53.75 / After: 71)
    • \n
    • Reduced the Potential Savings From Render-Blocking Resources by over 94% (Before: 2432.5 ms / After: 125 ms)
    • \n
    • Improved the Largest Contentful Paint time by over 56% (Before: 7s / After: 3.04s)
    • \n
    • View the test results
    • \n
    \n

    Delay Scripts

    \n

    Delay Scripts postpones the loading of certain scripts until they are needed, reducing initial load times.

    \n
      \n
    • Added 14 points to the Google PageSpeed Performance score (Before: 54.25 / After: 68.5)
    • \n
    • Reduced the Time Third-Party Code Blocked The Main Thread For by 62% (Before: 825 ms / After: 197.5 ms)
    • \n
    • View the test results
    • \n
    \n

    Rest API Caching

    \n

    This feature caches API responses, reducing server load and speeding up API interactions.

    \n
      \n
    • Reduced the Average Server Load by 40% (Before: 0.62 / After: 0.37)
    • \n
    • Sped up API Responses by 84.5% (Before: 968ms / After: 150ms)
    • \n
    • Reduced the Average Server Load by 24% under during a major traffic spike (Before: 34.55 / After: 26.19)
    • \n
    • View the test results
    • \n
    \n

    WebP Images

    \n

    Converts images to the WebP format, which is more efficient and faster to load.

    \n
      \n
    • Added over 9 points to the Google PageSpeed score (Before: 84.67 / After: 93.83)
    • \n
    • View the test results
    • \n
    \n

    Lazy Load Google Maps

    \n

    Delays the loading of Google Maps until the user interacts with them, reducing initial load time.

    \n
      \n
    • Added 10 points to the Google PageSpeed score (Before: 66 / After: 76)
    • \n
    • Reduced the Total Blocking Time Performance score by 72% (Before: 287.5 ms / After: 80 ms)
    • \n
    • View the test results
    • \n
    \n

    Speed up your site tremendously, improve core web vitals and the overall user experience for your visitors without having to change your WordPress host, theme, plugins or your content production workflow.

    \n

    What users have to say:

    \n\n

    Who do I thank for all of this?

    \n

    It’s quite difficult to recall all of the innovators that have shared their thoughts, code and experiences in the blogosphere over the years, but here are some names to get you started:

    \n\n

    Please reach out to all of these people and support their projects if you’re so inclined.

    \n", "installation": "
      \n
    1. Deactivate and uninstall any other caching plugin you may be using. Pay special attention if you have customized the rewrite rules for fancy permalinks, have previously installed a caching plugin or have any browser caching rules as W3TC will automate management of all best practices. Also make sure wp-content/ and wp-content/uploads/ (temporarily) have 777 permissions before proceeding, e.g. in the terminal: # chmod 777 /var/www/vhosts/domain.com/httpdocs/wp-content/ using your web hosting control panel or your FTP / SSH account.
    2. \n
    3. Login as an administrator to your WordPress Admin account. Using the “Add New” menu option under the “Plugins” section of the navigation, you can either search for: w3 total cache or if you’ve downloaded the plugin already, click the “Upload” link, find the .zip file you download and then click “Install Now”. Or you can unzip and FTP upload the plugin to your plugins directory (wp-content/plugins/). In either case, when done wp-content/plugins/w3-total-cache/ should exist.
    4. \n
    5. Locate and activate the plugin on the “Plugins” page. Page caching will automatically be running in basic mode. Set the permissions of wp-content and wp-content/uploads back to 755, e.g. in the terminal: # chmod 755 /var/www/vhosts/domain.com/httpdocs/wp-content/.
    6. \n
    7. Now click the “Settings” link to proceed to the “General Settings” tab; in most cases, “disk enhanced” mode for page cache is a “good” starting point.
    8. \n
    9. The “Compatibility mode” option found in the advanced section of the “Page Cache Settings” tab will enable functionality that optimizes the interoperablity of caching with WordPress, is disabled by default, but highly recommended. Years of testing in hundreds of thousands of installations have helped us learn how to make caching behave well with WordPress. The tradeoff is that disk enhanced page cache performance under load tests will be decreased by ~20% at scale.
    10. \n
    11. Recommended: On the “Minify Settings” tab, all of the recommended settings are preset. If auto mode causes issues with your web site’s layout, switch to manual mode and use the help button to simplify discovery of your CSS and JS files and groups. Pay close attention to the method and location of your JS group embeddings. See the plugin’s FAQ for more information on usage.
    12. \n
    13. Recommended: On the “Browser Cache” tab, HTTP compression is enabled by default. Make sure to enable other options to suit your goals.
    14. \n
    15. Recommended: If you already have a content delivery network (CDN) provider, proceed to the “Content Delivery Network” tab and populate the fields and set your preferences. If you do not use the Media Library, you will need to import your images etc into the default locations. Use the Media Library Import Tool on the “Content Delivery Network” tab to perform this task. If you do not have a CDN provider, you can still improve your site’s performance using the “Self-hosted” method. On your own server, create a subdomain and matching DNS Zone record; e.g. static.domain.com and configure FTP options on the “Content Delivery Network” tab accordingly. Be sure to FTP upload the appropriate files, using the available upload buttons.
    16. \n
    17. Optional: On the “Database Cache” tab, the recommended settings are preset. If using a shared hosting account use the “disk” method with caution, the response time of the disk may not be fast enough, so this option is disabled by default. Try object caching instead for shared hosting.
    18. \n
    19. Optional: On the “Object Cache” tab, all of the recommended settings are preset. If using a shared hosting account use the “disk” method with caution, the response time of the disk may not be fast enough, so this option is disabled by default. Test this option with and without database cache to ensure that it provides a performance increase.
    20. \n
    21. Optional: On the “User Agent Groups” tab, specify any user agents, like mobile phones if a mobile theme is used.
    22. \n
    \n"}, "versions": {"0.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/w3-total-cache.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/w3-total-cache.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/w3-total-cache.0.8.zip", "0.7.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.7.5.zip", "0.8.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.8.5.zip", "0.9.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.0.zip", "0.9.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.6.zip", "0.9.7": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.zip", "2.0.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.0.1.zip", "2.1.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/plugin/w3-total-cache.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.4.zip", "2.2.6": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.7.zip", "2.2.9": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.3.3.zip", "2.4.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.4.1.zip", "2.5.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.5.0.zip", "2.6.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.6.1.zip", "2.7.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.7.zip", "2.8.0": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.7.zip", "2.8.8": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.8.zip", "2.8.9": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.9.zip", "trunk": "https://downloads.wordpress.org/plugin/w3-total-cache.zip", "0.10.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.10.0.zip", "0.10.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.10.1.zip", "0.10.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.10.2.zip", "0.11.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.11.0.zip", "0.12.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.12.0.zip", "0.13.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.13.0.zip", "0.13.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.13.1.zip", "0.13.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.13.2.zip", "0.13.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.13.3.zip", "0.14.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.14.0.zip", "0.14.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.14.1.zip", "0.14.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.14.2.zip", "0.14.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.14.3.zip", "0.14.4": "https://downloads.wordpress.org/plugin/w3-total-cache.0.14.4.zip", "0.15.0": "https://downloads.wordpress.org/plugin/w3-total-cache.0.15.0.zip", "0.15.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.15.1.zip", "0.15.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.15.2.zip", "2.2.10": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.10.zip", "2.2.11": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.11.zip", "2.2.12": "https://downloads.wordpress.org/plugin/w3-total-cache.2.2.12.zip", "2.8.10": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.10.zip", "2.8.11": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.11.zip", "2.8.12": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.12.zip", "2.8.13": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.13.zip", "2.8.14": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.14.zip", "0.7.5.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.7.5.1.zip", "0.7.5.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.7.5.2.zip", "0.8.5.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.8.5.1.zip", "0.8.5.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.8.5.2.zip", "0.9.1.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.1.1.zip", "0.9.1.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.1.2.zip", "0.9.1.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.1.3.zip", "0.9.2.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.1.zip", "0.9.2.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.2.zip", "0.9.2.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.3.zip", "0.9.2.4": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.4.zip", "0.9.2.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.5.zip", "0.9.2.6": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.6.zip", "0.9.2.7": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.7.zip", "0.9.2.8": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.8.zip", "0.9.2.9": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.9.zip", "0.9.4.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.4.1.zip", "0.9.5.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.5.1.zip", "0.9.5.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.5.2.zip", "0.9.5.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.5.3.zip", "0.9.5.4": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.5.4.zip", "0.9.7.1": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.1.zip", "0.9.7.2": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.2.zip", "0.9.7.3": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.3.zip", "0.9.7.4": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.4.zip", "0.9.7.5": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.7.5.zip", "0.9.2.10": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.10.zip", "0.9.2.11": "https://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.11.zip", "2.7.7-beta.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.7.7-beta.1.zip", "2.4.0-alpha.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.4.0-alpha.1.zip", "2.4.0-alpha.3": "https://downloads.wordpress.org/plugin/w3-total-cache.2.4.0-alpha.3.zip", "2.6.0-alpha.1": "https://downloads.wordpress.org/plugin/w3-total-cache.2.6.0-alpha.1.zip", "2.6.0-alpha.2": "https://downloads.wordpress.org/plugin/w3-total-cache.2.6.0-alpha.2.zip"}, "downloaded": 60000372, "description": "

    W3 Total Cache (W3TC) improves the SEO, Core Web Vitals and overall user experience of your site by increasing website performance and reducing load times by leveraging features like content delivery network (CDN) integration and the latest best practices.

    \n

    W3TC is the only web host agnostic Web Performance Optimization (WPO) framework for WordPress trusted by millions of publishers, web developers, and web hosts worldwide for more than a decade. It is the total performance solution for optimizing WordPress Websites.

    \n

    BENEFITS

    \n
      \n
    • Improvements in search engine result page rankings, especially for mobile-friendly websites and sites that use SSL
    • \n
    • At least 10x improvement in overall site performance (Grade A in WebPagetest or significant Google PageSpeed improvements) when fully configured
    • \n
    • Improved conversion rates and “site performance” which affect your site’s rank on Google.com
    • \n
    • “Instant” repeat page views: browser caching
    • \n
    • Optimized progressive render: pages start rendering quickly and can be interacted with more quickly
    • \n
    • Reduced page load time: increased visitor time on site; visitors view more pages
    • \n
    • Improved web server performance; sustain high traffic periods
    • \n
    • Up to 80% bandwidth savings when you minify HTML, minify CSS and minify JS files.
    • \n
    \n

    KEY FEATURES

    \n
      \n
    • Compatible with shared hosting, virtual private / dedicated servers and dedicated servers / clusters
    • \n
    • Transparent content delivery network (CDN) management with Media Library, theme files and WordPress itself
    • \n
    • Mobile support: respective caching of pages by referrer or groups of user agents including theme switching for groups of referrers or user agents
    • \n
    • Accelerated Mobile Pages (AMP) support
    • \n
    • Secure Socket Layer (SSL/TLS) support
    • \n
    • Caching of (minified and compressed) pages and posts in memory or on disk or on (FSD) CDN (by user agent group)
    • \n
    • Caching of (minified and compressed) CSS and JavaScript in memory, on disk or on CDN
    • \n
    • Caching of feeds (site, categories, tags, comments, search results) in memory or on disk or on CDN
    • \n
    • Caching of search results pages (i.e. URIs with query string variables) in memory or on disk
    • \n
    • Caching of database objects in memory or on disk
    • \n
    • Caching of objects in memory or on disk
    • \n
    • Caching of fragments in memory or on disk
    • \n
    • Caching methods include local Disk, Redis, Memcached, APC, APCu, eAccelerator, XCache, and WinCache
    • \n
    • Minify CSS, Minify JavaScript and Minify HTML with granular control
    • \n
    • Minification of posts and pages and RSS feeds
    • \n
    • Minification of inline, embedded or 3rd party JavaScript with automated updates to assets
    • \n
    • Minification of inline, embedded or 3rd party CSS with automated updates to assets
    • \n
    • Defer non critical CSS and Javascript for rendering pages faster than ever before
    • \n
    • Defer offscreen images using Lazy Load to improve the user experience
    • \n
    • Browser caching using cache-control, future expire headers and entity tags (ETag) with “cache-busting”
    • \n
    • JavaScript grouping by template (home page, post page etc) with embed location control
    • \n
    • Non-blocking JavaScript embedding
    • \n
    • Import post attachments directly into the Media Library (and CDN)
    • \n
    • Leverage our multiple CDN integrations to optimize images
    • \n
    • WP-CLI support for cache purging, query string updating and more
    • \n
    • Various security features to help ensure website safety
    • \n
    • Caching statistics for performance insights of any enabled feature
    • \n
    • Extension framework for customization or extensibility for Cloudflare, WPML and much more
    • \n
    • Reverse proxy integration via Nginx or Varnish
    • \n
    • WebP Converter extension provides WebP image format conversion from common image formats (on upload and on demand)
    • \n
    \n

    W3 Total Cache Pro Features

    \n

    With over a million active installs, W3 Total Cache is the most comprehensive WordPress caching plugin available and has robust premium features that help deliver an exceptional user experience.

    \n
      \n
    • Full Site Delivery: Serve your entire site from a Content Delivery Network (CDN), ensuring faster load times worldwide.
    • \n
    • Fragment Cache: Optimize the caching of dynamic content while still improving performance.
    • \n
    • REST API Caching: Speed up your headless WordPress site by caching REST API calls.
    • \n
    • Eliminate Render-Blocking CSS: Ensure your CSS doesn’t hold up page loading, providing faster initial paint.
    • \n
    • Delay Scripts: Improve performance by delaying the loading of non-essential scripts until they are needed.
    • \n
    • Preload Requests: Boost page performance by preloading critical resources before they’re requested.
    • \n
    • Remove CSS/JS: Clean up unnecessary CSS and JavaScript files that slow down your pages.
    • \n
    • Lazy Load Google Maps: Load Google Maps only when it’s visible, reducing unnecessary requests.
    • \n
    • WPML Extension: Optimize performance on multilingual sites powered by WPML.
    • \n
    • Caching Statistics: Get detailed insights on cache usage and performance improvements.
    • \n
    • Purge Logs: Keep your site clean by automatically purging unnecessary cache logs.
    • \n
    \n

    30-Day Money-Back Guarantee

    \n

    Try W3 Total Cache Pro risk-free with our 30-day money-back guarantee. If you’re not satisfied, we will refund your purchase.

    \n

    PAGESPEED SCORE IMPROVEMENTS

    \n

    To help you understand the impact of individual features on your website’s performance, we’ve tested each feature separately to see its effect on Google PageSpeed scores. While optimal results come from configuring several different caching tools together, the following individual features also show significant improvements on their own:

    \n

    Remove Unused CSS/JS

    \n

    This feature removes CSS and JavaScript files that are not needed for the current page, reducing the load time.

    \n
      \n
    • Added over 27 points to the Google PageSpeed score (Before: 57.2 / After: 86.7)
    • \n
    • Reduced the Potential Savings From Unused JavaScript from 127.5 KiB to 84 KiB
    • \n
    • View the test results
    • \n
    \n

    Full Site Delivery

    \n

    Full Site Delivery optimizes the delivery of your entire site, enhancing the server response time.

    \n
      \n
    • Added a 99% performance enhancement to the Average Server Response Time (Before: 3413 ms / After: 34 ms)
    • \n
    • View the test results
    • \n
    \n

    Eliminate Render Blocking CSS

    \n

    This feature eliminates CSS that blocks the rendering of your page, speeding up the initial load time.

    \n
      \n
    • Added over 17 points to the Google PageSpeed score (Before: 53.75 / After: 71)
    • \n
    • Reduced the Potential Savings From Render-Blocking Resources by over 94% (Before: 2432.5 ms / After: 125 ms)
    • \n
    • Improved the Largest Contentful Paint time by over 56% (Before: 7s / After: 3.04s)
    • \n
    • View the test results
    • \n
    \n

    Delay Scripts

    \n

    Delay Scripts postpones the loading of certain scripts until they are needed, reducing initial load times.

    \n
      \n
    • Added 14 points to the Google PageSpeed Performance score (Before: 54.25 / After: 68.5)
    • \n
    • Reduced the Time Third-Party Code Blocked The Main Thread For by 62% (Before: 825 ms / After: 197.5 ms)
    • \n
    • View the test results
    • \n
    \n

    Rest API Caching

    \n

    This feature caches API responses, reducing server load and speeding up API interactions.

    \n
      \n
    • Reduced the Average Server Load by 40% (Before: 0.62 / After: 0.37)
    • \n
    • Sped up API Responses by 84.5% (Before: 968ms / After: 150ms)
    • \n
    • Reduced the Average Server Load by 24% under during a major traffic spike (Before: 34.55 / After: 26.19)
    • \n
    • View the test results
    • \n
    \n

    WebP Images

    \n

    Converts images to the WebP format, which is more efficient and faster to load.

    \n
      \n
    • Added over 9 points to the Google PageSpeed score (Before: 84.67 / After: 93.83)
    • \n
    • View the test results
    • \n
    \n

    Lazy Load Google Maps

    \n

    Delays the loading of Google Maps until the user interacts with them, reducing initial load time.

    \n
      \n
    • Added 10 points to the Google PageSpeed score (Before: 66 / After: 76)
    • \n
    • Reduced the Total Blocking Time Performance score by 72% (Before: 287.5 ms / After: 80 ms)
    • \n
    • View the test results
    • \n
    \n

    Speed up your site tremendously, improve core web vitals and the overall user experience for your visitors without having to change your WordPress host, theme, plugins or your content production workflow.

    \n

    What users have to say:

    \n\n

    Who do I thank for all of this?

    \n

    It’s quite difficult to recall all of the innovators that have shared their thoughts, code and experiences in the blogosphere over the years, but here are some names to get you started:

    \n\n

    Please reach out to all of these people and support their projects if you’re so inclined.

    \n", "donate_link": "", "num_ratings": 5409, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/w3-total-cache/", "contributors": {"vmarko": {"avatar": "https://secure.gravatar.com/avatar/896c03c55533b1532318d6a19225328b336f03be0e94769e0bcb4a672aab12aa?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/vmarko/", "display_name": "Marko Vasiljevic"}, "joemoto": {"avatar": "https://secure.gravatar.com/avatar/731b7190cf9830d217ded7dae72f736a74a58eeefd4948821f9f0d15c2b933bc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/joemoto/", "display_name": "Joe Cartonia"}, "abrender": {"avatar": "https://secure.gravatar.com/avatar/f6ceb3cfb364a4f5fc8424a2bb08649716688fa721dec95bb4a04e219c63f52a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/abrender/", "display_name": "abrender"}, "boldgrid": {"avatar": "https://secure.gravatar.com/avatar/78be6bef3f4684608eb64a3de0f25bbc2a16e7d2df121231c673ae7a2281a904?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/boldgrid/", "display_name": "BoldGrid"}, "bwmarkle": {"avatar": "https://secure.gravatar.com/avatar/6a65abffba74bf56df8aa6fafebd473de4d6aa2cc9de5b7347b89385f62d9478?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bwmarkle/", "display_name": "Brad Markle"}, "jacobd91": {"avatar": "https://secure.gravatar.com/avatar/dfbd4f652d0ff51af04120dadeda78b1ada9c209c8e6c834ccba11fe071b90c2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jacobd91/", "display_name": "Jacob Dunn"}, "maxicusc": {"avatar": "https://secure.gravatar.com/avatar/a4a45ea19c4df45b59c528c1e9b1f85ab8a63df13937ab5ca06c0f5f8959b8bc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/maxicusc/", "display_name": "maxicusc"}, "avonville1": {"avatar": "https://secure.gravatar.com/avatar/b1bf1afc6134964eeb541460da2d7d0b35d180adf07d6c842aff1cdf01870db4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/avonville1/", "display_name": "avonville1"}, "gidomanders": {"avatar": "https://secure.gravatar.com/avatar/f6bb40c7cf1d8b14de04a88ee3e3d9dc57d42a9f766849916368c5148077391d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/gidomanders/", "display_name": "gidomanders"}, "jamesros161": {"avatar": "https://secure.gravatar.com/avatar/9b2623e2977abf227efae2d4839d39511ab3d0f0e89229aaf3535143332c5c80?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jamesros161/", "display_name": "James Rosado"}, "elanasparkle": {"avatar": "https://secure.gravatar.com/avatar/1cf2e31ee56014b99e1f906f7f309fd0b01cb87e37eb29cc30d672ec0fbed78a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elanasparkle/", "display_name": "Elana Davis"}, "fredericktownes": {"avatar": "https://secure.gravatar.com/avatar/8faea457ecdd43f344a7b5a5a92ee5654c08d7b9cf8ecd6e0c826a5651107b8a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/fredericktownes/", "display_name": "Frederick Townes"}, "harryjackson1221": {"avatar": "https://secure.gravatar.com/avatar/76eedc1f7ea3aa9e1cbda25574a6a46e4a25b8bc536cd208ce88e2c13b554395?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/harryjackson1221/", "display_name": "Harry Jackson"}}, "last_updated": "2025-10-20 4:29pm GMT", "preview_link": "", "requires_php": "7.2.5", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/w3-total-cache.2.8.14.zip", "author_profile": "https://profiles.wordpress.org/boldgrid/", "business_model": false, "repository_url": "", "upgrade_notice": {"0.9.4": "

    Thanks for using W3 Total Cache! This release introduces hundreds of well-tested stability fixes since the last release as well as a new mode called "edge mode," which allows us to make releases more often containing new features that are still undergoing testing or active iteration.

    ", "0.9.5": "

    Thanks for using W3 Total Cache! This release includes fixes for recent XSS security issues that have been reported. In addition, hundreds of other improvements are now yours!

    ", "2.7.3": "

    Thanks for using W3 Total Cache! The minimum required PHP version has been raised to PHP 7.2.5. We recommend using PHP 8. StackPath CDN has cased all operations and will be removed in a future release. We recommend switching to Bunny CDN.

    ", "2.8.1": "

    Users with Object Cache using Disk should upgrade to ensure proper garbage collection. A memory-based engine is recommended for database and object caches. Using Disk can lead to a large number of files. Hosting accounts with inode limits may experience issues, including downtime.

    ", "2.8.2": "

    This is a security update. All users are encouraged to update to this version.

    ", "2.8.13": "

    This is a security update. Users that implement mfunc/mclude should update to this version.

    ", "0.9.2.8": "

    WordPress attempts to use built-in support for managing files had issues. File management is a critical issue that will cause lots of issues if it doesn't work perfectly. This release is an attempt to restore file management back to the reliability of previous versions.

    ", "0.9.2.9": "

    This release addresses security issues for Cloudflare users as well as users that implement fragment caching via the mfunc functionality. For those using mfunc, temporarily disable page caching to allow yourself time to check the FAQ tab for new usage instructions.

    ", "0.9.5.1": "

    Thanks for using W3 Total Cache! This release includes security fixes that have been reported. In addition, numerous other improvements are now yours!

    ", "0.9.5.2": "

    Thanks for using W3 Total Cache! This release includes security fixes that have been reported. In addition, numerous other improvements are now yours!

    ", "0.9.5.3": "

    Thanks for using W3 Total Cache! This release includes compatibility fixes that have been reported. In addition, numerous other improvements are now yours!

    ", "0.9.7.5": "

    Users running Cloudflare CDN may experience issues beginning June 6th. Please upgrade to W3 Total Cache 0.9.7.5 for the latest Cloudflare patches.

    ", "0.9.2.10": "

    This release includes performance improvements for every type of caching and numerous bug fixes and stability / compatbility improvements. Make sure to keep W3TC updated to ensure optimal reliability and security.

    ", "0.9.2.11": "

    This release includes various fixes for MaxCDN and minify users. As always there are general stability / compatibility improvements. Make sure to test in a sandbox or staging environment and report any issues via the bug submission form available on the support tab of the plugin.

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fc7b-73c4-b6f7-60cfe04286dc", "name": "W3 Total Cache", "slug": "w3-total-cache", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1760977740, "version": "2.8.14"}, "support_threads": 25, "requires_plugins": [], "short_description": "Search Engine (SEO) & Performance Optimization (WPO) via caching. Integrated caching: CDN, Page, Minify, Object, Fragment, Database support.", "author_block_count": "1", "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 19}'); -INSERT INTO public.plugins VALUES ('019a30c1-6769-725d-8dd5-4bbbb7951fea', 'woocommerce', 'WooCommerce', 'Everything you need to launch an online store in days and keep it growing for years. From your first sale to millions in revenue, Woo is with you.', '

    WooCommerce is the open-source ecommerce platform for WordPress.

    -

    Our core platform is free, flexible, and amplified by a global community. The freedom of open-source means you retain full ownership of your store’s content and data forever.

    -

    Whether you’re launching a business, taking brick-and-mortar retail online, or developing sites for clients, use WooCommerce for a store that powerfully blends content and commerce.

    - -

    ALL THE TOOLS YOU NEED TO SELL

    -

    Built-in tools and popular integrations help you efficiently manage your business operations. Many services are free to add with a single click via the optional Setup Wizard.

    -
      -
    • Choose how you want to get paid. Conveniently manage payments from the comfort of your store with WooPayments (Available in the U.S., U.K., Ireland, Australia, New Zealand, Canada, Spain, France, Germany, and Italy). Securely accept credit cards, mobile wallets, bank transfers, and cash thanks to 100+ payment gateways – including Stripe, PayPal, and Square.
    • -
    • Configure your shipping options. Print USPS labels right from your dashboard and even schedule a pickup with WooCommerce Shipping (U.S.-only). Connect with well-known carriers such as UPS and FedEx – plus a wide variety of delivery, inventory, and fulfillment solutions for your locale.
    • -
    • Simplify sales tax. Add WooCommerce Tax or similar integrated services to make automated calculations a reality.
    • -
    -

    Grow your business, add features, and monitor your store on the go

    -

    WooCommerce means business. Keep tabs on the performance metrics most important to you with a powerful and flexible central dashboard built into WooCommerce.

    -

    Expand your audience across marketing and social channels with Google Ads, HubSpot, Mailchimp, and Facebook integrations. You can always check out the in-dashboard Marketing Hub for fresh ideas and tips to help you succeed.

    -

    Enhance store functionality with hundreds of free and paid extensions from the WooCommerce Marketplace. Our developers vet each new extension and regularly review existing extensions to maintain Marketplace quality standards. We are actively looking for products that help store builders create successful stores.

    -

    Manage your store from anywhere with the free WooCommerce mobile app (Android and iOS). Spoiler alert: Keep an ear out for the slightly addictive “cha-ching” notification sound each time you make a new sale!

    -

    Own and control your store data – forever

    -

    With WooCommerce, your data belongs to you. Always.

    -

    If you opt to share usage data with us, you can feel confident knowing that it’s anonymized and kept secure. Choose to opt-out at any time without impacting your store.

    -

    Unlike hosted ecommerce solutions, WooCommerce store data is future-proof; you’re free to export all your content and take your site to any platform you choose. No restrictions.

    -

    Why developers choose (and love) WooCommerce

    -

    Developers can use WooCommerce to create, customize, and scale a store to meet a client’s exact specifications, making enhancements through extensions or custom solutions.

    -
      -
    • Leverage hooks and filters to modify or create functionality.
    • -
    • Integrate virtually any service using a robust REST API and webhooks.
    • -
    • Design and build custom content blocks with React.
    • -
    • Inspect and modify any aspect of the core plugin code.
    • -
    • Speed up development with a lightning-fast CLI.
    • -
    -

    The core platform is tested rigorously and often, supported by a dedicated development team working across time zones. Comprehensive documentation is updated with each release, empowering you to build exactly the store required.

    -

    Be part of our growing international community

    -

    WooCommerce has a large, passionate community dedicated to helping merchants succeed – and it’s growing fast.

    -

    There are WooCommerce Meetups in locations around the world that you can attend for free and even get involved in running. These events are a great way to learn from others, share your expertise, and connect with like-minded folks.

    -

    WooCommerce also has a regular presence at WordCamps across the globe – we’d love to meet you.

    -

    Contribute and translate

    -

    WooCommerce is developed and supported by Automattic, the creators of WordPress.com and Jetpack. We also have hundreds of independent contributors, and there’s always room for more. Head to the WooCommerce GitHub Repository to find out how you can pitch in.

    -

    WooCommerce is translated into multiple languages, including Danish, Ukrainian, and Persian. Help localize WooCommerce even further by adding your locale – visit translate.wordpress.org.

    -

    Connection to WooCommerce.com

    -

    You can connect your store to WooCommerce.com to manage your subscriptions on WooCommerce Marketplace and receive product updates without leaving WordPress admin. Connection also enables installation of purchased products right from WooCommerce.com and streamlines access to technical support. If you’d like to learn about what data is gathered and how it is used, please refer to our Privacy Policy.

    -', '10.3.3', 'Automattic', '6.7', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/woocommerce.10.3.3.zip', '2011-09-27 00:00:00+00', '2025-10-24 14:59:00+00', 'https://profiles.wordpress.org/automattic/', 90, 4643, 513, 448, 7000000, 413365161, 'https://woocommerce.com/', NULL, 'commercial', NULL, 'https://wordpress.org/support/plugin/woocommerce/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WooCommerce", "slug": "woocommerce", "tags": {"shop": "shop", "ecommerce": "ecommerce", "sell-online": "sell online", "online-store": "online store", "shopping-cart": "shopping cart"}, "added": "2011-09-27", "icons": {"1x": "https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504", "svg": "https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504"}, "author": "Automattic", "rating": 90, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504", "high": "https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504"}, "ratings": {"1": 405, "2": 109, "3": 104, "4": 189, "5": 3836}, "version": "10.3.3", "homepage": "https://woocommerce.com/", "requires": "6.7", "sections": {"faq": "\n
    \nWhere can I find WooCommerce documentation and user guides?\n\n

    \n

    For help setting up and configuring WooCommerce, please refer to Getting Started and the New WooCommerce Store Owner Guide.

    \n

    For extending or theming WooCommerce, see our documentation, as well as the Plugin Developer Best Practices.

    \n

    \n
    \nWhere can I get help or talk to other users about WooCommerce Core?\n\n

    \n

    If you get stuck, you can ask for help in the WooCommerce Support Forum by following these guidelines, reach out via the WooCommerce Community Slack, or post in the WooCommerce Community group on Facebook.

    \n

    \n
    \nWhere can I get help for extensions I have purchased from the WooCommerce Marketplace?\n\n

    \n

    For assistance with paid extensions from the WooCommerce Marketplace: first, review our self-service troubleshooting guide. If the problem persists, kindly log a support ticket via our helpdesk. Our dedicated Happiness Engineers aim to respond within 24 hours.

    \n

    \n
    \nI’m having trouble logging in to WooCommerce.com – what now?\n\n

    \n

    First, troubleshoot common login issues using this helpful step-by-step guide. Still not working? Get in touch with us.

    \n

    \n
    \nWill WooCommerce work with my theme?\n\n

    \n

    Yes! WooCommerce will work with any theme but may require some additional styling. If you’re looking for a theme featuring deep WooCommerce integration, we recommend Storefront.

    \n

    \n
    \nHow do I update WooCommerce?\n\n

    \n

    We have a detailed guide on How To Update WooCommerce.

    \n

    \n
    \nMy site broke – what do I do?\n\n

    \n

    Start by diagnosing the issue using our helpful troubleshooting guide.

    \n

    If you noticed the error after updating a theme or plugin, there might be compatibility issues between it and WooCommerce. If the issue appeared after updating WooCommerce, there could be a conflict between WooCommerce and an outdated theme or plugin.

    \n

    In both instances, we recommend running a conflict test using Health Check (which allows you to disable themes and plugins without affecting your visitors) or troubleshooting the issue using a staging site.

    \n

    \n
    \nWhere can I report bugs?\n\n

    \n

    Report bugs on the WooCommerce GitHub repository. You can also notify us via our support forum – be sure to search the forums to confirm that the error has not already been reported.

    \n

    \n
    \nWhere can I request new features, themes, and extensions?\n\n

    \n

    Request new features and extensions and vote on existing suggestions on our official feature request board. Our Product teams regularly review requests and consider them valuable for product planning.

    \n

    \n
    \nWooCommerce is awesome! Can I contribute?\n\n

    \n

    Yes, you can! Join in on our GitHub repository and follow the development blog to stay up-to-date with everything happening in the project.

    \n

    \n
    \nWhere can I find REST API documentation?\n\n

    \n

    Extensive WooCommerce REST API Documentation is available on GitHub.

    \n

    \n
    \nMy question is not listed here. Where can I find more answers?\n\n

    \n

    Check out Frequently Asked Questions for more.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Annoying without support: Use something else

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jeremywendell on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    With every woo update there''s new hassle and annoyance. Support doesn''t help but only tries to sell high-priced consultants. If you''re looking for either a stable ecommerce plugin, or one with support, i''d recommend not making the same mistake i did. Wordpress/woocommerce is not at all appropriate for a small ecommerce business.

    \n\n\n\n

    So today I discover woo has removed my ability to add/remove product pictures or edit SEO content etc. WTF?!!:

    \n\n\n\n

    \"In WooCommerce 10+, Automattic replaced the long-standing classic product editor with their new block-based “product editing experience.”
    That new interface is still incomplete — it doesn’t yet expose many essential controls site owners actually use every day, such as:

    \n\n\n\n
      \n
    • ✅ Product gallery management (multiple images)
    • \n\n\n\n
    • ✅ Product meta boxes (for SEO, custom fields, shipping classes, etc.)
    • \n\n\n\n
    • ✅ Integration points for plugins like Elementor, Yoast, Rank Math, ACF, etc.
    • \n
    \n\n\n\n

    Those pieces simply don’t appear unless plugin developers have explicitly rebuilt their integrations for the block editor.

    \n\n\n\n

    So yes — when WooCommerce silently switched everyone over, it effectively hid normal tools like “Product Image” and “Product Gallery.” That’s why it feels like those features just vanished.\"

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Working frontoffice fine, BUT backofice is incredible slow

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gletcher on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Order handling is really a drag, its so slow

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works fine

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy derubeistahoe on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works fine

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The Best Support I’ve Ever Experienced!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy negotiatoruk on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve worked with many platforms over the years, but the WooCommerce support team truly stands out. Their response time is incredibly fast, and every interaction feels professional, knowledgeable, and genuinely helpful.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jeiriart on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The support team responded quickly. Thank you very much.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fiona92 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The support was excellent — efficient, friendly, and truly went above and beyond. The issue I experienced wasn’t even related to their plugin, yet they still took the time to help me identify the problem, which turned out to be caused by another plugin. Exceptional service and support! Highly recommended.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    needs improvement

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dinos24 on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    pretty good for a free app. needs improvement in speed and appearance. very difficult menu, non-existent PLUGINS. menu in more languages

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    this is best ever

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy oocher on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    this is best plugin ever. wonderful features. its obvious that it has some issues but who don''t?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Quick and helpful support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy breadf on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks for quick and helpful response.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent and patient support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy svitlana288 on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great support!
    They were patient, professional, and helped me identify the issue with my checkout page.
    Thank you for your clear and kind assistance! 🙏
    — Svitlana

    \n
    \n
    \n", "changelog": "

    10.3.3 2025-10-24

    \n

    WooCommerce

    \n
      \n
    • Dev – Add in deprecated script warnings and backwards compatibility for 3PDs #61599
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    WooCommerce is the open-source ecommerce platform for WordPress.

    \n

    Our core platform is free, flexible, and amplified by a global community. The freedom of open-source means you retain full ownership of your store’s content and data forever.

    \n

    Whether you’re launching a business, taking brick-and-mortar retail online, or developing sites for clients, use WooCommerce for a store that powerfully blends content and commerce.

    \n\n

    ALL THE TOOLS YOU NEED TO SELL

    \n

    Built-in tools and popular integrations help you efficiently manage your business operations. Many services are free to add with a single click via the optional Setup Wizard.

    \n
      \n
    • Choose how you want to get paid. Conveniently manage payments from the comfort of your store with WooPayments (Available in the U.S., U.K., Ireland, Australia, New Zealand, Canada, Spain, France, Germany, and Italy). Securely accept credit cards, mobile wallets, bank transfers, and cash thanks to 100+ payment gateways – including Stripe, PayPal, and Square.
    • \n
    • Configure your shipping options. Print USPS labels right from your dashboard and even schedule a pickup with WooCommerce Shipping (U.S.-only). Connect with well-known carriers such as UPS and FedEx – plus a wide variety of delivery, inventory, and fulfillment solutions for your locale.
    • \n
    • Simplify sales tax. Add WooCommerce Tax or similar integrated services to make automated calculations a reality.
    • \n
    \n

    Grow your business, add features, and monitor your store on the go

    \n

    WooCommerce means business. Keep tabs on the performance metrics most important to you with a powerful and flexible central dashboard built into WooCommerce.

    \n

    Expand your audience across marketing and social channels with Google Ads, HubSpot, Mailchimp, and Facebook integrations. You can always check out the in-dashboard Marketing Hub for fresh ideas and tips to help you succeed.

    \n

    Enhance store functionality with hundreds of free and paid extensions from the WooCommerce Marketplace. Our developers vet each new extension and regularly review existing extensions to maintain Marketplace quality standards. We are actively looking for products that help store builders create successful stores.

    \n

    Manage your store from anywhere with the free WooCommerce mobile app (Android and iOS). Spoiler alert: Keep an ear out for the slightly addictive “cha-ching” notification sound each time you make a new sale!

    \n

    Own and control your store data – forever

    \n

    With WooCommerce, your data belongs to you. Always.

    \n

    If you opt to share usage data with us, you can feel confident knowing that it’s anonymized and kept secure. Choose to opt-out at any time without impacting your store.

    \n

    Unlike hosted ecommerce solutions, WooCommerce store data is future-proof; you’re free to export all your content and take your site to any platform you choose. No restrictions.

    \n

    Why developers choose (and love) WooCommerce

    \n

    Developers can use WooCommerce to create, customize, and scale a store to meet a client’s exact specifications, making enhancements through extensions or custom solutions.

    \n
      \n
    • Leverage hooks and filters to modify or create functionality.
    • \n
    • Integrate virtually any service using a robust REST API and webhooks.
    • \n
    • Design and build custom content blocks with React.
    • \n
    • Inspect and modify any aspect of the core plugin code.
    • \n
    • Speed up development with a lightning-fast CLI.
    • \n
    \n

    The core platform is tested rigorously and often, supported by a dedicated development team working across time zones. Comprehensive documentation is updated with each release, empowering you to build exactly the store required.

    \n

    Be part of our growing international community

    \n

    WooCommerce has a large, passionate community dedicated to helping merchants succeed – and it’s growing fast.

    \n

    There are WooCommerce Meetups in locations around the world that you can attend for free and even get involved in running. These events are a great way to learn from others, share your expertise, and connect with like-minded folks.

    \n

    WooCommerce also has a regular presence at WordCamps across the globe – we’d love to meet you.

    \n

    Contribute and translate

    \n

    WooCommerce is developed and supported by Automattic, the creators of WordPress.com and Jetpack. We also have hundreds of independent contributors, and there’s always room for more. Head to the WooCommerce GitHub Repository to find out how you can pitch in.

    \n

    WooCommerce is translated into multiple languages, including Danish, Ukrainian, and Persian. Help localize WooCommerce even further by adding your locale – visit translate.wordpress.org.

    \n

    Connection to WooCommerce.com

    \n

    You can connect your store to WooCommerce.com to manage your subscriptions on WooCommerce Marketplace and receive product updates without leaving WordPress admin. Connection also enables installation of purchased products right from WooCommerce.com and streamlines access to technical support. If you’d like to learn about what data is gathered and how it is used, please refer to our Privacy Policy.

    \n", "screenshots": "
    1. \"\"
    2. \"\"
    3. \"\"
    4. \"\"
    5. \"\"
    6. \"\"
    ", "installation": "

    Minimum Requirements

    \n
      \n
    • PHP 7.4 or greater is required (PHP 8.0 or greater is recommended)
    • \n
    • MySQL 5.5.5 or greater, OR MariaDB version 10.1 or greater, is required
    • \n
    • WordPress 6.7 or greater
    • \n
    • (Recommended) WordPress memory limit of 256 MB or greater.
    • \n
    • (Recommended) HTTPS support.
    • \n
    \n

    Automatic installation

    \n

    Automatic installation is the easiest option — WordPress will handle the file transfer, and you won’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu, and click “Add New.”

    \n

    In the search field type “WooCommerce,” then click “Search Plugins.” Once you’ve found us, you can view details about it such as the point release, rating, and description. Most importantly of course, you can install it by! Click “Install Now,” and WordPress will take it from there.

    \n

    Manual installation

    \n

    Manual installation method requires downloading the WooCommerce plugin and uploading it to your web server via your favorite FTP application. The WordPress codex contains instructions on how to do this here.

    \n

    Updating

    \n

    Automatic updates should work smoothly, but we still recommend you back up your site.

    \n

    If you encounter issues with the shop/category pages after an update, flush the permalinks by going to WordPress > Settings > Permalinks and hitting “Save.” That should return things to normal.

    \n

    Sample data

    \n

    WooCommerce comes with some sample data you can use to see how products look; import sample_products.xml via the WordPress importer. You can also use the core CSV importer or our CSV Import Suite extension to import sample_products.csv

    \n"}, "versions": {"3.0.0": "https://downloads.wordpress.org/plugin/woocommerce.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/woocommerce.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/woocommerce.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/woocommerce.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/woocommerce.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/woocommerce.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/woocommerce.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/woocommerce.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/woocommerce.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/woocommerce.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/woocommerce.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/woocommerce.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/woocommerce.3.1.2.zip", "3.2.0": "https://downloads.wordpress.org/plugin/woocommerce.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/woocommerce.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/woocommerce.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/woocommerce.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/woocommerce.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/woocommerce.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/woocommerce.3.2.6.zip", "3.3.0": "https://downloads.wordpress.org/plugin/woocommerce.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/woocommerce.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/woocommerce.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/woocommerce.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/woocommerce.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/woocommerce.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/woocommerce.3.3.6.zip", "3.4.0": "https://downloads.wordpress.org/plugin/woocommerce.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/woocommerce.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/woocommerce.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/plugin/woocommerce.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/plugin/woocommerce.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/woocommerce.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/plugin/woocommerce.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/plugin/woocommerce.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/plugin/woocommerce.3.4.8.zip", "3.5.0": "https://downloads.wordpress.org/plugin/woocommerce.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/woocommerce.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/woocommerce.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/plugin/woocommerce.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/plugin/woocommerce.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/plugin/woocommerce.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/plugin/woocommerce.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/plugin/woocommerce.3.5.7.zip", "3.5.8": "https://downloads.wordpress.org/plugin/woocommerce.3.5.8.zip", "3.5.9": "https://downloads.wordpress.org/plugin/woocommerce.3.5.9.zip", "3.6.0": "https://downloads.wordpress.org/plugin/woocommerce.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/woocommerce.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/plugin/woocommerce.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/plugin/woocommerce.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/woocommerce.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/woocommerce.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/woocommerce.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/woocommerce.3.6.7.zip", "3.7.0": "https://downloads.wordpress.org/plugin/woocommerce.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/woocommerce.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/woocommerce.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/woocommerce.3.7.3.zip", "3.8.0": "https://downloads.wordpress.org/plugin/woocommerce.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/woocommerce.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/woocommerce.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/woocommerce.3.8.3.zip", "3.9.0": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/woocommerce.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/woocommerce.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/woocommerce.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/plugin/woocommerce.3.9.4.zip", "3.9.5": "https://downloads.wordpress.org/plugin/woocommerce.3.9.5.zip", "4.0.0": "https://downloads.wordpress.org/plugin/woocommerce.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/woocommerce.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/woocommerce.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/woocommerce.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/woocommerce.4.0.4.zip", "4.1.0": "https://downloads.wordpress.org/plugin/woocommerce.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/woocommerce.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/woocommerce.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/woocommerce.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/woocommerce.4.1.4.zip", "4.2.0": "https://downloads.wordpress.org/plugin/woocommerce.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/woocommerce.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/woocommerce.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/woocommerce.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/woocommerce.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/woocommerce.4.2.5.zip", "4.3.0": "https://downloads.wordpress.org/plugin/woocommerce.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/woocommerce.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/woocommerce.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/woocommerce.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/plugin/woocommerce.4.3.4.zip", "4.3.5": "https://downloads.wordpress.org/plugin/woocommerce.4.3.5.zip", "4.3.6": "https://downloads.wordpress.org/plugin/woocommerce.4.3.6.zip", "4.4.0": "https://downloads.wordpress.org/plugin/woocommerce.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/woocommerce.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/woocommerce.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/plugin/woocommerce.4.4.3.zip", "4.4.4": "https://downloads.wordpress.org/plugin/woocommerce.4.4.4.zip", "4.5.0": "https://downloads.wordpress.org/plugin/woocommerce.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/woocommerce.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/woocommerce.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/woocommerce.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/woocommerce.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/woocommerce.4.5.5.zip", "4.6.0": "https://downloads.wordpress.org/plugin/woocommerce.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/woocommerce.4.6.1.zip", "4.6.2": "https://downloads.wordpress.org/plugin/woocommerce.4.6.2.zip", "4.6.3": "https://downloads.wordpress.org/plugin/woocommerce.4.6.3.zip", "4.6.4": "https://downloads.wordpress.org/plugin/woocommerce.4.6.4.zip", "4.6.5": "https://downloads.wordpress.org/plugin/woocommerce.4.6.5.zip", "4.7.0": "https://downloads.wordpress.org/plugin/woocommerce.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/plugin/woocommerce.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/woocommerce.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/plugin/woocommerce.4.7.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/woocommerce.4.7.4.zip", "4.8.0": "https://downloads.wordpress.org/plugin/woocommerce.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/woocommerce.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/woocommerce.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/plugin/woocommerce.4.8.3.zip", "4.9.0": "https://downloads.wordpress.org/plugin/woocommerce.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/woocommerce.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/woocommerce.4.9.2.zip", "4.9.3": "https://downloads.wordpress.org/plugin/woocommerce.4.9.3.zip", "4.9.4": "https://downloads.wordpress.org/plugin/woocommerce.4.9.4.zip", "4.9.5": "https://downloads.wordpress.org/plugin/woocommerce.4.9.5.zip", "5.0.0": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/woocommerce.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/woocommerce.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/woocommerce.5.0.3.zip", "5.1.0": "https://downloads.wordpress.org/plugin/woocommerce.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/woocommerce.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/woocommerce.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/woocommerce.5.1.3.zip", "5.2.0": "https://downloads.wordpress.org/plugin/woocommerce.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/woocommerce.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/woocommerce.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/woocommerce.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/woocommerce.5.2.4.zip", "5.2.5": "https://downloads.wordpress.org/plugin/woocommerce.5.2.5.zip", "5.3.0": "https://downloads.wordpress.org/plugin/woocommerce.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/woocommerce.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/woocommerce.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/woocommerce.5.3.3.zip", "5.4.0": "https://downloads.wordpress.org/plugin/woocommerce.5.4.0.zip", "5.4.1": "https://downloads.wordpress.org/plugin/woocommerce.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/woocommerce.5.4.2.zip", "5.4.3": "https://downloads.wordpress.org/plugin/woocommerce.5.4.3.zip", "5.4.4": "https://downloads.wordpress.org/plugin/woocommerce.5.4.4.zip", "5.5.0": "https://downloads.wordpress.org/plugin/woocommerce.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/woocommerce.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/woocommerce.5.5.2.zip", "5.5.3": "https://downloads.wordpress.org/plugin/woocommerce.5.5.3.zip", "5.5.4": "https://downloads.wordpress.org/plugin/woocommerce.5.5.4.zip", "5.6.0": "https://downloads.wordpress.org/plugin/woocommerce.5.6.0.zip", "5.6.1": "https://downloads.wordpress.org/plugin/woocommerce.5.6.1.zip", "5.6.2": "https://downloads.wordpress.org/plugin/woocommerce.5.6.2.zip", "5.7.0": "https://downloads.wordpress.org/plugin/woocommerce.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/woocommerce.5.7.1.zip", "5.7.2": "https://downloads.wordpress.org/plugin/woocommerce.5.7.2.zip", "5.8.0": "https://downloads.wordpress.org/plugin/woocommerce.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/woocommerce.5.8.1.zip", "5.9.0": "https://downloads.wordpress.org/plugin/woocommerce.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/woocommerce.5.9.1.zip", "6.0.0": "https://downloads.wordpress.org/plugin/woocommerce.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/woocommerce.6.0.1.zip", "6.1.0": "https://downloads.wordpress.org/plugin/woocommerce.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/woocommerce.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/woocommerce.6.1.2.zip", "6.2.0": "https://downloads.wordpress.org/plugin/woocommerce.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/woocommerce.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/woocommerce.6.2.2.zip", "6.3.0": "https://downloads.wordpress.org/plugin/woocommerce.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/woocommerce.6.3.1.zip", "6.4.0": "https://downloads.wordpress.org/plugin/woocommerce.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/plugin/woocommerce.6.4.1.zip", "6.5.0": "https://downloads.wordpress.org/plugin/woocommerce.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/woocommerce.6.5.1.zip", "6.6.0": "https://downloads.wordpress.org/plugin/woocommerce.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/woocommerce.6.6.1.zip", "6.7.0": "https://downloads.wordpress.org/plugin/woocommerce.6.7.0.zip", "6.8.0": "https://downloads.wordpress.org/plugin/woocommerce.6.8.0.zip", "6.8.1": "https://downloads.wordpress.org/plugin/woocommerce.6.8.1.zip", "6.8.2": "https://downloads.wordpress.org/plugin/woocommerce.6.8.2.zip", "6.9.0": "https://downloads.wordpress.org/plugin/woocommerce.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/woocommerce.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/woocommerce.6.9.2.zip", "6.9.3": "https://downloads.wordpress.org/plugin/woocommerce.6.9.3.zip", "6.9.4": "https://downloads.wordpress.org/plugin/woocommerce.6.9.4.zip", "7.0.0": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0.zip", "7.0.1": "https://downloads.wordpress.org/plugin/woocommerce.7.0.1.zip", "7.1.0": "https://downloads.wordpress.org/plugin/woocommerce.7.1.0.zip", "7.1.1": "https://downloads.wordpress.org/plugin/woocommerce.7.1.1.zip", "7.2.0": "https://downloads.wordpress.org/plugin/woocommerce.7.2.0.zip", "7.2.1": "https://downloads.wordpress.org/plugin/woocommerce.7.2.1.zip", "7.2.2": "https://downloads.wordpress.org/plugin/woocommerce.7.2.2.zip", "7.2.3": "https://downloads.wordpress.org/plugin/woocommerce.7.2.3.zip", "7.3.0": "https://downloads.wordpress.org/plugin/woocommerce.7.3.0.zip", "7.4.0": "https://downloads.wordpress.org/plugin/woocommerce.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/woocommerce.7.4.1.zip", "7.5.0": "https://downloads.wordpress.org/plugin/woocommerce.7.5.0.zip", "7.5.1": "https://downloads.wordpress.org/plugin/woocommerce.7.5.1.zip", "7.6.0": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0.zip", "7.6.1": "https://downloads.wordpress.org/plugin/woocommerce.7.6.1.zip", "7.7.0": "https://downloads.wordpress.org/plugin/woocommerce.7.7.0.zip", "7.7.1": "https://downloads.wordpress.org/plugin/woocommerce.7.7.1.zip", "7.7.2": "https://downloads.wordpress.org/plugin/woocommerce.7.7.2.zip", "7.8.0": "https://downloads.wordpress.org/plugin/woocommerce.7.8.0.zip", "7.8.1": "https://downloads.wordpress.org/plugin/woocommerce.7.8.1.zip", "7.8.2": "https://downloads.wordpress.org/plugin/woocommerce.7.8.2.zip", "7.8.3": "https://downloads.wordpress.org/plugin/woocommerce.7.8.3.zip", "7.9.0": "https://downloads.wordpress.org/plugin/woocommerce.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/woocommerce.7.9.1.zip", "8.0.0": "https://downloads.wordpress.org/plugin/woocommerce.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/plugin/woocommerce.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/plugin/woocommerce.8.0.2.zip", "8.0.3": "https://downloads.wordpress.org/plugin/woocommerce.8.0.3.zip", "8.0.4": "https://downloads.wordpress.org/plugin/woocommerce.8.0.4.zip", "8.1.0": "https://downloads.wordpress.org/plugin/woocommerce.8.1.0.zip", "8.1.1": "https://downloads.wordpress.org/plugin/woocommerce.8.1.1.zip", "8.1.2": "https://downloads.wordpress.org/plugin/woocommerce.8.1.2.zip", "8.2.0": "https://downloads.wordpress.org/plugin/woocommerce.8.2.0.zip", "8.2.1": "https://downloads.wordpress.org/plugin/woocommerce.8.2.1.zip", "8.2.2": "https://downloads.wordpress.org/plugin/woocommerce.8.2.2.zip", "8.2.3": "https://downloads.wordpress.org/plugin/woocommerce.8.2.3.zip", "8.3.0": "https://downloads.wordpress.org/plugin/woocommerce.8.3.0.zip", "8.3.1": "https://downloads.wordpress.org/plugin/woocommerce.8.3.1.zip", "8.3.2": "https://downloads.wordpress.org/plugin/woocommerce.8.3.2.zip", "8.4.0": "https://downloads.wordpress.org/plugin/woocommerce.8.4.0.zip", "8.4.1": "https://downloads.wordpress.org/plugin/woocommerce.8.4.1.zip", "8.5.0": "https://downloads.wordpress.org/plugin/woocommerce.8.5.0.zip", "8.5.1": "https://downloads.wordpress.org/plugin/woocommerce.8.5.1.zip", "8.5.2": "https://downloads.wordpress.org/plugin/woocommerce.8.5.2.zip", "8.5.3": "https://downloads.wordpress.org/plugin/woocommerce.8.5.3.zip", "8.6.0": "https://downloads.wordpress.org/plugin/woocommerce.8.6.0.zip", "8.6.1": "https://downloads.wordpress.org/plugin/woocommerce.8.6.1.zip", "8.6.2": "https://downloads.wordpress.org/plugin/woocommerce.8.6.2.zip", "8.7.0": "https://downloads.wordpress.org/plugin/woocommerce.8.7.0.zip", "8.7.1": "https://downloads.wordpress.org/plugin/woocommerce.8.7.1.zip", "8.8.0": "https://downloads.wordpress.org/plugin/woocommerce.8.8.0.zip", "8.8.1": "https://downloads.wordpress.org/plugin/woocommerce.8.8.1.zip", "8.8.2": "https://downloads.wordpress.org/plugin/woocommerce.8.8.2.zip", "8.8.3": "https://downloads.wordpress.org/plugin/woocommerce.8.8.3.zip", "8.8.4": "https://downloads.wordpress.org/plugin/woocommerce.8.8.4.zip", "8.8.5": "https://downloads.wordpress.org/plugin/woocommerce.8.8.5.zip", "8.9.0": "https://downloads.wordpress.org/plugin/woocommerce.8.9.0.zip", "8.9.1": "https://downloads.wordpress.org/plugin/woocommerce.8.9.1.zip", "8.9.2": "https://downloads.wordpress.org/plugin/woocommerce.8.9.2.zip", "8.9.3": "https://downloads.wordpress.org/plugin/woocommerce.8.9.3.zip", "9.0.0": "https://downloads.wordpress.org/plugin/woocommerce.9.0.0.zip", "9.0.1": "https://downloads.wordpress.org/plugin/woocommerce.9.0.1.zip", "9.0.2": "https://downloads.wordpress.org/plugin/woocommerce.9.0.2.zip", "9.1.0": "https://downloads.wordpress.org/plugin/woocommerce.9.1.0.zip", "9.1.1": "https://downloads.wordpress.org/plugin/woocommerce.9.1.1.zip", "9.1.2": "https://downloads.wordpress.org/plugin/woocommerce.9.1.2.zip", "9.1.3": "https://downloads.wordpress.org/plugin/woocommerce.9.1.3.zip", "9.1.4": "https://downloads.wordpress.org/plugin/woocommerce.9.1.4.zip", "9.2.0": "https://downloads.wordpress.org/plugin/woocommerce.9.2.0.zip", "9.2.1": "https://downloads.wordpress.org/plugin/woocommerce.9.2.1.zip", "9.2.2": "https://downloads.wordpress.org/plugin/woocommerce.9.2.2.zip", "9.2.3": "https://downloads.wordpress.org/plugin/woocommerce.9.2.3.zip", "9.3.0": "https://downloads.wordpress.org/plugin/woocommerce.9.3.0.zip", "9.3.1": "https://downloads.wordpress.org/plugin/woocommerce.9.3.1.zip", "9.3.2": "https://downloads.wordpress.org/plugin/woocommerce.9.3.2.zip", "9.3.3": "https://downloads.wordpress.org/plugin/woocommerce.9.3.3.zip", "9.3.4": "https://downloads.wordpress.org/plugin/woocommerce.9.3.4.zip", "9.4.0": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0.zip", "9.4.1": "https://downloads.wordpress.org/plugin/woocommerce.9.4.1.zip", "9.4.2": "https://downloads.wordpress.org/plugin/woocommerce.9.4.2.zip", "9.4.3": "https://downloads.wordpress.org/plugin/woocommerce.9.4.3.zip", "9.5.0": "https://downloads.wordpress.org/plugin/woocommerce.9.5.0.zip", "9.5.1": "https://downloads.wordpress.org/plugin/woocommerce.9.5.1.zip", "9.5.2": "https://downloads.wordpress.org/plugin/woocommerce.9.5.2.zip", "9.6.0": "https://downloads.wordpress.org/plugin/woocommerce.9.6.0.zip", "9.6.1": "https://downloads.wordpress.org/plugin/woocommerce.9.6.1.zip", "9.6.2": "https://downloads.wordpress.org/plugin/woocommerce.9.6.2.zip", "9.7.0": "https://downloads.wordpress.org/plugin/woocommerce.9.7.0.zip", "9.7.1": "https://downloads.wordpress.org/plugin/woocommerce.9.7.1.zip", "9.8.0": "https://downloads.wordpress.org/plugin/woocommerce.9.8.0.zip", "9.8.1": "https://downloads.wordpress.org/plugin/woocommerce.9.8.1.zip", "9.8.2": "https://downloads.wordpress.org/plugin/woocommerce.9.8.2.zip", "9.8.3": "https://downloads.wordpress.org/plugin/woocommerce.9.8.3.zip", "9.8.4": "https://downloads.wordpress.org/plugin/woocommerce.9.8.4.zip", "9.8.5": "https://downloads.wordpress.org/plugin/woocommerce.9.8.5.zip", "9.9.0": "https://downloads.wordpress.org/plugin/woocommerce.9.9.0.zip", "9.9.1": "https://downloads.wordpress.org/plugin/woocommerce.9.9.1.zip", "9.9.2": "https://downloads.wordpress.org/plugin/woocommerce.9.9.2.zip", "9.9.3": "https://downloads.wordpress.org/plugin/woocommerce.9.9.3.zip", "9.9.4": "https://downloads.wordpress.org/plugin/woocommerce.9.9.4.zip", "9.9.5": "https://downloads.wordpress.org/plugin/woocommerce.9.9.5.zip", "trunk": "https://downloads.wordpress.org/plugin/woocommerce.zip", "10.0.0": "https://downloads.wordpress.org/plugin/woocommerce.10.0.0.zip", "10.0.1": "https://downloads.wordpress.org/plugin/woocommerce.10.0.1.zip", "10.0.2": "https://downloads.wordpress.org/plugin/woocommerce.10.0.2.zip", "10.0.3": "https://downloads.wordpress.org/plugin/woocommerce.10.0.3.zip", "10.0.4": "https://downloads.wordpress.org/plugin/woocommerce.10.0.4.zip", "10.1.0": "https://downloads.wordpress.org/plugin/woocommerce.10.1.0.zip", "10.1.1": "https://downloads.wordpress.org/plugin/woocommerce.10.1.1.zip", "10.1.2": "https://downloads.wordpress.org/plugin/woocommerce.10.1.2.zip", "10.2.0": "https://downloads.wordpress.org/plugin/woocommerce.10.2.0.zip", "10.2.1": "https://downloads.wordpress.org/plugin/woocommerce.10.2.1.zip", "10.2.2": "https://downloads.wordpress.org/plugin/woocommerce.10.2.2.zip", "10.3.0": "https://downloads.wordpress.org/plugin/woocommerce.10.3.0.zip", "10.3.1": "https://downloads.wordpress.org/plugin/woocommerce.10.3.1.zip", "10.3.2": "https://downloads.wordpress.org/plugin/woocommerce.10.3.2.zip", "10.3.3": "https://downloads.wordpress.org/plugin/woocommerce.10.3.3.zip", "3.5.10": "https://downloads.wordpress.org/plugin/woocommerce.3.5.10.zip", "3.3.2-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.3.2-rc.1.zip", "3.4.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.4.0-rc.2.zip", "3.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.1.zip", "3.5.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.2.zip", "3.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.1.zip", "3.6.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.2.zip", "3.6.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.3.zip", "3.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.1.zip", "3.7.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.2.zip", "3.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.1.zip", "3.8.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.2.zip", "3.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.1.zip", "3.9.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.2.zip", "3.9.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.3.zip", "3.9.0-rc.4": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.4.zip", "4.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.1.zip", "4.0.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.2.zip", "4.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.1.zip", "4.1.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.2.zip", "4.2.0-RC.1": "https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.1.zip", "4.2.0-RC.2": "https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.2.zip", "4.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.1.zip", "4.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.2.zip", "4.3.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.3.zip", "4.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.4.0-rc.1.zip", "4.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.1.zip", "4.5.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.3.zip", "4.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.6.0-rc.1.zip", "4.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.7.0-rc.1.zip", "4.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.1.zip", "4.8.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.2.zip", "4.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.1.zip", "4.9.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.2.zip", "5.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.1.zip", "5.0.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.2.zip", "5.0.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.3.zip", "5.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.1.0-rc.1.zip", "5.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.1.zip", "5.2.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.2.zip", "5.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.1.zip", "5.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.2.zip", "5.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.4.0-rc.1.zip", "5.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.1.zip", "5.5.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.2.zip", "5.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.1.zip", "5.6.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.2.zip", "5.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.7.0-rc.1.zip", "5.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.8.0-rc.1.zip", "5.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.1.zip", "5.9.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.2.zip", "6.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.0.0-rc.1.zip", "6.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.1.zip", "6.1.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.2.zip", "6.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.1.zip", "6.2.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.2.zip", "6.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.3.0-rc.1.zip", "6.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.6.3.0-rc.2.zip", "6.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.4.0-rc.1.zip", "6.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.5.0-rc.1.zip", "6.5.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.6.5.0-rc.2.zip", "6.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.6.0-rc.1.zip", "6.6.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.6.6.0-rc.2.zip", "6.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.7.0-rc.1.zip", "6.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.8.0-rc.1.zip", "6.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.6.9.0-rc.1.zip", "7.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0-rc.1.zip", "7.0.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0-rc.2.zip", "7.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.1.0-rc.1.zip", "7.1.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.1.0-rc.2.zip", "7.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.2.0-rc.1.zip", "7.2.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.2.0-rc.2.zip", "7.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.3.0-rc.1.zip", "7.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.3.0-rc.2.zip", "7.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.4.0-rc.1.zip", "7.4.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.4.0-rc.2.zip", "7.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.5.0-rc.1.zip", "7.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.1.zip", "7.6.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.2.zip", "7.6.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.3.zip", "7.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.7.0-rc.1.zip", "7.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.7.8.0-rc.1.zip", "7.8.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.8.0-rc.2.zip", "7.9.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.7.9.0-rc.2.zip", "7.9.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.7.9.0-rc.3.zip", "8.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.0.0-rc.1.zip", "8.0.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.8.0.0-rc.2.zip", "8.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.1.0-rc.1.zip", "8.1.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.8.1.0-rc.2.zip", "8.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.2.0-rc.1.zip", "8.2.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.8.2.0-rc.2.zip", "8.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.3.0-rc.1.zip", "8.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.8.3.0-rc.2.zip", "8.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.4.0-rc.1.zip", "8.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.5.0-rc.1.zip", "8.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.6.0-rc.1.zip", "8.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.7.0-rc.1.zip", "8.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.8.0-rc.1.zip", "8.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.8.9.0-rc.1.zip", "9.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.0.0-rc.1.zip", "9.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.1.0-rc.1.zip", "9.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.2.0-rc.1.zip", "9.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.3.0-rc.1.zip", "9.4.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.1.zip", "9.4.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.2.zip", "9.4.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.3.zip", "9.4.0-rc.4": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.4.zip", "9.5.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.5.0-rc.1.zip", "9.6.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.6.0-rc.1.zip", "9.7.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.7.0-rc.1.zip", "9.8.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.8.0-rc.1.zip", "9.9.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.9.9.0-rc.1.zip", "10.0.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.10.0.0-rc.1.zip", "10.0.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.10.0.0-rc.2.zip", "10.1.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.1.zip", "10.1.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.2.zip", "10.1.0-rc.3": "https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.3.zip", "10.1.0-rc.4": "https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.4.zip", "10.2.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.10.2.0-rc.1.zip", "10.3.0-rc.1": "https://downloads.wordpress.org/plugin/woocommerce.10.3.0-rc.1.zip", "10.3.0-rc.2": "https://downloads.wordpress.org/plugin/woocommerce.10.3.0-rc.2.zip", "3.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.4.0-beta.1.zip", "3.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.5.0-beta.1.zip", "3.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.6.0-beta.1.zip", "3.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.7.0-beta.1.zip", "3.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.8.0-beta.1.zip", "3.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.1.zip", "3.9.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.2.zip", "4.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.0.0-beta.1.zip", "4.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.1.zip", "4.1.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.2.zip", "4.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.2.0-beta.1.zip", "4.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.3.0-beta.1.zip", "4.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.4.0-beta.1.zip", "4.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.5.0-beta.1.zip", "4.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.6.0-beta.1.zip", "4.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.1.zip", "4.7.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.2.zip", "4.7.1-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.7.1-beta.1.zip", "4.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.8.0-beta.1.zip", "4.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.4.9.0-beta.1.zip", "5.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.1.zip", "5.0.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.2.zip", "5.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.1.0-beta.1.zip", "5.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.2.0-beta.1.zip", "5.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.3.0-beta.1.zip", "5.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.4.0-beta.1.zip", "5.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.5.0-beta.1.zip", "5.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.6.0-beta.1.zip", "5.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.7.0-beta.1.zip", "5.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.1.zip", "5.8.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.2.zip", "5.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.5.9.0-beta.1.zip", "6.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.0.0-beta.1.zip", "6.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.1.0-beta.1.zip", "6.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.2.0-beta.1.zip", "6.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.3.0-beta.1.zip", "6.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.4.0-beta.1.zip", "6.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.5.0-beta.1.zip", "6.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.6.0-beta.1.zip", "6.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.7.0-beta.1.zip", "6.7.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.6.7.0-beta.2.zip", "6.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.8.0-beta.1.zip", "6.8.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.6.8.0-beta.2.zip", "6.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.6.9.0-beta.1.zip", "6.9.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.6.9.0-beta.2.zip", "7.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.1.zip", "7.0.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.2.zip", "7.0.0-beta.3": "https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.3.zip", "7.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.1.zip", "7.1.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.2.zip", "7.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.2.0-beta.1.zip", "7.2.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.2.0-beta.2.zip", "7.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.3.0-beta.1.zip", "7.3.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.3.0-beta.2.zip", "7.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.4.0-beta.1.zip", "7.4.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.4.0-beta.2.zip", "7.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.5.0-beta.1.zip", "7.5.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.5.0-beta.2.zip", "7.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0-beta.1.zip", "7.6.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.6.0-beta.2.zip", "7.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.7.0-beta.1.zip", "7.7.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.7.0-beta.2.zip", "7.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.8.0-beta.1.zip", "7.8.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.8.0-beta.2.zip", "7.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.7.9.0-beta.1.zip", "7.9.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.7.9.0-beta.2.zip", "8.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.0.0-beta.1.zip", "8.0.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.8.0.0-beta.2.zip", "8.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.1.0-beta.1.zip", "8.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.2.0-beta.1.zip", "8.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.3.0-beta.1.zip", "8.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.4.0-beta.1.zip", "8.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.5.0-beta.1.zip", "8.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.6.0-beta.1.zip", "8.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.7.0-beta.1.zip", "8.7.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.8.7.0-beta.2.zip", "8.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.8.0-beta.1.zip", "8.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.8.9.0-beta.1.zip", "9.0.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.0.0-beta.1.zip", "9.0.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.9.0.0-beta.2.zip", "9.1.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.1.0-beta.1.zip", "9.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.2.0-beta.1.zip", "9.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.3.0-beta.1.zip", "9.4.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-beta.1.zip", "9.4.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.9.4.0-beta.2.zip", "9.5.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.5.0-beta.1.zip", "9.5.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.9.5.0-beta.2.zip", "9.6.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.6.0-beta.1.zip", "9.6.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.9.6.0-beta.2.zip", "9.7.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.7.0-beta.1.zip", "9.8.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.8.0-beta.1.zip", "9.9.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.9.9.0-beta.1.zip", "10.2.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.10.2.0-beta.1.zip", "10.2.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.10.2.0-beta.2.zip", "10.3.0-beta.1": "https://downloads.wordpress.org/plugin/woocommerce.10.3.0-beta.1.zip", "10.3.0-beta.2": "https://downloads.wordpress.org/plugin/woocommerce.10.3.0-beta.2.zip"}, "downloaded": 413365161, "description": "

    WooCommerce is the open-source ecommerce platform for WordPress.

    \n

    Our core platform is free, flexible, and amplified by a global community. The freedom of open-source means you retain full ownership of your store’s content and data forever.

    \n

    Whether you’re launching a business, taking brick-and-mortar retail online, or developing sites for clients, use WooCommerce for a store that powerfully blends content and commerce.

    \n\n

    ALL THE TOOLS YOU NEED TO SELL

    \n

    Built-in tools and popular integrations help you efficiently manage your business operations. Many services are free to add with a single click via the optional Setup Wizard.

    \n
      \n
    • Choose how you want to get paid. Conveniently manage payments from the comfort of your store with WooPayments (Available in the U.S., U.K., Ireland, Australia, New Zealand, Canada, Spain, France, Germany, and Italy). Securely accept credit cards, mobile wallets, bank transfers, and cash thanks to 100+ payment gateways – including Stripe, PayPal, and Square.
    • \n
    • Configure your shipping options. Print USPS labels right from your dashboard and even schedule a pickup with WooCommerce Shipping (U.S.-only). Connect with well-known carriers such as UPS and FedEx – plus a wide variety of delivery, inventory, and fulfillment solutions for your locale.
    • \n
    • Simplify sales tax. Add WooCommerce Tax or similar integrated services to make automated calculations a reality.
    • \n
    \n

    Grow your business, add features, and monitor your store on the go

    \n

    WooCommerce means business. Keep tabs on the performance metrics most important to you with a powerful and flexible central dashboard built into WooCommerce.

    \n

    Expand your audience across marketing and social channels with Google Ads, HubSpot, Mailchimp, and Facebook integrations. You can always check out the in-dashboard Marketing Hub for fresh ideas and tips to help you succeed.

    \n

    Enhance store functionality with hundreds of free and paid extensions from the WooCommerce Marketplace. Our developers vet each new extension and regularly review existing extensions to maintain Marketplace quality standards. We are actively looking for products that help store builders create successful stores.

    \n

    Manage your store from anywhere with the free WooCommerce mobile app (Android and iOS). Spoiler alert: Keep an ear out for the slightly addictive “cha-ching” notification sound each time you make a new sale!

    \n

    Own and control your store data – forever

    \n

    With WooCommerce, your data belongs to you. Always.

    \n

    If you opt to share usage data with us, you can feel confident knowing that it’s anonymized and kept secure. Choose to opt-out at any time without impacting your store.

    \n

    Unlike hosted ecommerce solutions, WooCommerce store data is future-proof; you’re free to export all your content and take your site to any platform you choose. No restrictions.

    \n

    Why developers choose (and love) WooCommerce

    \n

    Developers can use WooCommerce to create, customize, and scale a store to meet a client’s exact specifications, making enhancements through extensions or custom solutions.

    \n
      \n
    • Leverage hooks and filters to modify or create functionality.
    • \n
    • Integrate virtually any service using a robust REST API and webhooks.
    • \n
    • Design and build custom content blocks with React.
    • \n
    • Inspect and modify any aspect of the core plugin code.
    • \n
    • Speed up development with a lightning-fast CLI.
    • \n
    \n

    The core platform is tested rigorously and often, supported by a dedicated development team working across time zones. Comprehensive documentation is updated with each release, empowering you to build exactly the store required.

    \n

    Be part of our growing international community

    \n

    WooCommerce has a large, passionate community dedicated to helping merchants succeed – and it’s growing fast.

    \n

    There are WooCommerce Meetups in locations around the world that you can attend for free and even get involved in running. These events are a great way to learn from others, share your expertise, and connect with like-minded folks.

    \n

    WooCommerce also has a regular presence at WordCamps across the globe – we’d love to meet you.

    \n

    Contribute and translate

    \n

    WooCommerce is developed and supported by Automattic, the creators of WordPress.com and Jetpack. We also have hundreds of independent contributors, and there’s always room for more. Head to the WooCommerce GitHub Repository to find out how you can pitch in.

    \n

    WooCommerce is translated into multiple languages, including Danish, Ukrainian, and Persian. Help localize WooCommerce even further by adding your locale – visit translate.wordpress.org.

    \n

    Connection to WooCommerce.com

    \n

    You can connect your store to WooCommerce.com to manage your subscriptions on WooCommerce Marketplace and receive product updates without leaving WordPress admin. Connection also enables installation of purchased products right from WooCommerce.com and streamlines access to technical support. If you’d like to learn about what data is gathered and how it is used, please refer to our Privacy Policy.

    \n", "donate_link": "", "num_ratings": 4643, "screenshots": {"1": {"src": "https://ps.w.org/woocommerce/assets/screenshot-1.png?rev=3234504", "caption": ""}, "2": {"src": "https://ps.w.org/woocommerce/assets/screenshot-2.png?rev=3234504", "caption": ""}, "3": {"src": "https://ps.w.org/woocommerce/assets/screenshot-3.png?rev=3234504", "caption": ""}, "4": {"src": "https://ps.w.org/woocommerce/assets/screenshot-4.png?rev=3235205", "caption": ""}, "5": {"src": "https://ps.w.org/woocommerce/assets/screenshot-5.png?rev=3234504", "caption": ""}, "6": {"src": "https://ps.w.org/woocommerce/assets/screenshot-6.png?rev=3234504", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/woocommerce/", "contributors": {"bor0": {"avatar": "https://secure.gravatar.com/avatar/787d8ea71701ced680cd80411d656c20e0e600be5d34f6ce3478143d43dc9fd9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bor0/", "display_name": "Boro Sitnikovski"}, "kloon": {"avatar": "https://secure.gravatar.com/avatar/c7c708f5b0957714ab48e00220b0f74acccb43b70fa0d4b5ee091d59951ae751?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kloon/", "display_name": "Gerhard Potgieter"}, "opr18": {"avatar": "https://secure.gravatar.com/avatar/e083a0759b8ea01b11c1f154a3087ddfaf65a93011cf97a85fdbfc0cda709538?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/opr18/", "display_name": "opr18"}, "royho": {"avatar": "https://secure.gravatar.com/avatar/1beda14f19fa93030ba2c66359dc270286820af6c667cdfeb4e87833c747f3a0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/royho/", "display_name": "royho"}, "nerrad": {"avatar": "https://secure.gravatar.com/avatar/1bd692736861bd20949789e4a3d922736480efcacb0e44041616c5a79eaa54c0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nerrad/", "display_name": "Darren Ethier (nerrad)"}, "ryelle": {"avatar": "https://secure.gravatar.com/avatar/6d860975d8bd4b166268bba8da8c1ea0e861a7d7f4ef0aee52fa727fc69e12b2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ryelle/", "display_name": "Kelly Choyce-Dwan"}, "albarin": {"avatar": "https://secure.gravatar.com/avatar/0dd150b60949026a3c34f49d40089e3a8cf97dc331e2f5b27e805ffd34648e22?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/albarin/", "display_name": "albarin"}, "aljullu": {"avatar": "https://secure.gravatar.com/avatar/784f29a6d06799d1d40adc32b115da932cd1ee2b22d91cd8597e9fe6e4ee1420?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aljullu/", "display_name": "Albert Juhé Lluveras"}, "gigitux": {"avatar": "https://secure.gravatar.com/avatar/2dcd003f15403180364c56b093b48e6edca9a88c8f1470b965b87fc230c66d7f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/gigitux/", "display_name": "Luigi Teschio"}, "haszari": {"avatar": "https://secure.gravatar.com/avatar/5478c55437f47714a4dae1016cf521e803dfc4633ce5781b2f24d749d1623f69?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/haszari/", "display_name": "Rua Haszard"}, "vedjain": {"avatar": "https://secure.gravatar.com/avatar/eb19da24784b2f86d310a213b60c903b0a5464a6c725cf5fcabfd274383337c4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/vedjain/", "display_name": "Vedanshu - a11n"}, "jamosova": {"avatar": "https://secure.gravatar.com/avatar/73f150b0172cbb319293e372b3b20f4b78f0d5fbe70558318f69aad70908e95a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jamosova/", "display_name": "Julia Amosova"}, "sadowski": {"avatar": "https://secure.gravatar.com/avatar/cee318a6ec06e747df7f70f274da4e0cf4adba60c59e12d660d0f5a6ba78658a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sadowski/", "display_name": "sadowski"}, "wpmuguru": {"avatar": "https://secure.gravatar.com/avatar/23afb25faac780cb6ec9533b2ac9e5daedf7a1faf444b41db471b9529701f87e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpmuguru/", "display_name": "Ron Rennick"}, "konamiman": {"avatar": "https://secure.gravatar.com/avatar/ee97f225bf5be24cd3c3b04990b9fc3dfc67a2c9aaea418ec2bdd32e164ed9b1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/konamiman/", "display_name": "Néstor Soriano Vilchez"}, "neosinner": {"avatar": "https://secure.gravatar.com/avatar/68b52d53a3c6dd39841f697853a1965057c6f3aeb9e89f7d960d1921ffa90d29?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/neosinner/", "display_name": "Ján Mikláš"}, "ralucastn": {"avatar": "https://secure.gravatar.com/avatar/e65d79886499f47ee368495f5016117deef427d5abca9d3ed76c4bfaa42e7c0a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ralucastn/", "display_name": "Raluca"}, "saadtarhi": {"avatar": "https://secure.gravatar.com/avatar/f4fd0df69b8c7bf3a3e6526df3b42c3854de544904ef825bfd549afc9829f645?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/saadtarhi/", "display_name": "Saad T."}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "dinhtungdu": {"avatar": "https://secure.gravatar.com/avatar/07e79c32b1abba868f8c5e3ee0c85b9150c74e2c2a946088a268e6be486d9114?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dinhtungdu/", "display_name": "Tung Du"}, "imanish003": {"avatar": "https://secure.gravatar.com/avatar/59ff646ede2dd6475f24762ac21ee2afd7d72fdcade7b9d2915cf1c3c2d984a2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/imanish003/", "display_name": "Manish Menaria"}, "joshuawold": {"avatar": "https://secure.gravatar.com/avatar/f98224d78e12fcc0e9686dbf15f8c37b1967835212f25a92fceb6caafdc5b08d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/joshuawold/", "display_name": "Joshua Wold"}, "leifsinger": {"avatar": "https://secure.gravatar.com/avatar/8107603a6bbc5ff73e07e2450f260335af41a5adb2cccd80cba20cdd28b96651?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/leifsinger/", "display_name": "Leif Singer"}, "levinmedia": {"avatar": "https://secure.gravatar.com/avatar/657d301b3683f02c75e4b2363681518e94485770056cc51526f19818884ba6aa?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/levinmedia/", "display_name": "levinmedia"}, "mikejolley": {"avatar": "https://secure.gravatar.com/avatar/8295774fc174b6a5b9bd960709949f4de88cd0b8708d711dc5b6676693d41432?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mikejolley/", "display_name": "Mike Jolley"}, "mppfeiffer": {"avatar": "https://secure.gravatar.com/avatar/0fe64f1ef1e4abe1825653bcb17113a4a14c755f5b6f77d2f27494fe349d7081?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mppfeiffer/", "display_name": "Michael P. Pfeiffer"}, "nielslange": {"avatar": "https://secure.gravatar.com/avatar/0894ec0d7e5d70306a16431b36249b1928cad88a572de9b5211a54d75ad5d77a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nielslange/", "display_name": "Niels Lange"}, "jameskoster": {"avatar": "https://secure.gravatar.com/avatar/94b5473c03a46cb204f0a868dfe65f8199ef483242814ec1bcaf6770ba90d203?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jameskoster/", "display_name": "James Koster"}, "samueljseay": {"avatar": "https://secure.gravatar.com/avatar/4c4a5e8fd5b99749ed9ac735c31d0370254356e40feea46bcf51b2b607f8ab0e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/samueljseay/", "display_name": "Sam"}, "tjcafferkey": {"avatar": "https://secure.gravatar.com/avatar/23d134901eef453e721759c9d84810f5748a84fc8681ed230c7d78e53583c77a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tjcafferkey/", "display_name": "tjcafferkey"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}, "alexflorisca": {"avatar": "https://secure.gravatar.com/avatar/b68615471f527e6224909ce0726dda68b074e6cbcf89e0d4b5ecc483a96557ca?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alexflorisca/", "display_name": "Alex Florisca"}, "claudiulodro": {"avatar": "https://secure.gravatar.com/avatar/34a74527d3859bd9fb0b477cd80c9f78b3610259a251c32a31023ead285ac124?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/claudiulodro/", "display_name": "Claudiu Lodromanean"}, "coreymckrill": {"avatar": "https://secure.gravatar.com/avatar/9cc64cf0f650f165ac55f1294105259f82f2b72c4c24903a79af6d6cd1ad2a9a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/coreymckrill/", "display_name": "Corey McKrill"}, "danieldudzic": {"avatar": "https://secure.gravatar.com/avatar/b689767c4b308b8f5910cef3a2f44c2acdadcb3b63326b0d5c865d2c208c668e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/danieldudzic/", "display_name": "danieldudzic"}, "jorgeatorres": {"avatar": "https://secure.gravatar.com/avatar/33d6a063c7411775135383c5bae6cd4e45d094b72ec062c96ceafca5e2a4956f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jorgeatorres/", "display_name": "Jorge A. Torres"}, "karolmanijak": {"avatar": "https://secure.gravatar.com/avatar/42305d7047ca11d494b1912d687266a50edd05954fdec22e61ab1fe63cf2df6b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/karolmanijak/", "display_name": "Karol Manijak"}, "pauloarromba": {"avatar": "https://secure.gravatar.com/avatar/ab6034aa12c0e53f21978df9e470f161f06810d814082cbe3ab74450f0618818?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pauloarromba/", "display_name": "Paulo Arromba"}, "tarunvijwani": {"avatar": "https://secure.gravatar.com/avatar/fa4a4b2688afb8d238bb035f31fda4d07dabd67ccf41576276e5eb084463d617?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tarunvijwani/", "display_name": "tarunvijwani"}, "tiagonoronha": {"avatar": "https://secure.gravatar.com/avatar/0352cd451932c8a2ab15b8457933e6d90cc919bbf23db63e3bc35ee41d56577e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tiagonoronha/", "display_name": "Tiago Noronha"}, "alexandrelara": {"avatar": "https://secure.gravatar.com/avatar/1c0c71a072f798066e4661395461e73e0fb6692eaddcced2a0e457ef01a458e8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alexandrelara/", "display_name": "Alexandre Lara"}, "assassinateur": {"avatar": "https://secure.gravatar.com/avatar/00ec8d736cf51890768bcfd3614fc7eea91eec753262bc37cea7c8e988d4d3a3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/assassinateur/", "display_name": "Nadir Seghir"}, "barryhughes-1": {"avatar": "https://secure.gravatar.com/avatar/6ce0f4afb77f8d32da9c43e9a39c84fcfb3ed0e9cac24f440c46a151946cdec8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/barryhughes-1/", "display_name": "Barry"}, "danielwrobert": {"avatar": "https://secure.gravatar.com/avatar/f1f823ffbe2a6adb7f94c6998079fd6ae6636d3b6272dd8c54385783360e2cf8?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/danielwrobert/", "display_name": "danielwrobert"}, "rodrigosprimo": {"avatar": "https://secure.gravatar.com/avatar/1dc85457417601db220b14e7fa96c842700fbd1cceecd21d65306c26fffb92cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/rodrigosprimo/", "display_name": "Rodrigo Primo"}, "sunyatasattva": {"avatar": "https://secure.gravatar.com/avatar/73ce316f9775441698b601e6902728a80837f7fd6df0846e3c5a82448dce447c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/sunyatasattva/", "display_name": "sunyatasattva (a11n)"}, "claudiosanches": {"avatar": "https://secure.gravatar.com/avatar/ac91c7d73bb4501567ab3790755bf001d53dac8d1f4311a2480a5fb62dfb180c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/claudiosanches/", "display_name": "Claudio Sanches"}, "peterfabian1000": {"avatar": "https://secure.gravatar.com/avatar/c25372df076206b9fe44dddd7ec6af6ba427d3fe2a457fa301fcb9cf90b23ddd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/peterfabian1000/", "display_name": "Peter Fabian"}, "obliviousharmony": {"avatar": "https://secure.gravatar.com/avatar/67851e0deeb2c6a7a4c238cf45c0e9694a919e2c5e02706c5852e67c4ad279c9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/obliviousharmony/", "display_name": "obliviousharmony"}, "patriciahillebrandt": {"avatar": "https://secure.gravatar.com/avatar/13f5707fad9a68e5cf9c3c0ebb9c7179c862dcb279c761d20c9b40bd2fff9f4a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/patriciahillebrandt/", "display_name": "patriciahillebrandt"}}, "last_updated": "2025-10-24 2:59pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/woocommerce.10.3.3.zip", "author_profile": "https://profiles.wordpress.org/automattic/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 7000000, "aspiresync_meta": {"id": "019a30bf-fcd1-719e-ba07-8e1385d33996", "name": "WooCommerce", "slug": "woocommerce", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761317940, "version": "10.3.3"}, "support_threads": 513, "requires_plugins": [], "short_description": "Everything you need to launch an online store in days and keep it growing for years. From your first sale to millions in revenue, Woo is with you.", "author_block_count": "6", "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 448}'); -INSERT INTO public.plugins VALUES ('019a30c1-6798-722f-b43d-16b522f62701', 'woocommerce-gateway-stripe', 'WooCommerce Stripe Payment Gateway', 'Accept debit and credit cards in 135+ currencies, many local methods like Alipay, ACH, and SEPA, and express checkout with Apple Pay and Google Pay.', '

    Changing consumer behavior has resulted in an explosion of payment methods and experiences, which are great for increasing conversion and lowering costs—but can be difficult for businesses to maintain. Give customers a best-in-class checkout experience while you remain focused on your core business. This is the official plugin created by Stripe and WooCommerce.

    -

    Drive 11.9% in revenue with an optimized checkout experience from Stripe

    -

    The enhanced checkout experience from Stripe can help customers:

    -
      -
    • Boost conversion: Provide an optimal experience across mobile, tablet, and desktop with a responsive checkout, and offer 23 payment methods, including Link, Apple Pay, and Google Pay, out of the box.
    • -
    • Expand your customer base: Convert customers who might otherwise abandon their cart with buy now, pay later methods like Klarna, Affirm, and Afterpay/Clearpay, wallets like Apple Pay, Google Pay, Alipay, and WeChat Pay, and local payment methods such as Bancontact in Europe and Alipay in Asia Pacific. Deliver a localized payment experience with out-of-the-box support for localized error messages, right-to-left languages, and automatic adjustment of input fields based on payment method and country.
    • -
    • Meet existing customer demand and localize the experience: Offer local payment methods, such as ACH Direct Debit, Bacs Direct Debit, Bancontact, BECS Direct Debit, BLIK, Boleto, Cash App Pay, EPS, iDEAL, Multibanco, OXXO, Pre-authorized debit payments, Przelewy 24, and SEPA Direct Debit.
    • -
    • Fight fraud: Detect and prevent fraud with Stripe Radar, which offers seamlessly integrated, powerful fraud-detection tools that use machine learning to detect and flag potentially fraudulent transactions.
    • -
    • Accept in-person payments for products and services: Use the Stripe Terminal M2 card reader or get started with no additional hardware using Tap to Pay on iPhone, or Tap to Pay on Android.
    • -
    • Support subscriptions: Support recurring payments with various payment methods via WooCommerce Subscriptions.
    • -
    • Manage cash flow: Get paid within minutes with Stripe Instant Payouts, if eligible.
    • -
    • Achieve PCI-DSS compliance with Stripe Elements hosted input fields.
    • -
    • Support Strong Customer Authentication (SCA).
    • -
    -

    Stripe is available for store owners and merchants in 46 countries worldwide, with more to come.

    -', '10.0.1', 'WooCommerce', '6.6', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.10.0.1.zip', '2016-05-25 00:00:00+00', '2025-10-15 14:47:00+00', 'https://profiles.wordpress.org/woocommerce/', 60, 216, 75, 60, 700000, 44088801, 'https://wordpress.org/plugins/woocommerce-gateway-stripe/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/woocommerce-gateway-stripe/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WooCommerce Stripe Payment Gateway", "slug": "woocommerce-gateway-stripe", "tags": {"woo": "woo", "stripe": "stripe", "payments": "payments", "credit-card": "credit card", "woocommerce": "woocommerce"}, "added": "2016-05-25", "icons": {"1x": "https://ps.w.org/woocommerce-gateway-stripe/assets/icon-128x128.png?rev=3177277", "2x": "https://ps.w.org/woocommerce-gateway-stripe/assets/icon-256x256.png?rev=3177277"}, "author": "WooCommerce", "rating": 60, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/woocommerce-gateway-stripe/assets/banner-772x250.png?rev=3234748", "high": "https://ps.w.org/woocommerce-gateway-stripe/assets/banner-1544x500.png?rev=3234748"}, "ratings": {"1": 87, "2": 13, "3": 12, "4": 12, "5": 92}, "version": "10.0.1", "homepage": "https://wordpress.org/plugins/woocommerce-gateway-stripe/", "requires": "6.6", "sections": {"faq": "\n
    \nIn which specific countries is Stripe available?\n\n

    \n

    Stripe is available in the following countries, with more to come:

    \n
      \n
    • Australia
    • \n
    • Austria
    • \n
    • Belgium
    • \n
    • Brazil
    • \n
    • Bulgaria
    • \n
    • Canada
    • \n
    • Croatia
    • \n
    • Cyprus
    • \n
    • Czech Republic
    • \n
    • Denmark
    • \n
    • Estonia
    • \n
    • Finland
    • \n
    • France
    • \n
    • Germany
    • \n
    • Gibraltar
    • \n
    • Greece
    • \n
    • Hong Kong
    • \n
    • Hungary
    • \n
    • India
    • \n
    • Ireland
    • \n
    • Italy
    • \n
    • Japan
    • \n
    • Latvia
    • \n
    • Liechtenstein
    • \n
    • Lithuania
    • \n
    • Luxembourg
    • \n
    • Malaysia
    • \n
    • Malta
    • \n
    • Mexico
    • \n
    • Netherlands
    • \n
    • New Zealand
    • \n
    • Norway
    • \n
    • Poland
    • \n
    • Portugal
    • \n
    • Romania
    • \n
    • Singapore
    • \n
    • Slovakia
    • \n
    • Slovenia
    • \n
    • Spain
    • \n
    • Sweden
    • \n
    • Switzerland
    • \n
    • Thailand
    • \n
    • United Arab Emirates
    • \n
    • United Kingdom
    • \n
    • United States
    • \n
    \n

    \n
    \nDoes this require an SSL certificate?\n\n

    \n

    Yes. In Live Mode, an SSL certificate must be installed on your site to use Stripe. In addition to SSL encryption, Stripe provides an extra JavaScript method to secure card data using Stripe Elements.

    \n

    \n
    \nDoes this support both production mode and sandbox mode for testing?\n\n

    \n

    Yes, it does. Both production and test (sandbox) modes are driven by the API keys you use with a checkbox in the admin settings to toggle between both.

    \n

    \n
    \nWhere can I find documentation?\n\n

    \n

    Refer to the Stripe WooCommerce Extension documentation for more information, including how to set up and configure the extension.

    \n

    \n
    \nWhere can I get support or talk to other users?\n\n

    \n

    If you get stuck, you can ask for help in the Plugin Forum.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fiona92 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Awesome support team! Super quick, really friendly, and they didn’t just stop at the basics — they went out of their way to help me figure out an issue that wasn’t even with their plugin. Couldn’t ask for better service!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very helpful from the Support team

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sudhev on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Had a very concerning doubt about the recent update of the plugin and the team really cleared my questions and was very helpful with every step. Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin and great support !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sielwolf on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The plugin is very functional, always up to date and always supported in case of issues. I recommend it!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Save and Stable Integration

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Alex (alexanderkoch096) on September 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The WooCommerce Stripe Payment Gateway is easy to setup and works perfectly. NO issues perceived. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy oranto on August 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent!

    \n\n\n\n

    I had an issue with the checkout fields on my website. It was creating a conflict that made the user experience so difficult when making a purchase that they were leaving the page without completing it. Since I shared my issue on the forum, I received fantastic support. The excellent team was able to resolve my issue in record time. Thank you all!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Needs to include payment method id for block checkout but its missing there.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy awaisaezad on July 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Needs to include payment method id for block checkout but its missing there.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    OK

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jlc1964 on July 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Breaks down every other month

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Diana van de Laarschot (anaid) on July 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I don''t know how many times I''ve spent my afternoon reinstalling and reconfiguring this plugin. It breaks all the time.. Nonce errors, billing_address missing errors (the address is there, in plain sight), and other random errors just keep popping up. I don''t want to have to sign in to my own website every day and do a test run of the payment flow, just to make sure that it still works...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Slowed site down to a crawl

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy xunnamius on July 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Similar to what has been reported by other users in other threads:

    \n\n\n\n

    After upgrading this plugin a couple weeks ago, random page loads both admin and front end took >30 seconds to load (30 seconds is the max time limit for a single script on my systems). As with other frustrated reviewers of this plugin, I deactivated every plugin until I narrowed the misbehavior to this plugin.

    \n\n\n\n

    Unacceptable.

    \n\n\n\n

    Does this have to do with the \"legacy checkout experience\" being removed, and there being some sort of steps that need to be taken to upgrade to the new version that are not being communicated by the plugin?

    \n\n\n\n

    I can provide debugging information if necessary. It seems another plugin, \"PixelYourSite\", is causing the same sorts of slowdowns as this plugin. Whatever these plugins are doing in common is likely the source of the issue.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ho dovuto togliere l'aggiornamento

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Francesco Ciani (naturopata) on May 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ho dovuto togliere l’aggiornamento, e ripristinare il backup fatto pochi minuti prima, perché non mi faceva più accedere a Stripe con lo stesso account, e non cera modo di farlo funzionare,

    \n\n\n\n

    sono tornato al penultimo Plugin, ed ora tutto è tornato perfetto!

    \n\n\n\n

    Meglio aspettare la prossima volta e leggere anche le recensioni

    \n\n\n\n

    Francesco Ciani

    \n\n\n\n

    <font _mstmutation=\"1\"></font>

    \n
    \n
    \n", "changelog": "

    10.0.1 – 2025-10-15

    \n
      \n
    • Fix – Remove persistent reconnection notices
    • \n
    \n

    10.0.0 – 2025-10-14

    \n

    New Features

    \n
      \n
    • Add – Allow the purchase of free trials using the Express Payment methods when the product does not require shipping
    • \n
    • Update – Splits the “Enable SEPA for other methods” setting into two separate settings for Bancontact and iDEAL
    • \n
    \n

    Important Fixes and Updates

    \n
      \n
    • Update – Removing the wc_stripe_is_upe_checkout_enabled filter, as Legacy Checkout is no longer supported
    • \n
    • Update – Disable Payment Request Buttons and ensure Express Checkout is used when express checkout buttons are enabled
    • \n
    • Add – Introduce wc_stripe_preselect_payment_method_configuration filter for manual payment method configuration selection
    • \n
    • Update – Removes frontend code related to Payment Request Buttons in the checkout page
    • \n
    • Fix – Ensure Klarna payment tokens can be deleted and handled correctly
    • \n
    • Fix – Prevent fatal error when third-party plugins check for non-existent methods in payment method classes
    • \n
    • Add – Implement cache prefetch for payment method configuration
    • \n
    • Update – Shows the Stripe account connection modal in settings when the merchant did not connect via OAuth along with a new notice
    • \n
    • Update – The usage of SEPA Direct Debit as a saved payment method for iDEAL and Bancontact is now disabled by default
    • \n
    • Update – Reduce settings Javascript file size by using smaller image
    • \n
    \n

    Other Fixes

    \n
      \n
    • Fix – Minor fixes and code improvements for the saved payment methods comparison logic
    • \n
    • Update – Changes the documentation page URL for the Optimized Checkout feature to https://woocommerce.com/document/stripe/admin-experience/optimized-checkout-suite/
    • \n
    • Update – Changes the background color and spacing for the Woo logo shown in the account modal
    • \n
    \n

    Internal Changes and Upcoming Features

    \n
      \n
    • Tweak – Update PMC cache expiration time from 10 minutes to 20 minutes
    • \n
    • Dev – Expands the Stripe Order Helper class to handle source ID, refund ID, intent ID, and setup intent ID metas
    • \n
    • Dev – Upgrades jest to version 29.7.0, @wordpress/scripts to 26.19.0, and adds axios(version 1.12.2) to the JavaScript development dependencies
    • \n
    • Dev – Introduces a new helper class to handle Stripe orders
    • \n
    • Dev – Fixes a warning thrown when running Klarna payment token PHP Unit tests
    • \n
    • Dev – Fixes some possible warnings shown in the browser console when the Optimized Checkout payment element is instantiated with invalid parameters
    • \n
    • Dev – Renaming the Klarna payment token class to WC_Stripe_Klarna_Payment_Token
    • \n
    • Dev – Upgrades Node to v20
    • \n
    • Dev – Fix live reload issue with Webpack 5
    • \n
    • Dev – Upgrades the Webpack-related packages
    • \n
    • Dev – Upgrade the cross-env and rimraf NPM packages; remove chromedriver NPM dependency
    • \n
    • Dev – Removes three unused NPM script commands: test, test:grep, and test:single
    • \n
    • Dev – Upgrades the Babel-related packages
    • \n
    • Dev – Consolidate component used for unavailable payment methods
    • \n
    • Dev – Update webhook unit tests to be compatible with WooCommerce 10.2
    • \n
    • Dev – Update the @woocommerce/navigation dependency
    • \n
    • Dev – Update @wordpress/scripts to 30.24.0 and @wordpress/base-styles to 6.7.0
    • \n
    \n

    See changelog for full details across versions.

    \n", "description": "

    Changing consumer behavior has resulted in an explosion of payment methods and experiences, which are great for increasing conversion and lowering costs—but can be difficult for businesses to maintain. Give customers a best-in-class checkout experience while you remain focused on your core business. This is the official plugin created by Stripe and WooCommerce.

    \n

    Drive 11.9% in revenue with an optimized checkout experience from Stripe

    \n

    The enhanced checkout experience from Stripe can help customers:

    \n
      \n
    • Boost conversion: Provide an optimal experience across mobile, tablet, and desktop with a responsive checkout, and offer 23 payment methods, including Link, Apple Pay, and Google Pay, out of the box.
    • \n
    • Expand your customer base: Convert customers who might otherwise abandon their cart with buy now, pay later methods like Klarna, Affirm, and Afterpay/Clearpay, wallets like Apple Pay, Google Pay, Alipay, and WeChat Pay, and local payment methods such as Bancontact in Europe and Alipay in Asia Pacific. Deliver a localized payment experience with out-of-the-box support for localized error messages, right-to-left languages, and automatic adjustment of input fields based on payment method and country.
    • \n
    • Meet existing customer demand and localize the experience: Offer local payment methods, such as ACH Direct Debit, Bacs Direct Debit, Bancontact, BECS Direct Debit, BLIK, Boleto, Cash App Pay, EPS, iDEAL, Multibanco, OXXO, Pre-authorized debit payments, Przelewy 24, and SEPA Direct Debit.
    • \n
    • Fight fraud: Detect and prevent fraud with Stripe Radar, which offers seamlessly integrated, powerful fraud-detection tools that use machine learning to detect and flag potentially fraudulent transactions.
    • \n
    • Accept in-person payments for products and services: Use the Stripe Terminal M2 card reader or get started with no additional hardware using Tap to Pay on iPhone, or Tap to Pay on Android.
    • \n
    • Support subscriptions: Support recurring payments with various payment methods via WooCommerce Subscriptions.
    • \n
    • Manage cash flow: Get paid within minutes with Stripe Instant Payouts, if eligible.
    • \n
    • Achieve PCI-DSS compliance with Stripe Elements hosted input fields.
    • \n
    • Support Strong Customer Authentication (SCA).
    • \n
    \n

    Stripe is available for store owners and merchants in 46 countries worldwide, with more to come.

    \n", "screenshots": "
    1. \"With

      With the enhanced checkout from Stripe, you can surface 23 payment methods including buy now, pay later methods; and Link, an accelerated checkout experience.

    2. \"Link

      Link autofills your customers’ payment information to create an easy and secure checkout experience.

    3. \"Convert

      Convert customers who would usually abandon their cart and increase average order value with buy now, pay later options like Klarna, Afterpay, and Affirm. Accept credit and debit card payments from Visa, Mastercard, American Express, Discover, and Diners.

    4. \"Stripe

      Stripe Radar offers seamlessly integrated, powerful fraud-detection tools that use machine learning to detect and flag potentially fraudulent transactions.

    5. \"Accept

      Accept in-person payments for products and services using the Stripe Terminal M2 card reader.

    6. \"Get

      Get started with no additional hardware using Tap to Pay on iPhone, or Tap to Pay on Android.

    "}, "versions": {"3.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.0.7.zip", "3.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.1.9.zip", "3.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.3.2.3.zip", "4.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.0.7.zip", "4.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.8.zip", "4.1.9": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.9.zip", "4.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.2.5.zip", "4.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.3.3.zip", "4.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.4.0.zip", "4.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.5.zip", "4.5.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.5.6.zip", "4.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.6.1.zip", "4.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.7.1.zip", "4.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.8.1.zip", "4.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.9.1.zip", "5.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.0.1.zip", "5.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.1.1.zip", "5.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.2.4.zip", "5.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.3.1.zip", "5.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.4.0.zip", "5.4.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.4.2.zip", "5.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.5.2.zip", "5.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.6.0.zip", "5.6.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.6.1.zip", "5.6.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.6.2.zip", "5.6.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.6.3.zip", "5.6.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.6.4.zip", "5.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.7.1.zip", "5.7.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.7.2.zip", "5.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.8.2.zip", "5.8.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.8.3.zip", "5.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.5.9.2.zip", "6.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.0.2.zip", "6.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.1.2.zip", "6.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.2.2.zip", "6.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.3.3.zip", "6.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.2.zip", "6.4.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.3.zip", "6.4.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.4.zip", "6.4.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.5.zip", "6.4.6": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.4.6.zip", "6.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.5.1.zip", "6.5.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.5.2.zip", "6.5.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.5.3.zip", "6.5.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.5.4.zip", "6.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.6.1.zip", "6.6.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.6.2.zip", "6.6.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.6.3.zip", "6.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.7.0.zip", "6.7.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.7.1.zip", "6.7.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.7.2.zip", "6.7.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.7.3.zip", "6.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.8.0.zip", "6.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.8.1.zip", "6.8.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.8.2.zip", "6.8.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.8.3.zip", "6.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.9.2.zip", "6.9.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.6.9.3.zip", "7.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.0.zip", "7.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.2.zip", "7.0.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.3.zip", "7.0.4": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.4.zip", "7.0.5": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.0.5.zip", "7.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.1.0.zip", "7.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.1.1.zip", "7.1.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.1.2.zip", "7.1.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.1.3.zip", "7.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.2.0.zip", "7.2.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.2.1.zip", "7.2.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.2.2.zip", "7.2.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.2.3.zip", "7.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.3.0.zip", "7.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.3.1.zip", "7.3.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.3.2.zip", "7.3.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.3.3.zip", "7.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.4.1.zip", "7.4.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.4.2.zip", "7.4.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.4.3.zip", "7.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.5.0.zip", "7.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.5.1.zip", "7.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.6.0.zip", "7.6.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.6.1.zip", "7.6.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.6.2.zip", "7.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.7.0.zip", "7.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.8.0.zip", "7.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.8.1.zip", "7.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.9.1.zip", "7.9.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.9.2.zip", "7.9.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.7.9.3.zip", "8.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.0.1.zip", "8.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.1.0.zip", "8.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.1.1.zip", "8.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.2.0.zip", "8.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.3.0.zip", "8.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.3.1.zip", "8.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.4.0.zip", "8.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.5.0.zip", "8.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.5.1.zip", "8.5.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.5.2.zip", "8.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.6.0.zip", "8.6.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.6.1.zip", "8.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.7.0.zip", "8.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.8.0.zip", "8.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.8.1.zip", "8.8.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.8.2.zip", "8.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.8.9.0.zip", "9.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.0.0.zip", "9.1.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.1.0.zip", "9.1.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.1.1.zip", "9.2.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.2.0.zip", "9.3.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.3.0.zip", "9.3.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.3.1.zip", "9.3.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.3.2.zip", "9.4.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.4.0.zip", "9.4.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.4.1.zip", "9.5.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.5.0.zip", "9.5.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.5.1.zip", "9.5.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.5.2.zip", "9.5.3": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.5.3.zip", "9.6.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.6.0.zip", "9.7.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.7.0.zip", "9.7.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.7.1.zip", "9.8.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.8.0.zip", "9.8.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.8.1.zip", "9.9.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.9.0.zip", "9.9.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.9.1.zip", "9.9.2": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.9.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.zip", "10.0.0": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.10.0.0.zip", "10.0.1": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.10.0.1.zip", "4.1.10": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.10.zip", "4.1.11": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.11.zip", "4.1.12": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.12.zip", "4.1.13": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.13.zip", "4.1.14": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.14.zip", "4.1.15": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.15.zip", "4.1.16": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.16.zip"}, "downloaded": 44088801, "description": "

    Changing consumer behavior has resulted in an explosion of payment methods and experiences, which are great for increasing conversion and lowering costs—but can be difficult for businesses to maintain. Give customers a best-in-class checkout experience while you remain focused on your core business. This is the official plugin created by Stripe and WooCommerce.

    \n

    Drive 11.9% in revenue with an optimized checkout experience from Stripe

    \n

    The enhanced checkout experience from Stripe can help customers:

    \n
      \n
    • Boost conversion: Provide an optimal experience across mobile, tablet, and desktop with a responsive checkout, and offer 23 payment methods, including Link, Apple Pay, and Google Pay, out of the box.
    • \n
    • Expand your customer base: Convert customers who might otherwise abandon their cart with buy now, pay later methods like Klarna, Affirm, and Afterpay/Clearpay, wallets like Apple Pay, Google Pay, Alipay, and WeChat Pay, and local payment methods such as Bancontact in Europe and Alipay in Asia Pacific. Deliver a localized payment experience with out-of-the-box support for localized error messages, right-to-left languages, and automatic adjustment of input fields based on payment method and country.
    • \n
    • Meet existing customer demand and localize the experience: Offer local payment methods, such as ACH Direct Debit, Bacs Direct Debit, Bancontact, BECS Direct Debit, BLIK, Boleto, Cash App Pay, EPS, iDEAL, Multibanco, OXXO, Pre-authorized debit payments, Przelewy 24, and SEPA Direct Debit.
    • \n
    • Fight fraud: Detect and prevent fraud with Stripe Radar, which offers seamlessly integrated, powerful fraud-detection tools that use machine learning to detect and flag potentially fraudulent transactions.
    • \n
    • Accept in-person payments for products and services: Use the Stripe Terminal M2 card reader or get started with no additional hardware using Tap to Pay on iPhone, or Tap to Pay on Android.
    • \n
    • Support subscriptions: Support recurring payments with various payment methods via WooCommerce Subscriptions.
    • \n
    • Manage cash flow: Get paid within minutes with Stripe Instant Payouts, if eligible.
    • \n
    • Achieve PCI-DSS compliance with Stripe Elements hosted input fields.
    • \n
    • Support Strong Customer Authentication (SCA).
    • \n
    \n

    Stripe is available for store owners and merchants in 46 countries worldwide, with more to come.

    \n", "donate_link": "", "num_ratings": 216, "screenshots": {"1": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-1.png?rev=3177277", "caption": "With the enhanced checkout from Stripe, you can surface 23 payment methods including buy now, pay later methods; and Link, an accelerated checkout experience."}, "2": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-2.png?rev=3177277", "caption": "Link autofills your customers’ payment information to create an easy and secure checkout experience."}, "3": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-3.png?rev=3177277", "caption": "Convert customers who would usually abandon their cart and increase average order value with buy now, pay later options like Klarna, Afterpay, and Affirm. Accept credit and debit card payments from Visa, Mastercard, American Express, Discover, and Diners."}, "4": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-4.png?rev=3177277", "caption": "Stripe Radar offers seamlessly integrated, powerful fraud-detection tools that use machine learning to detect and flag potentially fraudulent transactions."}, "5": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-5.png?rev=3177279", "caption": "Accept in-person payments for products and services using the Stripe Terminal M2 card reader."}, "6": {"src": "https://ps.w.org/woocommerce-gateway-stripe/assets/screenshot-6.png?rev=3177279", "caption": "Get started with no additional hardware using Tap to Pay on iPhone, or Tap to Pay on Android."}}, "support_url": "https://wordpress.org/support/plugin/woocommerce-gateway-stripe/", "contributors": {"bor0": {"avatar": "https://secure.gravatar.com/avatar/787d8ea71701ced680cd80411d656c20e0e600be5d34f6ce3478143d43dc9fd9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bor0/", "display_name": "Boro Sitnikovski"}, "akeda": {"avatar": "https://secure.gravatar.com/avatar/dc9dd485942002d2de369dee002498b5e0811eac2bcf727b8984fa89a99be43c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/akeda/", "display_name": "Akeda Bagus"}, "royho": {"avatar": "https://secure.gravatar.com/avatar/1beda14f19fa93030ba2c66359dc270286820af6c667cdfeb4e87833c747f3a0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/royho/", "display_name": "royho"}, "mattyza": {"avatar": "https://secure.gravatar.com/avatar/17db271e5eb58a7716724ad4e276ab333596e1d57018e44c4a6a1c71ef32c75a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mattyza/", "display_name": "Matt Cohen"}, "woothemes": {"avatar": "https://secure.gravatar.com/avatar/954fd30b03a485d54b947afb3a55c4ebd563e42e6634e2c07101771cfd61d7d1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woothemes/", "display_name": "WooThemes"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}}, "last_updated": "2025-10-15 2:47pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.10.0.1.zip", "author_profile": "https://profiles.wordpress.org/woocommerce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fcd7-71fd-8460-d565816055b4", "name": "WooCommerce Stripe Payment Gateway", "slug": "woocommerce-gateway-stripe", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1760539620, "version": "10.0.1"}, "support_threads": 75, "requires_plugins": ["woocommerce"], "short_description": "Accept debit and credit cards in 135+ currencies, many local methods like Alipay, ACH, and SEPA, and express checkout with Apple Pay and Google Pay.", "author_block_count": 0, "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 60}'); -INSERT INTO public.plugins VALUES ('019a30c1-67a4-72d0-8953-6e48c10b07d0', 'woocommerce-payments', 'WooPayments: Integrated WooCommerce Payments', 'Securely accept credit and debit cards on your WooCommerce store. Manage payments without leaving your WordPress dashboard. Only with WooPayments.', '

    Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores.

    -

    Securely accept major credit and debit cards, and allow customers to pay you directly without leaving your WooCommerce store. View and manage transactions from one convenient place – your WordPress dashboard.

    -

    See payments, track cash flow into your bank account, manage refunds, and stay on top of disputes without the hassle of having to log into a separate payment processor.

    -

    Manage transactions from the comfort of your store

    -

    Features previously only available on your payment provider’s website are now part of your store’s integrated payments dashboard. This enables you to:

    - -

    Pay as you go

    -

    WooPayments is free to install, with no setup fees or monthly fees. Our pay-as-you-go pricing model means we’re incentivized to help you succeed! Read more about transaction fees.

    -

    Supported by the WooCommerce team

    -

    Our global support team is available to answer questions you may have about WooPayments installation, setup, or use. For assistance, open a ticket on woocommerce.com.

    -

    Getting Started

    -

    Requirements

    -
      -
    • WordPress 6.0 or newer.
    • -
    • WooCommerce 7.6 or newer.
    • -
    • PHP 7.3 or newer.
    • -
    -

    Try it now

    -

    To try WooPayments (previously WooCommerce Payments) on your store, simply install it and follow the prompts. Please see our Startup Guide for a full walkthrough of the process.

    -', '10.1.1', 'WooCommerce', '6.0', '7.3', '6.8.3', 'https://downloads.wordpress.org/plugin/woocommerce-payments.10.1.1.zip', '2020-04-08 00:00:00+00', '2025-10-27 06:20:00+00', 'https://profiles.wordpress.org/woocommerce/', 60, 121, 22, 15, 900000, 38966728, 'https://woocommerce.com/payments/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/woocommerce-payments/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WooPayments: Integrated WooCommerce Payments", "slug": "woocommerce-payments", "tags": {"payment": "payment", "apple-pay": "apple pay", "google-pay": "google pay", "credit-card": "credit card", "woocommerce-payments": "woocommerce payments"}, "added": "2020-04-08", "icons": {"1x": "https://ps.w.org/woocommerce-payments/assets/icon-128x128.png?rev=3234740", "2x": "https://ps.w.org/woocommerce-payments/assets/icon-256x256.png?rev=3234740"}, "author": "WooCommerce", "rating": 60, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/woocommerce-payments/assets/banner-772x250.png?rev=3234740", "high": "https://ps.w.org/woocommerce-payments/assets/banner-1544x500.png?rev=3234740"}, "ratings": {"1": 55, "2": 5, "3": 3, "4": 3, "5": 55}, "version": "10.1.1", "homepage": "https://woocommerce.com/payments/", "requires": "6.0", "sections": {"faq": "\n
    \nWhat countries and currencies are supported?\n\n

    \n

    If you are an individual or business based in one of these countries, you can sign-up with WooPayments. After completing sign up, you can accept payments from customers anywhere in the world, as long as they are paying with a supported currency.

    \n

    We are actively planning to expand into additional countries based on your interest. Let us know where you would like to see WooPayments launch next.

    \n

    \n
    \nWhy is a WordPress.com account and connection required?\n\n

    \n

    WooPayments uses the WordPress.com connection to securely communicate with our payments server. This is necessary for WooPayments to function correctly, so it’s not possible to use WooPayments without connecting. Please see this document for more information.

    \n

    Note that you do not need to host your site itself on WordPress.com, nor do you need to host any site on WordPress.com at all. You only need an account.

    \n

    Note that you do not need to host your site itself on WordPress.com. You only need an account on WordPress.com to establish the connection. You can create a WordPress.com account at this link.

    \n

    \n
    \nHow do I set up a store for a client?\n\n

    \n

    If you are a developer or agency setting up a site for a client, please see this page of our documentation for some tips on how to install WooPayments on client sites.

    \n

    \n
    \nHow is WooPayments related to Stripe?\n\n

    \n

    WooPayments is built in partnership with Stripe Stripe. When you sign up for WooPayments, your personal and business information is verified with Stripe and stored in an account connected to the WooPayments service. This account is then used in the background for managing your business account information and activity via WooPayments. Learn more.

    \n

    \n
    \nAre there Terms of Service and data usage policies?\n\n

    \n

    You can read our Terms of Service and other policies here.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy monannivert on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Step by step we try to find a solution with the support, until it works ! Thank you !

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy to set up

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy katiekoteen (selmasuzanne) on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I added WooPayment to start selling a simple downloadable product on my site. It was easy to setup and included all of the express pay option I was looking for.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pronsias7 on July 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you to Jake who sorted my issue within a short time. I should have contacted sooner! I appreciate your efficient and helpful manner.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works as expected!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy morrisayoder on July 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you for WooPayments. It works great for us!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    layoutshifts and not following wordpress best practices

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mcdeth on July 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Quite not surprised, cna you name one not woocommerce page where you can see payment button sliding down on every page load? yeah me neither. but who cares in automatic

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    I love WooPayments!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy (SpiderSaid) on July 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using WooCommerce WooPayments for 10 months. It has been easy to use, very customizable for payout frequency/dates, and the fees are fine. Reports are easy to access and understand. Support is excellent.

    \n\n\n\n

    All together this has been a great solution for replacing PayPal. I have changed most of my WooCommerce PayPal websites to WooPayments.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Beware Poor Payouts

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy andyg20 on July 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We activated Woopayments on our site under the impression that we would have 7 days waiting period for the payments to be transferred to our account and then it would revert to every 3 days, as stated on the app page. After the 7 day waiting period it didn''t revert to the 3 day payment and when we contacted support we were informed that some sites have a longer timeframe to change the schedule, but couldn''t provide me with a timeframe!!

    \n\n\n\n

    It''s vitally important for any business to have a positive cashflow and to receive payments for goods or services in a timely manner, 7 days is ridiculous.

    \n\n\n\n

    We reverted back to Elavon, 24 hour payout and lower fees, shame on you Woopayments, pathetic!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A Powerful and Flexible E-Commerce Solution

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy lucybbn on June 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WooCommerce has been a game changer for my online store. It’s incredibly flexible, letting me customize every part of the shopping experience, from product pages to the checkout, without needing to dive into code. It works seamlessly with WordPress, and the wide range of extensions makes it easy to add new features as my business grows.

    \n\n\n\n

    What I really appreciate is how easy it is to use, even if you’re not a developer. The documentation is clear, and there’s a strong community ready to help. Whether you’re starting small or scaling up, WooCommerce gives you the tools and control to build the kind of store you want.

    \n\n\n\n

    I highly recommend it to anyone looking for a reliable and customizable ecommerce platform.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fees are extortionate and payouts are very slow.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy williamdavies33 on June 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Anyone wanting to ship internationally expect to pay over 5% of revenue just for a single transaction. Fee (5.5% + $0.34).

    \n\n\n\n

    The payout takes a week.

    \n\n\n\n

    Use something else if you care about your profit.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Helpful Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sunithak on May 30, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The problem has not been resolved they but quickly identified the root cause and guided me with clear next steps. Much appreciated!

    \n
    \n
    \n", "changelog": "

    10.1.1 – 2025-10-27

    \n
      \n
    • Fix – Overrides the core AbstractAutomatticAddressProvider‘s load_scripts method to only run if the core setting (woocommerce_address_autocomplete_enabled is enabled).
    • \n
    \n

    10.1.0 – 2025-10-15

    \n
      \n
    • Add – Disputes – Add a loading state to the “Challenge dispute” flow
    • \n
    • Add – Pre-fill product type in dispute evidence form based on order products.
    • \n
    • Fix – Add caching to address autocomplete token
    • \n
    • Fix – Fix edge case when shipping information is added by mistake for digital products.
    • \n
    • Fix – Fix _load_textdomain_just_in_time error when loading a non-existing payment method
    • \n
    • Fix – Handle dispute counts for menu items between live and test mode
    • \n
    • Fix – Single use coupons issues on WooPay.
    • \n
    • Fix – Use Woo custom cap pay_for_order for validating the owner of order
    • \n
    • Update – Show message about bundled subscriptions until 10.2.0.
    • \n
    • Dev – Comment: Skip SSL verification when running the PHP tests locally.
    • \n
    • Dev – Removed clear_cache method from the mutli-currency interface
    • \n
    \n

    10.0.0 – 2025-09-24

    \n
      \n
    • Add – Add new feature flag for the dynamic checkout place order button, and new option on payment settings.
    • \n
    • Add – New AccountDetails: Add feature flag, TypeScript definition, and basic component
    • \n
    • Fix – Do not ask for shipping info for digital products dispute.
    • \n
    • Fix – Fix Google/Apple Pay “State / County is required” error during checkout for Saudi Arabia
    • \n
    • Fix – Fix possible errors when WooPay is enabled while the store is in Coming Soon mode
    • \n
    • Fix – Name is required for the Affirm payment method.
    • \n
    • Update – Improve messaging around test accounts and development mode on the Payments Overview page.
    • \n
    • Update – Introduce account.deleted webhook processing for a smoother experience when an account is deleted from the Transact Platform.
    • \n
    • Dev – Bump WC tested up to version to 10.2.0
    • \n
    • Dev – Fix flaky E2E test in addSavedCard function
    • \n
    \n

    9.9.0 – 2025-09-03

    \n
      \n
    • Fix – Conditionally set Stripe Link wallet option based on payment method configuration
    • \n
    • Fix – fix: adding some missing i18n wrappers
    • \n
    • Fix – Fix checks for the billing details for the BNPL methods on the Pay for Order page.
    • \n
    • Fix – Fixed WooPay terms and conditions text for merchants using blocks checkout.
    • \n
    • Fix – Fix margins for phone number input and add styling to match other inputs
    • \n
    • Fix – Fix VAT setup modal for unsupported merchants
    • \n
    • Fix – Generate payment method details in WooPayments instead of Woo core, cache them for performance improvements.
    • \n
    • Fix – Ignore webhooks whenever the order key in their body does not match the local order.
    • \n
    • Fix – Show Activate payments notice in WooPayments Settings only for test accounts.
    • \n
    • Update – update: label text on the support phone number in test mode
    • \n
    • Update – update: settings page design audit.
    • \n
    • Update – Update WP components for development and tests.
    • \n
    • Update – Update “Finish setting up WooPayments” task to redirect to NOX flow.
    • \n
    • Dev – Fix E2E subcription shopper test failures because the core changes text from “Sign up now” to “Add to cart”
    • \n
    • Dev – Update JS packages mini-css-extract-plugin and shelljs
    • \n
    \n

    9.8.0 – 2025-08-13

    \n
      \n
    • Add – Add address autocomplete to Checkout
    • \n
    • Add – Add support for small screens on the evidence submission form.
    • \n
    • Fix – Fix customer details section when name and/or email are very big.
    • \n
    • Fix – Fix Google/Apple Pay “State / County is required” error during checkout for Croatia
    • \n
    • Fix – Fix the icon border of the Steps component for a dispute.
    • \n
    • Fix – Reset the enabled payment methods to default value on account reset.
    • \n
    • Fix – Suppress sending completed-renewal-order email after dispute resolution
    • \n
    • Update – As of this change, we stop bundling WordPress Components in favor of using the wp.components available in the WordPress installation.
    • \n
    • Update – Make onboading pages use the pw.components available in the WordPress installation.
    • \n
    • Update – Make the connect acctount components use the wp.components from the installation.
    • \n
    • Update – Make the KYC onboarding use the WP components available in the installation.
    • \n
    • Update – update: ensure Google Pay/Apple Pay can check out w/ LT addresses
    • \n
    • Update – update: fraud protection rules to use WP components bundled within the WP installation
    • \n
    • Update – Update documents page to use WP components available in the WordPress installation.
    • \n
    • Update – Update loan page to use the installation WordPress components.
    • \n
    • Update – Update the “Learn more about disputes” link in the confirmation screen of the disputes documentation.
    • \n
    • Dev – Fix: enhances the robustness of the selectPaymentMethod method in end-to-end tests
    • \n
    • Dev – Fix: Respond to a dispute e2e tests
    • \n
    • Dev – Fix: select payment method shopper util
    • \n
    • Dev – Removed all the Progressive Onboarding (PO) code.
    • \n
    • Dev – update: use React 18
    • \n
    • Dev – Update tested WooCommerce version to 10.1.0
    • \n
    \n

    9.7.0 – 2025-07-24

    \n
      \n
    • Add – Add a confirmation screen to the new flow for submitting dispute evidence.
    • \n
    • Add – Add Credit not processed logic for the new evidence submission form.
    • \n
    • Add – Add external help link to the recomended documents section.
    • \n
    • Add – Add logic for Duplicate chargeback reason for the new evidence submission form.
    • \n
    • Add – Add logic for subscription cancelled for the new evidence form.
    • \n
    • Add – Add new transaction type fee_refund
    • \n
    • Add – File name should show size the extension
    • \n
    • Add – New evidence flow for the “General” dispute type.
    • \n
    • Fix – Accept TAP_TO_PAY_DEVICE as a valid card reader model to consider a transaction as TTP.
    • \n
    • Fix – Adjusted deactivation modal behavior to correctly resize when its content updates.
    • \n
    • Fix – Change copy to avoid leaving words alone.
    • \n
    • Fix – Consolidate test account notices in one in the WooPayments Settings page.
    • \n
    • Fix – Enable WooPay Direct Checkout on mini-cart.
    • \n
    • Fix – Fix – Remove unwanted animations and improve styling consistency on dispute evidence pages.
    • \n
    • Fix – Fix: Allow multiple authorization cancellations on the same order.
    • \n
    • Fix – Fix: Google Pay 3D Secure authentication being bypassed due to redirect URL extraction issue
    • \n
    • Fix – fix: remove BNPLs from PMME when BNPL method is not active
    • \n
    • Fix – Fix: Spinner alignment issues in cart checkout button and checkout address form email field.
    • \n
    • Fix – Fix border color of some items.
    • \n
    • Fix – Fix copy for the documents section and fix the font size of the content inside the accordion on top.
    • \n
    • Fix – Fix filename issue on the new evidence submission form.
    • \n
    • Fix – Fix margin of the shipping details title on the evidence submission form.
    • \n
    • Fix – Fix order notes after subscriptions’ payment method gets changed.
    • \n
    • Fix – Fix spacings on the envidence submission form
    • \n
    • Fix – Fix vertical UI shift when uploading a file
    • \n
    • Fix – Fix WooPay button spinner on some themes.
    • \n
    • Fix – Improve the cover letter save behavior.
    • \n
    • Fix – Provide correct language code when requesting CSV exports in a region-specific language
    • \n
    • Fix – Remove unnecessary gap
    • \n
    • Fix – Step back should also scroll the page to the top
    • \n
    • Fix – Support numbers starting from 4, 7, 8 for Hong Kong phones.
    • \n
    • Update – Disallow challenging the Visa compliance disputes.
    • \n
    • Update – ensure payments and transactions pages uses wp components that come with the WP installation.
    • \n
    • Update – Improve multicurrency caching and use new API endpoint.
    • \n
    • Update – Make the card reaaders page use the wp.components available in the WordPress installation.
    • \n
    • Update – Redirect merchant to the dispute detail screen
    • \n
    • Update – Redirects to the dispute list after save.
    • \n
    • Update – Removes the feature flag for the new evidence submission form.
    • \n
    • Update – update: deactivation survey to use WP components bundled within the WP installation
    • \n
    • Update – update: ensure multi-currency settings page uses wp components that come with the WP installation; updated some styles to use WP components, rather than bespoke components;
    • \n
    • Update – update: ensure settings page uses wp components that come with the WP installation
    • \n
    • Update – update: multi-currency widget to use WP components bundled within the WP installation
    • \n
    • Update – update: order page assets with wp components
    • \n
    • Update – update: RedirectToTransactionDetails to use Gutenberg components that come with the WP installation
    • \n
    • Update – update: removed the payment gateways confirmation dialog
    • \n
    • Update – update: subscription-product-onboarding to use WP components bundled within the WP installation
    • \n
    • Update – update: TOS agreement dialog to use WP Components bundled within the WP installation
    • \n
    • Update – Update client to use NOX surfaces instead of MOX/Connect page wherever possible.
    • \n
    • Update – Update copy for disputes
    • \n
    • Update – Update Multi-currency settings to use wp.components available in the WordPress installation.
    • \n
    • Update – Update the payments overview page to use the components available in the WP installation.
    • \n
    • Update – Update the payout list and payout details pages to use the WP components available on the WP installation.
    • \n
    • Dev – Fix imports for the unbundled components.
    • \n
    • Dev – Prevent “Evidence saved” toast from appearing multiple times.
    • \n
    • Dev – Remove conversion to the server locale, as it is done on the server.
    • \n
    • Dev – Remove feature flag _wcpay_feature_documents
    • \n
    • Dev – Remove old evidence submission code
    • \n
    • Dev – update: ensure wp-components-wrapped has individually exported components
    • \n
    \n

    9.6.0 – 2025-07-02

    \n
      \n
    • Add – Add cover letter for the new evidence submission screen for Product Unacceptable chargeback reason
    • \n
    • Add – Added a URL parameter to allow merchants to access the VAT details modal.
    • \n
    • Add – Show an admin notice when bundled subscriptions are in use
    • \n
    • Fix – Add NO VAT description for Norway in tax descriptions
    • \n
    • Fix – fix: ensure Google Pay/Apple Pay postcode matching for shipping zones works even when the provided postcode is redacted.
    • \n
    • Fix – Fix a layout shift when uploading evidence for a dispute on the new challenge dispute screen
    • \n
    • Fix – Fix mobile version of the StepperPanel and make the top navigation clickable.
    • \n
    • Fix – Fix padding on the recommended document section
    • \n
    • Fix – Fix payment methods logos width calculation in block editor preview
    • \n
    • Fix – Fix preselected Payment Methods ignored during account creation via KYC session.
    • \n
    • Fix – Fix spacing on disputes expandable block
    • \n
    • Fix – Fix state for the cover letter.
    • \n
    • Fix – Fix the browser print preview page on the payouts page.
    • \n
    • Fix – Prevent double stock reduction after (3DS) authentication.
    • \n
    • Fix – Prevent fatal error on the Pay for Order page upon deleted orders.
    • \n
    • Update – Change the copy of the cover letter notice.
    • \n
    • Update – Clicking on the Next button scroll the page position to the top.
    • \n
    • Update – Evidence submission form for product not received
    • \n
    • Update – fix: update Google Pay/Apple Pay buttons compatibility when multi-currency functionality is disabled – they’ll no longer throw an exception for logged-out customers
    • \n
    • Update – Refine “Temporarily Suspended” language, statuses and tooltip copy
    • \n
    • Update – update: add wcpay_express_checkout_js_params filter for express checkout JS params.
    • \n
    • Update – Updates the recomended documents section for the new disputes experience
    • \n
    • Dev – Add missing arrow icons from the new evidence form
    • \n
    • Dev – Ensure the submitted state is working as expected
    • \n
    • Dev – Fix the regexp checking for the loading state of the checkout button to cover changes in latest WooCommerce.
    • \n
    • Dev – Remove CTA from the new evidence “Evidence saved!” toast.
    • \n
    • Dev – Revert @woocommerce/onboarding upgrade in PR 10840
    • \n
    • Dev – Update reviewers for dependabot
    • \n
    • Dev – Update tested WooCommerce version to 10.0.0
    • \n
    \n

    9.5.0 – 2025-06-11

    \n
      \n
    • Add – Add specific texts for collecting Norway and New Zealand tax data
    • \n
    • Add – Add specific texts for collecting Singapore tax data
    • \n
    • Add – Add tax to the fee breakdown on order notes
    • \n
    • Add – Enable Australian merchants to add tax details (ABN) for generating tax documents.
    • \n
    • Add – New Filter: wcpay_woopay_enabled – Allows developers to conditionally disable WooPay based on custom logic, improving compatibility with themes and plugins.
    • \n
    • Fix – fix: ensure checkPaymentMethodIsAvailable cache key is correctly memoized on express checkout elements
    • \n
    • Fix – fix: formatting of currencies in the backend will always honor the merchant’s settings, rather than the currency locale.
    • \n
    • Fix – fix: set the correct payment method title when processing the payment with wechat pay, multibanco, and others
    • \n
    • Fix – Fixed handling of orders containing items with negative tax
    • \n
    • Fix – Handle state field requirements for Express Checkout in countries without states
    • \n
    • Fix – Prevent accounts scheduled for deletion from being accessible to the WooPayments client to avoid exposing stale or partial data.
    • \n
    • Update – Evidence submission form now should use the global wp.components
    • \n
    • Update – refactor: add data massaging from legacy google pay/apple pay for HK-based addresses
    • \n
    • Update – Refactor: Remove unused Props interface from AccountTools component
    • \n
    • Update – Remove WooPayments adding their sections into other gateways when enabled
    • \n
    • Update – update: Apple Pay domain verification file is no longer needed
    • \n
    • Update – update: remove _wcpay_feature_tokenized_cart_ece feature flag; remove client/express-checkout in favor of client/tokenized-express-checkout
    • \n
    • Dev – Add cover letter for fraudulent reason
    • \n
    • Dev – Add the components that will be used on the evidence form
    • \n
    • Dev – Add the logic “Save for later” when submitting evidence
    • \n
    • Dev – Add the new StepperPanel component.
    • \n
    • Dev – Bump WC tested up to version to 9.8.5
    • \n
    • Dev – chore: update @stripe/connect-js @stripe/react-connect-js @stripe/react-stripe-js @stripe/stripe-js dependencies
    • \n
    • Dev – Clean up database options after completing onboarding.
    • \n
    • Dev – Condition AliPay block tests under shouldRunWCBlocksTests
    • \n
    • Dev – Create a new feature flag for the evidence submission form
    • \n
    • Dev – Decouple the accordion component from the dispute details screen.
    • \n
    • Dev – fix: is_store_api_request utility on multisite with subdirectory install
    • \n
    • Dev – refactor: introduced MSW for mocking network requests in tests.
    • \n
    \n

    9.4.0 – 2025-05-21

    \n
      \n
    • Add – Add support for rendering fee tax details in the transaction timeline where available
    • \n
    • Fix – Keep the shipping costs structure intact when applying multi-currency adjustments.
    • \n
    • Fix – Only display the transaction URL for authorized intent statuses in WP Admin order page
    • \n
    • Fix – Optimize session handling by only setting cookies on cart and checkout pages, improving product page caching performance.
    • \n
    • Update – chore: remove “add payment methods” wizard task in favor of NOX flow.
    • \n
    • Update – chore: update “Tested up to” WordPress 6.8
    • \n
    • Update – Improve error message for embedded onboarding.
    • \n
    • Update – Improve the user experience of the WooCommerce Payments dispute management interface, focusing on visual clarity of the dispute steps component that guides merchants through the process of handling payment disputes and inquiries.
    • \n
    • Update – Perist payment method checkbox after capability request
    • \n
    • Update – refactor: adjust payment method settings UI to show inline notices and disabled checkboxes instead of (!) icon
    • \n
    • Update – Remove self-assessment fields from the onboarding flow
    • \n
    • Update – update: ensure Klarna is never part of ECE buttons
    • \n
    • Update – update: remove BNPL payment method messaging element/offering from checkout labels
    • \n
    • Update – Update ‘Activate payments’ task to use NOX flow when the reactify-settings-payments feature is enabled.
    • \n
    • Dev – refactor: created a “common” component for the payment method details on the transactions view, made for Affirm, Afterpay, Alipay, WeChat Pay, Grabpay, Multibanco
    • \n
    • Dev – Set payment method title for order before order status change to make it visible for status change actions.
    • \n
    • Dev – Unbundles wordpress/components for Dispute screens
    • \n
    • Dev – upgrade currency-switcher block to apiVersion 3
    • \n
    \n

    9.3.0 – 2025-05-05

    \n
      \n
    • Add – Add dedicated onboarding REST API endpoint for disabling test drive account, when possible.
    • \n
    • Add – Transaction Fees breakdown component in the Payment details.
    • \n
    • Fix – Disabled the Transactions Breakdown section to avoid misleading data in certain scenarios.
    • \n
    • Fix – fix: ensuring that Google Pay/Apple Pay buttons hide on shortcode cart & checkout when totals go to 0
    • \n
    • Fix – fix: Multibanco payment instructions font size adjustment on some block-based themes (e.g.: Twenty-Twenty-Four, Twenty-Twenty-Three)
    • \n
    • Fix – Fix a bug when the notice after downloading CSV that was mispositioned.
    • \n
    • Fix – Fix capabilities query param type
    • \n
    • Fix – Fixed inconsistent spacing between “Add to Cart” button and express checkout buttons on product pages.
    • \n
    • Fix – Fixes a styling issue when the payment method has a tooltip next to it, it was shifting the logo to the right.
    • \n
    • Fix – Fix for validation issue with POST params in some cases generating account session.
    • \n
    • Fix – Improve styling of the Embedded components to be closer to WPDS.
    • \n
    • Fix – Improve subscriptions code compatibility to avoid causing fatal errors.
    • \n
    • Fix – Remove the referrer check to update the fraud protection settings
    • \n
    • Fix – Set the onboarding test mode while creating test drive account with API
    • \n
    • Update – Add dedicated onboarding REST API endpoint for resetting onboarding, when possible.
    • \n
    • Update – Advanced fraud protection settings redesign.
    • \n
    • Update – chore: removed notices about the JCB capability request. JCB will be automatically requested for every new and existing merchant, regardless of the merchant country.
    • \n
    • Update – Include a failure message in the order notes when Stripe Billing subscription renewal has failed.
    • \n
    • Update – On the payment settings page, change the “Credit/Debit Cards” icon to a more generic icon and add a static list of card brands below the “Credit/Debit Cards” element.
    • \n
    • Update – Remove progressive onboarding eligibility check during embedded KYC session creation
    • \n
    • Update – Simplified refund handling with clear errors and standard reasons to aid resolution.
    • \n
    • Update – Updated the Stripe locales list.
    • \n
    • Update – Update log file format for better compatibility with the WooCommerce log viewer.
    • \n
    • Dev – Add Cursor config folder to .gitignore
    • \n
    • Dev – Bump WC tested up to version to 9.8.1
    • \n
    • Dev – Bump WC tested up to version to 9.8.2
    • \n
    • Dev – Delete NOX profile during account reset from Overview or Connect page.
    • \n
    • Dev – Fix Apple Pay and Google Pay not requested from NOX In-context flow.
    • \n
    • Dev – Merged WC_REST_Payments_Payment_Intents_Create_Controller back into WC_REST_Payments_Payment_Intents_Controller after confirming that the issue that caused the split was solved.
    • \n
    • Dev – Replace WCPay in messages with WooPayments
    • \n
    \n

    9.2.1 – 2025-04-23

    \n
      \n
    • Update – Update account session creation route definition to use POST rather than GET.
    • \n
    \n

    9.2.0 – 2025-04-09

    \n
      \n
    • Add – Add back button for tertiary+ level pages in WooPayments settings.
    • \n
    • Fix – fix: cancel GooglePay/ApplePay dialog on product page if add-to-cart product validation fails
    • \n
    • Fix – fix: fatal error when Klarna is enabled on an EU account and a non-EU currency is configured on the store.
    • \n
    • Fix – fix: Google Pay/Apple Pay display on pay-for-order pages.
    • \n
    • Fix – Fix deprecated hook woocommerce_rest_api_option_permissions
    • \n
    • Fix – Fix errors in WooCommerce email settings preview
    • \n
    • Fix – Fix Multi-currency conversion for WooCommerce Bookings range type cost adjustments
    • \n
    • Fix – Fix PMME display on shortcode cart with block-based themes.
    • \n
    • Fix – Fix WooPay enabled during NOX onboarding despite being disabled in recommended payment methods.
    • \n
    • Fix – Handle pending refunds properly
    • \n
    • Fix – Linked account ID to product ID to maintain consistency and prevent issues when the account ID changes.
    • \n
    • Fix – Prevent unsaved changes dialog when changes have been saved.
    • \n
    • Fix – Removed hard-coded lists of payment methods where possible.
    • \n
    • Fix – Remove unused wcpay_date_format_notice_dismissed option from the permission list
    • \n
    • Fix – Set background color to white for the Payments settings page
    • \n
    • Fix – update: ensure Google Pay/Apple Pay honor ‘Display prices during cart and checkout’ setting
    • \n
    • Fix – Update WooPay icon on order page.
    • \n
    • Update – Added _wcpay_net to the metadata.
    • \n
    • Update – Chore: check the array type in dismissed noticeces component.
    • \n
    • Update – chore: disable request of JCB capability
    • \n
    • Update – fix: Google Pay/Apple Pay HK test address override.
    • \n
    • Update – fix: parsing of error message for GooglePay/ApplePay buttons to be displayed to customer, instead of displaying generic error message on failure.
    • \n
    • Update – Improve the ECE container loading experience.
    • \n
    • Update – Move payment method map definition to the backend
    • \n
    • Update – Prevent creation of the renewal orders if original order was created in the different WooPayments mode.
    • \n
    • Update – refactor: delete temporary Google Pay/Apple Pay cart contents right after making the request, to improve performance and avoiding bots sending wrong session data in subsequent requests.
    • \n
    • Update – Remove fraud protection discoverability and update tour
    • \n
    • Update – Stripe Billing and Manual Capture incompatibility notice on the Settings page.
    • \n
    • Update – Update Settings page as per the new design
    • \n
    • Update – Update to Cash App Afterpay branding.
    • \n
    • Dev – Bump WC tested up to version to 9.7.1.
    • \n
    • Dev – Fix unneeded double square brackets in the post-merge script
    • \n
    • Dev – Removed the deprecated wcpay_exit_survey_dismissed option from the ALLOWED_OPTIONS list.
    • \n
    • Dev – Remove level3 retry logic and legacy request_with_level3_data method
    • \n
    • Dev – Updated the progressive parameter in the KYC session creation API to use a boolean type.
    • \n
    • Dev – We switch to using site instead of url as the key in the self assessment data to avoid XSS firewall false-positives.
    • \n
    \n

    9.1.0 – 2025-03-19

    \n
      \n
    • Add – Add a prompt to encourage merchants to provide feedback or leave a WordPress.org review for WooPayments
    • \n
    • Add – Add order failure message on Order Received page.
    • \n
    • Add – Add support to change payment method to 3DS card for subscriptions.
    • \n
    • Add – Add WeChat Pay response handling.
    • \n
    • Add – Implement Multibanco payment method
    • \n
    • Add – Implement specific handling for insufficient_balance_for_refund when refunding the admin order management
    • \n
    • Add – Inform Stripe when a store switch from coming soon to live mode
    • \n
    • Add – Show failure reason in details page for failed payout. This will help merchants get better support, or understand the next steps needed to fix the failing payouts.
    • \n
    • Fix – Add an order note when a recurring payment fails or when updating the payment method fails due to a missing or invalid payment token.
    • \n
    • Fix – Bypass enabled at checkout checks for rendering payment methods configs.
    • \n
    • Fix – Correct the dispute notice for Klarna Inquiries
    • \n
    • Fix – fix: GooglePay/ApplePay fail when there are more than 9 shipping options.
    • \n
    • Fix – fix: GooglePay/ApplePay script dependencies with WooCommerce 9.7
    • \n
    • Fix – Fix issue where survey modal is not scrollable on smaller screen sizes.
    • \n
    • Fix – Fix validation for support phone numbers for Singapore
    • \n
    • Fix – Improve payout failure messages for better clarity and accuracy
    • \n
    • Fix – Inconsitent Safe Mode notice with the latest Jetpack version
    • \n
    • Fix – Init PMME container in cart block so that it can be dynamically rendered once the requirements are met.
    • \n
    • Fix – Make sure that WooPayments gateways follow the main WooPayments card gateway in gateway ordering on the page.
    • \n
    • Fix – Manual capture fails in the transaction detail screen with a customized order number
    • \n
    • Fix – Properly extract styles when using the site editor.
    • \n
    • Fix – Renamed function parameters to avoid reserved keyword conflicts
    • \n
    • Fix – Resolved an issue on stores that had the Stripe Billing feature enabled (US-only) and then changed their store location to an ineligible country.
    • \n
    • Fix – Scoped CSS selectors for WP components to prevent unintended styling on other pages
    • \n
    • Fix – Show Express Checkout button previews in template editor
    • \n
    • Fix – Skip email input search in pay for order flow and use email provided in order data for WooPay iframe.
    • \n
    • Fix – Skip limits per currency check on admin pages
    • \n
    • Fix – Tests: Suppressed unexpected JSON output in maybe_handle_onboarding test by wrapping execution with ob_start() and ob_end_clean()
    • \n
    • Update – Better handling of HTTPs errors in embedded components.
    • \n
    • Update – Change wording for Sales Channel, Online Store, In-Person, and In-Person (POS)
    • \n
    • Update – Enhancements to country select field in onboarding.
    • \n
    • Update – feat: add compatibility notice for Google Pay with live mode accounts.
    • \n
    • Update – Jetpack packages in composer
    • \n
    • Update – Remove the 60 day survey admin note, since it will be redundant after we add the reviews prompt.
    • \n
    • Update – Track action complete event in Stripe Notification embedded component.
    • \n
    • Update – update: tokenize ECE initialization and update flow on pricing change.
    • \n
    • Dev – Add centralized payment method definitions to streamline implementation and maintenance of payment methods.
    • \n
    • Dev – Exclude playwright-report from eslint.
    • \n
    • Dev – Include transaction ID when requesting card reader fee charges summary.
    • \n
    • Dev – Refactors to the embedded compoennts logic.
    • \n
    • Dev – Update @wordpress/icons version to latest version 10.19.0
    • \n
    \n

    9.0.0 – 2025-02-26

    \n
      \n
    • Add – Add E2E tests for currency switching at checkout.
    • \n
    • Add – Add GrabPay payment method details to the View Transaction page.
    • \n
    • Add – Add GrabPay to the settings page when eligible.
    • \n
    • Add – Add loader indication for Stripe notifications banner component
    • \n
    • Add – Add payment method logos to checkout block card label.
    • \n
    • Add – Adds store_id property to body of WooPay tracker events.
    • \n
    • Add – Add Stripe embedded account notifications component on the Overview page
    • \n
    • Add – Add WeChat Pay settings.
    • \n
    • Add – Add WeChat Pay support to checkout.
    • \n
    • Add – feat: add initial support for Alipay settings
    • \n
    • Add – feat: add order notes to tokenized ECE GooglePay/ApplePay on blocks checkout
    • \n
    • Add – Implement checkout for GrabPay payments.
    • \n
    • Add – Pass the business name to the express checkout handler.
    • \n
    • Fix – Avoid duplicated payment methods detection notice on new stores.
    • \n
    • Fix – Avoid PMME init for unavailable BNPL use-cases.
    • \n
    • Fix – Ensure multi-currency widget markup getter don’t throw errors.
    • \n
    • Fix – Ensures that the tokenised cart for ECE implementation is disabled by default.
    • \n
    • Fix – fix: attribute selection from PDPs with tokenized ECE
    • \n
    • Fix – fix: tokenized ECE improvements with WC Deposits, Bookings, Bundles.
    • \n
    • Fix – Fixed an issue with the copy test card number on Astra theme
    • \n
    • Fix – Fixes incorrect defined statement for WC_Install::STORE_ID_OPTION constant.
    • \n
    • Fix – Fixes thrown PHP warning in checkout config.
    • \n
    • Fix – Fix Stripe KYC flow Woo color
    • \n
    • Fix – Fix the default value of the FRT advanced options.
    • \n
    • Fix – Improve how Stripe Billing integration is loaded to prevent unnecessary queries on every page load.
    • \n
    • Fix – Prevent fatal errors when subscription is deactivated due outdated version.
    • \n
    • Fix – Set orderby to none for order queries where checking if order exists.
    • \n
    • Fix – Update the size of Woo logo on the test drive onboarding page.
    • \n
    • Update – Add a notice indicating that overview page needs to be reloaded after completing the requirements in the embedded component.
    • \n
    • Update – Add JSON-formatted minimum amount details to the amount too small error message.
    • \n
    • Update – feat: GooglePay/ApplePay refactor to leverage Store API is enabled by default – second try.
    • \n
    • Update – Improve CSV export experience and deliver consistent reports via async transact platform service-based CSV exports.
    • \n
    • Update – Remove the receipt details tab in the card readers page.
    • \n
    • Update – update: add payment method functionality to honor WC rate limit.
    • \n
    • Update – update: tokenized ECE to exclude itemized items on rounding discrepancies of totals.
    • \n
    • Update – Update copy in the Woopayments Reset account modal for incomplete onboarding accounts
    • \n
    • Update – Update Credit Card / Debit Card label to Cards
    • \n
    • Update – Update handling for 0 feeAmount to be consistent with details page.
    • \n
    • Update – Update handling for refund processing in case of insufficient funds.
    • \n
    • Update – Update handling of PR as a country in the terminal locations endpoint.
    • \n
    • Update – Update the copy in the existing modal for resetting a WooPayments account.
    • \n
    • Dev – Add critical tag to tests that are part of the critical flows.
    • \n
    • Dev – Add new E2E tests to make sure a non-admin user, such as an editor, can access the wp-admin without errors.
    • \n
    • Dev – Add Slack integration to Playwright E2E tests.
    • \n
    • Dev – Cache calls to wc_get_orders in the incentives class
    • \n
    • Dev – Extract the Account Session logic from Embedded components onboarding into a reusable utility hook.
    • \n
    • Dev – Fix potential flakiness while creating a page with the checkout block.
    • \n
    • Dev – Remove Puppeteer references.
    • \n
    • Dev – Remove routing to the partially re-engineered payment process”
    • \n
    • Dev – Update E2E NPM scripts.
    • \n
    • Dev – Update E2E readme doc.
    • \n
    • Dev – Update E2E setup scripts to avoid conflicts with other containers and permissions.
    • \n
    • Dev – Update Github actions and workflows. Change e2e tests directory structure.
    • \n
    \n

    8.9.2 – 2025-02-21

    \n
      \n
    • Fix – Fixed WooPay opt-in race condition
    • \n
    \n

    8.9.1 – 2025-02-07

    \n
      \n
    • Fix – Ensures that the tokenised cart for ECE implementation is disabled by default.
    • \n
    \n

    8.9.0 – 2025-02-04

    \n
      \n
    • Add – Add a popover to WooPayments to present all possible payment methods
    • \n
    • Add – Added persistent column visibility preferences for reporting tables, allowing merchants to customize and save their preferred table view layouts across sessions.
    • \n
    • Add – Add support for WP_DEVELOPMENT_MODE. Any non-empty setting will force the plugin into development mode.
    • \n
    • Add – Add wcpay_capture_error_amount_too_small error type and minimum amount details when capturing payments below the supported …
    • \n
    \n", "description": "

    Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores.

    \n

    Securely accept major credit and debit cards, and allow customers to pay you directly without leaving your WooCommerce store. View and manage transactions from one convenient place – your WordPress dashboard.

    \n

    See payments, track cash flow into your bank account, manage refunds, and stay on top of disputes without the hassle of having to log into a separate payment processor.

    \n

    Manage transactions from the comfort of your store

    \n

    Features previously only available on your payment provider’s website are now part of your store’s integrated payments dashboard. This enables you to:

    \n\n

    Pay as you go

    \n

    WooPayments is free to install, with no setup fees or monthly fees. Our pay-as-you-go pricing model means we’re incentivized to help you succeed! Read more about transaction fees.

    \n

    Supported by the WooCommerce team

    \n

    Our global support team is available to answer questions you may have about WooPayments installation, setup, or use. For assistance, open a ticket on woocommerce.com.

    \n

    Getting Started

    \n

    Requirements

    \n
      \n
    • WordPress 6.0 or newer.
    • \n
    • WooCommerce 7.6 or newer.
    • \n
    • PHP 7.3 or newer.
    • \n
    \n

    Try it now

    \n

    To try WooPayments (previously WooCommerce Payments) on your store, simply install it and follow the prompts. Please see our Startup Guide for a full walkthrough of the process.

    \n", "screenshots": "
    1. \"View

      View Transactions

    2. \"View

      View Transaction Details

    3. \"Track

      Track Payouts

    4. \"Manage

      Manage Disputes

    ", "installation": "

    Install and activate the WooCommerce and WooPayments plugins, if you haven’t already done so, then go to “Payments” in the WordPress admin menu and follow the instructions there.

    \n"}, "versions": {"0.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.0.9.0.zip", "0.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.0.9.2.zip", "1.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.4.1.zip", "1.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.5.0.zip", "1.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.6.0.zip", "1.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.8.0.zip", "1.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.1.9.2.zip", "2.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.2.0.zip", "2.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.3.3.zip", "2.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.5.0.zip", "2.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.6.1.zip", "2.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.7.1.zip", "2.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.8.4.zip", "2.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.2.9.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.0.0.zip", "3.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.1.0.zip", "3.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.2.3.zip", "3.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.4.0.zip", "3.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.5.0.zip", "3.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.6.1.zip", "3.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.7.0.zip", "3.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.8.2.zip", "3.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.3.9.4.zip", "4.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.0.3.zip", "4.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.1.1.zip", "4.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.2.3.zip", "4.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.3.2.zip", "4.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.4.2.zip", "4.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.5.3.zip", "4.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.6.1.zip", "4.6.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.6.2.zip", "4.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.7.3.zip", "4.7.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.7.4.zip", "4.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.8.3.zip", "4.8.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.8.4.zip", "4.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.9.2.zip", "4.9.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.4.9.3.zip", "5.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.0.6.zip", "5.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.3.zip", "5.1.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.1.5.zip", "5.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.2.0.zip", "5.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.2.4.zip", "5.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.3.0.zip", "5.3.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.3.3.zip", "5.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.4.0.zip", "5.4.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.4.1.zip", "5.4.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.4.2.zip", "5.4.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.4.3.zip", "5.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.5.0.zip", "5.5.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.5.1.zip", "5.5.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.5.2.zip", "5.5.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.5.3.zip", "5.5.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.5.4.zip", "5.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.6.0.zip", "5.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.6.1.zip", "5.6.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.6.2.zip", "5.6.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.6.3.zip", "5.6.4": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.6.4.zip", "5.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.7.0.zip", "5.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.7.1.zip", "5.7.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.7.2.zip", "5.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.8.0.zip", "5.8.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.8.1.zip", "5.8.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.8.2.zip", "5.8.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.8.3.zip", "5.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.9.0.zip", "5.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.9.1.zip", "5.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.5.9.2.zip", "6.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.0.1.zip", "6.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.1.2.zip", "6.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.2.2.zip", "6.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.3.2.zip", "6.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.4.2.zip", "6.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.5.1.zip", "6.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.6.1.zip", "6.6.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.6.2.zip", "6.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.7.0.zip", "6.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.7.1.zip", "6.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.8.0.zip", "6.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.9.0.zip", "6.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.9.1.zip", "6.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.6.9.2.zip", "7.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.0.0.zip", "7.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.1.0.zip", "7.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.2.0.zip", "7.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.3.0.zip", "7.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.4.0.zip", "7.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.5.0.zip", "7.5.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.5.1.zip", "7.5.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.5.2.zip", "7.5.3": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.5.3.zip", "7.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.6.0.zip", "7.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.7.0.zip", "7.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.8.0.zip", "7.8.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.8.1.zip", "7.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.9.1.zip", "7.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.7.9.2.zip", "8.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.0.2.zip", "8.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.1.0.zip", "8.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.1.1.zip", "8.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.2.0.zip", "8.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.2.1.zip", "8.2.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.2.2.zip", "8.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.3.0.zip", "8.3.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.3.1.zip", "8.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.4.0.zip", "8.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.5.0.zip", "8.5.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.5.1.zip", "8.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.6.0.zip", "8.6.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.6.1.zip", "8.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.7.0.zip", "8.7.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.7.1.zip", "8.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.8.0.zip", "8.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.9.0.zip", "8.9.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.9.1.zip", "8.9.2": "https://downloads.wordpress.org/plugin/woocommerce-payments.8.9.2.zip", "9.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.0.0.zip", "9.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.1.0.zip", "9.2.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.2.0.zip", "9.2.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.2.1.zip", "9.3.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.3.0.zip", "9.4.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.4.0.zip", "9.5.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.5.0.zip", "9.6.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.6.0.zip", "9.7.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.7.0.zip", "9.8.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.8.0.zip", "9.9.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.9.9.0.zip", "trunk": "https://downloads.wordpress.org/plugin/woocommerce-payments.zip", "10.0.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.10.0.0.zip", "10.1.0": "https://downloads.wordpress.org/plugin/woocommerce-payments.10.1.0.zip", "10.1.1": "https://downloads.wordpress.org/plugin/woocommerce-payments.10.1.1.zip"}, "downloaded": 38966728, "description": "

    Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores.

    \n

    Securely accept major credit and debit cards, and allow customers to pay you directly without leaving your WooCommerce store. View and manage transactions from one convenient place – your WordPress dashboard.

    \n

    See payments, track cash flow into your bank account, manage refunds, and stay on top of disputes without the hassle of having to log into a separate payment processor.

    \n

    Manage transactions from the comfort of your store

    \n

    Features previously only available on your payment provider’s website are now part of your store’s integrated payments dashboard. This enables you to:

    \n\n

    Pay as you go

    \n

    WooPayments is free to install, with no setup fees or monthly fees. Our pay-as-you-go pricing model means we’re incentivized to help you succeed! Read more about transaction fees.

    \n

    Supported by the WooCommerce team

    \n

    Our global support team is available to answer questions you may have about WooPayments installation, setup, or use. For assistance, open a ticket on woocommerce.com.

    \n

    Getting Started

    \n

    Requirements

    \n
      \n
    • WordPress 6.0 or newer.
    • \n
    • WooCommerce 7.6 or newer.
    • \n
    • PHP 7.3 or newer.
    • \n
    \n

    Try it now

    \n

    To try WooPayments (previously WooCommerce Payments) on your store, simply install it and follow the prompts. Please see our Startup Guide for a full walkthrough of the process.

    \n", "donate_link": "", "num_ratings": 121, "screenshots": {"1": {"src": "https://ps.w.org/woocommerce-payments/assets/screenshot-1.jpg?rev=3234740", "caption": "View Transactions"}, "2": {"src": "https://ps.w.org/woocommerce-payments/assets/screenshot-2.jpg?rev=3234740", "caption": "View Transaction Details"}, "3": {"src": "https://ps.w.org/woocommerce-payments/assets/screenshot-3.jpg?rev=3234740", "caption": "Track Payouts"}, "4": {"src": "https://ps.w.org/woocommerce-payments/assets/screenshot-4.jpg?rev=3234740", "caption": "Manage Disputes"}}, "support_url": "https://wordpress.org/support/plugin/woocommerce-payments/", "contributors": {"automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}}, "last_updated": "2025-10-27 6:20am GMT", "preview_link": "", "requires_php": "7.3", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/woocommerce-payments.10.1.1.zip", "author_profile": "https://profiles.wordpress.org/woocommerce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 900000, "aspiresync_meta": {"id": "019a30bf-fd2e-7205-aab2-8e14db3975e6", "name": "WooPayments: Integrated WooCommerce Payments", "slug": "woocommerce-payments", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1761546000, "version": "10.1.1"}, "support_threads": 22, "requires_plugins": ["woocommerce"], "short_description": "Securely accept credit and debit cards on your WooCommerce store. Manage payments without leaving your WordPress dashboard. Only with WooPayments.", "author_block_count": 1, "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 15}'); -INSERT INTO public.plugins VALUES ('019a30c1-67ad-704c-9b53-cf1b2dd35f29', 'woocommerce-paypal-payments', 'WooCommerce PayPal Payments', 'PayPal's latest payment processing solution. Accept PayPal, Pay Later, credit/debit cards, alternative digital wallets and bank accounts.', '

    WooCommerce PayPal Payments is an all-in-one solution to help you maximize conversions by offering PayPal, Venmo (US), Pay Later options, credit and debit cards, and more.

    -

    Features

    -
      -
    • Instant access to funds while payment is processing.
    • -
    • Fraud detection and global compliance (including PCI, PSD2, and 3D Secure).
    • -
    • Faster checkout via PayPal buttons on product pages and in-cart.
    • -
    • Convenience to pay over time with PayPal Pay Later.
    • -
    • Allow Venmo shoppers (US only) to share purchases with friends.
    • -
    • Standard and Advanced Card Processing options.
    • -
    • Country-specific payment methods to build global trust.
    • -
    • Multiple subscription payment options to help drive repeat business.
    • -
    -

    Get started

    -

    If you’re new to PayPal, add it to your store today. Existing user? Upgrade your integration now to access these exciting new features.

    -

    It pays to PayPal

    -

    Get instant access to funds in your PayPal business account while payment is processing. Save time and money with fraud detection and Seller Protection features†.

    -

    Plus, you’ll meet global compliance standards (such as PCI, PSD2, SCA, and 3D Secure), bringing international markets within reach.

    -

    †Available on eligible purchases. Limits apply.

    -

    Flexible payment options

    -

    Shoppers are nearly three times more likely to buy when you offer PayPal.¹ Increase conversions by automatically displaying PayPal buttons on product pages, in-cart, and at checkout.

    -

    PayPal Pay Later options help boost conversion rates and increase cart sizes by 39%.² Let customers pay over time while you get paid upfront — at no additional cost. Available in select countries. Learn more about Pay Later messaging.

    -

    Venmo users spend 2.2 times more annually on online purchases than other online buyers.³ Now you can reach Venmo shoppers (US only) and allow them to share their purchases with friends.

    -

    Country-specific payments

    -
      -
    • Standard Card Processing: Suitable for all business and personal seller accounts. Card transactions are managed via a prebuilt user experience, simplifying compliance.
    • -
    • Advanced Card Processing: Customize the look, feel, and placement of debit and credit card payment fields. You can also use fraud protection tools to set up personal risk tolerance filters.
    • -
    -

    Earn recurring revenue through subscriptions

    -

    Drive repeat business for stable, predictable income using WooCommerce Subscriptions or PayPal Subscriptions.

    -

    You can also use PayPal’s Vaulting feature to:

    -
      -
    • Offer flexible plans with fixed or quantity-based pricing.
    • -
    • Set billing cycles for any period.
    • -
    • Offer discounted trial periods or prorated payments.
    • -
    -

    With no monthly or setup fees, it’s simple for your customers — and great for your business (account approval required).

    -

    Legal Disclosures:

    -

    *For Australian users, the PayPal service is provided by PayPal Australia Pty Limited AFSL 304962. Any information provided is general only and does not take into account your objectives, financial situation, or needs. Please read and consider the CFSGPDS (paypal.com.au) before acquiring or using the service. See website for TMD.

    -
      -
    1. An online study commissioned by PayPal and conducted by Netfluential in November 2020, involving 1,000 US online shoppers ages 18-39.
    2. -
    3. PayPal Q2 Earnings 2021.
    4. -
    5. Edison Trends commissioned by PayPal, April 2020 to March 2021. Edison Trends conducted a behavioral panel of email receipts from 306,939 US consumers and 3.4+ M purchases at a vertical level between Pay with Venmo and non-Venmo users during a 12-month period.
    6. -
    -', '3.2.1', 'WooCommerce', '6.5', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.2.1.zip', '2020-10-15 00:00:00+00', '2025-10-20 13:47:00+00', 'https://profiles.wordpress.org/woocommerce/', 50, 483, 106, 60, 700000, 21645724, 'https://woocommerce.com/products/woocommerce-paypal-payments/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/woocommerce-paypal-payments/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WooCommerce PayPal Payments", "slug": "woocommerce-paypal-payments", "tags": {"paypal": "paypal", "payments": "payments", "ecommerce": "ecommerce", "credit-card": "credit card", "woocommerce": "woocommerce"}, "added": "2020-10-15", "icons": {"1x": "https://ps.w.org/woocommerce-paypal-payments/assets/icon-128x128.png?rev=3234615", "2x": "https://ps.w.org/woocommerce-paypal-payments/assets/icon-256x256.png?rev=3234615"}, "author": "WooCommerce", "rating": 50, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/woocommerce-paypal-payments/assets/banner-772x250.png?rev=3234615", "high": "https://ps.w.org/woocommerce-paypal-payments/assets/banner-1544x500.png?rev=3234615"}, "ratings": {"1": 277, "2": 14, "3": 12, "4": 14, "5": 166}, "version": "3.2.1", "homepage": "https://woocommerce.com/products/woocommerce-paypal-payments/", "requires": "6.5", "sections": {"faq": "\n
    \nWhere can I find documentation and a setup guide?\n\n

    \n

    You’ve come to the right place. Our documentation for WooCommerce PayPal Payments includes detailed setup instructions, troubleshooting tips, and more.

    \n

    \n
    \nWhere can I get support, report bugs, or request new features?\n\n

    \n

    To start, review our troubleshooting tips for answers to common questions. Then, if you need further assistance, get in touch via the official support forum.

    \n

    Please report bugs via GitHub or the official support forum. You can request (or vote for) new features on our feature request board.

    \n

    \n
    \nWooCommerce PayPal Payments has stopped working — what should I do?\n\n

    \n

    First, diagnose the issue using our troubleshooting guide. If you notice an error after updating an extension or theme, there could be a compatibility issue.

    \n

    We recommend running a conflict test using Health Check (which allows you to disable themes and extensions without affecting your live store) or testing via a staging site.

    \n

    \n
    \nDoes this extension support subscriptions?\n\n

    \n

    Yes! WooCommerce PayPal Payments can be used with WooCommerce Subscriptions and PayPal Subscriptions. You can also use Vaulting to save customers’ payment methods for future transactions. Review our subscriptions FAQ.

    \n

    \n
    \nDoes this extension support WooCommerce Blocks?\n\n

    \n

    Yes! WooCommerce PayPal Payments offers experimental support for Cart and Checkout Blocks. Review our Blocks FAQ.

    \n

    \n
    \nAre there any new features in development?\n\n

    \n

    Yes! Review our feature previews FAQ for more details.

    \n

    \n
    \nCan I contribute to WooCommerce PayPal Payments?\n\n

    \n

    Yes, you can! Join our GitHub repository.

    \n

    If you like this extension, please leave a review on WordPress.org or WooCommerce.com — your valuable feedback is appreciated.

    \n

    \n
    \nMy question is not listed; where can I find more answers?\n\n

    \n

    Review our general or contact support.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Support très professionnel

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kazam567 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Suite à un souci rencontré sur mon site j''ai fait appel au support qui m''a bien accompagné dans la résolution de mon problème.

    \n\n\n\n

    Réponses rapide et efficaces, au top !!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastic Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iweb365 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very good plugin. Easy to deploy and really good support.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works as advertised

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Schnazalope on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Had a bit of a hiccup when setting up this plugin in that the new settings look was not giving me all options. Contacted support and got things fixed quickly. Moved from the old Paypal standard plugin to this which allowed for more payment options like Google and Apple pay.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Card Testing issue

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cacnsa on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Jamie Ong responded very quickly and provided the support I needed to resolve my issue. So far, so good!

    \n\n\n\n

    Thanks again Jamie!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast and Reliable Response

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy orthovet on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Our team sent in a ticket for an issue with the PayPal Advanced Card Proccessing and we were glad to see a response and a solution within a few hours. We were expecting it to take a while as we have experienced with support tickets for other programs, so our team was excited to get our issues resolved so quickly. Thank you!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super helpful, quick response, and successful solution!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy KristiHugs (oceanbuddha) on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Krystian was so helpful and patient with me! He was able to quickly understand the issue and offered solutions to rectify the problem. He followed up quickly as well. Best customer service EVER! thank you!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Technical support Jamie is always very helpful to me.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shopofan on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    My theme, Woodmart, conflicts with the payment plugin, preventing me from calling many interfaces. I consulted technician Jamie, whose patient and professional guidance was extremely helpful. Although the conflict persists, he provided an alternative solution enabling me to call interfaces normally. I am very grateful for Jamie''s assistance.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy awack on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Jamie Ong is on it. i am very impressed with the cs help they have offered. the plugin runs very well and offers options i did not know. like the fact that it will send your tracking info back to PayPal . I was only expecting the Plugin to allow my PayPal account connection for payments. But if you add the tracking info back to the woo com pp plugin it will then forward that to your PayPal account. Thank you for all the help and the great work on the plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    support is great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy philgo13 on October 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    krystian was very reactive and help me solve a big problem on my website thanks a lot

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super helpful support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Úrsula Estévez (uestevez) on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We had an issue with the discounts not being applied on the PayPal payment page (which was not caused by the PayPal plugin), and the support we received was wonderful — they went above and beyond to help us solve the problem.

    \n
    \n
    \n", "changelog": "

    3.2.1 – 2025-10-20

    \n
      \n
    • Enhancement – Make plugin upgrade hooks safer #3789
    • \n
    • Enhancement – Webhook transient lock #3790
    • \n
    \n

    3.2.0 – 2025-10-15

    \n
      \n
    • Enhancement – Enable AppSwitch and SSSC feature flags by default #3724
    • \n
    • Enhancement – Remove temporary Pay Later messaging auto-enablement logic #3680
    • \n
    • Enhancement – Align Fastlane currency support with ACDC matrix #3697
    • \n
    • Enhancement – Add hooks at the start of Create/Approve Order requests #3717
    • \n
    • Enhancement – Don’t filter tokens on changing payment method of a subscription (author @gedex) #3617
    • \n
    • Enhancement – Reorganize ACDC and Fastlane gateway settings modals #3652
    • \n
    • Enhancement – Update PayPal Package Tracking Carriers List #3630
    • \n
    • Enhancement – Display help center section #3587
    • \n
    • Enhancement – Update Fastlane card placeholder design #3625
    • \n
    • Enhancement – Add Fastlane session restoration post payment failure #3598
    • \n
    • Fix – Check for messages visibility setting before rendering #3686
    • \n
    • Fix – Fatal error where a callback expects \\WC_Payment_Gateway but got RequestHandler (author @gedex) #3660
    • \n
    • Fix – Continuation with PayPal subscriptions #3656
    • \n
    • Fix – Add fallback for getting subscription order address in classic contexts #3657
    • \n
    • Fix – Fastlane – UK and Australia – Add Fastlane to onboarding screen and four step #3635
    • \n
    • Fix – Check variation stock for all variable products #3605
    • \n
    • Fix – Google Pay button enabled state on variable product pages #3602
    • \n
    • Fix – Pay by link with PayPal error on front end when no shipping address #3627
    • \n
    • Fix – Sync checkout fields and headers in Fastlane flow #3628
    • \n
    • Fix – Classic checkout – Guest user – Trial vaulting subscription validation does not work #3663
    • \n
    • Fix – Prevent redirect on checkout failure for trial vaulting subscriptions #3644
    • \n
    • Fix – Contacts race condition in block #3518
    • \n
    • Fix – Add shipping-related filters to avoid MISSING_%field_name% errors #3586
    • \n
    • Fix – Continuation mode in Elementor checkout #3612
    • \n
    \n

    3.1.2 – 2025-09-30

    \n
      \n
    • Change – Make migration available again #3710
    • \n
    • Fix – Override flag to keep BCDC for ACDC merchants during migration #3712
    • \n
    • Fix – Prevent rare fatal error when shipping address is missing #3655
    • \n
    • In branded-only mode, every merchant has BCDC #3713
    • \n
    \n

    3.1.1 – 2025-09-27

    \n
      \n
    • Fix – Fix BCDC in branded-only mode #3699
    • \n
    • Fix – Restore BCDC button for ACDC merchants in legacy UI #3703
    • \n
    • Change – Remove all migration UX/notifications #3705
    • \n
    \n

    3.1.0 – 2025-09-02

    \n
      \n
    • Enhancement – Fastlane now available for British & Australian merchants #3589
    • \n
    • Enhancement – Pay Later messaging now auto-enabled for eligible merchants based on the STAY UPDATED preference. Review the Pay Later settings to customize or disable. #3600
    • \n
    • Enhancement – Add buttons to copy merchant credentials in the Settings tab #3561
    • \n
    • Enhancement – Skip “Payment Methods” step for branded-only + BCDC and casual sellers #3547
    • \n
    • Enhancement – Add “Things to do next” item after settings migration #3536
    • \n
    • Enhancement – Phase 2: Settings Migration – Add Woo Inbox item #3599
    • \n
    • Enhancement – Create an API function for adding tracking info #3588
    • \n
    • Enhancement – Add polling mechanism for renderer wrapper to prevent race condition for Pay Later messaging #3577
    • \n
    • Enhancement – Status report entry for “New UI active” and “Branded only” #3539
    • \n
    • Fix – Apple Pay does not update shipping method or address changes on Classic Checkout #3524
    • \n
    • Fix – Prevent early is_enabled() check for Google Pay button in new UI #3566
    • \n
    • Fix – Subscriptions migrated from PPEC plugin to PayPal Payments fails on renewal #3549
    • \n
    • Fix – Google Pay transaction from block pages #3542
    • \n
    • Fix – Remove redundant authorize call in subscription renewal handler #3543
    • \n
    • Fix – Empty description handling and logo display for PayPal gateway not working as expected #3527
    • \n
    • Fix – When Apple Pay is enabled, empty space for Apple Pay button is showing on all pages if buyer is not eligible #3550
    • \n
    • Fix – Undefined properties error in checkout block #3551
    • \n
    • Fix – Make the state address data optional to fix non US-CA compatibility for Fastlane #3535
    • \n
    • Fix – Disable the card button if BCDC is disabled #3532
    • \n
    • Fix – Remove data-sdk-client-token field when not needed #3540
    • \n
    • Fix – “No PayPal order ID found in order meta” logged after using “Proceed to PayPal” on block checkout #3189
    • \n
    • Fix – Use is_acdc_enabled() to prevent ACDC interference with BCDC in non-ACDC countries #3594
    • \n
    • Fix – Remove the specified gateway when the button is disabled #3556
    • \n
    \n

    3.0.9 – 2025-07-31

    \n
      \n
    • Fix – Payment via “Proceed to PayPal” may result in a redirect loop #3570
    • \n
    \n

    3.0.8 – 2025-07-28

    \n
      \n
    • Enhancement – Migration from Legacy Settings to New Settings as opt-in via banner & button #3491
    • \n
    • Enhancement – Replace call to billing-agreements/agreement-tokens with checking the capabilities for Reference Transactions #3495
    • \n
    • Enhancement – Add Fastlane 3D Secure support #3493
    • \n
    • Enhancement – Improved PHP 8.4 compatibility #3534
    • \n
    • Fix – INVALID_REQUEST error due to wrong landing_page value after upgrade to 3.0.7 #3521
    • \n
    • Fix – Incorrect Amount via Express Payment for WooCommerce Product Bundles #3516
    • \n
    • Fix – Onboarding failed via “Connect to PayPal” in new UI due to race condition #3385
    • \n
    • Fix – Fatal error when PayPal Payments is active without WooCommerce #3502
    • \n
    • Fix – PayPal Subscription transaction failed in various scenarios #3515
    • \n
    • Fix – Rounding differences potentially lead to order failure (author @luzat) #3373
    • \n
    • Fix – Google Pay payment on block checkout may fail when ACDC is default payment selection #3506
    • \n
    • Fix – Product Prices Disappear in some cases when WooCommerce Subscriptions is active #3519
    • \n
    \n

    3.0.7 – 2025-07-01

    \n
      \n
    • Enhancement – Remove application_context in favor of experience_context object #3431
      \nNOTE: If you were modifying the application_context object programmatically, you may need to update your code to utilize experience_context for your customizations.
    • \n
    • Enhancement – Add Contact Module feature
    • \n
    • Enhancement – Add WooCommerce Tracks integration
    • \n
    • Enhancement – Onboarding notification for Firefox browser #3433
    • \n
    • Enhancement – Reset BN code on plugin uninstall #3471
    • \n
    • Enhancement – Add “Stay updated with PayPal” option in the old and new settings UI #3430
    • \n
    • Enhancement – Add French Territories to the supported ACDC countries list #3438
    • \n
    • Enhancement – Auto-enable logging during onboarding #3369
    • \n
    • Fix – DUPLICATE_INVOICE_ID in Sandbox due to missing invoice prefix #3435
    • \n
    • Fix – Subscription product could not be unlinked from PayPal Subscription #3429
    • \n
    • Fix – PayPal button greyed out on single product page for variable products with >2 attributes #3395
    • \n
    • Fix – APMs automatically enabled despite selecting “No, …” during onboarding #3362
    • \n
    • Fix – Ditch items logic does not work when using saved card payment #3476
    • \n
    • Fix – billing-agreements endpoint called too frequently when not enabled for Reference Transactions #3459
    • \n
    \n

    3.0.6 – 2025-05-27

    \n
      \n
    • Enhancement – Implement 3D secure check for Google Pay #3163
    • \n
    • Enhancement – Add options for “Disable Credit Cards” and “Language” #3226
    • \n
    • Enhancement – Improve the loading experience for the new UI #3269
    • \n
    • Enhancement – Enhance the accessibility of the new Settings UI #3294
    • \n
    • Enhancement – Add capture pre-conditions for card payment source #3300
    • \n
    • Enhancement – Enable all/Disable all toggle next to Alternative Payment methods on Payment Methods tab #3321
    • \n
    • Enhancement – Add installment notifications for Mexico store locations #3404, #3405
    • \n
    • Fix – Various issues for Mexico store locations during onboarding & plugin configuration #3403
    • \n
    • Fix – APFS plugin triggers incorrect renewal date for simple products as subscriptions #3272
    • \n
    • Fix – PayPal Smart Button incompatible with WooCommerce Subscription Switching #3291
    • \n
    • Fix – Fastlane gateway visible on Pay for Order page #3293
    • \n
    • Fix – Pay Later Messaging configurator preview alignment #3305
    • \n
    • Fix – Product editing screen for variable products unresponsive (PayPal Subscriptions API error) #3311
    • \n
    • Fix – Update selector for hiding express checkout #3318
    • \n
    • Fix – ‘Ignoring unknown key’ console warnings when modifying payment gateway state #3322
    • \n
    • Fix – Ratepay Payment Option Not Available for Unassembled Product Bundles #3325
    • \n
    • Fix – “Disable Specific credit cards” shows “Select” as a possible value #3342
    • \n
    • Fix – Stripe not visible at checkout when PayPal Subscriptions API is enabled #3343
    • \n
    • Fix – Ensure correct ACDC behavior for non-ACDC countries (e.g., Vietnam) #3351
    • \n
    • Fix – ACDC payments for Subscriptions failing at checkout for new users #3355
    • \n
    • Fix – BCDC not enabled by default when cards selected during onboarding #3366
    • \n
    • Fix – Block checkout – Address form missing after payment on Product and Cart pages #3371
    • \n
    • Fix – Payments with Debit & Credit Cards failing #3376
    • \n
    • Fix – PayPalGateway::process_payment on completed order leads to order failure #3374
    • \n
    • Fix – New settings UI background color impacted by WooCommerce 9.9+ #3407
    • \n
    • Fix – Can not save payments if subscriptions is not selected when onboarding #3408
    • \n
    \n

    3.0.5 – 2025-04-23

    \n
      \n
    • Fix – Onboarding screen blank when WooPayments plugin is active #3312
    • \n
    \n

    3.0.3 – 2025-04-08

    \n
      \n
    • Fix – BN code was set before the installation path was initialized #3309
    • \n
    • Fix – Things to do next referenced Apple Pay while in branded-only mode #3308
    • \n
    • Fix – Disabled payment methods were not hidden in reactified WooCommerce Payments settings tab #3290
    • \n
    \n

    3.0.2 – 2025-04-03

    \n
      \n
    • Enhancement – Check the branded-only flag when settings-UI is loaded the first time #3278
    • \n
    • Enhancement – Implement a Cache-Flush API #3276
    • \n
    • Enhancement – Disable the mini-cart location by default #3284
    • \n
    • Enhancement – Remove branded-only flag when uninstalling PayPal Payments #3295
    • \n
    • Fix – Welcome screen lists “all major credit/debit cards, Apple Pay, Google Pay,” in branded-only mode #3281
    • \n
    • Fix – Correct heading in onboarding step 4 in branded-only mode #3282
    • \n
    • Fix – Hide the payment methods screen for personal user in branded-only mode #3286
    • \n
    • Fix – Enabling Save PayPal does not disable Pay Later messaging #3288
    • \n
    • Fix – Settings UI: Fix Feature button links #3285
    • \n
    • Fix – Create mapping for the 3d_secure_contingency setting #3262
    • \n
    • Fix – Enable Fastlane Watermark by default in new settings UI #3296
    • \n
    • Fix – Payment method screen is referencing credit cards, digital wallets in branded-only mode #3297
    • \n
    \n

    3.0.1 – 2025-03-26

    \n
      \n
    • Enhancement – Include Fastlane meta on homepage #3151
    • \n
    • Enhancement – Include Branded-only plugin configuration for certain installation paths
    • \n
    • Enhancement – Include UI status in system report #3248
    • \n
    • Enhancement – Minor enhancements in new UI scrolling & highlighting behavior #3240
    • \n
    • Fix – “Warning: Class ‘WooCommerce\\PayPalCommerce\\Vendor\\Stringable’ not found” after 3.0.0 update #3235
    • \n
    • Fix – ACDC does not work on the Classic Checkout when using the new UI #3219
    • \n
    • Fix – “Send only” country banner not displayed in the new UI #3236
    • \n
    • Fix – Typo in welcome screen #3258
    • \n
    • Fix – onboarding.js file from old UI enqueued in new UI #3263
    • \n
    • Fix – Onboarding in new UI with personal account does not hide all ineligible features #3254
    • \n
    • Fix – ACDC not defaulting on for eligible merchants after onboarding with Expanded Checkout selection #3250
    • \n
    • Fix – “Failed to fetch onboarding URL” error when onboarding with Subscriptions selected from non-Vault region #3242
    • \n
    • Fix – Fastlane SDK token requested when Fastlane is disabled #3009
    • \n
    • Fix – Subscription renewal payment via ACDC may fail in some cases due to 3D Secure #3098
    • \n
    • Fix – Error: _load_textdomain_just_in_time Called Incorrectly when running docker compose #3172
    • \n
    • Fix – Shipping callback not loading for guest users in some scenarios #3169
    • \n
    • Fix – Phone number not saved in WC order when using Pay Now experience #3160
    • \n
    • Fix – Phone number not pre-populated on Checkout block in continuation mode #3160
    • \n
    • Fix – “Unfortunately, your credit card details are not valid” shown with actually valid card during checkout with invalid postcode. #3067
    • \n
    • Fix – Incorrect Subscription Cancellation Handling with PayPal Subscriptions #3046
    • \n
    • Tweak – Added PayPal as contributor #3259
    • \n
    \n

    3.0.0 – 2025-03-17

    \n
      \n
    • Enhancement – Redesigned settings UI for new users #2908
    • \n
    • Enhancement – Enable Fastlane by default on new store setups when eligible #3199
    • \n
    • Enhancement – Enable support for advanced card payments and features for Hong Kong & Singapore #3089
    • \n
    • Fix – Dependency conflict with more recent psr/log versions on PHP8+ #2993
    • \n
    • Fix – PayPal Checkout Gateway subscription migration layer not renewing subscriptions #2699
    • \n
    • Fix – Fatal error when gateway settings initialized too early by third-party plugin #2766
    • \n
    • Fix – Next Payment date for Subscriptions not updating when processing a PayPal Subscriptions renewal order #2959
    • \n
    • Fix – Changing the subscription payment method to ACDC triggers error #2891
    • \n
    • Fix – Standard Card button not appearing in standalone gateway for free trial subscription products #2935
    • \n
    • Fix – Validation error when using Trustly payment method #3031
    • \n
    • Fix – Error in continuation mode due to wrong gateway selection on Checkout block #2996
    • \n
    • Fix – Error in error in PayLaterConfigurator #2989
    • \n
    • Tweak – Removed currency requirement for Vault v3 #2919
    • \n
    • Tweak – Update plugin author from WooCommerce to PayPal
    • \n
    \n

    2.9.6 – 2025-01-06

    \n
      \n
    • Fix – NOT_ENABLED_TO_VAULT_PAYMENT_SOURCE on PayPal transactions when using ACDC Vaulting without PayPal Vault approval #2955
    • \n
    • Fix – Express buttons for Free Trial Subscription products on Block Cart/Checkout trigger CANNOT_BE_ZERO_OR_NEGATIVE error #2872
    • \n
    • Fix – String translations not applied to Card Fields on Block Checkout #2934
    • \n
    • Fix – Fastlane component included in script when Fastlane is disabled #2911
    • \n
    • Fix – Zero amount line items may trigger CANNOT_BE_ZERO_OR_NEGATIVE error after rounding error #2906
    • \n
    • Fix – “Save changes” is grey and unclickable when switching from Sandbox to Live #2895
    • \n
    • Fix – plugin queries variations when button/messaging is disabled on single product page #2896
    • \n
    • Fix – Use get_id instead of get_order_number on setting custom_id (author @0verscore) #2930
    • \n
    • Enhancement – Improve fraud response order notes for Advanced Card Processing transactions #2905
    • \n
    • Tweak – Update the minimum plugin requirements to WordPress 6.5 & WooCommerce 9.2 #2920
    • \n
    \n

    2.9.5 – 2024-12-10

    \n
      \n
    • Fix – Early translation loading triggers Function _load_textdomain_just_in_time was called incorrectly. notice #2816
    • \n
    • Fix – ACDC card fields not loading and payment not successful when Classic Checkout Smart Button Location disabled #2852
    • \n
    • Fix – ACDC gateway does not appear for guests when is Fastlane enabled and a subscription product is in the cart #2745
    • \n
    • Fix – “Voide authorization” button does not appear for Apple Pay/Google Pay orders when payment buttons are separated #2752
    • \n
    • Fix – Additional payment tokens saved with new customer_id #2820
    • \n
    • Fix – Vaulted payment method may not be displayed in PayPal button for return buyer #2809
    • \n
    • Fix – Conflict with EasyShip plugin due to shipping methods loading too early #2845
    • \n
    • Fix – Restore accidentally removed ACDC currencies #2838
    • \n
    • Enhancement – Native gateway icon for PayPal & Pay upon Invoice gateways #2712
    • \n
    • Enhancement – Allow disabling specific card types for Fastlane #2704
    • \n
    • Enhancement – Fastlane Insights SDK implementation for block Checkout #2737
    • \n
    • Enhancement – Hide split local APMs in Payments settings tab when PayPal is not enabled #2703
    • \n
    • Enhancement – Do not load split local APMs on Checkout when PayPal is not enabled #2792
    • \n
    • Enhancement – Add support for Button Options in the Block Checkout for Apple Pay & Google Pay buttons #2797 #2772
    • \n
    • Enhancement – Disable “Add payment method” button while saving ACDC payment #2794
    • \n
    • Enhancement – Sanitize soft_descriptor field #2846 #2854
    • \n
    \n

    2.9.4 – 2024-11-11

    \n
      \n
    • Fix – Apple Pay button preview missing in Standard payment and Advanced Processing tabs #2755
    • \n
    • Fix – Set “Sold individually” only for subscription connected to PayPal #2710
    • \n
    • Fix – Ensure Google Pay button does not appear for subscriptions #2718
    • \n
    • Fix – PayPal Subscriptions API renewal order not created in WooCommerce #2612
    • \n
    • Fix – Apple Pay button disappears on Classic Checkout #2722
    • \n
    • Fix – Google Pay and Apple Pay as separate gateways does not show button when checkout remove from button locations #2756
    • \n
    • Fix – Add GW refund support for Apple Pay #2746
    • \n
    • Fix – PayPal Subscriptions cancel and suspend from Subscriptions list page does not work #2632
    • \n
    • Fix – Displaying of HTML tags in product title on choosing a product for tracking (2801) #2701
    • \n
    • Fix – Payment with OXXO cause continuation state for next payment #2702
    • \n
    • Fix – Fix problems with autoptimize plugin #2705
    • \n
    • Fix – Missing custom field PayPal Transaction Fee for OXXO #2700
    • \n
    • Enhancement – Add void button #2678
    • \n
    • Enhancement – Use basic redirect gateway when checkout smart buttons disabled #2714
    • \n
    • Enhancement – Receive button properties from the Checkout Block #2448
    • \n
    • Enhancement – Run PPEC\\DeactivateNote query only in backend #2719
    • \n
    • Enhancement – Prevent plugin use for “Send only” countries #2721
    • \n
    • Enhancement – Do not add pay later button in editor #2570
    • \n
    • Enhancement – Axo: Remove the submit button when Fastlane is disabled #2720
    • \n
    • Enhancement – Sync the PayPal product page button state to Apple/Google Pay buttons, show alerts #2742
    • \n
    \n

    2.9.3 – 2024-10-15

    \n
      \n
    • Fix – Multi-currency support #2667
    • \n
    • Fix – “0.00” amount in Google Pay for virtual products #2636
    • \n
    • Fix – Unsuccessfully payment from product page with Apple Pay button #2643
    • \n
    • Fix – Button Unlinking PayPal Subscriptions plan does not showing for simple subscription #2618
    • \n
    • Fix – Declare tokenization for ACDC only when vaulting enabled #2581
    • \n
    • Fix – Classic shortcode block type checks #2608
    • \n
    • Fix – PUI error in editor #2580
    • \n
    • Fix – Add a new namespaced script loader for ApplePay #2682 #2675
    • \n
    • Fix – Axo Block: Fix the Fastlane modal info message text overflow issue #2663
    • \n
    • Fix – Add Custom Placeholder Handling when rendering the card fields #2651
    • \n
    • Fix – Use the PayPal icons instead of WC ones #2639
    • \n
    • Fix – Google Pay preview config and style #2661
    • \n
    • Fix – Improve context detection #2631
    • \n
    • Fix – Check that get_the_ID is valid before using #2573
    • \n
    • Fix – Axo Block: Always display the Fastlane watermark in the includeAdditionalInfo mode #2690
    • \n
    • Fix – Axo Block: Display card fields for authenticated cardless profiles #2672
    • \n
    • Fix – Google Pay: Fix button preview in the editor #2688
    • \n
    • Fix – ACDC gateway not visible on the block Checkout for logged-out users #2693
    • \n
    • Enhancement – Enhancement – Add Fastlane support for Checkout block
    • \n
    • Enhancement – Multiple calls to POST /v1/oauth2/token?grant_type=client_credentials&response_type=id_token #2671
    • \n
    • Enhancement – Fastlane update shipping options & taxes when changing address #2665
    • \n
    • Enhancement – Axo: Remove Axo from the Checkout block in the editor and add an ACDC card preview #2662
    • \n
    • Enhancement – Set email when creating order for express payment #2577
    • \n
    \n

    2.9.2 – 2024-10-01

    \n
      \n
    • Enhancement – Add Fastlane support for Classic Checkout
    • \n
    • Fix – Fatal error when Pay Later messaging configurator was disabled with a code snippet
    • \n
    \n

    2.9.1 – 2024-09-24

    \n
      \n
    • Fix – Improve card fields hiding #2574
    • \n
    • Fix – Google Pay: Shipping callback not calculating totals correctly on Single Product page #2513
    • \n
    • Fix – Fix shipping callback condition in status report #2578
    • \n
    • Fix – Can’t Disconnect Account #2539
    • \n
    • Fix – Google Pay billing data without shipping callback #2525
    • \n
    • Fix – Standard payment tab – Google Pay and Apple Pay button – Shape from one location is applied to all until saving changes #2419
    • \n
    • Enhancement – Allow to override the list of Pay Later supported countries #2563
    • \n
    • Enhancement – Add more feature statuses into system report #2550
    • \n
    • Enhancement – Use SVG for APM gateway icons #2509
    • \n
    • Enhancement – Add inline notice to inform users about ACDC block Checkout support if the store uses a Classic Checkout setup #2422
    • \n
    • Enhancement – Remove leftover console.log #2589
    • \n
    • Enhancement – Require PHP 7.4+, WP 6.3+, WC 6.9+ #2556
    • \n
    • Enhancement – Modularity module migration #1944
    • \n
    • Enhancement – Keep only 5 tags in readme.txt #2562
    • \n
    • Enhancement – Select ACDC by default during onboarding for China store locations #2619
    • \n
    • Enhancement – Add title, description and gatewayId to the express payment method #2566
    • \n
    \n

    2.9.0 – 2024-09-02

    \n
      \n
    • Fix – Fatal error in Block Editor when using WooCommerce blocks #2534
    • \n
    • Fix – Can’t pay from block pages when the shipping callback is enabled and no shipping methods defined #2429
    • \n
    • Fix – Various Google Pay button fixes #2496
    • \n
    • Fix – Buying a free trial subscription with ACDC results in a $1 charge in the API call #2465
    • \n
    • Fix – Problem with Google Pay and Apple Pay button placement on Pay for Order page #2542
    • \n
    • Fix – When there isn’t any shipping option for the address the order is still created from classic cart #2437
    • \n
    • Fix – Patch the order with no shipping methods, instead of throwing an error #2435
    • \n
    • Enhancement – Separate Apple Pay button for Classic Checkout #2457
    • \n
    • Enhancement – Remove AMEX support for ACDC when store location is set to China #2526
    • \n
    • Enhancement – Inform users of Pay Later messaging configuration when Pay Later wasn’t recently enabled #2529
    • \n
    • Enhancement – Update ACDC signup URLs #2475
    • \n
    • Enhancement – Implement country based APMs via Orders API #2511
    • \n
    • Enhancement – Update PaymentsStatusHandlingTrait.php (author @callmeahmedr) #2523
    • \n
    • Enhancement – Disable PayPal Shipping callback by default #2527
    • \n
    • Enhancement – Change Apple Pay and Google Pay default button labels to plain #2476
    • \n
    • Enhancement – Add Package Tracking compatibility with DHL Shipping plugin #2463
    • \n
    • Enhancement – Add support for WC Bookings when skipping checkout confirmation #2452
    • \n
    • Enhancement – Remove currencies from country-currency matrix in card fields module #2441
    • \n
    \n

    2.8.3 – 2024-08-12

    \n
      \n
    • Fix – Google Pay: Prevent field validation from being triggered on checkout page load #2474
    • \n
    • Fix – Do not add tax info into order meta during order creation #2471
    • \n
    • Fix – PayPal declares subscription support when for Subscription mode is set Disable PayPal for subscription #2425
    • \n
    • Fix – PayPal js files loaded on non PayPal pages #2411
    • \n
    • Fix – Google Pay: Fix the incorrect popup triggering #2414
    • \n
    • Fix – Add tax configurator when programmatically creating WC orders #2431
    • \n
    • Fix – Shipping callback compatibility with WC Name Your Price plugin #2402
    • \n
    • Fix – Uncaught Error: Cannot use object of type …\\Settings as array in …/AbstractPaymentMethodType.php (3253) #2334
    • \n
    • Fix – Prevent displaying smart button multiple times on variable product page #2420
    • \n
    • Fix – Prevent enabling Standard Card Button when ACDC is enabled #2404
    • \n
    • Fix – Use client credentials for user tokens #2491
    • \n
    • Fix – Apple Pay: Fix the shipping callback #2492
    • \n
    • Enhancement – Separate Google Pay button for Classic Checkout #2430
    • \n
    • Enhancement – Add Apple Pay and Google Pay support for China, simplify country-currency matrix #2468
    • \n
    • Enhancement – Add AMEX support for Advanced Card Processing in China #2469
    • \n
    \n

    2.8.2 – 2024-07-22

    \n
      \n
    • Fix – Sold individually checkbox automatically disabled after adding product to the cart more than once #2415
    • \n
    • Fix – All products “Sold individually” when PayPal Subscriptions selected as Subscriptions Mode #2400
    • \n
    • Fix – W3 Total Cache: Remove type from file parameter as sometimes null gets passed causing errors #2403
    • \n
    • Fix – Shipping methods during callback not updated correctly #2421
    • \n
    • Fix – Preserve subscription renewal processing when switching Subscriptions Mode or disabling gateway #2394
    • \n
    • Fix – Remove shipping callback for Venmo express button #2374
    • \n
    • Fix – Google Pay: Fix issue with data.paymentSource being undefined #2390
    • \n
    • Fix – Loading of non-Order as a WC_Order causes warnings and potential data corruption #2343
    • \n
    • Fix – Apple Pay and Google Pay buttons don’t appear in PayPal Button stack on multi-step Checkout #2372
    • \n
    • Fix – Apple Pay: Fix when shipping is disabled #2391
    • \n
    • Fix – Wrong string in smart button preview on Standard Payments tab #2409
    • \n
    • Fix – Don’t break orders screen when there is an exception for package tracking #2369
    • \n
    • Fix – Pay Later button preview is missing #2371
    • \n
    • Fix – Apple Pay button layout #2367
    • \n
    • Enhancement – Remove BCDC button from block Express Checkout area #2381
    • \n
    • Enhancement – Extend Advanced Card Processing country eligibility for China #2397
    • \n
    \n

    2.8.1 – 2024-07-01

    \n
      \n
    • Fix – Don’t render tracking metabox if PayPal order does not belong to connected merchant #2360
    • \n
    • Fix – Fatal error when the ppcp-paylater-configurator module is disabled via code snippet #2327
    • \n
    • Fix – Apple Pay & Google Pay buttons no longer visible in Standard Payments button previews after moving the configuration to Advanced Card Processing tab #2325
    • \n
    • Fix – Fix Smart Buttons on Elementor checkout widget #2284
    • \n
    • Fix – Pay by link – Capturing order from guest user causing fatal error when Vaulting is enabled #2382
    • \n
    • Fix – Enable the gateway settings JS file on connection tab #2377
    • \n
    • Enhancement – Add filter for certain settings to allow gateway translation e.g. via WPML #2308
    • \n
    • Enhancement – Filter for adding more contexts in can_render_dcc checker #2346
    • \n
    • Enhancement – Do not request id_token for guest users #2283
    • \n
    • Enhancement – Prevent multiple PayPal Subscription products in the cart if PayPal Subscription API is active #2320
    • \n
    • Enhancement – Prevent script caching & minification from Litespeed Cache and W3 Total Cache plugins #2316
    • \n
    • Enhancement – Remove Giropay references due to deprecation #2379
    • \n
    \n

    2.8.0 – 2024-06-11

    \n
      \n
    • Fix – Calculate totals after adding shipping to include taxes #2296
    • \n
    • Fix – Package tracking integration throws error in 2.7.1 #2289
    • \n
    • Fix – Make PayPal Subscription products unique in cart #2265
    • \n
    • Fix – PayPal declares subscription support when merchant not enabled for Reference Transactions #2282
    • \n
    • Fix – Google Pay and Apple Pay Settings button from Connection tab have wrong links #2273
    • \n
    • Fix – Smart Buttons in Block Checkout not respecting the location setting (2830) #2278
    • \n
    • Fix – Disable Pay Upon Invoice if billing/shipping country not set #2281
    • \n
    • Fix – Critical error on pay for order page when we try to pay with ACDC gateway #2321
    • \n
    • Enhancement – Enable shipping callback for WC subscriptions #2259
    • \n
    • Enhancement – Disable the shipping callback for “venmo” when vaulting is active #2269
    • \n
    • Enhancement – Improve “Could not retrieve order” error message #2271
    • \n
    • Enhancement – Add block Checkout compatibility to Advanced Card Processing #2246
    • \n
    \n

    2.7.1 – 2024-05-28

    \n
      \n
    • Fix – Ensure package tracking data is sent to original PayPal transaction #2180
    • \n
    • Fix – Set the ‘Woo_PPCP’ as a default value for data-partner-attribution-id #2188
    • \n
    • Fix – Allow PUI Gateway for refund processor #2192
    • \n
    • Fix – Notice on newly created block cart checkout #2211
    • \n
    • Fix – Apple Pay button in the editor #2177
    • \n
    • Fix – Allow shipping callback and skipping confirmation page from any express button #2236
    • \n
    • Fix – Pay Later messaging configurator sometimes displays old settings after saving #2249
    • \n
    • Fix – Update the apple-developer-merchantid-domain-association validation strings for Apple Pay #2251
    • \n
    • Fix – Enable the Shipping Callback handlers #2266
    • \n
    • Enhancement – Use admin theme color #1602
    • \n
    \n

    2.7.0 – 2024-04-30

    \n
      \n
    • Fix – Zero sum subscriptions cause CANNOT_BE_ZERO_OR_NEGATIVE when using Vault v3 #2152
    • \n
    • Fix – Incorrect Pricing Issue with Variable Subscriptions in PayPal Subscriptions Mode #2156
    • \n
    • Fix – Wrong return_url in multisite setup when using subdomains #2157
    • \n
    • Fix – Fix the fundingSource is not defined error on Block Checkout #2185
    • \n
    • Enhancement – Add the data-page-type attribute for JS SDK #2161
    • \n
    • Enhancement – Save Card Last Digits in order meta for Advanced Card Payments #2149
    • \n
    • Enhancement – Refactor the Pay Later Messaging block and add dedicated Cart/Checkout blocks #2153
    • \n
    • Enhancement – “Next Payment” status not updated when using PayPal Subscriptions #2091
    • \n
    • Enhancement – Optimize default settings for new store configurations #2158
    • \n
    • Enhancement – Improve tooltip information for tagline #2154
    • \n
    • Enhancement – Improve error message on certain exceptions #1354
    • \n
    • Enhancement – Cart Pay Later block: Change the default insert position #2179
    • \n
    • Enhancement – Messages Bootstrap: Add a render retry functionality #2181
    • \n
    \n

    2.6.1 – 2024-04-09

    \n
      \n
    • Fix – Payment tokens fixes and adjustments #2106
    • \n
    • Fix – Pay upon Invoice: Add input validation to Experience Context fields #2092
    • \n
    • Fix – Disable markup in get_plugin_data() returns to fix an issue with wptexturize() #2094
    • \n
    • Fix – Problem changing the shipping option in block pages #2142
    • \n
    • Fix – Saved payment token deleted after payment with another saved payment token #2146
    • \n
    • Enhancement – Pay later messaging configurator improvements #2107
    • \n
    • Enhancement – Replace the middleware URL from connect.woocommerce.com to api.woocommerce.com/integrations #2130
    • \n
    • Enhancement – Remove all Sofort references as it has been deprecated #2124
    • \n
    • Enhancement – Improve funding source names #2118
    • \n
    • Enhancement – More fraud prevention capabilities by storing additional data in the order #2125
    • \n
    • Enhancement – Update ACDC currency eligibility for AMEX #2129
    • \n
    • Enhancement – Sync shipping options with Venmo when skipping final confirmation on Checkout #2108
    • \n
    • Enhancement – Card Fields: Add a filter for the CVC field and update the placeholder to match the label #2089
    • \n
    • Enhancement – Product Title: Sanitize before sending to PayPal #2090
    • \n
    • Enhancement – Add filter for disabling permit_multiple_payment_tokens vault attribute #2136
    • \n
    • Enhancement – Filter to hide PayPal email address not working on order detail #2137
    • \n
    \n

    2.6.0 – 2024-03-20

    \n
      \n
    • Fix – invoice_id not included in API call when creating payment with saved card #2086
    • \n
    • Fix – Typo in SCA indicators for ACDC Vault transactions #2083
    • \n
    • Fix – Payments with saved card tokens use Capture intent when Authorize is configured #2069
    • \n
    • Fix – WooPayments multi-currency causing currency mismatch error on Block Cart & Checkout pages #2054
    • \n
    • Fix – “Must pass createSubscription with intent=subscription” error with PayPal Subscriptions mode #2058
    • \n
    • Fix – “Proceed to PayPal” button displayed for Free …
    • \n
    \n", "description": "

    WooCommerce PayPal Payments is an all-in-one solution to help you maximize conversions by offering PayPal, Venmo (US), Pay Later options, credit and debit cards, and more.

    \n

    Features

    \n
      \n
    • Instant access to funds while payment is processing.
    • \n
    • Fraud detection and global compliance (including PCI, PSD2, and 3D Secure).
    • \n
    • Faster checkout via PayPal buttons on product pages and in-cart.
    • \n
    • Convenience to pay over time with PayPal Pay Later.
    • \n
    • Allow Venmo shoppers (US only) to share purchases with friends.
    • \n
    • Standard and Advanced Card Processing options.
    • \n
    • Country-specific payment methods to build global trust.
    • \n
    • Multiple subscription payment options to help drive repeat business.
    • \n
    \n

    Get started

    \n

    If you’re new to PayPal, add it to your store today. Existing user? Upgrade your integration now to access these exciting new features.

    \n

    It pays to PayPal

    \n

    Get instant access to funds in your PayPal business account while payment is processing. Save time and money with fraud detection and Seller Protection features†.

    \n

    Plus, you’ll meet global compliance standards (such as PCI, PSD2, SCA, and 3D Secure), bringing international markets within reach.

    \n

    †Available on eligible purchases. Limits apply.

    \n

    Flexible payment options

    \n

    Shoppers are nearly three times more likely to buy when you offer PayPal.¹ Increase conversions by automatically displaying PayPal buttons on product pages, in-cart, and at checkout.

    \n

    PayPal Pay Later options help boost conversion rates and increase cart sizes by 39%.² Let customers pay over time while you get paid upfront — at no additional cost. Available in select countries. Learn more about Pay Later messaging.

    \n

    Venmo users spend 2.2 times more annually on online purchases than other online buyers.³ Now you can reach Venmo shoppers (US only) and allow them to share their purchases with friends.

    \n

    Country-specific payments

    \n
      \n
    • Standard Card Processing: Suitable for all business and personal seller accounts. Card transactions are managed via a prebuilt user experience, simplifying compliance.
    • \n
    • Advanced Card Processing: Customize the look, feel, and placement of debit and credit card payment fields. You can also use fraud protection tools to set up personal risk tolerance filters.
    • \n
    \n

    Earn recurring revenue through subscriptions

    \n

    Drive repeat business for stable, predictable income using WooCommerce Subscriptions or PayPal Subscriptions.

    \n

    You can also use PayPal’s Vaulting feature to:

    \n
      \n
    • Offer flexible plans with fixed or quantity-based pricing.
    • \n
    • Set billing cycles for any period.
    • \n
    • Offer discounted trial periods or prorated payments.
    • \n
    \n

    With no monthly or setup fees, it’s simple for your customers — and great for your business (account approval required).

    \n

    Legal Disclosures:

    \n

    *For Australian users, the PayPal service is provided by PayPal Australia Pty Limited AFSL 304962. Any information provided is general only and does not take into account your objectives, financial situation, or needs. Please read and consider the CFSGPDS (paypal.com.au) before acquiring or using the service. See website for TMD.

    \n
      \n
    1. An online study commissioned by PayPal and conducted by Netfluential in November 2020, involving 1,000 US online shoppers ages 18-39.
    2. \n
    3. PayPal Q2 Earnings 2021.
    4. \n
    5. Edison Trends commissioned by PayPal, April 2020 to March 2021. Edison Trends conducted a behavioral panel of email receipts from 306,939 US consumers and 3.4+ M purchases at a vertical level between Pay with Venmo and non-Venmo users during a 12-month period.
    6. \n
    \n", "screenshots": "
    1. \"PayPal

      PayPal buttons on a single product page.

    2. \"Cart

      Cart page.

    3. \"Checkout

      Checkout page.

    4. \"Enable

      Enable \"PayPal\" on the Payment methods tab in WooCommerce.

    5. \"Click

      Click \"Connect to PayPal\" to link your site to your PayPal account.

    6. \"Main

      Main settings screen.

    ", "installation": "

    Requirements

    \n

    To install and configure WooCommerce PayPal Payments, you will need:

    \n
      \n
    • WordPress Version 6.3 or newer (installed)
    • \n
    • WooCommerce Version 9.6 or newer (installed and activated)
    • \n
    • PHP Version 7.4 or newer
    • \n
    • PayPal business or personal account
    • \n
    \n

    Installation instructions

    \n
      \n
    1. Log in to WordPress admin.
    2. \n
    3. Go to Plugins > Add New.
    4. \n
    5. Search for the WooCommerce PayPal Payments plugin.
    6. \n
    7. Click on Install Now and wait until the plugin is installed successfully.
    8. \n
    9. You can activate the plugin immediately by clicking on Activate now on the success page. If you want to activate it later, you can do so via Plugins > Installed Plugins.
    10. \n
    \n

    Setup and Configuration

    \n

    Follow the steps below to connect the plugin to your PayPal account:

    \n
      \n
    1. After you have activated the WooCommerce PayPal Payments plugin, go to WooCommerce > Settings.
    2. \n
    3. Click the Payments tab.
    4. \n
    5. The Payment methods list may include two PayPal options. Click on PayPal (not PayPal Standard).
    6. \n
    7. Click on the Activate PayPal button.
    8. \n
    9. Sign in to your PayPal account. If you do not have a PayPal account yet, sign up for a new PayPal business or personal account.
    10. \n
    11. After you have successfully connected your PayPal account, click on the Standard Payments tab and check the Enable Paypal features for your store checkbox to enable PayPal.
    12. \n
    13. Click Save changes.
    14. \n
    \n

    Complete onboarding instructions can be found in the documentation here.

    \n

    Updating

    \n

    Automatic updates should work generally smoothly, but we still recommend you back up your site.

    \n

    If you encounter issues with the PayPal buttons not appearing after an update, purge your website cache. Caching or JavaScript minification can impact PayPal Payments and should be disabled for the PayPal scripts or payment-related pages.

    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.0.4.zip", "1.1.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.2.1.zip", "1.3.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.3.2.zip", "1.4.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.4.0.zip", "1.5.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.6.5.zip", "1.7.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.8.1.zip", "1.9.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.9.5.zip", "2.0.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.0.5.zip", "2.1.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.2.2.zip", "2.3.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.4.3.zip", "2.5.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.5.4.zip", "2.6.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.6.1.zip", "2.7.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.7.1.zip", "2.8.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.8.3.zip", "2.9.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.2.9.6.zip", "3.0.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.1.2.zip", "3.2.0": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.2.1.zip", "trunk": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.zip"}, "downloaded": 21645724, "description": "

    WooCommerce PayPal Payments is an all-in-one solution to help you maximize conversions by offering PayPal, Venmo (US), Pay Later options, credit and debit cards, and more.

    \n

    Features

    \n
      \n
    • Instant access to funds while payment is processing.
    • \n
    • Fraud detection and global compliance (including PCI, PSD2, and 3D Secure).
    • \n
    • Faster checkout via PayPal buttons on product pages and in-cart.
    • \n
    • Convenience to pay over time with PayPal Pay Later.
    • \n
    • Allow Venmo shoppers (US only) to share purchases with friends.
    • \n
    • Standard and Advanced Card Processing options.
    • \n
    • Country-specific payment methods to build global trust.
    • \n
    • Multiple subscription payment options to help drive repeat business.
    • \n
    \n

    Get started

    \n

    If you’re new to PayPal, add it to your store today. Existing user? Upgrade your integration now to access these exciting new features.

    \n

    It pays to PayPal

    \n

    Get instant access to funds in your PayPal business account while payment is processing. Save time and money with fraud detection and Seller Protection features†.

    \n

    Plus, you’ll meet global compliance standards (such as PCI, PSD2, SCA, and 3D Secure), bringing international markets within reach.

    \n

    †Available on eligible purchases. Limits apply.

    \n

    Flexible payment options

    \n

    Shoppers are nearly three times more likely to buy when you offer PayPal.¹ Increase conversions by automatically displaying PayPal buttons on product pages, in-cart, and at checkout.

    \n

    PayPal Pay Later options help boost conversion rates and increase cart sizes by 39%.² Let customers pay over time while you get paid upfront — at no additional cost. Available in select countries. Learn more about Pay Later messaging.

    \n

    Venmo users spend 2.2 times more annually on online purchases than other online buyers.³ Now you can reach Venmo shoppers (US only) and allow them to share their purchases with friends.

    \n

    Country-specific payments

    \n
      \n
    • Standard Card Processing: Suitable for all business and personal seller accounts. Card transactions are managed via a prebuilt user experience, simplifying compliance.
    • \n
    • Advanced Card Processing: Customize the look, feel, and placement of debit and credit card payment fields. You can also use fraud protection tools to set up personal risk tolerance filters.
    • \n
    \n

    Earn recurring revenue through subscriptions

    \n

    Drive repeat business for stable, predictable income using WooCommerce Subscriptions or PayPal Subscriptions.

    \n

    You can also use PayPal’s Vaulting feature to:

    \n
      \n
    • Offer flexible plans with fixed or quantity-based pricing.
    • \n
    • Set billing cycles for any period.
    • \n
    • Offer discounted trial periods or prorated payments.
    • \n
    \n

    With no monthly or setup fees, it’s simple for your customers — and great for your business (account approval required).

    \n

    Legal Disclosures:

    \n

    *For Australian users, the PayPal service is provided by PayPal Australia Pty Limited AFSL 304962. Any information provided is general only and does not take into account your objectives, financial situation, or needs. Please read and consider the CFSGPDS (paypal.com.au) before acquiring or using the service. See website for TMD.

    \n
      \n
    1. An online study commissioned by PayPal and conducted by Netfluential in November 2020, involving 1,000 US online shoppers ages 18-39.
    2. \n
    3. PayPal Q2 Earnings 2021.
    4. \n
    5. Edison Trends commissioned by PayPal, April 2020 to March 2021. Edison Trends conducted a behavioral panel of email receipts from 306,939 US consumers and 3.4+ M purchases at a vertical level between Pay with Venmo and non-Venmo users during a 12-month period.
    6. \n
    \n", "donate_link": "", "num_ratings": 483, "screenshots": {"1": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-1.png?rev=3137725", "caption": "PayPal buttons on a single product page."}, "2": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-2.png?rev=3137725", "caption": "Cart page."}, "3": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-3.png?rev=3137725", "caption": "Checkout page."}, "4": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-4.png?rev=3262297", "caption": "Enable \"PayPal\" on the Payment methods tab in WooCommerce."}, "5": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-5.png?rev=3262297", "caption": "Click \"Connect to PayPal\" to link your site to your PayPal account."}, "6": {"src": "https://ps.w.org/woocommerce-paypal-payments/assets/screenshot-6.png?rev=3262297", "caption": "Main settings screen."}}, "support_url": "https://wordpress.org/support/plugin/woocommerce-paypal-payments/", "contributors": {"syde": {"avatar": "https://secure.gravatar.com/avatar/27f8141d17958b4fe0e8eb7dee7793c49250a94a1d59ca636ec83196367e408a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/syde/", "display_name": "Syde"}, "paypal": {"avatar": "https://secure.gravatar.com/avatar/e8a3cfc2bb25a0b86a07213891b0e324729115b3b1a9d5534f71cc688bbfc094?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/paypal/", "display_name": "PayPal"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}}, "last_updated": "2025-10-20 1:47pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.3.2.1.zip", "author_profile": "https://profiles.wordpress.org/woocommerce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 700000, "aspiresync_meta": {"id": "019a30bf-fd78-7003-8673-228c100ab296", "name": "WooCommerce PayPal Payments", "slug": "woocommerce-paypal-payments", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1760968020, "version": "3.2.1"}, "support_threads": 106, "requires_plugins": ["woocommerce"], "short_description": "PayPal's latest payment processing solution. Accept PayPal, Pay Later, credit/debit cards, alternative digital wallets and bank accounts.", "author_block_count": 1, "author_block_rating": 50, "commercial_support_url": "", "support_threads_resolved": 60}'); -INSERT INTO public.plugins VALUES ('019a30c1-67b6-7143-9e53-61592529901e', 'woocommerce-services', 'WooCommerce Tax (formerly WooCommerce Shipping & Tax)', 'We’re here to help with tax rates: collect accurate sales tax, automatically.', '

    Attention: Shipping features have moved to a new dedicated plugin. Download WooCommerce Shipping.

    -

    Enable automated taxes
    -That’s it! Once you update your tax settings, your store will collect sales tax at checkout based on the store address in your WooCommerce Settings.

    -

    Eliminate the need to even think about sales taxes for your store
    -Automatically calculate how much sales tax should be collected for WooCommerce orders — by city, country, or state — at checkout.

    -

    External services

    -

    This plugin relies on the following external services:

    -
      -
    1. -

      WordPress.com connection:

      -
        -
      • Description: The plugin makes requests to our own endpoints at WordPress.com (proxied via https://api.woocommerce.com) to fetch automated tax calculations.
      • -
      • Website: https://wordpress.com/
      • -
      • Terms of Service: https://wordpress.com/tos/
      • -
      • Privacy Policy: https://automattic.com/privacy/
      • -
      -
    2. -
    3. -

      Usage Tracking:

      -
        -
      • Description: The plugin will send usage statistics to our own service, after the user has accepted our Terms of Service.
      • -
      • Script: https://stats.wp.com/w.js
      • -
      • Terms of Service: https://wordpress.com/tos/
      • -
      • Privacy Policy: https://automattic.com/privacy/
      • -
      -
    4. -
    -', '3.2.0', 'WooCommerce', '6.7', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/woocommerce-services.3.2.0.zip', '2017-01-28 00:00:00+00', '2025-10-14 18:38:00+00', 'https://profiles.wordpress.org/woocommerce/', 40, 104, 3, 3, 600000, 45643841, 'https://woocommerce.com/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/woocommerce-services/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WooCommerce Tax (formerly WooCommerce Shipping & Tax)", "slug": "woocommerce-services", "tags": {"gst": "GST", "tax": "tax", "vat": "vat", "payment": "payment", "woocommerce": "woocommerce"}, "added": "2017-01-28", "icons": {"1x": "https://ps.w.org/woocommerce-services/assets/icon-128x128.png?rev=3234419", "2x": "https://ps.w.org/woocommerce-services/assets/icon-256x256.png?rev=3234419"}, "author": "WooCommerce", "rating": 40, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/woocommerce-services/assets/banner-772x250.png?rev=3234419", "high": "https://ps.w.org/woocommerce-services/assets/banner-1544x500.png?rev=3234419"}, "ratings": {"1": 69, "2": 7, "3": 5, "4": 3, "5": 20}, "version": "3.2.0", "homepage": "https://woocommerce.com/", "requires": "6.7", "sections": {"faq": "\n
    \nWhy is a WordPress.com account connection required?\n\n

    \n

    A WordPress.com connection is required to securely access our tax APIs, and to avoid API abuse.

    \n

    \n
    \nThis works with WooCommerce, right?\n\n

    \n

    Yep! We follow the L-2 policy, meaning if the latest version of WooCommerce is 8.7, we support back to WooCommerce version 8.5.

    \n

    \n
    \nAre there Terms of Service?\n\n

    \n

    Absolutely! You can read our Terms of Service here.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Hidden Jetpack dependency and blocked for “regulated” stores

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy indanvil on September 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nowhere in the description does it say the plugin depends on Jetpack, yet support informed me that it uses Jetpack’s backend services. That means I’m forced to follow Jetpack’s terms even though Jetpack isn’t installed on my site.

    \n\n\n\n

    On top of that, WooCommerce is often suggested as a good option for “high-risk” industries like CBD, alcohol, or firearms accessories, but in practice Automattic blocks exactly those merchants from using WooCommerce Tax. This makes it very difficult to actually run a store in these categories.

    \n\n\n\n

    When I asked for clarification, WooCommerce support told me I should abandon this plugin and instead go use Avalara or TaxJar. If that’s the real answer, then the dependency and restrictions should be clearly stated in the plugin description up front so merchants don’t waste their time.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Yay for No Jetpack

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jollygreen on September 4, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Title says all. Thanks for removing this dependency. Its the best change we''ve all been waiting for.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    My site went down after updates

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy casiyim on July 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It was reckless to update the plugin can caused error to my website, customers was so panic and they had to cancel my orders.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    fatal errors

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy justin-bigscoots on July 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Releases a plugin that isn''t properly tested which causes 100s of sites to go down, cool stuff

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Automated tax does not work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy timea4523 on March 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Don''t waste your time. automated tax does not work.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Requires wordpress.com connection, too bad

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Annonnimmo on October 28, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Automattic should stay far away from indipendent developers plugins.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useless without Paypal integration

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy drgonzo3000 on June 11, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Plugin only allows you to pay for labels using the credit card on your wordpress account. Completely useless if business transactions are all done using a different merchant processor like Paypal. Zero thought was put into this and uninstalled it once I found this issue.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    add_sift_js_tracker

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jseutens on March 29, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Do not try to add things from 3party to your stuff , I do not need to have AI track me and what I do on my site.
    That site is on my blocklist now (cdn.sift.com) on the server side , host file for any *.sift.com to 127.0.0.10

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not working, requires Jetpack bloatware

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jsding on January 25, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin stopped working starting December 2023. It would still charge my card for the shipping labels but I would get an error before the label popped up to be printed. I couldn''t access the labels afterwards either. After WEEKS of trying to get help with support, they ended up saying it was an issue with my hosting service not having enough bandwidth. I''ve had the same hosting service for years with no issues. My thought is that they''ve continued to make the Jetpack plugin (which is required to make this plugin work) bigger and bigger, taking up more and more bandwidth to the point where you either have to increase your own hosting services or deal with it not working. Not worth it. Honestly would suggest new users go directly to Shopify instead of trying to deal with this nonsense.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not Working

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kryptonitecreative on January 15, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    There is no way to print a label, it keeps asking for a credit card, which it never registers....

    Updated - it turned out the wordpress.com account I had signed in with was different than the one trying to connect to pay and print the label. The plugin has been working great since support helped me figure out what the problem was.

    Also, you can pair this with \"USPS Simple Shipping for Woocommerce\" to calculate your shipping at the cart.

    \n
    \n
    \n", "changelog": "

    3.2.0 – 2025-10-14

    \n
      \n
    • Fix – No tax calculated for multi-word state/counties.
    • \n
    • Fix – Incorrect tax rate saved in Woo Tax Table when Cart total is 0.
    • \n
    • Fix – Compatibility issue with plugins and themes that use woocommerce_find_rates filter.
    • \n
    • Tweak – Update tax rate and tax nexus links.
    • \n
    • Tweak – Unify tax rate saving to always save itemized tax rates.
    • \n
    • Tweak – WooCommerce 10.3 Compatibility.
    • \n
    \n

    3.1.1 – 2025-09-29

    \n
      \n
    • Fix – Incorrect tax rate saved in Woo Tax Table when Cart total is 0.
    • \n
    • Fix – Compatibility issue with plugins and themes that use woocommerce_find_rates filter.
    • \n
    \n

    3.1.0 – 2025-09-16

    \n
      \n
    • Add – Increase cache time for address validation errors.
    • \n
    • Tweak – WooCommerce 10.2 Compatibility.
    • \n
    \n

    3.0.11 – 2025-09-08

    \n
      \n
    • Tweak – Bump jetpack autoloader version
    • \n
    \n

    3.0.10 – 2025-09-02

    \n
      \n
    • Fix – Corrected migration guide link in survey modal.
    • \n
    \n

    3.0.9 – 2025-08-26

    \n
      \n
    • Add – Migration survey to understand WooCommerce Shipping adoption blockers.
    • \n
    \n

    3.0.8 – 2025-08-13

    \n
      \n
    • Fix – Improves performance when WooCommerce Shipping is not active.
    • \n
    • Fix – Restore shipping label functionality for merchants with shipping features enabled.
    • \n
    • Tweak – WooCommerce 10.1 Compatibility.
    • \n
    \n

    3.0.7 – 2025-07-21

    \n
      \n
    • Fix – Missing release files.
    • \n
    \n

    3.0.6 – 2025-07-21

    \n
      \n
    • Add – Support for Itemized tax rates.
    • \n
    • Fix – TaxJar error notices displaying incorrectly on block cart and checkout.
    • \n
    \n

    3.0.5 – 2025-07-14

    \n
      \n
    • Tweak – WooCommerce 10.0 Compatibility.
    • \n
    \n

    3.0.4 – 2025-06-30

    \n
      \n
    • Fix – Corrected tax calculation for orders shipped within Arizona from stores based in Arizona.
    • \n
    \n

    3.0.3 – 2025-06-12

    \n
      \n
    • Tweak – Update Org store screenshots.
    • \n
    \n

    3.0.2 – 2025-06-02

    \n
      \n
    • Rename the plugin and updates the description in the Org store.
    • \n
    \n

    3.0.1 – 2025-05-22

    \n
      \n
    • Fix – Maintain label purchase functionality on iOS app for eligible installations.
    • \n
    \n

    3.0.0 – 2025-05-08

    \n
      \n
    • Add – Legacy site detection to maintain shipping functionality for existing installations.
    • \n
    • Tweak – Improve tax tracking.
    • \n
    \n

    2.8.9 – 2025-04-07

    \n
      \n
    • Tweak – WordPress 6.8 & WooCommerce 9.8 Compatibility.
    • \n
    \n

    2.8.8 – 2025-03-03

    \n
      \n
    • Tweak – WooCommerce 9.7 Compatibility.
    • \n
    \n

    2.8.7 – 2025-01-20

    \n
      \n
    • Add – Option to apply US Colorado Retail Delivery Fee tax by using wc_services_apply_us_co_retail_delivery_fee filter.
    • \n
    \n

    2.8.6 – 2025-01-06

    \n
      \n
    • Tweak – PHP 8.4 compatibility.
    • \n
    \n

    2.8.5 – 2024-12-10

    \n
      \n
    • Fix – Fixed an issue that prevented editing an order when automated tax is enabled.
    • \n
    \n

    2.8.4 – 2024-12-09

    \n
      \n
    • Fix – Support High-Performance Order Storage in shipping label reports.
    • \n
    \n

    2.8.3 – 2024-10-29

    \n
      \n
    • Tweak – WordPress 6.7 Compatibility.
    • \n
    \n

    2.8.2 – 2024-09-23

    \n
      \n
    • Fix – Keep live rates enabled for eligible stores when WCS&T is active alongside WooCommerce Shipping.
    • \n
    • Tweak – Hide shipping migration banner for all stores not eligible to buy shipping labels.
    • \n
    • Tweak – Try WooCommerce Shipping modal copy.
    • \n
    \n

    2.8.1 – 2024-09-09

    \n
      \n
    • Tweak – Hide migration banner for merchants still using legacy functionality.
    • \n
    \n

    2.8.0 – 2024-09-03

    \n
      \n
    • Add – A new shipping migration experience from this plugin to the newly released WooCommerce Shipping plugin.
    • \n
    \n

    2.7.0 – 2024-07-25

    \n
      \n
    • Add – Parallel compatibility with WooCommerce Shipping plugin.
    • \n
    \n

    2.6.2 – 2024-07-16

    \n
      \n
    • Fix – Require HS Tariff number on customs form for EU destination countries.
    • \n
    \n

    2.6.1 – 2024-07-02

    \n
      \n
    • Tweak – WooCommerce 9.0 and WordPress 6.6 compatibility.
    • \n
    \n

    2.6.0 – 2024-06-04

    \n
      \n
    • Add – Logger for “Live Rates” feature on the front-end.
    • \n
    \n

    2.5.7 – 2024-05-13

    \n
      \n
    • Add – wc_connect_shipment_item_quantity_threshold and wc_connect_max_shipments_if_quantity_exceeds_threshold filter hooks to be able to cap the number of shipment splits possible for an item with very large quantity.
    • \n
    \n

    2.5.6 – 2024-05-06

    \n
      \n
    • Tweak – WooCommerce 8.8 compatibility.
    • \n
    \n

    2.5.5 – 2024-04-29

    \n
      \n
    • Add – Prevent upcoming Woo Shipping and Woo Tax plugins from running in parallel with this plugin unless both are active, then they will take over for this plugin.
    • \n
    \n

    2.5.4 – 2024-03-25

    \n
      \n
    • Tweak – WordPress 6.5 compatibility.
    • \n
    \n

    2.5.3 – 2024-03-12

    \n
      \n
    • Fix – Colorado tax nexus workaround should only apply to Colorado from addresses.
    • \n
    \n

    2.5.2 – 2024-03-04

    \n
      \n
    • Fix – Miscalculation tax from TaxJar and decided to use nexus address.
    • \n
    \n

    2.5.1 – 2024-02-12

    \n
      \n
    • Fix – Cannot call constructor in classes/wc-api-dev/class-wc-rest-dev-data-continents-controller.php.
    • \n
    \n

    2.5.0 – 2024-01-08

    \n
      \n
    • Add – Ability to keep connected to WordPress.com after Jetpack is uninstalled.
    • \n
    • Fix – Deprecation notices for PHP 8.2.
    • \n
    \n

    2.4.2 – 2023-11-30

    \n
      \n
    • Fix – When automated taxes are enabled, the order refund button will fail
    • \n
    \n

    2.4.1 – 2023-11-28

    \n
      \n
    • Fix – Street address is not included when recalculating the tax in edit order page.
    • \n
    \n

    2.4.0 – 2023-10-31

    \n
      \n
    • Add – Ability to connect to WordPress.com without the Jetpack plugin.
    • \n
    • Fix – NUX banner display on Edit Order pages.
    • \n
    \n

    2.3.7 – 2023-10-23

    \n
      \n
    • Add – Load Sift when printing a label.
    • \n
    \n

    2.3.6 – 2023-10-10

    \n
      \n
    • Fix – Occasionally block user to checkout when using WooCommerce Blocks.
    • \n
    • Fix – Fix notice error when shipping location(s) is disabled in WooCommerce settings.
    • \n
    \n

    2.3.5 – 2023-09-20

    \n
      \n
    • Tweak – Move Jetpack Connection requirement to the top in FAQ.
    • \n
    \n

    2.3.4 – 2023-09-05

    \n
      \n
    • Fix – Shipping label reports to display proper HTML.
    • \n
    \n

    2.3.3 – 2023-08-22

    \n
      \n
    • Tweak – Update .org assets.
    • \n
    \n

    2.3.2 – 2023-08-09

    \n
      \n
    • Add – Added QIT tools for development.
    • \n
    \n

    2.3.1 – 2023-07-17

    \n
      \n
    • Fix – Fix notice error on the WooCommerce tax settings page.
    • \n
    \n

    2.3.0 – 2023-07-11

    \n
      \n
    • Add – Add USPS HAZMAT support.
    • \n
    \n

    2.2.5 – 2023-05-23

    \n
      \n
    • Update – Security update.
    • \n
    \n

    2.2.4 – 2023-03-14

    \n
      \n
    • Fix – Incompatibility with Kadence WooCommerce Email Designer.
    • \n
    \n

    2.2.3 – 2023-02-14

    \n
      \n
    • Fix – Link correction on Automated taxes description text.
    • \n
    \n

    2.2.2 – 2023-02-02

    \n
      \n
    • Fix – Adjust checkout US zipcode validation to run only when exactly 5 or 10 digits are typed.
    • \n
    \n

    2.2.1 – 2023-01-24

    \n
      \n
    • Fix – Fix warning on checkout page apper if zipcode doesn’t match selected state.
    • \n
    \n

    2.2.0 – 2023-01-19

    \n
      \n
    • Add – Add option to let user pick whether to save the last package & service or not.
    • \n
    \n

    2.1.1 – 2023-01-02

    \n
      \n
    • Fix – Save the selected package box and do not skip the package step.
    • \n
    \n

    2.1.0 – 2022-11-30

    \n
      \n
    • Tweak – Catch malformed zipcode and display WC notice.
    • \n
    \n

    2.0.0 – 2022-11-16

    \n
      \n
    • Add – High-Performance Order Storage compatibility.
    • \n
    • Add – Add list of tax rate backup files for merchants to click and download.
    • \n
    • Tweak – Transition version numbering from SemVer to WordPress versioning.
    • \n
    \n

    1.26.3 – 2022-08-03

    \n
      \n
    • Tweak – Always let the user to pick the package box.
    • \n
    • Add – Add filter to override TaxJar result.
    • \n
    • Fix – Uncatch error when installing/connecting the Jetpack.
    • \n
    \n

    1.26.2 – 2022-07-04

    \n
      \n
    • Fix – Change the wp-calypso commit to fix NPM Error when run npm run prepare.
    • \n
    • Fix – E2E Tests: npm ci, update puppeteer to v2
    • \n
    • Fix – JS Tests: npm ci
    • \n
    • Tweak – Replace colors npm package with chalk
    • \n
    \n

    1.26.1 – 2022-06-21

    \n
      \n
    • Add – Display warning if non-roman character is entered in address fields.
    • \n
    • Fix – “Division by Zero” fatal error on PHP 8.
    • \n
    \n

    1.26.0 – 2022-05-27

    \n
      \n
    • Add – Tool to clear cached Tax server responses from the transients.
    • \n
    • Tweak – Enable shipping tax by default if is Florida interstate shipping.
    • \n
    \n

    1.25.28 – 2022-05-12

    \n
      \n
    • Fix – Notice: Undefined index: ‘from_country’ when validating TaxJar request.
    • \n
    \n

    1.25.27 – 2022-05-03

    \n
      \n
    • Fix – Cart with non-taxable product still calculate the tax.
    • \n
    • Tweak – Validate the TaxJar request before calling the api and cache 404 and 400 TaxJar response error for 5 minutes.
    • \n
    \n

    1.25.26 – 2022-04-19

    \n
      \n
    • Fix – Display error on cart block and checkout block from WC Blocks plugin.
    • \n
    • Fix – TaxJar does not calculate Quebec Sales Tax when shipping from Canadian address.
    • \n
    \n

    1.25.25 – 2022-03-29

    \n
      \n
    • Fix – TaxJar does not get the tax if the cart has non-taxable on the first item.
    • \n
    • Tweak – Use regex to check on WC Rest API route for WooCommerce Blocks compatibility.
    • \n
    \n

    1.25.24 – 2022-03-17

    \n
      \n
    • Fix – Empty document is opened when Firefox is set to open PDF file using another program.
    • \n
    • Fix – Label purchase modal sections getting cut off.
    • \n
    \n

    1.25.23 – 2022-02-10

    \n
      \n
    • Tweak – Make “Name” field optional if “Company” field is not empty.
    • \n
    • Fix – Added “Delete California tax rates” tool.
    • \n
    • Fix – Extract WC_Connect_TaxJar_Integration::backup_existing_tax_rates() for re-usability.
    • \n
    \n

    1.25.22 – 2022-02-02

    \n
      \n
    • Fix – TaxJar does not get the tax if the cart has non-taxable item.
    • \n
    • Tweak – Bump WP tested version to 5.9 and WC tested version to 6.1.
    • \n
    \n

    1.25.21 – 2022-01-26

    \n
      \n
    • Fix – Use ‘native’ pdf support feature for Firefox version 94 or later.
    • \n
    • Fix – Only call WC Subscriptions API when “access_token_secret” value is saved in database.
    • \n
    • Fix – Add name field to fields sent for EasyPost API address verification.
    • \n
    • Fix – Display company name under origin and destination address when create shipping label.
    • \n
    • Fix – Don’t override general “Enable Tax” setting with WC Services Automated Taxes setting.
    • \n
    \n

    1.25.20 – 2021-11-15

    \n
      \n
    • Fix – Hide “Shipping Label” and “Shipment Tracking” metabox when the label setting is disabled.
    • \n
    • Fix – Wrap TaxJar API zipcodes with wc_normalize_postcode() before inserting into the database.
    • \n
    • Fix – Update shipping label to only show non-refunded order line items.
    • \n
    • Fix – Added 3 digits currency code on shipping label price for non USD.
    • \n
    \n

    1.25.19 – 2021-10-14

    \n
      \n
    • Add – Notice about tax nexus in settings.
    • \n
    • Fix – Country drop down list no longer showing currency name.
    • \n
    \n

    1.25.18 – 2021-08-16

    \n
      \n
    • Add – Added “Automated Taxes” health item on status page.
    • \n
    • Fix – Show error when missing required destination phone for international shipments.
    • \n
    • Fix – Prevent PHP notice when a label’s commercial_invoice_url value is null.
    • \n
    • Fix – Prevent fatal error when viewing draft order.
    • \n
    • Tweak – Bump WP tested version to 5.8.
    • \n
    • Tweak – Bump WC Tested version to 5.5.
    • \n
    \n

    1.25.17 – 2021-07-13

    \n
      \n
    • Tweak – Replace Calypso FormCheckbox with CheckboxControl.
    • \n
    \n

    1.25.16 – 2021-07-09

    \n
      \n
    • Tweak – Replace components with @wordpress/components.
    • \n
    \n

    1.25.15 – 2021-06-30

    \n
      \n
    • Fix – Ensure shipping label metabox is displayed to users with the correct capabilities.
    • \n
    • Add – Added wcship_user_can_manage_labels filter to check permissions to print shipping labels.
    • \n
    • Add – Added wcship_manage_labels capability to check permissions to print shipping labels.
    • \n
    \n

    1.25.14 – 2021-06-15

    \n
      \n
    • Fix – Issue with printing blank label in Safari.
    • \n
    • Fix – DHL Express labels – require customs form when shipping to Puerto Rico.
    • \n
    • Fix – Update DHL Express pickup link.
    • \n
    \n

    1.25.13 – 2021-05-20

    \n
      \n
    • Fix – Prevent new sites from retrying failed connections.
    • \n
    • Fix – Data encoding when entities are part of order meta.
    • \n
    • Tweak – Update WC version support in headers.
    • \n
    • Fix – Plugin deletion when WooCommerce core is not present.
    • \n
    • Tweak – Rename automatic tax names for US.
    • \n
    • Fix – Check Jetpack constant defined by name.
    • \n
    • Fix – Sometimes taxes charged on shipping when they should not.
    • \n
    \n

    1.25.12 – 2021-04-21

    \n
      \n
    • Fix – UPS account connection form retry on invalid submission.
    • \n
    • Fix – Fix PHP 5.6 compatibility issue.
    • \n
    • Tweak – Update plugin author name.
    • \n
    • Fix – Removes unnecessary subscription debug error logs.
    • \n
    \n

    1.25.11 – 2021-04-06

    \n
      \n
    • Fix – Ensure status page is displayed on new WC navigation menu.
    • \n
    • Add – Run phpcbf as a pre-commit rule.
    • \n
    • Fix – Fix PHPUnit tests. Rename test_ to test- to match our phpcs rules. Remove travis and move to github action.
    • \n
    • Tweak – Updated .nvmrc to use 10.16.0
    • \n
    • Tweak – Update the shipping label status endpoint to accept and return multiple ids.
    • \n
    • Tweak – Display spinner icon during service data refresh.
    • \n
    • Add – Adds Dockerized E2E tests with GitHub Action integration.
    • \n
    • Fix – Handle DHL live rates notice creation and deletion errors.
    • \n
    \n

    1.25.10 – 2021-03-24

    \n
      \n
    • Add – Add an endpoint for shipping label creation eligibility and share code for store eligibility.
    • \n
    • Fix – Shipping validation notice shown when no address entered.
    • \n
    • Tweak – Stop retrying to fetch /services when authentication fails on connect server.
    • \n
    \n

    1.25.9 – 2021-03-17

    \n
      \n
    • Add – WC Admin notice about DHL live rates.
    • \n
    • Add – Live rates section in settings page.
    • \n
    • Tweak – Cleanup stripe functionality.
    • \n
    • Tweak – Display better errors on checkout page when address fields are missing / invalid.
    • \n
    • Tweak – Refresh on status page does not reload page.
    • \n
    • Fix – UPS invoice number allows numbers and letters.
    • \n
    • Add – Tracks shipping services used at checkout.
    • \n
    • Add – Update the existing endpoint POST /connect/packages to create shipping label packages, and add an endpoint PUT /connect/packages to update shipping label packages.
    • \n
    • Fix – Only display shipping validation errors on the cart or checkout pages.
    • \n
    • Tweak – Removes deprecated Jetpack constant JETPACK_MASTER_USER
    • \n
    • Fix – Revert radio button dot offset in the “Create shipping label” modal.
    • \n
    \n

    1.25.8 – 2021-03-02

    \n
      \n
    • Tweak – Add support for new Jetpack 9.5 data connection.
    • \n
    • Tweak – Change minimum Jetpack version support to Jetpack 7.5.
    • \n
    \n

    1.25.7 – 2021-02-09

    \n
      \n
    • Fix – Prevent error notices on checkout page load.
    • \n
    • Tweak – Highlight rate call usage over limit on WooCommerce Shipping settings page.
    • \n
    • Fix – Connect carrier account link broken on subdirectory installs.
    • \n
    • Fix – Position dot in the center of radio buttons in “Create shipping label”.
    • \n
    • Fix – Adjust radio button dot style in “Create shipping label” in high contrast mode on Windows.
    • \n
    \n

    1.25.6 – 2021-01-26

    \n
      \n
    • Fix – Refreshes shipping methods after registering or removing carrier accounts.
    • \n
    • Tweak – Changed rates response caching method from cache to transient.
    • \n
    \n

    1.25.5 – 2021-01-11

    \n
      \n
    • Fix – Redux DevTools usage update.
    • \n
    • Add – Display subscriptions usage.
    • \n
    • Add – Subscription activation.
    • \n
    • Add – Uses same DHL logo for all registered DHL accounts.
    • \n
    • Tweak – Adds WCCom access token and site ID to connect server request headers.
    • \n
    \n

    1.25.4 – 2020-12-08

    \n
      \n
    • Tweak – Remove Stripe connect functionality.
    • \n
    • Tweak – Remove unused method in shipping settings view.
    • \n
    • Fix – Breaking behavior on account registration page.
    • \n
    • Add – Allows registration of additional accounts.
    • \n
    • Tweak – Carrier description on dynamic carrier registration form.
    • \n
    • Fix – Adjust documentation links.
    • \n
    \n

    1.25.3 – 2020-11-24

    \n
      \n
    • Add – Initial code for WooCommerce.com subscriptions API.
    • \n
    • Add – Dynamic carrier registration form.
    • \n
    • Fix – When adding “signature required” to some packages, prices were not updating.
    • \n
    • Add – DHL Schedule Pickup link within order notes.
    • \n
    • Fix – UI fix for input validation for package dimensions and weights.
    • \n
    • Fix – Correct validation for UPS fields in Carrier Account connect form.
    • \n
    • Tweak – Add message to explain automated tax requires tax-exclusive product pricing.
    • \n
    • Fix – Disable USPS refunds for untracked labels only.
    • \n
    \n", "description": "

    Attention: Shipping features have moved to a new dedicated plugin. Download WooCommerce Shipping.

    \n

    Enable automated taxes
    \nThat’s it! Once you update your tax settings, your store will collect sales tax at checkout based on the store address in your WooCommerce Settings.

    \n

    Eliminate the need to even think about sales taxes for your store
    \nAutomatically calculate how much sales tax should be collected for WooCommerce orders — by city, country, or state — at checkout.

    \n

    External services

    \n

    This plugin relies on the following external services:

    \n
      \n
    1. \n

      WordPress.com connection:

      \n
        \n
      • Description: The plugin makes requests to our own endpoints at WordPress.com (proxied via https://api.woocommerce.com) to fetch automated tax calculations.
      • \n
      • Website: https://wordpress.com/
      • \n
      • Terms of Service: https://wordpress.com/tos/
      • \n
      • Privacy Policy: https://automattic.com/privacy/
      • \n
      \n
    2. \n
    3. \n

      Usage Tracking:

      \n
        \n
      • Description: The plugin will send usage statistics to our own service, after the user has accepted our Terms of Service.
      • \n
      • Script: https://stats.wp.com/w.js
      • \n
      • Terms of Service: https://wordpress.com/tos/
      • \n
      • Privacy Policy: https://automattic.com/privacy/
      • \n
      \n
    4. \n
    \n", "screenshots": "
    1. \"Enabling

      Enabling automated taxes

    2. \"Checking

      Checking on the health of WooCommerce Tax

    ", "installation": "

    This section describes how to install the plugin and get it working.

    \n
      \n
    1. Install and activate WooCommerce if you haven’t already done so
    2. \n
    3. Upload the plugin files to the /wp-content/plugins/woocommerce-tax directory, or install the plugin through the WordPress plugins screen directly.
    4. \n
    5. Activate the plugin through the ‘Plugins’ screen in WordPress
    6. \n
    7. Install, activate and connect to your WordPress.com account if you haven’t already done so
    8. \n
    9. Enable automated taxes from WooCommerce > Settings > Tax (make sure “enable taxes” is checked in General settings first)
    10. \n
    \n"}, "versions": {"1.0.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.0.0.zip", "1.1.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.3.2.zip", "1.4.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.4.1.zip", "1.5.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.5.0.zip", "1.6.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.6.2.zip", "1.7.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.8.3.zip", "1.9.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.9.1.zip", "2.0.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/plugin/woocommerce-services.2.2.5.zip", "2.3.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/plugin/woocommerce-services.2.3.7.zip", "2.4.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.4.2.zip", "2.5.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/plugin/woocommerce-services.2.5.7.zip", "2.6.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.6.2.zip", "2.7.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.7.0.zip", "2.8.0": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.5.zip", "2.8.6": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.6.zip", "2.8.7": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.7.zip", "2.8.8": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.8.zip", "2.8.9": "https://downloads.wordpress.org/plugin/woocommerce-services.2.8.9.zip", "3.0.0": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/woocommerce-services.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/woocommerce-services.3.1.1.zip", "3.2.0": "https://downloads.wordpress.org/plugin/woocommerce-services.3.2.0.zip", "trunk": "https://downloads.wordpress.org/plugin/woocommerce-services.zip", "1.10.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.10.0.zip", "1.10.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.10.1.zip", "1.11.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.11.0.zip", "1.12.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.12.2.zip", "1.12.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.12.3.zip", "1.13.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.13.0.zip", "1.13.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.13.1.zip", "1.13.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.13.2.zip", "1.13.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.13.3.zip", "1.14.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.14.0.zip", "1.14.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.14.1.zip", "1.15.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.15.0.zip", "1.15.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.15.1.zip", "1.16.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.16.0.zip", "1.16.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.16.1.zip", "1.17.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.17.0.zip", "1.17.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.17.1.zip", "1.18.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.18.0.zip", "1.19.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.19.0.zip", "1.20.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.20.0.zip", "1.21.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.21.0.zip", "1.21.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.21.1.zip", "1.22.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.0.zip", "1.22.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.1.zip", "1.22.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.2.zip", "1.22.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.3.zip", "1.22.4": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.4.zip", "1.22.5": "https://downloads.wordpress.org/plugin/woocommerce-services.1.22.5.zip", "1.23.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.23.0.zip", "1.23.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.23.1.zip", "1.23.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.23.2.zip", "1.24.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.24.0.zip", "1.24.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.24.1.zip", "1.24.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.24.2.zip", "1.24.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.24.3.zip", "1.25.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.0.zip", "1.25.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.1.zip", "1.25.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.2.zip", "1.25.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.3.zip", "1.25.4": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.4.zip", "1.25.5": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.5.zip", "1.25.6": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.6.zip", "1.25.7": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.7.zip", "1.25.8": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.8.zip", "1.25.9": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.9.zip", "1.26.0": "https://downloads.wordpress.org/plugin/woocommerce-services.1.26.0.zip", "1.26.1": "https://downloads.wordpress.org/plugin/woocommerce-services.1.26.1.zip", "1.26.2": "https://downloads.wordpress.org/plugin/woocommerce-services.1.26.2.zip", "1.26.3": "https://downloads.wordpress.org/plugin/woocommerce-services.1.26.3.zip", "3.0.10": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/woocommerce-services.3.0.11.zip", "1.25.10": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.10.zip", "1.25.11": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.11.zip", "1.25.12": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.12.zip", "1.25.13": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.13.zip", "1.25.14": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.14.zip", "1.25.15": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.15.zip", "1.25.16": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.16.zip", "1.25.17": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.17.zip", "1.25.18": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.18.zip", "1.25.19": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.19.zip", "1.25.20": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.20.zip", "1.25.21": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.21.zip", "1.25.22": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.22.zip", "1.25.23": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.23.zip", "1.25.24": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.24.zip", "1.25.25": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.25.zip", "1.25.26": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.26.zip", "1.25.27": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.27.zip", "1.25.28": "https://downloads.wordpress.org/plugin/woocommerce-services.1.25.28.zip"}, "downloaded": 45643841, "description": "

    Attention: Shipping features have moved to a new dedicated plugin. Download WooCommerce Shipping.

    \n

    Enable automated taxes
    \nThat’s it! Once you update your tax settings, your store will collect sales tax at checkout based on the store address in your WooCommerce Settings.

    \n

    Eliminate the need to even think about sales taxes for your store
    \nAutomatically calculate how much sales tax should be collected for WooCommerce orders — by city, country, or state — at checkout.

    \n

    External services

    \n

    This plugin relies on the following external services:

    \n
      \n
    1. \n

      WordPress.com connection:

      \n
        \n
      • Description: The plugin makes requests to our own endpoints at WordPress.com (proxied via https://api.woocommerce.com) to fetch automated tax calculations.
      • \n
      • Website: https://wordpress.com/
      • \n
      • Terms of Service: https://wordpress.com/tos/
      • \n
      • Privacy Policy: https://automattic.com/privacy/
      • \n
      \n
    2. \n
    3. \n

      Usage Tracking:

      \n
        \n
      • Description: The plugin will send usage statistics to our own service, after the user has accepted our Terms of Service.
      • \n
      • Script: https://stats.wp.com/w.js
      • \n
      • Terms of Service: https://wordpress.com/tos/
      • \n
      • Privacy Policy: https://automattic.com/privacy/
      • \n
      \n
    4. \n
    \n", "donate_link": "", "num_ratings": 104, "screenshots": {"1": {"src": "https://ps.w.org/woocommerce-services/assets/screenshot-1.png?rev=3312777", "caption": "Enabling automated taxes"}, "2": {"src": "https://ps.w.org/woocommerce-services/assets/screenshot-2.png?rev=3312777", "caption": "Checking on the health of WooCommerce Tax"}}, "support_url": "https://wordpress.org/support/plugin/woocommerce-services/", "contributors": {"bor0": {"avatar": "https://secure.gravatar.com/avatar/787d8ea71701ced680cd80411d656c20e0e600be5d34f6ce3478143d43dc9fd9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bor0/", "display_name": "Boro Sitnikovski"}, "royho": {"avatar": "https://secure.gravatar.com/avatar/1beda14f19fa93030ba2c66359dc270286820af6c667cdfeb4e87833c747f3a0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/royho/", "display_name": "royho"}, "ferdev": {"avatar": "https://secure.gravatar.com/avatar/97514e795a6ba717b20215ae0b24879d944210d409e33b86705337bb5cab6f5a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ferdev/", "display_name": "ferdev"}, "nabsul": {"avatar": "https://secure.gravatar.com/avatar/8d44c8af1dd6f21bc45fc0768a4381def5619fd4040e246d8cb3481fa5ed82af?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nabsul/", "display_name": "nabsul"}, "jkudish": {"avatar": "https://secure.gravatar.com/avatar/ca20d16a7871a44d060a80ad572c90be25dd5b73212b0a839fb0474e623ee357?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jkudish/", "display_name": "Joey Kudish"}, "allendav": {"avatar": "https://secure.gravatar.com/avatar/6c18ebc68e4e3734db0d22cc70dd578066e68d8e95adde397c3f49d2b0eaf634?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/allendav/", "display_name": "Allen Snook"}, "cshultz88": {"avatar": "https://secure.gravatar.com/avatar/240ded0dc0d41abeba516088e27382d09d0a8725ca0204a395dc4adaa5257a7d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cshultz88/", "display_name": "Chris Shultz"}, "danreylop": {"avatar": "https://secure.gravatar.com/avatar/7c538fe91aece87ffaccc21881f7b002248b4a511a2716e8e4ced0e67b8763ed?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/danreylop/", "display_name": "danreylop"}, "mikeyarce": {"avatar": "https://secure.gravatar.com/avatar/c874a094de3814e0b4b87674503fa440d6e9cfa95ab1ce03a6a4021f950a0d03?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mikeyarce/", "display_name": "Mikey Arce"}, "woothemes": {"avatar": "https://secure.gravatar.com/avatar/954fd30b03a485d54b947afb3a55c4ebd563e42e6634e2c07101771cfd61d7d1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woothemes/", "display_name": "WooThemes"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "harriswong": {"avatar": "https://secure.gravatar.com/avatar/c18d831ac4681be94ae87cb09021dcbb070d1d7a4c24c251235e2a363b34cd5a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/harriswong/", "display_name": "harriswong"}, "pauldechov": {"avatar": "https://secure.gravatar.com/avatar/67b5ee9a4f2ffb0dbf1c43072fc9935d4626f7d57ceee1756d340fbef08a3ccf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pauldechov/", "display_name": "Paul Dechov"}, "superdav42": {"avatar": "https://secure.gravatar.com/avatar/4db71383e65d04f6bb90aac13b03b1e3de7fece2a8e85de4ce1b35af5ca4128c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superdav42/", "display_name": "David Stone"}, "jeffstieler": {"avatar": "https://secure.gravatar.com/avatar/5d533a2924e93a7cd796d7755f6a32d0b96902fcd0da6a5eaec6e2694caf069b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jeffstieler/", "display_name": "Jeff Stieler"}, "robobot3000": {"avatar": "https://secure.gravatar.com/avatar/d9960a7b6278884b6856355cc7198bab8055d4ffeb37ba1b5edff68ecf0f64d7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/robobot3000/", "display_name": "Marcin"}, "woocommerce": {"avatar": "https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/woocommerce/", "display_name": "WooCommerce"}, "radogeorgiev": {"avatar": "https://secure.gravatar.com/avatar/755d8085894fa0a121ecfde2bcf6e2a24165c39f8638f6419c2250f5005dd162?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/radogeorgiev/", "display_name": "Radoslav Georgiev"}, "shaunkuschel": {"avatar": "https://secure.gravatar.com/avatar/e61511204badbee8ea543b8364a7fed627dd40f884a65de013196f12d4c66a75?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/shaunkuschel/", "display_name": "Shaun Kuschel a11n"}, "kellychoffman": {"avatar": "https://secure.gravatar.com/avatar/82b79ce0b96409d22b4a159f5a38cc52670b0ced251535297aa74ad7101a4ee0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kellychoffman/", "display_name": "Kelly Hoffman"}, "dappermountain": {"avatar": "https://secure.gravatar.com/avatar/ce8e00a0924cfe5769be851137ea8146fc0ce0ec80f23f17da9d1260b0c48cc4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dappermountain/", "display_name": "dappermountain"}, "orangesareorange": {"avatar": "https://secure.gravatar.com/avatar/f761c9c683a4f24e335a500a8f246b30413f596b57a95619c86a84139404f29f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/orangesareorange/", "display_name": "orangesareorange"}, "bartoszbudzanowski": {"avatar": "https://secure.gravatar.com/avatar/58c7507f9a698b1986d6231e7f2821dbdd89d98836a17cff459e1ee0ba50c942?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bartoszbudzanowski/", "display_name": "Bartosz B. a11n"}}, "last_updated": "2025-10-14 6:38pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/woocommerce-services.3.2.0.zip", "author_profile": "https://profiles.wordpress.org/woocommerce/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 600000, "aspiresync_meta": {"id": "019a30bf-fd46-739b-91a5-6b5582aebe14", "name": "WooCommerce Tax (formerly WooCommerce Shipping & Tax)", "slug": "woocommerce-services", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1760467080, "version": "3.2.0"}, "support_threads": 3, "requires_plugins": ["woocommerce"], "short_description": "We’re here to help with tax rates: collect accurate sales tax, automatically.", "author_block_count": 0, "author_block_rating": 40, "commercial_support_url": "", "support_threads_resolved": 3}'); -INSERT INTO public.plugins VALUES ('019a30c1-67cc-73b4-833c-d403005e0542', 'wordfence', 'Wordfence Security – Firewall, Malware Scan, and Login Security', 'Firewall, Malware Scanner, Two Factor Auth, and Comprehensive Security Features, powered by our 24-hour team. Make security a priority with Wordfence.', '

    -

    THE MOST POPULAR WORDPRESS FIREWALL & SECURITY SCANNER

    -

    WordPress security requires a team of dedicated analysts researching the latest malware variants and WordPress exploits, turning them into firewall rules and malware signatures, and releasing those to customers in real-time.

    -

    Choose the right protection for you: Wordfence Free, Premium, Care or Response

    -

    Wordfence is widely acknowledged as the number one WordPress security research team in the World. Our plugin provides a comprehensive suite of security features, and our team’s research is what powers our plugin and provides the level of security that we are known for.

    -

    At Wordfence, WordPress security isn’t a division of our business – WordPress security is all we do. We employ a global 24-hour dedicated incident response team that provides our priority customers with a 1 hour response time for any security incident.

    -

    The sun never sets on our global security team and we run a sophisticated threat intelligence platform to aggregate, analyze and produce ground breaking security research on the newest security threats.

    -

    Wordfence Security includes an endpoint firewall, malware scanner, robust login security features, live traffic views, and more. Our Threat Defense Feed arms Wordfence with the newest firewall rules, malware signatures, and malicious IP addresses it needs to keep your website safe.

    -

    Rounded out by 2FA and a suite of additional features, Wordfence is the most comprehensive WordPress security solution available.

    -

    🔥 WORDPRESS FIREWALL

    -
      -
    • Web Application Firewall identifies and blocks malicious traffic. Built and maintained by a large team focused 100% on WordPress security.
    • -
    • Real-time firewall rule and malware signature [Premium] updates via the Threat Defense Feed (free version is delayed by 30 days).
    • -
    • Real-time IP Blocklist [Premium] blocks all requests from the most malicious IPs, protecting your site while reducing load.
    • -
    • Protects your site at the endpoint, enabling deep integration with WordPress. Unlike cloud alternatives, it does not break encryption, cannot be bypassed and cannot leak data.
    • -
    • Integrated malware scanner blocks requests that include malicious code or content.
    • -
    • Protection from brute force attacks by limiting login attempts.
    • -
    -

    📡 WORDPRESS SECURITY SCANNER

    -
      -
    • Malware scanner checks core files, themes and plugins for malware, bad URLs, backdoors, SEO spam, malicious redirects and code injections.
    • -
    • Real-time malware signature updates [Premium] via the Threat Defense Feed (free version is delayed by 30 days).
    • -
    • Compares with WordPress.org repository your core files, themes and plugins, checking their integrity and reporting any changes to you.
    • -
    • Repair WordPress core, theme, and plugin files that have changed by overwriting them with a pristine, original version. Delete any files that don’t belong easily within the Wordfence interface.
    • -
    • **Malware Removal Tools: “Delete File” and “Delete All Deletable Files” options allow for efficient malware removal. Remember to investigate the scan results and backup files first!
    • -
    • Checks your site for known security vulnerabilities and alerts you to any issues. Also alerts you to potential security issues when a plugin has been closed or abandoned.
    • -
    • Checks your content safety by scanning file contents, posts and comments for dangerous URLs and suspicious content.
    • -
    • Checks to see if your site or IP have been blocklisted [Premium] for malicious activity, generating spam or other security issues.
    • -
    -

    🔒 LOGIN SECURITY

    - -

    📋 SECURITY AUDIT LOG [Premium]

    -
      -
    • The Audit Log monitors all changes and actions in security-sensitive areas of the site.
    • -
    • Remote tamper-proof data storage via Wordfence Central.
    • -
    • Monitor events and actions ranging from user creation and editing to plugin/theme installation and updates to post and page changes.
    • -
    • Configurable to log all events or significant events only, which includes all authentication, site configuration, and site functionality events.
    • -
    -

    🌐 WORDFENCE CENTRAL

    -
      -
    • Wordfence Central is a powerful and efficient way to manage the security for multiple sites in one place.
    • -
    • Centralized management: Efficiently assess the security status of all your websites in one view. View detailed security findings without leaving Wordfence Central.
    • -
    • Powerful templates make configuring Wordfence a breeze.
    • -
    • Highly configurable alerts can be delivered via email, SMS or Slack. Improve the signal to noise ratio by leveraging severity level options and a daily digest option.
    • -
    • Track and alert on important security events including administrator logins, breached password usage and surges in attack activity.
    • -
    • Free to use for unlimited sites.
    • -
    -

    🛠️ SECURITY TOOLS

    -
      -
    • Live Traffic monitors visits and hack attempts not shown in other analytics packages in real time; including origin, their IP address, the time of day and time spent on your site.
    • -
    • Block attackers by IP or build advanced rules based on IP Range, Hostname, User Agent and Referrer.
    • -
    • Country blocking available with Wordfence Premium.
    • -
    -', '8.1.0', 'Mark Maunder', '4.7', '7.0', '6.8.3', 'https://downloads.wordpress.org/plugin/wordfence.8.1.0.zip', '2012-04-21 00:00:00+00', '2025-08-25 18:27:00+00', 'https://profiles.wordpress.org/mmaunder/', 94, 4700, 178, 161, 5000000, 390248510, 'https://www.wordfence.com/', NULL, 'commercial', 'https://support.wordfence.com/', 'https://wordpress.org/support/plugin/wordfence/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Wordfence Security – Firewall, Malware Scan, and Login Security", "slug": "wordfence", "tags": {"2fa": "2FA", "malware": "malware", "scanner": "scanner", "firewall": "firewall", "security": "security"}, "added": "2012-04-21", "icons": {"1x": "https://ps.w.org/wordfence/assets/icon.svg?rev=2070865", "svg": "https://ps.w.org/wordfence/assets/icon.svg?rev=2070865"}, "author": "Mark Maunder", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102", "high": "https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102"}, "ratings": {"1": 254, "2": 43, "3": 65, "4": 105, "5": 4233}, "version": "8.1.0", "homepage": "https://www.wordfence.com/", "requires": "4.7", "sections": {"faq": "

    Visit our website to access our official documentation which includes security feature descriptions, common solutions and comprehensive help.

    \n\n
    \nHow does Wordfence Security protect sites from attackers?\n\n

    \n

    The WordPress security plugin provides the best protection available for your website. Powered by the constantly updated Threat Defense Feed, Wordfence Firewall stops you from getting hacked. Wordfence Scan leverages the same proprietary feed, alerting you quickly about security issues or if your site is compromised. The Live Traffic view gives you real-time visibility into traffic and hack attempts on your website. A deep set of additional tools round out the most comprehensive WordPress security solution available.

    \n

    \n
    \nWhat features does Wordfence Premium enable?\n\n

    \n

    We offer a Premium API key that gives you real-time updates to the Threat Defense Feed which includes a real-time IP blocklist, firewall rules, and malware signatures. Premium support, country blocking, more frequent scans, and spam and spamvertising checks are also included. Click here to sign-up for Wordfence Premium now or simply install Wordfence free and start protecting your website.

    \n

    \n
    \nHow does the Wordfence WordPress Firewall protect websites?\n\n

    \n

      \n
    • Web Application Firewall stops you from getting hacked by identifying malicious traffic, blocking attackers before they can access your website.
    • \n
    • Threat Defense Feed automatically updates firewall rules that protect you from the latest threats. Premium members receive the real-time version.
    • \n
    • Block common WordPress security threats like fake Googlebots, malicious scans from hackers and botnets.
    • \n
    \n

    \n
    \nWhat checks does the Wordfence Security Scanner perform?\n\n

    \n

      \n
    • Scans core files, themes and plugins against WordPress.org repository versions to check their integrity. Verify security of your source.
    • \n
    • See how files have changed. Optionally repair changed files that are security threats.
    • \n
    • Scans for signatures of over 44,000 known malware variants that are known WordPress security threats.
    • \n
    • Scans for many known backdoors that create security holes including C99, R57, RootShell, Crystal Shell, Matamu, Cybershell, W4cking, Sniper, Predator, Jackal, Phantasma, GFS, Dive, Dx and many more.
    • \n
    • Continuously scans for malware and phishing URL’s including all URLs on the Google Safe Browsing List in all your comments, posts and files that are security threats.
    • \n
    • Scans for heuristics of backdoors, trojans, suspicious code and other security issues.
    • \n
    \n

    \n
    \nWhat security monitoring features does Wordfence include?\n\n

    \n

      \n
    • See all your traffic in real-time, including robots, humans, 404 errors, logins and logouts and who is consuming most of your content. Enhances your situational awareness of which security threats your site is facing.
    • \n
    • A real-time view of all traffic including automated bots that often constitute security threats that Javascript analytics packages never show you.
    • \n
    • Real-time traffic includes reverse DNS and city-level geolocation. Know which geographic area security threats originate from.
    • \n
    • Monitors disk space which is related to security because many DDoS attacks attempt to consume all disk space to create denial of service.
    • \n
    \n

    \n
    \nWhat login security features are included\n\n

    \n

      \n
    • See all your traffic in real-time, including robots, humans, 404 errors, logins and logouts and who is consuming most of your content. Enhances your situational awareness of which security threats your site is facing.
    • \n
    • A real-time view of all traffic including automated bots that often constitute security threats that Javascript analytics packages never show you.
    • \n
    • Real-time traffic includes reverse DNS and city-level geolocation. Know which geographic area security threats originate from.
    • \n
    • Monitors disk space which is related to security because many DDoS attacks attempt to consume all disk space to create denial of service.
    • \n
    \n

    \n
    \nHow will I be alerted if my site has a security problem?\n\n

    \n

    Wordfence sends security alerts via email. Once you install Wordfence, you will configure a list of email addresses where security alerts will be sent. When you receive a security alert, make sure you deal with it promptly to ensure your site stays secure.

    \n

    \n
    \nDo I need a security plugin like Wordfence if I’m using a cloud based firewall (WAF)?\n\n

    \n

    Wordfence provides true endpoint security for your WordPress website. Unlike cloud based firewalls, Wordfence executes within the WordPress environment, giving it knowledge like whether the user is signed in, their identity and what access level they have. Wordfence uses the user’s access level in more than 80% of the firewall rules it uses to protect WordPress websites. Learn more about the Cloud WAF identity problem here. Additionally, cloud based firewalls can be bypassed, leaving your site exposed to attackers. Because Wordfence is an integral part of the endpoint (your WordPress website), it can’t be bypassed. Learn more about the Cloud WAF bypass problem here. To fully protect the investment you’ve made in your website you need to employ a defense in depth approach to security. Wordfence takes this approach.

    \n

    \n
    \nWhat blocking features does Wordfence include?\n\n

    \n

      \n
    • Real-time blocking of known attackers. If another site using Wordfence is attacked and blocks the attacker, your site is automatically protected.
    • \n
    • Block entire malicious networks. Includes advanced IP and Domain WHOIS to report malicious IP’s or networks and block entire networks using the firewall. Report WordPress security threats to network owner.
    • \n
    • Rate limit or block WordPress security threats like aggressive crawlers, scrapers and bots doing security scans for vulnerabilities in your site.
    • \n
    • Choose whether you want to block or throttle users and robots who break your WordPress security rules.
    • \n
    • Premium users can also block countries and schedule scans for specific times and a higher frequency.
    • \n
    \n

    \n
    \nWhat differentiates Wordfence from other WordPress Security plugins?\n\n

    \n

      \n
    • Wordfence Security provides a WordPress Firewall developed specifically for WordPress and blocks attackers looking for vulnerabilities on your site. The Firewall is powered by our Threat Defense Feed which is continually updated as new threats emerge. Premium customers receive updates in real-time.
    • \n
    • Wordfence verifies your website source code integrity against the official WordPress repository and shows you the changes.
    • \n
    • Wordfence scans check all your files, comments and posts for URLs in Google’s Safe Browsing list. We are the only plugin to offer this very important security enhancement.
    • \n
    • Wordfence scans do not consume large amounts of your bandwidth because all security scans happen on your web server which makes them very fast.
    • \n
    • Wordfence fully supports WordPress Multi-Site which means you can security scan every blog in your Multi-Site installation with one click.
    • \n
    • Wordfence includes Two-Factor authentication, the most secure way to stop brute force attackers in their tracks.
    • \n
    • Wordfence fully supports IPv6 including giving you the ability to look up the location of IPv6 addresses, block IPv6 ranges, detect IPv6 country and do a whois lookup on IPv6 addresses and more.
    • \n
    \n

    \n
    \nWill Wordfence slow down my website?\n\n

    \n

    No. Wordfence Security is extremely fast and uses techniques like caching its own configuration data to avoid database lookups and blocking malicious attacks that would slow down your site.

    \n

    \n
    \nWhat if my site has already been hacked?\n\n

    \n

    Wordfence Security is able to repair core files, themes and plugins on sites where security is already compromised. You can follow this guide on how to clean a hacked website using Wordfence. If you are cleaning your own site after a hack, note that site security cannot be assured unless you do a full reinstall if your site has been hacked. We recommend you only use Wordfence Security to get your site into a running state in order to recover the data you need to do a full reinstall. If you need help with a security issue, check out Wordfence Care, which offers hands-on support from our team, including dealing with a hacked site. For mission-critical sites, check out Wordfence Response.

    \n

    \n
    \nDoes Wordfence Security support IPv6?\n\n

    \n

    Yes. We fully support IPv6 with all security functions including country blocking, range blocking, city lookup, whois lookup and all other security functions. If you are not running IPv6, Wordfence will work great on your site too. We are fully compatible with both IPv4 and IPv6 whether you run both or only one addressing scheme.

    \n

    \n
    \nDoes Wordfence Security support Multi-Site installations?\n\n

    \n

    Yes. WordPress Multi-Site is fully supported. Using Wordfence you can scan every blog in your network for malware with one click. If one of your customers posts a page or post with a known malware URL that threatens your whole domain with being blocklisted by Google, we will alert you in the next scan.

    \n

    \n
    \nWhat support options are available for Wordfence users?\n\n

    \n

    Providing excellent customer service is very important to us. Our free users receive volunteer-level support in our support forums. Wordfence Premium customers get paid ticket-based support. Wordfence Care customers receive hands-on support including help with security incidents and a yearly security audit. Wordfence Response customers get 24/7/365 support from our incident response team, with a 1 hour response time, and a maximum of 24 hours to resolve a security issue.

    \n

    \n
    \nWhere can I learn more about WordPress security?\n\n

    \n

    Designed for every skill level, The WordPress Security Learning Center is dedicated to deepening users’ understanding of security best practices by providing free access to entry-level articles, in-depth articles, videos, industry survey results, graphics and more.

    \n

    \n
    \nWhere can I find the Wordfence Terms of Service and Privacy Policy?\n\n

    \n

    These are available on our website: Terms of Service and Privacy Policy

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    AWESOME PLUGIN

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ideaup on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''m using WordFence on all of my client''s websites and I''m sure it helped me to avoid attacks and malware, perhaps if the premium license will be cheaper surely I buy some of them

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Das Beste

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hanspeterdohr on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Das Beste ;-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy venty12 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good solution to secure WordPress...

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does what it says on the tin.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy denisotoole2017 on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very happy with this plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ridebt on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Il folosesc de 2 ani si sunt foarte multumit de el

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Safety and convenience

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Maurizio Lombardo (maxmediapubblicita) on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The Best

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great helps me to be safe !!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sqwell on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I had a really hard time this year with all those hacking bots, they kept finding new ways to access things, but now with Wordfence, I feel like I''ve been helped considerably! They still keep trying to use old log-in data that was leaked at some point. Now I just monitor everything as closely as possible and automatically update plugins and themes. A backup is easier to restore after a bad update. Hackers nest in places that are often not easily noticed, and restoring a backup often doesn''t do much. \"Thank you for the free version, which I already like so much.\"

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Krzysztof (autori76) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hi. It seems to be doing its job. I am happy with it. Thanks :-)

    \n\n\n\n

    Wordfence Security

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alexanderviteria on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Free version works great

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Saving Grace

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy BJ Harrington (bj78spider) on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have used WordFence in the past at other companies. I recently started with a new company, and one morning found out our site had been hacked, and our traffic was being re-routed to an Instanbul Escort Service!

    \n\n\n\n

    I jumped into action, and immediately install the free WordFence plug in, and ran a scan. It found 4 infected file. I deleted/repaired, and instantly our site was restored! Thanks WordFence.

    \n\n\n\n

    I am currently working to centralize all of our websites and have WordFence protecting all of them.

    \n
    \n
    \n", "changelog": "

    8.1.0 – August 25, 2025

    \n
      \n
    • Improvement: Added password scanning support for WordPress 6.8 and later
    • \n
    • Improvement: Limited email alerts to 5 per hour by default and added notification when limit has been reached
    • \n
    • Improvement: Improved URL scanning performance
    • \n
    • Improvement: Updated GeoIP database
    • \n
    • Change: Reduced scan result severity for vulnerabilities with high attack complexity or required privileges
    • \n
    • Change: Added messaging around WAF support when NGINX Unit is detected
    • \n
    • Change: Added notice and scan result about Wordfence Assistant
    • \n
    • Change: Adjusted IPv6 connection issue message and appearance
    • \n
    • Fix: Prevented deprecation notice about calling base64_encode with null parameter
    • \n
    • Fix: Prevented deprecation message about calling preg_match with null parameter
    • \n
    • Fix: Corrected license type shown on dashboard when expiring
    • \n
    • Fix: Prevented disabled getmyuid function from causing fatal error
    • \n
    • Fix: Prevented disabled get_current_user function from causing fatal error
    • \n
    • Fix: Prevented notice about _load_textdomain_just_in_time being called incorrectly
    • \n
    \n

    8.0.5 – April 8, 2025

    \n
      \n
    • Fix: Compatibility fixes for WordPress 6.8
    • \n
    \n

    8.0.4 – March 19, 2025

    \n
      \n
    • Improvement: Improved error handling and messaging for some responses from our servers
    • \n
    • Improvement: Added messaging when a site may be using the same free license shared among multiple sites because it can cause the sites to use the same scan schedule rather than spreading out the load
    • \n
    • Improvement: Updated the readme content and formatting
    • \n
    \n

    8.0.3 – January 15, 2025

    \n
      \n
    • Improvement: Added support for hosts relocating the WAF’s auto-prepend file via the constant/envvar WORDFENCE_WAF_PREPEND_DIRECTORY
    • \n
    • Improvement: Added detection for non-repo plugins and themes to avoid the scanner reporting changes when the same slug + version exists within the wordpress.org repo
    • \n
    • Improvement: Messaging for Central disconnections now better reflects the user making the change
    • \n
    • Improvement: Scan errors due to unreachable Wordfence servers will now provide a link to our status page to check for outages
    • \n
    • Improvement: Reduced the number of network calls created to sync scan issues when updates are performed in bulk
    • \n
    • Change: Reworked setting caching to avoid issues with some object caches
    • \n
    • Change: Reworked cURL check to avoid using WP_Http_Curl, which has been deprecated
    • \n
    • Fix: Normalized all wordfence.com links to be https
    • \n
    • Fix: Fixed a rare error that could occur on the diagnostics page when displaying a list of error logs
    • \n
    • Fix: Removed the “back to top” button and related script block from emailed diagnostics
    • \n
    • Fix: Fixed some UI coloring that did not correctly reflect the license type in use
    • \n
    \n

    8.0.2 – January 2, 2025

    \n
      \n
    • Improvement: General compatibility improvements and better error handling for PHP 8+
    • \n
    • Improvement: Added audit log status to the plugin dashboard
    • \n
    • Change: Increased width of diagnostics text export for better legibility
    • \n
    • Fix: Addressed an error with mail hooks and the audit log when third party plugins send unexpected value types
    • \n
    \n

    8.0.1 – November 14, 2024

    \n
      \n
    • Improvement: Updated GeoIP database
    • \n
    • Change: Revised some help text related to the audit log to be more clear
    • \n
    • Fix: Improved audit log compatibility with some plugins that would cause excessive noise due to their behaviors around setting up user roles and capabilities
    • \n
    • Fix: Fixed a log notice that could occur when deactivating Wordfence with audit log events still pending and a broken Wordfence Central link
    • \n
    \n

    8.0.0 – November 4, 2024

    \n
      \n
    • Improvement: Introduced the Wordfence Audit Log, a new premium feature to monitor all changes and actions in security-sensitive areas of the site with remote tamper-proof data storage via Wordfence Central
    • \n
    • Change: Increased the minimum supported WordPress version to 4.7
    • \n
    • Change: Increased the minimum supported PHP version to 7.0
    • \n
    \n

    7.11.7 – July 29, 2024

    \n
      \n
    • Improvement: Optimized scan performance by reducing database queries by approximately 38% along with CPU usage
    • \n
    • Fix: Added translation support for “Page not found” string when viewing recent traffic
    • \n
    \n

    7.11.6 – June 6, 2024

    \n
      \n
    • Improvement: Revised the strong password requirements notice to be more readable
    • \n
    • Improvement: Removed unnecessary calls for the plugin and theme vulnerability checks
    • \n
    • Improvement: Reduced the frequency of calls to Wordfence Central during some operations where the values do not need to be synced
    • \n
    • Improvement: Refactored some queries to avoid the automatic SHOW FULL COLUMNS queries that WordPress performs to verify database encodings
    • \n
    • Improvement: Infrequently-used config values are no longer automatically loaded into memory and instead loaded only on demand
    • \n
    • Fix: Fixed an issue where multisite installations using the WAF mysqli storage engine could repeatedly attempt to update WAF rules when not in optimized mode
    • \n
    • Improvement: Updated the bundled GeoIP database
    • \n
    • Change: Revised the formatting of TOTP app URLs to prioritize the site’s own URL for better sorting and display
    • \n
    • Fix: Fixed the last captcha column in the users page so it no longer displays “(not required)” on 2FA users since that no longer applies
    • \n
    • Fix: Added a check in wflogs/rules.php to only run when within the WAF’s bootstrap stage when hosted behind nginx
    • \n
    \n

    7.11.5 – April 3, 2024

    \n
      \n
    • Fix: Revised the behavior of the reCAPTCHA verification to use the documented expiration period of the token and response to avoid sending verification requests too frequently, which could artificially lower scores in some circumstances
    • \n
    • Fix: Addressed PHP 8 deprecation notices in the file differ used by file changed scan results
    • \n
    • Fix: Reduced the frequency of Wordfence Central status update callbacks in sections of the scan that occur quickly in sequence
    • \n
    \n

    7.11.4 – March 11, 2024

    \n
      \n
    • Change: CAPTCHA verification when enabled now additionally applies to 2FA logins (may send an email verification on low scores) and no longer reveals whether a user exists for the submitted account credentials (credit: Raxis)
    • \n
    • Fix: Addressed a potential PHP 8 notice in the human/bot detection AJAX call
    • \n
    • Fix: Addressed a potential PHP 8 notice when requesting a lockout unlock verification email
    • \n
    • Fix: Fixed the emailed diagnostics view not showing the missing table information when applicable
    • \n
    • Fix: Improved quick scan logic to base timing on regular scans so they’re more evenly distributed
    • \n
    \n

    7.11.3 – February 15, 2024

    \n
      \n
    • Fix: Fixed an issue with sites containing invalid Wordfence Central site data where they could throw an error when viewing Wordfence pages
    • \n
    \n

    7.11.2 – February 14, 2024

    \n
      \n
    • Improvement: Enhanced the vulnerability scan to check and alert for WordPress core vulnerabilities and to adjust the severity of the scan result based on findings or available updates
    • \n
    • Improvement: Updated the bundled GeoIP database
    • \n
    • Improvement: Increased compatibility of brute force protection with plugins that override the normal login flow and omit traditional hooks
    • \n
    • Change: Adjusted the behavior of automatic quick scans to schedule themselves further away from full scans
    • \n
    • Fix: Added detection for a site being linked to a non-matching Wordfence Central record (e.g., when cloning the database to a staging site)
    • \n
    • Fix: Streamlined the license and terms of use installation flow to avoid unnecessary prompting
    • \n
    • Fix: Fixed an issue where user profiles with a selected locale different from the site itself could end up loading the site’s locale instead
    • \n
    \n

    7.11.1 – January 2, 2024

    \n
      \n
    • Improvement: Added “.env” to the files checked for “Scan for publicly accessible configuration, backup, or log files”
    • \n
    • Improvement: Provided better descriptive text for the option “Block IPs who send POST requests with blank User-Agent and Referer”
    • \n
    • Improvement: The diagnostics page now displays the contents of any auto_prepend_file .htaccess/.user.ini block for troubleshooting
    • \n
    • Fix: Fixed an issue where a login lockout on a WooCommerce login form could fail silently
    • \n
    • Fix: The scan result for abandoned plugins no longer states it has been removed from wordpress.org if it is still listed
    • \n
    • Fix: Addressed an exception parsing date information in non-repo plugins that have a bad last_updated value
    • \n
    • Fix: The URL scanner no longer generates a log warning when matching a potential URL fragment that ends up not being a valid URL
    • \n
    \n

    7.11.0 – November 28, 2023

    \n
      \n
    • Improvement: Added new functionality for trusted proxy presets to support proxies such as Amazon CloudFront, Ezoic, and Quic.cloud
    • \n
    • Improvement: WAF rule and malware signature updates are now signed with SHA-256 as well for hosts that no longer build SHA1 support
    • \n
    • Improvement: Updated the bundled trusted CA certificates
    • \n
    • Change: The WAF will no longer attempt to fetch rule or blocklist updates when run via WP-CLI
    • \n
    • Fix: Removed uses of SQL_CALC_FOUND_ROWS, which is deprecated as of MySQL 8.0.17
    • \n
    • Fix: Fixed an issue where final scan summary counts in some instances were not sent to Central
    • \n
    • Fix: Fixed a deprecation notice for get_class in PHP 8.3.0
    • \n
    • Fix: Corrected an output error in the connectivity section of Diagnostics in text mode
    • \n
    \n

    7.10.7 – November 6, 2023

    \n
      \n
    • Fix: Compatibility fix for WordPress 6.4 on the login page styling
    • \n
    \n

    7.10.6 – October 30, 2023

    \n
      \n
    • Fix: Addressed an issue with multisite installations when the wp_options tables had different encodings/collations
    • \n
    \n

    7.10.5 – October 23, 2023

    \n
      \n
    • Improvement: Updated the bundled GeoIP database
    • \n
    • Improvement: Added detection for Cloudflare reverse proxies blocking callbacks to the site
    • \n
    • Change: Files are no longer excluded from future scans if a previous scan stopped during their processing
    • \n
    • Fix: Added handling for the pending WordPress 6.4 change that removes $wpdb->use_mysqli
    • \n
    • Fix: The WAF MySQLi storage engine will now work correctly when either DB_COLLATE or DB_CHARSET are not defined
    • \n
    • Fix: Added additional error handling to Central calls to better handle request failures or conflicts
    • \n
    • Fix: Addressed a warning that would occur if a non-repo plugin update hook did not provide a last updated date
    • \n
    • Fix: Fixed an error in PHP 8 that could occur if the time correction offset was not numeric
    • \n
    • Fix: 2FA AJAX calls now use an absolute path rather than a full URL to avoid CORS issues on sites that do not canonicalize www and non-www requests
    • \n
    • Fix: Addressed a race condition where multiple concurrent hits on multisite could trigger overlapping role sync tasks
    • \n
    • Fix: Improved performance when viewing the user list on large multisites
    • \n
    • Fix: Fixed a UI bug where an invalid code on 2FA activation would leave the activate button disabled
    • \n
    • Fix: Reverted a change on error modals to bring back the additional close button for better accessibility
    • \n
    \n

    7.10.4 – September 25, 2023

    \n
      \n
    • Improvement: “Admin created outside of WordPress” scan results may now be reviewed and approved
    • \n
    • Improvement: The WAF storage engine may now be specified by setting the environmental variable “WFWAF_STORAGE_ENGINE”
    • \n
    • Improvement: Detect when a plugin or theme with a custom update handler is broken and blocking update version checks
    • \n
    • Change: Deprecated support for WordPress versions lower than 4.7.0
    • \n
    • Change: Exclude parse errors of a damaged compiled rules file from reporting
    • \n
    • Fix: Suppress PHP notices related to rule loading when running WP-CLI
    • \n
    • Fix: Fixed an issue with the scan monitor cron that could leave it running unnecessarily
    • \n
    \n

    7.10.3 – July 31, 2023

    \n
      \n
    • Improvement: Updated GeoIP database
    • \n
    • Fix: Added missing text domain to translation function call
    • \n
    • Fix: Corrected inconsistent styling of switch controls
    • \n
    • Change: Made MySQLi storage engine the default for Flywheel hosted sites
    • \n
    \n

    7.10.2 – July 17, 2023

    \n
      \n
    • Fix: Prevented bundled sodium_compat library from conflicting with versions included with older WordPress versions
    • \n
    \n

    7.10.1 – July 12, 2023

    \n
      \n
    • Improvement: Added support for processing arrays of files in the WAF
    • \n
    • Improvement: Refactored security event processing to send events in bulk
    • \n
    • Improvement: Updated bundled sodium_compat and random_compat libraries
    • \n
    • Fix: Prevented deprecation warning caused by dynamic property creation
    • \n
    • Fix: Added translation support for additional strings
    • \n
    • Change: Adjusted Wordfence registration UI
    • \n
    \n

    7.10.0 – June 21, 2023

    \n
      \n
    • Improvement: Added translation support for strings from login security plugin
    • \n
    • Improvement: Added translator notes regarding word order and hidden text
    • \n
    • Improvement: Added translation support for additional strings
    • \n
    • Improvement: Prevented scans from failing if unreadable directories are encountered
    • \n
    • Improvement: Added help link to IPv4 scan option
    • \n
    • Improvement: Updated scan result text to clarify meaning of plugins removed from wordpress.org
    • \n
    • Improvement: Made “Increased Attack Rate” emails actionable
    • \n
    • Improvement: Updated GeoIP database
    • \n
    • Improvement: Updated JavaScript libraries
    • \n
    • Fix: Corrected IPv6 address expansion
    • \n
    • Fix: Ensured long request payloads for malicious requests are recorded in live traffic
    • \n
    • Fix: Prevented “commands out of sync” database error messages when the database connection has failed
    • \n
    • Fix: Prevented rare JSON encoding issues from breaking free license registration
    • \n
    • Fix: Prevented PHP notice from being logged when request parameter is missing
    • \n
    • Fix: Prevented deprecation warning in PHP 8.1
    • \n
    • Change: Moved detection for old TimThumb files to malware signature
    • \n
    • Change: Moved translation file from .po to .pot
    • \n
    • Change: Renamed “Macedonia” to “North Macedonia, Republic of”
    • \n
    \n

    7.9.3 – May 31, 2023

    \n
      \n
    • Improvement: Added exception handling to prevent WAF errors from being fatal
    • \n
    • Fix: Corrected error caused by method call on null in WAF
    • \n
    • Change: Deprecated support for PHP 5.5 and 5.6, ended support for PHP 5.3 and 5.4
    • \n
    • Change: Specified WAF version parameter when requesting firewall rules
    • \n
    \n

    7.9.2 – March 27, 2023

    \n
      \n
    • Improvement: The vulnerability severity score (CVSS) is now shown with any vulnerability findings from the scanner
    • \n
    • Improvement: Changed several links during initial setup to open in a new window/tab so it doesn’t interrupt installation
    • \n
    • Change: Removed the non-https callback test to the Wordfence servers
    • \n
    • Fix: Fixed an error on PHP 8 that could occur when checking for plugin updates and another plugin has a broken hook
    • \n
    • Fix: Added a check for disabled functions when generating support diagnostics to avoid an error on PHP 8
    • \n
    • Fix: Prevent double-clicking when activating 2FA to avoid an “already set up” error
    • \n
    \n

    7.9.1 – March 1, 2023

    \n
      \n
    • Improvement: Further improved performance when viewing 2FA settings and hid user counts by default on sites with many users
    • \n
    • Fix: Adjusted style inclusion and usage to prevent missing icons
    • \n
    • Fix: Avoided using the ctype extension as it may not be enabled
    • \n
    • Fix: Prevented fatal errors caused by malformed Central keys
    • \n
    \n

    7.9.0 – February 14, 2023

    \n
      \n
    • Improvement: Added 2FA management shortcode and WooCommerce account integration
    • \n
    • Improvement: Improved performance when viewing 2FA settings on sites with many users
    • \n
    • Improvement: Updated GeoIP database
    • \n
    • Fix: Ensured Captcha and 2FA scripts load on WooCommerce when activated on a sub-site in multisite
    • \n
    • Fix: Prevented reCAPTCHA logo from being obscured by some themes
    • \n
    • Fix: Enabled wfls_registration_blocked_message filter support for WooCommerce integration
    • \n
    \n

    7.8.2 – December 13, 2022

    \n
      \n
    • Fix: Releasing same changes as 7.8.1, due to wordpress.org error
    • \n
    \n

    7.8.1 – December 13, 2022

    \n
      \n
    • Improvement: Added more granualar data deletion options to deactivation prompt
    • \n
    • Improvement: Allowed accessing diagnostics prior to completing registration
    • \n
    • Fix: Prevented installation prompt from displaying when a license key is already installed but the alert email address has been removed
    • \n
    \n

    7.8.0 – November 28, 2022

    \n
      \n
    • Improvement: Added feedback when login form is submitted with 2FA
    • \n
    • Fix: Restored click support on login button when using 2FA with WooCommerce
    • \n
    • Fix: Corrected display issue with reCAPTCHA score history graph
    • \n
    • Fix: Prevented errors on PHP caused by corrupted login timestamps
    • \n
    • Fix: Prevented deprecation notices on PHP 8.2 related to dynamic properties
    • \n
    • Change: Updated Wordfence registration workflow
    • \n
    \n

    7.7.1 – October 4, 2022

    \n
      \n
    • Fix: Prevented scan resume attempts from repeating indefinitely when the initial scan stage fails
    • \n
    \n

    7.7.0 – October 3, 2022

    \n
      \n
    • Improvement: Added configurable scan resume functionality to prevent scan failures on sites with intermittent connectivity issues
    • \n
    • Improvement: Added new scan result for vulnerabilities found in plugins that do not have patched versions available via WordPress.org
    • \n
    • Improvement: Implemented stand-alone MMDB reader for IP address lookups to prevent plugin conflicts and support additional PHP versions
    • \n
    • Improvement: Added option to disable looking up IP address locations via the Wordfence API
    • \n
    • Improvement: Prevented successful logins from resetting brute force counters
    • \n
    • Improvement: Clarified IPv6 diagnostic
    • \n
    • Improvement: Included maximum number of days in live traffic option text
    • \n
    • Fix: Made timezones consistent on firewall page
    • \n
    • Fix: Added “Use only IPv4 to start scans” option to search
    • \n
    • Fix: Prevented deprecation notices on PHP 8.1 when emailing the activity log
    • \n
    • Fix: Prevented warning on PHP 8 related to process owner diagnostic
    • \n
    • Fix: Prevented PHP Code Sniffer false positive related to T_BAD_CHARACTER
    • \n
    • Fix: Removed unsupported beta feed option
    • \n
    \n

    7.6.2 – September 19, 2022

    \n
      \n
    • Improvement: Hardened 2FA login flow to reduce exposure in cases where an attacker is able to obtain privileged information from the database
    • \n
    \n

    7.6.1 – September 6, 2022

    \n
      \n
    • Fix: Prevented XSS that would have required admin privileges to exploit (CVE-2022-3144)
    • \n
    \n

    7.6.0 – July 28, 2022

    \n
      \n
    • Improvement: Added option to start scans using only IPv4
    • \n
    • Improvement: Added diagnostic for internal IPv6 connectivity to site
    • \n
    • Improvement: Added AUTOMATIC_UPDATER_DISABLED diagnostic
    • \n
    • Improvement: Updated password strength check
    • \n
    • Improvement: Added support for scanning plugin/theme files in when using the WP_CONTENT_DIR/WP_PLUGIN_DIR constants
    • \n
    • Improvement: Updated GeoIP database
    • \n
    • Improvement: Made DISABLE_WP_CRON diagnostic more clear
    • \n
    • Improvement: Added “Hostname” to Live Traffic message displayed for hostname blocking
    • \n
    • Improvement: Improved compatibility with Flywheel hosting
    • \n
    • Improvement: Adopted semantic versioning
    • \n
    • Improvement: Added support for dynamic cookie redaction patterns when logging requests
    • \n
    • Fix: Prevented scanned paths from being displayed as skipped in rare cases
    • \n
    • Fix: Corrected indexed files count in scan messages
    • \n
    • Fix: Prevented overlapping AJAX requests when viewing Live Traffic on slower servers
    • \n
    • Fix: Corrected WP_DEBUG_DISPLAY diagnostic
    • \n
    • Fix: Prevented extraneous warnings caused by DNS resolution failures
    • \n
    • Fix: Corrected display issue with Save/Cancel buttons on All Options page
    • \n
    • Fix: Prevented errors caused by WHOIS searches for invalid values
    • \n
    \n

    7.5.11 – June 14, 2022

    \n
      \n
    • Improvement: Added option to toggle display of last login column on WP Users page
    • \n
    • Improvement: Improved autocomplete support for 2FA code on Apple devices
    • \n
    • Improvement: Prevented Batcache from caching block pages
    • \n
    • Improvement: Updated GeoIP database
    • \n
    • Fix: Prevented extraneous scan results when non-existent paths are configured using UPLOADS and related constants
    • \n
    • Fix: Corrected issue that prevented reCAPTCHA scores from being recorded
    • \n
    • Fix: Prevented invalid JSON setting values from triggering fatal errors
    • \n
    • Fix: Made text domains consistent for translation support
    • \n
    • Fix: Clarified that allowlisted IP addresses also bypass reCAPTCHA
    • \n
    \n

    7.5.10 – May 17, 2022

    \n
      \n
    • Improvement: Improved scan support for sites with non-standard directory structures
    • \n
    • Improvement: Increased accuracy of executable PHP upload detection
    • \n
    • Improvement: Addressed various deprecation notices with PHP 8.1
    • \n
    • Improvement: Improved handling of invalidated license keys
    • \n
    • Fix: Corrected lost password redirect URL when used with WooCommerce
    • \n
    • Fix: Prevented errors when live traffic data exceeds database column length
    • \n
    • Fix: Prevented bulk password resets from locking out admins
    • \n
    • Fix: Corrected issue that prevented saving country blocking settings in certain cases
    • \n
    • Change: Updated copyright information
    • \n
    \n

    7.5.9 – March 22, 2022

    \n
      \n
    • Improvement: Updated GeoIP database
    • \n
    • Improvement: Removed blocking data update logic in order to reduce timeouts
    • \n
    • Improvement: Increased timeout value for API calls in order to reduce timeouts
    • \n
    • Improvement: Clarified notification count on Wordfence menu
    • \n
    • Improvement: Improved scan compatibility with WooCommerce
    • \n
    • Improvement: Added messaging when application passwords are disabled
    • \n
    • Fix: Prevented warnings and errors when constants are defined based on the value of other constants in wp-config.php
    • \n
    • Fix: Corrected redundant escaping that prevented viewing or repairing files in scan results
    • \n
    \n

    7.5.8 – February 1, 2022

    \n
      \n
    • Launch of Wordfence Care and Wordfence Response
    • \n
    \n

    7.5.7 – November 22, 2021

    \n
      \n
    • Improvement: Made preliminary changes for compatibility with PHP 8.1
    • \n
    • Change: Added GPLv3 license and updated EULA
    • \n
    \n

    7.5.6 – October 18, 2021

    \n
      \n
    • Fix: Prevented login errors with WooCommerce integration when manual username entry is enabled on the WooCommerce registration form
    • \n
    • Fix: Corrected theme incompatibilities with WooCommerce integration
    • \n
    \n

    7.5.5 – August 16, 2021

    \n
      \n
    • Improvement: Enhanced accessibility
    • \n
    • Improvement: Replaced regex in scan log with signature ID
    • \n
    • Improvement: Updated Knockout JS dependency to version 3.5.1
    • \n
    • Improvement: Removed PHP 8 compatibility notice
    • \n
    • Improvement: Added NTP status for Login Security to Diagnostics
    • \n
    • Improvement: Updated plugin headers for compatibility with WordPress 5.8
    • \n
    • Improvement: Updated Nginx documentation links to HTTPS
    • \n
    • Improvement: Updated IP address geolocation database
    • \n
    • Improvement: Expanded WAF SQL syntax support
    • \n
    • Improvement: Added optional constants to configure WAF database connection
    • \n
    • Improvement: Added support for matching punycode domain names
    • \n
    • Improvement: Updated Wordfence install count
    • \n
    • Improvement: Deprecated support for WordPress versions older than 4.4.0
    • \n
    • Improvement: Added warning messages when blocking U.S.
    • \n
    • Improvement: Added MYSQLI_CLIENT_SSL support to WAF database connection
    • \n
    • Improvement: Added 2FA and reCAPTCHA support for WooCommerce login and registration forms
    • \n
    • Improvement: Added option to require 2FA for any role
    • \n
    • Improvement: Added logic to automatically disable NTP after repeated failures and option to manually disable NTP
    • \n
    • Improvement: Updated reCAPTCHA setup note
    • \n
    • Fix: Prevented issue where country blocking changes are not saved
    • \n
    • Fix: Corrected string placeholder
    • \n
    • Fix: Added missing text domain to translation calls
    • \n
    • Fix: Corrected warning about sprintf arguments on Central setup page
    • \n
    • Fix: Prevented lost password functionality from revealing valid logins
    • \n
    \n

    7.5.4 – June 7, 2021

    \n
      \n
    • Fix: Resolve conflict with woocommerce-gateway-amazon-payments-advanced plugin
    • \n
    \n

    7.5.3 – May 10, 2021

    \n
      \n
    • Improvement: Expanded WAF capabilities including better JSON and user permission handling
    • \n
    • Improvement: Switched to relative paths in WAF auto_prepend file to increase portability
    • \n
    • Improvement: Eliminated unnecessary calls to Wordfence servers
    • \n
    • Fix: Prevented errors on PHP 8.0 when disk_free_space and/or disk_total_space are included in disabled_functions
    • \n
    • Fix: Fixed PHP notices caused by unexpected plugin version data
    • \n
    • Fix: Gracefully handle unexpected responses from Wordfence servers
    • \n
    • Fix: Time field now displays correctly on “See Recent Traffic” overlay
    • \n
    • Fix: Corrected typo on Diagnostics page
    • \n
    • Fix: Corrected IP counts on activity report
    • \n
    • Fix: Added missing line break in scan result emails
    • \n
    • Fix: Sending test activity report now provides success/failure response
    • \n
    • Fix: Reduced SQLi false positives caused by comma-separated strings
    • \n
    • Fix: Fixed JS error when resolving last scan result
    • \n
    \n

    7.5.2 – March 24, 2021

    \n
      \n
    • Fix: Fixed fatal error on single-sites running WordPress <4.9.
    • \n
    \n

    7.5.1 – March 24, 2021

    \n

    \n
      \n
    • Fix: Fixed fatal error when viewing the Login Security settings page from an allowlisted IP.
    • \n
    \n

    7.5.0 – March 24, 2021

    \n
      \n
    • Improvement: Translation-readiness: All user-facing strings are now run through WordPress’s i18n functions.
    • \n
    • Improvement: Remove legacy admin functions no longer used within the UI.
    • \n
    • Improvement: Local GeoIP database update.
    • \n
    • Improvement: Remove Lynwood IP range from allowlist, and add new AWS IP range.
    • \n
    • Fix: Fixed bug with unlocking a locked out IP without correctly resetting its failure counters.
    • \n
    • Fix: Sites using deleted premium licenses correctly revert to free license behavior.
    • \n
    • Fix: When enabled, cookies are now set for the correct roles on previously used devices.
    • \n
    • Fix: WAF cron jobs are now skipped when running on the CLI.
    • \n
    • Fix: PHP 8.0 compatibility – prevent syntax error when linting files.
    • \n
    • Fix: Fixed issue where PHP 8 notice sometimes cannot be dismissed.
    • \n
    \n

    7.4.14 – December 3, 2020

    \n
      \n
    • Improvement: Added option to disable application passwords.
    • \n
    • Improvement: Updated site cleaning callout with 1-year guarantee.
    • \n
    • Improvement: Upgraded sodium_compat library to 1.13.0.
    • \n
    • Improvement: Replaced the terms whitelist and blacklist with allowlist and blocklist.
    • \n
    • Improvement: Made a number of WordPress 5.6 and jQuery 3.x compatibility improvements.
    • \n
    • Improvement: Made a number of PHP8 compatilibility improvements.
    • \n
    • Improvement: Added dismissable notice informing users of possible PHP8 compatibility issues.
    • \n
    \n

    7.4.12 – October 21, 2020

    \n
      \n
    • Improvement: Initial integration of i18n in Wordfence.
    • \n
    • Improvement: Prevent Wordfence from loading under <PHP 5.3.
    • \n
    • Improvement: Updated GeoIP database.
    • \n
    • Improvement: Prevented wildcard from running/saving for scan’s excluded files pattern.
    • \n
    • Improvement: Included Wordfence Login Security tables in diagnostics missing table list.
    • \n
    • Fix: Removed new scan issues when WordPress update occurs mid-scan.
    • \n
    • Fix: Specified category when saving whitelistedServiceIPs to WAF storage engine.
    • \n
    • Fix: Removed localhost IP for auto-update email alerts.
    • \n
    • Fix: Fixed broken message in Live Traffic with MySQLi storage engine for blocklisted hits.
    • \n
    • Fix: Removed optional parameter values for PHP 8 compatibility.
    • \n
    \n

    You can find a complete changelog on our documentation site.

    \n", "description": "

    \n

    THE MOST POPULAR WORDPRESS FIREWALL & SECURITY SCANNER

    \n

    WordPress security requires a team of dedicated analysts researching the latest malware variants and WordPress exploits, turning them into firewall rules and malware signatures, and releasing those to customers in real-time.

    \n

    Choose the right protection for you: Wordfence Free, Premium, Care or Response

    \n

    Wordfence is widely acknowledged as the number one WordPress security research team in the World. Our plugin provides a comprehensive suite of security features, and our team’s research is what powers our plugin and provides the level of security that we are known for.

    \n

    At Wordfence, WordPress security isn’t a division of our business – WordPress security is all we do. We employ a global 24-hour dedicated incident response team that provides our priority customers with a 1 hour response time for any security incident.

    \n

    The sun never sets on our global security team and we run a sophisticated threat intelligence platform to aggregate, analyze and produce ground breaking security research on the newest security threats.

    \n

    Wordfence Security includes an endpoint firewall, malware scanner, robust login security features, live traffic views, and more. Our Threat Defense Feed arms Wordfence with the newest firewall rules, malware signatures, and malicious IP addresses it needs to keep your website safe.

    \n

    Rounded out by 2FA and a suite of additional features, Wordfence is the most comprehensive WordPress security solution available.

    \n

    🔥 WORDPRESS FIREWALL

    \n
      \n
    • Web Application Firewall identifies and blocks malicious traffic. Built and maintained by a large team focused 100% on WordPress security.
    • \n
    • Real-time firewall rule and malware signature [Premium] updates via the Threat Defense Feed (free version is delayed by 30 days).
    • \n
    • Real-time IP Blocklist [Premium] blocks all requests from the most malicious IPs, protecting your site while reducing load.
    • \n
    • Protects your site at the endpoint, enabling deep integration with WordPress. Unlike cloud alternatives, it does not break encryption, cannot be bypassed and cannot leak data.
    • \n
    • Integrated malware scanner blocks requests that include malicious code or content.
    • \n
    • Protection from brute force attacks by limiting login attempts.
    • \n
    \n

    📡 WORDPRESS SECURITY SCANNER

    \n
      \n
    • Malware scanner checks core files, themes and plugins for malware, bad URLs, backdoors, SEO spam, malicious redirects and code injections.
    • \n
    • Real-time malware signature updates [Premium] via the Threat Defense Feed (free version is delayed by 30 days).
    • \n
    • Compares with WordPress.org repository your core files, themes and plugins, checking their integrity and reporting any changes to you.
    • \n
    • Repair WordPress core, theme, and plugin files that have changed by overwriting them with a pristine, original version. Delete any files that don’t belong easily within the Wordfence interface.
    • \n
    • **Malware Removal Tools: “Delete File” and “Delete All Deletable Files” options allow for efficient malware removal. Remember to investigate the scan results and backup files first!
    • \n
    • Checks your site for known security vulnerabilities and alerts you to any issues. Also alerts you to potential security issues when a plugin has been closed or abandoned.
    • \n
    • Checks your content safety by scanning file contents, posts and comments for dangerous URLs and suspicious content.
    • \n
    • Checks to see if your site or IP have been blocklisted [Premium] for malicious activity, generating spam or other security issues.
    • \n
    \n

    🔒 LOGIN SECURITY

    \n\n

    📋 SECURITY AUDIT LOG [Premium]

    \n
      \n
    • The Audit Log monitors all changes and actions in security-sensitive areas of the site.
    • \n
    • Remote tamper-proof data storage via Wordfence Central.
    • \n
    • Monitor events and actions ranging from user creation and editing to plugin/theme installation and updates to post and page changes.
    • \n
    • Configurable to log all events or significant events only, which includes all authentication, site configuration, and site functionality events.
    • \n
    \n

    🌐 WORDFENCE CENTRAL

    \n
      \n
    • Wordfence Central is a powerful and efficient way to manage the security for multiple sites in one place.
    • \n
    • Centralized management: Efficiently assess the security status of all your websites in one view. View detailed security findings without leaving Wordfence Central.
    • \n
    • Powerful templates make configuring Wordfence a breeze.
    • \n
    • Highly configurable alerts can be delivered via email, SMS or Slack. Improve the signal to noise ratio by leveraging severity level options and a daily digest option.
    • \n
    • Track and alert on important security events including administrator logins, breached password usage and surges in attack activity.
    • \n
    • Free to use for unlimited sites.
    • \n
    \n

    🛠️ SECURITY TOOLS

    \n
      \n
    • Live Traffic monitors visits and hack attempts not shown in other analytics packages in real time; including origin, their IP address, the time of day and time spent on your site.
    • \n
    • Block attackers by IP or build advanced rules based on IP Range, Hostname, User Agent and Referrer.
    • \n
    • Country blocking available with Wordfence Premium.
    • \n
    \n", "screenshots": "
    1. \"The

      The dashboard gives you an overview of your site''s security including notifications, attack statistics and Wordfence feature status.

    2. \"The

      The firewall protects your site from common types of attacks and known security vulnerabilities.

    3. \"The

      The Wordfence Security Scanner lets you know if your site has been compromised and alerts you to other security issues that need to be addressed.

    4. \"Wordfence

      Wordfence is highly configurable, with a deep set of options available for each feature. High level scan options are shown above.

    5. \"Brute

      Brute Force Protection features protect you from password guessing attacks.

    6. \"Block

      Block attackers by IP, Country, IP range, Hostname, Browser or Referrer.

    7. \"The

      The Wordfence Live Traffic view shows you real-time activity on your site including bot traffic and exploit attempts.

    8. \"Take

      Take login security to the next level with Two-Factor Authentication.

    9. \"Logging

      Logging in is easy with Wordfence 2FA.

    ", "installation": "

    Secure your website using the following steps to install Wordfence:

    \n
      \n
    1. Install Wordfence automatically or by uploading the ZIP file.
    2. \n
    3. Activate the Wordfence through the ‘Plugins’ menu in WordPress. Wordfence is now activated.
    4. \n
    5. Go to the scan menu and start your first scan. Scheduled scanning will also be enabled.
    6. \n
    7. Once your first scan has completed, a list of threats will appear. Go through them one by one to secure your site.
    8. \n
    9. Visit the Wordfence options page to enter your email address so that you can receive email security alerts.
    10. \n
    11. Optionally, change your security level or adjust the advanced options to set individual scanning and protection options for your site.
    12. \n
    13. Click the “Live Traffic” menu option to watch your site activity in real-time. Situational awareness is an important part of website security.
    14. \n
    \n

    To install Wordfence on WordPress Multi-Site installations:

    \n
      \n
    1. Install Wordfence via the plugin directory or by uploading the ZIP file.
    2. \n
    3. Network Activate Wordfence. This step is important because until you network activate it, your sites will see the plugin option on their plugins menu. Once activated that option disappears.
    4. \n
    5. Now that Wordfence is network activated it will appear on your Network Admin menu. Wordfence will not appear on any individual site’s menu.
    6. \n
    7. Go to the “Scan” menu and start your first scan.
    8. \n
    9. Wordfence will do a scan of all files in your WordPress installation including those in the blogs.dir directory of your individual sites.
    10. \n
    11. Live Traffic will appear for ALL sites in your network. If you have a heavily trafficked system you may want to disable live traffic which will stop logging to the DB.
    12. \n
    13. Firewall rules and login rules apply to the WHOLE system. So if you fail a login on site1.example.com and site2.example.com it counts as 2 failures. Crawler traffic is counted between blogs, so if you hit three sites in the network, all the hits are totalled and that counts as the rate you’re accessing the system.
    14. \n
    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/wordfence.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/wordfence.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/wordfence.1.3.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wordfence.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wordfence.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wordfence.1.3.3.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wordfence.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/wordfence.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/wordfence.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/wordfence.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/wordfence.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/wordfence.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/wordfence.1.4.8.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wordfence.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/wordfence.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/wordfence.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/wordfence.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/wordfence.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/wordfence.1.5.6.zip", "2.0.1": "https://downloads.wordpress.org/plugin/wordfence.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/plugin/wordfence.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/plugin/wordfence.2.0.3.zip", "2.0.5": "https://downloads.wordpress.org/plugin/wordfence.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/wordfence.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/wordfence.2.0.7.zip", "2.1.0": "https://downloads.wordpress.org/plugin/wordfence.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/wordfence.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/wordfence.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/wordfence.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/wordfence.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/wordfence.2.1.5.zip", "3.0.2": "https://downloads.wordpress.org/plugin/wordfence.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/wordfence.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/wordfence.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/wordfence.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/plugin/wordfence.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/plugin/wordfence.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/wordfence.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/wordfence.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/wordfence.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/wordfence.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/wordfence.3.1.2.zip", "3.1.4": "https://downloads.wordpress.org/plugin/wordfence.3.1.4.zip", "3.1.6": "https://downloads.wordpress.org/plugin/wordfence.3.1.6.zip", "3.2.1": "https://downloads.wordpress.org/plugin/wordfence.3.2.1.zip", "3.2.3": "https://downloads.wordpress.org/plugin/wordfence.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/plugin/wordfence.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/plugin/wordfence.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/wordfence.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/wordfence.3.2.7.zip", "3.3.2": "https://downloads.wordpress.org/plugin/wordfence.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/plugin/wordfence.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/plugin/wordfence.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/plugin/wordfence.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/plugin/wordfence.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/plugin/wordfence.3.3.7.zip", "3.4.1": "https://downloads.wordpress.org/plugin/wordfence.3.4.1.zip", "3.4.4": "https://downloads.wordpress.org/plugin/wordfence.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/plugin/wordfence.3.4.5.zip", "3.5.1": "https://downloads.wordpress.org/plugin/wordfence.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/wordfence.3.5.2.zip", "3.6.1": "https://downloads.wordpress.org/plugin/wordfence.3.6.1.zip", "3.6.3": "https://downloads.wordpress.org/plugin/wordfence.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/plugin/wordfence.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/plugin/wordfence.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/plugin/wordfence.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/plugin/wordfence.3.6.7.zip", "3.6.8": "https://downloads.wordpress.org/plugin/wordfence.3.6.8.zip", "3.6.9": "https://downloads.wordpress.org/plugin/wordfence.3.6.9.zip", "3.7.1": "https://downloads.wordpress.org/plugin/wordfence.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/wordfence.3.7.2.zip", "3.8.1": "https://downloads.wordpress.org/plugin/wordfence.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/wordfence.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/wordfence.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/wordfence.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/wordfence.3.8.5.zip", "3.8.6": "https://downloads.wordpress.org/plugin/wordfence.3.8.6.zip", "3.8.7": "https://downloads.wordpress.org/plugin/wordfence.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/plugin/wordfence.3.8.8.zip", "3.8.9": "https://downloads.wordpress.org/plugin/wordfence.3.8.9.zip", "3.9.1": "https://downloads.wordpress.org/plugin/wordfence.3.9.1.zip", "4.0.1": "https://downloads.wordpress.org/plugin/wordfence.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/plugin/wordfence.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/plugin/wordfence.4.0.3.zip", "5.0.1": "https://downloads.wordpress.org/plugin/wordfence.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/plugin/wordfence.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/plugin/wordfence.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/plugin/wordfence.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/plugin/wordfence.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/plugin/wordfence.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/plugin/wordfence.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/plugin/wordfence.5.0.8.zip", "5.0.9": "https://downloads.wordpress.org/plugin/wordfence.5.0.9.zip", "5.1.1": "https://downloads.wordpress.org/plugin/wordfence.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/plugin/wordfence.5.1.2.zip", "5.1.4": "https://downloads.wordpress.org/plugin/wordfence.5.1.4.zip", "5.1.5": "https://downloads.wordpress.org/plugin/wordfence.5.1.5.zip", "5.1.6": "https://downloads.wordpress.org/plugin/wordfence.5.1.6.zip", "5.1.7": "https://downloads.wordpress.org/plugin/wordfence.5.1.7.zip", "5.1.8": "https://downloads.wordpress.org/plugin/wordfence.5.1.8.zip", "5.1.9": "https://downloads.wordpress.org/plugin/wordfence.5.1.9.zip", "5.2.1": "https://downloads.wordpress.org/plugin/wordfence.5.2.1.zip", "5.2.2": "https://downloads.wordpress.org/plugin/wordfence.5.2.2.zip", "5.2.3": "https://downloads.wordpress.org/plugin/wordfence.5.2.3.zip", "5.2.4": "https://downloads.wordpress.org/plugin/wordfence.5.2.4.zip", "5.2.5": "https://downloads.wordpress.org/plugin/wordfence.5.2.5.zip", "5.2.6": "https://downloads.wordpress.org/plugin/wordfence.5.2.6.zip", "5.2.7": "https://downloads.wordpress.org/plugin/wordfence.5.2.7.zip", "5.2.8": "https://downloads.wordpress.org/plugin/wordfence.5.2.8.zip", "5.2.9": "https://downloads.wordpress.org/plugin/wordfence.5.2.9.zip", "5.3.1": "https://downloads.wordpress.org/plugin/wordfence.5.3.1.zip", "5.3.2": "https://downloads.wordpress.org/plugin/wordfence.5.3.2.zip", "5.3.3": "https://downloads.wordpress.org/plugin/wordfence.5.3.3.zip", "5.3.4": "https://downloads.wordpress.org/plugin/wordfence.5.3.4.zip", "5.3.5": "https://downloads.wordpress.org/plugin/wordfence.5.3.5.zip", "5.3.6": "https://downloads.wordpress.org/plugin/wordfence.5.3.6.zip", "5.3.7": "https://downloads.wordpress.org/plugin/wordfence.5.3.7.zip", "5.3.8": "https://downloads.wordpress.org/plugin/wordfence.5.3.8.zip", "5.3.9": "https://downloads.wordpress.org/plugin/wordfence.5.3.9.zip", "6.0.1": "https://downloads.wordpress.org/plugin/wordfence.6.0.1.zip", "6.0.2": "https://downloads.wordpress.org/plugin/wordfence.6.0.2.zip", "6.0.3": "https://downloads.wordpress.org/plugin/wordfence.6.0.3.zip", "6.0.4": "https://downloads.wordpress.org/plugin/wordfence.6.0.4.zip", "6.0.5": "https://downloads.wordpress.org/plugin/wordfence.6.0.5.zip", "6.0.6": "https://downloads.wordpress.org/plugin/wordfence.6.0.6.zip", "6.0.7": "https://downloads.wordpress.org/plugin/wordfence.6.0.7.zip", "6.0.8": "https://downloads.wordpress.org/plugin/wordfence.6.0.8.zip", "6.0.9": "https://downloads.wordpress.org/plugin/wordfence.6.0.9.zip", "6.1.1": "https://downloads.wordpress.org/plugin/wordfence.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/plugin/wordfence.6.1.2.zip", "6.1.3": "https://downloads.wordpress.org/plugin/wordfence.6.1.3.zip", "6.1.4": "https://downloads.wordpress.org/plugin/wordfence.6.1.4.zip", "6.1.5": "https://downloads.wordpress.org/plugin/wordfence.6.1.5.zip", "6.1.6": "https://downloads.wordpress.org/plugin/wordfence.6.1.6.zip", "6.1.7": "https://downloads.wordpress.org/plugin/wordfence.6.1.7.zip", "6.1.8": "https://downloads.wordpress.org/plugin/wordfence.6.1.8.zip", "6.1.9": "https://downloads.wordpress.org/plugin/wordfence.6.1.9.zip", "6.2.0": "https://downloads.wordpress.org/plugin/wordfence.6.2.0.zip", "6.2.1": "https://downloads.wordpress.org/plugin/wordfence.6.2.1.zip", "6.2.2": "https://downloads.wordpress.org/plugin/wordfence.6.2.2.zip", "6.2.3": "https://downloads.wordpress.org/plugin/wordfence.6.2.3.zip", "6.2.4": "https://downloads.wordpress.org/plugin/wordfence.6.2.4.zip", "6.2.5": "https://downloads.wordpress.org/plugin/wordfence.6.2.5.zip", "6.2.6": "https://downloads.wordpress.org/plugin/wordfence.6.2.6.zip", "6.2.7": "https://downloads.wordpress.org/plugin/wordfence.6.2.7.zip", "6.2.8": "https://downloads.wordpress.org/plugin/wordfence.6.2.8.zip", "6.2.9": "https://downloads.wordpress.org/plugin/wordfence.6.2.9.zip", "6.3.0": "https://downloads.wordpress.org/plugin/wordfence.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/plugin/wordfence.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/plugin/wordfence.6.3.2.zip", "6.3.3": "https://downloads.wordpress.org/plugin/wordfence.6.3.3.zip", "6.3.4": "https://downloads.wordpress.org/plugin/wordfence.6.3.4.zip", "6.3.5": "https://downloads.wordpress.org/plugin/wordfence.6.3.5.zip", "6.3.6": "https://downloads.wordpress.org/plugin/wordfence.6.3.6.zip", "6.3.7": "https://downloads.wordpress.org/plugin/wordfence.6.3.7.zip", "6.3.8": "https://downloads.wordpress.org/plugin/wordfence.6.3.8.zip", "6.3.9": "https://downloads.wordpress.org/plugin/wordfence.6.3.9.zip", "7.0.1": "https://downloads.wordpress.org/plugin/wordfence.7.0.1.zip", "7.0.2": "https://downloads.wordpress.org/plugin/wordfence.7.0.2.zip", "7.0.3": "https://downloads.wordpress.org/plugin/wordfence.7.0.3.zip", "7.0.4": "https://downloads.wordpress.org/plugin/wordfence.7.0.4.zip", "7.0.5": "https://downloads.wordpress.org/plugin/wordfence.7.0.5.zip", "7.1.0": "https://downloads.wordpress.org/plugin/wordfence.7.1.0.zip", "7.1.1": "https://downloads.wordpress.org/plugin/wordfence.7.1.1.zip", "7.1.2": "https://downloads.wordpress.org/plugin/wordfence.7.1.2.zip", "7.1.3": "https://downloads.wordpress.org/plugin/wordfence.7.1.3.zip", "7.1.4": "https://downloads.wordpress.org/plugin/wordfence.7.1.4.zip", "7.1.5": "https://downloads.wordpress.org/plugin/wordfence.7.1.5.zip", "7.1.6": "https://downloads.wordpress.org/plugin/wordfence.7.1.6.zip", "7.1.7": "https://downloads.wordpress.org/plugin/wordfence.7.1.7.zip", "7.1.8": "https://downloads.wordpress.org/plugin/wordfence.7.1.8.zip", "7.1.9": "https://downloads.wordpress.org/plugin/wordfence.7.1.9.zip", "7.2.1": "https://downloads.wordpress.org/plugin/wordfence.7.2.1.zip", "7.2.2": "https://downloads.wordpress.org/plugin/wordfence.7.2.2.zip", "7.2.3": "https://downloads.wordpress.org/plugin/wordfence.7.2.3.zip", "7.2.4": "https://downloads.wordpress.org/plugin/wordfence.7.2.4.zip", "7.2.5": "https://downloads.wordpress.org/plugin/wordfence.7.2.5.zip", "7.3.1": "https://downloads.wordpress.org/plugin/wordfence.7.3.1.zip", "7.3.2": "https://downloads.wordpress.org/plugin/wordfence.7.3.2.zip", "7.3.3": "https://downloads.wordpress.org/plugin/wordfence.7.3.3.zip", "7.3.4": "https://downloads.wordpress.org/plugin/wordfence.7.3.4.zip", "7.3.5": "https://downloads.wordpress.org/plugin/wordfence.7.3.5.zip", "7.3.6": "https://downloads.wordpress.org/plugin/wordfence.7.3.6.zip", "7.4.0": "https://downloads.wordpress.org/plugin/wordfence.7.4.0.zip", "7.4.1": "https://downloads.wordpress.org/plugin/wordfence.7.4.1.zip", "7.4.2": "https://downloads.wordpress.org/plugin/wordfence.7.4.2.zip", "7.4.3": "https://downloads.wordpress.org/plugin/wordfence.7.4.3.zip", "7.4.4": "https://downloads.wordpress.org/plugin/wordfence.7.4.4.zip", "7.4.5": "https://downloads.wordpress.org/plugin/wordfence.7.4.5.zip", "7.4.6": "https://downloads.wordpress.org/plugin/wordfence.7.4.6.zip", "7.4.7": "https://downloads.wordpress.org/plugin/wordfence.7.4.7.zip", "7.4.8": "https://downloads.wordpress.org/plugin/wordfence.7.4.8.zip", "7.4.9": "https://downloads.wordpress.org/plugin/wordfence.7.4.9.zip", "7.5.0": "https://downloads.wordpress.org/plugin/wordfence.7.5.0.zip", "7.5.1": "https://downloads.wordpress.org/plugin/wordfence.7.5.1.zip", "7.5.2": "https://downloads.wordpress.org/plugin/wordfence.7.5.2.zip", "7.5.3": "https://downloads.wordpress.org/plugin/wordfence.7.5.3.zip", "7.5.4": "https://downloads.wordpress.org/plugin/wordfence.7.5.4.zip", "7.5.5": "https://downloads.wordpress.org/plugin/wordfence.7.5.5.zip", "7.5.6": "https://downloads.wordpress.org/plugin/wordfence.7.5.6.zip", "7.5.7": "https://downloads.wordpress.org/plugin/wordfence.7.5.7.zip", "7.5.8": "https://downloads.wordpress.org/plugin/wordfence.7.5.8.zip", "7.5.9": "https://downloads.wordpress.org/plugin/wordfence.7.5.9.zip", "7.6.0": "https://downloads.wordpress.org/plugin/wordfence.7.6.0.zip", "7.6.1": "https://downloads.wordpress.org/plugin/wordfence.7.6.1.zip", "7.6.2": "https://downloads.wordpress.org/plugin/wordfence.7.6.2.zip", "7.7.0": "https://downloads.wordpress.org/plugin/wordfence.7.7.0.zip", "7.7.1": "https://downloads.wordpress.org/plugin/wordfence.7.7.1.zip", "7.8.0": "https://downloads.wordpress.org/plugin/wordfence.7.8.0.zip", "7.8.1": "https://downloads.wordpress.org/plugin/wordfence.7.8.1.zip", "7.8.2": "https://downloads.wordpress.org/plugin/wordfence.7.8.2.zip", "7.9.0": "https://downloads.wordpress.org/plugin/wordfence.7.9.0.zip", "7.9.1": "https://downloads.wordpress.org/plugin/wordfence.7.9.1.zip", "7.9.2": "https://downloads.wordpress.org/plugin/wordfence.7.9.2.zip", "7.9.3": "https://downloads.wordpress.org/plugin/wordfence.7.9.3.zip", "8.0.0": "https://downloads.wordpress.org/plugin/wordfence.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/plugin/wordfence.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/plugin/wordfence.8.0.2.zip", "8.0.3": "https://downloads.wordpress.org/plugin/wordfence.8.0.3.zip", "8.0.4": "https://downloads.wordpress.org/plugin/wordfence.8.0.4.zip", "8.0.5": "https://downloads.wordpress.org/plugin/wordfence.8.0.5.zip", "8.1.0": "https://downloads.wordpress.org/plugin/wordfence.8.1.0.zip", "trunk": "https://downloads.wordpress.org/plugin/wordfence.zip", "5.3.10": "https://downloads.wordpress.org/plugin/wordfence.5.3.10.zip", "5.3.11": "https://downloads.wordpress.org/plugin/wordfence.5.3.11.zip", "5.3.12": "https://downloads.wordpress.org/plugin/wordfence.5.3.12.zip", "6.0.10": "https://downloads.wordpress.org/plugin/wordfence.6.0.10.zip", "6.0.11": "https://downloads.wordpress.org/plugin/wordfence.6.0.11.zip", "6.0.12": "https://downloads.wordpress.org/plugin/wordfence.6.0.12.zip", "6.0.14": "https://downloads.wordpress.org/plugin/wordfence.6.0.14.zip", "6.0.15": "https://downloads.wordpress.org/plugin/wordfence.6.0.15.zip", "6.0.16": "https://downloads.wordpress.org/plugin/wordfence.6.0.16.zip", "6.0.17": "https://downloads.wordpress.org/plugin/wordfence.6.0.17.zip", "6.0.18": "https://downloads.wordpress.org/plugin/wordfence.6.0.18.zip", "6.0.19": "https://downloads.wordpress.org/plugin/wordfence.6.0.19.zip", "6.0.20": "https://downloads.wordpress.org/plugin/wordfence.6.0.20.zip", "6.0.21": "https://downloads.wordpress.org/plugin/wordfence.6.0.21.zip", "6.0.22": "https://downloads.wordpress.org/plugin/wordfence.6.0.22.zip", "6.0.23": "https://downloads.wordpress.org/plugin/wordfence.6.0.23.zip", "6.0.24": "https://downloads.wordpress.org/plugin/wordfence.6.0.24.zip", "6.0.25": "https://downloads.wordpress.org/plugin/wordfence.6.0.25.zip", "6.1.10": "https://downloads.wordpress.org/plugin/wordfence.6.1.10.zip", "6.1.11": "https://downloads.wordpress.org/plugin/wordfence.6.1.11.zip", "6.1.12": "https://downloads.wordpress.org/plugin/wordfence.6.1.12.zip", "6.1.14": "https://downloads.wordpress.org/plugin/wordfence.6.1.14.zip", "6.1.15": "https://downloads.wordpress.org/plugin/wordfence.6.1.15.zip", "6.1.16": "https://downloads.wordpress.org/plugin/wordfence.6.1.16.zip", "6.1.17": "https://downloads.wordpress.org/plugin/wordfence.6.1.17.zip", "6.2.10": "https://downloads.wordpress.org/plugin/wordfence.6.2.10.zip", "6.3.10": "https://downloads.wordpress.org/plugin/wordfence.6.3.10.zip", "6.3.11": "https://downloads.wordpress.org/plugin/wordfence.6.3.11.zip", "6.3.12": "https://downloads.wordpress.org/plugin/wordfence.6.3.12.zip", "6.3.14": "https://downloads.wordpress.org/plugin/wordfence.6.3.14.zip", "6.3.15": "https://downloads.wordpress.org/plugin/wordfence.6.3.15.zip", "6.3.16": "https://downloads.wordpress.org/plugin/wordfence.6.3.16.zip", "6.3.17": "https://downloads.wordpress.org/plugin/wordfence.6.3.17.zip", "6.3.18": "https://downloads.wordpress.org/plugin/wordfence.6.3.18.zip", "6.3.19": "https://downloads.wordpress.org/plugin/wordfence.6.3.19.zip", "6.3.20": "https://downloads.wordpress.org/plugin/wordfence.6.3.20.zip", "6.3.21": "https://downloads.wordpress.org/plugin/wordfence.6.3.21.zip", "6.3.22": "https://downloads.wordpress.org/plugin/wordfence.6.3.22.zip", "7.1.10": "https://downloads.wordpress.org/plugin/wordfence.7.1.10.zip", "7.1.11": "https://downloads.wordpress.org/plugin/wordfence.7.1.11.zip", "7.1.12": "https://downloads.wordpress.org/plugin/wordfence.7.1.12.zip", "7.1.14": "https://downloads.wordpress.org/plugin/wordfence.7.1.14.zip", "7.1.15": "https://downloads.wordpress.org/plugin/wordfence.7.1.15.zip", "7.1.16": "https://downloads.wordpress.org/plugin/wordfence.7.1.16.zip", "7.1.17": "https://downloads.wordpress.org/plugin/wordfence.7.1.17.zip", "7.1.18": "https://downloads.wordpress.org/plugin/wordfence.7.1.18.zip", "7.1.19": "https://downloads.wordpress.org/plugin/wordfence.7.1.19.zip", "7.1.20": "https://downloads.wordpress.org/plugin/wordfence.7.1.20.zip", "7.10.0": "https://downloads.wordpress.org/plugin/wordfence.7.10.0.zip", "7.10.1": "https://downloads.wordpress.org/plugin/wordfence.7.10.1.zip", "7.10.2": "https://downloads.wordpress.org/plugin/wordfence.7.10.2.zip", "7.10.3": "https://downloads.wordpress.org/plugin/wordfence.7.10.3.zip", "7.10.4": "https://downloads.wordpress.org/plugin/wordfence.7.10.4.zip", "7.10.5": "https://downloads.wordpress.org/plugin/wordfence.7.10.5.zip", "7.10.6": "https://downloads.wordpress.org/plugin/wordfence.7.10.6.zip", "7.10.7": "https://downloads.wordpress.org/plugin/wordfence.7.10.7.zip", "7.11.0": "https://downloads.wordpress.org/plugin/wordfence.7.11.0.zip", "7.11.1": "https://downloads.wordpress.org/plugin/wordfence.7.11.1.zip", "7.11.2": "https://downloads.wordpress.org/plugin/wordfence.7.11.2.zip", "7.11.3": "https://downloads.wordpress.org/plugin/wordfence.7.11.3.zip", "7.11.4": "https://downloads.wordpress.org/plugin/wordfence.7.11.4.zip", "7.11.5": "https://downloads.wordpress.org/plugin/wordfence.7.11.5.zip", "7.11.6": "https://downloads.wordpress.org/plugin/wordfence.7.11.6.zip", "7.11.7": "https://downloads.wordpress.org/plugin/wordfence.7.11.7.zip", "7.4.10": "https://downloads.wordpress.org/plugin/wordfence.7.4.10.zip", "7.4.11": "https://downloads.wordpress.org/plugin/wordfence.7.4.11.zip", "7.4.12": "https://downloads.wordpress.org/plugin/wordfence.7.4.12.zip", "7.4.14": "https://downloads.wordpress.org/plugin/wordfence.7.4.14.zip", "7.5.10": "https://downloads.wordpress.org/plugin/wordfence.7.5.10.zip", "7.5.11": "https://downloads.wordpress.org/plugin/wordfence.7.5.11.zip", "v1.4.1": "https://downloads.wordpress.org/plugin/wordfence.v1.4.1.zip"}, "downloaded": 390248510, "description": "

    \n

    THE MOST POPULAR WORDPRESS FIREWALL & SECURITY SCANNER

    \n

    WordPress security requires a team of dedicated analysts researching the latest malware variants and WordPress exploits, turning them into firewall rules and malware signatures, and releasing those to customers in real-time.

    \n

    Choose the right protection for you: Wordfence Free, Premium, Care or Response

    \n

    Wordfence is widely acknowledged as the number one WordPress security research team in the World. Our plugin provides a comprehensive suite of security features, and our team’s research is what powers our plugin and provides the level of security that we are known for.

    \n

    At Wordfence, WordPress security isn’t a division of our business – WordPress security is all we do. We employ a global 24-hour dedicated incident response team that provides our priority customers with a 1 hour response time for any security incident.

    \n

    The sun never sets on our global security team and we run a sophisticated threat intelligence platform to aggregate, analyze and produce ground breaking security research on the newest security threats.

    \n

    Wordfence Security includes an endpoint firewall, malware scanner, robust login security features, live traffic views, and more. Our Threat Defense Feed arms Wordfence with the newest firewall rules, malware signatures, and malicious IP addresses it needs to keep your website safe.

    \n

    Rounded out by 2FA and a suite of additional features, Wordfence is the most comprehensive WordPress security solution available.

    \n

    🔥 WORDPRESS FIREWALL

    \n
      \n
    • Web Application Firewall identifies and blocks malicious traffic. Built and maintained by a large team focused 100% on WordPress security.
    • \n
    • Real-time firewall rule and malware signature [Premium] updates via the Threat Defense Feed (free version is delayed by 30 days).
    • \n
    • Real-time IP Blocklist [Premium] blocks all requests from the most malicious IPs, protecting your site while reducing load.
    • \n
    • Protects your site at the endpoint, enabling deep integration with WordPress. Unlike cloud alternatives, it does not break encryption, cannot be bypassed and cannot leak data.
    • \n
    • Integrated malware scanner blocks requests that include malicious code or content.
    • \n
    • Protection from brute force attacks by limiting login attempts.
    • \n
    \n

    📡 WORDPRESS SECURITY SCANNER

    \n
      \n
    • Malware scanner checks core files, themes and plugins for malware, bad URLs, backdoors, SEO spam, malicious redirects and code injections.
    • \n
    • Real-time malware signature updates [Premium] via the Threat Defense Feed (free version is delayed by 30 days).
    • \n
    • Compares with WordPress.org repository your core files, themes and plugins, checking their integrity and reporting any changes to you.
    • \n
    • Repair WordPress core, theme, and plugin files that have changed by overwriting them with a pristine, original version. Delete any files that don’t belong easily within the Wordfence interface.
    • \n
    • **Malware Removal Tools: “Delete File” and “Delete All Deletable Files” options allow for efficient malware removal. Remember to investigate the scan results and backup files first!
    • \n
    • Checks your site for known security vulnerabilities and alerts you to any issues. Also alerts you to potential security issues when a plugin has been closed or abandoned.
    • \n
    • Checks your content safety by scanning file contents, posts and comments for dangerous URLs and suspicious content.
    • \n
    • Checks to see if your site or IP have been blocklisted [Premium] for malicious activity, generating spam or other security issues.
    • \n
    \n

    🔒 LOGIN SECURITY

    \n\n

    📋 SECURITY AUDIT LOG [Premium]

    \n
      \n
    • The Audit Log monitors all changes and actions in security-sensitive areas of the site.
    • \n
    • Remote tamper-proof data storage via Wordfence Central.
    • \n
    • Monitor events and actions ranging from user creation and editing to plugin/theme installation and updates to post and page changes.
    • \n
    • Configurable to log all events or significant events only, which includes all authentication, site configuration, and site functionality events.
    • \n
    \n

    🌐 WORDFENCE CENTRAL

    \n
      \n
    • Wordfence Central is a powerful and efficient way to manage the security for multiple sites in one place.
    • \n
    • Centralized management: Efficiently assess the security status of all your websites in one view. View detailed security findings without leaving Wordfence Central.
    • \n
    • Powerful templates make configuring Wordfence a breeze.
    • \n
    • Highly configurable alerts can be delivered via email, SMS or Slack. Improve the signal to noise ratio by leveraging severity level options and a daily digest option.
    • \n
    • Track and alert on important security events including administrator logins, breached password usage and surges in attack activity.
    • \n
    • Free to use for unlimited sites.
    • \n
    \n

    🛠️ SECURITY TOOLS

    \n
      \n
    • Live Traffic monitors visits and hack attempts not shown in other analytics packages in real time; including origin, their IP address, the time of day and time spent on your site.
    • \n
    • Block attackers by IP or build advanced rules based on IP Range, Hostname, User Agent and Referrer.
    • \n
    • Country blocking available with Wordfence Premium.
    • \n
    \n", "donate_link": "", "num_ratings": 4700, "screenshots": {"1": {"src": "https://ps.w.org/wordfence/assets/screenshot-1.png?rev=2087795", "caption": "The dashboard gives you an overview of your site''s security including notifications, attack statistics and Wordfence feature status."}, "2": {"src": "https://ps.w.org/wordfence/assets/screenshot-2.png?rev=2087795", "caption": "The firewall protects your site from common types of attacks and known security vulnerabilities."}, "3": {"src": "https://ps.w.org/wordfence/assets/screenshot-3.png?rev=2087795", "caption": "The Wordfence Security Scanner lets you know if your site has been compromised and alerts you to other security issues that need to be addressed."}, "4": {"src": "https://ps.w.org/wordfence/assets/screenshot-4.png?rev=2087795", "caption": "Wordfence is highly configurable, with a deep set of options available for each feature. High level scan options are shown above."}, "5": {"src": "https://ps.w.org/wordfence/assets/screenshot-5.png?rev=2087795", "caption": "Brute Force Protection features protect you from password guessing attacks."}, "6": {"src": "https://ps.w.org/wordfence/assets/screenshot-6.png?rev=2087795", "caption": "Block attackers by IP, Country, IP range, Hostname, Browser or Referrer."}, "7": {"src": "https://ps.w.org/wordfence/assets/screenshot-7.png?rev=2087795", "caption": "The Wordfence Live Traffic view shows you real-time activity on your site including bot traffic and exploit attempts."}, "8": {"src": "https://ps.w.org/wordfence/assets/screenshot-8.png?rev=2098106", "caption": "Take login security to the next level with Two-Factor Authentication."}, "9": {"src": "https://ps.w.org/wordfence/assets/screenshot-9.png?rev=2087795", "caption": "Logging in is easy with Wordfence 2FA."}}, "support_url": "https://wordpress.org/support/plugin/wordfence/", "contributors": {"wfmatt": {"avatar": "https://secure.gravatar.com/avatar/f40c4f6e89947faf787e5959c136745d45c07dd46495db373940028c51dc8d65?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wfmatt/", "display_name": "wfmatt"}, "wfryan": {"avatar": "https://secure.gravatar.com/avatar/4960c082f7752f49cb6bc9396d93152c0c0d1a4fafd79853900197f859d6e936?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wfryan/", "display_name": "wfryan"}, "wfmattr": {"avatar": "https://secure.gravatar.com/avatar/ab283e340c004a27f20fcbef7f76163a21ceb505d219fe8e5d0be65d784c84eb?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wfmattr/", "display_name": "WFMattR"}, "mmaunder": {"avatar": "https://secure.gravatar.com/avatar/d011a414483d64f738ccc873b40569fc6affab79e0b37ffa06941d0248f909e0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mmaunder/", "display_name": "Mark Maunder"}}, "last_updated": "2025-08-25 6:27pm GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wordfence.8.1.0.zip", "author_profile": "https://profiles.wordpress.org/mmaunder/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 5000000, "aspiresync_meta": {"id": "019a30bf-fd7e-7229-9fd7-0f2ce74b0dd3", "name": "Wordfence Security – Firewall, Malware Scan, and Login Security", "slug": "wordfence", "type": "plugin", "origin": "wp_org", "pulled": 1761754479, "status": "open", "checked": 1761754479, "updated": 1756146420, "version": "8.1.0"}, "support_threads": 178, "requires_plugins": [], "short_description": "Firewall, Malware Scanner, Two Factor Auth, and Comprehensive Security Features, powered by our 24-hour team. Make security a priority with Wordfence.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "https://support.wordfence.com/", "support_threads_resolved": 161}'); -INSERT INTO public.plugins VALUES ('019a30c1-67d8-731a-914b-01dc700b99c2', 'wordpress-importer', 'WordPress Importer', 'Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.', '

    The WordPress Importer will import the following content from a WordPress export file:

    -
      -
    • Posts, pages and other custom post types
    • -
    • Comments and comment meta
    • -
    • Custom fields and post meta
    • -
    • Categories, tags and terms from custom taxonomies and term meta
    • -
    • Authors
    • -
    -

    For further information and instructions please see the documention on Importing Content.

    -

    Filters

    -

    The importer has a couple of filters to allow you to completely enable/block certain features:

    -
      -
    • import_allow_create_users: return false if you only want to allow mapping to existing users
    • -
    • import_allow_fetch_attachments: return false if you do not wish to allow importing and downloading of attachments
    • -
    • import_attachment_size_limit: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)
    • -
    -

    There are also a few actions available to hook into:

    -
      -
    • import_start: occurs after the export file has been uploaded and author import settings have been chosen
    • -
    • import_end: called after the last output from the importer
    • -
    -', '0.9.4', 'WordPress.org', '5.2', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/wordpress-importer.0.9.4.zip', '2010-05-20 00:00:00+00', '2025-10-10 20:55:00+00', 'https://profiles.wordpress.org/wordpressdotorg/', 62, 313, 6, 2, 3000000, 64369385, 'https://wordpress.org/plugins/wordpress-importer/', 'https://wordpressfoundation.org/donate/', 'community', NULL, 'https://wordpress.org/support/plugin/wordpress-importer/', NULL, 'https://github.com/WordPress/wordpress-importer', 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WordPress Importer", "slug": "wordpress-importer", "tags": {"importer": "importer"}, "added": "2010-05-20", "icons": {"1x": "https://ps.w.org/wordpress-importer/assets/icon.svg?rev=2791650", "svg": "https://ps.w.org/wordpress-importer/assets/icon.svg?rev=2791650"}, "author": "WordPress.org", "rating": 62, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654", "high": false}, "ratings": {"1": 112, "2": 30, "3": 21, "4": 25, "5": 125}, "version": "0.9.4", "homepage": "https://wordpress.org/plugins/wordpress-importer/", "requires": "5.2", "sections": {"faq": "\n
    \nHelp! I’m getting out of memory errors or a blank screen.\n\n

    \n

    If your exported file is very large, the import script may run into your host’s configured memory limit for PHP.

    \n

    A message like “Fatal error: Allowed memory size of 8388608 bytes exhausted” indicates that the script can’t successfully import your XML file under the current PHP memory limit. If you have access to the php.ini file, you can manually increase the limit; if you do not (your WordPress installation is hosted on a shared server, for instance), you might have to break your exported XML file into several smaller pieces and run the import script one at a time.

    \n

    For those with shared hosting, the best alternative may be to consult hosting support to determine the safest approach for running the import. A host may be willing to temporarily lift the memory limit and/or run the process directly from their end.

    \n

    Support Article: Importing Content

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Might be OK for very small imports

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy B Eades (BrentEades) on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I keep waiting for this plugin to stop being so unreliable but it hasn''t. On every site and host where I use it, it can handle up to maybe 100 posts at a time, if I''m lucky, but after that it''s likely to freeze or fail. Not recommended for anything but small-scale imports/exports.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    sehr eingeschränkt bezüglich Export

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Tauchente (tauchente) on September 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    sehr eingeschränkt bezüglich Export

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    gar nicht so schlecht

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Maxim (mxfx) on March 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    gar nicht so schlecht wie die andere hier den Plugin bewerten.
    + Beiträge wurden vollständig importiert
    + die Seiten sehen schief aus, aber wenn man aus einem Theme in ein anderen importiert, rechnet man auch damit, dass die Seiten nicht perfekt aussehen.

    \n\n\n\n

    ..und dass alles übrigens war kostenlos ..

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    funktioniert

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Klaus Kullmann (amafino) on November 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    War beim Erstellen hilfreich. Produkte,Bilder und Kunden importiert; viel Handarbeit und Wissen nötig. Bestellungen lassen sich leider nicht importieren.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So much bugs

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy liamanderson1993 on July 18, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We tried this multiple times but not working. It has some conflict with hosting and our hosting company suggests not to use this plugin. It wasted so many hours in the process and now I need to find another alternative.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Getting better and better

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mrkenobi on November 4, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I remember the time when this plugin was partially useless, but today I managed to export all of my posts and images easily and import them to my new installation. So, there was no need for a 3rd party plugin.
    This is useful for cluttered databases: when you transfer all your posts and images to new installation, then your database will have nothing but posts and images. Light and fast.
    Bye

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ianpeterharding on October 24, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works very well indeed!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works well for moving posts between blogs.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kelson (Kelson) on October 6, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Good for the main use cases: restore from backup, and moving posts between blogs. Unfortunately the image import doesn''t seem to work (WordPress 6.3 with plugin 0.8.1), which makes it a pain to clean up image-heavy posts.

    \n\n\n\n

    One thing I''d like to do with this that I can''t is to import another copy of a cross-post and merge the comment threads. As it is, the best I can do is import the duplicate copy and then use another plugin (or dig into the database) to move the comments around.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very helpful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Bulat2 on August 10, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Needed to copy the content of the old website to the one which is developed from scratch - and it worked!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    PERFECT BACKUP for Categories Users Comments

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy JEFF BAYGENTS (jeffbaygents) on July 21, 2023\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve used this just a few times in the past 18 months. And one time it was an incredible, urgent need as there were no server backups available from a web host (not with them anymore). Another time I made a mistake and deleted some comments.

    \n\n\n\n

    Anyway, this is only the 2nd review for this plugin within the past year or so. And I see a lot of negative scored posts. After reading them, I noticed a number of the 1-star reviews seemed to be user error. I''ve been in IT Management, development, and consulting for 4 decades. I use very little custom coding on my sites because, in my past experience, there are far less issues during updates and upgrades. So, with that said, I have also noticed there are a lot of optional settings to decide when using this tool. And many are preselected that I unselect. I recommend taking your time when using this tool and defining your own settings every time you use it.

    \n\n\n\n

    I use about 20 plugins and there''s no interference with any of them. But, I am careful about which plugins I retain. Also, I use this plugin just create backups or to perform restores from them. Then, I uninstall it until I need it again. For example, I''m here today because I''m getting ready to use it again as I''m about to make some major category changes. It will be very handy to use this tool to perform backups (and any needed restores) instead of using a site restore that will reset recent work on posts or pages.

    \n\n\n\n

    I use this as an additional backup and as an archive for all my sites. It''s always saved me when I needed it and I''ve found it to be reliable and solid. It''s been absolutely perfect for me when performing work on tags and categories so I don''t have to use a site restore.

    \n
    \n
    \n", "changelog": "

    0.9.4

    \n
      \n
    • Fix a bug that caused self-closing blocks to be incorrectly serialized during URL rewriting.
    • \n
    \n

    0.9.3

    \n
      \n
    • Rewrite attachment URLs to the new URL structure
    • \n
    \n

    0.9.2

    \n
      \n
    • Rewrite site URLs in block attributes.
    • \n
    \n

    0.9.1

    \n
      \n
    • Add support for rewriting site URLs in post content and excerpts.
    • \n
    \n

    0.9.0

    \n
      \n
    • Introduce a new XML parser class WXR_Parser_XML_Processor that replaces the
      \ndeprecated WXR_Parser_Regex class.
    • \n
    \n

    0.8.4

    \n
      \n
    • Fix a bug on deserialization of untrusted input.
    • \n
    • Update compatibility tested-up-to to WordPress 6.7.2.
    • \n
    \n

    0.8.3

    \n
      \n
    • Update compatibility tested-up-to to WordPress 6.7.
    • \n
    • Update call to post_exists to include post_type in the query
    • \n
    • PHP 8.4 compatibility fixes.
    • \n
    \n

    0.8.2

    \n
      \n
    • Update compatibility tested-up-to to WordPress 6.4.2.
    • \n
    • Update doc URL references.
    • \n
    • Adjust workflow triggers.
    • \n
    \n

    0.8.1

    \n
      \n
    • Update compatibility tested-up-to to WordPress 6.2.
    • \n
    • Update paths to build status badges.
    • \n
    \n

    0.8

    \n
      \n
    • Update minimum WordPress requirement to 5.2.
    • \n
    • Update minimum PHP requirement to 5.6.
    • \n
    • Update compatibility tested-up-to to WordPress 6.1.
    • \n
    • PHP 8.0, 8.1, and 8.2 compatibility fixes.
    • \n
    • Fix a bug causing blank lines in content to be ignored when using the Regex Parser.
    • \n
    • Fix a bug resulting in a PHP fatal error when IMPORT_DEBUG is enabled and a category creation error occurs.
    • \n
    • Improved Unit testing & automated testing.
    • \n
    \n

    0.7

    \n
      \n
    • Update minimum WordPress requirement to 3.7 and ensure compatibility with PHP 7.4.
    • \n
    • Fix bug that caused not importing term meta.
    • \n
    • Fix bug that caused slashes to be stripped from imported meta data.
    • \n
    • Fix bug that prevented import of serialized meta data.
    • \n
    • Fix file size check after download of remote files with HTTP compression enabled.
    • \n
    • Improve accessibility of form fields by adding missing labels.
    • \n
    • Improve imports for remote file URLs without name and/or extension.
    • \n
    • Add support for wp:base_blog_url field to allow importing multiple files with WP-CLI.
    • \n
    • Add support for term meta parsing when using the regular expressions or XML parser.
    • \n
    • Developers: All PHP classes have been moved into their own files.
    • \n
    • Developers: Allow to change IMPORT_DEBUG via wp-config.php and change default value to the value of WP_DEBUG.
    • \n
    \n

    0.6.4

    \n
      \n
    • Improve PHP7 compatibility.
    • \n
    • Fix bug that caused slashes to be stripped from imported comments.
    • \n
    • Fix for various deprecation notices including wp_get_http() and screen_icon().
    • \n
    • Fix for importing export files with multiline term meta data.
    • \n
    \n

    0.6.3

    \n
      \n
    • Add support for import term metadata.
    • \n
    • Fix bug that caused slashes to be stripped from imported content.
    • \n
    • Fix bug that caused characters to be stripped inside of CDATA in some cases.
    • \n
    • Fix PHP notices.
    • \n
    \n

    0.6.2

    \n\n

    0.6

    \n
      \n
    • Support for WXR 1.2 and multiple CDATA sections
    • \n
    • Post aren’t duplicates if their post_type’s are different
    • \n
    \n

    0.5.2

    \n
      \n
    • Double check that the uploaded export file exists before processing it. This prevents incorrect error messages when
      \nan export file is uploaded to a server with bad permissions and WordPress 3.3 or 3.3.1 is being used.
    • \n
    \n

    0.5

    \n
      \n
    • Import comment meta (requires export from WordPress 3.2)
    • \n
    • Minor bugfixes and enhancements
    • \n
    \n

    0.4

    \n
      \n
    • Map comment user_id where possible
    • \n
    • Import attachments from wp:attachment_url
    • \n
    • Upload attachments to correct directory
    • \n
    • Remap resized image URLs correctly
    • \n
    \n

    0.3

    \n
      \n
    • Use an XML Parser if possible
    • \n
    • Proper import support for nav menus
    • \n
    • … and much more, see Trac ticket #15197
    • \n
    \n

    0.1

    \n
      \n
    • Initial release
    • \n
    \n", "description": "

    The WordPress Importer will import the following content from a WordPress export file:

    \n
      \n
    • Posts, pages and other custom post types
    • \n
    • Comments and comment meta
    • \n
    • Custom fields and post meta
    • \n
    • Categories, tags and terms from custom taxonomies and term meta
    • \n
    • Authors
    • \n
    \n

    For further information and instructions please see the documention on Importing Content.

    \n

    Filters

    \n

    The importer has a couple of filters to allow you to completely enable/block certain features:

    \n
      \n
    • import_allow_create_users: return false if you only want to allow mapping to existing users
    • \n
    • import_allow_fetch_attachments: return false if you do not wish to allow importing and downloading of attachments
    • \n
    • import_attachment_size_limit: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)
    • \n
    \n

    There are also a few actions available to hook into:

    \n
      \n
    • import_start: occurs after the export file has been uploaded and author import settings have been chosen
    • \n
    • import_end: called after the last output from the importer
    • \n
    \n", "installation": "

    The quickest method for installing the importer is:

    \n
      \n
    1. Visit Tools -> Import in the WordPress dashboard
    2. \n
    3. Click on the WordPress link in the list of importers
    4. \n
    5. Click “Install Now”
    6. \n
    7. Finally click “Activate Plugin & Run Importer”
    8. \n
    \n

    If you would prefer to do things manually then follow these instructions:

    \n
      \n
    1. Upload the wordpress-importer folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Go to the Tools -> Import screen, click on WordPress
    6. \n
    \n"}, "versions": {"0.2": "https://downloads.wordpress.org/plugin/wordpress-importer.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/wordpress-importer.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/wordpress-importer.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/wordpress-importer.0.5.zip", "0.6": "https://downloads.wordpress.org/plugin/wordpress-importer.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/wordpress-importer.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/wordpress-importer.0.8.zip", "0.5.2": "https://downloads.wordpress.org/plugin/wordpress-importer.0.5.2.zip", "0.6.1": "https://downloads.wordpress.org/plugin/wordpress-importer.0.6.1.zip", "0.6.2": "https://downloads.wordpress.org/plugin/wordpress-importer.0.6.2.zip", "0.6.3": "https://downloads.wordpress.org/plugin/wordpress-importer.0.6.3.zip", "0.6.4": "https://downloads.wordpress.org/plugin/wordpress-importer.0.6.4.zip", "0.8.1": "https://downloads.wordpress.org/plugin/wordpress-importer.0.8.1.zip", "0.8.2": "https://downloads.wordpress.org/plugin/wordpress-importer.0.8.2.zip", "0.8.3": "https://downloads.wordpress.org/plugin/wordpress-importer.0.8.3.zip", "0.8.4": "https://downloads.wordpress.org/plugin/wordpress-importer.0.8.4.zip", "0.9.0": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.0.zip", "0.9.1": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.4.zip", "trunk": "https://downloads.wordpress.org/plugin/wordpress-importer.zip"}, "downloaded": 64369385, "description": "

    The WordPress Importer will import the following content from a WordPress export file:

    \n
      \n
    • Posts, pages and other custom post types
    • \n
    • Comments and comment meta
    • \n
    • Custom fields and post meta
    • \n
    • Categories, tags and terms from custom taxonomies and term meta
    • \n
    • Authors
    • \n
    \n

    For further information and instructions please see the documention on Importing Content.

    \n

    Filters

    \n

    The importer has a couple of filters to allow you to completely enable/block certain features:

    \n
      \n
    • import_allow_create_users: return false if you only want to allow mapping to existing users
    • \n
    • import_allow_fetch_attachments: return false if you do not wish to allow importing and downloading of attachments
    • \n
    • import_attachment_size_limit: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)
    • \n
    \n

    There are also a few actions available to hook into:

    \n
      \n
    • import_start: occurs after the export file has been uploaded and author import settings have been chosen
    • \n
    • import_end: called after the last output from the importer
    • \n
    \n", "donate_link": "https://wordpressfoundation.org/donate/", "num_ratings": 313, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/wordpress-importer/", "contributors": {"wordpressdotorg": {"avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "display_name": "WordPress.org"}}, "last_updated": "2025-10-10 8:55pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wordpress-importer.0.9.4.zip", "author_profile": "https://profiles.wordpress.org/wordpressdotorg/", "business_model": "community", "repository_url": "https://github.com/WordPress/wordpress-importer", "upgrade_notice": [], "active_installs": 3000000, "aspiresync_meta": {"id": "019a30bf-fd98-7042-9d47-e1924110f7d2", "name": "WordPress Importer", "slug": "wordpress-importer", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760129700, "version": "0.9.4"}, "support_threads": 6, "requires_plugins": [], "short_description": "Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.", "author_block_count": "1", "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 2}'); -INSERT INTO public.plugins VALUES ('019a30c1-67dd-738e-8419-89ee615b92f6', 'wordpress-seo', 'Yoast SEO – Advanced SEO with real-time guidance and built-in AI', 'Improve your SEO with real-time feedback, schema, and clear guidance. Upgrade for AI tools, Google Docs integration, and 24/7 support, no hidden fees.', '

    Improve your SEO with real-time feedback, schema, and clear guidance. Upgrade for AI tools, Google Docs integration, and 24/7 support, no hidden fees.

    -

    Yoast SEO: The #1 WordPress SEO Plugin

    -

    Since 2008, Yoast SEO has helped millions of websites worldwide improve their visibility and SEO performance.
    -Our mission is SEO for Everyone — from small local businesses to some of the most visited sites on the web.

    -

    Yoast SEO gives you everything you need to manage your on-site SEO effectively.
    -The Yoast SEO Premium plugin and its extensions unlock even more advanced and AI-powered tools.

    -

    Handing you the competitive edge

    -

    SEO is the most consistent and cost-effective source of website traffic — but it can be complex. Whether you’re just starting out or an advanced user, Yoast SEO helps you handle SEO confidently and efficiently.

    -

    Don’t have time to stay on top of AI search and best practices? Keeping Yoast SEO updated means you automatically benefit from ongoing technical improvements, schema updates, and AI advancements — all guided by our signature traffic light approach.

    -

    Empower search engines to better understand your website using Schema.org structured data integration, and access in-depth content and readability analysis tools that help you create content designed to perform well in search.

    -

    Quick and easy setup

    -

    Setting up Yoast SEO is quick and straightforward — no technical background required.
    -Our step-by-step configuration wizard walks you through essential setup details so Yoast SEO can generate accurate structured data that helps search engines understand your site.

    -

    Switching from another SEO plugin like Rank Math or AIOSEO? Migration is seamless.
    -Import your existing SEO data and settings safely with our built-in import/export tools.

    -

    Content and AI features

    -

    Unlock your content’s full potential with Yoast SEO’s advanced content analysis and AI-powered tools.

    -

    Content optimization features:
    -– Detailed SEO analysis to guide keyword targeting and site performance.
    -– Readability analysis for clear, engaging, and user-friendly writing.
    -– SERP previews for both desktop and mobile results.
    -– HowTo and FAQ blocks with built-in schema support.
    -– Breadcrumbs block for improved navigation.
    -– Inclusive Language Analysis to make your content more considerate and accessible.
    -– Semrush integration for keyword research directly in Yoast SEO.
    -– Wincher integration to track keyword performance inside your dashboard.
    -– Elementor integration for seamless optimization within your favorite builder.

    -

    AI features (included in Premium):
    -– Yoast AI Generate – Instantly create five SEO-friendly titles and meta descriptions, with one-click regeneration for more options.
    -– Yoast AI Optimize – Improve keyphrase placement (introduction, distribution, density) automatically.
    -– Yoast AI Summarize (New 2025) – Generate quick content summaries for briefs or social posts.
    -– All AI tools included – No extra accounts, limits, or hidden costs.

    -

    These tools help you craft optimized, helpful content that resonates with readers and performs strongly across search platforms.

    -

    Taking care of your technical SEO

    -

    Yoast SEO automatically handles much of your site’s technical SEO, freeing you to focus on your content.

    -

    Key technical SEO features:
    -– Automated meta tag optimization right out of the box.
    -– Canonical URLs to prevent duplicate content issues.
    -– Advanced XML sitemaps for clear site indexing.
    -– Best-in-class Schema.org integration to improve search understanding and appearance.
    -– Complete breadcrumb control for visitors and crawlers.
    -– Performance improvements that help reduce load times.
    -– Crawl settings to manage how bots access your site and reduce environmental impact.
    -– LLMs.txt management to guide how large language models interact with your content.

    -

    Every update delivers ongoing technical SEO enhancements automatically.

    -

    Keep your website in perfect shape

    -

    Whether you’re a creator, business owner, or developer, Yoast SEO helps maintain your website’s SEO health:

    -
      -
    • Cornerstone content tools to organize and prioritize key pages.
    • -
    • Front-end SEO inspector to view and edit titles, descriptions, and schema live.
    • -
    • SEO roles to delegate plugin access securely across teams.
    • -
    • Regular 2-week update cycle to ensure compatibility with the latest SEO standards and search engine changes.
    • -
    -

    Powerful integrations

    -

    Yoast SEO works seamlessly with popular WordPress tools to enhance your workflow and results:

    - -

    Yoast SEO Premium – AI-powered SEO for WordPress

    -

    Yoast SEO Premium enhances everything in Yoast SEO with advanced automation, AI tools, and professional support.
    -Trusted by millions, it helps you optimize efficiently for both traditional and AI-driven search.

    -

    Tackle your SEO challenges:
    -– Keep pace with algorithm and AI search updates.
    -– Target the right audience effectively.
    -– Automate redirects, crawl controls, and internal linking.
    -– Identify orphaned content and improve site structure.
    -– Get support when you need it.

    -

    Premium highlights:
    -– AI-generated titles and meta descriptions.
    -– Smart internal linking suggestions.
    -– Social previews for Facebook and X.
    -– Redirect Manager with bulk tools and automatic prompts.
    -– Bot Blocker for AI crawlers (GPTBot, CCBot, Google-Extended).
    -– IndexNow integration for fast content updates.
    -– Front-end SEO Inspector for real-time editing.
    -– SEO Workouts to improve orphaned and cornerstone content.
    -– Google Docs add-on for seamless SEO writing in Docs.
    -– 24/7 premium support from SEO specialists.

    -

    Includes at no extra cost:
    -– Yoast Local SEO: Optimize for local audiences and Google Maps.
    -– Yoast Video SEO: Ensure Google understands your videos with video sitemaps and schema.
    -– Yoast News SEO: Increase visibility in Google News and Top Stories.

    -

    Yoast WooCommerce SEO – Advanced SEO for Online Stores

    -

    Yoast WooCommerce SEO builds on Yoast SEO Premium with ecommerce-specific tools to improve your store’s visibility and conversion potential.

    -

    Key ecommerce SEO features:
    -– WooCommerce-specific XML sitemap excluding non-shopping content.
    -– Product structured data for enhanced rich results (price, reviews, availability).
    -– Canonical URL management to prevent duplicates.
    -– Ecommerce-focused content analysis for GTINs, SKUs, and short descriptions.
    -– AI Generate for ecommerce – Instantly create optimized titles and meta descriptions for product and category pages.

    -

    Benefits:
    -– Improve product visibility with automated structured data.
    -– Enhance crawl efficiency for large catalogs.
    -– Save time through metadata templates and automation.
    -– Increase engagement with AI-optimized ecommerce metadata.

    -

    Built for WooCommerce, trusted by thousands of online stores worldwide.

    -

    For Developers

    -

    Yoast SEO is built with developers in mind. With modern APIs, hooks, and a unified indexables system, you can extend or integrate SEO functionality across custom themes, plugins, or headless setups.

    -

    REST API

    -

    Retrieve SEO metadata for any post or URL, including meta tags, Open Graph, Twitter Cards, and Schema.org data.
    -Learn more about the REST API.

    -

    Surfaces API

    -

    Access SEO data directly in code via YoastSEO()->meta->for_current_page().
    -Supports titles, descriptions, canonicals, and schema.
    -Read the Surfaces API documentation.

    -

    Metadata API

    -

    Use the Metadata API to filter, override, or extend meta tags with WordPress hooks such as wpseo_title, wpseo_metadesc, and wpseo_canonical.

    -

    Schema API

    -

    The Schema API lets you modify or extend Schema.org graph pieces, including Article, Organization, Person, Breadcrumb, and WebPage entities.

    -

    Block Editor compatibility

    -

    Yoast SEO integrates directly with the WordPress Block Editor (Gutenberg).
    -It outputs schema for HowTo and FAQ blocks by default, and developers can extend schema for custom blocks.

    -

    Indexables

    -

    At the core of Yoast SEO lies the indexables system, unifying all SEO data for faster queries and consistent metadata across outputs.

    -

    Ongoing support and education

    -

    Yoast is powered by expert developers, testers, and SEO specialists who keep improving the plugin.
    -We’re committed to helping users grow their SEO skills with resources such as:

    - -

    Yoast SEO — built to make search optimization accessible, reliable, and ready for the future of AI search.

    -', '26.2', 'Yoast', '6.7', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/wordpress-seo.26.2.zip', '2010-10-11 00:00:00+00', '2025-10-21 07:47:00+00', 'https://profiles.wordpress.org/yoast/', 96, 27779, 100, 81, 10000000, 876285068, 'https://yoa.st/1uj', 'https://yoa.st/1up', 'commercial', 'https://yoast.com/help/support/#premium', 'https://wordpress.org/support/plugin/wordpress-seo/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Yoast SEO – Advanced SEO with real-time guidance and built-in AI", "slug": "wordpress-seo", "tags": {"seo": "seo", "schema": "schema", "readability": "Readability", "xml-sitemap": "xml sitemap", "content-analysis": "Content analysis"}, "added": "2010-10-11", "icons": {"1x": "https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3112542", "2x": "https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3112542"}, "author": "Yoast", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=3257862", "high": "https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=3257862"}, "ratings": {"1": 840, "2": 140, "3": 199, "4": 635, "5": 25965}, "version": "26.2", "homepage": "https://yoa.st/1uj", "requires": "6.7", "sections": {"faq": "\n
    \nHow do the XML Sitemaps in the Yoast SEO plugin work?\n\n

    \n

    Having an XML sitemap can be beneficial for SEO, as Google can retrieve essential pages of a website very fast, even if the internal linking of a site isn’t flawless.
    \nThe sitemap index and individual sitemaps are updated automatically as you add or remove content and will include the post types you want search engines to index. Post Types marked as noindex will not appear in the sitemap. Learn more about XML Sitemaps.

    \n

    \n
    \nHow can I add my website to Google Search Console?\n\n

    \n

    It is straightforward to add your website to Google Search Console.
    \n1. Create a Google Search Console account and login into your account.
    \n2. Click ‘Add a property’ under the search drop-down.
    \n3. Enter your website URL in the box and click ‘Continue’.
    \n4. Click the arrow next to ‘HTML tag’ to expand the option.
    \n5. Copy the meta tag.
    \n6. Log in to your WordPress website.
    \n7. Click on ‘SEO’ in the dashboard.
    \n8. Click on ‘General’.
    \n9. Click on the ‘Webmaster Tools’ tab.
    \n10. Paste the code in the Google field and click ‘Save Changes’.
    \n11. Go back to Google Search Console and click ‘Verify’.

    \n

    If you want more details steps, please visit our article on our help center.

    \n

    \n
    \nHow do I implement Yoast SEO breadcrumbs?\n\n

    \n

    The steps below are a temporary solution as manual edits made to theme files may be overwritten with future theme updates. Please contact the theme developer for a permanent solution. We’ve written an article about the importance of breadcrumbs for SEO.

    \n

    To implement the breadcrumbs function in Yoast SEO, you will have to edit your theme. We recommend that prior to any editing of the theme files, a backup is taken. Your host provider can help you take a backup.
    \nCopy the following code into your theme where you want the breadcrumbs to be. If you are not sure, you will need to experiment with placement:

    \n
    <?php\nif ( function_exists( ''yoast_breadcrumb'' ) ) {\n    yoast_breadcrumb( ''<p id=\"breadcrumbs\">'',''</p>'' );\n}\n?>\n
    \n

    Common places where you could place your breadcrumbs are inside your single.php and/or page.php file just above the page’s title. Another option that makes it really easy in some themes is by just pasting the code in header.php at the very end.

    \n

    In most non-WooTheme themes, this code snippet should not be added to your functions.php file.
    \nAlternatively, you can manually add the breadcrumb shortcode to individual posts or pages: [wpseo_breadcrumb]

    \n

    If you need more details or a step by step guide, read our Implementation guide for Yoast SEO breadcrumbs.

    \n

    \n
    \nHow do I noindex URLS?\n\n

    \n

    Yoast SEO provides multiple options for setting a URL or group of URLs to noindex. Read more about how to do this in this guide.

    \n

    \n
    \nGoogle shows the wrong description, how do I fix this?\n\n

    \n

    If you’ve crafted nice meta descriptions for your blog posts, nothing is more annoying than Google showing another description for your site completely in the search result snippet.

    \n

    Possible causes could be:
    \n1. wrong description in code
    \n2. Google cache is outdated
    \n3. Search term manipulation
    \n4. Google ignored the meta description

    \n

    You can read more here on how to solve the issue with the wrong description.

    \n

    \n
    \nHow often is Yoast SEO updated?\n\n

    \n

    Yoast SEO is updated every two weeks. If you want to know why, please read this post on why we release every two weeks!

    \n

    \n
    \nHow do I get support?\n\n

    \n

    As our free plugin is used by millions of people worldwide, we cannot offer you all one on one support. If you have trouble with the Yoast SEO for WordPress plugin, you can get help on the support forums here at wordpress.org or by checking out our help center at yoast.com/help/.

    \n

    The plugins you buy at Yoast are called ‘premium plugins’ (even if Premium isn’t in its name) and include a complete year of free updates and premium support. This means you can contact our support team if you have any questions about that plugin.

    \n

    Read more on how to get support

    \n

    \n
    \nWhat happens to my data if I enable usage tracking?\n\n

    \n

    This page on yoast.com explains what data we collect to improve Yoast SEO. We only collect data when you explicitly opt in. Read more about how we handle your data in our Privacy Policy.

    \n

    \n
    \nI have a different question than listed here\n\n

    \n

    Your question has most likely been answered on our help center: yoast.com/help/.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best Seo Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Sushyant Zavarzadeh (sushyant) on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I can confidently say this is the best SEO plugin ever made for WordPress. Its excellent features, regular updates, and step-by-step guidance set it apart from similar plugins. One of the things I like about this plugin is the checklist available in the post editing section, which guides you on how to optimise your content for the keyword. Green means excellent, orange means acceptable, and red means you need to work more seriously on the content. But with its guidance, you can handle it easily.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Still the Gold Standard for WordPress SEO

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy shadowheezy on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yoast SEO continues to be one of the most essential plugins for anyone serious about growing their WordPress site. The setup is intuitive, and the content analysis tools make it easy to optimize posts for both readers and search engines.

    \n\n\n\n

    I especially love the readability checks, schema markup, and built-in XML sitemaps — everything just works seamlessly. The regular updates and documentation show how much care the team puts into keeping Yoast at the top of its game.

    \n\n\n\n

    If you want better rankings and cleaner on-page SEO, this is a must-have plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Essential

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy rar77 on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    SEO is not important apparently

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Frank (Frankoutsole) on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The developers are aware that their plugin does not send over the ''availibility'' information of variable products to Google. The fields ''availability'' and ''priceValidUntil'' showing for variable products are missing in our WooCommerce SEO schema, and it gives a warning in the Google Rich test tool.\" Hence about 70% visibility is limited. Not that important, right. THIS IS A SEO PLUGIN.

    \n\n\n\n

    Their help: \"Customizing the plugin to fit an individual site''s needs is outside the scope of support due to the required programming expertise.\"

    \n\n\n\n

    Yes, having decent rich snippets is super duper individual. Are you guys serious? That''s nuts! Going back to rankmath.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great for optimizing SEO

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fever100 on October 17, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It helped me optimize SEO on my site. I like the meta data options for blog posts

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wow

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nickshkv on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have just installed it. But already have recommendations! That''s great! Thank you.
    The setup was incredibly smooth. The plugin walked me through the configuration step by step, so I was up and running in minutes.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Michael Fridrich (michaelfridrich) on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin is a good guide, especially for new SEO. Gives a hint of improvement instantly and updates regularly.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Smooth Experience but Could Be Better Value

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Asif Hossain (asifhossain1) on September 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The interface is clean, friendly, and makes SEO feel less intimidating. It is a solid choice for beginners who want quick wins without a steep learning curve. That said, the premium price feels hard to justify when other plugins give you more for less.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Expensive for Premium Features

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rahul Basu (rahulbasu) on August 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After extensive use across dozens of projects, Yoast SEO remains the gold standard for WordPress SEO with its intuitive traffic light system and solid technical foundation. The new AI-powered meta descriptions are genuinely helpful, and the free version covers most small business needs effectively. However, the premium version at $99/year feels overpriced for what you get, and competitors like RankMath now offer similar features for free. The plugin can create a false sense of security - hitting all green lights doesn''t guarantee rankings.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    What a time saver and sooo much better than my efforts

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy trcs on August 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am not good at marketing and fancy words and SEO ... and this software has made life so much better. I am proud of the blurb now appearing in the search engines ... I am sure my sales have improved.

    \n
    \n
    \n", "changelog": "

    26.2

    \n

    Release date: 2025-10-21

    \n

    Yoast SEO 26.2 brings more enhancements and bugfixes. Find more information about our software releases and updates here.

    \n

    Enhancements

    \n
      \n
    • Adds a Pronouns field to the user profile and includes these pronouns in the Schema.org output. Props to jdevalk.
    • \n
    • Adds edit buttons next to the keyphrase in meta description, keyphrase in slug, and keyphrase in SEO title assessments when there is no keyphrase and/or no meta description, slug, or SEO title.
    • \n
    • Improves the transition words assessment for Arabic by expanding the list of recognized transition words. Props to Reem76-ar.
    • \n
    • Introduces Content blocks collapsible inside Yoast Metabox and Sidebar to improve Yoast custom blocks discoverability.
    • \n
    \n

    Other

    \n
      \n
    • Adapts the behavior of the Contact our support team button in the Support page to our new Premium and WooCommerce SEO subscription plans.
    • \n
    • Disables opcache invalidation on plugin upgrade for a subset of the userbase.
    • \n
    \n

    26.1.1

    \n

    Release date: 2025-10-08

    \n

    Other

    \n
      \n
    • Updates an outdated piece of copy.
    • \n
    \n

    26.1

    \n

    Release date: 2025-10-07

    \n

    Yoast SEO 26.1 brings more enhancements and bugfixes. Find more information about our software releases and updates here.

    \n

    Enhancements

    \n
      \n
    • Improves the UX of the llms.txt settings page, by informing the user that they have to save their changes in order for the file to be generated.
    • \n
    • Introduces the option to add an Ahrefs verification code via the Yoast Settings page.
    • \n
    \n

    Bugfixes

    \n
      \n
    • Fixes a bug where the llms.txt opt-in would hide behind the WordPress sidebar when on RTL language.
    • \n
    \n

    Other

    \n
      \n
    • Introduces the Yoast\\WP\\SEO\\should_invalidate_opcache filter that disables opcache invalidation on plugin upgrade.
    • \n
    • Lets users know about the new Yoast SEO AI+ plan and related features.
    • \n
    • Updates the Site features page to include icons instead of images.
    • \n
    \n

    Earlier versions

    \n

    For the changelog of earlier versions, please refer to the changelog on yoast.com.

    \n", "description": "

    Improve your SEO with real-time feedback, schema, and clear guidance. Upgrade for AI tools, Google Docs integration, and 24/7 support, no hidden fees.

    \n

    Yoast SEO: The #1 WordPress SEO Plugin

    \n

    Since 2008, Yoast SEO has helped millions of websites worldwide improve their visibility and SEO performance.
    \nOur mission is SEO for Everyone — from small local businesses to some of the most visited sites on the web.

    \n

    Yoast SEO gives you everything you need to manage your on-site SEO effectively.
    \nThe Yoast SEO Premium plugin and its extensions unlock even more advanced and AI-powered tools.

    \n

    Handing you the competitive edge

    \n

    SEO is the most consistent and cost-effective source of website traffic — but it can be complex. Whether you’re just starting out or an advanced user, Yoast SEO helps you handle SEO confidently and efficiently.

    \n

    Don’t have time to stay on top of AI search and best practices? Keeping Yoast SEO updated means you automatically benefit from ongoing technical improvements, schema updates, and AI advancements — all guided by our signature traffic light approach.

    \n

    Empower search engines to better understand your website using Schema.org structured data integration, and access in-depth content and readability analysis tools that help you create content designed to perform well in search.

    \n

    Quick and easy setup

    \n

    Setting up Yoast SEO is quick and straightforward — no technical background required.
    \nOur step-by-step configuration wizard walks you through essential setup details so Yoast SEO can generate accurate structured data that helps search engines understand your site.

    \n

    Switching from another SEO plugin like Rank Math or AIOSEO? Migration is seamless.
    \nImport your existing SEO data and settings safely with our built-in import/export tools.

    \n

    Content and AI features

    \n

    Unlock your content’s full potential with Yoast SEO’s advanced content analysis and AI-powered tools.

    \n

    Content optimization features:
    \n– Detailed SEO analysis to guide keyword targeting and site performance.
    \n– Readability analysis for clear, engaging, and user-friendly writing.
    \n– SERP previews for both desktop and mobile results.
    \n– HowTo and FAQ blocks with built-in schema support.
    \n– Breadcrumbs block for improved navigation.
    \n– Inclusive Language Analysis to make your content more considerate and accessible.
    \n– Semrush integration for keyword research directly in Yoast SEO.
    \n– Wincher integration to track keyword performance inside your dashboard.
    \n– Elementor integration for seamless optimization within your favorite builder.

    \n

    AI features (included in Premium):
    \n– Yoast AI Generate – Instantly create five SEO-friendly titles and meta descriptions, with one-click regeneration for more options.
    \n– Yoast AI Optimize – Improve keyphrase placement (introduction, distribution, density) automatically.
    \n– Yoast AI Summarize (New 2025) – Generate quick content summaries for briefs or social posts.
    \n– All AI tools included – No extra accounts, limits, or hidden costs.

    \n

    These tools help you craft optimized, helpful content that resonates with readers and performs strongly across search platforms.

    \n

    Taking care of your technical SEO

    \n

    Yoast SEO automatically handles much of your site’s technical SEO, freeing you to focus on your content.

    \n

    Key technical SEO features:
    \n– Automated meta tag optimization right out of the box.
    \n– Canonical URLs to prevent duplicate content issues.
    \n– Advanced XML sitemaps for clear site indexing.
    \n– Best-in-class Schema.org integration to improve search understanding and appearance.
    \n– Complete breadcrumb control for visitors and crawlers.
    \n– Performance improvements that help reduce load times.
    \n– Crawl settings to manage how bots access your site and reduce environmental impact.
    \n– LLMs.txt management to guide how large language models interact with your content.

    \n

    Every update delivers ongoing technical SEO enhancements automatically.

    \n

    Keep your website in perfect shape

    \n

    Whether you’re a creator, business owner, or developer, Yoast SEO helps maintain your website’s SEO health:

    \n
      \n
    • Cornerstone content tools to organize and prioritize key pages.
    • \n
    • Front-end SEO inspector to view and edit titles, descriptions, and schema live.
    • \n
    • SEO roles to delegate plugin access securely across teams.
    • \n
    • Regular 2-week update cycle to ensure compatibility with the latest SEO standards and search engine changes.
    • \n
    \n

    Powerful integrations

    \n

    Yoast SEO works seamlessly with popular WordPress tools to enhance your workflow and results:

    \n\n

    Yoast SEO Premium – AI-powered SEO for WordPress

    \n

    Yoast SEO Premium enhances everything in Yoast SEO with advanced automation, AI tools, and professional support.
    \nTrusted by millions, it helps you optimize efficiently for both traditional and AI-driven search.

    \n

    Tackle your SEO challenges:
    \n– Keep pace with algorithm and AI search updates.
    \n– Target the right audience effectively.
    \n– Automate redirects, crawl controls, and internal linking.
    \n– Identify orphaned content and improve site structure.
    \n– Get support when you need it.

    \n

    Premium highlights:
    \n– AI-generated titles and meta descriptions.
    \n– Smart internal linking suggestions.
    \n– Social previews for Facebook and X.
    \n– Redirect Manager with bulk tools and automatic prompts.
    \n– Bot Blocker for AI crawlers (GPTBot, CCBot, Google-Extended).
    \n– IndexNow integration for fast content updates.
    \n– Front-end SEO Inspector for real-time editing.
    \n– SEO Workouts to improve orphaned and cornerstone content.
    \n– Google Docs add-on for seamless SEO writing in Docs.
    \n– 24/7 premium support from SEO specialists.

    \n

    Includes at no extra cost:
    \n– Yoast Local SEO: Optimize for local audiences and Google Maps.
    \n– Yoast Video SEO: Ensure Google understands your videos with video sitemaps and schema.
    \n– Yoast News SEO: Increase visibility in Google News and Top Stories.

    \n

    Yoast WooCommerce SEO – Advanced SEO for Online Stores

    \n

    Yoast WooCommerce SEO builds on Yoast SEO Premium with ecommerce-specific tools to improve your store’s visibility and conversion potential.

    \n

    Key ecommerce SEO features:
    \n– WooCommerce-specific XML sitemap excluding non-shopping content.
    \n– Product structured data for enhanced rich results (price, reviews, availability).
    \n– Canonical URL management to prevent duplicates.
    \n– Ecommerce-focused content analysis for GTINs, SKUs, and short descriptions.
    \n– AI Generate for ecommerce – Instantly create optimized titles and meta descriptions for product and category pages.

    \n

    Benefits:
    \n– Improve product visibility with automated structured data.
    \n– Enhance crawl efficiency for large catalogs.
    \n– Save time through metadata templates and automation.
    \n– Increase engagement with AI-optimized ecommerce metadata.

    \n

    Built for WooCommerce, trusted by thousands of online stores worldwide.

    \n

    For Developers

    \n

    Yoast SEO is built with developers in mind. With modern APIs, hooks, and a unified indexables system, you can extend or integrate SEO functionality across custom themes, plugins, or headless setups.

    \n

    REST API

    \n

    Retrieve SEO metadata for any post or URL, including meta tags, Open Graph, Twitter Cards, and Schema.org data.
    \nLearn more about the REST API.

    \n

    Surfaces API

    \n

    Access SEO data directly in code via YoastSEO()->meta->for_current_page().
    \nSupports titles, descriptions, canonicals, and schema.
    \nRead the Surfaces API documentation.

    \n

    Metadata API

    \n

    Use the Metadata API to filter, override, or extend meta tags with WordPress hooks such as wpseo_title, wpseo_metadesc, and wpseo_canonical.

    \n

    Schema API

    \n

    The Schema API lets you modify or extend Schema.org graph pieces, including Article, Organization, Person, Breadcrumb, and WebPage entities.

    \n

    Block Editor compatibility

    \n

    Yoast SEO integrates directly with the WordPress Block Editor (Gutenberg).
    \nIt outputs schema for HowTo and FAQ blocks by default, and developers can extend schema for custom blocks.

    \n

    Indexables

    \n

    At the core of Yoast SEO lies the indexables system, unifying all SEO data for faster queries and consistent metadata across outputs.

    \n

    Ongoing support and education

    \n

    Yoast is powered by expert developers, testers, and SEO specialists who keep improving the plugin.
    \nWe’re committed to helping users grow their SEO skills with resources such as:

    \n\n

    Yoast SEO — built to make search optimization accessible, reliable, and ready for the future of AI search.

    \n", "screenshots": "
    1. \"The

      The modern interface makes Yoast SEO easy to work with.

    2. \"Easily

      Easily manage how your posts and pages appear in SERPs.

    3. \"Yoast

      Yoast SEO Premium has extra crawl optimization options.

    4. \"Yoast

      Yoast SEO integrates with tools like Semrush and Wincher.

    5. \"The

      The famous SEO and readability analyses in Yoast SEO.

    6. \"See

      See what your post looks like in Google.

    7. \"The

      The First-time configuration helps you get started quickly.

    8. \"The

      The inclusive language analysis in Yoast SEO.

    9. \"\"
    ", "installation": "

    Starting with Yoast SEO consists of just two steps: installing and setting up the plugin. Yoast SEO is designed to work with your site’s specific needs, so don’t forget to go through the Yoast SEO first-time configuration as explained in the ‘after activation’ step! For the most up-to-date guidance on how to install Yoast SEO products, please visit our help center.

    \n"}, "versions": {"18.0": "https://downloads.wordpress.org/plugin/wordpress-seo.18.0.zip", "18.1": "https://downloads.wordpress.org/plugin/wordpress-seo.18.1.zip", "18.2": "https://downloads.wordpress.org/plugin/wordpress-seo.18.2.zip", "18.3": "https://downloads.wordpress.org/plugin/wordpress-seo.18.3.zip", "18.4": "https://downloads.wordpress.org/plugin/wordpress-seo.18.4.zip", "18.5": "https://downloads.wordpress.org/plugin/wordpress-seo.18.5.zip", "18.6": "https://downloads.wordpress.org/plugin/wordpress-seo.18.6.zip", "18.7": "https://downloads.wordpress.org/plugin/wordpress-seo.18.7.zip", "18.8": "https://downloads.wordpress.org/plugin/wordpress-seo.18.8.zip", "18.9": "https://downloads.wordpress.org/plugin/wordpress-seo.18.9.zip", "19.0": "https://downloads.wordpress.org/plugin/wordpress-seo.19.0.zip", "19.1": "https://downloads.wordpress.org/plugin/wordpress-seo.19.1.zip", "19.2": "https://downloads.wordpress.org/plugin/wordpress-seo.19.2.zip", "19.3": "https://downloads.wordpress.org/plugin/wordpress-seo.19.3.zip", "19.4": "https://downloads.wordpress.org/plugin/wordpress-seo.19.4.zip", "19.5": "https://downloads.wordpress.org/plugin/wordpress-seo.19.5.zip", "19.6": "https://downloads.wordpress.org/plugin/wordpress-seo.19.6.zip", "19.7": "https://downloads.wordpress.org/plugin/wordpress-seo.19.7.zip", "19.8": "https://downloads.wordpress.org/plugin/wordpress-seo.19.8.zip", "19.9": "https://downloads.wordpress.org/plugin/wordpress-seo.19.9.zip", "20.0": "https://downloads.wordpress.org/plugin/wordpress-seo.20.0.zip", "20.1": "https://downloads.wordpress.org/plugin/wordpress-seo.20.1.zip", "20.2": "https://downloads.wordpress.org/plugin/wordpress-seo.20.2.zip", "20.3": "https://downloads.wordpress.org/plugin/wordpress-seo.20.3.zip", "20.4": "https://downloads.wordpress.org/plugin/wordpress-seo.20.4.zip", "20.5": "https://downloads.wordpress.org/plugin/wordpress-seo.20.5.zip", "20.6": "https://downloads.wordpress.org/plugin/wordpress-seo.20.6.zip", "20.7": "https://downloads.wordpress.org/plugin/wordpress-seo.20.7.zip", "20.8": "https://downloads.wordpress.org/plugin/wordpress-seo.20.8.zip", "20.9": "https://downloads.wordpress.org/plugin/wordpress-seo.20.9.zip", "21.0": "https://downloads.wordpress.org/plugin/wordpress-seo.21.0.zip", "21.1": "https://downloads.wordpress.org/plugin/wordpress-seo.21.1.zip", "21.2": "https://downloads.wordpress.org/plugin/wordpress-seo.21.2.zip", "21.3": "https://downloads.wordpress.org/plugin/wordpress-seo.21.3.zip", "21.4": "https://downloads.wordpress.org/plugin/wordpress-seo.21.4.zip", "21.5": "https://downloads.wordpress.org/plugin/wordpress-seo.21.5.zip", "21.6": "https://downloads.wordpress.org/plugin/wordpress-seo.21.6.zip", "21.7": "https://downloads.wordpress.org/plugin/wordpress-seo.21.7.zip", "21.8": "https://downloads.wordpress.org/plugin/wordpress-seo.21.8.zip", "21.9": "https://downloads.wordpress.org/plugin/wordpress-seo.21.9.zip", "22.0": "https://downloads.wordpress.org/plugin/wordpress-seo.22.0.zip", "22.1": "https://downloads.wordpress.org/plugin/wordpress-seo.22.1.zip", "22.2": "https://downloads.wordpress.org/plugin/wordpress-seo.22.2.zip", "22.3": "https://downloads.wordpress.org/plugin/wordpress-seo.22.3.zip", "22.4": "https://downloads.wordpress.org/plugin/wordpress-seo.22.4.zip", "22.5": "https://downloads.wordpress.org/plugin/wordpress-seo.22.5.zip", "22.6": "https://downloads.wordpress.org/plugin/wordpress-seo.22.6.zip", "22.7": "https://downloads.wordpress.org/plugin/wordpress-seo.22.7.zip", "22.8": "https://downloads.wordpress.org/plugin/wordpress-seo.22.8.zip", "22.9": "https://downloads.wordpress.org/plugin/wordpress-seo.22.9.zip", "23.0": "https://downloads.wordpress.org/plugin/wordpress-seo.23.0.zip", "23.1": "https://downloads.wordpress.org/plugin/wordpress-seo.23.1.zip", "23.2": "https://downloads.wordpress.org/plugin/wordpress-seo.23.2.zip", "23.3": "https://downloads.wordpress.org/plugin/wordpress-seo.23.3.zip", "23.4": "https://downloads.wordpress.org/plugin/wordpress-seo.23.4.zip", "23.5": "https://downloads.wordpress.org/plugin/wordpress-seo.23.5.zip", "23.6": "https://downloads.wordpress.org/plugin/wordpress-seo.23.6.zip", "23.7": "https://downloads.wordpress.org/plugin/wordpress-seo.23.7.zip", "23.8": "https://downloads.wordpress.org/plugin/wordpress-seo.23.8.zip", "23.9": "https://downloads.wordpress.org/plugin/wordpress-seo.23.9.zip", "24.0": "https://downloads.wordpress.org/plugin/wordpress-seo.24.0.zip", "24.1": "https://downloads.wordpress.org/plugin/wordpress-seo.24.1.zip", "24.2": "https://downloads.wordpress.org/plugin/wordpress-seo.24.2.zip", "24.3": "https://downloads.wordpress.org/plugin/wordpress-seo.24.3.zip", "24.4": "https://downloads.wordpress.org/plugin/wordpress-seo.24.4.zip", "24.5": "https://downloads.wordpress.org/plugin/wordpress-seo.24.5.zip", "24.6": "https://downloads.wordpress.org/plugin/wordpress-seo.24.6.zip", "24.7": "https://downloads.wordpress.org/plugin/wordpress-seo.24.7.zip", "24.8": "https://downloads.wordpress.org/plugin/wordpress-seo.24.8.zip", "24.9": "https://downloads.wordpress.org/plugin/wordpress-seo.24.9.zip", "25.0": "https://downloads.wordpress.org/plugin/wordpress-seo.25.0.zip", "25.1": "https://downloads.wordpress.org/plugin/wordpress-seo.25.1.zip", "25.2": "https://downloads.wordpress.org/plugin/wordpress-seo.25.2.zip", "25.3": "https://downloads.wordpress.org/plugin/wordpress-seo.25.3.zip", "25.4": "https://downloads.wordpress.org/plugin/wordpress-seo.25.4.zip", "25.5": "https://downloads.wordpress.org/plugin/wordpress-seo.25.5.zip", "25.6": "https://downloads.wordpress.org/plugin/wordpress-seo.25.6.zip", "25.7": "https://downloads.wordpress.org/plugin/wordpress-seo.25.7.zip", "25.8": "https://downloads.wordpress.org/plugin/wordpress-seo.25.8.zip", "25.9": "https://downloads.wordpress.org/plugin/wordpress-seo.25.9.zip", "26.0": "https://downloads.wordpress.org/plugin/wordpress-seo.26.0.zip", "26.1": "https://downloads.wordpress.org/plugin/wordpress-seo.26.1.zip", "26.2": "https://downloads.wordpress.org/plugin/wordpress-seo.26.2.zip", "19.10": "https://downloads.wordpress.org/plugin/wordpress-seo.19.10.zip", "19.11": "https://downloads.wordpress.org/plugin/wordpress-seo.19.11.zip", "19.12": "https://downloads.wordpress.org/plugin/wordpress-seo.19.12.zip", "19.13": "https://downloads.wordpress.org/plugin/wordpress-seo.19.13.zip", "19.14": "https://downloads.wordpress.org/plugin/wordpress-seo.19.14.zip", "20.10": "https://downloads.wordpress.org/plugin/wordpress-seo.20.10.zip", "20.11": "https://downloads.wordpress.org/plugin/wordpress-seo.20.11.zip", "20.12": "https://downloads.wordpress.org/plugin/wordpress-seo.20.12.zip", "20.13": "https://downloads.wordpress.org/plugin/wordpress-seo.20.13.zip", "trunk": "https://downloads.wordpress.org/plugin/wordpress-seo.zip", "18.4.1": "https://downloads.wordpress.org/plugin/wordpress-seo.18.4.1.zip", "18.5.1": "https://downloads.wordpress.org/plugin/wordpress-seo.18.5.1.zip", "19.5.1": "https://downloads.wordpress.org/plugin/wordpress-seo.19.5.1.zip", "19.6.1": "https://downloads.wordpress.org/plugin/wordpress-seo.19.6.1.zip", "19.7.1": "https://downloads.wordpress.org/plugin/wordpress-seo.19.7.1.zip", "19.7.2": "https://downloads.wordpress.org/plugin/wordpress-seo.19.7.2.zip", "20.2.1": "https://downloads.wordpress.org/plugin/wordpress-seo.20.2.1.zip", "21.8.1": "https://downloads.wordpress.org/plugin/wordpress-seo.21.8.1.zip", "21.9.1": "https://downloads.wordpress.org/plugin/wordpress-seo.21.9.1.zip", "24.8.1": "https://downloads.wordpress.org/plugin/wordpress-seo.24.8.1.zip", "25.3.1": "https://downloads.wordpress.org/plugin/wordpress-seo.25.3.1.zip", "26.1.1": "https://downloads.wordpress.org/plugin/wordpress-seo.26.1.1.zip"}, "downloaded": 876285068, "description": "

    Improve your SEO with real-time feedback, schema, and clear guidance. Upgrade for AI tools, Google Docs integration, and 24/7 support, no hidden fees.

    \n

    Yoast SEO: The #1 WordPress SEO Plugin

    \n

    Since 2008, Yoast SEO has helped millions of websites worldwide improve their visibility and SEO performance.
    \nOur mission is SEO for Everyone — from small local businesses to some of the most visited sites on the web.

    \n

    Yoast SEO gives you everything you need to manage your on-site SEO effectively.
    \nThe Yoast SEO Premium plugin and its extensions unlock even more advanced and AI-powered tools.

    \n

    Handing you the competitive edge

    \n

    SEO is the most consistent and cost-effective source of website traffic — but it can be complex. Whether you’re just starting out or an advanced user, Yoast SEO helps you handle SEO confidently and efficiently.

    \n

    Don’t have time to stay on top of AI search and best practices? Keeping Yoast SEO updated means you automatically benefit from ongoing technical improvements, schema updates, and AI advancements — all guided by our signature traffic light approach.

    \n

    Empower search engines to better understand your website using Schema.org structured data integration, and access in-depth content and readability analysis tools that help you create content designed to perform well in search.

    \n

    Quick and easy setup

    \n

    Setting up Yoast SEO is quick and straightforward — no technical background required.
    \nOur step-by-step configuration wizard walks you through essential setup details so Yoast SEO can generate accurate structured data that helps search engines understand your site.

    \n

    Switching from another SEO plugin like Rank Math or AIOSEO? Migration is seamless.
    \nImport your existing SEO data and settings safely with our built-in import/export tools.

    \n

    Content and AI features

    \n

    Unlock your content’s full potential with Yoast SEO’s advanced content analysis and AI-powered tools.

    \n

    Content optimization features:
    \n– Detailed SEO analysis to guide keyword targeting and site performance.
    \n– Readability analysis for clear, engaging, and user-friendly writing.
    \n– SERP previews for both desktop and mobile results.
    \n– HowTo and FAQ blocks with built-in schema support.
    \n– Breadcrumbs block for improved navigation.
    \n– Inclusive Language Analysis to make your content more considerate and accessible.
    \n– Semrush integration for keyword research directly in Yoast SEO.
    \n– Wincher integration to track keyword performance inside your dashboard.
    \n– Elementor integration for seamless optimization within your favorite builder.

    \n

    AI features (included in Premium):
    \n– Yoast AI Generate – Instantly create five SEO-friendly titles and meta descriptions, with one-click regeneration for more options.
    \n– Yoast AI Optimize – Improve keyphrase placement (introduction, distribution, density) automatically.
    \n– Yoast AI Summarize (New 2025) – Generate quick content summaries for briefs or social posts.
    \n– All AI tools included – No extra accounts, limits, or hidden costs.

    \n

    These tools help you craft optimized, helpful content that resonates with readers and performs strongly across search platforms.

    \n

    Taking care of your technical SEO

    \n

    Yoast SEO automatically handles much of your site’s technical SEO, freeing you to focus on your content.

    \n

    Key technical SEO features:
    \n– Automated meta tag optimization right out of the box.
    \n– Canonical URLs to prevent duplicate content issues.
    \n– Advanced XML sitemaps for clear site indexing.
    \n– Best-in-class Schema.org integration to improve search understanding and appearance.
    \n– Complete breadcrumb control for visitors and crawlers.
    \n– Performance improvements that help reduce load times.
    \n– Crawl settings to manage how bots access your site and reduce environmental impact.
    \n– LLMs.txt management to guide how large language models interact with your content.

    \n

    Every update delivers ongoing technical SEO enhancements automatically.

    \n

    Keep your website in perfect shape

    \n

    Whether you’re a creator, business owner, or developer, Yoast SEO helps maintain your website’s SEO health:

    \n
      \n
    • Cornerstone content tools to organize and prioritize key pages.
    • \n
    • Front-end SEO inspector to view and edit titles, descriptions, and schema live.
    • \n
    • SEO roles to delegate plugin access securely across teams.
    • \n
    • Regular 2-week update cycle to ensure compatibility with the latest SEO standards and search engine changes.
    • \n
    \n

    Powerful integrations

    \n

    Yoast SEO works seamlessly with popular WordPress tools to enhance your workflow and results:

    \n\n

    Yoast SEO Premium – AI-powered SEO for WordPress

    \n

    Yoast SEO Premium enhances everything in Yoast SEO with advanced automation, AI tools, and professional support.
    \nTrusted by millions, it helps you optimize efficiently for both traditional and AI-driven search.

    \n

    Tackle your SEO challenges:
    \n– Keep pace with algorithm and AI search updates.
    \n– Target the right audience effectively.
    \n– Automate redirects, crawl controls, and internal linking.
    \n– Identify orphaned content and improve site structure.
    \n– Get support when you need it.

    \n

    Premium highlights:
    \n– AI-generated titles and meta descriptions.
    \n– Smart internal linking suggestions.
    \n– Social previews for Facebook and X.
    \n– Redirect Manager with bulk tools and automatic prompts.
    \n– Bot Blocker for AI crawlers (GPTBot, CCBot, Google-Extended).
    \n– IndexNow integration for fast content updates.
    \n– Front-end SEO Inspector for real-time editing.
    \n– SEO Workouts to improve orphaned and cornerstone content.
    \n– Google Docs add-on for seamless SEO writing in Docs.
    \n– 24/7 premium support from SEO specialists.

    \n

    Includes at no extra cost:
    \n– Yoast Local SEO: Optimize for local audiences and Google Maps.
    \n– Yoast Video SEO: Ensure Google understands your videos with video sitemaps and schema.
    \n– Yoast News SEO: Increase visibility in Google News and Top Stories.

    \n

    Yoast WooCommerce SEO – Advanced SEO for Online Stores

    \n

    Yoast WooCommerce SEO builds on Yoast SEO Premium with ecommerce-specific tools to improve your store’s visibility and conversion potential.

    \n

    Key ecommerce SEO features:
    \n– WooCommerce-specific XML sitemap excluding non-shopping content.
    \n– Product structured data for enhanced rich results (price, reviews, availability).
    \n– Canonical URL management to prevent duplicates.
    \n– Ecommerce-focused content analysis for GTINs, SKUs, and short descriptions.
    \n– AI Generate for ecommerce – Instantly create optimized titles and meta descriptions for product and category pages.

    \n

    Benefits:
    \n– Improve product visibility with automated structured data.
    \n– Enhance crawl efficiency for large catalogs.
    \n– Save time through metadata templates and automation.
    \n– Increase engagement with AI-optimized ecommerce metadata.

    \n

    Built for WooCommerce, trusted by thousands of online stores worldwide.

    \n

    For Developers

    \n

    Yoast SEO is built with developers in mind. With modern APIs, hooks, and a unified indexables system, you can extend or integrate SEO functionality across custom themes, plugins, or headless setups.

    \n

    REST API

    \n

    Retrieve SEO metadata for any post or URL, including meta tags, Open Graph, Twitter Cards, and Schema.org data.
    \nLearn more about the REST API.

    \n

    Surfaces API

    \n

    Access SEO data directly in code via YoastSEO()->meta->for_current_page().
    \nSupports titles, descriptions, canonicals, and schema.
    \nRead the Surfaces API documentation.

    \n

    Metadata API

    \n

    Use the Metadata API to filter, override, or extend meta tags with WordPress hooks such as wpseo_title, wpseo_metadesc, and wpseo_canonical.

    \n

    Schema API

    \n

    The Schema API lets you modify or extend Schema.org graph pieces, including Article, Organization, Person, Breadcrumb, and WebPage entities.

    \n

    Block Editor compatibility

    \n

    Yoast SEO integrates directly with the WordPress Block Editor (Gutenberg).
    \nIt outputs schema for HowTo and FAQ blocks by default, and developers can extend schema for custom blocks.

    \n

    Indexables

    \n

    At the core of Yoast SEO lies the indexables system, unifying all SEO data for faster queries and consistent metadata across outputs.

    \n

    Ongoing support and education

    \n

    Yoast is powered by expert developers, testers, and SEO specialists who keep improving the plugin.
    \nWe’re committed to helping users grow their SEO skills with resources such as:

    \n\n

    Yoast SEO — built to make search optimization accessible, reliable, and ready for the future of AI search.

    \n", "donate_link": "https://yoa.st/1up", "num_ratings": 27779, "screenshots": {"1": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2853382", "caption": "The modern interface makes Yoast SEO easy to work with."}, "2": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2853382", "caption": "Easily manage how your posts and pages appear in SERPs."}, "3": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2853382", "caption": "Yoast SEO Premium has extra crawl optimization options."}, "4": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2853382", "caption": "Yoast SEO integrates with tools like Semrush and Wincher."}, "5": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2853382", "caption": "The famous SEO and readability analyses in Yoast SEO."}, "6": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2853382", "caption": "See what your post looks like in Google."}, "7": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-7.png?rev=2853382", "caption": "The First-time configuration helps you get started quickly."}, "8": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-8.png?rev=2853382", "caption": "The inclusive language analysis in Yoast SEO."}, "9": {"src": "https://ps.w.org/wordpress-seo/assets/screenshot-9.png?rev=2956588", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/wordpress-seo/", "contributors": {"yoast": {"avatar": "https://secure.gravatar.com/avatar/be9ad584631c908275babffbc3fd771d5879ace2c1e00305b17fd2d4361fe80d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/yoast/", "display_name": "Yoast"}, "tdevalk": {"avatar": "https://secure.gravatar.com/avatar/db267f34bf170602956a4e951f11a4c4e1c36f063a933fae36ee6626b8c55d88?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tdevalk/", "display_name": "tdevalk"}, "joostdevalk": {"avatar": "https://secure.gravatar.com/avatar/6b6d1c4d29f1b149da0008917c70b019408d5af404a46bca853e4dd33546e1ed?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/joostdevalk/", "display_name": "Joost de Valk"}}, "last_updated": "2025-10-21 7:47am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wordpress-seo.26.2.zip", "author_profile": "https://profiles.wordpress.org/yoast/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 10000000, "aspiresync_meta": {"id": "019a30bf-fdef-7025-8902-ec2029bd71f4", "name": "Yoast SEO – Advanced SEO with real-time guidance and built-in AI", "slug": "wordpress-seo", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1761032820, "version": "26.2"}, "support_threads": 100, "requires_plugins": [], "short_description": "Improve your SEO with real-time feedback, schema, and clear guidance. Upgrade for AI tools, Google Docs integration, and 24/7 support, no hidden fees.", "author_block_count": 1, "author_block_rating": 96, "commercial_support_url": "https://yoast.com/help/support/#premium", "support_threads_resolved": 81}'); -INSERT INTO public.plugins VALUES ('019a30c1-67e7-7313-864f-274a8e5c7398', 'worker', 'ManageWP Worker', 'A better way to manage dozens of WordPress websites.', '

    So you’re looking for a better way to manage WordPress websites? We have you covered! ManageWP is a dashboard that helps you save time and nerves by automating your workflow, so you could focus on things that matter. It is fast, secure and free for an unlimited number of websites.

    -

    Everything in One Place

    -

    Just the hassle of logging into each of your websites is enough to ruin your day. ManageWP compiles the data from all of your sites on one dashboard, so you can check up on your websites in a single glance. And if you need to take a better look at a particular website, you’re just a click away. Read more

    -

    Bulk actions

    -

    57 updates on 12 sites? Update them all with a single click. And it’s not just updates. Clean spam, database overhead, run security checks and more – with just one click you can do these things on all your websites at once. Read more

    -

    Cloud Backup that just works

    -

    A reliable backup is the backbone of any business. And we have a free monthly backup for all of your websites. It’s, incremental, reliable, and works where other backup solutions fail. The free Backup includes monthly scheduled backup, off-site storage, 1-click restore, US/EU storage choice and the option to exclude files and folders. The premium Backup gives you on-demand backups, weekly/daily/hourly backup cycles & more.

    -

    Safe updates

    -

    Updating plugins & themes is a huge pain, so we came with this: a backup is automatically created before each update. After the update, the system checks the website and rolls back automatically if something’s wrong. And the best part is that you can set these updates to run at 3am, when the website traffic as its lowest.
    -Read more.

    -

    Client Report

    -

    Summarize your hard work in a professional looking report and send it to your clients to showcase your work. The free Client Report includes basic customization and on-demand reports. The premium Client Report lets you white label and automate your reports. Read more

    -

    Performance and Security Checks

    -

    Slow or infected websites are bad for business. Luckily, you can now keep tabs on your websites with regular performance & security checks. The free Security Check & Performance Check come with fully functional checks and logging. Premium versions let you fully automate the checks, and get an SMS or an email if something’s wrong.

    -

    Google Analytics integration

    -

    Connect multiple Google Analytics accounts, and keep track of all the important metrics from one place. Read more

    -

    Uptime Monitor (premium add-on)

    -

    Be the first to know when your website is down with both email and SMS notifications, and get your website back online before anyone else notices. Read more

    -

    Cloning & Migration (bundled with premium Backup add-on)

    -

    What used to take you hours of work and nerves of steel is now a one-click operation. Pick a source website, pick a destination website, click Go. Within minutes, your website will be alive and kicking on a new server. Yeah, it’s that easy. Read more

    -

    SEO Ranking (premium add-on)

    -

    Be on top of your website rankings and figure out which keywords work best for you, as well as keeping on eye on your competitors. This way you will know how well you stack up against them. Read more

    -

    White Label (premium add-on)

    -

    Rename or completely hide the ManageWP Worker plugin. Clients don’t need to know what you are using to manage their websites. Read more

    -

    Is This All?

    -

    No way! We’ve got a bunch of other awesome features, both free and premium, you can check out on our ManageWP features page

    -

    Check out the ManageWP promo video.

    -

    -

    License

    -

    This file is part of ManageWP Worker.

    -

    ManageWP Worker is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

    -

    ManageWP Worker is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

    -

    You should have received a copy of the GNU General Public License along with ManageWP Worker. If not, see https://www.gnu.org/licenses/.

    -', '4.9.25', 'Vladimir Prelovac', '3.1', NULL, '6.8.3', 'https://downloads.wordpress.org/plugin/worker.4.9.25.zip', '2011-03-10 00:00:00+00', '2025-10-16 07:56:00+00', 'https://profiles.wordpress.org/freediver/', 92, 672, 1, 1, 1000000, 23423523, 'https://managewp.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/worker/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "ManageWP Worker", "slug": "worker", "tags": {"backup": "backup", "migrate": "migrate", "security": "security", "performance": "performance", "manage-multiple-sites": "Manage Multiple Sites"}, "added": "2011-03-10", "icons": {"1x": "https://ps.w.org/worker/assets/icon.svg?rev=1015191", "svg": "https://ps.w.org/worker/assets/icon.svg?rev=1015191"}, "author": "Vladimir Prelovac", "rating": 92, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/worker/assets/banner-772x250.jpg?rev=2035974", "high": "https://ps.w.org/worker/assets/banner-1544x500.jpg?rev=2035974"}, "ratings": {"1": 50, "2": 7, "3": 7, "4": 11, "5": 597}, "version": "4.9.25", "homepage": "https://managewp.com", "requires": "3.1", "sections": {"faq": "\n
    \nIs ManageWP free?\n\n

    \n

    ManageWP is using the freemium model. All the core features are free for an unlimited number of websites. And for those of you who need more, we have a set of premium features to help you out.

    \n

    \n
    \nDo you offer support for free users?\n\n

    \n

    Yes. No matter if you’re free or premium user, we are here for you 24/7. Expect a 1h average response time and a 65% answer resolution in the first reply.

    \n

    \n
    \nHow much do premium ManageWP features cost?\n\n

    \n

    Our pricing is highly flexible, we don’t charge anything upfront. The usage is calculated on a per-website, per-addon basis, like Amazon Web Services. Check out our pricing page for more info.

    \n

    \n
    \nIs ManageWP secure?\n\n

    \n

    Yes. All of our code is developed in-house and we have a top notch security team. With half a million websites managed since 2012 we did not have a single security incident. We’ve accomplished this through high standards, vigilance and the help of security researchers, through our white hat security program.

    \n

    \n
    \nI have websites on several different hosts. Will ManageWP work all of them?\n\n

    \n

    Yes. ManageWP plays nice with all major hosts, and 99% of the small ones.

    \n

    \n
    \nDoes ManageWP work with multisites?\n\n

    \n

    Yes, multisite networks are fully supported, including the ability to backup and clone a multisite network.

    \n

    \n
    \nDoes ManageWP work with WordPress.com sites?\n\n

    \n

    No. ManageWP works only with self-hosted WordPress sites.

    \n

    \n
    \nWorker plugin can connect to ManageWP and Pro Sites. What is the difference between the two?\n\n

    \n

    ManageWP is focused on the hosting-agnostic WordPress website management. Pro Sites is the GoDaddy version of the service. It’s part of the GoDaddy Pro program, which incorporates different tools for website & client management, lead generation, and tighter integration with other GoDaddy products.

    \n

    \n
    \nI have problems adding my site\n\n

    \n

    Make sure you use the latest version of the Worker plugin on the site you are trying to add. If you still have problems, check our dedicated FAQ page or contact us.

    \n

    \n
    \nHow does ManageWP compare to backup plugins like BackupBuddy, Backwpup, UpdraftPlus, WP-DB-Backup ?\n\n

    \n

    There is a limit to what a PHP based backup can do, that’s why we’ve built a completely different backup – cloud based, incremental, it keeps working long after others have failed.

    \n

    \n
    \nHow does ManageWP compare with clone plugins like Duplicator, WP Migrate DB, All-in-One WP Migration, XCloner ?\n\n

    \n

    These solutions are simple A-B cloning solutions that tend to break in critical moments. ManageWP does it more intelligently. We first upload the backup archive to a cloud infrastructure that we control, and then we transfer it to the destination website. This effectively compartmentalizes the process into two separate steps, making the whole cloning experience much more robust and stress free.

    \n

    \n
    \nIs Worker PHP7 compatible?\n\n

    \n

    Yes, ManageWP Worker is fully compatible with PHP7. We also have chunks of backward compatible code, that triggers in case you’re still running PHP5.x – if your code check comes up with a compatibility flag, just ignore it.

    \n

    Got more questions? Contact us!

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Super saves you a lot of time

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cglaudel on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A site-related / plugin that saves you a lot of time when you have multiple sites to manage

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    They Were Trusted Partners, and Now They Aren't

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy portrayalteam on September 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    We worked with these people for over 10 years, and then they were bought by the worst — GODADDY! And they have been worse and worse and worse every year. Now they are downright insulting...

    Their performance, their customer service, their loyalty, all flushed down the toilet. If you don''t pay them right on time, despite 12+ years of loyalty? They cut off services for every account.

    I mean, if they had any intelligence or business sense, they''d just block access, but no... if you get too busy and don''t change your payment details in time, you have to go in and activate EVERY SERVICE — one at a time, after you have added a new payment method.

    It''s idiotic, it''s bad business, and it''s going to force us to move to someone with better manners who actually appreciates loyalty and extended client relationships.

    SHAME ON YOU, ManageWP. We counted on you, and now we never will again. GoDaddy is bad. Everyone knows that. Now you are too... Sad. Predictable. NEXT!!!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    great plugin, has nice features

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Lucas Camara (lcamaramartins) on April 6, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    game changerr for reaall.. keep up the great work guys!!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very satisfied

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy driu on March 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Using Manage-WP since more than 3 years now. It''s reliable and very helpful to maintain websites.

    \n\n\n\n

    I just would like to have a smaller description. It''s using 6 lines to describe itself while other plugins use 1 line - which is totally enough.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A game-changer for managing multiple WordPress sites!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Gerhard Peilstöcker (gerpei) on March 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    ManageWP Worker is a game-changer for managing multiple WordPress sites! The interface is intuitive, and the ability to update plugins, themes, and backups across all sites from one dashboard saves me hours every week. The security features and performance checks give me peace of mind, and the pricing is very reasonable for the value it provides. Highly recommended for anyone managing multiple WordPress sites!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best free WordPress management tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Gennady Kurushin (hullukettu) on February 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s incredible what this plugin offers with a freemium subscription, especially considering monthly cloud backups regardless of size of the website. Reporting is really nice if that''s something you''re using with your clients.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fabulous plugin and support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Ed Bernd Jr. (silvabooks) on February 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve been using this plugin for several years and it is easy to use, it is reliable, and it gives me peace of mind. On the rare occasions I''ve had a problem the support has been fast, easy to understand, accurate, and effective. Things I especially like are the ease of installing updates on our websites as soon as they are available, the regular site backups, and the very inexpensive link checker that has helped me find and fix the broken links on the sites. Highly recommended.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    No more updates to a buggy app

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ShaktiHKI on January 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Former industry leader, nowadays a graveyard. In addition to an old look and UI/UX, the software hasn''t gotten any updates for almost three years, and they don''t fix bugs any more, although support tells you otherwise. For example, there''s a bug in scheduled reports that I reported immediately, and after five (!) months, they haven''t done anything to it. Tonight, I couldn''t even update my sites as the app doesn''t connect to any sites and doesn''t do anything. I managed to do a few simple plugin updates in three hours. Shame.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Missing Support and Doesn't work

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy furtureplusweb on January 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Support is missing, they do not reply anymore. Finally, the plugin has way too many problems

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Life saver

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Michael Korte (michaelkorte) on December 17, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Yes. This is it.

    \n\n\n\n

    With 20+ Websites, it was really hard to manage all of them separately. Now you have everything in sight at all times.

    \n\n\n\n

    Just wondering why the connection code is not directly in one of those boxes on the frontpage/dashboard and directly accessible from there!

    \n
    \n
    \n", "changelog": "

    4.9.25

    \n
      \n
    • Fix: Update Client Report URL
    • \n
    \n

    4.9.24

    \n
      \n
    • Fix: One Click SSL compatibility update
    • \n
    \n

    4.9.23

    \n
      \n
    • Fix: Use OpenSSL for SHA256 hashing
    • \n
    \n

    4.9.22

    \n
      \n
    • WordPress 6.8 compatibility bump
    • \n
    • Fix: Compatibility with OpenSSL 3+
    • \n
    \n

    4.9.21

    \n
      \n
    • WordPress 6.7 compatibility bump
    • \n
    \n

    4.9.20

    \n
      \n
    • WordPress 6.5 compatibility bump
    • \n
    \n

    4.9.19

    \n
      \n
    • Fix: Absolute path on Windows systems
    • \n
    • Code cleanup
    • \n
    \n

    4.9.18

    \n
      \n
    • Fix: PHP 8.X Compatibility notices
    • \n
    • WordPress 6.4 compatibility bump
    • \n
    \n

    4.9.17

    \n
      \n
    • Fix: PHP Notice – WP_User_Query::query()
    • \n
    • Fix: Call to undefined function php_uname when php_uname is disabled
    • \n
    • Fix: PHP Notice – ob_end_clean()
    • \n
    • Fix: PHP Deprecated – preg_match()
    • \n
    • Fix: PHP Deprecated – base64_decode()
    • \n
    • Fix: PHP 5.x compatibility introduced in 4.9.16
    • \n
    • WordPress 6.2 compatibility bump
    • \n
    \n

    4.9.16

    \n
      \n
    • Fix: PHP 8.0+ compatibility update
    • \n
    \n

    4.9.15

    \n
      \n
    • Fix: WordPress 6.1 compatibility
    • \n
    \n

    4.9.14

    \n
      \n
    • Worker update tested to the latest version of WordPress
    • \n
    • Minor logging changes
    • \n
    \n

    4.9.13

    \n
      \n
    • Fix: Resolved old PHP version compatibility issues.
    • \n
    \n

    4.9.12

    \n
      \n
    • Fix: Resolved Worker white-labeling not working as expected.
    • \n
    \n

    4.9.11

    \n
      \n
    • Fix: Ensure full compatibility with PHP 8.1
    • \n
    \n

    4.9.10

    \n
      \n
    • Fix: Resolved compatibility issue with WooCommerce payments
    • \n
    • Fix: Set plugin version for MU plugin loader
    • \n
    \n

    4.9.9

    \n
      \n
    • Fix: Resolved edge case compatibility issue with some sites
    • \n
    • New: Added “Disconnect all” option in the Connection Management in wp-admin
    • \n
    • Worker update tested to the latest version of WordPress
    • \n
    • Minor wording changes
    • \n
    \n

    4.9.7

    \n
      \n
    • Update logic for calculating table overhead
    • \n
    \n

    4.9.6

    \n
      \n
    • Updated logic for generating archive name for File Manager tool.
    • \n
    • Update tested up to version for the plugin.
    • \n
    • Fix: Edge case where a backup might fail due to root WP paths.
    • \n
    \n

    4.9.3

    \n
      \n
    • Update tested up to version for the plugin.
    • \n
    • Fix: Potential crash when the hit count option is not defined.
    • \n
    \n

    4.9.2

    \n
      \n
    • Added fallback for downloading/archiving files for the File Manager tool, when zip extension is not available
    • \n
    • Fix: Worker plugin branding within WP 5.2 Admin Site Health page plugins list
    • \n
    \n

    4.9.1

    \n
      \n
    • Fix: Handle updates on WP Engine hosted websites properly.
    • \n
    \n

    4.9.0

    \n
      \n
    • New: Support for a future release of file management.
    • \n
    • We will stop supporting PHP 5.2 in the next version.
    • \n
    \n

    4.8.1

    \n
      \n
    • Fix: Edge case where a backup might fail due to API call payload.
    • \n
    \n

    4.8.0

    \n
      \n
    • New: Support for automatic detection of post content changes for Link Monitoring.
    • \n
    \n

    4.7.8

    \n
      \n
    • Fix: Edge case when there are no plugins active, the plugin would cause a fatal error.
    • \n
    \n

    4.7.7

    \n
      \n
    • Fix: Edge cases where one click login might fail due to the Host header changing.
    • \n
    \n

    4.7.5

    \n
      \n
    • Fix: Edge cases where key fetching might fail and cause the connection to stop working.
    • \n
    \n

    4.7.0

    \n
      \n
    • Improvement: Translations for the new Connection Management dialog.
    • \n
    • Fix: An error that might occur when activating the Worker plugin.
    • \n
    \n

    4.6.6

    \n
      \n
    • Fix: Omit extra query parameters for One Click Login after a successful login.
    • \n
    \n

    4.6.5

    \n
      \n
    • Fix: Edge cases where the Worker plugin might not be able to communicate with our system.
    • \n
    \n

    4.6.4

    \n
      \n
    • New: Allow multiple ManageWP/Pro Sites accounts to connect to a single Worker plugin.
    • \n
    \n

    4.6.3

    \n
      \n
    • Fix: Edge cases when Local Sync was unsuccessful.
    • \n
    • Fix: WooCommerce database upgrade not showing up on the ManageWP/Pro Sites dashboard.
    • \n
    \n

    4.6.2

    \n
      \n
    • Fix: Local Sync tool improvements.
    • \n
    \n

    4.6.1

    \n
      \n
    • Fix: Worker auto-recovery on PHP 7.
    • \n
    • Fix: Replaced eval function that triggered false positives with some security plugins.
    • \n
    \n

    4.6.0

    \n
      \n
    • New: Localhost Sync has reached the closed beta stage. Stay tuned for more info!
    • \n
    \n

    4.5.0

    \n
      \n
    • Improvement: Removed deprecated ManageWP Classic code.
    • \n
    \n

    4.4.0

    \n
      \n
    • Fix: Communication failing with a website behind CloudFlare, that has warnings turned on, and currently has warnings.
    • \n
    \n

    4.3.4

    \n
      \n
    • Improvement: The Worker plugin can now only be activated network wide on multisite installs.
    • \n
    • Fix: Edge cases where the connection key was not visible.
    • \n
    • Fix: Edge cases with Multisite communication failure.
    • \n
    \n

    4.3.3

    \n
      \n
    • Improvement: Always force the correct charset for database backups.
    • \n
    • Improvement: The Worker plugin is now fully compatible with WordPress 4.9.
    • \n
    \n

    4.3.2

    \n
      \n
    • Fix: The Worker plugin threw an exception while recovering from failed update.
    • \n
    \n

    4.3.1

    \n
      \n
    • Fix: The Worker plugin could not fetch keys for the new communication system in some cases.
    • \n
    \n

    4.3.0

    \n
      \n
    • New: Ability to install/update Envato plugins and themes.
    • \n
    • New: WooCommerce database upgrade support.
    • \n
    • New: More secure and flexible communication between the Worker plugin and the ManageWP servers.
    • \n
    \n", "description": "

    So you’re looking for a better way to manage WordPress websites? We have you covered! ManageWP is a dashboard that helps you save time and nerves by automating your workflow, so you could focus on things that matter. It is fast, secure and free for an unlimited number of websites.

    \n

    Everything in One Place

    \n

    Just the hassle of logging into each of your websites is enough to ruin your day. ManageWP compiles the data from all of your sites on one dashboard, so you can check up on your websites in a single glance. And if you need to take a better look at a particular website, you’re just a click away. Read more

    \n

    Bulk actions

    \n

    57 updates on 12 sites? Update them all with a single click. And it’s not just updates. Clean spam, database overhead, run security checks and more – with just one click you can do these things on all your websites at once. Read more

    \n

    Cloud Backup that just works

    \n

    A reliable backup is the backbone of any business. And we have a free monthly backup for all of your websites. It’s, incremental, reliable, and works where other backup solutions fail. The free Backup includes monthly scheduled backup, off-site storage, 1-click restore, US/EU storage choice and the option to exclude files and folders. The premium Backup gives you on-demand backups, weekly/daily/hourly backup cycles & more.

    \n

    Safe updates

    \n

    Updating plugins & themes is a huge pain, so we came with this: a backup is automatically created before each update. After the update, the system checks the website and rolls back automatically if something’s wrong. And the best part is that you can set these updates to run at 3am, when the website traffic as its lowest.
    \nRead more.

    \n

    Client Report

    \n

    Summarize your hard work in a professional looking report and send it to your clients to showcase your work. The free Client Report includes basic customization and on-demand reports. The premium Client Report lets you white label and automate your reports. Read more

    \n

    Performance and Security Checks

    \n

    Slow or infected websites are bad for business. Luckily, you can now keep tabs on your websites with regular performance & security checks. The free Security Check & Performance Check come with fully functional checks and logging. Premium versions let you fully automate the checks, and get an SMS or an email if something’s wrong.

    \n

    Google Analytics integration

    \n

    Connect multiple Google Analytics accounts, and keep track of all the important metrics from one place. Read more

    \n

    Uptime Monitor (premium add-on)

    \n

    Be the first to know when your website is down with both email and SMS notifications, and get your website back online before anyone else notices. Read more

    \n

    Cloning & Migration (bundled with premium Backup add-on)

    \n

    What used to take you hours of work and nerves of steel is now a one-click operation. Pick a source website, pick a destination website, click Go. Within minutes, your website will be alive and kicking on a new server. Yeah, it’s that easy. Read more

    \n

    SEO Ranking (premium add-on)

    \n

    Be on top of your website rankings and figure out which keywords work best for you, as well as keeping on eye on your competitors. This way you will know how well you stack up against them. Read more

    \n

    White Label (premium add-on)

    \n

    Rename or completely hide the ManageWP Worker plugin. Clients don’t need to know what you are using to manage their websites. Read more

    \n

    Is This All?

    \n

    No way! We’ve got a bunch of other awesome features, both free and premium, you can check out on our ManageWP features page

    \n

    Check out the ManageWP promo video.

    \n

    \n

    License

    \n

    This file is part of ManageWP Worker.

    \n

    ManageWP Worker is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

    \n

    ManageWP Worker is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

    \n

    You should have received a copy of the GNU General Public License along with ManageWP Worker. If not, see https://www.gnu.org/licenses/.

    \n", "screenshots": "
    1. \"ManageWP

      ManageWP dashboard with a thumbnail view of 20 websites

    2. \"Tags

      Tags and stars help you organize your websites

    3. \"A

      A summary of available updates and health of all your websites

    4. \"Track

      Track your website performance regularly, so you could know right away if something goes wrong

    5. \"Managing

      Managing plugins and themes is just as easy with 100 websites as with 3 websites

    6. \"Client

      Client Report is an executive summary of everything you''ve done for your client

    7. \"Cloud

      Cloud backups with detailed information about each restore point

    8. \"Uptime

      Uptime Monitor logs up and down events, and notifies you via email and SMS

    9. \"Aside

      Aside from being able to white label the ManageWP Worker plugin, you can also add a support form on the client''s website

    ", "installation": "
      \n
    1. Create an account on ManageWP.com
    2. \n
    3. Follow the steps to add your first website
    4. \n
    5. Celebrate!
    6. \n
    \n

    Seriously, it’s that easy! If you want more detailed instructions, check out our User Guide

    \n"}, "versions": {"3.6.3": "https://downloads.wordpress.org/plugin/worker.3.6.3.zip", "3.8.0": "https://downloads.wordpress.org/plugin/worker.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/plugin/worker.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/plugin/worker.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/worker.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/worker.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/worker.3.8.5.zip", "3.8.6": "https://downloads.wordpress.org/plugin/worker.3.8.6.zip", "3.8.7": "https://downloads.wordpress.org/plugin/worker.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/plugin/worker.3.8.8.zip", "3.9.0": "https://downloads.wordpress.org/plugin/worker.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/worker.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/worker.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/plugin/worker.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/plugin/worker.3.9.4.zip", "3.9.5": "https://downloads.wordpress.org/plugin/worker.3.9.5.zip", "3.9.6": "https://downloads.wordpress.org/plugin/worker.3.9.6.zip", "3.9.7": "https://downloads.wordpress.org/plugin/worker.3.9.7.zip", "3.9.8": "https://downloads.wordpress.org/plugin/worker.3.9.8.zip", "3.9.9": "https://downloads.wordpress.org/plugin/worker.3.9.9.zip", "4.0.1": "https://downloads.wordpress.org/plugin/worker.4.0.1.zip", "4.1.0": "https://downloads.wordpress.org/plugin/worker.4.1.0.zip", "4.9.9": "https://downloads.wordpress.org/plugin/worker.4.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/worker.zip", "3.9.10": "https://downloads.wordpress.org/plugin/worker.3.9.10.zip", "3.9.11": "https://downloads.wordpress.org/plugin/worker.3.9.11.zip", "3.9.12": "https://downloads.wordpress.org/plugin/worker.3.9.12.zip", "3.9.13": "https://downloads.wordpress.org/plugin/worker.3.9.13.zip", "3.9.14": "https://downloads.wordpress.org/plugin/worker.3.9.14.zip", "3.9.15": "https://downloads.wordpress.org/plugin/worker.3.9.15.zip", "3.9.16": "https://downloads.wordpress.org/plugin/worker.3.9.16.zip", "3.9.17": "https://downloads.wordpress.org/plugin/worker.3.9.17.zip", "3.9.18": "https://downloads.wordpress.org/plugin/worker.3.9.18.zip", "3.9.19": "https://downloads.wordpress.org/plugin/worker.3.9.19.zip", "3.9.20": "https://downloads.wordpress.org/plugin/worker.3.9.20.zip", "3.9.21": "https://downloads.wordpress.org/plugin/worker.3.9.21.zip", "3.9.22": "https://downloads.wordpress.org/plugin/worker.3.9.22.zip", "3.9.23": "https://downloads.wordpress.org/plugin/worker.3.9.23.zip", "3.9.24": "https://downloads.wordpress.org/plugin/worker.3.9.24.zip", "3.9.25": "https://downloads.wordpress.org/plugin/worker.3.9.25.zip", "3.9.26": "https://downloads.wordpress.org/plugin/worker.3.9.26.zip", "3.9.27": "https://downloads.wordpress.org/plugin/worker.3.9.27.zip", "3.9.28": "https://downloads.wordpress.org/plugin/worker.3.9.28.zip", "3.9.29": "https://downloads.wordpress.org/plugin/worker.3.9.29.zip", "3.9.30": "https://downloads.wordpress.org/plugin/worker.3.9.30.zip", "4.9.10": "https://downloads.wordpress.org/plugin/worker.4.9.10.zip", "4.9.11": "https://downloads.wordpress.org/plugin/worker.4.9.11.zip", "4.9.12": "https://downloads.wordpress.org/plugin/worker.4.9.12.zip", "4.9.13": "https://downloads.wordpress.org/plugin/worker.4.9.13.zip", "4.9.14": "https://downloads.wordpress.org/plugin/worker.4.9.14.zip", "4.9.15": "https://downloads.wordpress.org/plugin/worker.4.9.15.zip", "4.9.16": "https://downloads.wordpress.org/plugin/worker.4.9.16.zip", "4.9.17": "https://downloads.wordpress.org/plugin/worker.4.9.17.zip", "4.9.18": "https://downloads.wordpress.org/plugin/worker.4.9.18.zip", "4.9.19": "https://downloads.wordpress.org/plugin/worker.4.9.19.zip", "4.9.20": "https://downloads.wordpress.org/plugin/worker.4.9.20.zip", "4.9.22": "https://downloads.wordpress.org/plugin/worker.4.9.22.zip", "4.9.23": "https://downloads.wordpress.org/plugin/worker.4.9.23.zip", "4.9.24": "https://downloads.wordpress.org/plugin/worker.4.9.24.zip", "4.9.25": "https://downloads.wordpress.org/plugin/worker.4.9.25.zip"}, "downloaded": 23423523, "description": "

    So you’re looking for a better way to manage WordPress websites? We have you covered! ManageWP is a dashboard that helps you save time and nerves by automating your workflow, so you could focus on things that matter. It is fast, secure and free for an unlimited number of websites.

    \n

    Everything in One Place

    \n

    Just the hassle of logging into each of your websites is enough to ruin your day. ManageWP compiles the data from all of your sites on one dashboard, so you can check up on your websites in a single glance. And if you need to take a better look at a particular website, you’re just a click away. Read more

    \n

    Bulk actions

    \n

    57 updates on 12 sites? Update them all with a single click. And it’s not just updates. Clean spam, database overhead, run security checks and more – with just one click you can do these things on all your websites at once. Read more

    \n

    Cloud Backup that just works

    \n

    A reliable backup is the backbone of any business. And we have a free monthly backup for all of your websites. It’s, incremental, reliable, and works where other backup solutions fail. The free Backup includes monthly scheduled backup, off-site storage, 1-click restore, US/EU storage choice and the option to exclude files and folders. The premium Backup gives you on-demand backups, weekly/daily/hourly backup cycles & more.

    \n

    Safe updates

    \n

    Updating plugins & themes is a huge pain, so we came with this: a backup is automatically created before each update. After the update, the system checks the website and rolls back automatically if something’s wrong. And the best part is that you can set these updates to run at 3am, when the website traffic as its lowest.
    \nRead more.

    \n

    Client Report

    \n

    Summarize your hard work in a professional looking report and send it to your clients to showcase your work. The free Client Report includes basic customization and on-demand reports. The premium Client Report lets you white label and automate your reports. Read more

    \n

    Performance and Security Checks

    \n

    Slow or infected websites are bad for business. Luckily, you can now keep tabs on your websites with regular performance & security checks. The free Security Check & Performance Check come with fully functional checks and logging. Premium versions let you fully automate the checks, and get an SMS or an email if something’s wrong.

    \n

    Google Analytics integration

    \n

    Connect multiple Google Analytics accounts, and keep track of all the important metrics from one place. Read more

    \n

    Uptime Monitor (premium add-on)

    \n

    Be the first to know when your website is down with both email and SMS notifications, and get your website back online before anyone else notices. Read more

    \n

    Cloning & Migration (bundled with premium Backup add-on)

    \n

    What used to take you hours of work and nerves of steel is now a one-click operation. Pick a source website, pick a destination website, click Go. Within minutes, your website will be alive and kicking on a new server. Yeah, it’s that easy. Read more

    \n

    SEO Ranking (premium add-on)

    \n

    Be on top of your website rankings and figure out which keywords work best for you, as well as keeping on eye on your competitors. This way you will know how well you stack up against them. Read more

    \n

    White Label (premium add-on)

    \n

    Rename or completely hide the ManageWP Worker plugin. Clients don’t need to know what you are using to manage their websites. Read more

    \n

    Is This All?

    \n

    No way! We’ve got a bunch of other awesome features, both free and premium, you can check out on our ManageWP features page

    \n

    Check out the ManageWP promo video.

    \n

    \n

    License

    \n

    This file is part of ManageWP Worker.

    \n

    ManageWP Worker is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

    \n

    ManageWP Worker is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

    \n

    You should have received a copy of the GNU General Public License along with ManageWP Worker. If not, see https://www.gnu.org/licenses/.

    \n", "donate_link": "", "num_ratings": 672, "screenshots": {"1": {"src": "https://ps.w.org/worker/assets/screenshot-1.png?rev=1460091", "caption": "ManageWP dashboard with a thumbnail view of 20 websites"}, "2": {"src": "https://ps.w.org/worker/assets/screenshot-2.png?rev=1460091", "caption": "Tags and stars help you organize your websites"}, "3": {"src": "https://ps.w.org/worker/assets/screenshot-3.png?rev=1460091", "caption": "A summary of available updates and health of all your websites"}, "4": {"src": "https://ps.w.org/worker/assets/screenshot-4.png?rev=1460091", "caption": "Track your website performance regularly, so you could know right away if something goes wrong"}, "5": {"src": "https://ps.w.org/worker/assets/screenshot-5.png?rev=1460091", "caption": "Managing plugins and themes is just as easy with 100 websites as with 3 websites"}, "6": {"src": "https://ps.w.org/worker/assets/screenshot-6.png?rev=1460091", "caption": "Client Report is an executive summary of everything you''ve done for your client"}, "7": {"src": "https://ps.w.org/worker/assets/screenshot-7.png?rev=1460091", "caption": "Cloud backups with detailed information about each restore point"}, "8": {"src": "https://ps.w.org/worker/assets/screenshot-8.png?rev=1460091", "caption": "Uptime Monitor logs up and down events, and notifies you via email and SMS"}, "9": {"src": "https://ps.w.org/worker/assets/screenshot-9.png?rev=1460091", "caption": "Aside from being able to white label the ManageWP Worker plugin, you can also add a support form on the client''s website"}}, "support_url": "https://wordpress.org/support/plugin/worker/", "contributors": {"managewp": {"avatar": "https://secure.gravatar.com/avatar/8c88e633afcc1a88ea2be2213563fe3386edc70f26f8a90593e8991657a2885e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/managewp/", "display_name": "ManageWP"}, "freediver": {"avatar": "https://secure.gravatar.com/avatar/e5715560585748738266301b0f3ece732f803f6d6417785f743299ba033942f9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/freediver/", "display_name": "Vladimir Prelovac"}}, "last_updated": "2025-10-16 7:56am GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/worker.4.9.25.zip", "author_profile": "https://profiles.wordpress.org/freediver/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fde9-7205-b08c-adccd3fc10e7", "name": "ManageWP Worker", "slug": "worker", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760601360, "version": "4.9.25"}, "support_threads": 1, "requires_plugins": [], "short_description": "A better way to manage dozens of WordPress websites.", "author_block_count": 0, "author_block_rating": 92, "commercial_support_url": "", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-67f1-70a3-bfb6-47d69cbf4edb', 'wp-fastest-cache', 'WP Fastest Cache', 'The simplest and fastest WP Cache system', '

    Official Website

    -

    You can find more information on our website (wpfastestcache.com)

    -

    Welcome to the page of the WP Fastest Cache plugin, a WordPress cache plugin developed to speed up WordPress sites.

    -

    In today’s world where every second counts, optimizing your website’s performance is very important. Meet WP Fastest Cache, your caching plugin that you can use to speed up WordPress websites.

    -

    Optimize the performance of your website with WP Fastest Cache. Improve Google PageSpeed, Core Web Vitals, GTmetrix and Pingdom score with our wp cache plugin.

    -

    In addition, page speed is a ranking factor in Google’s search algorithm. Therefore, using cache plugins helps improve your SEO ranking. Our WordPress optimization plugin not only accelerates your site but also boosts SEO rankings.

    -

    Features

    -
      -
    1. Mod_Rewrite which is the fastest method is used in this plugin
    2. -
    3. All cache files are deleted when a post or page is published
    4. -
    5. Admin can delete all cached files from the options page
    6. -
    7. Admin can delete minified css and js files from the options page
    8. -
    9. Block cache for specific page or post with Short Code
    10. -
    11. Cache Timeout – All cached files are deleted at the determinated time
    12. -
    13. Cache Timeout for specific pages
    14. -
    15. Enable/Disable cache option for mobile devices
    16. -
    17. Enable/Disable cache option for logged-in users
    18. -
    19. SSL support
    20. -
    21. CDN support – Effortlessly enhance website speed and performance with seamless CDN integration, supporting Bunny CDN, Cloudflare, and various other leading CDN providers. CDN integration modifies the URLs of static resources, enabling these assets to be served from your CDN service provider
    22. -
    23. Cloudflare support – Cloudflare integration triggers the clearing of the cache on Cloudflare through API when a cache purge is initiated. As a result, WP Fastest Cache and Cloudflare operate seamlessly in tandem
    24. -
    25. Preload Cache – Create the cache of all the site automatically
    26. -
    27. Exclude pages and user-agents
    28. -
    29. WP-CLI cache clearing
    30. -
    31. Proxy Cache – Varnish Cache Integration to clear proxy cached content automatically when the cache created by WP Fastest Cache is cleared
    32. -
    -

    Performance Optimization

    -

    WP Fastest Cache is not only a wp cache plugin but also a speed optimization wordpress cache plugin. There are many features such as Minify Html, Minify Css, Enable Gzip Compression, Leverage Browser Caching, Add Expires Headers, Combine CSS, Combine JS, Disable Emoji.

    -
      -
    1. Page Caching – Page caching feature generates and store static HTML files from your dynamic WordPress blog to reduce initial server response time, and improving page load times
    2. -
    3. Minify Html – Minify HTML is the process of reducing the size of page by removing unnecessary characters, spaces, and line breaks, optimizing it for faster webpage loading
    4. -
    5. Minify Css – Minify CSS is the process of reducing the size of CSS files by removing unnecessary characters, spaces, and comments to improve website loading performance
    6. -
    7. Enable Gzip Compression – Reduce the size of files sent from your server to increase the speed to which they are transferred to the browser
    8. -
    9. Leverage browser caching – Browser caching can help to reduce page load times by reducing the number of requests per page for repeat visitors
    10. -
    11. Combine CSS – Reduce number of HTTP round-trips by combining multiple CSS resources into one
    12. -
    13. Combine JS
    14. -
    15. Disable Emoji – You can remove the emoji inline css and wp-emoji-release.min.js
    16. -
    -

    Premium Performance Optimization

    -

    The free version is enough to speed up your site but in the premium version there are extra features such as Mobile Cache, Widget Cache, Minify HTML Plus, Minify CSS Plus, Minify JS, Combine JS Plus, Defer Javascript, Optimize Images, Convert WebP, Database Cleanup, Google Fonts Async, Lazy Load and Delay JS for super fast load times.

    -
      -
    1. Mobile Cache
    2. -
    3. Widget Cache
    4. -
    5. Minify HTML Plus
    6. -
    7. Minify CSS Plus
    8. -
    9. Minify Javascript – Minifying JavaScript files can reduce payload sizes and script parse time
    10. -
    11. Combine JS Plus
    12. -
    13. Defer Javascript – Eliminate render-blocking JavaScript resources. Consider delivering critical JS inline and deferring all non-critical JS
    14. -
    15. Optimize Images – Optimized images load faster and consume less cellular data
    16. -
    17. Convert WebP – Serve images in next-gen formats. Image formats like JPEG 2000, JPEG XR, and WebP often provide better compression than PNG or JPEG, which means faster downloads and less data consumption
    18. -
    19. Database Cleanup – The Database Cleanup feature clears out all of the garbage datas such as post revisions, trashed posts & pages, comments from trash & spam, trackbacks and pingbacks, transient options, orphaned post meta, comment meta, user meta, term meta, and term relationship etc.
    20. -
    21. Google Fonts Async
    22. -
    23. Lazy Load – Defer offscreen images. Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive
    24. -
    25. Delay JS – The Delay JavaScript feature helps reduce the ‘Reduce unused JavaScript’ warning in the Google PageSpeed Insights tool
    26. -
    -

    Information

    -

    It is very inconvenient to use multiple caching plugins at the same time. That’s why you need to disable plugins such as LiteSpeed Cache, WP-Optimize, W3 Total Cache, WP Super Cache, SiteGround Optimizer, Breeze while using WP Fastest Cache.

    -

    WP Fastest Cache is compatible with most popular plugins such as Contact Form 7, Yoast SEO, Elementor Website Builder, Classic Editor, Akismet Spam Protection, WooCommerce, Contact Form by WPForms, Really Simple SSL, All-in-One WP Migration, Yoast Duplicate Post, Wordfence Security – Firewall & Malware Scan, WordPress Importer, UpdraftPlus WordPress Backup Plugin, MonsterInsights, All in One SEO, WP Mail SMTP by WPForms.

    -

    Supported Languages

    -

    Although there are over 7000 languages spoken in the world today, we feel very lucky to support 30 languages for now.

    -

    However, localizing or adapting a plugin to another language or culture is time consuming and a demanding task. That’s where the amazing Translation Contributors team of WordPress comes into play. These selfless people spent their precious time without expecting anything in return so that other people can use the add-ons more easily. We sincerely thank all of them.

    -

    Chinese Simplified (China), Chinese Traditional (Taiwan), Czech, Dutch (Belgium), Dutch (Netherlands), English (South Africa), English (UK), Finnish, French (France), Galician, German (Germany), Hungarian, Indonesian, Italian, Japanese, Korean (Korea), Persian, Russian, Slovak (Slovakia), Slovenian, Spanish (Argentina), Spanish (Chile), Spanish (Colombia), Spanish (Ecuador), Spanish (Mexico), Spanish (Spain), Spanish (Venezuela), Swedish, Turkish, Ukrainian

    -', '1.4.1', 'Emre Vona', '5.3', NULL, '6.8.3', 'https://downloads.wordpress.org/plugin/wp-fastest-cache.1.4.1.zip', '2013-08-04 00:00:00+00', '2025-10-20 18:51:00+00', 'https://profiles.wordpress.org/emrevona/', 98, 4182, 32, 17, 1000000, 60168274, 'http://wordpress.org/plugins/wp-fastest-cache/', 'https://profiles.wordpress.org/emrevona/', NULL, NULL, 'https://wordpress.org/support/plugin/wp-fastest-cache/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WP Fastest Cache", "slug": "wp-fastest-cache", "tags": {"cache": "cache", "optimize": "Optimize", "pagespeed": "pagespeed", "performance": "performance", "core-web-vitals": "core web vitals"}, "added": "2013-08-04", "icons": {"1x": "https://ps.w.org/wp-fastest-cache/assets/icon-128x128.png?rev=1068904", "2x": "https://ps.w.org/wp-fastest-cache/assets/icon-256x256.png?rev=2064586"}, "author": "Emre Vona", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-fastest-cache/assets/banner-772x250.jpg?rev=1064099", "high": false}, "ratings": {"1": 104, "2": 27, "3": 28, "4": 48, "5": 3975}, "version": "1.4.1", "homepage": "http://wordpress.org/plugins/wp-fastest-cache/", "requires": "5.3", "sections": {"faq": "\n
    \nHow do I know my blog is being cached?\n\n

    \n

    You need to refresh a page twice. If a page is cached, at the bottom of the page there is a text like “<!– WP Fastest Cache file was created in 0.330816984177 seconds, on 08-01-14 9:01:35 –>”.

    \n

    \n
    \nDoes it work with Nginx?\n\n

    \n

    Yes, it works with Nginx properly. Since Nginx doesn’t use an .htaccess file, you need to enable the Gzip compression and Browser Caching features manually. You can follow these tutorials: How to Enable Leverage Browser Caching on Nginx and How to Enable Gzip on Nginx

    \n

    \n
    \nDoes it work with IIS (Windows Server) ?\n\n

    \n

    Yes, it works with IIS properly.

    \n

    \n
    \nIs this plugin compatible with Multisite?\n\n

    \n

    Yes, it is compatible with Multisite.

    \n

    \n
    \nIs this plugin compatible with Subdirectory Installation?\n\n

    \n

    Yes, it is compatible with Subdirectory Installation.

    \n

    \n
    \nIs this plugin compatible with Http Secure (https) ?\n\n

    \n

    Yes, it is compatible with Http Secure (https).

    \n

    \n
    \nIs this plugin compatible with Adsense?\n\n

    \n

    Yes, it is compatible with Adsense 100%.

    \n

    \n
    \nIs this plugin compatible with CloudFlare?\n\n

    \n

    Yes, it is but you need to read the details. Click

    \n

    \n
    \nIs this plugin compatible with qTranslate?\n\n

    \n

    Yes, it is compatible with qTranslate 100%.

    \n

    \n
    \nIs this plugin compatible with WP Hide & Security Enhancer?\n\n

    \n

    Yes, it is compatible with WP Hide & Security Enhancer.

    \n

    \n
    \nIs this plugin compatible with WP-PostViews?\n\n

    \n

    Yes, it is compatible with WP-PostViews. The current post views appear on the admin panel. The visitors cannot see the current post views. The developer of WP-PostViews needs to fix this issue.

    \n

    \n
    \nIs this plugin compatible with WooCommerce Themes?\n\n

    \n

    Yes, it is compatible with WooCommerce Themes 100%.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Cache Plugin with even better 24/7 Support

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ascendinmotion on October 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve tried a bunch of cache plugins over the years, and this one is easily one of the best. It made a clear difference in our site speed right away, and the setup was super straightforward. But honestly, the real standout is the 24/7 support, they replied in under five minutes from when I emailed, and they were on it immediately, unlike so many other WordPress plugin support teams that take days just scratching their heads. Every time I’ve reached out, someone was there to help within minutes. It''s rare to find both a solid plugin and a support team that actually shows up. Definitely recommend it if you''re looking for speed and peace of mind.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Awesome. Appreciate it!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy inpeaks on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent support from the team!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin, using it on mutliple websites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy banjavrujci on October 19, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hello everyone,

    \n\n\n\n

    WP Fastest Cache is one the must have plugins for me.

    \n\n\n\n

    I am using it on a lot of my websites and it gives me great results.

    \n\n\n\n

    All the best from my side for the creators of this great plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good Performance Low Mangalation

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Robert Dinse on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have tried many cache plugins, most mangle my site if I enable javascript, css, and html minimization and combining, but Fastest Cache seems to work correctly. For maximum effect, I mounted a tmpfs where my cache directory is so that Fastest Cache can server out of RAM. Feel free to check out my site https://www.eskimo.com/

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very efficient and very easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Miguel (millote) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve used various caching systems and always come back to Fastest Cache. It''s very easy to use and has very positive results. I''ll definitely stick with it.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Solid, Lightweight Caching That Just Works

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Pavel Espinal (khratos) on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    As a developer, I appreciate plugins that deliver performance without bloat—and WP Fastest Cache nails it. It’s lightweight, easy to configure, and significantly boosts page load times out of the box. The minification, GZIP, and browser caching features just work as they should. If you need reliable caching without the overhead, this is your go-to.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin, simply, fast Websites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tbauerdigital on October 8, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Using the Plugin on more than 20 Websites (free and some with the paid version) and it works like a charm. Also the Support-Team was fast and helpful regarding an issue and quick fix with one other Plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not for Me

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy George (gbwallace) on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I am on WordPress 6.8.3 and using font Hever (hever-wpcom) 1.5.30. This plugin was not compatible with this font and really messed up my site till the guys at Blue Host spent two days trying to figure out what was wrong!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin and very easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jedanbaja on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    All in title, easy to use, great options for both free and premium version.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good and powerful - Fast and accurate service

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hekupsch on September 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WP Fastest Cache is a powerful and easy to use plugin. The service is quick and precise. Many thanks

    \n
    \n
    \n", "changelog": "

    1.4.1

    \n
      \n
    • Added display of orphaned post meta, comment meta, user meta, term meta, and term relationship counts
    • \n
    • Added nonce verification and capability checks to the wpfc_db_fix AJAX action to prevent unauthorized database cleanup requests
    • \n
    • Added a validation to ensure Elementor’s CSS Print Method is set to “Internal Embedding,” displaying an error with a help link if misconfigured [Details]
    • \n
    \n

    1.4.0

    \n
      \n
    • Fixed: support both old (elementor_experiment-e_element_cache) and new (elementor_element_cache_ttl) Elementor cache options for compatibility
    • \n
    \n

    1.3.9

    \n
      \n
    • [Improvement] Replaced manual output in print_my_inline_script() with wp_print_inline_script_tag() for better compatibility and cleaner code
    • \n
    • Fixed: RewriteCond syntax to correctly detect HTTPS connections
    • \n
    \n

    1.3.8

    \n
      \n
    • Added a condition to exclude tags from js combining
    • \n
    • Fixed: Issue where the cache was not being cleared when a page was deleted
    • \n
    • Fixed: PHP fatal error caused by an undefined function current_datetime() in cache.php on line 1130
    • \n
    • Added support for fetching and processing multiple pages of Cloudflare zones to ensure all potential matches are considered
    • \n
    \n

    1.3.7

    \n
      \n
    • [Improvement] Serve cached content via .htaccess rules instead of PHP when URLs include the fbclid query string
    • \n
    • [FEATURE] Added support for Spanish (Chile) and Ukrainian languages
    • \n
    • to update translation files
    • \n
    • to fix PHP Fatal error: Uncaught TypeError: method_exists(): Argument #1 ($object_or_class) must be of type object|string, array given in cdn.php:383
    • \n
    • [Improvement] Added specific handling for BunnyCDN 403 errors
    • \n
    \n

    1.3.6

    \n
      \n
    • Prevented unnecessary cache deletion for pending comments marked as spam or moved to trash
    • \n
    • Updated caching behavior to serve URLs with Google Merchant Center query strings (e.g., /?srsltid) from the cache, improving performance
    • \n
    \n

    1.3.5

    \n
      \n
    • Updated cache creation time display to follow WordPress date and time format settings
    • \n
    • Removed the ‘Static CSS File Generation’ warning when using the Divi theme.
    • \n
    \n

    1.3.4

    \n
      \n
    • to fix PHP Fatal error: Class “VarnishWPFC” not found in preload.php
    • \n
    • to fix Undefined property: stdClass::$total in preload.php on line 753
    • \n
    \n

    1.3.3

    \n
      \n
    • [Improvement] Toolbar style adjusted to align with WordPress standard for better consistency and user experience
    • \n
    • to change the cache path for the Polylang-Pro plugin
    • \n
    • [Improvement] Modified the toolbar menu of WP Fastest Cache plugin to improve usability and navigation
    • \n
    • [FEATURE] Added a filter that allows users to easily remove the WP Fastest Cache menu from the admin toolbar [Details]
    • \n
    \n

    1.3.2

    \n
      \n
    • [Improvement] Added a new action to handle the addition of keyword items in the Preload Wizard
    • \n
    • Corrected typos in the Cloudflare CDN integration wizard and in the DB tab
    • \n
    • [FEATURE] Added a filter to define the token for preload functionality [Details]
    • \n
    \n

    1.3.1

    \n
      \n
    • [FEATURE] Added a filter that allows users to easily remove the cache creation comment from the footer [Details]
    • \n
    • [Improvement] Added a warning notification to alert users if the “Element Caching” option in the Elementor plugin is not inactive [Details]
    • \n
    • Refactored remove_url_parameters() for improved efficiency
    • \n
    • Fix issue: Logic to determine the $number variable based on the WPFC_PRELOAD_NUMBER constant for preload when a sitemap is used
    • \n
    \n

    1.3.0

    \n
      \n
    • Prevent caching of 403 Forbidden error pages
    • \n
    • Fix issue: Exclude JS files with the “data-no-minify” attribute from the combining process
    • \n
    • Fixed PHP Notice: Undefined index: HTTP_HOST in wpFastestCache.php on line 489
    • \n
    \n

    1.2.9

    \n
      \n
    • Refactored ‘Clear Cache via URL’ feature
    • \n
    • Added feature to clear post cache triggered via URL [Details]
    • \n
    \n

    1.2.8

    \n
      \n
    • refactoring for CSS minification feature
    • \n
    • refactoring for Cloudflare Integration
    • \n
    • to update translation files
    • \n
    \n

    1.2.7

    \n
      \n
    • to fix the issue of backslashes being removed in the <pre> tag after minifying HTML
    • \n
    \n

    1.2.6

    \n
      \n
    • refactoring for getABSPATH()
    • \n
    • to prevent clearing cache after deleting coupon which was created by YITH WooCommerce Coupon Email System Premium
    • \n
    • to check the REDIRECT_QUERY_STRING for the gtranslate plugin
    • \n
    \n

    1.2.5

    \n
      \n
    • to fix the creation of cache for URLs that end with .xml
    • \n
    • to use the native WordPress function current_time() instead of the date() function
    • \n
    • refactoring the purge_cache() function of Varnish Cache
    • \n
    \n

    1.2.4

    \n
      \n
    • refactoring for getABSPATH()
    • \n
    • to fix PHP Deprecated: Creation of dynamic property CssUtilities::$url is deprecated in css-utilities.php on line 348
    • \n
    • to fix PHP Deprecated: Creation of dynamic property CssUtilities::$url_for_fix is deprecated in css-utilities.php on line 412
    • \n
    • to remove duplicate extensions in the directive for the browser caching feature
    • \n
    \n

    1.2.3

    \n
      \n
    • Farewell, StackPath, and a warm welcome to BunnyCDN
    • \n
    • to update translation files
    • \n
    • to exclude script element from minification when data-no-minify attribute is set
    • \n
    • [FEATURE] to add Slovenian language
    • \n
    • refactroning of specificDeleteCache()
    • \n
    \n

    1.2.2

    \n
      \n
    • Security Enhancements
    • \n
    • to update translation files
    • \n
    \n

    1.2.1

    \n
      \n
    • refactroning of the condition that was added for Divi theme
    • \n
    • [FEATURE] Add a hook system for creating a post cache by id [Details]
    • \n
    • to fix the issue of obtaining the latest version of the sitemap after a restart
    • \n
    • to check if the intl extension is available for Cloudflare integration
    • \n
    • to fix Warning: Undefined property: stdClass::$zone_id in cdn.php on line 227
    • \n
    \n

    1.2.0

    \n
      \n
    • to make the Preload feature to be compatible with Sitemap Index
    • \n
    • to hide the premium tab for the premium users
    • \n
    • to show warning if the Static CSS File Generation option of Divi theme is enabled
    • \n
    • to update translation files
    • \n
    • to fix PHP Warning: Undefined array key “sitemaps” in preload.php on line 62
    • \n
    • to change the cache path for the Polylang-Pro plugin
    • \n
    • to check if the buffer has only one line (no line breaks)
    • \n
    • refactoring of checkHtml()
    • \n
    • to check that Cookie Notice & Compliance for GDPR / CCPA is active or not
    • \n
    \n

    1.1.9

    \n
      \n
    • to add gear button for the preload feature
    • \n
    • to remove image urls for sitemap preload
    • \n
    • to fix PHP Deprecated: Required parameter in preload.php on line 576
    • \n
    • [FEATURE] Moving the menu item under the settings menu [Details]
    • \n
    • to fix Warning: Undefined array key “action” in wpFastestCache.php on line 378 and 395
    • \n
    \n

    1.1.8

    \n
      \n
    • [FEATURE] to add Sitemap option for the preload feature [Details]
    • \n
    • to update translation files
    • \n
    • to fix PHP Warning: Attempt to read property “term_taxonomy_id” on bool in wpFastestCache.php on line 1638
    • \n
    \n

    1.1.7

    \n
      \n
    • to change the cache path for the Polylang plugin
    • \n
    • [FEATURE] to add Korean (Korea) language
    • \n
    • to update translation files
    • \n
    • refactoring of is_amp()
    • \n
    • to replace empty char which exist in the admin cookie with %20 for RewriteCond
    • \n
    \n

    1.1.6

    \n
      \n
    • to update translation files
    • \n
    • to fix problem that the first js source is not able to be excluded
    • \n
    • refactoring of set_cache_file_path()
    • \n
    • refactoring of Buffer Callback Filter [Details]
    • \n
    \n

    1.1.5

    \n
      \n
    • to replace wp_remote_get() with wp_safe_remote_get() in the check_url() function
    • \n
    • to update translation files
    • \n
    • to fix PHP Warning: Undefined array key “roles” in wpFastestCache.php on line 962
    • \n
    • to remove multiple slashes from url
    • \n
    • to fix PHP Warning: Attempt to read property “wpFastestCacheLanguage” on array in admin.php on line 23
    • \n
    \n

    1.1.4

    \n
      \n
    • to check trailing slash for query string cache
    • \n
    • refactoring process of clearing homepage cache by cache timeout
    • \n
    \n

    1.1.3

    \n
      \n
    • to change translation system [Details]
    • \n
    • refactoring of delete_author_page_cache()
    • \n
    • to add Czech, Dutch (Belgium), Galician, Hungarian, Indonesian, Japanese, Persian, Spanish (Colombia), Spanish (Ecuador), Spanish (Ecuador), Spanish (Venezuela), Spanish (Argentina), Spanish (Mexico) translations
    • \n
    • to enable the toolbar settings wizard for the Multisite installation [Details]
    • \n
    • to fix low level vulnerability
    • \n
    \n

    1.1.2

    \n
      \n
    • to clear cache of next/prev posts after updating or publishing a post
    • \n
    • to fix E_WARNING: file_get_contents(): No such file or directory in admin.php on line 377
    • \n
    • [FEATURE] Added ability to disable hook system [Details]
    • \n
    • to fix PHP Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in preload.php on line 546
    • \n
    • to fix Notice: Constant WPFC_CACHE_QUERYSTRING already defined
    • \n
    \n

    1.1.1

    \n
      \n
    • [FEATURE] Varnish Cache Integration [Details]
    • \n
    • to fix E_WARNING: unlink(): No such file or directory in wpFastestCache.php on line 1530
    • \n
    \n

    1.1.0

    \n
      \n
    • to show cache if the url contains a parameter of Yandex Click Identifier
    • \n
    • [FEATURE] Excluding Yandex Click Identifier [Details]
    • \n
    • [FEATURE] Adding “Regular Expression” option for the Exclude Pages feature [Details]
    • \n
    \n

    1.0.9

    \n
      \n
    • to improve the style of exclude feature wizard
    • \n
    • to fix hiding the toolbar when logged in
    • \n
    • to fix PHP Notice: Undefined offset: -1 in js-utilities.php on line 67
    • \n
    • to fix PHP Fatal error: Uncaught Error: Non-static method cannot be called statically in clearing-specific-pages.php on line 58
    • \n
    \n

    1.0.8

    \n
      \n
    • to stop showing the “DONOTCACHEPAGE is defined as TRUE” comment in the footer for the ajax requests
    • \n
    • [FEATURE] Clearing Specific Pages [Details]
    • \n
    • to fix the site url on the exclude page
    • \n
    • to fix PHP Notice: Function WP_User_Query::query was called incorrectly. User queries should not be run before the plugins_loaded hook
    • \n
    \n

    1.0.7

    \n
      \n
    • [FEATURE] Clearing Specific Pages (BETA) [Details]
    • \n
    • to add last-modified header when cache is served via php
    • \n
    \n

    1.0.6

    \n
      \n
    • to serve sources via cdn for excluded pages if cdn is enabled
    • \n
    • to fix PHP Notice: Undefined offset: -1 in js-utilities.php on line 48
    • \n
    \n

    1.0.5

    \n
      \n
    • to fix E_NOTICE: Undefined variable: path in wpFastestCache.php on line 2142
    • \n
    • to add excluding feature for Buffer Callback Filter [Details]
    • \n
    \n

    1.0.4

    \n
      \n
    • to add avif extensions for cdn
    • \n
    • to add WPFC_SERVE_ONLY_VIA_CACHE [Details]
    • \n
    \n

    1.0.3

    \n
      \n
    • Photon will no longer be supported [Details]
    • \n
    • to exclude category url for preload if any error occurs
    • \n
    \n

    1.0.2

    \n
      \n
    • to add WP-CLI command for clearing cache of a post [Details]
    • \n
    • to fix Warning scandir() at wpFastestCache.php:302
    • \n
    • to fix Warning file_put_contents(/cache/wpfc-minified/index.html) at cache.php:1090
    • \n
    • to fix Warning unlink(wp-cache-config.php) admin.php:885
    • \n
    \n

    1.0.1

    \n
      \n
    • to clear only cache of post/page even if the “update post” option is disabled
    • \n
    \n

    1.0.0

    \n
      \n
    • to define the save_settings() function of single preload feature as static function
    • \n
    \n

    EARLIER VERSIONS
    \nFor the changelog of earlier versions, please refer to [the changelog on wpfastestcache.com]

    \n", "description": "

    Official Website

    \n

    You can find more information on our website (wpfastestcache.com)

    \n

    Welcome to the page of the WP Fastest Cache plugin, a WordPress cache plugin developed to speed up WordPress sites.

    \n

    In today’s world where every second counts, optimizing your website’s performance is very important. Meet WP Fastest Cache, your caching plugin that you can use to speed up WordPress websites.

    \n

    Optimize the performance of your website with WP Fastest Cache. Improve Google PageSpeed, Core Web Vitals, GTmetrix and Pingdom score with our wp cache plugin.

    \n

    In addition, page speed is a ranking factor in Google’s search algorithm. Therefore, using cache plugins helps improve your SEO ranking. Our WordPress optimization plugin not only accelerates your site but also boosts SEO rankings.

    \n

    Features

    \n
      \n
    1. Mod_Rewrite which is the fastest method is used in this plugin
    2. \n
    3. All cache files are deleted when a post or page is published
    4. \n
    5. Admin can delete all cached files from the options page
    6. \n
    7. Admin can delete minified css and js files from the options page
    8. \n
    9. Block cache for specific page or post with Short Code
    10. \n
    11. Cache Timeout – All cached files are deleted at the determinated time
    12. \n
    13. Cache Timeout for specific pages
    14. \n
    15. Enable/Disable cache option for mobile devices
    16. \n
    17. Enable/Disable cache option for logged-in users
    18. \n
    19. SSL support
    20. \n
    21. CDN support – Effortlessly enhance website speed and performance with seamless CDN integration, supporting Bunny CDN, Cloudflare, and various other leading CDN providers. CDN integration modifies the URLs of static resources, enabling these assets to be served from your CDN service provider
    22. \n
    23. Cloudflare support – Cloudflare integration triggers the clearing of the cache on Cloudflare through API when a cache purge is initiated. As a result, WP Fastest Cache and Cloudflare operate seamlessly in tandem
    24. \n
    25. Preload Cache – Create the cache of all the site automatically
    26. \n
    27. Exclude pages and user-agents
    28. \n
    29. WP-CLI cache clearing
    30. \n
    31. Proxy Cache – Varnish Cache Integration to clear proxy cached content automatically when the cache created by WP Fastest Cache is cleared
    32. \n
    \n

    Performance Optimization

    \n

    WP Fastest Cache is not only a wp cache plugin but also a speed optimization wordpress cache plugin. There are many features such as Minify Html, Minify Css, Enable Gzip Compression, Leverage Browser Caching, Add Expires Headers, Combine CSS, Combine JS, Disable Emoji.

    \n
      \n
    1. Page Caching – Page caching feature generates and store static HTML files from your dynamic WordPress blog to reduce initial server response time, and improving page load times
    2. \n
    3. Minify Html – Minify HTML is the process of reducing the size of page by removing unnecessary characters, spaces, and line breaks, optimizing it for faster webpage loading
    4. \n
    5. Minify Css – Minify CSS is the process of reducing the size of CSS files by removing unnecessary characters, spaces, and comments to improve website loading performance
    6. \n
    7. Enable Gzip Compression – Reduce the size of files sent from your server to increase the speed to which they are transferred to the browser
    8. \n
    9. Leverage browser caching – Browser caching can help to reduce page load times by reducing the number of requests per page for repeat visitors
    10. \n
    11. Combine CSS – Reduce number of HTTP round-trips by combining multiple CSS resources into one
    12. \n
    13. Combine JS
    14. \n
    15. Disable Emoji – You can remove the emoji inline css and wp-emoji-release.min.js
    16. \n
    \n

    Premium Performance Optimization

    \n

    The free version is enough to speed up your site but in the premium version there are extra features such as Mobile Cache, Widget Cache, Minify HTML Plus, Minify CSS Plus, Minify JS, Combine JS Plus, Defer Javascript, Optimize Images, Convert WebP, Database Cleanup, Google Fonts Async, Lazy Load and Delay JS for super fast load times.

    \n
      \n
    1. Mobile Cache
    2. \n
    3. Widget Cache
    4. \n
    5. Minify HTML Plus
    6. \n
    7. Minify CSS Plus
    8. \n
    9. Minify Javascript – Minifying JavaScript files can reduce payload sizes and script parse time
    10. \n
    11. Combine JS Plus
    12. \n
    13. Defer Javascript – Eliminate render-blocking JavaScript resources. Consider delivering critical JS inline and deferring all non-critical JS
    14. \n
    15. Optimize Images – Optimized images load faster and consume less cellular data
    16. \n
    17. Convert WebP – Serve images in next-gen formats. Image formats like JPEG 2000, JPEG XR, and WebP often provide better compression than PNG or JPEG, which means faster downloads and less data consumption
    18. \n
    19. Database Cleanup – The Database Cleanup feature clears out all of the garbage datas such as post revisions, trashed posts & pages, comments from trash & spam, trackbacks and pingbacks, transient options, orphaned post meta, comment meta, user meta, term meta, and term relationship etc.
    20. \n
    21. Google Fonts Async
    22. \n
    23. Lazy Load – Defer offscreen images. Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive
    24. \n
    25. Delay JS – The Delay JavaScript feature helps reduce the ‘Reduce unused JavaScript’ warning in the Google PageSpeed Insights tool
    26. \n
    \n

    Information

    \n

    It is very inconvenient to use multiple caching plugins at the same time. That’s why you need to disable plugins such as LiteSpeed Cache, WP-Optimize, W3 Total Cache, WP Super Cache, SiteGround Optimizer, Breeze while using WP Fastest Cache.

    \n

    WP Fastest Cache is compatible with most popular plugins such as Contact Form 7, Yoast SEO, Elementor Website Builder, Classic Editor, Akismet Spam Protection, WooCommerce, Contact Form by WPForms, Really Simple SSL, All-in-One WP Migration, Yoast Duplicate Post, Wordfence Security – Firewall & Malware Scan, WordPress Importer, UpdraftPlus WordPress Backup Plugin, MonsterInsights, All in One SEO, WP Mail SMTP by WPForms.

    \n

    Supported Languages

    \n

    Although there are over 7000 languages spoken in the world today, we feel very lucky to support 30 languages for now.

    \n

    However, localizing or adapting a plugin to another language or culture is time consuming and a demanding task. That’s where the amazing Translation Contributors team of WordPress comes into play. These selfless people spent their precious time without expecting anything in return so that other people can use the add-ons more easily. We sincerely thank all of them.

    \n

    Chinese Simplified (China), Chinese Traditional (Taiwan), Czech, Dutch (Belgium), Dutch (Netherlands), English (South Africa), English (UK), Finnish, French (France), Galician, German (Germany), Hungarian, Indonesian, Italian, Japanese, Korean (Korea), Persian, Russian, Slovak (Slovakia), Slovenian, Spanish (Argentina), Spanish (Chile), Spanish (Colombia), Spanish (Ecuador), Spanish (Mexico), Spanish (Spain), Spanish (Venezuela), Swedish, Turkish, Ukrainian

    \n", "screenshots": "
    1. \"Performance

      Performance Comparison

    2. \"Other

      Other Performance Comparison

    3. \"Without

      Without Cache

    4. \"With

      With Cache

    5. \"Main

      Main Settings Page

    6. \"Preload\"

      Preload

    7. \"New

      New Post

    8. \"Update

      Update Cache

    9. \"Delete

      Delete Cache

    10. \"All

      All cached files are deleted at the determinated time

    11. \"Block

      Block caching for post and pages (TinyMCE)

    12. \"Clean

      Clean cached files via admin toolbar easily

    13. \"Exclude

      Exclude Page

    14. \"CDN\"

      CDN

    15. \"Enter

      Enter CDN Information

    16. \"File

      File Types

    17. \"Specify

      Specify Sources

    18. \"Database

      Database Cleanup

    ", "installation": "
      \n
    1. Upload wp-fastest-cache to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. \n
    5. Permission of .htacces must 644
    6. \n
    7. Enable this plugin on option page
    8. \n
    \n"}, "versions": {"0.9.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.6.zip", "0.9.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.7.zip", "0.9.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.8.zip", "0.9.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.9.zip", "1.0.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.4.1.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-fastest-cache.zip", "0.8.6.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.6.6.zip", "0.8.6.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.6.7.zip", "0.8.6.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.6.8.zip", "0.8.6.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.6.9.zip", "0.8.7.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.0.zip", "0.8.7.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.1.zip", "0.8.7.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.2.zip", "0.8.7.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.3.zip", "0.8.7.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.4.zip", "0.8.7.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.5.zip", "0.8.7.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.6.zip", "0.8.7.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.7.zip", "0.8.7.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.8.zip", "0.8.7.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.7.9.zip", "0.8.8.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.0.zip", "0.8.8.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.1.zip", "0.8.8.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.2.zip", "0.8.8.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.3.zip", "0.8.8.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.4.zip", "0.8.8.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.5.zip", "0.8.8.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.6.zip", "0.8.8.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.7.zip", "0.8.8.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.8.zip", "0.8.8.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.8.9.zip", "0.8.9.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.0.zip", "0.8.9.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.1.zip", "0.8.9.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.2.zip", "0.8.9.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.3.zip", "0.8.9.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.4.zip", "0.8.9.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.5.zip", "0.8.9.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.6.zip", "0.8.9.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.7.zip", "0.8.9.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.8.zip", "0.8.9.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.9.zip", "0.9.0.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.0.zip", "0.9.0.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.1.zip", "0.9.0.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.2.zip", "0.9.0.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.3.zip", "0.9.0.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.4.zip", "0.9.0.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.5.zip", "0.9.0.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.6.zip", "0.9.0.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.7.zip", "0.9.0.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.8.zip", "0.9.0.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.0.9.zip", "0.9.1.0": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.0.zip", "0.9.1.1": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.1.zip", "0.9.1.2": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.2.zip", "0.9.1.3": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.3.zip", "0.9.1.4": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.4.zip", "0.9.1.5": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.5.zip", "0.9.1.6": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.6.zip", "0.9.1.7": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.7.zip", "0.9.1.8": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.8.zip", "0.9.1.9": "https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.9.zip"}, "downloaded": 60168274, "description": "

    Official Website

    \n

    You can find more information on our website (wpfastestcache.com)

    \n

    Welcome to the page of the WP Fastest Cache plugin, a WordPress cache plugin developed to speed up WordPress sites.

    \n

    In today’s world where every second counts, optimizing your website’s performance is very important. Meet WP Fastest Cache, your caching plugin that you can use to speed up WordPress websites.

    \n

    Optimize the performance of your website with WP Fastest Cache. Improve Google PageSpeed, Core Web Vitals, GTmetrix and Pingdom score with our wp cache plugin.

    \n

    In addition, page speed is a ranking factor in Google’s search algorithm. Therefore, using cache plugins helps improve your SEO ranking. Our WordPress optimization plugin not only accelerates your site but also boosts SEO rankings.

    \n

    Features

    \n
      \n
    1. Mod_Rewrite which is the fastest method is used in this plugin
    2. \n
    3. All cache files are deleted when a post or page is published
    4. \n
    5. Admin can delete all cached files from the options page
    6. \n
    7. Admin can delete minified css and js files from the options page
    8. \n
    9. Block cache for specific page or post with Short Code
    10. \n
    11. Cache Timeout – All cached files are deleted at the determinated time
    12. \n
    13. Cache Timeout for specific pages
    14. \n
    15. Enable/Disable cache option for mobile devices
    16. \n
    17. Enable/Disable cache option for logged-in users
    18. \n
    19. SSL support
    20. \n
    21. CDN support – Effortlessly enhance website speed and performance with seamless CDN integration, supporting Bunny CDN, Cloudflare, and various other leading CDN providers. CDN integration modifies the URLs of static resources, enabling these assets to be served from your CDN service provider
    22. \n
    23. Cloudflare support – Cloudflare integration triggers the clearing of the cache on Cloudflare through API when a cache purge is initiated. As a result, WP Fastest Cache and Cloudflare operate seamlessly in tandem
    24. \n
    25. Preload Cache – Create the cache of all the site automatically
    26. \n
    27. Exclude pages and user-agents
    28. \n
    29. WP-CLI cache clearing
    30. \n
    31. Proxy Cache – Varnish Cache Integration to clear proxy cached content automatically when the cache created by WP Fastest Cache is cleared
    32. \n
    \n

    Performance Optimization

    \n

    WP Fastest Cache is not only a wp cache plugin but also a speed optimization wordpress cache plugin. There are many features such as Minify Html, Minify Css, Enable Gzip Compression, Leverage Browser Caching, Add Expires Headers, Combine CSS, Combine JS, Disable Emoji.

    \n
      \n
    1. Page Caching – Page caching feature generates and store static HTML files from your dynamic WordPress blog to reduce initial server response time, and improving page load times
    2. \n
    3. Minify Html – Minify HTML is the process of reducing the size of page by removing unnecessary characters, spaces, and line breaks, optimizing it for faster webpage loading
    4. \n
    5. Minify Css – Minify CSS is the process of reducing the size of CSS files by removing unnecessary characters, spaces, and comments to improve website loading performance
    6. \n
    7. Enable Gzip Compression – Reduce the size of files sent from your server to increase the speed to which they are transferred to the browser
    8. \n
    9. Leverage browser caching – Browser caching can help to reduce page load times by reducing the number of requests per page for repeat visitors
    10. \n
    11. Combine CSS – Reduce number of HTTP round-trips by combining multiple CSS resources into one
    12. \n
    13. Combine JS
    14. \n
    15. Disable Emoji – You can remove the emoji inline css and wp-emoji-release.min.js
    16. \n
    \n

    Premium Performance Optimization

    \n

    The free version is enough to speed up your site but in the premium version there are extra features such as Mobile Cache, Widget Cache, Minify HTML Plus, Minify CSS Plus, Minify JS, Combine JS Plus, Defer Javascript, Optimize Images, Convert WebP, Database Cleanup, Google Fonts Async, Lazy Load and Delay JS for super fast load times.

    \n
      \n
    1. Mobile Cache
    2. \n
    3. Widget Cache
    4. \n
    5. Minify HTML Plus
    6. \n
    7. Minify CSS Plus
    8. \n
    9. Minify Javascript – Minifying JavaScript files can reduce payload sizes and script parse time
    10. \n
    11. Combine JS Plus
    12. \n
    13. Defer Javascript – Eliminate render-blocking JavaScript resources. Consider delivering critical JS inline and deferring all non-critical JS
    14. \n
    15. Optimize Images – Optimized images load faster and consume less cellular data
    16. \n
    17. Convert WebP – Serve images in next-gen formats. Image formats like JPEG 2000, JPEG XR, and WebP often provide better compression than PNG or JPEG, which means faster downloads and less data consumption
    18. \n
    19. Database Cleanup – The Database Cleanup feature clears out all of the garbage datas such as post revisions, trashed posts & pages, comments from trash & spam, trackbacks and pingbacks, transient options, orphaned post meta, comment meta, user meta, term meta, and term relationship etc.
    20. \n
    21. Google Fonts Async
    22. \n
    23. Lazy Load – Defer offscreen images. Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive
    24. \n
    25. Delay JS – The Delay JavaScript feature helps reduce the ‘Reduce unused JavaScript’ warning in the Google PageSpeed Insights tool
    26. \n
    \n

    Information

    \n

    It is very inconvenient to use multiple caching plugins at the same time. That’s why you need to disable plugins such as LiteSpeed Cache, WP-Optimize, W3 Total Cache, WP Super Cache, SiteGround Optimizer, Breeze while using WP Fastest Cache.

    \n

    WP Fastest Cache is compatible with most popular plugins such as Contact Form 7, Yoast SEO, Elementor Website Builder, Classic Editor, Akismet Spam Protection, WooCommerce, Contact Form by WPForms, Really Simple SSL, All-in-One WP Migration, Yoast Duplicate Post, Wordfence Security – Firewall & Malware Scan, WordPress Importer, UpdraftPlus WordPress Backup Plugin, MonsterInsights, All in One SEO, WP Mail SMTP by WPForms.

    \n

    Supported Languages

    \n

    Although there are over 7000 languages spoken in the world today, we feel very lucky to support 30 languages for now.

    \n

    However, localizing or adapting a plugin to another language or culture is time consuming and a demanding task. That’s where the amazing Translation Contributors team of WordPress comes into play. These selfless people spent their precious time without expecting anything in return so that other people can use the add-ons more easily. We sincerely thank all of them.

    \n

    Chinese Simplified (China), Chinese Traditional (Taiwan), Czech, Dutch (Belgium), Dutch (Netherlands), English (South Africa), English (UK), Finnish, French (France), Galician, German (Germany), Hungarian, Indonesian, Italian, Japanese, Korean (Korea), Persian, Russian, Slovak (Slovakia), Slovenian, Spanish (Argentina), Spanish (Chile), Spanish (Colombia), Spanish (Ecuador), Spanish (Mexico), Spanish (Spain), Spanish (Venezuela), Swedish, Turkish, Ukrainian

    \n", "donate_link": "https://profiles.wordpress.org/emrevona/", "num_ratings": 4182, "screenshots": {"1": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-1.jpg?rev=1474077", "caption": "Performance Comparison"}, "2": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-2.jpg?rev=1474073", "caption": "Other Performance Comparison"}, "3": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-3.jpg?rev=1474073", "caption": "Without Cache"}, "4": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-4.jpg?rev=1474073", "caption": "With Cache"}, "5": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-5.jpg?rev=2838692", "caption": "Main Settings Page"}, "6": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-6.jpg?rev=2838692", "caption": "Preload"}, "7": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-7.jpg?rev=2010915", "caption": "New Post"}, "8": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-8.jpg?rev=1592065", "caption": "Update Cache"}, "9": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-9.jpg?rev=2850073", "caption": "Delete Cache"}, "10": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-10.jpg?rev=2136433", "caption": "All cached files are deleted at the determinated time"}, "11": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-11.jpg?rev=1474073", "caption": "Block caching for post and pages (TinyMCE)"}, "12": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-12.jpg?rev=1474073", "caption": "Clean cached files via admin toolbar easily"}, "13": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-13.jpg?rev=2838701", "caption": "Exclude Page"}, "14": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-14.jpg?rev=3004623", "caption": "CDN"}, "15": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-15.jpg?rev=1474073", "caption": "Enter CDN Information"}, "16": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-16.jpg?rev=1474073", "caption": "File Types"}, "17": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-17.jpg?rev=1474073", "caption": "Specify Sources"}, "18": {"src": "https://ps.w.org/wp-fastest-cache/assets/screenshot-18.jpg?rev=2838698", "caption": "Database Cleanup"}}, "support_url": "https://wordpress.org/support/plugin/wp-fastest-cache/", "contributors": {"emrevona": {"avatar": "https://secure.gravatar.com/avatar/045e687cd5f0f0e70cf92a2e75e65d9914f8e5c1be3d7cb668febccc35bc08c3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/emrevona/", "display_name": "Emre Vona"}}, "last_updated": "2025-10-20 6:51pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-fastest-cache.1.4.1.zip", "author_profile": "https://profiles.wordpress.org/emrevona/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    ....

    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fdf5-7042-915a-8dd4103477fc", "name": "WP Fastest Cache", "slug": "wp-fastest-cache", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760986260, "version": "1.4.1"}, "support_threads": 32, "requires_plugins": [], "short_description": "The simplest and fastest WP Cache system", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 17}'); -INSERT INTO public.plugins VALUES ('019a30c1-67fa-70ee-87df-58c9c900fc3a', 'wp-file-manager', 'File Manager', 'file manager provides you ability to edit, delete, upload, download, copy and paste files and folders.', '

    File Manager allows you to edit, delete, upload, download, zip, copy and paste files and folders directly from the WordPress backend. Don’t bother with FTP to manage and move your files from location to location. The most powerful, flexible, and easiest WordPress file management solution ever built!

    -

    -

    Key Features in File Manager free Version Plugin

    -

    Key Features in the Free File Manager plugin include:
    -* Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete, etc.)
    -* Move/Copy: Admin can Move/Copy files with Drag & Drop. Also includes multi file selection.
    -* Archives: Admin can create, archive and extract files(zip, rar, tar, gzip).
    -* File Size: Admin/User can upload any size files.
    -* File Type: Control what files can be uploaded and what file can be downloaded.
    -* Code Editor: File Manager comes with a built in integrated development environment (IDE) – New Feature
    -* Syntax Checker: File Manager now can complete code reviews before saving files to ensure your site will not go down when updating code. Reviewing code for errors has never been so easy! – New Feature
    -* Multiple Themes: Multiple File Manager Themes Available – New Feature
    -* Get Info: All file details, properties, information is now available by simply right clicking a file and selecting Get Info – New Feature
    -* Share Files by Email: With File Manager you can easily and quickly share files by Email. Simply right click a file and press share, that’s it! – New Feature
    -* Private Folder: Available only for File Manager Pro Edition
    -* Shortcode: Available only for File Manager Pro Edition
    -* Root Directory: Quickly and easily edit your root path directory. With this feature you can access files inside and outside of WordPress
    -* PDF Support: Preview PDF files easily
    -* Built-in Trash: Delete files by moving them to trash
    -* File View: Icon and list view both available for easy navigation
    -* Preview Support: Easily preview common file types including media (video, audio, mp3, thumbnails, etc)
    -* Search: Search functionality is built directly into File Manager making it simple to find your files.
    -* Shortcut Support: Common shortcuts are available in File Manager
    -* Automatic File Resize: automatically resize files once uploaded.
    -* Responsive UI: File Manager works on tablet and mobile devices
    -* Browsing History: File and folders browsing history
    -* Trash function: Move to Trash Folder Feature
    -* PDF Preview: PDF Preview feature available
    -* FTP/SFTP Support: Alternative to FTP or Cpanel
    -* File Preview: preview for common MIMEs and file types
    -* Directory Size: Calculate directory size
    -* Icon View: List and Icons view available for files and files
    -* Keyboard shortcuts: Keyboard shortcuts available e.g. copy,paste,drag & drop
    -* Drag and drop: File Drag & Drop file upload function available
    -* Functions Toolbar: Rich context menu and file manager functions toolbar
    -* Thumbnails: Thumbnails for all types of image files
    -* Upload to Media Library: We have now included the ability to enable images, pdf’s, and zip files to be uploaded to you folders and as well be available via the native WordPress Media Library
    -* Backup/Restore: Backup and restore themes files, plugins files,uploads folder and db data on server.
    -* Multi Languages Added

    -

    Key Features in File Manager Pro Editions

    -
      -
    • File Type: Control what files can be uploaded and what file can be downloaded.**
    • -
    • Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete etc.)
    • -
    • Shortcode: Available with custom attributes for frontend.
    • -
    • Private Folder: Admin can give access of same and different folder to different users roles and different users.
    • -
    • Move/Copy: Admin can Move/Copy files with Drag & Drop.
    • -
    • Archives: Admin can create/extract files(zip, rar, tar, gzip).
    • -
    • File Size: Admin/User can control file upload size.
    • -
    • Fullscreen View: Admin can control code editor fullscreen view.
    • -
    • Editor: There are a lots of themes available for code editor. Admin can control code editor themes.
    • -
    • Hide Files/Folder: Here admin is able to hide files and folders for user roles and for users.
    • -
    • File Type: Control what files can be uploaded and what file can be downloaded.
    • -
    • User Role: admin is able to control file operations and hide and lock Files and Folders for user roles .
    • -
    • Users: admin is able to control file operations and hide and lock Files and Folders for particular user .
    • -
    • High performance: High performance server backend and light client UI.
    • -
    • File system: Local file system storage drivers.
    • -
    • Edit file: User can edit text files and images.
    • -
    • Frontend Access: User can access frontend using shortcode.
    • -
    • Admin Email Notifications. Admin will get a Notification whenever a file is updated.
    • -
    • Admin Email Notifications. Admin will get a Notification whenever a file is Downloaded.
    • -
    • Admin Email Notifications. Admin will get a Notification whenever a file is Edited.
    • -
    • Google Drive Integration drag drop, copy paste all other operations between file manager and google drive.
    • -
    • Dropbox Integration drag drop, copy paste all other operations between file manager and dropbox.
    • -
    -
    -

    Buy Pro Version with various features & support.
    - Contact us for Support Only Pro Version Users.
    - Documentation Click Here.
    - Addons with various features & support.
    - Upgrade to Pro Version

    -
    -

    Premium Addons

    -

    File Manager Cloudflare R2 provides you ability to edit, delete, upload, download, copy and paste files and folders in Cloudflare R2 bucket.
    -File Manager Digital Ocean provides you ability to edit, delete, upload, download, copy and paste files and folders in Digital Ocean.
    -File Manager Google Drive provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Drive.
    -File Manager OneDrive provides you ability to edit, delete, upload, download, copy and paste files and folders in OneDrive from File Manager.
    -File Manager Dropbox provides you ability to edit, delete, upload, download, copy and paste files and folders in dropbox.
    -File Manager Box provides you ability to edit, delete, upload, download, copy and paste files and folders in Box.
    -File Manager AWS S3 provides you ability to edit, delete, upload, download, copy and paste files and folders in AWS S3 bucket.
    -File Manager Git Github integration for file manager.
    -File Manager Slack Slack incoming webhook integration to file manager.
    -File Manager Google Cloud provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Cloud bucket.

    -

    Support

    -
      -
    • If any problem occurs, please contact us at https://filemanagerpro.io/contact/
    • -
    -

    How to use

    -
      -
    1. First Activate Plugin.
    2. -
    3. Then Click on ” WP File Manager ” menu. Then do with files what you want to do.= Minimum requirements for File Manager =
    4. -
    -

    * WordPress 3.3+
    -* PHP 5.x
    -* MySQL 5.x

    -

    If any problem occurs, please contact us at https://filemanagerpro.io/contact/

    -', '8.0.2', 'mndpsingh287', '4.0', '5.2.4', '6.8.3', 'https://downloads.wordpress.org/plugin/wp-file-manager.zip', '2016-08-09 00:00:00+00', '2025-06-04 11:21:00+00', 'https://profiles.wordpress.org/mndpsingh287/', 94, 1428, 5, 1, 1000000, 30440382, 'https://wordpress.org/plugins/wp-file-manager', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/wp-file-manager/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "File Manager", "slug": "wp-file-manager", "tags": {"ftp": "ftp", "elfinder": "elfinder", "file-manager": "file manager", "wp-filemanager": "wp-filemanager", "wp-file-manager": "wp file manager"}, "added": "2016-08-09", "icons": {"1x": "https://ps.w.org/wp-file-manager/assets/icon-128x128.png?rev=2491299"}, "author": "mndpsingh287", "rating": 94, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-file-manager/assets/banner-772x250.jpg?rev=2491299", "high": false}, "ratings": {"1": 101, "2": 13, "3": 13, "4": 28, "5": 1273}, "version": "8.0.2", "homepage": "https://wordpress.org/plugins/wp-file-manager", "requires": "4.0", "sections": {"faq": "\n
    \nCan we make zip of any folder or file and download it ?\n\n

    \n

    Yes, You can archive any files and folders as zip then simple download it. Please view screenshots.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really Helpful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy robotlawnmowersaustralia on October 2, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A convenient way to manage WordPress files directly from the dashboard, especially if you don’t have FTP access.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A really helpful plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jaribali1 on October 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Gets the job done when you need it to without obvious restrictions. I love this!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    THE BEST

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ovniccius on September 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    uSO MUITO

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy plutarch87 on September 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Really useful plugin, if not the most useful for us, webdevs.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    great tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Tai (taikiser) on September 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    great assistance with plug ins

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Exactly what i needed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy leijmin on September 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks . Exactly what i needed

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Far better than the FTP

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy biturboyamato on September 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin has everything I need - the intuitive UI and the built-in text editor saved my time a lot.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Site hacked using 8.0.2 and vulnerabilities were reported a few weeks ago

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy amityweb on September 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A site of ours was hacked using File Manager 8.0.2

    \n\n\n\n

    I can see lots of reports of vulnerability so its not good this was a few weeks ago and no update ti patch it yet

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Every Time My Website is Down Thi Plugin Is Installed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy radulepy on September 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Hackers use this plugin to gain access to my files.
    Every time there is a unauthorized change on my websites this plugin is installed.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So Helpful & Convenient

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Hannah West Design (vesica) on September 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    As a website designer/developer who manages a lot of sites, I find File Manager is greatly helpful in a number of scenarios, including when a client is not available for 2FA on their hosting account and I need to add, remove, or edit a file on the server in order to get something working properly. It is also convenient for anyone to be able to access files on the server without leaving the admin of their website. Thanks for a great product!

    \n
    \n
    \n", "changelog": "

    8.0.2 (26th May, 2025)

    \n
      \n
    • Core libraries updated.
    • \n
    \n

    8.0.1 (08th Jan, 2025)

    \n
      \n
    • Checked compatibility with WordPress 6.7.1
    • \n
    \n

    8.0 (06th Aug, 2024)

    \n
      \n
    • Broken Image Fixes
    • \n
    \n

    7.2.10 (29th July, 2024)

    \n
      \n
    • Compatible with WordPress 6.6.1
    • \n
    \n

    7.2.9 (6th June, 2024)

    \n
      \n
    • Trash Folder & Security Fixes.
    • \n
    \n

    7.2.8 (31 May, 2024)

    \n
      \n
    • Security Fixes.
    • \n
    \n

    7.2.7 (07 May, 2024)

    \n
      \n
    • Fixed image preview issue.
    • \n
    • Checked compatibility with WordPress 6.5.2
    • \n
    \n

    7.2.6 (01 April, 2024)

    \n
      \n
    • Directory Traversal issue resolved.
    • \n
    \n

    7.2.5 (14 Mar, 2024)

    \n
      \n
    • Improved Language check.
    • \n
    \n

    7.2.4 (28 Feb, 2024)

    \n
      \n
    • Fixed Language issue.
    • \n
    \n

    7.2.3 (26 Feb, 2024)

    \n
      \n
    • Fixed Language issue.
    • \n
    \n

    7.2.2 (18 Jan, 2024)

    \n
      \n
    • Fixed Security issue.
    • \n
    \n

    7.2.1 (26th Oct, 2023)

    \n
      \n
    • Directory Traversal issue resolved.
    • \n
    • Checked compatibility with wordpress 6.3.2
    • \n
    \n

    7.2 (18th August, 2023)

    \n
      \n
    • Api Update
    • \n
    • Checked compatibility with wordpress 6.3
    • \n
    \n

    7.1.9 (4th May, 2023)

    \n
      \n
    • Minor updations
    • \n
    • Checked compatibility with wordpress 6.2
    • \n
    \n

    7.1.8 (8th Feb, 2023)

    \n
      \n
    • Fixed confliction with pro version
    • \n
    • Minor updations
    • \n
    \n

    7.1.7 (5th December, 2022)

    \n
      \n
    • Removed Google Fonts External links
    • \n
    • Issue Resolved for zip download folder
    • \n
    • Checked compatibility with wordpress 6.1.1
    • \n
    \n

    7.1.6 (28th June, 2022)

    \n
      \n
    • Checked compatibility with wordpress 5.8.2
    • \n
    • Updated APIs
    • \n
    \n

    7.1.5 (19th Apr, 2022)

    \n
      \n
    • Updated translations
    • \n
    • Fixed zip extract issue
    • \n
    • Minor other bug fixes
    • \n
    \n

    7.1.4 (27th Jan, 2022)

    \n
      \n
    • Fixed compatibility issue with PHP > 8
    • \n
    • Fixed issue of fatal error on activating plugin
    • \n
    • Fixed compatibility issue of restore backup in multisite
    • \n
    • Fixed autohide toolbar issue for Ipad
    • \n
    \n

    7.1.3 (28th Dec, 2021)

    \n
      \n
    • Elfinder Library Updated
    • \n
    • Checked compatibility with wordpress 5.8.2
    • \n
    • Enhanced backup and restore process
    • \n
    \n

    7.1.2 (20th July, 2021)

    \n
      \n
    • Checked compatibility with wordpress 5.8
    • \n
    • Fixed minor bugs
    • \n
    • Checked compatibility with Query Monitor plugin
    • \n
    • Updated Translations
    • \n
    \n

    7.1.1 (30th March, 2021)

    \n
      \n
    • Checked compatibility with wordpress 5.7
    • \n
    \n

    7.1 (18th Feb, 2021)

    \n
      \n
    • Fixed Cross site scripting (XSS) issue
    • \n
    \n

    7.0 (8th Feb, 2021)

    \n
      \n
    • Confliction issue fixed with wordpress 5.6 version
    • \n
    • Fixed download backups links not works on some servers issue
    • \n
    • Fixed PHP warnings issue
    • \n
    • Add support to tiff extension images
    • \n
    \n

    6.9 (1st Sept, 2020)

    \n
      \n
    • Security issue fixed
    • \n
    \n

    6.8 (31st Aug, 2020)

    \n
      \n
    • Fixed design compatibility issues with wordpress 5.5 version
    • \n
    \n

    6.7 (20th Aug, 2020)

    \n
      \n
    • Fixed issue of deprecated function of jquery
    • \n
    • Updated messages text
    • \n
    \n

    6.6 (18th Aug, 2020)

    \n
      \n
    • Updated Translations
    • \n
    • Added media title to the uploaded file when Files Upload to Media Library is enabled
    • \n
    \n

    6.5 (18th Jun, 2020)

    \n
      \n
    • Security Fix
    • \n
    \n

    6.4 (25th May, 2020)

    \n
      \n
    • $ confliction fixes
    • \n
    \n

    6.3 (22nd May, 2020)

    \n
      \n
    • Files extract issues fixes
    • \n
    \n

    6.2 (15th May, 2020)

    \n
      \n
    • jQuery confliction fixes
    • \n
    \n

    6.1 (14th May, 2020)

    \n
      \n
    • Compatibility issues
    • \n
    \n

    6.0 (14th May, 2020)

    \n
      \n
    • Google doc preview feature added and Library Updates – Major Update
    • \n
    \n

    5.9 (13th APR, 2020)

    \n
      \n
    • Fixed Errors Deprecated Unparenthesized
    • \n
    \n

    5.8 (31st MARCH, 2020)

    \n
      \n
    • Tested with WordPress 5.4 version.
    • \n
    \n

    5.7 (23rd JAN, 2020)

    \n
      \n
    • Media library js fixes
    • \n
    \n

    5.6 (14th JAN, 2020)

    \n
      \n
    • Media library option fixes
    • \n
    \n

    5.5 (2nd DEC, 2019)

    \n
      \n
    • Unparenthesized issue fixes.
    • \n
    \n

    5.4 (16th AUGUST, 2019)

    \n
      \n
    • Minor fixes and added logs demo screenshots.
    • \n
    \n

    5.3 (20th AUGUST, 2019)

    \n
      \n
    • Rate us bar repetition removed.
    • \n
    \n

    5.2 (12th JULY, 2019)

    \n
      \n
    • Security fixes addressed by wordpress.
    • \n
    \n

    5.1 (11th JULY, 2019)

    \n
      \n
    • Security fixes.
    • \n
    \n

    5.0 (10th JULY, 2019)

    \n
      \n
    • Search outline issue fixed, Restore feature bugs fixes
    • \n
    \n

    4.9 (8th JULY, 2019)

    \n
      \n
    • Media library multiple file extensions allowed, backup feature admin authorized issue fixes
    • \n
    \n

    4.8 (13th MAY, 2019)

    \n
      \n
    • Minor fixes
    • \n
    \n

    4.7 (13th MAY, 2019)

    \n
      \n
    • Files and Database backup – restore feature added
    • \n
    \n

    4.6 (18th APR, 2019)

    \n
      \n
    • Elfinder Library Updated, Security Fixes
    • \n
    \n

    4.5 (17th APR, 2019)

    \n
      \n
    • PHP 7 issues fixes
    • \n
    \n

    4.4 (22nd FEB, 2019)

    \n
      \n
    • Extract issue fixed
    • \n
    \n

    4.3 (21st FEB, 2019)

    \n
      \n
    • Syntax checker feature removed for now
    • \n
    \n

    4.2 (21st FEB, 2019)

    \n
      \n
    • elFinder Library Updated
    • \n
    \n

    4.1 (21st JAN, 2019)

    \n
      \n
    • Syntax Error Feature Added
    • \n
    \n

    4.0 (10th JAN, 2019)

    \n
      \n
    • Http API fixes
    • \n
    \n

    3.9 (10th JAN, 2019)

    \n
      \n
    • CURL issue fixes
    • \n
    \n

    3.8 (20th DEC, 2018)

    \n
      \n
    • php 7.2 warnings fixes
    • \n
    \n

    3.7 (3rd DEC, 2018)

    \n
      \n
    • Header issue fixed
    • \n
    \n

    3.6 (3rd DEC, 2018)

    \n
      \n
    • Security Fixes
    • \n
    \n

    3.5 (3rd DEC, 2018)

    \n
      \n
    • Zip extract issue fixes
    • \n
    \n

    3.4 (30th Nov, 2018)

    \n
      \n
    • Minor Fixes
    • \n
    \n

    3.3 (30th Nov, 2018)

    \n
      \n
    • Library updated
    • \n
    \n

    3.2 (20th Oct, 2018)

    \n
      \n
    • CompaNovle with php 7.3 and wordpress 5.0
    • \n
    \n

    3.1 (17th Sep, 2018)

    \n
      \n
    • Security fixes and design fixes
    • \n
    \n

    3.0 (5th Sep, 2018)

    \n
      \n
    • Security issues fixed
    • \n
    \n

    2.9 (27th Aug ,2018)

    \n
      \n
    • \n

      Russian Translations added. Credit: @ivan192

      \n
    • \n
    • \n

      Code editor lines number added.

      \n
    • \n
    • \n

      Minimized window buttons collapsing issue fixed

      \n
    • \n
    \n

    2.8 (15th Jun ,2018)

    \n
      \n
    • minor Performence fix
    • \n
    \n

    2.7 (2th Jun ,2018)

    \n

    major Performence fix

    \n

    2.6 (18th May ,2018)

    \n
      \n
    • ‘/’ error Fix,major fix
    • \n
    \n

    2.5 (16th May ,2018)

    \n
      \n
    • Upload File issue Fix
    • \n
    \n

    2.4 (16th Apr ,2018)

    \n
      \n
    • On extract Invaild Backend issue
    • \n
    \n

    2.3 (16th Apr ,2018)

    \n
      \n
    • Extract Issue Resolved
    • \n
    \n

    2.2 (9th Apr ,2018)

    \n
      \n
    • PHP 7 Compatibility Issues Resolved
    • \n
    \n

    2.1 (26th March ,2018)

    \n
      \n
    • major design fixes
    • \n
    \n

    2.0 (1st March ,2018)

    \n
      \n
    • Edit Root Directory Path Feature – Major Update
    • \n
    \n

    1.9 (8th Jan ,2018)

    \n
      \n
    • fix Console en js missing error
    • \n
    • Now WP File Manager has various themes. – Major Update
    • \n
    \n

    1.8 (20th Sep ,2017)

    \n
      \n
    • fix some Bug in 1.7 – Minor Update
    • \n
    • Now WP File Manager is in various languages. – Major Update
    • \n
    • WP File Manager Translations Available. Compatible with any wordpress language. – Major Update
    • \n
    \n

    1.7 (18th Aug ,2017)

    \n
      \n
    • fix some Bug in 1.6 – Minor Update
    • \n
    • System Properties Menu – Added(New)
    • \n
    \n

    1.6 (20th Apr ,2017)

    \n
      \n
    • fix some Bug in 1.5 – Minor Update
    • \n
    \n

    1.5 (01th Mar ,2017)

    \n
      \n
    • fix some Bug in 1.4 – Major Update
    • \n
    \n

    1.4 (09th Jan ,2017)

    \n
      \n
    • fix some Bug in 1.3 – Major Update
    • \n
    • fix File edit auto slash add problem
    • \n
    \n

    1.3 (23th Nov ,2016)

    \n
      \n
    • fix some Bug in 1.2 – Minor Update
    • \n
    • fix max upload size problem
    • \n
    \n

    1.2 (17th Sep ,2016)

    \n
      \n
    • fix some Bug in 1.1 – Minor Update
    • \n
    • Compatible upto wordpress 4.6.1
    • \n
    \n

    1.1 (26th Aug ,2016)

    \n
      \n
    • fix some Bug in 1.0 – Minor Update
    • \n
    • Compatible upto wordpress 4.6
    • \n
    \n", "description": "

    File Manager allows you to edit, delete, upload, download, zip, copy and paste files and folders directly from the WordPress backend. Don’t bother with FTP to manage and move your files from location to location. The most powerful, flexible, and easiest WordPress file management solution ever built!

    \n

    \n

    Key Features in File Manager free Version Plugin

    \n

    Key Features in the Free File Manager plugin include:
    \n* Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete, etc.)
    \n* Move/Copy: Admin can Move/Copy files with Drag & Drop. Also includes multi file selection.
    \n* Archives: Admin can create, archive and extract files(zip, rar, tar, gzip).
    \n* File Size: Admin/User can upload any size files.
    \n* File Type: Control what files can be uploaded and what file can be downloaded.
    \n* Code Editor: File Manager comes with a built in integrated development environment (IDE) – New Feature
    \n* Syntax Checker: File Manager now can complete code reviews before saving files to ensure your site will not go down when updating code. Reviewing code for errors has never been so easy! – New Feature
    \n* Multiple Themes: Multiple File Manager Themes Available – New Feature
    \n* Get Info: All file details, properties, information is now available by simply right clicking a file and selecting Get Info – New Feature
    \n* Share Files by Email: With File Manager you can easily and quickly share files by Email. Simply right click a file and press share, that’s it! – New Feature
    \n* Private Folder: Available only for File Manager Pro Edition
    \n* Shortcode: Available only for File Manager Pro Edition
    \n* Root Directory: Quickly and easily edit your root path directory. With this feature you can access files inside and outside of WordPress
    \n* PDF Support: Preview PDF files easily
    \n* Built-in Trash: Delete files by moving them to trash
    \n* File View: Icon and list view both available for easy navigation
    \n* Preview Support: Easily preview common file types including media (video, audio, mp3, thumbnails, etc)
    \n* Search: Search functionality is built directly into File Manager making it simple to find your files.
    \n* Shortcut Support: Common shortcuts are available in File Manager
    \n* Automatic File Resize: automatically resize files once uploaded.
    \n* Responsive UI: File Manager works on tablet and mobile devices
    \n* Browsing History: File and folders browsing history
    \n* Trash function: Move to Trash Folder Feature
    \n* PDF Preview: PDF Preview feature available
    \n* FTP/SFTP Support: Alternative to FTP or Cpanel
    \n* File Preview: preview for common MIMEs and file types
    \n* Directory Size: Calculate directory size
    \n* Icon View: List and Icons view available for files and files
    \n* Keyboard shortcuts: Keyboard shortcuts available e.g. copy,paste,drag & drop
    \n* Drag and drop: File Drag & Drop file upload function available
    \n* Functions Toolbar: Rich context menu and file manager functions toolbar
    \n* Thumbnails: Thumbnails for all types of image files
    \n* Upload to Media Library: We have now included the ability to enable images, pdf’s, and zip files to be uploaded to you folders and as well be available via the native WordPress Media Library
    \n* Backup/Restore: Backup and restore themes files, plugins files,uploads folder and db data on server.
    \n* Multi Languages Added

    \n

    Key Features in File Manager Pro Editions

    \n
      \n
    • File Type: Control what files can be uploaded and what file can be downloaded.**
    • \n
    • Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete etc.)
    • \n
    • Shortcode: Available with custom attributes for frontend.
    • \n
    • Private Folder: Admin can give access of same and different folder to different users roles and different users.
    • \n
    • Move/Copy: Admin can Move/Copy files with Drag & Drop.
    • \n
    • Archives: Admin can create/extract files(zip, rar, tar, gzip).
    • \n
    • File Size: Admin/User can control file upload size.
    • \n
    • Fullscreen View: Admin can control code editor fullscreen view.
    • \n
    • Editor: There are a lots of themes available for code editor. Admin can control code editor themes.
    • \n
    • Hide Files/Folder: Here admin is able to hide files and folders for user roles and for users.
    • \n
    • File Type: Control what files can be uploaded and what file can be downloaded.
    • \n
    • User Role: admin is able to control file operations and hide and lock Files and Folders for user roles .
    • \n
    • Users: admin is able to control file operations and hide and lock Files and Folders for particular user .
    • \n
    • High performance: High performance server backend and light client UI.
    • \n
    • File system: Local file system storage drivers.
    • \n
    • Edit file: User can edit text files and images.
    • \n
    • Frontend Access: User can access frontend using shortcode.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is updated.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is Downloaded.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is Edited.
    • \n
    • Google Drive Integration drag drop, copy paste all other operations between file manager and google drive.
    • \n
    • Dropbox Integration drag drop, copy paste all other operations between file manager and dropbox.
    • \n
    \n
    \n

    Buy Pro Version with various features & support.
    \n Contact us for Support Only Pro Version Users.
    \n Documentation Click Here.
    \n Addons with various features & support.
    \n Upgrade to Pro Version

    \n
    \n

    Premium Addons

    \n

    File Manager Cloudflare R2 provides you ability to edit, delete, upload, download, copy and paste files and folders in Cloudflare R2 bucket.
    \nFile Manager Digital Ocean provides you ability to edit, delete, upload, download, copy and paste files and folders in Digital Ocean.
    \nFile Manager Google Drive provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Drive.
    \nFile Manager OneDrive provides you ability to edit, delete, upload, download, copy and paste files and folders in OneDrive from File Manager.
    \nFile Manager Dropbox provides you ability to edit, delete, upload, download, copy and paste files and folders in dropbox.
    \nFile Manager Box provides you ability to edit, delete, upload, download, copy and paste files and folders in Box.
    \nFile Manager AWS S3 provides you ability to edit, delete, upload, download, copy and paste files and folders in AWS S3 bucket.
    \nFile Manager Git Github integration for file manager.
    \nFile Manager Slack Slack incoming webhook integration to file manager.
    \nFile Manager Google Cloud provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Cloud bucket.

    \n

    Support

    \n
      \n
    • If any problem occurs, please contact us at https://filemanagerpro.io/contact/
    • \n
    \n

    How to use

    \n
      \n
    1. First Activate Plugin.
    2. \n
    3. Then Click on ” WP File Manager ” menu. Then do with files what you want to do.= Minimum requirements for File Manager =
    4. \n
    \n

    * WordPress 3.3+
    \n* PHP 5.x
    \n* MySQL 5.x

    \n

    If any problem occurs, please contact us at https://filemanagerpro.io/contact/

    \n", "screenshots": "
    1. \"File

      File Manager File View Screen.

    2. \"Make

      Make a folder or file archive as zip.

    3. \"Download

      Download archived zip file.

    4. \"PRO:

      PRO: In File Manager Pro version user is able to give accessibility to user roles by just one click and Control File upload size.

    5. \"PRO:

      PRO: In File manager pro version admin is able to control file operations for user roles and also hide any file and folder. Admin also lock any file to prevent from edit.

    6. \"PRO:

      PRO: In File manager pro version admin is able to control file operations for particular user and also hide any file and folder. Admin also lock any file to prevent from edit.

    7. \"PRO:

      PRO: Admin can control code editor fullscreen view & code editor themes.

    8. \"PRO:

      PRO: Code editor fullscreen view with selected theme.

    9. \"PRO:

      PRO: Private Folder Access

    10. \"File

      File Manager with Multiple Languages

    11. \"File

      File Manager with Multiple Themes - Light Theme

    12. \"Dark

      Dark Theme View

    13. \"Grey

      Grey Theme View

    14. \"Window

      Window 10 Theme View

    15. \"Edit

      Edit Root Directory Path

    ", "installation": "
      \n
    1. Upload the wp-file-manager folder to the directory /wp-content/plugins/.
    2. \n
    3. Activate the plugin using the ‘Plugins’ menu in WordPress.
    4. \n
    \n"}, "versions": {"1.0": "https://downloads.wordpress.org/plugin/wp-file-manager.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/wp-file-manager.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/wp-file-manager.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/wp-file-manager.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/wp-file-manager.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/wp-file-manager.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/wp-file-manager.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/wp-file-manager.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/wp-file-manager.1.8.zip", "5.9": "https://downloads.wordpress.org/plugin/wp-file-manager.5.9.zip", "6.0": "https://downloads.wordpress.org/plugin/wp-file-manager.6.0.zip"}, "downloaded": 30440382, "description": "

    File Manager allows you to edit, delete, upload, download, zip, copy and paste files and folders directly from the WordPress backend. Don’t bother with FTP to manage and move your files from location to location. The most powerful, flexible, and easiest WordPress file management solution ever built!

    \n

    \n

    Key Features in File Manager free Version Plugin

    \n

    Key Features in the Free File Manager plugin include:
    \n* Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete, etc.)
    \n* Move/Copy: Admin can Move/Copy files with Drag & Drop. Also includes multi file selection.
    \n* Archives: Admin can create, archive and extract files(zip, rar, tar, gzip).
    \n* File Size: Admin/User can upload any size files.
    \n* File Type: Control what files can be uploaded and what file can be downloaded.
    \n* Code Editor: File Manager comes with a built in integrated development environment (IDE) – New Feature
    \n* Syntax Checker: File Manager now can complete code reviews before saving files to ensure your site will not go down when updating code. Reviewing code for errors has never been so easy! – New Feature
    \n* Multiple Themes: Multiple File Manager Themes Available – New Feature
    \n* Get Info: All file details, properties, information is now available by simply right clicking a file and selecting Get Info – New Feature
    \n* Share Files by Email: With File Manager you can easily and quickly share files by Email. Simply right click a file and press share, that’s it! – New Feature
    \n* Private Folder: Available only for File Manager Pro Edition
    \n* Shortcode: Available only for File Manager Pro Edition
    \n* Root Directory: Quickly and easily edit your root path directory. With this feature you can access files inside and outside of WordPress
    \n* PDF Support: Preview PDF files easily
    \n* Built-in Trash: Delete files by moving them to trash
    \n* File View: Icon and list view both available for easy navigation
    \n* Preview Support: Easily preview common file types including media (video, audio, mp3, thumbnails, etc)
    \n* Search: Search functionality is built directly into File Manager making it simple to find your files.
    \n* Shortcut Support: Common shortcuts are available in File Manager
    \n* Automatic File Resize: automatically resize files once uploaded.
    \n* Responsive UI: File Manager works on tablet and mobile devices
    \n* Browsing History: File and folders browsing history
    \n* Trash function: Move to Trash Folder Feature
    \n* PDF Preview: PDF Preview feature available
    \n* FTP/SFTP Support: Alternative to FTP or Cpanel
    \n* File Preview: preview for common MIMEs and file types
    \n* Directory Size: Calculate directory size
    \n* Icon View: List and Icons view available for files and files
    \n* Keyboard shortcuts: Keyboard shortcuts available e.g. copy,paste,drag & drop
    \n* Drag and drop: File Drag & Drop file upload function available
    \n* Functions Toolbar: Rich context menu and file manager functions toolbar
    \n* Thumbnails: Thumbnails for all types of image files
    \n* Upload to Media Library: We have now included the ability to enable images, pdf’s, and zip files to be uploaded to you folders and as well be available via the native WordPress Media Library
    \n* Backup/Restore: Backup and restore themes files, plugins files,uploads folder and db data on server.
    \n* Multi Languages Added

    \n

    Key Features in File Manager Pro Editions

    \n
      \n
    • File Type: Control what files can be uploaded and what file can be downloaded.**
    • \n
    • Operations: Various operations with files and folders on a remote server (copy, move, upload, create folder/file, rename, edit, delete etc.)
    • \n
    • Shortcode: Available with custom attributes for frontend.
    • \n
    • Private Folder: Admin can give access of same and different folder to different users roles and different users.
    • \n
    • Move/Copy: Admin can Move/Copy files with Drag & Drop.
    • \n
    • Archives: Admin can create/extract files(zip, rar, tar, gzip).
    • \n
    • File Size: Admin/User can control file upload size.
    • \n
    • Fullscreen View: Admin can control code editor fullscreen view.
    • \n
    • Editor: There are a lots of themes available for code editor. Admin can control code editor themes.
    • \n
    • Hide Files/Folder: Here admin is able to hide files and folders for user roles and for users.
    • \n
    • File Type: Control what files can be uploaded and what file can be downloaded.
    • \n
    • User Role: admin is able to control file operations and hide and lock Files and Folders for user roles .
    • \n
    • Users: admin is able to control file operations and hide and lock Files and Folders for particular user .
    • \n
    • High performance: High performance server backend and light client UI.
    • \n
    • File system: Local file system storage drivers.
    • \n
    • Edit file: User can edit text files and images.
    • \n
    • Frontend Access: User can access frontend using shortcode.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is updated.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is Downloaded.
    • \n
    • Admin Email Notifications. Admin will get a Notification whenever a file is Edited.
    • \n
    • Google Drive Integration drag drop, copy paste all other operations between file manager and google drive.
    • \n
    • Dropbox Integration drag drop, copy paste all other operations between file manager and dropbox.
    • \n
    \n
    \n

    Buy Pro Version with various features & support.
    \n Contact us for Support Only Pro Version Users.
    \n Documentation Click Here.
    \n Addons with various features & support.
    \n Upgrade to Pro Version

    \n
    \n

    Premium Addons

    \n

    File Manager Cloudflare R2 provides you ability to edit, delete, upload, download, copy and paste files and folders in Cloudflare R2 bucket.
    \nFile Manager Digital Ocean provides you ability to edit, delete, upload, download, copy and paste files and folders in Digital Ocean.
    \nFile Manager Google Drive provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Drive.
    \nFile Manager OneDrive provides you ability to edit, delete, upload, download, copy and paste files and folders in OneDrive from File Manager.
    \nFile Manager Dropbox provides you ability to edit, delete, upload, download, copy and paste files and folders in dropbox.
    \nFile Manager Box provides you ability to edit, delete, upload, download, copy and paste files and folders in Box.
    \nFile Manager AWS S3 provides you ability to edit, delete, upload, download, copy and paste files and folders in AWS S3 bucket.
    \nFile Manager Git Github integration for file manager.
    \nFile Manager Slack Slack incoming webhook integration to file manager.
    \nFile Manager Google Cloud provides you ability to edit, delete, upload, download, copy and paste files and folders in Google Cloud bucket.

    \n

    Support

    \n
      \n
    • If any problem occurs, please contact us at https://filemanagerpro.io/contact/
    • \n
    \n

    How to use

    \n
      \n
    1. First Activate Plugin.
    2. \n
    3. Then Click on ” WP File Manager ” menu. Then do with files what you want to do.= Minimum requirements for File Manager =
    4. \n
    \n

    * WordPress 3.3+
    \n* PHP 5.x
    \n* MySQL 5.x

    \n

    If any problem occurs, please contact us at https://filemanagerpro.io/contact/

    \n", "donate_link": "", "num_ratings": 1428, "screenshots": {"1": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-1.png?rev=1470488", "caption": "File Manager File View Screen."}, "2": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-2.jpg?rev=1470488", "caption": "Make a folder or file archive as zip."}, "3": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-3.jpg?rev=1470488", "caption": "Download archived zip file."}, "4": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-4.jpg?rev=1626459", "caption": "PRO: In File Manager Pro version user is able to give accessibility to user roles by just one click and Control File upload size."}, "5": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-5.jpg?rev=1585022", "caption": "PRO: In File manager pro version admin is able to control file operations for user roles and also hide any file and folder. Admin also lock any file to prevent from edit."}, "6": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-6.jpg?rev=1585022", "caption": "PRO: In File manager pro version admin is able to control file operations for particular user and also hide any file and folder. Admin also lock any file to prevent from edit."}, "7": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-7.jpg?rev=1585022", "caption": "PRO: Admin can control code editor fullscreen view & code editor themes."}, "8": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-8.jpg?rev=1483891", "caption": "PRO: Code editor fullscreen view with selected theme."}, "9": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-9.jpg?rev=1497902", "caption": "PRO: Private Folder Access"}, "10": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-10.jpg?rev=1799430", "caption": "File Manager with Multiple Languages"}, "11": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-11.jpg?rev=1799430", "caption": "File Manager with Multiple Themes - Light Theme"}, "12": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-12.jpg?rev=1799430", "caption": "Dark Theme View"}, "13": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-13.jpg?rev=1799430", "caption": "Grey Theme View"}, "14": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-14.jpg?rev=1799430", "caption": "Window 10 Theme View"}, "15": {"src": "https://ps.w.org/wp-file-manager/assets/screenshot-15.jpg?rev=1831243", "caption": "Edit Root Directory Path"}}, "support_url": "https://wordpress.org/support/plugin/wp-file-manager/", "contributors": {"mndpsingh287": {"avatar": "https://secure.gravatar.com/avatar/f45d3518db13edc49526efa590ebce2f3f53a6461ef2000a5d3f7197daf7cf9e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mndpsingh287/", "display_name": "mndpsingh287"}}, "last_updated": "2025-06-04 11:21am GMT", "preview_link": "", "requires_php": "5.2.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-file-manager.zip", "author_profile": "https://profiles.wordpress.org/mndpsingh287/", "business_model": false, "repository_url": "", "upgrade_notice": {"Upgrade your old version to 3.2": ""}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fe59-73e1-996b-a0a086ced33e", "name": "File Manager", "slug": "wp-file-manager", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1749036060, "version": "8.0.2"}, "support_threads": 5, "requires_plugins": [], "short_description": "file manager provides you ability to edit, delete, upload, download, copy and paste files and folders.", "author_block_count": 0, "author_block_rating": 94, "commercial_support_url": "", "support_threads_resolved": 1}'); -INSERT INTO public.plugins VALUES ('019a30c1-6804-70fe-a1e5-7facb1af6b84', 'wpforms-lite', 'WPForms – Easy Form Builder for WordPress – Contact Forms, Payment Forms, Surveys, & More', 'The best WordPress contact form plugin. Drag & Drop form builder to create beautiful contact forms, payment forms, & other custom forms.', '

    WordPress Contact Form Builder Plugin

    -

    WPForms is a drag & drop WordPress form builder that’s EASY and POWERFUL. Create contact forms, feedback forms, subscription forms, payment forms (including Stripe, Square & PayPal), and other types of forms for your site in minutes with just a few clicks!

    -

    At WPForms, user experience is our #1 priority. Our pre-built form templates and workflows make WPForms the most beginner-friendly contact form plugin on the market. You don’t have to hire a developer. Create a form in less than 5 minutes with our drag & drop form builder or use a template to get a head start.

    -
    -

    WPForms Pro
    - This plugin is the Lite version of WPForms Pro, which comes with email subscription forms, multi-page contact forms, file uploads, conditional logic, and extra payment integrations. Click here to purchase the best premium WordPress contact form plugin now!

    -
    -

    -

    Drag & Drop Contact Form Builder

    -

    Create custom contact forms in minutes with our easy-to-use drag and drop online form builder. But don’t just take our word for it. See what WordPress experts are saying:

    -
    -

    WPForms is by far the easiest form plugin to use. My clients love WPForms and it’s one of the few plugins they can use without any training. As a developer I appreciate how fast, modern, clean and extensible it is.
    - Bill Erickson – Expert WordPress Consultant

    -
    -

    Pre-built Form Templates

    -

    WPForms comes with 2000+ pre-built form templates.

    -

    Whether you’re looking to create a simple contact form, marketing form, request a quote form, donation form, payment order form, registration form, Stripe payment form, or a subscription form, we have a form template already prepared and ready to use.

    -

    Mobile Ready, SEO Friendly, and Optimized for Speed

    -

    WPForms contact forms are 100% responsive and mobile-friendly. We optimized every query on the frontend and the backend to ensure that it’s one of the fastest WordPress contact form plugins.

    -

    You can embed your contact form on any page with an optimized title and description, so WPForms is one of the most SEO friendly contact form plugins too.

    -

    Fields & Features You Need to Succeed

    -

    With star ratings, file uploads, repeater fields, survey fields, and multi-page contact forms, you can easily build the right custom form for your site’s needs. Plus, integrate your contact forms with an email marketing service in just a few steps and collect payments with Stripe, PayPal, and Square for bookings and orders without the need for a dedicated eCommerce plugin.

    -

    See what one business owner has to say about their WPForms contact form:

    -
    -

    As a business owner, time is my most valuable asset. WPForms allows me to create smart contact forms with just a few clicks. With their pre-built form templates and the drag & drop builder, I can create a new form that works in less than 2 minutes without writing a single line of code. Well worth the investment.
    - David Henzel – Co-founder of MaxCDN

    -
    -

    Surveys & Polls

    -

    Create custom survey forms like Survey Monkey. Our WordPress survey plugin addon comes with smart survey fields including Likert scale, star ratings, and NPS. Embed your surveys and polls anywhere in WordPress.

    -

    Use our survey reporting tools to customize graphs, export them for presentations, and display aggregate results. You can also share poll results instantly when collecting votes.

    -

    Default WordPress Forms

    -

    Aside from building simple contact forms, WPForms also helps you create better default WordPress forms, like custom WordPress login forms and custom WordPress user registration forms. Create a password-protected contact form or even a members-only contact form.

    -

    Bloggers and publishers can use our WordPress post submission forms to accept guest posts, testimonials, and more.

    -

    Payment Forms, Donation Forms, Booking Forms, and More

    -

    While WPForms started out as a contact form plugin, it has evolved into a powerful custom forms solution for any type of payment or booking form.

    -

    WPForms integrates with PayPal, Stripe, Square Payments, and Authorize.Net so you can easily accept credit card payments or take payments via PayPal. Bonus: you can also take signatures.

    -

    We’re proud to be a Stripe Verified Partner. This partnership allows us to build the best Stripe integration with early access to features. You can use our Stripe integration to accept both one-time payments as well as recurring payments while syncing all form data to your Stripe account.

    -

    Custom Calculator Forms

    -

    Using the WPForms Calculations addon, you can build custom formulas and display results on the frontend.

    -

    Create simple arithmetic calculations or build complex conditional calculations with rounded values, averages, time ranges, and more! It’s the best calculator plugin for WordPress.

    -

    Forms Optimized for Conversions

    -

    With our Form Pages addon, you can create distraction-free custom form landing pages to increase conversions.

    -

    To improve form completion rates, we created Conversational Forms which helps you make your feedback forms feel more human by adding an interactive layout. (See Conversational Forms Demo).

    -

    Easy to Customize and Extend

    -

    You can easily customize your contact forms with our section dividers, HTML blocks, and CSS. Embedding forms in Elementor and Divi has never been easier thanks to our native integrations.

    -

    We also know that our developer friends may want more control, so we added tons of hooks and filters.

    -

    Full WPForms Feature List

    - -

    Integrations

    - -

    You can see why WPForms is the best WordPress contact form plugin on the market! Want to unlock these features? Upgrade to our Pro version.

    -

    Credits

    -

    This plugin is created by Jared Atchison and Syed Balkhi.

    -

    Branding Guidelines

    -

    WPForms® is a registered trademark of WPForms LLC. When writing about the contact form plugin by WPForms, please make sure to uppercase the initial 3 letters.

    -
      -
    • WPForms (correct)
    • -
    • WP Forms (incorrect)
    • -
    • wpforms (incorrect)
    • -
    • wpform (incorrect)
    • -
    -

    Notes

    -

    WPForms is absolutely, positively the most beginner-friendly WordPress contact form plugin on the market. It is both easy and powerful.

    -

    We took the pain out of creating online forms and made it easy. Check out all WPForms features.

    -

    Also, I’m the founder of WPBeginner, the largest WordPress resource site for beginners. It was a huge priority for me to make a WordPress contact form plugin that beginners can use without any training.

    -

    I feel that we have done that here. I hope you enjoy using WPForms.

    -

    Thank you,

    -

    Syed Balkhi

    -', '1.9.8.2', 'Syed Balkhi', '5.5', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/wpforms-lite.1.9.8.2.zip', '2016-03-14 00:00:00+00', '2025-10-14 11:49:00+00', 'https://profiles.wordpress.org/smub/', 96, 14216, 50, 47, 6000000, 298566930, 'https://wpforms.com', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/wpforms-lite/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WPForms – Easy Form Builder for WordPress – Contact Forms, Payment Forms, Surveys, & More", "slug": "wpforms-lite", "tags": {"forms": "forms", "custom-form": "custom form", "contact-form": "contact form", "form-builder": "form builder", "contact-form-plugin": "contact form plugin"}, "added": "2016-03-14", "icons": {"1x": "https://ps.w.org/wpforms-lite/assets/icon.svg?rev=3254748", "svg": "https://ps.w.org/wpforms-lite/assets/icon.svg?rev=3254748"}, "author": "Syed Balkhi", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=3091364", "high": "https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=3091364"}, "ratings": {"1": 358, "2": 76, "3": 101, "4": 302, "5": 13379}, "version": "1.9.8.2", "homepage": "https://wpforms.com", "requires": "5.5", "sections": {"faq": "\n
    \nWho should use WPForms?\n\n

    \n

    WPForms is perfect for business owners, bloggers, designers, developers, photographers, and basically everyone else. If you want to create a custom WordPress form, then you need to use the WPForms drag & drop form builder.

    \n

    \n
    \nDo I need to have coding skills to use WPForms?\n\n

    \n

    Absolutely not. You can create and manage forms without any coding knowledge (100% drag & drop form builder). WPForms is the most beginner-friendly contact form plugin on the market.

    \n

    \n
    \nWhat type of WordPress forms can I build with WPForms?\n\n

    \n

    WPForms drag & drop form builder combined with our addons is the most powerful WordPress contact form plugin on the market. Here are some types of WordPress forms you can create:

    \n
      \n
    • Simple Contact Forms
    • \n
    • Job Application Contact Form
    • \n
    • Feedback Survey Contact Form
    • \n
    • Make a Suggestion Contact Form
    • \n
    • Change Request Forms
    • \n
    • Online Booking Forms
    • \n
    • Event Booking Form
    • \n
    • Video Release Forms
    • \n
    • PTO Request Contact Form
    • \n
    • Maintenance Request Contact Form
    • \n
    • Scholarship Application Forms
    • \n
    • File Download Forms
    • \n
    • Employment Verification Forms
    • \n
    • Make a Referral Contact Form
    • \n
    • Volunteer Registration Contact Form
    • \n
    • Offline Contact Form
    • \n
    \n

    To see a full list, visit our Form Template Gallery, which has over 2000+ pre-made contact form templates.

    \n

    \n
    \nWhich Form Fields Does WPForms offer?\n\n

    \n

    We made the WPForms form builder to be both easy and powerful.

    \n

    Here are the contact form fields that come with WPForms Form Builder (also known as Standard Fields):

    \n
      \n
    • Text Field
    • \n
    • Paragraph Text (Textarea)
    • \n
    • Dropdown Field
    • \n
    • Multiple Choice (Radio Buttons)
    • \n
    • Checkboxes
    • \n
    • Numbers Field
    • \n
    • Name Field
    • \n
    • Email Address Field
    • \n
    • Number Slider Field
    • \n
    \n

    Here is a list of our advanced contact form builder fields (Fancy Fields):

    \n
      \n
    • Smart Phone Field with international format verification
    • \n
    • Address Field
    • \n
    • Date / Time Field
    • \n
    • Website / URL Field
    • \n
    • File Upload – Great for File Upload Form
    • \n
    • Password Field
    • \n
    • Rich Text – Add a WYSIWYG field, perfect for guest blog post forms
    • \n
    • Layout Field – Position form fields inside columns using custom or premade layouts
    • \n
    • Repeater Field – Allow users to duplicate fields or groups of fields in your forms
    • \n
    • Page Break Field – Great for Multi-Page Contact Form with Progress Bar
    • \n
    • Section Divider – Great for Long Contact Forms
    • \n
    • HTML Field – add Custom HTML inside your form
    • \n
    • Content Field – Add headings, lists, and media to your forms without writing code
    • \n
    • Entry Preview – Allow your form users to preview their form entries before they’ve submitted them
    • \n
    • Star Rating – Great for Survey Forms and Polls
    • \n
    • Hidden Field
    • \n
    • Questions CAPTCHA – Great for Preventing Contact Form Spam
    • \n
    • Math CAPTCHA – Great for Preventing Contact Form Spam
    • \n
    • Likert Scale – Great for Survey Forms
    • \n
    • hCAPTCHA – Great for Preventing Contact Form Spam
    • \n
    • Cloudflare Turnstile – Great for Preventing Contact Form Spam
    • \n
    • Signature Field – Great for Contracts and Booking Forms
    • \n
    • Net Promoter Score (NPS Field) – Great for Survey Forms
    • \n
    • Google ReCAPTCHA – Great for Preventing Contact Form Spam
    • \n
    \n

    Here is a list of our Payment Fields that will help you create an order form, donation form, booking form, and other payment forms:

    \n
      \n
    • Single Item
    • \n
    • Multiple Items
    • \n
    • Checkbox Items
    • \n
    • Dropdown Items
    • \n
    • Total (Calculation Field)
    • \n
    • Credit Card (Stripe, Square, and Authorize.Net)
    • \n
    • PayPal
    • \n
    \n

    \n
    \nCan I integrate WPForms with my CRM or Email Marketing Service?\n\n

    \n

    Yes, WPForms offers seamless integration with over 1,000+ popular email marketing and CRM software.

    \n

    You can easily send data from your contact form and other WordPress forms to your favorite CRM, email newsletter, and other marketing platforms.

    \n

    Here is a list of our popular marketing integrations:

    \n
      \n
    • Mailchimp
    • \n
    • Constant Contact
    • \n
    • AWeber
    • \n
    • Drip
    • \n
    • Campaign Monitor
    • \n
    • GetResponse
    • \n
    • ActiveCampaign
    • \n
    • Zapier
    • \n
    • Salesforce CRM
    • \n
    • Brevo (ex Sendinblue)
    • \n
    • MailerLite
    • \n
    • MailPoet
    • \n
    \n

    Using our Zapier integration, you can easily connect WPForms with over 7,000+ marketing apps including:

    \n
      \n
    • PipeDrive CRM
    • \n
    • Google Sheets
    • \n
    • Active Campaign
    • \n
    • Zoho CRM
    • \n
    • Zoho Mail
    • \n
    • Zoho Invoice
    • \n
    • Agile CRM
    • \n
    • Slack
    • \n
    • Trello
    • \n
    • Infusionsoft by Keap
    • \n
    • Microsoft Excel
    • \n
    • Dropbox
    • \n
    • HelpScout
    • \n
    • Zendesk
    • \n
    • Freshbooks
    • \n
    • Freshsales
    • \n
    • Intercom
    • \n
    • Click Funnels
    • \n
    • Microsoft Dynamics 365 CRM
    • \n
    • Capsule CRM
    • \n
    • Insightly CRM
    • \n
    • Printfection
    • \n
    • Acuity Scheduling
    • \n
    • Quickbooks Online
    • \n
    \n

    See all WPForms Zapier Integrations.

    \n

    Note: WPForms was voted Zapier’s 6th fastest-growing app in the world.

    \n

    \n
    \nCan I create a Payment Form with WPForms?\n\n

    \n

    Yes, WPForms is not your average contact form plugin. You can use it to create any type of form including payment forms.

    \n

    We make it easy for you to accept payments using Stripe, Square, Authorize.Net, and PayPal Commerce.

    \n

    Both our Stripe and Authorize.Net integrations help you easily accept credit card payments online.

    \n

    Our PayPal integration allows you to accept PayPal payments online.

    \n

    \n
    \nCan I Import / Export Forms with WPForms?\n\n

    \n

    Yes, WPForms makes it easy to import / export your contact forms and other WordPress forms created with the WPForms form builder. This is incredibly useful for developers and agencies who are building websites for clients.

    \n

    You can also create custom form templates that you can use on client websites. For more see our documentation.

    \n

    Aside from that, WPForms also allows you to import forms from other WordPress Contact Form plugins such as Contact Form 7, Ninja Forms, and Pirate Forms.

    \n

    If you’re not happy with your WordPress contact form plugin, then definitely give WPForms a try!

    \n

    \n
    \nI’d like access to all features. How can I get them?\n\n

    \n

    You can get access to more features, addons, and support by upgrading to our Pro version. Purchasing a Pro license gets you access to the full version of WPForms, automatic updates, priority support, and all WPForms Addons!

    \n

    \n
    \nIs WPForms translation ready?\n\n

    \n

    Yes, WPForms has full translation and localization support via the wpforms textdomain. Based on your site language, required .mo and .po translation files will be downloaded and placed into the default WordPress languages directory. The same is true for every WPForms Addon, as well.

    \n

    \n
    \nDoes WPForms include spam protection?\n\n

    \n

    Yes, WPForms includes spam protection which is enabled on all forms by default in the form settings.

    \n

    Additionally, Google reCAPTCHA, hCaptcha, and Cloudflare Turnstile are also supported and can be set up at WPForms > Settings > CAPTCHA.

    \n

    WPForms is fully compatible with all versions of Google reCAPTCHA:

    \n
      \n
    • Checkbox reCAPTCHA v2
    • \n
    • Invisible reCAPTCHA v2
    • \n
    • reCAPTCHA v3
    • \n
    \n

    Lastly, Custom Captchas are available which allow you to create math- or question-based CAPTCHAs for your contact forms.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent Plugin and Outstanding Support!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ouwens on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I’ve been using WPForms for a while now, and it’s been an absolute pleasure. The plugin is very intuitive, easy to set up, and works flawlessly for my needs. What really impressed me, though, was the amazing support. Even though I’m using the free version, the team went above and beyond to help me quickly and professionally.

    \n\n\n\n

    It’s rare to see such dedication to users who aren’t on a paid plan — that really says a lot about the company and their values. Highly recommended to anyone looking for a reliable and user-friendly form solution for WordPress!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    easy to use! favourite one :)

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy antonioevangelisti on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    nothing to say than 5 stars

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Perfect tool for any WP Dev !

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy robotob78 on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Free contact form should have editable look.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Belle Extension

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy hexactementgmailcom on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Je trouve cette extension vraiment très utile, elle est belle et bien faite. Merci

    \n\n\n\n

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy abuhumhum on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    That is great to work together

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wonderfully Easy & Elegant

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy sabya85 on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have used this plugin and it appealed to me instantly. It''s quite neat and elegant and suits the basic necessity for new bloggers.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Just Perfect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jim Tzimas (kernelion) on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The best choice for my site’s contacts forms. I installed it and it did the trick. Deeply impressed!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Product 5 STARS

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy slikr on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WPForms does just what I need it to do, it saved the day!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wpforms

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy John Pezza (johnpezza) on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was thrilled to discover this great plug-in. My site''s contacts form was needing some sort of enhancement. I installed the lite version and it did the trick. The tutorials I found on the web made me realize what the Pro version can do. Deeply impressed!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy&powerful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alaramark on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy&powerful

    \n
    \n
    \n", "changelog": "

    1.9.8.2

    \n
      \n
    • Fixed: Form Builder preview container height with empty state.
    • \n
    \n

    1.9.8.1

    \n
      \n
    • Added: Ability to disconnect Stripe accounts through the Settings > Payments admin page.
    • \n
    • Added: Ability to set how many times a Stripe recurring payment will be repeated.
    • \n
    • Added: Back To Previous Page option for Confirmation Page Redirect.
    • \n
    • Changed: Improved accessibility for the Modern Dropdown field by adding ARIA attributes to support VoiceOver navigation.
    • \n
    • Changed: Notification email fields in the Form Builder now only display email-compatible Smart Tags.
    • \n
    • Fixed: PHP warnings might be generated for new forms created from a template by non-admin users.
    • \n
    • Fixed: Disabled fields (read-only) didn’t look disabled.
    • \n
    • Fixed: Smart Tag fields in the sidebar had incorrect height.
    • \n
    • Fixed: The last step of the WPForms Challenge wasn’t shown up for users in some cases.
    • \n
    • Fixed: Header Menu Links position has been adjusted to be on the same level on every screen.
    • \n
    • Fixed: Duplicated Square field button existed in the Form Builder.
    • \n
    • Fixed: Form authors with no capabilities to install addons did not get information about missing privileges.
    • \n
    • Fixed: HTMLPurifier threw a deprecated API call notice.
    • \n
    • Fixed: Users with no sufficient access permissions were able to display a broken Themes settings panel.
    • \n
    • Fixed: Custom CSS with quotes in selectors now displays correctly instead of showing broken HTML entities.
    • \n
    • Fixed: Pinned AI Chat layout in the Form Builder.
    • \n
    • Fixed: Log titles having apostrophes in them were not displayed correctly in the Log Viewer.
    • \n
    • Fixed: There might be errors when processing Stripe payments with customer metadata containing empty keys.
    • \n
    \n

    1.9.7.2

    \n
      \n
    • Fixed: JS errors might affect the form submission on some environments with installed plugins for caching.
    • \n
    \n

    1.9.7.1

    \n
      \n
    • Added: Ability to apply Styles and Themes directly within the WPForms Form Builder.
    • \n
    • Added: Ability to copy whole Smart Tags input content if it contains smart tags.
    • \n
    • Added: Number field validation messages control on the Settings > Validation page.
    • \n
    • Added: The Choices Limit option for the Payment Checkbox Items field.
    • \n
    • Added: Warning message in case corrupted form data is detected in the form builder.
    • \n
    • Changed: Optimized the calculation process of the total amount on payment forms.
    • \n
    • Changed: Improved compatibility with PHP 8.4.
    • \n
    • Changed: Improved error message in case 403 error occurred while saving a form.
    • \n
    • Changed: Improved compatibility with the Paid Memberships Pro plugin.
    • \n
    • Fixed: The spacing between the template badge and the form name was too small.
    • \n
    • Fixed: Square Credit Card field error was still displayed after entering valid details.
    • \n
    • Fixed: Various RTL problems on the form builder screen.
    • \n
    \n

    1.9.6.2

    \n
      \n
    • Fixed: “Please enable JavaScript” message was displayed over a form even when JavaScript was enabled.
    • \n
    \n

    1.9.6.1

    \n
      \n
    • Added: Smart Tags support in the Default Value setting for Name field subfields.
    • \n
    • Fixed: WPForms updates did not work consistently with the WP Umbrella plugin.
    • \n
    • Fixed: The layout of the Order Summary table was broken on Windows operating systems.
    • \n
    • Fixed: The layout of the Stripe custom fields mapping table was broken in the form builder.
    • \n
    \n

    1.9.6

    \n
      \n
    • Added: Form Themes for Elementor.
    • \n
    • Added: Customer phone, Payment, and Customer metadata can now be configured on the Form Builder > Payments > Stripe screen.
    • \n
    • Changed: Improved styles on Tools > Scheduled Actions page with reset search filter.
    • \n
    • Changed: Improved Form Builder loading.
    • \n
    • Changed: Required select fields have default placeholder text to prevent the submission of default values.
    • \n
    • Changed: Improved message about missing PHP extensions.
    • \n
    • Changed: Updated DOMPurify library to 3.2.6.
    • \n
    • Fixed: Captcha verification was skipped for payment forms.
    • \n
    • Fixed: Email notification was malformed when a form had a Total field with the “Order Summary” enabled.
    • \n
    • Fixed: The marketing provider’s name was not specified in the warning popup when a field with conditional logic was removed.
    • \n
    • Fixed: An error occurred when installing a plugin through the Gutenberg block.
    • \n
    • Fixed: Addon fields were not rendered on the front-end on multisite if addons were not activated site-wide.
    • \n
    • Fixed: Missing popup about unsaved changes when closing the form from the Marketing tab.
    • \n
    • Fixed: Compatibility with Elementor editor.
    • \n
    • Fixed: The “Plugin is in the Latest Version” error occurred when updating several addons using bulk update on the Plugins page.
    • \n
    • Fixed: There was no popup about unsaved changes displayed after typing into the MCE editor.
    • \n
    • Fixed: Layout issues of the Square credit card field.
    • \n
    • Fixed: JavaScript error occurred when a form was added in the Elementor popup.
    • \n
    • Fixed: Fields were added to the form in the wrong order under some conditions.
    • \n
    \n

    1.9.5.2

    \n
      \n
    • Fixed: Issue sending form notifications using email fields that had ID=0.
    • \n
    \n

    1.9.5.1

    \n
      \n
    • Fixed: AJAX request for Stripe payments was sent twice, which might lead to missed entries and payment records.
    • \n
    • Fixed: {field_id=\"#\"} smart tag didn’t work for CC field in email notifications.
    • \n
    • Fixed: Email notification was misformatted when the form had a Total field with the “Order Summary” enabled.
    • \n
    \n

    1.9.5

    \n
      \n
    • IMPORTANT: Support for PHP 7.1 has been discontinued. If you are running PHP 7.1, you MUST upgrade PHP before installing WPForms 1.9.5. Failure to do that will disable WPForms core functionality.
    • \n
    • Added: Users can connect their Square accounts and receive payments via their payment forms.
    • \n
    • Added: New design for Smart Tags.
    • \n
    • Added: The ability to activate and deactivate email notifications through a status button in the form builder.
    • \n
    • Changed: Enhancing the prevention of duplicate form submissions.
    • \n
    • Changed: Improved the error messaging when creating new provider connections in the form builder.
    • \n
    • Changed: Improved the “From Email” setting validation in the Notifications screen.
    • \n
    • Changed: AI Chat Modal can be docked to the right of the builder.
    • \n
    • Changed: The order of the admin bar menu items.
    • \n
    • Changed: Improved compatibility with PHP 8.1.
    • \n
    • Changed: Improved UX for Dropdown and Dropdown Items fields.
    • \n
    • Fixed: Hidden by conditional logic items in the Order Summary table were shown in the Editors.
    • \n
    • Fixed: Stripe settings were active when the credit card field was removed from the form.
    • \n
    • Fixed: The notice for the minimum and maximum valid values of the Number Slider field is now correct.
    • \n
    • Fixed: WPForms Challenge RTL issues.
    • \n
    • Fixed: Incorrect wpforms_htaccess_file transient name generation.
    • \n
    • Fixed: Console error when users tried to embed a form into an existing page on the last step of the WPForms Challenge.
    • \n
    • Fixed: The submit button stays disabled after Stripe payment fails in some cases.
    • \n
    • Fixed: The Dropdown and Dropdown Items fields displayed placeholders instead of default values in the Form Builder.
    • \n
    • Fixed: Wrong paddings in the Form Builder sidebar on Windows in the RTL mode.
    • \n
    • Fixed: Improved the From Email notification setting. The Email field is detected now by a smart tag.
    • \n
    • Fixed: Improved notification template for the {entry_geolocation} smart tag.
    • \n
    \n

    1.9.4.2

    \n
      \n
    • Fixed: Fatal error when trying to delete the plugin.
    • \n
    • Fixed: Character encoding issues in Email notifications when viewed on some Apple devices.
    • \n
    \n

    1.9.4.1

    \n
      \n
    • Added: Minimum and maximum value validation for the Numbers field.
    • \n
    • Added: Implemented password protection and user access restrictions for uploaded files.
    • \n
    • Added: Automatic preview page reload was added after saving.
    • \n
    • Changed: Improved Gutenberg block UI by hiding settings when no form is selected.
    • \n
    • Changed: Updated stripe/stripe-php library to 16.5.0.
    • \n
    • Changed: Enhanced Tools > Scheduled Actions visibility for better compatibility with Action Scheduler, WooCommerce, and WP Rocket plugins.
    • \n
    • Changed: Improved Stripe payments customer address handling.
    • \n
    • Changed: Optimized number slider calculations for better decimal precision.
    • \n
    • Changed: Improved Numbers and Number Slider fields settings interface in the form builder.
    • \n
    • Fixed: Stripe Credit Card field payment element console warnings.
    • \n
    • Fixed: Resolved form submission debug log warnings.
    • \n
    • Fixed: URL referer smart tag functionality for external websites.
    • \n
    • Fixed: Addressed GDPR enhancements setting flashings on refresh.
    • \n
    • Fixed: Resolved Stripe payments processing for Indian accounts.
    • \n
    • Fixed: Corrected Payments Summary chart tooltip display.
    • \n
    • Fixed: Improved decimal precision in number slider field calculations.
    • \n
    • Fixed: Enhanced WPForms admin pages performance.
    • \n
    • Fixed: Backslash handling in form data after saving.
    • \n
    • Fixed: Prevented duplicate entry submissions with reCAPTCHA v3.
    • \n
    • Fixed: Restored missing Order Summary item names for hidden label fields.
    • \n
    • Fixed: Improved Order Summary performance with conditional Multiple Items fields.
    • \n
    • Fixed: Dynamic Choice fields button behavior.
    • \n
    • Fixed: Display of zero-price Payment Checkbox items.
    • \n
    • Fixed: Stripe Credit Card field styling in Divi builder.
    • \n
    • Fixed: Fatal error with a custom country address scheme.
    • \n
    \n

    1.9.3.2

    \n
      \n
    • Fixed: GDPR enhancements sub-setting briefly flashed on the WPForms > Settings admin page after refresh.
    • \n
    \n

    1.9.3.1

    \n
      \n
    • IMPORTANT: Support for PHP 7.0 has been discontinued. If you are running PHP 7.0, you MUST upgrade PHP before installing WPForms 1.9.3. Failure to do that will disable WPForms core functionality.
    • \n
    • Added: Ability to open the Form Builder with a specific section via URL parameter.
    • \n
    • Added: Support for Block API versions 2 and 3.
    • \n
    • Added: Support for the Constant Contact API v3.
    • \n
    • Added: Quick page navigation on the Forms Overview page.
    • \n
    • Added: Direct access to Tools sections from WPForms top admin menu.
    • \n
    • Changed: Updated stripe/stripe-php library to 16.3.0.
    • \n
    • Changed: Updated DOMPurify library to 3.2.3.
    • \n
    • Changed: Optimized Order Summary table display on mobile devices.
    • \n
    • Changed: Improved date formatting consistency in payments table.
    • \n
    • Changed: Removed dynamic missing translation fix to improve performance.
    • \n
    • Fixed: Tooltip text overlap in Choices.js dropdowns with long tags.
    • \n
    • Fixed: Default payment choice label visibility in order summary table.
    • \n
    • Fixed: Hidden single item field visibility in Order Summary table.
    • \n
    • Fixed: Unnecessary CSS variables output on pages without forms.
    • \n
    • Fixed: Toggle icon status glitch on the payments settings section.
    • \n
    • Fixed: Submit button text handling with empty values.
    • \n
    • Fixed: Non-Latin characters have been stripped from the URL when used in {page_url} and {url_referer} smart tags.
    • \n
    • Fixed: Block Editor field compatibility.
    • \n
    • Fixed: Warning appeared in the debug.log when non-string data were erroneously sent to translation.
    • \n
    • Fixed: Custom validation message display for sub-fields.
    • \n
    • Fixed: Stripe Credit Card field in Elementor popups.
    • \n
    • Fixed: Submit button default label handling.
    • \n
    • Fixed: An error was happening when removing “Copy / Paste Style Settings” in Elementor and Block editor.
    • \n
    • Fixed: The “Copy / Paste Style Settings” field default value was empty when adding an Elementor WPForms block.
    • \n
    • Fixed: Error handler improvements.
    • \n
    • Fixed: Some emails were not added to Constant Contact integration.
    • \n
    • Fixed: The WPForms Challenge steps were shown in the AI Form Generator panel.
    • \n
    • Fixed: PHP 7.1 and 7.2 compatibility.
    • \n
    \n

    1.9.2.3

    \n
      \n
    • Changed: Creating a custom form theme is now available only to Administrators.
    • \n
    • Fixed: Translated form action notices had an “s” letter appended to the form/template translated name.
    • \n
    • Fixed: The Minimum time to submit setting consistently blocked form submissions on sites created in WordPress Studio.
    • \n
    • Fixed: The ‘_load_textdomain_just_in_time was called incorrectly’ error with child themes.
    • \n
    • Fixed: In rare cases, a fatal error could happen on plugin activation.
    • \n
    \n

    1.9.2.2

    \n
      \n
    • Fixed: _load_textdomain_just_in_time notice with WordPress 6.7.
    • \n
    • Fixed: Some translations were empty with WordPress 6.5+.
    • \n
    \n

    1.9.2.1

    \n
      \n
    • Added: The Settings section in the WPForms admin bar menu.
    • \n
    • Added: Update Stripe payments status after canceling a refund in the Stripe dashboard.
    • \n
    • Added: Open the URL in the new tab for Confirmations.
    • \n
    • Added: New $row_id parameter to the wpforms_pre_update_{$type} and wpforms_post_update_{$type} actions.
    • \n
    • Added: AI chat warning messages if prohibited code has been removed.
    • \n
    • Changed: Updated jquery.validate library to 1.21.0.
    • \n
    • Changed: Updated stripe/stripe-php library to 16.1.0.
    • \n
    • Changed: Updated DOMPurify library to 3.1.7.
    • \n
    • Changed: Updated woocommerce/action-scheduler library to 3.8.2.
    • \n
    • Changed: Updated Chart.js library to v4.4.4.
    • \n
    • Changed: Smart tags are no longer processed in WordPress builders, such as Gutenberg, Elementor, Divi Builder, etc.
    • \n
    • Fixed: There was a potential infinite recursion in error handling.
    • \n
    • Fixed: Improved performance on the Templates page in the Form Builder.
    • \n
    • Fixed: Field labels were printed in the Order Summary table when the Hide Label option was enabled.
    • \n
    • Fixed: In some cases, adding a new account in Form Builder did not load the account data correctly.
    • \n
    • Fixed: Improved translation handling for addon names and descriptions.
    • \n
    • Fixed: Order Summary performance issue on large forms containing numerous payment conditional logic fields.
    • \n
    • Fixed: Mapped First/Last Name sub-fields were replaced by another after the initial field was deleted.
    • \n
    • Fixed: An extra field was displayed when WPForms were embedded using a shortcode in the Footer.
    • \n
    • Fixed: The non-Latin characters were not supported for the AI Choices prompt.
    • \n
    \n

    1.9.1.6

    \n
      \n
    • Fixed: The Dropdown field placeholder was disabled on the Divi Builder preview screen.
    • \n
    • Fixed: When sending a form with an incorrect nonce field, no error was displayed.
    • \n
    • Fixed: An extra field was displayed when a form was embedded using a shortcode in the Footer.
    • \n
    \n

    1.9.1.5

    \n
      \n
    • Fixed: PHP warnings appeared with WordPress widgets.
    • \n
    \n

    1.9.1.4

    \n
      \n
    • Fixed: Multiple sending of weekly summary emails.
    • \n
    \n

    1.9.1.3

    \n
      \n
    • Fixed: HTML tags didn’t work in an agreement text of the GDPR field when a field’s label was hidden.
    • \n
    • Fixed: HTML tags in choices of the Checkboxes, Multiple Choice, and Dropdown fields were escaped and didn’t work as expected.
    • \n
    \n

    1.9.1.2

    \n
      \n
    • Fixed: There was a conflict with the WooCommerce Subscriptions plugin.
    • \n
    \n

    1.9.1.1

    \n
      \n
    • Added: State-of-the-art generative AI can help to build forms even faster.
    • \n
    • Added: New supported currencies.
    • \n
    • Added: New wpforms_html_field_name filter that allows modifying field labels in email notifications.
    • \n
    • Changed: Improved the UI for multiple dropdown elements in various places of the admin area.
    • \n
    • Changed: Updated Stripe Subscription to use the plan name as the description.
    • \n
    • Changed: Notice in the WPForms > Settings > Payments admin page when a selected currency is not supported by Stripe.
    • \n
    • Changed: WPForms admin notices are now sorted by type.
    • \n
    • Changed: Improved the Modern Dropdown field UI across the Block and Elementor editors.
    • \n
    • Changed: Updated DOMPurify library to 3.1.6.
    • \n
    • Changed: Updated stripe/stripe-php library to 15.8.0.
    • \n
    • Changed: Improved RTL support of plugin admin pages.
    • \n
    • Changed: Improved compatibility with Full Site Editor and Gutenberg plugin.
    • \n
    • Changed: Improved performance on admin pages.
    • \n
    • Changed: Form Builder: Alt+S shortcut toggles the sidebar on Windows and Linux. Ctrl+F shortcut has been improved to always open search field.
    • \n
    • Fixed: Resolved W3C validation error for the Order Summary table.
    • \n
    • Fixed: Fixed RTL display issues for submit spinner and payment fields with quantity enabled.
    • \n
    • Fixed: Resolved pagination button issues for WordPress versions 6.6 and higher.
    • \n
    • Fixed: Incorrect price was displayed in the Order Summary table for some currencies when the Single Item field with ‘user defined’ type was used.
    • \n
    • Fixed: Improved mobile responsiveness of the price column in the Order Summary table.
    • \n
    • Fixed: “The cron event list could not be saved” error could appear in the debug.log file in certain cases.
    • \n
    • Fixed: WPForms script was not defined in the Elementor popup.
    • \n
    • Fixed: Compatibility with the Jetpack Boost plugin.
    • \n
    • Fixed: PHP notice generated on the Single Payment screen in some cases.
    • \n
    • Fixed: Search on WPForms –> Tools –> Scheduled Actions page redirected users to the Import Screen.
    • \n
    • Fixed: The wpforms_weekly_entries_count_cron task was reporting an error in the debug log.
    • \n
    • Fixed: Resolved W3C errors and warnings reported for the Standard fields.
    • \n
    • Fixed: The browser tab could crash if the WPForms block was used with patterns.
    • \n
    • Fixed: The Order Summary text was not readable in some form themes when the {order_summary} smart tag was used in the Confirmation message.
    • \n
    • Fixed: Submit button hover styles were overridden in some themes and Elementor.
    • \n
    • Fixed: The “Missing ‘wpforms’ dependency” error appeared on pages without a form.
    • \n
    \n

    1.9.0.4

    \n
      \n
    • Fixed: Unable to send a form with Constant Contact integration and fatal errors in the admin.
    • \n
    \n

    1.9.0.3

    \n
      \n
    • Fixed: Compatibility issues with menus and popups on Elementor.
    • \n
    • Fixed: A fatal error with wp_remote_retrieve_headers occurred in CacheBase.php in some cases.
    • \n
    • Fixed: Compatibility with the Jetpack Boost plugin.
    • \n
    \n

    1.9.0.2

    \n
      \n
    • Added: Modern Antispam protection for new forms.
    • \n
    • Added: Support conditional logic in the Layout field and add the ability to render the label and description for this field.
    • \n
    • Added: The notification to check prices is added when the currency is switched.
    • \n
    • Added: The new filter wpforms_sanitize_amount_before to filter a raw price amount before sanitization.
    • \n
    • Added: The new filter wpforms_sanitize_amount to filter a sanitized price amount.
    • \n
    • Added: The new filter wpforms_enable_form_data_slashing to enable the form data slashing.
    • \n
    • Added: The new filter wpforms_frontend_js_header_force_loadallows the loading of JS assets in the header.
    • \n
    • Changed: Improved automatic recreation of custom database tables.
    • \n
    • Changed: Improved RTL support of plugin admin pages on desktop and mobile screens.
    • \n
    • Changed: Smart Tags for the Name field now allow retrieving partial data, such as Last Name.
    • \n
    • Changed: Improved layout of the Settings > Integrations page on small screens.
    • \n
    • Changed: Added notices for the Default value and Allowlist/Denylist settings on the Email field in case some values were invalid and have been removed.
    • \n
    • Changed: Improved the multi-select dropdowns UI across the Builder UI.
    • \n
    • Changed: Updated stripe/stripe-php library to v15.1.0.
    • \n
    • Changed: Updated woocommerce/action-scheduler library to v3.8.1.
    • \n
    • Changed: Allowed using the & symbol in Modern style Dropdown field choices.
    • \n
    • Changed: Improved compatibility with the WP JobSearch plugin.
    • \n
    • Changed: Updated jQuery.Validate library to v1.20.1.
    • \n
    • Changed: Updated inputmask library to v5.0.9.
    • \n
    • Fixed: Stripe payment form couldn’t be submitted in the Elementor popup preview.
    • \n
    • Fixed: The Trash, Duplicate, Restore, and Delete actions for templates and forms now display a notice with the correct type.
    • \n
    • Fixed: Multiple Choice, Checkboxes, and Dropdown fields with empty values were displayed incorrectly in email notifications.
    • \n
    • Fixed: Database error on a single network site after creating a form if the plugin was network activated.
    • \n
    • Fixed: Fields reacted by hovering over them with the cursor on the Elementor editor screen.
    • \n
    • Fixed: Modern Dropdown fields were not appropriately loaded on Block (Gutenberg) and Elementor editors.
    • \n
    • Fixed: Forms with hidden labels had a big horizontal scrollbar when displayed on mobile with RTL languages.
    • \n
    • Fixed: Conditional logic affected the print page, which did not display hidden fields.
    • \n
    • Fixed: The RTE field was broken in the Elementor editor preview when the left menu was collapsed.
    • \n
    • Fixed: Rare exception with how we registered translations for download using the respective transient.
    • \n
    • Fixed: Pre-populating fields from another form with confirmation redirect URL was not handling multi-select fields.
    • \n
    • Fixed: The Gutenberg editor was not displaying the page title using Smart Tags.
    • \n
    • Fixed: The {page_url}Smart Tag value was wrong on the Gutenberg editor’s page.
    • \n
    • Fixed: When all the provider’s connections were removed, the check icon remained in the provider title.
    • \n
    • Fixed: The {page_url}Smart Tag was incorrect in the Divi builder.
    • \n
    • Fixed: Modern Dropdown fields didn’t preview correctly for multiple instances of WPForms block on the Gutenberg editor’s page.
    • \n
    • Fixed: The choice-based payment field Smart Tags didn’t work in the prefilled URL.
    • \n
    • Fixed: In Dropdown, the & symbol was rendered as the corresponding HTML entity &amp; for Modern Style.
    • \n
    • Fixed: The modern dropdown field was not loading correctly on the Elementor popup.
    • \n
    • Fixed: Empty forms couldn’t be submitted without enabling the “Minimum time for submit” setting.
    • \n
    • Fixed: Switching to Live mode on the Payments Overview screen was impossible when all test payments were deleted.
    • \n
    • Fixed: Dropdown and Checkbox fields with multiple values were inline in email notifications.
    • \n
    • Fixed: Pressing the Enter key triggered the WPForms Insert Form modal in the Classic editor.
    • \n
    • Fixed: Dropdown field in forms with the inline-fields class had cropped dropdowns on Safari.
    • \n
    • Fixed: Payment quantity text was not centered on some themes.
    • \n
    • Fixed: Some fields were visible in the email notifications even if they were hidden by Conditional Logic.
    • \n
    • Fixed: The Robots.txt file wasn’t valid due to the WPForms disallow rule.
    • \n
    • Fixed: After embedding to the new page, the {page_title} Smart Tag was empty in the Block Editor (Gutenberg).
    • \n
    \n

    1.8.9.6

    \n
      \n
    • Changed: Improved compatibility with OceanWP theme.
    • \n
    • Fixed: Dropdown fields in forms with the inline-fields class had cropped dropdowns.
    • \n
    • Fixed: Button’s hover color was wrong on the Ocean WP theme.
    • \n
    • Fixed: Form couldn’t be submitted when Cloudflare Turnstile anti-spam integration was configured.
    • \n
    \n

    1.8.9.5

    \n
      \n
    • Fixed: Stripe payment wasn’t created when the Credit Card field was optional and users paid through Google Pay / Apple Pay.
    • \n
    \n

    1.8.9.4

    \n
      \n
    • Added: New filter wpforms_sanitize_amount_before to filter a raw price amount before sanitization.
    • \n
    • Added: New filter wpforms_sanitize_amount to filter a sanitized price amount.
    • \n
    \n

    1.8.9.2

    \n
      \n
    • Fixed: Reply-to field was not returning the correct email address.
    • \n
    \n

    1.8.9.1

    \n
      \n
    • Added: Complex fields now can have separate error messages for each field.
    • \n
    • Added: Recommended, New, and Featured addons are now displayed first on the addons page.
    • \n
    • Changed: The Campaign Monitor, ConstantContact, GetResponse and ConvertKit logos were updated.
    • \n
    • Changed: Users can now see the category and subcategory of the selected template on the Setup panel.
    • \n
    • Changed: If Akismet is installed and configured for the form, marking entries as spam or not spam helps Akismet learn.
    • \n
    • Changed: Improved the behavior of Tools > Logs page and settings controls.
    • \n
    • Changed: Improved compatibility with the Hello Elementor theme.
    • \n
    • Changed: Process empty selected values for Choices, Checkbox, and Dropdown fields when Show Values option is selected.
    • \n
    • Changed: Choices.js library has been updated to v10.2.0.
    • \n
    • Changed: Modern multiple select field with search enabled now is more user-friendly across the admin area.
    • \n
    • Changed: Improved rendering of Payment Fields according to W3C requirements.
    • \n
    • Changed: Always display templates added by addons, even if the addon is not installed or activated.
    • \n
    • Changed: The form builder now hides the placeholder label for Image and Icon choices when left empty, while retaining the placeholder for Payment Choices and Checkboxes to maintain consistency with frontend behavior.
    • \n
    • Fixed: Incorrect alert modal was shown on the subscription plan removal in some cases.
    • \n
    • Fixed: Various RTL problems on the form builder screen.
    • \n
    • Fixed: The minimum payment amount for the Single Item field was not functioning correctly with currencies that use a comma as a decimal separator.
    • \n
    • Fixed: Validation error for the Postal code of the Stripe Credit Card field displayed twice.
    • \n
    • Fixed: Inconsistent spacing of Dropdown field in different browsers on desktop and mobile.
    • \n
    • Fixed: Stripe Credit Card field had incorrect placeholder color with Classic Markup.
    • \n
    • Fixed: Updated the WPForms Challenge to only start counting when you actually begin creating a form on the Forms Overview page.
    • \n
    • Fixed: User templates were not deleted on plugin uninstall.
    • \n
    • Fixed: The radio of the Multiple Choice field wasn’t centered in Firefox.
    • \n
    • Fixed: Stripe processing error occurred on a multi-payments form when all credit card fields were hidden by conditional logic.
    • \n
    • Fixed: Color of validation errors was incorrect for the Stripe Credit Card field when Payment Element mode was used.
    • \n
    • Fixed: Additional padding was added for the form title on the Forms Overview page on mobile.
    • \n
    • Fixed: The plugin update process redirected to the Update page and did not redirect back to the Plugins page after the update.
    • \n
    • Fixed: The fetching of the new plugin version number and new plugin description has been run not-synchronously.
    • \n
    • Fixed: MySQL errors occurred when creating a table in some unique configurations.
    • \n
    • Fixed: Multiple Choice field with Icon Choices could not be selected in Firefox after reloading the page.
    • \n
    • Fixed: Inline javascript code could be parsed improperly and displayed as text on top pages for some configurations.
    • \n
    • Fixed: Cached token was not updated properly.
    • \n
    • Fixed: The Spinner layout of the Save button in the Form Builder was not centered.
    • \n
    • Fixed: In some exceptions, one-time payments appeared in the Stripe dashboard even though a payment form wasn’t submitted.
    • \n
    • Fixed: Email notifications were not sent when a subject was empty after smart tag processing.
    • \n
    • Fixed: PHP warnings might have occurred in some cases on PHP 8.0+.
    • \n
    • Fixed: Upgrade to the Pro link had wrong styling on Bluehost hosted sites.
    • \n
    • Fixed: WPForms block in the editor showed an error when the selected form was trashed or deleted.
    • \n
    • Fixed: Some Stripe transactions were refunded almost immediately as the transactions were labeled fraudulent.
    • \n
    • Fixed: The validation process of Number Slider field could throw a fatal error on PHP 8.0+.
    • \n
    \n

    1.8.8.3

    \n
      \n
    • Changed: Updated jQuery.Validate library to v1.20.0.
    • \n
    • Fixed: Screen Options on the Forms Overview and Entries Overview pages could cause PHP error in rare cases due to conflict with 3rd-party code.
    • \n
    • Fixed: Post Statuses on legacy Nav Menu management page could cause PHP error in rare cases due to conflict with 3rd-party code.
    • \n
    • Fixed: users couldn’t duplicate their forms.
    • \n
    \n

    1.8.8.2

    \n
      \n
    • Added: Forms can now be saved as user templates for future use.
    • \n
    • Added: New Price Display option was added for Single Item payment field.
    • \n
    • Added: Shipping and Billing addresses can now be configured on the Form Builder > Payments > Stripe screen.
    • \n
    • Added: New filter wpforms_integrations_stripe_api_common_create_plan_name to filter Stripe subscription plan name.
    • \n
    • Added: New filter wpforms_integrations_lite_connect_api_request_timeout to filter Lite Connect request timeout.
    • \n
    • Added: New styling/theming settings in the Block editor.
    • \n
    • Added: New context menu in the Form Builder for quick actions.
    • \n
    • Changed: New design for the Email Summaries email template with a weekly total and entry submission trends.
    • \n
    • Changed: The state of selected stat cards on the Payments Overview chart is preserved when applying date filtering.
    • \n
    • Changed: Updated stripe/stripe-php library to v13.15.0.
    • \n
    • Changed: Updated woocommerce/action-scheduler library to v3.7.2.
    • \n
    • Changed: Updated DOMPurify library to 3.0.9.
    • \n
    • Changed: Adjusted notifications on the empty forms screen.
    • \n
    • Changed: HTML tags are allowed in the Order Summary for the Total payment field.
    • \n
    • Changed: When the entry is marked as not spam, submit data to Akismet for learning and help make the Web a better place for everyone.
    • \n
    • Changed: Improved error handling when creating or updating a form.
    • \n
    • Changed: Improved fields layout on the frontend for better user experience on mobile devices.
    • \n
    • Changed: Bring the frontend markup of the form more in line with the W3C standards to reduce validator errors.
    • \n
    • Fixed: Various RTL problems in the admin dashboard, form builder and a form preview page.
    • \n
    • Fixed: Various responsive issues on admin pages.
    • \n
    • Fixed: The Paragraph field was allowed horizontal resizing.
    • \n
    • Fixed: Make sure we output valid robots.txt file rules if the file is empty.
    • \n
    • Fixed: PHP notices were thrown in some cases when Stripe subscription renewals were created.
    • \n
    • Fixed: Customer email was shown instead of customer name on the Payments Overview screen for Stripe subscription renewals in some cases.
    • \n
    • Fixed: The builder sidebar was hidden on the context menu edit actions.
    • \n
    • Fixed: Fatal error was thrown on the frontend with corrupted form data.
    • \n
    • Fixed: 0 (zero) as a choices field raw value was not saved.
    • \n
    • Fixed: The payment single field had the wrong spacing with enabled quantities.
    • \n
    • Fixed: Long placeholders being broken into multiple lines after Safari 17.3.1 update.
    • \n
    • Fixed: Media upload did not work in some cases on mobile devices.
    • \n
    • Fixed: Placeholder option was hidden for the Single Item field with ‘user defined’ type.
    • \n
    • Fixed: Incorrect prices in the Order Summary table when items in the Checkbox Items field had the hyphen symbol.
    • \n
    • Fixed: Modern multiple select fields with long placeholder text overlapped a drop-down arrow.
    • \n
    • Fixed: Infinite loading button was shown on mobile devices in some cases.
    • \n
    • Fixed: Multisite activation: plugin should stay activated on a single site after user activated it on a network level.
    • \n
    • Fixed: There was a race condition with invisible reCaptcha v2, preventing form submission in some edge cases.
    • \n
    • Fixed: Elementor widget styles were broken due to a conflict with the Gutenberg block.
    • \n
    • Fixed: Some unnecessary inline styles were applied for email notifications with HTML tags.
    • \n
    • Fixed: Payment fields weren’t reflected properly in the Order Summary table in some cases.
    • \n
    • Fixed: WPCode Install/Activate modal and Entries Education Modal now look better on mobile screens.
    • \n
    • Fixed: {author_*} smart tags were returning incorrect results in some cases.
    • \n
    • Fixed: Incorrect styles were applied for “Order Summary” table in some cases.
    • \n
    • Fixed: Improved handling of corrupted payment submission data.
    • \n
    \n

    1.8.7.2

    \n
      \n
    • Changed: “What’s New” modal should be displayed based on the major version of the plugin.
    • \n
    • Changed: Improved Akismet integration efficiency.
    • \n
    • Fixed: Antispam token was passed as a simple form field, not protected from spam bots.
    • \n
    • Fixed: PHP warning was thrown in case of anonymous form submission when User ID smart tag was used.
    • \n
    • Fixed: Image positioning in the “What’s New” blocks wasn’t always correct.
    • \n
    • Fixed: Modal windows were not displayed on small screens.
    • \n
    • Fixed: The animation for opening the “What’s New” modal worked improperly when the modal had small content.
    • \n
    • Fixed: The background was not entirely dimmed when scrolling the “What’s New” popup.
    • \n
    \n

    1.8.7.1

    \n
      \n
    • Added: The Announcements block in the Community page.
    • \n
    • Added: New way to expand the Form Templates subcategories list in the templates list sidebar.
    • \n
    • Added: New splash screen outlining notable features and changes in the release.
    • \n
    • Added: The user can see an overview of what they are purchasing by enabling the Order Summary for the …
    • \n
    \n", "description": "

    WordPress Contact Form Builder Plugin

    \n

    WPForms is a drag & drop WordPress form builder that’s EASY and POWERFUL. Create contact forms, feedback forms, subscription forms, payment forms (including Stripe, Square & PayPal), and other types of forms for your site in minutes with just a few clicks!

    \n

    At WPForms, user experience is our #1 priority. Our pre-built form templates and workflows make WPForms the most beginner-friendly contact form plugin on the market. You don’t have to hire a developer. Create a form in less than 5 minutes with our drag & drop form builder or use a template to get a head start.

    \n
    \n

    WPForms Pro
    \n This plugin is the Lite version of WPForms Pro, which comes with email subscription forms, multi-page contact forms, file uploads, conditional logic, and extra payment integrations. Click here to purchase the best premium WordPress contact form plugin now!

    \n
    \n

    \n

    Drag & Drop Contact Form Builder

    \n

    Create custom contact forms in minutes with our easy-to-use drag and drop online form builder. But don’t just take our word for it. See what WordPress experts are saying:

    \n
    \n

    WPForms is by far the easiest form plugin to use. My clients love WPForms and it’s one of the few plugins they can use without any training. As a developer I appreciate how fast, modern, clean and extensible it is.
    \n Bill Erickson – Expert WordPress Consultant

    \n
    \n

    Pre-built Form Templates

    \n

    WPForms comes with 2000+ pre-built form templates.

    \n

    Whether you’re looking to create a simple contact form, marketing form, request a quote form, donation form, payment order form, registration form, Stripe payment form, or a subscription form, we have a form template already prepared and ready to use.

    \n

    Mobile Ready, SEO Friendly, and Optimized for Speed

    \n

    WPForms contact forms are 100% responsive and mobile-friendly. We optimized every query on the frontend and the backend to ensure that it’s one of the fastest WordPress contact form plugins.

    \n

    You can embed your contact form on any page with an optimized title and description, so WPForms is one of the most SEO friendly contact form plugins too.

    \n

    Fields & Features You Need to Succeed

    \n

    With star ratings, file uploads, repeater fields, survey fields, and multi-page contact forms, you can easily build the right custom form for your site’s needs. Plus, integrate your contact forms with an email marketing service in just a few steps and collect payments with Stripe, PayPal, and Square for bookings and orders without the need for a dedicated eCommerce plugin.

    \n

    See what one business owner has to say about their WPForms contact form:

    \n
    \n

    As a business owner, time is my most valuable asset. WPForms allows me to create smart contact forms with just a few clicks. With their pre-built form templates and the drag & drop builder, I can create a new form that works in less than 2 minutes without writing a single line of code. Well worth the investment.
    \n David Henzel – Co-founder of MaxCDN

    \n
    \n

    Surveys & Polls

    \n

    Create custom survey forms like Survey Monkey. Our WordPress survey plugin addon comes with smart survey fields including Likert scale, star ratings, and NPS. Embed your surveys and polls anywhere in WordPress.

    \n

    Use our survey reporting tools to customize graphs, export them for presentations, and display aggregate results. You can also share poll results instantly when collecting votes.

    \n

    Default WordPress Forms

    \n

    Aside from building simple contact forms, WPForms also helps you create better default WordPress forms, like custom WordPress login forms and custom WordPress user registration forms. Create a password-protected contact form or even a members-only contact form.

    \n

    Bloggers and publishers can use our WordPress post submission forms to accept guest posts, testimonials, and more.

    \n

    Payment Forms, Donation Forms, Booking Forms, and More

    \n

    While WPForms started out as a contact form plugin, it has evolved into a powerful custom forms solution for any type of payment or booking form.

    \n

    WPForms integrates with PayPal, Stripe, Square Payments, and Authorize.Net so you can easily accept credit card payments or take payments via PayPal. Bonus: you can also take signatures.

    \n

    We’re proud to be a Stripe Verified Partner. This partnership allows us to build the best Stripe integration with early access to features. You can use our Stripe integration to accept both one-time payments as well as recurring payments while syncing all form data to your Stripe account.

    \n

    Custom Calculator Forms

    \n

    Using the WPForms Calculations addon, you can build custom formulas and display results on the frontend.

    \n

    Create simple arithmetic calculations or build complex conditional calculations with rounded values, averages, time ranges, and more! It’s the best calculator plugin for WordPress.

    \n

    Forms Optimized for Conversions

    \n

    With our Form Pages addon, you can create distraction-free custom form landing pages to increase conversions.

    \n

    To improve form completion rates, we created Conversational Forms which helps you make your feedback forms feel more human by adding an interactive layout. (See Conversational Forms Demo).

    \n

    Easy to Customize and Extend

    \n

    You can easily customize your contact forms with our section dividers, HTML blocks, and CSS. Embedding forms in Elementor and Divi has never been easier thanks to our native integrations.

    \n

    We also know that our developer friends may want more control, so we added tons of hooks and filters.

    \n

    Full WPForms Feature List

    \n\n

    Integrations

    \n\n

    You can see why WPForms is the best WordPress contact form plugin on the market! Want to unlock these features? Upgrade to our Pro version.

    \n

    Credits

    \n

    This plugin is created by Jared Atchison and Syed Balkhi.

    \n

    Branding Guidelines

    \n

    WPForms® is a registered trademark of WPForms LLC. When writing about the contact form plugin by WPForms, please make sure to uppercase the initial 3 letters.

    \n
      \n
    • WPForms (correct)
    • \n
    • WP Forms (incorrect)
    • \n
    • wpforms (incorrect)
    • \n
    • wpform (incorrect)
    • \n
    \n

    Notes

    \n

    WPForms is absolutely, positively the most beginner-friendly WordPress contact form plugin on the market. It is both easy and powerful.

    \n

    We took the pain out of creating online forms and made it easy. Check out all WPForms features.

    \n

    Also, I’m the founder of WPBeginner, the largest WordPress resource site for beginners. It was a huge priority for me to make a WordPress contact form plugin that beginners can use without any training.

    \n

    I feel that we have done that here. I hope you enjoy using WPForms.

    \n

    Thank you,

    \n

    Syed Balkhi

    \n", "screenshots": "
    1. \"WPForms

      WPForms Drag & Drop Form Builder

    2. \"Adding

      Adding New Fields

    3. \"Generate

      Generate choices using AI

    4. \"Form

      Form Templates

    5. \"WPForms

      WPForms Block With Style Options

    6. \"Payments

      Payments Overview

    7. \"Single

      Single Payment

    8. \"Form

      Form Preview

    9. \"Form

      Form Pages with Multiple Styles

    10. \"Conversational

      Conversational Form

    ", "installation": "
      \n
    1. Install WPForms Lite either via the WordPress.org plugin repository or by uploading the files to your server. (See instructions on how to install a WordPress plugin)
    2. \n
    3. Activate WPForms Lite.
    4. \n
    5. Navigate to the WPForms tab at the bottom of your admin menu and click the “Add New” button to begin creating your new WordPress contact form.
    6. \n
    7. Want more features? Purchase the full version of WPForms!
    8. \n
    \n"}, "versions": {"1.1.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.8.zip", "1.2.0": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.3.zip", "1.3.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.6.zip", "1.3.8": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.8.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.6.zip", "1.4.9": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.9.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.1.zip", "1.5.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.3.zip", "1.5.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.7.zip", "1.6.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.1.zip", "1.6.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.0.zip", "1.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.4.zip", "1.7.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.9.zip", "1.8.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.6.zip", "trunk": "https://downloads.wordpress.org/plugin/wpforms-lite.zip", "1.1.4.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.4.2.zip", "1.1.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.5.1.zip", "1.1.6.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.6.1.zip", "1.1.7.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.7.1.zip", "1.1.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.7.2.zip", "1.1.8.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.8.1.zip", "1.1.8.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.8.2.zip", "1.1.8.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.8.3.zip", "1.1.8.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.1.8.4.zip", "1.2.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.0.1.zip", "1.2.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.2.1.zip", "1.2.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.2.2.zip", "1.2.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.3.1.zip", "1.2.3.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.3.2.zip", "1.2.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.4.1.zip", "1.2.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.5.1.zip", "1.2.8.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.2.8.1.zip", "1.3.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.1.1.zip", "1.3.1.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.1.2.zip", "1.3.6.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.6.1.zip", "1.3.6.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.6.2.zip", "1.3.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.7.2.zip", "1.3.7.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.7.3.zip", "1.3.7.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.7.4.zip", "1.3.9.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.3.9.1.zip", "1.4.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.0.1.zip", "1.4.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.1.1.zip", "1.4.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.2.1.zip", "1.4.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.2.2.zip", "1.4.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.4.1.zip", "1.4.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.5.1.zip", "1.4.5.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.5.2.zip", "1.4.5.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.5.3.zip", "1.4.7.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.7.1.zip", "1.4.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.7.2.zip", "1.4.8.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.4.8.1.zip", "1.5.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.0.1.zip", "1.5.0.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.0.3.zip", "1.5.0.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.0.4.zip", "1.5.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.1.1.zip", "1.5.1.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.1.3.zip", "1.5.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.2.1.zip", "1.5.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.2.2.zip", "1.5.2.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.2.3.zip", "1.5.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.3.1.zip", "1.5.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.4.1.zip", "1.5.4.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.4.2.zip", "1.5.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.5.1.zip", "1.5.6.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.6.2.zip", "1.5.8.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.8.2.zip", "1.5.9.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.9.1.zip", "1.5.9.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.9.4.zip", "1.5.9.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.5.9.5.zip", "1.6.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.0.1.zip", "1.6.0.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.0.2.zip", "1.6.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.2.2.zip", "1.6.2.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.2.3.zip", "1.6.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.3.1.zip", "1.6.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.4.1.zip", "1.6.7.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.7.1.zip", "1.6.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.7.2.zip", "1.6.7.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.7.3.zip", "1.6.8.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.6.8.1.zip", "1.7.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.1.1.zip", "1.7.1.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.1.2.zip", "1.7.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.2.1.zip", "1.7.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.4.1.zip", "1.7.4.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.4.2.zip", "1.7.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.5.1.zip", "1.7.5.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.5.2.zip", "1.7.5.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.5.3.zip", "1.7.5.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.5.5.zip", "1.7.7.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.7.1.zip", "1.7.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.7.2.zip", "1.7.9.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.7.9.1.zip", "1.8.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.0.1.zip", "1.8.0.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.0.2.zip", "1.8.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.1.1.zip", "1.8.1.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.1.2.zip", "1.8.1.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.1.3.zip", "1.8.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.2.1.zip", "1.8.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.2.2.zip", "1.8.2.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.2.3.zip", "1.8.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.3.1.zip", "1.8.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.4.1.zip", "1.8.5.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.5.2.zip", "1.8.5.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.5.3.zip", "1.8.5.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.5.4.zip", "1.8.6.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.6.2.zip", "1.8.6.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.6.3.zip", "1.8.6.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.6.4.zip", "1.8.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.7.2.zip", "1.8.8.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.8.2.zip", "1.8.8.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.8.3.zip", "1.8.9.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.9.1.zip", "1.8.9.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.9.2.zip", "1.8.9.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.9.4.zip", "1.8.9.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.9.5.zip", "1.8.9.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.8.9.6.zip", "1.9.0.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.0.1.zip", "1.9.0.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.0.2.zip", "1.9.0.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.0.3.zip", "1.9.0.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.0.4.zip", "1.9.1.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.1.zip", "1.9.1.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.2.zip", "1.9.1.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.3.zip", "1.9.1.4": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.4.zip", "1.9.1.5": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.5.zip", "1.9.1.6": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.1.6.zip", "1.9.2.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.2.1.zip", "1.9.2.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.2.2.zip", "1.9.2.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.2.3.zip", "1.9.3.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.3.1.zip", "1.9.3.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.3.2.zip", "1.9.4.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.4.1.zip", "1.9.4.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.4.2.zip", "1.9.5.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.5.1.zip", "1.9.5.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.5.2.zip", "1.9.6.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.6.1.zip", "1.9.6.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.6.2.zip", "1.9.7.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.7.1.zip", "1.9.7.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.7.2.zip", "1.9.7.3": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.7.3.zip", "1.9.8.1": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.8.1.zip", "1.9.8.2": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.8.2.zip"}, "downloaded": 298566930, "description": "

    WordPress Contact Form Builder Plugin

    \n

    WPForms is a drag & drop WordPress form builder that’s EASY and POWERFUL. Create contact forms, feedback forms, subscription forms, payment forms (including Stripe, Square & PayPal), and other types of forms for your site in minutes with just a few clicks!

    \n

    At WPForms, user experience is our #1 priority. Our pre-built form templates and workflows make WPForms the most beginner-friendly contact form plugin on the market. You don’t have to hire a developer. Create a form in less than 5 minutes with our drag & drop form builder or use a template to get a head start.

    \n
    \n

    WPForms Pro
    \n This plugin is the Lite version of WPForms Pro, which comes with email subscription forms, multi-page contact forms, file uploads, conditional logic, and extra payment integrations. Click here to purchase the best premium WordPress contact form plugin now!

    \n
    \n

    \n

    Drag & Drop Contact Form Builder

    \n

    Create custom contact forms in minutes with our easy-to-use drag and drop online form builder. But don’t just take our word for it. See what WordPress experts are saying:

    \n
    \n

    WPForms is by far the easiest form plugin to use. My clients love WPForms and it’s one of the few plugins they can use without any training. As a developer I appreciate how fast, modern, clean and extensible it is.
    \n Bill Erickson – Expert WordPress Consultant

    \n
    \n

    Pre-built Form Templates

    \n

    WPForms comes with 2000+ pre-built form templates.

    \n

    Whether you’re looking to create a simple contact form, marketing form, request a quote form, donation form, payment order form, registration form, Stripe payment form, or a subscription form, we have a form template already prepared and ready to use.

    \n

    Mobile Ready, SEO Friendly, and Optimized for Speed

    \n

    WPForms contact forms are 100% responsive and mobile-friendly. We optimized every query on the frontend and the backend to ensure that it’s one of the fastest WordPress contact form plugins.

    \n

    You can embed your contact form on any page with an optimized title and description, so WPForms is one of the most SEO friendly contact form plugins too.

    \n

    Fields & Features You Need to Succeed

    \n

    With star ratings, file uploads, repeater fields, survey fields, and multi-page contact forms, you can easily build the right custom form for your site’s needs. Plus, integrate your contact forms with an email marketing service in just a few steps and collect payments with Stripe, PayPal, and Square for bookings and orders without the need for a dedicated eCommerce plugin.

    \n

    See what one business owner has to say about their WPForms contact form:

    \n
    \n

    As a business owner, time is my most valuable asset. WPForms allows me to create smart contact forms with just a few clicks. With their pre-built form templates and the drag & drop builder, I can create a new form that works in less than 2 minutes without writing a single line of code. Well worth the investment.
    \n David Henzel – Co-founder of MaxCDN

    \n
    \n

    Surveys & Polls

    \n

    Create custom survey forms like Survey Monkey. Our WordPress survey plugin addon comes with smart survey fields including Likert scale, star ratings, and NPS. Embed your surveys and polls anywhere in WordPress.

    \n

    Use our survey reporting tools to customize graphs, export them for presentations, and display aggregate results. You can also share poll results instantly when collecting votes.

    \n

    Default WordPress Forms

    \n

    Aside from building simple contact forms, WPForms also helps you create better default WordPress forms, like custom WordPress login forms and custom WordPress user registration forms. Create a password-protected contact form or even a members-only contact form.

    \n

    Bloggers and publishers can use our WordPress post submission forms to accept guest posts, testimonials, and more.

    \n

    Payment Forms, Donation Forms, Booking Forms, and More

    \n

    While WPForms started out as a contact form plugin, it has evolved into a powerful custom forms solution for any type of payment or booking form.

    \n

    WPForms integrates with PayPal, Stripe, Square Payments, and Authorize.Net so you can easily accept credit card payments or take payments via PayPal. Bonus: you can also take signatures.

    \n

    We’re proud to be a Stripe Verified Partner. This partnership allows us to build the best Stripe integration with early access to features. You can use our Stripe integration to accept both one-time payments as well as recurring payments while syncing all form data to your Stripe account.

    \n

    Custom Calculator Forms

    \n

    Using the WPForms Calculations addon, you can build custom formulas and display results on the frontend.

    \n

    Create simple arithmetic calculations or build complex conditional calculations with rounded values, averages, time ranges, and more! It’s the best calculator plugin for WordPress.

    \n

    Forms Optimized for Conversions

    \n

    With our Form Pages addon, you can create distraction-free custom form landing pages to increase conversions.

    \n

    To improve form completion rates, we created Conversational Forms which helps you make your feedback forms feel more human by adding an interactive layout. (See Conversational Forms Demo).

    \n

    Easy to Customize and Extend

    \n

    You can easily customize your contact forms with our section dividers, HTML blocks, and CSS. Embedding forms in Elementor and Divi has never been easier thanks to our native integrations.

    \n

    We also know that our developer friends may want more control, so we added tons of hooks and filters.

    \n

    Full WPForms Feature List

    \n\n

    Integrations

    \n\n

    You can see why WPForms is the best WordPress contact form plugin on the market! Want to unlock these features? Upgrade to our Pro version.

    \n

    Credits

    \n

    This plugin is created by Jared Atchison and Syed Balkhi.

    \n

    Branding Guidelines

    \n

    WPForms® is a registered trademark of WPForms LLC. When writing about the contact form plugin by WPForms, please make sure to uppercase the initial 3 letters.

    \n
      \n
    • WPForms (correct)
    • \n
    • WP Forms (incorrect)
    • \n
    • wpforms (incorrect)
    • \n
    • wpform (incorrect)
    • \n
    \n

    Notes

    \n

    WPForms is absolutely, positively the most beginner-friendly WordPress contact form plugin on the market. It is both easy and powerful.

    \n

    We took the pain out of creating online forms and made it easy. Check out all WPForms features.

    \n

    Also, I’m the founder of WPBeginner, the largest WordPress resource site for beginners. It was a huge priority for me to make a WordPress contact form plugin that beginners can use without any training.

    \n

    I feel that we have done that here. I hope you enjoy using WPForms.

    \n

    Thank you,

    \n

    Syed Balkhi

    \n", "donate_link": "", "num_ratings": 14216, "screenshots": {"1": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-1.png?rev=3102297", "caption": "WPForms Drag & Drop Form Builder"}, "2": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-2.gif?rev=3254748", "caption": "Adding New Fields"}, "3": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-3.png?rev=3254748", "caption": "Generate choices using AI"}, "4": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-4.png?rev=3254748", "caption": "Form Templates"}, "5": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-5.png?rev=3254748", "caption": "WPForms Block With Style Options"}, "6": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-6.png?rev=3254748", "caption": "Payments Overview"}, "7": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-7.png?rev=3254748", "caption": "Single Payment"}, "8": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-8.png?rev=3254748", "caption": "Form Preview"}, "9": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-9.png?rev=3254748", "caption": "Form Pages with Multiple Styles"}, "10": {"src": "https://ps.w.org/wpforms-lite/assets/screenshot-10.gif?rev=3254748", "caption": "Conversational Form"}}, "support_url": "https://wordpress.org/support/plugin/wpforms-lite/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "slaffik": {"avatar": "https://secure.gravatar.com/avatar/1d442bc94c6f4198991d0886f34c9d6482710d5a15ad5e358ef802e2a41818be?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/slaffik/", "display_name": "Slava Abakumov"}, "wpforms": {"avatar": "https://secure.gravatar.com/avatar/7fb6cd90cbb1ee023c8c977fdbf7a3d719607d75d998a3a54642fe19cbd87896?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpforms/", "display_name": "WPForms"}, "jaredatch": {"avatar": "https://secure.gravatar.com/avatar/e48b918fcf7b3ef806516402e3b78524138f1a0c713fe5c0d835a7b6d8ae35a2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jaredatch/", "display_name": "Jared Atchison"}}, "last_updated": "2025-10-14 11:49am GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wpforms-lite.1.9.8.2.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 6000000, "aspiresync_meta": {"id": "019a30bf-ff86-73fc-92cb-918e03d6d0a8", "name": "WPForms – Easy Form Builder for WordPress – Contact Forms, Payment Forms, Surveys, & More", "slug": "wpforms-lite", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760442540, "version": "1.9.8.2"}, "support_threads": 50, "requires_plugins": [], "short_description": "The best WordPress contact form plugin. Drag & Drop form builder to create beautiful contact forms, payment forms, & other custom forms.", "author_block_count": 1, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 47}'); -INSERT INTO public.plugins VALUES ('019a30c1-6810-730c-b1a7-23374fabddaa', 'wp-mail-smtp', 'WP Mail SMTP by WPForms – The Most Popular SMTP and Email Log Plugin', 'Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, SendGrid, Mailgun, SES, Zoho, + more. Rated #1 WordPress SMTP Email plugin.', '

    WordPress Mail SMTP Plugin

    -

    Is your WordPress site not sending emails? You’re not alone. 3+ million websites use WP Mail SMTP to send emails reliably.

    -

    Our goal is to make email deliverability easy so that your emails always reach the inbox.

    -

    WP Mail SMTP fixes your email deliverability issues by reconfiguring WordPress to use a proper SMTP provider when sending emails.

    -

    Best of all, our easy-to-use Setup Wizard and detailed documentation guide you through the process.

    -

    WP Mail SMTP is free and has everything you need to reliably send your WordPress emails!

    -

    WP Mail SMTP Pro unlocks even more powerful features like email logging, advanced email reporting and stats, backup connections, email alerts, smart conditional routing, and much more.

    -

    -

    What is SMTP?

    -

    SMTP (Simple Mail Transfer Protocol) is an industry-standard for sending emails. Proper SMTP configuration helps increase email deliverability by adding authentication to the emails sent from your site.

    -

    Popular email clients like Gmail, Yahoo, Office 365, and Zoho are in a constant battle with email spammers, so they check whether emails are originating from a genuine sender. If the proper authentication isn’t there, emails either go in the SPAM folder or, worse, disappear.

    -

    This is a problem for a lot of WordPress sites. By default, WordPress uses the PHP mail function to send emails generated by WordPress or any contact form plugin like WPForms.

    -

    But most WordPress hosting companies don’t have their servers properly configured for sending PHP emails.

    -

    This is why WordPress emails aren’t delivered.

    -

    How does WP Mail SMTP work?

    -

    WP Mail SMTP plugin easily resolves email delivery problems by changing the way your WordPress site sends email. We reconfigure the wp_mail() function to use proper SMTP host credentials or an SMTP mail provider.

    -

    With our built-in SMTP mail provider integrations (recommended), emails are sent using the provider’s direct API. Even if your web host is blocking SMTP ports, your emails will still be sent successfully.

    -

    This helps you fix all WordPress not sending email issues.

    -

    WP Mail SMTP plugin includes many different SMTP mailers:

    -
      -
    1. SendLayer (#1 Recommended)
    2. -
    3. SMTP.com (Recommended)
    4. -
    5. Brevo (formerly Sendinblue) SMTP (Recommended)
    6. -
    7. Gmail SMTP (Gmail, Google Workspace, G Suite)
    8. -
    9. Elastic Email
    10. -
    11. Mailgun SMTP
    12. -
    13. Mailjet SMTP
    14. -
    15. SendGrid SMTP
    16. -
    17. Postmark SMTP
    18. -
    19. SparkPost SMTP
    20. -
    21. SMTP2GO
    22. -
    23. Microsoft SMTP One-Click Setup (Outlook.com and Office 365) [Pro]
    24. -
    25. Amazon SES SMTP [Pro]
    26. -
    27. Zoho Mail SMTP [Pro]
    28. -
    29. Other SMTP
    30. -
    -

    For most options, you can specify the “from name” and “email address” for outgoing emails too.

    -

    All of these powerful features make WP Mail SMTP the best SMTP solution for WordPress.

    -

    If you don’t know which mailer to choose, see our Complete Guide to WP Mail SMTP Mailers.

    -

    SendLayer

    -

    SendLayer is our #1 recommended transactional email service.

    -

    Its affordable pricing and simple setup make it the perfect choice for sending emails from WordPress. It also has open and click tracking and email logs.

    -

    SendLayer is reliable, fast, and easy to set up. You can send hundreds of emails for free when you sign up for a trial.

    -

    Read our SendLayer documentation for more details.

    -

    SMTP.COM

    -

    SMTP.com is a recommended transactional email service.

    -

    With over 22 years of email delivery expertise, SMTP.com has a reputation for being one of the most reliable senders on the internet.

    -

    You can start sending emails in minutes and benefit from 50,000 free emails in your first 30 days.

    -

    Read our SMTP.com documentation for more details.

    -

    Brevo (formerly Sendinblue) SMTP

    -

    Brevo is a recommended transactional email service. It serves 80,000+ companies worldwide.

    -

    Brevo is reliable, fast, and gives you 300 free emails per day.

    -

    Read our Brevo documentation for more details.

    -

    WP Mail SMTP PRO

    -

    In addition to native Microsoft, Amazon SES, and Zoho Mail integrations, WP Mail SMTP Pro provides access to many other powerful features.

    -

    Click here to purchase WP Mail SMTP Pro now!

    -

    Email Log

    -

    Email logging is a powerful feature that keeps a record of all sent emails in WordPress. Email logging helps you to archive, audit, resend, or test email delivery and formatting.

    -

    Our WordPress email logs also include:

    -

    Email Log Details

    -

    Our email logs provide a complete history of all emails sent from WordPress. View the subject, sender, recipients, content, headers, open and click rates, delivery status, source plugin, and more!

    -

    Resend Emails

    -

    Resend emails individually or in bulk, whether they failed or were delivered successfully. You can also forward important emails to an alternative email address.

    -

    And many more Email Log Features

    -

    Store all email attachments, export email logs, print emails, see delivery status, and more.

    -

    Email Reports

    -

    Review weekly sent and failed emails in a dashboard chart.

    -

    Email reports make it easy to track deliverability and engagement. Open rates and click-through rates are grouped by subject line, making it easy to see the performance of your campaigns or notifications.

    -

    Weekly Email Summary

    -

    Get statistics about WordPress emails, including how many emails are being sent and which ones are being opened and clicked. The Summary also shows you deliverability statistics without the need to log in to WordPress to check them.

    -

    Track Email Opens and Clicks

    -

    View open and click stats for WordPress emails, grouped by subject line in your Email Report.

    -

    Email Alerts

    -

    If your emails stop sending, get notified instantly via Slack, Microsoft Teams, Discord, SMS/ Twilio, webhooks, or email (via secure API).

    -

    In combination with our email logging and resending features, Email Alerts ensure that no important email will ever be lost.

    -

    Backup Connection

    -

    Configure an extra connection that kicks in if your primary connection fails. WP Mail SMTP automatically detects connection issues and automatically switches to the backup mailer. It will also automatically retry emails that failed.

    -

    Smart Conditional Routing

    -

    Create criteria to send different types of emails using different mailers. Filter by the contents of the email Subject or Message, From or To addresses, the plugin that generated the email, and more.

    -

    This allows you to mix transactional and marketing providers to improve deliverability.

    -

    Rate Limiting

    -

    Control the number of emails your WordPress site sends in a specific amount of time so you stay within your SMTP provider’s rate limits.

    -

    WP Mail SMTP allows you to specify the maximum number of emails that will be sent every minute, hour, day, week, or month and automatically queues emails to stay within those limits.

    -

    Optimized Email Sending

    -

    Are emails slowing down your site? Let WP Mail SMTP queue your emails for better performance.

    -

    With optimized sending, emails are queued in the background and sent when your server has sufficient resources, avoiding bottlenecks that can slow down your site.

    -

    Manage WordPress Emails and Notifications

    -

    Control the default notifications WordPress sends. Use a simple switch to disable specific types of notifications if you don’t want to receive them.

    -

    WordPress Multisite

    -

    WordPress Multisite Network Settings

    -

    For users running a multisite network, save time with a centralized location to easily configure your SMTP settings for all sites.

    -

    Manage Multisite Email Logs Easily

    -

    Network Admins can view and manage email logs for subsites with easy switching and dashboard views.

    -

    Expert Support

    -

    We provide limited support on the WordPress.org forums. World-class one-on-one email support is available to WP Mail SMTP Pro users.

    -

    White Glove Setup

    -

    If you’re not sure how to fix your emails, sit back and relax. We’ll set up WP Mail SMTP for you!

    -

    White Glove Setup includes installation, configuration in WordPress, DNS configuration, full mailer setup, and testing. White Glove Setup is available for our recommended mailers: SendLayer, Brevo, and SMTP.com.

    -

    Credits

    -

    WP Mail SMTP plugin was originally created by Callum Macdonald. It is now owned and maintained by the team behind WPForms – the best drag & drop form builder for WordPress.

    -

    You can try the free version of WPForms plugin to see why it’s the best in the market.

    -', '4.6.0', 'Syed Balkhi', '5.5', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/wp-mail-smtp.4.6.0.zip', '2007-09-12 00:00:00+00', '2025-08-29 07:57:00+00', 'https://profiles.wordpress.org/smub/', 96, 4941, 33, 28, 4000000, 71356427, 'https://wpmailsmtp.com/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/wp-mail-smtp/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WP Mail SMTP by WPForms – The Most Popular SMTP and Email Log Plugin", "slug": "wp-mail-smtp", "tags": {"smtp": "smtp", "email": "email", "gmail": "gmail", "outlook": "outlook", "email-logs": "email logs"}, "added": "2007-09-12", "icons": {"1x": "https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440", "2x": "https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440"}, "author": "Syed Balkhi", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=3206423", "high": "https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=3206423"}, "ratings": {"1": 154, "2": 26, "3": 36, "4": 64, "5": 4661}, "version": "4.6.0", "homepage": "https://wpmailsmtp.com/", "requires": "5.5", "sections": {"faq": "\n
    \nWhich email providers does WP Mail SMTP support?\n\n

    \n

    SendLayer

    \n

    SendLayer is our #1 recommended transactional email service.

    \n

    Its affordable pricing and simple setup make it the perfect choice for sending emails from WordPress. It also has open and click tracking, email logs, and email list management.
    \nSendLayer is the best choice if you want a mailer that’s reliable, fast, and easy to set up. You can send hundreds of emails for free when you sign up for a trial.

    \n

    Read our SendLayer documentation for more details.

    \n

    SMTP.COM

    \n

    SMTP.com is a recommended transactional email service.

    \n

    With over 22 years of email delivery expertise, SMTP.com has been around for almost as long as email itself. They are known among internet providers as one of the most reliable senders on the internet.

    \n

    Their easy integration process lets you start sending emails in minutes and benefit from years of experience. SMTP.com provides users 50,000 free emails the first 30 days.

    \n

    Read our SMTP.com documentation for more details.

    \n

    Brevo (formerly Sendinblue) SMTP

    \n

    Brevo is a recommended transactional email service.

    \n

    They serve 80,000+ growing companies around the world and send over 30 million emails each day.

    \n

    Their email deliverability experts are constantly at work optimizing the reliability and speed of their SMTP infrastructure. Brevo provides users 300 free emails per day.

    \n

    Read our Brevo documentation for more details.

    \n

    Gmail SMTP (Gmail, Google Workspace, G Suite)

    \n

    Often bloggers and small business owners don’t want to use third-party SMTP services. Well you can use your Gmail or Google Workspace (also known as G Suite/Google Apps) account for SMTP emails.

    \n

    This allows you to use your professional email address and improve email deliverability.

    \n

    Unlike other Gmail SMTP plugins, our Gmail SMTP option uses OAuth to authenticate your Google account, keeping your login information 100% secure.

    \n

    Our plugin also offers the “One-Click Setup” option, which allows you to start sending emails from your Gmail account with just a few clicks. It eliminates the need to manually configure your own Google App, which is a technical and time-consuming process.

    \n

    Read our Gmail documentation for more details.

    \n

    Elastic Email

    \n

    Elastic Email is a cloud-based email marketing platform offering tools for email campaigns, automation, transactional emails, and analytics, designed for businesses of all sizes. Elastic Email offers a limited free plan where you can send emails to your verified addresses.

    \n

    Read our Elastic Email documentation for more details.

    \n

    Mailgun SMTP

    \n

    Mailgun SMTP is a popular SMTP service provider that allows you to send large quantities of emails. They provide 5,000 free emails per month for 3 months.

    \n

    WP Mail SMTP plugin offers a native integration with MailGun. All you have to do is connect your Mailgun account, and you will improve your email deliverability.

    \n

    Read our Mailgun documentation for more details.

    \n

    Mailjet SMTP

    \n

    Mailjet is a global email sending service that allows you to design, send, and track marketing and transactional emails. They provide 6,000 free emails per month (up to 200 emails per day).

    \n

    WP Mail SMTP plugin offers seamless integration with Mailjet. By connecting your Mailjet account, you can enhance your email deliverability and ensure your WordPress emails reach your recipients’ inboxes.

    \n

    Read our Mailjet documentation for more details.

    \n

    SendGrid SMTP

    \n

    SendGrid has a free SMTP plan that you can use to send up to 100 emails per day. With our native SendGrid SMTP integration, you can easily and securely set up SendGrid SMTP on your WordPress site.

    \n

    Read our SendGrid documentation for more details.

    \n

    Postmark SMTP

    \n

    Send emails securely using your Postmark account with our API integration. You can sign up for a free trial without a credit card, which allows you to send up to 100 emails per month.

    \n

    Read our Postmark documentation for more details.

    \n

    SparkPost SMTP

    \n

    SparkPost is a transactional email provider that’s trusted by big brands and small businesses. It sends more than 4 trillion emails each year and reports 99.9% uptime. You can get started with the free test account that lets you send up to 500 emails per month.

    \n

    Read our SparkPost documentation for more details.

    \n

    SMTP2GO

    \n

    SMTP2GO is a transactional email provider that offers a robust and reliable email delivery service with global infrastructure, real-time analytics, and advanced security features. If you’re just starting out, you can use SMTP2GO’s free plan to send up to 1000 emails per month.

    \n

    Read our SMTP2GO documentation for more details.

    \n

    Microsoft SMTP (Outlook.com and Office 365)

    \n

    The Microsoft 365 / Outlook mailer is a great choice if you already use Microsoft’s email services (Outlook, Office 365, Microsoft 365, or Hotmail). Due to the fairly complex manual Microsoft App configuration, we recommend the One-Click Setup, which will get you up and running in just a few seconds.

    \n

    Read our Outlook and Microsoft 365 documentation for more details.

    \n

    Amazon SES SMTP

    \n

    Advanced or technical users can harness the power of Amazon AWS (Amazon Web Services) with the Amazon SES mailer. With this integration, you can send a high volume of emails at a very reasonable rate.

    \n

    Read our Amazon SES documentation for more details.

    \n

    Zoho Mail SMTP

    \n

    Send emails using your personal or business Zoho Mail account, all while keeping your login credentials safe.

    \n

    Read our Zoho Mail documentation for more details.

    \n

    Other SMTP

    \n

    WP Mail SMTP plugin also works with all major email services such as Gmail, Yahoo, Outlook, Microsoft Live, and any other email sending service that offers SMTP.

    \n

    You can set the following options:

    \n
      \n
    • Specify an SMTP host.
    • \n
    • Specify an SMTP port.
    • \n
    • Choose SSL / TLS encryption.
    • \n
    • Choose to use SMTP authentication or not.
    • \n
    • Specify an SMTP username and password.
    • \n
    \n

    To see recommended settings for the popular services as well as troubleshooting tips, check out our SMTP documentation.

    \n

    \n
    \nCan I use this plugin to send email via Gmail, G Suite, Outlook.com, Office 365, Hotmail, Yahoo, or AOL SMTP?\n\n

    \n

    Yes! We have extensive documentation that covers setting up SMTP most popular email services.

    \n

    Read our docs to see the correct SMTP settings for each service.

    \n

    \n
    \nHelp! I need support or have an issue.\n\n

    \n

    Please read our support policy for more information.

    \n

    Limited support is available for WP Mail SMTP users via WordPress.org support forums.

    \n

    Email support and set up assistance is available to WP Mail SMTP Pro users.

    \n

    \n
    \nHow can I migrate from a different SMTP plugin to WP Mail SMTP?\n\n

    \n

    Want to switch from your old SMTP plugin to WP Mail SMTP? We made it easy for you to migrate your SMTP settings in one click!

    \n

    WP Mail SMTP will automatically detect your existing SMTP plugin (Easy WP SMTP, FluentSMTP, etc) when you run our easy Setup Wizard. Just click Import to copy your settings over.

    \n

    Our one-click migration tool supports all of these plugins:

    \n
      \n
    • Easy WP SMTP
    • \n
    • FluentSMTP
    • \n
    • Post SMTP Mailer
    • \n
    • SMTP Mailer
    • \n
    • WP SMTP
    • \n
    \n

    \n
    \nIs WP Mail SMTP available in other languages?\n\n

    \n

    We know that majority of people do not speak English, so we professionally translated WP Mail SMTP and WP Mail SMTP Pro into the following languages:

    \n
      \n
    • Spanish (Spain),
    • \n
    • German,
    • \n
    • Portuguese (Brazil),
    • \n
    • Italian,
    • \n
    • French,
    • \n
    • Japanese,
    • \n
    • Polish,
    • \n
    • Dutch,
    • \n
    • Russian,
    • \n
    • Turkish
    • \n
    \n

    \n
    \nHow can I increase plugin security?\n\n

    \n

    The WP Mail SMTP team takes security very seriously. Not only does the plugin follow all security best practices, but we have several options available to ensure your site is safe and secure.

    \n
      \n
    • \n

      Direct SMTP mailer integrations (recommended), such as SendLayer, SMTP.com, Brevo (formerly Sendinblue), Mailgun, SendGrid, Postmark, SparkPost and SMTP2GO, use the official provider APIs. This means you never enter your username or password in the plugin settings and these credentials are not stored in the database. Instead, we use tokens or API keys which are much more secure.

      \n
    • \n
    • \n

      When using Other SMTP mailer, we provide the option to insert your password in your wp-config.php file, so it’s not visible in your WordPress settings or saved in the database.

      \n
    • \n
    \n

    \n
    \nI found a bug, now what?\n\n

    \n

    If you’ve stumbled upon a bug, the best place to report it is in the WP Mail SMTP GitHub repository. GitHub is where the plugin is actively developed, and posting there will get your issue quickly seen by our developers (myself and Slava). Once posted, we’ll review your bug report and triage the bug. When creating an issue, the more details you can add to your report, the faster the bug can be solved.

    \n

    \n
    \nCan you add feature x, y or z to the plugin?\n\n

    \n

    Short answer: maybe.

    \n

    By all means please contact us to discuss features or options you’d like to see added to the plugin. We can’t guarantee to add all of them, but we will consider all sensible requests. We can be contacted here:
    \nhttps://wpmailsmtp.com/contact/.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works, but the vast majority of features are paid

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kazerniel on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Almost every settings page and dropdown menu are greyed out, because pay pay pay us.

    \n\n\n\n

    Plus large upsell banners on various settings pages, it all just feels pushy to the extreme.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy floartgraphy on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s a very good plugin that does what it''s supposed to do. I haven''t had any problems with any site I''ve installed it on. It''s very well-adapted for wordpress, doesn''t conflict with other plugins. Good job!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works perfectly

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fufy on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Works perfectly. Easy setup. Very well documented. Solved my email sending problem.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    WP Mail SMTP simply works

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy 5oclockmktg on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Solved a very frustrating issue with MS/365 and Outlook.com emails from WordPress. Thank you all for this great plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    What a wounderful plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy msdan73 on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It is a very nice plugin.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Mail test button is buried somewhere it can't be found easiiy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy David Favor (dfavor) on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Place the test button on the front page.

    \n\n\n\n

    Don''t flash a message where it''s buried, because the message disappears and can''t be found again.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    WP plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy gregolly on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very good plugin, useful and easy to set up.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Really useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy helenbutt on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I''ve used this on a number of websites alongside Brevo to ensure deliverability of emails and it has worked really well for me. Thank you.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Funktioniert bisher immer

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy eva (evaschild) on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Bereits mehrere andere Plugins ausprobiert und bin wieder zu Mail SMTP zurück gekehrt. Das hat bisher immer funktioniert.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Useless

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy jessebrightman on October 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Useless. Used to actually work

    \n
    \n
    \n", "changelog": "

    4.6.0 – 2025-08-26

    \n
      \n
    • Added: New transactional mailer: Mandrill integration.
    • \n
    • Fixed: References and In-Reply-To email headers are now correctly preserved for API-based mailers.
    • \n
    \n

    4.5.0 – 2025-06-05

    \n
      \n
    • IMPORTANT: Support for PHP 7.2 has been discontinued. If you are running this version, you MUST upgrade PHP before installing or upgrading to WP Mail SMTP v4.5. Failure to do that will disable WP Mail SMTP functionality.
    • \n
    • Added: New transactional mailer: MailerSend integration.
    • \n
    • Fixed: Microsoft Outlook basic auth deprecation notice dismissal.
    • \n
    • Changed: Updated the list of conflicting plugins (added Site Mailer, SureMail, Gravity SMTP).
    • \n
    \n

    4.4.0 – 2025-03-05

    \n
      \n
    • Fixed: Emails queue runner Action Scheduler task deadlock issue.
    • \n
    • Fixed: Undefined array key “wp_mail_smtp_reports_widget_lite” warning in the dashboard widget.
    • \n
    \n

    4.3.0 – 2024-12-11

    \n
      \n
    • Added: New transactional mailer: Elastic Email integration.
    • \n
    • Changed: The “Tools -> Scheduled Actions” menu is now always visible when WooCommerce or the Action Scheduler plugin is active.
    • \n
    • Fixed: SMTP password and username fields ignored WPMS_SMTP_AUTH constant.
    • \n
    \n

    4.2.0 – 2024-11-06

    \n
      \n
    • Added: New transactional mailer: Mailjet integration.
    • \n
    • Changed: Improved security for sensitive data (API keys).
    • \n
    • Fixed: SMTP2GO mailer special characters handling in from name.
    • \n
    \n

    4.1.1 – 2024-08-15

    \n
      \n
    • Changed: Delete wp-mail-smtp uploads folder on plugin uninstall, if the “Misc > Uninstall” option is enabled.
    • \n
    • Changed: Decreased PHPMailer timeout value to 30 seconds from 5 minutes.
    • \n
    • Changed: Improved Weekly Summary Email sending.
    • \n
    • Fixed: Missing Reply-To support in SMTP2GO mailer.
    • \n
    • Fixed: Setup Wizard translations not working correctly.
    • \n
    \n

    4.1.0 – 2024-07-17

    \n
      \n
    • Added: New transactional mailer: SMTP2GO.
    • \n
    • Changed: Recurring email queue tasks are now removed after completion.
    • \n
    • Fixed: Wrong namespace in PHP 8.0x Symfony polyfills.
    • \n
    • Fixed: All pending background tasks are now canceled on plugin deactivation.
    • \n
    \n

    4.0.1 – 2024-02-29

    \n
      \n
    • Added: Optimized Email Sending – move email sending requests in the background process and speed up your site.
    • \n
    • Added: Automatic database table structure migrations after plugin update.
    • \n
    • Changed: Improved error handling when sending emails.
    • \n
    • Fixed: Database error while adding debug events if the wpmailsmtp_debug_events table does not exist.
    • \n
    \n

    3.11.1 – 2024-01-22

    \n
      \n
    • Fixed: Setup Wizard texts.
    • \n
    • Fixed: Compatibility for List-Unsubscribe header.
    • \n
    \n

    3.11.0 – 2023-12-13

    \n
      \n
    • Added: Filter to customize the capability required for managing the plugin.
    • \n
    • Changed: Hide test tab movement notice for new users.
    • \n
    • Changed: Improved keyboard navigation styles for the Setup Wizard.
    • \n
    • Changed: Removed WPMailSMTP\\Admin\\PluginsInstallUpgrader class and switched to the WordPress Core Plugin_Upgrader class.
    • \n
    • Changed: The “From email” dropdown to the input field in the Gmail mailer.
    • \n
    • Fixed: PHP deprecation notices in the Setup Wizard on WordPress 6.4 and above.
    • \n
    • Fixed: Compatibility issue with Action Scheduler lower than 3.3.0.
    • \n
    \n

    3.10.0 – 2023-11-08

    \n
      \n
    • Added: Filter that allows to use your website’s URL for Google OAuth redirect URL.
    • \n
    • Changed: Improve plugin settings UI, by changing checkboxes to toggles and some dividers cleanup.
    • \n
    • Changed: Replaced moment.js library to the WP Core’s bundled one.
    • \n
    • Fixed: Translation strings on the Dashboard widget.
    • \n
    \n

    3.9.0 – 2023-08-30

    \n
      \n
    • Changed: Moved the Email Test tab from the settings page to the tools page.
    • \n
    • Changed: Removed Sendinblue SDK library because it was deprecated.
    • \n
    • Changed: Mailgun API instructions.
    • \n
    • Fixed: Debug Event details popup scrolling.
    • \n
    • Fixed: Conflict with other plugins (Alt Manager) that made the WP Plugins install page unusable.
    • \n
    \n

    3.8.2 – 2023-07-20

    \n
      \n
    • Changed: Improved notifications formatting and styles.
    • \n
    • Changed: Sendinblue rebranded to Brevo.
    • \n
    • Fixed: Explicitly set “Content-Type” header for the HTML test email.
    • \n
    \n

    3.8.0 – 2023-04-26

    \n
      \n
    • IMPORTANT: Support for PHP 5.6, 7.0, and 7.1 has been discontinued. If you are running one of those versions, you MUST upgrade PHP before installing or upgrading to WP Mail SMTP v3.8. Failure to do that will disable WP Mail SMTP functionality.
    • \n
    • Changed: Updated Moment.js library to 2.29.4.
    • \n
    • Changed: Removed unneeded sodium_compat library.
    • \n
    • Fixed: Email address with apostrophes in the Email Test page.
    • \n
    • Fixed: Review request notice display on subsites admin area in WP Multisite installation.
    • \n
    • Fixed: Setup Wizard playing UA anthem for certain WP sites.
    • \n
    \n

    3.7.0 – 2022-12-15

    \n
      \n
    • Changed: Improved Action Scheduler data cleanup on plugin uninstall.
    • \n
    • Changed: Improved performance for database table validation checks.
    • \n
    • Fixed: Tasks meta database table error.
    • \n
    • Fixed: Gmail mailer authorization error if the oAuth app already had other non mail scopes attached.
    • \n
    • Fixed: Email address validation in Setup wizard.
    • \n
    • Fixed: Removed unneeded composer libraries autoload code.
    • \n
    • Fixed: Conflict detection for plugin Sendinblue – WooCommerce Email Marketing (v3.0+)
    • \n
    \n

    3.6.1 – 2022-10-06

    \n
      \n
    • Added: The wp_mail function call backtrace to the Debug Events if the “Debug Email Sending” option is enabled.
    • \n
    • Added: Plugin’s DB tables re-creation process in WP Site Health.
    • \n
    • Added: Debug Events retention period setting.
    • \n
    • Changed: Updated the list of conflicting plugins (added Zoho Mail).
    • \n
    • Changed: Improved conflicting plugins’ admin notices (display multiple at once)
    • \n
    • Changed: Switched to the WP Core function is_email for verifying email addresses.
    • \n
    • Changed: Improved the detection if wp_mail function is overwritten.
    • \n
    • Fixed: Gmail mailer not using the correct From Email Address in Domain Checker.
    • \n
    • Fixed: Setup Wizard steps navigation, when going backwards.
    • \n
    \n

    3.5.2 – 2022-08-17

    \n
      \n
    • Fixed: The check if wp_mail function is overwritten on Windows servers.
    • \n
    \n

    3.5.1 – 2022-07-14

    \n
      \n
    • Changed: Removed MailPoet from the list of conflicting plugins.
    • \n
    • Fixed: PHP warning for undefined variable when using the Default (none) mailer.
    • \n
    \n

    3.5.0 – 2022-07-14

    \n
      \n
    • Added: Check if wp_mail function is overwritten.
    • \n
    • Added: DB table (wpmailsmtp_tasks_meta) cleanup after scheduled actions execution. Keeps DB size small.
    • \n
    • Changed: Updated the list of conflicting plugins (added Branda and MailPoet).
    • \n
    • Changed: Updated Action Scheduler library to 3.4.2.
    • \n
    • Fixed: SMTP.com mailer email content-encoding.
    • \n
    • Fixed: Dashboard widget graph when there is no email logs data.
    • \n
    • Fixed: Missing Sendinblue email body WP filter.
    • \n
    • Fixed: Chart.js library conflicts with other plugins.
    • \n
    \n

    3.4.0 – 2022-04-27

    \n
      \n
    • Added: New transactional mailer: SendLayer integration.
    • \n
    • Changed: Improved Mailgun API error message extraction.
    • \n
    • Changed: Standardized error messages format and improved WP remote request errors extraction.
    • \n
    • Fixed: Lite plugin uninstall actions clearing plugin options while Pro version is active.
    • \n
    • Fixed: Hiding unrelated network admin notices on WP Mail SMTP pages.
    • \n
    \n

    3.3.0 – 2022-02-17

    \n
      \n
    • IMPORTANT: Support for WordPress versions 5.1.x or lower has been discontinued. If you are using one of those versions, you MUST upgrade WordPress before installing or upgrading to WP Mail SMTP v3.3. Failure to do that will disable WP Mail SMTP functionality.
    • \n
    • Added: PHP 8.1 compatibility.
    • \n
    • Changed: Updated the list of conflicting plugins (added FluentSMTP and WP HTML Mail).
    • \n
    • Changed: Improved debug error message for the Other SMTP mailer in Debug Events.
    • \n
    • Changed: Updated Action Scheduler library to 3.4.0.
    • \n
    • Changed: Improved Action Scheduler performance.
    • \n
    • Fixed: PHP deprecated notices in Sendinblue library (PHP 7.4+).
    • \n
    • Fixed: DB tables row in Site Health Info section is now private.
    • \n
    • Fixed: Debug Events’ screen options visible on general Tools page.
    • \n
    • Fixed: Screen Options right alignment.
    • \n
    \n

    3.2.1 – 2021-11-17

    \n
      \n
    • Fixed: PHP 8 compatibility when existing Gmail mailer connection is revoked.
    • \n
    \n

    3.2.0 – 2021-11-11

    \n
      \n
    • Added: New transactional mailer – SparkPost integration.
    • \n
    • Added: One-click migration from FluentSMTP plugin.
    • \n
    • Added: Plugin constants integration in Setup Wizard.
    • \n
    • Fixed: Early plugin deactivation issue with activity log plugins.
    • \n
    \n

    3.1.0 – 2021-09-28

    \n
      \n
    • Added: New transactional mailer – Postmark integration.
    • \n
    • Added: Support for string attachments (added via PHPMailer object).
    • \n
    • Changed: Improved Email Source detection in Debug Events for WP Core sent emails.
    • \n
    • Changed: Improved uninstall process. It now removes all plugin DB data and tables.
    • \n
    • Fixed: Email Source detection in Debug Events for file paths with backslashes.
    • \n
    • Fixed: Blurry image assets in Weekly Email Summary.
    • \n
    • Fixed: PHP extension mb_strings not polyfilled correctly.
    • \n
    • Fixed: Added missing is_email_sent filters for Sendinblue, Mailgun, and Gmail mailers.
    • \n
    • Fixed: Debug Events double-entry DB save, because of a bug in is_email_sent method for certain mailers.
    • \n
    \n

    3.0.3 – 2021-08-09

    \n
      \n
    • Fixed: Weekly Summary Email sending when migration code didn’t trigger yet.
    • \n
    \n

    3.0.2 – 2021-08-05

    \n
      \n
    • Fixed: Fatal PHP error on WP version 5.2 and lower (missing wp_timezone function).
    • \n
    \n

    3.0.1 – 2021-08-05

    \n
      \n
    • Added: Weekly Email Summary – email sending statistics sent to your inbox.
    • \n
    • Added: Debug Events – logging all email sending errors and debug events.
    • \n
    • Added: Quick admin area links.
    • \n
    • Changed: Updated the successful Email Test screen.
    • \n
    • Changed: Updated Action Scheduler library to 3.2.1.
    • \n
    • Fixed: WP core admin spinner for the dashboard widget.
    • \n
    • Fixed: PHP error when objects implementing __invoke() method were used as hook callbacks for admin notices.
    • \n
    \n", "description": "

    WordPress Mail SMTP Plugin

    \n

    Is your WordPress site not sending emails? You’re not alone. 3+ million websites use WP Mail SMTP to send emails reliably.

    \n

    Our goal is to make email deliverability easy so that your emails always reach the inbox.

    \n

    WP Mail SMTP fixes your email deliverability issues by reconfiguring WordPress to use a proper SMTP provider when sending emails.

    \n

    Best of all, our easy-to-use Setup Wizard and detailed documentation guide you through the process.

    \n

    WP Mail SMTP is free and has everything you need to reliably send your WordPress emails!

    \n

    WP Mail SMTP Pro unlocks even more powerful features like email logging, advanced email reporting and stats, backup connections, email alerts, smart conditional routing, and much more.

    \n

    \n

    What is SMTP?

    \n

    SMTP (Simple Mail Transfer Protocol) is an industry-standard for sending emails. Proper SMTP configuration helps increase email deliverability by adding authentication to the emails sent from your site.

    \n

    Popular email clients like Gmail, Yahoo, Office 365, and Zoho are in a constant battle with email spammers, so they check whether emails are originating from a genuine sender. If the proper authentication isn’t there, emails either go in the SPAM folder or, worse, disappear.

    \n

    This is a problem for a lot of WordPress sites. By default, WordPress uses the PHP mail function to send emails generated by WordPress or any contact form plugin like WPForms.

    \n

    But most WordPress hosting companies don’t have their servers properly configured for sending PHP emails.

    \n

    This is why WordPress emails aren’t delivered.

    \n

    How does WP Mail SMTP work?

    \n

    WP Mail SMTP plugin easily resolves email delivery problems by changing the way your WordPress site sends email. We reconfigure the wp_mail() function to use proper SMTP host credentials or an SMTP mail provider.

    \n

    With our built-in SMTP mail provider integrations (recommended), emails are sent using the provider’s direct API. Even if your web host is blocking SMTP ports, your emails will still be sent successfully.

    \n

    This helps you fix all WordPress not sending email issues.

    \n

    WP Mail SMTP plugin includes many different SMTP mailers:

    \n
      \n
    1. SendLayer (#1 Recommended)
    2. \n
    3. SMTP.com (Recommended)
    4. \n
    5. Brevo (formerly Sendinblue) SMTP (Recommended)
    6. \n
    7. Gmail SMTP (Gmail, Google Workspace, G Suite)
    8. \n
    9. Elastic Email
    10. \n
    11. Mailgun SMTP
    12. \n
    13. Mailjet SMTP
    14. \n
    15. SendGrid SMTP
    16. \n
    17. Postmark SMTP
    18. \n
    19. SparkPost SMTP
    20. \n
    21. SMTP2GO
    22. \n
    23. Microsoft SMTP One-Click Setup (Outlook.com and Office 365) [Pro]
    24. \n
    25. Amazon SES SMTP [Pro]
    26. \n
    27. Zoho Mail SMTP [Pro]
    28. \n
    29. Other SMTP
    30. \n
    \n

    For most options, you can specify the “from name” and “email address” for outgoing emails too.

    \n

    All of these powerful features make WP Mail SMTP the best SMTP solution for WordPress.

    \n

    If you don’t know which mailer to choose, see our Complete Guide to WP Mail SMTP Mailers.

    \n

    SendLayer

    \n

    SendLayer is our #1 recommended transactional email service.

    \n

    Its affordable pricing and simple setup make it the perfect choice for sending emails from WordPress. It also has open and click tracking and email logs.

    \n

    SendLayer is reliable, fast, and easy to set up. You can send hundreds of emails for free when you sign up for a trial.

    \n

    Read our SendLayer documentation for more details.

    \n

    SMTP.COM

    \n

    SMTP.com is a recommended transactional email service.

    \n

    With over 22 years of email delivery expertise, SMTP.com has a reputation for being one of the most reliable senders on the internet.

    \n

    You can start sending emails in minutes and benefit from 50,000 free emails in your first 30 days.

    \n

    Read our SMTP.com documentation for more details.

    \n

    Brevo (formerly Sendinblue) SMTP

    \n

    Brevo is a recommended transactional email service. It serves 80,000+ companies worldwide.

    \n

    Brevo is reliable, fast, and gives you 300 free emails per day.

    \n

    Read our Brevo documentation for more details.

    \n

    WP Mail SMTP PRO

    \n

    In addition to native Microsoft, Amazon SES, and Zoho Mail integrations, WP Mail SMTP Pro provides access to many other powerful features.

    \n

    Click here to purchase WP Mail SMTP Pro now!

    \n

    Email Log

    \n

    Email logging is a powerful feature that keeps a record of all sent emails in WordPress. Email logging helps you to archive, audit, resend, or test email delivery and formatting.

    \n

    Our WordPress email logs also include:

    \n

    Email Log Details

    \n

    Our email logs provide a complete history of all emails sent from WordPress. View the subject, sender, recipients, content, headers, open and click rates, delivery status, source plugin, and more!

    \n

    Resend Emails

    \n

    Resend emails individually or in bulk, whether they failed or were delivered successfully. You can also forward important emails to an alternative email address.

    \n

    And many more Email Log Features

    \n

    Store all email attachments, export email logs, print emails, see delivery status, and more.

    \n

    Email Reports

    \n

    Review weekly sent and failed emails in a dashboard chart.

    \n

    Email reports make it easy to track deliverability and engagement. Open rates and click-through rates are grouped by subject line, making it easy to see the performance of your campaigns or notifications.

    \n

    Weekly Email Summary

    \n

    Get statistics about WordPress emails, including how many emails are being sent and which ones are being opened and clicked. The Summary also shows you deliverability statistics without the need to log in to WordPress to check them.

    \n

    Track Email Opens and Clicks

    \n

    View open and click stats for WordPress emails, grouped by subject line in your Email Report.

    \n

    Email Alerts

    \n

    If your emails stop sending, get notified instantly via Slack, Microsoft Teams, Discord, SMS/ Twilio, webhooks, or email (via secure API).

    \n

    In combination with our email logging and resending features, Email Alerts ensure that no important email will ever be lost.

    \n

    Backup Connection

    \n

    Configure an extra connection that kicks in if your primary connection fails. WP Mail SMTP automatically detects connection issues and automatically switches to the backup mailer. It will also automatically retry emails that failed.

    \n

    Smart Conditional Routing

    \n

    Create criteria to send different types of emails using different mailers. Filter by the contents of the email Subject or Message, From or To addresses, the plugin that generated the email, and more.

    \n

    This allows you to mix transactional and marketing providers to improve deliverability.

    \n

    Rate Limiting

    \n

    Control the number of emails your WordPress site sends in a specific amount of time so you stay within your SMTP provider’s rate limits.

    \n

    WP Mail SMTP allows you to specify the maximum number of emails that will be sent every minute, hour, day, week, or month and automatically queues emails to stay within those limits.

    \n

    Optimized Email Sending

    \n

    Are emails slowing down your site? Let WP Mail SMTP queue your emails for better performance.

    \n

    With optimized sending, emails are queued in the background and sent when your server has sufficient resources, avoiding bottlenecks that can slow down your site.

    \n

    Manage WordPress Emails and Notifications

    \n

    Control the default notifications WordPress sends. Use a simple switch to disable specific types of notifications if you don’t want to receive them.

    \n

    WordPress Multisite

    \n

    WordPress Multisite Network Settings

    \n

    For users running a multisite network, save time with a centralized location to easily configure your SMTP settings for all sites.

    \n

    Manage Multisite Email Logs Easily

    \n

    Network Admins can view and manage email logs for subsites with easy switching and dashboard views.

    \n

    Expert Support

    \n

    We provide limited support on the WordPress.org forums. World-class one-on-one email support is available to WP Mail SMTP Pro users.

    \n

    White Glove Setup

    \n

    If you’re not sure how to fix your emails, sit back and relax. We’ll set up WP Mail SMTP for you!

    \n

    White Glove Setup includes installation, configuration in WordPress, DNS configuration, full mailer setup, and testing. White Glove Setup is available for our recommended mailers: SendLayer, Brevo, and SMTP.com.

    \n

    Credits

    \n

    WP Mail SMTP plugin was originally created by Callum Macdonald. It is now owned and maintained by the team behind WPForms – the best drag & drop form builder for WordPress.

    \n

    You can try the free version of WPForms plugin to see why it’s the best in the market.

    \n", "screenshots": "
    1. \"WP

      WP Mail SMTP Settings page

    2. \"List

      List of mailers with Other SMTP settings example

    3. \"Backup

      Backup Connection (Pro)

    4. \"Setup

      Setup Wizard - Select your mailer

    5. \"Setup

      Setup Wizard - Example mailer settings

    6. \"Email

      Email Test page

    7. \"Email

      Email Log settings page (Pro)

    8. \"Email

      Email Controls settings page (Pro)

    9. \"Email

      Email Log archive page (Pro)

    10. \"Email

      Email Log single page (Pro)

    11. \"Email

      Email Reports - Email Log statistics grouped by email subject (Pro)

    12. \"Email

      Email Log bulk Export (Pro)

    13. \"Email

      Email Alerts - Get notified about failed emails (Pro)

    14. \"Additional

      Additional Connections - List of connections (Pro)

    15. \"Additional

      Additional Connections - Configuration page (Pro)

    16. \"Smart

      Smart Routing - Conditional logic for email sending (Pro)

    ", "installation": "
      \n
    1. Install WP Mail SMTP by WPForms either via the WordPress.org plugin repository or by uploading the files to your server. (See instructions on how to install a WordPress plugin)
    2. \n
    3. Activate WP Mail SMTP by WPForms.
    4. \n
    5. Navigate to the Settings area of WP Mail SMTP in the WordPress admin.
    6. \n
    7. Choose your SMTP option (SendLayer, SMTP.com, Brevo (formerly Sendinblue), Gmail SMTP, Elastic Email, Mailgun SMTP, Mailjet, SendGrid SMTP, Postmark, SparkPost, SMTP2GO, or Other SMTP) and follow the instructions to set it up.
    8. \n
    9. Need more help? Get support with WP Mail SMTP PRO.
    10. \n
    \n"}, "versions": {"0.4": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.4.zip", "0.6": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.6.zip", "0.7": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.zip", "0.3.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.3.1.zip", "0.3.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.3.2.zip", "0.4.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.4.1.zip", "0.4.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.4.2.zip", "0.5.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.5.0.zip", "0.5.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.5.1.zip", "0.5.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.5.2.zip", "0.8.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.2.zip", "0.8.3": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.3.zip", "0.8.4": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.4.zip", "0.8.5": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.5.zip", "0.8.6": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.6.zip", "0.8.7": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.8.7.zip", "0.9.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.0.zip", "0.9.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.9.6.zip", "1.0.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.0.2.zip", "1.1.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.2.5.zip", "1.3.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.3.3.zip", "1.4.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.4.2.zip", "1.5.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.5.2.zip", "1.6.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.6.0.zip", "1.6.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.6.2.zip", "1.7.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.7.1.zip", "1.8.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.8.1.zip", "1.9.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.1.9.0.zip", "2.0.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.0.1.zip", "2.1.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.1.1.zip", "2.2.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.2.1.zip", "2.3.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.5.1.zip", "2.6.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.6.0.zip", "2.7.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.7.0.zip", "2.8.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.8.0.zip", "2.9.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.2.9.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.0.3.zip", "3.1.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.1.0.zip", "3.2.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.2.1.zip", "3.3.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.4.0.zip", "3.5.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.5.2.zip", "3.6.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.6.1.zip", "3.7.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.7.0.zip", "3.8.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.8.0.zip", "3.8.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.8.2.zip", "3.9.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.9.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.0.1.zip", "4.1.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.1.1.zip", "4.2.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.2.0.zip", "4.3.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.3.0.zip", "4.4.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.4.0.zip", "4.5.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.5.0.zip", "4.6.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.6.0.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-mail-smtp.zip", "0.10.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.10.0.zip", "0.10.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.10.1.zip", "0.11.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.11.1.zip", "0.11.2": "https://downloads.wordpress.org/plugin/wp-mail-smtp.0.11.2.zip", "3.10.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.10.0.zip", "3.11.0": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.11.0.zip", "3.11.1": "https://downloads.wordpress.org/plugin/wp-mail-smtp.3.11.1.zip"}, "downloaded": 71356427, "description": "

    WordPress Mail SMTP Plugin

    \n

    Is your WordPress site not sending emails? You’re not alone. 3+ million websites use WP Mail SMTP to send emails reliably.

    \n

    Our goal is to make email deliverability easy so that your emails always reach the inbox.

    \n

    WP Mail SMTP fixes your email deliverability issues by reconfiguring WordPress to use a proper SMTP provider when sending emails.

    \n

    Best of all, our easy-to-use Setup Wizard and detailed documentation guide you through the process.

    \n

    WP Mail SMTP is free and has everything you need to reliably send your WordPress emails!

    \n

    WP Mail SMTP Pro unlocks even more powerful features like email logging, advanced email reporting and stats, backup connections, email alerts, smart conditional routing, and much more.

    \n

    \n

    What is SMTP?

    \n

    SMTP (Simple Mail Transfer Protocol) is an industry-standard for sending emails. Proper SMTP configuration helps increase email deliverability by adding authentication to the emails sent from your site.

    \n

    Popular email clients like Gmail, Yahoo, Office 365, and Zoho are in a constant battle with email spammers, so they check whether emails are originating from a genuine sender. If the proper authentication isn’t there, emails either go in the SPAM folder or, worse, disappear.

    \n

    This is a problem for a lot of WordPress sites. By default, WordPress uses the PHP mail function to send emails generated by WordPress or any contact form plugin like WPForms.

    \n

    But most WordPress hosting companies don’t have their servers properly configured for sending PHP emails.

    \n

    This is why WordPress emails aren’t delivered.

    \n

    How does WP Mail SMTP work?

    \n

    WP Mail SMTP plugin easily resolves email delivery problems by changing the way your WordPress site sends email. We reconfigure the wp_mail() function to use proper SMTP host credentials or an SMTP mail provider.

    \n

    With our built-in SMTP mail provider integrations (recommended), emails are sent using the provider’s direct API. Even if your web host is blocking SMTP ports, your emails will still be sent successfully.

    \n

    This helps you fix all WordPress not sending email issues.

    \n

    WP Mail SMTP plugin includes many different SMTP mailers:

    \n
      \n
    1. SendLayer (#1 Recommended)
    2. \n
    3. SMTP.com (Recommended)
    4. \n
    5. Brevo (formerly Sendinblue) SMTP (Recommended)
    6. \n
    7. Gmail SMTP (Gmail, Google Workspace, G Suite)
    8. \n
    9. Elastic Email
    10. \n
    11. Mailgun SMTP
    12. \n
    13. Mailjet SMTP
    14. \n
    15. SendGrid SMTP
    16. \n
    17. Postmark SMTP
    18. \n
    19. SparkPost SMTP
    20. \n
    21. SMTP2GO
    22. \n
    23. Microsoft SMTP One-Click Setup (Outlook.com and Office 365) [Pro]
    24. \n
    25. Amazon SES SMTP [Pro]
    26. \n
    27. Zoho Mail SMTP [Pro]
    28. \n
    29. Other SMTP
    30. \n
    \n

    For most options, you can specify the “from name” and “email address” for outgoing emails too.

    \n

    All of these powerful features make WP Mail SMTP the best SMTP solution for WordPress.

    \n

    If you don’t know which mailer to choose, see our Complete Guide to WP Mail SMTP Mailers.

    \n

    SendLayer

    \n

    SendLayer is our #1 recommended transactional email service.

    \n

    Its affordable pricing and simple setup make it the perfect choice for sending emails from WordPress. It also has open and click tracking and email logs.

    \n

    SendLayer is reliable, fast, and easy to set up. You can send hundreds of emails for free when you sign up for a trial.

    \n

    Read our SendLayer documentation for more details.

    \n

    SMTP.COM

    \n

    SMTP.com is a recommended transactional email service.

    \n

    With over 22 years of email delivery expertise, SMTP.com has a reputation for being one of the most reliable senders on the internet.

    \n

    You can start sending emails in minutes and benefit from 50,000 free emails in your first 30 days.

    \n

    Read our SMTP.com documentation for more details.

    \n

    Brevo (formerly Sendinblue) SMTP

    \n

    Brevo is a recommended transactional email service. It serves 80,000+ companies worldwide.

    \n

    Brevo is reliable, fast, and gives you 300 free emails per day.

    \n

    Read our Brevo documentation for more details.

    \n

    WP Mail SMTP PRO

    \n

    In addition to native Microsoft, Amazon SES, and Zoho Mail integrations, WP Mail SMTP Pro provides access to many other powerful features.

    \n

    Click here to purchase WP Mail SMTP Pro now!

    \n

    Email Log

    \n

    Email logging is a powerful feature that keeps a record of all sent emails in WordPress. Email logging helps you to archive, audit, resend, or test email delivery and formatting.

    \n

    Our WordPress email logs also include:

    \n

    Email Log Details

    \n

    Our email logs provide a complete history of all emails sent from WordPress. View the subject, sender, recipients, content, headers, open and click rates, delivery status, source plugin, and more!

    \n

    Resend Emails

    \n

    Resend emails individually or in bulk, whether they failed or were delivered successfully. You can also forward important emails to an alternative email address.

    \n

    And many more Email Log Features

    \n

    Store all email attachments, export email logs, print emails, see delivery status, and more.

    \n

    Email Reports

    \n

    Review weekly sent and failed emails in a dashboard chart.

    \n

    Email reports make it easy to track deliverability and engagement. Open rates and click-through rates are grouped by subject line, making it easy to see the performance of your campaigns or notifications.

    \n

    Weekly Email Summary

    \n

    Get statistics about WordPress emails, including how many emails are being sent and which ones are being opened and clicked. The Summary also shows you deliverability statistics without the need to log in to WordPress to check them.

    \n

    Track Email Opens and Clicks

    \n

    View open and click stats for WordPress emails, grouped by subject line in your Email Report.

    \n

    Email Alerts

    \n

    If your emails stop sending, get notified instantly via Slack, Microsoft Teams, Discord, SMS/ Twilio, webhooks, or email (via secure API).

    \n

    In combination with our email logging and resending features, Email Alerts ensure that no important email will ever be lost.

    \n

    Backup Connection

    \n

    Configure an extra connection that kicks in if your primary connection fails. WP Mail SMTP automatically detects connection issues and automatically switches to the backup mailer. It will also automatically retry emails that failed.

    \n

    Smart Conditional Routing

    \n

    Create criteria to send different types of emails using different mailers. Filter by the contents of the email Subject or Message, From or To addresses, the plugin that generated the email, and more.

    \n

    This allows you to mix transactional and marketing providers to improve deliverability.

    \n

    Rate Limiting

    \n

    Control the number of emails your WordPress site sends in a specific amount of time so you stay within your SMTP provider’s rate limits.

    \n

    WP Mail SMTP allows you to specify the maximum number of emails that will be sent every minute, hour, day, week, or month and automatically queues emails to stay within those limits.

    \n

    Optimized Email Sending

    \n

    Are emails slowing down your site? Let WP Mail SMTP queue your emails for better performance.

    \n

    With optimized sending, emails are queued in the background and sent when your server has sufficient resources, avoiding bottlenecks that can slow down your site.

    \n

    Manage WordPress Emails and Notifications

    \n

    Control the default notifications WordPress sends. Use a simple switch to disable specific types of notifications if you don’t want to receive them.

    \n

    WordPress Multisite

    \n

    WordPress Multisite Network Settings

    \n

    For users running a multisite network, save time with a centralized location to easily configure your SMTP settings for all sites.

    \n

    Manage Multisite Email Logs Easily

    \n

    Network Admins can view and manage email logs for subsites with easy switching and dashboard views.

    \n

    Expert Support

    \n

    We provide limited support on the WordPress.org forums. World-class one-on-one email support is available to WP Mail SMTP Pro users.

    \n

    White Glove Setup

    \n

    If you’re not sure how to fix your emails, sit back and relax. We’ll set up WP Mail SMTP for you!

    \n

    White Glove Setup includes installation, configuration in WordPress, DNS configuration, full mailer setup, and testing. White Glove Setup is available for our recommended mailers: SendLayer, Brevo, and SMTP.com.

    \n

    Credits

    \n

    WP Mail SMTP plugin was originally created by Callum Macdonald. It is now owned and maintained by the team behind WPForms – the best drag & drop form builder for WordPress.

    \n

    You can try the free version of WPForms plugin to see why it’s the best in the market.

    \n", "donate_link": "", "num_ratings": 4941, "screenshots": {"1": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-1.png?rev=2834385", "caption": "WP Mail SMTP Settings page"}, "2": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-2.png?rev=2834385", "caption": "List of mailers with Other SMTP settings example"}, "3": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-3.png?rev=2834385", "caption": "Backup Connection (Pro)"}, "4": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-4.png?rev=2715420", "caption": "Setup Wizard - Select your mailer"}, "5": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-5.png?rev=2715420", "caption": "Setup Wizard - Example mailer settings"}, "6": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-6.png?rev=2834385", "caption": "Email Test page"}, "7": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-7.png?rev=2834385", "caption": "Email Log settings page (Pro)"}, "8": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-8.png?rev=2834385", "caption": "Email Controls settings page (Pro)"}, "9": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-9.png?rev=2834385", "caption": "Email Log archive page (Pro)"}, "10": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-10.png?rev=2834385", "caption": "Email Log single page (Pro)"}, "11": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-11.png?rev=2578698", "caption": "Email Reports - Email Log statistics grouped by email subject (Pro)"}, "12": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-12.png?rev=2578698", "caption": "Email Log bulk Export (Pro)"}, "13": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-13.png?rev=2834385", "caption": "Email Alerts - Get notified about failed emails (Pro)"}, "14": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-14.png?rev=2834385", "caption": "Additional Connections - List of connections (Pro)"}, "15": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-15.png?rev=2834385", "caption": "Additional Connections - Configuration page (Pro)"}, "16": {"src": "https://ps.w.org/wp-mail-smtp/assets/screenshot-16.png?rev=2834385", "caption": "Smart Routing - Conditional logic for email sending (Pro)"}}, "support_url": "https://wordpress.org/support/plugin/wp-mail-smtp/", "contributors": {"smub": {"avatar": "https://secure.gravatar.com/avatar/5c6a49f4f13fc4cdabc66ce7b1caec12755fe628d90039c0e112654f80e50193?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/smub/", "display_name": "Syed Balkhi"}, "slaffik": {"avatar": "https://secure.gravatar.com/avatar/1d442bc94c6f4198991d0886f34c9d6482710d5a15ad5e358ef802e2a41818be?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/slaffik/", "display_name": "Slava Abakumov"}, "wpforms": {"avatar": "https://secure.gravatar.com/avatar/7fb6cd90cbb1ee023c8c977fdbf7a3d719607d75d998a3a54642fe19cbd87896?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpforms/", "display_name": "WPForms"}, "capuderg": {"avatar": "https://secure.gravatar.com/avatar/7f3dce4f4cf2b11cb8652edba21dd6171ad81c4acd28fd5728f012e38e6d658f?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/capuderg/", "display_name": "Gregor Capuder"}, "jaredatch": {"avatar": "https://secure.gravatar.com/avatar/e48b918fcf7b3ef806516402e3b78524138f1a0c713fe5c0d835a7b6d8ae35a2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/jaredatch/", "display_name": "Jared Atchison"}}, "last_updated": "2025-08-29 7:57am GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.6.0.zip", "author_profile": "https://profiles.wordpress.org/smub/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 4000000, "aspiresync_meta": {"id": "019a30bf-fe98-702f-ba65-93200e35b954", "name": "WP Mail SMTP by WPForms – The Most Popular SMTP and Email Log Plugin", "slug": "wp-mail-smtp", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1756454220, "version": "4.6.0"}, "support_threads": 33, "requires_plugins": [], "short_description": "Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, SendGrid, Mailgun, SES, Zoho, + more. Rated #1 WordPress SMTP Email plugin.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 28}'); -INSERT INTO public.plugins VALUES ('019a30c1-681b-73d1-bcce-fe3be4518396', 'wp-multibyte-patch', 'WP Multibyte Patch', 'Multibyte functionality enhancement for the WordPress Japanese package.', '

    Multibyte functionality enhancement for the WordPress Japanese package.
    -日本語の説明を読む

    -', '2.9.2', 'Seisuke Kuraishi', '5.2', NULL, '6.8.3', 'https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.9.2.zip', '2011-07-14 00:00:00+00', '2025-04-14 15:11:00+00', 'https://profiles.wordpress.org/tenpura/', 100, 23, 0, 0, 1000000, 7334500, 'https://eastcoder.com/code/wp-multibyte-patch/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/wp-multibyte-patch/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WP Multibyte Patch", "slug": "wp-multibyte-patch", "tags": {"i18n": "i18n", "japanese": "Japanese", "multibyte": "multibyte", "wp-multibyte-patch": "wp-multibyte-patch"}, "added": "2011-07-14", "icons": {"default": "https://s.w.org/plugins/geopattern-icon/wp-multibyte-patch.svg"}, "author": "Seisuke Kuraishi", "rating": 100, "status": "open", "tested": "6.8.3", "banners": [], "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 23}, "version": "2.9.2", "homepage": "https://eastcoder.com/code/wp-multibyte-patch/", "requires": "5.2", "sections": {"reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    MUST HAVE for Japanese sites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy skillsharejp on May 4, 2022\t\t\t

    \n\t\t
    \n\t
    \n\t
    MUST HAVE plugin if you use Japanese on your sites!
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wordpress 5以降でも必須

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy armdroid on December 31, 2019\t\t\t

    \n\t\t
    \n\t
    \n\t
    Wordpress5からデフォルトでなくなったので「もういらない」と思ったら大間違い。\n現在でも日本語ファイルのアップロードなどでも困らないように対処してくれます。
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    とりあえずで入れている

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy nosann on February 28, 2019\t\t\t

    \n\t\t
    \n\t
    \n\t
    最新のバージョンにも対応しているのでとりあえず入れて使ってる\nこのプラグインでエラーの原因になった覚えはないし\nサポートされ続ける限り入れたままにするだろう
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Susumu Seino (musus) on June 19, 2018\t\t\t

    \n\t\t
    \n\t
    \n\t
    It was a great plugin in Japanese.
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    使わせて頂いています。

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy itigo100 on January 7, 2018\t\t\t

    \n\t\t
    \n\t
    \n\t
    有用なプラグインを開発して頂いてありがとうございます。
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Not bad

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy larrysmorgan37 on December 24, 2017\t\t\t

    \n\t\t
    \n\t
    \n\t
    Insightful
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Thanks You!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kutsu on October 13, 2017\t\t\t

    \n\t\t
    \n\t
    \n\t
    いつも大変お世話になってます!ありがとうございます!
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy megane9988 on September 15, 2017\t\t\t

    \n\t\t
    \n\t
    \n\t
    Thanks ありがとうございます。
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    thakns a lot!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Sai (saimelt) on July 9, 2017\t\t\t

    \n\t\t
    \n\t
    \n\t
    thank you always for everything!(いつもありがとうございます、活用させていただいています!)
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    ありがとうございます

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ryow30 on July 9, 2017\t\t\t

    \n\t\t
    \n\t
    \n\t
    日本語でWordPressが使えるのも WP MultiByte Patch があってこそ。\n開発いただきありがとうございます。
    \n
    \n", "description": "

    Multibyte functionality enhancement for the WordPress Japanese package.
    \n日本語の説明を読む

    \n", "installation": "
      \n
    1. Upload the wp-multibyte-patch folder to the /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the Plugins menu in WordPress.
    4. \n
    \n"}, "versions": {"1.5": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.9.zip", "2.0": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.0.zip", "2.2": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.4.zip", "2.5": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.5.zip", "2.6": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.6.zip", "2.7": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.7.zip", "2.8": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.zip", "2.9": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.9.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.4.2.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.5.1.zip", "1.6.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.1.6.4.zip", "2.1.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.1.1.zip", "2.3.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.3.1.zip", "2.8.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.8.5.zip", "2.9.1": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.9.2.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.zip"}, "downloaded": 7334500, "description": "

    Multibyte functionality enhancement for the WordPress Japanese package.
    \n日本語の説明を読む

    \n", "donate_link": "", "num_ratings": 23, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/wp-multibyte-patch/", "contributors": {"tenpura": {"avatar": "https://secure.gravatar.com/avatar/17def5dd78fa60b396713eb0d40c53961f9e6193e3f3ccf2a44b5abd34c9acd9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/tenpura/", "display_name": "Seisuke Kuraishi"}}, "last_updated": "2025-04-14 3:11pm GMT", "preview_link": "", "requires_php": false, "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.9.2.zip", "author_profile": "https://profiles.wordpress.org/tenpura/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fea8-7228-8714-e8ef96f1c9af", "name": "WP Multibyte Patch", "slug": "wp-multibyte-patch", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1744643460, "version": "2.9.2"}, "support_threads": 0, "requires_plugins": [], "short_description": "Multibyte functionality enhancement for the WordPress Japanese package.", "author_block_count": 0, "author_block_rating": 100, "commercial_support_url": "", "support_threads_resolved": 0}'); -INSERT INTO public.plugins VALUES ('019a30c1-6823-7043-9c2b-6d683ba4ca30', 'wp-optimize', 'WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance', 'Get caching and more with this powerful cache plugin. Cache, optimize images, clean your database and minify for maximum performance.', '

    MORE THAN A CACHING PLUGIN

    -

    WP-Optimize is trusted by more than 1 million WordPress website owners to boost performance and reduce page load times to improve your site’s user experiences and SERP rankings in Google.

    -

    It does this in four clever ways:

    -

    1. It caches your site

    -

    Caching is the process of storing a temporary HTML version of your site on the server so it can be retrieved more quickly for the user.

    -

    It’s a sure-fire way to ensure web pages load at lightning-fast speed. Turn it on in just one click.

    -

    2. It compresses images

    -

    Large images can really impact page speed load times. WP-Optimize makes it easy to identify and compress images to your preferred lossy / lossless settings in a couple of clicks.

    -

    3. It cleans the database

    -

    Your WordPress database stores everything that you need, plus some things that you don’t. WP-Optimize cleans and optimizes the database to speed up your site and save server resources.

    -

    4. It minifies

    -

    On top of its three main features, WP-Optimize Cache also has the more advanced minification feature.

    -

    Together with caching, minification dramatically improves performance and page speed load time.

    -

    1. CACHE YOUR SITE

    -

    Turn on caching in just one click:

    -

    WP-Optimize automatically and optimally configures itself for your WordPress site. Turn it on in one-click or refine its settings if you prefer.

    -

    More cache features:

    -
      -
    • -

      Cache preloading: This feature emulates a visit to your site, meaning cached files are served straight away, speeding up your site from the very first visit.

      -
    • -
    • -

      GZIP Compression: When the server isn’t configured to do so, WP-Optimize delivers HTML, CSS and JS files to the user’s browser as smaller, compressed files, reducing the size of pages and style sheets by up to 90%!

      -
    • -
    • -

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster [Premium].

      -
    • -
    -

    Use cache settings to:

    -
      -
    • -

      Serve cached content to logged in users: Turn this on if content stays the same for logged in users (or turn on and exclude URLs where content does change e.g. my account areas).

      -
    • -
    • -

      Exclude content from cache: Exclude by URL, conditional tags, browser agent strings or list cookies that should prevent caching when set (advanced user settings).

      -
    • -
    • -

      Deliver device-specific cache: Serve separate cache files to desktop and mobile devices . This ensures that responsive features e.g. desktop and mobile menus are cached separately and served correctly.

      -
    • -
    • -

      User per role cache: Useful if your website delivers different content to different user roles. e.g. an e-commerce site that displays different content to resellers or consumers [Premium].

      -
    • -
    • -

      User specific cache: Serves separate cache files to individual users. Useful for websites with personalised content e.g. Learning management systems [Premium].

      -
    • -
    • -

      Cache purging permissions: Select which user roles are allowed to purge the cache e.g. admin only or perhaps a ‘teacher’ role in an LMS setting only [Premium].

      -
    • -
    -

    2. COMPRESS IMAGES

    -
      -
    • -

      Lossy or lossless compression options: Choose between maximum space saving, best image quality or somewhere in-between.

      -
    • -
    • -

      WebP conversion: Recommended by Google, WebP can achieve up to 34% smaller file sizes compared to JPEG and up to 26% compared to PNG.

      -
    • -
    • -

      Auto-compress: Check a box and every new image you upload will automatically be compressed to your preferred lossy / lossless settings.

      -
    • -
    • -

      Bulk compression: Compress every existing image on your site with the press of a button.

      -
    • -
    • -

      Restore original: Gone too far? Revert images back to their original in one click.

      -
    • -
    • -

      Retain EXIF image data: Check a box to retain EXIF image data during compression.

      -
    • -
    • -

      Lazy Load: Webpages load much faster by loading web parts gradually, when they’re needed vs simultaneous loading of everything, all at once [Premium].

      -
    • -
    • -

      Delete orphaned images: Identify and delete unused images from your WordPress website, saving disk space [Premium].

      -
    • -
    • -

      Delete unused image sizes: WordPress creates multiple sizes for every uploaded image causing the uploads folder to become bloated. Scan for image sizes not in use and remove them to save further disk space [Premium].

      -
    • -
    -

    3. CLEAN AND OPTIMIZE THE DATABASE

    -

    Cleans-up database tables, post revisions, auto draft posts, trashed posts, spam, trashed comments and more. Choose what to optimize or it’s one click to clean out the lot.

    -
      -
    • -

      Schedule clean-ups: So you can set and forget. Choose from daily, weekly, fortnightly or monthly.

      -
    • -
    • -

      Flexible clean-up schedules: You may wish to optimize database tables more frequently than you remove unapproved comments (for example). Choose the specific time and day when tasks should run [Premium].

      -
    • -
    • -

      Retain a set number of weeks’ data during clean-ups: Just in case you need to retrieve something.

      -
    • -
    • -

      Back up before clean-ups: If you delete something you shouldn’t, restore it in a couple of clicks with UpdraftPlus.

      -
    • -
    • -

      Power tweak – Turbo boost for WooCommerce: Unique to WP-Optimize, this power tweak boosts performance by replacing a slow query in WooCommerce with two much more efficient queries. E-commerce sites transacting high numbers of orders stand to gain here [Premium].

      -
    • -
    • -

      Power tweak – Boost performance by indexing the postmeta table: This unique power tweak works by allowing the WordPress postmeta table to be indexed, improving performance [Premium].

      -
    • -
    -

    4. MINIFY AND COMBINE HTML, CSS AND JAVASCRIPT

    -
      -
    • -

      Minify in just one click: Minifies HTML, JavaScript and CSS. Toggle on or off or customise each one under ‘settings’.

      -
    • -
    • -

      Customise minification: Minify only (removing unnecessary code e.g line breaks and white spacing) or minify and merge. Apply the same or different settings to HTML, CSS and JavaScript.

      -
    • -
    • -

      Asynchronous loading: Choose non-critical CSS and JavaScript files to load in the background and independently of other resources e.g. analytics or pixel scripts. Loading asynchronously eliminates render blocking and improves page speed.

      -
    • -
    • -

      Exclude files from being minified: Specify CSS and JavaScript files to exclude from minification.

      -
    • -
    • -

      Optimize fonts: Optimize Font Awesome and Google Fonts. Inline the font files, inherit from CSS settings or load CSS / Javascript asynchronously instead.

      -
    • -
    • -

      Preload assets: WP-Optimize visits each web page on your site so the code is minified and preloaded for real life users, right from their very first visit.

      -
    • -
    • -

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster.

      -
    • -
    -

    WHY WP-OPTIMIZE?

    -
      -
    • It’s brought to you by TeamUpdraft, the team behind the world’s most trusted backup, migration and restoration plugin.
    • -
    • It’s easy to use.
    • -
    • It packs a punch for a free plugin.
    • -
    -

    WP-Optimize brings the best cache and optimization technology together into one single, seamless plugin to make your WordPress site fast, lean and efficient.

    -

    PREMIUM FEATURES AT A GLANCE

    -

    Our free version of WP-Optimize Cache is great, but we also have an even more powerful Premium version with extra features that offer the ultimate in freedom and flexibility:

    -
      -
    • Multisite Support: extends database optimisations so they function for multiple WordPress sites at a time. If you manage more than one website, you will need WP-Optimize Cache Premium.
    • -
    • Flexibility and Control: gives you the power to optimize select individual tables or a particular combination of tables on one or more WordPress websites, rather than having to optimize all database tables.
    • -
    • Deleting unused and unwanted images: removes orphaned images from your WordPress site, plus images of a certain, pre-defined size.
    • -
    • Sophisticated Scheduling: offers a wide range of options for scheduling automatic optimization. Specify an exact time and run clean-ups daily, weekly, fortnightly or monthly and perform any number of additional once off optimizations.
    • -
    • Seamless Graphical User Interface: for superb clarity in scheduling and managing of multi-site optimizations.
    • -
    • WP-CLI support: provides a way to manage optimizations from command-line interface if you have lots of sites
    • -
    • Lazy Loading: load only the images and part of a web-page when it is visible to the user so they can see something very quickly.
    • -
    • Optimization Preview: gives users the ability to preview, select and remove data and records available for optimization from the database.
    • -
    • Preload key requests: preload assets such as web fonts and icon fonts, as recommended by Google PageSpeed Insights.
    • -
    • Premium support – caching is one of the most complex things you can do for a website, so premium support offers you peace of mind there’s someone to talk quickly to if you need any technical answers or help configuring the optimizations of cache settings for your website.
    • -
    -

    Translations

    -

    Translators are welcome to contribute to the plugin. Please use the WordPress translation website.

    -', '4.3.0', 'David Anderson / Team Updraft', '4.9', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/wp-optimize.4.3.0.zip', '2009-01-21 00:00:00+00', '2025-09-24 22:29:00+00', 'https://profiles.wordpress.org/davidanderson/', 96, 2508, 32, 22, 1000000, 51272106, 'https://teamupdraft.com/wp-optimize', 'https://david.dw-perspective.org.uk/donate', NULL, NULL, 'https://wordpress.org/support/plugin/wp-optimize/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance", "slug": "wp-optimize", "tags": {"cache": "cache", "minify": "minify", "caching": "caching", "image-cache": "image cache", "performance-cache": "performance cache"}, "added": "2009-01-21", "icons": {"1x": "https://ps.w.org/wp-optimize/assets/icon-128x128.png?rev=1552899", "2x": "https://ps.w.org/wp-optimize/assets/icon-256x256.png?rev=1552899"}, "author": "David Anderson / Team Updraft", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-optimize/assets/banner-772x250.png?rev=2125385", "high": "https://ps.w.org/wp-optimize/assets/banner-1544x500.png?rev=2125385"}, "ratings": {"1": 84, "2": 24, "3": 23, "4": 75, "5": 2302}, "version": "4.3.0", "homepage": "https://teamupdraft.com/wp-optimize", "requires": "4.9", "sections": {"faq": "\n
    \nIsn’t it better to use a dedicated caching plugin to cache my site?\n\n

    \n

    We’ve built WP-Optimize Cache around the most advanced and powerful caching technology. Our caching tests and feedback from real-world users show that the caching feature alone can make your site faster than any other cache plugin or optimization. See these speed test results.

    \n

    \n
    \nIs optimizing my database safe?\n\n

    \n

    Yes; optimizing does not involve any “tricks” or poking around in dangerous ways. It involves running routine clean-up operations using well-defined, common MySQL commands. Nevertheless, we always recommend backups, which cover every possibility; not just database malfunctions, but hackers, human errors, etc. We recommend UpdraftPlus.

    \n

    \n
    \nWhat savings can I expect to make?\n\n

    \n

    This is a “how long is string?” sort of question. It depends completely on your site – how big it is, how many users interact on it, how long it has been running, and when you last optimised it. However, the savings and speed-ups can be substantial; it is always worth making sure that your database is optimised.

    \n

    \n
    \nHow do I get support?\n\n

    \n

    In our support forum, here: https://wordpress.org/support/plugin/wp-optimize/

    \n

    \n
    \nWP-Optimize does not make large savings on my database\n\n

    \n

    This is rare; it’s probably because you’re with a shared web hosting company that doesn’t allow scripts to run an optimize command via SQL statements (SQL “OPTIMIZE” instruction). Please consult your web hosting company on this matter.

    \n

    \n
    \nIs the plugin tried and tested?\n\n

    \n

    Yes – WP-Optimize Cache is WordPress’s #1 most-installed optimisation plugin, with over 800,000 users and a pedigree going back over 8 years.

    \n

    \n
    \nDoes WP-Optimize support InnoDB tables?\n\n

    \n

    WP-Optimize will disable some features if it detects InnoDB tables. Optimization of the database tables on-disk is not available, but other clean up features would work.

    \n

    \n
    \nCan you help me restore my database?\n\n

    \n

    Not unless you have an existing backup. Please ensure that you make a backup of your entire database before using WP-Optimize for the first time, and when you upgrade to a major new version of it. We recommend UpdraftPlus.

    \n

    \n
    \nAre there any bugs in this plugin?\n\n

    \n

    The plugin is an ongoing work; that means that it is impossible to rule out unforeseen situations and bugs. So I would recommend you to test it out on your local system or make a backup of your database (just to be extra careful).

    \n

    \n
    \nHow do I stop transient options from coming back automatically each time I clear them?\n\n

    \n

    When WordPress uses a particular transient, that specific transient is re-created automatically. So, it’s normally for ones which are in active use to gradually re-appear. The best way to keep things optimal is to clear the transient options on a scheduled basis. For example, WordPress may create 50 transient option in a week. If you schedule WP-Optimize Cache to clear these options on a weekly basis, you’ll have far fewer building up.

    \n

    \n
    \nThe table size shows wrong / Not optimizing\n\n

    \n

    Please check your database for corrupted tables. That can happen, usually your web hosting company can run the repair command on the db.

    \n

    \n
    \nWhich WordPress and PHP versions are supported?\n\n

    \n

    To use all features in the plugin, a minimum of version WordPress 4.9 with PHP 7.2 are required. But we do recommend to use the latest version of WordPress. Using PHP 7.2+ is also highly recommended, as our caching feature will work even faster.

    \n

    \n
    \nWhich optimisation will make the biggest difference?\n\n

    \n

    This depends on your setup (theme, number and quality of plugins used, etc…), but generally, caching will make the biggest visible difference to your website’s performance. Indeed, the cache functionality bypasses most of WordPress code to serve your pre-optimised cached pages directly to your visitor, significantly increasing the speed.

    \n

    \n
    \nWhat is caching, or page caching?\n\n

    \n

    “Caching”, from Wikipedia: “In computing, a cache is a hardware or software component that stores data so that future requests for that data can be served faster; the data stored in a cache might be the result of an earlier computation or a copy of data stored elsewhere. A cache hit occurs when the requested data can be found in a cache, while a cache miss occurs when it cannot.” — WP-Optimize cache does this by saving the page computed by WordPress on the disk. When a user visits a page, WP-Optimize will serve the cached page before WordPress is loaded. If the page wasn’t cached before, it will be computed by WordPress, and WP-Optimize will then save the result to the cache.

    \n

    \n
    \nWhy should I use a caching plugin on my website?\n\n

    \n

    You think your site is fast without caching? A caching plugin will make your website even faster. A faster cached website will increase SEO, it will improve your visitors experience. Caching will also save your server’s resources.

    \n

    \n
    \nIs the WP-Optimize page cache compatible with Gutenberg and WordPress 5.0+?\n\n

    \n

    Yes, your Gutenberg pages will be cached, as well as those created with page builder plugins such as Elementor.

    \n

    \n
    \nHow do I know my webpage is being cached (or why it isn’t)?\n\n

    \n

    If cache is enabled, and in order to see if your page is cached, use the “View Source” function in your web browser to view the page source. To find caching information, scroll down to the bottom, and you should see a line added by the cache: <!-- Cached by WP Optimize - https://teamupdraft.com/wp-optimize/ - Last modified: Sat, 20 Jul 2019 21:17:19 GMT ->
    \nHowever, note that if you are using a further service that minifies HTML (e.g. Cloudflare), then this line may have been removed. Another method is to inspect the contents of the directory wpo-cache inside your wp-content directory. <a href=”https://teamupdraft.com/documentation/wp-optimize/topics/caching/faqs/how-do-i-know-my-webpage-is-being-cached/>Further information can be read here
    \nAlso note that if you do not preload the cache, a page or post will have to be visited once for the cache file to be generated.

    \n

    \n
    \nHow do I configure the page cache?\n\n

    \n

    Go to WP-Optimize -> Cache and enable caching. For most people, that will be enough. If you run an e-commerce, have a custom login page or any page that has dynamic content, you might want to exclude certain urls from the cache. Visit documentation for help.

    \n

    \n
    \nIs the caching feature compatible with e-commerce plugins?\n\n

    \n

    Yes, caching with WP-Optimize Cache allows you to safely cache your products, with plugins like WooCommerce or Easy Digital Downloads, or any e-commerce that uses DONOTCACHEPAGE to exclude sensitive pages from caching (e.g. my account, cart or checkout pages).

    \n

    \n
    \nIs the caching feature compatible with multilingual plugins?\n\n

    \n

    Yes, WP-Optimize works with popular multilingual plugins like WPML or Polylang. However, it’s important to note that when using WP-Optimize with multilingual plugins, the URL format for different languages should not include any query parameters, for example https://example.com/?lang=en. Instead, it should be in a pretty permalink format, such as https://example.com/en.

    \n

    \n
    \nDo I need a special setup to use the caching feature?\n\n

    \n

    No, if WordPress works properly, WP-Optimize will be able to cache your pages and posts.

    \n

    \n
    \nCan I use the page caching feature together with another cache plugin?\n\n

    \n

    No, because both cache plugins would need to use the drop-in plugin advanced-cache.php. If you turn off caching on WP-Optimize Cache, you can use any other caching plugin and still use the other features of WP-Optimize. But we do recommend using our caching solution.

    \n

    \n
    \nIs WP-Optimize caching compatible with Cloudflare?\n\n

    \n

    Yes! No special cache configuration is needed. Page caching on the WP site (that done by WP-Optimize Cache) is independent of proxy caching (e.g. Cloudflare) – you can use both, or neither, and they will complement each other and not interfere.
    Just one thing to note – Cloudflare will strip out the special HTML comment at the bottom of the source of a page that is helpful to confirm that page caching is working, so, don’t be confused by that – it’s absence doesn’t indicate the cache is not working.

    \n

    \n
    \nCan I empty the cache automatically when performing a custom action?\n\n

    \n

    Yes, you can trigger a cache purge action using WP-Optimize Cache public functions. If you want to clear the whole cache, use the function wpo_cache_flush(). If you want to clear the cache files for a specific page or post, use WPO_Page_Cache::delete_single_post_cache($post_id);. Those cache options are available after WP action plugins_loaded.

    \n

    \n
    \nWill the comments work even when page caching is enabled?\n\n

    \n

    Yes, when using WordPress’ commenting system, your users will still be able to post comments. Every time a comment is approved, the cache for that page or post will be cleared, allowing the next visitor to see an up to date list of comments.

    \n

    \n
    \nWhat is “cache preloading”?\n\n

    \n

    Usually, a page is cached when a user visits it. So the first user visiting won’t be served a cached version of the page, and will wait longer than the next users. The cache preloading functionality will go through all your pages and posts, and simulate a visit by a user, allowing WP-Optimize to cache the pages before anyone visits them. Your first visitor will thus be served a cached version of the page, increasing its performance.

    \n

    \n
    \nWhat frequency should I choose for the cache preloading schedule?\n\n

    \n

    Choosing a frequency for the cache preloading schedule will depend on factors such as the frequency at which the website content is updated, the number of pages in the cache, the resources of the server and more.
    \nFor example a site with hundreds of pages will require more resources to preload its cache. So choosing a high frequency will mean that the cache will be recreated often, and the resource usage will be higher.
    \nOn a website where updates aren’t as frequent, you can even disable the cache preloading schedule, or set a high cache lifespan and set the cache preloading schedule to follow it.

    \n

    \n
    \nHow do I cache only the home page?\n\n

    \n

    Add /.+ to the cache option “URLs to exclude from cache” on the advanced settings tab.

    \n

    \n
    \nHow do I prevent WP-Optimize Cache from caching a certain page\n\n

    \n

    To prevent a page from being cached, you can add the URL to the field “URLs to exclude from cache” in the cache “Advanced settings” tab. If you are developing a plugin and want to prevent a page from being cached, you can define the “DONOTCACHEPAGE” constant on the pages you need. Any request where “DONOTCACHEPAGE” is defined will not be cached.

    \n

    \n
    \nIs the caching feature of WP-Optimize free?\n\n

    \n

    Yes the caching feature is free. You will always be able to cache your website for free using WP-Optimize and we are constantly working on improving the existing cache feature. We will add more caching options to the free version and develop more specific caching options in the premium version to enable you to taylor the caching functionality to your needs.

    \n

    \n
    \nWhere does WP-Optimize Cache store the cached files?\n\n

    \n

    The cached files are stored in the common “wp-content/cache” folder, inside a “wpo-cache” folder. Removing the “cache” folder will delete all of WP-Optimize’s cache, as well as those from other plugins.
    \nDeleting the “cache” folder is generally safe, as those cached files will be regenerated.

    \n

    \n
    \nHow do I disable caching?\n\n

    \n

    Go to WP-Optimize settings > Cache and toggle the “Enable page caching” option to on/off.

    \n

    \n
    \nWill caching slow down my server?\n\n

    \n

    No, caching will actually reduce the load on your server, by reducing the amount of PHP and mysql used. You might see a peak in resource usage when using the cache preloader, as this functionality will create the cache files for all your pages in a short amount of time. But once this is done, performance should increase and the load on your server will decrease. Every single major site uses caching to serve cached pages faster by using fewer resources.

    \n

    \n
    \nCan I make certain parts of the page stay dynamic when cache is enabled?\n\n

    \n

    The cached page is sent to the user before most of WordPress was loaded. The plugins aren’t loaded yet, making it impossible for them to change the cached content at every request.
    \nSo at the moment if you want to keep parts of your page dynamic (e.g. adverts, widgets, shopping cart…) AND keep it cached, you will have to use custom solutions using javascript and AJAX to fetch those dynamic parts from the server.

    \n

    \n
    \nHow do I delete the WP_CACHE define from wp-config.php?\n\n

    \n

    WP-Optimize Cache will remove the “WP_CACHE” constant from wp-config.php when you disable page caching, or when you deactivate the cache plugin. If you need to remove it manually, you can use FTP to edit wp-config.php and delete the line define (‘WP_CACHE’, true );
    \nIf page caching is still enabled in the settings, WP-Optimize Cache will attempt to add the line again, as it is required for the caching functionality to work.

    \n

    \n
    \nMy filesystem is not writable to increase security. What do I need to do to make it compatible with the caching functionality?\n\n

    \n

    WP-Optimize caching feature needs write access to the ‘wp-content/cache’ folder, as this is where the cache files will be stored. It also needs to define the constant ‘WP_CACHE’ in ‘wp-config.php’, it will need access once to ‘wp-content/advanced-cache.php’, as well as to the folder ‘wp-content/wpo-cache’ to write the cache settings.

    \n

    \n
    \nHow do I change file permissions?\n\n

    \n

    If you need to change file permissions to enable caching, you can follow the instructions on this page https://wordpress.org/support/article/changing-file-permissions/

    \n

    \n
    \nWhat is the maximum number of pages I can cache?\n\n

    \n

    There is no limit to the number of pages you can cache. The only limit is the space on your server and the maximum number of subdirectories allowed by your server, as caching will write files in subdirectories following the permalink structure.
    \nIf you were to reach a caching limit, it probably means that your server is not fit for the size of your website and caching needs.

    \n

    \n
    \nHow do I serve cached pages to people using a phone or tablet?\n\n

    \n

    You can generate a separate cache by selecting “Generate separate files for mobile devices” in the page cache settings. This cache setting is only necessary if you use a specific theme for mobile devices, or for certain AMP plugins.

    \n

    \n
    \nDoes WP-Optimize Cache work with Nginx?\n\n

    \n

    Yes, the cache feature works with Nginx. Should you want to enable browser caching or GZIP compression, you will have to do this yourself directly on the server settings.

    \n

    \n
    \nDoes caching work with Windows Server (IIS) ?\n\n

    \n

    Yes, the cache feature works with IIS. As with Nginx, if you need to enable browser caching or GZIP compression, you will have to do this yourself on the server.

    \n

    \n
    \nDoes the WP-Optimize page cache work with non-pretty (query parameter-based) permalinks?\n\n

    \n

    No. It’s necessary to have pretty permalinks of the type http://xxxxx.com/my-post/ rather than http://xxxxx.com/?p=1234 for cache to work. Pretty permalinks are the WordPress default setting, and there is no good reason to turn them off, so you should not have a problem with this.
    \nNote that cache will work with permalinks including /index.php/. It is only those based upon query parameters (?…) where cache won’t work.

    \n

    \n
    \nWhen does WP-Optimize clear the page cache?\n\n

    \n

      \n
    • When you publish new content or update/edit existing content, the cache for that post/page will be cleared.
    • \n
    • Changing/updating current themes and parent themes (of child themes) will purge the cache.
    • \n
    • When turning off the cache feature in WP-Optimize
    • \n
    \n

    \n
    \nWill pages in the WP admin dashboard be cached?\n\n

    \n

    No, WP dashboard pages are not cached. The cache functionality is only meant to cache frontend pages.

    \n

    \n
    \nWhat is cache lifespan?\n\n

    \n

    The cache lifespan is the time a cached file will be kept before being regenerated.
    \nOne of the main reason for setting a lifespan to your cache is that some plugins and themes use nonces, which are printed in the source code of the page (Read more about nonces here). These nonces cannot be reused and are valid for 12 hours by default (developers can change that value). The cache plugin will store the nonce in the page, and this one will become invalid after that perdiod of time, which can affect certain functionalities of your plugins and themes. Setting a cache lifespan to under 10 hours ensures the cache is flushed automatically before the nonce expires. This way you can use WP-Optimize’s cache feature on sites which use nonces.
    \nAn other reason is that you may want your pages to reflect some changes without having to clear the whole cache. Indeed if you have many pages and posts, you might not want to clear every cache file with every change, but rather set an interval at which they will expire and be regenerated.

    \n

    \n
    \nWhat value should the cache lifespan be?\n\n

    \n

    A lower cache lifespan value will result in more frequent cache update activity on your server, and thus more preload processes, if activated.
    \nIf your site does not use nonces, and your site’s cache doesn’t need to be updated often, you can set the cache lifespan to a high value or to 0 to give it an infinite lifespan.
    \nThe cache lifespan option is set to 10 hours by default, but you may go down to 8 or even less.
    \nIf you notice any issues due to high server load, set a higher interval for the preloader.

    \n

    \n
    \nCan WP-Optimize Cache minify JavaScript, CSS and HTML?\n\n

    \n

    Yes, the newly added Minify enables you to minify JavaScript and CSS. It also enables you to minify HTML.

    \n

    \n
    \nWhy minify my WordPress site?\n\n

    \n

    WP-Optimize Cache’s Minify feature is all about increasing the speed of your WordPress site for your users.
    \nOne way Minify does this is by reducing the size of your HTML, CSS and JavaScript files by removing unnecessary spaces and lines from the files and shortening long names internally within the code.
    \nAnother way is that your files are merged into as few files as possible. This reduces the amount of load on your web server and can be quicker to load fewer files.
    \nYou can also defer the loading of any CSS or JavaScript file. This means any large or extraneous CSS or JavaScript file can be loaded independently from the core of your WordPress site; giving your users quicker access to your site.

    \n

    \n
    \nWhat does “Reset the minified files” actually do?\n\n

    \n

    Pressing the “Reset the minified files” does:
    \n* delete the temporary files used when generating the minified assets
    \n* delete old minified files (more than 30 days old)
    \n* add a folder for the new minified files, which will be generated when visiting a page
    \nThe previously minified CSS files will remain on the server until they expire, or until they’re deleted using the button “Delete all the files generated by minify”.

    \n

    \n
    \nCan I defer CSS and JavaScript using WP-Optimize Cache?\n\n

    \n

    Yes, the newly added minification feature (a.k.a. Minify) allows you to defer parsing of JavaScript and CSS.

    \n

    \n
    \nGoogle’s PageSpeed Insights says to leverage the font-display CSS feature to ensure text is user-visible while webfonts are loading. Can WP-Optimize Cache do that?\n\n

    \n

    Leveraging the font-display CSS feature is currently possible when using Google Fonts. The default parameter is “swap”, but can be changed using the WordPress filter “wpo_minify_gfont_display_type”.

    \n

    \n
    \nWhen enabling minify, my site’s layout is broken. How can I fix it?\n\n

    \n

    This usually means one or more of your CSS files are incompatible with the minification or merging process. It can also be caused by errors in the CSS’s syntax.
    \nYou can check the CSS’s syntax by using an online CSS syntax checker such as csslint.net.
    \nIf your syntax is not causing the issue, or you cannot change the file with an issue, you can either exclude the problematic CSS files from the minification and merging process.
    \nTo exclude individual CSS files from the minification and merging process, you can go to WP-Optimize > Minify > CSS and go to the “Exclude the following CSS files from processing” section.

    \n

    \n
    \nWhen enabling minify, some functionality is broken. How can I fix it?\n\n

    \n

    This usually means one or more of your JavaScript files are incompatible with the minification or merging process. It can also be caused by errors in the JavaScript’s syntax.
    \nThe first thing to try is to enable the setting “Contain each included file in its own block” in the JavaScript options (WP-Optimize > Minify > Javascript > JavaScript options). This could “catch” an error, and prevent the rest of the code to be broken.
    \nIf the first option didn’t work, try disabling merging of JavaScript files.
    \nIf none of the above works, disable processing of JavaScript files in the minify settings, and open a support thread with details about your issue. We’ll do our best to help you troubleshoot the issue.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    easy to handle

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dr-motte (dr. motte) on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    WP-Optimize is a great plugin for my self hosted wordpress website. it can handle security, speed and optimisation like compress images, minify code, cache, website performance, database, and more. i will delete other plugins for it. thank you very much.
    i am very happy -> drmotte.de

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A versatile, well-designed plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy room34 on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I try to avoid overloading the sites I build with a lot of plugins. I''ve got a carefully curated short list of plugins I rely on for every site, and this is one of them. I really like the fact that this plugin includes database optimization, caching, and image compression features all in one well-designed and easy-to-use interface. A must-have plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    🌟 5-Star Review: WP-Optimize – The Magic Plugin for Your Website's Speed!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iMedia stores (imediastores) on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    \n\n\n\n

    I just had to share my amazing experience with the WP-Optimize plugin, which has made a dramatic difference in my website''s performance! If you are looking for a simple and effective way to turbocharge your WordPress site, I highly recommend this plugin.🚀 Why I Recommend WP-Optimize:

    \n\n\n\n
      \n
    • Noticeable Speed Boost: After using the plugin to clean and optimize my database, I immediately noticed a significant improvement in page loading speed. The site feels much lighter and more responsive.
    • \n\n\n\n
    • Comprehensive Database Cleanup: The most valuable feature for me is its ability to thoroughly clean the database, removing unnecessary post revisions, transient data, and other clutter that quietly slows down your site.
    • \n\n\n\n
    • Ease of Use: The interface is incredibly user-friendly. Anyone, even beginners, can use it and apply the necessary optimizations with just a single click. No complex technical expertise is required.
    • \n\n\n\n
    • Valuable Extra Features: The plugin also offers excellent options for image compression and caching, which complement the optimization process and ensure the best possible performance.
    • \n
    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very easy to use and works perfect

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Christer Edman (cremaninnovation) on October 23, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I have been using it for a year now and it is stable and working perfect!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Pretty good

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Vishy Moghan on October 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It would be 5 stars if they removed this subscription nonsense. Tech companies need to realise that if Adobe goes down it''s at least 80% because of that stupid decision. No one like buying things and not owning them outright.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy kiprokoparis on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Perfect to gain control over your database weight

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Good plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dareko on October 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It works smoothly

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Работает

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fedor77 on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Пользуюсь больше года.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    very helpful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mykha on October 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    very helpful

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent Choice

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy fabwolf (936awdiary) on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Very happy with this plugin and its reliable service!

    \n
    \n
    \n", "changelog": "

    4.3.0 – 22/Sep/2025

    \n
      \n
    • FEATURE: Premium – Cache – Cache REST API requests
    • \n
    • FEATURE: Premium – Further reduce CSS files sizes by removing unused CSS rules
    • \n
    • FIX: Added backward compatibility for timezone and datetime functions and improved status report support for older WordPress versions like 4.9.
    • \n
    • FIX: PHP Warning file_exists(): open_basedir restriction in effect
    • \n
    • FIX: Prevented buffer initialization during wp-cron when HTML DOM is unavailable.
    • \n
    • REFACTOR: Database – Table Usage – Refactored execute_query_analysis() function
    • \n
    • TWEAK: Added new UpdraftCentral endpoints
    • \n
    • TWEAK: Enhanced multisite support: added performance widget to Network Dashboard and fixed sub-site widgets to show only site-specific 404 request counts.
    • \n
    • TWEAK: Fix external loading of Gtag analytics script
    • \n
    • TWEAK: Moved the tooltip tag outside the tag
    • \n
    • TWEAK: Performance – 404 Detector (Not Found Requests) added a button to clear all logs.
    • \n
    • TWEAK: Publishing a post or custom post type (CPT) no longer clears the cache of all posts of the same type.
    • \n
    • TWEAK: Removed return statements from constructors and added checks at the point of class instantiation.
    • \n
    • TWEAK: Smush – Enhanced compatibility and performance with EWWW Image Optimizer installed
    • \n
    • TWEAK: Premium – Added cache support for Nelio A/B Testing plugin
    • \n
    • TWEAK: Added a hook to trigger custom code when a page is not cached
    • \n
    \n

    4.2.4 – 30/Jul/2025

    \n
      \n
    • FIX: Potential PHP fatal error when no site is selected during database optimization in multisite
    • \n
    • FIX: Issue where the database optimization spinner remained indefinitely active
    • \n
    • FIX: PHP 8.4 compatibility warnings
    • \n
    • FIX: Minify default exclusions fatal error
    • \n
    • FIX: Premium – Potential PHP fatal error – type hinting error in the database table usage feature
    • \n
    • FIX: Premium – Page cache and lazy load meta boxes no longer display on post edit screen when their respective options are disabled
    • \n
    • FIX: Only purge relevant files when a published post is saved; also purge the author archive cache upon post save
    • \n
    • FIX: Premium – Fixed compatibility of Table usage with WordPress versions earlier than 5.3
    • \n
    • REFACTOR: Premium – Database – Table Usage – added missed translation functions
    • \n
    • TWEAK: Purged content will preload only when cache is enabled, and the user-agent has been updated to a modern browser and OS version
    • \n
    • TWEAK: Update seasonal advert banner logos, texts and links
    • \n
    • TWEAK: Update plugin readme text and links
    • \n
    • TWEAK: Premium – Cache – Add UI element to ignore query variables
    • \n
    • TWEAK: Premium – Database – Table Usage – replaced loading state with native modal
    • \n
    • TWEAK: Removed seasonal discount ads except Black Friday
    • \n
    \n

    4.2.3 – 15/Jul/2025

    \n
      \n
    • FIX: Cache – Resolved PHP warning caused by excessively long cache file names
    • \n
    • FIX: Corrected typo from meta data to metadata
    • \n
    • FIX: Cron reschedule event error for hook wpo_prune_404_log when is_minimum_requirement_met is false
    • \n
    • FIX: Premium – Fixed a rare PHP warning that could occur when saving a post
    • \n
    • FIX: Unused image – incorrect image filtering in multisite
    • \n
    • FIX: WP Remote sync conflict caused in v4.2.1 and v4.2.2 By replacing wp_salt with core PHP functions
    • \n
    • FIX: YouTube lazy-load – Thumbnail image now falls back to JPG if browser doesn’t support WebP
    • \n
    • FIX: WebP images were not being served in Firefox on certain environments
    • \n
    • TWEAK: 404 detector logs URLs on mobile screens goes out of viewport fixed.
    • \n
    • TWEAK: CSS Improvements, better font size handling, remove duplication, and SASS instead of import
    • \n
    • TWEAK: Delay YouTube preview image cache purging
    • \n
    • TWEAK: Display notice when server does not allow database optimizations
    • \n
    • TWEAK: Enhanced database optimization compatibility with jQuery 4
    • \n
    • TWEAK: Fixed incorrect transients count in database optimizations UI
    • \n
    • TWEAK: Improved sanitization of incoming data in Updraft_Smush_Manager_Commands
    • \n
    • TWEAK: Minify – Improved compatibility with Divi theme’s dynamically generated assets
    • \n
    • TWEAK: Multisite corrected site count in database optimizations UI.
    • \n
    • TWEAK: Preserve EXIF data is set to false by default in all places at codebase level.
    • \n
    • TWEAK: Update URLs of links and images to point to https://teamupdraft.com
    • \n
    \n

    4.2.2 – 02/June/2025

    \n
      \n
    • FIX: Cache – Resolved unwanted output in WP-CLI and fatal error related to WooCommerce’s country-specific files, introduced in v4.2.0
    • \n
    • TWEAK: Premium – Cache – Compatibility with WordPress 6.8
    • \n
    \n

    4.2.1 – 05/May/2025

    \n
      \n
    • FIX: Cache – Compatibility issue with other plugins due to late start of output buffering
    • \n
    • TWEAK: Improved array handling in get_active_plugins(), potentially avoiding edge-case fatal error
    • \n
    \n

    4.2.0 – 01/May/2025

    \n
      \n
    • SECURITY: On multisite installs (only), a logged-in site administrator could use an unsanitised parameter to inject unwanted content into SQL queries. Thanks to Marc Montpas for the responsible disclosure.
    • \n
    • FEATURE: Premium – Replace YouTube Iframes with preview images to improve page speed
    • \n
    • FIX: Fix conflict with the WPML plugin
    • \n
    • FIX: Smush – Fixed PHP warning on the Media Library page
    • \n
    • FIX: Smush – Fixed issue where the Smush popup would freeze
    • \n
    • FIX: WebP images not served after WP-Optimize reactivation
    • \n
    • REFACTOR: Smush option removed from media upload modal
    • \n
    • TWEAK: Update advert banner logos, texts and links
    • \n
    • TWEAK: Add missing separator between compression items in media library
    • \n
    • TWEAK: Avoid PHP warning thrown by Page Speed Ninja plugin
    • \n
    • TWEAK: Cache – Start caching after plugins loaded
    • \n
    • TWEAK: Fix PHP deprecation warning in PHPSQLParser for PHP 8.4
    • \n
    • TWEAK: Fix deprecation warning in Updraft_Logger class for PHP 8.4
    • \n
    • TWEAK: Fixes absence of checkbox to remove all transients
    • \n
    • TWEAK: Premium – Support and feedback links in Help tab now point to getwpo.com
    • \n
    \n

    4.1.1 – 05/Mar/2025

    \n
      \n
    • FIX: Page builders not working with Delay JS option enabled
    • \n
    \n

    4.1.0 – 03/Mar/2025

    \n
      \n
    • FEATURE: Premium – Improve performance by caching Gravatar images locally.
    • \n
    • FIX: Premium – Unused images – Fixed warnings when moving non existing image to trash
    • \n
    \n

    4.0.1 – 17/Feb/2025

    \n
      \n
    • FIX: File system usage issue
    • \n
    \n

    4.0.0 – 10/Feb/2025

    \n
      \n
    • FEATURE: Delay JavaScript execution
    • \n
    • FIX: Cache – Fixed PHP warning “Cannot modify header information”
    • \n
    • FIX: Minify – Unusual behavior occurs when the “Disable Google Fonts processing” option is enabled
    • \n
    • FIX: Smush – Fixed image compression actions in Media Library
    • \n
    • REFACTOR: Replacing jQuery Tablesorter with ‘sortable-tablesort’ package
    • \n
    • TWEAK: Cache – Enhance ActivityPub compatibility
    • \n
    • TWEAK: Fix PHP notice caused by subscriben plugin advert
    • \n
    • TWEAK: Minimum requirements were updated to PHP version 7.2 and WordPress version 4.9
    • \n
    • TWEAK: Remove uses of unserialize without restriction of allowed_classes
    • \n
    • TWEAK: Recognise Independent Analytics Pro plugin tables in database optimization
    • \n
    \n

    3.8.0 – 09/Dec/2024

    \n
      \n
    • FEATURE: Added a system status page
    • \n
    • FEATURE: Logs frequent and highly recurrent 404 requests; introduces a new Performance tab.
    • \n
    • FIX: Cache – Legacy Widgets visibility issue with WP-Optimize Cache enabled
    • \n
    • FIX: Cache – UI issue: Preload “Cancel” option is gone after reloading the WPO settings page instantly
    • \n
    • FIX: Database – optimizing any item also changes the status of other items
    • \n
    • REFACTOR: Minify – Removal of the WPO_MINIFY_PHP_VERSION_MET constant
    • \n
    • TWEAK: Add a warning message before deleting post metadata or orphaned relationship data.
    • \n
    • TWEAK: Bailout early if the minimum PHP version is not met
    • \n
    • TWEAK: Introduced logging for cache purge operations, available under uploads/wpo/logs/cache-*.log
    • \n
    • TWEAK: Open CRON overdue guide in new tab
    • \n
    • TWEAK: Persist Analytics Tab when minification is disabled
    • \n
    • TWEAK: Premium – Unused Images – Improved detection of images not present in the Media Library, marking them as used
    • \n
    • TWEAK: UI improvements in Analytics section
    • \n
    • TWEAK: Wrapped checkboxes inside label tags in the confirmation popup that appears when clicking the “Remove” button on the Database > Tables tab.
    • \n
    \n

    3.7.1 – 20/Nov/2024

    \n
      \n
    • TWEAK: Resolved a PHP notice caused by translation loading too early when caching is enabled, introduced in WordPress 6.7
    • \n
    \n

    3.7.0 – 21/Oct/2024

    \n
      \n
    • FEATURE: Added an option to automatically preload URLs immediately after cache content is purged
    • \n
    • FEATURE: Premium – Gather data about table usage by filtering query event
    • \n
    • FIX: Cache – Scheduled preloading wasn’t working
    • \n
    • FIX: Inconsistency in smush_manager_send_command function
    • \n
    • REFACTOR: Smush – Popup styles, remove unused code
    • \n
    • TWEAK: Fix fatal implode error when updating to v3.5.0
    • \n
    • TWEAK: Image compression – Issue with cancelling smush image compression
    • \n
    • TWEAK: Improve module minification logic
    • \n
    • TWEAK: Premium – Unused images – Fixed popup when moving images to or restoring images from the trash
    • \n
    • TWEAK: Premium – Unused images – Placeholder images in unused images section
    • \n
    • TWEAK: Added security.md file with information to report security issues
    • \n
    \n

    3.6.0 – 12/Sep/2024

    \n
      \n
    • FEATURE: Premium – Auto-detect images lacking dimension attributes and add them to improve CLS
    • \n
    • FIX: Fixed the issue that disabled WebP conversion due to checking all shell commands for WebP compression
    • \n
    • FIX: Premium – Unused Images – The unused image size deletion functionality does not work when images are not in the /yyyy/mm/ folder
    • \n
    • REFACTOR: Removed unnecessary static methods in WebP class
    • \n
    • TWEAK: Image compression – Rolled back to using popup error notices as in versions prior to 3.4.0
    • \n
    • TWEAK: Added a more descriptive error with resolution proposals for failed gzip compression and browser cache tests
    • \n
    • TWEAK: Fix broken unused image list thumbnails and download as csv link in Multisite
    • \n
    • TWEAK: Fix the singleton pattern in Heartbeat class
    • \n
    • TWEAK: Image compression functionality added to the Media Library page
    • \n
    • TWEAK: Premium – Cache – Added support for Aelia Currency Switcher plugin
    • \n
    • TWEAK: Premium – Unused images – improve clarity in UI for images in post revisions
    • \n
    • TWEAK: Added additional checks to the implode() function to mitigate the risk of fatal errors on certain instances
    • \n
    \n

    3.5.0 – 14/Aug/2024

    \n
      \n
    • FEATURE: Premium – Host Google and minimal analytics scripts locally
    • \n
    • FIX: Premium – Cache – Single page cache purge/preload feature isn’t working
    • \n
    • TWEAK: Add logging for the WebP feature
    • \n
    • TWEAK: Allow minification of script modules
    • \n
    • TWEAK: Cache – Purge the cache when the site is migrated
    • \n
    • TWEAK: Improvements to asset minification cache logic
    • \n
    • TWEAK: Improvements to reSmushIt curl error message
    • \n
    • TWEAK: Minify – Added an option to disable Google Fonts processing when it causes conflicts with other plugins
    • \n
    • TWEAK: Move all WPO files from the uploads folder to uploads/wpo
    • \n
    • TWEAK: Style improvement of the loading modals
    • \n
    \n

    3.4.2 – 03/Jul/2024

    \n
      \n
    • FIX: Removes unnecessary heartbeat calls for retrieving information about images
    • \n
    \n

    3.4.1 – 26/Jun/2024

    \n
      \n
    • FIX: Issue with bulk editing on the posts and pages edit screen
    • \n
    \n

    3.4.0 – 25/Jun/2024

    \n
      \n
    • FEATURE: Premium – Smush – Bulk compress / restore from media library
    • \n
    • FIX: Deactivate the form for minifying JS/CSS settings when the corresponding option is disabled
    • \n
    • REFACTOR: The functionality for the ‘Unused Images’ feature in ACF has been moved to a separate class
    • \n
    • TWEAK: Add UpdraftCentral commands for the latest WP-Optimize features
    • \n
    • TWEAK: Adjusted the scheduled preload time for improved performance
    • \n
    • TWEAK: Auto-update advanced-cache.php settings during site migration
    • \n
    • TWEAK: Cache – Human-readable file names for the cache directory
    • \n
    • TWEAK: Caching related cron jobs are activated even though cache is disabled
    • \n
    • TWEAK: Image compression – Updated message for restoring images action
    • \n
    • TWEAK: Implement Heartbeat API for image compression progress updates
    • \n
    • TWEAK: Improving vendor autoload
    • \n
    • TWEAK: Introduces a hook (wpo_force_webp_serve_using_altered_html) for changing WebP serving method
    • \n
    • TWEAK: Minify – Exclude .min files from minification
    • \n
    • TWEAK: Minify – Improve list of processed files UI
    • \n
    • TWEAK: Optimization of the get_uncompressed_image query
    • \n
    • TWEAK: Persist script loading strategy when minifying JS files
    • \n
    • TWEAK: Premium – Compatibility with Curcy WooCommerce multi currency plugin
    • \n
    • TWEAK: Premium – Unused Images – Added an option to delete original images when scaled versions exist
    • \n
    \n

    3.3.2 – 16/Apr/2024

    \n
      \n
    • FIX: Ensure the admin bar is not cached when caching is enabled for both logged-in and guest users
    • \n
    • REFACTOR: Remove unused code
    • \n
    • TWEAK: Cache – Prevent sitemaps being cached
    • \n
    • TWEAK: Display a notice when static browser cache is enabled but not working
    • \n
    • TWEAK: Premium – Added “Lost your password?” link on plugin’s page
    • \n
    • TWEAK: Premium – Unused images – Detect Elementor’s ‘Video’ widget’s image
    • \n
    • TWEAK: Recognise Rank Math plugin tables as used in database optimization
    • \n
    • TWEAK: Reduce .htaccess file write operations when WebP is enabled
    • \n
    • TWEAK: Seasonal notice content update for 2024
    • \n
    • TWEAK: Unused Images – Unused tab displays multiple images for compressed images with WebP Conversion
    • \n
    • TWEAK: Prevent multiple AJAX requests being generated by repeated clicks on the “Purge Cache” button
    • \n
    • TWEAK: Call the litespeed_finish_request() function when attempting to close browser connection on LiteSpeed servers
    • \n
    \n

    3.3.1 – 06/Mar/2024

    \n
      \n
    • FIX: Cache – Compatibility issue with Jetpack’s infinity scroll feature
    • \n
    • FIX: Cache – Don’t cache activity stream (ActivityPub plugin compatibility)
    • \n
    • FIX: Cache – Page not cached comment is added to robots.txt
    • \n
    • TWEAK: Fix PHP warnings when server variables are not available
    • \n
    • TWEAK: Fix Unexpected response alert and PHP warning when cache preloading is triggered manually
    • \n
    • TWEAK: Migrate from setInterval to WP heartbeat API to refresh information about backend tasks
    • \n
    • TWEAK: Optimization of the WebP Implementation
    • \n
    • TWEAK: Update dashboard notice to include all of our plugins
    • \n
    • TWEAK: Update the footer review prompt
    • \n
    \n

    3.3.0 – 31/Jan/2024

    \n
      \n
    • FEATURE: Premium – Ability to preload and purge caches from individual post/page
    • \n
    • FIX: Premium – Unused Images – Recognise Elementor’s Container, and Section widget background images
    • \n
    • FIX: Avoid having repeated minified scripts in the same bundle, it breaks the code in some specific cases
    • \n
    • FIX: Cache – TranslatePress compatibility – Post updates purges cache for all related translated languages
    • \n
    • FIX: Only try to parse canonical URLs if there is a path or querystring, needed for WPML with multi-domain compatibility
    • \n
    • TWEAK: Add cron de-scheduling of all wpo_* events during plugin uninstall
    • \n
    • TWEAK: Cache – Always add source code comment about page not being cached, but only add details when WP_DEBUG is ON
    • \n
    • TWEAK: Cache – Fix issue with excluding encoded (non-latin) URLs
    • \n
    • TWEAK: Do not attempt to close browser connection when the context is not an AJAX action
    • \n
    • TWEAK: Minify – Logging more information about why minify static assets cache gets invalidated and regenerated
    • \n
    • TWEAK: Revert to the original matthiasmullie/minify repository after confirming resolution of previous issues
    • \n
    • TWEAK: Setup Cron job to clear failed smush tasks from DB
    • \n
    • TWEAK: Using clear text user agent strings instead of regular expressions to identify web browsers for improved clarity
    • \n
    • TWEAK: Updater library in the Premium version updated to the current release series
    • \n
    \n

    3.2.22 – 23/Nov/2023

    \n
      \n
    • TWEAK: Cache – Show a notice in the admin if the config file is missing and caching is enabled
    • \n
    • TWEAK: Added support for new emoji styles related hooks introduced in WordPress 6.4
    • \n
    • TWEAK: Database – Fix “Optimize database tables” stuck loading state
    • \n
    • TWEAK: Premium – Cache – Style improvement for the select2 box from advanced cache settings
    • \n
    • TWEAK: Premium – Images – Fix issues with avif images in the unused images feature
    • \n
    • REFACTOR: Wrapping most of the external links in the WPO settings pages with the appropriate function
    • \n
    • REFACTOR: Remove unused code
    • \n
    \n

    3.2.21 – 18/Oct/2023

    \n
      \n
    • FIX: Prevent PHP fatal error when updating from older versions of WP-Optimize
    • \n
    \n

    3.2.20 – 16/Oct/2023

    \n
      \n
    • FIX: WebP – Performance issue because of possible infinite loop
    • \n
    • FIX: Cache purging occurred prior to the cache lifespan expiration
    • \n
    • FIX: Premium – Smush – Do not consider images in trashed posts as unused
    • \n
    • TWEAK – Remove extra slash from plugin asset urls and paths
    • \n
    • TWEAK: Image – Add a tooltip next to the restore button on the edit media screen
    • \n
    • TWEAK: Premium – Prevent PHP deprecated warning when generating variations from attributes for new WooCommerce variable products
    • \n
    • TWEAK: Premium – Purge cache when the Variation Swatches for WooCommerce plugin settings get updated
    • \n
    • TWEAK: Premium – Settings – Style improvement for the Purge cache permissions select2 box
    • \n
    • TWEAK: Recognise LearnDash plugin tables in database optimization
    • \n
    • TWEAK: Remove empty uploads/.htaccess file and remaining cron events
    • \n
    • TWEAK: Smush – Disable server info in smush logs by default
    • \n
    • TWEAK: Smush – Resolve double log entries when compressing a single image from the media library metabox
    • \n
    • TWEAK: Prevent unwanted PHP notice upon update
    • \n
    \n

    3.2.19 – 15/Sep/2023

    \n
      \n
    • FIX: Cache – Relevant caches are now purged upon updating homepage display settings and posts per page settings
    • \n
    • FIX: Minify – Multiline content inside textareas break after exporting and importing settings
    • \n
    • FIX: Smush – Images are not compressed with default (image quality = 100) settings
    • \n
    • FIX: Premium – Cache – Caching stops working when WordPress salt keys contain backslash () character
    • \n
    • FIX: Premium – User per role cache not working when tables do not have wp prefix
    • \n
    • FIX: Premium – When lazy loading is enabled, the picture tag in initial viewport is not visible
    • \n
    • TWEAK: Fixed date format and timezone in the cache last modification comment according to the site configuration
    • \n
    • TWEAK: Fixed spelling errors in the repository
    • \n
    • TWEAK: Minify – The process of purging cache for 3rd party caching solutions now works properly when multiple other solutions are present
    • \n
    • TWEAK: Premium – Lazy load – Added Jetpack, Optimole, Rocket Lazy Load, and Smush (WPMU Dev) plugins to the incompatibility notice
    • \n
    • TWEAK: Prevent PHP warning upon installing themes from the WordPress repository
    • \n
    • TWEAK: Update the composer package yahnis-elsts/plugin-update-checker for PHP 8.2 compatibility
    • \n
    \n

    3.2.18 – 11/Aug/2023

    \n
      \n
    • FIX: A bug in the v3.2.17 release that caused certain database optimization buttons to be disabled has been fixed
    • \n
    • TWEAK: Reset WebP serving method upon updating to version 3.2.18
    • \n
    \n

    3.2.17 – 08/Aug/2023

    \n
      \n
    • FIX: Automatically compress newly-added images feature now works on multisite in case of attachment ID is the same in both sites
    • \n
    • FIX: Minify – No separate try-catch blocks for same handle
    • \n
    • FIX: Premium – Unused Images – Recognise Elementor Carousel, Slides, Flip Box, and Site logo widget images
    • \n
    • FIX: Premium – Prevent memory exhausted PHP fatal error when using unused images feature with Elementor
    • \n
    • TWEAK: External links will open in new tab/window
    • \n
    • TWEAK: Remove htaccess-capability-tester dependency
    • \n
    • TWEAK: Remove residue folders in uploads/wpo
    • \n
    \n

    3.2.16 – 06/Jul/2023

    \n
      \n
    • FIX: HTML minify should not remove title tag added by AIOSEO
    • \n
    • FIX: Premium – Fetching unused images data is incorrect when previous task queue is not properly unlocked
    • \n
    • FIX: Premium – Unused Images – Recognise Elementor background images
    • \n
    • TWEAK: Premium – Prevent conflicts between the minify feature and the YITH Point of Sale for WooCommerce plugin
    • \n
    • TWEAK: Premium – Compatibility issue with Smart Slider 3
    • \n
    • TWEAK: Suppress PHP warnings caused by WebP converter
    • \n
    • TWEAK: Database optimization – Prevent duplicate AJAX requests, minor code improvements
    • \n
    • TWEAK: Smush – Add a cron job to run pending image compressions, ensuring completion of the process even if bulk image compression encounters interruptions or failures
    • \n
    • TWEAK: Clean up files on uninstall
    • \n
    • TWEAK: Added compatibility for Custom Permalinks plugin
    • \n
    • TWEAK: If minifying is enabled, then check that the purge cron event exists (not only upon plugin activation)
    • \n
    • REFACTOR: Premium – Unused Images – Separate classes for Beaver Builder, Estatik, and Yoast SEO plugins
    • \n
    • FIX: Premium – WP CLI commands permission issues solved
    • \n
    \n

    3.2.15 – 09/May/2023

    \n
      \n
    • FEATURE: Premium – Cache – Added compatibility with the “WooCommerce Multilingual & Multicurrency” plugin’s multi-currency feature
    • \n
    • FIX: Premium – Above the folder elements should not be loaded lazily
    • \n
    • FIX: Prevents minify cache invalidation when asset version is changed but content is same
    • \n
    • FIX: Prevent PHP 8 uncaught exception TypeError when using CloudFlare
    • \n
    • FIX: Add logging destination UI
    • \n
    • FIX: Premium – Cache – Prevents a PHP fatal error that occurs when user cache is enabled on sites running on MariaDB with a version prefix of ‘5.5.5-‘ and PHP versions prior to 8.0
    • \n
    • FIX: Serving WebP images only to supported browsers wasn’t working properly when page caching is enabled
    • \n
    • FIX: Minify – inherit Google fonts method is not working
    • \n
    • TWEAK: Prevent PHP deprecation notice when purging minify cache
    • \n
    • TWEAK: Cache – Prevent PHP warning when deleting cache
    • \n
    • TWEAK: Suppress PHP notice when cannot write to .htaccess file
    • \n
    • TWEAK: Add user capability check for smush task manager ajax handling method
    • \n
    • TWEAK: Minify – Do not send cache control and last modified headers if already present
    • \n
    • TWEAK: Smush – clean up log entries
    • \n
    • TWEAK: Correctly handle XX and T1 country codes in Cloudflare’s IP country header
    • \n
    • REFACTOR: Separate classes for activation, deactivation and uninstall actions
    • \n
    \n

    3.2.14 – 30/Mar/2023

    \n
      \n
    • FIX: Compatibility with WordPress 6.2 when using PHP 8.x
    • \n
    • FIX: Divi builder’s edit mode when WebP serving is using the “alter HTML” method
    • \n
    • FIX: Premium – Unused images feature – improve compatibility with Beaver Builder and its addons
    • \n
    • FIX: Cache – Page caching wasn’t working on the IIS webserver
    • \n
    • TWEAK: Update seasonal notices
    • \n
    • TWEAK: Prevent deprecation notices in PHP 8.2+
    • \n
    \n

    3.2.13 – 13/Mar/2023

    \n
      \n
    • FEATURE: WebP – Ability to convert to webp format from media library
    • \n
    • FIX: Prevent PHP warning when minify-log files are missing or corrupted, also added appropriate error message
    • \n
    • FIX: Delete webp files and uncompressed file when media is deleted
    • \n
    • FIX: Polylang compatibility – now upon updating any post, caches for all translated languages are cleared
    • \n
    • FIX: Prevent adding unsupported media types to the smush task list
    • \n
    • FIX: WebP – Unsupported formats throws a fatal error
    • \n
    • FIX: Compress image UI for webp images
    • \n
    • FIX: Premium – WebP Images are marked as unused images
    • \n
    • FIX: Resolved an issue where Beaver Builder’s edit mode was not functioning properly when WebP conversion was enabled
    • \n
    • FIX: Prevent creating multiple cache directories for URLs that contain non-English characters
    • \n
    • TWEAK: Preload allowed time difference is set to be the same as max execution time
    • \n
    • TWEAK: Premium – Unused images feature – Add compatibility with Yoast SEO social images
    • \n
    • TWEAK: Prevent jQuery deprecation notices
    • \n
    • SECURITY: Fixed a non-persistent XSS vulnerability that could occur on certain servers when the WebP conversion option was enabled. This vulnerability could allow an attacker to execute arbitrary JavaScript code in the victim’s browser by tricking them into clicking on a specially crafted link. Thanks to Paolo Elia for reporting this.
    • \n
    \n

    3.2.12 – 06/Feb/2023

    \n
      \n
    • SECURITY: Today’s 3.2.11 release (free version only – there was no 3.2.11 Premium release) checked nonces incorrectly, opening up the possibility of an attacker tricking an admin into clicking links crafted to perform unauthorised actions on the WP Optimize configuration on his site.
    • \n
    \n

    3.2.11 – 06/Feb/2023

    \n
      \n
    • FIX: Empty query string updates cache
    • \n
    • FIX: Cache – Purge cache after string translation update in WPML
    • \n
    • FIX: Cache – Preload stuck and fails to complete
    • \n
    • FIX: Prevent PHP warning when .htaccess files don’t have write permission
    • \n
    • FIX: Premium – Fixed compatibility issue with WP Hide plugin
    • \n
    • FIX: Minify – Less than 20KB stylesheets loading order
    • \n
    • TWEAK: Add cron event only if clear backup images is enabled
    • \n
    • TWEAK: Cache – Use WordPress GMT offset for cache comment
    • \n
    • TWEAK: Only allow image types that can be compressed
    • \n
    • TWEAK: Cached page is not served for sites that have own directory for WordPress files
    • \n
    \n

    3.2.10 – 28/Nov/2022

    \n
      \n
    • FIX: Prevent php warning and increase SendInBlue mailin plugin compatibility
    • \n
    • FIX: Avoid screen juggling while selecting optimizations from dropdown in scheduled clean up
    • \n
    • FIX: Prevent cache purge upon deactivation using filter
    • \n
    • FIX: Cache purge ability of all registered user
    • \n
    • FIX: Recognise WooCommerce product category images as used images
    • \n
    • FIX: Multisite support in cached-file-log.php template
    • \n
    • TWEAK: Improve Optimization Schedule UI
    • \n
    • TWEAK: Consolidated error notices by the use of a global WPO notice object.
    • \n
    • TWEAK: Remove Reset WebP serving method button when there are no webp conversion tools
    • \n
    • TWEAK: Remove query strings from scripts
    • \n
    • TWEAK: Add Restrict Content Pro plugin slug to plugin.json
    • \n
    • TWEAK: Add option to remove orphaned user meta data upon run optimization
    • \n
    • TWEAK: Add no-cache headers when minify is enabled and page caching is not
    • \n
    • TWEAK: Ability to remove .htaccess rules when gzip compression is not available
    • \n
    • TWEAK: WebP: Avoid PHP warnings when using hot linked images (Alter HTML method)
    • \n
    • TWEAK: WebP conversion is unavailable when php shell functions do not exist
    • \n
    • TWEAK: Improved UI settings for asynchronous loading and page speed testing exclusion tools
    • \n
    • TWEAK: Add a constant to enable/disable webp feature
    • \n
    • TWEAK: Set a global context for $wp_file_descriptions context so that it gets assigned to correctly, preventing a subtle visual change in the theme editor
    • \n
    • TWEAK: Prevent php warning from webp-convert library
    • \n
    • TWEAK: Update currently-active installs number in thank you for installing notice.
    • \n
    • TWEAK: Replaced deprecated use of jQuery.change()
    • \n
    \n

    3.2.9 – 06/Sep/2022

    \n
      \n
    • FEATURE: Import and export settings
    • \n
    • FIX: Avoid infinite loop while using unused images export csv
    • \n
    • FIX: Scheduled cache preloading issue
    • \n
    • FIX: WebP testing making unnecessary background HTTP checks
    • \n
    • FIX: Google fonts compatibility with The7 theme
    • \n
    • FIX: Prevent console error for undefined wp_optimize for smush scripts
    • \n
    • TWEAK: Avoid PHP warnings on cache cleanup
    • \n
    • FIX: Ability to disable webp serving while caching is on
    • \n
    • TWEAK: Reset webp conversion method flags daily using cron job
    • \n
    • TWEAK: Remove orphaned wpo_weekly_cron_tasks cron job upon uninstallation
    • \n
    \n

    3.2.8 – 23/Aug/2022

    \n
      \n
    • FIX: Build system error led to a missing file in 3.2.7 which could cause an error when using related functions
    • \n
    • FIX: Fix incorrect function name in admin class
    • \n
    \n

    3.2.7 – 15/Aug/2022

    \n
      \n
    • FEATURE: A CLI command for generating lists of unused images as a CSV file (Premium)
    • \n
    • FIX: The unused images CSV downloads have a few redundant images listed
    • \n
    • FIX: ACF block field images are listed as unused images
    • \n
    • FIX: Correctly recognize inherit in google fonts async loading
    • \n
    • FIX: Cache – Do not purge when wp_update_nav_menu is removed from wpo_purge_cache_hooks array
    • \n
    • TWEAK: Prevent PHP warnings when using json_decode result
    • \n
    • TWEAK: Create cache config file if not present because of site migration
    • \n
    • TWEAK: Update notice class
    • \n
    • TWEAK: Recognize WooCommerce scheduled sales and cache accordingly
    • \n
    • TWEAK: Prevent duplicate wp-optimize entry in tables optimization list
    • \n
    • TWEAK: Test htaccess capability only when needed by webp feature
    • \n
    • TWEAK: Increase compatibility with Aelia plugins
    • \n
    \n

    3.2.6 – 15/Jun/2022

    \n
      \n
    • FIX: Incorrect static method calling causes parse Error in PHP 5.6.36
    • \n
    • FIX: WebP – Trailing slash file creation issue in PHP 8
    • \n
    • FIX: PHP warning in cache rules file
    • \n
    • FIX: Asynchronous google fonts loaded twice
    • \n
    • TWEAK: Conditional Tags anchor tag fix
    • \n
    \n

    3.2.5 – 03/Jun/2022

    \n
      \n
    • FIX: Fix a fatal error that could occur in 3.2.4 if settings had not been saved
    • \n
    \n

    3.2.4 – 24/May/2022

    \n
      \n
    • FEATURE: Create a cron job to delete expired cache files
    • \n
    • FEATURE: WebP image format can be used to serve images
    • \n
    • FIX: Incorrect record count after importing
    • \n
    • FIX: Image smushing issues
    • \n
    • FIX: Problem with Redirect – Trailing Slash on URLs
    • \n
    • FIX: Unused images issue with ACF repeater and nested fields
    • \n
    • TWEAK: Added functionality for exclude caching based on conditional tags
    • \n
    • TWEAK: Update last optimized time for scheduled optimizations
    • \n
    • TWEAK: Cache – Prevent already header sent warnings while importing posts
    • \n
    • TWEAK: Improved UI for actionscheduler_ tables
    • \n
    • TWEAK: Add filter to allow/disallow gz file generation
    • \n
    • TWEAK: Show error message to user when WP_CACHE constant can’t be removed from wp-config.php due to file permission issue.
    • \n
    \n

    3.2.3 – 09/Mar/2022

    \n
      \n
    • FEATURE: Minify: Pre-generate assets
    • \n
    • FIX: Cache – ‘Purge cache permissions’ setting does not allow additional roles to access the purge cache tool
    • \n
    • TWEAK: Make smush details button work in media modal window
    • \n
    • TWEAK: Do not show overhead in red when the amount is small
    • \n
    • TWEAK: Avoid PHP Notices caused by “upgrader_process_complete” action
    • \n
    • TWEAK: Force monolog 2.3.* in order to avoid PHP 7.2+ dependency
    • \n
    \n

    See changelog for all versions.

    \n", "description": "

    MORE THAN A CACHING PLUGIN

    \n

    WP-Optimize is trusted by more than 1 million WordPress website owners to boost performance and reduce page load times to improve your site’s user experiences and SERP rankings in Google.

    \n

    It does this in four clever ways:

    \n

    1. It caches your site

    \n

    Caching is the process of storing a temporary HTML version of your site on the server so it can be retrieved more quickly for the user.

    \n

    It’s a sure-fire way to ensure web pages load at lightning-fast speed. Turn it on in just one click.

    \n

    2. It compresses images

    \n

    Large images can really impact page speed load times. WP-Optimize makes it easy to identify and compress images to your preferred lossy / lossless settings in a couple of clicks.

    \n

    3. It cleans the database

    \n

    Your WordPress database stores everything that you need, plus some things that you don’t. WP-Optimize cleans and optimizes the database to speed up your site and save server resources.

    \n

    4. It minifies

    \n

    On top of its three main features, WP-Optimize Cache also has the more advanced minification feature.

    \n

    Together with caching, minification dramatically improves performance and page speed load time.

    \n

    1. CACHE YOUR SITE

    \n

    Turn on caching in just one click:

    \n

    WP-Optimize automatically and optimally configures itself for your WordPress site. Turn it on in one-click or refine its settings if you prefer.

    \n

    More cache features:

    \n
      \n
    • \n

      Cache preloading: This feature emulates a visit to your site, meaning cached files are served straight away, speeding up your site from the very first visit.

      \n
    • \n
    • \n

      GZIP Compression: When the server isn’t configured to do so, WP-Optimize delivers HTML, CSS and JS files to the user’s browser as smaller, compressed files, reducing the size of pages and style sheets by up to 90%!

      \n
    • \n
    • \n

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster [Premium].

      \n
    • \n
    \n

    Use cache settings to:

    \n
      \n
    • \n

      Serve cached content to logged in users: Turn this on if content stays the same for logged in users (or turn on and exclude URLs where content does change e.g. my account areas).

      \n
    • \n
    • \n

      Exclude content from cache: Exclude by URL, conditional tags, browser agent strings or list cookies that should prevent caching when set (advanced user settings).

      \n
    • \n
    • \n

      Deliver device-specific cache: Serve separate cache files to desktop and mobile devices . This ensures that responsive features e.g. desktop and mobile menus are cached separately and served correctly.

      \n
    • \n
    • \n

      User per role cache: Useful if your website delivers different content to different user roles. e.g. an e-commerce site that displays different content to resellers or consumers [Premium].

      \n
    • \n
    • \n

      User specific cache: Serves separate cache files to individual users. Useful for websites with personalised content e.g. Learning management systems [Premium].

      \n
    • \n
    • \n

      Cache purging permissions: Select which user roles are allowed to purge the cache e.g. admin only or perhaps a ‘teacher’ role in an LMS setting only [Premium].

      \n
    • \n
    \n

    2. COMPRESS IMAGES

    \n
      \n
    • \n

      Lossy or lossless compression options: Choose between maximum space saving, best image quality or somewhere in-between.

      \n
    • \n
    • \n

      WebP conversion: Recommended by Google, WebP can achieve up to 34% smaller file sizes compared to JPEG and up to 26% compared to PNG.

      \n
    • \n
    • \n

      Auto-compress: Check a box and every new image you upload will automatically be compressed to your preferred lossy / lossless settings.

      \n
    • \n
    • \n

      Bulk compression: Compress every existing image on your site with the press of a button.

      \n
    • \n
    • \n

      Restore original: Gone too far? Revert images back to their original in one click.

      \n
    • \n
    • \n

      Retain EXIF image data: Check a box to retain EXIF image data during compression.

      \n
    • \n
    • \n

      Lazy Load: Webpages load much faster by loading web parts gradually, when they’re needed vs simultaneous loading of everything, all at once [Premium].

      \n
    • \n
    • \n

      Delete orphaned images: Identify and delete unused images from your WordPress website, saving disk space [Premium].

      \n
    • \n
    • \n

      Delete unused image sizes: WordPress creates multiple sizes for every uploaded image causing the uploads folder to become bloated. Scan for image sizes not in use and remove them to save further disk space [Premium].

      \n
    • \n
    \n

    3. CLEAN AND OPTIMIZE THE DATABASE

    \n

    Cleans-up database tables, post revisions, auto draft posts, trashed posts, spam, trashed comments and more. Choose what to optimize or it’s one click to clean out the lot.

    \n
      \n
    • \n

      Schedule clean-ups: So you can set and forget. Choose from daily, weekly, fortnightly or monthly.

      \n
    • \n
    • \n

      Flexible clean-up schedules: You may wish to optimize database tables more frequently than you remove unapproved comments (for example). Choose the specific time and day when tasks should run [Premium].

      \n
    • \n
    • \n

      Retain a set number of weeks’ data during clean-ups: Just in case you need to retrieve something.

      \n
    • \n
    • \n

      Back up before clean-ups: If you delete something you shouldn’t, restore it in a couple of clicks with UpdraftPlus.

      \n
    • \n
    • \n

      Power tweak – Turbo boost for WooCommerce: Unique to WP-Optimize, this power tweak boosts performance by replacing a slow query in WooCommerce with two much more efficient queries. E-commerce sites transacting high numbers of orders stand to gain here [Premium].

      \n
    • \n
    • \n

      Power tweak – Boost performance by indexing the postmeta table: This unique power tweak works by allowing the WordPress postmeta table to be indexed, improving performance [Premium].

      \n
    • \n
    \n

    4. MINIFY AND COMBINE HTML, CSS AND JAVASCRIPT

    \n
      \n
    • \n

      Minify in just one click: Minifies HTML, JavaScript and CSS. Toggle on or off or customise each one under ‘settings’.

      \n
    • \n
    • \n

      Customise minification: Minify only (removing unnecessary code e.g line breaks and white spacing) or minify and merge. Apply the same or different settings to HTML, CSS and JavaScript.

      \n
    • \n
    • \n

      Asynchronous loading: Choose non-critical CSS and JavaScript files to load in the background and independently of other resources e.g. analytics or pixel scripts. Loading asynchronously eliminates render blocking and improves page speed.

      \n
    • \n
    • \n

      Exclude files from being minified: Specify CSS and JavaScript files to exclude from minification.

      \n
    • \n
    • \n

      Optimize fonts: Optimize Font Awesome and Google Fonts. Inline the font files, inherit from CSS settings or load CSS / Javascript asynchronously instead.

      \n
    • \n
    • \n

      Preload assets: WP-Optimize visits each web page on your site so the code is minified and preloaded for real life users, right from their very first visit.

      \n
    • \n
    • \n

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster.

      \n
    • \n
    \n

    WHY WP-OPTIMIZE?

    \n
      \n
    • It’s brought to you by TeamUpdraft, the team behind the world’s most trusted backup, migration and restoration plugin.
    • \n
    • It’s easy to use.
    • \n
    • It packs a punch for a free plugin.
    • \n
    \n

    WP-Optimize brings the best cache and optimization technology together into one single, seamless plugin to make your WordPress site fast, lean and efficient.

    \n

    PREMIUM FEATURES AT A GLANCE

    \n

    Our free version of WP-Optimize Cache is great, but we also have an even more powerful Premium version with extra features that offer the ultimate in freedom and flexibility:

    \n
      \n
    • Multisite Support: extends database optimisations so they function for multiple WordPress sites at a time. If you manage more than one website, you will need WP-Optimize Cache Premium.
    • \n
    • Flexibility and Control: gives you the power to optimize select individual tables or a particular combination of tables on one or more WordPress websites, rather than having to optimize all database tables.
    • \n
    • Deleting unused and unwanted images: removes orphaned images from your WordPress site, plus images of a certain, pre-defined size.
    • \n
    • Sophisticated Scheduling: offers a wide range of options for scheduling automatic optimization. Specify an exact time and run clean-ups daily, weekly, fortnightly or monthly and perform any number of additional once off optimizations.
    • \n
    • Seamless Graphical User Interface: for superb clarity in scheduling and managing of multi-site optimizations.
    • \n
    • WP-CLI support: provides a way to manage optimizations from command-line interface if you have lots of sites
    • \n
    • Lazy Loading: load only the images and part of a web-page when it is visible to the user so they can see something very quickly.
    • \n
    • Optimization Preview: gives users the ability to preview, select and remove data and records available for optimization from the database.
    • \n
    • Preload key requests: preload assets such as web fonts and icon fonts, as recommended by Google PageSpeed Insights.
    • \n
    • Premium support – caching is one of the most complex things you can do for a website, so premium support offers you peace of mind there’s someone to talk quickly to if you need any technical answers or help configuring the optimizations of cache settings for your website.
    • \n
    \n

    Translations

    \n

    Translators are welcome to contribute to the plugin. Please use the WordPress translation website.

    \n", "screenshots": "
    1. \"Cache

      Cache - plugins comparison benchmark

    2. \"Database

      Database optimization

    3. \"UpdraftPlus

      UpdraftPlus running a backup before an optimization proceeds

    4. \"Table

      Table Report

    5. \"Image

      Image compression

    6. \"Main

      Main cache screen

    ", "installation": "

    There are 3 different ways to install WP-Optimize Cache, as with any other wordpress.org plugin.

    \n

    Using the WordPress dashboard

    \n
      \n
    1. Navigate to the ‘Add New’ in the plugins dashboard
    2. \n
    3. Search for ‘WP-Optimize’
    4. \n
    5. Click ‘Install Now’
    6. \n
    7. Activate the plugin on the Plugin dashboard
    8. \n
    \n

    Uploading in WordPress Dashboard

    \n
      \n
    1. Download the latest version of this plugin from https://wordpress.org/plugins/wp-optimize/
    2. \n
    3. Navigate to the ‘Add New’ in the plugins dashboard
    4. \n
    5. Navigate to the ‘Upload’ area
    6. \n
    7. Select the zip file (from step 1.) from your computer
    8. \n
    9. Click ‘Install Now’
    10. \n
    11. Activate the plugin in the Plugin dashboard
    12. \n
    \n

    Using FTP

    \n
      \n
    1. Download the latest version of this plugin from https://wordpress.org/plugins/wp-optimize/
    2. \n
    3. Unzip the zip file, which will extract the wp-optimize directory to your computer
    4. \n
    5. Upload the wp-optimize directory to the /wp-content/plugins/ directory in your web space
    6. \n
    7. Activate the plugin in the Plugin dashboard
    8. \n
    \n"}, "versions": {"1.9": "https://downloads.wordpress.org/plugin/wp-optimize.1.9.zip", "0.7.0": "https://downloads.wordpress.org/plugin/wp-optimize.0.7.0.zip", "1.9.1": "https://downloads.wordpress.org/plugin/wp-optimize.1.9.1.zip", "2.0.1": "https://downloads.wordpress.org/plugin/wp-optimize.2.0.1.zip", "2.1.0": "https://downloads.wordpress.org/plugin/wp-optimize.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/plugin/wp-optimize.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.4.zip", "2.2.6": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.6.zip", "2.2.8": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/plugin/wp-optimize.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/plugin/wp-optimize.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/plugin/wp-optimize.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/plugin/wp-optimize.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/plugin/wp-optimize.2.3.4.zip", "3.0.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.5.zip", "3.0.7": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.2.zip", "3.1.4": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.9.zip", "3.2.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.3.zip", "3.2.5": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.7.zip", "3.2.9": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/wp-optimize.3.3.2.zip", "3.4.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/wp-optimize.3.4.2.zip", "3.5.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.5.0.zip", "3.6.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.6.0.zip", "3.7.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/wp-optimize.3.7.1.zip", "3.8.0": "https://downloads.wordpress.org/plugin/wp-optimize.3.8.0.zip", "4.0.0": "https://downloads.wordpress.org/plugin/wp-optimize.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/plugin/wp-optimize.4.0.1.zip", "4.1.0": "https://downloads.wordpress.org/plugin/wp-optimize.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/plugin/wp-optimize.4.1.1.zip", "4.2.0": "https://downloads.wordpress.org/plugin/wp-optimize.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/plugin/wp-optimize.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/plugin/wp-optimize.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/plugin/wp-optimize.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/plugin/wp-optimize.4.2.4.zip", "4.3.0": "https://downloads.wordpress.org/plugin/wp-optimize.4.3.0.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-optimize.zip", "2.2.10": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.10.zip", "2.2.11": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.11.zip", "2.2.12": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.12.zip", "2.2.13": "https://downloads.wordpress.org/plugin/wp-optimize.2.2.13.zip", "3.0.10": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.12.zip", "3.0.13": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.14.zip", "3.0.15": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.15.zip", "3.0.16": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.16.zip", "3.0.18": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.18.zip", "3.0.19": "https://downloads.wordpress.org/plugin/wp-optimize.3.0.19.zip", "3.1.10": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.10.zip", "3.1.11": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.11.zip", "3.1.12": "https://downloads.wordpress.org/plugin/wp-optimize.3.1.12.zip", "3.2.10": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.10.zip", "3.2.11": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.11.zip", "3.2.12": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.12.zip", "3.2.13": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.13.zip", "3.2.14": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.14.zip", "3.2.15": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.15.zip", "3.2.16": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.16.zip", "3.2.17": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.17.zip", "3.2.18": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.18.zip", "3.2.19": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.19.zip", "3.2.20": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.20.zip", "3.2.21": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.21.zip", "3.2.22": "https://downloads.wordpress.org/plugin/wp-optimize.3.2.22.zip", "1.8.9.7": "https://downloads.wordpress.org/plugin/wp-optimize.1.8.9.7.zip", "1.8.9.8": "https://downloads.wordpress.org/plugin/wp-optimize.1.8.9.8.zip", "1.8.9.9": "https://downloads.wordpress.org/plugin/wp-optimize.1.8.9.9.zip", "1.8.9.10": "https://downloads.wordpress.org/plugin/wp-optimize.1.8.9.10.zip"}, "downloaded": 51272106, "description": "

    MORE THAN A CACHING PLUGIN

    \n

    WP-Optimize is trusted by more than 1 million WordPress website owners to boost performance and reduce page load times to improve your site’s user experiences and SERP rankings in Google.

    \n

    It does this in four clever ways:

    \n

    1. It caches your site

    \n

    Caching is the process of storing a temporary HTML version of your site on the server so it can be retrieved more quickly for the user.

    \n

    It’s a sure-fire way to ensure web pages load at lightning-fast speed. Turn it on in just one click.

    \n

    2. It compresses images

    \n

    Large images can really impact page speed load times. WP-Optimize makes it easy to identify and compress images to your preferred lossy / lossless settings in a couple of clicks.

    \n

    3. It cleans the database

    \n

    Your WordPress database stores everything that you need, plus some things that you don’t. WP-Optimize cleans and optimizes the database to speed up your site and save server resources.

    \n

    4. It minifies

    \n

    On top of its three main features, WP-Optimize Cache also has the more advanced minification feature.

    \n

    Together with caching, minification dramatically improves performance and page speed load time.

    \n

    1. CACHE YOUR SITE

    \n

    Turn on caching in just one click:

    \n

    WP-Optimize automatically and optimally configures itself for your WordPress site. Turn it on in one-click or refine its settings if you prefer.

    \n

    More cache features:

    \n
      \n
    • \n

      Cache preloading: This feature emulates a visit to your site, meaning cached files are served straight away, speeding up your site from the very first visit.

      \n
    • \n
    • \n

      GZIP Compression: When the server isn’t configured to do so, WP-Optimize delivers HTML, CSS and JS files to the user’s browser as smaller, compressed files, reducing the size of pages and style sheets by up to 90%!

      \n
    • \n
    • \n

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster [Premium].

      \n
    • \n
    \n

    Use cache settings to:

    \n
      \n
    • \n

      Serve cached content to logged in users: Turn this on if content stays the same for logged in users (or turn on and exclude URLs where content does change e.g. my account areas).

      \n
    • \n
    • \n

      Exclude content from cache: Exclude by URL, conditional tags, browser agent strings or list cookies that should prevent caching when set (advanced user settings).

      \n
    • \n
    • \n

      Deliver device-specific cache: Serve separate cache files to desktop and mobile devices . This ensures that responsive features e.g. desktop and mobile menus are cached separately and served correctly.

      \n
    • \n
    • \n

      User per role cache: Useful if your website delivers different content to different user roles. e.g. an e-commerce site that displays different content to resellers or consumers [Premium].

      \n
    • \n
    • \n

      User specific cache: Serves separate cache files to individual users. Useful for websites with personalised content e.g. Learning management systems [Premium].

      \n
    • \n
    • \n

      Cache purging permissions: Select which user roles are allowed to purge the cache e.g. admin only or perhaps a ‘teacher’ role in an LMS setting only [Premium].

      \n
    • \n
    \n

    2. COMPRESS IMAGES

    \n
      \n
    • \n

      Lossy or lossless compression options: Choose between maximum space saving, best image quality or somewhere in-between.

      \n
    • \n
    • \n

      WebP conversion: Recommended by Google, WebP can achieve up to 34% smaller file sizes compared to JPEG and up to 26% compared to PNG.

      \n
    • \n
    • \n

      Auto-compress: Check a box and every new image you upload will automatically be compressed to your preferred lossy / lossless settings.

      \n
    • \n
    • \n

      Bulk compression: Compress every existing image on your site with the press of a button.

      \n
    • \n
    • \n

      Restore original: Gone too far? Revert images back to their original in one click.

      \n
    • \n
    • \n

      Retain EXIF image data: Check a box to retain EXIF image data during compression.

      \n
    • \n
    • \n

      Lazy Load: Webpages load much faster by loading web parts gradually, when they’re needed vs simultaneous loading of everything, all at once [Premium].

      \n
    • \n
    • \n

      Delete orphaned images: Identify and delete unused images from your WordPress website, saving disk space [Premium].

      \n
    • \n
    • \n

      Delete unused image sizes: WordPress creates multiple sizes for every uploaded image causing the uploads folder to become bloated. Scan for image sizes not in use and remove them to save further disk space [Premium].

      \n
    • \n
    \n

    3. CLEAN AND OPTIMIZE THE DATABASE

    \n

    Cleans-up database tables, post revisions, auto draft posts, trashed posts, spam, trashed comments and more. Choose what to optimize or it’s one click to clean out the lot.

    \n
      \n
    • \n

      Schedule clean-ups: So you can set and forget. Choose from daily, weekly, fortnightly or monthly.

      \n
    • \n
    • \n

      Flexible clean-up schedules: You may wish to optimize database tables more frequently than you remove unapproved comments (for example). Choose the specific time and day when tasks should run [Premium].

      \n
    • \n
    • \n

      Retain a set number of weeks’ data during clean-ups: Just in case you need to retrieve something.

      \n
    • \n
    • \n

      Back up before clean-ups: If you delete something you shouldn’t, restore it in a couple of clicks with UpdraftPlus.

      \n
    • \n
    • \n

      Power tweak – Turbo boost for WooCommerce: Unique to WP-Optimize, this power tweak boosts performance by replacing a slow query in WooCommerce with two much more efficient queries. E-commerce sites transacting high numbers of orders stand to gain here [Premium].

      \n
    • \n
    • \n

      Power tweak – Boost performance by indexing the postmeta table: This unique power tweak works by allowing the WordPress postmeta table to be indexed, improving performance [Premium].

      \n
    • \n
    \n

    4. MINIFY AND COMBINE HTML, CSS AND JAVASCRIPT

    \n
      \n
    • \n

      Minify in just one click: Minifies HTML, JavaScript and CSS. Toggle on or off or customise each one under ‘settings’.

      \n
    • \n
    • \n

      Customise minification: Minify only (removing unnecessary code e.g line breaks and white spacing) or minify and merge. Apply the same or different settings to HTML, CSS and JavaScript.

      \n
    • \n
    • \n

      Asynchronous loading: Choose non-critical CSS and JavaScript files to load in the background and independently of other resources e.g. analytics or pixel scripts. Loading asynchronously eliminates render blocking and improves page speed.

      \n
    • \n
    • \n

      Exclude files from being minified: Specify CSS and JavaScript files to exclude from minification.

      \n
    • \n
    • \n

      Optimize fonts: Optimize Font Awesome and Google Fonts. Inline the font files, inherit from CSS settings or load CSS / Javascript asynchronously instead.

      \n
    • \n
    • \n

      Preload assets: WP-Optimize visits each web page on your site so the code is minified and preloaded for real life users, right from their very first visit.

      \n
    • \n
    • \n

      Preload key requests: Recommended by Google to improve page speed times. Critical resources (things like font files) get loaded first, so the page loads much faster.

      \n
    • \n
    \n

    WHY WP-OPTIMIZE?

    \n
      \n
    • It’s brought to you by TeamUpdraft, the team behind the world’s most trusted backup, migration and restoration plugin.
    • \n
    • It’s easy to use.
    • \n
    • It packs a punch for a free plugin.
    • \n
    \n

    WP-Optimize brings the best cache and optimization technology together into one single, seamless plugin to make your WordPress site fast, lean and efficient.

    \n

    PREMIUM FEATURES AT A GLANCE

    \n

    Our free version of WP-Optimize Cache is great, but we also have an even more powerful Premium version with extra features that offer the ultimate in freedom and flexibility:

    \n
      \n
    • Multisite Support: extends database optimisations so they function for multiple WordPress sites at a time. If you manage more than one website, you will need WP-Optimize Cache Premium.
    • \n
    • Flexibility and Control: gives you the power to optimize select individual tables or a particular combination of tables on one or more WordPress websites, rather than having to optimize all database tables.
    • \n
    • Deleting unused and unwanted images: removes orphaned images from your WordPress site, plus images of a certain, pre-defined size.
    • \n
    • Sophisticated Scheduling: offers a wide range of options for scheduling automatic optimization. Specify an exact time and run clean-ups daily, weekly, fortnightly or monthly and perform any number of additional once off optimizations.
    • \n
    • Seamless Graphical User Interface: for superb clarity in scheduling and managing of multi-site optimizations.
    • \n
    • WP-CLI support: provides a way to manage optimizations from command-line interface if you have lots of sites
    • \n
    • Lazy Loading: load only the images and part of a web-page when it is visible to the user so they can see something very quickly.
    • \n
    • Optimization Preview: gives users the ability to preview, select and remove data and records available for optimization from the database.
    • \n
    • Preload key requests: preload assets such as web fonts and icon fonts, as recommended by Google PageSpeed Insights.
    • \n
    • Premium support – caching is one of the most complex things you can do for a website, so premium support offers you peace of mind there’s someone to talk quickly to if you need any technical answers or help configuring the optimizations of cache settings for your website.
    • \n
    \n

    Translations

    \n

    Translators are welcome to contribute to the plugin. Please use the WordPress translation website.

    \n", "donate_link": "https://david.dw-perspective.org.uk/donate", "num_ratings": 2508, "screenshots": {"1": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-1.png?rev=2143870", "caption": "Cache - plugins comparison benchmark"}, "2": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-2.png?rev=2143870", "caption": "Database optimization"}, "3": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-3.png?rev=2143870", "caption": "UpdraftPlus running a backup before an optimization proceeds"}, "4": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-4.png?rev=2143870", "caption": "Table Report"}, "5": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-5.png?rev=2143870", "caption": "Image compression"}, "6": {"src": "https://ps.w.org/wp-optimize/assets/screenshot-6.png?rev=2143870", "caption": "Main cache screen"}}, "support_url": "https://wordpress.org/support/plugin/wp-optimize/", "contributors": {"aporter": {"avatar": "https://secure.gravatar.com/avatar/e6022bd1050be79e76d099696b2e0e277c2b23ed227fca2453ba961b1e87f8e4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aporter/", "display_name": "aporter"}, "webulous": {"avatar": "https://secure.gravatar.com/avatar/9d27225969d6c60ef591694d648dc3e78d7fa61741892a90514acf01e4af7035?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/webulous/", "display_name": "Venkat Raj"}, "dnutbourne": {"avatar": "https://secure.gravatar.com/avatar/9cb6b0d01619d3c87f8610d2d7e887f4cba4bd8c8056f56c898ec91086c5f94e?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dnutbourne/", "display_name": "DNutbourne"}, "lumberhack": {"avatar": "https://secure.gravatar.com/avatar/53a878926e0a72d870bc83a3a9862708ad664237d9d259840076adf9c7064daa?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/lumberhack/", "display_name": "LumberHack"}, "ruhanirabin": {"avatar": "https://secure.gravatar.com/avatar/9d0261aa75c90766e67fcb537aecf46d5d877c8d42e6b7ce4aa2274cbfc61e4b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/ruhanirabin/", "display_name": "Ruhani Rabin"}, "snightingale": {"avatar": "https://secure.gravatar.com/avatar/b256c78dd5aeecbec3f651bef6cd5802e2982eb32701b5210ed87b6e9a9f31e5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/snightingale/", "display_name": "snightingale"}, "davidanderson": {"avatar": "https://secure.gravatar.com/avatar/8cf7655071f82970f9635a0c7e7646551756c333b57166083e506a72cad98916?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/davidanderson/", "display_name": "David Anderson / Team Updraft"}}, "last_updated": "2025-09-24 10:29pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-optimize.4.3.0.zip", "author_profile": "https://profiles.wordpress.org/davidanderson/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "
      \n
    • 4.3.0: Two new features for Premium users, and lot of bug fixes and tweaks - a recommended update for all
    • \n
    "}, "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-fee5-7084-b775-e0bef7ccbafe", "name": "WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance", "slug": "wp-optimize", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1758752940, "version": "4.3.0"}, "support_threads": 32, "requires_plugins": [], "short_description": "Get caching and more with this powerful cache plugin. Cache, optimize images, clean your database and minify for maximum performance.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 22}'); -INSERT INTO public.plugins VALUES ('019a30c1-6831-7085-a35a-64802ce42eca', 'wp-reviews-plugin-for-google', 'Widgets for Google Reviews', 'Embed Google reviews fast and easily into your WordPress site. Increase SEO, trust and sales using Google reviews.', '

    Display your Google Reviews for free with our responsive widgets in 2 minutes.

    -

    The plugin displays your Google Reviews in amazing predesigned widgets. You can simply create and display your own widgets, and filter your reviews to build customers’ trust and increase SEO.

    -
    -

    With Google reviews WordPress plugin, you can proudly display customer feedback on your business website. The widget comes in many eye-catching styles and designs, so you can choose the settings that best suit your company image. If you are growing your business or even if you’ve already established roots in your niche, a widget like this can further develop your online reputation and lead to more conversion.

    -

    Without reviews, a business is left to fend for itself. Even if your company offers excellent products or streamlined services, you may always struggle to reach a broad audience if you don’t have consumers who would vouch for you. Consumers often make purchase decisions on the back of Google reviews, so don’t miss out on this free form of marketing that can skyrocket your sales and boost your online reputation.

    -

    Our Google reviews plugin is straightforward to implement directly into your website, so you can focus your energy on other aspects of the business. All it takes is two minutes, and you’re all set up. Simply copy your business website’s link into the widget, then follow the simple process outlined in the video above to display it on your WordPress page.

    -

    Google Reviews WordPress Plugin

    -

    Many successful businesses use WordPress plugins to show off rave reviews left by customers, in the hope that it persuades other consumers to give them a shot. Unless you’re not interested in free marketing, displaying Google reviews for your business is a no-brainer.

    -

    Google reviews, in particular, have a significant influence on consumer purchase decisions, given the massive popularity of the search engine and the number of people with Google accounts. Many consumers claim that Google is the first place they go to assess a business based on reviews, which makes Google reviews more reliable than those from other websites.

    -

    You can leverage Google to catapult your business to further success if you try to secure as many four and five-star reviews as possible. The more reviews you have, the more prominent your business will become in a Google search, meaning more consumers will consider using your services.

    -

    If you don’t yet have any Google reviews, there’s no need to panic; simply start requesting of your existing customers that they leave one when they get a chance. Get into the habit of soliciting reviews through email and SMS since by making it a regular practice you increase your chances of getting more of them.

    -

    Free plugin features

    -

    The Google Reviews WordPress plugin offers various layouts and styles to choose from and allows for easy integration into any WordPress page.

    -
      -
    • Free usage
    • -
    • Display up to 10 Google Reviews
    • -
    • 40+ Widget layouts
    • -
    • 25+ Pre-designed widget styles
    • -
    • 1 Review widget
    • -
    • Filter reviews by rating
    • -
    • Display review reply
    • -
    • Hide any reviews
    • -
    • Anonymize reviewer name
    • -
    • Language support
    • -
    • Shortcode integration
    • -
    • Keep all reviews in a WordPress database
    • -
    • SEO boost
    • -
    • Dark website support
    • -
    • Use in any page builder: Gutenberg, Elementor, Page Origin, Beaver Builder, WPBakery, Divi, Classic, …
    • -
    • Widget lazy load
    • -
    • Zero loading time
    • -
    • Use of assets stored in CDN
    • -
    • Linux & Windows (XAMPP, WAMP,…) compatible
    • -
    • Multisite compatibility
    • -
    -

    Get more features with our professional review software

    -

    Create a Free Account for More Features

    -

    With the professional package, you’ll be able to display reviews from many of the top review websites, including Facebook, Yelp, Tripadvisor, and Airbnb. You’ll also be able to edit the widget image with a wide range of options, so you can cater to your demographic and increase the likelihood of conversion.

    -

    If you want to stand out from your competitors, a great way to do so is to make the most of the free marketing reviews can offer. The professional review management software gives you access to a whole host of tools that simplify the process, leaving you more time and energy for running the business.

    -

    Here are the features included in the software:

    -
      -
    • Display all reviews from Google, Facebook, Yelp, Amazon, Tripadvisor, Booking.com, AirBnb, Hotels.com, …
    • -
    • Display reviews from different platforms in a widget
    • -
    • Display reviews with photos
    • -
    • Customizable design
    • -
    • Unlimited number of widgets
    • -
    • Management of multiple businesses
    • -
    • Option to hide a review or mark as spam
    • -
    • Professional review tagging system
    • -
    • Widgets are updated when you receive a new review
    • -
    • Widget link modification
    • -
    • Edit review order
    • -
    • Review shortening
    • -
    • Automated review invitation system
    • -
    • Review widgets for your email signatures
    • -
    • Generate amazing images from your reviews to Instagram, Facebook, Twitter, Pinterest
    • -
    • Shortcode & HTML/JavaScript support
    • -
    • Detailed statistics
    • -
    • Priority support
    • -
    • AMP support
    • -
    -

    Create a Free Account for More Features

    -

    Additional free review plugins

    -

    Why not display your other ratings, too? Check out our other free review plugins:

    - -

    Languages

    -

    If your company does business globally, it’s in your interest to cater to various languages.

    -

    Our Widgets for Google Reviews supports the following languages:
    -Afrikaans, Albanian, Arabic, Armenian, Azerbaijani, Bengali, Bosnian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hindi, Hungarian, Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian, Macedonian, Malay, Norwegian, Persian, Polish, Portuguese, Romanian, Russian, Scottish Gaelic, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukranian, Vietnamese, Welsh

    -

    Support

    -

    If you have any issues at all setting up the Google Reviews WordPress Plugin for your business, you can contact our customer support team in various ways.

    -

    We offer 24/7 email support in English.

    -

    We recommend the following order when searching for answers:
    -1. Plugin FAQ here at the bottom – if you don’t already know why it’s worth displaying Google Reviews
    -2. You can find more info and Troubleshooting in the plugin’s admin dashboard after install.
    -3. Trustindex FAQ
    -4. Check topics or ask a new question here: Support Forum
    -5. Join our Community on Facebook: https://www.facebook.com/groups/990874785532977
    -6. If you still can’t find the answer, feel free to email us: support@trustindex.io

    -

    To find out more about who we are and what we do, here are some useful links:

    - -', '13.2.2', 'Trustindex', '6.2', '7.0', '6.9', 'https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.2.2.zip', '2019-11-13 00:00:00+00', '2025-10-29 13:29:00+00', 'https://profiles.wordpress.org/trustindex/', 98, 2338, 31, 26, 800000, 15065595, 'https://wordpress.org/plugins/wp-reviews-plugin-for-google/', 'https://www.trustindex.io/prices/', NULL, NULL, 'https://wordpress.org/support/plugin/wp-reviews-plugin-for-google/', 'https://wordpress.org/plugins/wp-reviews-plugin-for-google/?preview=1', NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Widgets for Google Reviews", "slug": "wp-reviews-plugin-for-google", "tags": {"google": "google", "widget": "widget", "reviews": "reviews", "google-business": "google business", "google-places-reviews": "google places reviews"}, "added": "2019-11-13", "icons": {"1x": "https://ps.w.org/wp-reviews-plugin-for-google/assets/icon-128x128.png?rev=2721569", "2x": "https://ps.w.org/wp-reviews-plugin-for-google/assets/icon-256x256.png?rev=2721569"}, "author": "Trustindex", "rating": 98, "status": "open", "tested": "6.9", "banners": {"low": "https://ps.w.org/wp-reviews-plugin-for-google/assets/banner-772x250.png?rev=3029963", "high": "https://ps.w.org/wp-reviews-plugin-for-google/assets/banner-1544x500.png?rev=3029963"}, "ratings": {"1": 59, "2": 14, "3": 17, "4": 35, "5": 2213}, "version": "13.2.2", "homepage": "https://wordpress.org/plugins/wp-reviews-plugin-for-google/", "requires": "6.2", "sections": {"faq": "\n
    \nWhat is the Google reviews WordPress Plugin?\n\n

    \n

    A Google Reviews WordPress Plugin is a tool that you can use to display customer reviews on your WordPress page or website. It can help you establish an online reputation and build customer loyalty and trust.

    \n

    \n
    \nCan you use the plugin free without subscribing?\n\n

    \n

    Yes, the Google Reviews Widget plugin is completely free to download for all users.

    \n

    \n
    \nHow can you get the widget’s code?\n\n

    \n

    You will gain access to the widget’s code as soon as you’ve finished setting up the plugin. You are then free to use it across your company websites as you see fit.

    \n

    \n
    \nWhat are the major features of the free plugin?\n\n

    \n

    With the free plugin, you’ll have access to as many as 40 widget layouts and 25 predesigned styles. You’ll be able to display up to 10 Google reviews, support various languages, and filter the reviews according to criteria such as star rating and date.

    \n

    \n
    \nWhich website CMS or site builder are the widgets compatible with?\n\n

    \n

    The widgets are compatible with just about every website CMS or site builder, including but not limited to Adobe Muse, Blogger, Elementor, HTML, and Squarespace.

    \n

    \n
    \nHow to embed Google reviews on your Website?\n\n

    \n

    To embed Google reviews on your website, simply position the widget on the website by copying the html shortcode directly to the desired page.

    \n

    \n
    \nHow to display Google my Business reviews on your website?\n\n

    \n

    To display Google my Business reviews on your website, you need to copy and paste your Google Place URL into the plugin. Then you can easily generate the widget.

    \n

    \n
    \nHow can you filter your Google Business reviews?\n\n

    \n

    To filter Google Business reviews, you can use the ‘filter your ratings’ drop-down menu during the widget setup process.

    \n

    \n
    \nAre the Google review widgets mobile responsive?\n\n

    \n

    Yes, the Google review widgets will be responsive on all devices.

    \n

    \n
    \nCan you display Google reviews in a slider widget?\n\n

    \n

    Yes, absolutely! In the layout screen of the setup process, the first few options you’ll see are slider widgets.

    \n

    \n
    \nCan you make modifications after the widget went live?\n\n

    \n

    Yes, you can. If you need to make changes after publishing the widget, you can do so through the admin board.

    \n

    \n
    \nWhy are Google reviews important?\n\n

    \n

    Google reviews are important because they lend credibility to your business and help you establish your reputation online, influencing consumer purchase decisions.

    \n

    \n
    \nAre Google reviews more reliable than other reviews?\n\n

    \n

    While it’s hard to say definitively, Google reviews are most likely the first source many consumers turn to for advice about a purchase decision.

    \n

    \n
    \nHow can you make the most out of Google reviews for your business?\n\n

    \n

    To make the most out of Google reviews, display the widget somewhere prominent on your homepage so visitors can see upfront how impressive your customer service is.

    \n

    \n
    \nCan your website visitors leave reviews in the widget?\n\n

    \n

    Yes we have widgets with this option, should visitors wish to have their review displayed in the widget, they can click the CTA (Call To Action) button which will lead them to the relevant review page on Google.

    \n

    \n
    \nWhat is the easiest way to collect Google reviews?\n\n

    \n

    A good rule to follow to collect more Google reviews is: if you don’t ask, you don’t get.

    \n

    When you communicate with your clients, use this as an opportunity to insert a link to your Google review page or mention leaving a review, whether it’s in an email, an SMS, or an in-person interaction.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    excellent and good view

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jose (bazkaesnwyllt) on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent and good view, I just wanted to show how grateful I am to the whole team for their good work, I am really impressed and I hope the result is exact, thank you and best regards, good job!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy minteyewear on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    good plugin!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    excellent plugin and easy to use

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy leewaye on October 27, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    excellent plugin and easy to use. nice for my local business website. thanks!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Rock solid and good for service area businesses

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy TopLocal-org (bizpower) on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I chose TrustIndex because of its credibility. But I have a service area business and couldn''t figure out how to use it because I don''t have a maps place ID. I tried all of the complicated inspection, looking through lines of code, etc and nothing worked. Then I read something tiny in the plugin and used the GBP url in guest mode. That worked beautifully! It''s light weight too so thumbs up from me.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fantastisch

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy tigerannabelle on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Sehr gute Plugin, leichte Einrichtung

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best ever

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy zimozimo on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy, perfect, free.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Gallery Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cpetitclerc on October 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Does what it says it does and no issues. Great product.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excelente

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy feraltamirano on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Muy facil de configurar

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy atlantchiro on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Great plugin. Very easy to use. Installed it on two sites. No issues so far. Highly recommomend.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin and easy to use!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy appzade on October 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    So simple to set up and the free version does exactly what I need it to do!

    \n
    \n
    \n", "changelog": "

    The change log and upgrade notices can be found here: https://admin.trustindex.io/page/static/content/wp-changelog

    \n", "description": "

    Display your Google Reviews for free with our responsive widgets in 2 minutes.

    \n

    The plugin displays your Google Reviews in amazing predesigned widgets. You can simply create and display your own widgets, and filter your reviews to build customers’ trust and increase SEO.

    \n
    \n

    With Google reviews WordPress plugin, you can proudly display customer feedback on your business website. The widget comes in many eye-catching styles and designs, so you can choose the settings that best suit your company image. If you are growing your business or even if you’ve already established roots in your niche, a widget like this can further develop your online reputation and lead to more conversion.

    \n

    Without reviews, a business is left to fend for itself. Even if your company offers excellent products or streamlined services, you may always struggle to reach a broad audience if you don’t have consumers who would vouch for you. Consumers often make purchase decisions on the back of Google reviews, so don’t miss out on this free form of marketing that can skyrocket your sales and boost your online reputation.

    \n

    Our Google reviews plugin is straightforward to implement directly into your website, so you can focus your energy on other aspects of the business. All it takes is two minutes, and you’re all set up. Simply copy your business website’s link into the widget, then follow the simple process outlined in the video above to display it on your WordPress page.

    \n

    Google Reviews WordPress Plugin

    \n

    Many successful businesses use WordPress plugins to show off rave reviews left by customers, in the hope that it persuades other consumers to give them a shot. Unless you’re not interested in free marketing, displaying Google reviews for your business is a no-brainer.

    \n

    Google reviews, in particular, have a significant influence on consumer purchase decisions, given the massive popularity of the search engine and the number of people with Google accounts. Many consumers claim that Google is the first place they go to assess a business based on reviews, which makes Google reviews more reliable than those from other websites.

    \n

    You can leverage Google to catapult your business to further success if you try to secure as many four and five-star reviews as possible. The more reviews you have, the more prominent your business will become in a Google search, meaning more consumers will consider using your services.

    \n

    If you don’t yet have any Google reviews, there’s no need to panic; simply start requesting of your existing customers that they leave one when they get a chance. Get into the habit of soliciting reviews through email and SMS since by making it a regular practice you increase your chances of getting more of them.

    \n

    Free plugin features

    \n

    The Google Reviews WordPress plugin offers various layouts and styles to choose from and allows for easy integration into any WordPress page.

    \n
      \n
    • Free usage
    • \n
    • Display up to 10 Google Reviews
    • \n
    • 40+ Widget layouts
    • \n
    • 25+ Pre-designed widget styles
    • \n
    • 1 Review widget
    • \n
    • Filter reviews by rating
    • \n
    • Display review reply
    • \n
    • Hide any reviews
    • \n
    • Anonymize reviewer name
    • \n
    • Language support
    • \n
    • Shortcode integration
    • \n
    • Keep all reviews in a WordPress database
    • \n
    • SEO boost
    • \n
    • Dark website support
    • \n
    • Use in any page builder: Gutenberg, Elementor, Page Origin, Beaver Builder, WPBakery, Divi, Classic, …
    • \n
    • Widget lazy load
    • \n
    • Zero loading time
    • \n
    • Use of assets stored in CDN
    • \n
    • Linux & Windows (XAMPP, WAMP,…) compatible
    • \n
    • Multisite compatibility
    • \n
    \n

    Get more features with our professional review software

    \n

    Create a Free Account for More Features

    \n

    With the professional package, you’ll be able to display reviews from many of the top review websites, including Facebook, Yelp, Tripadvisor, and Airbnb. You’ll also be able to edit the widget image with a wide range of options, so you can cater to your demographic and increase the likelihood of conversion.

    \n

    If you want to stand out from your competitors, a great way to do so is to make the most of the free marketing reviews can offer. The professional review management software gives you access to a whole host of tools that simplify the process, leaving you more time and energy for running the business.

    \n

    Here are the features included in the software:

    \n
      \n
    • Display all reviews from Google, Facebook, Yelp, Amazon, Tripadvisor, Booking.com, AirBnb, Hotels.com, …
    • \n
    • Display reviews from different platforms in a widget
    • \n
    • Display reviews with photos
    • \n
    • Customizable design
    • \n
    • Unlimited number of widgets
    • \n
    • Management of multiple businesses
    • \n
    • Option to hide a review or mark as spam
    • \n
    • Professional review tagging system
    • \n
    • Widgets are updated when you receive a new review
    • \n
    • Widget link modification
    • \n
    • Edit review order
    • \n
    • Review shortening
    • \n
    • Automated review invitation system
    • \n
    • Review widgets for your email signatures
    • \n
    • Generate amazing images from your reviews to Instagram, Facebook, Twitter, Pinterest
    • \n
    • Shortcode & HTML/JavaScript support
    • \n
    • Detailed statistics
    • \n
    • Priority support
    • \n
    • AMP support
    • \n
    \n

    Create a Free Account for More Features

    \n

    Additional free review plugins

    \n

    Why not display your other ratings, too? Check out our other free review plugins:

    \n\n

    Languages

    \n

    If your company does business globally, it’s in your interest to cater to various languages.

    \n

    Our Widgets for Google Reviews supports the following languages:
    \nAfrikaans, Albanian, Arabic, Armenian, Azerbaijani, Bengali, Bosnian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hindi, Hungarian, Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian, Macedonian, Malay, Norwegian, Persian, Polish, Portuguese, Romanian, Russian, Scottish Gaelic, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukranian, Vietnamese, Welsh

    \n

    Support

    \n

    If you have any issues at all setting up the Google Reviews WordPress Plugin for your business, you can contact our customer support team in various ways.

    \n

    We offer 24/7 email support in English.

    \n

    We recommend the following order when searching for answers:
    \n1. Plugin FAQ here at the bottom – if you don’t already know why it’s worth displaying Google Reviews
    \n2. You can find more info and Troubleshooting in the plugin’s admin dashboard after install.
    \n3. Trustindex FAQ
    \n4. Check topics or ask a new question here: Support Forum
    \n5. Join our Community on Facebook: https://www.facebook.com/groups/990874785532977
    \n6. If you still can’t find the answer, feel free to email us: support@trustindex.io

    \n

    To find out more about who we are and what we do, here are some useful links:

    \n\n", "screenshots": "
    1. \"Sample

      Sample widget - Slider (light background)

    2. \"Sample

      Sample widget - Grid (light background)

    3. \"Sample

      Sample widget - List (light background)

    4. \"Connect

      Connect platform easily

    5. \"Select

      Select layouts easily

    6. \"\"
    7. \"\"
    8. \"\"
    9. \"\"
    10. \"\"
    11. \"\"
    ", "installation": "
      \n
    1. Upload the plugin files to the /wp-content/plugins/ directory, or install the plugin through the WordPress plugins screen directly.
    2. \n
    3. Activate the plugin through the ‘Plugins’ screen in WordPress
    4. \n
    5. Use the Trustindex.io menu item on the left to configure the plugin.
    6. \n
    7. You can get premium features under the “Get more Features” tab!
    8. \n
    \n"}, "versions": {"11.9": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.11.9.zip", "12.0": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.0.zip", "12.2": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.2.zip", "12.3": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.3.zip", "12.5": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.5.zip", "12.8": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.8.zip", "12.9": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.9.zip", "13.0": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.0.zip", "13.1": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.1.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.zip", "10.9.1": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.10.9.1.zip", "12.1.2": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.1.2.zip", "12.4.7": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.4.7.zip", "12.6.1": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.6.1.zip", "12.7.6": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.12.7.6.zip", "13.2.1": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.2.1.zip", "13.2.2": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.2.2.zip"}, "downloaded": 15065595, "description": "

    Display your Google Reviews for free with our responsive widgets in 2 minutes.

    \n

    The plugin displays your Google Reviews in amazing predesigned widgets. You can simply create and display your own widgets, and filter your reviews to build customers’ trust and increase SEO.

    \n
    \n

    With Google reviews WordPress plugin, you can proudly display customer feedback on your business website. The widget comes in many eye-catching styles and designs, so you can choose the settings that best suit your company image. If you are growing your business or even if you’ve already established roots in your niche, a widget like this can further develop your online reputation and lead to more conversion.

    \n

    Without reviews, a business is left to fend for itself. Even if your company offers excellent products or streamlined services, you may always struggle to reach a broad audience if you don’t have consumers who would vouch for you. Consumers often make purchase decisions on the back of Google reviews, so don’t miss out on this free form of marketing that can skyrocket your sales and boost your online reputation.

    \n

    Our Google reviews plugin is straightforward to implement directly into your website, so you can focus your energy on other aspects of the business. All it takes is two minutes, and you’re all set up. Simply copy your business website’s link into the widget, then follow the simple process outlined in the video above to display it on your WordPress page.

    \n

    Google Reviews WordPress Plugin

    \n

    Many successful businesses use WordPress plugins to show off rave reviews left by customers, in the hope that it persuades other consumers to give them a shot. Unless you’re not interested in free marketing, displaying Google reviews for your business is a no-brainer.

    \n

    Google reviews, in particular, have a significant influence on consumer purchase decisions, given the massive popularity of the search engine and the number of people with Google accounts. Many consumers claim that Google is the first place they go to assess a business based on reviews, which makes Google reviews more reliable than those from other websites.

    \n

    You can leverage Google to catapult your business to further success if you try to secure as many four and five-star reviews as possible. The more reviews you have, the more prominent your business will become in a Google search, meaning more consumers will consider using your services.

    \n

    If you don’t yet have any Google reviews, there’s no need to panic; simply start requesting of your existing customers that they leave one when they get a chance. Get into the habit of soliciting reviews through email and SMS since by making it a regular practice you increase your chances of getting more of them.

    \n

    Free plugin features

    \n

    The Google Reviews WordPress plugin offers various layouts and styles to choose from and allows for easy integration into any WordPress page.

    \n
      \n
    • Free usage
    • \n
    • Display up to 10 Google Reviews
    • \n
    • 40+ Widget layouts
    • \n
    • 25+ Pre-designed widget styles
    • \n
    • 1 Review widget
    • \n
    • Filter reviews by rating
    • \n
    • Display review reply
    • \n
    • Hide any reviews
    • \n
    • Anonymize reviewer name
    • \n
    • Language support
    • \n
    • Shortcode integration
    • \n
    • Keep all reviews in a WordPress database
    • \n
    • SEO boost
    • \n
    • Dark website support
    • \n
    • Use in any page builder: Gutenberg, Elementor, Page Origin, Beaver Builder, WPBakery, Divi, Classic, …
    • \n
    • Widget lazy load
    • \n
    • Zero loading time
    • \n
    • Use of assets stored in CDN
    • \n
    • Linux & Windows (XAMPP, WAMP,…) compatible
    • \n
    • Multisite compatibility
    • \n
    \n

    Get more features with our professional review software

    \n

    Create a Free Account for More Features

    \n

    With the professional package, you’ll be able to display reviews from many of the top review websites, including Facebook, Yelp, Tripadvisor, and Airbnb. You’ll also be able to edit the widget image with a wide range of options, so you can cater to your demographic and increase the likelihood of conversion.

    \n

    If you want to stand out from your competitors, a great way to do so is to make the most of the free marketing reviews can offer. The professional review management software gives you access to a whole host of tools that simplify the process, leaving you more time and energy for running the business.

    \n

    Here are the features included in the software:

    \n
      \n
    • Display all reviews from Google, Facebook, Yelp, Amazon, Tripadvisor, Booking.com, AirBnb, Hotels.com, …
    • \n
    • Display reviews from different platforms in a widget
    • \n
    • Display reviews with photos
    • \n
    • Customizable design
    • \n
    • Unlimited number of widgets
    • \n
    • Management of multiple businesses
    • \n
    • Option to hide a review or mark as spam
    • \n
    • Professional review tagging system
    • \n
    • Widgets are updated when you receive a new review
    • \n
    • Widget link modification
    • \n
    • Edit review order
    • \n
    • Review shortening
    • \n
    • Automated review invitation system
    • \n
    • Review widgets for your email signatures
    • \n
    • Generate amazing images from your reviews to Instagram, Facebook, Twitter, Pinterest
    • \n
    • Shortcode & HTML/JavaScript support
    • \n
    • Detailed statistics
    • \n
    • Priority support
    • \n
    • AMP support
    • \n
    \n

    Create a Free Account for More Features

    \n

    Additional free review plugins

    \n

    Why not display your other ratings, too? Check out our other free review plugins:

    \n\n

    Languages

    \n

    If your company does business globally, it’s in your interest to cater to various languages.

    \n

    Our Widgets for Google Reviews supports the following languages:
    \nAfrikaans, Albanian, Arabic, Armenian, Azerbaijani, Bengali, Bosnian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hindi, Hungarian, Icelandic, Indonesian, Italian, Japanese, Kazakh, Korean, Lithuanian, Macedonian, Malay, Norwegian, Persian, Polish, Portuguese, Romanian, Russian, Scottish Gaelic, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukranian, Vietnamese, Welsh

    \n

    Support

    \n

    If you have any issues at all setting up the Google Reviews WordPress Plugin for your business, you can contact our customer support team in various ways.

    \n

    We offer 24/7 email support in English.

    \n

    We recommend the following order when searching for answers:
    \n1. Plugin FAQ here at the bottom – if you don’t already know why it’s worth displaying Google Reviews
    \n2. You can find more info and Troubleshooting in the plugin’s admin dashboard after install.
    \n3. Trustindex FAQ
    \n4. Check topics or ask a new question here: Support Forum
    \n5. Join our Community on Facebook: https://www.facebook.com/groups/990874785532977
    \n6. If you still can’t find the answer, feel free to email us: support@trustindex.io

    \n

    To find out more about who we are and what we do, here are some useful links:

    \n\n", "donate_link": "https://www.trustindex.io/prices/", "num_ratings": 2338, "screenshots": {"1": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-1.png?rev=3032086", "caption": "Sample widget - Slider (light background)"}, "2": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-2.png?rev=3032086", "caption": "Sample widget - Grid (light background)"}, "3": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-3.png?rev=3032086", "caption": "Sample widget - List (light background)"}, "4": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-4.png?rev=3032086", "caption": "Connect platform easily"}, "5": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-5.png?rev=3032086", "caption": "Select layouts easily"}, "6": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-6.png?rev=3032086", "caption": ""}, "7": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-7.png?rev=3032086", "caption": ""}, "8": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-8.png?rev=3032086", "caption": ""}, "9": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-9.png?rev=3032086", "caption": ""}, "10": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-10.png?rev=3032086", "caption": ""}, "11": {"src": "https://ps.w.org/wp-reviews-plugin-for-google/assets/screenshot-11.png?rev=3032086", "caption": ""}}, "support_url": "https://wordpress.org/support/plugin/wp-reviews-plugin-for-google/", "contributors": {"trustindex": {"avatar": "https://secure.gravatar.com/avatar/8da64826006a2477b7eaed28970af12d9a9585fbecb2db27ba78337924410abf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/trustindex/", "display_name": "Trustindex"}}, "last_updated": "2025-10-29 1:29pm GMT", "preview_link": "https://wordpress.org/plugins/wp-reviews-plugin-for-google/?preview=1", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-reviews-plugin-for-google.13.2.2.zip", "author_profile": "https://profiles.wordpress.org/trustindex/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-ff0a-7200-b48c-4378873cc7fb", "name": "Widgets for Google Reviews", "slug": "wp-reviews-plugin-for-google", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1761744540, "version": "13.2.2"}, "support_threads": 31, "requires_plugins": [], "short_description": "Embed Google reviews fast and easily into your WordPress site. Increase SEO, trust and sales using Google reviews.", "author_block_count": 1, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 26}'); -INSERT INTO public.plugins VALUES ('019a30c1-683b-71fb-bcb9-2606114b7747', 'wps-hide-login', 'WPS Hide Login', 'Change wp-login.php to anything you want.', '

    English

    -

    WPS Hide Login is a very light plugin that lets you easily and safely change the url of the login form page to anything you want. It doesn’t literally rename or change files in core, nor does it add rewrite rules. It simply intercepts page requests and works on any WordPress website. The wp-admin directory and wp-login.php page become inaccessible, so you should bookmark or remember the url. Deactivating this plugin brings your site back exactly to the state it was before.

    -

    This plugin is kindly proposed by WPServeur the specialized WordPress web host.

    -

    Discover also our other free extensions:
    -– WPS Limit Login to block brute force attacks.
    -– WPS Bidouille to optimize your WordPress and get more info.
    -– WPS Cleaner to clean your WordPress site.

    -

    This plugin is only maintained, which means we do not guarantee free support. Consider reporting a problem and be patient.

    -

    Français

    -

    WPS Hide Login est un plugin très léger qui vous permet de changer facilement et en toute sécurité l’url de la page de formulaire de connexion. Il ne renomme pas littéralement ou ne modifie pas les fichiers dans le noyau, ni n’ajoute des règles de réécriture. Il intercepte simplement les demandes de pages et fonctionne sur n’importe quel site WordPress. Le répertoire wp-admin et la page wp-login.php deviennent inaccessibles, vous devez donc ajouter un signet ou vous souvenir de l’URL. Désactiver ce plugin ramène votre site exactement à l’état dans lequel il était auparavant.

    -

    Ce plugin vous est gentiment proposé par WPServeur l’hébergeur spécialisé WordPress.

    -

    Plus d’infos sur son utilisation : https://wpformation.com/wps-hide-login-url-connexion-wordpress/

    -

    Découvrez également nos autres extensions gratuites :
    -– WPS Limit Login pour bloquer les attaques par force brute.
    -– WPS Bidouille pour optimiser votre WordPress et faire le plein d’infos.
    -– WPS Cleaner pour nettoyer votre site WordPress.

    -

    Ce plugin est seulement maintenu, ce qui signifie que nous ne garantissons pas un support gratuit. Envisagez de signaler un problème et soyez patient.

    -

    Compatibility

    -

    English

    -

    Requires WordPress 4.1 or higher. All login related things such as the registration form, lost password form, login widget and expired sessions just keep working.

    -

    It’s also compatible with any plugin that hooks in the login form, including:

    -
      -
    • BuddyPress,
    • -
    • bbPress,
    • -
    • Jetpack,
    • -
    • WPS Limit Login,
    • -
    • and User Switching.
    • -
    -

    Obviously it doesn’t work with plugins or themes that hardcoded wp-login.php.

    -

    Works with multisite, with subdomains and subfolders. Activating it for a network allows you to set a networkwide default. Individual sites can still rename their login page to something else.

    -

    If you’re using a page caching plugin other than WP Rocket, you should add the slug of the new login url to the list of pages not to cache. WP Rocket is already fully compatible with the plugin.

    -

    Français

    -

    Nécessite WordPress 4.1 ou supérieur. Toutes les choses liées à la connexion telles que le formulaire d’inscription, le formulaire de mot de passe perdu, le widget de connexion et les sessions expirées continuent de fonctionner.

    -

    Il est également compatible avec tout plugin qui se connecte au formulaire de connexion, notamment:

    -
      -
    • BuddyPress,
    • -
    • bbPress,
    • -
    • Jetpack,
    • -
    • WPS Limit Login,
    • -
    • and User Switching.
    • -
    -

    Évidemment, cela ne fonctionne pas avec les plugins ou les thèmes hardcoded wp-login.php.

    -

    Fonctionne en multisite, avec sous-domaines ou sous dossiers. L’activer pour un réseau vous permet de définir une valeur par défaut pour l’ensemble du réseau. Les sites individuels peuvent toujours renommer leur page de connexion pour autre chose.

    -

    Si vous utilisez un plugin de mise en cache de pages autre que WP Rocket, vous devez ajouter le slug de la nouvelle URL de connexion à la liste des pages à ne pas mettre en cache. WP Rocket est déjà entièrement compatible avec le plugin.

    -', '1.9.17.2', 'Remy Perona', '4.1', '7.0', '6.8.3', 'https://downloads.wordpress.org/plugin/wps-hide-login.1.9.17.2.zip', '2015-04-23 00:00:00+00', '2025-04-11 07:15:00+00', 'https://profiles.wordpress.org/tabrisrp/', 96, 2098, 8, 2, 2000000, 28923889, NULL, 'https://www.paypal.me/donateKulkaNicolas', NULL, NULL, 'https://wordpress.org/support/plugin/wps-hide-login/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WPS Hide Login", "slug": "wps-hide-login", "tags": {"login": "login", "rename": "rename", "wp-login": "wp login", "wp-login-php": "wp-login.php", "custom-login-url": "custom login url"}, "added": "2015-04-23", "icons": {"1x": "https://ps.w.org/wps-hide-login/assets/icon-128x128.png?rev=1820667", "2x": "https://ps.w.org/wps-hide-login/assets/icon-256x256.png?rev=1820667"}, "author": "Remy Perona", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wps-hide-login/assets/banner-772x250.jpg?rev=1820667", "high": "https://ps.w.org/wps-hide-login/assets/banner-1544x500.jpg?rev=1820667"}, "ratings": {"1": 60, "2": 8, "3": 15, "4": 32, "5": 1983}, "version": "1.9.17.2", "homepage": "", "requires": "4.1", "sections": {"faq": "\n
    \nI forgot my login url!\n\n

    \n

    Either go to your MySQL database and look for the value of whl_page in the options table, or remove the wps-hide-login folder from your plugins folder, log in through wp-login.php and reinstall the plugin.

    \n

    On a multisite install the whl_page option will be in the sitemeta table, if there is no such option in the options table.

    \n

    \n
    \nRegistration and lost password URL\n\n

    \n

    You have to give the url. example: /login?action=register or /login?action=lostpassword
    \nBut there is no redirection via the plugin, the default URL of WordPress (/wp-login.php?action=register or /wp-login.php?action=lostpassword) otherwise everyone could know the url of administration of your site.

    \n

    \n
    \nI’m locked out!\n\n

    \n

    This case can come from plugins modifying your .htaccess files to add or change rules, or from an old WordPress MU configuration not updated since Multisite was added.

    \n

    First step is to check your .htaccess file and compare it to a regular one, to see if the problem comes from it.

    \n

    \n
    \nJ’ai oublié mon identifiant de connexion !\n\n

    \n

    Allez dans votre base de données MySQL et recherchez la valeur de ‘whl_page’ dans la table des options, ou supprimez le dossier ‘wps-hide-login’ de votre dossier ‘plugins’, connectez-vous via wp-login.php et réinstallez le plugin .

    \n

    Sur une installation multisite, l’option ‘whl_page’ sera dans la table de sitemeta, si l’option n’existe pas dans la table des options.

    \n

    \n
    \nURL d’inscription et de mot de passe oublié\n\n

    \n

    Il vous faut donner l’url. exemple : /login?action=register ou /login?action=lostpassword
    \nMais il n’y pas de redirection via le plugin, de l’url par défaut de WordPress (/wp-login.php?action=register ou /wp-login.php?action=lostpassword) sinon tout le monde pourrait connaître l’url d’administration de votre site.

    \n

    \n
    \nJe suis bloqué !\n\n

    \n

    Ce cas peut provenir de plugins modifiant vos fichiers .htaccess pour ajouter ou modifier des règles, ou d’une ancienne configuration de WordPress MU non mise à jour depuis l’ajout de Multisite.

    \n

    La première étape consiste à vérifier votre fichier .htaccess et à le comparer à un fichier .htaccess normal, pour voir si le problème provient de ce fichier.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Still getting log in attempts

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy webify24 on August 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    On most of my sites this plugin works but there are still sites that gets log in attempts from the admin log in screen. How is this possible?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Your Plugin crashes 200 websites

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy davidperezh on June 22, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After activating the plugin I can no longer log in any of my customers sites. It returns:

    \n\n\n\n

    Not Found

    \n\n\n\n

    The requested URL was not found on this server.

    \n\n\n\n

    I''m be foreced to deactivate your plugin in all the sites to recover the admin access.

    \n\n\n\n

    Please take not of this error and please do your best ASAP to fix the issue to activate the plugin.

    \n\n\n\n

    Thank you.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Broke my site and leaves admin logged in always

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy HudsonValleyWebDesign (jaycbrf) on June 16, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    After activating the plugin I can no longer log out of my site. The admin bar is always visible for all to see and get access to the back end. Site is now redirecting to my blog page with a 404 error and can not get back into the site with normal wp-login url or the replaced login url.
    Using Oxygen Builder with no-theme.
    Plugin is useless.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Beware! Custom login URL redirects to 404.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Brad (braads) on May 26, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The (new) login URL redirects to 404.
    I could no longer log in... Had to deactivate the plugin on the server.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    So Easy, Perfect Results

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy stephgphotos on May 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I was plagued by bot and hacker logins, all failing until locked out - so many every day! I installed this plug-in, changed my custom url path, and voila! Not a single hack!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Easy and helps stop bots

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Jason Ball (jasonfintips) on May 1, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy plugin that should be on a starter pack to hide your login from bots. Seems light and easy.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Failed with WP 6.7

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy alanlivtech on March 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I tried to download the latest version of the WP (6.7.2), I set up the site than install the WPS Hide Login plugin. I active the plugin and change the path as /system-login/ and save my change

    However, I would failed to logout the admin.
    I cannot redirect to login page with another browser
    I tried to type the path as. <domain>/system-login , <domain>/system-login/wp-login.php , <domain>/system-login/login or other path, all the link are not available

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does exactly what it should do, nice!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy zielniok on March 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It does just one thing right. It works. Not a matter of course these days for plugins. Thank you very much for it. BTW: if you ask for review, don''t use a Google MyBusiness link. I can''t rate your company, but I like to do it here. 🙏🏽

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy milmotor on March 11, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thank you

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    non funziona

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy pagrob on January 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Se clicchi su recupera password espone tutto come prima

    \n
    \n
    \n", "changelog": "

    1.9.17.2

    \n
      \n
    • Tested up to 6.8
    • \n
    \n

    1.9.17.1

    \n
      \n
    • Fix link dashboard in admin network > sites
    • \n
    \n

    1.9.17

    \n
      \n
    • Tested up to 6.6
    • \n
    • Fix link dashboard in admin network > sites
    • \n
    \n

    1.9.16.7

    \n
      \n
    • Fix Fatal Error with BuddyBoss
    • \n
    \n

    1.9.16.6

    \n
      \n
    • Fix Fatal Error with BuddyBoss Platform
    • \n
    \n

    1.9.16.5

    \n
      \n
    • Fix Fatal Error with BuddyBoss
    • \n
    \n

    1.9.16.4

    \n
      \n
    • Fix vulnerability : https://www.sprocketsecurity.com/resources/discovering-wp-admin-urls-in-wordpress-with-gravityforms
    • \n
    \n

    1.9.16.3

    \n
      \n
    • Fix NOTICE: PHP message: PHP Warning: Private methods cannot be final as they are never overridden by other classes (https://wordpress.org/support/topic/private-methods-cannot-be-final-as-they-are-never-overridden-by-other-classes-2/)
    • \n
    \n

    1.9.16.2

    \n
      \n
    • Fix post_password if already logged in
    • \n
    \n

    1.9.16.1

    \n
      \n
    • Change section desc
    • \n
    \n

    1.9.16

    \n
      \n
    • Fix vulnerability : Login Page Disclosure
    • \n
    \n

    1.9.15.2

    \n
      \n
    • Fix number tags
    • \n
    \n

    1.9.15.1

    \n
      \n
    • Revert fix
    • \n
    \n

    1.9.15

    \n
      \n
    • Fix vulnerability (Thanks @petitphp) : Login Page Disclosure
    • \n
    \n

    1.9.14

    \n
      \n
    • Tested up to 6.5
    • \n
    \n

    1.9.13.2

    \n
      \n
    • Remove admin notice
    • \n
    \n

    1.9.13.1

    \n
      \n
    • Remove admin notice
    • \n
    \n

    1.9.13

    \n
      \n
    • Fix dismiss admin notice
    • \n
    \n

    1.9.12

    \n
      \n
    • Fix vulnerability (Thanks Naveen Muthusamy – Patchstack) : Bypass Vulnerability with multisite WordPress /wp-admin/install.php.
    • \n
    • Add warning in options discussions settings.
    • \n
    • Add warning in dashboard if comment_registration option is activated.
    • \n
    \n

    1.9.11

    \n
      \n
    • Tested up to 6.4
    • \n
    \n

    1.9.9

    \n
      \n
    • Tested up to 6.3
    • \n
    \n

    1.9.8

    \n
      \n
    • Update readme
    • \n
    \n

    1.9.7

    \n
      \n
    • Tested up to 6.1
    • \n
    • Fix : is_login (Thanks @container)
    • \n
    \n

    1.9.6

    \n
      \n
    • Tested up to 6.0
    • \n
    \n

    1.9.4

    \n
      \n
    • Tested up to 5.9
    • \n
    \n

    1.9.3

    \n
      \n
    • Fix : PHP Warning: Undefined array key “path”
    • \n
    \n

    1.9.2

    \n
      \n
    • Add action before redirect
    • \n
    • Fix redirect with wp-cli (Thanks @netson)
    • \n
    \n

    1.9.1

    \n
      \n
    • Fix : by-pass security issue allowing an unauthenticated user to get login page by setting a random referer string via curl request.
    • \n
    \n

    1.9

    \n
      \n
    • Fix : redirect ajax add_to_cart
    • \n
    \n

    1.8.8

    \n
      \n
    • Fix : redirect_url (Thanks Don)
    • \n
    \n

    1.8.7

    \n
      \n
    • Fix : remove redirect in doing cron
    • \n
    \n

    1.8.6

    \n
      \n
    • Tested up to 5.8
    • \n
    \n

    1.8.5

    \n
      \n
    • Fix : Force refresh permalinks update option ‘whl_page’
    • \n
    \n

    1.8.4

    \n
      \n
    • Tested up to 5.7
    • \n
    \n

    1.8.3

    \n
      \n
    • Fix : remove WP_Review
    • \n
    \n

    1.8.2

    \n
      \n
    • Fix notice “Notice: Trying to get property ‘href’ of non-object”
    • \n
    \n

    1.8.1

    \n
      \n
    • Fix fatal error with vendor wp-dismissible-notices-handler and wp-review-me
    • \n
    \n

    1.8

    \n
      \n
    • Fix multisite subdomain for website menu (Thanks Eric Celeste)
    • \n
    \n

    1.7

    \n
      \n
    • Fix vulnerability (Thanks Sebastian Schmitt) : Posting “post_password” with arbitrary content to /wp-login.php reveals the normal wordpress login page.
    • \n
    \n

    1.6.1

    \n
      \n
    • Fix : loopback request site-health
    • \n
    \n

    1.6

    \n
      \n
    • Tested up to 5.6
    • \n
    • Add compatibility with PHP8
    • \n
    \n

    1.5.7

    \n
      \n
    • Fix : Text Domain Issue
    • \n
    \n

    1.5.6

    \n
      \n
    • Fix : flush rewrite rules after install or update option
    • \n
    • Tested up to 5.4
    • \n
    \n

    1.5.5

    \n
      \n
    • Add filter to redirect in cases where the user is already logged in.
    • \n
    • Fix : add rawurldecode for all $_SERVER[‘REQUEST_URI’] (Thanks @nintechnet)
    • \n
    \n

    1.5.4.2

    \n
      \n
    • Revert to code in tag 1.5.3
    • \n
    \n

    1.5.4.1

    \n
      \n
    • Fix : home_url / site_url
    • \n
    \n

    1.5.4

    \n
      \n
    • Fix : Compatibility with WPML (Thanks @susansiow)
    • \n
    \n

    1.5.3

    \n
      \n
    • Fix : Security vulnerabilities (Thanks @juliobox)
    • \n
    \n

    1.5.2.2

    \n
      \n
    • Tested up to 5.2
    • \n
    • Fix : Domain language
    • \n
    \n

    1.5.2.1

    \n
      \n
    • Fix : Notice: Undefined index: query
    • \n
    \n

    1.5.2

    \n
      \n
    • Fix : Action URL wp_send_user_request()
    • \n
    \n

    1.5.1

    \n
      \n
    • Fix : Action URL get_the_password_form()
    • \n
    \n

    1.5

    \n
      \n
    • Enhancement: Add custom redirection URL
    • \n
    \n

    1.4.5

    \n
      \n
    • Fix : function wp_login_url on page 404 now returns an empty link
    • \n
    \n

    1.4.4

    \n
      \n
    • Fix : Too many redirects when a user clicks “Log in with WordPress.com”
    • \n
    \n

    1.4.3

    \n
      \n
    • Fix : Fatal Error with multisite WP
    • \n
    \n

    1.4.2

    \n
      \n
    • Fix : Error with library for compat WordPress and PHP
    • \n
    \n

    1.4.1

    \n
      \n
    • Fix : Remove message review if PHP is too old
    • \n
    \n

    1.4

    \n
      \n
    • Enhancement code with composer, namespace and autoload
    • \n
    \n

    1.3.4.2

    \n
      \n
    • Fix : Remove message review if PHP is too old
    • \n
    \n

    1.3.4.1

    \n
      \n
    • Fix : Deprecated method
    • \n
    \n

    1.3.4

    \n
      \n
    • Add : Review message
    • \n
    • Fix : Redirect url wp-admin/options.php
    • \n
    \n

    1.3.3

    \n
      \n
    • Add : Filter hook for enable wp-signup (@sumobi)
    • \n
    \n

    1.3.2

    \n
      \n
    • Fix : Encoding of the login with a space in the emails
    • \n
    \n

    1.3.1

    \n
      \n
    • Fix : redirect change admin email
    • \n
    \n

    1.3

    \n
      \n
    • Fix : redirect wp-register.php
    • \n
    \n

    1.2.7

    \n
      \n
    • Enhancement for Woocommerce email notification
    • \n
    \n

    1.2.6.1

    \n
      \n
    • Revert redirect after login
    • \n
    \n

    1.2.6

    \n
      \n
    • Fix : redirect after login
    • \n
    \n

    1.2.5.1

    \n
      \n
    • Fix : add action in hook activate
    • \n
    \n

    1.2.5

    \n
      \n
    • Remove : redirect activate
    • \n
    \n

    1.2.4

    \n
      \n
    • Remove: Third party wpserveur
    • \n
    \n

    1.2.3.1

    \n
      \n
    • Enhancement: Add translations cs_CZ, da_DK, es_ES, it_IT, ru_RU
    • \n
    • Fix: Parse error classes/plugin.php l.530
    • \n
    \n

    1.2.3

    \n
      \n
    • Fix: change 403 to 404 error on wp-admin
    • \n
    • Fix: activate plugin
    • \n
    • Enhancement: Third party wpserveur
    • \n
    \n

    1.2.2

    \n
      \n
    • Enhancement: Compatibility 4.9.x
    • \n
    \n

    1.2.1

    \n
      \n
    • Enhancement: Prevent access to the login page by using the URL encoded version of wp-login.php
    • \n
    \n

    1.2

    \n
      \n
    • Enhancement: Prevent redirection to login URL when accessing /wp-admin/customize.php directly
    • \n
    • Enhancement: Redirect to admin URL when already logged-in and accessing login URL without the action query string
    • \n
    \n

    1.1.7

    \n
      \n
    • Fix: change fake 404 on wp-admin when not logged-in to a 403 forbidden to prevent fatal errors with various themes & plugins
    • \n
    \n

    1.1.6

    \n
      \n
    • Fix: bug with Yoast SEO causing a Fatal Error and blank screen when loading /wp-admin/ without being logged-in
    • \n
    \n

    1.1.5

    \n
      \n
    • Fix: Stop displaying the new login url notice everywhere when settings are updated (thanks @ kmelia on GitHub)
    • \n
    • Improvement: better way of retrieving the 404 template
    • \n
    \n

    1.1.4

    \n
      \n
    • Fix: bypass the plugin when $pagenow is admin-post.php
    • \n
    \n

    1.1.3

    \n
      \n
    • Fix: issue if no 404 template in active theme directory
    • \n
    \n

    1.1.2

    \n
      \n
    • Modified priority on hooks to fix a problem with some configurations
    • \n
    \n

    1.1.1

    \n
      \n
    • Check for Rename wp-login.php activation before activating WPS Hide Login to prevent conflict
    • \n
    \n

    1.1

    \n
      \n
    • Fix : CSRF security issue when saving option value in single site and multisite mode. Thanks to @Secupress
    • \n
    • Improvement : changed option location from permalinks to general, because register_setting doesn’t work on permalinks page.
    • \n
    • Improvement : notice after saving is now dismissible (compatibility with WP 4.2)
    • \n
    • Uninstall function is now in it’s separate file uninstall.php
    • \n
    • Some cleaning and reordering of code
    • \n
    \n

    1.0

    \n
      \n
    • Initial version. This is a fork of the Rename wp-login.php plugin, which is unmaintained https://wordpress.org/plugins/rename-wp-login/. All previous changelogs can be found there.
    • \n
    \n", "description": "

    English

    \n

    WPS Hide Login is a very light plugin that lets you easily and safely change the url of the login form page to anything you want. It doesn’t literally rename or change files in core, nor does it add rewrite rules. It simply intercepts page requests and works on any WordPress website. The wp-admin directory and wp-login.php page become inaccessible, so you should bookmark or remember the url. Deactivating this plugin brings your site back exactly to the state it was before.

    \n

    This plugin is kindly proposed by WPServeur the specialized WordPress web host.

    \n

    Discover also our other free extensions:
    \n– WPS Limit Login to block brute force attacks.
    \n– WPS Bidouille to optimize your WordPress and get more info.
    \n– WPS Cleaner to clean your WordPress site.

    \n

    This plugin is only maintained, which means we do not guarantee free support. Consider reporting a problem and be patient.

    \n

    Français

    \n

    WPS Hide Login est un plugin très léger qui vous permet de changer facilement et en toute sécurité l’url de la page de formulaire de connexion. Il ne renomme pas littéralement ou ne modifie pas les fichiers dans le noyau, ni n’ajoute des règles de réécriture. Il intercepte simplement les demandes de pages et fonctionne sur n’importe quel site WordPress. Le répertoire wp-admin et la page wp-login.php deviennent inaccessibles, vous devez donc ajouter un signet ou vous souvenir de l’URL. Désactiver ce plugin ramène votre site exactement à l’état dans lequel il était auparavant.

    \n

    Ce plugin vous est gentiment proposé par WPServeur l’hébergeur spécialisé WordPress.

    \n

    Plus d’infos sur son utilisation : https://wpformation.com/wps-hide-login-url-connexion-wordpress/

    \n

    Découvrez également nos autres extensions gratuites :
    \n– WPS Limit Login pour bloquer les attaques par force brute.
    \n– WPS Bidouille pour optimiser votre WordPress et faire le plein d’infos.
    \n– WPS Cleaner pour nettoyer votre site WordPress.

    \n

    Ce plugin est seulement maintenu, ce qui signifie que nous ne garantissons pas un support gratuit. Envisagez de signaler un problème et soyez patient.

    \n

    Compatibility

    \n

    English

    \n

    Requires WordPress 4.1 or higher. All login related things such as the registration form, lost password form, login widget and expired sessions just keep working.

    \n

    It’s also compatible with any plugin that hooks in the login form, including:

    \n
      \n
    • BuddyPress,
    • \n
    • bbPress,
    • \n
    • Jetpack,
    • \n
    • WPS Limit Login,
    • \n
    • and User Switching.
    • \n
    \n

    Obviously it doesn’t work with plugins or themes that hardcoded wp-login.php.

    \n

    Works with multisite, with subdomains and subfolders. Activating it for a network allows you to set a networkwide default. Individual sites can still rename their login page to something else.

    \n

    If you’re using a page caching plugin other than WP Rocket, you should add the slug of the new login url to the list of pages not to cache. WP Rocket is already fully compatible with the plugin.

    \n

    Français

    \n

    Nécessite WordPress 4.1 ou supérieur. Toutes les choses liées à la connexion telles que le formulaire d’inscription, le formulaire de mot de passe perdu, le widget de connexion et les sessions expirées continuent de fonctionner.

    \n

    Il est également compatible avec tout plugin qui se connecte au formulaire de connexion, notamment:

    \n
      \n
    • BuddyPress,
    • \n
    • bbPress,
    • \n
    • Jetpack,
    • \n
    • WPS Limit Login,
    • \n
    • and User Switching.
    • \n
    \n

    Évidemment, cela ne fonctionne pas avec les plugins ou les thèmes hardcoded wp-login.php.

    \n

    Fonctionne en multisite, avec sous-domaines ou sous dossiers. L’activer pour un réseau vous permet de définir une valeur par défaut pour l’ensemble du réseau. Les sites individuels peuvent toujours renommer leur page de connexion pour autre chose.

    \n

    Si vous utilisez un plugin de mise en cache de pages autre que WP Rocket, vous devez ajouter le slug de la nouvelle URL de connexion à la liste des pages à ne pas mettre en cache. WP Rocket est déjà entièrement compatible avec le plugin.

    \n", "screenshots": "
    1. \"Setting

      Setting on single site installation

    2. \"Setting

      Setting for network wide

    ", "installation": "

    English

    \n
      \n
    1. Go to Plugins › Add New.
    2. \n
    3. Search for WPS Hide Login.
    4. \n
    5. Look for this plugin, download and activate it.
    6. \n
    7. The page will redirect you to the settings. Change your login url there.
    8. \n
    9. You can change this option any time you want, just go back to Settings › WPS Hide Login.
    10. \n
    \n

    Français

    \n
      \n
    1. Aller dans Extensions › Ajouter.
    2. \n
    3. Rechercher WPS Hide Login.
    4. \n
    5. Recherchez ce plugin, téléchargez-le et activez-le.
    6. \n
    7. La page vous redirigera vers les paramètres. Changez votre URL de connexion.
    8. \n
    9. Vous pouvez changer cette option quand vous le souhaitez, il vous suffit de retourner dans Paramètres > WPS Hide Login.
    10. \n
    \n"}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.zip", "1.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.zip", "1.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.6.zip", "1.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.7.zip", "1.8": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.zip", "1.1.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.1.7.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.7.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.4.zip", "1.4.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.4.5.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.7.zip", "1.6.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.6.1.zip", "1.8.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.8.zip", "1.9.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/wps-hide-login.zip", "1.9.10": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.10.zip", "1.9.11": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.11.zip", "1.9.12": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.12.zip", "1.9.13": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.13.zip", "1.9.15": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.15.zip", "1.9.16": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.zip", "1.9.17": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.17.zip", "1.2.3.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.3.1.zip", "1.2.5.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.5.1.zip", "1.2.6.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.2.6.1.zip", "1.3.4.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.4.1.zip", "1.3.4.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.3.4.2.zip", "1.5.2.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.2.1.zip", "1.5.2.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.2.2.zip", "1.5.4.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.4.1.zip", "1.5.4.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.5.4.2.zip", "1.9.13.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.13.1.zip", "1.9.13.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.13.2.zip", "1.9.15.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.15.1.zip", "1.9.15.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.15.2.zip", "1.9.16.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.1.zip", "1.9.16.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.2.zip", "1.9.16.3": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.3.zip", "1.9.16.4": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.4.zip", "1.9.16.5": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.5.zip", "1.9.16.6": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.6.zip", "1.9.16.7": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.16.7.zip", "1.9.17.1": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.17.1.zip", "1.9.17.2": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.17.2.zip"}, "downloaded": 28923889, "description": "

    English

    \n

    WPS Hide Login is a very light plugin that lets you easily and safely change the url of the login form page to anything you want. It doesn’t literally rename or change files in core, nor does it add rewrite rules. It simply intercepts page requests and works on any WordPress website. The wp-admin directory and wp-login.php page become inaccessible, so you should bookmark or remember the url. Deactivating this plugin brings your site back exactly to the state it was before.

    \n

    This plugin is kindly proposed by WPServeur the specialized WordPress web host.

    \n

    Discover also our other free extensions:
    \n– WPS Limit Login to block brute force attacks.
    \n– WPS Bidouille to optimize your WordPress and get more info.
    \n– WPS Cleaner to clean your WordPress site.

    \n

    This plugin is only maintained, which means we do not guarantee free support. Consider reporting a problem and be patient.

    \n

    Français

    \n

    WPS Hide Login est un plugin très léger qui vous permet de changer facilement et en toute sécurité l’url de la page de formulaire de connexion. Il ne renomme pas littéralement ou ne modifie pas les fichiers dans le noyau, ni n’ajoute des règles de réécriture. Il intercepte simplement les demandes de pages et fonctionne sur n’importe quel site WordPress. Le répertoire wp-admin et la page wp-login.php deviennent inaccessibles, vous devez donc ajouter un signet ou vous souvenir de l’URL. Désactiver ce plugin ramène votre site exactement à l’état dans lequel il était auparavant.

    \n

    Ce plugin vous est gentiment proposé par WPServeur l’hébergeur spécialisé WordPress.

    \n

    Plus d’infos sur son utilisation : https://wpformation.com/wps-hide-login-url-connexion-wordpress/

    \n

    Découvrez également nos autres extensions gratuites :
    \n– WPS Limit Login pour bloquer les attaques par force brute.
    \n– WPS Bidouille pour optimiser votre WordPress et faire le plein d’infos.
    \n– WPS Cleaner pour nettoyer votre site WordPress.

    \n

    Ce plugin est seulement maintenu, ce qui signifie que nous ne garantissons pas un support gratuit. Envisagez de signaler un problème et soyez patient.

    \n

    Compatibility

    \n

    English

    \n

    Requires WordPress 4.1 or higher. All login related things such as the registration form, lost password form, login widget and expired sessions just keep working.

    \n

    It’s also compatible with any plugin that hooks in the login form, including:

    \n
      \n
    • BuddyPress,
    • \n
    • bbPress,
    • \n
    • Jetpack,
    • \n
    • WPS Limit Login,
    • \n
    • and User Switching.
    • \n
    \n

    Obviously it doesn’t work with plugins or themes that hardcoded wp-login.php.

    \n

    Works with multisite, with subdomains and subfolders. Activating it for a network allows you to set a networkwide default. Individual sites can still rename their login page to something else.

    \n

    If you’re using a page caching plugin other than WP Rocket, you should add the slug of the new login url to the list of pages not to cache. WP Rocket is already fully compatible with the plugin.

    \n

    Français

    \n

    Nécessite WordPress 4.1 ou supérieur. Toutes les choses liées à la connexion telles que le formulaire d’inscription, le formulaire de mot de passe perdu, le widget de connexion et les sessions expirées continuent de fonctionner.

    \n

    Il est également compatible avec tout plugin qui se connecte au formulaire de connexion, notamment:

    \n
      \n
    • BuddyPress,
    • \n
    • bbPress,
    • \n
    • Jetpack,
    • \n
    • WPS Limit Login,
    • \n
    • and User Switching.
    • \n
    \n

    Évidemment, cela ne fonctionne pas avec les plugins ou les thèmes hardcoded wp-login.php.

    \n

    Fonctionne en multisite, avec sous-domaines ou sous dossiers. L’activer pour un réseau vous permet de définir une valeur par défaut pour l’ensemble du réseau. Les sites individuels peuvent toujours renommer leur page de connexion pour autre chose.

    \n

    Si vous utilisez un plugin de mise en cache de pages autre que WP Rocket, vous devez ajouter le slug de la nouvelle URL de connexion à la liste des pages à ne pas mettre en cache. WP Rocket est déjà entièrement compatible avec le plugin.

    \n", "donate_link": "https://www.paypal.me/donateKulkaNicolas", "num_ratings": 2098, "screenshots": {"1": {"src": "https://ps.w.org/wps-hide-login/assets/screenshot-1.jpg?rev=1146909", "caption": "Setting on single site installation"}, "2": {"src": "https://ps.w.org/wps-hide-login/assets/screenshot-2.png?rev=1143480", "caption": "Setting for network wide"}}, "support_url": "https://wordpress.org/support/plugin/wps-hide-login/", "contributors": {"wpserveur": {"avatar": "https://secure.gravatar.com/avatar/f04351fff97b5f1197e75c6df38d183e3533ccd1f5c654c181f08e57e74be785?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpserveur/", "display_name": "WPServeur"}, "wpformation": {"avatar": "https://secure.gravatar.com/avatar/adaffd3b99cdee00f98fbf3e9be064a0f007c199250638333e6dea50049068b4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpformation/", "display_name": "wpformation"}, "nicolaskulka": {"avatar": "https://secure.gravatar.com/avatar/e5c50e75685e7a1bff6c81dec404cb64d71b5eeca1e52c041d84ccefbb070ea7?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nicolaskulka/", "display_name": "NicolasKulka"}}, "last_updated": "2025-04-11 7:15am GMT", "preview_link": "", "requires_php": "7.0", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wps-hide-login.1.9.17.2.zip", "author_profile": "https://profiles.wordpress.org/tabrisrp/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 2000000, "aspiresync_meta": {"id": "019a30bf-ff5b-7327-b7d5-490a90a6a541", "name": "WPS Hide Login", "slug": "wps-hide-login", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1744355700, "version": "1.9.17.2"}, "support_threads": 8, "requires_plugins": [], "short_description": "Change wp-login.php to anything you want.", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "", "support_threads_resolved": 2}'); -INSERT INTO public.plugins VALUES ('019a30c1-6846-715f-90ca-5c02877af480', 'wp-smushit', 'Smush Image Optimization – Optimize Images | Compress & Lazy Load Images | Convert WebP & AVIF | Image CDN', 'Optimize images & bulk compress images with lossless compression, lazy load, convert to WebP or AVIF, and properly size images via CDN for incredi …', '

    The #1 Image Optimization Plugin for WordPress

    -

    Smush is the leading image optimization plugin – optimize, resize, and compress images, as well as convert images to WebP or AVIF format for faster loading web pages.

    -

    Brought to you by the WPMU DEV team – founded in 2007 and trusted by web professionals from freelancer to agency worldwide ever since.

    -

    Whether you spell it ‘optimise’ or ‘optimize’ – with Smush’s image optimizer you can compress images and serve images in next-gen formats (convert to WebP or AVIF), all without introducing a visible drop in quality.

    -

    Enjoy uninterrupted bulk image optimization with Smush Pro.

    -

    Level up immediately with exclusive Pro benefits like uninterrupted image optimization, 5x more image compression, and 119-point global image CDN. Learn more about Pro.

    -

    Award-Winning Image Optimizer

    -

    Smush has been benchmarked and tested number one for speed and quality. Beyond that, it’s also the award-winning, back-to-back proven crowd-favorite WordPress image optimizer trusted by over 1M+ worldwide to:

    -
      -
    • Optimize images
    • -
    • Compress images
    • -
    • Lazy load images & videos
    • -
    • Preload critical images
    • -
    • Automatic resizing
    • -
    • Resize larger images
    • -
    • Convert to WebP or AVIF
    • -
    • And more…
    • -
    -

    Why Use Smush To Optimize Images (The Smush Difference)

    -

    Smush was built from the ground up to make it easy for WordPress users to optimize images, activate lazy loading, compress media files, and more – whether they’re just getting started, or a seasoned pro who’s developed thousands of websites.

    -

    Improve website performance (along with Google PageSpeed Insights scores) with compressed and optimized images and lazy loading – all while actually delivering a better user experience because the rollout of Core Web Vitals has proven one thing: performance is about far more than just scoring well on performance testing tools. Visitor experience matters.

    -

    Discover the features that set Smush apart from other image optimization plugins:

    -
      -
    • Lossless compression (Basic Smush) – Strip unused data and compress images without affecting image quality.
    • -
    • Lossy compression (Super Smush) – Optimize images up to 2x more than lossless compression with our cutting-edge, multi-pass lossy image compression.
    • -
    • Ultra Smush (Pro Only) – Take performance to the next level with 5x image compressing power! Your images will be as light and fast as possible, while still preserving remarkable image quality.
    • -
    • Built-In Lazy Loading – Lazy load images to defer loading of offscreen images & videos with the flip of a switch.
    • -
    • Convert to WebP or AVIF (Pro Only) – Use the Next-Gen Formats feature to convert and automatically serve images in next-gen WebP or AVIF format.
    • -
    • Preload Critical Images (Pro Only) – Improve Google Pagespeed scores by automatically preloading Largest Contentful Paint (LCP) images.
    • -
    • Bulk Smush – Bulk optimize and compress images with one click.
    • -
    • Background Optimization (Pro Only) – Smush’s powerful image optimization features will continue to run in the background even when the plugin is closed.
    • -
    • Automatic Resizing (Pro Only) – Speeds up your site by automatically resizing images to fit their containers, eliminating “Properly size images” PageSpeed warnings.
    • -
    • Resize Larger Images – Set a maximum width and height, and add missing image sizes to allow the browser to make intelligent decisions about which image to load.
    • -
    • 119-point global CDN (Pro Only) – Ensure blazing-fast image delivery anywhere in the world. Includes automatic WebP/AVIF conversion and image resizing, plus, GIF / Rest API support.
    • -
    • Incorrect Image Size Detection – Quickly locate images that are slowing down your site.
    • -
    • Directory Smush – Optimize images even if they aren’t in the default WordPress media library.
    • -
    • Automated Optimization – Asynchronously auto-smush your attachments for super fast compression on upload.
    • -
    • No Monthly Limits – Optimize all of your images (up to 5 MB in size) free forever (no daily, monthly, or annual limits).
    • -
    • Gutenberg Block Integration – View image compression information directly in image blocks.
    • -
    • Multisite Compatible – Flexible global and subsite settings for multisite installations.
    • -
    • Optimize All Image Files – Smush supports optimization for all of your PNG and JPEG files.
    • -
    • No Performance Impact On Your Server – Image optimization is not run on your website’s server to prevent wasting server resources (that you pay for) and is instead run using the fast, reliable WPMU DEV Smush API.
    • -
    • Configs – Set your preferred Smush settings, save them as a config, and instantly upload to any other site.
    • -
    • And many, many, more!
    • -
    -

    Learn More With These Hands-On Image Optimization & Performance Tutorials

    - -

    Next-Gen Formats – Serve Images In WebP or AVIF format

    -

    With Smush, you can take advantage of next-gen image formats by converting all of your images to WebP or AVIF. WebP & AVIF are file formats that enable superior image compression and quality retention. All major performance testing solutions, including Google PageSpeed Insights, assess your site’s ability to serve images in these next-gen formats due to the significant impact on visitor experience.

    -

    WebP lossless images are 26% smaller in size compared to PNGs. WebP lossy images are 25-34% smaller than comparable JPG images. AVIF images are up to 60% smaller than comparable JPG or PNG images. More information can be found in this Google developers article and this web.dev article.

    -

    The best part: Smush’s Next-Gen Formats feature makes this incredibly easy to set up with the ability to host all images locally (not requiring the use of a CDN). Our Next-Gen Formats feature includes automatically replacing PNG and JPEG images on your website’s frontend to serve WebP or AVIF images – with the necessary fallbacks for browsers that don’t support next-gen formats yet.

    -

    Learn more: How To Convert Images to WebP In WordPress

    -

    Note: Yes, Smush supports next-gen conversion for all image formats, including JPEG to WebP/AVIF, and PNG to WebP/AVIF.

    -

    With the best image optimization plugin for WordPress – you can finally stop worrying about the performance impact of using the images you want on your website.

    -

    Compress Images While Preserving Image Quality

    -

    Image compression plugins don’t have to destroy images with a visible, 30% loss in quality. Smush strips hidden information from your images (that can often be bulky), and reduces image file sizes without introducing a visible impact on appearance.

    -

    Smush meticulously scans every image you upload – or have already added to your site – cuts all the unnecessary data, and scales it for you before adding it to your media library. And it can serve images in WebP or AVIF format.

    -

    Compress Images While You Sleep With Background Image Optimization

    -

    Have a large number of images to compress? Smush’s powerful optimization features will continue to work their magic in the background, even when you’ve closed the plugin completely. You’ll receive an email when image optimization has been completed – with a full report.

    -

    Compress Any Image in Any Directory

    -

    As well as smushing your media uploads, you may want to compress the images stored in other folders. Smush now lets you compress any image in any directory – so that you can optimize all the images on your site – including NextGEN images, images stored on Amazon S3 using WP Offload Media and images in EVERY WordPress plugin and theme package!

    -

    Compatible with Your Favorite Themes, Page Builders, and Media Library Plugins

    -

    No matter what theme or plugins you use to manage your WordPress media library, Smush has you covered. Check out just a few of the popular products Smush is working with to help make your site faster and more efficient:

    - -

    Incorrect Image Size Detection

    -

    Smush includes a wrong-size image finder. Activate this feature, and your images will be highlighted with smart tips to let you easily resize your images. Quickly locate the images that are keeping you from getting that perfect 100 on your Google PageSpeed test.

    -

    Defer Offscreen Images & Videos (Lazy Load)

    -

    Smush includes built-in lazy loading. If your page has a bunch of images & videos below the fold, lazy loading will drastically speed up your page by serving only the images being viewed, and delaying others further down the page.

    -

    Save time with Smush Configs

    -

    Configs allow you to save your preferred Smush configuration settings and apply them to your other sites in a few clicks. You can create unlimited configs.

    -

    Here’s What Our Users Are Saying

    -

    ★★★★★

    -
    -

    “I had no idea that my page load time was being dragged down by the images. The plugin nearly halved the time it took.” – karlcw

    -
    -

    ★★★★★

    -
    -

    “I optimise my photos in Photoshop, but Smush makes it so easy – it does it automatically. I can just sit back and enjoy the speed.” – helen432

    -
    -

    ★★★★★

    -
    -

    “Smush helped reduce the total files size on my site and increased browsing speed. Well done guys!” – pdci

    -
    -

    ★★★★★

    -
    -

    “It’s very discrete and does not bother me with an API key or other additional installation steps. The main dashboard of the plugin gives me nice insight. Overall it really fits my needs and I’ll be willing to upgrade to pro if my needs change. I’d recommend it to clients/friends without hesitation. Keep it up!” – tarkan_

    -
    -

    What about Multisite?

    -

    Smush can be used to optimize all images across your entire network! Use global settings, or configure each site individually.

    -

    Smush is super easy to use – no confusing image compression software settings. Smush lets you optimize all images in your library either one at a time, or all together. Plus, configure auto-smush to asynchronously scale and compress some or all of your images as they are being uploaded – it’s incredibly fast.

    -

    The faster your site loads, the more Google, Bing, Yahoo, and other search engines will like it. Your site will load faster and rank higher.

    -

    Shameless Plug(ins)

    -
      -
    • Hummingbird – Page Speed Optimization
    • -
    • SmartCrawl – SEO Optimizer
    • -
    • Forminator – Form, Poll, and Quiz Builder
    • -
    • Defender – Security, Monitoring, and Hack Protection
    • -
    • Hustle – Pop-ups, Slide-ins and Email Opt-ins
    • -
    • Beehive – Customizable Google Analytics Dashboards
    • -
    -

    Smush can take care of all your image compression needs… all for free!

    -

    However, if you’d like fast CDN image delivery, WebP/AVIF conversion, automatic image resizing, the ability to optimize (or optimise) images up to 256MB, bulk smush optimization for all your images in just one-click, auto-convert PNG to JPEG, the ability to make a copy of your full-sized images (to restore them at any point), you can always take the next step with WP Smush Pro. And get even more with her whole team of WordPress optimization hero friends (security, SEO, performance, support, and maintenance automation) – trusted by thousands of agencies and freelancers offering site maintenance services.

    -

    Privacy

    -

    Smush does not interact with end users on your website. The only input option Smush has is to a newsletter subscription for site admins only.

    -

    Smush uses a third-party email service (Mailchimp) to send informational emails (opt-in) to the site administrator. The administrator’s email address is sent to Mailchimp and a cookie is set by the service. Only administrator information is collected by Mailchimp.

    -

    Smush sends images to the WPMU DEV servers to optimize them for web use. This includes the transfer of EXIF data. The EXIF data will either be stripped or returned as it is. It is not stored on the WPMU DEV servers.

    -

    About Us

    -

    WPMU DEV is a premium supplier of quality WordPress plugins, services and support. Learn more here:
    -https://wpmudev.com/

    -

    Don’t forget to stay up to date on everything WordPress from the Internet’s number one resource:
    -WPMU DEV Blog

    -

    Hey, one more thing… we hope you enjoy our free offerings as much as we’ve loved making them for you!

    -

    Contact and Credits

    -

    Originally written by Alex Dunae at Dialect (dialect.ca, e-mail ‘alex’ at ‘dialect dot ca’), 2008-11.

    -', '3.22.1', 'WPMU DEV - Your All-in-One WordPress Platform', '6.4', '7.4', '6.8.3', 'https://downloads.wordpress.org/plugin/wp-smushit.3.22.1.zip', '2008-12-05 00:00:00+00', '2025-10-06 14:47:00+00', 'https://profiles.wordpress.org/wpmudev/', 96, 6024, 6, 5, 1000000, 61144202, 'https://wpmudev.com/project/wp-smush-pro/', NULL, 'commercial', 'https://wpmudev.com/project/wp-smush-pro/', 'https://wordpress.org/support/plugin/wp-smushit/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Smush Image Optimization – Optimize Images | Compress & Lazy Load Images | Convert WebP & AVIF | Image CDN", "slug": "wp-smushit", "tags": {"webp": "webp", "convert-webp": "convert webp", "compress-images": "compress images", "optimize-images": "optimize images", "image-optimization": "image optimization"}, "added": "2008-12-05", "icons": {"1x": "https://ps.w.org/wp-smushit/assets/icon-128x128.png?rev=2746115", "2x": "https://ps.w.org/wp-smushit/assets/icon-256x256.png?rev=2746115"}, "author": "WPMU DEV - Your All-in-One WordPress Platform", "rating": 96, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=2624292", "high": "https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=2624292"}, "ratings": {"1": 162, "2": 31, "3": 52, "4": 338, "5": 5441}, "version": "3.22.1", "homepage": "https://wpmudev.com/project/wp-smush-pro/", "requires": "6.4", "sections": {"faq": "\n
    \nI just finished running Smush, but Google PageSpeed still says my images need compressing and resizing. How do I fix it?\n\n

    \n

    This means your images were not properly scaled for where they are being displayed. Scaling images before uploading them can be time-consuming, but can save space and speed up load time. First, determine what size your image needs to be. You can use the built-in images size detector included in the free version of Smush to find what height and width your image should be. Once you know how large the image should be, scale your images to the right size.

    \n

    \n
    \nPageSpeed Insights is telling me to defer offscreen images. Can Smush fix that?\n\n

    \n

    Lazy Load will defer your offscreen images from loading until they are needed. From the Smush Dashboard, select Lazy Load and click Activate. Smush Lazy Load works out of the box or can be customized based on your needs.

    \n

    Tip: If you’re having any issues or want to save a ton of time, the Smush Pro CDN includes auto-resizing of images.

    \n

    \n
    \nDoes Smush delete or replace my original full-size images?\n\n

    \n

    Nope. WordPress crops and resizes every image you upload for embedding on your site. By default, Smush only compresses these cropped and resized images, not your original full-size images. To compress your original full-sized images, use Smush Pro.

    \n

    \n
    \nWhat type of file should I use for my images (GIF, PNG, JPG)?\n\n

    \n

    GIF files are large and can’t be optimized much. They should only be used if the image is animated.

    \n

    PNG is best for computer generated graphics (vectors, logos, fonts, etc.), images with few colors, or images with transparency.

    \n

    JPG should be used for photography or images with a lot of color variation.

    \n

    Tip: The Smush Pro CDN includes WebP/AVIF compression – sharper images that are 25 to 60 percent smaller than JPEG and PNG files.

    \n

    \n
    \nI’m a photographer. Can I keep all my EXIF data?\n\n

    \n

    Yes! EXIF data stores camera settings, focal length, date, time, and location information in image files. EXIF data makes image files larger, but if you are a photographer you may want to preserve this information. We have included the option to preserve EXIF image data with Smush.

    \n

    \n
    \nI just ran Bulk Smush and some of my images didn’t get compressed. Why would this happen?\n\n

    \n

    First, check to see if you’re receiving any server errors. If your images seem to be processing correctly, check the file size of the images being skipped. Images over 5mb will not be processed by the free version of Smush. To compress images up to 256mb, get Smush Pro.

    \n

    \n
    \nI activated Smush, but I don’t see any difference in image quality. How am I supposed to know if Smush is working?\n\n

    \n

    Great question! It is important to understand Smush is an image optimization tool that uses lossless image compression to save disk storage space and speed up your site. Smush squeezes data out from your image files that will save space, resize huge images, and improve speed – all without changing quality.

    \n

    You can track file size changes in your media library, individual image savings, directory savings, and Smush total savings with Smush stats. If you want to see some additional magic, run before-and-after page-speed tests with Google PageSpeed Insights. Every little bit of resource savings is important when it comes to page-speed!

    \n

    \n
    \nCan’t I just use Photoshop or another image editing application to optimize my images?\n\n

    \n

    Optimizing all the image sizes generated by WordPress, images being imported from plugins and themes, and images from other web sites is a painful and time-consuming process.

    \n

    Smush automatically handles optimizing all your images no matter where they come from, and can be used either as a standalone tool or alongside Photoshop.

    \n

    \n
    \nMy Google PageSpeed test is telling me to serve images in Next-Gen formats. Can Smush do that?\n\n

    \n

    Yes, Smush can help you serve images in next-gen formats. Smush Pro offers both WebP and AVIF conversion, allowing you to optimize your images for better performance and meet Google PageSpeed recommendations. This feature is exclusive to Smush Pro.

    \n

    \n
    \nIs it optimize or optimise?\n\n

    \n

    It depends what side of the pond you live on… but whether you say optimize, optimise, optimizer, or Smush goddess of speed, this plugin will make sure your images are loading lightning fast.

    \n

    \n
    \nHow can I report security issues or bugs?\n\n

    \n

    We take plugin security incredibly seriously; if you have a bug or vulnerability to report, you can do so through the Patchstack Vulnerability Disclosure Program. It’s fast, easy, and you will be notified when the issue is fixed. Report a vulnerability.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Congurgulations for 1 rating

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy ammoti on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Normally i am lazy person, but for giving 1 star to you, i would everything :)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Wondeful plugin but now demands for registration

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dionysios on October 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    I used to use this plugin a lot. For free quick image optimizations. I loved it but recently in order to use it you MUST register with an account. I hate this; At first you need our installations and positive reviews and after some time you are changing the rules the way you want. Not accepted from me;

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    It's ok so far,

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dancool1975 on October 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Although this product is great, I need more time to give an honest review

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Works perfectly

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy oscarugarte on September 25, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Zero problem, thank you very much

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Image Optimizing Plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy cinesist on September 20, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Thanks for the excellent plugin

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy egholami on September 18, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    What an absolutely great plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy iyc612 on September 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    what really put the icing on the cake is that after you install, it compresses automatically what a time saver for a solopreneur.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent plugin, very easy to use!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Tatomixes (tatomixes) on September 3, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Excellent plugin, very easy to use!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    finer

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Lukwago james (newslexpoint) on July 31, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Nice

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Excellent!

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy academiaqi on July 29, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Simple to install and get ready, great optimization of resources. THX!!!

    \n
    \n
    \n", "changelog": "

    3.22.1 ( 2025-10-06 )

    \n
      \n
    • Fix: Memory issues caused by Elementor integration
    • \n
    \n

    3.22.0 ( 2025-10-06 )

    \n
      \n
    • Improvement: More accurate use of fetchpriority=high based on LCP data
    • \n
    • Improvement: General UI enhancements
    • \n
    • Fix: LCP image not lazy-loaded after disabling preload
    • \n
    • Fix: Incorrect Preload Critical Images status shown in summary box
    • \n
    • Fix: Wrong retina image size applied by the auto-resize module
    • \n
    • Fix: Incorrect LCP image detected on mobile in certain cases
    • \n
    \n

    3.21.1 ( 2025-09-03 )

    \n
      \n
    • Fix: Auto-resize module using incorrect aspect ratio for cropped images
    • \n
    • Fix: Auto-resize module using lower quality version in certain situations
    • \n
    • Fix: Images using width or height attributes with percentage values resized incorrectly
    • \n
    • Fix: Images in Divi shrinking on page scroll in mobile devices
    • \n
    \n

    3.21.0 ( 2025-09-03 )

    \n
      \n
    • New: Automatic image resizing option in Lazy Loading to make sure every image fits its container size
    • \n
    • New: Add Missing Dimensions option in Lazy Loading to resolve Pagespeed audit of “Ensure images have explicit height and width”
    • \n
    • Improvement: Changed “Automatic Resizing” feature name in CDN to “Dynamic Image Sizing”
    • \n
    • Improvement: Added an Advanced section on the Bulk Smush page to streamline the experience
    • \n
    • Improvement: Added an Advanced section on the Lazy Load page to streamline the experience
    • \n
    • Fix: Minor code improvements
    • \n
    \n

    3.20.0 ( 2025-06-25 )

    \n
      \n
    • New: Lazy load YouTube and Vimeo videos to improve page load speed
    • \n
    • Fix: Resize Detection feature sometimes doesn’t work correctly with Lazy Load
    • \n
    • Fix: Layout shift with lazy loading
    • \n
    • Fix: Timeout error is returned for some transparent PNGs when Smush Mode is set to Basic
    • \n
    • Fix: Not all options are deleted from the database after uninstalling
    • \n
    • Fix: All-In-One Security incorrectly reporting issue due to Smush loopback check
    • \n
    \n

    3.19.1 ( 2025-05-29 )

    \n
      \n
    • Improvement: Only detect LCP element above the fold
    • \n
    • Improvement: Add fetchpriority high to LCP element
    • \n
    • Improvement: Ensure compatibility of LCP feature with popular caching plugins
    • \n
    • Improvement: Ability to exclude pages from LCP preloading
    • \n
    • Improvement: Ability to clear LCP cache
    • \n
    • Fix: LCP element not located in certain scenarios
    • \n
    \n

    3.19.0 ( 2025-05-12 )

    \n
      \n
    • New: Preload critical images to improve page load speed and resolve LCP (Largest Contentful Paint) warnings
    • \n
    • Fix: Filenames with Chinese characters were automatically converted to Unicode, causing display issues
    • \n
    • Fix: Lazyload module removes the background size attribute from inline CSS
    • \n
    • Fix: Picture tags are lazy loaded even in excluded areas
    • \n
    \n

    3.18.1 ( 2025-04-24 )

    \n
      \n
    • Improvement: WP 6.8 compatibility
    • \n
    • Improvement: Add a new menu item to help you discover other free plugins by WPMU DEV and more
    • \n
    \n

    3.18.0 ( 2025-03-19 )

    \n
      \n
    • New: Reduced image filesize at better visual quality with new AVIF conversion!
    • \n
    • Improvement: White label improvements
    • \n
    • Improvement: Better stats for WebP conversion
    • \n
    • Improvement: Compatibility check and minor fixes for PHP 8.4
    • \n
    • Fix: Some images listed as not optimized after Local WebP conversion
    • \n
    • Fix: CDN forcing browsers to load full-sized images for smaller container size
    • \n
    \n

    3.17.1 ( 2025-02-10 )

    \n
      \n
    • Improvement: Security hardening
    • \n
    • Improvement: Minor code improvements
    • \n
    \n

    3.17.0 ( 2025-02-03 )

    \n
      \n
    • New: Added a UI option to exclude specific images from Smush CDN.
    • \n
    • Improvement: Use streams to send full image to the Smush API
    • \n
    • Improvement: Disabled Noscript tags by default to prevent broken images and potential performance regressions.
    • \n
    • Improvement: Improved WPML compatibility for seamless multilingual support.
    • \n
    • Improvement: Reduced memory consumption during the Smush process
    • \n
    • Improvement: Better directory Smush compatibility with Flywheel
    • \n
    • Fix: Number of optimized images inaccurate
    • \n
    • Fix: When Local WebP Direct Method and Lazy Load are enabled, images inside picture tags not being served as WebP
    • \n
    • Fix: Error “Server configurations haven’t been applied yet” shown unnecessarily sometimes
    • \n
    • Fix: CDN slowing down page load due to unnecessary DB queries
    • \n
    • Fix: Divi breaking Smush CDN image resizing
    • \n
    • Fix: Auto-resize feature not adding new sizes when srcset is already present in img tag
    • \n
    • Fix: Excluded lazy loading placeholders from the CDN to resolve conflicts and prevent broken images.
    • \n
    • Fix: Added WP 6.7 compatibility fixes.
    • \n
    • Fix: Prevent broken images on Smush CDN when using relative links
    • \n
    • Fix: Hummingbird Performance Test conflicts
    • \n
    • Fix: Missing thumbnails when using PNG to JPG conversions
    • \n
    • Fix: Unicode characters in image URLs causing issues
    • \n
    • Fix: Improved compatibility with native lazy loading
    • \n
    • Fix: PHP errors and warnings
    • \n
    • Fix: Conflict with Formidable Forms
    • \n
    • Fix: Avoid image fetch errors
    • \n
    \n

    3.16.6 ( 2024-07-30 )

    \n
      \n
    • Fix: PHP warnings
    • \n
    • Improvement: Compatibility with WP 6.6
    • \n
    \n

    3.16.5 ( 2024-06-20 )

    \n
      \n
    • Improvement: Security improvements
    • \n
    • Fix: Compatibility issue with Divi
    • \n
    \n

    3.16.4 ( 2024-05-23 )

    \n
      \n
    • Fix: Loopback error shown unnecessarily for some sites
    • \n
    • Improvement: Better UI for the loopback error
    • \n
    \n

    3.16.3 ( 2024-05-15 )

    \n
      \n
    • Improvement: Better handling of rotated images
    • \n
    • Improvement: Better pre-flight checks before bulk Smush is started
    • \n
    • Fix: Performance issues in CDN and webp link replacement functionality
    • \n
    • Fix: Bulk Smush performance issues
    • \n
    • Fix: Compatibility issue with wp.com
    • \n
    \n

    3.16.2 ( 2024-04-17 )

    \n
      \n
    • Fix: LazyLoad module not working correctly for picture elements in certain situations
    • \n
    • Fix: LazyLoad module not working correctly for some CSS variables
    • \n
    • Fix: Better handling of !important CSS rules by the LazyLoad module
    • \n
    • Fix: Performance issues on some WooCommerce pages
    • \n
    \n

    3.16.1 ( 2024-03-27 )

    \n
      \n
    • Improvement: Better compatibility with page builders
    • \n
    • Improvement: General code improvements
    • \n
    • Fix: WP Offload integration preventing some formats from getting offloaded
    • \n
    \n

    3.16.0 ( 2024-03-06 )

    \n
      \n
    • New: Directly serve Local Webp images, no rewrite rules required!
    • \n
    • New: Support for inline style tags in CDN and Local WebP modules
    • \n
    • New: Support for multiple background images in CDN and Local WebP modules
    • \n
    • New: Better support for relative links in CDN and Local WebP modules
    • \n
    • New: Better REST API support in CDN and Local WebP modules
    • \n
    • New: CDN and Local WebP images served in WooCommerce REST API responses
    • \n
    • New: Local WebP compatibility with Windows IIS servers
    • \n
    • New: Local WebP compatibility with bedrock
    • \n
    • New: Local WebP compatibility with Litespeed
    • \n
    • New: Local WebP compatibility with Cloudways
    • \n
    • New: Lazy loading of background images
    • \n
    • Fix: Local WebP redirection doesn’t work for images with special characters
    • \n
    • Fix: Free version of Smush creating smush-webp folder when activated
    • \n
    • Fix: Extra slash added to image URLs during optimization
    • \n
    • Fix: WP 6.3 compatibility – Skip lazyload for high priority images
    • \n
    \n

    3.15.5 ( 2024-02-06 )

    \n
      \n
    • Improvement: Update the number of CDN locations
    • \n
    • Improvement: Minor copy and UI adjustments
    • \n
    \n

    3.15.4 ( 2024-01-23 )

    \n
      \n
    • Fix: Media library scan gets stuck on some websites
    • \n
    • Improvement: Minor copy and UI changes
    • \n
    \n

    3.15.3 ( 2023-12-20 )

    \n
      \n
    • Improvement: Code stability improvements
    • \n
    \n

    3.15.2 ( 2023-12-06 )

    \n
      \n
    • Fix: Compatibility issues with WP Offload Media integration
    • \n
    • Fix: Resize module deletes thumbnail when there is a naming conflict
    • \n
    \n

    3.15.1 ( 2023-11-15 )

    \n
      \n
    • Improvement: Code stability improvements
    • \n
    \n

    3.15.0 ( 2023-10-11 )

    \n
      \n
    • Improvement: Image size limit increased for pro version
    • \n
    • Fix: Query running frequently and causing performance issues on some sites
    • \n
    \n

    3.14.2 ( 2023-08-23 )

    \n
      \n
    • Fix: Media library scanner not identifying some MariaDB versions correctly
    • \n
    • Improvement: Code improvements
    • \n
    \n

    3.14.1 ( 2023-07-24 )

    \n
      \n
    • Improvement: Minor code improvements and fixes
    • \n
    \n

    3.14.0 ( 2023-07-17 )

    \n
      \n
    • New: Ultra Smush – Level up your image compression, while preserving remarkable image quality
    • \n
    • Fix: Resolved issue with image resize in WP versions < 6.0
    • \n
    • Fix: Resolved PHP 8.x error on GoDaddy Managed WP Hosting
    • \n
    • Fix: Other minor bug fixes and UI improvements
    • \n
    \n

    3.13.2 ( 2023-07-05 )

    \n
      \n
    • Improvement: Small code and text improvements
    • \n
    \n

    3.13.1 ( 2023-06-13 )

    \n
      \n
    • Improvement: Better memory management during scans
    • \n
    • Fix: Dot added to file path when year and month directories disabled
    • \n
    • Fix: Compatibility issue with WP.com
    • \n
    • Fix: Rename config functionality not working
    • \n
    • Fix: Compatibility issue with WP Offload Media
    • \n
    • Fix: PHP warnings
    • \n
    • Fix: Duplicate query
    • \n
    \n

    3.13.0 ( 2023-05-30 )

    \n
      \n
    • New: Scan for detecting changes in the media library
    • \n
    • Improvement: Performance improvements on large sites
    • \n
    • Improvement: Code refactoring
    • \n
    • Fix: PHP warnings and notices
    • \n
    • Fix: Missing comments for translation strings that have placeholders in them
    • \n
    • Fix: Compatibility issues with WP Offload Media
    • \n
    • Fix: Timeout on Smush pages when there are more than 200k images
    • \n
    • Fix: Images incorrectly marked as requiring resmush
    • \n
    • Fix: Ignore link stuck in Grid Layout mode in the media library
    • \n
    \n

    3.12.6 ( 2023-03-09 )

    \n
      \n
    • Enhance: Compatibility with WordPress 6.2.
    • \n
    • Fix: Upgrade modal reappears after closing
    • \n
    \n

    3.12.5 ( 2023-01-18 )

    \n
      \n
    • Fix: CDN notice issue
    • \n
    • Fix: PHP 8.2 compatibility warnings
    • \n
    • Fix: Smush acting as free on staging
    • \n
    \n

    3.12.4 ( 2022-11-17 )

    \n
      \n
    • Improvement: Code and compatibility improvements
    • \n
    \n

    3.12.3 ( 2022-10-24 )

    \n
      \n
    • Fix: Free to pro upgrade issue
    • \n
    \n

    3.12.2 ( 2022-10-19 )

    \n
      \n
    • Improvement: Security hardening
    • \n
    • Fix: Issues on older PHP versions
    • \n
    \n

    3.12.1 ( 2022-10-11 )

    \n
      \n
    • Fix: PHP error on non-English language sites
    • \n
    \n

    3.12.0 ( 2022-10-11 )

    \n
      \n
    • New: Bulk smush images in the background!
    • \n
    • New: Revised limits on bulk image optimization
    • \n
    • New: Better GDPR compliance by replacing Google fonts with Bunny fonts
    • \n
    • New: Filter on media library page to view media items with errors
    • \n
    • New: Option to receive an email once bulk smush is complete
    • \n
    • Fix: Some images incorrectly selected for resmush
    • \n
    • Fix: Database error while converting PNG to JPG on WordPress 6.1 Beta
    • \n
    \n

    3.11.1 ( 2022-08-19 )

    \n
      \n
    • Fix: Fallback to sequential processing when parallel processing not possible
    • \n
    \n

    3.11.0 ( 2022-08-11 )

    \n
      \n
    • New: Smush all image sizes in parallel for improved performance
    • \n
    • Improvement: Code improvements
    • \n
    \n

    3.10.3 ( 2022-07-14 )

    \n
      \n
    • Enhance: CDN activation process
    • \n
    • Enhance: Improve media library image filters
    • \n
    • Enhance: CDN compatibility with Avada theme
    • \n
    • Enhance: Add notice about disabled folders in directory Smush module
    • \n
    • Fix: Errors table UI on bulk smush page
    • \n
    • Fix: Bulk smush UI when images have been removed when page was already loaded
    • \n
    • Fix: Cron job of logger library not running properly
    • \n
    • Fix: Remove tools meta box from dashboard page
    • \n
    • Fix: Recover image from NextGen Gallery button does not reset Smush data
    • \n
    • Fix: Image dimensions meta does not reset after restoring a resized image in NextGen Gallery
    • \n
    • Fix: Incorrect percent of total savings on Dashboard page
    • \n
    • Fix: Pro feature enable/disable toggles are clickable in free version
    • \n
    \n

    3.10.2 ( 2022-06-16 )

    \n
      \n
    • Enhance: Data processing
    • \n
    • Enhance: Database calls
    • \n
    • Fix: Loading images from remote location
    • \n
    \n

    3.10.1 ( 2022-06-09 )

    \n
      \n
    • Fix: PHP error on dash page
    • \n
    \n

    3.10.0 ( 2022-06-09 )

    \n
      \n
    • New: Lossy compression is now free for all users
    • \n
    • New: Summary meta box
    • \n
    • Enhance: Move out image restore to bulk smush module
    • \n
    • Enhance: Move out image resize detection to settings module
    • \n
    • Enhance: Update opt-in notice design
    • \n
    • Fix: Upsell notice logic
    • \n
    • Fix: Skip image sizes not in WordPress format
    • \n
    • Fix: Skip onboarding wizard if a config has been applied
    • \n
    • Fix: Image sizes selector
    • \n
    • Fix: Rename “Basic” config to “Default”
    • \n
    • Fix: Do not show WebP notice in case of error
    • \n
    • Fix: Auto compression does not work for NextGen Gallery
    • \n
    • Fix: Settings link on Plugins page
    • \n
    • Fix: Welcome modal does not close when we go to the Bulk Smush page
    • \n
    \n

    3.9.11 ( 2022-05-23 )

    \n
      \n
    • Enhance: Code quality
    • \n
    • Fix: Minor code quality issues
    • \n
    • Fix: Update internal libraries
    • \n
    \n

    3.9.10 ( 2022-05-17 )

    \n
      \n
    • New: Gravity Forms integration
    • \n
    • New: smush_background_images_regex and smush_images_from_content_regex filters to adjust regex rules for finding images on the page
    • \n
    • New: smush_cdn_before_process_background_src filter to adjust background image src
    • \n
    • New: Add additional parameters to smush_skip_adding_srcset filter to allow disabling auto-resize for selected images
    • \n
    • Enhance: Compatibility with WPBakery page builder
    • \n
    • Enhance: Compatibility with Offload Media plugin
    • \n
    • Enhance: Handling images via REST API endpoints
    • \n
    • Fix: Directory Smush savings cached and not updated
    • \n
    • Fix: “What’s new” modal not hiding if white label is enabled
    • \n
    • Fix: Missing primary key on smush_dir_images table
    • \n
    • Fix: Scaled images not being resized on resize settings change
    • \n
    • Fix: Bulk Smush will now show all errors, instead of just the first 5
    • \n
    • Fix: Animated GIF images not being excluded from bulk Smush
    • \n
    • Fix: Only allow network wide activation of Smush
    • \n
    \n

    3.9.9 ( 2022-05-03 )

    \n
      \n
    • Enhance: Code quality
    • \n
    • Enhance: Handling user input
    • \n
    • Enhance: Update React modules to latest versions
    • \n
    • Fix: XSS vulnerability when uploading modified configs
    • \n
    \n

    3.9.8 ( 2022-03-22 )

    \n
      \n
    • New: Add expiry header to Nginx template for WebP
    • \n
    • New: Add wp_smush_webp_dir filter to customize WebP directory
    • \n
    • Fix: XSS vulnerability
    • \n
    • Fix: Disable submit button on Integrations page when no integrations available
    • \n
    • Fix: CDN bandwidth limit status message
    • \n
    • Fix: Text alignment issue on Bulk Smush page
    • \n
    • Fix: Highlighting selected lazy load spinner with color accessibility
    • \n
    • Fix: Compatibility issue with WP Offload Media 2.6.0
    • \n
    • Fix: Undefined offset notice with certain WooCommerce themes
    • \n
    \n

    3.9.7 ( 2022-03-01 )

    \n
      \n
    • Fix: Local WebP is not activated on applying config after reset settings
    • \n
    • Fix: Missing WebP file for WP scaled images
    • \n
    • Fix: Fatal error on PHP 5.6
    • \n
    • Fix: Compatibility issue with WP Offload Media
    • \n
    \n

    3.9.6 ( 2022-02-09 )

    \n
      \n
    • Enhance: Do not close the Directory Smush modal in case of error
    • \n
    • Enhance: Tooltips in CDN module
    • \n
    • Fix: Compatibility issue with PHP 8.1
    • \n
    • Fix: “Choose Directory” button loading state in case of error
    • \n
    • Fix: PNG to JPG conversion leaves behind some thumbnails after deleting the image
    • \n
    • Fix: PNG images that need resizing don’t get converted to JPG
    • \n
    • Fix: Issue creating the WebP test files
    • \n
    • Fix: Incorrect unique file names during PNG to JPG conversion
    • \n
    • Fix: Duplicate thumbnails while converting PNG to JPG
    • \n
    • Fix: Auto refresh API status when updating to Pro version
    • \n
    \n

    3.9.5 ( 2022-01-25 )

    \n
      \n
    • Fix: Translation strings
    • \n
    • Fix: Remove upsells
    • \n
    • Enhance: Update admin menu icon
    • \n
    \n

    Changelog for previous versions.

    \n", "description": "

    The #1 Image Optimization Plugin for WordPress

    \n

    Smush is the leading image optimization plugin – optimize, resize, and compress images, as well as convert images to WebP or AVIF format for faster loading web pages.

    \n

    Brought to you by the WPMU DEV team – founded in 2007 and trusted by web professionals from freelancer to agency worldwide ever since.

    \n

    Whether you spell it ‘optimise’ or ‘optimize’ – with Smush’s image optimizer you can compress images and serve images in next-gen formats (convert to WebP or AVIF), all without introducing a visible drop in quality.

    \n

    Enjoy uninterrupted bulk image optimization with Smush Pro.

    \n

    Level up immediately with exclusive Pro benefits like uninterrupted image optimization, 5x more image compression, and 119-point global image CDN. Learn more about Pro.

    \n

    Award-Winning Image Optimizer

    \n

    Smush has been benchmarked and tested number one for speed and quality. Beyond that, it’s also the award-winning, back-to-back proven crowd-favorite WordPress image optimizer trusted by over 1M+ worldwide to:

    \n
      \n
    • Optimize images
    • \n
    • Compress images
    • \n
    • Lazy load images & videos
    • \n
    • Preload critical images
    • \n
    • Automatic resizing
    • \n
    • Resize larger images
    • \n
    • Convert to WebP or AVIF
    • \n
    • And more…
    • \n
    \n

    Why Use Smush To Optimize Images (The Smush Difference)

    \n

    Smush was built from the ground up to make it easy for WordPress users to optimize images, activate lazy loading, compress media files, and more – whether they’re just getting started, or a seasoned pro who’s developed thousands of websites.

    \n

    Improve website performance (along with Google PageSpeed Insights scores) with compressed and optimized images and lazy loading – all while actually delivering a better user experience because the rollout of Core Web Vitals has proven one thing: performance is about far more than just scoring well on performance testing tools. Visitor experience matters.

    \n

    Discover the features that set Smush apart from other image optimization plugins:

    \n
      \n
    • Lossless compression (Basic Smush) – Strip unused data and compress images without affecting image quality.
    • \n
    • Lossy compression (Super Smush) – Optimize images up to 2x more than lossless compression with our cutting-edge, multi-pass lossy image compression.
    • \n
    • Ultra Smush (Pro Only) – Take performance to the next level with 5x image compressing power! Your images will be as light and fast as possible, while still preserving remarkable image quality.
    • \n
    • Built-In Lazy Loading – Lazy load images to defer loading of offscreen images & videos with the flip of a switch.
    • \n
    • Convert to WebP or AVIF (Pro Only) – Use the Next-Gen Formats feature to convert and automatically serve images in next-gen WebP or AVIF format.
    • \n
    • Preload Critical Images (Pro Only) – Improve Google Pagespeed scores by automatically preloading Largest Contentful Paint (LCP) images.
    • \n
    • Bulk Smush – Bulk optimize and compress images with one click.
    • \n
    • Background Optimization (Pro Only) – Smush’s powerful image optimization features will continue to run in the background even when the plugin is closed.
    • \n
    • Automatic Resizing (Pro Only) – Speeds up your site by automatically resizing images to fit their containers, eliminating “Properly size images” PageSpeed warnings.
    • \n
    • Resize Larger Images – Set a maximum width and height, and add missing image sizes to allow the browser to make intelligent decisions about which image to load.
    • \n
    • 119-point global CDN (Pro Only) – Ensure blazing-fast image delivery anywhere in the world. Includes automatic WebP/AVIF conversion and image resizing, plus, GIF / Rest API support.
    • \n
    • Incorrect Image Size Detection – Quickly locate images that are slowing down your site.
    • \n
    • Directory Smush – Optimize images even if they aren’t in the default WordPress media library.
    • \n
    • Automated Optimization – Asynchronously auto-smush your attachments for super fast compression on upload.
    • \n
    • No Monthly Limits – Optimize all of your images (up to 5 MB in size) free forever (no daily, monthly, or annual limits).
    • \n
    • Gutenberg Block Integration – View image compression information directly in image blocks.
    • \n
    • Multisite Compatible – Flexible global and subsite settings for multisite installations.
    • \n
    • Optimize All Image Files – Smush supports optimization for all of your PNG and JPEG files.
    • \n
    • No Performance Impact On Your Server – Image optimization is not run on your website’s server to prevent wasting server resources (that you pay for) and is instead run using the fast, reliable WPMU DEV Smush API.
    • \n
    • Configs – Set your preferred Smush settings, save them as a config, and instantly upload to any other site.
    • \n
    • And many, many, more!
    • \n
    \n

    Learn More With These Hands-On Image Optimization & Performance Tutorials

    \n\n

    Next-Gen Formats – Serve Images In WebP or AVIF format

    \n

    With Smush, you can take advantage of next-gen image formats by converting all of your images to WebP or AVIF. WebP & AVIF are file formats that enable superior image compression and quality retention. All major performance testing solutions, including Google PageSpeed Insights, assess your site’s ability to serve images in these next-gen formats due to the significant impact on visitor experience.

    \n

    WebP lossless images are 26% smaller in size compared to PNGs. WebP lossy images are 25-34% smaller than comparable JPG images. AVIF images are up to 60% smaller than comparable JPG or PNG images. More information can be found in this Google developers article and this web.dev article.

    \n

    The best part: Smush’s Next-Gen Formats feature makes this incredibly easy to set up with the ability to host all images locally (not requiring the use of a CDN). Our Next-Gen Formats feature includes automatically replacing PNG and JPEG images on your website’s frontend to serve WebP or AVIF images – with the necessary fallbacks for browsers that don’t support next-gen formats yet.

    \n

    Learn more: How To Convert Images to WebP In WordPress

    \n

    Note: Yes, Smush supports next-gen conversion for all image formats, including JPEG to WebP/AVIF, and PNG to WebP/AVIF.

    \n

    With the best image optimization plugin for WordPress – you can finally stop worrying about the performance impact of using the images you want on your website.

    \n

    Compress Images While Preserving Image Quality

    \n

    Image compression plugins don’t have to destroy images with a visible, 30% loss in quality. Smush strips hidden information from your images (that can often be bulky), and reduces image file sizes without introducing a visible impact on appearance.

    \n

    Smush meticulously scans every image you upload – or have already added to your site – cuts all the unnecessary data, and scales it for you before adding it to your media library. And it can serve images in WebP or AVIF format.

    \n

    Compress Images While You Sleep With Background Image Optimization

    \n

    Have a large number of images to compress? Smush’s powerful optimization features will continue to work their magic in the background, even when you’ve closed the plugin completely. You’ll receive an email when image optimization has been completed – with a full report.

    \n

    Compress Any Image in Any Directory

    \n

    As well as smushing your media uploads, you may want to compress the images stored in other folders. Smush now lets you compress any image in any directory – so that you can optimize all the images on your site – including NextGEN images, images stored on Amazon S3 using WP Offload Media and images in EVERY WordPress plugin and theme package!

    \n

    Compatible with Your Favorite Themes, Page Builders, and Media Library Plugins

    \n

    No matter what theme or plugins you use to manage your WordPress media library, Smush has you covered. Check out just a few of the popular products Smush is working with to help make your site faster and more efficient:

    \n\n

    Incorrect Image Size Detection

    \n

    Smush includes a wrong-size image finder. Activate this feature, and your images will be highlighted with smart tips to let you easily resize your images. Quickly locate the images that are keeping you from getting that perfect 100 on your Google PageSpeed test.

    \n

    Defer Offscreen Images & Videos (Lazy Load)

    \n

    Smush includes built-in lazy loading. If your page has a bunch of images & videos below the fold, lazy loading will drastically speed up your page by serving only the images being viewed, and delaying others further down the page.

    \n

    Save time with Smush Configs

    \n

    Configs allow you to save your preferred Smush configuration settings and apply them to your other sites in a few clicks. You can create unlimited configs.

    \n

    Here’s What Our Users Are Saying

    \n

    ★★★★★

    \n
    \n

    “I had no idea that my page load time was being dragged down by the images. The plugin nearly halved the time it took.” – karlcw

    \n
    \n

    ★★★★★

    \n
    \n

    “I optimise my photos in Photoshop, but Smush makes it so easy – it does it automatically. I can just sit back and enjoy the speed.” – helen432

    \n
    \n

    ★★★★★

    \n
    \n

    “Smush helped reduce the total files size on my site and increased browsing speed. Well done guys!” – pdci

    \n
    \n

    ★★★★★

    \n
    \n

    “It’s very discrete and does not bother me with an API key or other additional installation steps. The main dashboard of the plugin gives me nice insight. Overall it really fits my needs and I’ll be willing to upgrade to pro if my needs change. I’d recommend it to clients/friends without hesitation. Keep it up!” – tarkan_

    \n
    \n

    What about Multisite?

    \n

    Smush can be used to optimize all images across your entire network! Use global settings, or configure each site individually.

    \n

    Smush is super easy to use – no confusing image compression software settings. Smush lets you optimize all images in your library either one at a time, or all together. Plus, configure auto-smush to asynchronously scale and compress some or all of your images as they are being uploaded – it’s incredibly fast.

    \n

    The faster your site loads, the more Google, Bing, Yahoo, and other search engines will like it. Your site will load faster and rank higher.

    \n

    Shameless Plug(ins)

    \n
      \n
    • Hummingbird – Page Speed Optimization
    • \n
    • SmartCrawl – SEO Optimizer
    • \n
    • Forminator – Form, Poll, and Quiz Builder
    • \n
    • Defender – Security, Monitoring, and Hack Protection
    • \n
    • Hustle – Pop-ups, Slide-ins and Email Opt-ins
    • \n
    • Beehive – Customizable Google Analytics Dashboards
    • \n
    \n

    Smush can take care of all your image compression needs… all for free!

    \n

    However, if you’d like fast CDN image delivery, WebP/AVIF conversion, automatic image resizing, the ability to optimize (or optimise) images up to 256MB, bulk smush optimization for all your images in just one-click, auto-convert PNG to JPEG, the ability to make a copy of your full-sized images (to restore them at any point), you can always take the next step with WP Smush Pro. And get even more with her whole team of WordPress optimization hero friends (security, SEO, performance, support, and maintenance automation) – trusted by thousands of agencies and freelancers offering site maintenance services.

    \n

    Privacy

    \n

    Smush does not interact with end users on your website. The only input option Smush has is to a newsletter subscription for site admins only.

    \n

    Smush uses a third-party email service (Mailchimp) to send informational emails (opt-in) to the site administrator. The administrator’s email address is sent to Mailchimp and a cookie is set by the service. Only administrator information is collected by Mailchimp.

    \n

    Smush sends images to the WPMU DEV servers to optimize them for web use. This includes the transfer of EXIF data. The EXIF data will either be stripped or returned as it is. It is not stored on the WPMU DEV servers.

    \n

    About Us

    \n

    WPMU DEV is a premium supplier of quality WordPress plugins, services and support. Learn more here:
    \nhttps://wpmudev.com/

    \n

    Don’t forget to stay up to date on everything WordPress from the Internet’s number one resource:
    \nWPMU DEV Blog

    \n

    Hey, one more thing… we hope you enjoy our free offerings as much as we’ve loved making them for you!

    \n

    Contact and Credits

    \n

    Originally written by Alex Dunae at Dialect (dialect.ca, e-mail ‘alex’ at ‘dialect dot ca’), 2008-11.

    \n", "screenshots": "
    1. \"Bulk

      Bulk Image Compression.

    2. \"Smush

      Smush detects images that need compression.

    3. \"Compress

      Compress unlimited images in the background.

    4. \"Compress

      Compress images like a pro with single Smush settings.

    5. \"Make

      Make your page load faster with lazy loading.

    "}, "versions": {"1.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.zip", "1.7": "https://downloads.wordpress.org/plugin/wp-smushit.1.7.zip", "2.0": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.zip", "2.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.zip", "2.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.2.zip", "2.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.3.zip", "2.4": "https://downloads.wordpress.org/plugin/wp-smushit.2.4.zip", "2.7": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.zip", "1.0.0": "https://downloads.wordpress.org/plugin/wp-smushit.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.0.2.zip", "1.1.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.1.3.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.9.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/plugin/wp-smushit.1.3.4.zip", "1.4.0": "https://downloads.wordpress.org/plugin/wp-smushit.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.4.3.zip", "1.5.0": "https://downloads.wordpress.org/plugin/wp-smushit.1.5.0.zip", "1.6.0": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.5.zip", "1.7.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.7.1.zip", "2.0.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.1.zip", "2.0.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.7.zip", "2.1.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/plugin/wp-smushit.2.1.5.zip", "2.2.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.2.2.zip", "2.3.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.3.1.zip", "2.4.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/plugin/wp-smushit.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/plugin/wp-smushit.2.4.5.zip", "2.5.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.5.3.zip", "2.6.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.6.3.zip", "2.7.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.1.zip", "2.7.4": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.6.zip", "2.7.8": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.8.zip", "2.8.0": "https://downloads.wordpress.org/plugin/wp-smushit.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.8.1.zip", "2.9.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.9.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.0.2.zip", "3.1.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.1.1.zip", "3.2.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.2.1.zip", "3.2.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.2.4.zip", "3.3.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.3.2.zip", "3.4.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.4.2.zip", "3.6.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.6.1.zip", "3.6.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.6.3.zip", "3.7.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.7.3.zip", "3.8.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.5.zip", "3.8.7": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/plugin/wp-smushit.3.8.8.zip", "3.9.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.2.zip", "3.9.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.4.zip", "3.9.5": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.5.zip", "3.9.8": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.8.zip", "3.9.9": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-smushit.zip", "1.2.10": "https://downloads.wordpress.org/plugin/wp-smushit.1.2.10.zip", "3.10.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.10.1.zip", "3.10.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.10.2.zip", "3.10.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.10.3.zip", "3.11.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.11.1.zip", "3.12.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.12.3.zip", "3.12.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.12.4.zip", "3.12.5": "https://downloads.wordpress.org/plugin/wp-smushit.3.12.5.zip", "3.12.6": "https://downloads.wordpress.org/plugin/wp-smushit.3.12.6.zip", "3.13.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.13.0.zip", "3.13.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.13.1.zip", "3.13.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.13.2.zip", "3.14.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.14.0.zip", "3.14.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.14.1.zip", "3.14.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.14.2.zip", "3.15.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.0.zip", "3.15.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.1.zip", "3.15.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.2.zip", "3.15.3": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.3.zip", "3.15.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.4.zip", "3.15.5": "https://downloads.wordpress.org/plugin/wp-smushit.3.15.5.zip", "3.16.2": "https://downloads.wordpress.org/plugin/wp-smushit.3.16.2.zip", "3.16.4": "https://downloads.wordpress.org/plugin/wp-smushit.3.16.4.zip", "3.16.5": "https://downloads.wordpress.org/plugin/wp-smushit.3.16.5.zip", "3.16.6": "https://downloads.wordpress.org/plugin/wp-smushit.3.16.6.zip", "3.17.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.17.0.zip", "3.17.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.17.1.zip", "3.18.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.18.0.zip", "3.18.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.18.1.zip", "3.20.0": "https://downloads.wordpress.org/plugin/wp-smushit.3.20.0.zip", "3.21.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.21.1.zip", "3.22.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.22.1.zip", "3.9.11": "https://downloads.wordpress.org/plugin/wp-smushit.3.9.11.zip", "1.6.5.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.5.1.zip", "1.6.5.2": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.5.2.zip", "1.6.5.3": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.5.3.zip", "1.6.5.4": "https://downloads.wordpress.org/plugin/wp-smushit.1.6.5.4.zip", "1.7.1.1": "https://downloads.wordpress.org/plugin/wp-smushit.1.7.1.1.zip", "2.0.6.2": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.6.2.zip", "2.0.6.3": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.6.3.zip", "2.0.6.5": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.6.5.zip", "2.0.7.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.0.7.1.zip", "2.7.4.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.4.1.zip", "2.7.8.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.8.1.zip", "2.7.9.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.7.9.1.zip", "2.8.0.1": "https://downloads.wordpress.org/plugin/wp-smushit.2.8.0.1.zip", "3.2.0.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.2.0.1.zip", "3.2.2.1": "https://downloads.wordpress.org/plugin/wp-smushit.3.2.2.1.zip"}, "downloaded": 61144202, "description": "

    The #1 Image Optimization Plugin for WordPress

    \n

    Smush is the leading image optimization plugin – optimize, resize, and compress images, as well as convert images to WebP or AVIF format for faster loading web pages.

    \n

    Brought to you by the WPMU DEV team – founded in 2007 and trusted by web professionals from freelancer to agency worldwide ever since.

    \n

    Whether you spell it ‘optimise’ or ‘optimize’ – with Smush’s image optimizer you can compress images and serve images in next-gen formats (convert to WebP or AVIF), all without introducing a visible drop in quality.

    \n

    Enjoy uninterrupted bulk image optimization with Smush Pro.

    \n

    Level up immediately with exclusive Pro benefits like uninterrupted image optimization, 5x more image compression, and 119-point global image CDN. Learn more about Pro.

    \n

    Award-Winning Image Optimizer

    \n

    Smush has been benchmarked and tested number one for speed and quality. Beyond that, it’s also the award-winning, back-to-back proven crowd-favorite WordPress image optimizer trusted by over 1M+ worldwide to:

    \n
      \n
    • Optimize images
    • \n
    • Compress images
    • \n
    • Lazy load images & videos
    • \n
    • Preload critical images
    • \n
    • Automatic resizing
    • \n
    • Resize larger images
    • \n
    • Convert to WebP or AVIF
    • \n
    • And more…
    • \n
    \n

    Why Use Smush To Optimize Images (The Smush Difference)

    \n

    Smush was built from the ground up to make it easy for WordPress users to optimize images, activate lazy loading, compress media files, and more – whether they’re just getting started, or a seasoned pro who’s developed thousands of websites.

    \n

    Improve website performance (along with Google PageSpeed Insights scores) with compressed and optimized images and lazy loading – all while actually delivering a better user experience because the rollout of Core Web Vitals has proven one thing: performance is about far more than just scoring well on performance testing tools. Visitor experience matters.

    \n

    Discover the features that set Smush apart from other image optimization plugins:

    \n
      \n
    • Lossless compression (Basic Smush) – Strip unused data and compress images without affecting image quality.
    • \n
    • Lossy compression (Super Smush) – Optimize images up to 2x more than lossless compression with our cutting-edge, multi-pass lossy image compression.
    • \n
    • Ultra Smush (Pro Only) – Take performance to the next level with 5x image compressing power! Your images will be as light and fast as possible, while still preserving remarkable image quality.
    • \n
    • Built-In Lazy Loading – Lazy load images to defer loading of offscreen images & videos with the flip of a switch.
    • \n
    • Convert to WebP or AVIF (Pro Only) – Use the Next-Gen Formats feature to convert and automatically serve images in next-gen WebP or AVIF format.
    • \n
    • Preload Critical Images (Pro Only) – Improve Google Pagespeed scores by automatically preloading Largest Contentful Paint (LCP) images.
    • \n
    • Bulk Smush – Bulk optimize and compress images with one click.
    • \n
    • Background Optimization (Pro Only) – Smush’s powerful image optimization features will continue to run in the background even when the plugin is closed.
    • \n
    • Automatic Resizing (Pro Only) – Speeds up your site by automatically resizing images to fit their containers, eliminating “Properly size images” PageSpeed warnings.
    • \n
    • Resize Larger Images – Set a maximum width and height, and add missing image sizes to allow the browser to make intelligent decisions about which image to load.
    • \n
    • 119-point global CDN (Pro Only) – Ensure blazing-fast image delivery anywhere in the world. Includes automatic WebP/AVIF conversion and image resizing, plus, GIF / Rest API support.
    • \n
    • Incorrect Image Size Detection – Quickly locate images that are slowing down your site.
    • \n
    • Directory Smush – Optimize images even if they aren’t in the default WordPress media library.
    • \n
    • Automated Optimization – Asynchronously auto-smush your attachments for super fast compression on upload.
    • \n
    • No Monthly Limits – Optimize all of your images (up to 5 MB in size) free forever (no daily, monthly, or annual limits).
    • \n
    • Gutenberg Block Integration – View image compression information directly in image blocks.
    • \n
    • Multisite Compatible – Flexible global and subsite settings for multisite installations.
    • \n
    • Optimize All Image Files – Smush supports optimization for all of your PNG and JPEG files.
    • \n
    • No Performance Impact On Your Server – Image optimization is not run on your website’s server to prevent wasting server resources (that you pay for) and is instead run using the fast, reliable WPMU DEV Smush API.
    • \n
    • Configs – Set your preferred Smush settings, save them as a config, and instantly upload to any other site.
    • \n
    • And many, many, more!
    • \n
    \n

    Learn More With These Hands-On Image Optimization & Performance Tutorials

    \n\n

    Next-Gen Formats – Serve Images In WebP or AVIF format

    \n

    With Smush, you can take advantage of next-gen image formats by converting all of your images to WebP or AVIF. WebP & AVIF are file formats that enable superior image compression and quality retention. All major performance testing solutions, including Google PageSpeed Insights, assess your site’s ability to serve images in these next-gen formats due to the significant impact on visitor experience.

    \n

    WebP lossless images are 26% smaller in size compared to PNGs. WebP lossy images are 25-34% smaller than comparable JPG images. AVIF images are up to 60% smaller than comparable JPG or PNG images. More information can be found in this Google developers article and this web.dev article.

    \n

    The best part: Smush’s Next-Gen Formats feature makes this incredibly easy to set up with the ability to host all images locally (not requiring the use of a CDN). Our Next-Gen Formats feature includes automatically replacing PNG and JPEG images on your website’s frontend to serve WebP or AVIF images – with the necessary fallbacks for browsers that don’t support next-gen formats yet.

    \n

    Learn more: How To Convert Images to WebP In WordPress

    \n

    Note: Yes, Smush supports next-gen conversion for all image formats, including JPEG to WebP/AVIF, and PNG to WebP/AVIF.

    \n

    With the best image optimization plugin for WordPress – you can finally stop worrying about the performance impact of using the images you want on your website.

    \n

    Compress Images While Preserving Image Quality

    \n

    Image compression plugins don’t have to destroy images with a visible, 30% loss in quality. Smush strips hidden information from your images (that can often be bulky), and reduces image file sizes without introducing a visible impact on appearance.

    \n

    Smush meticulously scans every image you upload – or have already added to your site – cuts all the unnecessary data, and scales it for you before adding it to your media library. And it can serve images in WebP or AVIF format.

    \n

    Compress Images While You Sleep With Background Image Optimization

    \n

    Have a large number of images to compress? Smush’s powerful optimization features will continue to work their magic in the background, even when you’ve closed the plugin completely. You’ll receive an email when image optimization has been completed – with a full report.

    \n

    Compress Any Image in Any Directory

    \n

    As well as smushing your media uploads, you may want to compress the images stored in other folders. Smush now lets you compress any image in any directory – so that you can optimize all the images on your site – including NextGEN images, images stored on Amazon S3 using WP Offload Media and images in EVERY WordPress plugin and theme package!

    \n

    Compatible with Your Favorite Themes, Page Builders, and Media Library Plugins

    \n

    No matter what theme or plugins you use to manage your WordPress media library, Smush has you covered. Check out just a few of the popular products Smush is working with to help make your site faster and more efficient:

    \n\n

    Incorrect Image Size Detection

    \n

    Smush includes a wrong-size image finder. Activate this feature, and your images will be highlighted with smart tips to let you easily resize your images. Quickly locate the images that are keeping you from getting that perfect 100 on your Google PageSpeed test.

    \n

    Defer Offscreen Images & Videos (Lazy Load)

    \n

    Smush includes built-in lazy loading. If your page has a bunch of images & videos below the fold, lazy loading will drastically speed up your page by serving only the images being viewed, and delaying others further down the page.

    \n

    Save time with Smush Configs

    \n

    Configs allow you to save your preferred Smush configuration settings and apply them to your other sites in a few clicks. You can create unlimited configs.

    \n

    Here’s What Our Users Are Saying

    \n

    ★★★★★

    \n
    \n

    “I had no idea that my page load time was being dragged down by the images. The plugin nearly halved the time it took.” – karlcw

    \n
    \n

    ★★★★★

    \n
    \n

    “I optimise my photos in Photoshop, but Smush makes it so easy – it does it automatically. I can just sit back and enjoy the speed.” – helen432

    \n
    \n

    ★★★★★

    \n
    \n

    “Smush helped reduce the total files size on my site and increased browsing speed. Well done guys!” – pdci

    \n
    \n

    ★★★★★

    \n
    \n

    “It’s very discrete and does not bother me with an API key or other additional installation steps. The main dashboard of the plugin gives me nice insight. Overall it really fits my needs and I’ll be willing to upgrade to pro if my needs change. I’d recommend it to clients/friends without hesitation. Keep it up!” – tarkan_

    \n
    \n

    What about Multisite?

    \n

    Smush can be used to optimize all images across your entire network! Use global settings, or configure each site individually.

    \n

    Smush is super easy to use – no confusing image compression software settings. Smush lets you optimize all images in your library either one at a time, or all together. Plus, configure auto-smush to asynchronously scale and compress some or all of your images as they are being uploaded – it’s incredibly fast.

    \n

    The faster your site loads, the more Google, Bing, Yahoo, and other search engines will like it. Your site will load faster and rank higher.

    \n

    Shameless Plug(ins)

    \n
      \n
    • Hummingbird – Page Speed Optimization
    • \n
    • SmartCrawl – SEO Optimizer
    • \n
    • Forminator – Form, Poll, and Quiz Builder
    • \n
    • Defender – Security, Monitoring, and Hack Protection
    • \n
    • Hustle – Pop-ups, Slide-ins and Email Opt-ins
    • \n
    • Beehive – Customizable Google Analytics Dashboards
    • \n
    \n

    Smush can take care of all your image compression needs… all for free!

    \n

    However, if you’d like fast CDN image delivery, WebP/AVIF conversion, automatic image resizing, the ability to optimize (or optimise) images up to 256MB, bulk smush optimization for all your images in just one-click, auto-convert PNG to JPEG, the ability to make a copy of your full-sized images (to restore them at any point), you can always take the next step with WP Smush Pro. And get even more with her whole team of WordPress optimization hero friends (security, SEO, performance, support, and maintenance automation) – trusted by thousands of agencies and freelancers offering site maintenance services.

    \n

    Privacy

    \n

    Smush does not interact with end users on your website. The only input option Smush has is to a newsletter subscription for site admins only.

    \n

    Smush uses a third-party email service (Mailchimp) to send informational emails (opt-in) to the site administrator. The administrator’s email address is sent to Mailchimp and a cookie is set by the service. Only administrator information is collected by Mailchimp.

    \n

    Smush sends images to the WPMU DEV servers to optimize them for web use. This includes the transfer of EXIF data. The EXIF data will either be stripped or returned as it is. It is not stored on the WPMU DEV servers.

    \n

    About Us

    \n

    WPMU DEV is a premium supplier of quality WordPress plugins, services and support. Learn more here:
    \nhttps://wpmudev.com/

    \n

    Don’t forget to stay up to date on everything WordPress from the Internet’s number one resource:
    \nWPMU DEV Blog

    \n

    Hey, one more thing… we hope you enjoy our free offerings as much as we’ve loved making them for you!

    \n

    Contact and Credits

    \n

    Originally written by Alex Dunae at Dialect (dialect.ca, e-mail ‘alex’ at ‘dialect dot ca’), 2008-11.

    \n", "donate_link": "", "num_ratings": 6024, "screenshots": {"1": {"src": "https://ps.w.org/wp-smushit/assets/screenshot-1.gif?rev=3281715", "caption": "Bulk Image Compression."}, "2": {"src": "https://ps.w.org/wp-smushit/assets/screenshot-2.png?rev=3281715", "caption": "Smush detects images that need compression."}, "3": {"src": "https://ps.w.org/wp-smushit/assets/screenshot-3.png?rev=3281715", "caption": "Compress unlimited images in the background."}, "4": {"src": "https://ps.w.org/wp-smushit/assets/screenshot-4.png?rev=3281715", "caption": "Compress images like a pro with single Smush settings."}, "5": {"src": "https://ps.w.org/wp-smushit/assets/screenshot-5.png?rev=3281715", "caption": "Make your page load faster with lazy loading."}}, "support_url": "https://wordpress.org/support/plugin/wp-smushit/", "contributors": {"wpmudev": {"avatar": "https://secure.gravatar.com/avatar/76b74b052c98504b5989e983d0c5fbe671c1535ec3b01024f520f0709cb9b2d9?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpmudev/", "display_name": "WPMU DEV - Your All-in-One WordPress Platform"}, "alexdunae": {"avatar": "https://secure.gravatar.com/avatar/ac75c9e4912a0765eef18917d25c7340bab2dc253cd23b85191768b8c9f4207d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/alexdunae/", "display_name": "Alex Dunae"}}, "last_updated": "2025-10-06 2:47pm GMT", "preview_link": "", "requires_php": "7.4", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-smushit.3.22.1.zip", "author_profile": "https://profiles.wordpress.org/wpmudev/", "business_model": "commercial", "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-ff2c-72bb-aef5-479610fee18c", "name": "Smush Image Optimization – Optimize Images | Compress & Lazy Load Images | Convert WebP & AVIF | Image CDN", "slug": "wp-smushit", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1759762020, "version": "3.22.1"}, "support_threads": 6, "requires_plugins": [], "short_description": "Optimize images & bulk compress images with lossless compression, lazy load, convert to WebP or AVIF, and properly size images via CDN for incredi …", "author_block_count": 0, "author_block_rating": 96, "commercial_support_url": "https://wpmudev.com/project/wp-smush-pro/", "support_threads_resolved": 5}'); -INSERT INTO public.plugins VALUES ('019a30c1-6851-7358-86c8-20cdf359744b', 'wp-super-cache', 'WP Super Cache', 'A very fast caching engine for WordPress that produces static html files.', '

    This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.

    -

    The static html files will be served to the vast majority of your users:

    -
      -
    • Users who are not logged in.
    • -
    • Users who have not left a comment on your blog.
    • -
    • Or users who have not viewed a password protected post.
    • -
    -

    99% of your visitors will be served static html files. One cached file can be served thousands of times. Other visitors will be served custom cached files tailored to their visit. If they are logged in, or have left comments those details will be displayed and cached for them.

    -

    The plugin serves cached files in 3 ways (ranked by speed):

    -
      -
    1. Expert. The fastest method is by using Apache mod_rewrite (or whatever similar module your web server supports) to serve “supercached” static html files. This completely bypasses PHP and is extremely quick. If your server is hit by a deluge of traffic it is more likely to cope as the requests are “lighter”. This does require the Apache mod_rewrite module (which is probably installed if you have custom permalinks) and a modification of your .htaccess file which is risky and may take down your site if modified incorrectly.
    2. -
    3. Simple. Supercached static files can be served by PHP and this is the recommended way of using the plugin. The plugin will serve a “supercached” file if it exists and it’s almost as fast as the mod_rewrite method. It’s easier to configure as the .htaccess file doesn’t need to be changed. You still need a custom permalink. You can keep portions of your page dynamic in this caching mode.
    4. -
    5. WP-Cache caching. This is mainly used to cache pages for known users, URLs with parameters and feeds. Known users are logged in users, visitors who leave comments or those who should be shown custom per-user data. It’s the most flexible caching method and slightly slower. WP-Cache caching will also cache visits by unknown users if supercaching is disabled. You can have dynamic parts to your page in this mode too. This mode is always enabled but you can disable caching for known users, URLs with parameters, or feeds separately. Set the constant “DISABLE_SUPERCACHE” to 1 in your wp-config.php if you want to only use WP-Cache caching.
    6. -
    -

    If you’re not comfortable with editing PHP files then use simple mode. It’s easy to set up and very fast.

    -

    Recommended Settings

    -
      -
    1. Simple caching.
    2. -
    3. Compress pages.
    4. -
    5. Don’t cache pages for known users.
    6. -
    7. Cache rebuild.
    8. -
    9. CDN support.
    10. -
    11. Extra homepage checks.
    12. -
    -

    Garbage collection is the act of cleaning up cache files that are out of date and stale. There’s no correct value for the expiry time but a good starting point is 1800 seconds.

    -

    Consider deleting the contents of the “Rejected User Agents” text box and allow search engines to cache files for you.

    -

    Preload as many posts as you can and enable “Preload Mode”. Garbage collection of old cached files will be disabled. If you don’t care about sidebar widgets updating often set the preload interval to 2880 minutes (2 days) so all your posts aren’t recached very often. When the preload occurs the cache files for the post being refreshed is deleted and then regenerated. Afterwards a garbage collection of all old files is performed to clean out stale cache files.
    -Even with preload mode enabled cached files will still be deleted when posts are modified or comments made.

    -

    Development

    -
      -
    • Active development of this plugin is handled on GitHub.
    • -
    • Translation of the plugin into different languages is on the translation page.
    • -
    -

    Documentation

    -

    If you need more information than the following, you can have a look at the wiki or the Developer documentation.

    -

    Preloading

    -

    You can generate cached files for the posts, categories and tags of your site by preloading. Preloading will visit each page of your site generating a cached page as it goes along, just like any other visitor to the site. Due to the sequential nature of this function, it can take some time to preload a complete site if there are many posts.
    -To make preloading more effective it can be useful to disable garbage collection so that older cache files are not deleted. This is done by enabling “Preload Mode” in the settings. Be aware however, that pages will go out of date eventually but that updates by submitting comments or editing posts will clear portions of the cache.

    -

    Garbage Collection

    -

    Your cache directory fills up over time, which takes up space on your server. If space is limited or billed by capacity, or if you worry that the cached pages of your site will go stale then garbage collection has to be done. Garbage collection happens on a regular basis and deletes old files in the cache directory. On the advanced settings page you can specify:
    -1. Cache timeout. How long cache files are considered fresh for. After this time they are stale and can be deleted.
    -2. Scheduler. Setup how often garbage collection should be done.
    -3. Notification emails. You can be informed on garbage collection job progress.
    -There’s no right or wrong settings for garbage collection. It depends on your own site.
    -If your site gets regular updates, or comments then set the timeout to 1800 seconds, and set the timer to 600 seconds.
    -If your site is mostly static you can disable garbage collection by entering 0 as the timeout, or use a really large timeout value.

    -

    The cache directory, usually wp-content/cache/ is only for temporary files. Do not ever put important files or symlinks to important files or directories in that directory. They will be deleted if the plugin has write access to them.

    -

    CDN

    -

    A Content Delivery Network (CDN) is usually a network of computers situated around the world that will serve the content of your website faster by using servers close to you. Static files like images, Javascript and CSS files can be served through these networks to speed up how fast your site loads. You can also create a “poor man’s CDN” by using a sub domain of your domain to serve static files too.

    -

    OSSDL CDN off-linker has been integrated into WP Super Cache to provide basic CDN support. It works by rewriting the URLs of files (excluding .php files) in wp-content and wp-includes on your server so they point at a different hostname. Many CDNs support origin pull. This means the CDN will download the file automatically from your server when it’s first requested, and will continue to serve it for a configurable length of time before downloading it again from your server.

    -

    Configure this on the “CDN” tab of the plugin settings page. This is an advanced technique and requires a basic understanding of how your webserver or CDNs work. Please be sure to clear the file cache after you configure the CDN.

    -

    REST API

    -

    There are now REST API endpoints for accessing the settings of this plugin. You’ll need to be authenticated as an admin user with permission to view the settings page to use it. This has not been documented yet but you can find all the code that deals with this in the “rest” directory.

    -

    Custom Caching

    -

    It is now possible to hook into the caching process using the add_cacheaction() function.

    -

    Three hooks are available:

    -
      -
    1. ‘wp_cache_get_cookies_values’ – modify the key used by WP Cache.
    2. -
    3. ‘add_cacheaction’ – runs in phase2. Allows a plugin to add WordPress hooks.
    4. -
    5. ‘cache_admin_page’ – runs in the admin page. Use it to modify that page, perhaps by adding new configuration options.
    6. -
    -

    There is one regular WordPress filter too. Use the “do_createsupercache” filter
    -to customize the checks made before caching. The filter accepts one parameter.
    -The output of WP-Cache’s wp_cache_get_cookies_values() function.

    -

    WP Super Cache has its own plugin system. This code is loaded when WP Super Cache loads and can be used to change how caching is done. This is before most of WordPress loads so some functionality will not be available. Plugins can be located anywhere that PHP can load them. Add your own plugin either:

    -
      -
    • by putting your plugin in the wp-content/plugins/wp-super-cache-plugins directory, or
    • -
    • by calling wpsc_add_plugin( $name ) where $name is the full filename and path to the plugin. You only need to call that function once to add it. Use wpsc_delete_plugin( $name ) to remove it from the list of loaded plugins.
    • -
    -

    The cookies WP Super Cache uses to identify “known users” can be modified now by adding the names of those cookies to a list in the plugin configuration. Use wpsc_add_cookie( $name ) to add a new cookie, and wpsc_delete_cookie( $name ) to remove it. The cookie names also modify the mod_rewrite rules used by the plugin but I recommend using Simple mode caching to avoid complications with updating the .htaccess file.
    -The cookie name and value are used to differenciate users so you can have one cookie, but different values for each type of user on your site for example. They’ll be served different cache files.

    -

    See plugins/searchengine.php as an example I use for my No Adverts for Friends plugin.

    -

    Troubleshooting

    -

    If things don’t work when you installed the plugin here are a few things to check:

    -
      -
    1. Is wp-content writable by the web server?
    2. -
    3. Is there a wp-content/wp-cache-config.php ? If not, copy the file wp-super-cache/wp-cache-config-sample.php to wp-content/wp-cache-config.php and make sure WPCACHEHOME points at the right place.
    4. -
    5. Is there a wp-content/advanced-cache.php ? If not, then you must copy wp-super-cache/advanced-cache.php into wp-content/. You must edit the file and change the path so it points at the wp-super-cache folder.
    6. -
    7. If pages are not cached at all, remove wp-content/advanced-cache.php and recreate it, following the advice above.
    8. -
    9. -

      Make sure the following line is in wp-config.php and it is ABOVE the “require_once(ABSPATH.’wp-settings.php’);” line:

      -
      define( ''WP_CACHE'', true );
      -
      -
    10. -
    11. Try the Settings->WP Super Cache page again and enable cache.
    12. -
    13. Look in wp-content/cache/supercache/. Are there directories and files there?
    14. -
    15. Anything in your php error_log?
    16. -
    17. If your browser keeps asking you to save the file after the super cache is installed you must disable Super Cache compression. Go to the Settings->WP Super Cache page and disable it there.
    18. -
    19. The plugin does not work very well when PHP’s safe mode is active. This must be disabled by your administrator.
    20. -
    21. If pages are randomly super cached and sometimes not, your blog can probably be viewed with and without the “www” prefix on the URL. You should choose one way and install the Enforce www preference plugin if you are using an old WordPress install. The latest versions redirect themselves (you should always be running the latest version of WordPress anyway!)
    22. -
    23. Private Server users at Dreamhost should edit wp-content/wp-cache-config.php and set the cache dir to “/tmp/” if they are getting errors about increasing CPU usage. See this discussion for more.
    24. -
    25. File locking errors such as “failed to acquire key 0x152b: Permission denied in…” or “Page not cached by WP Super Cache. Could not get mutex lock.” are a sign that you may have to use file locking. Edit wp-content/wp-cache-config.php and uncomment “$use_flock = true” or set $sem_id to a different value. You can also disable file locking from the Admin screen as a last resort.
    26. -
    27. Make sure cache/wp_cache_mutex.lock is writable by the web server if using coarse file locking.
    28. -
    29. The cache folder cannot be put on an NFS or Samba or NAS share. It has to be on a local disk. File locking and deleting expired files will not work properly unless the cache folder is on the local machine.
    30. -
    31. -

      Garbage collection of old cache files won’t work if WordPress can’t find wp-cron.php. If your hostname resolves to 127.0.0.1 it could be preventing the garbage collection from working. Check your access_logs for wp-cron.php entries. Do they return a 404 (file not found) or 200 code? If it’s 404 or you don’t see wp-cron.php anywhere WordPress may be looking for that script in the wrong place. You should speak to your server administator to correct this or edit /etc/hosts on Unix servers and remove the following line. Your hostname must resolve to the external IP address other servers on the network/Internet use. See http://yoast.com/wp-cron-issues/ for more. A line like “127.0.0.1 localhost localhost.localdomain” is ok.

      -
      127.0.0.1 example.com
      -
      -
    32. -
    33. If old pages are being served to your visitors via the supercache, you may be missing Apache modules (or their equivalents if you don’t use Apache). 3 modules are required: mod_mime, mod_headers and mod_expires. The last two are especially important for making sure browsers load new versions of existing pages on your site.
    34. -
    35. The error message, “WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed!” appears at the end of every page. Open the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? This file will normally be in wp-content/plugins/wp-super-cache/. If it is not correct the caching engine will not load.
    36. -
    37. Caching doesn’t work. The timestamp on my blog keeps changing when I reload. Check that the path in your .htaccess rules matches where the supercache directory is. You may have to hardcode it. Try disabling supercache mode.
    38. -
    39. -

      If supercache cache files are generated but not served, check the permissions on all your wp-content/cache/supercache folders (and each of wp-content cache and supercache folders) and wp-content/cache/.htaccess. If your PHP runs as a different user to Apache and permissions are strict Apache may not be able to read the PHP generated cache files. To fix you must add the following line to your wp-config.php (Add it above the WP_CACHE define.) Then clear your cache.

      -
      umask( 0022 );
      -
      -
    40. -
    41. -

      If you see garbage in your browser after enabling compression in the plugin, compression may already be enabled in your web server. In Apache you must disable mod_deflate, or in PHP zlib compression may be enabled. You can disable that in three ways. If you have root access, edit your php.ini and find the zlib.output_compression setting and make sure it’s “Off” or add this line to your .htaccess:

      -
      php_flag zlib.output_compression off
      -
      -

      If that doesn’t work, add this line to your wp-config.php:

      -
      ini_set(''zlib.output_compression'', 0);
      -
      -
    42. -
    43. The “white screen of death” or a blank page when you visit your site is almost always caused by a PHP error but it may also be caused by APC. Disable that PHP extension if you have trouble and replace with eAccelerator or Xcache.
    44. -
    45. After uninstalling, your permalinks may break if you remove the WordPress mod_rewrite rules too. Regenerate those rules by visiting the Settings->Permalink page and saving that form again.
    46. -
    47. If your blog refuses to load make sure your wp-config.php is correct. Are you missing an opening or closing PHP tag?
    48. -
    49. Your front …
    50. -
    -', '3.0.2', 'Automattic', '6.7', '7.2', '6.8.3', 'https://downloads.wordpress.org/plugin/wp-super-cache.3.0.2.zip', '2007-11-05 00:00:00+00', '2025-10-10 18:12:00+00', 'https://profiles.wordpress.org/automattic/', 86, 1341, 5, 3, 1000000, 60394201, 'https://wordpress.org/plugins/wp-super-cache/', NULL, NULL, NULL, 'https://wordpress.org/support/plugin/wp-super-cache/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "WP Super Cache", "slug": "wp-super-cache", "tags": {"cache": "cache", "caching": "caching", "wp-cache": "WP Cache", "performance": "performance", "wp-super-cache": "WP Super Cache"}, "added": "2007-11-05", "icons": {"1x": "https://ps.w.org/wp-super-cache/assets/icon-128x128.png?rev=1095422", "2x": "https://ps.w.org/wp-super-cache/assets/icon-256x256.png?rev=1095422"}, "author": "Automattic", "rating": 86, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wp-super-cache/assets/banner-772x250.png?rev=1082414", "high": "https://ps.w.org/wp-super-cache/assets/banner-1544x500.png?rev=1082414"}, "ratings": {"1": 175, "2": 23, "3": 47, "4": 107, "5": 989}, "version": "3.0.2", "homepage": "https://wordpress.org/plugins/wp-super-cache/", "requires": "6.7", "sections": {"faq": "\n
    \nHow do I know my blog is being cached?\n\n

    \n

    Go to Settings -> WP Super Cache and look for the “Cache Tester” form on the easy settings page. Click “Test Cache” and the plugin will request the front page of the site twice, comparing a timestamp on each to make sure they match.

    \n

    If you want to do it manually, enable debugging in the plugin settings page and load the log file in a new browser tab. Then view your blog while logged in and logged out. You should see activity in the log. View the source of any page on your site. When a page is first created, you’ll see the text “Dynamic page generated in XXXX seconds.” and “Cached page generated by WP-Super-Cache on YYYY-MM-DD HH:MM:SS” at the end of the source code. On reload, a cached page will show the same timestamp so wait a few seconds before checking.
    \nIf Supercaching is disabled and you have compression enabled, the text “Compression = gzip” will be added. If compression is disabled and the page is served as a static html file, the text “super cache” will be added. The only other way to check if your cached file was served by PHP script or from the static cache is by looking at the HTTP headers. PHP cached pages will have the header “WP-Super-Cache: Served supercache file from PHP”. WPCache cached files will have the header, “WP-Super-Cache: Served WPCache cache file”. You should also check your cache directory in wp-content/cache/supercache/hostname/ for static cache files.
    \nIf the plugin rules are missing from your .htaccess file, the plugin will attempt to serve the super cached page if it’s found. The header “WP-Super-Cache: Served supercache file from PHP” if this happens.
    \nThe pagespeed module for Apache may cause problems when testing. Disable it if you notice any problems running the cache tester.

    \n

    \n
    \nHow do I disable Supercaching?\n\n

    \n

    If you only want to use the WP-Cache engine then edit your wp-config.php or create an mu-plugin that sets the constant ‘DISABLE_SUPERCACHE’ to 1.

    \n

    \n
    \nWP-Cache vs Supercache files\n\n

    \n

    All cache files are stored in wp-content/cache/supercache/HOSTNAME/ where HOSTNANE is your domain name. The files are stored in directories matching your site’s permalink structure. Supercache files are index.html or some variant of that, depending on what type of visitor hit the blog. Other files are named wp-cache-XXXXXXXXXXXXXXXXX.php. Associated meta filesnames start with “meta”. Those files contain information about the cached file. These files are generated by the “WPCache caching” engine in the plugin.

    \n

    \n
    \nWill comments and other dynamic parts of my blog update immediately?\n\n

    \n

    Comments will show as soon as they are moderated, depending on the comment policy of the blog owner. Other dynamic elements on a page may not update unless they are written in Javascript, Flash, Java or another client side browser language. The plugin really produces static html pages. No PHP is executed when those pages are served. “Popularity Contest” is one such plugin that will not work.

    \n

    \n
    \nWill the Super Cache compression slow down my server?\n\n

    \n

    No, it will do the opposite. Super Cache files are compressed and stored that way so the heavy compression is done only once. These files are generally much smaller and are sent to a visitor’s browser much more quickly than uncompressed html. As a result, your server spends less time talking over the network which saves CPU time and bandwidth, and can also serve the next request much more quickly.

    \n

    \n
    \nHow do I make certain parts of the page stay dynamic?\n\n

    \n

    Note: this functionality is disabled by default. You will have to enable it on the Advanced Settings page.

    \n

    There are 2 ways of doing this. You can use Javascript to draw the part of the page you want to keep dynamic. That’s what Google Adsense and many widgets from external sites do and is the recommended way. Or you can use a WP Super Cache filter to do the job but you can’t use mod_rewrite mode caching. You have to use the “simple” delivery method or disable supercaching.

    \n

    WP Super Cache 1.4 introduced a cacheaction filter called wpsc_cachedata. The cached page to be displayed goes through this filter and allows modification of the page. If the page contains a placeholder tag the filter can be used to replace that tag with your dynamically generated html.
    \nThe function that hooks on to the wpsc_cachedata filter should be put in a file in the WP Super Cache plugins folder unless you use the late_init feature. An example plugin is included. Edit dynamic-cache-test.php to see the example code.
    \nThere are two example functions there. There’s a simple function that replaces a string (or tag) you define when the cached page is served. The other example function uses an output buffer to generate the dynamic content. Due to a limitation in how PHP works the output buffer code MUST run before the wpsc_cachedata filter is hit, at least for when a page is cached. It doesn’t matter when serving cached pages. See this post for a more technical and longer explanation.
    \nTo execute WordPress functions you must enable the ‘Late init’ feature on the advanced settings page.

    \n

    \n
    \nHow do I delay serving the cache until the “init” action fires?\n\n

    \n

    Cached files are served before almost all of WordPress is loaded. While that’s great for performance it’s a pain when you want to extend the plugin using a core part of WordPress. Enable ‘Late init’ mode on the Advanced settings page and cached files will be served when “init” fires. WordPress and it’s plugins will be loaded now.

    \n

    \n
    \nWhy don’t WP UserOnline, Popularity Contest, WP Postratings or plugin X not work or update on my blog now?\n\n

    \n

    This plugin caches entire pages but some plugins think they can run PHP code every time a page loads. To fix this, the plugin needs to use Javascript/AJAX methods or the wpsc_cachedata filter described in the previous answer to update or display dynamic information.

    \n

    \n
    \nWhy do my WP Super Cache plugins disappear when I upgrade the plugin?\n\n

    \n

    WordPress deletes the plugin folder when it updates a plugin. This is the same with WP Super Cache so any modified files in wp-super-cache/plugins/ will be deleted. You can put your custom plugins in a different directory in a number of ways. You can define the variable $wp_cache_plugins_dir in wp-config.php or wp-content/wp-cache-config.php and point it at a directory outside of the wp-super-cache folder. The plugin will look there for it’s plugins. Or if you distribute a plugin that needs to load early you can use the function wpsc_add_plugin( $filename ) to add a new plugin wherever it may be. Use wpsc_delete_plugin( $filename ) to remove the plugin file. See #574 or this post on writing WP Super Cache plugins.

    \n

    \n
    \nWhat does the Cache Rebuild feature do?\n\n

    \n

    When a visitor leaves a comment the cached file for that page is deleted and the next visitor recreates the cached page. A page takes time to load so what happens if it receives 100 visitors during this time? There won’t be a cached page so WordPress will serve a fresh page for each user and the plugin will try to create a cached page for each of those 100 visitors causing a huge load on your server. This feature stops this happening. The cached page is not cleared when a comment is left. It is marked for rebuilding instead. The next visitor within the next 10 seconds will regenerate the cached page while the old page is served to the other 99 visitors. The page is eventually loaded by the first visitor and the cached page updated. See this post for more.

    \n

    \n
    \nWhy doesn’t the plugin cache requests by search engine bots by default?\n\n

    \n

    Those bots usually only visit each page once and if the page is not popular there’s no point creating a cache file that will sit idle on your server. However you can allow these visits to be cached by removing the list of bots from “Rejected User Agents” on the Advanced settings page.

    \n

    \n
    \nA category page is showing instead of my homepage\n\n

    \n

    A tiny proportion of websites will have problems with the following configuration:

    \n
      \n
    1. Uses a static page for the front page.
    2. \n
    3. Uses /%category%/%postname%/ permalink structure.
    4. \n
    \n

    Sometimes a category page is cached as the homepage of the site instead of the static page. I can’t replicate the problem but a simple solution is to use the “Simple” mode. You can also enable “Extra homepage checks” on the Advanced Settings page.

    \n

    \n
    \nWhy do I get warnings about caching from http://ismyblogworking.com/\n\n

    \n

    “Your blog doesn’t support client caching (no 304 response to If-modified-since).”
    \n“Your feed doesn’t support caching (no 304 response to If-modified-since)”

    \n

    Supercache doesn’t support 304 header checks in Expert mode but does support it in Simple mode. This is caching done by your browser, not the server. It is a check your browser does to ask the server if an updated version of the current page is available. If not, it doesn’t download the old version again. The page is still cached by your server, just not by your visitors’ browsers.
    \nTry the Cacheability Engine at http://www.ircache.net/cgi-bin/cacheability.py or https://redbot.org/ for further analysis.

    \n

    \n
    \nHow should I best use the utm_source tracking tools in Google Analytics with this plugin?\n\n

    \n

    That tracking adds a query string to each url linked from various sources like Twitter and feedreaders. Unfortunately it stops pages being supercached. See Joost’s comment here for how to turn it into an anchor tag which can be supercached.

    \n

    \n
    \nThe plugin complains that wp-content is writable! htdocs is writable!\n\n

    \n

    It’s not good when the web server can write to these directories but sometimes shared hosting accounts are set up in this way to make administration easier. Use chmod 755 directory to fix the permissions or find the permissions section of your ftp client. This Google search will lead you to more information on this topic and there’s also this codex page too. Unfortunately some hosts require that those directories be writable. If that’s the case just ignore this warning.

    \n

    \n
    \nHow do I delete the WP_CACHE define from wp-config.php?\n\n

    \n

    Load your desktop ftp client and connect to your site. Navigate to the root (or the directory below it) of your site where you’ll find wp-config.php. Download that file and edit it in a text editor. Delete the line define( ''WP_CACHE'', true ); and save the file. Now upload it, overwriting the wp-config.php on your server.

    \n

    \n
    \nHow do I delete the Super Cache rules from the .htaccess file?\n\n

    \n

    Load your desktop ftp client and connect to your site. You may need to enable “Show hidden files” in the preferences of the ftp client. Navigate to the root of your site where you’ll find the .htaccess file. Download that file and edit it in a text editor. Delete the lines between “# BEGIN WPSuperCache” and “# END WPSuperCache” and save the file. Now upload it, overwriting the .htaccess file on your server.

    \n

    \n
    \nHow do I change file permissions?\n\n

    \n

    This page on the WordPress Codex explains everything you need to know about file permissions on your server and various ways of changing them.

    \n

    \n
    \nWhy do I get load spikes when new posts are made?\n\n

    \n

    You may have the “clear all cached files when new posts are made” option set. Clearing those files can take time plus your visitors will now be visiting uncached pages. Are you using Google Analytics campaign tracking with utm_source in the url? Those pages aren’t cached. See the question, “How should I best use the utm_source tracking tools in Google Analytics with this plugin” above for how to use them properly.
    \nCached pages have to be refreshed when posts are made. Perhaps your server just isn’t up to the job of serving the amount of traffic you get. Enable the “cache rebuild” feature as that may help.

    \n

    \n
    \nHow many pages can I cache?\n\n

    \n

    The only real limit are limits defined by your server. For example, EXT2 and EXT3 allow a maximum of 31,999 sub directories so if you have a flat permalink structure (like /%POSTNAME%/) and more than 32,000 posts you may run into problems. Likewise, if you run a multisite network and have more than 31,999 sites (blogs) you won’t be able to cache all of them. Realistically if you had that many active sites you wouldn’t be running on one server.

    \n

    \n
    \nI can see that the www version of my site is cached separately. How do I stop that?\n\n

    \n

    WordPress should redirect to the canonical URL of your site but if it doesn’t, add this to your .htaccess above the Supercache and WordPress rules. Change example.com to your own hostname.
    \n RewriteCond %{HTTP_HOST} www.example.com$ [NC]
    \n RewriteRule ^(.*)$ https://example.com/$1 [L,R=301]

    \n

    \n
    \nHow do I serve cached mobile pages to clients on small screens like phones and tablets?\n\n

    \n

    Your theme is probably responsive which means it resizes the page to suit whatever device is displaying the page. If it’s not responsive, you’ll have to use a separate mobile plugin to render a page formatted for those visitors. The following plugins have been tested but YMMV depending on mobile client. You’ll have to enable mobile browser support as well on the Advanced settings page.

    \n\n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Fast, Simple, and Effective

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Willem Jurka (jurka) on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    First experience is very positive. WP Super Cache works immediately and makes the site noticeably faster. The plugin is straightforward, simple to use, and does exactly what it should without any hassle. Hopefully, it will stay this way.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    This really sucks

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy biodracula on October 7, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    when I deactivated it , Internal Server Error

    \n\n\n\n

    would never use again!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    A good functional plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy weboosteg on August 5, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    the plugin works good and the team of it answer questions and support whenever needed. Keep it up!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Very helpful tool

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Rene Maurer (rene.maurer) on May 9, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It is very easy to use and optimally accelerates the website(s). Many thanks for the free version, it''s simply brilliant.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Warning

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy bjorne51 on November 26, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This plugin caused our web hotel to cash coz the cache files allows to increase without stop

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Billboard voor Jetpack Boost

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy elco.vanberkel on November 11, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    It''s one big advertisement for Jetpack Boost.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Simple and Useful

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy labsii on October 21, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Easy to setup and has effect.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Zufrieden - Vielen Dank

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy mehralsheidi on August 3, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Ich bin Laie und kann nicht beurteilen, wie gut das PlugIn ist - aber ich habs und alles funkt :-)

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Does everything a page-caching plugin should.

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy grdesign (grogers42) on July 5, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A staple of my website-making toolkit.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Most important SEO plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy Michael Schustereder (schustereder) on June 10, 2024\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    The first plugin I install on any site. The difference between slow and blazing fast.

    \n
    \n
    \n", "changelog": "

    3.0.2 – 2025-10-10

    \n

    Added

    \n
      \n
    • Add typecheck support for E2E tests.
    • \n
    \n

    Changed

    \n
      \n
    • Update package dependencies.
    • \n
    • Use wp_rand() instead of rand() and mt_rand().
    • \n
    \n

    Fixed

    \n
      \n
    • Code: Resolve PhanImpossibleCondition violations.
    • \n
    \n

    See the previous changelogs here

    \n", "description": "

    This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.

    \n

    The static html files will be served to the vast majority of your users:

    \n
      \n
    • Users who are not logged in.
    • \n
    • Users who have not left a comment on your blog.
    • \n
    • Or users who have not viewed a password protected post.
    • \n
    \n

    99% of your visitors will be served static html files. One cached file can be served thousands of times. Other visitors will be served custom cached files tailored to their visit. If they are logged in, or have left comments those details will be displayed and cached for them.

    \n

    The plugin serves cached files in 3 ways (ranked by speed):

    \n
      \n
    1. Expert. The fastest method is by using Apache mod_rewrite (or whatever similar module your web server supports) to serve “supercached” static html files. This completely bypasses PHP and is extremely quick. If your server is hit by a deluge of traffic it is more likely to cope as the requests are “lighter”. This does require the Apache mod_rewrite module (which is probably installed if you have custom permalinks) and a modification of your .htaccess file which is risky and may take down your site if modified incorrectly.
    2. \n
    3. Simple. Supercached static files can be served by PHP and this is the recommended way of using the plugin. The plugin will serve a “supercached” file if it exists and it’s almost as fast as the mod_rewrite method. It’s easier to configure as the .htaccess file doesn’t need to be changed. You still need a custom permalink. You can keep portions of your page dynamic in this caching mode.
    4. \n
    5. WP-Cache caching. This is mainly used to cache pages for known users, URLs with parameters and feeds. Known users are logged in users, visitors who leave comments or those who should be shown custom per-user data. It’s the most flexible caching method and slightly slower. WP-Cache caching will also cache visits by unknown users if supercaching is disabled. You can have dynamic parts to your page in this mode too. This mode is always enabled but you can disable caching for known users, URLs with parameters, or feeds separately. Set the constant “DISABLE_SUPERCACHE” to 1 in your wp-config.php if you want to only use WP-Cache caching.
    6. \n
    \n

    If you’re not comfortable with editing PHP files then use simple mode. It’s easy to set up and very fast.

    \n

    Recommended Settings

    \n
      \n
    1. Simple caching.
    2. \n
    3. Compress pages.
    4. \n
    5. Don’t cache pages for known users.
    6. \n
    7. Cache rebuild.
    8. \n
    9. CDN support.
    10. \n
    11. Extra homepage checks.
    12. \n
    \n

    Garbage collection is the act of cleaning up cache files that are out of date and stale. There’s no correct value for the expiry time but a good starting point is 1800 seconds.

    \n

    Consider deleting the contents of the “Rejected User Agents” text box and allow search engines to cache files for you.

    \n

    Preload as many posts as you can and enable “Preload Mode”. Garbage collection of old cached files will be disabled. If you don’t care about sidebar widgets updating often set the preload interval to 2880 minutes (2 days) so all your posts aren’t recached very often. When the preload occurs the cache files for the post being refreshed is deleted and then regenerated. Afterwards a garbage collection of all old files is performed to clean out stale cache files.
    \nEven with preload mode enabled cached files will still be deleted when posts are modified or comments made.

    \n

    Development

    \n
      \n
    • Active development of this plugin is handled on GitHub.
    • \n
    • Translation of the plugin into different languages is on the translation page.
    • \n
    \n

    Documentation

    \n

    If you need more information than the following, you can have a look at the wiki or the Developer documentation.

    \n

    Preloading

    \n

    You can generate cached files for the posts, categories and tags of your site by preloading. Preloading will visit each page of your site generating a cached page as it goes along, just like any other visitor to the site. Due to the sequential nature of this function, it can take some time to preload a complete site if there are many posts.
    \nTo make preloading more effective it can be useful to disable garbage collection so that older cache files are not deleted. This is done by enabling “Preload Mode” in the settings. Be aware however, that pages will go out of date eventually but that updates by submitting comments or editing posts will clear portions of the cache.

    \n

    Garbage Collection

    \n

    Your cache directory fills up over time, which takes up space on your server. If space is limited or billed by capacity, or if you worry that the cached pages of your site will go stale then garbage collection has to be done. Garbage collection happens on a regular basis and deletes old files in the cache directory. On the advanced settings page you can specify:
    \n1. Cache timeout. How long cache files are considered fresh for. After this time they are stale and can be deleted.
    \n2. Scheduler. Setup how often garbage collection should be done.
    \n3. Notification emails. You can be informed on garbage collection job progress.
    \nThere’s no right or wrong settings for garbage collection. It depends on your own site.
    \nIf your site gets regular updates, or comments then set the timeout to 1800 seconds, and set the timer to 600 seconds.
    \nIf your site is mostly static you can disable garbage collection by entering 0 as the timeout, or use a really large timeout value.

    \n

    The cache directory, usually wp-content/cache/ is only for temporary files. Do not ever put important files or symlinks to important files or directories in that directory. They will be deleted if the plugin has write access to them.

    \n

    CDN

    \n

    A Content Delivery Network (CDN) is usually a network of computers situated around the world that will serve the content of your website faster by using servers close to you. Static files like images, Javascript and CSS files can be served through these networks to speed up how fast your site loads. You can also create a “poor man’s CDN” by using a sub domain of your domain to serve static files too.

    \n

    OSSDL CDN off-linker has been integrated into WP Super Cache to provide basic CDN support. It works by rewriting the URLs of files (excluding .php files) in wp-content and wp-includes on your server so they point at a different hostname. Many CDNs support origin pull. This means the CDN will download the file automatically from your server when it’s first requested, and will continue to serve it for a configurable length of time before downloading it again from your server.

    \n

    Configure this on the “CDN” tab of the plugin settings page. This is an advanced technique and requires a basic understanding of how your webserver or CDNs work. Please be sure to clear the file cache after you configure the CDN.

    \n

    REST API

    \n

    There are now REST API endpoints for accessing the settings of this plugin. You’ll need to be authenticated as an admin user with permission to view the settings page to use it. This has not been documented yet but you can find all the code that deals with this in the “rest” directory.

    \n

    Custom Caching

    \n

    It is now possible to hook into the caching process using the add_cacheaction() function.

    \n

    Three hooks are available:

    \n
      \n
    1. ‘wp_cache_get_cookies_values’ – modify the key used by WP Cache.
    2. \n
    3. ‘add_cacheaction’ – runs in phase2. Allows a plugin to add WordPress hooks.
    4. \n
    5. ‘cache_admin_page’ – runs in the admin page. Use it to modify that page, perhaps by adding new configuration options.
    6. \n
    \n

    There is one regular WordPress filter too. Use the “do_createsupercache” filter
    \nto customize the checks made before caching. The filter accepts one parameter.
    \nThe output of WP-Cache’s wp_cache_get_cookies_values() function.

    \n

    WP Super Cache has its own plugin system. This code is loaded when WP Super Cache loads and can be used to change how caching is done. This is before most of WordPress loads so some functionality will not be available. Plugins can be located anywhere that PHP can load them. Add your own plugin either:

    \n
      \n
    • by putting your plugin in the wp-content/plugins/wp-super-cache-plugins directory, or
    • \n
    • by calling wpsc_add_plugin( $name ) where $name is the full filename and path to the plugin. You only need to call that function once to add it. Use wpsc_delete_plugin( $name ) to remove it from the list of loaded plugins.
    • \n
    \n

    The cookies WP Super Cache uses to identify “known users” can be modified now by adding the names of those cookies to a list in the plugin configuration. Use wpsc_add_cookie( $name ) to add a new cookie, and wpsc_delete_cookie( $name ) to remove it. The cookie names also modify the mod_rewrite rules used by the plugin but I recommend using Simple mode caching to avoid complications with updating the .htaccess file.
    \nThe cookie name and value are used to differenciate users so you can have one cookie, but different values for each type of user on your site for example. They’ll be served different cache files.

    \n

    See plugins/searchengine.php as an example I use for my No Adverts for Friends plugin.

    \n

    Troubleshooting

    \n

    If things don’t work when you installed the plugin here are a few things to check:

    \n
      \n
    1. Is wp-content writable by the web server?
    2. \n
    3. Is there a wp-content/wp-cache-config.php ? If not, copy the file wp-super-cache/wp-cache-config-sample.php to wp-content/wp-cache-config.php and make sure WPCACHEHOME points at the right place.
    4. \n
    5. Is there a wp-content/advanced-cache.php ? If not, then you must copy wp-super-cache/advanced-cache.php into wp-content/. You must edit the file and change the path so it points at the wp-super-cache folder.
    6. \n
    7. If pages are not cached at all, remove wp-content/advanced-cache.php and recreate it, following the advice above.
    8. \n
    9. \n

      Make sure the following line is in wp-config.php and it is ABOVE the “require_once(ABSPATH.’wp-settings.php’);” line:

      \n
      define( ''WP_CACHE'', true );\n
      \n
    10. \n
    11. Try the Settings->WP Super Cache page again and enable cache.
    12. \n
    13. Look in wp-content/cache/supercache/. Are there directories and files there?
    14. \n
    15. Anything in your php error_log?
    16. \n
    17. If your browser keeps asking you to save the file after the super cache is installed you must disable Super Cache compression. Go to the Settings->WP Super Cache page and disable it there.
    18. \n
    19. The plugin does not work very well when PHP’s safe mode is active. This must be disabled by your administrator.
    20. \n
    21. If pages are randomly super cached and sometimes not, your blog can probably be viewed with and without the “www” prefix on the URL. You should choose one way and install the Enforce www preference plugin if you are using an old WordPress install. The latest versions redirect themselves (you should always be running the latest version of WordPress anyway!)
    22. \n
    23. Private Server users at Dreamhost should edit wp-content/wp-cache-config.php and set the cache dir to “/tmp/” if they are getting errors about increasing CPU usage. See this discussion for more.
    24. \n
    25. File locking errors such as “failed to acquire key 0x152b: Permission denied in…” or “Page not cached by WP Super Cache. Could not get mutex lock.” are a sign that you may have to use file locking. Edit wp-content/wp-cache-config.php and uncomment “$use_flock = true” or set $sem_id to a different value. You can also disable file locking from the Admin screen as a last resort.
    26. \n
    27. Make sure cache/wp_cache_mutex.lock is writable by the web server if using coarse file locking.
    28. \n
    29. The cache folder cannot be put on an NFS or Samba or NAS share. It has to be on a local disk. File locking and deleting expired files will not work properly unless the cache folder is on the local machine.
    30. \n
    31. \n

      Garbage collection of old cache files won’t work if WordPress can’t find wp-cron.php. If your hostname resolves to 127.0.0.1 it could be preventing the garbage collection from working. Check your access_logs for wp-cron.php entries. Do they return a 404 (file not found) or 200 code? If it’s 404 or you don’t see wp-cron.php anywhere WordPress may be looking for that script in the wrong place. You should speak to your server administator to correct this or edit /etc/hosts on Unix servers and remove the following line. Your hostname must resolve to the external IP address other servers on the network/Internet use. See http://yoast.com/wp-cron-issues/ for more. A line like “127.0.0.1 localhost localhost.localdomain” is ok.

      \n
      127.0.0.1 example.com\n
      \n
    32. \n
    33. If old pages are being served to your visitors via the supercache, you may be missing Apache modules (or their equivalents if you don’t use Apache). 3 modules are required: mod_mime, mod_headers and mod_expires. The last two are especially important for making sure browsers load new versions of existing pages on your site.
    34. \n
    35. The error message, “WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed!” appears at the end of every page. Open the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? This file will normally be in wp-content/plugins/wp-super-cache/. If it is not correct the caching engine will not load.
    36. \n
    37. Caching doesn’t work. The timestamp on my blog keeps changing when I reload. Check that the path in your .htaccess rules matches where the supercache directory is. You may have to hardcode it. Try disabling supercache mode.
    38. \n
    39. \n

      If supercache cache files are generated but not served, check the permissions on all your wp-content/cache/supercache folders (and each of wp-content cache and supercache folders) and wp-content/cache/.htaccess. If your PHP runs as a different user to Apache and permissions are strict Apache may not be able to read the PHP generated cache files. To fix you must add the following line to your wp-config.php (Add it above the WP_CACHE define.) Then clear your cache.

      \n
      umask( 0022 );\n
      \n
    40. \n
    41. \n

      If you see garbage in your browser after enabling compression in the plugin, compression may already be enabled in your web server. In Apache you must disable mod_deflate, or in PHP zlib compression may be enabled. You can disable that in three ways. If you have root access, edit your php.ini and find the zlib.output_compression setting and make sure it’s “Off” or add this line to your .htaccess:

      \n
      php_flag zlib.output_compression off\n
      \n

      If that doesn’t work, add this line to your wp-config.php:

      \n
      ini_set(''zlib.output_compression'', 0);\n
      \n
    42. \n
    43. The “white screen of death” or a blank page when you visit your site is almost always caused by a PHP error but it may also be caused by APC. Disable that PHP extension if you have trouble and replace with eAccelerator or Xcache.
    44. \n
    45. After uninstalling, your permalinks may break if you remove the WordPress mod_rewrite rules too. Regenerate those rules by visiting the Settings->Permalink page and saving that form again.
    46. \n
    47. If your blog refuses to load make sure your wp-config.php is correct. Are you missing an opening or closing PHP tag?
    48. \n
    49. Your front …
    50. \n
    \n", "installation": "

    Install like any other plugin, directly from your plugins page but make sure you have custom permalinks enabled. Go to the plugin settings page at Settings->WP Super Cache and enable caching.

    \n

    How to uninstall WP Super Cache

    \n

    Almost all you have to do is deactivate the plugin on the plugins page. The plugin should clean up most of the files it created and modified, but it doesn’t as yet remove the mod_rewrite rules from the .htaccess file. Look for the section in that file marked by SuperCache BEGIN and END tags. The plugin doesn’t remove those because some people add the WordPress rules in that block too.

    \n

    To manually uninstall:

    \n
      \n
    1. Turn off caching on the plugin settings page and clear the cache.
    2. \n
    3. Deactivate the plugin on the plugins page.
    4. \n
    5. Remove the WP_CACHE define from wp-config.php. It looks like define( ''WP_CACHE'', true );
    6. \n
    7. Remove the Super Cache mod_rewrite rules from your .htaccess file.
    8. \n
    9. Remove the files wp-content/advanced-cache.php and wp-content/wp-cache-config.php
    10. \n
    11. Remove the directory wp-content/cache/
    12. \n
    13. Remove the directory wp-super-cache from your plugins directory.
    14. \n
    \n

    If all else fails and your site is broken

    \n
      \n
    1. Remove the WP_CACHE define from wp-config.php. It looks like define( ''WP_CACHE'', true );
    2. \n
    3. Remove the rules (see above) that the plugin wrote to the .htaccess file in your root directory.
    4. \n
    5. Delete the wp-super-cache folder in the plugins folder.
    6. \n
    7. Optionally delete advanced-cache.php, wp-cache-config.php and the cache folder in wp-content/.
    8. \n
    \n"}, "versions": {"0.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.1.zip", "0.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.2.zip", "0.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.3.zip", "0.4": "https://downloads.wordpress.org/plugin/wp-super-cache.0.4.zip", "0.5": "https://downloads.wordpress.org/plugin/wp-super-cache.0.5.zip", "0.7": "https://downloads.wordpress.org/plugin/wp-super-cache.0.7.zip", "0.8": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.zip", "0.9": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.zip", "1.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.0.zip", "1.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.1.zip", "1.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.2.zip", "1.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.3.zip", "1.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.zip", "1.8": "https://downloads.wordpress.org/plugin/wp-super-cache.1.8.zip", "1.9": "https://downloads.wordpress.org/plugin/wp-super-cache.1.9.zip", "0.3.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.3.1.zip", "0.5.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.5.1.zip", "0.5.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.5.2.zip", "0.5.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.5.3.zip", "0.6.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.2.zip", "0.6.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.3.zip", "0.6.4": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.4.zip", "0.6.5": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.5.zip", "0.6.6": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.6.zip", "0.6.7": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.7.zip", "0.6.8": "https://downloads.wordpress.org/plugin/wp-super-cache.0.6.8.zip", "0.7.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.7.1.zip", "0.8.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.1.zip", "0.8.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.2.zip", "0.8.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.3.zip", "0.8.4": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.4.zip", "0.8.5": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.5.zip", "0.8.6": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.6.zip", "0.8.7": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.7.zip", "0.8.8": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.8.zip", "0.8.9": "https://downloads.wordpress.org/plugin/wp-super-cache.0.8.9.zip", "0.9.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.6.zip", "0.9.7": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.7.zip", "0.9.8": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.8.zip", "0.9.9": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.zip", "1.0.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.0.1.zip", "1.1.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.1.1.zip", "1.2.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.2.1.zip", "1.3.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.3.3.zip", "1.4.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/plugin/wp-super-cache.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/plugin/wp-super-cache.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/plugin/wp-super-cache.1.7.9.zip", "1.9.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.9.4.zip", "2.0.0": "https://downloads.wordpress.org/plugin/wp-super-cache.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/plugin/wp-super-cache.2.0.1.zip", "3.0.0": "https://downloads.wordpress.org/plugin/wp-super-cache.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/plugin/wp-super-cache.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/plugin/wp-super-cache.3.0.2.zip", "trunk": "https://downloads.wordpress.org/plugin/wp-super-cache.zip", "1.10.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.10.0.zip", "1.11.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.11.0.zip", "1.12.0": "https://downloads.wordpress.org/plugin/wp-super-cache.1.12.0.zip", "1.12.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.12.1.zip", "1.12.2": "https://downloads.wordpress.org/plugin/wp-super-cache.1.12.2.zip", "1.12.3": "https://downloads.wordpress.org/plugin/wp-super-cache.1.12.3.zip", "1.12.4": "https://downloads.wordpress.org/plugin/wp-super-cache.1.12.4.zip", "0.9.3.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.3.1.zip", "0.9.4.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.4.1.zip", "0.9.4.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.4.2.zip", "0.9.4.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.4.3.zip", "0.9.6.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.6.1.zip", "0.9.9.1": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.1.zip", "0.9.9.2": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.2.zip", "0.9.9.3": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.3.zip", "0.9.9.4": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.4.zip", "0.9.9.5": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.5.zip", "0.9.9.6": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.6.zip", "0.9.9.7": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.7.zip", "0.9.9.8": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.8.zip", "0.9.9.9": "https://downloads.wordpress.org/plugin/wp-super-cache.0.9.9.9.zip", "1.5.7.1": "https://downloads.wordpress.org/plugin/wp-super-cache.1.5.7.1.zip"}, "downloaded": 60394201, "description": "

    This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.

    \n

    The static html files will be served to the vast majority of your users:

    \n
      \n
    • Users who are not logged in.
    • \n
    • Users who have not left a comment on your blog.
    • \n
    • Or users who have not viewed a password protected post.
    • \n
    \n

    99% of your visitors will be served static html files. One cached file can be served thousands of times. Other visitors will be served custom cached files tailored to their visit. If they are logged in, or have left comments those details will be displayed and cached for them.

    \n

    The plugin serves cached files in 3 ways (ranked by speed):

    \n
      \n
    1. Expert. The fastest method is by using Apache mod_rewrite (or whatever similar module your web server supports) to serve “supercached” static html files. This completely bypasses PHP and is extremely quick. If your server is hit by a deluge of traffic it is more likely to cope as the requests are “lighter”. This does require the Apache mod_rewrite module (which is probably installed if you have custom permalinks) and a modification of your .htaccess file which is risky and may take down your site if modified incorrectly.
    2. \n
    3. Simple. Supercached static files can be served by PHP and this is the recommended way of using the plugin. The plugin will serve a “supercached” file if it exists and it’s almost as fast as the mod_rewrite method. It’s easier to configure as the .htaccess file doesn’t need to be changed. You still need a custom permalink. You can keep portions of your page dynamic in this caching mode.
    4. \n
    5. WP-Cache caching. This is mainly used to cache pages for known users, URLs with parameters and feeds. Known users are logged in users, visitors who leave comments or those who should be shown custom per-user data. It’s the most flexible caching method and slightly slower. WP-Cache caching will also cache visits by unknown users if supercaching is disabled. You can have dynamic parts to your page in this mode too. This mode is always enabled but you can disable caching for known users, URLs with parameters, or feeds separately. Set the constant “DISABLE_SUPERCACHE” to 1 in your wp-config.php if you want to only use WP-Cache caching.
    6. \n
    \n

    If you’re not comfortable with editing PHP files then use simple mode. It’s easy to set up and very fast.

    \n

    Recommended Settings

    \n
      \n
    1. Simple caching.
    2. \n
    3. Compress pages.
    4. \n
    5. Don’t cache pages for known users.
    6. \n
    7. Cache rebuild.
    8. \n
    9. CDN support.
    10. \n
    11. Extra homepage checks.
    12. \n
    \n

    Garbage collection is the act of cleaning up cache files that are out of date and stale. There’s no correct value for the expiry time but a good starting point is 1800 seconds.

    \n

    Consider deleting the contents of the “Rejected User Agents” text box and allow search engines to cache files for you.

    \n

    Preload as many posts as you can and enable “Preload Mode”. Garbage collection of old cached files will be disabled. If you don’t care about sidebar widgets updating often set the preload interval to 2880 minutes (2 days) so all your posts aren’t recached very often. When the preload occurs the cache files for the post being refreshed is deleted and then regenerated. Afterwards a garbage collection of all old files is performed to clean out stale cache files.
    \nEven with preload mode enabled cached files will still be deleted when posts are modified or comments made.

    \n

    Development

    \n
      \n
    • Active development of this plugin is handled on GitHub.
    • \n
    • Translation of the plugin into different languages is on the translation page.
    • \n
    \n

    Documentation

    \n

    If you need more information than the following, you can have a look at the wiki or the Developer documentation.

    \n

    Preloading

    \n

    You can generate cached files for the posts, categories and tags of your site by preloading. Preloading will visit each page of your site generating a cached page as it goes along, just like any other visitor to the site. Due to the sequential nature of this function, it can take some time to preload a complete site if there are many posts.
    \nTo make preloading more effective it can be useful to disable garbage collection so that older cache files are not deleted. This is done by enabling “Preload Mode” in the settings. Be aware however, that pages will go out of date eventually but that updates by submitting comments or editing posts will clear portions of the cache.

    \n

    Garbage Collection

    \n

    Your cache directory fills up over time, which takes up space on your server. If space is limited or billed by capacity, or if you worry that the cached pages of your site will go stale then garbage collection has to be done. Garbage collection happens on a regular basis and deletes old files in the cache directory. On the advanced settings page you can specify:
    \n1. Cache timeout. How long cache files are considered fresh for. After this time they are stale and can be deleted.
    \n2. Scheduler. Setup how often garbage collection should be done.
    \n3. Notification emails. You can be informed on garbage collection job progress.
    \nThere’s no right or wrong settings for garbage collection. It depends on your own site.
    \nIf your site gets regular updates, or comments then set the timeout to 1800 seconds, and set the timer to 600 seconds.
    \nIf your site is mostly static you can disable garbage collection by entering 0 as the timeout, or use a really large timeout value.

    \n

    The cache directory, usually wp-content/cache/ is only for temporary files. Do not ever put important files or symlinks to important files or directories in that directory. They will be deleted if the plugin has write access to them.

    \n

    CDN

    \n

    A Content Delivery Network (CDN) is usually a network of computers situated around the world that will serve the content of your website faster by using servers close to you. Static files like images, Javascript and CSS files can be served through these networks to speed up how fast your site loads. You can also create a “poor man’s CDN” by using a sub domain of your domain to serve static files too.

    \n

    OSSDL CDN off-linker has been integrated into WP Super Cache to provide basic CDN support. It works by rewriting the URLs of files (excluding .php files) in wp-content and wp-includes on your server so they point at a different hostname. Many CDNs support origin pull. This means the CDN will download the file automatically from your server when it’s first requested, and will continue to serve it for a configurable length of time before downloading it again from your server.

    \n

    Configure this on the “CDN” tab of the plugin settings page. This is an advanced technique and requires a basic understanding of how your webserver or CDNs work. Please be sure to clear the file cache after you configure the CDN.

    \n

    REST API

    \n

    There are now REST API endpoints for accessing the settings of this plugin. You’ll need to be authenticated as an admin user with permission to view the settings page to use it. This has not been documented yet but you can find all the code that deals with this in the “rest” directory.

    \n

    Custom Caching

    \n

    It is now possible to hook into the caching process using the add_cacheaction() function.

    \n

    Three hooks are available:

    \n
      \n
    1. ‘wp_cache_get_cookies_values’ – modify the key used by WP Cache.
    2. \n
    3. ‘add_cacheaction’ – runs in phase2. Allows a plugin to add WordPress hooks.
    4. \n
    5. ‘cache_admin_page’ – runs in the admin page. Use it to modify that page, perhaps by adding new configuration options.
    6. \n
    \n

    There is one regular WordPress filter too. Use the “do_createsupercache” filter
    \nto customize the checks made before caching. The filter accepts one parameter.
    \nThe output of WP-Cache’s wp_cache_get_cookies_values() function.

    \n

    WP Super Cache has its own plugin system. This code is loaded when WP Super Cache loads and can be used to change how caching is done. This is before most of WordPress loads so some functionality will not be available. Plugins can be located anywhere that PHP can load them. Add your own plugin either:

    \n
      \n
    • by putting your plugin in the wp-content/plugins/wp-super-cache-plugins directory, or
    • \n
    • by calling wpsc_add_plugin( $name ) where $name is the full filename and path to the plugin. You only need to call that function once to add it. Use wpsc_delete_plugin( $name ) to remove it from the list of loaded plugins.
    • \n
    \n

    The cookies WP Super Cache uses to identify “known users” can be modified now by adding the names of those cookies to a list in the plugin configuration. Use wpsc_add_cookie( $name ) to add a new cookie, and wpsc_delete_cookie( $name ) to remove it. The cookie names also modify the mod_rewrite rules used by the plugin but I recommend using Simple mode caching to avoid complications with updating the .htaccess file.
    \nThe cookie name and value are used to differenciate users so you can have one cookie, but different values for each type of user on your site for example. They’ll be served different cache files.

    \n

    See plugins/searchengine.php as an example I use for my No Adverts for Friends plugin.

    \n

    Troubleshooting

    \n

    If things don’t work when you installed the plugin here are a few things to check:

    \n
      \n
    1. Is wp-content writable by the web server?
    2. \n
    3. Is there a wp-content/wp-cache-config.php ? If not, copy the file wp-super-cache/wp-cache-config-sample.php to wp-content/wp-cache-config.php and make sure WPCACHEHOME points at the right place.
    4. \n
    5. Is there a wp-content/advanced-cache.php ? If not, then you must copy wp-super-cache/advanced-cache.php into wp-content/. You must edit the file and change the path so it points at the wp-super-cache folder.
    6. \n
    7. If pages are not cached at all, remove wp-content/advanced-cache.php and recreate it, following the advice above.
    8. \n
    9. \n

      Make sure the following line is in wp-config.php and it is ABOVE the “require_once(ABSPATH.’wp-settings.php’);” line:

      \n
      define( ''WP_CACHE'', true );\n
      \n
    10. \n
    11. Try the Settings->WP Super Cache page again and enable cache.
    12. \n
    13. Look in wp-content/cache/supercache/. Are there directories and files there?
    14. \n
    15. Anything in your php error_log?
    16. \n
    17. If your browser keeps asking you to save the file after the super cache is installed you must disable Super Cache compression. Go to the Settings->WP Super Cache page and disable it there.
    18. \n
    19. The plugin does not work very well when PHP’s safe mode is active. This must be disabled by your administrator.
    20. \n
    21. If pages are randomly super cached and sometimes not, your blog can probably be viewed with and without the “www” prefix on the URL. You should choose one way and install the Enforce www preference plugin if you are using an old WordPress install. The latest versions redirect themselves (you should always be running the latest version of WordPress anyway!)
    22. \n
    23. Private Server users at Dreamhost should edit wp-content/wp-cache-config.php and set the cache dir to “/tmp/” if they are getting errors about increasing CPU usage. See this discussion for more.
    24. \n
    25. File locking errors such as “failed to acquire key 0x152b: Permission denied in…” or “Page not cached by WP Super Cache. Could not get mutex lock.” are a sign that you may have to use file locking. Edit wp-content/wp-cache-config.php and uncomment “$use_flock = true” or set $sem_id to a different value. You can also disable file locking from the Admin screen as a last resort.
    26. \n
    27. Make sure cache/wp_cache_mutex.lock is writable by the web server if using coarse file locking.
    28. \n
    29. The cache folder cannot be put on an NFS or Samba or NAS share. It has to be on a local disk. File locking and deleting expired files will not work properly unless the cache folder is on the local machine.
    30. \n
    31. \n

      Garbage collection of old cache files won’t work if WordPress can’t find wp-cron.php. If your hostname resolves to 127.0.0.1 it could be preventing the garbage collection from working. Check your access_logs for wp-cron.php entries. Do they return a 404 (file not found) or 200 code? If it’s 404 or you don’t see wp-cron.php anywhere WordPress may be looking for that script in the wrong place. You should speak to your server administator to correct this or edit /etc/hosts on Unix servers and remove the following line. Your hostname must resolve to the external IP address other servers on the network/Internet use. See http://yoast.com/wp-cron-issues/ for more. A line like “127.0.0.1 localhost localhost.localdomain” is ok.

      \n
      127.0.0.1 example.com\n
      \n
    32. \n
    33. If old pages are being served to your visitors via the supercache, you may be missing Apache modules (or their equivalents if you don’t use Apache). 3 modules are required: mod_mime, mod_headers and mod_expires. The last two are especially important for making sure browsers load new versions of existing pages on your site.
    34. \n
    35. The error message, “WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed!” appears at the end of every page. Open the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? This file will normally be in wp-content/plugins/wp-super-cache/. If it is not correct the caching engine will not load.
    36. \n
    37. Caching doesn’t work. The timestamp on my blog keeps changing when I reload. Check that the path in your .htaccess rules matches where the supercache directory is. You may have to hardcode it. Try disabling supercache mode.
    38. \n
    39. \n

      If supercache cache files are generated but not served, check the permissions on all your wp-content/cache/supercache folders (and each of wp-content cache and supercache folders) and wp-content/cache/.htaccess. If your PHP runs as a different user to Apache and permissions are strict Apache may not be able to read the PHP generated cache files. To fix you must add the following line to your wp-config.php (Add it above the WP_CACHE define.) Then clear your cache.

      \n
      umask( 0022 );\n
      \n
    40. \n
    41. \n

      If you see garbage in your browser after enabling compression in the plugin, compression may already be enabled in your web server. In Apache you must disable mod_deflate, or in PHP zlib compression may be enabled. You can disable that in three ways. If you have root access, edit your php.ini and find the zlib.output_compression setting and make sure it’s “Off” or add this line to your .htaccess:

      \n
      php_flag zlib.output_compression off\n
      \n

      If that doesn’t work, add this line to your wp-config.php:

      \n
      ini_set(''zlib.output_compression'', 0);\n
      \n
    42. \n
    43. The “white screen of death” or a blank page when you visit your site is almost always caused by a PHP error but it may also be caused by APC. Disable that PHP extension if you have trouble and replace with eAccelerator or Xcache.
    44. \n
    45. After uninstalling, your permalinks may break if you remove the WordPress mod_rewrite rules too. Regenerate those rules by visiting the Settings->Permalink page and saving that form again.
    46. \n
    47. If your blog refuses to load make sure your wp-config.php is correct. Are you missing an opening or closing PHP tag?
    48. \n
    49. Your front …
    50. \n
    \n", "donate_link": "", "num_ratings": 1341, "screenshots": [], "support_url": "https://wordpress.org/support/plugin/wp-super-cache/", "contributors": {"donncha": {"avatar": "https://secure.gravatar.com/avatar/bd49e83ad7955a8732fcac194fb035a4cae423f662f6ee2c96f6433c34621291?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/donncha/", "display_name": "Donncha O Caoimh (a11n)"}, "adnan007": {"avatar": "https://secure.gravatar.com/avatar/130557a1b0a4d1c3ede8f4018e88f45724faf744cd1a115870114c0bb23b763d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/adnan007/", "display_name": "Adnan Haque (a11n)"}, "dilirity": {"avatar": "https://secure.gravatar.com/avatar/ea6ff881798bef7600fe76082938efc9a340e57b8991c16c9ee4d54da00d7a1c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/dilirity/", "display_name": "Pete (a11n)"}, "pyronaur": {"avatar": "https://secure.gravatar.com/avatar/b47fd1aa0481b56faaddae036ddfd2ebbd9cde742f4cebad406383e44c536fa0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pyronaur/", "display_name": "Nauris"}, "thingalon": {"avatar": "https://secure.gravatar.com/avatar/d4bd1d33834cadecd96bb3e2262deba03d4315588295cd330dbc6d95d6c7c72c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/thingalon/", "display_name": "Mark (a11n)"}, "automattic": {"avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "display_name": "Automattic"}, "mikemayhem3030": {"avatar": "https://secure.gravatar.com/avatar/8f62b5f0504ec03407527b7256e540bd6eae48d6116ad58b503c54a59cad8f74?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mikemayhem3030/", "display_name": "Mike Stott"}}, "last_updated": "2025-10-10 6:12pm GMT", "preview_link": "", "requires_php": "7.2", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wp-super-cache.3.0.2.zip", "author_profile": "https://profiles.wordpress.org/automattic/", "business_model": false, "repository_url": "", "upgrade_notice": [], "active_installs": 1000000, "aspiresync_meta": {"id": "019a30bf-ff32-71ab-9161-d10eed8e72cd", "name": "WP Super Cache", "slug": "wp-super-cache", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760119920, "version": "3.0.2"}, "support_threads": 5, "requires_plugins": [], "short_description": "A very fast caching engine for WordPress that produces static html files.", "author_block_count": "6", "author_block_rating": 93.68421052631601, "commercial_support_url": "", "support_threads_resolved": 3}'); -INSERT INTO public.plugins VALUES ('019a30c1-685f-7033-a9e3-4b26c3536700', 'wpvivid-backuprestore', 'Migration, Backup, Staging – WPvivid Backup & Migration', 'Migrate, staging, backup WordPress, all in one.', '

    WPvivid Backup & Migration Plugin offers backup, migration, and staging (create a staging site on a subdirectory to safely test WordPress, plugins, themes and website changes) as basic features.

    -

    WPvivid Backup & Migration for MainWP

    -

    WPvivid Backup & Migration for MainWP is now available to download.
    -WPvivid Backup & Migration for MainWP allows you to set up and control WPvivid Backup & Migration plugins for all child sites directly from your MainWP dashboard.

    -

    WPvivid Backup & Migration Pro is Now Available

    -
      -
    • Customize everything to backup
    • -
    • Create staging sites and push staging sites to live
    • -
    • Incremental backups
    • -
    • Database backup encryption
    • -
    • Auto backup WordPress, themes, and plugins
    • -
    • WordPress multisite backup
    • -
    • WordPress multisite staging
    • -
    • Create a fresh WP install
    • -
    • Advanced remote backups
    • -
    • Advanced backup schedules
    • -
    • Restore remote backups
    • -
    • Migrate a site via remote storage
    • -
    • Migrate a childsite (MU) to a single WordPress install
    • -
    • White label WPvivid Backup & Migration Pro
    • -
    • Control user access to WPvivid Backup & Migration Pro
    • -
    • More amazing features
    • -
    -

    See a review video on WPvivid Backup & Migration Pro:

    -

    -

    Get WPvivid Backup & Migration Pro

    -

    Core Features

    -

    1. Easy Backups

    -

    Easily create a backup of your WordPress site. You can choose to backup the entire site(database+files), all files, or database only.

    -

    2. Auto Migration

    -

    Clone and migrate your WordPress site to a new domain with a single click. WPvivid Backup & Migration Plugin supports site migration from dev environment to a new server, from dev environment to a new domain or from a live server to another.

    -

    3. Create A Staging Site

    -

    Create a staging site on a subdirectory of your production site to safely test WordPress, plugins, themes and website changes. You can choose what to copy from the the live site to the staging site.

    -

    4. Scheduled Backups

    -

    Set a schedule to run backups automatically on your website. You can set the backups to run every 12 hours, daily, weekly, fortnightly, monthly, choose backup items and destination.

    -

    5. Offsite Backup to Remote Storage

    -

    Send your backups offsite to a remote location. WPvivid Backup & Migration Plugin supports the leading cloud storage providers: Dropbox, Google Drive, Amazon S3, Microsoft OneDrive, DigitalOcean Spaces, FTP and SFTP.

    -

    6. One-Click Restore

    -

    Restore your WordPress site from a backup with a single click.

    -

    7. Cloud Storage Supported

    -

    WPvivid Backup & Migration plugin supports Dropbox, Google Drive, Microsoft OneDrive, Amazon S3, DigitalOcean Spaces, SFTP, FTP. WPvivid Backup & Migration Pro also supports Wasabi, pCloud, Backblaze, WebDav and more.

    -

    Minimum Requirements to use WPvivid Backup & Migration plugin

    -
      -
    • Character Encoding UTF-8
    • -
    • PHP version 5.3
    • -
    • MySQL version 4.1
    • -
    • WordPress 4.5
    • -
    -', '0.9.120', 'wpvividplugins', '4.5', '5.3', '6.8.3', 'https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.120.zip', '2019-01-04 00:00:00+00', '2025-10-16 00:42:00+00', 'https://profiles.wordpress.org/wpvividplugins/', 98, 1335, 5, 2, 800000, 14023622, NULL, NULL, NULL, NULL, 'https://wordpress.org/support/plugin/wpvivid-backuprestore/', NULL, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Migration, Backup, Staging – WPvivid Backup & Migration", "slug": "wpvivid-backuprestore", "tags": {"clone": "clone", "backup": "backup", "migrate": "migrate", "staging": "staging", "duplicate": "duplicate"}, "added": "2019-01-04", "icons": {"1x": "https://ps.w.org/wpvivid-backuprestore/assets/icon-128x128.png?rev=2899202", "2x": "https://ps.w.org/wpvivid-backuprestore/assets/icon-256x256.png?rev=2899202"}, "author": "wpvividplugins", "rating": 98, "status": "open", "tested": "6.8.3", "banners": {"low": "https://ps.w.org/wpvivid-backuprestore/assets/banner-772x250.png?rev=2899202", "high": "https://ps.w.org/wpvivid-backuprestore/assets/banner-1544x500.png?rev=2899202"}, "ratings": {"1": 25, "2": 2, "3": 11, "4": 20, "5": 1277}, "version": "0.9.120", "homepage": "", "requires": "4.5", "sections": {"faq": "\n
    \nWhat does WPvivid Backup & Migration Plugin do?\n\n

    \n

    As the name says, WPvivid Backup & Migration Plugin is an all in one free WP backup & migration plugin that enables you to easily clone and migrate a WordPress site to a new domain, to perform manual backups and schedule automatic backups of your WordPress site, to backup to cloud storage and restore backups directly from your sites admin dashboard.

    \n

    \n
    \nDoes WPvivid Backup & Migration Plugin also migrate my site? Is it a free feature?\n\n

    \n

    Yes, WPvivid Backup & Migration Plugin supports migration of a WordPress site.
    \nYes, the migration feature is completely free.

    \n

    \n
    \nHow many cloud options does WPvivid Backup & Migration Plugin support? Are they free to access?\n\n

    \n

    Out of the box WPvivid Backup & Migration Plugin supports Dropbox, Google Drive, Amazon S3, Microsoft OneDrive, DigitalOcean Spaces, FTP, and SFTP.
    \nYes, all the cloud access is free.

    \n

    \n
    \nCan I use WPvivid Backup & Migration Plugin to restore my site?\n\n

    \n

    Yes, you can use WPvivid Backup & Migration Plugin to restore a WordPress site from a backup. With no limits, no strings attached.

    \n

    \n
    \nDo you provide support for WPvivid Backup & Migration Plugin? Where?\n\n

    \n

    Yes, absolutely. Whenever you need help, start a thread on the support forum for WPvivid Backup & Migration Plugin, or contact us.

    \n

    \n
    \nDo you have any get-started guides/docs?\n\n

    \n

    Yes, we do. Here are the guides for migrating your site to a new host, creating a manual backup, restoring your site from a backup, and more on our docs page.

    \n

    \n\n", "reviews": "
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    rock solid backup/migration tool that has never failed

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy modoseyoum on October 28, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    i''ve been using WP Vivid so long i can''t remember who first turned me on to it, but after a couple hundred migrations with minimal issues, it''s become my backup/migration tool of choice. like Ashford & Simpson in the eighties, WP Vivid is solid as a rock.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Best solution for Website Clone or Migration

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy farrouh on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    A real great Plugin, I Highly recommended for backup, Clone or migration

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The best migration plugin

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy helena123 on October 24, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Came here to add 5 stars while migrating several sites, just because this plugins is so helpful, efficient and works without glitches. Thanks, plugin team, for the amazing product.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Простой и замечательный плагин

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy licos on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Очень простой и понятный интерфейс. Все работает на ура!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Melhor plugin de Backup

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy amydarlley on October 21, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Usei por anos um concorrente dele, mas trava muito e vivia dando problema. Esse é excepcional!

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Great Plugin Highly recommended for site backup and migration

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy samtopiano on October 15, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This is one of the best free plugins out there. highly recommended if you are intending to backup or migrate your site without stress.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    The migration process was a bit bumpy

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy webtrommel on October 14, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    This review refers to the free version of the plugin. The migration process was a bit bumpy. I had to perform the restoration manually. I created a backup in my WordPress development environment, uploaded it to the new site, and restored it there. However, WordPress initially couldn’t display some pages: about half worked as expected, while the others were missing, not ideal.
    The solution was to restore the already uploaded backup a second time. After that, everything worked perfectly, but a slightly uneasy feeling remains.

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Génial

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy dev1313 on October 13, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Facile d’utilisation (même pour un créatif), efficace... et en français.
    Que demander de plus ?

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Вердикт

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy royal0511 on October 12, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Очень хороший и удобный плагин

    \n
    \n
    \n
    \n\t
    \n\t\t
    \n\t\t\t
    \n\t\t\t\t

    Feels very solid, migrated 5GB site no problem

    \n\t\t\t\t
    \n\t\t\t\t
    \t\t\t\t
    \n\t\t\t
    \n\t\t\t

    \n\t\t\t\tBy altimac on October 10, 2025\t\t\t

    \n\t\t
    \n\t
    \n\t
    \n

    Definitely one of the best migration plugins out there, and it takes a unique approach with its \"auto-migration\" by creating an archive on the source site first, then pushing that archive to the destination site. Then, on the destination site, the Restore process is used to create the copy of the source site. This seems more efficient and less prone to errors, as it''s super-simple to configure. I have not tried the backup options yet, but since the plugin is already installed on the source site, I''m definitely going to give that a whirl as well.

    \n
    \n
    \n", "changelog": "

    0.9.120

    \n
      \n
    • Successfully tested with PHP 8.4.13.
    • \n
    • Successfully tested with WordPress 6.8.3.
    • \n
    \n

    0.9.119

    \n
      \n
    • Changed backup schedule’s start time to a random time between 00:00:00 and 00:15:00 UTC to prevent possible server overload from the simultaneous backup of many sites.
    • \n
    \n

    0.9.118

    \n
      \n
    • Fixed: Downloading backups could fail on servers where Output Buffering was enabled.
    • \n
    \n

    0.9.117

    \n
      \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed: Pages in some Elementor sites could not be properly migrated.
    • \n
    \n

    0.9.116

    \n
      \n
    • Fixed: Backup to OneDrive might fail in some cases.
    • \n
    • Successfully tested with WordPress 6.8.1.
    • \n
    \n

    0.9.115

    \n
      \n
    • Successfully tested with WordPress 6.8.
    • \n
    \n

    0.9.114

    \n
      \n
    • Fixed: Restore could fail when restoring from a lower WordPress version in some cases.
    • \n
    • Fixed: Adding SFTP storage could fail in PHP 8.4 environment.
    • \n
    • Optimized the plugin UI.
    • \n
    \n

    0.9.113

    \n
      \n
    • Added 4 backup performance modes for different scenarios.
    • \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Successfully tested with WordPress 6.7.2.
    • \n
    \n

    0.9.112

    \n
      \n
    • Fixed: Backup status could not be properly caught on LocalWP sites with Nginx server.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.111

    \n
      \n
    • Fixed: Backups to SFTP would fail on sites of PHP 8.2.26-nmm1 and 8.3.14-nmm1.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.110

    \n
      \n
    • Added an option to include symlink folders in a backup.
    • \n
    • Fixed: Could not connect to SFTP on sites of PHP 8.2.26 and 8.3.14.
    • \n
    • Fixed: Quick Snapshot popup would appear upon each page loading.
    • \n
    • Successfully tested with WordPress 6.7.1.
    • \n
    \n

    0.9.109

    \n
      \n
    • Fixed a warning that would appear with WordPress 6.7.0.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.7.0.
    • \n
    \n

    0.9.108

    \n
      \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed: WP Cerber plugin was excluded from a backup by default.
    • \n
    \n

    0.9.107

    \n
      \n
    • Fixed: Backups to GoogleDrive could fail with an error of ‘Will not follow more than 5 redirects’ in some environments.
    • \n
    • Fixed some PHP warnings of ‘Return type of WPvivid_Google_Collection’ that would appear in some environments.
    • \n
    • Fixed a vulnerability in the plugin code.
    • \n
    \n

    0.9.106

    \n
      \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed: Could not send email report when the address contain ‘-‘.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.105

    \n
      \n
    • Fixed: Uploading backups to OneDrive failed with a 401 error in some environments.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.104

    \n
      \n
    • Updated: Autoload of WPvivid options is set to ‘No’ by default.
    • \n
    • Fixed: Downloading backup files could fail in some environments.
    • \n
    • Fixed: Uploading backups to GoogleDrive could fail in some environments.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.103

    \n
      \n
    • Fixed: Restore would fail when a backup contained mu-plugins/wp-stack-cache.php.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Refined and optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.6.
    • \n
    \n

    0.9.102

    \n
      \n
    • Added: Cloud storage tokens are now encrypted in the database.
    • \n
    • Added: lotties folder (if any) will be included in backups by default.
    • \n
    • Fixed: Domain could not be replaced during migration in some cases.
    • \n
    • Fixed: Adding Digital Ocean Space would fail in some cases.
    • \n
    • Fixed: Images added via ACF plugin would be scanned as unused.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.101

    \n
      \n
    • Fixed: Retention settings did not work for scheduled backups.
    • \n
    • Fixed: Scanning unused images would fail in some cases.
    • \n
    \n

    0.9.100

    \n
      \n
    • Added a column to the backup list to show the backup size.
    • \n
    • Fixed: URLs could not be replaced during migration in some cases.
    • \n
    • Fixed: Adding SFTP remote storage could fail in some cases.
    • \n
    • Fixed a vulnerability in the plugin code.
    • \n
    \n

    0.9.99

    \n
      \n
    • Fixed: Scheduled database backups could fail in some cases.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.5.
    • \n
    \n

    0.9.98

    \n
      \n
    • Fixed: Backups to OneDrive failed in some environments.
    • \n
    • Fixed some PHP warnings.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.97

    \n
      \n
    • Fixed some vulnerable code and optimized the plugin code.
    • \n
    • Fixed: The option ‘Keep backups in local after uploading them to cloud’ could not take effect.
    • \n
    • Successfully tested with WordPress 6.4.3.
    • \n
    \n

    0.9.96

    \n
      \n
    • Fixed: Restore could fail when max_allowe_packet of the server is low.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.4.3.
    • \n
    \n

    0.9.95

    \n
      \n
    • Fixed: Backup to SFTP would fail in some environments.
    • \n
    • Fixed: Backup to Google Drive would fail in some environments.
    • \n
    • Fixed: Creating a staging site would fail in some cases.
    • \n
    • Fixed: Some special characters would not display properly after website migration.
    • \n
    • Fixed some vulnerabilities in the plugin code.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.94

    \n
      \n
    • Fixed: Prefix of tables with foreign keys would not be replaced in a migration process.
    • \n
    • Fixed: Corrupted backups would not be detected in some environments.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.93

    \n
      \n
    • Added support for migration of sites without a database prefix.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.92

    \n
      \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.91

    \n
      \n
    • Fixed: Error logs would not be attached to backup email reports.
    • \n
    • Fixed: Uploading backups to OneDrive would fail in some environments.
    • \n
    • Fixed a compatibility issue with JetBackup plugin.
    • \n
    • Fixed some vulnerabilities in the plugin code.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.90

    \n
      \n
    • Successfully tested with WordPress 6.3.
    • \n
    • Fixed: restore would fail when a backup contained zero dates ‘0000-00-00’.
    • \n
    • Fixed: Customized site icons and logos would be falsely scanned as unused.
    • \n
    • Added an option to exclude folders from unused image scan.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.89

    \n
      \n
    • Excluded backup-migration and backups-dup-lite from a backup.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.88

    \n
      \n
    • Fixed: Database restoration would fail in some environments.
    • \n
    • Fixed: Staging creation would fail when the database contained the aiowps_debug_log table.
    • \n
    • Fixed a library conflict with the Skaut Google Drive Gallery plugin.
    • \n
    • Fixed some PHP warnings that appeared on sites with newer PHP versions.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.87

    \n
      \n
    • Fixed: Uploading backups to GoogleDrive failed because of an ‘invalid credential’ error in some cases.
    • \n
    • Fixed: Backup email report did not display properly in Outlook emails.
    • \n
    • Fixed some PHP warnings that appeared on sites with newer PHP versions.
    • \n
    • Fixed: Non admin users could see the plugin menus in the top admin bar.
    • \n
    • Fixed: Locked backups would not be deleted by backup retention.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.86

    \n
      \n
    • Fixed a library conflict with the ElementsKit plugin.
    • \n
    • Fixed a library conflict with the YaySMTP plugin.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.85

    \n
      \n
    • Added breakpoint resume for GoogleDrive, OneDrive and Dropbox upload.
    • \n
    • Optimized the process of uploading backups to cloud storage.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.84

    \n
      \n
    • Upgraded the version of guzzlehttp/psr7 library in the plugin to 1.8.4.
    • \n
    • Fixed a bug of false positive backup failed email notifications.
    • \n
    • Fixed: Backup to Dropbox failed in some environments.
    • \n
    • Fixed a PHP warning of ‘WPvivid_S3Request’.
    • \n
    • Fixed: some used images were falsely scanned as unused.
    • \n
    • Fixed some UI bugs.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.83

    \n
      \n
    • Upgraded the backup and restore engine to improve the backup and restore success rate.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Fixed some UI bugs.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.82

    \n
      \n
    • Fixed: Backup failed when php_uname is disabled on the server.
    • \n
    • Fixed: ‘Quick Snapshot’ did not work on non-wpvivid pages.
    • \n
    • Fixed some PHP warnings on PHP 8.2 sites.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.81

    \n
      \n
    • Fixed the compatibility issue with servers that have phpinfo() function disabled.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.80

    \n
      \n
    • Optimized backup process on Litespeed web server.
    • \n
    • Staging error logs were not included in the Debug zip.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.1.1.
    • \n
    \n

    0.9.79

    \n
      \n
    • Fixed: All target pages except for home page showed 404 error in some cases after migration.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.1.
    • \n
    \n

    0.9.78

    \n
      \n
    • Added an option to create quick database snapshots.
    • \n
    • Added a check for siteurl and home in a restore process.
    • \n
    • Fixed: Some used images were falsely scanned as unused.
    • \n
    • Fixed some bugs in the plugin code and optimized the plugin code.
    • \n
    \n

    0.9.77

    \n
      \n
    • Updated: Transferred files will be deleted automatically when auto migration fails.
    • \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.76

    \n
      \n
    • Added a check to the integrity of uploaded backups.
    • \n
    • Fixed a vulnerability in the plugin code.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.75

    \n
      \n
    • Fixed: Page styling got lost after importing the page in some cases.
    • \n
    • Fixed: Some used images were falsely scanned as unused.
    • \n
    • Fixed some UI bugs.
    • \n
    • Fixed some bugs in the plugin code and optimized the plugin code.
    • \n
    \n

    0.9.74

    \n
      \n
    • Fixed some i18n issues in the plugin code.
    • \n
    • Updated: Last backup time will be updated once the backup schedule is triggered.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.73

    \n
      \n
    • Fixed some bugs in the plugin code and UI.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 6.0.
    • \n
    \n

    0.9.72

    \n
      \n
    • Improved the upload function. Now when uploading a zip(part) failed, you will be notified immediately, and you can continue to upload the problematic zip rather than uploading all zips again.
    • \n
    • Added: Cloud storage credentials in the database are encrypted now.
    • \n
    • Changed: Cloud storage credentials are not showing in the storage edit page.
    • \n
    • Fixed: Selected themes were not copied when creating a fresh install in some cases.
    • \n
    • Fixed the wpvivid_request error that could appear in some cases when scanning unused images.
    • \n
    • Fixed: some used images were falsely scanned as unused.
    • \n
    • Optimized the plugin code to reduce server consumption.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.71

    \n
      \n
    • Fixed the warning: Undefined array key “page” when editing pages in some cases.
    • \n
    • Fixed: Creating a fresh install failed when Elementor plugin is enabled.
    • \n
    • Fixed some vulnerabilities in the plugin code.
    • \n
    • Fixed some UI bugs.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.70

    \n
      \n
    • Fixed: There was no notification after restoration in some environments.
    • \n
    • Fixed some vulnerabilities in the plugin code.
    • \n
    • Fixed: Backup information of live site would be copied to the staging site when creating a staging site.
    • \n
    • Changed staging site creation time to local time.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Successfully tested with WordPress 5.9.2.
    • \n
    \n

    0.9.69

    \n
      \n
    • Updated: For security reasons, adding Google Drive, Dropbox, OneDrive now needs to get authentication first.
    • \n
    • Updated: Changed time in a log file to local time.
    • \n
    • Fixed the curl 60 error that could appear when backing up to Google Drive in some cases.
    • \n
    • Fixed: Disabling backup splitting did not take effect on PHP 8 sites.
    • \n
    • Fixed: Uploading backups to Dropbox failed in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.68

    \n
      \n
    • Fixed: Failed to upload backups to Dropbox in some cases.
    • \n
    • Updated: Changed timezone in email report title to local time.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.67

    \n
      \n
    • Fixed: The object-cache.php file and protection files generated by Wordfence were not excluded during restore.
    • \n
    • Fixed: Some used images were falsely identified as unused.
    • \n
    • Added creation time for a staging site.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.66

    \n
      \n
    • Fixed a Dropbox folder bug.
    • \n
    • Fixed a conflict between the unused image cleaner and some themes.
    • \n
    • Fixed a problem that some used images in Elementor were identified as unused.
    • \n
    • Fixed: Downloading backup would failed in some cases.
    • \n
    • Added a check to Nginx server when creating a staging site.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.65

    \n
      \n
    • Fixed: Some WPvivid Backup Plugin settings were reset to default after restore.
    • \n
    • Fixed: Some urls could not be replaced because of escape format problems after restore.
    • \n
    • Fixed: Unused image could not be scanned in PHP 8.
    • \n
    • Fixed: Staging site admin url did not display correctly when the live site has a ‘custom login url’.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.64

    \n
      \n
    • Fixed: Failed to refresh Dropbox token in some cases.
    • \n
    • Fixed: Custom menu style could not be properly migrated in some cases.
    • \n
    • Optimized the process of creating a staging site.
    • \n
    • Added an option to resume the task of creating a staging site when it was interrupted.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.63

    \n
      \n
    • Added support for Dropbox’s new API.
    • \n
    • Fixed: some images used in Elementor would be scanned as ‘unused’.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.62

    \n
      \n
    • Added a check to the permissions of the staging folder before creating a staging site.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 5.8.1.
    • \n
    \n

    0.9.61

    \n
      \n
    • Added support for migration of unconventional save of the media paths.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.60

    \n
      \n
    • Fixed: Failed to back up files of 0 KB in PHP 8 environment.
    • \n
    • Changed: The information of backup folder name will not be included when you export the plugin settings.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.59

    \n
      \n
    • Fixed the PHP Guzzle library support compatibility issue which could cause backup failure in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.58

    \n
      \n
    • Fixed a fatal error with the last update.
    • \n
    \n

    0.9.57

    \n
      \n
    • Added a new feature of creating a staging site.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.56

    \n
      \n
    • Fixed: Some used images would show up in the image cleaner results in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.55

    \n
      \n
    • Successfully tested with WordPress 5.8.
    • \n
    • Fixed: Creating tables failed when restoring the database in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.54

    \n
      \n
    • Added support for PHP 8.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.53

    \n
      \n
    • Fixed a SQL injection vulnerability.
    • \n
    • Fixed some bugs in the plugin code and optimized the plugin code.
    • \n
    \n

    0.9.52

    \n
      \n
    • Fixed a fatal error occurred during website transfer in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.51

    \n
      \n
    • Added: Once a backup is created, the plugin will check whether the zip is good and will prompt you if it is corrupted.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Successfully tested with WordPress 5.7.
    • \n
    \n

    0.9.50

    \n
      \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    • Successfully tested with WordPress 5.6.1.
    • \n
    \n

    0.9.49

    \n
      \n
    • Fixed: A 404 error would returned when sending a request to wp-cron.php in some multilingual websites.
    • \n
    • Fixed: Could not turn pages in the backup list.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.48

    \n
      \n
    • Redesigned the Download section for better UX.
    • \n
    • Fixed the insufficient permission error that occurred when authenticating FTP in some cases.
    • \n
    • Fixed the incorrect credential error that occurred when authenticating SFTP in some cases.
    • \n
    • Successfully tested with WordPress 5.6.
    • \n
    \n

    0.9.47

    \n
      \n
    • Added support for Amazon S3 South Africa region.
    • \n
    • Fixed: Folder would not be backed up when it’s name matches regex: ^uploads.*$.
    • \n
    • Successfully tested with WordPress 5.5.3.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.46

    \n
      \n
    • Fixed: Some special characters in database could not be restored properly.
    • \n
    • Fixed: Only 1000 backups stored on Amazon S3 could be displayed.
    • \n
    • Fixed: Unused image cleaner also isolated images used in CSS files.
    • \n
    • Successfully tested with WordPress 5.5.1.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.45

    \n
      \n
    • New feature Added: Find and clean unused images in your WP media library.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.44

    \n
      \n
    • Successfully tested with WordPress 5.5.
    • \n
    • Fixed: Refreshing Google Drive token failed in some cases.
    • \n
    \n

    0.9.43

    \n
      \n
    • Optimized migration process.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.42

    \n
      \n
    • Added Bulgarian language translation.
    • \n
    • Fixed a fatal error occurred during website transfer in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.41

    \n
      \n
    • Added an option in the plugin settings to delete the WPvivid directory when deleting the plugin.
    • \n
    • Added Italian language translation.
    • \n
    • Optimized the plugin UI.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.40

    \n
      \n
    • Fixed: Backup schedules failed in some cases.
    • \n
    • Excluded the session_mm_cgi-fcgi file when creating a backup.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.39

    \n
      \n
    • Excluded the /wphb-cache directory when creating a backup.
    • \n
    • Fixed: Root directory is now forbidden to set to ‘/’ when connecting to a FTP server.
    • \n
    • Fixed the pagination issue in the process of exporting pages.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.38

    \n
      \n
    • Successfully tested with WordPress 5.4.
    • \n
    • Added a new language template for translators.
    • \n
    \n

    0.9.37

    \n
      \n
    • Changed the time in the name of the backup zip to the sites local time.
    • \n
    • Changed the time showed in the backup list and log list to the sites local time.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.36

    \n
      \n
    • Added an option to overwrite existing pages in an import.
    • \n
    • Fixed: Could not retrieve posts list on a multilingual site in an export.
    • \n
    • Fixed some bugs in the plugin code and optimized the plugin code.
    • \n
    \n

    0.9.35

    \n
      \n
    • Fixed a bug occurred when connecting with remote storage in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin UI.
    • \n
    \n

    0.9.34

    \n
      \n
    • Fixed the PHP 7.4 compatibility issue.
    • \n
    • Fixed: Backing up upload directory failed in some cases.
    • \n
    • Fixed: Backup filenames did not match the downloads part numbers.
    • \n
    • Updated the API for WPvivid Backup for MainWP extension.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.33

    \n
      \n
    • Fixed:Replacing domain failed after migrating on servers using innodb database engine.
    • \n
    • Fixed: Compressed packages were lost in some cases.
    • \n
    • Added a column to the backup list to display backup content type.
    • \n
    • Temporarily removed translation files.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.32

    \n
      \n
    • Updated the plugin code for WPvivid Backup for MainWP extension.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.31

    \n
      \n
    • Successfully tested with WordPress 5.3.2.
    • \n
    • Fixed: Backup could fail when the split file size was set to 0 MB in the shared hosting optimization mode.
    • \n
    • Fixed some small bugs in the plugin code.
    • \n
    • Optimized the process of restoring large amounts of data.
    • \n
    • Optimized the split backup file size to bring it closer to the value you set.
    • \n
    • Added Japanese language translation.
    • \n
    \n

    0.9.30

    \n
      \n
    • Added an option to select database accessing method for a backup or restore process.
    • \n
    • Optimized plugin code and set the autoload attribute to no.
    • \n
    • Improved the success rate of backing up the uploads folder when the optimization mode for web hosting/shared hosting is enabled.
    • \n
    • Fixed some bugs in plugin code.
    • \n
    \n

    0.9.29

    \n
      \n
    • Successfully tested with WordPress 5.3.
    • \n
    • Fixed: Locked backups were deleted automatically.
    • \n
    • Changed: Backups will now be split every 200MB by default.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.28

    \n
      \n
    • New feature Added: Export and import posts or pages with images in bulk.
    • \n
    • Fixed: URL replacement failures after website migration in some cases.
    • \n
    • Fixed: Too many resumption attempts error that occurred when uploading backups in some cases.
    • \n
    • Fixed some bugs in the plugin code.
    • \n
    \n

    0.9.27

    \n
      \n
    • Fixed a fatal error that could be triggered by some firewall or security plugins.
    • \n
    • Refined and simplified the plugin menu in admin menu and top admin bar.
    • \n
    • Optimized the plugin code.
    • \n
    • Added Polish language translation.
    • \n
    \n

    0.9.26

    \n
      \n
    • Optimized the plugin’s UI.
    • \n
    • Added a new tab for downloading WPvivid Backup for MainWP.
    • \n
    \n

    0.9.25

    \n
      \n
    • Fixed: Could not restore websites in some cases.
    • \n
    • Fixed: The setting of PHP version that had been changed in .htaccess was lost after restoration.
    • \n
    • Added an option to merge all backup files into a package when a backup completes. This can increase backup and migration success rate in a website with insufficient server resources.
    • \n
    • Upgraded: Amazon S3 and DigitalOcean Space have upgraded their connection methods, so you will need to delete the previous connections and re-add your Amazon S3/DigtalOcean Space accounts to make sure the connections work.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.24

    \n
      \n
    • Fixed some bugs in the plugin code.
    • \n
    • Fixed: Could not restore files to proper directories if one had customized the sites file structure.
    • \n
    • Fixed: The page could not properly display when one chose Remote Storage option from the admin sidebar menu.
    • \n
    • Optimized backup process, now it saves more disk space.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.23

    \n
      \n
    • Added an option to hide the plugin menu on the top admin bar.
    • \n
    • Fixed: Always sent email notifications even the Only send an email notification when a backup fails option was selected.
    • \n
    • Fixed: The plugin menu on the top admin bar is visible to all users.
    • \n
    • Refined some error messages.
    • \n
    \n

    0.9.22

    \n
      \n
    • Fixed: Backup created in web hosting/shared hosting optimization mode was incomplete in some cases.
    • \n
    • Fixed: Backup actually failed but was reported as a success in some cases.
    • \n
    • Refined error messages of migration process.
    • \n
    • Added a notice to the situation where backup schedules were unusable because the WP Cron on the server was disabled.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.21

    \n
      \n
    • Fixed: Special data in some database tables could not be replaced during a restore, which would cause failure of the restore.
    • \n
    • Fixed: Migration between sites that have different backup storage directories would fail.
    • \n
    • Fixed: The error establishing database connection occurred in some cases while loading the plugin page.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.20

    \n
      \n
    • Added an advanced section in settings page.
    • \n
    • Optimized the layout of settings page and display of some settings.
    • \n
    • Added an option of enabling optimization mode for web hosting/shared hosting in advanced settings.
    • \n
    • Added a memory_limit option in advanced settings.
    • \n
    • Added a chunk size option in advanced settings.
    • \n
    • Added an option to cancel a running migration.
    • \n
    • Provided the WPDB as the interface with the database for the sites missing PDO_MYSQL.
    • \n
    • Fixed a timeout error occurred in some cases during backup process.
    • \n
    • Optimized the plugin code.
    • \n
    \n

    0.9.19

    \n
      \n
    • Added a php memory limit option to settings, you can use it to temporarily increase php memory limit when encountering a memory exhausted error in backup process.
    • \n
    • Fixed: Backup does not exist error that occurred in some cases when downloading the backup to local.
    • \n
    • Fixed: Backup error that occurred when the wp-content/plugins folder on a web server was moved or renamed.
    • \n
    • Fixed: Restore error that occurred in some cases when restoring a backup to a different domain.
    • \n
    • Enhanced the clean backup cache option in settings.
    • \n
    • Optimized backup process.
    • \n
    \n

    0.9.18

    \n
      \n
    • Optimized migration process, improved compatibility for migration. Old keys will be expired after you update to the new version.
    • \n
    • Added an option to retry the backup operation when encountering a timeout error.
    • \n
    • Added an option to hide settings in admin menu.
    • \n
    • Changed the plugin icon showing in admin menu.
    • \n
    • Included more info in the error log when sending to support.
    • \n
    • Improved compatibility with some hosting like GoDaddy.
    • \n
    • Optimized the cache directory in backup process.
    • \n
    • Fixed errors occurred in some cases during the authentication process with Google Drive, Dropbox, Microsoft OneDrive.
    • \n
    • Optimized plugin code.
    • \n
    \n

    0.9.17

    \n
      \n
    • Added a sole tab for backup schedules.
    • \n
    • Refined descriptions in the UI.
    • \n
    • Fixed a few UI bugs.
    • \n
    • Successfully tested with WordPress 5.2.
    • \n
    \n

    0.9.16

    \n
      \n
    • Fixed a fatal error occurred during website transfer.
    • \n
    \n

    0.9.15

    \n
      \n
    • Fixed: Scheduled backups failed to run as configured after the last update.
    • \n
    • Improved the Restore UI.
    • \n
    • Refined some descriptions in the UI.
    • \n
    \n

    0.9.14

    \n
      \n
    • Added free website transfer feature. We highly recommend all our users to update.
    • \n
    • Added backup upload feature. Now you can upload a backup to restore or transfer.
    • \n
    \n

    0.9.13

    \n
      \n
    • Fixed: Sometimes could not correctly determine database privileges when backing up.
    • \n
    \n

    0.9.12

    \n
      \n
    • Added an ‘Send Debug Information to Us’ button in Website Info page.
    • \n
    • Improved the compatibility with PHP v5.3 to v5.5.
    • \n
    • Fixed the compatibility issue with MainWP plugin.
    • \n
    • Fixed: Could not correctly calculate files size when backing up.
    • \n
    • Fixed: Could not back up to SFTP server sometimes.
    • \n
    • Fixed: Database backup failure because of insufficient privileges.
    • \n
    • Enriched backup logs with more details.
    • \n
    • Refined some descriptions on user interface.
    • \n
    • Optimized code of the plugin.
    • \n
    \n

    0.9.11

    \n
      \n
    • Added support for DigitalOcean Spaces.
    • \n
    • Added an HTML email template to backup reports.
    • \n
    \n

    0.9.10

    \n
      \n
    • Fixed: Some icons were missing in UI.
    • \n
    \n

    0.9.9

    \n
      \n
    • Fixed a packaging error which might cause the failure of activating the plugin.
    • \n
    \n

    0.9.8

    \n
      \n
    • Added support for Google Drive, Micosoft OneDrive, Dropbox cloud storage.
    • \n
    • Fixed: Could not restore a backup from cloud storage.
    • \n
    • Optimized code of the plugin.
    • \n
    \n

    0.9.7

    \n
      \n
    • Fixed data type errors caused by the last update. The errors would cause the failure of running of scheduled backup tasks. We highly recommend you upgrade.
    • \n
    • Fixed a bug where the last backup information was not displayed in backup schedule list.
    • \n
    • Changed a few error messages that appear during the backup process.
    • \n
    • Optimized code of the plugin.
    • \n
    \n

    0.9.6

    \n
      \n
    • Optimized code of the plugin.
    • \n
    • A more lightweight Amazon S3 library has been used, so that you do not need to fill in Region field while configuring a S3 storage account.
    • \n
    \n

    0.9.5

    \n
      \n
    • Refined descriptions on user interface.
    • \n
    • Fixed a few UI bugs.
    • \n
    • Fixed a bug where backups were runnable in some cases during the process of a restoration.
    • \n
    \n

    0.9.4

    \n
      \n
    • Added support for responsive design. Now the plugin is compatible with smartphones, tablets and PC.
    • \n
    • Fixed some UI bugs.
    • \n
    \n

    0.9.3

    \n
      \n
    • Fixed some display errors on user interface.
    • \n
    • Fixed a bug where backups could not be completed in exceptional cases.
    • \n
    \n

    0.9.2

    \n
      \n
    • Fixed image path display error.
    • \n
    \n

    0.9.1

    \n
      \n
    • Initial release of the plugin. Now you see it.
    • \n
    \n", "description": "

    WPvivid Backup & Migration Plugin offers backup, migration, and staging (create a staging site on a subdirectory to safely test WordPress, plugins, themes and website changes) as basic features.

    \n

    WPvivid Backup & Migration for MainWP

    \n

    WPvivid Backup & Migration for MainWP is now available to download.
    \nWPvivid Backup & Migration for MainWP allows you to set up and control WPvivid Backup & Migration plugins for all child sites directly from your MainWP dashboard.

    \n

    WPvivid Backup & Migration Pro is Now Available

    \n
      \n
    • Customize everything to backup
    • \n
    • Create staging sites and push staging sites to live
    • \n
    • Incremental backups
    • \n
    • Database backup encryption
    • \n
    • Auto backup WordPress, themes, and plugins
    • \n
    • WordPress multisite backup
    • \n
    • WordPress multisite staging
    • \n
    • Create a fresh WP install
    • \n
    • Advanced remote backups
    • \n
    • Advanced backup schedules
    • \n
    • Restore remote backups
    • \n
    • Migrate a site via remote storage
    • \n
    • Migrate a childsite (MU) to a single WordPress install
    • \n
    • White label WPvivid Backup & Migration Pro
    • \n
    • Control user access to WPvivid Backup & Migration Pro
    • \n
    • More amazing features
    • \n
    \n

    See a review video on WPvivid Backup & Migration Pro:

    \n

    \n

    Get WPvivid Backup & Migration Pro

    \n

    Core Features

    \n

    1. Easy Backups

    \n

    Easily create a backup of your WordPress site. You can choose to backup the entire site(database+files), all files, or database only.

    \n

    2. Auto Migration

    \n

    Clone and migrate your WordPress site to a new domain with a single click. WPvivid Backup & Migration Plugin supports site migration from dev environment to a new server, from dev environment to a new domain or from a live server to another.

    \n

    3. Create A Staging Site

    \n

    Create a staging site on a subdirectory of your production site to safely test WordPress, plugins, themes and website changes. You can choose what to copy from the the live site to the staging site.

    \n

    4. Scheduled Backups

    \n

    Set a schedule to run backups automatically on your website. You can set the backups to run every 12 hours, daily, weekly, fortnightly, monthly, choose backup items and destination.

    \n

    5. Offsite Backup to Remote Storage

    \n

    Send your backups offsite to a remote location. WPvivid Backup & Migration Plugin supports the leading cloud storage providers: Dropbox, Google Drive, Amazon S3, Microsoft OneDrive, DigitalOcean Spaces, FTP and SFTP.

    \n

    6. One-Click Restore

    \n

    Restore your WordPress site from a backup with a single click.

    \n

    7. Cloud Storage Supported

    \n

    WPvivid Backup & Migration plugin supports Dropbox, Google Drive, Microsoft OneDrive, Amazon S3, DigitalOcean Spaces, SFTP, FTP. WPvivid Backup & Migration Pro also supports Wasabi, pCloud, Backblaze, WebDav and more.

    \n

    Minimum Requirements to use WPvivid Backup & Migration plugin

    \n
      \n
    • Character Encoding UTF-8
    • \n
    • PHP version 5.3
    • \n
    • MySQL version 4.1
    • \n
    • WordPress 4.5
    • \n
    \n", "screenshots": "
    1. \"Backing

      Backing up a site

    2. \"Backup

      Backup list

    3. \"WPvivid

      WPvivid Backup & Migration plugin Dashboard

    4. \"Configure

      Configure remote backups

    5. \"Migrate

      Migrate a WordPress site to a new domain

    6. \"Upload

      Upload a backup to restore or migrate

    ", "installation": "

    Install WPvivid Backup & Migration Plugin

    \n

    1.Go to your sites admin dashboard.
    \n2.Navigate to Plugins Menu and search for WPvivid Backup & Migration.
    \n3.Find WPvivid Backup & Migration and click Install Now.
    \n4. Click Activate.

    \n"}, "versions": {"0.9.1": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.1.zip", "0.9.2": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.2.zip", "0.9.3": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.3.zip", "0.9.4": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.4.zip", "0.9.5": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.5.zip", "0.9.6": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.6.zip", "0.9.7": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.7.zip", "0.9.8": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.8.zip", "0.9.9": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.9.zip", "trunk": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.zip", "0.9.10": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.10.zip", "0.9.11": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.11.zip", "0.9.12": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.12.zip", "0.9.13": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.13.zip", "0.9.14": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.14.zip", "0.9.15": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.15.zip", "0.9.16": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.16.zip", "0.9.17": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.17.zip", "0.9.18": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.18.zip", "0.9.19": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.19.zip", "0.9.20": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.20.zip", "0.9.21": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.21.zip", "0.9.22": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.22.zip", "0.9.23": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.23.zip", "0.9.24": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.24.zip", "0.9.25": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.25.zip", "0.9.26": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.26.zip", "0.9.27": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.27.zip", "0.9.28": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.28.zip", "0.9.29": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.29.zip", "0.9.30": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.30.zip", "0.9.31": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.31.zip", "0.9.32": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.32.zip", "0.9.33": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.33.zip", "0.9.34": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.34.zip", "0.9.35": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.35.zip", "0.9.36": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.36.zip", "0.9.37": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.37.zip", "0.9.38": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.38.zip", "0.9.39": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.39.zip", "0.9.40": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.40.zip", "0.9.41": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.41.zip", "0.9.42": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.42.zip", "0.9.43": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.43.zip", "0.9.44": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.44.zip", "0.9.45": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.45.zip", "0.9.46": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.46.zip", "0.9.47": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.47.zip", "0.9.48": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.48.zip", "0.9.49": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.49.zip", "0.9.50": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.50.zip", "0.9.51": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.51.zip", "0.9.52": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.52.zip", "0.9.53": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.53.zip", "0.9.54": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.54.zip", "0.9.55": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.55.zip", "0.9.56": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.56.zip", "0.9.57": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.57.zip", "0.9.58": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.58.zip", "0.9.59": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.59.zip", "0.9.60": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.60.zip", "0.9.61": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.61.zip", "0.9.62": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.62.zip", "0.9.63": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.63.zip", "0.9.64": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.64.zip", "0.9.65": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.65.zip", "0.9.66": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.66.zip", "0.9.67": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.67.zip", "0.9.68": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.68.zip", "0.9.69": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.69.zip", "0.9.70": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.70.zip", "0.9.71": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.71.zip", "0.9.72": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.72.zip", "0.9.73": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.73.zip", "0.9.74": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.74.zip", "0.9.75": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.75.zip", "0.9.76": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.76.zip", "0.9.77": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.77.zip", "0.9.78": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.78.zip", "0.9.79": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.79.zip", "0.9.80": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.80.zip", "0.9.81": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.81.zip", "0.9.82": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.82.zip", "0.9.83": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.83.zip", "0.9.84": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.84.zip", "0.9.85": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.85.zip", "0.9.86": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.86.zip", "0.9.87": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.87.zip", "0.9.88": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.88.zip", "0.9.89": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.89.zip", "0.9.90": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.90.zip", "0.9.91": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.91.zip", "0.9.92": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.92.zip", "0.9.93": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.93.zip", "0.9.94": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.94.zip", "0.9.95": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.95.zip", "0.9.96": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.96.zip", "0.9.97": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.97.zip", "0.9.98": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.98.zip", "0.9.99": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.99.zip", "0.9.100": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.100.zip", "0.9.101": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.101.zip", "0.9.102": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.102.zip", "0.9.103": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.103.zip", "0.9.104": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.104.zip", "0.9.105": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.105.zip", "0.9.106": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.106.zip", "0.9.107": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.107.zip", "0.9.108": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.108.zip", "0.9.109": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.109.zip", "0.9.110": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.110.zip", "0.9.111": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.111.zip", "0.9.112": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.112.zip", "0.9.113": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.113.zip", "0.9.114": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.114.zip", "0.9.115": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.115.zip", "0.9.116": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.116.zip", "0.9.117": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.117.zip", "0.9.118": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.118.zip", "0.9.119": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.119.zip", "0.9.120": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.120.zip"}, "downloaded": 14023622, "description": "

    WPvivid Backup & Migration Plugin offers backup, migration, and staging (create a staging site on a subdirectory to safely test WordPress, plugins, themes and website changes) as basic features.

    \n

    WPvivid Backup & Migration for MainWP

    \n

    WPvivid Backup & Migration for MainWP is now available to download.
    \nWPvivid Backup & Migration for MainWP allows you to set up and control WPvivid Backup & Migration plugins for all child sites directly from your MainWP dashboard.

    \n

    WPvivid Backup & Migration Pro is Now Available

    \n
      \n
    • Customize everything to backup
    • \n
    • Create staging sites and push staging sites to live
    • \n
    • Incremental backups
    • \n
    • Database backup encryption
    • \n
    • Auto backup WordPress, themes, and plugins
    • \n
    • WordPress multisite backup
    • \n
    • WordPress multisite staging
    • \n
    • Create a fresh WP install
    • \n
    • Advanced remote backups
    • \n
    • Advanced backup schedules
    • \n
    • Restore remote backups
    • \n
    • Migrate a site via remote storage
    • \n
    • Migrate a childsite (MU) to a single WordPress install
    • \n
    • White label WPvivid Backup & Migration Pro
    • \n
    • Control user access to WPvivid Backup & Migration Pro
    • \n
    • More amazing features
    • \n
    \n

    See a review video on WPvivid Backup & Migration Pro:

    \n

    \n

    Get WPvivid Backup & Migration Pro

    \n

    Core Features

    \n

    1. Easy Backups

    \n

    Easily create a backup of your WordPress site. You can choose to backup the entire site(database+files), all files, or database only.

    \n

    2. Auto Migration

    \n

    Clone and migrate your WordPress site to a new domain with a single click. WPvivid Backup & Migration Plugin supports site migration from dev environment to a new server, from dev environment to a new domain or from a live server to another.

    \n

    3. Create A Staging Site

    \n

    Create a staging site on a subdirectory of your production site to safely test WordPress, plugins, themes and website changes. You can choose what to copy from the the live site to the staging site.

    \n

    4. Scheduled Backups

    \n

    Set a schedule to run backups automatically on your website. You can set the backups to run every 12 hours, daily, weekly, fortnightly, monthly, choose backup items and destination.

    \n

    5. Offsite Backup to Remote Storage

    \n

    Send your backups offsite to a remote location. WPvivid Backup & Migration Plugin supports the leading cloud storage providers: Dropbox, Google Drive, Amazon S3, Microsoft OneDrive, DigitalOcean Spaces, FTP and SFTP.

    \n

    6. One-Click Restore

    \n

    Restore your WordPress site from a backup with a single click.

    \n

    7. Cloud Storage Supported

    \n

    WPvivid Backup & Migration plugin supports Dropbox, Google Drive, Microsoft OneDrive, Amazon S3, DigitalOcean Spaces, SFTP, FTP. WPvivid Backup & Migration Pro also supports Wasabi, pCloud, Backblaze, WebDav and more.

    \n

    Minimum Requirements to use WPvivid Backup & Migration plugin

    \n
      \n
    • Character Encoding UTF-8
    • \n
    • PHP version 5.3
    • \n
    • MySQL version 4.1
    • \n
    • WordPress 4.5
    • \n
    \n", "donate_link": "", "num_ratings": 1335, "screenshots": {"1": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-1.png?rev=2099721", "caption": "Backing up a site"}, "2": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-2.png?rev=2099721", "caption": "Backup list"}, "3": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-3.png?rev=2099721", "caption": "WPvivid Backup & Migration plugin Dashboard"}, "4": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-4.png?rev=2099721", "caption": "Configure remote backups"}, "5": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-5.png?rev=2099721", "caption": "Migrate a WordPress site to a new domain"}, "6": {"src": "https://ps.w.org/wpvivid-backuprestore/assets/screenshot-6.png?rev=2099721", "caption": "Upload a backup to restore or migrate"}}, "support_url": "https://wordpress.org/support/plugin/wpvivid-backuprestore/", "contributors": {"wpvivid": {"avatar": "https://secure.gravatar.com/avatar/d8c4be2a404cba4860aa14c087c9ac77c6b23ea9e8683d6d27ea5f56226eae29?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpvivid/", "display_name": "wpvivid"}}, "last_updated": "2025-10-16 12:42am GMT", "preview_link": "", "requires_php": "5.3", "compatibility": [], "download_link": "https://downloads.wordpress.org/plugin/wpvivid-backuprestore.0.9.120.zip", "author_profile": "https://profiles.wordpress.org/wpvividplugins/", "business_model": false, "repository_url": "", "upgrade_notice": {"": "

    Latest version 0.9.120:

    ", "0.9.120": "
      \n
    • Successfully tested with PHP 8.4.13.
    • \n
    • Successfully tested with WordPress 6.8.3.
    • \n
    "}, "active_installs": 800000, "aspiresync_meta": {"id": "019a30bf-ff74-737e-8700-2246b25a2eb1", "name": "Migration, Backup, Staging – WPvivid Backup & Migration", "slug": "wpvivid-backuprestore", "type": "plugin", "origin": "wp_org", "pulled": 1761754480, "status": "open", "checked": 1761754480, "updated": 1760575320, "version": "0.9.120"}, "support_threads": 5, "requires_plugins": [], "short_description": "Migrate, staging, backup WordPress, all in one.", "author_block_count": 0, "author_block_rating": 98, "commercial_support_url": "", "support_threads_resolved": 2}'); -INSERT INTO public.plugins VALUES ('019a30c1-a5fb-7007-b6dd-b1bcaca05a6c', 'fair-plugin', 'FAIR - Federated and Independent Repositories', 'Many features in WordPress rely on requests to WordPress.org services, including update checks, translations, emojis, and more. Services on WordPre...', '', '1.0.0', 'FAIR Contributors', '', NULL, '', 'https://api.github.com/repos/fairpm/fair-plugin/releases/assets/296544621', '2025-06-05 00:00:00+00', '2025-10-28 22:58:00+00', NULL, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'gu', '2025-10-29 16:16:29+00', '{"did": "", "git": "github", "url": "https://github.com/fairpm/fair-plugin", "name": "FAIR - Federated and Independent Repositories", "slug": "fair-plugin", "tags": [], "type": "plugin", "added": "2025-06-05", "icons": {"1x": "https://raw.githubusercontent.com/fairpm/fair-plugin/main/assets/icon-128x128.png", "2x": "https://raw.githubusercontent.com/fairpm/fair-plugin/main/assets/icon-256x256.png", "default": "https://s.w.org/plugins/geopattern-icon/fair-plugin.svg"}, "author": "FAIR Contributors", "branch": "main", "rating": 0, "tested": "", "banners": {"low": "https://raw.githubusercontent.com/fairpm/fair-plugin/main/assets/banner-772x250.png", "high": "https://raw.githubusercontent.com/fairpm/fair-plugin/main/assets/banner-1544x500.png"}, "dot_org": true, "license": "GPLv2", "version": "1.0.0", "external": "xxx", "homepage": "", "requires": "", "sections": {"description": "

    Many features in WordPress rely on requests to WordPress.org services, including update checks, translations, emojis, and more. Services on WordPress.org are expensive to maintain and centralized. In order to help strengthen the future of the whole WordPress ecosystem, FAIR was built to reduce reliance and burden on the central WordPress.org services.

    \n

    This plugin configures your site to use FAIR implementations of the key services that are currently centralized on WordPress.org.

    \n

    Installation

    \n

    FAIR can be installed manually by downloading the latest zip from releases and install it via your WordPress admin dashboard.

    \n\n

    Uninstallation

    \n

    To remove the FAIR plugin and its features, you can deactivate and delete the plugin. There are no changes made to your database outside of the plugin settings, and no external files are edited. FAIR is a self-contained plugin, using the accepted WordPress standards and practices.

    \n

    Features

    \n
    \n

    [!NOTE]\nThe FAIR project is brand new. This plugin is a pre-release and some features are yet to be fully implemented.

    \n
    \n

    The FAIR plugin implements federated or local versions of the following features in WordPress:

    \n
      \n
    • Version checks and updates to WordPress, plugins, and themes
    • \n
    • Language packs and translations
    • \n
    • Events and News feeds in the dashboard
    • \n
    • Images used on the About screen, Credits screen, and elsewhere
    • \n
    • Browser and server health checks
    • \n
    • Other APIs such as the Credits API, Secret Keys API, and Importers API
    • \n
    • Twemoji images for emojis
    • \n
    • Installation and updating of packages direct from their source repository, without talking to any centralized server
    • \n
    \n

    The default FAIR provider in this plugin is AspireCloud from AspirePress. The AspirePress team were key in helping the FAIR project get off the ground. As the FAIR project grows and other providers come online you will be able to configure your chosen FAIR provider within the plugin.

    \n

    In addition to the key FAIR implementations, a few other features in WordPress are configured by this plugin to reduce reliance and burden on other centralized external services:

    \n
      \n
    • User avatars can optionally be uploaded locally as an alternative to the Gravatar service
    • \n
    • Media features provided by OpenVerse are disabled, pending discussion and work by the FAIR working group
    • \n
    • Ping services are configured to use IndexNow in place of Pingomatic

      Data Privacy

    • \n
    • See Also: Linux Foundation Projects Privacy Policy
    • \n
    \n

    FAIR is built to reduce external dependencies and keep your site as self-contained as possible. However, some essential features require connecting to remote services in order to function correctly. This section details which features involve remote requests, what data may be transmitted, and the specific third-party providers involved. Review the list below to understand exactly where and why your site may communicate with external endpoints.

    \n
      \n
    • Search engine pings when a post is published are handled by IndexNow.
    • \n
    • Installation and updates of all WordPress Packages (core, plugins, themes) are via AspireCloud from AspirePress (or other mirror as configured).
    • \n
    • PHP versions are provided by php.net
    • \n
    • Twemoji (emoji assets) are retrieved by jsDeliver
    • \n
    \n

    In addition we self-host certain features that could not be properly protected on our API servers as an intermediary. All data collected from FAIR servers fall under the Linux Foundation Policies and Terms of Use for Hosted Projects; additionally, the server itself is open source. These services include:

    \n
      \n
    • WordPress Events (https://api.fair.pm/fair/v1/events) - Retrieved from The WP World hourly and then cached on our servers. No user data is sent to The WP World.
    • \n
    • WordPress Planet/News (https://planet.fair.pm/atom.xml)

      Contributing

      \nSee CONTRIBUTING.md for information on contributing.
    • \n
    \n

    The FAIR plugin is currently maintained by the Technical Independence Working Group, in conjunction with the FAIR Working Group.

    \n

    FAIR is licensed under the GNU General Public License, v2 or later. Copyright 2025 the contributors.

    \n

    WordPress is a registered trademark of the WordPress Foundation. FAIR is not endorsed by, or affiliated with, the WordPress Foundation.

    "}, "security": "", "slug_did": null, "versions": {"0.2.0": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/261645550", "0.3.0": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/264872287", "0.4.0": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/277562364", "0.4.1": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/278207423", "1.0.0": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/296544621"}, "author_uri": "", "is_private": false, "update_uri": "https://api.fair.pm", "auth_header": {"headers": {"Accept": "application/octet-stream"}}, "donate_link": "", "num_ratings": 0, "contributors": [], "last_updated": "2025-10-28 10:58pm GMT", "requires_php": "", "download_link": "https://api.github.com/repos/fairpm/fair-plugin/releases/assets/296544621", "release_asset": true, "primary_branch": "main", "active_installs": 0, "aspiresync_meta": {"slug": "fair-plugin", "type": "plugin", "origin": "gu", "status": "open", "gu_base": "https://api.fair.pm/wp-json/git-updater/v1"}, "requires_plugins": [], "short_description": "Many features in WordPress rely on requests to WordPress.org services, including update checks, translations, emojis, and more. Services on WordPre..."}'); -INSERT INTO public.plugins VALUES ('019a30c1-a603-7313-a7a8-a9f190c8daa5', 'git-updater', 'Git Updater', 'This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket,...', '', '12.19.0', 'Andy Fragen', '5.9', '8.0', '6.9.3', 'https://api.github.com/repos/afragen/git-updater/zipball/12.19.0', '2013-07-07 00:00:00+00', '2025-10-03 17:49:00+00', NULL, 0, 0, 0, 0, 0, 0, 'https://git-updater.com', 'https://thefragens.com/git-updater-donate', NULL, NULL, NULL, NULL, NULL, 'gu', '2025-10-29 16:16:29+00', '{"did": "did:plc:afjf7gsjzsqmgc7dlhb553mv", "git": "github", "url": "https://github.com/afragen/git-updater", "name": "Git Updater", "slug": "git-updater", "tags": {"theme": "theme", "updater": "updater", "language-pack": "language pack"}, "type": "plugin", "added": "2013-07-07", "icons": {"svg": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/icon.svg", "default": "https://s.w.org/plugins/geopattern-icon/git-updater.svg"}, "author": "Andy Fragen", "branch": "master", "rating": 0, "tested": "6.9.3", "banners": {"low": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-772x250.png", "high": "https://raw.githubusercontent.com/afragen/git-updater/master/assets/banner-1544x500.png"}, "dot_org": false, "license": "MIT", "version": "12.19.0", "external": "xxx", "homepage": "https://git-updater.com", "requires": "5.9", "sections": {"faq": "

    Knowledge Base

    \n

    Comprehensive information regarding Git Updater is available in the Knowledge Base.

    \n

    Slack

    \n

    We now have a Slack team for Git Updater. Please click here for an invite. You will be automatically added to the #general and #support channels. Please take a look at other channels too.

    \n

    Translations

    \n

    If you are a polyglot I would greatly appreciate translation contributions to GlotPress for Git Updater.

    \n", "changelog": "

    [unreleased]

    \n

    12.19.0 / 2025-09-29

    \n
      \n
    • setup for Gitea release assets
    • \n
    • use mcaskill/composer-exclude-files to exclude autoload of freemius/wordpress-sdk/start.php
    • \n
    • harden parse_meta_response()
    • \n
    • modify dot org check for package added to mirror like AspireCloud
    • \n
    • don''t overwrite requires and requires_php data from readme.txt if already exists
    • \n
    • correctly parse for multiple release assets per release
    • \n
    • update POT GitHub Action
    • \n
    • refactor add_accept_header()
    • \n
    • set release_assets and release_asset_download for latest release asset
    • \n
    \n

    12.18.1 / 2025-08-06

    \n
      \n
    • data check on release assets
    • \n
    \n

    12.18.0 / 2025-08-04

    \n
      \n
    • update cache delete and don''t use wp_cache_flush
    • \n
    • always show download link in REST endpoint
    • \n
    • improved reverse sort for branch/tag versions
    • \n
    • get all release assets from GitHub API and pick release asset download from release assets array, other APIs get latest release asset only
    • \n
    • update parse_tag() and sort_tags()
    • \n
    • update branch switching tags
    • \n
    \n

    12.17.3 / 2025-07-31

    \n
      \n
    • add new Security header with value of email or URI
    • \n
    \n

    12.17.2 / 2025-07-26

    \n
      \n
    • update GU_Freemius for FAIR installation
    • \n
    \n

    12.17.1 / 2025-07-20

    \n
      \n
    • add remote data for did, slug_hash if added via Additions
    • \n
    • use Bearer for token with GitHub API
    • \n
    \n

    12.17.0 / 2025-07-14

    \n
      \n
    • un-escape stuff, more uses of use
    • \n
    • add License header info
    • \n
    • add Update URI header info
    • \n
    • add get_did_hash() to get hash of DID
    • \n
    • add get_file_without_did_hash()
    • \n
    • simplify check for rename_on_activation()
    • \n
    • update freemius/wordpress-sdk
    • \n
    \n

    12.16.1 / 2025-06-12

    \n
      \n
    • add DID
    • \n
    • update rollback sort
    • \n
    • update banner image
    • \n
    \n

    12.16.0 / 2025-06-09

    \n
      \n
    • change callback from new REST_API() to $this
    • \n
    • collect Author URI from headers.
    • \n
    • add action hook to Base::get_remote_repo_meta
    • \n
    • get all versions of release assets, similar to tags/rollbacks
    • \n
    • add compatibility check for AspireUpdate and FAIR Package Manager
    • \n
    \n

    12.15.1 / 2025-05-20

    \n
      \n
    • update stability of composer requirements
    • \n
    \n

    12.15.0 / 2025-05-20

    \n
      \n
    • update to correct format of readme tags
    • \n
    • add correctly formated date/time for update-api REST endpoint
    • \n
    • remove deprecated hooks from v10 and earlier
    • \n
    • add error checking to parse_contents_response()
    • \n
    • update Freemius/wordpress-sdk
    • \n
    • add support for Plugin ID and Theme ID headers for FAIR
    • \n
    • update composer.json
    • \n
    \n

    12.14.0 / 2025-02-26

    \n
      \n
    • make sure proper release asset headers are added even if access token not set
    • \n
    • ensure short description is 150 characters or less
    • \n
    \n

    12.13.0 / 2025-02-21

    \n
      \n
    • update caching
    • \n
    • add versions to REST endpoint for {plugins|themes|update}-api
    • \n
    • update generate POT workflow
    • \n
    \n

    12.12.1 / 2025-02-12

    \n
      \n
    • revert uninstall back to Freemius
    • \n
    \n

    12.12.0 / 2025-02-10

    \n
      \n
    • save source with Additions
    • \n
    • update Additions::deduplicate()
    • \n
    • update Base::upgrader_source_selection() rename to allow for AJAX installation, thanks @costdev
    • \n
    • add git-updater-collectionsto Add-Ons
    • \n
    • make list table show all elements
    • \n
    • add Private Package option for Additions, these private packages are not to be shared with aggregators
    • \n
    • switch to standard uninstall.php as issue with calling Freemius during their after_uninstall hook
    • \n
    • add early exit in get_repo_slugs() during AJAX installation for Add-Ons
    • \n
    • remove soft match in get_repo_slugs()
    • \n
    • removed Add_Ons::upgrader_source_selection no longer needed
    • \n
    • save/export tags from readme.txt for REST endpoint
    • \n
    \n

    12.11.0 / 2025-02-02

    \n
      \n
    • update Additions to add additional listings
    • \n
    • more updates for possibly passing null
    • \n
    • update REST_API::get_api_data
    • \n
    • update Theme to add theme_uri to update transient
    • \n
    • update to pass complete data for multiple uses of gu_additions hook
    • \n
    \n

    12.10.1 / 2025-01-30

    \n
      \n
    • fix issue with release asset
    • \n
    • add guard to Add-Ons
    • \n
    • remove git-updater-federation from Add-Ons
    • \n
    \n

    12.10.0 / 2025-01-29

    \n
      \n
    • refactor Add_Ons to use plugins-api REST endpoint and standard plugin card
    • \n
    • added features by @costdev for AJAXifying
    • \n
    • added parsing of Update URI and Requires Plugins headers
    • \n
    • increase requirements to PHP 8+
    • \n
    • added REST endpoint to export data from Additions
    • \n
    • added REST endpoint to export Update API data from Additions
    • \n
    • update Freemius/wordpress-sdk
    • \n
    • change ''API Add-Ons'' to ''Add-Ons''
    • \n
    \n

    12.9.0 / 2025-01-07

    \n
      \n
    • add API get for repo root contents for efficiency
    • \n
    • add feature to virtually add repos via Additions tab to server REST update-api endpoint
    • \n
    • switch to getting most data via API calls and not from locally installed files
    • \n
    • add REST endpoint to individually flush repo cache
    • \n
    • fix Basic_Auth_Loader::get_slug_for_credentials() to get slug for gist
    • \n
    • update $release_asset_parts in Basic_Auth_Loader::unset_release_asset_auth() for AWS download link
    • \n
    • improved release asset handling
    • \n
    \n

    12.8.0 / 2024-12-21

    \n
      \n
    • update GitHub release asset parsing
    • \n
    • update REST_API for Bitbucket update link
    • \n
    • update REST_API for update-api route
    • \n
    \n

    12.7.2 / 2024-12-18

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • use mcaskill/composer-exclude-files to exclude autoloading start.php from Freemius, issues arise
    • \n
    • update REST_API::get_api_data() to always get current release asset redirect as appropriate
    • \n
    \n

    12.7.1 / 2024-12-02

    \n
      \n
    • use get_file_date() to return plugin version
    • \n
    • fix API::get_dot_org_data() to work with WPE mirror
    • \n
    \n

    12.7.0 / 2024-11-30

    \n
      \n
    • fix missing/incorrect textdomains
    • \n
    • look for __() functions loading in hooks before init
    • \n
    • remove load_plugin_textdomain()
    • \n
    • add git host icon to single site theme description
    • \n
    • don''t save to GitHub.com access token from single repo remote install
    • \n
    • fix PHP 8.1 creation dynamic variable from class REST_API
    • \n
    • update REST API response to return plugins_api() or themes_api() style response
    • \n
    \n

    12.6.0 / 2024-10-13

    \n
      \n
    • check existence of FS__RESOLVE_CLONE_AS before setting
    • \n
    • add filter hook gu_api_domain to set domain for default API updating
    • \n
    • add filter hook gu_ignore_dot_org to completely ignore updates from dot org. Works as if every plugin/theme is in the gu_override_dot_org hook
    • \n
    \n

    12.5.0 / 2024-08-16

    \n
      \n
    • update class-parser.php
    • \n
    • update Requires PHP to 7.4 for class-parser.php
    • \n
    • update Requires WP to 5.9
    • \n
    • update freemius/wordpress-sdk
    • \n
    • update printf() in class Branches
    • \n
    • fix old git-updater-pro and git-updater-additions textdomains
    • \n
    • update Base::upgrader_source_selection() when trying to update $source and $new_source when destination directories are identical
    • \n
    • remove unused parameters in certain functions
    • \n
    \n

    12.4.0 / 2024-03-04

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • update class-parser.php
    • \n
    • use is_wp_version_compatible() and is_php_version_compatible() in GU_Trait::can_update_repo()
    • \n
    • update gu-loader.php with generic loader
    • \n
    • update Readme_Parser::trim_length
    • \n
    \n

    12.3.1 / 2023-10-19

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • WPCS 3.0.0 linting
    • \n
    • popup on icon for "Updates via Git Updater", thanks @BrianHenryIE
    • \n
    \n

    12.3.0 / 2023-08-10

    \n
      \n
    • update Bitbucket Add-on message for consistency
    • \n
    • ensure Shim available during register_activation_hook()
    • \n
    • add conditional to get_remote_api_branches() to ensure $response is not a scalar
    • \n
    • use null coalescing operator
    • \n
    • update for PHP 8.2
    • \n
    \n

    12.2.3 / 2023-06-27

    \n
      \n
    • composer update
    • \n
    • get gu_disable_cron hook result once per repository
    • \n
    • ensure git class is instantiated when checking waiting_for_background_update()
    • \n
    • add check for $response->error to API::validate_response()
    • \n
    • update freemius/wordpress-sdk to 2.5.10
    • \n
    \n

    12.2.2 /2023-05-22

    \n
      \n
    • add back Network only activate for multisite, may cause issue where post-license activation Freemius doesn''t re-direct to network admin
    • \n
    • update anonymous functions as static functions for better performance
    • \n
    • composer update
    • \n
    \n

    12.2.1 / 2023-04-21

    \n
      \n
    • ensure $wp_filesystem set for Bootstrap::rename_on_activation()
    • \n
    • uninstall tested to function correctly
    • \n
    \n

    12.2.0 / 2023-04-20

    \n
      \n
    • update freemius/wordpress-sdk
    • \n
    • update afragen/wp-dismiss-notice
    • \n
    • don''t save unused data from API_Common::parse_release_asset()
    • \n
    • don''t use Freemius uninstall, use previous uninstall.php
    • \n
    • more PHP 8.2 compatibility
    • \n
    • composer update
    • \n
    • update REST_API::get_plugins_api_data() to return response without download link using boolean value in download query arg
    • \n
    • hide Freemius menus with gu_hide_settings filter
    • \n
    • more specific hiding of Git Updater settings
    • \n
    \n

    12.1.3 / 2023-03-20

    \n
      \n
    • improved setting/default of $options[''bypass_background_processing'']
    • \n
    • improved setting/default of $options[''branch_switch'']
    • \n
    • display upgrade notice on update-core.php
    • \n
    • composer update afragen/singleton for PHP 8.2 compat
    • \n
    \n

    12.1.2 / 2023-02-08

    \n
      \n
    • fix for webhook updating issue if $branches not defined, thanks @awunsch
    • \n
    \n

    12.1.1 / 2023-02-07

    \n
      \n
    • remove force of Network activation, messes up Freemius license activation on multisite
    • \n
    • composer update
    • \n
    \n

    12.1.0 / 2023-02-06

    \n
      \n
    • further limit log of HTTP errors, trying for only once per plugin
    • \n
    • eliminate Freemius clone resolution popup
    • \n
    • update Shim:move_dir() for improved error messaging
    • \n
    • update comparison in Base::upgrader_source_selection of $source and $new_source
    • \n
    \n

    12.0.4 / 2023-01-27

    \n
      \n
    • update to use str_contains()
    • \n
    • log HTTP errors only hourly
    • \n
    • update Shim::move_dir() to exit early if source and destination differ only by case or trailing slash
    • \n
    \n

    12.0.3 / 2023-01-19

    \n
      \n
    • update Shim for move_dir() and wp_opcache_invalidate_directory()
    • \n
    • composer update
    • \n
    \n

    12.0.2 / 2023-01-12

    \n
      \n
    • PHP 8.1 compatibility fix, thanks @chesio
    • \n
    • other PHP 8.1 fixes
    • \n
    • declare class API variable $type, avoid future PHP issues, thanks @chesio
    • \n
    \n

    12.0.1 / 2023-01-02

    \n
      \n
    • cleanup parsing of GitHub release assets
    • \n
    • composer update to fix dependency conflict
    • \n
    \n

    12.0.0 / 2022-12-12

    \n
      \n
    • ensure $wp_filesystem is available
    • \n
    • re-integrate Git Updater PRO
    • \n
    • integrate Git Updater Additions
    • \n
    • add git logo to subtab, hide for now
    • \n
    • load API tabs of installed/active API plugins
    • \n
    • set Git Updater to auto-update with new $db_version
    • \n
    • replace Appsero SDK with Freemius SDK
    • \n
    • suspend Freemius plugin updating for Git Updater
    • \n
    • fix uninstall.php for Freemius
    • \n
    ", "description": "

    This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket, GitLab, Gitea, or Gist are also supported via additional API plugins. Additionally, self-hosted git servers are supported.

    \n

    Your plugin or theme must contain a header in the style.css header or in the plugin''s header denoting the location on GitHub. The format is as follows.

    \n
    GitHub Plugin URI: afragen/git-updater\nGitHub Plugin URI: https://github.com/afragen/git-updater
    \n

    or

    \n
    GitHub Theme URI: afragen/test-child\nGitHub Theme URI: https://github.com/afragen/test-child
    \n

    ...where the above URI leads to the owner/repository of your theme or plugin. The URI may be in the format https://github.com/<owner>/<repo> or the short format <owner>/<repo>. You do not need both. Only one Plugin or Theme URI is required. You must not include any extensions like .git.

    \n

    API Plugins

    \n

    API plugins for Bitbucket, GitLab, Gitea, and Gist are available. API plugins are available for a one-click install from the Add-Ons tab.

    \n\n

    Sponsor

    \n

    Purchase a license at the Git Updater Store. An unlimited yearly license is very reasonable and allows for authenticated API requests. There is an initial free trial period. After the trial period Git Updater will not be able to make authenticated API requests.

    \n

    You can sponsor me on GitHub to help with continued development and support.

    \n

    Headers

    \n

    The following headers are available for use depending upon your hosting source.

    \n

    GitHub

    \n
      \n
    • GitHub Plugin URI
    • \n
    • GitHub Theme URI
    • \n
    • GitHub Languages
    • \n
    ", "installation": "

    Go to git-updater.com to download and install the latest version.

    "}, "security": "andy+security@git-updater.com", "slug_did": "git-updater-f27e06", "versions": {"12.2.2": "https://api.github.com/repos/afragen/git-updater/zipball/12.2.2", "12.2.3": "https://api.github.com/repos/afragen/git-updater/zipball/12.2.3", "12.3.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.3.0", "12.3.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.3.1", "12.4.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.4.0", "12.5.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.5.0", "12.6.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.6.0", "12.7.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.7.0", "12.7.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.7.1", "12.7.2": "https://api.github.com/repos/afragen/git-updater/zipball/12.7.2", "12.8.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.8.0", "12.9.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.9.0", "12.10.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.10.0", "12.10.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.10.1", "12.11.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.11.0", "12.12.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.12.0", "12.12.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.12.1", "12.13.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.13.0", "12.14.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.14.0", "12.15.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.15.0", "12.15.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.15.1", "12.16.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.16.0", "12.16.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.16.1", "12.17.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.0", "12.17.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.1", "12.17.2": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.2", "12.17.3": "https://api.github.com/repos/afragen/git-updater/zipball/12.17.3", "12.18.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.18.0", "12.18.1": "https://api.github.com/repos/afragen/git-updater/zipball/12.18.1", "12.19.0": "https://api.github.com/repos/afragen/git-updater/zipball/12.19.0"}, "author_uri": "https://thefragens.com", "is_private": false, "update_uri": "afragen/git-updater", "donate_link": "https://thefragens.com/git-updater-donate", "num_ratings": 0, "contributors": {"afragen": {"avatar": "https://wordpress.org/grav-redirect.php?user=afragen", "profile": "//profiles.wordpress.org/afragen", "display_name": "afragen"}}, "last_updated": "2025-10-03 05:49pm GMT", "requires_php": "8.0", "download_link": "https://api.github.com/repos/afragen/git-updater/zipball/12.19.0", "release_asset": false, "primary_branch": "master", "active_installs": 0, "aspiresync_meta": {"slug": "git-updater", "type": "plugin", "origin": "gu", "status": "open", "gu_base": "https://fair.git-updater.com/wp-json/git-updater/v1"}, "requires_plugins": [], "short_description": "This plugin was originally designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on Bitbucket,..."}'); -INSERT INTO public.plugins VALUES ('019a30c1-a60b-71dc-a85d-0c81506cf9fa', 'handbook-callout-blocks', 'Handbook Callout Blocks', 'The make.wordpress.org blog has wonderful callout blocks but they seem to be baked in as part of the WP.org Handbook plugin. -I was able to strip ou...', '', '1.0.3', 'WordPress.org, Andy Fragen', '5.9', '7.4', '6.7.3', 'https://api.github.com/repos/afragen/handbook-callout-blocks/releases/assets/274184925', '2022-08-26 00:00:00+00', '2025-07-18 18:57:00+00', NULL, 0, 0, 0, 0, 0, 0, 'https://github.com/afragen/handbook-callout-blocks', NULL, NULL, NULL, NULL, NULL, NULL, 'gu', '2025-10-29 16:16:29+00', '{"did": "did:plc:deoui6ztyx6paqajconl67rz", "git": "github", "url": "https://github.com/afragen/handbook-callout-blocks", "name": "Handbook Callout Blocks", "slug": "handbook-callout-blocks", "tags": {"wporg": "wporg", "callout": "callout", "handbook": "handbook"}, "type": "plugin", "added": "2022-08-26", "icons": {"default": "https://s.w.org/plugins/geopattern-icon/handbook-callout-blocks.svg"}, "author": "WordPress.org, Andy Fragen", "branch": "main", "rating": 0, "tested": "6.7.3", "banners": [], "dot_org": false, "license": "", "version": "1.0.3", "external": "xxx", "homepage": "https://github.com/afragen/handbook-callout-blocks", "requires": "5.9", "sections": {"changelog": "

    [unreleased]

    \n
      \n
    • add support for core/list
    • \n
    • refactor for current standards and practices courtesy of @Clorith
    • \n
    • make editor padding match
    • \n
    • load dashicons for non-logged in users
    • \n
    • initial release
    • \n
    • add composer.json
    • \n
    ", "description": "

    The make.wordpress.org blog has wonderful callout blocks but they seem to be baked in as part of the WP.org Handbook plugin.

    \n

    I was able to strip out the relevant parts of the Handbook plugin retaining only the callout blocks.

    \n

    Special Thanks

    \n
      \n
    • @Ipstenu for her terrific sleuthing skills.
    • \n
    • @Clorith for bringing code up to current standards and best practices.
    • \n
    "}, "security": "", "slug_did": "handbook-callout-blocks-c9ecf6", "versions": {"1.0.3": "https://api.github.com/repos/afragen/handbook-callout-blocks/releases/assets/274184925"}, "author_uri": "", "is_private": false, "update_uri": "", "auth_header": {"headers": {"Accept": "application/octet-stream"}}, "donate_link": "", "num_ratings": 0, "contributors": {"wporg": {"avatar": "https://wordpress.org/grav-redirect.php?user=wporg", "profile": "//profiles.wordpress.org/wporg", "display_name": "wporg"}, "Clorith": {"avatar": "https://wordpress.org/grav-redirect.php?user=Clorith", "profile": "//profiles.wordpress.org/Clorith", "display_name": "Clorith"}, "afragen": {"avatar": "https://wordpress.org/grav-redirect.php?user=afragen", "profile": "//profiles.wordpress.org/afragen", "display_name": "afragen"}}, "last_updated": "2025-07-18 06:57pm GMT", "requires_php": "7.4", "download_link": "https://api.github.com/repos/afragen/handbook-callout-blocks/releases/assets/274184925", "release_asset": true, "primary_branch": "main", "active_installs": 0, "aspiresync_meta": {"slug": "handbook-callout-blocks", "type": "plugin", "origin": "gu", "status": "open", "gu_base": "https://fair.git-updater.com/wp-json/git-updater/v1"}, "requires_plugins": [], "short_description": "The make.wordpress.org blog has wonderful callout blocks but they seem to be baked in as part of the WP.org Handbook plugin.\nI was able to strip ou..."}'); - - --- --- Data for Name: request_data; Type: TABLE DATA; Schema: public; Owner: postgres --- - - - --- --- Data for Name: role_has_permissions; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.role_has_permissions VALUES (1, 1); -INSERT INTO public.role_has_permissions VALUES (2, 1); -INSERT INTO public.role_has_permissions VALUES (1, 2); -INSERT INTO public.role_has_permissions VALUES (2, 2); - - --- --- Data for Name: roles; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.roles VALUES (1, 'SuperAdmin', 'web', '2025-10-29 15:49:04+00', '2025-10-29 15:49:04+00'); -INSERT INTO public.roles VALUES (2, 'RepoAdmin', 'web', '2025-10-29 15:49:04+00', '2025-10-29 15:49:04+00'); -INSERT INTO public.roles VALUES (3, 'Staff', 'web', '2025-10-29 15:49:04+00', '2025-10-29 15:49:04+00'); -INSERT INTO public.roles VALUES (4, 'User', 'web', '2025-10-29 15:49:04+00', '2025-10-29 15:49:04+00'); -INSERT INTO public.roles VALUES (5, 'Guest', 'web', '2025-10-29 15:49:04+00', '2025-10-29 15:49:04+00'); - - --- --- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: postgres --- - - - --- --- Data for Name: theme_tags; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.theme_tags VALUES ('019a30c1-692a-7188-817d-91af1c3b7f88', 'blog', 'Blog'); -INSERT INTO public.theme_tags VALUES ('019a30c1-692b-70a5-b18c-04860d9e584b', 'e-commerce', 'E-commerce'); -INSERT INTO public.theme_tags VALUES ('019a30c1-692b-70a5-b18c-04860db86d49', 'one-column', 'One column'); -INSERT INTO public.theme_tags VALUES ('019a30c1-692c-72e1-adbb-00a341540470', 'custom-logo', 'Custom logo'); -INSERT INTO public.theme_tags VALUES ('019a30c1-692c-72e1-adbb-00a3419a4616', 'custom-menu', 'Custom menu'); -INSERT INTO public.theme_tags VALUES ('019a30c1-692d-71b8-b046-1db949fce800', 'two-columns', 'Two columns'); -INSERT INTO public.theme_tags VALUES ('019a30c1-692e-717e-bed5-19405bd3afa2', 'editor-style', 'Editor style'); -INSERT INTO public.theme_tags VALUES ('019a30c1-692e-717e-bed5-19405cafa716', 'custom-header', 'Custom header'); -INSERT INTO public.theme_tags VALUES ('019a30c1-692f-7189-b82c-282a6df08dde', 'right-sidebar', 'Right sidebar'); -INSERT INTO public.theme_tags VALUES ('019a30c1-692f-7189-b82c-282a6ee7c504', 'footer-widgets', 'Footer widgets'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6930-7126-a3d6-7678e0b5103a', 'featured-images', 'Featured images'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6930-7126-a3d6-7678e1169d27', 'custom-background', 'Custom background'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6931-7120-bce8-77933f1196a4', 'threaded-comments', 'Threaded comments'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6931-7120-bce8-77933f5c8639', 'translation-ready', 'Translation ready'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6932-72d3-96c5-bcb3afdc9d8f', 'full-width-template', 'Full width template'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6932-72d3-96c5-bcb3b0b9a8f8', 'rtl-language-support', 'RTL language support'); -INSERT INTO public.theme_tags VALUES ('019a30c1-693e-708d-9e73-17bac805c0de', 'sticky-post', 'Sticky post'); -INSERT INTO public.theme_tags VALUES ('019a30c1-693f-7319-889b-df1bab59362b', 'left-sidebar', 'Left sidebar'); -INSERT INTO public.theme_tags VALUES ('019a30c1-693f-7319-889b-df1babf88fb6', 'custom-colors', 'Custom colors'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6940-7203-abda-56a03c4fde49', 'theme-options', 'Theme options'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6941-71ca-afd6-0a164e039fc3', 'three-columns', 'Three columns'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6941-71ca-afd6-0a164e8255d7', 'food-and-drink', 'Food & drink'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6942-712a-875e-86c688da1d6f', 'flexible-header', 'Flexible header'); -INSERT INTO public.theme_tags VALUES ('019a30c1-694e-708a-a3bb-54e0826c87d4', 'microformats', 'Microformats'); -INSERT INTO public.theme_tags VALUES ('019a30c1-694f-719f-b5b5-24b823150d4b', 'post-formats', 'Post formats'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6950-7347-bc8a-96b7a45edd65', 'entertainment', 'Entertainment'); -INSERT INTO public.theme_tags VALUES ('019a30c1-695a-70a3-b5c2-3222eeaa895b', 'portfolio', 'Portfolio'); -INSERT INTO public.theme_tags VALUES ('019a30c1-695c-7356-8a47-05dcbe44635c', 'wide-blocks', 'Wide blocks'); -INSERT INTO public.theme_tags VALUES ('019a30c1-695c-7356-8a47-05dcbe60046d', 'block-styles', 'Block editor styles'); -INSERT INTO public.theme_tags VALUES ('019a30c1-695e-7192-9c1c-454ea10af30c', 'block-patterns', 'Block editor patterns'); -INSERT INTO public.theme_tags VALUES ('019a30c1-695f-7174-b0fb-f697bbfa97e2', 'full-site-editing', 'Block themes'); -INSERT INTO public.theme_tags VALUES ('019a30c1-696b-70c7-8ca2-32f230c2ffd1', 'grid-layout', 'Grid layout'); -INSERT INTO public.theme_tags VALUES ('019a30c1-696d-7272-9ea6-96c1bec865da', 'four-columns', 'Four columns'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6970-71a6-ab1b-6a4e164e2001', 'accessibility-ready', 'Accessibility ready'); -INSERT INTO public.theme_tags VALUES ('019a30c1-697a-7144-8d19-c3a079ad4b31', 'news', 'News'); -INSERT INTO public.theme_tags VALUES ('019a30c1-69bc-72f8-a0ac-790ae84e77d6', 'template-editing', 'Template editing'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6a13-71a2-8aa5-cb560e856b43', 'style-variations', 'Style variations'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6a15-709d-ba1c-bcc8b0786462', 'featured-image-header', 'Featured image header'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6a74-720c-af43-37247a494c97', 'buddypress', 'BuddyPress'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6b58-7388-8be7-2f10735db6e9', 'photography', 'Photography'); -INSERT INTO public.theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30f396e52', 'education', 'Education'); - - --- --- Data for Name: theme_theme_tags; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-693b-72c6-abee-84911f3df347', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-694e-708a-a3bb-54e0826c87d4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-696d-7272-9ea6-96c1bec865da'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-694e-708a-a3bb-54e0826c87d4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-69bc-72f8-a0ac-790ae84e77d6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-696d-7272-9ea6-96c1bec865da'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69eb-7311-b881-48520e426884', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-696d-7272-9ea6-96c1bec865da'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-69bc-72f8-a0ac-790ae84e77d6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-69bc-72f8-a0ac-790ae84e77d6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-6a74-720c-af43-37247a494c97'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aab-7343-be8f-2172fa3c6723', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aab-7343-be8f-2172fa3c6723', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aab-7343-be8f-2172fa3c6723', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aab-7343-be8f-2172fa3c6723', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aab-7343-be8f-2172fa3c6723', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aab-7343-be8f-2172fa3c6723', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aab-7343-be8f-2172fa3c6723', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aab-7343-be8f-2172fa3c6723', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aab-7343-be8f-2172fa3c6723', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ab2-7315-b104-0d5f0704581f', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ab2-7315-b104-0d5f0704581f', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ab2-7315-b104-0d5f0704581f', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ab2-7315-b104-0d5f0704581f', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ab2-7315-b104-0d5f0704581f', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ab2-7315-b104-0d5f0704581f', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ab2-7315-b104-0d5f0704581f', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ab2-7315-b104-0d5f0704581f', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ab2-7315-b104-0d5f0704581f', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aba-70df-8320-957071c0b084', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aba-70df-8320-957071c0b084', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aba-70df-8320-957071c0b084', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aba-70df-8320-957071c0b084', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aba-70df-8320-957071c0b084', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aba-70df-8320-957071c0b084', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aba-70df-8320-957071c0b084', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aba-70df-8320-957071c0b084', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6aba-70df-8320-957071c0b084', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-69bc-72f8-a0ac-790ae84e77d6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-6b58-7388-8be7-2f10735db6e9'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-696d-7272-9ea6-96c1bec865da'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-696d-7272-9ea6-96c1bec865da'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-696d-7272-9ea6-96c1bec865da'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-69bc-72f8-a0ac-790ae84e77d6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-6a74-720c-af43-37247a494c97'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-696d-7272-9ea6-96c1bec865da'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-69bc-72f8-a0ac-790ae84e77d6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-69bc-72f8-a0ac-790ae84e77d6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-696d-7272-9ea6-96c1bec865da'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-694e-708a-a3bb-54e0826c87d4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-696d-7272-9ea6-96c1bec865da'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-6c34-7043-a418-cac30f396e52'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-696d-7272-9ea6-96c1bec865da'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c34-7043-a418-cac30e683280', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-6b58-7388-8be7-2f10735db6e9'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-69bc-72f8-a0ac-790ae84e77d6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-6c34-7043-a418-cac30f396e52'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-6c34-7043-a418-cac30f396e52'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-694e-708a-a3bb-54e0826c87d4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-694e-708a-a3bb-54e0826c87d4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-694e-708a-a3bb-54e0826c87d4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-6941-71ca-afd6-0a164e039fc3'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-694e-708a-a3bb-54e0826c87d4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-694e-708a-a3bb-54e0826c87d4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', '019a30c1-6a15-709d-ba1c-bcc8b0786462'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-694e-708a-a3bb-54e0826c87d4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-6942-712a-875e-86c688da1d6f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-6a13-71a2-8aa5-cb560e856b43'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-6970-71a6-ab1b-6a4e164e2001'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-694f-719f-b5b5-24b823150d4b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-696b-70c7-8ca2-32f230c2ffd1'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-6950-7347-bc8a-96b7a45edd65'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-6941-71ca-afd6-0a164e8255d7'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-692e-717e-bed5-19405cafa716'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-695a-70a3-b5c2-3222eeaa895b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-692c-72e1-adbb-00a3419a4616'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-693e-708d-9e73-17bac805c0de'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-695c-7356-8a47-05dcbe44635c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-695c-7356-8a47-05dcbe60046d'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-692e-717e-bed5-19405bd3afa2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-695e-7192-9c1c-454ea10af30c'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-69bc-72f8-a0ac-790ae84e77d6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-695f-7174-b0fb-f697bbfa97e2'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-692a-7188-817d-91af1c3b7f88'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-697a-7144-8d19-c3a079ad4b31'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-692b-70a5-b18c-04860d9e584b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-692b-70a5-b18c-04860db86d49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-692c-72e1-adbb-00a341540470'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-692d-71b8-b046-1db949fce800'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-693f-7319-889b-df1bab59362b'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-693f-7319-889b-df1babf88fb6'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-692f-7189-b82c-282a6df08dde'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-6940-7203-abda-56a03c4fde49'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-692f-7189-b82c-282a6ee7c504'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-6930-7126-a3d6-7678e0b5103a'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-6930-7126-a3d6-7678e1169d27'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-6931-7120-bce8-77933f1196a4'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-6931-7120-bce8-77933f5c8639'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-6932-72d3-96c5-bcb3afdc9d8f'); -INSERT INTO public.theme_theme_tags VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', '019a30c1-6932-72d3-96c5-bcb3b0b9a8f8'); - - --- --- Data for Name: themes; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.themes VALUES ('019a30c1-6928-730d-8a4f-5b3a5e4fbcb8', 'altr', 'Altr', '1.0.2', 'Altr is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/altr/', '019a30c1-6926-72e6-a3c4-dbf8686f02a6', 'https://downloads.wordpress.org/theme/altr.1.0.2.zip', NULL, '5.6', '2024-11-12 11:47:57+00', '2023-06-12 04:26:41+00', 'https://wp-themes.com/altr/', '//ts.w.org/wp-content/themes/altr/screenshot.png?ver=1.0.2', 0, 0, 'https://wordpress.org/support/theme/altr/reviews/', 76917, 9000, 'https://wordpress.org/themes/altr/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Altr", "slug": "altr", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "EnvoThemes", "avatar": "https://secure.gravatar.com/avatar/fbfb6069115a2880669be42a480c105d8702f5ba9930b034b3a4223a495931a5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/envothemes/", "author_url": "https://envothemes.com/", "display_name": "EnvoThemes", "user_nicename": "envothemes"}, "parent": {"name": "Entr", "slug": "entr", "homepage": "https://wordpress.org/themes/entr/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.2", "homepage": "https://wordpress.org/themes/altr/", "requires": false, "sections": {"description": "Altr is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/altr/"}, "template": "entr", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/altr.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/altr.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/altr.1.0.2.zip"}, "downloaded": 76917, "num_ratings": 0, "preview_url": "https://wp-themes.com/altr/", "reviews_url": "https://wordpress.org/support/theme/altr/reviews/", "is_community": false, "last_updated": "2024-11-12", "requires_php": "5.6", "creation_time": "2023-06-12 04:26:41", "download_link": "https://downloads.wordpress.org/theme/altr.1.0.2.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/altr/screenshot.png?ver=1.0.2", "active_installs": 9000, "aspiresync_meta": {"id": "019a30c0-027d-72cf-9ef5-0f8354725b16", "name": "Altr", "slug": "altr", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1731369600, "version": "1.0.2"}, "last_updated_time": "2024-11-12 11:47:57", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-693b-72c6-abee-84911f3df347', 'ashe', 'Ashe', '2.262', 'Personal and Multi-Author Free WordPress Blog Theme. Perfect for personal, lifestyle, health & fitness, food, cooking, bakery, travel, beauty, fashion, wedding, photography, news, quotes blog, auto blog, small business website and any other kind of amazing blogs. Minimal, elegant & mobile friendly layout with WooCommerce shop (storefront) support will WOW and inspire your visitors. Well documented and very easy to use even for WordPress beginners. Clean and Modern Responsive design will perfectly showcase your content on any device, even on tablet, mobile & retina displays. Very fast, compatibility with many popular plugins & of course translation & RTL (right to left language) ready, coded with best SEO practices. The theme has features like Text & Image logo, Fullscreen Slider, Header image, Instagram slider widget support, footer menu support, GDPR compatibility plugins support and many more. Works perfectly with all major drag and drop page builders like Elementor, Beaver Builder, Visual Composer, SiteOrigin, Divi. You just need to write and be awesome! TEMPLATE DEMO: https://ashe-free.wp-royal-themes.com/demo/', '019a30c1-66ba-7148-a405-f3d5ab06eee1', 'https://downloads.wordpress.org/theme/ashe.2.262.zip', '4.7', '5.2.4', '2025-10-01 05:39:23+00', '2018-01-22 12:52:23+00', 'https://wp-themes.com/ashe/', '//ts.w.org/wp-content/themes/ashe/screenshot.jpg?ver=2.262', 98, 292, 'https://wordpress.org/support/theme/ashe/reviews/', 2232118, 30000, 'https://wordpress.org/themes/ashe/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Ashe", "slug": "ashe", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "food-and-drink": "Food & drink", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "WP Royal", "avatar": "https://secure.gravatar.com/avatar/078c5c148dcfcc4983cb3fce756683ce03d7aebb69f1fb9e8ea08232e4b01fea?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wproyal/", "author_url": "https://wp-royal-themes.com/", "display_name": "WP Royal", "user_nicename": "wproyal"}, "rating": 98, "status": "open", "ratings": {"1": 5, "2": 1, "3": 0, "4": 5, "5": 281}, "version": "2.262", "homepage": "https://wordpress.org/themes/ashe/", "requires": "4.7", "sections": {"description": "Personal and Multi-Author Free WordPress Blog Theme. Perfect for personal, lifestyle, health & fitness, food, cooking, bakery, travel, beauty, fashion, wedding, photography, news, quotes blog, auto blog, small business website and any other kind of amazing blogs. Minimal, elegant & mobile friendly layout with WooCommerce shop (storefront) support will WOW and inspire your visitors. Well documented and very easy to use even for WordPress beginners. Clean and Modern Responsive design will perfectly showcase your content on any device, even on tablet, mobile & retina displays. Very fast, compatibility with many popular plugins & of course translation & RTL (right to left language) ready, coded with best SEO practices. The theme has features like Text & Image logo, Fullscreen Slider, Header image, Instagram slider widget support, footer menu support, GDPR compatibility plugins support and many more. Works perfectly with all major drag and drop page builders like Elementor, Beaver Builder, Visual Composer, SiteOrigin, Divi. You just need to write and be awesome! TEMPLATE DEMO: https://ashe-free.wp-royal-themes.com/demo/"}, "versions": {"0.1": "https://downloads.wordpress.org/theme/ashe.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/ashe.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/ashe.0.3.zip", "0.4": "https://downloads.wordpress.org/theme/ashe.0.4.zip", "0.5": "https://downloads.wordpress.org/theme/ashe.0.5.zip", "0.6": "https://downloads.wordpress.org/theme/ashe.0.6.zip", "0.7": "https://downloads.wordpress.org/theme/ashe.0.7.zip", "0.8": "https://downloads.wordpress.org/theme/ashe.0.8.zip", "0.9": "https://downloads.wordpress.org/theme/ashe.0.9.zip", "1.0": "https://downloads.wordpress.org/theme/ashe.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/ashe.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/ashe.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/ashe.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/ashe.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/ashe.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/ashe.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/ashe.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/ashe.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/ashe.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/ashe.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/ashe.2.1.zip", "2.11": "https://downloads.wordpress.org/theme/ashe.2.11.zip", "2.12": "https://downloads.wordpress.org/theme/ashe.2.12.zip", "2.13": "https://downloads.wordpress.org/theme/ashe.2.13.zip", "2.14": "https://downloads.wordpress.org/theme/ashe.2.14.zip", "2.15": "https://downloads.wordpress.org/theme/ashe.2.15.zip", "2.16": "https://downloads.wordpress.org/theme/ashe.2.16.zip", "2.17": "https://downloads.wordpress.org/theme/ashe.2.17.zip", "2.18": "https://downloads.wordpress.org/theme/ashe.2.18.zip", "2.19": "https://downloads.wordpress.org/theme/ashe.2.19.zip", "0.9.1": "https://downloads.wordpress.org/theme/ashe.0.9.1.zip", "1.0.1": "https://downloads.wordpress.org/theme/ashe.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/ashe.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/ashe.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/ashe.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/ashe.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/ashe.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/ashe.1.0.7.zip", "1.2.1": "https://downloads.wordpress.org/theme/ashe.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/ashe.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/ashe.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/ashe.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/ashe.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/ashe.1.2.6.zip", "1.3.1": "https://downloads.wordpress.org/theme/ashe.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/ashe.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/ashe.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/ashe.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/ashe.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/ashe.1.3.6.zip", "1.5.1": "https://downloads.wordpress.org/theme/ashe.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/ashe.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/ashe.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/ashe.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/ashe.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/ashe.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/ashe.1.5.7.zip", "1.6.1": "https://downloads.wordpress.org/theme/ashe.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/ashe.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/ashe.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/ashe.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/ashe.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/ashe.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/ashe.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/ashe.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/ashe.1.6.9.zip", "1.7.1": "https://downloads.wordpress.org/theme/ashe.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/ashe.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/ashe.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/ashe.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/ashe.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/ashe.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/ashe.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/ashe.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/ashe.1.7.9.zip", "1.8.1": "https://downloads.wordpress.org/theme/ashe.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/ashe.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/ashe.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/ashe.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/ashe.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/ashe.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/ashe.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/ashe.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/theme/ashe.1.8.9.zip", "1.9.1": "https://downloads.wordpress.org/theme/ashe.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/theme/ashe.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/theme/ashe.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/theme/ashe.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/theme/ashe.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/theme/ashe.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/theme/ashe.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/theme/ashe.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/theme/ashe.1.9.9.zip", "2.191": "https://downloads.wordpress.org/theme/ashe.2.191.zip", "2.192": "https://downloads.wordpress.org/theme/ashe.2.192.zip", "2.193": "https://downloads.wordpress.org/theme/ashe.2.193.zip", "2.194": "https://downloads.wordpress.org/theme/ashe.2.194.zip", "2.195": "https://downloads.wordpress.org/theme/ashe.2.195.zip", "2.196": "https://downloads.wordpress.org/theme/ashe.2.196.zip", "2.197": "https://downloads.wordpress.org/theme/ashe.2.197.zip", "2.198": "https://downloads.wordpress.org/theme/ashe.2.198.zip", "2.199": "https://downloads.wordpress.org/theme/ashe.2.199.zip", "2.200": "https://downloads.wordpress.org/theme/ashe.2.200.zip", "2.201": "https://downloads.wordpress.org/theme/ashe.2.201.zip", "2.202": "https://downloads.wordpress.org/theme/ashe.2.202.zip", "2.203": "https://downloads.wordpress.org/theme/ashe.2.203.zip", "2.204": "https://downloads.wordpress.org/theme/ashe.2.204.zip", "2.205": "https://downloads.wordpress.org/theme/ashe.2.205.zip", "2.206": "https://downloads.wordpress.org/theme/ashe.2.206.zip", "2.207": "https://downloads.wordpress.org/theme/ashe.2.207.zip", "2.208": "https://downloads.wordpress.org/theme/ashe.2.208.zip", "2.209": "https://downloads.wordpress.org/theme/ashe.2.209.zip", "2.210": "https://downloads.wordpress.org/theme/ashe.2.210.zip", "2.211": "https://downloads.wordpress.org/theme/ashe.2.211.zip", "2.212": "https://downloads.wordpress.org/theme/ashe.2.212.zip", "2.213": "https://downloads.wordpress.org/theme/ashe.2.213.zip", "2.214": "https://downloads.wordpress.org/theme/ashe.2.214.zip", "2.215": "https://downloads.wordpress.org/theme/ashe.2.215.zip", "2.216": "https://downloads.wordpress.org/theme/ashe.2.216.zip", "2.217": "https://downloads.wordpress.org/theme/ashe.2.217.zip", "2.218": "https://downloads.wordpress.org/theme/ashe.2.218.zip", "2.219": "https://downloads.wordpress.org/theme/ashe.2.219.zip", "2.220": "https://downloads.wordpress.org/theme/ashe.2.220.zip", "2.221": "https://downloads.wordpress.org/theme/ashe.2.221.zip", "2.222": "https://downloads.wordpress.org/theme/ashe.2.222.zip", "2.223": "https://downloads.wordpress.org/theme/ashe.2.223.zip", "2.224": "https://downloads.wordpress.org/theme/ashe.2.224.zip", "2.225": "https://downloads.wordpress.org/theme/ashe.2.225.zip", "2.226": "https://downloads.wordpress.org/theme/ashe.2.226.zip", "2.227": "https://downloads.wordpress.org/theme/ashe.2.227.zip", "2.228": "https://downloads.wordpress.org/theme/ashe.2.228.zip", "2.229": "https://downloads.wordpress.org/theme/ashe.2.229.zip", "2.230": "https://downloads.wordpress.org/theme/ashe.2.230.zip", "2.231": "https://downloads.wordpress.org/theme/ashe.2.231.zip", "2.232": "https://downloads.wordpress.org/theme/ashe.2.232.zip", "2.233": "https://downloads.wordpress.org/theme/ashe.2.233.zip", "2.234": "https://downloads.wordpress.org/theme/ashe.2.234.zip", "2.235": "https://downloads.wordpress.org/theme/ashe.2.235.zip", "2.236": "https://downloads.wordpress.org/theme/ashe.2.236.zip", "2.237": "https://downloads.wordpress.org/theme/ashe.2.237.zip", "2.238": "https://downloads.wordpress.org/theme/ashe.2.238.zip", "2.239": "https://downloads.wordpress.org/theme/ashe.2.239.zip", "2.240": "https://downloads.wordpress.org/theme/ashe.2.240.zip", "2.241": "https://downloads.wordpress.org/theme/ashe.2.241.zip", "2.242": "https://downloads.wordpress.org/theme/ashe.2.242.zip", "2.243": "https://downloads.wordpress.org/theme/ashe.2.243.zip", "2.244": "https://downloads.wordpress.org/theme/ashe.2.244.zip", "2.245": "https://downloads.wordpress.org/theme/ashe.2.245.zip", "2.246": "https://downloads.wordpress.org/theme/ashe.2.246.zip", "2.247": "https://downloads.wordpress.org/theme/ashe.2.247.zip", "2.248": "https://downloads.wordpress.org/theme/ashe.2.248.zip", "2.249": "https://downloads.wordpress.org/theme/ashe.2.249.zip", "2.250": "https://downloads.wordpress.org/theme/ashe.2.250.zip", "2.251": "https://downloads.wordpress.org/theme/ashe.2.251.zip", "2.252": "https://downloads.wordpress.org/theme/ashe.2.252.zip", "2.253": "https://downloads.wordpress.org/theme/ashe.2.253.zip", "2.254": "https://downloads.wordpress.org/theme/ashe.2.254.zip", "2.255": "https://downloads.wordpress.org/theme/ashe.2.255.zip", "2.256": "https://downloads.wordpress.org/theme/ashe.2.256.zip", "2.257": "https://downloads.wordpress.org/theme/ashe.2.257.zip", "2.258": "https://downloads.wordpress.org/theme/ashe.2.258.zip", "2.259": "https://downloads.wordpress.org/theme/ashe.2.259.zip", "2.260": "https://downloads.wordpress.org/theme/ashe.2.260.zip", "2.261": "https://downloads.wordpress.org/theme/ashe.2.261.zip", "2.262": "https://downloads.wordpress.org/theme/ashe.2.262.zip", "1.7.9.1": "https://downloads.wordpress.org/theme/ashe.1.7.9.1.zip", "1.7.9.2": "https://downloads.wordpress.org/theme/ashe.1.7.9.2.zip", "1.7.9.3": "https://downloads.wordpress.org/theme/ashe.1.7.9.3.zip", "1.9.7.1": "https://downloads.wordpress.org/theme/ashe.1.9.7.1.zip", "1.9.7.2": "https://downloads.wordpress.org/theme/ashe.1.9.7.2.zip", "1.9.7.3": "https://downloads.wordpress.org/theme/ashe.1.9.7.3.zip", "1.9.7.4": "https://downloads.wordpress.org/theme/ashe.1.9.7.4.zip", "1.9.7.5": "https://downloads.wordpress.org/theme/ashe.1.9.7.5.zip", "1.9.7.6": "https://downloads.wordpress.org/theme/ashe.1.9.7.6.zip", "1.9.7.7": "https://downloads.wordpress.org/theme/ashe.1.9.7.7.zip", "1.9.7.8": "https://downloads.wordpress.org/theme/ashe.1.9.7.8.zip", "1.9.7.9": "https://downloads.wordpress.org/theme/ashe.1.9.7.9.zip", "1.9.9.1": "https://downloads.wordpress.org/theme/ashe.1.9.9.1.zip", "1.9.9.2": "https://downloads.wordpress.org/theme/ashe.1.9.9.2.zip", "1.9.9.3": "https://downloads.wordpress.org/theme/ashe.1.9.9.3.zip", "1.9.9.4": "https://downloads.wordpress.org/theme/ashe.1.9.9.4.zip", "1.9.9.5": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.zip", "1.9.7.91": "https://downloads.wordpress.org/theme/ashe.1.9.7.91.zip", "1.9.7.92": "https://downloads.wordpress.org/theme/ashe.1.9.7.92.zip", "1.9.7.93": "https://downloads.wordpress.org/theme/ashe.1.9.7.93.zip", "1.9.7.94": "https://downloads.wordpress.org/theme/ashe.1.9.7.94.zip", "1.9.7.95": "https://downloads.wordpress.org/theme/ashe.1.9.7.95.zip", "1.9.7.96": "https://downloads.wordpress.org/theme/ashe.1.9.7.96.zip", "1.9.7.97": "https://downloads.wordpress.org/theme/ashe.1.9.7.97.zip", "1.9.7.98": "https://downloads.wordpress.org/theme/ashe.1.9.7.98.zip", "1.9.7.99": "https://downloads.wordpress.org/theme/ashe.1.9.7.99.zip", "1.9.9.5.1": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.1.zip", "1.9.9.5.2": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.2.zip", "1.9.9.5.3": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.3.zip", "1.9.9.5.4": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.4.zip", "1.9.9.5.5": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.5.zip", "1.9.9.5.6": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.6.zip", "1.9.9.5.7": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.7.zip", "1.9.9.5.8": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.8.zip", "1.9.9.5.9": "https://downloads.wordpress.org/theme/ashe.1.9.9.5.9.zip", "1.9.7.99.01": "https://downloads.wordpress.org/theme/ashe.1.9.7.99.01.zip", "1.9.7.99.02": "https://downloads.wordpress.org/theme/ashe.1.9.7.99.02.zip", "1.9.7.99.03": "https://downloads.wordpress.org/theme/ashe.1.9.7.99.03.zip"}, "downloaded": 2232118, "num_ratings": 292, "preview_url": "https://wp-themes.com/ashe/", "reviews_url": "https://wordpress.org/support/theme/ashe/reviews/", "is_community": false, "last_updated": "2025-10-01", "requires_php": "5.2.4", "creation_time": "2018-01-22 12:52:23", "download_link": "https://downloads.wordpress.org/theme/ashe.2.262.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/ashe/screenshot.jpg?ver=2.262", "active_installs": 30000, "aspiresync_meta": {"id": "019a30c0-02ac-73d4-8ab6-ea74ed6c4bfa", "name": "Ashe", "slug": "ashe", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1759276800, "version": "2.262"}, "last_updated_time": "2025-10-01 05:39:23", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-694b-71be-9c60-59ccc7fda3f1', 'astra', 'Astra', '4.11.13', 'The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/', '019a30c1-63eb-7299-8a7e-6dc79759a125', 'https://downloads.wordpress.org/theme/astra.4.11.13.zip', '5.3', '5.3', '2025-10-07 09:34:04+00', '2017-05-30 15:45:06+00', 'https://wp-themes.com/astra/', '//ts.w.org/wp-content/themes/astra/screenshot.jpg?ver=4.11.13', 98, 6280, 'https://wordpress.org/support/theme/astra/reviews/', 17921462, 1000000, 'https://wordpress.org/themes/astra/', true, 'https://wpastra.com/contact/', false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Astra", "slug": "astra", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "custom-colors": "Custom colors", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Brainstorm Force", "avatar": "https://secure.gravatar.com/avatar/b9280ac641a862e2e148513dfb9567e56a273b649dbfad5df6867d4700a685d2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/brainstormforce/", "author_url": "https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme", "display_name": "Brainstorm Force", "user_nicename": "brainstormforce"}, "rating": 98, "status": "open", "ratings": {"1": 102, "2": 17, "3": 27, "4": 91, "5": 6043}, "version": "4.11.13", "homepage": "https://wordpress.org/themes/astra/", "requires": "5.3", "sections": {"description": "The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/astra.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/astra.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/astra.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/astra.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/astra.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/astra.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/astra.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/astra.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/astra.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/astra.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/astra.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/astra.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/astra.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/astra.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/astra.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/astra.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/astra.1.1.6.zip", "1.2.0": "https://downloads.wordpress.org/theme/astra.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/astra.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/astra.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/astra.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/astra.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/astra.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/astra.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/astra.1.2.7.zip", "1.3.0": "https://downloads.wordpress.org/theme/astra.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/astra.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/astra.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/astra.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/astra.1.3.4.zip", "1.4.0": "https://downloads.wordpress.org/theme/astra.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/astra.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/astra.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/astra.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/astra.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/astra.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/astra.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/astra.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/astra.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/astra.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/astra.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/astra.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/astra.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/astra.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/astra.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/astra.1.5.5.zip", "1.6.0": "https://downloads.wordpress.org/theme/astra.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/astra.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/astra.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/astra.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/astra.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/astra.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/astra.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/astra.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/astra.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/astra.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/astra.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/astra.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/astra.1.7.2.zip", "1.8.0": "https://downloads.wordpress.org/theme/astra.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/astra.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/astra.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/astra.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/astra.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/astra.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/astra.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/astra.1.8.7.zip", "2.0.0": "https://downloads.wordpress.org/theme/astra.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/astra.2.0.1.zip", "2.1.0": "https://downloads.wordpress.org/theme/astra.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/astra.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/astra.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/astra.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/astra.2.1.4.zip", "2.2.0": "https://downloads.wordpress.org/theme/astra.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/astra.2.2.1.zip", "2.3.0": "https://downloads.wordpress.org/theme/astra.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/astra.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/astra.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/astra.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/astra.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/astra.2.3.5.zip", "2.4.0": "https://downloads.wordpress.org/theme/astra.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/astra.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/astra.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/astra.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/theme/astra.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/theme/astra.2.4.5.zip", "2.5.0": "https://downloads.wordpress.org/theme/astra.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/theme/astra.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/theme/astra.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/theme/astra.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/astra.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/theme/astra.2.5.5.zip", "2.6.0": "https://downloads.wordpress.org/theme/astra.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/astra.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/theme/astra.2.6.2.zip", "3.0.0": "https://downloads.wordpress.org/theme/astra.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/astra.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/astra.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/astra.3.0.3.zip", "3.1.0": "https://downloads.wordpress.org/theme/astra.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/astra.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/astra.3.1.2.zip", "3.2.0": "https://downloads.wordpress.org/theme/astra.3.2.0.zip", "3.3.0": "https://downloads.wordpress.org/theme/astra.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/astra.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/theme/astra.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/theme/astra.3.3.3.zip", "3.4.0": "https://downloads.wordpress.org/theme/astra.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/theme/astra.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/theme/astra.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/theme/astra.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/theme/astra.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/theme/astra.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/theme/astra.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/theme/astra.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/theme/astra.3.4.8.zip", "3.5.0": "https://downloads.wordpress.org/theme/astra.3.5.0.zip", "3.6.0": "https://downloads.wordpress.org/theme/astra.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/theme/astra.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/theme/astra.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/theme/astra.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/theme/astra.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/theme/astra.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/theme/astra.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/theme/astra.3.6.7.zip", "3.6.8": "https://downloads.wordpress.org/theme/astra.3.6.8.zip", "3.6.9": "https://downloads.wordpress.org/theme/astra.3.6.9.zip", "3.7.0": "https://downloads.wordpress.org/theme/astra.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/theme/astra.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/theme/astra.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/theme/astra.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/theme/astra.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/theme/astra.3.7.5.zip", "3.7.6": "https://downloads.wordpress.org/theme/astra.3.7.6.zip", "3.7.7": "https://downloads.wordpress.org/theme/astra.3.7.7.zip", "3.7.8": "https://downloads.wordpress.org/theme/astra.3.7.8.zip", "3.7.9": "https://downloads.wordpress.org/theme/astra.3.7.9.zip", "3.8.0": "https://downloads.wordpress.org/theme/astra.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/theme/astra.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/theme/astra.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/theme/astra.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/theme/astra.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/theme/astra.3.8.5.zip", "3.9.0": "https://downloads.wordpress.org/theme/astra.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/theme/astra.3.9.1.zip", "3.9.2": "https://downloads.wordpress.org/theme/astra.3.9.2.zip", "3.9.3": "https://downloads.wordpress.org/theme/astra.3.9.3.zip", "3.9.4": "https://downloads.wordpress.org/theme/astra.3.9.4.zip", "4.0.0": "https://downloads.wordpress.org/theme/astra.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/astra.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/astra.4.0.2.zip", "4.1.0": "https://downloads.wordpress.org/theme/astra.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/astra.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/astra.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/astra.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/theme/astra.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/theme/astra.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/theme/astra.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/theme/astra.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/theme/astra.4.1.8.zip", "4.2.0": "https://downloads.wordpress.org/theme/astra.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/theme/astra.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/theme/astra.4.2.2.zip", "4.3.0": "https://downloads.wordpress.org/theme/astra.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/theme/astra.4.3.1.zip", "4.4.0": "https://downloads.wordpress.org/theme/astra.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/theme/astra.4.4.1.zip", "4.5.0": "https://downloads.wordpress.org/theme/astra.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/theme/astra.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/theme/astra.4.5.2.zip", "4.6.0": "https://downloads.wordpress.org/theme/astra.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/theme/astra.4.6.1.zip", "4.6.2": "https://downloads.wordpress.org/theme/astra.4.6.2.zip", "4.6.3": "https://downloads.wordpress.org/theme/astra.4.6.3.zip", "4.6.4": "https://downloads.wordpress.org/theme/astra.4.6.4.zip", "4.6.5": "https://downloads.wordpress.org/theme/astra.4.6.5.zip", "4.6.6": "https://downloads.wordpress.org/theme/astra.4.6.6.zip", "4.6.7": "https://downloads.wordpress.org/theme/astra.4.6.7.zip", "4.6.8": "https://downloads.wordpress.org/theme/astra.4.6.8.zip", "4.6.9": "https://downloads.wordpress.org/theme/astra.4.6.9.zip", "4.7.0": "https://downloads.wordpress.org/theme/astra.4.7.0.zip", "4.7.1": "https://downloads.wordpress.org/theme/astra.4.7.1.zip", "4.7.2": "https://downloads.wordpress.org/theme/astra.4.7.2.zip", "4.7.3": "https://downloads.wordpress.org/theme/astra.4.7.3.zip", "4.8.0": "https://downloads.wordpress.org/theme/astra.4.8.0.zip", "4.8.1": "https://downloads.wordpress.org/theme/astra.4.8.1.zip", "4.8.2": "https://downloads.wordpress.org/theme/astra.4.8.2.zip", "4.8.3": "https://downloads.wordpress.org/theme/astra.4.8.3.zip", "4.8.4": "https://downloads.wordpress.org/theme/astra.4.8.4.zip", "4.8.5": "https://downloads.wordpress.org/theme/astra.4.8.5.zip", "4.8.6": "https://downloads.wordpress.org/theme/astra.4.8.6.zip", "4.8.7": "https://downloads.wordpress.org/theme/astra.4.8.7.zip", "4.8.8": "https://downloads.wordpress.org/theme/astra.4.8.8.zip", "4.8.9": "https://downloads.wordpress.org/theme/astra.4.8.9.zip", "4.9.0": "https://downloads.wordpress.org/theme/astra.4.9.0.zip", "4.9.1": "https://downloads.wordpress.org/theme/astra.4.9.1.zip", "4.9.2": "https://downloads.wordpress.org/theme/astra.4.9.2.zip", "1.0.10": "https://downloads.wordpress.org/theme/astra.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/astra.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/astra.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/astra.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/theme/astra.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/theme/astra.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/theme/astra.1.0.16.zip", "1.0.17": "https://downloads.wordpress.org/theme/astra.1.0.17.zip", "1.0.18": "https://downloads.wordpress.org/theme/astra.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/theme/astra.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/astra.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/astra.1.0.21.zip", "1.0.22": "https://downloads.wordpress.org/theme/astra.1.0.22.zip", "1.0.23": "https://downloads.wordpress.org/theme/astra.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/theme/astra.1.0.24.zip", "1.0.25": "https://downloads.wordpress.org/theme/astra.1.0.25.zip", "1.0.26": "https://downloads.wordpress.org/theme/astra.1.0.26.zip", "1.0.27": "https://downloads.wordpress.org/theme/astra.1.0.27.zip", "1.0.28": "https://downloads.wordpress.org/theme/astra.1.0.28.zip", "1.0.29": "https://downloads.wordpress.org/theme/astra.1.0.29.zip", "1.0.30": "https://downloads.wordpress.org/theme/astra.1.0.30.zip", "1.0.31": "https://downloads.wordpress.org/theme/astra.1.0.31.zip", "1.0.32": "https://downloads.wordpress.org/theme/astra.1.0.32.zip", "1.4.10": "https://downloads.wordpress.org/theme/astra.1.4.10.zip", "3.7.10": "https://downloads.wordpress.org/theme/astra.3.7.10.zip", "4.10.0": "https://downloads.wordpress.org/theme/astra.4.10.0.zip", "4.10.1": "https://downloads.wordpress.org/theme/astra.4.10.1.zip", "4.11.0": "https://downloads.wordpress.org/theme/astra.4.11.0.zip", "4.11.1": "https://downloads.wordpress.org/theme/astra.4.11.1.zip", "4.11.2": "https://downloads.wordpress.org/theme/astra.4.11.2.zip", "4.11.3": "https://downloads.wordpress.org/theme/astra.4.11.3.zip", "4.11.4": "https://downloads.wordpress.org/theme/astra.4.11.4.zip", "4.11.5": "https://downloads.wordpress.org/theme/astra.4.11.5.zip", "4.11.6": "https://downloads.wordpress.org/theme/astra.4.11.6.zip", "4.11.7": "https://downloads.wordpress.org/theme/astra.4.11.7.zip", "4.11.8": "https://downloads.wordpress.org/theme/astra.4.11.8.zip", "4.11.9": "https://downloads.wordpress.org/theme/astra.4.11.9.zip", "4.6.10": "https://downloads.wordpress.org/theme/astra.4.6.10.zip", "4.6.11": "https://downloads.wordpress.org/theme/astra.4.6.11.zip", "4.6.12": "https://downloads.wordpress.org/theme/astra.4.6.12.zip", "4.6.13": "https://downloads.wordpress.org/theme/astra.4.6.13.zip", "4.6.14": "https://downloads.wordpress.org/theme/astra.4.6.14.zip", "4.6.15": "https://downloads.wordpress.org/theme/astra.4.6.15.zip", "4.6.16": "https://downloads.wordpress.org/theme/astra.4.6.16.zip", "4.8.10": "https://downloads.wordpress.org/theme/astra.4.8.10.zip", "4.8.11": "https://downloads.wordpress.org/theme/astra.4.8.11.zip", "4.8.12": "https://downloads.wordpress.org/theme/astra.4.8.12.zip", "4.8.13": "https://downloads.wordpress.org/theme/astra.4.8.13.zip", "1.0.3.1": "https://downloads.wordpress.org/theme/astra.1.0.3.1.zip", "1.0.4.1": "https://downloads.wordpress.org/theme/astra.1.0.4.1.zip", "1.0.5.1": "https://downloads.wordpress.org/theme/astra.1.0.5.1.zip", "1.0.5.2": "https://downloads.wordpress.org/theme/astra.1.0.5.2.zip", "1.2.7.1": "https://downloads.wordpress.org/theme/astra.1.2.7.1.zip", "1.2.7.2": "https://downloads.wordpress.org/theme/astra.1.2.7.2.zip", "4.11.10": "https://downloads.wordpress.org/theme/astra.4.11.10.zip", "4.11.11": "https://downloads.wordpress.org/theme/astra.4.11.11.zip", "4.11.12": "https://downloads.wordpress.org/theme/astra.4.11.12.zip", "4.11.13": "https://downloads.wordpress.org/theme/astra.4.11.13.zip"}, "downloaded": 17921462, "num_ratings": 6280, "preview_url": "https://wp-themes.com/astra/", "reviews_url": "https://wordpress.org/support/theme/astra/reviews/", "is_community": false, "last_updated": "2025-10-07", "requires_php": "5.3", "creation_time": "2017-05-30 15:45:06", "download_link": "https://downloads.wordpress.org/theme/astra.4.11.13.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/astra/screenshot.jpg?ver=4.11.13", "active_installs": 1000000, "aspiresync_meta": {"id": "019a30c0-028f-71f1-acbb-b4d0fa6db53f", "name": "Astra", "slug": "astra", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1759795200, "version": "4.11.13"}, "last_updated_time": "2025-10-07 09:34:04", "external_support_url": "https://wpastra.com/contact/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6959-73e4-8ad1-36ff8bdc3e6f', 'bizora', 'Bizora', '1.0.2', 'Bizora is a sleek and professional Full Site Editing (FSE) WordPress theme crafted for modern businesses, startups, agencies, consulting firms, corporate websites, digital marketing companies, finance, IT solutions, SaaS, and technology-driven projects. With its intuitive design and no-coding customization, you can effortlessly build and tailor every part of your site—from headers to footers. Packed with pre-built templates, block patterns, and multiple style variations, Bizora ensures your website looks polished, responsive, and ready to impress clients. Perfect for creating a strong online presence with speed, flexibility, and style. Check the real demo: https://demos.trendthemeswp.com/bizora', '019a30c1-6958-73fb-b2c7-aa420214f566', 'https://downloads.wordpress.org/theme/bizora.1.0.2.zip', '5.9', '7.4', '2025-09-18 05:15:40+00', '2025-09-07 23:31:37+00', 'https://wp-themes.com/bizora/', '//ts.w.org/wp-content/themes/bizora/screenshot.png?ver=1.0.2', 100, 1, 'https://wordpress.org/support/theme/bizora/reviews/', 4642, 700, 'https://wordpress.org/themes/bizora/', true, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Bizora", "slug": "bizora", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Trendthemeswp", "avatar": "https://secure.gravatar.com/avatar/26b40ba9be0990132fd6aa8d0fe4896dac201d320aa8cd73559bb62d80c614c3?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/trendsthemeswp/", "author_url": "https://trendthemeswp.com", "display_name": "trendsthemeswp", "user_nicename": "trendsthemeswp"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 1}, "version": "1.0.2", "homepage": "https://wordpress.org/themes/bizora/", "requires": "5.9", "sections": {"description": "Bizora is a sleek and professional Full Site Editing (FSE) WordPress theme crafted for modern businesses, startups, agencies, consulting firms, corporate websites, digital marketing companies, finance, IT solutions, SaaS, and technology-driven projects. With its intuitive design and no-coding customization, you can effortlessly build and tailor every part of your site—from headers to footers. Packed with pre-built templates, block patterns, and multiple style variations, Bizora ensures your website looks polished, responsive, and ready to impress clients. Perfect for creating a strong online presence with speed, flexibility, and style. Check the real demo: https://demos.trendthemeswp.com/bizora"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/bizora.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/bizora.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/bizora.1.0.2.zip"}, "downloaded": 4642, "num_ratings": 1, "preview_url": "https://wp-themes.com/bizora/", "reviews_url": "https://wordpress.org/support/theme/bizora/reviews/", "is_community": false, "last_updated": "2025-09-18", "requires_php": "7.4", "creation_time": "2025-09-07 23:31:37", "download_link": "https://downloads.wordpress.org/theme/bizora.1.0.2.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/bizora/screenshot.png?ver=1.0.2", "active_installs": 700, "aspiresync_meta": {"id": "019a30c0-0295-72e0-93b6-03b3adf643bb", "name": "Bizora", "slug": "bizora", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1758153600, "version": "1.0.2"}, "last_updated_time": "2025-09-18 05:15:40", "external_support_url": "", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6969-738d-9c00-e7244b1a7893', 'blocksy', 'Blocksy', '2.1.17', 'Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor.', '019a30c1-6968-7156-ae53-7f54fc589d43', 'https://downloads.wordpress.org/theme/blocksy.2.1.17.zip', '6.5', '7.0', '2025-10-17 16:13:10+00', '2019-05-10 06:18:06+00', 'https://wp-themes.com/blocksy/', '//ts.w.org/wp-content/themes/blocksy/screenshot.jpg?ver=2.1.17', 100, 860, 'https://wordpress.org/support/theme/blocksy/reviews/', 5385745, 200000, 'https://wordpress.org/themes/blocksy/', true, 'https://creativethemes.com/blocksy/support/', false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Blocksy", "slug": "blocksy", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template"}, "author": {"author": "CreativeThemes", "avatar": "https://secure.gravatar.com/avatar/679bab9304179db1c86bd6c2b263379ec4d2c2ecbd3839830ebd15b23aa7d311?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/creativethemeshq/", "author_url": "https://creativethemes.com", "display_name": "Creative Themes", "user_nicename": "creativethemeshq"}, "rating": 100, "status": "open", "ratings": {"1": 4, "2": 2, "3": 2, "4": 2, "5": 850}, "version": "2.1.17", "homepage": "https://wordpress.org/themes/blocksy/", "requires": "6.5", "sections": {"description": "Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor."}, "versions": {"1.0.4": "https://downloads.wordpress.org/theme/blocksy.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/blocksy.1.0.5.zip", "1.0.7": "https://downloads.wordpress.org/theme/blocksy.1.0.7.zip", "1.1.2": "https://downloads.wordpress.org/theme/blocksy.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/blocksy.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/blocksy.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/blocksy.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/blocksy.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/blocksy.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/blocksy.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/blocksy.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/blocksy.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/blocksy.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/blocksy.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/blocksy.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/blocksy.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/blocksy.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/blocksy.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/blocksy.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/blocksy.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/blocksy.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/blocksy.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/blocksy.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/blocksy.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/blocksy.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/blocksy.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/blocksy.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/blocksy.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/blocksy.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/blocksy.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/blocksy.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/blocksy.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/blocksy.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/blocksy.1.4.2.zip", "1.5.0": "https://downloads.wordpress.org/theme/blocksy.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/blocksy.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/blocksy.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/blocksy.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/blocksy.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/blocksy.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/blocksy.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/blocksy.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/blocksy.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/blocksy.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/blocksy.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/blocksy.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/blocksy.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/blocksy.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/blocksy.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/blocksy.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/blocksy.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/blocksy.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/blocksy.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/blocksy.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/blocksy.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/blocksy.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/blocksy.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/blocksy.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/blocksy.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/blocksy.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/blocksy.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/blocksy.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/blocksy.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/blocksy.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/theme/blocksy.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/blocksy.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/blocksy.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/blocksy.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/blocksy.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/blocksy.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/blocksy.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/blocksy.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/blocksy.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/theme/blocksy.1.8.9.zip", "1.9.0": "https://downloads.wordpress.org/theme/blocksy.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/theme/blocksy.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/theme/blocksy.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/theme/blocksy.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/theme/blocksy.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/theme/blocksy.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/theme/blocksy.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/theme/blocksy.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/theme/blocksy.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/theme/blocksy.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/theme/blocksy.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/blocksy.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/blocksy.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/blocksy.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/blocksy.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/blocksy.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/blocksy.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/blocksy.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/blocksy.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/blocksy.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/blocksy.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/blocksy.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/blocksy.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/blocksy.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/blocksy.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/blocksy.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/blocksy.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/blocksy.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/blocksy.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/theme/blocksy.2.1.9.zip", "1.1.10": "https://downloads.wordpress.org/theme/blocksy.1.1.10.zip", "1.1.11": "https://downloads.wordpress.org/theme/blocksy.1.1.11.zip", "1.1.12": "https://downloads.wordpress.org/theme/blocksy.1.1.12.zip", "1.1.13": "https://downloads.wordpress.org/theme/blocksy.1.1.13.zip", "1.1.14": "https://downloads.wordpress.org/theme/blocksy.1.1.14.zip", "1.1.16": "https://downloads.wordpress.org/theme/blocksy.1.1.16.zip", "1.1.17": "https://downloads.wordpress.org/theme/blocksy.1.1.17.zip", "1.1.18": "https://downloads.wordpress.org/theme/blocksy.1.1.18.zip", "1.1.19": "https://downloads.wordpress.org/theme/blocksy.1.1.19.zip", "1.2.10": "https://downloads.wordpress.org/theme/blocksy.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/theme/blocksy.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/theme/blocksy.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/theme/blocksy.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/theme/blocksy.1.2.14.zip", "1.5.10": "https://downloads.wordpress.org/theme/blocksy.1.5.10.zip", "1.6.10": "https://downloads.wordpress.org/theme/blocksy.1.6.10.zip", "1.6.11": "https://downloads.wordpress.org/theme/blocksy.1.6.11.zip", "1.6.12": "https://downloads.wordpress.org/theme/blocksy.1.6.12.zip", "1.6.13": "https://downloads.wordpress.org/theme/blocksy.1.6.13.zip", "1.6.14": "https://downloads.wordpress.org/theme/blocksy.1.6.14.zip", "1.6.15": "https://downloads.wordpress.org/theme/blocksy.1.6.15.zip", "1.6.16": "https://downloads.wordpress.org/theme/blocksy.1.6.16.zip", "1.7.10": "https://downloads.wordpress.org/theme/blocksy.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/theme/blocksy.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/theme/blocksy.1.7.12.zip", "1.7.13": "https://downloads.wordpress.org/theme/blocksy.1.7.13.zip", "1.7.14": "https://downloads.wordpress.org/theme/blocksy.1.7.14.zip", "1.7.15": "https://downloads.wordpress.org/theme/blocksy.1.7.15.zip", "1.7.16": "https://downloads.wordpress.org/theme/blocksy.1.7.16.zip", "1.7.17": "https://downloads.wordpress.org/theme/blocksy.1.7.17.zip", "1.7.18": "https://downloads.wordpress.org/theme/blocksy.1.7.18.zip", "1.7.19": "https://downloads.wordpress.org/theme/blocksy.1.7.19.zip", "1.7.20": "https://downloads.wordpress.org/theme/blocksy.1.7.20.zip", "1.7.21": "https://downloads.wordpress.org/theme/blocksy.1.7.21.zip", "1.7.22": "https://downloads.wordpress.org/theme/blocksy.1.7.22.zip", "1.7.23": "https://downloads.wordpress.org/theme/blocksy.1.7.23.zip", "1.7.24": "https://downloads.wordpress.org/theme/blocksy.1.7.24.zip", "1.7.25": "https://downloads.wordpress.org/theme/blocksy.1.7.25.zip", "1.7.26": "https://downloads.wordpress.org/theme/blocksy.1.7.26.zip", "1.7.27": "https://downloads.wordpress.org/theme/blocksy.1.7.27.zip", "1.7.28": "https://downloads.wordpress.org/theme/blocksy.1.7.28.zip", "1.7.29": "https://downloads.wordpress.org/theme/blocksy.1.7.29.zip", "1.7.30": "https://downloads.wordpress.org/theme/blocksy.1.7.30.zip", "1.7.31": "https://downloads.wordpress.org/theme/blocksy.1.7.31.zip", "1.7.32": "https://downloads.wordpress.org/theme/blocksy.1.7.32.zip", "1.7.33": "https://downloads.wordpress.org/theme/blocksy.1.7.33.zip", "1.7.34": "https://downloads.wordpress.org/theme/blocksy.1.7.34.zip", "1.7.35": "https://downloads.wordpress.org/theme/blocksy.1.7.35.zip", "1.7.36": "https://downloads.wordpress.org/theme/blocksy.1.7.36.zip", "1.7.37": "https://downloads.wordpress.org/theme/blocksy.1.7.37.zip", "1.7.38": "https://downloads.wordpress.org/theme/blocksy.1.7.38.zip", "1.7.39": "https://downloads.wordpress.org/theme/blocksy.1.7.39.zip", "1.7.40": "https://downloads.wordpress.org/theme/blocksy.1.7.40.zip", "1.7.41": "https://downloads.wordpress.org/theme/blocksy.1.7.41.zip", "1.7.42": "https://downloads.wordpress.org/theme/blocksy.1.7.42.zip", "1.7.43": "https://downloads.wordpress.org/theme/blocksy.1.7.43.zip", "1.7.44": "https://downloads.wordpress.org/theme/blocksy.1.7.44.zip", "1.7.45": "https://downloads.wordpress.org/theme/blocksy.1.7.45.zip", "1.7.46": "https://downloads.wordpress.org/theme/blocksy.1.7.46.zip", "1.7.47": "https://downloads.wordpress.org/theme/blocksy.1.7.47.zip", "1.7.48": "https://downloads.wordpress.org/theme/blocksy.1.7.48.zip", "1.7.49": "https://downloads.wordpress.org/theme/blocksy.1.7.49.zip", "1.7.50": "https://downloads.wordpress.org/theme/blocksy.1.7.50.zip", "1.7.51": "https://downloads.wordpress.org/theme/blocksy.1.7.51.zip", "1.7.52": "https://downloads.wordpress.org/theme/blocksy.1.7.52.zip", "1.7.53": "https://downloads.wordpress.org/theme/blocksy.1.7.53.zip", "1.7.54": "https://downloads.wordpress.org/theme/blocksy.1.7.54.zip", "1.7.55": "https://downloads.wordpress.org/theme/blocksy.1.7.55.zip", "1.7.56": "https://downloads.wordpress.org/theme/blocksy.1.7.56.zip", "1.7.57": "https://downloads.wordpress.org/theme/blocksy.1.7.57.zip", "1.7.58": "https://downloads.wordpress.org/theme/blocksy.1.7.58.zip", "1.7.59": "https://downloads.wordpress.org/theme/blocksy.1.7.59.zip", "1.7.60": "https://downloads.wordpress.org/theme/blocksy.1.7.60.zip", "1.7.61": "https://downloads.wordpress.org/theme/blocksy.1.7.61.zip", "1.7.62": "https://downloads.wordpress.org/theme/blocksy.1.7.62.zip", "1.7.63": "https://downloads.wordpress.org/theme/blocksy.1.7.63.zip", "1.7.64": "https://downloads.wordpress.org/theme/blocksy.1.7.64.zip", "1.7.65": "https://downloads.wordpress.org/theme/blocksy.1.7.65.zip", "1.7.66": "https://downloads.wordpress.org/theme/blocksy.1.7.66.zip", "1.7.67": "https://downloads.wordpress.org/theme/blocksy.1.7.67.zip", "1.7.68": "https://downloads.wordpress.org/theme/blocksy.1.7.68.zip", "1.7.69": "https://downloads.wordpress.org/theme/blocksy.1.7.69.zip", "1.7.70": "https://downloads.wordpress.org/theme/blocksy.1.7.70.zip", "1.7.71": "https://downloads.wordpress.org/theme/blocksy.1.7.71.zip", "1.8.10": "https://downloads.wordpress.org/theme/blocksy.1.8.10.zip", "1.8.11": "https://downloads.wordpress.org/theme/blocksy.1.8.11.zip", "1.8.12": "https://downloads.wordpress.org/theme/blocksy.1.8.12.zip", "1.8.13": "https://downloads.wordpress.org/theme/blocksy.1.8.13.zip", "1.8.14": "https://downloads.wordpress.org/theme/blocksy.1.8.14.zip", "1.8.15": "https://downloads.wordpress.org/theme/blocksy.1.8.15.zip", "1.8.16": "https://downloads.wordpress.org/theme/blocksy.1.8.16.zip", "1.8.17": "https://downloads.wordpress.org/theme/blocksy.1.8.17.zip", "1.8.18": "https://downloads.wordpress.org/theme/blocksy.1.8.18.zip", "1.8.19": "https://downloads.wordpress.org/theme/blocksy.1.8.19.zip", "1.8.20": "https://downloads.wordpress.org/theme/blocksy.1.8.20.zip", "1.8.21": "https://downloads.wordpress.org/theme/blocksy.1.8.21.zip", "1.8.22": "https://downloads.wordpress.org/theme/blocksy.1.8.22.zip", "1.8.23": "https://downloads.wordpress.org/theme/blocksy.1.8.23.zip", "1.8.24": "https://downloads.wordpress.org/theme/blocksy.1.8.24.zip", "1.8.25": "https://downloads.wordpress.org/theme/blocksy.1.8.25.zip", "1.8.26": "https://downloads.wordpress.org/theme/blocksy.1.8.26.zip", "1.8.27": "https://downloads.wordpress.org/theme/blocksy.1.8.27.zip", "1.8.28": "https://downloads.wordpress.org/theme/blocksy.1.8.28.zip", "1.8.29": "https://downloads.wordpress.org/theme/blocksy.1.8.29.zip", "1.8.30": "https://downloads.wordpress.org/theme/blocksy.1.8.30.zip", "1.8.31": "https://downloads.wordpress.org/theme/blocksy.1.8.31.zip", "1.8.32": "https://downloads.wordpress.org/theme/blocksy.1.8.32.zip", "1.8.33": "https://downloads.wordpress.org/theme/blocksy.1.8.33.zip", "1.8.34": "https://downloads.wordpress.org/theme/blocksy.1.8.34.zip", "1.8.35": "https://downloads.wordpress.org/theme/blocksy.1.8.35.zip", "1.8.36": "https://downloads.wordpress.org/theme/blocksy.1.8.36.zip", "1.8.37": "https://downloads.wordpress.org/theme/blocksy.1.8.37.zip", "1.8.38": "https://downloads.wordpress.org/theme/blocksy.1.8.38.zip", "1.8.39": "https://downloads.wordpress.org/theme/blocksy.1.8.39.zip", "1.8.40": "https://downloads.wordpress.org/theme/blocksy.1.8.40.zip", "1.8.41": "https://downloads.wordpress.org/theme/blocksy.1.8.41.zip", "1.8.42": "https://downloads.wordpress.org/theme/blocksy.1.8.42.zip", "1.8.43": "https://downloads.wordpress.org/theme/blocksy.1.8.43.zip", "1.8.44": "https://downloads.wordpress.org/theme/blocksy.1.8.44.zip", "1.8.45": "https://downloads.wordpress.org/theme/blocksy.1.8.45.zip", "1.8.46": "https://downloads.wordpress.org/theme/blocksy.1.8.46.zip", "1.8.47": "https://downloads.wordpress.org/theme/blocksy.1.8.47.zip", "1.8.49": "https://downloads.wordpress.org/theme/blocksy.1.8.49.zip", "1.8.50": "https://downloads.wordpress.org/theme/blocksy.1.8.50.zip", "1.8.51": "https://downloads.wordpress.org/theme/blocksy.1.8.51.zip", "1.8.52": "https://downloads.wordpress.org/theme/blocksy.1.8.52.zip", "1.8.53": "https://downloads.wordpress.org/theme/blocksy.1.8.53.zip", "1.8.54": "https://downloads.wordpress.org/theme/blocksy.1.8.54.zip", "1.8.55": "https://downloads.wordpress.org/theme/blocksy.1.8.55.zip", "1.8.56": "https://downloads.wordpress.org/theme/blocksy.1.8.56.zip", "1.8.57": "https://downloads.wordpress.org/theme/blocksy.1.8.57.zip", "1.8.58": "https://downloads.wordpress.org/theme/blocksy.1.8.58.zip", "1.8.59": "https://downloads.wordpress.org/theme/blocksy.1.8.59.zip", "1.8.60": "https://downloads.wordpress.org/theme/blocksy.1.8.60.zip", "1.8.61": "https://downloads.wordpress.org/theme/blocksy.1.8.61.zip", "1.8.62": "https://downloads.wordpress.org/theme/blocksy.1.8.62.zip", "1.8.63": "https://downloads.wordpress.org/theme/blocksy.1.8.63.zip", "1.8.64": "https://downloads.wordpress.org/theme/blocksy.1.8.64.zip", "1.8.65": "https://downloads.wordpress.org/theme/blocksy.1.8.65.zip", "1.8.66": "https://downloads.wordpress.org/theme/blocksy.1.8.66.zip", "1.8.67": "https://downloads.wordpress.org/theme/blocksy.1.8.67.zip", "1.8.68": "https://downloads.wordpress.org/theme/blocksy.1.8.68.zip", "1.8.69": "https://downloads.wordpress.org/theme/blocksy.1.8.69.zip", "1.8.70": "https://downloads.wordpress.org/theme/blocksy.1.8.70.zip", "1.8.71": "https://downloads.wordpress.org/theme/blocksy.1.8.71.zip", "1.8.72": "https://downloads.wordpress.org/theme/blocksy.1.8.72.zip", "1.8.73": "https://downloads.wordpress.org/theme/blocksy.1.8.73.zip", "1.8.74": "https://downloads.wordpress.org/theme/blocksy.1.8.74.zip", "1.8.75": "https://downloads.wordpress.org/theme/blocksy.1.8.75.zip", "1.8.76": "https://downloads.wordpress.org/theme/blocksy.1.8.76.zip", "1.8.77": "https://downloads.wordpress.org/theme/blocksy.1.8.77.zip", "1.8.78": "https://downloads.wordpress.org/theme/blocksy.1.8.78.zip", "1.8.79": "https://downloads.wordpress.org/theme/blocksy.1.8.79.zip", "1.8.80": "https://downloads.wordpress.org/theme/blocksy.1.8.80.zip", "1.8.81": "https://downloads.wordpress.org/theme/blocksy.1.8.81.zip", "1.8.82": "https://downloads.wordpress.org/theme/blocksy.1.8.82.zip", "1.8.83": "https://downloads.wordpress.org/theme/blocksy.1.8.83.zip", "1.8.84": "https://downloads.wordpress.org/theme/blocksy.1.8.84.zip", "1.8.85": "https://downloads.wordpress.org/theme/blocksy.1.8.85.zip", "1.8.86": "https://downloads.wordpress.org/theme/blocksy.1.8.86.zip", "1.8.87": "https://downloads.wordpress.org/theme/blocksy.1.8.87.zip", "1.8.88": "https://downloads.wordpress.org/theme/blocksy.1.8.88.zip", "1.8.89": "https://downloads.wordpress.org/theme/blocksy.1.8.89.zip", "1.8.90": "https://downloads.wordpress.org/theme/blocksy.1.8.90.zip", "1.8.91": "https://downloads.wordpress.org/theme/blocksy.1.8.91.zip", "1.8.92": "https://downloads.wordpress.org/theme/blocksy.1.8.92.zip", "1.8.93": "https://downloads.wordpress.org/theme/blocksy.1.8.93.zip", "1.8.94": "https://downloads.wordpress.org/theme/blocksy.1.8.94.zip", "1.8.95": "https://downloads.wordpress.org/theme/blocksy.1.8.95.zip", "1.8.96": "https://downloads.wordpress.org/theme/blocksy.1.8.96.zip", "1.8.97": "https://downloads.wordpress.org/theme/blocksy.1.8.97.zip", "1.8.98": "https://downloads.wordpress.org/theme/blocksy.1.8.98.zip", "1.8.99": "https://downloads.wordpress.org/theme/blocksy.1.8.99.zip", "1.9.10": "https://downloads.wordpress.org/theme/blocksy.1.9.10.zip", "1.9.11": "https://downloads.wordpress.org/theme/blocksy.1.9.11.zip", "2.0.10": "https://downloads.wordpress.org/theme/blocksy.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/theme/blocksy.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/theme/blocksy.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/theme/blocksy.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/theme/blocksy.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/theme/blocksy.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/theme/blocksy.2.0.16.zip", "2.0.17": "https://downloads.wordpress.org/theme/blocksy.2.0.17.zip", "2.0.18": "https://downloads.wordpress.org/theme/blocksy.2.0.18.zip", "2.0.19": "https://downloads.wordpress.org/theme/blocksy.2.0.19.zip", "2.0.20": "https://downloads.wordpress.org/theme/blocksy.2.0.20.zip", "2.0.21": "https://downloads.wordpress.org/theme/blocksy.2.0.21.zip", "2.0.22": "https://downloads.wordpress.org/theme/blocksy.2.0.22.zip", "2.0.23": "https://downloads.wordpress.org/theme/blocksy.2.0.23.zip", "2.0.24": "https://downloads.wordpress.org/theme/blocksy.2.0.24.zip", "2.0.25": "https://downloads.wordpress.org/theme/blocksy.2.0.25.zip", "2.0.26": "https://downloads.wordpress.org/theme/blocksy.2.0.26.zip", "2.0.27": "https://downloads.wordpress.org/theme/blocksy.2.0.27.zip", "2.0.28": "https://downloads.wordpress.org/theme/blocksy.2.0.28.zip", "2.0.29": "https://downloads.wordpress.org/theme/blocksy.2.0.29.zip", "2.0.30": "https://downloads.wordpress.org/theme/blocksy.2.0.30.zip", "2.0.31": "https://downloads.wordpress.org/theme/blocksy.2.0.31.zip", "2.0.32": "https://downloads.wordpress.org/theme/blocksy.2.0.32.zip", "2.0.33": "https://downloads.wordpress.org/theme/blocksy.2.0.33.zip", "2.0.34": "https://downloads.wordpress.org/theme/blocksy.2.0.34.zip", "2.0.35": "https://downloads.wordpress.org/theme/blocksy.2.0.35.zip", "2.0.36": "https://downloads.wordpress.org/theme/blocksy.2.0.36.zip", "2.0.37": "https://downloads.wordpress.org/theme/blocksy.2.0.37.zip", "2.0.38": "https://downloads.wordpress.org/theme/blocksy.2.0.38.zip", "2.0.39": "https://downloads.wordpress.org/theme/blocksy.2.0.39.zip", "2.0.40": "https://downloads.wordpress.org/theme/blocksy.2.0.40.zip", "2.0.41": "https://downloads.wordpress.org/theme/blocksy.2.0.41.zip", "2.0.42": "https://downloads.wordpress.org/theme/blocksy.2.0.42.zip", "2.0.43": "https://downloads.wordpress.org/theme/blocksy.2.0.43.zip", "2.0.44": "https://downloads.wordpress.org/theme/blocksy.2.0.44.zip", "2.0.45": "https://downloads.wordpress.org/theme/blocksy.2.0.45.zip", "2.0.46": "https://downloads.wordpress.org/theme/blocksy.2.0.46.zip", "2.0.47": "https://downloads.wordpress.org/theme/blocksy.2.0.47.zip", "2.0.48": "https://downloads.wordpress.org/theme/blocksy.2.0.48.zip", "2.0.49": "https://downloads.wordpress.org/theme/blocksy.2.0.49.zip", "2.0.50": "https://downloads.wordpress.org/theme/blocksy.2.0.50.zip", "2.0.51": "https://downloads.wordpress.org/theme/blocksy.2.0.51.zip", "2.0.52": "https://downloads.wordpress.org/theme/blocksy.2.0.52.zip", "2.0.53": "https://downloads.wordpress.org/theme/blocksy.2.0.53.zip", "2.0.54": "https://downloads.wordpress.org/theme/blocksy.2.0.54.zip", "2.0.55": "https://downloads.wordpress.org/theme/blocksy.2.0.55.zip", "2.0.56": "https://downloads.wordpress.org/theme/blocksy.2.0.56.zip", "2.0.57": "https://downloads.wordpress.org/theme/blocksy.2.0.57.zip", "2.0.58": "https://downloads.wordpress.org/theme/blocksy.2.0.58.zip", "2.0.59": "https://downloads.wordpress.org/theme/blocksy.2.0.59.zip", "2.0.60": "https://downloads.wordpress.org/theme/blocksy.2.0.60.zip", "2.0.61": "https://downloads.wordpress.org/theme/blocksy.2.0.61.zip", "2.0.62": "https://downloads.wordpress.org/theme/blocksy.2.0.62.zip", "2.0.63": "https://downloads.wordpress.org/theme/blocksy.2.0.63.zip", "2.0.64": "https://downloads.wordpress.org/theme/blocksy.2.0.64.zip", "2.0.65": "https://downloads.wordpress.org/theme/blocksy.2.0.65.zip", "2.0.66": "https://downloads.wordpress.org/theme/blocksy.2.0.66.zip", "2.0.67": "https://downloads.wordpress.org/theme/blocksy.2.0.67.zip", "2.0.68": "https://downloads.wordpress.org/theme/blocksy.2.0.68.zip", "2.0.69": "https://downloads.wordpress.org/theme/blocksy.2.0.69.zip", "2.0.70": "https://downloads.wordpress.org/theme/blocksy.2.0.70.zip", "2.0.71": "https://downloads.wordpress.org/theme/blocksy.2.0.71.zip", "2.0.72": "https://downloads.wordpress.org/theme/blocksy.2.0.72.zip", "2.0.73": "https://downloads.wordpress.org/theme/blocksy.2.0.73.zip", "2.0.74": "https://downloads.wordpress.org/theme/blocksy.2.0.74.zip", "2.0.75": "https://downloads.wordpress.org/theme/blocksy.2.0.75.zip", "2.0.76": "https://downloads.wordpress.org/theme/blocksy.2.0.76.zip", "2.0.77": "https://downloads.wordpress.org/theme/blocksy.2.0.77.zip", "2.0.78": "https://downloads.wordpress.org/theme/blocksy.2.0.78.zip", "2.0.79": "https://downloads.wordpress.org/theme/blocksy.2.0.79.zip", "2.0.80": "https://downloads.wordpress.org/theme/blocksy.2.0.80.zip", "2.0.81": "https://downloads.wordpress.org/theme/blocksy.2.0.81.zip", "2.0.82": "https://downloads.wordpress.org/theme/blocksy.2.0.82.zip", "2.0.83": "https://downloads.wordpress.org/theme/blocksy.2.0.83.zip", "2.0.84": "https://downloads.wordpress.org/theme/blocksy.2.0.84.zip", "2.0.85": "https://downloads.wordpress.org/theme/blocksy.2.0.85.zip", "2.0.86": "https://downloads.wordpress.org/theme/blocksy.2.0.86.zip", "2.0.87": "https://downloads.wordpress.org/theme/blocksy.2.0.87.zip", "2.0.88": "https://downloads.wordpress.org/theme/blocksy.2.0.88.zip", "2.0.89": "https://downloads.wordpress.org/theme/blocksy.2.0.89.zip", "2.0.90": "https://downloads.wordpress.org/theme/blocksy.2.0.90.zip", "2.0.91": "https://downloads.wordpress.org/theme/blocksy.2.0.91.zip", "2.0.92": "https://downloads.wordpress.org/theme/blocksy.2.0.92.zip", "2.0.93": "https://downloads.wordpress.org/theme/blocksy.2.0.93.zip", "2.0.94": "https://downloads.wordpress.org/theme/blocksy.2.0.94.zip", "2.0.95": "https://downloads.wordpress.org/theme/blocksy.2.0.95.zip", "2.0.96": "https://downloads.wordpress.org/theme/blocksy.2.0.96.zip", "2.0.97": "https://downloads.wordpress.org/theme/blocksy.2.0.97.zip", "2.0.98": "https://downloads.wordpress.org/theme/blocksy.2.0.98.zip", "2.0.99": "https://downloads.wordpress.org/theme/blocksy.2.0.99.zip", "2.1.10": "https://downloads.wordpress.org/theme/blocksy.2.1.10.zip", "2.1.11": "https://downloads.wordpress.org/theme/blocksy.2.1.11.zip", "2.1.12": "https://downloads.wordpress.org/theme/blocksy.2.1.12.zip", "2.1.13": "https://downloads.wordpress.org/theme/blocksy.2.1.13.zip", "2.1.14": "https://downloads.wordpress.org/theme/blocksy.2.1.14.zip", "2.1.15": "https://downloads.wordpress.org/theme/blocksy.2.1.15.zip", "2.1.16": "https://downloads.wordpress.org/theme/blocksy.2.1.16.zip", "2.1.17": "https://downloads.wordpress.org/theme/blocksy.2.1.17.zip", "1.8.3.1": "https://downloads.wordpress.org/theme/blocksy.1.8.3.1.zip", "1.8.3.2": "https://downloads.wordpress.org/theme/blocksy.1.8.3.2.zip", "1.8.3.3": "https://downloads.wordpress.org/theme/blocksy.1.8.3.3.zip", "1.8.3.4": "https://downloads.wordpress.org/theme/blocksy.1.8.3.4.zip", "1.8.4.1": "https://downloads.wordpress.org/theme/blocksy.1.8.4.1.zip", "1.8.4.2": "https://downloads.wordpress.org/theme/blocksy.1.8.4.2.zip", "1.8.4.3": "https://downloads.wordpress.org/theme/blocksy.1.8.4.3.zip", "1.8.4.4": "https://downloads.wordpress.org/theme/blocksy.1.8.4.4.zip", "1.8.4.5": "https://downloads.wordpress.org/theme/blocksy.1.8.4.5.zip", "1.8.5.1": "https://downloads.wordpress.org/theme/blocksy.1.8.5.1.zip", "1.8.5.2": "https://downloads.wordpress.org/theme/blocksy.1.8.5.2.zip", "1.8.5.3": "https://downloads.wordpress.org/theme/blocksy.1.8.5.3.zip", "1.8.5.4": "https://downloads.wordpress.org/theme/blocksy.1.8.5.4.zip", "1.8.5.5": "https://downloads.wordpress.org/theme/blocksy.1.8.5.5.zip", "1.8.5.6": "https://downloads.wordpress.org/theme/blocksy.1.8.5.6.zip", "1.8.5.7": "https://downloads.wordpress.org/theme/blocksy.1.8.5.7.zip", "1.8.5.8": "https://downloads.wordpress.org/theme/blocksy.1.8.5.8.zip", "1.8.5.9": "https://downloads.wordpress.org/theme/blocksy.1.8.5.9.zip", "1.8.6.1": "https://downloads.wordpress.org/theme/blocksy.1.8.6.1.zip", "1.8.6.2": "https://downloads.wordpress.org/theme/blocksy.1.8.6.2.zip", "1.8.6.3": "https://downloads.wordpress.org/theme/blocksy.1.8.6.3.zip", "1.8.6.4": "https://downloads.wordpress.org/theme/blocksy.1.8.6.4.zip", "1.8.6.5": "https://downloads.wordpress.org/theme/blocksy.1.8.6.5.zip", "1.8.6.6": "https://downloads.wordpress.org/theme/blocksy.1.8.6.6.zip", "1.8.6.7": "https://downloads.wordpress.org/theme/blocksy.1.8.6.7.zip", "1.8.6.8": "https://downloads.wordpress.org/theme/blocksy.1.8.6.8.zip", "1.8.6.9": "https://downloads.wordpress.org/theme/blocksy.1.8.6.9.zip", "1.8.59.1": "https://downloads.wordpress.org/theme/blocksy.1.8.59.1.zip"}, "downloaded": 5385745, "num_ratings": 860, "preview_url": "https://wp-themes.com/blocksy/", "reviews_url": "https://wordpress.org/support/theme/blocksy/reviews/", "is_community": false, "last_updated": "2025-10-17", "requires_php": "7.0", "creation_time": "2019-05-10 06:18:06", "download_link": "https://downloads.wordpress.org/theme/blocksy.2.1.17.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/blocksy/screenshot.jpg?ver=2.1.17", "active_installs": 200000, "aspiresync_meta": {"id": "019a30c0-02b0-73b5-949e-1d2ecf76680c", "name": "Blocksy", "slug": "blocksy", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1760659200, "version": "2.1.17"}, "last_updated_time": "2025-10-17 16:13:10", "external_support_url": "https://creativethemes.com/blocksy/support/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6979-725c-b6bd-155b47feeaa1', 'blogfull', 'Blogfull', '0.7', 'Blogfull is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Blogfull is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Blogfull is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogus/blogfull/ and documentation at https://docs.themeansar.com/docs/blogus/', '019a30c1-6978-7136-bde3-dea4a4e47c02', 'https://downloads.wordpress.org/theme/blogfull.0.7.zip', '6.7', '7.4', '2025-08-11 04:09:25+00', '2025-07-06 22:01:22+00', 'https://wp-themes.com/blogfull/', '//ts.w.org/wp-content/themes/blogfull/screenshot.jpg?ver=0.7', 0, 0, 'https://wordpress.org/support/theme/blogfull/reviews/', 6251, 1000, 'https://wordpress.org/themes/blogfull/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Blogfull", "slug": "blogfull", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "parent": {"name": "Blogus", "slug": "blogus", "homepage": "https://wordpress.org/themes/blogus/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "0.7", "homepage": "https://wordpress.org/themes/blogfull/", "requires": "6.7", "sections": {"description": "Blogfull is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Blogfull is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Blogfull is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogus/blogfull/ and documentation at https://docs.themeansar.com/docs/blogus/"}, "template": "blogus", "versions": {"0.1": "https://downloads.wordpress.org/theme/blogfull.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/blogfull.0.2.zip", "0.4": "https://downloads.wordpress.org/theme/blogfull.0.4.zip", "0.5": "https://downloads.wordpress.org/theme/blogfull.0.5.zip", "0.6": "https://downloads.wordpress.org/theme/blogfull.0.6.zip", "0.7": "https://downloads.wordpress.org/theme/blogfull.0.7.zip"}, "downloaded": 6251, "num_ratings": 0, "preview_url": "https://wp-themes.com/blogfull/", "reviews_url": "https://wordpress.org/support/theme/blogfull/reviews/", "is_community": false, "last_updated": "2025-08-11", "requires_php": "7.4", "creation_time": "2025-07-06 22:01:22", "download_link": "https://downloads.wordpress.org/theme/blogfull.0.7.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/blogfull/screenshot.jpg?ver=0.7", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-029c-71c9-b08e-81b734d230b0", "name": "Blogfull", "slug": "blogfull", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1754870400, "version": "0.7"}, "last_updated_time": "2025-08-11 04:09:25", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6987-7168-ac69-75ebdc3200e4', 'bloggers', 'Bloggers', '0.3', 'Bloggers is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Bloggers is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Bloggers is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogarise/bloggers/ and documentation at https://docs.themeansar.com/docs/blogarise/', '019a30c1-6978-7136-bde3-dea4a4e47c02', 'https://downloads.wordpress.org/theme/bloggers.0.3.zip', NULL, '7.4', '2025-09-18 05:13:46+00', '2025-08-27 10:32:14+00', 'https://wp-themes.com/bloggers/', '//ts.w.org/wp-content/themes/bloggers/screenshot.jpg?ver=0.3', 0, 0, 'https://wordpress.org/support/theme/bloggers/reviews/', 3872, 800, 'https://wordpress.org/themes/bloggers/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Bloggers", "slug": "bloggers", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "parent": {"name": "BlogArise", "slug": "blogarise", "homepage": "https://wordpress.org/themes/blogarise/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "0.3", "homepage": "https://wordpress.org/themes/bloggers/", "requires": false, "sections": {"description": "Bloggers is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Bloggers is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Bloggers is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogarise/bloggers/ and documentation at https://docs.themeansar.com/docs/blogarise/"}, "template": "blogarise", "versions": {"0.1": "https://downloads.wordpress.org/theme/bloggers.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/bloggers.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/bloggers.0.3.zip"}, "downloaded": 3872, "num_ratings": 0, "preview_url": "https://wp-themes.com/bloggers/", "reviews_url": "https://wordpress.org/support/theme/bloggers/reviews/", "is_community": false, "last_updated": "2025-09-18", "requires_php": "7.4", "creation_time": "2025-08-27 10:32:14", "download_link": "https://downloads.wordpress.org/theme/bloggers.0.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/bloggers/screenshot.jpg?ver=0.3", "active_installs": 800, "aspiresync_meta": {"id": "019a30c0-0298-721f-89ef-051cadeeba63", "name": "Bloggers", "slug": "bloggers", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1758153600, "version": "0.3"}, "last_updated_time": "2025-09-18 05:13:46", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6996-71c6-98e0-e55b41728139', 'bloghash', 'BlogHash', '1.0.25', 'BlogHash is the perfect pick for bloggers seeking a lightweight, customizable theme that suits them just right. With plenty of options to adjust colors and typography, making your site unique is a breeze. It''s SEO friendly and fully compatible with WPML, Gutenberg, Elementor, WooCommerce, and supports translation and RTL. Live preview: https://peregrine-themes.com/bloghash/#demos.', '019a30c1-6995-7311-b70f-822b37836a42', 'https://downloads.wordpress.org/theme/bloghash.1.0.25.zip', '5.4', '5.6', '2025-08-29 14:45:46+00', '2024-05-13 12:26:46+00', 'https://wp-themes.com/bloghash/', '//ts.w.org/wp-content/themes/bloghash/screenshot.jpg?ver=1.0.25', 100, 9, 'https://wordpress.org/support/theme/bloghash/reviews/', 151658, 10000, 'https://wordpress.org/themes/bloghash/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "BlogHash", "slug": "bloghash", "tags": {"blog": "Blog", "news": "News", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "custom-colors": "Custom colors", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Peregrine themes", "avatar": "https://secure.gravatar.com/avatar/0633ecf3e923b0b844ecf8e5515609a2de8872f5948febafe8d4ff2e3b1eeb67?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/peregrinethemes/", "author_url": "https://peregrine-themes.com/", "display_name": "peregrinethemes", "user_nicename": "peregrinethemes"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 9}, "version": "1.0.25", "homepage": "https://wordpress.org/themes/bloghash/", "requires": "5.4", "sections": {"description": "BlogHash is the perfect pick for bloggers seeking a lightweight, customizable theme that suits them just right. With plenty of options to adjust colors and typography, making your site unique is a breeze. It''s SEO friendly and fully compatible with WPML, Gutenberg, Elementor, WooCommerce, and supports translation and RTL. Live preview: https://peregrine-themes.com/bloghash/#demos."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/bloghash.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/bloghash.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/bloghash.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/bloghash.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/bloghash.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/bloghash.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/bloghash.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/bloghash.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/bloghash.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/bloghash.1.0.9.zip", "1.0.10": "https://downloads.wordpress.org/theme/bloghash.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/bloghash.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/bloghash.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/bloghash.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/theme/bloghash.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/theme/bloghash.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/theme/bloghash.1.0.16.zip", "1.0.17": "https://downloads.wordpress.org/theme/bloghash.1.0.17.zip", "1.0.18": "https://downloads.wordpress.org/theme/bloghash.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/theme/bloghash.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/bloghash.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/bloghash.1.0.21.zip", "1.0.23": "https://downloads.wordpress.org/theme/bloghash.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/theme/bloghash.1.0.24.zip", "1.0.25": "https://downloads.wordpress.org/theme/bloghash.1.0.25.zip"}, "downloaded": 151658, "num_ratings": 9, "preview_url": "https://wp-themes.com/bloghash/", "reviews_url": "https://wordpress.org/support/theme/bloghash/reviews/", "is_community": false, "last_updated": "2025-08-29", "requires_php": "5.6", "creation_time": "2024-05-13 12:26:46", "download_link": "https://downloads.wordpress.org/theme/bloghash.1.0.25.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/bloghash/screenshot.jpg?ver=1.0.25", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-029f-7116-b50b-7a456769acf9", "name": "BlogHash", "slug": "bloghash", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1756425600, "version": "1.0.25"}, "last_updated_time": "2025-08-29 14:45:46", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-69a3-707a-8998-935d9b2941d8', 'blogmate', 'Blogmate', '1.0.10', 'BlogMate, a child theme of Bloglo, features a boxed width design with an animated background pattern. With a horizontal blog list style, it offers extensive customization options for colors and typography. Lightweight and moderate, BlogMate is a customizable News Magazine WordPress theme with one-click demo importer. Perfect for personal and multi-author bloggers, it''s ideal for dynamic news, magazines, blogs, and creative sites. SEO friendly, WPML, Gutenberg, WooCommerce, and RTL ready, it''s suitable for various content publishers and online magazines. Live preview : https://demo.peregrine-themes.com/bloglo/blogmate/', '019a30c1-6995-7311-b70f-822b37836a42', 'https://downloads.wordpress.org/theme/blogmate.1.0.10.zip', '5.4', '5.6', '2024-08-18 15:51:32+00', '2024-01-09 07:11:46+00', 'https://wp-themes.com/blogmate/', '//ts.w.org/wp-content/themes/blogmate/screenshot.png?ver=1.0.10', 100, 3, 'https://wordpress.org/support/theme/blogmate/reviews/', 71951, 7000, 'https://wordpress.org/themes/blogmate/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Blogmate", "slug": "blogmate", "tags": {"blog": "Blog", "news": "News", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Peregrine themes", "avatar": "https://secure.gravatar.com/avatar/0633ecf3e923b0b844ecf8e5515609a2de8872f5948febafe8d4ff2e3b1eeb67?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/peregrinethemes/", "author_url": "https://peregrine-themes.com/", "display_name": "peregrinethemes", "user_nicename": "peregrinethemes"}, "parent": {"name": "Bloglo", "slug": "bloglo", "homepage": "https://wordpress.org/themes/bloglo/"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 3}, "version": "1.0.10", "homepage": "https://wordpress.org/themes/blogmate/", "requires": "5.4", "sections": {"description": "BlogMate, a child theme of Bloglo, features a boxed width design with an animated background pattern. With a horizontal blog list style, it offers extensive customization options for colors and typography. Lightweight and moderate, BlogMate is a customizable News Magazine WordPress theme with one-click demo importer. Perfect for personal and multi-author bloggers, it''s ideal for dynamic news, magazines, blogs, and creative sites. SEO friendly, WPML, Gutenberg, WooCommerce, and RTL ready, it''s suitable for various content publishers and online magazines. Live preview : https://demo.peregrine-themes.com/bloglo/blogmate/"}, "template": "bloglo", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/blogmate.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/blogmate.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/blogmate.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/blogmate.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/blogmate.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/blogmate.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/blogmate.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/blogmate.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/blogmate.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/blogmate.1.0.9.zip", "1.0.10": "https://downloads.wordpress.org/theme/blogmate.1.0.10.zip"}, "downloaded": 71951, "num_ratings": 3, "preview_url": "https://wp-themes.com/blogmate/", "reviews_url": "https://wordpress.org/support/theme/blogmate/reviews/", "is_community": false, "last_updated": "2024-08-18", "requires_php": "5.6", "creation_time": "2024-01-09 07:11:46", "download_link": "https://downloads.wordpress.org/theme/blogmate.1.0.10.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/blogmate/screenshot.png?ver=1.0.10", "active_installs": 7000, "aspiresync_meta": {"id": "019a30c0-02a2-73a4-9ae8-5c990bf408f1", "name": "Blogmate", "slug": "blogmate", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1723939200, "version": "1.0.10"}, "last_updated_time": "2024-08-18 15:51:32", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-69af-7391-bebd-ef39cc5ab7e6', 'blogus', 'Blogus', '2.7.1', 'Blogus is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Blogus is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Blogus is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogus-demos/ and documentation at https://docs.themeansar.com/docs/blogus/', '019a30c1-6978-7136-bde3-dea4a4e47c02', 'https://downloads.wordpress.org/theme/blogus.2.7.1.zip', '6.7', '7.4', '2025-10-28 04:21:05+00', '2022-12-29 16:41:42+00', 'https://wp-themes.com/blogus/', '//ts.w.org/wp-content/themes/blogus/screenshot.jpg?ver=2.7.1', 98, 13, 'https://wordpress.org/support/theme/blogus/reviews/', 843703, 10000, 'https://wordpress.org/themes/blogus/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Blogus", "slug": "blogus", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "custom-logo": "Custom logo", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "rating": 98, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 1, "5": 12}, "version": "2.7.1", "homepage": "https://wordpress.org/themes/blogus/", "requires": "6.7", "sections": {"description": "Blogus is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Blogus is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Blogus is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demos.themeansar.com/blogus-demos/ and documentation at https://docs.themeansar.com/docs/blogus/"}, "versions": {"0.1": "https://downloads.wordpress.org/theme/blogus.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/blogus.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/blogus.0.3.zip", "0.4": "https://downloads.wordpress.org/theme/blogus.0.4.zip", "0.5": "https://downloads.wordpress.org/theme/blogus.0.5.zip", "0.6": "https://downloads.wordpress.org/theme/blogus.0.6.zip", "0.7": "https://downloads.wordpress.org/theme/blogus.0.7.zip", "0.8": "https://downloads.wordpress.org/theme/blogus.0.8.zip", "0.9": "https://downloads.wordpress.org/theme/blogus.0.9.zip", "2.2.1": "https://downloads.wordpress.org/theme/blogus.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/blogus.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/blogus.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/blogus.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/blogus.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/blogus.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/theme/blogus.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/theme/blogus.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/theme/blogus.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/theme/blogus.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/blogus.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/blogus.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/blogus.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/blogus.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/blogus.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/blogus.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/blogus.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/blogus.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/theme/blogus.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/theme/blogus.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/blogus.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/blogus.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/blogus.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/theme/blogus.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/theme/blogus.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/theme/blogus.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/theme/blogus.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/theme/blogus.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/theme/blogus.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/theme/blogus.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/theme/blogus.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/theme/blogus.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/theme/blogus.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/blogus.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/theme/blogus.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/theme/blogus.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/theme/blogus.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/theme/blogus.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/theme/blogus.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/theme/blogus.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/blogus.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/theme/blogus.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/theme/blogus.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/theme/blogus.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/theme/blogus.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/theme/blogus.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/theme/blogus.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/theme/blogus.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/theme/blogus.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/theme/blogus.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/theme/blogus.2.7.1.zip", "1.0.0.1": "https://downloads.wordpress.org/theme/blogus.1.0.0.1.zip", "1.0.0.2": "https://downloads.wordpress.org/theme/blogus.1.0.0.2.zip", "1.0.0.3": "https://downloads.wordpress.org/theme/blogus.1.0.0.3.zip", "1.0.0.4": "https://downloads.wordpress.org/theme/blogus.1.0.0.4.zip", "1.0.0.5": "https://downloads.wordpress.org/theme/blogus.1.0.0.5.zip", "1.0.0.6": "https://downloads.wordpress.org/theme/blogus.1.0.0.6.zip", "1.0.0.7": "https://downloads.wordpress.org/theme/blogus.1.0.0.7.zip", "1.0.0.8": "https://downloads.wordpress.org/theme/blogus.1.0.0.8.zip", "1.0.0.9": "https://downloads.wordpress.org/theme/blogus.1.0.0.9.zip", "2.0.0.0": "https://downloads.wordpress.org/theme/blogus.2.0.0.0.zip", "2.0.0.1": "https://downloads.wordpress.org/theme/blogus.2.0.0.1.zip", "2.0.0.2": "https://downloads.wordpress.org/theme/blogus.2.0.0.2.zip", "2.0.0.3": "https://downloads.wordpress.org/theme/blogus.2.0.0.3.zip", "2.0.0.4": "https://downloads.wordpress.org/theme/blogus.2.0.0.4.zip", "2.0.0.5": "https://downloads.wordpress.org/theme/blogus.2.0.0.5.zip", "2.0.0.6": "https://downloads.wordpress.org/theme/blogus.2.0.0.6.zip", "2.0.0.7": "https://downloads.wordpress.org/theme/blogus.2.0.0.7.zip", "2.0.0.8": "https://downloads.wordpress.org/theme/blogus.2.0.0.8.zip", "2.0.0.9": "https://downloads.wordpress.org/theme/blogus.2.0.0.9.zip", "2.0.1.1": "https://downloads.wordpress.org/theme/blogus.2.0.1.1.zip", "2.0.1.2": "https://downloads.wordpress.org/theme/blogus.2.0.1.2.zip", "2.0.1.3": "https://downloads.wordpress.org/theme/blogus.2.0.1.3.zip", "2.0.1.4": "https://downloads.wordpress.org/theme/blogus.2.0.1.4.zip", "2.0.1.5": "https://downloads.wordpress.org/theme/blogus.2.0.1.5.zip", "2.0.1.6": "https://downloads.wordpress.org/theme/blogus.2.0.1.6.zip", "2.0.1.7": "https://downloads.wordpress.org/theme/blogus.2.0.1.7.zip", "2.0.1.8": "https://downloads.wordpress.org/theme/blogus.2.0.1.8.zip", "2.0.1.9": "https://downloads.wordpress.org/theme/blogus.2.0.1.9.zip", "2.0.2.0": "https://downloads.wordpress.org/theme/blogus.2.0.2.0.zip", "1.0.0.10": "https://downloads.wordpress.org/theme/blogus.1.0.0.10.zip", "1.0.0.11": "https://downloads.wordpress.org/theme/blogus.1.0.0.11.zip", "1.0.0.12": "https://downloads.wordpress.org/theme/blogus.1.0.0.12.zip", "1.0.0.13": "https://downloads.wordpress.org/theme/blogus.1.0.0.13.zip", "1.0.0.14": "https://downloads.wordpress.org/theme/blogus.1.0.0.14.zip", "1.0.0.15": "https://downloads.wordpress.org/theme/blogus.1.0.0.15.zip", "1.0.0.16": "https://downloads.wordpress.org/theme/blogus.1.0.0.16.zip", "1.0.0.17": "https://downloads.wordpress.org/theme/blogus.1.0.0.17.zip", "1.0.0.18": "https://downloads.wordpress.org/theme/blogus.1.0.0.18.zip", "1.0.0.19": "https://downloads.wordpress.org/theme/blogus.1.0.0.19.zip", "1.0.0.20": "https://downloads.wordpress.org/theme/blogus.1.0.0.20.zip", "1.0.0.21": "https://downloads.wordpress.org/theme/blogus.1.0.0.21.zip", "1.0.0.22": "https://downloads.wordpress.org/theme/blogus.1.0.0.22.zip", "1.0.0.23": "https://downloads.wordpress.org/theme/blogus.1.0.0.23.zip", "1.0.0.24": "https://downloads.wordpress.org/theme/blogus.1.0.0.24.zip", "1.0.0.25": "https://downloads.wordpress.org/theme/blogus.1.0.0.25.zip", "1.0.0.26": "https://downloads.wordpress.org/theme/blogus.1.0.0.26.zip", "1.0.0.27": "https://downloads.wordpress.org/theme/blogus.1.0.0.27.zip", "1.0.0.28": "https://downloads.wordpress.org/theme/blogus.1.0.0.28.zip", "1.0.0.29": "https://downloads.wordpress.org/theme/blogus.1.0.0.29.zip", "1.0.0.30": "https://downloads.wordpress.org/theme/blogus.1.0.0.30.zip", "1.0.0.31": "https://downloads.wordpress.org/theme/blogus.1.0.0.31.zip", "1.0.0.32": "https://downloads.wordpress.org/theme/blogus.1.0.0.32.zip", "1.0.0.33": "https://downloads.wordpress.org/theme/blogus.1.0.0.33.zip", "1.0.0.34": "https://downloads.wordpress.org/theme/blogus.1.0.0.34.zip", "1.0.0.35": "https://downloads.wordpress.org/theme/blogus.1.0.0.35.zip", "1.0.0.36": "https://downloads.wordpress.org/theme/blogus.1.0.0.36.zip", "1.0.0.37": "https://downloads.wordpress.org/theme/blogus.1.0.0.37.zip", "1.0.0.38": "https://downloads.wordpress.org/theme/blogus.1.0.0.38.zip", "1.0.0.39": "https://downloads.wordpress.org/theme/blogus.1.0.0.39.zip", "1.0.0.40": "https://downloads.wordpress.org/theme/blogus.1.0.0.40.zip", "1.0.0.41": "https://downloads.wordpress.org/theme/blogus.1.0.0.41.zip", "1.0.0.42": "https://downloads.wordpress.org/theme/blogus.1.0.0.42.zip", "1.0.0.43": "https://downloads.wordpress.org/theme/blogus.1.0.0.43.zip", "1.0.0.44": "https://downloads.wordpress.org/theme/blogus.1.0.0.44.zip", "1.0.0.45": "https://downloads.wordpress.org/theme/blogus.1.0.0.45.zip", "1.0.0.46": "https://downloads.wordpress.org/theme/blogus.1.0.0.46.zip", "1.0.0.48": "https://downloads.wordpress.org/theme/blogus.1.0.0.48.zip", "1.0.0.49": "https://downloads.wordpress.org/theme/blogus.1.0.0.49.zip", "1.0.0.50": "https://downloads.wordpress.org/theme/blogus.1.0.0.50.zip", "1.0.0.51": "https://downloads.wordpress.org/theme/blogus.1.0.0.51.zip", "1.0.0.52": "https://downloads.wordpress.org/theme/blogus.1.0.0.52.zip", "1.0.0.53": "https://downloads.wordpress.org/theme/blogus.1.0.0.53.zip", "1.0.0.54": "https://downloads.wordpress.org/theme/blogus.1.0.0.54.zip", "1.0.0.55": "https://downloads.wordpress.org/theme/blogus.1.0.0.55.zip", "1.0.0.56": "https://downloads.wordpress.org/theme/blogus.1.0.0.56.zip", "1.0.0.57": "https://downloads.wordpress.org/theme/blogus.1.0.0.57.zip", "1.0.0.58": "https://downloads.wordpress.org/theme/blogus.1.0.0.58.zip", "1.0.0.59": "https://downloads.wordpress.org/theme/blogus.1.0.0.59.zip", "1.0.0.60": "https://downloads.wordpress.org/theme/blogus.1.0.0.60.zip", "1.0.0.61": "https://downloads.wordpress.org/theme/blogus.1.0.0.61.zip", "1.0.0.62": "https://downloads.wordpress.org/theme/blogus.1.0.0.62.zip", "1.0.0.63": "https://downloads.wordpress.org/theme/blogus.1.0.0.63.zip", "1.0.0.64": "https://downloads.wordpress.org/theme/blogus.1.0.0.64.zip", "1.0.0.65": "https://downloads.wordpress.org/theme/blogus.1.0.0.65.zip", "1.0.0.66": "https://downloads.wordpress.org/theme/blogus.1.0.0.66.zip", "1.0.0.67": "https://downloads.wordpress.org/theme/blogus.1.0.0.67.zip", "1.0.0.68": "https://downloads.wordpress.org/theme/blogus.1.0.0.68.zip", "1.0.0.69": "https://downloads.wordpress.org/theme/blogus.1.0.0.69.zip", "1.0.0.70": "https://downloads.wordpress.org/theme/blogus.1.0.0.70.zip", "1.0.0.71": "https://downloads.wordpress.org/theme/blogus.1.0.0.71.zip", "1.0.0.72": "https://downloads.wordpress.org/theme/blogus.1.0.0.72.zip", "1.0.0.73": "https://downloads.wordpress.org/theme/blogus.1.0.0.73.zip", "1.0.0.74": "https://downloads.wordpress.org/theme/blogus.1.0.0.74.zip", "1.0.0.75": "https://downloads.wordpress.org/theme/blogus.1.0.0.75.zip", "1.0.0.76": "https://downloads.wordpress.org/theme/blogus.1.0.0.76.zip", "1.0.0.77": "https://downloads.wordpress.org/theme/blogus.1.0.0.77.zip", "1.0.0.78": "https://downloads.wordpress.org/theme/blogus.1.0.0.78.zip", "1.0.0.79": "https://downloads.wordpress.org/theme/blogus.1.0.0.79.zip", "1.0.0.80": "https://downloads.wordpress.org/theme/blogus.1.0.0.80.zip", "1.0.0.81": "https://downloads.wordpress.org/theme/blogus.1.0.0.81.zip", "1.0.0.82": "https://downloads.wordpress.org/theme/blogus.1.0.0.82.zip", "1.0.0.83": "https://downloads.wordpress.org/theme/blogus.1.0.0.83.zip", "1.0.0.84": "https://downloads.wordpress.org/theme/blogus.1.0.0.84.zip", "1.0.0.85": "https://downloads.wordpress.org/theme/blogus.1.0.0.85.zip", "1.0.0.86": "https://downloads.wordpress.org/theme/blogus.1.0.0.86.zip", "1.0.0.87": "https://downloads.wordpress.org/theme/blogus.1.0.0.87.zip", "1.0.0.88": "https://downloads.wordpress.org/theme/blogus.1.0.0.88.zip", "1.0.0.89": "https://downloads.wordpress.org/theme/blogus.1.0.0.89.zip", "1.0.0.90": "https://downloads.wordpress.org/theme/blogus.1.0.0.90.zip", "1.0.0.91": "https://downloads.wordpress.org/theme/blogus.1.0.0.91.zip", "1.0.0.92": "https://downloads.wordpress.org/theme/blogus.1.0.0.92.zip", "1.0.0.93": "https://downloads.wordpress.org/theme/blogus.1.0.0.93.zip", "1.0.0.94": "https://downloads.wordpress.org/theme/blogus.1.0.0.94.zip", "1.0.0.95": "https://downloads.wordpress.org/theme/blogus.1.0.0.95.zip", "1.0.0.96": "https://downloads.wordpress.org/theme/blogus.1.0.0.96.zip", "1.0.0.97": "https://downloads.wordpress.org/theme/blogus.1.0.0.97.zip", "1.0.0.98": "https://downloads.wordpress.org/theme/blogus.1.0.0.98.zip", "1.0.0.99": "https://downloads.wordpress.org/theme/blogus.1.0.0.99.zip"}, "downloaded": 843703, "num_ratings": 13, "preview_url": "https://wp-themes.com/blogus/", "reviews_url": "https://wordpress.org/support/theme/blogus/reviews/", "is_community": false, "last_updated": "2025-10-28", "requires_php": "7.4", "creation_time": "2022-12-29 16:41:42", "download_link": "https://downloads.wordpress.org/theme/blogus.2.7.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/blogus/screenshot.jpg?ver=2.7.1", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-02b5-722a-bfa2-10ea7bf68106", "name": "Blogus", "slug": "blogus", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1761609600, "version": "2.7.1"}, "last_updated_time": "2025-10-28 04:21:05", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-69b8-70c9-bc48-695952b1c6c7', 'bluehost-blueprint', 'Bluehost Blueprint', '1.0.0', 'Bluehost Blueprint is a block-based, multi-purpose, WordPress theme. Compose your pages to fit any design you like with the power of Full Site Editing (FSE) and the included wide range of Block Patterns. The pre-built pages will help you populate and transform your website into a wonderful website. Customize colors and font pairings to create your own unique look and feel.', '019a30c1-69b8-70c9-bc48-695951d01da9', 'https://downloads.wordpress.org/theme/bluehost-blueprint.1.0.0.zip', '6.6', '7.2', '2025-10-03 08:26:48+00', '2025-07-29 18:46:09+00', 'https://wp-themes.com/bluehost-blueprint/', '//ts.w.org/wp-content/themes/bluehost-blueprint/screenshot.jpg?ver=1.0.0', 0, 0, 'https://wordpress.org/support/theme/bluehost-blueprint/reviews/', 22082, 20000, 'https://wordpress.org/themes/bluehost-blueprint/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Bluehost Blueprint", "slug": "bluehost-blueprint", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Bluehost", "avatar": "https://secure.gravatar.com/avatar/1e9ea306bada71982b42b989fd2d915aaa4d74ad92ed217cb1744e3cafac8187?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/bluehost/", "author_url": "https://bluehost.com", "display_name": "Bluehost", "user_nicename": "bluehost"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.0", "homepage": "https://wordpress.org/themes/bluehost-blueprint/", "requires": "6.6", "sections": {"description": "Bluehost Blueprint is a block-based, multi-purpose, WordPress theme. Compose your pages to fit any design you like with the power of Full Site Editing (FSE) and the included wide range of Block Patterns. The pre-built pages will help you populate and transform your website into a wonderful website. Customize colors and font pairings to create your own unique look and feel."}, "versions": {"0.2.0": "https://downloads.wordpress.org/theme/bluehost-blueprint.0.2.0.zip", "0.3.0": "https://downloads.wordpress.org/theme/bluehost-blueprint.0.3.0.zip", "1.0.0": "https://downloads.wordpress.org/theme/bluehost-blueprint.1.0.0.zip"}, "downloaded": 22082, "num_ratings": 0, "preview_url": "https://wp-themes.com/bluehost-blueprint/", "reviews_url": "https://wordpress.org/support/theme/bluehost-blueprint/reviews/", "is_community": false, "last_updated": "2025-10-03", "requires_php": "7.2", "creation_time": "2025-07-29 18:46:09", "download_link": "https://downloads.wordpress.org/theme/bluehost-blueprint.1.0.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/bluehost-blueprint/screenshot.jpg?ver=1.0.0", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-04ea-7378-9785-7c15f7563b5a", "name": "Bluehost Blueprint", "slug": "bluehost-blueprint", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1759449600, "version": "1.0.0"}, "last_updated_time": "2025-10-03 08:26:48", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-69c7-7095-a761-c4755b9e3470', 'botiga', 'Botiga', '2.3.8', 'Launch your store with Botiga. A beautiful theme that is optimized for both the block editor and Elementor. We proudly introduce Botiga, with a modern and clean design that will effortlessly match your brand. Botiga has been developed from the ground up with clean code for optimal performance. You’ll get a mobile-optimized theme that looks and works great on any device and comes with plenty of customization options as well. Discover the theme that will transform your online business.', '019a30c1-69c6-729a-9382-41fb90746ce1', 'https://downloads.wordpress.org/theme/botiga.2.3.8.zip', NULL, '7.0', '2025-10-27 13:00:05+00', '2021-08-11 01:45:43+00', 'https://wp-themes.com/botiga/', '//ts.w.org/wp-content/themes/botiga/screenshot.png?ver=2.3.8', 96, 157, 'https://wordpress.org/support/theme/botiga/reviews/', 577816, 10000, 'https://wordpress.org/themes/botiga/', true, 'https://athemes.com/support/', false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Botiga", "slug": "botiga", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "aThemes", "avatar": "https://secure.gravatar.com/avatar/93b101ca07f6a293920800acffe5bbfcc4bdbaba03d7f0fe25e03ea54238d21b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/athemes/", "author_url": "https://athemes.com", "display_name": "aThemes", "user_nicename": "athemes"}, "rating": 96, "status": "open", "ratings": {"1": 4, "2": 2, "3": 0, "4": 2, "5": 149}, "version": "2.3.8", "homepage": "https://wordpress.org/themes/botiga/", "requires": false, "sections": {"description": "Launch your store with Botiga. A beautiful theme that is optimized for both the block editor and Elementor. We proudly introduce Botiga, with a modern and clean design that will effortlessly match your brand. Botiga has been developed from the ground up with clean code for optimal performance. You’ll get a mobile-optimized theme that looks and works great on any device and comes with plenty of customization options as well. Discover the theme that will transform your online business."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/botiga.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/botiga.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/botiga.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/botiga.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/botiga.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/botiga.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/botiga.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/botiga.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/botiga.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/botiga.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/botiga.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/botiga.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/botiga.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/botiga.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/botiga.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/botiga.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/botiga.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/botiga.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/botiga.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/botiga.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/botiga.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/botiga.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/botiga.1.2.2.zip", "2.0.0": "https://downloads.wordpress.org/theme/botiga.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/botiga.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/botiga.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/botiga.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/botiga.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/botiga.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/botiga.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/botiga.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/botiga.2.0.8.zip", "2.1.0": "https://downloads.wordpress.org/theme/botiga.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/botiga.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/botiga.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/botiga.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/botiga.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/botiga.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/botiga.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/botiga.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/botiga.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/theme/botiga.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/theme/botiga.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/botiga.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/botiga.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/botiga.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/botiga.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/botiga.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/botiga.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/theme/botiga.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/theme/botiga.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/theme/botiga.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/theme/botiga.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/botiga.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/botiga.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/botiga.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/botiga.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/botiga.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/botiga.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/botiga.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/botiga.2.3.8.zip", "2.2.10": "https://downloads.wordpress.org/theme/botiga.2.2.10.zip", "2.2.11": "https://downloads.wordpress.org/theme/botiga.2.2.11.zip", "2.2.12": "https://downloads.wordpress.org/theme/botiga.2.2.12.zip", "2.2.13": "https://downloads.wordpress.org/theme/botiga.2.2.13.zip", "2.2.14": "https://downloads.wordpress.org/theme/botiga.2.2.14.zip", "2.2.15": "https://downloads.wordpress.org/theme/botiga.2.2.15.zip", "2.2.16": "https://downloads.wordpress.org/theme/botiga.2.2.16.zip", "2.2.17": "https://downloads.wordpress.org/theme/botiga.2.2.17.zip", "2.2.18": "https://downloads.wordpress.org/theme/botiga.2.2.18.zip"}, "downloaded": 577816, "num_ratings": 157, "preview_url": "https://wp-themes.com/botiga/", "reviews_url": "https://wordpress.org/support/theme/botiga/reviews/", "is_community": false, "last_updated": "2025-10-27", "requires_php": "7.0", "creation_time": "2021-08-11 01:45:43", "download_link": "https://downloads.wordpress.org/theme/botiga.2.3.8.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/botiga/screenshot.png?ver=2.3.8", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-054c-7368-864f-335987f12545", "name": "Botiga", "slug": "botiga", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1761523200, "version": "2.3.8"}, "last_updated_time": "2025-10-27 13:00:05", "external_support_url": "https://athemes.com/support/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-69d3-70d9-95f5-95f1bd70faa4', 'breevia', 'Breevia', '1.0.6', 'An innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. It is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', '019a30c1-69d2-7156-b9cf-ce8906962bef', 'https://downloads.wordpress.org/theme/breevia.1.0.6.zip', '5.8', '7.1', '2025-05-29 05:46:12+00', '2025-05-29 05:46:12+00', 'https://wp-themes.com/breevia/', '//ts.w.org/wp-content/themes/breevia/screenshot.jpg?ver=1.0.6', 0, 0, 'https://wordpress.org/support/theme/breevia/reviews/', 8565, 1000, 'https://wordpress.org/themes/breevia/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Breevia", "slug": "breevia", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.6", "homepage": "https://wordpress.org/themes/breevia/", "requires": "5.8", "sections": {"description": "An innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. It is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.6": "https://downloads.wordpress.org/theme/breevia.1.0.6.zip"}, "downloaded": 8565, "num_ratings": 0, "preview_url": "https://wp-themes.com/breevia/", "reviews_url": "https://wordpress.org/support/theme/breevia/reviews/", "is_community": false, "last_updated": "2025-05-29", "requires_php": "7.1", "creation_time": "2025-05-29 05:46:12", "download_link": "https://downloads.wordpress.org/theme/breevia.1.0.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/breevia/screenshot.jpg?ver=1.0.6", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-04ef-7195-96a0-d74b061f9b95", "name": "Breevia", "slug": "breevia", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1748476800, "version": "1.0.6"}, "last_updated_time": "2025-05-29 05:46:12", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-69dd-7205-bc99-5c3a9886de96', 'celebnews', 'CelebNews', '1.1.6', 'CelebNews is a specialized WordPress child theme on the MoreNews platform designed for celebrity blogs, music and entertainment magazines, artist portfolios and multimedia portals; it focuses on showbiz-ready layouts with banner placements, bold visual styles, social media integration and media-friendly sections (audio/video galleries, event lists, artist profiles), while inheriting MoreNews’ header & footer builder, starter sites and block patterns for fast setup and custom layouts using Gutenberg, Elementor, Brizy, Beaver Builder, Visual Composer or Divi; CelebNews is AMP-ready, SEO and Core Web Vitals optimized, GDPR and WCAG-conscious, includes custom widgets and WooCommerce support for merch or ticket sales, and ships with multilingual starter content (Spanish, German, French, Portuguese, Russian, Italian, Japanese, Dutch, Arabic and more) plus RTL support — choose CelebNews when you need a high-style, performance-focused theme for entertainment and pop-culture publishing. https://afthemes.com/products/celebnews/', '019a30c1-69dc-72b2-ba86-5892e5cd53f1', 'https://downloads.wordpress.org/theme/celebnews.1.1.6.zip', '5.0', '5.0', '2025-10-25 07:46:34+00', '2025-07-03 22:01:21+00', 'https://wp-themes.com/celebnews/', '//ts.w.org/wp-content/themes/celebnews/screenshot.png?ver=1.1.6', 0, 0, 'https://wordpress.org/support/theme/celebnews/reviews/', 7764, 1000, 'https://wordpress.org/themes/celebnews/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "CelebNews", "slug": "celebnews", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "AF themes", "avatar": "https://secure.gravatar.com/avatar/6840fee6f0abb67c899d7a7e34d50303ea8ab21678293a3b41f0268faaf8a05a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/afthemes/", "author_url": "https://afthemes.com/", "display_name": "AF themes", "user_nicename": "afthemes"}, "parent": {"name": "MoreNews", "slug": "morenews", "homepage": "https://wordpress.org/themes/morenews/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.1.6", "homepage": "https://wordpress.org/themes/celebnews/", "requires": "5.0", "sections": {"description": "CelebNews is a specialized WordPress child theme on the MoreNews platform designed for celebrity blogs, music and entertainment magazines, artist portfolios and multimedia portals; it focuses on showbiz-ready layouts with banner placements, bold visual styles, social media integration and media-friendly sections (audio/video galleries, event lists, artist profiles), while inheriting MoreNews’ header & footer builder, starter sites and block patterns for fast setup and custom layouts using Gutenberg, Elementor, Brizy, Beaver Builder, Visual Composer or Divi; CelebNews is AMP-ready, SEO and Core Web Vitals optimized, GDPR and WCAG-conscious, includes custom widgets and WooCommerce support for merch or ticket sales, and ships with multilingual starter content (Spanish, German, French, Portuguese, Russian, Italian, Japanese, Dutch, Arabic and more) plus RTL support — choose CelebNews when you need a high-style, performance-focused theme for entertainment and pop-culture publishing. https://afthemes.com/products/celebnews/"}, "template": "morenews", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/celebnews.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/celebnews.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/celebnews.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/celebnews.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/celebnews.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/celebnews.1.0.5.zip", "1.1.0": "https://downloads.wordpress.org/theme/celebnews.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/celebnews.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/celebnews.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/celebnews.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/celebnews.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/celebnews.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/celebnews.1.1.6.zip"}, "downloaded": 7764, "num_ratings": 0, "preview_url": "https://wp-themes.com/celebnews/", "reviews_url": "https://wordpress.org/support/theme/celebnews/reviews/", "is_community": false, "last_updated": "2025-10-25", "requires_php": "5.0", "creation_time": "2025-07-03 22:01:21", "download_link": "https://downloads.wordpress.org/theme/celebnews.1.1.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/celebnews/screenshot.png?ver=1.1.6", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-04f4-71ed-9c81-ed3a76d27c78", "name": "CelebNews", "slug": "celebnews", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1761350400, "version": "1.1.6"}, "last_updated_time": "2025-10-25 07:46:34", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-69eb-7311-b881-48520e426884', 'colibri-wp', 'Colibri WP', '1.0.140', 'A beautiful, very customizable, multipurpose theme that you can use to create amazing websites through drag and drop. It comes with a pre-designed home page, 5 header designs and over 35 ready-to-use content blocks that you can easily customize. You can also design your own custom blocks by combining more than 25 drag and drop components. It offers lots of customization options (video background, slideshow background, header content types, etc) to help you create a website that stands out in no time. It is also designed with responsiveness, to work on mobile devices right out of the box. It is the only theme you will ever need! CHECK OUT THE DEMOS: https://colibriwp.com/go/demos', '019a30c1-69d2-7156-b9cf-ce8906962bef', 'https://downloads.wordpress.org/theme/colibri-wp.1.0.140.zip', NULL, '5.6', '2025-04-14 11:39:59+00', '2019-08-13 02:33:06+00', 'https://wp-themes.com/colibri-wp/', '//ts.w.org/wp-content/themes/colibri-wp/screenshot.jpg?ver=1.0.140', 96, 265, 'https://wordpress.org/support/theme/colibri-wp/reviews/', 1490234, 50000, 'https://wordpress.org/themes/colibri-wp/', true, 'https://colibriwp.com/#support', false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Colibri WP", "slug": "colibri-wp", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://colibriwp.com/", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 96, "status": "open", "ratings": {"1": 12, "2": 0, "3": 3, "4": 4, "5": 246}, "version": "1.0.140", "homepage": "https://wordpress.org/themes/colibri-wp/", "requires": false, "sections": {"description": "A beautiful, very customizable, multipurpose theme that you can use to create amazing websites through drag and drop. It comes with a pre-designed home page, 5 header designs and over 35 ready-to-use content blocks that you can easily customize. You can also design your own custom blocks by combining more than 25 drag and drop components. It offers lots of customization options (video background, slideshow background, header content types, etc) to help you create a website that stands out in no time. It is also designed with responsiveness, to work on mobile devices right out of the box. It is the only theme you will ever need! CHECK OUT THE DEMOS: https://colibriwp.com/go/demos"}, "versions": {"1.0.20": "https://downloads.wordpress.org/theme/colibri-wp.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/colibri-wp.1.0.21.zip", "1.0.30": "https://downloads.wordpress.org/theme/colibri-wp.1.0.30.zip", "1.0.31": "https://downloads.wordpress.org/theme/colibri-wp.1.0.31.zip", "1.0.35": "https://downloads.wordpress.org/theme/colibri-wp.1.0.35.zip", "1.0.44": "https://downloads.wordpress.org/theme/colibri-wp.1.0.44.zip", "1.0.49": "https://downloads.wordpress.org/theme/colibri-wp.1.0.49.zip", "1.0.53": "https://downloads.wordpress.org/theme/colibri-wp.1.0.53.zip", "1.0.60": "https://downloads.wordpress.org/theme/colibri-wp.1.0.60.zip", "1.0.61": "https://downloads.wordpress.org/theme/colibri-wp.1.0.61.zip", "1.0.72": "https://downloads.wordpress.org/theme/colibri-wp.1.0.72.zip", "1.0.77": "https://downloads.wordpress.org/theme/colibri-wp.1.0.77.zip", "1.0.78": "https://downloads.wordpress.org/theme/colibri-wp.1.0.78.zip", "1.0.80": "https://downloads.wordpress.org/theme/colibri-wp.1.0.80.zip", "1.0.81": "https://downloads.wordpress.org/theme/colibri-wp.1.0.81.zip", "1.0.82": "https://downloads.wordpress.org/theme/colibri-wp.1.0.82.zip", "1.0.86": "https://downloads.wordpress.org/theme/colibri-wp.1.0.86.zip", "1.0.87": "https://downloads.wordpress.org/theme/colibri-wp.1.0.87.zip", "1.0.88": "https://downloads.wordpress.org/theme/colibri-wp.1.0.88.zip", "1.0.89": "https://downloads.wordpress.org/theme/colibri-wp.1.0.89.zip", "1.0.92": "https://downloads.wordpress.org/theme/colibri-wp.1.0.92.zip", "1.0.93": "https://downloads.wordpress.org/theme/colibri-wp.1.0.93.zip", "1.0.94": "https://downloads.wordpress.org/theme/colibri-wp.1.0.94.zip", "1.0.99": "https://downloads.wordpress.org/theme/colibri-wp.1.0.99.zip", "1.0.101": "https://downloads.wordpress.org/theme/colibri-wp.1.0.101.zip", "1.0.102": "https://downloads.wordpress.org/theme/colibri-wp.1.0.102.zip", "1.0.105": "https://downloads.wordpress.org/theme/colibri-wp.1.0.105.zip", "1.0.107": "https://downloads.wordpress.org/theme/colibri-wp.1.0.107.zip", "1.0.109": "https://downloads.wordpress.org/theme/colibri-wp.1.0.109.zip", "1.0.125": "https://downloads.wordpress.org/theme/colibri-wp.1.0.125.zip", "1.0.137": "https://downloads.wordpress.org/theme/colibri-wp.1.0.137.zip", "1.0.138": "https://downloads.wordpress.org/theme/colibri-wp.1.0.138.zip", "1.0.140": "https://downloads.wordpress.org/theme/colibri-wp.1.0.140.zip"}, "downloaded": 1490234, "num_ratings": 265, "preview_url": "https://wp-themes.com/colibri-wp/", "reviews_url": "https://wordpress.org/support/theme/colibri-wp/reviews/", "is_community": false, "last_updated": "2025-04-14", "requires_php": "5.6", "creation_time": "2019-08-13 02:33:06", "download_link": "https://downloads.wordpress.org/theme/colibri-wp.1.0.140.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/colibri-wp/screenshot.jpg?ver=1.0.140", "active_installs": 50000, "aspiresync_meta": {"id": "019a30c0-04df-70f9-9323-fccac1d06820", "name": "Colibri WP", "slug": "colibri-wp", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1744588800, "version": "1.0.140"}, "last_updated_time": "2025-04-14 11:39:59", "external_support_url": "https://colibriwp.com/#support", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-69f5-71da-8c4c-67f91b2aa7b7', 'colormag', 'ColorMag', '4.1.1', 'ColorMag is always the best choice when it comes to magazine, news, and blog WordPress themes. You can create elegant and modern websites for news portals, online magazines, and publishing sites. With ColorMag’s 8 and counting free starter demos for health, food, entertainment, sports, and fashion industries, building a magazine style website is super easy. Best of all, the ColorMag WordPress theme offers multiple ad spaces in its layout. So, you can monetize your website by displaying ads in these slots without any fuss. And if you plan to sell products and services online, you can rely on the theme’s compatibility with WooCommerce. Some of its key features are: >> SEO Optimized >> Translation & RTL Ready >> Cross-browser Compatible >> Custom Widgets >> Responsive Design >> Sticky Menu. So, download the free ColorMag theme and create professional magazine websites quickly. You can get free support for ColorMag at https://themegrill.com/contact/ and check our demos at https://themegrilldemos.com/colormag/', '019a30c1-69f4-73e5-bfb0-9a4a62d15e86', 'https://downloads.wordpress.org/theme/colormag.4.1.1.zip', '5.0', '7.4', '2025-09-26 10:24:22+00', '2015-05-30 13:30:21+00', 'https://wp-themes.com/colormag/', '//ts.w.org/wp-content/themes/colormag/screenshot.jpg?ver=4.1.1', 98, 1557, 'https://wordpress.org/support/theme/colormag/reviews/', 4311368, 40000, 'https://wordpress.org/themes/colormag/', true, 'https://themegrill.com/contact/', false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "ColorMag", "slug": "colormag", "tags": {"blog": "Blog", "news": "News", "e-commerce": "E-commerce", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemeGrill", "avatar": "https://secure.gravatar.com/avatar/b5b178b46e95643a63e3db65d40db4d6e09e60e45957316291fd5f798083e76b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themegrill/", "author_url": "https://themegrill.com", "display_name": "ThemeGrill", "user_nicename": "themegrill"}, "rating": 98, "status": "open", "ratings": {"1": 17, "2": 3, "3": 6, "4": 41, "5": 1490}, "version": "4.1.1", "homepage": "https://wordpress.org/themes/colormag/", "requires": "5.0", "sections": {"description": "ColorMag is always the best choice when it comes to magazine, news, and blog WordPress themes. You can create elegant and modern websites for news portals, online magazines, and publishing sites. With ColorMag’s 8 and counting free starter demos for health, food, entertainment, sports, and fashion industries, building a magazine style website is super easy. Best of all, the ColorMag WordPress theme offers multiple ad spaces in its layout. So, you can monetize your website by displaying ads in these slots without any fuss. And if you plan to sell products and services online, you can rely on the theme’s compatibility with WooCommerce. Some of its key features are: >> SEO Optimized >> Translation & RTL Ready >> Cross-browser Compatible >> Custom Widgets >> Responsive Design >> Sticky Menu. So, download the free ColorMag theme and create professional magazine websites quickly. You can get free support for ColorMag at https://themegrill.com/contact/ and check our demos at https://themegrilldemos.com/colormag/"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/colormag.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/colormag.1.1.zip", "3.0": "https://downloads.wordpress.org/theme/colormag.3.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/colormag.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/colormag.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/colormag.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/colormag.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/colormag.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/colormag.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/colormag.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/colormag.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/colormag.1.0.9.zip", "1.1.1": "https://downloads.wordpress.org/theme/colormag.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/colormag.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/colormag.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/colormag.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/colormag.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/colormag.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/colormag.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/colormag.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/colormag.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/colormag.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/colormag.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/colormag.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/colormag.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/colormag.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/colormag.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/colormag.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/colormag.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/colormag.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/colormag.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/colormag.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/colormag.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/colormag.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/colormag.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/colormag.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/colormag.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/colormag.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/colormag.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/colormag.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/colormag.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/colormag.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/colormag.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/colormag.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/colormag.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/colormag.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/colormag.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/colormag.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/colormag.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/colormag.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/colormag.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/colormag.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/colormag.1.5.1.zip", "2.0.0": "https://downloads.wordpress.org/theme/colormag.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/colormag.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/colormag.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/colormag.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/colormag.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/colormag.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/colormag.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/colormag.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/colormag.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/colormag.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/colormag.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/colormag.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/colormag.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/colormag.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/colormag.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/colormag.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/colormag.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/colormag.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/colormag.2.1.8.zip", "3.0.1": "https://downloads.wordpress.org/theme/colormag.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/colormag.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/colormag.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/colormag.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/theme/colormag.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/theme/colormag.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/theme/colormag.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/theme/colormag.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/theme/colormag.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/theme/colormag.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/colormag.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/colormag.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/theme/colormag.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/theme/colormag.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/theme/colormag.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/theme/colormag.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/theme/colormag.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/theme/colormag.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/theme/colormag.3.1.9.zip", "4.0.0": "https://downloads.wordpress.org/theme/colormag.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/colormag.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/colormag.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/theme/colormag.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/theme/colormag.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/theme/colormag.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/theme/colormag.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/theme/colormag.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/theme/colormag.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/theme/colormag.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/theme/colormag.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/colormag.4.1.1.zip", "3.1.10": "https://downloads.wordpress.org/theme/colormag.3.1.10.zip", "3.1.11": "https://downloads.wordpress.org/theme/colormag.3.1.11.zip", "4.0.10": "https://downloads.wordpress.org/theme/colormag.4.0.10.zip", "4.0.11": "https://downloads.wordpress.org/theme/colormag.4.0.11.zip", "4.0.12": "https://downloads.wordpress.org/theme/colormag.4.0.12.zip", "4.0.13": "https://downloads.wordpress.org/theme/colormag.4.0.13.zip", "4.0.14": "https://downloads.wordpress.org/theme/colormag.4.0.14.zip", "4.0.15": "https://downloads.wordpress.org/theme/colormag.4.0.15.zip", "4.0.16": "https://downloads.wordpress.org/theme/colormag.4.0.16.zip", "4.0.17": "https://downloads.wordpress.org/theme/colormag.4.0.17.zip", "4.0.18": "https://downloads.wordpress.org/theme/colormag.4.0.18.zip", "4.0.19": "https://downloads.wordpress.org/theme/colormag.4.0.19.zip", "4.0.20": "https://downloads.wordpress.org/theme/colormag.4.0.20.zip", "2.0.0.1": "https://downloads.wordpress.org/theme/colormag.2.0.0.1.zip", "2.0.0.2": "https://downloads.wordpress.org/theme/colormag.2.0.0.2.zip", "2.0.0.3": "https://downloads.wordpress.org/theme/colormag.2.0.0.3.zip", "2.0.5.1": "https://downloads.wordpress.org/theme/colormag.2.0.5.1.zip", "3.0.0.1": "https://downloads.wordpress.org/theme/colormag.3.0.0.1.zip", "3.0.0.2": "https://downloads.wordpress.org/theme/colormag.3.0.0.2.zip", "3.0.0.3": "https://downloads.wordpress.org/theme/colormag.3.0.0.3.zip", "3.0.0.4": "https://downloads.wordpress.org/theme/colormag.3.0.0.4.zip", "3.0.0.5": "https://downloads.wordpress.org/theme/colormag.3.0.0.5.zip", "3.0.0.6": "https://downloads.wordpress.org/theme/colormag.3.0.0.6.zip", "3.0.0.7": "https://downloads.wordpress.org/theme/colormag.3.0.0.7.zip", "3.1.7.1": "https://downloads.wordpress.org/theme/colormag.3.1.7.1.zip"}, "downloaded": 4311368, "num_ratings": 1557, "preview_url": "https://wp-themes.com/colormag/", "reviews_url": "https://wordpress.org/support/theme/colormag/reviews/", "is_community": false, "last_updated": "2025-09-26", "requires_php": "7.4", "creation_time": "2015-05-30 13:30:21", "download_link": "https://downloads.wordpress.org/theme/colormag.4.1.1.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/colormag/screenshot.jpg?ver=4.1.1", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-0550-72fb-a858-9efe4b312aed", "name": "ColorMag", "slug": "colormag", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1758844800, "version": "4.1.1"}, "last_updated_time": "2025-09-26 10:24:22", "external_support_url": "https://themegrill.com/contact/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a01-706c-b5b9-dac69f43034f', 'corpnews', 'CorpNews', '1.0.3', 'CorpNews is a professional, enterprise-style dark WordPress child theme built on MoreNews for online newspapers, editorial organizations, magazines and high-traffic publishing platforms; it bundles pre-built starter templates and 1-click demo import, flexible header/footer builder options, block patterns and template kits, multiple banner layouts, and deep page-builder support (Gutenberg, Elementor, Beaver Builder, Divi, Brizy) so editorial teams can deploy complex sections, category hubs and custom homepages without code; CorpNews is responsive, AMP-ready, SEO and Core Web Vitals optimized for speed and ranking, integrates with WooCommerce for paywalls or stores and supports Jetpack, Contact Form 7 and Yoast SEO, plus multilingual and RTL demos (English, Spanish, French, Japanese, Arabic) — choose CorpNews for newspaper-grade layouts, template kit flexibility, and professional publishing workflows. https://afthemes.com/products/corpnews/', '019a30c1-69dc-72b2-ba86-5892e5cd53f1', 'https://downloads.wordpress.org/theme/corpnews.1.0.3.zip', '5.0', '5.0', '2025-10-25 07:45:45+00', '2025-10-08 22:15:53+00', 'https://wp-themes.com/corpnews/', '//ts.w.org/wp-content/themes/corpnews/screenshot.png?ver=1.0.3', 0, 0, 'https://wordpress.org/support/theme/corpnews/reviews/', 1755, 400, 'https://wordpress.org/themes/corpnews/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "CorpNews", "slug": "corpnews", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "AF themes", "avatar": "https://secure.gravatar.com/avatar/6840fee6f0abb67c899d7a7e34d50303ea8ab21678293a3b41f0268faaf8a05a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/afthemes/", "author_url": "https://afthemes.com/", "display_name": "AF themes", "user_nicename": "afthemes"}, "parent": {"name": "MoreNews", "slug": "morenews", "homepage": "https://wordpress.org/themes/morenews/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.3", "homepage": "https://wordpress.org/themes/corpnews/", "requires": "5.0", "sections": {"description": "CorpNews is a professional, enterprise-style dark WordPress child theme built on MoreNews for online newspapers, editorial organizations, magazines and high-traffic publishing platforms; it bundles pre-built starter templates and 1-click demo import, flexible header/footer builder options, block patterns and template kits, multiple banner layouts, and deep page-builder support (Gutenberg, Elementor, Beaver Builder, Divi, Brizy) so editorial teams can deploy complex sections, category hubs and custom homepages without code; CorpNews is responsive, AMP-ready, SEO and Core Web Vitals optimized for speed and ranking, integrates with WooCommerce for paywalls or stores and supports Jetpack, Contact Form 7 and Yoast SEO, plus multilingual and RTL demos (English, Spanish, French, Japanese, Arabic) — choose CorpNews for newspaper-grade layouts, template kit flexibility, and professional publishing workflows. https://afthemes.com/products/corpnews/"}, "template": "morenews", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/corpnews.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/corpnews.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/corpnews.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/corpnews.1.0.3.zip"}, "downloaded": 1755, "num_ratings": 0, "preview_url": "https://wp-themes.com/corpnews/", "reviews_url": "https://wordpress.org/support/theme/corpnews/reviews/", "is_community": false, "last_updated": "2025-10-25", "requires_php": "5.0", "creation_time": "2025-10-08 22:15:53", "download_link": "https://downloads.wordpress.org/theme/corpnews.1.0.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/corpnews/screenshot.png?ver=1.0.3", "active_installs": 400, "aspiresync_meta": {"id": "019a30c0-04d6-7013-8144-12f4b3c70750", "name": "CorpNews", "slug": "corpnews", "type": "theme", "origin": "wp_org", "pulled": 1761754481, "status": "open", "checked": 1761754481, "updated": 1761350400, "version": "1.0.3"}, "last_updated_time": "2025-10-25 07:45:45", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a0f-729f-9627-bc6604f73035', 'creative-minimalist', 'Creative Minimalist', '1.3', 'Creative Minimalist is the best free WordPress theme for creatives, bloggers, and businesses who value clean design and high conversion rates. Whether you''re running a lifestyle, travel, fashion, or photography blog—or managing a marketing agency, startup, or corporate company—this minimalist theme adapts easily. Built for speed, it’s one of the fastest and most mobile friendly themes available. Fully responsive, translation ready, and FSE compatible, it works with page builders like Gutenberg, Brizy, Elementor, Visual Composer, and Divi Builder. With support for adsense, advertisement, affiliate banners, and schema markup, it''s perfect for magazine, news, or newspaper publishing. Customize your sidebar, block, template, and color options easily. Use it as a journal, portfolio, writing, or review site, or build a high-converting landing page or one page ecommerce store with WooCommerce. SEO-optimized and simple to use, Creative Minimalist helps your WordPress site get found by search engines—and loved by your audience. Includes dark mode and blogging tools for writers. It''s easy to create a website with Creative Minimalist.', '019a30c1-6a0e-706c-bcef-ea118f2ad1ef', 'https://downloads.wordpress.org/theme/creative-minimalist.1.3.zip', '6.1', '5.6', '2025-07-02 12:18:56+00', '2025-07-02 12:01:15+00', 'https://wp-themes.com/creative-minimalist/', '//ts.w.org/wp-content/themes/creative-minimalist/screenshot.png?ver=1.3', 0, 0, 'https://wordpress.org/support/theme/creative-minimalist/reviews/', 7856, 1000, 'https://wordpress.org/themes/creative-minimalist/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Creative Minimalist", "slug": "creative-minimalist", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "food-and-drink": "Food & drink", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbthemescom", "avatar": "https://secure.gravatar.com/avatar/64e0df7601781a06ac84aef62b02deb12e2283ddf03073931e6a6a1c4e972988?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbthemescom/", "author_url": "https://superbthemes.com/", "display_name": "SuperbThemes", "user_nicename": "superbthemescom"}, "parent": {"name": "Bakery and Pastry", "slug": "bakery-and-pastry", "homepage": "https://wordpress.org/themes/bakery-and-pastry/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.3", "homepage": "https://wordpress.org/themes/creative-minimalist/", "requires": "6.1", "sections": {"description": "Creative Minimalist is the best free WordPress theme for creatives, bloggers, and businesses who value clean design and high conversion rates. Whether you''re running a lifestyle, travel, fashion, or photography blog—or managing a marketing agency, startup, or corporate company—this minimalist theme adapts easily. Built for speed, it’s one of the fastest and most mobile friendly themes available. Fully responsive, translation ready, and FSE compatible, it works with page builders like Gutenberg, Brizy, Elementor, Visual Composer, and Divi Builder. With support for adsense, advertisement, affiliate banners, and schema markup, it''s perfect for magazine, news, or newspaper publishing. Customize your sidebar, block, template, and color options easily. Use it as a journal, portfolio, writing, or review site, or build a high-converting landing page or one page ecommerce store with WooCommerce. SEO-optimized and simple to use, Creative Minimalist helps your WordPress site get found by search engines—and loved by your audience. Includes dark mode and blogging tools for writers. It''s easy to create a website with Creative Minimalist."}, "template": "bakery-and-pastry", "versions": {"1.0": "https://downloads.wordpress.org/theme/creative-minimalist.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/creative-minimalist.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/creative-minimalist.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/creative-minimalist.1.3.zip"}, "downloaded": 7856, "num_ratings": 0, "preview_url": "https://wp-themes.com/creative-minimalist/", "reviews_url": "https://wordpress.org/support/theme/creative-minimalist/reviews/", "is_community": false, "last_updated": "2025-07-02", "requires_php": "5.6", "creation_time": "2025-07-02 12:01:15", "download_link": "https://downloads.wordpress.org/theme/creative-minimalist.1.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/creative-minimalist/screenshot.png?ver=1.3", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-0558-72cf-b885-feec8a5c3975", "name": "Creative Minimalist", "slug": "creative-minimalist", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1751414400, "version": "1.3"}, "last_updated_time": "2025-07-02 12:18:56", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a1d-730b-ab26-0f6de9c36d30', 'customify', 'Customify', '0.4.12', 'Customify is fast, lightweight, responsive and super flexible multipurpose theme built with SEO, speed, and usability in mind. Unleash the power of your imagination with a true WYSIWYG Header & Footer builder (inside the WordPress Customizer) built exclusively for this theme. The theme works great with any of your favorite page builder likes Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Combined with the Header & Footer builder, you can build any type of websites like shop, business agencies, corporate, portfolio, education, university portal, consulting, church, restaurant, medical and so on. Customify is compatible with all well-coded plugins, including major ones like WooCommerce, OrbitFox, Yoast, BuddyPress, bbPress, etc. Learn more about the theme and ready to import demo sites at https://pressmaximum.com/customify', '019a30c1-6a1d-730b-ab26-0f6de9517e43', 'https://downloads.wordpress.org/theme/customify.0.4.12.zip', NULL, '5.6', '2025-10-07 02:55:35+00', '2018-05-10 03:37:12+00', 'https://wp-themes.com/customify/', '//ts.w.org/wp-content/themes/customify/screenshot.png?ver=0.4.12', 94, 141, 'https://wordpress.org/support/theme/customify/reviews/', 1243621, 40000, 'https://wordpress.org/themes/customify/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Customify", "slug": "customify", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "WPCustomify", "avatar": "https://secure.gravatar.com/avatar/b49fdec59392d8fb53bc6d9e3b3c23b0806fc2dfeee280f979f4e8c2c791ae73?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pressmaximum/", "author_url": "https://pressmaximum.com", "display_name": "PressMaximum", "user_nicename": "pressmaximum"}, "rating": 94, "status": "open", "ratings": {"1": 9, "2": 1, "3": 2, "4": 2, "5": 127}, "version": "0.4.12", "homepage": "https://wordpress.org/themes/customify/", "requires": false, "sections": {"description": "Customify is fast, lightweight, responsive and super flexible multipurpose theme built with SEO, speed, and usability in mind. Unleash the power of your imagination with a true WYSIWYG Header & Footer builder (inside the WordPress Customizer) built exclusively for this theme. The theme works great with any of your favorite page builder likes Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Combined with the Header & Footer builder, you can build any type of websites like shop, business agencies, corporate, portfolio, education, university portal, consulting, church, restaurant, medical and so on. Customify is compatible with all well-coded plugins, including major ones like WooCommerce, OrbitFox, Yoast, BuddyPress, bbPress, etc. Learn more about the theme and ready to import demo sites at https://pressmaximum.com/customify"}, "versions": {"0.0.1": "https://downloads.wordpress.org/theme/customify.0.0.1.zip", "0.0.2": "https://downloads.wordpress.org/theme/customify.0.0.2.zip", "0.0.3": "https://downloads.wordpress.org/theme/customify.0.0.3.zip", "0.0.4": "https://downloads.wordpress.org/theme/customify.0.0.4.zip", "0.0.5": "https://downloads.wordpress.org/theme/customify.0.0.5.zip", "0.0.6": "https://downloads.wordpress.org/theme/customify.0.0.6.zip", "0.0.7": "https://downloads.wordpress.org/theme/customify.0.0.7.zip", "0.0.8": "https://downloads.wordpress.org/theme/customify.0.0.8.zip", "0.0.9": "https://downloads.wordpress.org/theme/customify.0.0.9.zip", "0.1.0": "https://downloads.wordpress.org/theme/customify.0.1.0.zip", "0.1.1": "https://downloads.wordpress.org/theme/customify.0.1.1.zip", "0.1.2": "https://downloads.wordpress.org/theme/customify.0.1.2.zip", "0.2.0": "https://downloads.wordpress.org/theme/customify.0.2.0.zip", "0.2.1": "https://downloads.wordpress.org/theme/customify.0.2.1.zip", "0.2.2": "https://downloads.wordpress.org/theme/customify.0.2.2.zip", "0.2.3": "https://downloads.wordpress.org/theme/customify.0.2.3.zip", "0.2.4": "https://downloads.wordpress.org/theme/customify.0.2.4.zip", "0.2.5": "https://downloads.wordpress.org/theme/customify.0.2.5.zip", "0.2.6": "https://downloads.wordpress.org/theme/customify.0.2.6.zip", "0.2.7": "https://downloads.wordpress.org/theme/customify.0.2.7.zip", "0.2.8": "https://downloads.wordpress.org/theme/customify.0.2.8.zip", "0.2.9": "https://downloads.wordpress.org/theme/customify.0.2.9.zip", "0.3.0": "https://downloads.wordpress.org/theme/customify.0.3.0.zip", "0.3.1": "https://downloads.wordpress.org/theme/customify.0.3.1.zip", "0.3.2": "https://downloads.wordpress.org/theme/customify.0.3.2.zip", "0.3.3": "https://downloads.wordpress.org/theme/customify.0.3.3.zip", "0.3.4": "https://downloads.wordpress.org/theme/customify.0.3.4.zip", "0.3.5": "https://downloads.wordpress.org/theme/customify.0.3.5.zip", "0.3.6": "https://downloads.wordpress.org/theme/customify.0.3.6.zip", "0.3.7": "https://downloads.wordpress.org/theme/customify.0.3.7.zip", "0.3.9": "https://downloads.wordpress.org/theme/customify.0.3.9.zip", "0.4.0": "https://downloads.wordpress.org/theme/customify.0.4.0.zip", "0.4.1": "https://downloads.wordpress.org/theme/customify.0.4.1.zip", "0.4.2": "https://downloads.wordpress.org/theme/customify.0.4.2.zip", "0.4.4": "https://downloads.wordpress.org/theme/customify.0.4.4.zip", "0.4.5": "https://downloads.wordpress.org/theme/customify.0.4.5.zip", "0.4.6": "https://downloads.wordpress.org/theme/customify.0.4.6.zip", "0.4.7": "https://downloads.wordpress.org/theme/customify.0.4.7.zip", "0.4.8": "https://downloads.wordpress.org/theme/customify.0.4.8.zip", "0.4.10": "https://downloads.wordpress.org/theme/customify.0.4.10.zip", "0.4.11": "https://downloads.wordpress.org/theme/customify.0.4.11.zip", "0.4.12": "https://downloads.wordpress.org/theme/customify.0.4.12.zip"}, "downloaded": 1243621, "num_ratings": 141, "preview_url": "https://wp-themes.com/customify/", "reviews_url": "https://wordpress.org/support/theme/customify/reviews/", "is_community": false, "last_updated": "2025-10-07", "requires_php": "5.6", "creation_time": "2018-05-10 03:37:12", "download_link": "https://downloads.wordpress.org/theme/customify.0.4.12.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/customify/screenshot.png?ver=0.4.12", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-055c-7256-91e2-cd9ea1698873", "name": "Customify", "slug": "customify", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1759795200, "version": "0.4.12"}, "last_updated_time": "2025-10-07 02:55:35", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a28-7190-af41-80b14d4e56ff', 'dacnis', 'Dacnis', '1.0.28', 'Dacnis is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Dacnis is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', '019a30c1-69d2-7156-b9cf-ce8906962bef', 'https://downloads.wordpress.org/theme/dacnis.1.0.28.zip', '5.8', '7.1', '2025-04-15 08:42:57+00', '2024-09-11 03:56:48+00', 'https://wp-themes.com/dacnis/', '//ts.w.org/wp-content/themes/dacnis/screenshot.jpg?ver=1.0.28', 0, 0, 'https://wordpress.org/support/theme/dacnis/reviews/', 31041, 5000, 'https://wordpress.org/themes/dacnis/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Dacnis", "slug": "dacnis", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.28", "homepage": "https://wordpress.org/themes/dacnis/", "requires": "5.8", "sections": {"description": "Dacnis is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Dacnis is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.5": "https://downloads.wordpress.org/theme/dacnis.1.0.5.zip", "1.0.15": "https://downloads.wordpress.org/theme/dacnis.1.0.15.zip", "1.0.19": "https://downloads.wordpress.org/theme/dacnis.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/dacnis.1.0.20.zip", "1.0.28": "https://downloads.wordpress.org/theme/dacnis.1.0.28.zip"}, "downloaded": 31041, "num_ratings": 0, "preview_url": "https://wp-themes.com/dacnis/", "reviews_url": "https://wordpress.org/support/theme/dacnis/reviews/", "is_community": false, "last_updated": "2025-04-15", "requires_php": "7.1", "creation_time": "2024-09-11 03:56:48", "download_link": "https://downloads.wordpress.org/theme/dacnis.1.0.28.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/dacnis/screenshot.jpg?ver=1.0.28", "active_installs": 5000, "aspiresync_meta": {"id": "019a30c0-05af-7324-b948-36af0fbb4005", "name": "Dacnis", "slug": "dacnis", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1744675200, "version": "1.0.28"}, "last_updated_time": "2025-04-15 08:42:57", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6af3-730b-b147-b4f0e8c7131e', 'inspiro', 'Inspiro', '2.1.4', 'Inspiro is a versatile, ultra-lightweight WordPress theme ideal for small businesses, creative professionals, and visual portfolios. Combining modern aesthetics with lightning-fast performance, it enhances user experience and boosts SEO rankings. Get started instantly with 10+ beautiful starter sites crafted for specific business niches, letting you launch your website quickly. Inspiro features unique fullscreen video backgrounds supporting Vimeo, YouTube, and self-hosted videos, perfect for photography and multimedia projects. It integrates seamlessly with popular page builders (Elementor, Beaver Builder) and WooCommerce, making it effortless to create any type of site, from business and agency websites to online shops and blogs. Fully responsive, GDPR-compliant, and privacy-focused (no external Google fonts), Inspiro looks perfect on every device. Explore more powerful features in our Premium version: https://www.wpzoom.com/themes/inspiro/', '019a30c1-6af2-724e-9367-f2003e97b613', 'https://downloads.wordpress.org/theme/inspiro.2.1.4.zip', '6.0', '7.4', '2025-10-01 07:31:32+00', '2021-04-05 10:50:39+00', 'https://wp-themes.com/inspiro/', '//ts.w.org/wp-content/themes/inspiro/screenshot.png?ver=2.1.4', 94, 124, 'https://wordpress.org/support/theme/inspiro/reviews/', 1218560, 70000, 'https://wordpress.org/themes/inspiro/', true, 'https://www.wpzoom.com/contact/', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Inspiro", "slug": "inspiro", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "WPZOOM", "avatar": "https://secure.gravatar.com/avatar/41e28f10c68eb784ee08301cbe4074ce6083f5bcc0bae19639145550a8b84519?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpzoom/", "author_url": "https://www.wpzoom.com/", "display_name": "WPZOOM", "user_nicename": "wpzoom"}, "rating": 94, "status": "open", "ratings": {"1": 5, "2": 2, "3": 0, "4": 7, "5": 110}, "version": "2.1.4", "homepage": "https://wordpress.org/themes/inspiro/", "requires": "6.0", "sections": {"description": "Inspiro is a versatile, ultra-lightweight WordPress theme ideal for small businesses, creative professionals, and visual portfolios. Combining modern aesthetics with lightning-fast performance, it enhances user experience and boosts SEO rankings. Get started instantly with 10+ beautiful starter sites crafted for specific business niches, letting you launch your website quickly. Inspiro features unique fullscreen video backgrounds supporting Vimeo, YouTube, and self-hosted videos, perfect for photography and multimedia projects. It integrates seamlessly with popular page builders (Elementor, Beaver Builder) and WooCommerce, making it effortless to create any type of site, from business and agency websites to online shops and blogs. Fully responsive, GDPR-compliant, and privacy-focused (no external Google fonts), Inspiro looks perfect on every device. Explore more powerful features in our Premium version: https://www.wpzoom.com/themes/inspiro/"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/inspiro.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/inspiro.1.1.zip", "1.2.0": "https://downloads.wordpress.org/theme/inspiro.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/inspiro.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/inspiro.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/inspiro.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/inspiro.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/inspiro.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/inspiro.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/inspiro.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/inspiro.1.2.8.zip", "1.3.0": "https://downloads.wordpress.org/theme/inspiro.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/inspiro.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/inspiro.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/inspiro.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/inspiro.1.3.4.zip", "1.4.0": "https://downloads.wordpress.org/theme/inspiro.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/inspiro.1.4.1.zip", "1.5.0": "https://downloads.wordpress.org/theme/inspiro.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/inspiro.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/inspiro.1.5.2.zip", "1.6.0": "https://downloads.wordpress.org/theme/inspiro.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/inspiro.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/inspiro.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/inspiro.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/inspiro.1.6.4.zip", "1.7.0": "https://downloads.wordpress.org/theme/inspiro.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/inspiro.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/inspiro.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/inspiro.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/inspiro.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/inspiro.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/inspiro.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/inspiro.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/inspiro.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/inspiro.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/theme/inspiro.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/inspiro.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/inspiro.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/inspiro.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/inspiro.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/inspiro.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/inspiro.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/inspiro.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/inspiro.1.8.8.zip", "1.9.0": "https://downloads.wordpress.org/theme/inspiro.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/theme/inspiro.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/theme/inspiro.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/theme/inspiro.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/theme/inspiro.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/theme/inspiro.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/theme/inspiro.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/theme/inspiro.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/theme/inspiro.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/theme/inspiro.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/theme/inspiro.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/inspiro.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/inspiro.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/inspiro.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/inspiro.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/inspiro.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/inspiro.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/inspiro.2.0.7.zip", "2.1.0": "https://downloads.wordpress.org/theme/inspiro.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/inspiro.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/inspiro.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/inspiro.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/inspiro.2.1.4.zip", "1.7.10": "https://downloads.wordpress.org/theme/inspiro.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/theme/inspiro.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/theme/inspiro.1.7.12.zip", "1.7.13": "https://downloads.wordpress.org/theme/inspiro.1.7.13.zip", "1.9.10": "https://downloads.wordpress.org/theme/inspiro.1.9.10.zip"}, "downloaded": 1218560, "num_ratings": 124, "preview_url": "https://wp-themes.com/inspiro/", "reviews_url": "https://wordpress.org/support/theme/inspiro/reviews/", "is_community": false, "last_updated": "2025-10-01", "requires_php": "7.4", "creation_time": "2021-04-05 10:50:39", "download_link": "https://downloads.wordpress.org/theme/inspiro.2.1.4.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/inspiro/screenshot.png?ver=2.1.4", "active_installs": 70000, "aspiresync_meta": {"id": "019a30c0-099d-70fe-b462-7c1c3ffb3d65", "name": "Inspiro", "slug": "inspiro", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1759276800, "version": "2.1.4"}, "last_updated_time": "2025-10-01 07:31:32", "external_support_url": "https://www.wpzoom.com/contact/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a32-7209-86ec-c8d78da6b6a9', 'daily-news-blog', 'Daily News Blog', '1.1', 'Daily News Blog is an elegant WordPress block theme for bloggers, writers, and anyone seeking a clean, modern, and responsive design. This free theme offers a minimalist design that''s ideal for blogging, news magaines, and personal portfolios, making it a top choice for writers and journalists in various niches like food, fashion, travel, and lifestyle. It''s not just beautiful, but also fast and highly search engine optimized (SEO). It supports popular page builders like Elementor, Divi Builder, SiteOrigin, Brizy, Visual Composer, and Beaver Builder, ensuring easy customization for startups, agency firms, and businesses of all sizes. You can easily install WooCommerce for lightweight ecommerce shops. It''s mainly made for Gutenberg where you can easily change colors, fonts, activate dark mode and much more. With its mobile friendly templates, Daily News Blog is perfect for beginners, offering a customizable sidebar, and easy integration with advertisement banners, Adsense and affiliate links. Whether you''re a writer, photographer, game reviewer or newspaper, Daily News Blog offers endless possibilities.', '019a30c1-6a0e-706c-bcef-ea118f2ad1ef', 'https://downloads.wordpress.org/theme/daily-news-blog.1.1.zip', '6.1', '5.6', '2025-08-20 16:32:01+00', '2025-08-20 16:32:01+00', 'https://wp-themes.com/daily-news-blog/', '//ts.w.org/wp-content/themes/daily-news-blog/screenshot.png?ver=1.1', 100, 1, 'https://wordpress.org/support/theme/daily-news-blog/reviews/', 3603, 700, 'https://wordpress.org/themes/daily-news-blog/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Daily News Blog", "slug": "daily-news-blog", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbthemescom", "avatar": "https://secure.gravatar.com/avatar/64e0df7601781a06ac84aef62b02deb12e2283ddf03073931e6a6a1c4e972988?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbthemescom/", "author_url": "http://superbthemes.com/", "display_name": "SuperbThemes", "user_nicename": "superbthemescom"}, "parent": {"name": "Minimalistix", "slug": "minimalistix", "homepage": "https://wordpress.org/themes/minimalistix/"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 1}, "version": "1.1", "homepage": "https://wordpress.org/themes/daily-news-blog/", "requires": "6.1", "sections": {"description": "Daily News Blog is an elegant WordPress block theme for bloggers, writers, and anyone seeking a clean, modern, and responsive design. This free theme offers a minimalist design that''s ideal for blogging, news magaines, and personal portfolios, making it a top choice for writers and journalists in various niches like food, fashion, travel, and lifestyle. It''s not just beautiful, but also fast and highly search engine optimized (SEO). It supports popular page builders like Elementor, Divi Builder, SiteOrigin, Brizy, Visual Composer, and Beaver Builder, ensuring easy customization for startups, agency firms, and businesses of all sizes. You can easily install WooCommerce for lightweight ecommerce shops. It''s mainly made for Gutenberg where you can easily change colors, fonts, activate dark mode and much more. With its mobile friendly templates, Daily News Blog is perfect for beginners, offering a customizable sidebar, and easy integration with advertisement banners, Adsense and affiliate links. Whether you''re a writer, photographer, game reviewer or newspaper, Daily News Blog offers endless possibilities."}, "template": "minimalistix", "versions": {"1.0": "https://downloads.wordpress.org/theme/daily-news-blog.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/daily-news-blog.1.1.zip"}, "downloaded": 3603, "num_ratings": 1, "preview_url": "https://wp-themes.com/daily-news-blog/", "reviews_url": "https://wordpress.org/support/theme/daily-news-blog/reviews/", "is_community": false, "last_updated": "2025-08-20", "requires_php": "5.6", "creation_time": "2025-08-20 16:32:01", "download_link": "https://downloads.wordpress.org/theme/daily-news-blog.1.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/daily-news-blog/screenshot.png?ver=1.1", "active_installs": 700, "aspiresync_meta": {"id": "019a30c0-0711-7204-a848-323b0e70e928", "name": "Daily News Blog", "slug": "daily-news-blog", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1755648000, "version": "1.1"}, "last_updated_time": "2025-08-20 16:32:01", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a3f-7129-acf7-9947ddd56681', 'envo-one', 'Envo One', '1.0.4', 'Envo One is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/envo-one/', '019a30c1-6926-72e6-a3c4-dbf8686f02a6', 'https://downloads.wordpress.org/theme/envo-one.1.0.4.zip', NULL, '5.6', '2025-08-18 10:30:48+00', '2024-10-25 10:26:48+00', 'https://wp-themes.com/envo-one/', '//ts.w.org/wp-content/themes/envo-one/screenshot.png?ver=1.0.4', 100, 1, 'https://wordpress.org/support/theme/envo-one/reviews/', 51272, 20000, 'https://wordpress.org/themes/envo-one/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Envo One", "slug": "envo-one", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "EnvoThemes", "avatar": "https://secure.gravatar.com/avatar/fbfb6069115a2880669be42a480c105d8702f5ba9930b034b3a4223a495931a5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/envothemes/", "author_url": "https://envothemes.com/", "display_name": "EnvoThemes", "user_nicename": "envothemes"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 1}, "version": "1.0.4", "homepage": "https://wordpress.org/themes/envo-one/", "requires": false, "sections": {"description": "Envo One is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/envo-one/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/envo-one.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/envo-one.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/envo-one.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/envo-one.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/envo-one.1.0.4.zip"}, "downloaded": 51272, "num_ratings": 1, "preview_url": "https://wp-themes.com/envo-one/", "reviews_url": "https://wordpress.org/support/theme/envo-one/reviews/", "is_community": false, "last_updated": "2025-08-18", "requires_php": "5.6", "creation_time": "2024-10-25 10:26:48", "download_link": "https://downloads.wordpress.org/theme/envo-one.1.0.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/envo-one/screenshot.png?ver=1.0.4", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-0735-7160-9772-920849537fb3", "name": "Envo One", "slug": "envo-one", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1755475200, "version": "1.0.4"}, "last_updated_time": "2025-08-18 10:30:48", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a49-7140-8c9b-59a4e97402a1', 'envo-royal', 'Envo Royal', '1.0.13', 'Envo Royal is a fast, clean, lightweight, customizable and modern-looking free responsive multipurpose WordPress theme. Suitable for blog, creative, portfolio or business website and WooCommerce storefront. Theme supports popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer, Gutenberg etc. Envo Royal comes with unique WooCommerce Features and it is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Documentation: https://envothemes.com/docs/envo-royal/ Theme demos ready to import: https://envothemes.com/envo-royal-free-wp-theme/#demos', '019a30c1-6926-72e6-a3c4-dbf8686f02a6', 'https://downloads.wordpress.org/theme/envo-royal.1.0.13.zip', NULL, '5.6', '2025-05-28 08:03:13+00', '2024-04-26 09:27:37+00', 'https://wp-themes.com/envo-royal/', '//ts.w.org/wp-content/themes/envo-royal/screenshot.png?ver=1.0.13', 74, 3, 'https://wordpress.org/support/theme/envo-royal/reviews/', 103739, 20000, 'https://wordpress.org/themes/envo-royal/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Envo Royal", "slug": "envo-royal", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "EnvoThemes", "avatar": "https://secure.gravatar.com/avatar/fbfb6069115a2880669be42a480c105d8702f5ba9930b034b3a4223a495931a5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/envothemes/", "author_url": "https://envothemes.com/", "display_name": "EnvoThemes", "user_nicename": "envothemes"}, "rating": 74, "status": "open", "ratings": {"1": 1, "2": 0, "3": 0, "4": 0, "5": 2}, "version": "1.0.13", "homepage": "https://wordpress.org/themes/envo-royal/", "requires": false, "sections": {"description": "Envo Royal is a fast, clean, lightweight, customizable and modern-looking free responsive multipurpose WordPress theme. Suitable for blog, creative, portfolio or business website and WooCommerce storefront. Theme supports popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer, Gutenberg etc. Envo Royal comes with unique WooCommerce Features and it is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Documentation: https://envothemes.com/docs/envo-royal/ Theme demos ready to import: https://envothemes.com/envo-royal-free-wp-theme/#demos"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/envo-royal.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/envo-royal.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/envo-royal.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/envo-royal.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/envo-royal.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/envo-royal.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/envo-royal.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/envo-royal.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/envo-royal.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/envo-royal.1.0.9.zip", "1.0.10": "https://downloads.wordpress.org/theme/envo-royal.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/envo-royal.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/envo-royal.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/envo-royal.1.0.13.zip"}, "downloaded": 103739, "num_ratings": 3, "preview_url": "https://wp-themes.com/envo-royal/", "reviews_url": "https://wordpress.org/support/theme/envo-royal/reviews/", "is_community": false, "last_updated": "2025-05-28", "requires_php": "5.6", "creation_time": "2024-04-26 09:27:37", "download_link": "https://downloads.wordpress.org/theme/envo-royal.1.0.13.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/envo-royal/screenshot.png?ver=1.0.13", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-073c-7033-8e5e-805842877ecb", "name": "Envo Royal", "slug": "envo-royal", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1748390400, "version": "1.0.13"}, "last_updated_time": "2025-05-28 08:03:13", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a53-7286-817b-c5d3207e3017', 'extendable', 'Extendable', '2.0.30', 'Extendable is a distinct, dynamic block theme designed as a canvas for your next online venture. Sporting multiple style variations, Extendable is the most expressive block theme yet. Go fresh, bold, bohemian or minimal — with a single click.', '019a30c1-6a53-7286-817b-c5d31fd64893', 'https://downloads.wordpress.org/theme/extendable.2.0.30.zip', '6.6', '7.4', '2025-10-28 21:40:29+00', '2022-06-11 06:20:40+00', 'https://wp-themes.com/extendable/', '//ts.w.org/wp-content/themes/extendable/screenshot.png?ver=2.0.30', 100, 4, 'https://wordpress.org/support/theme/extendable/reviews/', 480418, 200000, 'https://wordpress.org/themes/extendable/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Extendable", "slug": "extendable", "tags": {"e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "rtl-language-support": "RTL language support"}, "author": {"author": "Extendify", "avatar": "https://secure.gravatar.com/avatar/9b4ed677f2b4b5411a1245c1996f7f162b453820496b93426789a6d6d8c5bb59?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendify/", "author_url": "https://extendify.com", "display_name": "Extendify", "user_nicename": "extendify"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 4}, "version": "2.0.30", "homepage": "https://wordpress.org/themes/extendable/", "requires": "6.6", "sections": {"description": "Extendable is a distinct, dynamic block theme designed as a canvas for your next online venture. Sporting multiple style variations, Extendable is the most expressive block theme yet. Go fresh, bold, bohemian or minimal — with a single click."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/extendable.1.0.zip", "1.0.4": "https://downloads.wordpress.org/theme/extendable.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/extendable.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/extendable.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/extendable.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/extendable.1.0.8.zip", "1.1.0": "https://downloads.wordpress.org/theme/extendable.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/theme/extendable.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/theme/extendable.1.3.0.zip", "1.4.0": "https://downloads.wordpress.org/theme/extendable.1.4.0.zip", "1.5.0": "https://downloads.wordpress.org/theme/extendable.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/extendable.1.5.1.zip", "2.0.0": "https://downloads.wordpress.org/theme/extendable.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/extendable.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/extendable.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/extendable.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/extendable.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/extendable.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/extendable.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/extendable.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/extendable.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/extendable.2.0.9.zip", "2.0.10": "https://downloads.wordpress.org/theme/extendable.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/theme/extendable.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/theme/extendable.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/theme/extendable.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/theme/extendable.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/theme/extendable.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/theme/extendable.2.0.16.zip", "2.0.17": "https://downloads.wordpress.org/theme/extendable.2.0.17.zip", "2.0.18": "https://downloads.wordpress.org/theme/extendable.2.0.18.zip", "2.0.19": "https://downloads.wordpress.org/theme/extendable.2.0.19.zip", "2.0.20": "https://downloads.wordpress.org/theme/extendable.2.0.20.zip", "2.0.21": "https://downloads.wordpress.org/theme/extendable.2.0.21.zip", "2.0.22": "https://downloads.wordpress.org/theme/extendable.2.0.22.zip", "2.0.23": "https://downloads.wordpress.org/theme/extendable.2.0.23.zip", "2.0.24": "https://downloads.wordpress.org/theme/extendable.2.0.24.zip", "2.0.25": "https://downloads.wordpress.org/theme/extendable.2.0.25.zip", "2.0.26": "https://downloads.wordpress.org/theme/extendable.2.0.26.zip", "2.0.27": "https://downloads.wordpress.org/theme/extendable.2.0.27.zip", "2.0.28": "https://downloads.wordpress.org/theme/extendable.2.0.28.zip", "2.0.29": "https://downloads.wordpress.org/theme/extendable.2.0.29.zip", "2.0.30": "https://downloads.wordpress.org/theme/extendable.2.0.30.zip"}, "downloaded": 480418, "num_ratings": 4, "preview_url": "https://wp-themes.com/extendable/", "reviews_url": "https://wordpress.org/support/theme/extendable/reviews/", "is_community": false, "last_updated": "2025-10-28", "requires_php": "7.4", "creation_time": "2022-06-11 06:20:40", "download_link": "https://downloads.wordpress.org/theme/extendable.2.0.30.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/extendable/screenshot.png?ver=2.0.30", "active_installs": 200000, "aspiresync_meta": {"id": "019a30c0-0740-72de-b783-c8c33a120b91", "name": "Extendable", "slug": "extendable", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1761609600, "version": "2.0.30"}, "last_updated_time": "2025-10-28 21:40:29", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a5d-71a8-a849-144cb7baa490', 'frontis', 'Frontis', '1.1.19', 'Meet Frontis, the lightweight WordPress block theme built for speed and flexibility. Perfect for any project, Frontis offers unlimited customizability through its simple block editor, empowering you to create stunning, fast-loading websites with no hassle. Whether for a blog, business, or portfolio, Frontis provides a robust foundation that scales with your needs, while maintaining great SEO performance. Make a bold statement with Frontis, where speed meets sophistication. A Fast, Highly Customizable Block Theme for WordPress.', '019a30c1-6a5c-727f-aa04-e133c452dd86', 'https://downloads.wordpress.org/theme/frontis.1.1.19.zip', '6.4', '7.4', '2025-09-05 06:03:58+00', '2025-02-02 17:41:49+00', 'https://wp-themes.com/frontis/', '//ts.w.org/wp-content/themes/frontis/screenshot.png?ver=1.1.19', 0, 0, 'https://wordpress.org/support/theme/frontis/reviews/', 14971, 4000, 'https://wordpress.org/themes/frontis/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Frontis", "slug": "frontis", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "WP Messiah", "avatar": "https://secure.gravatar.com/avatar/73203a2e8b58f3480003c839ef83f75f6b2fa485802df17e693320818b32c0cc?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wpmessiah/", "author_url": "https://wpmessiah.com/", "display_name": "WP Messiah", "user_nicename": "wpmessiah"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.1.19", "homepage": "https://wordpress.org/themes/frontis/", "requires": "6.4", "sections": {"description": "Meet Frontis, the lightweight WordPress block theme built for speed and flexibility. Perfect for any project, Frontis offers unlimited customizability through its simple block editor, empowering you to create stunning, fast-loading websites with no hassle. Whether for a blog, business, or portfolio, Frontis provides a robust foundation that scales with your needs, while maintaining great SEO performance. Make a bold statement with Frontis, where speed meets sophistication. A Fast, Highly Customizable Block Theme for WordPress."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/frontis.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/frontis.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/frontis.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/frontis.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/frontis.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/frontis.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/frontis.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/frontis.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/frontis.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/frontis.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/frontis.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/frontis.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/frontis.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/frontis.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/frontis.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/frontis.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/frontis.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/frontis.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/frontis.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/frontis.1.1.9.zip", "1.1.10": "https://downloads.wordpress.org/theme/frontis.1.1.10.zip", "1.1.11": "https://downloads.wordpress.org/theme/frontis.1.1.11.zip", "1.1.12": "https://downloads.wordpress.org/theme/frontis.1.1.12.zip", "1.1.13": "https://downloads.wordpress.org/theme/frontis.1.1.13.zip", "1.1.14": "https://downloads.wordpress.org/theme/frontis.1.1.14.zip", "1.1.15": "https://downloads.wordpress.org/theme/frontis.1.1.15.zip", "1.1.16": "https://downloads.wordpress.org/theme/frontis.1.1.16.zip", "1.1.17": "https://downloads.wordpress.org/theme/frontis.1.1.17.zip", "1.1.18": "https://downloads.wordpress.org/theme/frontis.1.1.18.zip", "1.1.19": "https://downloads.wordpress.org/theme/frontis.1.1.19.zip"}, "downloaded": 14971, "num_ratings": 0, "preview_url": "https://wp-themes.com/frontis/", "reviews_url": "https://wordpress.org/support/theme/frontis/reviews/", "is_community": false, "last_updated": "2025-09-05", "requires_php": "7.4", "creation_time": "2025-02-02 17:41:49", "download_link": "https://downloads.wordpress.org/theme/frontis.1.1.19.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/frontis/screenshot.png?ver=1.1.19", "active_installs": 4000, "aspiresync_meta": {"id": "019a30c0-0745-725f-a911-03e1a4f603e5", "name": "Frontis", "slug": "frontis", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1757030400, "version": "1.1.19"}, "last_updated_time": "2025-09-05 06:03:58", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a68-70e0-bf24-9712bb5f2feb', 'futurio-storefront', 'Futurio Storefront', '1.0.3', 'Futurio Storefront is a lightweight, fast and customizable free multi-purpose and WooCommerce WordPress theme, suitable for business, portfolio, creative, and photography sites, eCommerce shops, landing pages, blogs or WooCommerce storefronts. Futurio Storefront works perfectly with all page builders, like Elementor, Beaver Builder, Brizy, Visual Composer, SiteOrigin, Divi or Gutenberg, and supports most free and premium WordPress plugins, like WooCommerce, Jetpack, Contact Form 7, Yoast SEO and many more. Futurio Storefront is responsive, SEO friendly, WPML, translation and RTL ready, and comes with a 1-click-demo-import feature. Demos ready for download: https://futuriowp.com/futurio-storefront/', '019a30c1-6a67-71f9-98b0-a50d072adad1', 'https://downloads.wordpress.org/theme/futurio-storefront.1.0.3.zip', NULL, '5.6', '2024-10-27 12:02:00+00', '2024-10-26 13:27:03+00', 'https://wp-themes.com/futurio-storefront/', '//ts.w.org/wp-content/themes/futurio-storefront/screenshot.png?ver=1.0.3', 0, 0, 'https://wordpress.org/support/theme/futurio-storefront/reviews/', 28314, 10000, 'https://wordpress.org/themes/futurio-storefront/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Futurio Storefront", "slug": "futurio-storefront", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "FuturioWP", "avatar": "https://secure.gravatar.com/avatar/4c6cdd8613497cb1f03b7759969d6b0549a2a7ef3e1b06c80b6b0746f016a52a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/futuriowp/", "author_url": "https://futuriowp.com/", "display_name": "FuturioWP", "user_nicename": "futuriowp"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.3", "homepage": "https://wordpress.org/themes/futurio-storefront/", "requires": false, "sections": {"description": "Futurio Storefront is a lightweight, fast and customizable free multi-purpose and WooCommerce WordPress theme, suitable for business, portfolio, creative, and photography sites, eCommerce shops, landing pages, blogs or WooCommerce storefronts. Futurio Storefront works perfectly with all page builders, like Elementor, Beaver Builder, Brizy, Visual Composer, SiteOrigin, Divi or Gutenberg, and supports most free and premium WordPress plugins, like WooCommerce, Jetpack, Contact Form 7, Yoast SEO and many more. Futurio Storefront is responsive, SEO friendly, WPML, translation and RTL ready, and comes with a 1-click-demo-import feature. Demos ready for download: https://futuriowp.com/futurio-storefront/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/futurio-storefront.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/futurio-storefront.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/futurio-storefront.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/futurio-storefront.1.0.3.zip"}, "downloaded": 28314, "num_ratings": 0, "preview_url": "https://wp-themes.com/futurio-storefront/", "reviews_url": "https://wordpress.org/support/theme/futurio-storefront/reviews/", "is_community": false, "last_updated": "2024-10-27", "requires_php": "5.6", "creation_time": "2024-10-26 13:27:03", "download_link": "https://downloads.wordpress.org/theme/futurio-storefront.1.0.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/futurio-storefront/screenshot.png?ver=1.0.3", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-076a-71e2-981e-c1e97f18ea8f", "name": "Futurio Storefront", "slug": "futurio-storefront", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1729987200, "version": "1.0.3"}, "last_updated_time": "2024-10-27 12:02:00", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b01-70f2-a755-792896228bd5', 'iris-wp', 'Iris WP', '1.0.29', 'Iris WP is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Iris WP is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', '019a30c1-69d2-7156-b9cf-ce8906962bef', 'https://downloads.wordpress.org/theme/iris-wp.1.0.29.zip', '5.8', '7.1', '2025-04-15 08:24:48+00', '2024-06-13 09:11:46+00', 'https://wp-themes.com/iris-wp/', '//ts.w.org/wp-content/themes/iris-wp/screenshot.jpg?ver=1.0.29', 0, 0, 'https://wordpress.org/support/theme/iris-wp/reviews/', 40770, 7000, 'https://wordpress.org/themes/iris-wp/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Iris WP", "slug": "iris-wp", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.29", "homepage": "https://wordpress.org/themes/iris-wp/", "requires": "5.8", "sections": {"description": "Iris WP is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Iris WP is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.12": "https://downloads.wordpress.org/theme/iris-wp.1.0.12.zip", "1.0.15": "https://downloads.wordpress.org/theme/iris-wp.1.0.15.zip", "1.0.23": "https://downloads.wordpress.org/theme/iris-wp.1.0.23.zip", "1.0.27": "https://downloads.wordpress.org/theme/iris-wp.1.0.27.zip", "1.0.28": "https://downloads.wordpress.org/theme/iris-wp.1.0.28.zip", "1.0.29": "https://downloads.wordpress.org/theme/iris-wp.1.0.29.zip"}, "downloaded": 40770, "num_ratings": 0, "preview_url": "https://wp-themes.com/iris-wp/", "reviews_url": "https://wordpress.org/support/theme/iris-wp/reviews/", "is_community": false, "last_updated": "2025-04-15", "requires_php": "7.1", "creation_time": "2024-06-13 09:11:46", "download_link": "https://downloads.wordpress.org/theme/iris-wp.1.0.29.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/iris-wp/screenshot.jpg?ver=1.0.29", "active_installs": 7000, "aspiresync_meta": {"id": "019a30c0-0a20-7222-9bcd-4ab082e4feb7", "name": "Iris WP", "slug": "iris-wp", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1744675200, "version": "1.0.29"}, "last_updated_time": "2025-04-15 08:24:48", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a73-73b7-b811-3ee516213ab5', 'generatepress', 'GeneratePress', '3.6.0', 'GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com', '019a30c1-6a72-72a9-80f1-6c658875fbd1', 'https://downloads.wordpress.org/theme/generatepress.3.6.0.zip', '6.5', '7.4', '2025-05-06 15:28:41+00', '2014-05-15 03:45:18+00', 'https://wp-themes.com/generatepress/', '//ts.w.org/wp-content/themes/generatepress/screenshot.png?ver=3.6.0', 100, 1427, 'https://wordpress.org/support/theme/generatepress/reviews/', 6705392, 500000, 'https://wordpress.org/themes/generatepress/', true, 'https://generatepress.com/support', false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "GeneratePress", "slug": "generatepress", "tags": {"blog": "Blog", "buddypress": "BuddyPress", "e-commerce": "E-commerce", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Tom Usborne", "avatar": "https://secure.gravatar.com/avatar/832996feff7f2a7772a7f484ea19995de0c8128620504dff5e146519d98e6bea?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/edge22/", "author_url": "https://generatepress.com/about", "display_name": "Tom", "user_nicename": "edge22"}, "rating": 100, "status": "open", "ratings": {"1": 10, "2": 2, "3": 4, "4": 16, "5": 1395}, "version": "3.6.0", "homepage": "https://wordpress.org/themes/generatepress/", "requires": "6.5", "sections": {"description": "GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com"}, "versions": {"0.1": "https://downloads.wordpress.org/theme/generatepress.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/generatepress.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/generatepress.0.3.zip", "0.4": "https://downloads.wordpress.org/theme/generatepress.0.4.zip", "1.0": "https://downloads.wordpress.org/theme/generatepress.1.0.zip", "1.4": "https://downloads.wordpress.org/theme/generatepress.1.4.zip", "2.0": "https://downloads.wordpress.org/theme/generatepress.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/generatepress.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/generatepress.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/generatepress.2.3.zip", "1.0.1": "https://downloads.wordpress.org/theme/generatepress.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/generatepress.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/generatepress.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/generatepress.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/generatepress.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/generatepress.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/generatepress.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/generatepress.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/generatepress.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/generatepress.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/generatepress.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/generatepress.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/generatepress.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/generatepress.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/generatepress.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/generatepress.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/generatepress.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/generatepress.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/generatepress.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/generatepress.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/generatepress.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/generatepress.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/generatepress.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/generatepress.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/generatepress.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/generatepress.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/generatepress.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/generatepress.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/generatepress.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/generatepress.1.3.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/generatepress.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/generatepress.2.0.2.zip", "2.1.1": "https://downloads.wordpress.org/theme/generatepress.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/generatepress.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/generatepress.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/generatepress.2.1.4.zip", "2.2.1": "https://downloads.wordpress.org/theme/generatepress.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/generatepress.2.2.2.zip", "2.3.1": "https://downloads.wordpress.org/theme/generatepress.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/generatepress.2.3.2.zip", "2.4.0": "https://downloads.wordpress.org/theme/generatepress.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/generatepress.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/generatepress.2.4.2.zip", "3.0.0": "https://downloads.wordpress.org/theme/generatepress.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/generatepress.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/generatepress.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/generatepress.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/generatepress.3.0.4.zip", "3.1.0": "https://downloads.wordpress.org/theme/generatepress.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/generatepress.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/generatepress.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/theme/generatepress.3.1.3.zip", "3.2.0": "https://downloads.wordpress.org/theme/generatepress.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/theme/generatepress.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/theme/generatepress.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/theme/generatepress.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/theme/generatepress.3.2.4.zip", "3.3.0": "https://downloads.wordpress.org/theme/generatepress.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/generatepress.3.3.1.zip", "3.4.0": "https://downloads.wordpress.org/theme/generatepress.3.4.0.zip", "3.5.0": "https://downloads.wordpress.org/theme/generatepress.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/theme/generatepress.3.5.1.zip", "3.6.0": "https://downloads.wordpress.org/theme/generatepress.3.6.0.zip", "1.3.01": "https://downloads.wordpress.org/theme/generatepress.1.3.01.zip", "1.3.02": "https://downloads.wordpress.org/theme/generatepress.1.3.02.zip", "1.3.03": "https://downloads.wordpress.org/theme/generatepress.1.3.03.zip", "1.3.04": "https://downloads.wordpress.org/theme/generatepress.1.3.04.zip", "1.3.05": "https://downloads.wordpress.org/theme/generatepress.1.3.05.zip", "1.3.06": "https://downloads.wordpress.org/theme/generatepress.1.3.06.zip", "1.3.07": "https://downloads.wordpress.org/theme/generatepress.1.3.07.zip", "1.3.08": "https://downloads.wordpress.org/theme/generatepress.1.3.08.zip", "1.3.09": "https://downloads.wordpress.org/theme/generatepress.1.3.09.zip", "1.3.10": "https://downloads.wordpress.org/theme/generatepress.1.3.10.zip", "1.3.11": "https://downloads.wordpress.org/theme/generatepress.1.3.11.zip", "1.3.12": "https://downloads.wordpress.org/theme/generatepress.1.3.12.zip", "1.3.13": "https://downloads.wordpress.org/theme/generatepress.1.3.13.zip", "1.3.14": "https://downloads.wordpress.org/theme/generatepress.1.3.14.zip", "1.3.15": "https://downloads.wordpress.org/theme/generatepress.1.3.15.zip", "1.3.16": "https://downloads.wordpress.org/theme/generatepress.1.3.16.zip", "1.3.17": "https://downloads.wordpress.org/theme/generatepress.1.3.17.zip", "1.3.18": "https://downloads.wordpress.org/theme/generatepress.1.3.18.zip", "1.3.19": "https://downloads.wordpress.org/theme/generatepress.1.3.19.zip", "1.3.20": "https://downloads.wordpress.org/theme/generatepress.1.3.20.zip", "1.3.21": "https://downloads.wordpress.org/theme/generatepress.1.3.21.zip", "1.3.22": "https://downloads.wordpress.org/theme/generatepress.1.3.22.zip", "1.3.23": "https://downloads.wordpress.org/theme/generatepress.1.3.23.zip", "1.3.24": "https://downloads.wordpress.org/theme/generatepress.1.3.24.zip", "1.3.25": "https://downloads.wordpress.org/theme/generatepress.1.3.25.zip", "1.3.26": "https://downloads.wordpress.org/theme/generatepress.1.3.26.zip", "1.3.27": "https://downloads.wordpress.org/theme/generatepress.1.3.27.zip", "1.3.28": "https://downloads.wordpress.org/theme/generatepress.1.3.28.zip", "1.3.29": "https://downloads.wordpress.org/theme/generatepress.1.3.29.zip", "1.3.30": "https://downloads.wordpress.org/theme/generatepress.1.3.30.zip", "1.3.31": "https://downloads.wordpress.org/theme/generatepress.1.3.31.zip", "1.3.32": "https://downloads.wordpress.org/theme/generatepress.1.3.32.zip", "1.3.33": "https://downloads.wordpress.org/theme/generatepress.1.3.33.zip", "1.3.34": "https://downloads.wordpress.org/theme/generatepress.1.3.34.zip", "1.3.35": "https://downloads.wordpress.org/theme/generatepress.1.3.35.zip", "1.3.36": "https://downloads.wordpress.org/theme/generatepress.1.3.36.zip", "1.3.37": "https://downloads.wordpress.org/theme/generatepress.1.3.37.zip", "1.3.38": "https://downloads.wordpress.org/theme/generatepress.1.3.38.zip", "1.3.39": "https://downloads.wordpress.org/theme/generatepress.1.3.39.zip", "1.3.40": "https://downloads.wordpress.org/theme/generatepress.1.3.40.zip", "1.3.41": "https://downloads.wordpress.org/theme/generatepress.1.3.41.zip", "1.3.42": "https://downloads.wordpress.org/theme/generatepress.1.3.42.zip", "1.3.43": "https://downloads.wordpress.org/theme/generatepress.1.3.43.zip", "1.3.44": "https://downloads.wordpress.org/theme/generatepress.1.3.44.zip", "1.3.45": "https://downloads.wordpress.org/theme/generatepress.1.3.45.zip", "1.3.46": "https://downloads.wordpress.org/theme/generatepress.1.3.46.zip", "1.3.47": "https://downloads.wordpress.org/theme/generatepress.1.3.47.zip", "1.3.48": "https://downloads.wordpress.org/theme/generatepress.1.3.48.zip", "1.2.9.1": "https://downloads.wordpress.org/theme/generatepress.1.2.9.1.zip", "1.2.9.2": "https://downloads.wordpress.org/theme/generatepress.1.2.9.2.zip", "1.2.9.3": "https://downloads.wordpress.org/theme/generatepress.1.2.9.3.zip", "1.2.9.4": "https://downloads.wordpress.org/theme/generatepress.1.2.9.4.zip", "1.2.9.5": "https://downloads.wordpress.org/theme/generatepress.1.2.9.5.zip", "1.2.9.6": "https://downloads.wordpress.org/theme/generatepress.1.2.9.6.zip", "1.2.9.7": "https://downloads.wordpress.org/theme/generatepress.1.2.9.7.zip", "1.2.9.8": "https://downloads.wordpress.org/theme/generatepress.1.2.9.8.zip"}, "downloaded": 6705392, "num_ratings": 1427, "preview_url": "https://wp-themes.com/generatepress/", "reviews_url": "https://wordpress.org/support/theme/generatepress/reviews/", "is_community": false, "last_updated": "2025-05-06", "requires_php": "7.4", "creation_time": "2014-05-15 03:45:18", "download_link": "https://downloads.wordpress.org/theme/generatepress.3.6.0.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/generatepress/screenshot.png?ver=3.6.0", "active_installs": 500000, "aspiresync_meta": {"id": "019a30c0-076f-7266-ad4f-f37d395ff0e6", "name": "GeneratePress", "slug": "generatepress", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1746489600, "version": "3.6.0"}, "last_updated_time": "2025-05-06 15:28:41", "external_support_url": "https://generatepress.com/support", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a7f-7146-ac57-1a97fc6adf27', 'go', 'Go', '1.8.18', 'Go is an innovative, Gutenberg-first WordPress theme, hyper-focused on empowering makers to build beautifully rich websites with WordPress.', '019a30c1-6a7e-734d-99c2-8a300500f5fe', 'https://downloads.wordpress.org/theme/go.1.8.18.zip', NULL, '5.6', '2025-09-22 18:57:07+00', '2020-01-16 17:08:20+00', 'https://wp-themes.com/go/', '//ts.w.org/wp-content/themes/go/screenshot.png?ver=1.8.18', 94, 19, 'https://wordpress.org/support/theme/go/reviews/', 1247208, 60000, 'https://wordpress.org/themes/go/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Go", "slug": "go", "tags": {"e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "theme-options": "Theme options", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready"}, "author": {"author": "GoDaddy", "avatar": "https://secure.gravatar.com/avatar/c3a703eddf2a8c104602ebacd5bf0b1dcc33e639209c2dfefbcfca42aebca168?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/godaddy/", "author_url": "https://www.godaddy.com", "display_name": "GoDaddy", "user_nicename": "godaddy"}, "rating": 94, "status": "open", "ratings": {"1": 1, "2": 0, "3": 0, "4": 1, "5": 17}, "version": "1.8.18", "homepage": "https://wordpress.org/themes/go/", "requires": false, "sections": {"description": "Go is an innovative, Gutenberg-first WordPress theme, hyper-focused on empowering makers to build beautifully rich websites with WordPress."}, "versions": {"1.0.1": "https://downloads.wordpress.org/theme/go.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/theme/go.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/go.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/theme/go.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/go.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/go.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/go.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/go.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/go.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/go.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/go.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/go.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/go.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/go.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/go.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/go.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/go.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/go.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/go.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/go.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/go.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/go.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/go.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/go.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/go.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/go.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/go.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/go.1.4.4.zip", "1.5.0": "https://downloads.wordpress.org/theme/go.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/go.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/go.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/go.1.5.3.zip", "1.6.0": "https://downloads.wordpress.org/theme/go.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/go.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/go.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/go.1.6.3.zip", "1.6.5": "https://downloads.wordpress.org/theme/go.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/go.1.6.6.zip", "1.7.3": "https://downloads.wordpress.org/theme/go.1.7.3.zip", "1.8.0": "https://downloads.wordpress.org/theme/go.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/go.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/go.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/go.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/go.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/go.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/go.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/go.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/go.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/theme/go.1.8.9.zip", "1.2.10": "https://downloads.wordpress.org/theme/go.1.2.10.zip", "1.8.10": "https://downloads.wordpress.org/theme/go.1.8.10.zip", "1.8.11": "https://downloads.wordpress.org/theme/go.1.8.11.zip", "1.8.13": "https://downloads.wordpress.org/theme/go.1.8.13.zip", "1.8.14": "https://downloads.wordpress.org/theme/go.1.8.14.zip", "1.8.15": "https://downloads.wordpress.org/theme/go.1.8.15.zip", "1.8.16": "https://downloads.wordpress.org/theme/go.1.8.16.zip", "1.8.17": "https://downloads.wordpress.org/theme/go.1.8.17.zip", "1.8.18": "https://downloads.wordpress.org/theme/go.1.8.18.zip"}, "downloaded": 1247208, "num_ratings": 19, "preview_url": "https://wp-themes.com/go/", "reviews_url": "https://wordpress.org/support/theme/go/reviews/", "is_community": true, "last_updated": "2025-09-22", "requires_php": "5.6", "creation_time": "2020-01-16 17:08:20", "download_link": "https://downloads.wordpress.org/theme/go.1.8.18.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/go/screenshot.png?ver=1.8.18", "active_installs": 60000, "aspiresync_meta": {"id": "019a30c0-077c-710f-97d0-e8f8885466cc", "name": "Go", "slug": "go", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1758499200, "version": "1.8.18"}, "last_updated_time": "2025-09-22 18:57:07", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a88-70c6-84b7-d9e598e65b01', 'graceful-gold-blog', 'Graceful Gold Blog', '1.0.5', 'Graceful Gold Blog is a stylish and versatile free WordPress theme designed for a wide range of blogs and websites, including fashion, lifestyle, travel, tech, health, fitness, beauty, food, news, and online magazines. With its fully responsive and Retina-ready design, this theme ensures a seamless and visually stunning experience across all devices. Featuring a clean, modern, and minimalistic layout, Graceful Gold Blog is both user-friendly and highly customizable. It is WooCommerce compatible, allowing you to create an online store effortlessly, and supports Right-to-Left (RTL) languages for greater accessibility. Additionally, it is SEO-optimized, ensuring better search engine rankings and improved visibility. Whether you''re a blogger, entrepreneur, or business owner, Graceful Gold Blog provides the perfect foundation for building a professional and engaging website.', '019a30c1-6a87-7105-8986-0645e4bfe856', 'https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.5.zip', '5.3', '5.6', '2025-08-27 16:34:25+00', '2025-04-08 15:26:51+00', 'https://wp-themes.com/graceful-gold-blog/', '//ts.w.org/wp-content/themes/graceful-gold-blog/screenshot.png?ver=1.0.5', 0, 0, 'https://wordpress.org/support/theme/graceful-gold-blog/reviews/', 6550, 2000, 'https://wordpress.org/themes/graceful-gold-blog/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Graceful Gold Blog", "slug": "graceful-gold-blog", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Aslam", "avatar": "https://secure.gravatar.com/avatar/a34a7b6a5976ebd0439b9156d6c0b5175013969eaa0de93601a025b52bb467a6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aslamnaik/", "author_url": "http://optimathemes.com/", "display_name": "Aslam", "user_nicename": "aslamnaik"}, "parent": {"name": "Graceful", "slug": "graceful", "homepage": "https://wordpress.org/themes/graceful/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.5", "homepage": "https://wordpress.org/themes/graceful-gold-blog/", "requires": "5.3", "sections": {"description": "Graceful Gold Blog is a stylish and versatile free WordPress theme designed for a wide range of blogs and websites, including fashion, lifestyle, travel, tech, health, fitness, beauty, food, news, and online magazines. With its fully responsive and Retina-ready design, this theme ensures a seamless and visually stunning experience across all devices. Featuring a clean, modern, and minimalistic layout, Graceful Gold Blog is both user-friendly and highly customizable. It is WooCommerce compatible, allowing you to create an online store effortlessly, and supports Right-to-Left (RTL) languages for greater accessibility. Additionally, it is SEO-optimized, ensuring better search engine rankings and improved visibility. Whether you''re a blogger, entrepreneur, or business owner, Graceful Gold Blog provides the perfect foundation for building a professional and engaging website."}, "template": "graceful", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.5.zip"}, "downloaded": 6550, "num_ratings": 0, "preview_url": "https://wp-themes.com/graceful-gold-blog/", "reviews_url": "https://wordpress.org/support/theme/graceful-gold-blog/reviews/", "is_community": false, "last_updated": "2025-08-27", "requires_php": "5.6", "creation_time": "2025-04-08 15:26:51", "download_link": "https://downloads.wordpress.org/theme/graceful-gold-blog.1.0.5.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/graceful-gold-blog/screenshot.png?ver=1.0.5", "active_installs": 2000, "aspiresync_meta": {"id": "019a30c0-0774-70c4-982f-e0f82f072a3b", "name": "Graceful Gold Blog", "slug": "graceful-gold-blog", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1756252800, "version": "1.0.5"}, "last_updated_time": "2025-08-27 16:34:25", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6a94-72c7-8e09-779cd9c4898f', 'graceful-halo-blog', 'Graceful Halo Blog', '1.0.0', 'Graceful Halo Blog is a free, elegant, and versatile WordPress theme crafted for bloggers, creators, and storytellers. Whether you write about lifestyle, fashion, travel, beauty, food, fitness, health, tech, or news, this theme adapts perfectly to your niche. Featuring a clean, modern, and minimal design, Graceful Halo Blog ensures your content shines across all devices with its fully responsive and Retina-ready layout. Built with performance, accessibility, and SEO best practices in mind, it delivers both speed and visibility. The theme is WooCommerce compatible, translation-ready, and supports RTL languages, making it ideal for a global audience. Whether you’re starting a personal blog or building a professional online platform, Graceful Halo Blog blends sophisticated style with powerful functionality to help your voice stand out and your audience grow.', '019a30c1-6a87-7105-8986-0645e4bfe856', 'https://downloads.wordpress.org/theme/graceful-halo-blog.1.0.0.zip', '5.3', '5.6', '2025-10-10 08:01:11+00', '2025-10-10 08:01:11+00', 'https://wp-themes.com/graceful-halo-blog/', '//ts.w.org/wp-content/themes/graceful-halo-blog/screenshot.png?ver=1.0.0', 0, 0, 'https://wordpress.org/support/theme/graceful-halo-blog/reviews/', 1399, 200, 'https://wordpress.org/themes/graceful-halo-blog/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Graceful Halo Blog", "slug": "graceful-halo-blog", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Aslam", "avatar": "https://secure.gravatar.com/avatar/a34a7b6a5976ebd0439b9156d6c0b5175013969eaa0de93601a025b52bb467a6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aslamnaik/", "author_url": "http://optimathemes.com/", "display_name": "Aslam", "user_nicename": "aslamnaik"}, "parent": {"name": "Graceful", "slug": "graceful", "homepage": "https://wordpress.org/themes/graceful/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.0", "homepage": "https://wordpress.org/themes/graceful-halo-blog/", "requires": "5.3", "sections": {"description": "Graceful Halo Blog is a free, elegant, and versatile WordPress theme crafted for bloggers, creators, and storytellers. Whether you write about lifestyle, fashion, travel, beauty, food, fitness, health, tech, or news, this theme adapts perfectly to your niche. Featuring a clean, modern, and minimal design, Graceful Halo Blog ensures your content shines across all devices with its fully responsive and Retina-ready layout. Built with performance, accessibility, and SEO best practices in mind, it delivers both speed and visibility. The theme is WooCommerce compatible, translation-ready, and supports RTL languages, making it ideal for a global audience. Whether you’re starting a personal blog or building a professional online platform, Graceful Halo Blog blends sophisticated style with powerful functionality to help your voice stand out and your audience grow."}, "template": "graceful", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/graceful-halo-blog.1.0.0.zip"}, "downloaded": 1399, "num_ratings": 0, "preview_url": "https://wp-themes.com/graceful-halo-blog/", "reviews_url": "https://wordpress.org/support/theme/graceful-halo-blog/reviews/", "is_community": false, "last_updated": "2025-10-10", "requires_php": "5.6", "creation_time": "2025-10-10 08:01:11", "download_link": "https://downloads.wordpress.org/theme/graceful-halo-blog.1.0.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/graceful-halo-blog/screenshot.png?ver=1.0.0", "active_installs": 200, "aspiresync_meta": {"id": "019a30c0-07f2-7305-8b60-9b597929850e", "name": "Graceful Halo Blog", "slug": "graceful-halo-blog", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1760054400, "version": "1.0.0"}, "last_updated_time": "2025-10-10 08:01:11", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6aa0-7298-8423-c16a5983ea01', 'graceful-modern-blog', 'Graceful Modern Blog', '1.0.2', 'Graceful Modern Blog is a free and versatile WordPress theme crafted for bloggers, creators, and storytellers. Ideal for niches like lifestyle, fashion, travel, beauty, food, fitness, health, tech, and news, it offers a clean, minimal, and modern design that keeps the focus on your content. The theme is fully responsive and Retina-ready, ensuring a seamless reading experience on all devices. Optimized for performance, accessibility, and SEO, Graceful Modern Blog is also WooCommerce compatible, translation-ready, and supports RTL languages. Whether you’re starting a personal blog or creating a professional online presence, this theme blends elegant design with powerful features to help your site grow with ease.', '019a30c1-6a87-7105-8986-0645e4bfe856', 'https://downloads.wordpress.org/theme/graceful-modern-blog.1.0.2.zip', '5.3', '5.6', '2025-09-27 17:53:13+00', '2025-09-27 06:31:40+00', 'https://wp-themes.com/graceful-modern-blog/', '//ts.w.org/wp-content/themes/graceful-modern-blog/screenshot.png?ver=1.0.2', 0, 0, 'https://wordpress.org/support/theme/graceful-modern-blog/reviews/', 2129, 400, 'https://wordpress.org/themes/graceful-modern-blog/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Graceful Modern Blog", "slug": "graceful-modern-blog", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Aslam", "avatar": "https://secure.gravatar.com/avatar/a34a7b6a5976ebd0439b9156d6c0b5175013969eaa0de93601a025b52bb467a6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/aslamnaik/", "author_url": "http://optimathemes.com/", "display_name": "Aslam", "user_nicename": "aslamnaik"}, "parent": {"name": "Graceful", "slug": "graceful", "homepage": "https://wordpress.org/themes/graceful/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.2", "homepage": "https://wordpress.org/themes/graceful-modern-blog/", "requires": "5.3", "sections": {"description": "Graceful Modern Blog is a free and versatile WordPress theme crafted for bloggers, creators, and storytellers. Ideal for niches like lifestyle, fashion, travel, beauty, food, fitness, health, tech, and news, it offers a clean, minimal, and modern design that keeps the focus on your content. The theme is fully responsive and Retina-ready, ensuring a seamless reading experience on all devices. Optimized for performance, accessibility, and SEO, Graceful Modern Blog is also WooCommerce compatible, translation-ready, and supports RTL languages. Whether you’re starting a personal blog or creating a professional online presence, this theme blends elegant design with powerful features to help your site grow with ease."}, "template": "graceful", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/graceful-modern-blog.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/graceful-modern-blog.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/graceful-modern-blog.1.0.2.zip"}, "downloaded": 2129, "num_ratings": 0, "preview_url": "https://wp-themes.com/graceful-modern-blog/", "reviews_url": "https://wordpress.org/support/theme/graceful-modern-blog/reviews/", "is_community": false, "last_updated": "2025-09-27", "requires_php": "5.6", "creation_time": "2025-09-27 06:31:40", "download_link": "https://downloads.wordpress.org/theme/graceful-modern-blog.1.0.2.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/graceful-modern-blog/screenshot.png?ver=1.0.2", "active_installs": 400, "aspiresync_meta": {"id": "019a30c0-0935-7018-9c03-c09f328ddd53", "name": "Graceful Modern Blog", "slug": "graceful-modern-blog", "type": "theme", "origin": "wp_org", "pulled": 1761754482, "status": "open", "checked": 1761754482, "updated": 1758931200, "version": "1.0.2"}, "last_updated_time": "2025-09-27 17:53:13", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6aab-7343-be8f-2172fa3c6723', 'hello-biz', 'Hello Biz', '1.2.0', 'Hello Biz is a free, user-friendly Hybrid WordPress Theme that was crafted for seamless integration with the Elementor site builder and tailored specifically for business websites. Perfect for beginners, but far from limited to just them, it features a dedicated beginner-oriented “Home” screen to simplify and streamline the web-building process. Hello Biz also integrates with Elementor’s premium features, giving you access to tools like AI, and accessibility enhancements in one place. Whether launching a startup site or refining a company portfolio, Hello Biz offers a solid, responsive foundation for all web creators. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here: https://patchstack.com/database/wordpress/theme/hello-biz/vdp.', '019a30c1-64dc-7278-a1bf-1e36d33fd393', 'https://downloads.wordpress.org/theme/hello-biz.1.2.0.zip', '6.0', '7.4', '2025-09-18 17:07:27+00', '2024-11-22 14:41:51+00', 'https://wp-themes.com/hello-biz/', '//ts.w.org/wp-content/themes/hello-biz/screenshot.png?ver=1.2.0', 48, 5, 'https://wordpress.org/support/theme/hello-biz/reviews/', 305482, 80000, 'https://wordpress.org/themes/hello-biz/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Hello Biz", "slug": "hello-biz", "tags": {"custom-logo": "Custom logo", "custom-menu": "Custom menu", "custom-colors": "Custom colors", "featured-images": "Featured images", "flexible-header": "Flexible header", "style-variations": "Style variations", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Elementor Team", "avatar": "https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elemntor/", "author_url": "https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash", "display_name": "Elementor", "user_nicename": "elemntor"}, "rating": 48, "status": "open", "ratings": {"1": 2, "2": 1, "3": 1, "4": 0, "5": 1}, "version": "1.2.0", "homepage": "https://wordpress.org/themes/hello-biz/", "requires": "6.0", "sections": {"description": "Hello Biz is a free, user-friendly Hybrid WordPress Theme that was crafted for seamless integration with the Elementor site builder and tailored specifically for business websites. Perfect for beginners, but far from limited to just them, it features a dedicated beginner-oriented “Home” screen to simplify and streamline the web-building process. Hello Biz also integrates with Elementor’s premium features, giving you access to tools like AI, and accessibility enhancements in one place. Whether launching a startup site or refining a company portfolio, Hello Biz offers a solid, responsive foundation for all web creators. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here: https://patchstack.com/database/wordpress/theme/hello-biz/vdp."}, "versions": {"0.0.1": "https://downloads.wordpress.org/theme/hello-biz.0.0.1.zip", "0.0.2": "https://downloads.wordpress.org/theme/hello-biz.0.0.2.zip", "0.0.3": "https://downloads.wordpress.org/theme/hello-biz.0.0.3.zip", "0.0.4": "https://downloads.wordpress.org/theme/hello-biz.0.0.4.zip", "0.0.5": "https://downloads.wordpress.org/theme/hello-biz.0.0.5.zip", "0.0.6": "https://downloads.wordpress.org/theme/hello-biz.0.0.6.zip", "1.0.0": "https://downloads.wordpress.org/theme/hello-biz.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/hello-biz.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/hello-biz.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/hello-biz.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/hello-biz.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/hello-biz.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/hello-biz.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/hello-biz.1.0.7.zip", "1.1.0": "https://downloads.wordpress.org/theme/hello-biz.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/hello-biz.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/theme/hello-biz.1.2.0.zip"}, "downloaded": 305482, "num_ratings": 5, "preview_url": "https://wp-themes.com/hello-biz/", "reviews_url": "https://wordpress.org/support/theme/hello-biz/reviews/", "is_community": false, "last_updated": "2025-09-18", "requires_php": "7.4", "creation_time": "2024-11-22 14:41:51", "download_link": "https://downloads.wordpress.org/theme/hello-biz.1.2.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/hello-biz/screenshot.png?ver=1.2.0", "active_installs": 80000, "aspiresync_meta": {"id": "019a30c0-09c5-7339-9c80-26bd700326a2", "name": "Hello Biz", "slug": "hello-biz", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1758153600, "version": "1.2.0"}, "last_updated_time": "2025-09-18 17:07:27", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d1f-724e-be70-14152c673da2', 'twentytwelve', 'Twenty Twelve', '4.6', 'The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentytwelve.4.6.zip', '3.5', '5.2.4', '2025-07-16 03:56:24+00', '2012-09-27 22:29:09+00', 'https://wp-themes.com/twentytwelve/', '//ts.w.org/wp-content/themes/twentytwelve/screenshot.png?ver=4.6', 92, 159, 'https://wordpress.org/support/theme/twentytwelve/reviews/', 8565460, 60000, 'https://wordpress.org/themes/twentytwelve/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Twelve", "slug": "twentytwelve", "tags": {"blog": "Blog", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "microformats": "Microformats", "post-formats": "Post formats", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 92, "status": "open", "ratings": {"1": 3, "2": 3, "3": 6, "4": 24, "5": 123}, "version": "4.6", "homepage": "https://wordpress.org/themes/twentytwelve/", "requires": "3.5", "sections": {"description": "The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background."}, "versions": {"0.9": "https://downloads.wordpress.org/theme/twentytwelve.0.9.zip", "1.0": "https://downloads.wordpress.org/theme/twentytwelve.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwelve.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwelve.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwelve.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentytwelve.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentytwelve.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentytwelve.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentytwelve.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentytwelve.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentytwelve.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentytwelve.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentytwelve.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentytwelve.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentytwelve.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentytwelve.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentytwelve.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentytwelve.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentytwelve.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentytwelve.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentytwelve.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentytwelve.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentytwelve.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentytwelve.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentytwelve.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentytwelve.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentytwelve.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentytwelve.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentytwelve.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentytwelve.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentytwelve.3.9.zip", "4.0": "https://downloads.wordpress.org/theme/twentytwelve.4.0.zip", "4.1": "https://downloads.wordpress.org/theme/twentytwelve.4.1.zip", "4.2": "https://downloads.wordpress.org/theme/twentytwelve.4.2.zip", "4.3": "https://downloads.wordpress.org/theme/twentytwelve.4.3.zip", "4.4": "https://downloads.wordpress.org/theme/twentytwelve.4.4.zip", "4.5": "https://downloads.wordpress.org/theme/twentytwelve.4.5.zip", "4.6": "https://downloads.wordpress.org/theme/twentytwelve.4.6.zip", "1.1.1": "https://downloads.wordpress.org/theme/twentytwelve.1.1.1.zip"}, "downloaded": 8565460, "num_ratings": 159, "preview_url": "https://wp-themes.com/twentytwelve/", "reviews_url": "https://wordpress.org/support/theme/twentytwelve/reviews/", "is_community": true, "last_updated": "2025-07-16", "requires_php": "5.2.4", "creation_time": "2012-09-27 22:29:09", "download_link": "https://downloads.wordpress.org/theme/twentytwelve.4.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwelve/screenshot.png?ver=4.6", "active_installs": 60000, "aspiresync_meta": {"id": "019a30c0-145c-7034-8f0f-a62b591618e9", "name": "Twenty Twelve", "slug": "twentytwelve", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1752624000, "version": "4.6"}, "last_updated_time": "2025-07-16 03:56:24", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6ab2-7315-b104-0d5f0704581f', 'hello-commerce', 'Hello Commerce', '1.0.1', 'Sell smart from the start with Hello Commerce. Hello Commerce is a free WordPress ecommerce theme designed to help you launch your online store quickly and professionally. Built for WooCommerce and powered by the flexibility of Elementor, it offers a lightweight, responsive foundation that’s perfect for beginners and growing businesses alike. Whether you''re selling products or services, the Hello Commerce theme gives you the freedom to build your store your way, launch fast, and scale with confidence. Start strong with a guided setup, ready-made shop templates, and intuitive styling controls. Customize your storefront’s style and layout, including product grids, cart, and checkout pages, with intuitive controls, directly within the Elementor ecosystem without code. Manage your site efficiently using the dedicated Home screen that brings key tools and actions together. Why Hello Commerce? - Seamless integration with Elementor and WooCommerce - Fast, flexible, and performance-optimized - Beginner-friendly, no code or technical skills required - Complete site template kits to launch your store quickly. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here https://patchstack.com/database.', '019a30c1-64dc-7278-a1bf-1e36d33fd393', 'https://downloads.wordpress.org/theme/hello-commerce.1.0.1.zip', '6.0', '7.4', '2025-08-07 23:46:02+00', '2025-08-07 20:32:33+00', 'https://wp-themes.com/hello-commerce/', '//ts.w.org/wp-content/themes/hello-commerce/screenshot.png?ver=1.0.1', 0, 0, 'https://wordpress.org/support/theme/hello-commerce/reviews/', 8127, 1000, 'https://wordpress.org/themes/hello-commerce/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Hello Commerce", "slug": "hello-commerce", "tags": {"custom-logo": "Custom logo", "custom-menu": "Custom menu", "custom-colors": "Custom colors", "featured-images": "Featured images", "flexible-header": "Flexible header", "style-variations": "Style variations", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Elementor Team", "avatar": "https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elemntor/", "author_url": "https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash", "display_name": "Elementor", "user_nicename": "elemntor"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.1", "homepage": "https://wordpress.org/themes/hello-commerce/", "requires": "6.0", "sections": {"description": "Sell smart from the start with Hello Commerce. Hello Commerce is a free WordPress ecommerce theme designed to help you launch your online store quickly and professionally. Built for WooCommerce and powered by the flexibility of Elementor, it offers a lightweight, responsive foundation that’s perfect for beginners and growing businesses alike. Whether you''re selling products or services, the Hello Commerce theme gives you the freedom to build your store your way, launch fast, and scale with confidence. Start strong with a guided setup, ready-made shop templates, and intuitive styling controls. Customize your storefront’s style and layout, including product grids, cart, and checkout pages, with intuitive controls, directly within the Elementor ecosystem without code. Manage your site efficiently using the dedicated Home screen that brings key tools and actions together. Why Hello Commerce? - Seamless integration with Elementor and WooCommerce - Fast, flexible, and performance-optimized - Beginner-friendly, no code or technical skills required - Complete site template kits to launch your store quickly. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here https://patchstack.com/database."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/hello-commerce.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/hello-commerce.1.0.1.zip"}, "downloaded": 8127, "num_ratings": 0, "preview_url": "https://wp-themes.com/hello-commerce/", "reviews_url": "https://wordpress.org/support/theme/hello-commerce/reviews/", "is_community": false, "last_updated": "2025-08-07", "requires_php": "7.4", "creation_time": "2025-08-07 20:32:33", "download_link": "https://downloads.wordpress.org/theme/hello-commerce.1.0.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/hello-commerce/screenshot.png?ver=1.0.1", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-09a6-73c9-9fe5-79656ca7ae0a", "name": "Hello Commerce", "slug": "hello-commerce", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1754524800, "version": "1.0.1"}, "last_updated_time": "2025-08-07 23:46:02", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6aba-70df-8320-957071c0b084', 'hello-elementor', 'Hello Elementor', '3.4.5', 'Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.', '019a30c1-64dc-7278-a1bf-1e36d33fd393', 'https://downloads.wordpress.org/theme/hello-elementor.3.4.5.zip', '6.0', '7.4', '2025-10-27 12:46:46+00', '2019-05-13 08:18:04+00', 'https://wp-themes.com/hello-elementor/', '//ts.w.org/wp-content/themes/hello-elementor/screenshot.png?ver=3.4.5', 84, 121, 'https://wordpress.org/support/theme/hello-elementor/reviews/', 10942423, 1000000, 'https://wordpress.org/themes/hello-elementor/', true, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:13+00', '{"name": "Hello Elementor", "slug": "hello-elementor", "tags": {"custom-logo": "Custom logo", "custom-menu": "Custom menu", "custom-colors": "Custom colors", "featured-images": "Featured images", "flexible-header": "Flexible header", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "Elementor Team", "avatar": "https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/elemntor/", "author_url": "https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash", "display_name": "Elementor", "user_nicename": "elemntor"}, "rating": 84, "status": "open", "ratings": {"1": 21, "2": 0, "3": 2, "4": 3, "5": 95}, "version": "3.4.5", "homepage": "https://wordpress.org/themes/hello-elementor/", "requires": "6.0", "sections": {"description": "Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators."}, "versions": {"1.1.0": "https://downloads.wordpress.org/theme/hello-elementor.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/theme/hello-elementor.1.2.0.zip", "2.0.0": "https://downloads.wordpress.org/theme/hello-elementor.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/hello-elementor.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/hello-elementor.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/hello-elementor.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/hello-elementor.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/hello-elementor.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/hello-elementor.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/hello-elementor.2.0.7.zip", "2.1.0": "https://downloads.wordpress.org/theme/hello-elementor.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/hello-elementor.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/hello-elementor.2.1.2.zip", "2.2.0": "https://downloads.wordpress.org/theme/hello-elementor.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/hello-elementor.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/hello-elementor.2.2.2.zip", "2.3.0": "https://downloads.wordpress.org/theme/hello-elementor.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/hello-elementor.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/theme/hello-elementor.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/hello-elementor.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/hello-elementor.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/hello-elementor.2.4.3.zip", "2.5.0": "https://downloads.wordpress.org/theme/hello-elementor.2.5.0.zip", "2.6.0": "https://downloads.wordpress.org/theme/hello-elementor.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/hello-elementor.2.6.1.zip", "2.7.0": "https://downloads.wordpress.org/theme/hello-elementor.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/theme/hello-elementor.2.7.1.zip", "2.8.0": "https://downloads.wordpress.org/theme/hello-elementor.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/theme/hello-elementor.2.8.1.zip", "2.9.0": "https://downloads.wordpress.org/theme/hello-elementor.2.9.0.zip", "3.0.0": "https://downloads.wordpress.org/theme/hello-elementor.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/hello-elementor.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/hello-elementor.3.0.2.zip", "3.1.0": "https://downloads.wordpress.org/theme/hello-elementor.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/hello-elementor.3.1.1.zip", "3.2.0": "https://downloads.wordpress.org/theme/hello-elementor.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/theme/hello-elementor.3.2.1.zip", "3.3.0": "https://downloads.wordpress.org/theme/hello-elementor.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/theme/hello-elementor.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/theme/hello-elementor.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/theme/hello-elementor.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/theme/hello-elementor.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/theme/hello-elementor.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/theme/hello-elementor.3.4.5.zip"}, "downloaded": 10942423, "num_ratings": 121, "preview_url": "https://wp-themes.com/hello-elementor/", "reviews_url": "https://wordpress.org/support/theme/hello-elementor/reviews/", "is_community": false, "last_updated": "2025-10-27", "requires_php": "7.4", "creation_time": "2019-05-13 08:18:04", "download_link": "https://downloads.wordpress.org/theme/hello-elementor.3.4.5.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/hello-elementor/screenshot.png?ver=3.4.5", "active_installs": 1000000, "aspiresync_meta": {"id": "019a30c0-09ac-70e0-856e-db7d6cd50fcd", "name": "Hello Elementor", "slug": "hello-elementor", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1761523200, "version": "3.4.5"}, "last_updated_time": "2025-10-27 12:46:46", "external_support_url": "", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6ac2-7119-82a3-0b9c7347ca1c', 'hestia', 'Hestia', '3.3.3', 'Hestia is a modern WordPress theme for professionals. It fits creative business, small businesses (restaurants, wedding planners, sport/medical shops), startups, corporate businesses, online agencies and firms, portfolios, ecommerce (WooCommerce), and freelancers. It has a multipurpose one-page design, widgetized footer, blog/news page and a clean look, is compatible with: Flat Parallax Slider, Photo Gallery, Travel Map and Elementor Page Builder . The theme is responsive, WPML, Retina ready, SEO friendly, and uses Material Kit for design.', '019a30c1-6ac1-7121-89c0-4a1bdc1c7842', 'https://downloads.wordpress.org/theme/hestia.3.3.3.zip', NULL, '5.4.0', '2025-09-04 11:05:36+00', '2017-05-19 03:30:07+00', 'https://wp-themes.com/hestia/', '//ts.w.org/wp-content/themes/hestia/screenshot.png?ver=3.3.3', 96, 559, 'https://wordpress.org/support/theme/hestia/reviews/', 4550974, 90000, 'https://wordpress.org/themes/hestia/', true, 'https://themeisle.com/contact', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Hestia", "slug": "hestia", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "ThemeIsle", "avatar": "https://secure.gravatar.com/avatar/91e46225a693950a8f2350674124a8e3ceddb0f705fa988377646322729e3d7c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeisle/", "author_url": "https://themeisle.com", "display_name": "Themeisle", "user_nicename": "themeisle"}, "rating": 96, "status": "open", "ratings": {"1": 13, "2": 8, "3": 6, "4": 39, "5": 493}, "version": "3.3.3", "homepage": "https://wordpress.org/themes/hestia/", "requires": false, "sections": {"description": "Hestia is a modern WordPress theme for professionals. It fits creative business, small businesses (restaurants, wedding planners, sport/medical shops), startups, corporate businesses, online agencies and firms, portfolios, ecommerce (WooCommerce), and freelancers. It has a multipurpose one-page design, widgetized footer, blog/news page and a clean look, is compatible with: Flat Parallax Slider, Photo Gallery, Travel Map and Elementor Page Builder . The theme is responsive, WPML, Retina ready, SEO friendly, and uses Material Kit for design."}, "versions": {"1.0.6": "https://downloads.wordpress.org/theme/hestia.1.0.6.zip", "1.0.8": "https://downloads.wordpress.org/theme/hestia.1.0.8.zip", "2.0.3": "https://downloads.wordpress.org/theme/hestia.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/hestia.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/hestia.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/hestia.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/hestia.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/hestia.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/hestia.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/hestia.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/hestia.2.1.1.zip", "2.2.0": "https://downloads.wordpress.org/theme/hestia.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/hestia.2.2.1.zip", "2.3.0": "https://downloads.wordpress.org/theme/hestia.2.3.0.zip", "2.4.0": "https://downloads.wordpress.org/theme/hestia.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/hestia.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/hestia.2.4.2.zip", "2.4.4": "https://downloads.wordpress.org/theme/hestia.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/theme/hestia.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/theme/hestia.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/theme/hestia.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/theme/hestia.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/theme/hestia.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/theme/hestia.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/theme/hestia.2.5.1.zip", "2.5.3": "https://downloads.wordpress.org/theme/hestia.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/hestia.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/theme/hestia.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/theme/hestia.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/theme/hestia.2.5.7.zip", "3.0.0": "https://downloads.wordpress.org/theme/hestia.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/hestia.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/hestia.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/hestia.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/hestia.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/theme/hestia.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/theme/hestia.3.0.6.zip", "3.0.8": "https://downloads.wordpress.org/theme/hestia.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/theme/hestia.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/theme/hestia.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/hestia.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/hestia.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/theme/hestia.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/theme/hestia.3.1.4.zip", "3.1.6": "https://downloads.wordpress.org/theme/hestia.3.1.6.zip", "3.1.7": "https://downloads.wordpress.org/theme/hestia.3.1.7.zip", "3.1.8": "https://downloads.wordpress.org/theme/hestia.3.1.8.zip", "3.1.9": "https://downloads.wordpress.org/theme/hestia.3.1.9.zip", "3.2.0": "https://downloads.wordpress.org/theme/hestia.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/theme/hestia.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/theme/hestia.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/theme/hestia.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/theme/hestia.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/theme/hestia.3.2.5.zip", "3.2.6": "https://downloads.wordpress.org/theme/hestia.3.2.6.zip", "3.2.7": "https://downloads.wordpress.org/theme/hestia.3.2.7.zip", "3.2.8": "https://downloads.wordpress.org/theme/hestia.3.2.8.zip", "3.2.9": "https://downloads.wordpress.org/theme/hestia.3.2.9.zip", "3.3.0": "https://downloads.wordpress.org/theme/hestia.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/hestia.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/theme/hestia.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/theme/hestia.3.3.3.zip", "1.0.11": "https://downloads.wordpress.org/theme/hestia.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/hestia.1.0.12.zip", "1.1.19": "https://downloads.wordpress.org/theme/hestia.1.1.19.zip", "1.1.20": "https://downloads.wordpress.org/theme/hestia.1.1.20.zip", "1.1.21": "https://downloads.wordpress.org/theme/hestia.1.1.21.zip", "1.1.22": "https://downloads.wordpress.org/theme/hestia.1.1.22.zip", "1.1.23": "https://downloads.wordpress.org/theme/hestia.1.1.23.zip", "1.1.24": "https://downloads.wordpress.org/theme/hestia.1.1.24.zip", "1.1.25": "https://downloads.wordpress.org/theme/hestia.1.1.25.zip", "1.1.28": "https://downloads.wordpress.org/theme/hestia.1.1.28.zip", "1.1.29": "https://downloads.wordpress.org/theme/hestia.1.1.29.zip", "1.1.30": "https://downloads.wordpress.org/theme/hestia.1.1.30.zip", "1.1.31": "https://downloads.wordpress.org/theme/hestia.1.1.31.zip", "1.1.32": "https://downloads.wordpress.org/theme/hestia.1.1.32.zip", "1.1.33": "https://downloads.wordpress.org/theme/hestia.1.1.33.zip", "1.1.36": "https://downloads.wordpress.org/theme/hestia.1.1.36.zip", "1.1.37": "https://downloads.wordpress.org/theme/hestia.1.1.37.zip", "1.1.38": "https://downloads.wordpress.org/theme/hestia.1.1.38.zip", "1.1.39": "https://downloads.wordpress.org/theme/hestia.1.1.39.zip", "1.1.40": "https://downloads.wordpress.org/theme/hestia.1.1.40.zip", "1.1.41": "https://downloads.wordpress.org/theme/hestia.1.1.41.zip", "1.1.42": "https://downloads.wordpress.org/theme/hestia.1.1.42.zip", "1.1.43": "https://downloads.wordpress.org/theme/hestia.1.1.43.zip", "1.1.44": "https://downloads.wordpress.org/theme/hestia.1.1.44.zip", "1.1.45": "https://downloads.wordpress.org/theme/hestia.1.1.45.zip", "1.1.46": "https://downloads.wordpress.org/theme/hestia.1.1.46.zip", "1.1.47": "https://downloads.wordpress.org/theme/hestia.1.1.47.zip", "1.1.48": "https://downloads.wordpress.org/theme/hestia.1.1.48.zip", "1.1.50": "https://downloads.wordpress.org/theme/hestia.1.1.50.zip", "1.1.51": "https://downloads.wordpress.org/theme/hestia.1.1.51.zip", "1.1.52": "https://downloads.wordpress.org/theme/hestia.1.1.52.zip", "1.1.53": "https://downloads.wordpress.org/theme/hestia.1.1.53.zip", "1.1.54": "https://downloads.wordpress.org/theme/hestia.1.1.54.zip", "1.1.55": "https://downloads.wordpress.org/theme/hestia.1.1.55.zip", "1.1.56": "https://downloads.wordpress.org/theme/hestia.1.1.56.zip", "1.1.57": "https://downloads.wordpress.org/theme/hestia.1.1.57.zip", "1.1.58": "https://downloads.wordpress.org/theme/hestia.1.1.58.zip", "1.1.59": "https://downloads.wordpress.org/theme/hestia.1.1.59.zip", "1.1.60": "https://downloads.wordpress.org/theme/hestia.1.1.60.zip", "1.1.61": "https://downloads.wordpress.org/theme/hestia.1.1.61.zip", "1.1.62": "https://downloads.wordpress.org/theme/hestia.1.1.62.zip", "1.1.63": "https://downloads.wordpress.org/theme/hestia.1.1.63.zip", "1.1.65": "https://downloads.wordpress.org/theme/hestia.1.1.65.zip", "1.1.66": "https://downloads.wordpress.org/theme/hestia.1.1.66.zip", "1.1.70": "https://downloads.wordpress.org/theme/hestia.1.1.70.zip", "1.1.71": "https://downloads.wordpress.org/theme/hestia.1.1.71.zip", "1.1.72": "https://downloads.wordpress.org/theme/hestia.1.1.72.zip", "1.1.73": "https://downloads.wordpress.org/theme/hestia.1.1.73.zip", "1.1.74": "https://downloads.wordpress.org/theme/hestia.1.1.74.zip", "1.1.76": "https://downloads.wordpress.org/theme/hestia.1.1.76.zip", "1.1.77": "https://downloads.wordpress.org/theme/hestia.1.1.77.zip", "1.1.79": "https://downloads.wordpress.org/theme/hestia.1.1.79.zip", "1.1.80": "https://downloads.wordpress.org/theme/hestia.1.1.80.zip", "1.1.81": "https://downloads.wordpress.org/theme/hestia.1.1.81.zip", "1.1.82": "https://downloads.wordpress.org/theme/hestia.1.1.82.zip", "1.1.83": "https://downloads.wordpress.org/theme/hestia.1.1.83.zip", "1.1.84": "https://downloads.wordpress.org/theme/hestia.1.1.84.zip", "1.1.85": "https://downloads.wordpress.org/theme/hestia.1.1.85.zip", "1.1.86": "https://downloads.wordpress.org/theme/hestia.1.1.86.zip", "2.0.10": "https://downloads.wordpress.org/theme/hestia.2.0.10.zip", "2.0.11": "https://downloads.wordpress.org/theme/hestia.2.0.11.zip", "2.0.12": "https://downloads.wordpress.org/theme/hestia.2.0.12.zip", "2.0.13": "https://downloads.wordpress.org/theme/hestia.2.0.13.zip", "2.0.14": "https://downloads.wordpress.org/theme/hestia.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/theme/hestia.2.0.15.zip", "2.0.16": "https://downloads.wordpress.org/theme/hestia.2.0.16.zip", "2.0.17": "https://downloads.wordpress.org/theme/hestia.2.0.17.zip", "2.0.18": "https://downloads.wordpress.org/theme/hestia.2.0.18.zip", "2.0.19": "https://downloads.wordpress.org/theme/hestia.2.0.19.zip", "3.0.10": "https://downloads.wordpress.org/theme/hestia.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/theme/hestia.3.0.11.zip", "3.0.13": "https://downloads.wordpress.org/theme/hestia.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/theme/hestia.3.0.14.zip", "3.0.16": "https://downloads.wordpress.org/theme/hestia.3.0.16.zip", "3.0.17": "https://downloads.wordpress.org/theme/hestia.3.0.17.zip", "3.0.18": "https://downloads.wordpress.org/theme/hestia.3.0.18.zip", "3.0.19": "https://downloads.wordpress.org/theme/hestia.3.0.19.zip", "3.0.20": "https://downloads.wordpress.org/theme/hestia.3.0.20.zip", "3.0.21": "https://downloads.wordpress.org/theme/hestia.3.0.21.zip", "3.0.22": "https://downloads.wordpress.org/theme/hestia.3.0.22.zip", "3.0.23": "https://downloads.wordpress.org/theme/hestia.3.0.23.zip", "3.0.24": "https://downloads.wordpress.org/theme/hestia.3.0.24.zip", "3.0.25": "https://downloads.wordpress.org/theme/hestia.3.0.25.zip", "3.0.26": "https://downloads.wordpress.org/theme/hestia.3.0.26.zip", "3.0.27": "https://downloads.wordpress.org/theme/hestia.3.0.27.zip", "3.0.29": "https://downloads.wordpress.org/theme/hestia.3.0.29.zip", "3.0.30": "https://downloads.wordpress.org/theme/hestia.3.0.30.zip", "3.1.10": "https://downloads.wordpress.org/theme/hestia.3.1.10.zip", "3.2.10": "https://downloads.wordpress.org/theme/hestia.3.2.10.zip", "3.2.11": "https://downloads.wordpress.org/theme/hestia.3.2.11.zip"}, "downloaded": 4550974, "num_ratings": 559, "preview_url": "https://wp-themes.com/hestia/", "reviews_url": "https://wordpress.org/support/theme/hestia/reviews/", "is_community": false, "last_updated": "2025-09-04", "requires_php": "5.4.0", "creation_time": "2017-05-19 03:30:07", "download_link": "https://downloads.wordpress.org/theme/hestia.3.3.3.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/hestia/screenshot.png?ver=3.3.3", "active_installs": 90000, "aspiresync_meta": {"id": "019a30c0-09bc-705b-b696-28590c4cca59", "name": "Hestia", "slug": "hestia", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1756944000, "version": "3.3.3"}, "last_updated_time": "2025-09-04 11:05:36", "external_support_url": "https://themeisle.com/contact", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6ad1-727f-823b-2e7f25637818', 'homelancer', 'HomeLancer', '1.0.2', 'HomeLancer is a fast, SEO-friendly Full Site Editing (FSE) WordPress theme built for all home services businesses like handyman, plumbing, HVAC, electrician, cleaning, roofing, painting, pest control, renovation, and more. Ideal for creating professional websites to showcase your services, portfolio, and service booking—all with ease. With 50+ ready-to-use block patterns including headers, footers, hero, about, services, testimonials, pricing, FAQs, and portfolio, plus pre-built templates for homepage, about, services, blog, and contact pages, it offers full drag-and-drop customization and 100% control of every part of your site—no coding needed. Ideal for agencies or solo service providers to build a modern, high-converting, mobile-ready website instantly. Explorefeatures and live demos at https://cozythemes.com/homelancer/', '019a30c1-6ad0-70c0-8b53-876fa8cbeed4', 'https://downloads.wordpress.org/theme/homelancer.1.0.2.zip', '5.9', '7.4', '2025-10-16 09:54:02+00', '2025-08-01 05:01:10+00', 'https://wp-themes.com/homelancer/', '//ts.w.org/wp-content/themes/homelancer/screenshot.png?ver=1.0.2', 0, 0, 'https://wordpress.org/support/theme/homelancer/reviews/', 4109, 800, 'https://wordpress.org/themes/homelancer/', true, 'https://cozythemes.com/homelancer/', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "HomeLancer", "slug": "homelancer", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "CozyThemes", "avatar": "https://secure.gravatar.com/avatar/7b14e71b9c952a96a4cdb7cbb93ab704ef0c368b08d5ea8323ed4bb506655311?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cozythemes/", "author_url": "https://cozythemes.com/", "display_name": "CozyThemes", "user_nicename": "cozythemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.2", "homepage": "https://wordpress.org/themes/homelancer/", "requires": "5.9", "sections": {"description": "HomeLancer is a fast, SEO-friendly Full Site Editing (FSE) WordPress theme built for all home services businesses like handyman, plumbing, HVAC, electrician, cleaning, roofing, painting, pest control, renovation, and more. Ideal for creating professional websites to showcase your services, portfolio, and service booking—all with ease. With 50+ ready-to-use block patterns including headers, footers, hero, about, services, testimonials, pricing, FAQs, and portfolio, plus pre-built templates for homepage, about, services, blog, and contact pages, it offers full drag-and-drop customization and 100% control of every part of your site—no coding needed. Ideal for agencies or solo service providers to build a modern, high-converting, mobile-ready website instantly. Explorefeatures and live demos at https://cozythemes.com/homelancer/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/homelancer.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/homelancer.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/homelancer.1.0.2.zip"}, "downloaded": 4109, "num_ratings": 0, "preview_url": "https://wp-themes.com/homelancer/", "reviews_url": "https://wordpress.org/support/theme/homelancer/reviews/", "is_community": false, "last_updated": "2025-10-16", "requires_php": "7.4", "creation_time": "2025-08-01 05:01:10", "download_link": "https://downloads.wordpress.org/theme/homelancer.1.0.2.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/homelancer/screenshot.png?ver=1.0.2", "active_installs": 800, "aspiresync_meta": {"id": "019a30c0-09b4-7365-b15e-36caf2826298", "name": "HomeLancer", "slug": "homelancer", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1760572800, "version": "1.0.2"}, "last_updated_time": "2025-10-16 09:54:02", "external_support_url": "https://cozythemes.com/homelancer/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6adc-72f3-aa64-9fbcc05388ba', 'hybridmag', 'HybridMag', '1.0.8', 'HybridMag is a modern and stylish WordPress theme for blogs, newspapers, and magazine websites. The advanced options provided with HybridMag allow you to tailor every aspect of your website to match your brand, making it the best choice for online publishers.', '019a30c1-6adb-731d-9f3f-82d2458ac9cd', 'https://downloads.wordpress.org/theme/hybridmag.1.0.8.zip', NULL, '7.0', '2025-10-02 06:04:49+00', '2025-01-27 05:41:48+00', 'https://wp-themes.com/hybridmag/', '//ts.w.org/wp-content/themes/hybridmag/screenshot.png?ver=1.0.8', 100, 2, 'https://wordpress.org/support/theme/hybridmag/reviews/', 16661, 4000, 'https://wordpress.org/themes/hybridmag/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "HybridMag", "slug": "hybridmag", "tags": {"blog": "Blog", "news": "News", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemezHut", "avatar": "https://secure.gravatar.com/avatar/57c16af1ed4f5c03aa9b87dcefdfdc82f8efd4bf7d55fc115b42e7b8877d655d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pubudu-malalasekara/", "author_url": "https://themezhut.com", "display_name": "ThemezHut", "user_nicename": "pubudu-malalasekara"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 2}, "version": "1.0.8", "homepage": "https://wordpress.org/themes/hybridmag/", "requires": false, "sections": {"description": "HybridMag is a modern and stylish WordPress theme for blogs, newspapers, and magazine websites. The advanced options provided with HybridMag allow you to tailor every aspect of your website to match your brand, making it the best choice for online publishers."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/hybridmag.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/hybridmag.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/hybridmag.1.0.2.zip", "1.0.4": "https://downloads.wordpress.org/theme/hybridmag.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/hybridmag.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/hybridmag.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/hybridmag.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/hybridmag.1.0.8.zip"}, "downloaded": 16661, "num_ratings": 2, "preview_url": "https://wp-themes.com/hybridmag/", "reviews_url": "https://wordpress.org/support/theme/hybridmag/reviews/", "is_community": false, "last_updated": "2025-10-02", "requires_php": "7.0", "creation_time": "2025-01-27 05:41:48", "download_link": "https://downloads.wordpress.org/theme/hybridmag.1.0.8.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/hybridmag/screenshot.png?ver=1.0.8", "active_installs": 4000, "aspiresync_meta": {"id": "019a30c0-09c1-72c4-abab-251fcae2467c", "name": "HybridMag", "slug": "hybridmag", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1759363200, "version": "1.0.8"}, "last_updated_time": "2025-10-02 06:04:49", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6ae5-7350-bae8-a0b1f17583af', 'idea-flow', 'Idea Flow', '2.0', 'Idea Flow is the perfect WordPress theme for you, if you''re a company, agency, or business, it''s also versatile enough for landing pages, one pages and bloggers. Create with Gutenberg Block Editor, Brizy Page Builder, Elementor Website Builder, or Divi Builder. Idea Flow ensures your website creation is both easy and fast. Perfect for marketing, ecommerce, and affiliate review websites, since it supports AdSense and banner advertisements and have a blog with sidebar template. With a clean, minimalist design, Idea Flow is the best choice for startups, corporate businesses, writers, and creative agencies. It’s fully responsive and mobile friendly, ensuring your site looks great on any device. The theme is Gutenberg and WooCommerce ready, making it ideal for photography, blogging, writing, news, magazine, or newspaper sites. Idea Flow boosts your SEO with built-in schema markup compatibility, helping you rank higher in search engines. Whether you’re a writer, photographer, or running a portfolio, this theme is a fast and simple way to build a professional website. It has a cool red and blue color scheme Plus, dark mode and it’s free! Elevate your business with Idea Flow – the minimal theme that makes conversion easy.', '019a30c1-6ae4-73b4-a341-8c80668b1904', 'https://downloads.wordpress.org/theme/idea-flow.2.0.zip', '6.0', '5.9', '2025-04-18 18:16:23+00', '2024-06-24 11:26:47+00', 'https://wp-themes.com/idea-flow/', '//ts.w.org/wp-content/themes/idea-flow/screenshot.png?ver=2.0', 0, 0, 'https://wordpress.org/support/theme/idea-flow/reviews/', 66223, 4000, 'https://wordpress.org/themes/idea-flow/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Idea Flow", "slug": "idea-flow", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbaddons", "avatar": "https://secure.gravatar.com/avatar/e225f22f91c86191b0236db6735e8d504cee5ed3dc2caaf3e8f35b108e4353aa?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbaddons/", "author_url": "https://superbthemes.com/", "display_name": "Superb Addons", "user_nicename": "superbaddons"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "2.0", "homepage": "https://wordpress.org/themes/idea-flow/", "requires": "6.0", "sections": {"description": "Idea Flow is the perfect WordPress theme for you, if you''re a company, agency, or business, it''s also versatile enough for landing pages, one pages and bloggers. Create with Gutenberg Block Editor, Brizy Page Builder, Elementor Website Builder, or Divi Builder. Idea Flow ensures your website creation is both easy and fast. Perfect for marketing, ecommerce, and affiliate review websites, since it supports AdSense and banner advertisements and have a blog with sidebar template. With a clean, minimalist design, Idea Flow is the best choice for startups, corporate businesses, writers, and creative agencies. It’s fully responsive and mobile friendly, ensuring your site looks great on any device. The theme is Gutenberg and WooCommerce ready, making it ideal for photography, blogging, writing, news, magazine, or newspaper sites. Idea Flow boosts your SEO with built-in schema markup compatibility, helping you rank higher in search engines. Whether you’re a writer, photographer, or running a portfolio, this theme is a fast and simple way to build a professional website. It has a cool red and blue color scheme Plus, dark mode and it’s free! Elevate your business with Idea Flow – the minimal theme that makes conversion easy."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/idea-flow.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/idea-flow.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/idea-flow.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/idea-flow.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/idea-flow.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/idea-flow.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/idea-flow.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/idea-flow.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/idea-flow.1.8.zip", "2.0": "https://downloads.wordpress.org/theme/idea-flow.2.0.zip"}, "downloaded": 66223, "num_ratings": 0, "preview_url": "https://wp-themes.com/idea-flow/", "reviews_url": "https://wordpress.org/support/theme/idea-flow/reviews/", "is_community": false, "last_updated": "2025-04-18", "requires_php": "5.9", "creation_time": "2024-06-24 11:26:47", "download_link": "https://downloads.wordpress.org/theme/idea-flow.2.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/idea-flow/screenshot.png?ver=2.0", "active_installs": 4000, "aspiresync_meta": {"id": "019a30c0-0a1c-73c5-aed6-de083d216f3f", "name": "Idea Flow", "slug": "idea-flow", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1744934400, "version": "2.0"}, "last_updated_time": "2025-04-18 18:16:23", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b0b-73f5-b190-8bd490240fee', 'irvine-news', 'Irvine News', '1.6', 'Irvine News is an ideal and modern WordPress theme for blogs, magazines, newspapers, news portals, and publishing websites. It has a unique design for a visually stunning layout that makes your content displays beautiful and easy to read for any media device. It is even user-friendly, SEO-ready, effortlessly, lightweight, and optimized for top performance and Core Web Vitals. The theme is best suitable for news, magazines, publishers, editors, news portals, newspapers, personal blogs, news editorials, guides, journalism, travel blogs, niche blogs, affiliate blogs, guest blogging, and reviews websites. It also has flexible and versatile layouts that are enough for essential needs, with unlimited colors, unlimited Google fonts, typography, responsive design, and Rtl language support. It is designed to be highly SEO-friendly that can help optimize your website on search engine performance, making it easier to find for potential visitors and the theme provides predefined beautiful demos that can be imported with one click in less time. Irvine News also supports popular free and premium WordPress plugins such as Elementor, Yoast SEO, WooCommerce, Gutenberg, Contact Form 7, Jetpack, Google Analytics, and much more. Check the demo of Irvine News Pro https://newsexo-pro-nine.themearile.com/.', '019a30c1-6b0a-7066-bccb-08ee6204d501', 'https://downloads.wordpress.org/theme/irvine-news.1.6.zip', NULL, '5.6', '2025-10-08 06:25:10+00', '2025-08-19 02:32:03+00', 'https://wp-themes.com/irvine-news/', '//ts.w.org/wp-content/themes/irvine-news/screenshot.png?ver=1.6', 0, 0, 'https://wordpress.org/support/theme/irvine-news/reviews/', 3855, 600, 'https://wordpress.org/themes/irvine-news/', true, 'https://themearile.com/newsexo-pro-theme/', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Irvine News", "slug": "irvine-news", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "post-formats": "Post formats", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemeArile", "avatar": "https://secure.gravatar.com/avatar/0f6e38c902df3bb62577440c4d3bf00829dd4f5a5f19ca5ea5c80a9afe3c588d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themearile/", "author_url": "https://themearile.com", "display_name": "Theme Arile", "user_nicename": "themearile"}, "parent": {"name": "NewsExo", "slug": "newsexo", "homepage": "https://wordpress.org/themes/newsexo/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.6", "homepage": "https://wordpress.org/themes/irvine-news/", "requires": false, "sections": {"description": "Irvine News is an ideal and modern WordPress theme for blogs, magazines, newspapers, news portals, and publishing websites. It has a unique design for a visually stunning layout that makes your content displays beautiful and easy to read for any media device. It is even user-friendly, SEO-ready, effortlessly, lightweight, and optimized for top performance and Core Web Vitals. The theme is best suitable for news, magazines, publishers, editors, news portals, newspapers, personal blogs, news editorials, guides, journalism, travel blogs, niche blogs, affiliate blogs, guest blogging, and reviews websites. It also has flexible and versatile layouts that are enough for essential needs, with unlimited colors, unlimited Google fonts, typography, responsive design, and Rtl language support. It is designed to be highly SEO-friendly that can help optimize your website on search engine performance, making it easier to find for potential visitors and the theme provides predefined beautiful demos that can be imported with one click in less time. Irvine News also supports popular free and premium WordPress plugins such as Elementor, Yoast SEO, WooCommerce, Gutenberg, Contact Form 7, Jetpack, Google Analytics, and much more. Check the demo of Irvine News Pro https://newsexo-pro-nine.themearile.com/."}, "template": "newsexo", "versions": {"1.0": "https://downloads.wordpress.org/theme/irvine-news.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/irvine-news.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/irvine-news.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/irvine-news.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/irvine-news.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/irvine-news.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/irvine-news.1.6.zip"}, "downloaded": 3855, "num_ratings": 0, "preview_url": "https://wp-themes.com/irvine-news/", "reviews_url": "https://wordpress.org/support/theme/irvine-news/reviews/", "is_community": false, "last_updated": "2025-10-08", "requires_php": "5.6", "creation_time": "2025-08-19 02:32:03", "download_link": "https://downloads.wordpress.org/theme/irvine-news.1.6.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/irvine-news/screenshot.png?ver=1.6", "active_installs": 600, "aspiresync_meta": {"id": "019a30c0-0b2f-70ca-9bd0-da12a8112313", "name": "Irvine News", "slug": "irvine-news", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1759881600, "version": "1.6"}, "last_updated_time": "2025-10-08 06:25:10", "external_support_url": "https://themearile.com/newsexo-pro-theme/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b16-7289-bf77-37c95be721f6', 'kadence', 'Kadence', '1.3.6', 'Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.', '019a30c1-671e-71d1-b273-72ef78a13a90', 'https://downloads.wordpress.org/theme/kadence.1.3.6.zip', '6.3', '7.4', '2025-10-27 19:59:59+00', '2020-11-02 10:37:27+00', 'https://wp-themes.com/kadence/', '//ts.w.org/wp-content/themes/kadence/screenshot.png?ver=1.3.6', 98, 427, 'https://wordpress.org/support/theme/kadence/reviews/', 4559782, 400000, 'https://wordpress.org/themes/kadence/', true, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Kadence", "slug": "kadence", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Kadence WP", "avatar": "https://secure.gravatar.com/avatar/d614d953044e11b41ac7023709e850df4db1005b6845af94909326b25137590c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/stellarwp/", "author_url": "https://www.kadencewp.com/", "display_name": "StellarWP", "user_nicename": "stellarwp"}, "rating": 98, "status": "open", "ratings": {"1": 8, "2": 2, "3": 1, "4": 7, "5": 409}, "version": "1.3.6", "homepage": "https://wordpress.org/themes/kadence/", "requires": "6.3", "sections": {"description": "Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more."}, "versions": {"0.8.4": "https://downloads.wordpress.org/theme/kadence.0.8.4.zip", "0.8.7": "https://downloads.wordpress.org/theme/kadence.0.8.7.zip", "0.9.7": "https://downloads.wordpress.org/theme/kadence.0.9.7.zip", "0.9.8": "https://downloads.wordpress.org/theme/kadence.0.9.8.zip", "1.0.0": "https://downloads.wordpress.org/theme/kadence.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/kadence.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/kadence.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/kadence.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/kadence.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/kadence.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/kadence.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/kadence.1.0.7.zip", "1.0.9": "https://downloads.wordpress.org/theme/kadence.1.0.9.zip", "1.1.1": "https://downloads.wordpress.org/theme/kadence.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/kadence.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/kadence.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/kadence.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/kadence.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/kadence.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/kadence.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/kadence.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/kadence.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/kadence.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/kadence.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/kadence.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/kadence.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/kadence.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/kadence.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/kadence.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/kadence.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/kadence.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/kadence.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/kadence.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/kadence.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/kadence.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/kadence.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/kadence.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/kadence.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/kadence.1.3.6.zip", "0.8.16": "https://downloads.wordpress.org/theme/kadence.0.8.16.zip", "1.0.10": "https://downloads.wordpress.org/theme/kadence.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/kadence.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/kadence.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/kadence.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/theme/kadence.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/theme/kadence.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/theme/kadence.1.0.16.zip", "1.0.17": "https://downloads.wordpress.org/theme/kadence.1.0.17.zip", "1.0.18": "https://downloads.wordpress.org/theme/kadence.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/theme/kadence.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/kadence.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/kadence.1.0.21.zip", "1.0.22": "https://downloads.wordpress.org/theme/kadence.1.0.22.zip", "1.0.23": "https://downloads.wordpress.org/theme/kadence.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/theme/kadence.1.0.24.zip", "1.0.25": "https://downloads.wordpress.org/theme/kadence.1.0.25.zip", "1.0.26": "https://downloads.wordpress.org/theme/kadence.1.0.26.zip", "1.0.27": "https://downloads.wordpress.org/theme/kadence.1.0.27.zip", "1.0.28": "https://downloads.wordpress.org/theme/kadence.1.0.28.zip", "1.0.29": "https://downloads.wordpress.org/theme/kadence.1.0.29.zip", "1.0.30": "https://downloads.wordpress.org/theme/kadence.1.0.30.zip", "1.1.10": "https://downloads.wordpress.org/theme/kadence.1.1.10.zip", "1.1.11": "https://downloads.wordpress.org/theme/kadence.1.1.11.zip", "1.1.12": "https://downloads.wordpress.org/theme/kadence.1.1.12.zip", "1.1.13": "https://downloads.wordpress.org/theme/kadence.1.1.13.zip", "1.1.14": "https://downloads.wordpress.org/theme/kadence.1.1.14.zip", "1.1.15": "https://downloads.wordpress.org/theme/kadence.1.1.15.zip", "1.1.16": "https://downloads.wordpress.org/theme/kadence.1.1.16.zip", "1.1.17": "https://downloads.wordpress.org/theme/kadence.1.1.17.zip", "1.1.18": "https://downloads.wordpress.org/theme/kadence.1.1.18.zip", "1.1.19": "https://downloads.wordpress.org/theme/kadence.1.1.19.zip", "1.1.20": "https://downloads.wordpress.org/theme/kadence.1.1.20.zip", "1.1.21": "https://downloads.wordpress.org/theme/kadence.1.1.21.zip", "1.1.22": "https://downloads.wordpress.org/theme/kadence.1.1.22.zip", "1.1.23": "https://downloads.wordpress.org/theme/kadence.1.1.23.zip", "1.1.24": "https://downloads.wordpress.org/theme/kadence.1.1.24.zip", "1.1.25": "https://downloads.wordpress.org/theme/kadence.1.1.25.zip", "1.1.26": "https://downloads.wordpress.org/theme/kadence.1.1.26.zip", "1.1.27": "https://downloads.wordpress.org/theme/kadence.1.1.27.zip", "1.1.28": "https://downloads.wordpress.org/theme/kadence.1.1.28.zip", "1.1.29": "https://downloads.wordpress.org/theme/kadence.1.1.29.zip", "1.1.30": "https://downloads.wordpress.org/theme/kadence.1.1.30.zip", "1.1.31": "https://downloads.wordpress.org/theme/kadence.1.1.31.zip", "1.1.32": "https://downloads.wordpress.org/theme/kadence.1.1.32.zip", "1.1.33": "https://downloads.wordpress.org/theme/kadence.1.1.33.zip", "1.1.34": "https://downloads.wordpress.org/theme/kadence.1.1.34.zip", "1.1.35": "https://downloads.wordpress.org/theme/kadence.1.1.35.zip", "1.1.36": "https://downloads.wordpress.org/theme/kadence.1.1.36.zip", "1.1.38": "https://downloads.wordpress.org/theme/kadence.1.1.38.zip", "1.1.39": "https://downloads.wordpress.org/theme/kadence.1.1.39.zip", "1.1.40": "https://downloads.wordpress.org/theme/kadence.1.1.40.zip", "1.1.41": "https://downloads.wordpress.org/theme/kadence.1.1.41.zip", "1.1.42": "https://downloads.wordpress.org/theme/kadence.1.1.42.zip", "1.1.43": "https://downloads.wordpress.org/theme/kadence.1.1.43.zip", "1.1.44": "https://downloads.wordpress.org/theme/kadence.1.1.44.zip", "1.1.45": "https://downloads.wordpress.org/theme/kadence.1.1.45.zip", "1.1.46": "https://downloads.wordpress.org/theme/kadence.1.1.46.zip", "1.1.47": "https://downloads.wordpress.org/theme/kadence.1.1.47.zip", "1.1.48": "https://downloads.wordpress.org/theme/kadence.1.1.48.zip", "1.1.49": "https://downloads.wordpress.org/theme/kadence.1.1.49.zip", "1.1.50": "https://downloads.wordpress.org/theme/kadence.1.1.50.zip", "1.1.51": "https://downloads.wordpress.org/theme/kadence.1.1.51.zip", "1.2.10": "https://downloads.wordpress.org/theme/kadence.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/theme/kadence.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/theme/kadence.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/theme/kadence.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/theme/kadence.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/theme/kadence.1.2.15.zip", "1.2.16": "https://downloads.wordpress.org/theme/kadence.1.2.16.zip", "1.2.17": "https://downloads.wordpress.org/theme/kadence.1.2.17.zip", "1.2.18": "https://downloads.wordpress.org/theme/kadence.1.2.18.zip", "1.2.19": "https://downloads.wordpress.org/theme/kadence.1.2.19.zip", "1.2.20": "https://downloads.wordpress.org/theme/kadence.1.2.20.zip", "1.2.21": "https://downloads.wordpress.org/theme/kadence.1.2.21.zip", "1.2.22": "https://downloads.wordpress.org/theme/kadence.1.2.22.zip", "1.2.24": "https://downloads.wordpress.org/theme/kadence.1.2.24.zip", "1.2.25": "https://downloads.wordpress.org/theme/kadence.1.2.25.zip", "1.2.26": "https://downloads.wordpress.org/theme/kadence.1.2.26.zip", "1.2.27": "https://downloads.wordpress.org/theme/kadence.1.2.27.zip", "1.2.28": "https://downloads.wordpress.org/theme/kadence.1.2.28.zip"}, "downloaded": 4559782, "num_ratings": 427, "preview_url": "https://wp-themes.com/kadence/", "reviews_url": "https://wordpress.org/support/theme/kadence/reviews/", "is_community": false, "last_updated": "2025-10-27", "requires_php": "7.4", "creation_time": "2020-11-02 10:37:27", "download_link": "https://downloads.wordpress.org/theme/kadence.1.3.6.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/kadence/screenshot.png?ver=1.3.6", "active_installs": 400000, "aspiresync_meta": {"id": "019a30c0-0bce-71f4-81ce-ab749f51c536", "name": "Kadence", "slug": "kadence", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1761523200, "version": "1.3.6"}, "last_updated_time": "2025-10-27 19:59:59", "external_support_url": "", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b22-72a3-adc2-094cf00f3f30', 'kubio', 'Kubio', '1.0.56', 'Kubio is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Kubio is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', '019a30c1-69d2-7156-b9cf-ce8906962bef', 'https://downloads.wordpress.org/theme/kubio.1.0.56.zip', '5.8.3', '7.1', '2025-05-08 11:17:20+00', '2024-02-05 09:56:48+00', 'https://wp-themes.com/kubio/', '//ts.w.org/wp-content/themes/kubio/screenshot.jpg?ver=1.0.56', 86, 6, 'https://wordpress.org/support/theme/kubio/reviews/', 229220, 40000, 'https://wordpress.org/themes/kubio/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Kubio", "slug": "kubio", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 86, "status": "open", "ratings": {"1": 1, "2": 0, "3": 0, "4": 0, "5": 5}, "version": "1.0.56", "homepage": "https://wordpress.org/themes/kubio/", "requires": "5.8.3", "sections": {"description": "Kubio is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Kubio is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.9": "https://downloads.wordpress.org/theme/kubio.1.0.9.zip", "1.0.18": "https://downloads.wordpress.org/theme/kubio.1.0.18.zip", "1.0.23": "https://downloads.wordpress.org/theme/kubio.1.0.23.zip", "1.0.25": "https://downloads.wordpress.org/theme/kubio.1.0.25.zip", "1.0.33": "https://downloads.wordpress.org/theme/kubio.1.0.33.zip", "1.0.39": "https://downloads.wordpress.org/theme/kubio.1.0.39.zip", "1.0.40": "https://downloads.wordpress.org/theme/kubio.1.0.40.zip", "1.0.43": "https://downloads.wordpress.org/theme/kubio.1.0.43.zip", "1.0.52": "https://downloads.wordpress.org/theme/kubio.1.0.52.zip", "1.0.53": "https://downloads.wordpress.org/theme/kubio.1.0.53.zip", "1.0.55": "https://downloads.wordpress.org/theme/kubio.1.0.55.zip", "1.0.56": "https://downloads.wordpress.org/theme/kubio.1.0.56.zip"}, "downloaded": 229220, "num_ratings": 6, "preview_url": "https://wp-themes.com/kubio/", "reviews_url": "https://wordpress.org/support/theme/kubio/reviews/", "is_community": false, "last_updated": "2025-05-08", "requires_php": "7.1", "creation_time": "2024-02-05 09:56:48", "download_link": "https://downloads.wordpress.org/theme/kubio.1.0.56.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/kubio/screenshot.jpg?ver=1.0.56", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-0ba1-7302-9098-a1817347c648", "name": "Kubio", "slug": "kubio", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1746662400, "version": "1.0.56"}, "last_updated_time": "2025-05-08 11:17:20", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b2c-7040-b818-3b108f66a6dc', 'lightning', 'Lightning', '15.32.1', 'Lightning is a very simple & easy to customize theme which is based on the Bootstrap. It is also very friendly with custom post types and custom taxonomies. When you add a new one, the breadcrumbs will be adjusted and posts will look beautifully without editing or adding a template files.', '019a30c1-6b2b-71c0-a487-b22f92208398', 'https://downloads.wordpress.org/theme/lightning.15.32.1.zip', '6.4', '7.4', '2025-10-20 03:19:20+00', '2015-07-24 01:30:05+00', 'https://wp-themes.com/lightning/', '//ts.w.org/wp-content/themes/lightning/screenshot.png?ver=15.32.1', 94, 11, 'https://wordpress.org/support/theme/lightning/reviews/', 2800973, 100000, 'https://wordpress.org/themes/lightning/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Lightning", "slug": "lightning", "tags": {"blog": "Blog", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Vektor,Inc.", "avatar": "https://secure.gravatar.com/avatar/3a4eedfdaf403dbe8dabfd7ea20341c5ac3f3da5812c354894331c585bbd4e0a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/kurudrive/", "author_url": "https://www.vektor-inc.co.jp", "display_name": "Hidekazu Ishikawa", "user_nicename": "kurudrive"}, "rating": 94, "status": "open", "ratings": {"1": 0, "2": 0, "3": 1, "4": 1, "5": 9}, "version": "15.32.1", "homepage": "https://wordpress.org/themes/lightning/", "requires": "6.4", "sections": {"description": "Lightning is a very simple & easy to customize theme which is based on the Bootstrap. It is also very friendly with custom post types and custom taxonomies. When you add a new one, the breadcrumbs will be adjusted and posts will look beautifully without editing or adding a template files."}, "versions": {"0.0.0": "https://downloads.wordpress.org/theme/lightning.0.0.0.zip", "0.0.1": "https://downloads.wordpress.org/theme/lightning.0.0.1.zip", "0.1.0": "https://downloads.wordpress.org/theme/lightning.0.1.0.zip", "0.1.1": "https://downloads.wordpress.org/theme/lightning.0.1.1.zip", "0.1.2": "https://downloads.wordpress.org/theme/lightning.0.1.2.zip", "0.1.3": "https://downloads.wordpress.org/theme/lightning.0.1.3.zip", "0.1.4": "https://downloads.wordpress.org/theme/lightning.0.1.4.zip", "0.1.5": "https://downloads.wordpress.org/theme/lightning.0.1.5.zip", "0.1.6": "https://downloads.wordpress.org/theme/lightning.0.1.6.zip", "0.1.7": "https://downloads.wordpress.org/theme/lightning.0.1.7.zip", "0.1.8": "https://downloads.wordpress.org/theme/lightning.0.1.8.zip", "0.1.9": "https://downloads.wordpress.org/theme/lightning.0.1.9.zip", "0.2.0": "https://downloads.wordpress.org/theme/lightning.0.2.0.zip", "0.2.1": "https://downloads.wordpress.org/theme/lightning.0.2.1.zip", "0.2.2": "https://downloads.wordpress.org/theme/lightning.0.2.2.zip", "0.2.3": "https://downloads.wordpress.org/theme/lightning.0.2.3.zip", "0.2.4": "https://downloads.wordpress.org/theme/lightning.0.2.4.zip", "0.2.5": "https://downloads.wordpress.org/theme/lightning.0.2.5.zip", "0.3.0": "https://downloads.wordpress.org/theme/lightning.0.3.0.zip", "1.0.0": "https://downloads.wordpress.org/theme/lightning.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/lightning.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/theme/lightning.1.1.0.zip", "1.2.0": "https://downloads.wordpress.org/theme/lightning.1.2.0.zip", "2.0.0": "https://downloads.wordpress.org/theme/lightning.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/lightning.2.0.1.zip", "2.1.0": "https://downloads.wordpress.org/theme/lightning.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/theme/lightning.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/lightning.2.2.1.zip", "2.3.0": "https://downloads.wordpress.org/theme/lightning.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/lightning.2.3.1.zip", "2.4.0": "https://downloads.wordpress.org/theme/lightning.2.4.0.zip", "2.5.0": "https://downloads.wordpress.org/theme/lightning.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/theme/lightning.2.5.1.zip", "2.6.0": "https://downloads.wordpress.org/theme/lightning.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/lightning.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/theme/lightning.2.6.2.zip", "2.7.0": "https://downloads.wordpress.org/theme/lightning.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/theme/lightning.2.7.1.zip", "2.7.3": "https://downloads.wordpress.org/theme/lightning.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/theme/lightning.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/theme/lightning.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/theme/lightning.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/theme/lightning.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/theme/lightning.2.7.8.zip", "2.7.9": "https://downloads.wordpress.org/theme/lightning.2.7.9.zip", "3.0.0": "https://downloads.wordpress.org/theme/lightning.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/lightning.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/lightning.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/lightning.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/lightning.3.0.4.zip", "3.0.6": "https://downloads.wordpress.org/theme/lightning.3.0.6.zip", "3.1.0": "https://downloads.wordpress.org/theme/lightning.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/lightning.3.1.1.zip", "3.2.0": "https://downloads.wordpress.org/theme/lightning.3.2.0.zip", "3.3.0": "https://downloads.wordpress.org/theme/lightning.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/lightning.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/theme/lightning.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/theme/lightning.3.3.3.zip", "3.4.0": "https://downloads.wordpress.org/theme/lightning.3.4.0.zip", "4.0.0": "https://downloads.wordpress.org/theme/lightning.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/lightning.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/lightning.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/theme/lightning.4.0.3.zip", "4.1.0": "https://downloads.wordpress.org/theme/lightning.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/lightning.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/lightning.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/lightning.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/theme/lightning.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/theme/lightning.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/theme/lightning.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/theme/lightning.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/theme/lightning.4.1.8.zip", "4.2.0": "https://downloads.wordpress.org/theme/lightning.4.2.0.zip", "4.3.0": "https://downloads.wordpress.org/theme/lightning.4.3.0.zip", "4.4.0": "https://downloads.wordpress.org/theme/lightning.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/theme/lightning.4.4.1.zip", "4.4.2": "https://downloads.wordpress.org/theme/lightning.4.4.2.zip", "4.4.3": "https://downloads.wordpress.org/theme/lightning.4.4.3.zip", "4.4.4": "https://downloads.wordpress.org/theme/lightning.4.4.4.zip", "4.4.5": "https://downloads.wordpress.org/theme/lightning.4.4.5.zip", "4.4.6": "https://downloads.wordpress.org/theme/lightning.4.4.6.zip", "4.4.7": "https://downloads.wordpress.org/theme/lightning.4.4.7.zip", "4.4.8": "https://downloads.wordpress.org/theme/lightning.4.4.8.zip", "4.4.9": "https://downloads.wordpress.org/theme/lightning.4.4.9.zip", "5.0.0": "https://downloads.wordpress.org/theme/lightning.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/theme/lightning.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/theme/lightning.5.0.2.zip", "5.1.0": "https://downloads.wordpress.org/theme/lightning.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/theme/lightning.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/theme/lightning.5.1.2.zip", "5.3.2": "https://downloads.wordpress.org/theme/lightning.5.3.2.zip", "6.0.0": "https://downloads.wordpress.org/theme/lightning.6.0.0.zip", "6.0.1": "https://downloads.wordpress.org/theme/lightning.6.0.1.zip", "6.1.0": "https://downloads.wordpress.org/theme/lightning.6.1.0.zip", "6.1.1": "https://downloads.wordpress.org/theme/lightning.6.1.1.zip", "6.1.2": "https://downloads.wordpress.org/theme/lightning.6.1.2.zip", "6.2.0": "https://downloads.wordpress.org/theme/lightning.6.2.0.zip", "6.3.0": "https://downloads.wordpress.org/theme/lightning.6.3.0.zip", "6.3.1": "https://downloads.wordpress.org/theme/lightning.6.3.1.zip", "6.3.2": "https://downloads.wordpress.org/theme/lightning.6.3.2.zip", "6.4.0": "https://downloads.wordpress.org/theme/lightning.6.4.0.zip", "6.4.1": "https://downloads.wordpress.org/theme/lightning.6.4.1.zip", "6.4.2": "https://downloads.wordpress.org/theme/lightning.6.4.2.zip", "6.5.0": "https://downloads.wordpress.org/theme/lightning.6.5.0.zip", "6.5.1": "https://downloads.wordpress.org/theme/lightning.6.5.1.zip", "6.5.2": "https://downloads.wordpress.org/theme/lightning.6.5.2.zip", "6.6.0": "https://downloads.wordpress.org/theme/lightning.6.6.0.zip", "6.6.1": "https://downloads.wordpress.org/theme/lightning.6.6.1.zip", "6.6.3": "https://downloads.wordpress.org/theme/lightning.6.6.3.zip", "6.6.4": "https://downloads.wordpress.org/theme/lightning.6.6.4.zip", "6.6.5": "https://downloads.wordpress.org/theme/lightning.6.6.5.zip", "6.6.6": "https://downloads.wordpress.org/theme/lightning.6.6.6.zip", "6.7.0": "https://downloads.wordpress.org/theme/lightning.6.7.0.zip", "6.7.1": "https://downloads.wordpress.org/theme/lightning.6.7.1.zip", "6.8.0": "https://downloads.wordpress.org/theme/lightning.6.8.0.zip", "6.9.0": "https://downloads.wordpress.org/theme/lightning.6.9.0.zip", "7.0.5": "https://downloads.wordpress.org/theme/lightning.7.0.5.zip", "7.0.6": "https://downloads.wordpress.org/theme/lightning.7.0.6.zip", "7.0.7": "https://downloads.wordpress.org/theme/lightning.7.0.7.zip", "7.0.8": "https://downloads.wordpress.org/theme/lightning.7.0.8.zip", "7.0.9": "https://downloads.wordpress.org/theme/lightning.7.0.9.zip", "7.1.0": "https://downloads.wordpress.org/theme/lightning.7.1.0.zip", "7.1.1": "https://downloads.wordpress.org/theme/lightning.7.1.1.zip", "7.1.4": "https://downloads.wordpress.org/theme/lightning.7.1.4.zip", "7.2.0": "https://downloads.wordpress.org/theme/lightning.7.2.0.zip", "7.2.1": "https://downloads.wordpress.org/theme/lightning.7.2.1.zip", "7.2.4": "https://downloads.wordpress.org/theme/lightning.7.2.4.zip", "7.2.6": "https://downloads.wordpress.org/theme/lightning.7.2.6.zip", "7.2.7": "https://downloads.wordpress.org/theme/lightning.7.2.7.zip", "7.3.0": "https://downloads.wordpress.org/theme/lightning.7.3.0.zip", "7.4.0": "https://downloads.wordpress.org/theme/lightning.7.4.0.zip", "7.5.0": "https://downloads.wordpress.org/theme/lightning.7.5.0.zip", "7.6.1": "https://downloads.wordpress.org/theme/lightning.7.6.1.zip", "7.6.3": "https://downloads.wordpress.org/theme/lightning.7.6.3.zip", "8.0.0": "https://downloads.wordpress.org/theme/lightning.8.0.0.zip", "8.0.1": "https://downloads.wordpress.org/theme/lightning.8.0.1.zip", "8.0.2": "https://downloads.wordpress.org/theme/lightning.8.0.2.zip", "8.0.3": "https://downloads.wordpress.org/theme/lightning.8.0.3.zip", "8.0.4": "https://downloads.wordpress.org/theme/lightning.8.0.4.zip", "8.1.0": "https://downloads.wordpress.org/theme/lightning.8.1.0.zip", "8.2.0": "https://downloads.wordpress.org/theme/lightning.8.2.0.zip", "8.2.1": "https://downloads.wordpress.org/theme/lightning.8.2.1.zip", "8.2.2": "https://downloads.wordpress.org/theme/lightning.8.2.2.zip", "8.2.3": "https://downloads.wordpress.org/theme/lightning.8.2.3.zip", "8.2.4": "https://downloads.wordpress.org/theme/lightning.8.2.4.zip", "9.0.0": "https://downloads.wordpress.org/theme/lightning.9.0.0.zip", "9.0.1": "https://downloads.wordpress.org/theme/lightning.9.0.1.zip", "9.0.2": "https://downloads.wordpress.org/theme/lightning.9.0.2.zip", "9.0.3": "https://downloads.wordpress.org/theme/lightning.9.0.3.zip", "9.0.4": "https://downloads.wordpress.org/theme/lightning.9.0.4.zip", "9.0.5": "https://downloads.wordpress.org/theme/lightning.9.0.5.zip", "9.0.6": "https://downloads.wordpress.org/theme/lightning.9.0.6.zip", "9.0.7": "https://downloads.wordpress.org/theme/lightning.9.0.7.zip", "9.1.0": "https://downloads.wordpress.org/theme/lightning.9.1.0.zip", "9.1.1": "https://downloads.wordpress.org/theme/lightning.9.1.1.zip", "9.3.3": "https://downloads.wordpress.org/theme/lightning.9.3.3.zip", "9.4.1": "https://downloads.wordpress.org/theme/lightning.9.4.1.zip", "9.6.0": "https://downloads.wordpress.org/theme/lightning.9.6.0.zip", "9.6.1": "https://downloads.wordpress.org/theme/lightning.9.6.1.zip", "9.8.0": "https://downloads.wordpress.org/theme/lightning.9.8.0.zip", "9.8.1": "https://downloads.wordpress.org/theme/lightning.9.8.1.zip", "9.9.0": "https://downloads.wordpress.org/theme/lightning.9.9.0.zip", "0.1.10": "https://downloads.wordpress.org/theme/lightning.0.1.10.zip", "0.1.11": "https://downloads.wordpress.org/theme/lightning.0.1.11.zip", "0.1.12": "https://downloads.wordpress.org/theme/lightning.0.1.12.zip", "0.1.13": "https://downloads.wordpress.org/theme/lightning.0.1.13.zip", "10.0.6": "https://downloads.wordpress.org/theme/lightning.10.0.6.zip", "10.0.7": "https://downloads.wordpress.org/theme/lightning.10.0.7.zip", "10.1.0": "https://downloads.wordpress.org/theme/lightning.10.1.0.zip", "10.2.0": "https://downloads.wordpress.org/theme/lightning.10.2.0.zip", "11.0.0": "https://downloads.wordpress.org/theme/lightning.11.0.0.zip", "11.0.1": "https://downloads.wordpress.org/theme/lightning.11.0.1.zip", "11.0.2": "https://downloads.wordpress.org/theme/lightning.11.0.2.zip", "11.0.3": "https://downloads.wordpress.org/theme/lightning.11.0.3.zip", "11.0.4": "https://downloads.wordpress.org/theme/lightning.11.0.4.zip", "11.0.5": "https://downloads.wordpress.org/theme/lightning.11.0.5.zip", "11.0.6": "https://downloads.wordpress.org/theme/lightning.11.0.6.zip", "11.0.7": "https://downloads.wordpress.org/theme/lightning.11.0.7.zip", "11.0.8": "https://downloads.wordpress.org/theme/lightning.11.0.8.zip", "11.0.9": "https://downloads.wordpress.org/theme/lightning.11.0.9.zip", "11.1.0": "https://downloads.wordpress.org/theme/lightning.11.1.0.zip", "11.2.0": "https://downloads.wordpress.org/theme/lightning.11.2.0.zip", "11.2.1": "https://downloads.wordpress.org/theme/lightning.11.2.1.zip", "11.2.3": "https://downloads.wordpress.org/theme/lightning.11.2.3.zip", "11.3.1": "https://downloads.wordpress.org/theme/lightning.11.3.1.zip", "11.3.2": "https://downloads.wordpress.org/theme/lightning.11.3.2.zip", "11.3.3": "https://downloads.wordpress.org/theme/lightning.11.3.3.zip", "11.3.4": "https://downloads.wordpress.org/theme/lightning.11.3.4.zip", "11.3.5": "https://downloads.wordpress.org/theme/lightning.11.3.5.zip", "11.3.6": "https://downloads.wordpress.org/theme/lightning.11.3.6.zip", "11.4.0": "https://downloads.wordpress.org/theme/lightning.11.4.0.zip", "11.4.3": "https://downloads.wordpress.org/theme/lightning.11.4.3.zip", "11.4.4": "https://downloads.wordpress.org/theme/lightning.11.4.4.zip", "11.4.5": "https://downloads.wordpress.org/theme/lightning.11.4.5.zip", "11.4.6": "https://downloads.wordpress.org/theme/lightning.11.4.6.zip", "11.4.8": "https://downloads.wordpress.org/theme/lightning.11.4.8.zip", "11.5.0": "https://downloads.wordpress.org/theme/lightning.11.5.0.zip", "12.0.0": "https://downloads.wordpress.org/theme/lightning.12.0.0.zip", "12.1.0": "https://downloads.wordpress.org/theme/lightning.12.1.0.zip", "12.1.1": "https://downloads.wordpress.org/theme/lightning.12.1.1.zip", "12.1.2": "https://downloads.wordpress.org/theme/lightning.12.1.2.zip", "12.2.1": "https://downloads.wordpress.org/theme/lightning.12.2.1.zip", "12.3.2": "https://downloads.wordpress.org/theme/lightning.12.3.2.zip", "12.4.0": "https://downloads.wordpress.org/theme/lightning.12.4.0.zip", "12.5.0": "https://downloads.wordpress.org/theme/lightning.12.5.0.zip", "12.6.0": "https://downloads.wordpress.org/theme/lightning.12.6.0.zip", "12.7.0": "https://downloads.wordpress.org/theme/lightning.12.7.0.zip", "12.8.0": "https://downloads.wordpress.org/theme/lightning.12.8.0.zip", "12.8.1": "https://downloads.wordpress.org/theme/lightning.12.8.1.zip", "12.8.2": "https://downloads.wordpress.org/theme/lightning.12.8.2.zip", "12.8.3": "https://downloads.wordpress.org/theme/lightning.12.8.3.zip", "12.9.0": "https://downloads.wordpress.org/theme/lightning.12.9.0.zip", "12.9.1": "https://downloads.wordpress.org/theme/lightning.12.9.1.zip", "13.0.0": "https://downloads.wordpress.org/theme/lightning.13.0.0.zip", "13.1.0": "https://downloads.wordpress.org/theme/lightning.13.1.0.zip", "13.1.1": "https://downloads.wordpress.org/theme/lightning.13.1.1.zip", "13.2.0": "https://downloads.wordpress.org/theme/lightning.13.2.0.zip", "13.3.0": "https://downloads.wordpress.org/theme/lightning.13.3.0.zip", "13.3.1": "https://downloads.wordpress.org/theme/lightning.13.3.1.zip", "13.4.0": "https://downloads.wordpress.org/theme/lightning.13.4.0.zip", "13.4.1": "https://downloads.wordpress.org/theme/lightning.13.4.1.zip", "13.4.2": "https://downloads.wordpress.org/theme/lightning.13.4.2.zip", "13.5.0": "https://downloads.wordpress.org/theme/lightning.13.5.0.zip", "13.5.1": "https://downloads.wordpress.org/theme/lightning.13.5.1.zip", "13.5.4": "https://downloads.wordpress.org/theme/lightning.13.5.4.zip", "13.6.0": "https://downloads.wordpress.org/theme/lightning.13.6.0.zip", "13.7.0": "https://downloads.wordpress.org/theme/lightning.13.7.0.zip", "13.7.1": "https://downloads.wordpress.org/theme/lightning.13.7.1.zip", "13.7.2": "https://downloads.wordpress.org/theme/lightning.13.7.2.zip", "13.8.0": "https://downloads.wordpress.org/theme/lightning.13.8.0.zip", "13.8.1": "https://downloads.wordpress.org/theme/lightning.13.8.1.zip", "13.8.2": "https://downloads.wordpress.org/theme/lightning.13.8.2.zip", "13.8.3": "https://downloads.wordpress.org/theme/lightning.13.8.3.zip", "13.8.4": "https://downloads.wordpress.org/theme/lightning.13.8.4.zip", "13.8.5": "https://downloads.wordpress.org/theme/lightning.13.8.5.zip", "13.8.6": "https://downloads.wordpress.org/theme/lightning.13.8.6.zip", "13.8.7": "https://downloads.wordpress.org/theme/lightning.13.8.7.zip", "13.8.8": "https://downloads.wordpress.org/theme/lightning.13.8.8.zip", "13.8.9": "https://downloads.wordpress.org/theme/lightning.13.8.9.zip", "14.1.0": "https://downloads.wordpress.org/theme/lightning.14.1.0.zip", "14.1.1": "https://downloads.wordpress.org/theme/lightning.14.1.1.zip", "14.1.2": "https://downloads.wordpress.org/theme/lightning.14.1.2.zip", "14.1.3": "https://downloads.wordpress.org/theme/lightning.14.1.3.zip", "14.1.4": "https://downloads.wordpress.org/theme/lightning.14.1.4.zip", "14.1.5": "https://downloads.wordpress.org/theme/lightning.14.1.5.zip", "14.1.6": "https://downloads.wordpress.org/theme/lightning.14.1.6.zip", "14.1.8": "https://downloads.wordpress.org/theme/lightning.14.1.8.zip", "14.1.9": "https://downloads.wordpress.org/theme/lightning.14.1.9.zip", "14.2.0": "https://downloads.wordpress.org/theme/lightning.14.2.0.zip", "14.2.1": "https://downloads.wordpress.org/theme/lightning.14.2.1.zip", "14.2.2": "https://downloads.wordpress.org/theme/lightning.14.2.2.zip", "14.3.0": "https://downloads.wordpress.org/theme/lightning.14.3.0.zip", "14.3.1": "https://downloads.wordpress.org/theme/lightning.14.3.1.zip", "14.3.2": "https://downloads.wordpress.org/theme/lightning.14.3.2.zip", "14.3.3": "https://downloads.wordpress.org/theme/lightning.14.3.3.zip", "14.3.4": "https://downloads.wordpress.org/theme/lightning.14.3.4.zip", "14.3.5": "https://downloads.wordpress.org/theme/lightning.14.3.5.zip", "14.3.6": "https://downloads.wordpress.org/theme/lightning.14.3.6.zip", "14.3.7": "https://downloads.wordpress.org/theme/lightning.14.3.7.zip", "14.3.8": "https://downloads.wordpress.org/theme/lightning.14.3.8.zip", "14.3.9": "https://downloads.wordpress.org/theme/lightning.14.3.9.zip", "14.4.1": "https://downloads.wordpress.org/theme/lightning.14.4.1.zip", "14.4.2": "https://downloads.wordpress.org/theme/lightning.14.4.2.zip", "14.5.0": "https://downloads.wordpress.org/theme/lightning.14.5.0.zip", "14.5.1": "https://downloads.wordpress.org/theme/lightning.14.5.1.zip", "14.5.2": "https://downloads.wordpress.org/theme/lightning.14.5.2.zip", "14.5.3": "https://downloads.wordpress.org/theme/lightning.14.5.3.zip", "14.5.4": "https://downloads.wordpress.org/theme/lightning.14.5.4.zip", "14.5.5": "https://downloads.wordpress.org/theme/lightning.14.5.5.zip", "14.5.6": "https://downloads.wordpress.org/theme/lightning.14.5.6.zip", "14.5.7": "https://downloads.wordpress.org/theme/lightning.14.5.7.zip", "14.5.8": "https://downloads.wordpress.org/theme/lightning.14.5.8.zip", "14.5.9": "https://downloads.wordpress.org/theme/lightning.14.5.9.zip", "14.6.0": "https://downloads.wordpress.org/theme/lightning.14.6.0.zip", "14.6.1": "https://downloads.wordpress.org/theme/lightning.14.6.1.zip", "14.6.2": "https://downloads.wordpress.org/theme/lightning.14.6.2.zip", "14.7.0": "https://downloads.wordpress.org/theme/lightning.14.7.0.zip", "14.7.1": "https://downloads.wordpress.org/theme/lightning.14.7.1.zip", "14.8.0": "https://downloads.wordpress.org/theme/lightning.14.8.0.zip", "14.8.1": "https://downloads.wordpress.org/theme/lightning.14.8.1.zip", "14.8.2": "https://downloads.wordpress.org/theme/lightning.14.8.2.zip", "14.9.0": "https://downloads.wordpress.org/theme/lightning.14.9.0.zip", "14.9.1": "https://downloads.wordpress.org/theme/lightning.14.9.1.zip", "14.9.2": "https://downloads.wordpress.org/theme/lightning.14.9.2.zip", "14.9.3": "https://downloads.wordpress.org/theme/lightning.14.9.3.zip", "14.9.4": "https://downloads.wordpress.org/theme/lightning.14.9.4.zip", "15.1.2": "https://downloads.wordpress.org/theme/lightning.15.1.2.zip", "15.1.3": "https://downloads.wordpress.org/theme/lightning.15.1.3.zip", "15.1.4": "https://downloads.wordpress.org/theme/lightning.15.1.4.zip", "15.2.0": "https://downloads.wordpress.org/theme/lightning.15.2.0.zip", "15.2.1": "https://downloads.wordpress.org/theme/lightning.15.2.1.zip", "15.2.2": "https://downloads.wordpress.org/theme/lightning.15.2.2.zip", "15.2.3": "https://downloads.wordpress.org/theme/lightning.15.2.3.zip", "15.2.4": "https://downloads.wordpress.org/theme/lightning.15.2.4.zip", "15.2.5": "https://downloads.wordpress.org/theme/lightning.15.2.5.zip", "15.2.6": "https://downloads.wordpress.org/theme/lightning.15.2.6.zip", "15.3.0": "https://downloads.wordpress.org/theme/lightning.15.3.0.zip", "15.4.0": "https://downloads.wordpress.org/theme/lightning.15.4.0.zip", "15.5.0": "https://downloads.wordpress.org/theme/lightning.15.5.0.zip", "15.5.1": "https://downloads.wordpress.org/theme/lightning.15.5.1.zip", "15.6.0": "https://downloads.wordpress.org/theme/lightning.15.6.0.zip", "15.7.0": "https://downloads.wordpress.org/theme/lightning.15.7.0.zip", "15.8.0": "https://downloads.wordpress.org/theme/lightning.15.8.0.zip", "15.8.1": "https://downloads.wordpress.org/theme/lightning.15.8.1.zip", "15.8.2": "https://downloads.wordpress.org/theme/lightning.15.8.2.zip", "15.8.3": "https://downloads.wordpress.org/theme/lightning.15.8.3.zip", "15.8.4": "https://downloads.wordpress.org/theme/lightning.15.8.4.zip", "15.8.5": "https://downloads.wordpress.org/theme/lightning.15.8.5.zip", "15.8.6": "https://downloads.wordpress.org/theme/lightning.15.8.6.zip", "15.9.0": "https://downloads.wordpress.org/theme/lightning.15.9.0.zip", "15.9.1": "https://downloads.wordpress.org/theme/lightning.15.9.1.zip", "15.9.2": "https://downloads.wordpress.org/theme/lightning.15.9.2.zip", "15.9.3": "https://downloads.wordpress.org/theme/lightning.15.9.3.zip", "15.9.4": "https://downloads.wordpress.org/theme/lightning.15.9.4.zip", "15.9.5": "https://downloads.wordpress.org/theme/lightning.15.9.5.zip", "4.4.10": "https://downloads.wordpress.org/theme/lightning.4.4.10.zip", "4.4.11": "https://downloads.wordpress.org/theme/lightning.4.4.11.zip", "4.4.12": "https://downloads.wordpress.org/theme/lightning.4.4.12.zip", "6.10.0": "https://downloads.wordpress.org/theme/lightning.6.10.0.zip", "6.10.1": "https://downloads.wordpress.org/theme/lightning.6.10.1.zip", "6.10.2": "https://downloads.wordpress.org/theme/lightning.6.10.2.zip", "6.10.3": "https://downloads.wordpress.org/theme/lightning.6.10.3.zip", "6.11.0": "https://downloads.wordpress.org/theme/lightning.6.11.0.zip", "6.12.0": "https://downloads.wordpress.org/theme/lightning.6.12.0.zip", "6.13.0": "https://downloads.wordpress.org/theme/lightning.6.13.0.zip", "6.13.2": "https://downloads.wordpress.org/theme/lightning.6.13.2.zip", "6.13.3": "https://downloads.wordpress.org/theme/lightning.6.13.3.zip", "6.13.4": "https://downloads.wordpress.org/theme/lightning.6.13.4.zip", "6.13.5": "https://downloads.wordpress.org/theme/lightning.6.13.5.zip", "6.13.6": "https://downloads.wordpress.org/theme/lightning.6.13.6.zip", "6.14.0": "https://downloads.wordpress.org/theme/lightning.6.14.0.zip", "6.15.0": "https://downloads.wordpress.org/theme/lightning.6.15.0.zip", "6.16.0": "https://downloads.wordpress.org/theme/lightning.6.16.0.zip", "9.10.0": "https://downloads.wordpress.org/theme/lightning.9.10.0.zip", "9.11.0": "https://downloads.wordpress.org/theme/lightning.9.11.0.zip", "9.11.1": "https://downloads.wordpress.org/theme/lightning.9.11.1.zip", "9.14.0": "https://downloads.wordpress.org/theme/lightning.9.14.0.zip", "12.10.0": "https://downloads.wordpress.org/theme/lightning.12.10.0.zip", "12.10.1": "https://downloads.wordpress.org/theme/lightning.12.10.1.zip", "13.8.11": "https://downloads.wordpress.org/theme/lightning.13.8.11.zip", "13.8.13": "https://downloads.wordpress.org/theme/lightning.13.8.13.zip", "14.10.0": "https://downloads.wordpress.org/theme/lightning.14.10.0.zip", "14.11.0": "https://downloads.wordpress.org/theme/lightning.14.11.0.zip", "14.11.1": "https://downloads.wordpress.org/theme/lightning.14.11.1.zip", "14.11.2": "https://downloads.wordpress.org/theme/lightning.14.11.2.zip", "14.11.3": "https://downloads.wordpress.org/theme/lightning.14.11.3.zip", "14.11.4": "https://downloads.wordpress.org/theme/lightning.14.11.4.zip", "14.11.5": "https://downloads.wordpress.org/theme/lightning.14.11.5.zip", "14.11.6": "https://downloads.wordpress.org/theme/lightning.14.11.6.zip", "14.11.7": "https://downloads.wordpress.org/theme/lightning.14.11.7.zip", "14.11.8": "https://downloads.wordpress.org/theme/lightning.14.11.8.zip", "14.11.9": "https://downloads.wordpress.org/theme/lightning.14.11.9.zip", "14.12.0": "https://downloads.wordpress.org/theme/lightning.14.12.0.zip", "14.12.1": "https://downloads.wordpress.org/theme/lightning.14.12.1.zip", "14.12.2": "https://downloads.wordpress.org/theme/lightning.14.12.2.zip", "14.13.0": "https://downloads.wordpress.org/theme/lightning.14.13.0.zip", "14.13.1": "https://downloads.wordpress.org/theme/lightning.14.13.1.zip", "14.13.2": "https://downloads.wordpress.org/theme/lightning.14.13.2.zip", "14.13.3": "https://downloads.wordpress.org/theme/lightning.14.13.3.zip", "14.13.4": "https://downloads.wordpress.org/theme/lightning.14.13.4.zip", "14.13.5": "https://downloads.wordpress.org/theme/lightning.14.13.5.zip", "14.13.6": "https://downloads.wordpress.org/theme/lightning.14.13.6.zip", "14.14.0": "https://downloads.wordpress.org/theme/lightning.14.14.0.zip", "14.14.1": "https://downloads.wordpress.org/theme/lightning.14.14.1.zip", "14.15.0": "https://downloads.wordpress.org/theme/lightning.14.15.0.zip", "14.15.1": "https://downloads.wordpress.org/theme/lightning.14.15.1.zip", "14.15.2": "https://downloads.wordpress.org/theme/lightning.14.15.2.zip", "14.16.0": "https://downloads.wordpress.org/theme/lightning.14.16.0.zip", "14.17.0": "https://downloads.wordpress.org/theme/lightning.14.17.0.zip", "14.17.1": "https://downloads.wordpress.org/theme/lightning.14.17.1.zip", "14.17.2": "https://downloads.wordpress.org/theme/lightning.14.17.2.zip", "14.17.3": "https://downloads.wordpress.org/theme/lightning.14.17.3.zip", "14.17.4": "https://downloads.wordpress.org/theme/lightning.14.17.4.zip", "14.17.5": "https://downloads.wordpress.org/theme/lightning.14.17.5.zip", "14.18.0": "https://downloads.wordpress.org/theme/lightning.14.18.0.zip", "14.18.1": "https://downloads.wordpress.org/theme/lightning.14.18.1.zip", "14.18.2": "https://downloads.wordpress.org/theme/lightning.14.18.2.zip", "14.19.0": "https://downloads.wordpress.org/theme/lightning.14.19.0.zip", "14.19.1": "https://downloads.wordpress.org/theme/lightning.14.19.1.zip", "14.19.2": "https://downloads.wordpress.org/theme/lightning.14.19.2.zip", "14.20.0": "https://downloads.wordpress.org/theme/lightning.14.20.0.zip", "14.20.1": "https://downloads.wordpress.org/theme/lightning.14.20.1.zip", "14.20.2": "https://downloads.wordpress.org/theme/lightning.14.20.2.zip", "14.20.3": "https://downloads.wordpress.org/theme/lightning.14.20.3.zip", "14.21.0": "https://downloads.wordpress.org/theme/lightning.14.21.0.zip", "14.21.1": "https://downloads.wordpress.org/theme/lightning.14.21.1.zip", "14.21.2": "https://downloads.wordpress.org/theme/lightning.14.21.2.zip", "14.21.3": "https://downloads.wordpress.org/theme/lightning.14.21.3.zip", "14.21.4": "https://downloads.wordpress.org/theme/lightning.14.21.4.zip", "14.21.5": "https://downloads.wordpress.org/theme/lightning.14.21.5.zip", "14.22.0": "https://downloads.wordpress.org/theme/lightning.14.22.0.zip", "14.22.1": "https://downloads.wordpress.org/theme/lightning.14.22.1.zip", "14.22.2": "https://downloads.wordpress.org/theme/lightning.14.22.2.zip", "14.22.3": "https://downloads.wordpress.org/theme/lightning.14.22.3.zip", "14.22.4": "https://downloads.wordpress.org/theme/lightning.14.22.4.zip", "14.22.6": "https://downloads.wordpress.org/theme/lightning.14.22.6.zip", "14.22.7": "https://downloads.wordpress.org/theme/lightning.14.22.7.zip", "14.22.8": "https://downloads.wordpress.org/theme/lightning.14.22.8.zip", "14.22.9": "https://downloads.wordpress.org/theme/lightning.14.22.9.zip", "14.23.0": "https://downloads.wordpress.org/theme/lightning.14.23.0.zip", "14.23.1": "https://downloads.wordpress.org/theme/lightning.14.23.1.zip", "14.23.2": "https://downloads.wordpress.org/theme/lightning.14.23.2.zip", "14.23.3": "https://downloads.wordpress.org/theme/lightning.14.23.3.zip", "14.23.4": "https://downloads.wordpress.org/theme/lightning.14.23.4.zip", "14.24.0": "https://downloads.wordpress.org/theme/lightning.14.24.0.zip", "14.25.0": "https://downloads.wordpress.org/theme/lightning.14.25.0.zip", "14.25.1": "https://downloads.wordpress.org/theme/lightning.14.25.1.zip", "14.5.10": "https://downloads.wordpress.org/theme/lightning.14.5.10.zip", "14.5.11": "https://downloads.wordpress.org/theme/lightning.14.5.11.zip", "15.10.0": "https://downloads.wordpress.org/theme/lightning.15.10.0.zip", "15.10.1": "https://downloads.wordpress.org/theme/lightning.15.10.1.zip", "15.10.2": "https://downloads.wordpress.org/theme/lightning.15.10.2.zip", "15.10.3": "https://downloads.wordpress.org/theme/lightning.15.10.3.zip", "15.10.4": "https://downloads.wordpress.org/theme/lightning.15.10.4.zip", "15.10.5": "https://downloads.wordpress.org/theme/lightning.15.10.5.zip", "15.10.6": "https://downloads.wordpress.org/theme/lightning.15.10.6.zip", "15.11.0": "https://downloads.wordpress.org/theme/lightning.15.11.0.zip", "15.12.0": "https://downloads.wordpress.org/theme/lightning.15.12.0.zip", "15.12.1": "https://downloads.wordpress.org/theme/lightning.15.12.1.zip", "15.13.0": "https://downloads.wordpress.org/theme/lightning.15.13.0.zip", "15.14.0": "https://downloads.wordpress.org/theme/lightning.15.14.0.zip", "15.14.1": "https://downloads.wordpress.org/theme/lightning.15.14.1.zip", "15.14.2": "https://downloads.wordpress.org/theme/lightning.15.14.2.zip", "15.15.0": "https://downloads.wordpress.org/theme/lightning.15.15.0.zip", "15.15.1": "https://downloads.wordpress.org/theme/lightning.15.15.1.zip", "15.16.0": "https://downloads.wordpress.org/theme/lightning.15.16.0.zip", "15.17.0": "https://downloads.wordpress.org/theme/lightning.15.17.0.zip", "15.17.1": "https://downloads.wordpress.org/theme/lightning.15.17.1.zip", "15.18.0": "https://downloads.wordpress.org/theme/lightning.15.18.0.zip", "15.19.0": "https://downloads.wordpress.org/theme/lightning.15.19.0.zip", "15.19.1": "https://downloads.wordpress.org/theme/lightning.15.19.1.zip", "15.20.0": "https://downloads.wordpress.org/theme/lightning.15.20.0.zip", "15.20.1": "https://downloads.wordpress.org/theme/lightning.15.20.1.zip", "15.20.2": "https://downloads.wordpress.org/theme/lightning.15.20.2.zip", "15.21.0": "https://downloads.wordpress.org/theme/lightning.15.21.0.zip", "15.21.1": "https://downloads.wordpress.org/theme/lightning.15.21.1.zip", "15.22.0": "https://downloads.wordpress.org/theme/lightning.15.22.0.zip", "15.22.1": "https://downloads.wordpress.org/theme/lightning.15.22.1.zip", "15.23.0": "https://downloads.wordpress.org/theme/lightning.15.23.0.zip", "15.23.1": "https://downloads.wordpress.org/theme/lightning.15.23.1.zip", "15.24.0": "https://downloads.wordpress.org/theme/lightning.15.24.0.zip", "15.25.0": "https://downloads.wordpress.org/theme/lightning.15.25.0.zip", "15.25.1": "https://downloads.wordpress.org/theme/lightning.15.25.1.zip", "15.26.0": "https://downloads.wordpress.org/theme/lightning.15.26.0.zip", "15.26.1": "https://downloads.wordpress.org/theme/lightning.15.26.1.zip", "15.26.2": "https://downloads.wordpress.org/theme/lightning.15.26.2.zip", "15.26.3": "https://downloads.wordpress.org/theme/lightning.15.26.3.zip", "15.26.4": "https://downloads.wordpress.org/theme/lightning.15.26.4.zip", "15.26.5": "https://downloads.wordpress.org/theme/lightning.15.26.5.zip", "15.27.0": "https://downloads.wordpress.org/theme/lightning.15.27.0.zip", "15.27.1": "https://downloads.wordpress.org/theme/lightning.15.27.1.zip", "15.27.2": "https://downloads.wordpress.org/theme/lightning.15.27.2.zip", "15.28.0": "https://downloads.wordpress.org/theme/lightning.15.28.0.zip", "15.28.1": "https://downloads.wordpress.org/theme/lightning.15.28.1.zip", "15.28.2": "https://downloads.wordpress.org/theme/lightning.15.28.2.zip", "15.29.0": "https://downloads.wordpress.org/theme/lightning.15.29.0.zip", "15.29.1": "https://downloads.wordpress.org/theme/lightning.15.29.1.zip", "15.29.2": "https://downloads.wordpress.org/theme/lightning.15.29.2.zip", "15.29.3": "https://downloads.wordpress.org/theme/lightning.15.29.3.zip", "15.29.4": "https://downloads.wordpress.org/theme/lightning.15.29.4.zip", "15.29.5": "https://downloads.wordpress.org/theme/lightning.15.29.5.zip", "15.29.6": "https://downloads.wordpress.org/theme/lightning.15.29.6.zip", "15.29.7": "https://downloads.wordpress.org/theme/lightning.15.29.7.zip", "15.29.8": "https://downloads.wordpress.org/theme/lightning.15.29.8.zip", "15.29.9": "https://downloads.wordpress.org/theme/lightning.15.29.9.zip", "15.30.0": "https://downloads.wordpress.org/theme/lightning.15.30.0.zip", "15.30.1": "https://downloads.wordpress.org/theme/lightning.15.30.1.zip", "15.30.2": "https://downloads.wordpress.org/theme/lightning.15.30.2.zip", "15.30.3": "https://downloads.wordpress.org/theme/lightning.15.30.3.zip", "15.30.4": "https://downloads.wordpress.org/theme/lightning.15.30.4.zip", "15.31.1": "https://downloads.wordpress.org/theme/lightning.15.31.1.zip", "15.32.0": "https://downloads.wordpress.org/theme/lightning.15.32.0.zip", "15.32.1": "https://downloads.wordpress.org/theme/lightning.15.32.1.zip", "14.11.10": "https://downloads.wordpress.org/theme/lightning.14.11.10.zip", "14.11.12": "https://downloads.wordpress.org/theme/lightning.14.11.12.zip", "14.22.10": "https://downloads.wordpress.org/theme/lightning.14.22.10.zip", "14.22.11": "https://downloads.wordpress.org/theme/lightning.14.22.11.zip", "14.22.12": "https://downloads.wordpress.org/theme/lightning.14.22.12.zip", "15.29.10": "https://downloads.wordpress.org/theme/lightning.15.29.10.zip", "15.29.11": "https://downloads.wordpress.org/theme/lightning.15.29.11.zip"}, "downloaded": 2800973, "num_ratings": 11, "preview_url": "https://wp-themes.com/lightning/", "reviews_url": "https://wordpress.org/support/theme/lightning/reviews/", "is_community": false, "last_updated": "2025-10-20", "requires_php": "7.4", "creation_time": "2015-07-24 01:30:05", "download_link": "https://downloads.wordpress.org/theme/lightning.15.32.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/lightning/screenshot.png?ver=15.32.1", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-0bfc-73de-897d-695abe27e081", "name": "Lightning", "slug": "lightning", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1760918400, "version": "15.32.1"}, "last_updated_time": "2025-10-20 03:19:20", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b36-723f-b9d8-ceb0e13c4cd2', 'mistify', 'Mistify', '1.0.12', 'Mistify is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Mistify is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', '019a30c1-69d2-7156-b9cf-ce8906962bef', 'https://downloads.wordpress.org/theme/mistify.1.0.12.zip', '5.8', '7.1', '2025-04-15 08:27:51+00', '2024-10-18 14:11:49+00', 'https://wp-themes.com/mistify/', '//ts.w.org/wp-content/themes/mistify/screenshot.jpg?ver=1.0.12', 0, 0, 'https://wordpress.org/support/theme/mistify/reviews/', 31729, 4000, 'https://wordpress.org/themes/mistify/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Mistify", "slug": "mistify", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.12", "homepage": "https://wordpress.org/themes/mistify/", "requires": "5.8", "sections": {"description": "Mistify is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Mistify is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.1": "https://downloads.wordpress.org/theme/mistify.1.0.1.zip", "1.0.4": "https://downloads.wordpress.org/theme/mistify.1.0.4.zip", "1.0.6": "https://downloads.wordpress.org/theme/mistify.1.0.6.zip", "1.0.8": "https://downloads.wordpress.org/theme/mistify.1.0.8.zip", "1.0.12": "https://downloads.wordpress.org/theme/mistify.1.0.12.zip"}, "downloaded": 31729, "num_ratings": 0, "preview_url": "https://wp-themes.com/mistify/", "reviews_url": "https://wordpress.org/support/theme/mistify/reviews/", "is_community": false, "last_updated": "2025-04-15", "requires_php": "7.1", "creation_time": "2024-10-18 14:11:49", "download_link": "https://downloads.wordpress.org/theme/mistify.1.0.12.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/mistify/screenshot.jpg?ver=1.0.12", "active_installs": 4000, "aspiresync_meta": {"id": "019a30c0-0bf7-7284-b0ef-5ecc19023933", "name": "Mistify", "slug": "mistify", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1744675200, "version": "1.0.12"}, "last_updated_time": "2025-04-15 08:27:51", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b3f-717b-83dc-cb584a7700a5', 'neve', 'Neve', '4.1.4', 'Neve is a next-generation, ultra-fast WordPress theme designed for top performance, SEO, and Core Web Vitals. Its lightweight codebase and small size ensure minimal overhead and lightning-fast load times. Fully compatible with the block editor, popular page builders (Elementor, Bricks, Oxygen etc), and WooCommerce, it’s perfect for blogs, small businesses, agencies, portfolios, and online stores. With responsive design, multilingual translations, and easy customization options, Neve empowers you to create a future-proof, high-ranking online presence. Discover everything Neve has to offer and explore our powerful premium version at https://themeisle.com/themes/neve/.', '019a30c1-6ac1-7121-89c0-4a1bdc1c7842', 'https://downloads.wordpress.org/theme/neve.4.1.4.zip', '5.5', '7.0', '2025-09-10 08:35:37+00', '2018-11-23 16:37:10+00', 'https://wp-themes.com/neve/', '//ts.w.org/wp-content/themes/neve/screenshot.png?ver=4.1.4', 94, 1260, 'https://wordpress.org/support/theme/neve/reviews/', 5723040, 200000, 'https://wordpress.org/themes/neve/', true, 'https://themeisle.com/contact/', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Neve", "slug": "neve", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "ThemeIsle", "avatar": "https://secure.gravatar.com/avatar/91e46225a693950a8f2350674124a8e3ceddb0f705fa988377646322729e3d7c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeisle/", "author_url": "https://themeisle.com", "display_name": "Themeisle", "user_nicename": "themeisle"}, "rating": 94, "status": "open", "ratings": {"1": 52, "2": 11, "3": 16, "4": 60, "5": 1121}, "version": "4.1.4", "homepage": "https://wordpress.org/themes/neve/", "requires": "5.5", "sections": {"description": "Neve is a next-generation, ultra-fast WordPress theme designed for top performance, SEO, and Core Web Vitals. Its lightweight codebase and small size ensure minimal overhead and lightning-fast load times. Fully compatible with the block editor, popular page builders (Elementor, Bricks, Oxygen etc), and WooCommerce, it’s perfect for blogs, small businesses, agencies, portfolios, and online stores. With responsive design, multilingual translations, and easy customization options, Neve empowers you to create a future-proof, high-ranking online presence. Discover everything Neve has to offer and explore our powerful premium version at https://themeisle.com/themes/neve/."}, "versions": {"1.0.4": "https://downloads.wordpress.org/theme/neve.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/neve.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/neve.1.0.6.zip", "1.0.8": "https://downloads.wordpress.org/theme/neve.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/neve.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/neve.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/neve.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/neve.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/neve.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/neve.1.1.4.zip", "2.0.0": "https://downloads.wordpress.org/theme/neve.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/theme/neve.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/theme/neve.2.2.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/neve.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/neve.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/neve.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/neve.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/neve.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/neve.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/neve.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/neve.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/theme/neve.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/theme/neve.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/neve.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/neve.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/neve.2.4.3.zip", "2.5.1": "https://downloads.wordpress.org/theme/neve.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/theme/neve.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/theme/neve.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/neve.2.5.4.zip", "2.6.0": "https://downloads.wordpress.org/theme/neve.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/neve.2.6.1.zip", "2.6.2": "https://downloads.wordpress.org/theme/neve.2.6.2.zip", "2.6.3": "https://downloads.wordpress.org/theme/neve.2.6.3.zip", "2.6.4": "https://downloads.wordpress.org/theme/neve.2.6.4.zip", "2.6.5": "https://downloads.wordpress.org/theme/neve.2.6.5.zip", "2.6.6": "https://downloads.wordpress.org/theme/neve.2.6.6.zip", "2.7.0": "https://downloads.wordpress.org/theme/neve.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/theme/neve.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/theme/neve.2.7.2.zip", "2.7.3": "https://downloads.wordpress.org/theme/neve.2.7.3.zip", "2.7.4": "https://downloads.wordpress.org/theme/neve.2.7.4.zip", "2.7.5": "https://downloads.wordpress.org/theme/neve.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/theme/neve.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/theme/neve.2.7.7.zip", "2.8.0": "https://downloads.wordpress.org/theme/neve.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/theme/neve.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/theme/neve.2.8.2.zip", "2.8.3": "https://downloads.wordpress.org/theme/neve.2.8.3.zip", "2.8.4": "https://downloads.wordpress.org/theme/neve.2.8.4.zip", "2.9.0": "https://downloads.wordpress.org/theme/neve.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/theme/neve.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/theme/neve.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/theme/neve.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/theme/neve.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/theme/neve.2.9.5.zip", "3.0.0": "https://downloads.wordpress.org/theme/neve.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/neve.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/neve.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/neve.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/neve.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/theme/neve.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/theme/neve.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/theme/neve.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/theme/neve.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/theme/neve.3.0.9.zip", "3.1.0": "https://downloads.wordpress.org/theme/neve.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/neve.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/neve.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/theme/neve.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/theme/neve.3.1.4.zip", "3.1.5": "https://downloads.wordpress.org/theme/neve.3.1.5.zip", "3.1.6": "https://downloads.wordpress.org/theme/neve.3.1.6.zip", "3.2.0": "https://downloads.wordpress.org/theme/neve.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/theme/neve.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/theme/neve.3.2.2.zip", "3.2.3": "https://downloads.wordpress.org/theme/neve.3.2.3.zip", "3.2.4": "https://downloads.wordpress.org/theme/neve.3.2.4.zip", "3.2.5": "https://downloads.wordpress.org/theme/neve.3.2.5.zip", "3.3.0": "https://downloads.wordpress.org/theme/neve.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/neve.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/theme/neve.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/theme/neve.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/theme/neve.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/theme/neve.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/theme/neve.3.3.6.zip", "3.3.7": "https://downloads.wordpress.org/theme/neve.3.3.7.zip", "3.4.0": "https://downloads.wordpress.org/theme/neve.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/theme/neve.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/theme/neve.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/theme/neve.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/theme/neve.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/theme/neve.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/theme/neve.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/theme/neve.3.4.7.zip", "3.4.8": "https://downloads.wordpress.org/theme/neve.3.4.8.zip", "3.4.9": "https://downloads.wordpress.org/theme/neve.3.4.9.zip", "3.5.0": "https://downloads.wordpress.org/theme/neve.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/theme/neve.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/theme/neve.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/theme/neve.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/theme/neve.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/theme/neve.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/theme/neve.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/theme/neve.3.5.7.zip", "3.5.8": "https://downloads.wordpress.org/theme/neve.3.5.8.zip", "3.6.0": "https://downloads.wordpress.org/theme/neve.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/theme/neve.3.6.1.zip", "3.6.2": "https://downloads.wordpress.org/theme/neve.3.6.2.zip", "3.6.3": "https://downloads.wordpress.org/theme/neve.3.6.3.zip", "3.6.4": "https://downloads.wordpress.org/theme/neve.3.6.4.zip", "3.6.5": "https://downloads.wordpress.org/theme/neve.3.6.5.zip", "3.6.6": "https://downloads.wordpress.org/theme/neve.3.6.6.zip", "3.6.7": "https://downloads.wordpress.org/theme/neve.3.6.7.zip", "3.7.0": "https://downloads.wordpress.org/theme/neve.3.7.0.zip", "3.7.1": "https://downloads.wordpress.org/theme/neve.3.7.1.zip", "3.7.2": "https://downloads.wordpress.org/theme/neve.3.7.2.zip", "3.7.3": "https://downloads.wordpress.org/theme/neve.3.7.3.zip", "3.7.4": "https://downloads.wordpress.org/theme/neve.3.7.4.zip", "3.7.5": "https://downloads.wordpress.org/theme/neve.3.7.5.zip", "3.8.0": "https://downloads.wordpress.org/theme/neve.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/theme/neve.3.8.1.zip", "3.8.2": "https://downloads.wordpress.org/theme/neve.3.8.2.zip", "3.8.3": "https://downloads.wordpress.org/theme/neve.3.8.3.zip", "3.8.4": "https://downloads.wordpress.org/theme/neve.3.8.4.zip", "3.8.5": "https://downloads.wordpress.org/theme/neve.3.8.5.zip", "3.8.6": "https://downloads.wordpress.org/theme/neve.3.8.6.zip", "3.8.7": "https://downloads.wordpress.org/theme/neve.3.8.7.zip", "3.8.8": "https://downloads.wordpress.org/theme/neve.3.8.8.zip", "3.8.9": "https://downloads.wordpress.org/theme/neve.3.8.9.zip", "4.0.0": "https://downloads.wordpress.org/theme/neve.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/neve.4.0.1.zip", "4.1.0": "https://downloads.wordpress.org/theme/neve.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/neve.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/neve.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/neve.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/theme/neve.4.1.4.zip", "1.0.10": "https://downloads.wordpress.org/theme/neve.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/neve.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/neve.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/neve.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/theme/neve.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/theme/neve.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/theme/neve.1.0.16.zip", "1.0.18": "https://downloads.wordpress.org/theme/neve.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/theme/neve.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/neve.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/neve.1.0.21.zip", "1.0.22": "https://downloads.wordpress.org/theme/neve.1.0.22.zip", "1.0.23": "https://downloads.wordpress.org/theme/neve.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/theme/neve.1.0.24.zip", "1.0.25": "https://downloads.wordpress.org/theme/neve.1.0.25.zip", "1.0.26": "https://downloads.wordpress.org/theme/neve.1.0.26.zip", "1.0.27": "https://downloads.wordpress.org/theme/neve.1.0.27.zip", "1.0.28": "https://downloads.wordpress.org/theme/neve.1.0.28.zip", "1.0.29": "https://downloads.wordpress.org/theme/neve.1.0.29.zip", "2.10.0": "https://downloads.wordpress.org/theme/neve.2.10.0.zip", "2.10.1": "https://downloads.wordpress.org/theme/neve.2.10.1.zip", "2.10.2": "https://downloads.wordpress.org/theme/neve.2.10.2.zip", "2.10.3": "https://downloads.wordpress.org/theme/neve.2.10.3.zip", "2.10.4": "https://downloads.wordpress.org/theme/neve.2.10.4.zip", "2.11.0": "https://downloads.wordpress.org/theme/neve.2.11.0.zip", "2.11.1": "https://downloads.wordpress.org/theme/neve.2.11.1.zip", "2.11.2": "https://downloads.wordpress.org/theme/neve.2.11.2.zip", "2.11.3": "https://downloads.wordpress.org/theme/neve.2.11.3.zip", "2.11.4": "https://downloads.wordpress.org/theme/neve.2.11.4.zip", "2.11.5": "https://downloads.wordpress.org/theme/neve.2.11.5.zip", "2.11.6": "https://downloads.wordpress.org/theme/neve.2.11.6.zip", "2.3.10": "https://downloads.wordpress.org/theme/neve.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/theme/neve.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/theme/neve.2.3.12.zip", "2.3.14": "https://downloads.wordpress.org/theme/neve.2.3.14.zip", "2.3.15": "https://downloads.wordpress.org/theme/neve.2.3.15.zip", "2.3.17": "https://downloads.wordpress.org/theme/neve.2.3.17.zip", "2.3.19": "https://downloads.wordpress.org/theme/neve.2.3.19.zip", "2.3.20": "https://downloads.wordpress.org/theme/neve.2.3.20.zip", "2.3.21": "https://downloads.wordpress.org/theme/neve.2.3.21.zip", "2.3.22": "https://downloads.wordpress.org/theme/neve.2.3.22.zip", "3.0.10": "https://downloads.wordpress.org/theme/neve.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/theme/neve.3.0.11.zip", "3.4.10": "https://downloads.wordpress.org/theme/neve.3.4.10.zip", "3.8.10": "https://downloads.wordpress.org/theme/neve.3.8.10.zip", "3.8.11": "https://downloads.wordpress.org/theme/neve.3.8.11.zip", "3.8.12": "https://downloads.wordpress.org/theme/neve.3.8.12.zip", "3.8.13": "https://downloads.wordpress.org/theme/neve.3.8.13.zip", "3.8.14": "https://downloads.wordpress.org/theme/neve.3.8.14.zip", "3.8.15": "https://downloads.wordpress.org/theme/neve.3.8.15.zip", "3.8.16": "https://downloads.wordpress.org/theme/neve.3.8.16.zip"}, "downloaded": 5723040, "num_ratings": 1260, "preview_url": "https://wp-themes.com/neve/", "reviews_url": "https://wordpress.org/support/theme/neve/reviews/", "is_community": false, "last_updated": "2025-09-10", "requires_php": "7.0", "creation_time": "2018-11-23 16:37:10", "download_link": "https://downloads.wordpress.org/theme/neve.4.1.4.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/neve/screenshot.png?ver=4.1.4", "active_installs": 200000, "aspiresync_meta": {"id": "019a30c0-0c4c-7371-b14a-90b8bd8abcc8", "name": "Neve", "slug": "neve", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1757462400, "version": "4.1.4"}, "last_updated_time": "2025-09-10 08:35:37", "external_support_url": "https://themeisle.com/contact/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b4d-70a9-9415-050b619fac2f', 'neve-fse', 'Neve FSE', '1.1.5', 'Neve FSE is an experimental sister theme of Neve, for the ones that are ready to go full speed on full site editing, without backwards compatibility code.Neve FSE is a modern, minimalistic theme that is fully compatible with full-site-editing, it offers a range of patterns that make it perfect for simple design is suitable for a wide range of purposes, including blogs, small businesses, startups, agencies, firms, e-commerce shops, personal portfolio sites, and more. It also comes with several style variations to suit your unique aesthetic.', '019a30c1-6ac1-7121-89c0-4a1bdc1c7842', 'https://downloads.wordpress.org/theme/neve-fse.1.1.5.zip', '5.5', '7.0', '2025-09-05 11:20:32+00', '2023-06-19 09:26:44+00', 'https://wp-themes.com/neve-fse/', '//ts.w.org/wp-content/themes/neve-fse/screenshot.png?ver=1.1.5', 94, 32, 'https://wordpress.org/support/theme/neve-fse/reviews/', 200237, 10000, 'https://wordpress.org/themes/neve-fse/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Neve FSE", "slug": "neve-fse", "tags": {"e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemeIsle", "avatar": "https://secure.gravatar.com/avatar/91e46225a693950a8f2350674124a8e3ceddb0f705fa988377646322729e3d7c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeisle/", "author_url": "https://themeisle.com", "display_name": "Themeisle", "user_nicename": "themeisle"}, "rating": 94, "status": "open", "ratings": {"1": 0, "2": 1, "3": 2, "4": 4, "5": 25}, "version": "1.1.5", "homepage": "https://wordpress.org/themes/neve-fse/", "requires": "5.5", "sections": {"description": "Neve FSE is an experimental sister theme of Neve, for the ones that are ready to go full speed on full site editing, without backwards compatibility code.Neve FSE is a modern, minimalistic theme that is fully compatible with full-site-editing, it offers a range of patterns that make it perfect for simple design is suitable for a wide range of purposes, including blogs, small businesses, startups, agencies, firms, e-commerce shops, personal portfolio sites, and more. It also comes with several style variations to suit your unique aesthetic."}, "versions": {"1.0.3": "https://downloads.wordpress.org/theme/neve-fse.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/neve-fse.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/neve-fse.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/neve-fse.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/neve-fse.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/neve-fse.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/neve-fse.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/neve-fse.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/neve-fse.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/neve-fse.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/neve-fse.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/neve-fse.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/neve-fse.1.1.5.zip", "1.0.10": "https://downloads.wordpress.org/theme/neve-fse.1.0.10.zip"}, "downloaded": 200237, "num_ratings": 32, "preview_url": "https://wp-themes.com/neve-fse/", "reviews_url": "https://wordpress.org/support/theme/neve-fse/reviews/", "is_community": false, "last_updated": "2025-09-05", "requires_php": "7.0", "creation_time": "2023-06-19 09:26:44", "download_link": "https://downloads.wordpress.org/theme/neve-fse.1.1.5.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/neve-fse/screenshot.png?ver=1.1.5", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-0c43-72e4-a7fc-a8f9a7298cb6", "name": "Neve FSE", "slug": "neve-fse", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1757030400, "version": "1.1.5"}, "last_updated_time": "2025-09-05 11:20:32", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d7c-7212-b4fc-59eeed28144f', 'vertice', 'Vertice', '1.0.76', 'Vertice is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Vertice is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', '019a30c1-69d2-7156-b9cf-ce8906962bef', 'https://downloads.wordpress.org/theme/vertice.1.0.76.zip', '5.8', '7.1', '2025-04-15 08:41:58+00', '2023-11-08 13:11:51+00', 'https://wp-themes.com/vertice/', '//ts.w.org/wp-content/themes/vertice/screenshot.jpg?ver=1.0.76', 0, 0, 'https://wordpress.org/support/theme/vertice/reviews/', 127673, 9000, 'https://wordpress.org/themes/vertice/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Vertice", "slug": "vertice", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.76", "homepage": "https://wordpress.org/themes/vertice/", "requires": "5.8", "sections": {"description": "Vertice is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Vertice is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.3": "https://downloads.wordpress.org/theme/vertice.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/vertice.1.0.4.zip", "1.0.7": "https://downloads.wordpress.org/theme/vertice.1.0.7.zip", "1.0.11": "https://downloads.wordpress.org/theme/vertice.1.0.11.zip", "1.0.20": "https://downloads.wordpress.org/theme/vertice.1.0.20.zip", "1.0.21": "https://downloads.wordpress.org/theme/vertice.1.0.21.zip", "1.0.25": "https://downloads.wordpress.org/theme/vertice.1.0.25.zip", "1.0.64": "https://downloads.wordpress.org/theme/vertice.1.0.64.zip", "1.0.69": "https://downloads.wordpress.org/theme/vertice.1.0.69.zip", "1.0.72": "https://downloads.wordpress.org/theme/vertice.1.0.72.zip", "1.0.73": "https://downloads.wordpress.org/theme/vertice.1.0.73.zip", "1.0.74": "https://downloads.wordpress.org/theme/vertice.1.0.74.zip", "1.0.76": "https://downloads.wordpress.org/theme/vertice.1.0.76.zip"}, "downloaded": 127673, "num_ratings": 0, "preview_url": "https://wp-themes.com/vertice/", "reviews_url": "https://wordpress.org/support/theme/vertice/reviews/", "is_community": false, "last_updated": "2025-04-15", "requires_php": "7.1", "creation_time": "2023-11-08 13:11:51", "download_link": "https://downloads.wordpress.org/theme/vertice.1.0.76.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/vertice/screenshot.jpg?ver=1.0.76", "active_installs": 9000, "aspiresync_meta": {"id": "019a30c0-1641-713e-936d-b63672112175", "name": "Vertice", "slug": "vertice", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1744675200, "version": "1.0.76"}, "last_updated_time": "2025-04-15 08:41:58", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b56-70f4-bf4f-530dbf7673ee', 'newsblogger', 'NewsBlogger', '0.2.5.8', 'NewsBlogger is a dynamic and versatile child theme for the popular NewCrunch WordPress theme. Perfect for bloggers, journalists, and online magazines, it offers enhanced customization options, improved performance, and seamless integration with both the Gutenberg and Classic editors. Compatible to various popular plugins such as Elementor, Contact Form 7, Polylang and WPML. Theme is RTL ready and prioritizes user privacy and complies with the General Data Protection Regulation (GDPR) guidelines by refraining from collecting any personal data restricted under GDPR. The theme is also schema-ready, enhancing search engine visibility and optimization. To explore the theme further, feel free to check out our demo at: https://demo-news.spicethemes.com/startersite-1/. For video tutorial visit here https://www.youtube.com/playlist?list=PLTfjrb24Pq_DeJOZdKEaP3rZPbHuOCLtZ', '019a30c1-6b55-7342-b8ba-d2487d92eae0', 'https://downloads.wordpress.org/theme/newsblogger.0.2.5.8.zip', '5.4', '5.6', '2025-10-09 11:57:10+00', '2024-07-02 11:26:47+00', 'https://wp-themes.com/newsblogger/', '//ts.w.org/wp-content/themes/newsblogger/screenshot.png?ver=0.2.5.8', 100, 9, 'https://wordpress.org/support/theme/newsblogger/reviews/', 136672, 10000, 'https://wordpress.org/themes/newsblogger/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "NewsBlogger", "slug": "newsblogger", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "photography": "Photography", "sticky-post": "Sticky post", "two-columns": "Two columns", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "spicethemes", "avatar": "https://secure.gravatar.com/avatar/ea9f81924f233a72e53a80c7d5ecc86d2ca8085df7998b63af5b7aa303a8e403?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/spicethemes/", "author_url": "https://spicethemes.com", "display_name": "spicethemes", "user_nicename": "spicethemes"}, "parent": {"name": "Newscrunch", "slug": "newscrunch", "homepage": "https://wordpress.org/themes/newscrunch/"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 9}, "version": "0.2.5.8", "homepage": "https://wordpress.org/themes/newsblogger/", "requires": "5.4", "sections": {"description": "NewsBlogger is a dynamic and versatile child theme for the popular NewCrunch WordPress theme. Perfect for bloggers, journalists, and online magazines, it offers enhanced customization options, improved performance, and seamless integration with both the Gutenberg and Classic editors. Compatible to various popular plugins such as Elementor, Contact Form 7, Polylang and WPML. Theme is RTL ready and prioritizes user privacy and complies with the General Data Protection Regulation (GDPR) guidelines by refraining from collecting any personal data restricted under GDPR. The theme is also schema-ready, enhancing search engine visibility and optimization. To explore the theme further, feel free to check out our demo at: https://demo-news.spicethemes.com/startersite-1/. For video tutorial visit here https://www.youtube.com/playlist?list=PLTfjrb24Pq_DeJOZdKEaP3rZPbHuOCLtZ"}, "template": "newscrunch", "versions": {"0.1": "https://downloads.wordpress.org/theme/newsblogger.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/newsblogger.0.2.zip", "0.1.1": "https://downloads.wordpress.org/theme/newsblogger.0.1.1.zip", "0.1.2": "https://downloads.wordpress.org/theme/newsblogger.0.1.2.zip", "0.1.3": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.zip", "0.1.4": "https://downloads.wordpress.org/theme/newsblogger.0.1.4.zip", "0.1.5": "https://downloads.wordpress.org/theme/newsblogger.0.1.5.zip", "0.1.6": "https://downloads.wordpress.org/theme/newsblogger.0.1.6.zip", "0.1.7": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.zip", "0.2.1": "https://downloads.wordpress.org/theme/newsblogger.0.2.1.zip", "0.2.2": "https://downloads.wordpress.org/theme/newsblogger.0.2.2.zip", "0.2.3": "https://downloads.wordpress.org/theme/newsblogger.0.2.3.zip", "0.2.4": "https://downloads.wordpress.org/theme/newsblogger.0.2.4.zip", "0.2.5": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.zip", "0.1.3.1": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.1.zip", "0.1.3.2": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.2.zip", "0.1.3.3": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.3.zip", "0.1.3.4": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.4.zip", "0.1.3.5": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.5.zip", "0.1.3.6": "https://downloads.wordpress.org/theme/newsblogger.0.1.3.6.zip", "0.1.7.1": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.1.zip", "0.1.7.2": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.2.zip", "0.1.7.3": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.3.zip", "0.1.7.4": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.4.zip", "0.1.7.5": "https://downloads.wordpress.org/theme/newsblogger.0.1.7.5.zip", "0.2.5.1": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.1.zip", "0.2.5.2": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.2.zip", "0.2.5.3": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.3.zip", "0.2.5.4": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.4.zip", "0.2.5.5": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.5.zip", "0.2.5.6": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.6.zip", "0.2.5.8": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.8.zip", "0.2.5.7.1": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.7.1.zip", "0.2.5.7.2": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.7.2.zip", "0.2.5.7.3": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.7.3.zip", "0.2.5.7.4": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.7.4.zip", "0.2.5.7.5": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.7.5.zip"}, "downloaded": 136672, "num_ratings": 9, "preview_url": "https://wp-themes.com/newsblogger/", "reviews_url": "https://wordpress.org/support/theme/newsblogger/reviews/", "is_community": false, "last_updated": "2025-10-09", "requires_php": "5.6", "creation_time": "2024-07-02 11:26:47", "download_link": "https://downloads.wordpress.org/theme/newsblogger.0.2.5.8.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/newsblogger/screenshot.png?ver=0.2.5.8", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-0cfa-70f6-b4c4-aafc199e23fa", "name": "NewsBlogger", "slug": "newsblogger", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1759968000, "version": "0.2.5.8"}, "last_updated_time": "2025-10-09 11:57:10", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b61-702f-bc56-63eda9da76af', 'newsday', 'NewsDay', '1.1.6', 'NewsDay is a mobile-first, visually striking WordPress child theme built on MoreNews for news sites, online magazines, entertainment blogs and lifestyle portals that prioritize visual storytelling and performance; it includes banner-ready templates and bold typography presets, flexible homepage and archive layouts, header & footer builder compatibility, and out-of-the-box support for Gutenberg, Elementor, Brizy, Beaver Builder, Visual Composer and Divi so editors can design editorial pages with drag-and-drop ease; NewsDay is built on clean, lightweight code, AMP-ready, SEO and Core Web Vitals optimized, GDPR and WCAG-friendly, and integrates with WooCommerce, Jetpack, Contact Form 7 and Yoast SEO for monetization and extended functionality; multilingual and RTL-ready demos include Spanish, French, German, Portuguese, Arabic, Japanese and more — pick NewsDay if you need a high-impact, mobile-optimized magazine/news theme tailored for lifestyle and entertainment verticals. https://afthemes.com/products/newsday/', '019a30c1-69dc-72b2-ba86-5892e5cd53f1', 'https://downloads.wordpress.org/theme/newsday.1.1.6.zip', '5.0', '5.0', '2025-10-25 07:43:00+00', '2025-07-25 12:01:06+00', 'https://wp-themes.com/newsday/', '//ts.w.org/wp-content/themes/newsday/screenshot.png?ver=1.1.6', 0, 0, 'https://wordpress.org/support/theme/newsday/reviews/', 5361, 1000, 'https://wordpress.org/themes/newsday/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "NewsDay", "slug": "newsday", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "AF themes", "avatar": "https://secure.gravatar.com/avatar/6840fee6f0abb67c899d7a7e34d50303ea8ab21678293a3b41f0268faaf8a05a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/afthemes/", "author_url": "https://afthemes.com/", "display_name": "AF themes", "user_nicename": "afthemes"}, "parent": {"name": "MoreNews", "slug": "morenews", "homepage": "https://wordpress.org/themes/morenews/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.1.6", "homepage": "https://wordpress.org/themes/newsday/", "requires": "5.0", "sections": {"description": "NewsDay is a mobile-first, visually striking WordPress child theme built on MoreNews for news sites, online magazines, entertainment blogs and lifestyle portals that prioritize visual storytelling and performance; it includes banner-ready templates and bold typography presets, flexible homepage and archive layouts, header & footer builder compatibility, and out-of-the-box support for Gutenberg, Elementor, Brizy, Beaver Builder, Visual Composer and Divi so editors can design editorial pages with drag-and-drop ease; NewsDay is built on clean, lightweight code, AMP-ready, SEO and Core Web Vitals optimized, GDPR and WCAG-friendly, and integrates with WooCommerce, Jetpack, Contact Form 7 and Yoast SEO for monetization and extended functionality; multilingual and RTL-ready demos include Spanish, French, German, Portuguese, Arabic, Japanese and more — pick NewsDay if you need a high-impact, mobile-optimized magazine/news theme tailored for lifestyle and entertainment verticals. https://afthemes.com/products/newsday/"}, "template": "morenews", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/newsday.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/newsday.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/newsday.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/newsday.1.0.3.zip", "1.1.0": "https://downloads.wordpress.org/theme/newsday.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/newsday.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/newsday.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/newsday.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/newsday.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/newsday.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/newsday.1.1.6.zip"}, "downloaded": 5361, "num_ratings": 0, "preview_url": "https://wp-themes.com/newsday/", "reviews_url": "https://wordpress.org/support/theme/newsday/reviews/", "is_community": false, "last_updated": "2025-10-25", "requires_php": "5.0", "creation_time": "2025-07-25 12:01:06", "download_link": "https://downloads.wordpress.org/theme/newsday.1.1.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/newsday/screenshot.png?ver=1.1.6", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-0da4-700f-9dbc-a9170daa01dd", "name": "NewsDay", "slug": "newsday", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1761350400, "version": "1.1.6"}, "last_updated_time": "2025-10-25 07:43:00", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b6f-73de-a5ce-dfcbc7b0b445', 'news-express', 'News Express', '1.0.4', 'News Express is a fast, modern, and SEO-friendly WordPress theme built for news portals, online magazines, and blogs. Featuring a stunning main banner and 4 flexible homepage block layouts, it lets you showcase stories with style. Fully compatible with WooCommerce, Gutenberg, and Elementor, this theme is lightweight, customizable, and perfect for growing your audience. You can check demos here which can be easily imported by the Mystery Themes Demo Importer plugin. Also, You can check Demo here: https://preview.mysterythemes.com/news-express-demos & Documentation here: https://docs.mysterythemes.com/news-express/', '019a30c1-6b6f-73de-a5ce-dfcbc799a6a1', 'https://downloads.wordpress.org/theme/news-express.1.0.4.zip', NULL, '7.2', '2025-10-29 06:24:24+00', '2025-09-21 15:15:59+00', 'https://wp-themes.com/news-express/', '//ts.w.org/wp-content/themes/news-express/screenshot.png?ver=1.0.4', 0, 0, 'https://wordpress.org/support/theme/news-express/reviews/', 1582, 300, 'https://wordpress.org/themes/news-express/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "News Express", "slug": "news-express", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Mystery Themes", "avatar": "https://secure.gravatar.com/avatar/0eb9afa7ead84576ea5e26b38ee170f1da5546a7949f55c90c09d2a44507a476?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/mysterythemes/", "author_url": "https://mysterythemes.com", "display_name": "Mystery Themes", "user_nicename": "mysterythemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.4", "homepage": "https://wordpress.org/themes/news-express/", "requires": false, "sections": {"description": "News Express is a fast, modern, and SEO-friendly WordPress theme built for news portals, online magazines, and blogs. Featuring a stunning main banner and 4 flexible homepage block layouts, it lets you showcase stories with style. Fully compatible with WooCommerce, Gutenberg, and Elementor, this theme is lightweight, customizable, and perfect for growing your audience. You can check demos here which can be easily imported by the Mystery Themes Demo Importer plugin. Also, You can check Demo here: https://preview.mysterythemes.com/news-express-demos & Documentation here: https://docs.mysterythemes.com/news-express/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/news-express.1.0.0.zip", "1.0.2": "https://downloads.wordpress.org/theme/news-express.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/news-express.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/news-express.1.0.4.zip"}, "downloaded": 1582, "num_ratings": 0, "preview_url": "https://wp-themes.com/news-express/", "reviews_url": "https://wordpress.org/support/theme/news-express/reviews/", "is_community": false, "last_updated": "2025-10-29", "requires_php": "7.2", "creation_time": "2025-09-21 15:15:59", "download_link": "https://downloads.wordpress.org/theme/news-express.1.0.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/news-express/screenshot.png?ver=1.0.4", "active_installs": 300, "aspiresync_meta": {"id": "019a30c0-0c3d-736a-94d4-39d87905afd9", "name": "News Express", "slug": "news-express", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1761696000, "version": "1.0.4"}, "last_updated_time": "2025-10-29 06:24:24", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b7b-717d-b489-619ffd7178f7', 'newsgame', 'NewsGame', '1.0.5', 'NewsGame is a fast, modern, and highly versatile WordPress child theme of the powerful MoreNews parent, perfect for gaming blogs, eSports magazines, tech news portals, and content-driven websites, featuring a fully drag-and-drop HEADER & FOOTER BUILDER compatible with Gutenberg, Elementor, Brizy, Divi, and other popular page builders for complete layout freedom without coding; it comes with 30+ custom widgets, dynamic block patterns, flexible banner and homepage layouts, light/dark modes, and WooCommerce integration, making it easy to launch anything from a personal blog to a professional online store or news hub; fully optimized for SEO, Core Web Vitals, speed, and responsive design, built with WCAG accessibility, GDPR compliance, and clean, lightweight code for long-term reliability; multilingual and RTL ready with demo content in English, Chinese, Spanish, French, Japanese, and Arabic, NewsGame delivers a professional, engaging, and future-proof platform for gaming and tech content creators. https://afthemes.com/products/newsgame/', '019a30c1-69dc-72b2-ba86-5892e5cd53f1', 'https://downloads.wordpress.org/theme/newsgame.1.0.5.zip', '5.0', '5.0', '2025-10-25 07:42:33+00', '2025-09-09 00:01:10+00', 'https://wp-themes.com/newsgame/', '//ts.w.org/wp-content/themes/newsgame/screenshot.png?ver=1.0.5', 0, 0, 'https://wordpress.org/support/theme/newsgame/reviews/', 3158, 700, 'https://wordpress.org/themes/newsgame/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "NewsGame", "slug": "newsgame", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "AF themes", "avatar": "https://secure.gravatar.com/avatar/6840fee6f0abb67c899d7a7e34d50303ea8ab21678293a3b41f0268faaf8a05a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/afthemes/", "author_url": "https://afthemes.com/", "display_name": "AF themes", "user_nicename": "afthemes"}, "parent": {"name": "MoreNews", "slug": "morenews", "homepage": "https://wordpress.org/themes/morenews/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.5", "homepage": "https://wordpress.org/themes/newsgame/", "requires": "5.0", "sections": {"description": "NewsGame is a fast, modern, and highly versatile WordPress child theme of the powerful MoreNews parent, perfect for gaming blogs, eSports magazines, tech news portals, and content-driven websites, featuring a fully drag-and-drop HEADER & FOOTER BUILDER compatible with Gutenberg, Elementor, Brizy, Divi, and other popular page builders for complete layout freedom without coding; it comes with 30+ custom widgets, dynamic block patterns, flexible banner and homepage layouts, light/dark modes, and WooCommerce integration, making it easy to launch anything from a personal blog to a professional online store or news hub; fully optimized for SEO, Core Web Vitals, speed, and responsive design, built with WCAG accessibility, GDPR compliance, and clean, lightweight code for long-term reliability; multilingual and RTL ready with demo content in English, Chinese, Spanish, French, Japanese, and Arabic, NewsGame delivers a professional, engaging, and future-proof platform for gaming and tech content creators. https://afthemes.com/products/newsgame/"}, "template": "morenews", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/newsgame.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/newsgame.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/newsgame.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/newsgame.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/newsgame.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/newsgame.1.0.5.zip"}, "downloaded": 3158, "num_ratings": 0, "preview_url": "https://wp-themes.com/newsgame/", "reviews_url": "https://wordpress.org/support/theme/newsgame/reviews/", "is_community": false, "last_updated": "2025-10-25", "requires_php": "5.0", "creation_time": "2025-09-09 00:01:10", "download_link": "https://downloads.wordpress.org/theme/newsgame.1.0.5.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/newsgame/screenshot.png?ver=1.0.5", "active_installs": 700, "aspiresync_meta": {"id": "019a30c0-0e02-706f-9b3f-c380ce3bd3b3", "name": "NewsGame", "slug": "newsgame", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1761350400, "version": "1.0.5"}, "last_updated_time": "2025-10-25 07:42:33", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b8c-70ec-a189-fd41645b79fb', 'news-magazine-x', 'News Magazine X', '1.2.45', 'Easy to use Personal and Multi-Author Free WordPress Blog Magazine Theme - Suitable for WordPress Beginners and for Professionals as Well. Perfect for bloggers, journalists, and online magazines, news, blogs, and magazine websites. The theme has built in Magazine Grid Widget, Classic Post Grid Widget, Featured Tabs widget, Featured Post Widget, Subscription (newsletter) Widget, Category List widget and many other widgets. You can place your ads anywhere on the website, including the header, footer, various homepage sections, and other pages as well. The theme also offers a Header Footer builder with a Menu Widget, Logo Widget, News Ticker Widget, Social Icons Widget, Search Widget, Dark Mode Switcher Widget, Weather Widget (PRO), Random Post Widget, Offcanvas Widget (side menu) Widget, Header Image and another widget to build eye catching headers and footers. Clean and Modern Responsive design will perfectly showcase your content on any device, even on tablet, mobile & retina displays. Very fast, Search engine optimized fast loading speed, and SEO optimization, compatibility with many popular plugins & of course translation ready, coded with best SEO practices. Complies with the General Data Protection Regulation (GDPR) guidelines by refraining from collecting any personal data restricted under GDPR. Works perfectly with all major drag-and-drop page builders like Elementor, Gutenberg, Brizy, Beaver Builder, Visual Composer, SiteOrigin, Divi. You just need to write and be awesome! TEMPLATE DEMO: https://news-magazine-x-free.wp-royal-themes.com/demo/', '019a30c1-66ba-7148-a405-f3d5ab06eee1', 'https://downloads.wordpress.org/theme/news-magazine-x.1.2.45.zip', '4.7', '7.4', '2025-10-17 06:08:20+00', '2025-03-11 00:26:54+00', 'https://wp-themes.com/news-magazine-x/', '//ts.w.org/wp-content/themes/news-magazine-x/screenshot.jpg?ver=1.2.45', 100, 14, 'https://wordpress.org/support/theme/news-magazine-x/reviews/', 47365, 6000, 'https://wordpress.org/themes/news-magazine-x/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "News Magazine X", "slug": "news-magazine-x", "tags": {"blog": "Blog", "news": "News", "e-commerce": "E-commerce", "one-column": "One column", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "block-styles": "Block editor styles", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support"}, "author": {"author": "WP Royal Themes", "avatar": "https://secure.gravatar.com/avatar/078c5c148dcfcc4983cb3fce756683ce03d7aebb69f1fb9e8ea08232e4b01fea?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wproyal/", "author_url": "https://wp-royal-themes.com/#ultimate-heading-229367ca4dce90c11", "display_name": "WP Royal", "user_nicename": "wproyal"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 14}, "version": "1.2.45", "homepage": "https://wordpress.org/themes/news-magazine-x/", "requires": "4.7", "sections": {"description": "Easy to use Personal and Multi-Author Free WordPress Blog Magazine Theme - Suitable for WordPress Beginners and for Professionals as Well. Perfect for bloggers, journalists, and online magazines, news, blogs, and magazine websites. The theme has built in Magazine Grid Widget, Classic Post Grid Widget, Featured Tabs widget, Featured Post Widget, Subscription (newsletter) Widget, Category List widget and many other widgets. You can place your ads anywhere on the website, including the header, footer, various homepage sections, and other pages as well. The theme also offers a Header Footer builder with a Menu Widget, Logo Widget, News Ticker Widget, Social Icons Widget, Search Widget, Dark Mode Switcher Widget, Weather Widget (PRO), Random Post Widget, Offcanvas Widget (side menu) Widget, Header Image and another widget to build eye catching headers and footers. Clean and Modern Responsive design will perfectly showcase your content on any device, even on tablet, mobile & retina displays. Very fast, Search engine optimized fast loading speed, and SEO optimization, compatibility with many popular plugins & of course translation ready, coded with best SEO practices. Complies with the General Data Protection Regulation (GDPR) guidelines by refraining from collecting any personal data restricted under GDPR. Works perfectly with all major drag-and-drop page builders like Elementor, Gutenberg, Brizy, Beaver Builder, Visual Composer, SiteOrigin, Divi. You just need to write and be awesome! TEMPLATE DEMO: https://news-magazine-x-free.wp-royal-themes.com/demo/"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/news-magazine-x.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/news-magazine-x.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.2.zip", "1.2.31": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.31.zip", "1.2.32": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.32.zip", "1.2.33": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.33.zip", "1.2.34": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.34.zip", "1.2.35": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.35.zip", "1.2.36": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.36.zip", "1.2.37": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.37.zip", "1.2.38": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.38.zip", "1.2.39": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.39.zip", "1.2.40": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.40.zip", "1.2.41": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.41.zip", "1.2.44": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.44.zip", "1.2.45": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.45.zip"}, "downloaded": 47365, "num_ratings": 14, "preview_url": "https://wp-themes.com/news-magazine-x/", "reviews_url": "https://wordpress.org/support/theme/news-magazine-x/reviews/", "is_community": false, "last_updated": "2025-10-17", "requires_php": "7.4", "creation_time": "2025-03-11 00:26:54", "download_link": "https://downloads.wordpress.org/theme/news-magazine-x.1.2.45.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/news-magazine-x/screenshot.jpg?ver=1.2.45", "active_installs": 6000, "aspiresync_meta": {"id": "019a30c0-0c47-716d-ba8d-283282bfd166", "name": "News Magazine X", "slug": "news-magazine-x", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1760659200, "version": "1.2.45"}, "last_updated_time": "2025-10-17 06:08:20", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6b99-7325-ae95-0cff5a76c2e2', 'newsmatic', 'Newsmatic', '1.3.18', 'Newsmatic is complete solution for your news website with full Elementor compatibility. By integrating the News Kit Elementor Addons plugin on your site, you can now customize any part of the theme with the Elementor page builder. It is fast, features rich, customizer-based, and multipurpose free news theme. It is multilingual compatibility, gutenberg compatibility, elementor compatibility and can be integrated easily with newsletter/form plugins. This theme is schema ready, which makes it a favourite for search engines. Newsmatic Theme does not collect any kind of personal data restricted under GDPR, so you can sleep without any worry by using our theme on your website. Developed by dedicated developers, it has user friendly and easy to use advanced control fields like select2, react color picker, image selector, typography field and many more inside the theme. Check out our pre-build demos here: https://blazethemes.com/theme/newsmatic-free. Check out news elementor addons: https://wordpress.org/plugins/news-kit-elementor-addons/', '019a30c1-6b98-7191-8bcc-4c55f2b5e851', 'https://downloads.wordpress.org/theme/newsmatic.1.3.18.zip', NULL, '5.6', '2025-10-10 05:31:53+00', '2023-01-13 13:41:57+00', 'https://wp-themes.com/newsmatic/', '//ts.w.org/wp-content/themes/newsmatic/screenshot.png?ver=1.3.18', 94, 77, 'https://wordpress.org/support/theme/newsmatic/reviews/', 302392, 10000, 'https://wordpress.org/themes/newsmatic/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Newsmatic", "slug": "newsmatic", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "BlazeThemes", "avatar": "https://secure.gravatar.com/avatar/3cd0b0193fc2f153a2da7adcd27873f64ce4cd96684bdba272133e1feccadd52?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/blazethemes/", "author_url": "https://blazethemes.com/", "display_name": "blazethemes", "user_nicename": "blazethemes"}, "rating": 94, "status": "open", "ratings": {"1": 3, "2": 0, "3": 2, "4": 4, "5": 68}, "version": "1.3.18", "homepage": "https://wordpress.org/themes/newsmatic/", "requires": false, "sections": {"description": "Newsmatic is complete solution for your news website with full Elementor compatibility. By integrating the News Kit Elementor Addons plugin on your site, you can now customize any part of the theme with the Elementor page builder. It is fast, features rich, customizer-based, and multipurpose free news theme. It is multilingual compatibility, gutenberg compatibility, elementor compatibility and can be integrated easily with newsletter/form plugins. This theme is schema ready, which makes it a favourite for search engines. Newsmatic Theme does not collect any kind of personal data restricted under GDPR, so you can sleep without any worry by using our theme on your website. Developed by dedicated developers, it has user friendly and easy to use advanced control fields like select2, react color picker, image selector, typography field and many more inside the theme. Check out our pre-build demos here: https://blazethemes.com/theme/newsmatic-free. Check out news elementor addons: https://wordpress.org/plugins/news-kit-elementor-addons/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/newsmatic.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/newsmatic.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/newsmatic.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/newsmatic.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/newsmatic.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/newsmatic.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/newsmatic.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/newsmatic.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/newsmatic.1.0.8.zip", "1.2.0": "https://downloads.wordpress.org/theme/newsmatic.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/newsmatic.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/newsmatic.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/newsmatic.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/newsmatic.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/newsmatic.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/newsmatic.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/newsmatic.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/newsmatic.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/newsmatic.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/newsmatic.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/newsmatic.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/newsmatic.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/newsmatic.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/newsmatic.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/newsmatic.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/newsmatic.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/newsmatic.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/newsmatic.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/newsmatic.1.3.9.zip", "1.2.10": "https://downloads.wordpress.org/theme/newsmatic.1.2.10.zip", "1.2.11": "https://downloads.wordpress.org/theme/newsmatic.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/theme/newsmatic.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/theme/newsmatic.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/theme/newsmatic.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/theme/newsmatic.1.2.15.zip", "1.2.16": "https://downloads.wordpress.org/theme/newsmatic.1.2.16.zip", "1.2.17": "https://downloads.wordpress.org/theme/newsmatic.1.2.17.zip", "1.2.18": "https://downloads.wordpress.org/theme/newsmatic.1.2.18.zip", "1.2.19": "https://downloads.wordpress.org/theme/newsmatic.1.2.19.zip", "1.3.10": "https://downloads.wordpress.org/theme/newsmatic.1.3.10.zip", "1.3.11": "https://downloads.wordpress.org/theme/newsmatic.1.3.11.zip", "1.3.12": "https://downloads.wordpress.org/theme/newsmatic.1.3.12.zip", "1.3.13": "https://downloads.wordpress.org/theme/newsmatic.1.3.13.zip", "1.3.14": "https://downloads.wordpress.org/theme/newsmatic.1.3.14.zip", "1.3.15": "https://downloads.wordpress.org/theme/newsmatic.1.3.15.zip", "1.3.16": "https://downloads.wordpress.org/theme/newsmatic.1.3.16.zip", "1.3.17": "https://downloads.wordpress.org/theme/newsmatic.1.3.17.zip", "1.3.18": "https://downloads.wordpress.org/theme/newsmatic.1.3.18.zip"}, "downloaded": 302392, "num_ratings": 77, "preview_url": "https://wp-themes.com/newsmatic/", "reviews_url": "https://wordpress.org/support/theme/newsmatic/reviews/", "is_community": false, "last_updated": "2025-10-10", "requires_php": "5.6", "creation_time": "2023-01-13 13:41:57", "download_link": "https://downloads.wordpress.org/theme/newsmatic.1.3.18.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/newsmatic/screenshot.png?ver=1.3.18", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-0df4-7012-95b2-e3ae42bda001", "name": "Newsmatic", "slug": "newsmatic", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1760054400, "version": "1.3.18"}, "last_updated_time": "2025-10-10 05:31:53", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6ba5-712c-9a89-fe8e378c7271', 'news-rift', 'News Rift', '0.5', 'News Rift is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. News Rift is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. News Rift is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://newsup.themeansar.com/newsrift/ and documentation at https://docs.themeansar.com/docs/newsup/', '019a30c1-6978-7136-bde3-dea4a4e47c02', 'https://downloads.wordpress.org/theme/news-rift.0.5.zip', NULL, '7.4', '2025-09-26 02:43:11+00', '2025-09-25 14:46:02+00', 'https://wp-themes.com/news-rift/', '//ts.w.org/wp-content/themes/news-rift/screenshot.jpg?ver=0.5', 0, 0, 'https://wordpress.org/support/theme/news-rift/reviews/', 2098, 400, 'https://wordpress.org/themes/news-rift/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "News Rift", "slug": "news-rift", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "parent": {"name": "Newsup", "slug": "newsup", "homepage": "https://wordpress.org/themes/newsup/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "0.5", "homepage": "https://wordpress.org/themes/news-rift/", "requires": false, "sections": {"description": "News Rift is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. News Rift is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. News Rift is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://newsup.themeansar.com/newsrift/ and documentation at https://docs.themeansar.com/docs/newsup/"}, "template": "newsup", "versions": {"0.1": "https://downloads.wordpress.org/theme/news-rift.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/news-rift.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/news-rift.0.3.zip", "0.4": "https://downloads.wordpress.org/theme/news-rift.0.4.zip", "0.5": "https://downloads.wordpress.org/theme/news-rift.0.5.zip"}, "downloaded": 2098, "num_ratings": 0, "preview_url": "https://wp-themes.com/news-rift/", "reviews_url": "https://wordpress.org/support/theme/news-rift/reviews/", "is_community": false, "last_updated": "2025-09-26", "requires_php": "7.4", "creation_time": "2025-09-25 14:46:02", "download_link": "https://downloads.wordpress.org/theme/news-rift.0.5.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/news-rift/screenshot.jpg?ver=0.5", "active_installs": 400, "aspiresync_meta": {"id": "019a30c0-0c4a-72bb-8d5d-912b76b07b7c", "name": "News Rift", "slug": "news-rift", "type": "theme", "origin": "wp_org", "pulled": 1761754483, "status": "open", "checked": 1761754483, "updated": 1758844800, "version": "0.5"}, "last_updated_time": "2025-09-26 02:43:11", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6bb2-7301-8ba8-73211a41301c', 'newsup', 'Newsup', '5.1.3', 'Newsup is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Newsup is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Newsup is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demo.themeansar.com/newsup and documentation at https://docs.themeansar.com/docs/newsup/', '019a30c1-6978-7136-bde3-dea4a4e47c02', 'https://downloads.wordpress.org/theme/newsup.5.1.3.zip', '6.7', '7.4', '2025-10-28 04:20:06+00', '2020-03-01 06:23:21+00', 'https://wp-themes.com/newsup/', '//ts.w.org/wp-content/themes/newsup/screenshot.jpg?ver=5.1.3', 96, 182, 'https://wordpress.org/support/theme/newsup/reviews/', 2637938, 20000, 'https://wordpress.org/themes/newsup/', true, 'https://themeansar.com/support/', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Newsup", "slug": "newsup", "tags": {"blog": "Blog", "news": "News", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "rating": 96, "status": "open", "ratings": {"1": 3, "2": 2, "3": 2, "4": 8, "5": 167}, "version": "5.1.3", "homepage": "https://wordpress.org/themes/newsup/", "requires": "6.7", "sections": {"description": "Newsup is a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Newsup is suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Newsup is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://demo.themeansar.com/newsup and documentation at https://docs.themeansar.com/docs/newsup/"}, "versions": {"0.1": "https://downloads.wordpress.org/theme/newsup.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/newsup.0.2.zip", "0.3": "https://downloads.wordpress.org/theme/newsup.0.3.zip", "0.4": "https://downloads.wordpress.org/theme/newsup.0.4.zip", "0.5": "https://downloads.wordpress.org/theme/newsup.0.5.zip", "0.6": "https://downloads.wordpress.org/theme/newsup.0.6.zip", "0.7": "https://downloads.wordpress.org/theme/newsup.0.7.zip", "0.8": "https://downloads.wordpress.org/theme/newsup.0.8.zip", "0.9": "https://downloads.wordpress.org/theme/newsup.0.9.zip", "1.0": "https://downloads.wordpress.org/theme/newsup.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/newsup.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/newsup.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/newsup.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/newsup.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/newsup.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/newsup.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/newsup.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/newsup.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/newsup.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/newsup.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/newsup.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/newsup.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/newsup.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/newsup.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/newsup.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/newsup.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/newsup.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/newsup.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/newsup.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/newsup.3.0.zip", "2.9.1": "https://downloads.wordpress.org/theme/newsup.2.9.1.zip", "2.9.2": "https://downloads.wordpress.org/theme/newsup.2.9.2.zip", "2.9.3": "https://downloads.wordpress.org/theme/newsup.2.9.3.zip", "2.9.4": "https://downloads.wordpress.org/theme/newsup.2.9.4.zip", "2.9.5": "https://downloads.wordpress.org/theme/newsup.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/theme/newsup.2.9.6.zip", "2.9.7": "https://downloads.wordpress.org/theme/newsup.2.9.7.zip", "2.9.8": "https://downloads.wordpress.org/theme/newsup.2.9.8.zip", "2.9.9": "https://downloads.wordpress.org/theme/newsup.2.9.9.zip", "5.0.0": "https://downloads.wordpress.org/theme/newsup.5.0.0.zip", "5.0.1": "https://downloads.wordpress.org/theme/newsup.5.0.1.zip", "5.0.2": "https://downloads.wordpress.org/theme/newsup.5.0.2.zip", "5.0.3": "https://downloads.wordpress.org/theme/newsup.5.0.3.zip", "5.0.4": "https://downloads.wordpress.org/theme/newsup.5.0.4.zip", "5.0.5": "https://downloads.wordpress.org/theme/newsup.5.0.5.zip", "5.0.6": "https://downloads.wordpress.org/theme/newsup.5.0.6.zip", "5.0.7": "https://downloads.wordpress.org/theme/newsup.5.0.7.zip", "5.0.8": "https://downloads.wordpress.org/theme/newsup.5.0.8.zip", "5.1.0": "https://downloads.wordpress.org/theme/newsup.5.1.0.zip", "5.1.1": "https://downloads.wordpress.org/theme/newsup.5.1.1.zip", "5.1.2": "https://downloads.wordpress.org/theme/newsup.5.1.2.zip", "5.1.3": "https://downloads.wordpress.org/theme/newsup.5.1.3.zip", "5.0.10": "https://downloads.wordpress.org/theme/newsup.5.0.10.zip", "5.0.11": "https://downloads.wordpress.org/theme/newsup.5.0.11.zip", "2.9.9.1": "https://downloads.wordpress.org/theme/newsup.2.9.9.1.zip", "2.9.9.2": "https://downloads.wordpress.org/theme/newsup.2.9.9.2.zip", "2.9.9.3": "https://downloads.wordpress.org/theme/newsup.2.9.9.3.zip", "2.9.9.4": "https://downloads.wordpress.org/theme/newsup.2.9.9.4.zip", "2.9.9.5": "https://downloads.wordpress.org/theme/newsup.2.9.9.5.zip", "2.9.9.6": "https://downloads.wordpress.org/theme/newsup.2.9.9.6.zip", "2.9.9.7": "https://downloads.wordpress.org/theme/newsup.2.9.9.7.zip", "2.9.9.8": "https://downloads.wordpress.org/theme/newsup.2.9.9.8.zip", "2.9.9.9": "https://downloads.wordpress.org/theme/newsup.2.9.9.9.zip", "3.0.0.1": "https://downloads.wordpress.org/theme/newsup.3.0.0.1.zip", "3.0.0.2": "https://downloads.wordpress.org/theme/newsup.3.0.0.2.zip", "3.0.0.3": "https://downloads.wordpress.org/theme/newsup.3.0.0.3.zip", "3.0.0.4": "https://downloads.wordpress.org/theme/newsup.3.0.0.4.zip", "3.0.0.5": "https://downloads.wordpress.org/theme/newsup.3.0.0.5.zip", "3.0.0.6": "https://downloads.wordpress.org/theme/newsup.3.0.0.6.zip", "3.0.0.7": "https://downloads.wordpress.org/theme/newsup.3.0.0.7.zip", "3.0.0.8": "https://downloads.wordpress.org/theme/newsup.3.0.0.8.zip", "3.0.0.9": "https://downloads.wordpress.org/theme/newsup.3.0.0.9.zip", "4.0.0.0": "https://downloads.wordpress.org/theme/newsup.4.0.0.0.zip", "4.0.0.1": "https://downloads.wordpress.org/theme/newsup.4.0.0.1.zip", "4.0.0.2": "https://downloads.wordpress.org/theme/newsup.4.0.0.2.zip", "4.0.0.3": "https://downloads.wordpress.org/theme/newsup.4.0.0.3.zip", "4.0.0.4": "https://downloads.wordpress.org/theme/newsup.4.0.0.4.zip", "4.0.0.5": "https://downloads.wordpress.org/theme/newsup.4.0.0.5.zip", "4.0.0.6": "https://downloads.wordpress.org/theme/newsup.4.0.0.6.zip", "4.0.0.7": "https://downloads.wordpress.org/theme/newsup.4.0.0.7.zip", "4.0.0.8": "https://downloads.wordpress.org/theme/newsup.4.0.0.8.zip", "4.0.0.9": "https://downloads.wordpress.org/theme/newsup.4.0.0.9.zip", "2.9.9.10": "https://downloads.wordpress.org/theme/newsup.2.9.9.10.zip", "2.9.9.11": "https://downloads.wordpress.org/theme/newsup.2.9.9.11.zip", "2.9.9.12": "https://downloads.wordpress.org/theme/newsup.2.9.9.12.zip", "2.9.9.13": "https://downloads.wordpress.org/theme/newsup.2.9.9.13.zip", "2.9.9.14": "https://downloads.wordpress.org/theme/newsup.2.9.9.14.zip", "2.9.9.15": "https://downloads.wordpress.org/theme/newsup.2.9.9.15.zip", "2.9.9.16": "https://downloads.wordpress.org/theme/newsup.2.9.9.16.zip", "2.9.9.17": "https://downloads.wordpress.org/theme/newsup.2.9.9.17.zip", "2.9.9.18": "https://downloads.wordpress.org/theme/newsup.2.9.9.18.zip", "2.9.9.19": "https://downloads.wordpress.org/theme/newsup.2.9.9.19.zip", "2.9.9.20": "https://downloads.wordpress.org/theme/newsup.2.9.9.20.zip", "2.9.9.21": "https://downloads.wordpress.org/theme/newsup.2.9.9.21.zip", "2.9.9.22": "https://downloads.wordpress.org/theme/newsup.2.9.9.22.zip", "2.9.9.23": "https://downloads.wordpress.org/theme/newsup.2.9.9.23.zip", "2.9.9.24": "https://downloads.wordpress.org/theme/newsup.2.9.9.24.zip", "2.9.9.25": "https://downloads.wordpress.org/theme/newsup.2.9.9.25.zip", "2.9.9.26": "https://downloads.wordpress.org/theme/newsup.2.9.9.26.zip", "2.9.9.27": "https://downloads.wordpress.org/theme/newsup.2.9.9.27.zip", "2.9.9.28": "https://downloads.wordpress.org/theme/newsup.2.9.9.28.zip", "2.9.9.29": "https://downloads.wordpress.org/theme/newsup.2.9.9.29.zip", "2.9.9.30": "https://downloads.wordpress.org/theme/newsup.2.9.9.30.zip", "2.9.9.31": "https://downloads.wordpress.org/theme/newsup.2.9.9.31.zip", "2.9.9.32": "https://downloads.wordpress.org/theme/newsup.2.9.9.32.zip", "2.9.9.33": "https://downloads.wordpress.org/theme/newsup.2.9.9.33.zip", "2.9.9.34": "https://downloads.wordpress.org/theme/newsup.2.9.9.34.zip", "2.9.9.35": "https://downloads.wordpress.org/theme/newsup.2.9.9.35.zip", "2.9.9.36": "https://downloads.wordpress.org/theme/newsup.2.9.9.36.zip", "2.9.9.37": "https://downloads.wordpress.org/theme/newsup.2.9.9.37.zip", "2.9.9.38": "https://downloads.wordpress.org/theme/newsup.2.9.9.38.zip", "2.9.9.39": "https://downloads.wordpress.org/theme/newsup.2.9.9.39.zip", "2.9.9.40": "https://downloads.wordpress.org/theme/newsup.2.9.9.40.zip", "2.9.9.41": "https://downloads.wordpress.org/theme/newsup.2.9.9.41.zip", "2.9.9.42": "https://downloads.wordpress.org/theme/newsup.2.9.9.42.zip", "2.9.9.43": "https://downloads.wordpress.org/theme/newsup.2.9.9.43.zip", "2.9.9.44": "https://downloads.wordpress.org/theme/newsup.2.9.9.44.zip", "2.9.9.45": "https://downloads.wordpress.org/theme/newsup.2.9.9.45.zip", "2.9.9.46": "https://downloads.wordpress.org/theme/newsup.2.9.9.46.zip", "2.9.9.47": "https://downloads.wordpress.org/theme/newsup.2.9.9.47.zip", "2.9.9.48": "https://downloads.wordpress.org/theme/newsup.2.9.9.48.zip", "2.9.9.49": "https://downloads.wordpress.org/theme/newsup.2.9.9.49.zip", "2.9.9.50": "https://downloads.wordpress.org/theme/newsup.2.9.9.50.zip", "2.9.9.51": "https://downloads.wordpress.org/theme/newsup.2.9.9.51.zip", "2.9.9.52": "https://downloads.wordpress.org/theme/newsup.2.9.9.52.zip", "2.9.9.53": "https://downloads.wordpress.org/theme/newsup.2.9.9.53.zip", "2.9.9.54": "https://downloads.wordpress.org/theme/newsup.2.9.9.54.zip", "2.9.9.55": "https://downloads.wordpress.org/theme/newsup.2.9.9.55.zip", "2.9.9.56": "https://downloads.wordpress.org/theme/newsup.2.9.9.56.zip", "2.9.9.57": "https://downloads.wordpress.org/theme/newsup.2.9.9.57.zip", "2.9.9.58": "https://downloads.wordpress.org/theme/newsup.2.9.9.58.zip", "2.9.9.59": "https://downloads.wordpress.org/theme/newsup.2.9.9.59.zip", "2.9.9.60": "https://downloads.wordpress.org/theme/newsup.2.9.9.60.zip", "2.9.9.61": "https://downloads.wordpress.org/theme/newsup.2.9.9.61.zip", "2.9.9.62": "https://downloads.wordpress.org/theme/newsup.2.9.9.62.zip", "2.9.9.63": "https://downloads.wordpress.org/theme/newsup.2.9.9.63.zip", "2.9.9.64": "https://downloads.wordpress.org/theme/newsup.2.9.9.64.zip", "2.9.9.65": "https://downloads.wordpress.org/theme/newsup.2.9.9.65.zip", "2.9.9.66": "https://downloads.wordpress.org/theme/newsup.2.9.9.66.zip", "2.9.9.67": "https://downloads.wordpress.org/theme/newsup.2.9.9.67.zip", "2.9.9.68": "https://downloads.wordpress.org/theme/newsup.2.9.9.68.zip", "2.9.9.69": "https://downloads.wordpress.org/theme/newsup.2.9.9.69.zip", "2.9.9.70": "https://downloads.wordpress.org/theme/newsup.2.9.9.70.zip", "2.9.9.71": "https://downloads.wordpress.org/theme/newsup.2.9.9.71.zip", "2.9.9.72": "https://downloads.wordpress.org/theme/newsup.2.9.9.72.zip", "2.9.9.73": "https://downloads.wordpress.org/theme/newsup.2.9.9.73.zip", "2.9.9.74": "https://downloads.wordpress.org/theme/newsup.2.9.9.74.zip", "2.9.9.75": "https://downloads.wordpress.org/theme/newsup.2.9.9.75.zip", "2.9.9.76": "https://downloads.wordpress.org/theme/newsup.2.9.9.76.zip", "2.9.9.77": "https://downloads.wordpress.org/theme/newsup.2.9.9.77.zip", "2.9.9.78": "https://downloads.wordpress.org/theme/newsup.2.9.9.78.zip", "2.9.9.79": "https://downloads.wordpress.org/theme/newsup.2.9.9.79.zip", "2.9.9.80": "https://downloads.wordpress.org/theme/newsup.2.9.9.80.zip", "2.9.9.81": "https://downloads.wordpress.org/theme/newsup.2.9.9.81.zip", "2.9.9.82": "https://downloads.wordpress.org/theme/newsup.2.9.9.82.zip", "2.9.9.83": "https://downloads.wordpress.org/theme/newsup.2.9.9.83.zip", "2.9.9.84": "https://downloads.wordpress.org/theme/newsup.2.9.9.84.zip", "2.9.9.85": "https://downloads.wordpress.org/theme/newsup.2.9.9.85.zip", "2.9.9.86": "https://downloads.wordpress.org/theme/newsup.2.9.9.86.zip", "2.9.9.87": "https://downloads.wordpress.org/theme/newsup.2.9.9.87.zip", "2.9.9.88": "https://downloads.wordpress.org/theme/newsup.2.9.9.88.zip", "2.9.9.89": "https://downloads.wordpress.org/theme/newsup.2.9.9.89.zip", "2.9.9.90": "https://downloads.wordpress.org/theme/newsup.2.9.9.90.zip", "2.9.9.91": "https://downloads.wordpress.org/theme/newsup.2.9.9.91.zip", "2.9.9.92": "https://downloads.wordpress.org/theme/newsup.2.9.9.92.zip", "2.9.9.93": "https://downloads.wordpress.org/theme/newsup.2.9.9.93.zip", "2.9.9.94": "https://downloads.wordpress.org/theme/newsup.2.9.9.94.zip", "2.9.9.95": "https://downloads.wordpress.org/theme/newsup.2.9.9.95.zip", "2.9.9.96": "https://downloads.wordpress.org/theme/newsup.2.9.9.96.zip", "2.9.9.97": "https://downloads.wordpress.org/theme/newsup.2.9.9.97.zip", "2.9.9.98": "https://downloads.wordpress.org/theme/newsup.2.9.9.98.zip", "2.9.9.99": "https://downloads.wordpress.org/theme/newsup.2.9.9.99.zip", "3.0.0.10": "https://downloads.wordpress.org/theme/newsup.3.0.0.10.zip", "3.0.0.11": "https://downloads.wordpress.org/theme/newsup.3.0.0.11.zip", "3.0.0.12": "https://downloads.wordpress.org/theme/newsup.3.0.0.12.zip", "3.0.0.13": "https://downloads.wordpress.org/theme/newsup.3.0.0.13.zip", "3.0.0.14": "https://downloads.wordpress.org/theme/newsup.3.0.0.14.zip", "3.0.0.15": "https://downloads.wordpress.org/theme/newsup.3.0.0.15.zip", "3.0.0.16": "https://downloads.wordpress.org/theme/newsup.3.0.0.16.zip", "3.0.0.17": "https://downloads.wordpress.org/theme/newsup.3.0.0.17.zip", "3.0.0.18": "https://downloads.wordpress.org/theme/newsup.3.0.0.18.zip", "3.0.0.19": "https://downloads.wordpress.org/theme/newsup.3.0.0.19.zip", "3.0.0.20": "https://downloads.wordpress.org/theme/newsup.3.0.0.20.zip", "3.0.0.21": "https://downloads.wordpress.org/theme/newsup.3.0.0.21.zip", "3.0.0.22": "https://downloads.wordpress.org/theme/newsup.3.0.0.22.zip", "3.0.0.23": "https://downloads.wordpress.org/theme/newsup.3.0.0.23.zip", "3.0.0.24": "https://downloads.wordpress.org/theme/newsup.3.0.0.24.zip", "3.0.0.25": "https://downloads.wordpress.org/theme/newsup.3.0.0.25.zip", "3.0.0.26": "https://downloads.wordpress.org/theme/newsup.3.0.0.26.zip", "3.0.0.27": "https://downloads.wordpress.org/theme/newsup.3.0.0.27.zip", "3.0.0.28": "https://downloads.wordpress.org/theme/newsup.3.0.0.28.zip", "3.0.0.29": "https://downloads.wordpress.org/theme/newsup.3.0.0.29.zip", "3.0.0.30": "https://downloads.wordpress.org/theme/newsup.3.0.0.30.zip", "3.0.0.31": "https://downloads.wordpress.org/theme/newsup.3.0.0.31.zip", "3.0.0.32": "https://downloads.wordpress.org/theme/newsup.3.0.0.32.zip", "3.0.0.33": "https://downloads.wordpress.org/theme/newsup.3.0.0.33.zip", "3.0.0.34": "https://downloads.wordpress.org/theme/newsup.3.0.0.34.zip", "3.0.0.35": "https://downloads.wordpress.org/theme/newsup.3.0.0.35.zip", "3.0.0.36": "https://downloads.wordpress.org/theme/newsup.3.0.0.36.zip", "3.0.0.37": "https://downloads.wordpress.org/theme/newsup.3.0.0.37.zip", "3.0.0.38": "https://downloads.wordpress.org/theme/newsup.3.0.0.38.zip", "3.0.0.39": "https://downloads.wordpress.org/theme/newsup.3.0.0.39.zip", "3.0.0.40": "https://downloads.wordpress.org/theme/newsup.3.0.0.40.zip", "3.0.0.41": "https://downloads.wordpress.org/theme/newsup.3.0.0.41.zip", "3.0.0.42": "https://downloads.wordpress.org/theme/newsup.3.0.0.42.zip", "3.0.0.43": "https://downloads.wordpress.org/theme/newsup.3.0.0.43.zip", "3.0.0.44": "https://downloads.wordpress.org/theme/newsup.3.0.0.44.zip", "3.0.0.45": "https://downloads.wordpress.org/theme/newsup.3.0.0.45.zip", "3.0.0.46": "https://downloads.wordpress.org/theme/newsup.3.0.0.46.zip", "3.0.0.47": "https://downloads.wordpress.org/theme/newsup.3.0.0.47.zip", "3.0.0.48": "https://downloads.wordpress.org/theme/newsup.3.0.0.48.zip", "3.0.0.49": "https://downloads.wordpress.org/theme/newsup.3.0.0.49.zip", "3.0.0.50": "https://downloads.wordpress.org/theme/newsup.3.0.0.50.zip", "3.0.0.51": "https://downloads.wordpress.org/theme/newsup.3.0.0.51.zip", "3.0.0.52": "https://downloads.wordpress.org/theme/newsup.3.0.0.52.zip", "3.0.0.53": "https://downloads.wordpress.org/theme/newsup.3.0.0.53.zip", "3.0.0.54": "https://downloads.wordpress.org/theme/newsup.3.0.0.54.zip", "3.0.0.55": "https://downloads.wordpress.org/theme/newsup.3.0.0.55.zip", "3.0.0.56": "https://downloads.wordpress.org/theme/newsup.3.0.0.56.zip", "3.0.0.57": "https://downloads.wordpress.org/theme/newsup.3.0.0.57.zip", "3.0.0.58": "https://downloads.wordpress.org/theme/newsup.3.0.0.58.zip", "3.0.0.59": "https://downloads.wordpress.org/theme/newsup.3.0.0.59.zip", "3.0.0.60": "https://downloads.wordpress.org/theme/newsup.3.0.0.60.zip", "3.0.0.61": "https://downloads.wordpress.org/theme/newsup.3.0.0.61.zip", "3.0.0.62": "https://downloads.wordpress.org/theme/newsup.3.0.0.62.zip", "3.0.0.63": "https://downloads.wordpress.org/theme/newsup.3.0.0.63.zip", "3.0.0.64": "https://downloads.wordpress.org/theme/newsup.3.0.0.64.zip", "3.0.0.65": "https://downloads.wordpress.org/theme/newsup.3.0.0.65.zip", "3.0.0.66": "https://downloads.wordpress.org/theme/newsup.3.0.0.66.zip", "3.0.0.67": "https://downloads.wordpress.org/theme/newsup.3.0.0.67.zip", "3.0.0.68": "https://downloads.wordpress.org/theme/newsup.3.0.0.68.zip", "3.0.0.69": "https://downloads.wordpress.org/theme/newsup.3.0.0.69.zip", "3.0.0.70": "https://downloads.wordpress.org/theme/newsup.3.0.0.70.zip", "3.0.0.71": "https://downloads.wordpress.org/theme/newsup.3.0.0.71.zip", "3.0.0.72": "https://downloads.wordpress.org/theme/newsup.3.0.0.72.zip", "3.0.0.73": "https://downloads.wordpress.org/theme/newsup.3.0.0.73.zip", "3.0.0.74": "https://downloads.wordpress.org/theme/newsup.3.0.0.74.zip", "3.0.0.75": "https://downloads.wordpress.org/theme/newsup.3.0.0.75.zip", "3.0.0.76": "https://downloads.wordpress.org/theme/newsup.3.0.0.76.zip", "3.0.0.77": "https://downloads.wordpress.org/theme/newsup.3.0.0.77.zip", "3.0.0.78": "https://downloads.wordpress.org/theme/newsup.3.0.0.78.zip", "3.0.0.79": "https://downloads.wordpress.org/theme/newsup.3.0.0.79.zip", "3.0.0.80": "https://downloads.wordpress.org/theme/newsup.3.0.0.80.zip", "3.0.0.81": "https://downloads.wordpress.org/theme/newsup.3.0.0.81.zip", "3.0.0.82": "https://downloads.wordpress.org/theme/newsup.3.0.0.82.zip", "3.0.0.83": "https://downloads.wordpress.org/theme/newsup.3.0.0.83.zip", "3.0.0.84": "https://downloads.wordpress.org/theme/newsup.3.0.0.84.zip", "3.0.0.85": "https://downloads.wordpress.org/theme/newsup.3.0.0.85.zip", "3.0.0.86": "https://downloads.wordpress.org/theme/newsup.3.0.0.86.zip", "3.0.0.87": "https://downloads.wordpress.org/theme/newsup.3.0.0.87.zip", "3.0.0.88": "https://downloads.wordpress.org/theme/newsup.3.0.0.88.zip", "3.0.0.89": "https://downloads.wordpress.org/theme/newsup.3.0.0.89.zip", "3.0.0.90": "https://downloads.wordpress.org/theme/newsup.3.0.0.90.zip", "3.0.0.91": "https://downloads.wordpress.org/theme/newsup.3.0.0.91.zip", "3.0.0.92": "https://downloads.wordpress.org/theme/newsup.3.0.0.92.zip", "3.0.0.93": "https://downloads.wordpress.org/theme/newsup.3.0.0.93.zip", "3.0.0.94": "https://downloads.wordpress.org/theme/newsup.3.0.0.94.zip", "3.0.0.95": "https://downloads.wordpress.org/theme/newsup.3.0.0.95.zip", "3.0.0.96": "https://downloads.wordpress.org/theme/newsup.3.0.0.96.zip", "3.0.0.97": "https://downloads.wordpress.org/theme/newsup.3.0.0.97.zip", "3.0.0.98": "https://downloads.wordpress.org/theme/newsup.3.0.0.98.zip", "3.0.0.99": "https://downloads.wordpress.org/theme/newsup.3.0.0.99.zip", "4.0.0.10": "https://downloads.wordpress.org/theme/newsup.4.0.0.10.zip", "4.0.0.11": "https://downloads.wordpress.org/theme/newsup.4.0.0.11.zip", "4.0.0.12": "https://downloads.wordpress.org/theme/newsup.4.0.0.12.zip", "4.0.0.13": "https://downloads.wordpress.org/theme/newsup.4.0.0.13.zip", "4.0.0.14": "https://downloads.wordpress.org/theme/newsup.4.0.0.14.zip", "4.0.0.15": "https://downloads.wordpress.org/theme/newsup.4.0.0.15.zip", "4.0.0.16": "https://downloads.wordpress.org/theme/newsup.4.0.0.16.zip", "4.0.0.17": "https://downloads.wordpress.org/theme/newsup.4.0.0.17.zip", "4.0.0.18": "https://downloads.wordpress.org/theme/newsup.4.0.0.18.zip", "4.0.0.19": "https://downloads.wordpress.org/theme/newsup.4.0.0.19.zip", "4.0.0.20": "https://downloads.wordpress.org/theme/newsup.4.0.0.20.zip", "4.0.0.21": "https://downloads.wordpress.org/theme/newsup.4.0.0.21.zip", "4.0.0.22": "https://downloads.wordpress.org/theme/newsup.4.0.0.22.zip", "4.0.0.23": "https://downloads.wordpress.org/theme/newsup.4.0.0.23.zip", "4.0.0.24": "https://downloads.wordpress.org/theme/newsup.4.0.0.24.zip", "4.0.0.25": "https://downloads.wordpress.org/theme/newsup.4.0.0.25.zip", "4.0.0.26": "https://downloads.wordpress.org/theme/newsup.4.0.0.26.zip", "4.0.0.27": "https://downloads.wordpress.org/theme/newsup.4.0.0.27.zip", "4.0.0.28": "https://downloads.wordpress.org/theme/newsup.4.0.0.28.zip", "4.0.0.29": "https://downloads.wordpress.org/theme/newsup.4.0.0.29.zip", "4.0.0.30": "https://downloads.wordpress.org/theme/newsup.4.0.0.30.zip", "4.0.0.31": "https://downloads.wordpress.org/theme/newsup.4.0.0.31.zip", "4.0.0.32": "https://downloads.wordpress.org/theme/newsup.4.0.0.32.zip", "4.0.0.33": "https://downloads.wordpress.org/theme/newsup.4.0.0.33.zip", "4.0.0.34": "https://downloads.wordpress.org/theme/newsup.4.0.0.34.zip", "4.0.0.35": "https://downloads.wordpress.org/theme/newsup.4.0.0.35.zip", "4.0.0.36": "https://downloads.wordpress.org/theme/newsup.4.0.0.36.zip", "4.0.0.37": "https://downloads.wordpress.org/theme/newsup.4.0.0.37.zip", "4.0.0.38": "https://downloads.wordpress.org/theme/newsup.4.0.0.38.zip", "4.0.0.39": "https://downloads.wordpress.org/theme/newsup.4.0.0.39.zip", "4.0.0.40": "https://downloads.wordpress.org/theme/newsup.4.0.0.40.zip", "4.0.0.41": "https://downloads.wordpress.org/theme/newsup.4.0.0.41.zip", "4.0.0.42": "https://downloads.wordpress.org/theme/newsup.4.0.0.42.zip", "4.0.0.43": "https://downloads.wordpress.org/theme/newsup.4.0.0.43.zip", "4.0.0.44": "https://downloads.wordpress.org/theme/newsup.4.0.0.44.zip", "4.0.0.45": "https://downloads.wordpress.org/theme/newsup.4.0.0.45.zip", "4.0.0.46": "https://downloads.wordpress.org/theme/newsup.4.0.0.46.zip", "4.0.0.47": "https://downloads.wordpress.org/theme/newsup.4.0.0.47.zip", "4.0.0.48": "https://downloads.wordpress.org/theme/newsup.4.0.0.48.zip", "4.0.0.49": "https://downloads.wordpress.org/theme/newsup.4.0.0.49.zip", "4.0.0.50": "https://downloads.wordpress.org/theme/newsup.4.0.0.50.zip", "4.0.0.51": "https://downloads.wordpress.org/theme/newsup.4.0.0.51.zip", "4.0.0.52": "https://downloads.wordpress.org/theme/newsup.4.0.0.52.zip", "4.0.0.53": "https://downloads.wordpress.org/theme/newsup.4.0.0.53.zip", "4.0.0.54": "https://downloads.wordpress.org/theme/newsup.4.0.0.54.zip", "4.0.0.55": "https://downloads.wordpress.org/theme/newsup.4.0.0.55.zip", "4.0.0.56": "https://downloads.wordpress.org/theme/newsup.4.0.0.56.zip", "4.0.0.57": "https://downloads.wordpress.org/theme/newsup.4.0.0.57.zip", "4.0.0.58": "https://downloads.wordpress.org/theme/newsup.4.0.0.58.zip", "4.0.0.59": "https://downloads.wordpress.org/theme/newsup.4.0.0.59.zip", "4.0.0.60": "https://downloads.wordpress.org/theme/newsup.4.0.0.60.zip", "4.0.0.61": "https://downloads.wordpress.org/theme/newsup.4.0.0.61.zip", "4.0.0.62": "https://downloads.wordpress.org/theme/newsup.4.0.0.62.zip", "4.0.0.63": "https://downloads.wordpress.org/theme/newsup.4.0.0.63.zip", "4.0.0.64": "https://downloads.wordpress.org/theme/newsup.4.0.0.64.zip", "4.0.0.65": "https://downloads.wordpress.org/theme/newsup.4.0.0.65.zip", "4.0.0.66": "https://downloads.wordpress.org/theme/newsup.4.0.0.66.zip", "4.0.0.67": "https://downloads.wordpress.org/theme/newsup.4.0.0.67.zip", "4.0.0.68": "https://downloads.wordpress.org/theme/newsup.4.0.0.68.zip", "4.0.0.69": "https://downloads.wordpress.org/theme/newsup.4.0.0.69.zip", "4.0.0.70": "https://downloads.wordpress.org/theme/newsup.4.0.0.70.zip", "4.0.0.71": "https://downloads.wordpress.org/theme/newsup.4.0.0.71.zip", "4.0.0.72": "https://downloads.wordpress.org/theme/newsup.4.0.0.72.zip", "4.0.0.73": "https://downloads.wordpress.org/theme/newsup.4.0.0.73.zip", "4.0.0.74": "https://downloads.wordpress.org/theme/newsup.4.0.0.74.zip", "4.0.0.75": "https://downloads.wordpress.org/theme/newsup.4.0.0.75.zip", "4.0.0.76": "https://downloads.wordpress.org/theme/newsup.4.0.0.76.zip", "4.0.0.77": "https://downloads.wordpress.org/theme/newsup.4.0.0.77.zip", "4.0.0.78": "https://downloads.wordpress.org/theme/newsup.4.0.0.78.zip", "4.0.0.79": "https://downloads.wordpress.org/theme/newsup.4.0.0.79.zip", "4.0.0.80": "https://downloads.wordpress.org/theme/newsup.4.0.0.80.zip", "4.0.0.81": "https://downloads.wordpress.org/theme/newsup.4.0.0.81.zip", "4.0.0.82": "https://downloads.wordpress.org/theme/newsup.4.0.0.82.zip", "4.0.0.83": "https://downloads.wordpress.org/theme/newsup.4.0.0.83.zip", "4.0.0.84": "https://downloads.wordpress.org/theme/newsup.4.0.0.84.zip", "4.0.0.85": "https://downloads.wordpress.org/theme/newsup.4.0.0.85.zip", "4.0.0.86": "https://downloads.wordpress.org/theme/newsup.4.0.0.86.zip", "4.0.0.87": "https://downloads.wordpress.org/theme/newsup.4.0.0.87.zip", "4.0.0.88": "https://downloads.wordpress.org/theme/newsup.4.0.0.88.zip", "4.0.0.89": "https://downloads.wordpress.org/theme/newsup.4.0.0.89.zip", "4.0.0.90": "https://downloads.wordpress.org/theme/newsup.4.0.0.90.zip", "4.0.0.91": "https://downloads.wordpress.org/theme/newsup.4.0.0.91.zip", "4.0.0.92": "https://downloads.wordpress.org/theme/newsup.4.0.0.92.zip", "4.0.0.93": "https://downloads.wordpress.org/theme/newsup.4.0.0.93.zip", "4.0.0.94": "https://downloads.wordpress.org/theme/newsup.4.0.0.94.zip", "4.0.0.95": "https://downloads.wordpress.org/theme/newsup.4.0.0.95.zip", "4.0.0.96": "https://downloads.wordpress.org/theme/newsup.4.0.0.96.zip", "4.0.0.97": "https://downloads.wordpress.org/theme/newsup.4.0.0.97.zip", "4.0.0.98": "https://downloads.wordpress.org/theme/newsup.4.0.0.98.zip", "4.0.0.99": "https://downloads.wordpress.org/theme/newsup.4.0.0.99.zip", "3.0.0.100": "https://downloads.wordpress.org/theme/newsup.3.0.0.100.zip", "3.0.0.101": "https://downloads.wordpress.org/theme/newsup.3.0.0.101.zip", "3.0.0.102": "https://downloads.wordpress.org/theme/newsup.3.0.0.102.zip", "3.0.0.103": "https://downloads.wordpress.org/theme/newsup.3.0.0.103.zip", "3.0.0.104": "https://downloads.wordpress.org/theme/newsup.3.0.0.104.zip", "3.0.0.105": "https://downloads.wordpress.org/theme/newsup.3.0.0.105.zip", "3.0.0.106": "https://downloads.wordpress.org/theme/newsup.3.0.0.106.zip", "3.0.0.107": "https://downloads.wordpress.org/theme/newsup.3.0.0.107.zip", "3.0.0.108": "https://downloads.wordpress.org/theme/newsup.3.0.0.108.zip", "3.0.0.109": "https://downloads.wordpress.org/theme/newsup.3.0.0.109.zip", "3.0.0.110": "https://downloads.wordpress.org/theme/newsup.3.0.0.110.zip", "3.0.0.111": "https://downloads.wordpress.org/theme/newsup.3.0.0.111.zip"}, "downloaded": 2637938, "num_ratings": 182, "preview_url": "https://wp-themes.com/newsup/", "reviews_url": "https://wordpress.org/support/theme/newsup/reviews/", "is_community": false, "last_updated": "2025-10-28", "requires_php": "7.4", "creation_time": "2020-03-01 06:23:21", "download_link": "https://downloads.wordpress.org/theme/newsup.5.1.3.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/newsup/screenshot.jpg?ver=5.1.3", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-0e10-71f1-bc8a-ab0af43ef3ad", "name": "Newsup", "slug": "newsup", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1761609600, "version": "5.1.3"}, "last_updated_time": "2025-10-28 04:20:06", "external_support_url": "https://themeansar.com/support/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6bbd-7377-ba2d-87d6b59ceaa3', 'oakridge-carpenter-and-joinery', 'Oakridge Carpenter And Joinery', '1.4', 'Oakridge Carpenter And Joinery is a responsive WordPress theme built for construction company, handyman, landscape, factory, maintenance and trade websites, yet it’s flexible enough to power any industry – from corporate businesses, manufacturer and repair and engieering startups to creative companies and independent bloggers. With full support for Gutenberg and Elementor, you can easily design pages using intuitive block tools and a fast, user friendly page builder, ensuring your website is built quickly and efficiently. This free FSE theme offers a minimalist, simple, and mobile friendly layout that adapts beautifully to one page landing pages, journals, magazines, or a stylish portfolio for writers and bloggers. Its smart integration of schema markup boosts SEO and search engines visibility, making it a perfect marketing asset. Oakridge Carpenter And Joinery’s pre-designed templates cater naturally to industries like construction, home building, carpentry, flooring, roofing, woodworking, DIY, and renovation. It’s also ideal for businesses specializing in furniture, cabinet making, timber joinery, and apprenticeship programs for artisans, plumbers, contractors, electricians and engineers. Whether you’re a supplier sustainability leader, architecture, chemical supplier or in manufacturing, production, or industrial sectors, or a blogger writing about sustainable construction, Oakridge Carpenter And Joinery delivers a fast, easy to use and modern theme that elevates your online presence — use it to showcase your company and even add a eCommerce store with seamless WooCommerce integration. Overall Oakridge Carpenter And Joinery can be used for any sort of project, but it has the most pre-built designs for trade and craftsmanship websites.', '019a30c1-6a0e-706c-bcef-ea118f2ad1ef', 'https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.4.zip', '6.0', '5.3', '2025-10-23 11:51:54+00', '2025-09-30 07:31:43+00', 'https://wp-themes.com/oakridge-carpenter-and-joinery/', '//ts.w.org/wp-content/themes/oakridge-carpenter-and-joinery/screenshot.png?ver=1.4', 0, 0, 'https://wordpress.org/support/theme/oakridge-carpenter-and-joinery/reviews/', 1529, 200, 'https://wordpress.org/themes/oakridge-carpenter-and-joinery/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Oakridge Carpenter And Joinery", "slug": "oakridge-carpenter-and-joinery", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbthemescom", "avatar": "https://secure.gravatar.com/avatar/64e0df7601781a06ac84aef62b02deb12e2283ddf03073931e6a6a1c4e972988?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbthemescom/", "author_url": "https://superbthemes.com/", "display_name": "SuperbThemes", "user_nicename": "superbthemescom"}, "parent": {"name": "TradeCraft", "slug": "tradecraft", "homepage": "https://wordpress.org/themes/tradecraft/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.4", "homepage": "https://wordpress.org/themes/oakridge-carpenter-and-joinery/", "requires": "6.0", "sections": {"description": "Oakridge Carpenter And Joinery is a responsive WordPress theme built for construction company, handyman, landscape, factory, maintenance and trade websites, yet it’s flexible enough to power any industry – from corporate businesses, manufacturer and repair and engieering startups to creative companies and independent bloggers. With full support for Gutenberg and Elementor, you can easily design pages using intuitive block tools and a fast, user friendly page builder, ensuring your website is built quickly and efficiently. This free FSE theme offers a minimalist, simple, and mobile friendly layout that adapts beautifully to one page landing pages, journals, magazines, or a stylish portfolio for writers and bloggers. Its smart integration of schema markup boosts SEO and search engines visibility, making it a perfect marketing asset. Oakridge Carpenter And Joinery’s pre-designed templates cater naturally to industries like construction, home building, carpentry, flooring, roofing, woodworking, DIY, and renovation. It’s also ideal for businesses specializing in furniture, cabinet making, timber joinery, and apprenticeship programs for artisans, plumbers, contractors, electricians and engineers. Whether you’re a supplier sustainability leader, architecture, chemical supplier or in manufacturing, production, or industrial sectors, or a blogger writing about sustainable construction, Oakridge Carpenter And Joinery delivers a fast, easy to use and modern theme that elevates your online presence — use it to showcase your company and even add a eCommerce store with seamless WooCommerce integration. Overall Oakridge Carpenter And Joinery can be used for any sort of project, but it has the most pre-built designs for trade and craftsmanship websites."}, "template": "tradecraft", "versions": {"1.0": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.4.zip"}, "downloaded": 1529, "num_ratings": 0, "preview_url": "https://wp-themes.com/oakridge-carpenter-and-joinery/", "reviews_url": "https://wordpress.org/support/theme/oakridge-carpenter-and-joinery/reviews/", "is_community": false, "last_updated": "2025-10-23", "requires_php": "5.3", "creation_time": "2025-09-30 07:31:43", "download_link": "https://downloads.wordpress.org/theme/oakridge-carpenter-and-joinery.1.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/oakridge-carpenter-and-joinery/screenshot.png?ver=1.4", "active_installs": 200, "aspiresync_meta": {"id": "019a30c0-0e6e-70b0-aa93-78db3c611a60", "name": "Oakridge Carpenter And Joinery", "slug": "oakridge-carpenter-and-joinery", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1761177600, "version": "1.4"}, "last_updated_time": "2025-10-23 11:51:54", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6bcb-723c-8e95-30f36d16cf45', 'oceanwp', 'OceanWP', '4.1.3', 'OceanWP is the perfect theme for your project. Lightweight and highly extendable, it will enable you to create almost any type of website such a blog, portfolio, business website and WooCommerce storefront with a beautiful & professional design. Very fast, responsive, RTL & translation ready, best SEO practices, unique WooCommerce features to increase conversion and much more. You can even edit the settings on tablet & mobile so your site looks good on every device. Work with the most popular page builders as Elementor, Beaver Builder, Brizy, Visual Composer, Divi, SiteOrigin, etc... Developers will love his extensible codebase making it a joy to customize and extend. Best friend of Elementor & WooCommerce. Looking for a Multi-Purpose theme? Look no further! Check the demos to realize that it''s the only theme you will ever need: https://oceanwp.org/demos/', '019a30c1-6bca-70cc-b4d9-f77b7175afff', 'https://downloads.wordpress.org/theme/oceanwp.4.1.3.zip', '5.6', '7.4', '2025-09-15 13:24:21+00', '2017-06-12 13:00:12+00', 'https://wp-themes.com/oceanwp/', '//ts.w.org/wp-content/themes/oceanwp/screenshot.png?ver=4.1.3', 98, 5682, 'https://wordpress.org/support/theme/oceanwp/reviews/', 8955050, 500000, 'https://wordpress.org/themes/oceanwp/', true, 'https://oceanwp.org/support/?utm_source=wporg', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "OceanWP", "slug": "oceanwp", "tags": {"blog": "Blog", "news": "News", "buddypress": "BuddyPress", "e-commerce": "E-commerce", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "OceanWP", "avatar": "https://secure.gravatar.com/avatar/ce621cb66ad1a867341134c954975b0c7075a936ae8995bada1b2b28ad62fe61?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/oceanwp/", "author_url": "https://oceanwp.org/about-oceanwp/", "display_name": "oceanwp", "user_nicename": "oceanwp"}, "rating": 98, "status": "open", "ratings": {"1": 50, "2": 12, "3": 15, "4": 72, "5": 5533}, "version": "4.1.3", "homepage": "https://wordpress.org/themes/oceanwp/", "requires": "5.6", "sections": {"description": "OceanWP is the perfect theme for your project. Lightweight and highly extendable, it will enable you to create almost any type of website such a blog, portfolio, business website and WooCommerce storefront with a beautiful & professional design. Very fast, responsive, RTL & translation ready, best SEO practices, unique WooCommerce features to increase conversion and much more. You can even edit the settings on tablet & mobile so your site looks good on every device. Work with the most popular page builders as Elementor, Beaver Builder, Brizy, Visual Composer, Divi, SiteOrigin, etc... Developers will love his extensible codebase making it a joy to customize and extend. Best friend of Elementor & WooCommerce. Looking for a Multi-Purpose theme? Look no further! Check the demos to realize that it''s the only theme you will ever need: https://oceanwp.org/demos/"}, "versions": {"1.1.0": "https://downloads.wordpress.org/theme/oceanwp.1.1.0.zip", "1.1.5": "https://downloads.wordpress.org/theme/oceanwp.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/oceanwp.1.1.6.zip", "1.1.8": "https://downloads.wordpress.org/theme/oceanwp.1.1.8.zip", "1.2.1": "https://downloads.wordpress.org/theme/oceanwp.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/oceanwp.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/oceanwp.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/oceanwp.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/oceanwp.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/oceanwp.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/oceanwp.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/oceanwp.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/oceanwp.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/oceanwp.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/oceanwp.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/oceanwp.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/oceanwp.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/oceanwp.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/oceanwp.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/oceanwp.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/oceanwp.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/oceanwp.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/oceanwp.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/oceanwp.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/oceanwp.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/oceanwp.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/oceanwp.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/oceanwp.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/oceanwp.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/oceanwp.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/oceanwp.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/oceanwp.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/oceanwp.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/oceanwp.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/oceanwp.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/oceanwp.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/oceanwp.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/oceanwp.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/oceanwp.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/oceanwp.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/oceanwp.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/oceanwp.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/oceanwp.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/oceanwp.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/oceanwp.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/oceanwp.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/oceanwp.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/oceanwp.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/oceanwp.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/oceanwp.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/oceanwp.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/oceanwp.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/oceanwp.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/oceanwp.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/oceanwp.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/oceanwp.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/oceanwp.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/oceanwp.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/oceanwp.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/oceanwp.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/oceanwp.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/oceanwp.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/oceanwp.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/theme/oceanwp.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/oceanwp.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/oceanwp.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/oceanwp.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/oceanwp.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/oceanwp.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/oceanwp.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/oceanwp.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/oceanwp.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/theme/oceanwp.1.8.9.zip", "1.9.0": "https://downloads.wordpress.org/theme/oceanwp.1.9.0.zip", "2.0.0": "https://downloads.wordpress.org/theme/oceanwp.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/oceanwp.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/oceanwp.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/oceanwp.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/oceanwp.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/oceanwp.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/oceanwp.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/oceanwp.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/oceanwp.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/oceanwp.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/oceanwp.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/oceanwp.2.1.1.zip", "3.0.0": "https://downloads.wordpress.org/theme/oceanwp.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/oceanwp.3.0.1.zip", "3.0.3": "https://downloads.wordpress.org/theme/oceanwp.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/oceanwp.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/theme/oceanwp.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/theme/oceanwp.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/theme/oceanwp.3.0.7.zip", "3.1.0": "https://downloads.wordpress.org/theme/oceanwp.3.1.0.zip", "3.1.1": "https://downloads.wordpress.org/theme/oceanwp.3.1.1.zip", "3.1.2": "https://downloads.wordpress.org/theme/oceanwp.3.1.2.zip", "3.1.3": "https://downloads.wordpress.org/theme/oceanwp.3.1.3.zip", "3.1.4": "https://downloads.wordpress.org/theme/oceanwp.3.1.4.zip", "3.2.0": "https://downloads.wordpress.org/theme/oceanwp.3.2.0.zip", "3.2.1": "https://downloads.wordpress.org/theme/oceanwp.3.2.1.zip", "3.2.2": "https://downloads.wordpress.org/theme/oceanwp.3.2.2.zip", "3.3.0": "https://downloads.wordpress.org/theme/oceanwp.3.3.0.zip", "3.3.1": "https://downloads.wordpress.org/theme/oceanwp.3.3.1.zip", "3.3.2": "https://downloads.wordpress.org/theme/oceanwp.3.3.2.zip", "3.3.3": "https://downloads.wordpress.org/theme/oceanwp.3.3.3.zip", "3.3.4": "https://downloads.wordpress.org/theme/oceanwp.3.3.4.zip", "3.3.5": "https://downloads.wordpress.org/theme/oceanwp.3.3.5.zip", "3.3.6": "https://downloads.wordpress.org/theme/oceanwp.3.3.6.zip", "3.4.0": "https://downloads.wordpress.org/theme/oceanwp.3.4.0.zip", "3.4.1": "https://downloads.wordpress.org/theme/oceanwp.3.4.1.zip", "3.4.2": "https://downloads.wordpress.org/theme/oceanwp.3.4.2.zip", "3.4.3": "https://downloads.wordpress.org/theme/oceanwp.3.4.3.zip", "3.4.4": "https://downloads.wordpress.org/theme/oceanwp.3.4.4.zip", "3.4.5": "https://downloads.wordpress.org/theme/oceanwp.3.4.5.zip", "3.4.6": "https://downloads.wordpress.org/theme/oceanwp.3.4.6.zip", "3.4.7": "https://downloads.wordpress.org/theme/oceanwp.3.4.7.zip", "3.5.0": "https://downloads.wordpress.org/theme/oceanwp.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/theme/oceanwp.3.5.1.zip", "3.5.2": "https://downloads.wordpress.org/theme/oceanwp.3.5.2.zip", "3.5.3": "https://downloads.wordpress.org/theme/oceanwp.3.5.3.zip", "3.5.4": "https://downloads.wordpress.org/theme/oceanwp.3.5.4.zip", "3.5.5": "https://downloads.wordpress.org/theme/oceanwp.3.5.5.zip", "3.5.6": "https://downloads.wordpress.org/theme/oceanwp.3.5.6.zip", "3.5.7": "https://downloads.wordpress.org/theme/oceanwp.3.5.7.zip", "3.5.8": "https://downloads.wordpress.org/theme/oceanwp.3.5.8.zip", "3.5.9": "https://downloads.wordpress.org/theme/oceanwp.3.5.9.zip", "3.6.0": "https://downloads.wordpress.org/theme/oceanwp.3.6.0.zip", "3.6.1": "https://downloads.wordpress.org/theme/oceanwp.3.6.1.zip", "4.0.0": "https://downloads.wordpress.org/theme/oceanwp.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/oceanwp.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/oceanwp.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/theme/oceanwp.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/theme/oceanwp.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/theme/oceanwp.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/theme/oceanwp.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/theme/oceanwp.4.0.7.zip", "4.0.8": "https://downloads.wordpress.org/theme/oceanwp.4.0.8.zip", "4.0.9": "https://downloads.wordpress.org/theme/oceanwp.4.0.9.zip", "4.1.0": "https://downloads.wordpress.org/theme/oceanwp.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/oceanwp.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/oceanwp.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/oceanwp.4.1.3.zip", "1.4.10": "https://downloads.wordpress.org/theme/oceanwp.1.4.10.zip", "1.4.11": "https://downloads.wordpress.org/theme/oceanwp.1.4.11.zip", "1.4.12": "https://downloads.wordpress.org/theme/oceanwp.1.4.12.zip", "1.4.13": "https://downloads.wordpress.org/theme/oceanwp.1.4.13.zip", "1.4.14": "https://downloads.wordpress.org/theme/oceanwp.1.4.14.zip", "1.4.15": "https://downloads.wordpress.org/theme/oceanwp.1.4.15.zip", "1.4.16": "https://downloads.wordpress.org/theme/oceanwp.1.4.16.zip", "1.5.10": "https://downloads.wordpress.org/theme/oceanwp.1.5.10.zip", "1.5.11": "https://downloads.wordpress.org/theme/oceanwp.1.5.11.zip", "1.5.12": "https://downloads.wordpress.org/theme/oceanwp.1.5.12.zip", "1.5.13": "https://downloads.wordpress.org/theme/oceanwp.1.5.13.zip", "1.5.14": "https://downloads.wordpress.org/theme/oceanwp.1.5.14.zip", "1.5.15": "https://downloads.wordpress.org/theme/oceanwp.1.5.15.zip", "1.5.16": "https://downloads.wordpress.org/theme/oceanwp.1.5.16.zip", "1.5.17": "https://downloads.wordpress.org/theme/oceanwp.1.5.17.zip", "1.5.18": "https://downloads.wordpress.org/theme/oceanwp.1.5.18.zip", "1.5.19": "https://downloads.wordpress.org/theme/oceanwp.1.5.19.zip", "1.5.20": "https://downloads.wordpress.org/theme/oceanwp.1.5.20.zip", "1.5.21": "https://downloads.wordpress.org/theme/oceanwp.1.5.21.zip", "1.5.22": "https://downloads.wordpress.org/theme/oceanwp.1.5.22.zip", "1.5.23": "https://downloads.wordpress.org/theme/oceanwp.1.5.23.zip", "1.5.24": "https://downloads.wordpress.org/theme/oceanwp.1.5.24.zip", "1.5.25": "https://downloads.wordpress.org/theme/oceanwp.1.5.25.zip", "1.5.26": "https://downloads.wordpress.org/theme/oceanwp.1.5.26.zip", "1.5.27": "https://downloads.wordpress.org/theme/oceanwp.1.5.27.zip", "1.5.28": "https://downloads.wordpress.org/theme/oceanwp.1.5.28.zip", "1.5.29": "https://downloads.wordpress.org/theme/oceanwp.1.5.29.zip", "1.5.30": "https://downloads.wordpress.org/theme/oceanwp.1.5.30.zip", "1.5.31": "https://downloads.wordpress.org/theme/oceanwp.1.5.31.zip", "1.5.32": "https://downloads.wordpress.org/theme/oceanwp.1.5.32.zip", "1.6.10": "https://downloads.wordpress.org/theme/oceanwp.1.6.10.zip", "1.0.8.1": "https://downloads.wordpress.org/theme/oceanwp.1.0.8.1.zip", "1.0.9.1": "https://downloads.wordpress.org/theme/oceanwp.1.0.9.1.zip", "1.1.0.1": "https://downloads.wordpress.org/theme/oceanwp.1.1.0.1.zip", "1.1.6.1": "https://downloads.wordpress.org/theme/oceanwp.1.1.6.1.zip", "1.1.6.2": "https://downloads.wordpress.org/theme/oceanwp.1.1.6.2.zip", "1.1.6.3": "https://downloads.wordpress.org/theme/oceanwp.1.1.6.3.zip", "1.1.8.1": "https://downloads.wordpress.org/theme/oceanwp.1.1.8.1.zip", "1.2.0.1": "https://downloads.wordpress.org/theme/oceanwp.1.2.0.1.zip", "1.2.0.2": "https://downloads.wordpress.org/theme/oceanwp.1.2.0.2.zip", "1.1.8.1.1": "https://downloads.wordpress.org/theme/oceanwp.1.1.8.1.1.zip", "1.1.8.1.2": "https://downloads.wordpress.org/theme/oceanwp.1.1.8.1.2.zip", "1.1.8.1.3": "https://downloads.wordpress.org/theme/oceanwp.1.1.8.1.3.zip", "1.2.0.2.1": "https://downloads.wordpress.org/theme/oceanwp.1.2.0.2.1.zip"}, "downloaded": 8955050, "num_ratings": 5682, "preview_url": "https://wp-themes.com/oceanwp/", "reviews_url": "https://wordpress.org/support/theme/oceanwp/reviews/", "is_community": false, "last_updated": "2025-09-15", "requires_php": "7.4", "creation_time": "2017-06-12 13:00:12", "download_link": "https://downloads.wordpress.org/theme/oceanwp.4.1.3.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/oceanwp/screenshot.png?ver=4.1.3", "active_installs": 500000, "aspiresync_meta": {"id": "019a30c0-0e78-7168-a54c-43c8e7bf81b5", "name": "OceanWP", "slug": "oceanwp", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1757894400, "version": "4.1.3"}, "last_updated_time": "2025-09-15 13:24:21", "external_support_url": "https://oceanwp.org/support/?utm_source=wporg", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6bd8-7337-9c62-98cd1b5ef9b7', 'ona-architecture', 'Ona Architecture', '1.0.0', 'Ona Architecture is a sleek and sophisticated WordPress theme designed specifically for architects, interior designers, design studios, construction firms, and creative professionals in the built environment. This meticulously crafted block-based theme offers a clean, minimalist aesthetic that beautifully showcases architectural projects and portfolios. Winner of the prestigious Anyone Can WP design contest, Ona Architecture combines cutting-edge design with exceptional functionality. The theme features a responsive layout that seamlessly adapts to all devices, ensuring your architectural vision looks stunning on desktops, tablets, and smartphones.', '019a30c1-6bd7-723d-bee5-31b770898bf1', 'https://downloads.wordpress.org/theme/ona-architecture.1.0.0.zip', '5.8', '5.6', '2025-02-07 13:30:46+00', '2024-12-13 04:56:47+00', 'https://wp-themes.com/ona-architecture/', '//ts.w.org/wp-content/themes/ona-architecture/screenshot.jpg?ver=1.0.0', 0, 0, 'https://wordpress.org/support/theme/ona-architecture/reviews/', 32040, 4000, 'https://wordpress.org/themes/ona-architecture/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Ona Architecture", "slug": "ona-architecture", "tags": {"blog": "Blog", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "four-columns": "Four columns", "custom-colors": "Custom colors", "entertainment": "Entertainment", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "DeoThemes", "avatar": "https://secure.gravatar.com/avatar/2db31f43df36f28a6ef358d30bd88c916c8a41d2d60c7be930cd58e35d312821?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/deothemes/", "author_url": "https://deothemes.com", "display_name": "DeoThemes", "user_nicename": "deothemes"}, "parent": {"name": "Ona", "slug": "ona", "homepage": "https://wordpress.org/themes/ona/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.0", "homepage": "https://wordpress.org/themes/ona-architecture/", "requires": "5.8", "sections": {"description": "Ona Architecture is a sleek and sophisticated WordPress theme designed specifically for architects, interior designers, design studios, construction firms, and creative professionals in the built environment. This meticulously crafted block-based theme offers a clean, minimalist aesthetic that beautifully showcases architectural projects and portfolios. Winner of the prestigious Anyone Can WP design contest, Ona Architecture combines cutting-edge design with exceptional functionality. The theme features a responsive layout that seamlessly adapts to all devices, ensuring your architectural vision looks stunning on desktops, tablets, and smartphones."}, "template": "ona", "versions": {"0.1": "https://downloads.wordpress.org/theme/ona-architecture.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/ona-architecture.0.2.zip", "1.0.0": "https://downloads.wordpress.org/theme/ona-architecture.1.0.0.zip"}, "downloaded": 32040, "num_ratings": 0, "preview_url": "https://wp-themes.com/ona-architecture/", "reviews_url": "https://wordpress.org/support/theme/ona-architecture/reviews/", "is_community": false, "last_updated": "2025-02-07", "requires_php": "5.6", "creation_time": "2024-12-13 04:56:47", "download_link": "https://downloads.wordpress.org/theme/ona-architecture.1.0.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/ona-architecture/screenshot.jpg?ver=1.0.0", "active_installs": 4000, "aspiresync_meta": {"id": "019a30c0-0e4a-7182-826f-745962e7c2bc", "name": "Ona Architecture", "slug": "ona-architecture", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1738886400, "version": "1.0.0"}, "last_updated_time": "2025-02-07 13:30:46", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6be5-72b6-b44e-a87966155f94', 'onepress', 'OnePress', '2.3.15', 'OnePress is an outstanding creative and flexible WordPress one page theme well suited for business website, portfolio, digital agency, product showcase, freelancers and everyone else who appreciate good design. The theme overall is an elegant and classic one, a fine example of Bootstrap 4 WordPress theme which compatibility with latest version of WooCommerce. (Live preview : https://demos.famethemes.com/onepress)', '019a30c1-6be4-7145-8f7d-5098fa3b8122', 'https://downloads.wordpress.org/theme/onepress.2.3.15.zip', NULL, '5.6', '2025-09-19 04:27:11+00', '2016-02-08 00:15:06+00', 'https://wp-themes.com/onepress/', '//ts.w.org/wp-content/themes/onepress/screenshot.png?ver=2.3.15', 92, 154, 'https://wordpress.org/support/theme/onepress/reviews/', 2449087, 70000, 'https://wordpress.org/themes/onepress/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "OnePress", "slug": "onepress", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "FameThemes", "avatar": "https://secure.gravatar.com/avatar/e1aa1fe1ebeade7e34063c76baf1ceb4f630bf5f480b53a2ee9b113cf24b7fb6?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/famethemes/", "author_url": "http://www.famethemes.com", "display_name": "FameThemes", "user_nicename": "famethemes"}, "rating": 92, "status": "open", "ratings": {"1": 10, "2": 3, "3": 3, "4": 4, "5": 134}, "version": "2.3.15", "homepage": "https://wordpress.org/themes/onepress/", "requires": false, "sections": {"description": "OnePress is an outstanding creative and flexible WordPress one page theme well suited for business website, portfolio, digital agency, product showcase, freelancers and everyone else who appreciate good design. The theme overall is an elegant and classic one, a fine example of Bootstrap 4 WordPress theme which compatibility with latest version of WooCommerce. (Live preview : https://demos.famethemes.com/onepress)"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/onepress.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/onepress.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/onepress.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/onepress.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/onepress.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/onepress.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/onepress.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/onepress.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/onepress.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/onepress.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/onepress.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/onepress.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/onepress.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/onepress.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/onepress.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/onepress.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/onepress.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/onepress.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/onepress.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/onepress.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/onepress.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/onepress.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/onepress.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/onepress.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/onepress.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/onepress.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/onepress.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/onepress.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/onepress.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/onepress.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/onepress.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/onepress.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/onepress.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/onepress.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/onepress.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/onepress.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/onepress.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/onepress.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/onepress.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/onepress.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/onepress.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/onepress.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/onepress.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/onepress.1.4.3.zip", "2.0.0": "https://downloads.wordpress.org/theme/onepress.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/onepress.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/onepress.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/onepress.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/onepress.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/onepress.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/onepress.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/onepress.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/onepress.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/onepress.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/onepress.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/theme/onepress.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/onepress.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/onepress.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/onepress.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/onepress.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/onepress.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/onepress.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/theme/onepress.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/theme/onepress.2.2.8.zip", "2.3.0": "https://downloads.wordpress.org/theme/onepress.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/onepress.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/onepress.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/onepress.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/onepress.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/onepress.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/onepress.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/onepress.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/onepress.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/theme/onepress.2.3.9.zip", "2.3.10": "https://downloads.wordpress.org/theme/onepress.2.3.10.zip", "2.3.11": "https://downloads.wordpress.org/theme/onepress.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/theme/onepress.2.3.12.zip", "2.3.15": "https://downloads.wordpress.org/theme/onepress.2.3.15.zip"}, "downloaded": 2449087, "num_ratings": 154, "preview_url": "https://wp-themes.com/onepress/", "reviews_url": "https://wordpress.org/support/theme/onepress/reviews/", "is_community": false, "last_updated": "2025-09-19", "requires_php": "5.6", "creation_time": "2016-02-08 00:15:06", "download_link": "https://downloads.wordpress.org/theme/onepress.2.3.15.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/onepress/screenshot.png?ver=2.3.15", "active_installs": 70000, "aspiresync_meta": {"id": "019a30c0-0e6a-70aa-9248-61d66247aad5", "name": "OnePress", "slug": "onepress", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1758240000, "version": "2.3.15"}, "last_updated_time": "2025-09-19 04:27:11", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6bef-7072-b70a-7624d52d351c', 'online-personal-trainer', 'Online Personal Trainer', '1.3', 'Online Personal Trainer is a free powerful and flexible WordPress theme designed for personal trainers, fitness coaches, and anyone in the training, workout, or wellness space. Built for high conversion and modern style, it’s also perfect for any business, blogger, writer, or creative professional looking for a clean, minimalist design. Compatible with Elementor, Gutenberg, and Divi Builder, this page builder-ready theme lets you create stunning landing pages, portfolios, and one page websites with ease. Whether you’re launching a startup, a lifestyle brand, or an ecommerce store with WooCommerce, you’ll love the responsive, mobile-friendly layout and fastest loading performance. Use it to publish courses, run affiliate marketing, place adsense advertisements, or create a sleek magazine, news, or newspaper site. The block-based layout is FSE-ready (full site editing), SEO optimized with schema markup, and built for search engines from the ground up. The simple design supports any color palette, includes dark mode, and is fully translation ready. Whether you’re focused on photography, writing, blogging, or building a company brand — this is one of the best templates available.', '019a30c1-6a0e-706c-bcef-ea118f2ad1ef', 'https://downloads.wordpress.org/theme/online-personal-trainer.1.3.zip', '6.1', '5.6', '2025-10-10 07:31:52+00', '2025-10-10 07:31:52+00', 'https://wp-themes.com/online-personal-trainer/', '//ts.w.org/wp-content/themes/online-personal-trainer/screenshot.png?ver=1.3', 0, 0, 'https://wordpress.org/support/theme/online-personal-trainer/reviews/', 1312, 200, 'https://wordpress.org/themes/online-personal-trainer/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Online Personal Trainer", "slug": "online-personal-trainer", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbthemescom", "avatar": "https://secure.gravatar.com/avatar/64e0df7601781a06ac84aef62b02deb12e2283ddf03073931e6a6a1c4e972988?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbthemescom/", "author_url": "https://superbthemes.com/", "display_name": "SuperbThemes", "user_nicename": "superbthemescom"}, "parent": {"name": "Ruby Ecommerce", "slug": "ruby-ecommerce", "homepage": "https://wordpress.org/themes/ruby-ecommerce/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.3", "homepage": "https://wordpress.org/themes/online-personal-trainer/", "requires": "6.1", "sections": {"description": "Online Personal Trainer is a free powerful and flexible WordPress theme designed for personal trainers, fitness coaches, and anyone in the training, workout, or wellness space. Built for high conversion and modern style, it’s also perfect for any business, blogger, writer, or creative professional looking for a clean, minimalist design. Compatible with Elementor, Gutenberg, and Divi Builder, this page builder-ready theme lets you create stunning landing pages, portfolios, and one page websites with ease. Whether you’re launching a startup, a lifestyle brand, or an ecommerce store with WooCommerce, you’ll love the responsive, mobile-friendly layout and fastest loading performance. Use it to publish courses, run affiliate marketing, place adsense advertisements, or create a sleek magazine, news, or newspaper site. The block-based layout is FSE-ready (full site editing), SEO optimized with schema markup, and built for search engines from the ground up. The simple design supports any color palette, includes dark mode, and is fully translation ready. Whether you’re focused on photography, writing, blogging, or building a company brand — this is one of the best templates available."}, "template": "ruby-ecommerce", "versions": {"1.0": "https://downloads.wordpress.org/theme/online-personal-trainer.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/online-personal-trainer.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/online-personal-trainer.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/online-personal-trainer.1.3.zip"}, "downloaded": 1312, "num_ratings": 0, "preview_url": "https://wp-themes.com/online-personal-trainer/", "reviews_url": "https://wordpress.org/support/theme/online-personal-trainer/reviews/", "is_community": false, "last_updated": "2025-10-10", "requires_php": "5.6", "creation_time": "2025-10-10 07:31:52", "download_link": "https://downloads.wordpress.org/theme/online-personal-trainer.1.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/online-personal-trainer/screenshot.png?ver=1.3", "active_installs": 200, "aspiresync_meta": {"id": "019a30c0-0e71-70ff-8233-0db6136fc602", "name": "Online Personal Trainer", "slug": "online-personal-trainer", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1760054400, "version": "1.3"}, "last_updated_time": "2025-10-10 07:31:52", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6bfc-712e-8d71-90d25e3bdefd', 'phlox', 'Phlox', '2.17.7', 'Phlox is a modern, lightweight and customizable theme perfect for almost any type of website including, blog, portfolio, business, agency, news & magazine, food & restaurant, travel, and photography as well as WooCommerce storefront. What makes the Phlox unbeatable is being fast, truly responsive, translation ready, RTL layout, built with SEO in mind, professional portfolio features, 30 exclusive widgets and elements, 19 demo sites for one-click import, WooCommerce Ready, WPML ready, 100% GDPR compliance, reliable with regular updates, and also integrated with Elementor, Visual Composer and SiteOrigin page builders. Phlox is architect from scratch by the team behind the famous "Master Slider" project, so relax and be assured that you are supported by a good company. Phlox is the only theme that you have ever need to use and look no further. Start exploring the demos: http://demo.phlox.pro/default/', '019a30c1-6bfb-734d-b804-67d9554aaed8', 'https://downloads.wordpress.org/theme/phlox.2.17.7.zip', '5.4', '7.0', '2025-06-28 10:42:25+00', '2017-07-31 16:45:08+00', 'https://wp-themes.com/phlox/', '//ts.w.org/wp-content/themes/phlox/screenshot.png?ver=2.17.7', 96, 850, 'https://wordpress.org/support/theme/phlox/reviews/', 1688422, 40000, 'https://wordpress.org/themes/phlox/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Phlox", "slug": "phlox", "tags": {"portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "food-and-drink": "Food & drink", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "averta", "avatar": "https://secure.gravatar.com/avatar/2520cf699d4831304bd81f527a47fca986241371b11ac7caef8a0d4e8b39c122?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/averta/", "author_url": "http://www.averta.net", "display_name": "averta", "user_nicename": "averta"}, "rating": 96, "status": "open", "ratings": {"1": 26, "2": 7, "3": 9, "4": 33, "5": 775}, "version": "2.17.7", "homepage": "https://wordpress.org/themes/phlox/", "requires": "5.4", "sections": {"description": "Phlox is a modern, lightweight and customizable theme perfect for almost any type of website including, blog, portfolio, business, agency, news & magazine, food & restaurant, travel, and photography as well as WooCommerce storefront. What makes the Phlox unbeatable is being fast, truly responsive, translation ready, RTL layout, built with SEO in mind, professional portfolio features, 30 exclusive widgets and elements, 19 demo sites for one-click import, WooCommerce Ready, WPML ready, 100% GDPR compliance, reliable with regular updates, and also integrated with Elementor, Visual Composer and SiteOrigin page builders. Phlox is architect from scratch by the team behind the famous \"Master Slider\" project, so relax and be assured that you are supported by a good company. Phlox is the only theme that you have ever need to use and look no further. Start exploring the demos: http://demo.phlox.pro/default/"}, "versions": {"0.8": "https://downloads.wordpress.org/theme/phlox.0.8.zip", "1.0": "https://downloads.wordpress.org/theme/phlox.1.0.zip", "1.05": "https://downloads.wordpress.org/theme/phlox.1.05.zip", "1.5.1": "https://downloads.wordpress.org/theme/phlox.1.5.1.zip", "1.6.0": "https://downloads.wordpress.org/theme/phlox.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/phlox.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/phlox.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/phlox.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/phlox.1.6.4.zip", "1.6.6": "https://downloads.wordpress.org/theme/phlox.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/phlox.1.6.7.zip", "1.6.9": "https://downloads.wordpress.org/theme/phlox.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/phlox.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/phlox.1.7.1.zip", "1.7.4": "https://downloads.wordpress.org/theme/phlox.1.7.4.zip", "1.8.0": "https://downloads.wordpress.org/theme/phlox.1.8.0.zip", "1.8.2": "https://downloads.wordpress.org/theme/phlox.1.8.2.zip", "1.8.4": "https://downloads.wordpress.org/theme/phlox.1.8.4.zip", "1.9.0": "https://downloads.wordpress.org/theme/phlox.1.9.0.zip", "1.9.2": "https://downloads.wordpress.org/theme/phlox.1.9.2.zip", "2.0.0": "https://downloads.wordpress.org/theme/phlox.2.0.0.zip", "2.0.5": "https://downloads.wordpress.org/theme/phlox.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/phlox.2.0.6.zip", "2.0.9": "https://downloads.wordpress.org/theme/phlox.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/phlox.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/phlox.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/phlox.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/phlox.2.1.3.zip", "2.1.5": "https://downloads.wordpress.org/theme/phlox.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/phlox.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/phlox.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/phlox.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/theme/phlox.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/theme/phlox.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/phlox.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/phlox.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/phlox.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/phlox.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/phlox.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/phlox.2.2.6.zip", "2.2.8": "https://downloads.wordpress.org/theme/phlox.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/theme/phlox.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/theme/phlox.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/phlox.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/phlox.2.3.2.zip", "2.3.4": "https://downloads.wordpress.org/theme/phlox.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/phlox.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/phlox.2.3.6.zip", "2.3.8": "https://downloads.wordpress.org/theme/phlox.2.3.8.zip", "2.4.0": "https://downloads.wordpress.org/theme/phlox.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/phlox.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/phlox.2.4.2.zip", "2.4.4": "https://downloads.wordpress.org/theme/phlox.2.4.4.zip", "2.4.6": "https://downloads.wordpress.org/theme/phlox.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/theme/phlox.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/theme/phlox.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/theme/phlox.2.4.9.zip", "2.5.0": "https://downloads.wordpress.org/theme/phlox.2.5.0.zip", "2.5.3": "https://downloads.wordpress.org/theme/phlox.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/phlox.2.5.4.zip", "2.5.7": "https://downloads.wordpress.org/theme/phlox.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/theme/phlox.2.5.8.zip", "2.5.9": "https://downloads.wordpress.org/theme/phlox.2.5.9.zip", "2.6.0": "https://downloads.wordpress.org/theme/phlox.2.6.0.zip", "2.6.1": "https://downloads.wordpress.org/theme/phlox.2.6.1.zip", "2.6.4": "https://downloads.wordpress.org/theme/phlox.2.6.4.zip", "2.6.6": "https://downloads.wordpress.org/theme/phlox.2.6.6.zip", "2.6.7": "https://downloads.wordpress.org/theme/phlox.2.6.7.zip", "2.6.8": "https://downloads.wordpress.org/theme/phlox.2.6.8.zip", "2.6.9": "https://downloads.wordpress.org/theme/phlox.2.6.9.zip", "2.7.0": "https://downloads.wordpress.org/theme/phlox.2.7.0.zip", "2.7.1": "https://downloads.wordpress.org/theme/phlox.2.7.1.zip", "2.7.2": "https://downloads.wordpress.org/theme/phlox.2.7.2.zip", "2.7.5": "https://downloads.wordpress.org/theme/phlox.2.7.5.zip", "2.7.6": "https://downloads.wordpress.org/theme/phlox.2.7.6.zip", "2.7.7": "https://downloads.wordpress.org/theme/phlox.2.7.7.zip", "2.7.8": "https://downloads.wordpress.org/theme/phlox.2.7.8.zip", "2.7.9": "https://downloads.wordpress.org/theme/phlox.2.7.9.zip", "2.8.0": "https://downloads.wordpress.org/theme/phlox.2.8.0.zip", "2.8.1": "https://downloads.wordpress.org/theme/phlox.2.8.1.zip", "2.8.2": "https://downloads.wordpress.org/theme/phlox.2.8.2.zip", "2.8.4": "https://downloads.wordpress.org/theme/phlox.2.8.4.zip", "2.8.5": "https://downloads.wordpress.org/theme/phlox.2.8.5.zip", "2.8.7": "https://downloads.wordpress.org/theme/phlox.2.8.7.zip", "2.8.9": "https://downloads.wordpress.org/theme/phlox.2.8.9.zip", "2.9.0": "https://downloads.wordpress.org/theme/phlox.2.9.0.zip", "2.9.1": "https://downloads.wordpress.org/theme/phlox.2.9.1.zip", "2.9.3": "https://downloads.wordpress.org/theme/phlox.2.9.3.zip", "2.9.5": "https://downloads.wordpress.org/theme/phlox.2.9.5.zip", "2.9.6": "https://downloads.wordpress.org/theme/phlox.2.9.6.zip", "2.9.8": "https://downloads.wordpress.org/theme/phlox.2.9.8.zip", "1.6.11": "https://downloads.wordpress.org/theme/phlox.1.6.11.zip", "1.6.12": "https://downloads.wordpress.org/theme/phlox.1.6.12.zip", "1.6.13": "https://downloads.wordpress.org/theme/phlox.1.6.13.zip", "1.6.14": "https://downloads.wordpress.org/theme/phlox.1.6.14.zip", "1.6.15": "https://downloads.wordpress.org/theme/phlox.1.6.15.zip", "1.6.16": "https://downloads.wordpress.org/theme/phlox.1.6.16.zip", "1.6.17": "https://downloads.wordpress.org/theme/phlox.1.6.17.zip", "1.6.18": "https://downloads.wordpress.org/theme/phlox.1.6.18.zip", "1.6.20": "https://downloads.wordpress.org/theme/phlox.1.6.20.zip", "1.6.21": "https://downloads.wordpress.org/theme/phlox.1.6.21.zip", "1.6.25": "https://downloads.wordpress.org/theme/phlox.1.6.25.zip", "2.0.10": "https://downloads.wordpress.org/theme/phlox.2.0.10.zip", "2.0.12": "https://downloads.wordpress.org/theme/phlox.2.0.12.zip", "2.0.14": "https://downloads.wordpress.org/theme/phlox.2.0.14.zip", "2.0.15": "https://downloads.wordpress.org/theme/phlox.2.0.15.zip", "2.0.17": "https://downloads.wordpress.org/theme/phlox.2.0.17.zip", "2.10.0": "https://downloads.wordpress.org/theme/phlox.2.10.0.zip", "2.10.8": "https://downloads.wordpress.org/theme/phlox.2.10.8.zip", "2.11.0": "https://downloads.wordpress.org/theme/phlox.2.11.0.zip", "2.11.1": "https://downloads.wordpress.org/theme/phlox.2.11.1.zip", "2.12.0": "https://downloads.wordpress.org/theme/phlox.2.12.0.zip", "2.14.0": "https://downloads.wordpress.org/theme/phlox.2.14.0.zip", "2.15.0": "https://downloads.wordpress.org/theme/phlox.2.15.0.zip", "2.15.1": "https://downloads.wordpress.org/theme/phlox.2.15.1.zip", "2.15.5": "https://downloads.wordpress.org/theme/phlox.2.15.5.zip", "2.15.7": "https://downloads.wordpress.org/theme/phlox.2.15.7.zip", "2.15.8": "https://downloads.wordpress.org/theme/phlox.2.15.8.zip", "2.15.9": "https://downloads.wordpress.org/theme/phlox.2.15.9.zip", "2.16.0": "https://downloads.wordpress.org/theme/phlox.2.16.0.zip", "2.16.3": "https://downloads.wordpress.org/theme/phlox.2.16.3.zip", "2.16.5": "https://downloads.wordpress.org/theme/phlox.2.16.5.zip", "2.16.7": "https://downloads.wordpress.org/theme/phlox.2.16.7.zip", "2.17.0": "https://downloads.wordpress.org/theme/phlox.2.17.0.zip", "2.17.3": "https://downloads.wordpress.org/theme/phlox.2.17.3.zip", "2.17.4": "https://downloads.wordpress.org/theme/phlox.2.17.4.zip", "2.17.6": "https://downloads.wordpress.org/theme/phlox.2.17.6.zip", "2.17.7": "https://downloads.wordpress.org/theme/phlox.2.17.7.zip", "2.2.10": "https://downloads.wordpress.org/theme/phlox.2.2.10.zip", "2.2.14": "https://downloads.wordpress.org/theme/phlox.2.2.14.zip", "2.2.15": "https://downloads.wordpress.org/theme/phlox.2.2.15.zip", "2.2.16": "https://downloads.wordpress.org/theme/phlox.2.2.16.zip", "2.2.18": "https://downloads.wordpress.org/theme/phlox.2.2.18.zip", "2.2.20": "https://downloads.wordpress.org/theme/phlox.2.2.20.zip", "2.2.21": "https://downloads.wordpress.org/theme/phlox.2.2.21.zip", "2.2.24": "https://downloads.wordpress.org/theme/phlox.2.2.24.zip", "2.2.26": "https://downloads.wordpress.org/theme/phlox.2.2.26.zip", "2.3.11": "https://downloads.wordpress.org/theme/phlox.2.3.11.zip", "2.3.12": "https://downloads.wordpress.org/theme/phlox.2.3.12.zip", "2.4.11": "https://downloads.wordpress.org/theme/phlox.2.4.11.zip", "2.4.13": "https://downloads.wordpress.org/theme/phlox.2.4.13.zip", "2.4.16": "https://downloads.wordpress.org/theme/phlox.2.4.16.zip", "2.4.17": "https://downloads.wordpress.org/theme/phlox.2.4.17.zip", "2.4.18": "https://downloads.wordpress.org/theme/phlox.2.4.18.zip", "2.4.19": "https://downloads.wordpress.org/theme/phlox.2.4.19.zip", "2.4.20": "https://downloads.wordpress.org/theme/phlox.2.4.20.zip", "2.4.21": "https://downloads.wordpress.org/theme/phlox.2.4.21.zip", "2.4.22": "https://downloads.wordpress.org/theme/phlox.2.4.22.zip", "2.5.10": "https://downloads.wordpress.org/theme/phlox.2.5.10.zip", "2.5.11": "https://downloads.wordpress.org/theme/phlox.2.5.11.zip", "2.5.13": "https://downloads.wordpress.org/theme/phlox.2.5.13.zip", "2.5.14": "https://downloads.wordpress.org/theme/phlox.2.5.14.zip", "2.5.19": "https://downloads.wordpress.org/theme/phlox.2.5.19.zip", "2.6.10": "https://downloads.wordpress.org/theme/phlox.2.6.10.zip", "2.6.11": "https://downloads.wordpress.org/theme/phlox.2.6.11.zip", "2.6.12": "https://downloads.wordpress.org/theme/phlox.2.6.12.zip", "2.6.13": "https://downloads.wordpress.org/theme/phlox.2.6.13.zip", "2.6.14": "https://downloads.wordpress.org/theme/phlox.2.6.14.zip", "2.6.15": "https://downloads.wordpress.org/theme/phlox.2.6.15.zip", "2.6.19": "https://downloads.wordpress.org/theme/phlox.2.6.19.zip", "2.7.10": "https://downloads.wordpress.org/theme/phlox.2.7.10.zip", "2.7.13": "https://downloads.wordpress.org/theme/phlox.2.7.13.zip", "2.9.19": "https://downloads.wordpress.org/theme/phlox.2.9.19.zip"}, "downloaded": 1688422, "num_ratings": 850, "preview_url": "https://wp-themes.com/phlox/", "reviews_url": "https://wordpress.org/support/theme/phlox/reviews/", "is_community": false, "last_updated": "2025-06-28", "requires_php": "7.0", "creation_time": "2017-07-31 16:45:08", "download_link": "https://downloads.wordpress.org/theme/phlox.2.17.7.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/phlox/screenshot.png?ver=2.17.7", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-0edb-7178-b218-021a21ccddf6", "name": "Phlox", "slug": "phlox", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1751068800, "version": "2.17.7"}, "last_updated_time": "2025-06-28 10:42:25", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c08-714d-bbb2-a927a0446be5', 'popularfx', 'PopularFX', '1.2.7', 'Lightweight theme to make beautiful websites with Pagelayer. Includes 100s of pre-made templates to design your dream website !', '019a30c1-6612-7144-872f-902d92e684c0', 'https://downloads.wordpress.org/theme/popularfx.1.2.7.zip', NULL, '5.5', '2025-08-13 07:00:06+00', '2020-10-12 05:37:27+00', 'https://wp-themes.com/popularfx/', '//ts.w.org/wp-content/themes/popularfx/screenshot.jpg?ver=1.2.7', 92, 107, 'https://wordpress.org/support/theme/popularfx/reviews/', 1160030, 100000, 'https://wordpress.org/themes/popularfx/', true, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "PopularFX", "slug": "popularfx", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Pagelayer", "avatar": "https://secure.gravatar.com/avatar/da11d7dd9a75193431feed4a3e58a875f78b6180bd032bf980e311f10713bee2?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/pagelayer/", "author_url": "https://pagelayer.com", "display_name": "pagelayer", "user_nicename": "pagelayer"}, "rating": 92, "status": "open", "ratings": {"1": 9, "2": 2, "3": 0, "4": 3, "5": 93}, "version": "1.2.7", "homepage": "https://wordpress.org/themes/popularfx/", "requires": false, "sections": {"description": "Lightweight theme to make beautiful websites with Pagelayer. Includes 100s of pre-made templates to design your dream website !"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/popularfx.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/popularfx.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/popularfx.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/popularfx.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/popularfx.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/popularfx.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/popularfx.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/popularfx.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/popularfx.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/popularfx.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/popularfx.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/popularfx.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/popularfx.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/popularfx.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/popularfx.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/popularfx.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/popularfx.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/popularfx.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/popularfx.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/popularfx.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/popularfx.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/popularfx.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/popularfx.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/popularfx.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/popularfx.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/popularfx.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/popularfx.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/popularfx.1.2.7.zip"}, "downloaded": 1160030, "num_ratings": 107, "preview_url": "https://wp-themes.com/popularfx/", "reviews_url": "https://wordpress.org/support/theme/popularfx/reviews/", "is_community": false, "last_updated": "2025-08-13", "requires_php": "5.5", "creation_time": "2020-10-12 05:37:27", "download_link": "https://downloads.wordpress.org/theme/popularfx.1.2.7.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/popularfx/screenshot.jpg?ver=1.2.7", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-0f8c-7124-a6fb-815b55c07b0a", "name": "PopularFX", "slug": "popularfx", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1755043200, "version": "1.2.7"}, "last_updated_time": "2025-08-13 07:00:06", "external_support_url": "", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c13-732e-9140-db464ac1450e', 'popularis-ecommerce', 'Popularis eCommerce', '1.0.3', 'Popularis eCommerce is a fast, clean and modern-looking responsive WooCommerce theme for WordPress. Theme works perfect with any of favorite page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Popularis eCommerce is WooCommerce ready, lightweight, easy to use, responsive and SEO friendly. Demo: https://populariswp.com/popularis-ecommerce/', '019a30c1-6c12-7394-92ce-e9db710d1421', 'https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.3.zip', NULL, '5.6', '2025-04-25 10:31:07+00', '2024-08-09 07:42:00+00', 'https://wp-themes.com/popularis-ecommerce/', '//ts.w.org/wp-content/themes/popularis-ecommerce/screenshot.png?ver=1.0.3', 0, 0, 'https://wordpress.org/support/theme/popularis-ecommerce/reviews/', 40101, 10000, 'https://wordpress.org/themes/popularis-ecommerce/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Popularis eCommerce", "slug": "popularis-ecommerce", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Themes4WP", "avatar": "https://secure.gravatar.com/avatar/d66171b523442c9691a1dbb427256a39b38169482ce03abbe77b03932e2de69a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themes4wp/", "author_url": "https://themes4wp.com/", "display_name": "Themes4WP", "user_nicename": "themes4wp"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.3", "homepage": "https://wordpress.org/themes/popularis-ecommerce/", "requires": false, "sections": {"description": "Popularis eCommerce is a fast, clean and modern-looking responsive WooCommerce theme for WordPress. Theme works perfect with any of favorite page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Popularis eCommerce is WooCommerce ready, lightweight, easy to use, responsive and SEO friendly. Demo: https://populariswp.com/popularis-ecommerce/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.3.zip"}, "downloaded": 40101, "num_ratings": 0, "preview_url": "https://wp-themes.com/popularis-ecommerce/", "reviews_url": "https://wordpress.org/support/theme/popularis-ecommerce/reviews/", "is_community": false, "last_updated": "2025-04-25", "requires_php": "5.6", "creation_time": "2024-08-09 07:42:00", "download_link": "https://downloads.wordpress.org/theme/popularis-ecommerce.1.0.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/popularis-ecommerce/screenshot.png?ver=1.0.3", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-0fcc-7242-8360-df790d1adefa", "name": "Popularis eCommerce", "slug": "popularis-ecommerce", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1745539200, "version": "1.0.3"}, "last_updated_time": "2025-04-25 10:31:07", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c1d-7136-a305-7ea65145e34e', 'popularis-verse', 'Popularis Verse', '1.0.3', 'Popularis Verse is a fast, clean and modern-looking responsive multipurpose theme for WordPress. Theme works perfect with any of favorite page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Popularis Verse is WooCommerce ready, lightweight, easy to use, responsive and SEO friendly. Demo ready to import: https://populariswp.com/popularis-verse-demo/', '019a30c1-6c12-7394-92ce-e9db710d1421', 'https://downloads.wordpress.org/theme/popularis-verse.1.0.3.zip', NULL, '5.6', '2025-04-25 10:47:48+00', '2023-10-08 09:26:59+00', 'https://wp-themes.com/popularis-verse/', '//ts.w.org/wp-content/themes/popularis-verse/screenshot.png?ver=1.0.3', 0, 0, 'https://wordpress.org/support/theme/popularis-verse/reviews/', 37770, 10000, 'https://wordpress.org/themes/popularis-verse/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Popularis Verse", "slug": "popularis-verse", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Themes4WP", "avatar": "https://secure.gravatar.com/avatar/d66171b523442c9691a1dbb427256a39b38169482ce03abbe77b03932e2de69a?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themes4wp/", "author_url": "https://themes4wp.com/", "display_name": "Themes4WP", "user_nicename": "themes4wp"}, "parent": {"name": "Popularis", "slug": "popularis", "homepage": "https://wordpress.org/themes/popularis/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.3", "homepage": "https://wordpress.org/themes/popularis-verse/", "requires": false, "sections": {"description": "Popularis Verse is a fast, clean and modern-looking responsive multipurpose theme for WordPress. Theme works perfect with any of favorite page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Visual Composer, etc. Popularis Verse is WooCommerce ready, lightweight, easy to use, responsive and SEO friendly. Demo ready to import: https://populariswp.com/popularis-verse-demo/"}, "template": "popularis", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/popularis-verse.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/popularis-verse.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/popularis-verse.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/popularis-verse.1.0.3.zip"}, "downloaded": 37770, "num_ratings": 0, "preview_url": "https://wp-themes.com/popularis-verse/", "reviews_url": "https://wordpress.org/support/theme/popularis-verse/reviews/", "is_community": false, "last_updated": "2025-04-25", "requires_php": "5.6", "creation_time": "2023-10-08 09:26:59", "download_link": "https://downloads.wordpress.org/theme/popularis-verse.1.0.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/popularis-verse/screenshot.png?ver=1.0.3", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-1015-70ae-8bc9-b4265d684404", "name": "Popularis Verse", "slug": "popularis-verse", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1745539200, "version": "1.0.3"}, "last_updated_time": "2025-04-25 10:47:48", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c26-7232-a3ae-096a16284e54', 'prespa', 'Prespa', '1.7.0', 'Prespa is a next-generation multi-purpose WordPress theme. It is perfect for a blog, portfolio website, digital agency, marketing, seo, consulting, sass application website, e-commerce shop as well as any type of corporate, finance and agency website. You will be surprised how many options this generous theme provides. At the same time, a serious effort has been made to optimize the theme for speed. No Jquery, Bootstrap, Font Awesome or any other third-party library to slow you down - it uses only core WordPress functions and clean html5/css3 tempates. With our beautiful block patterns, you will be able to get started in minutes. No coding skills needed. A lot of time and effort has been spent to optimize the theme for SEO and it uses Schema.org markup (microdata) to help you rank higher in the search results. The theme is highly customizable and easy to adapt to any design. All theme demos have been made with the Gutenberg editor, which means you do not have to install any additional plugins to use the theme. At the same time, the theme also fully supports the good old Classic editor. Effortless integrations with all the popular WordPress plugins, e.g. WooCommerce is also fully guaranteed. The theme is specifically designed to make your content stand out from the crowd and it is very well thought in terms of UX/UI. Protect your visitors'' eyes by allowing them to switch between day and night mode (light and dark mode) with a single click. Oh, and just like with our other themes, updates will keep on coming, constantly improving the codebase and keeping it up to date to the modern web standards. Still not convinved? Check the theme demo at https://prespa-demo.nasiothemes.com/ Theme documentation: https://nasiothemes.com/prespa-theme-documentation/', '019a30c1-6c25-70be-819c-7519c098d5b0', 'https://downloads.wordpress.org/theme/prespa.1.7.0.zip', '6.1', '5.6', '2025-10-15 21:45:12+00', '2023-10-16 09:56:47+00', 'https://wp-themes.com/prespa/', '//ts.w.org/wp-content/themes/prespa/screenshot.png?ver=1.7.0', 100, 6, 'https://wordpress.org/support/theme/prespa/reviews/', 73069, 7000, 'https://wordpress.org/themes/prespa/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Prespa", "slug": "prespa", "tags": {"blog": "Blog", "news": "News", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "Atanas Yonkov", "avatar": "https://secure.gravatar.com/avatar/c5bdd1df8fa397841dcac96df705e2d5ddf969dbe45423e3e81f041eec3e92d4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nravota12/", "author_url": "https://nasiothemes.com/", "display_name": "Atanas Yonkov", "user_nicename": "nravota12"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 6}, "version": "1.7.0", "homepage": "https://wordpress.org/themes/prespa/", "requires": "6.1", "sections": {"description": "Prespa is a next-generation multi-purpose WordPress theme. It is perfect for a blog, portfolio website, digital agency, marketing, seo, consulting, sass application website, e-commerce shop as well as any type of corporate, finance and agency website. You will be surprised how many options this generous theme provides. At the same time, a serious effort has been made to optimize the theme for speed. No Jquery, Bootstrap, Font Awesome or any other third-party library to slow you down - it uses only core WordPress functions and clean html5/css3 tempates. With our beautiful block patterns, you will be able to get started in minutes. No coding skills needed. A lot of time and effort has been spent to optimize the theme for SEO and it uses Schema.org markup (microdata) to help you rank higher in the search results. The theme is highly customizable and easy to adapt to any design. All theme demos have been made with the Gutenberg editor, which means you do not have to install any additional plugins to use the theme. At the same time, the theme also fully supports the good old Classic editor. Effortless integrations with all the popular WordPress plugins, e.g. WooCommerce is also fully guaranteed. The theme is specifically designed to make your content stand out from the crowd and it is very well thought in terms of UX/UI. Protect your visitors'' eyes by allowing them to switch between day and night mode (light and dark mode) with a single click. Oh, and just like with our other themes, updates will keep on coming, constantly improving the codebase and keeping it up to date to the modern web standards. Still not convinved? Check the theme demo at https://prespa-demo.nasiothemes.com/ Theme documentation: https://nasiothemes.com/prespa-theme-documentation/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/prespa.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/prespa.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/prespa.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/prespa.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/prespa.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/prespa.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/prespa.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/prespa.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/prespa.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/prespa.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/prespa.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/prespa.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/prespa.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/prespa.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/prespa.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/prespa.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/prespa.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/prespa.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/prespa.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/prespa.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/prespa.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/prespa.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/prespa.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/prespa.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/prespa.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/prespa.1.2.5.zip", "1.2.6": "https://downloads.wordpress.org/theme/prespa.1.2.6.zip", "1.2.7": "https://downloads.wordpress.org/theme/prespa.1.2.7.zip", "1.2.8": "https://downloads.wordpress.org/theme/prespa.1.2.8.zip", "1.2.9": "https://downloads.wordpress.org/theme/prespa.1.2.9.zip", "1.3.0": "https://downloads.wordpress.org/theme/prespa.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/prespa.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/prespa.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/prespa.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/prespa.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/prespa.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/prespa.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/prespa.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/prespa.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/prespa.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/prespa.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/prespa.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/prespa.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/prespa.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/prespa.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/prespa.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/prespa.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/prespa.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/prespa.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/prespa.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/prespa.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/prespa.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/prespa.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/prespa.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/prespa.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/prespa.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/prespa.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/prespa.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/prespa.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/prespa.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/prespa.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/prespa.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/prespa.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/prespa.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/prespa.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/prespa.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/prespa.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/prespa.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/prespa.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/prespa.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/prespa.1.7.0.zip"}, "downloaded": 73069, "num_ratings": 6, "preview_url": "https://wp-themes.com/prespa/", "reviews_url": "https://wordpress.org/support/theme/prespa/reviews/", "is_community": false, "last_updated": "2025-10-15", "requires_php": "5.6", "creation_time": "2023-10-16 09:56:47", "download_link": "https://downloads.wordpress.org/theme/prespa.1.7.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/prespa/screenshot.png?ver=1.7.0", "active_installs": 7000, "aspiresync_meta": {"id": "019a30c0-100f-72e3-a3cf-4f26437b183d", "name": "Prespa", "slug": "prespa", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1760486400, "version": "1.7.0"}, "last_updated_time": "2025-10-15 21:45:12", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c34-7043-a418-cac30e683280', 'prespa-lms', 'Prespa LMS', '1.0.2', 'Prespa LMS serves as a child theme of Prespa, inheriting all the features of Prespa. It is a minimalist and simple e-learning theme that can be used as a learning management system to manage free and premium courses. The theme integrates flawlessly with Tutor LMS and WooCommerce plugins to create the best possible learning experience. It is suitable for schools, student portals, teacher portals, education centers, universities, virtual classrooms, educational portals, training centers, coaching platforms and others. You can create unlimited courses, quizes and online assessments, as well as manage students and instructors or even create Udemy or Coursera type of website to allow others to sell their courses on your platform. Theme demo: https://prespa-lms-demo.nasiothemes.com/', '019a30c1-6c25-70be-819c-7519c098d5b0', 'https://downloads.wordpress.org/theme/prespa-lms.1.0.2.zip', '6.1', '5.6', '2025-08-07 23:43:43+00', '2025-08-07 08:46:05+00', 'https://wp-themes.com/prespa-lms/', '//ts.w.org/wp-content/themes/prespa-lms/screenshot.jpg?ver=1.0.2', 0, 0, 'https://wordpress.org/support/theme/prespa-lms/reviews/', 2191, 1000, 'https://wordpress.org/themes/prespa-lms/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Prespa LMS", "slug": "prespa-lms", "tags": {"education": "Education", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "four-columns": "Four columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "Atanas Yonkov", "avatar": "https://secure.gravatar.com/avatar/c5bdd1df8fa397841dcac96df705e2d5ddf969dbe45423e3e81f041eec3e92d4?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/nravota12/", "author_url": "http://nasiothemes.com", "display_name": "Atanas Yonkov", "user_nicename": "nravota12"}, "parent": {"name": "Prespa", "slug": "prespa", "homepage": "https://wordpress.org/themes/prespa/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.2", "homepage": "https://wordpress.org/themes/prespa-lms/", "requires": "6.1", "sections": {"description": "Prespa LMS serves as a child theme of Prespa, inheriting all the features of Prespa. It is a minimalist and simple e-learning theme that can be used as a learning management system to manage free and premium courses. The theme integrates flawlessly with Tutor LMS and WooCommerce plugins to create the best possible learning experience. It is suitable for schools, student portals, teacher portals, education centers, universities, virtual classrooms, educational portals, training centers, coaching platforms and others. You can create unlimited courses, quizes and online assessments, as well as manage students and instructors or even create Udemy or Coursera type of website to allow others to sell their courses on your platform. Theme demo: https://prespa-lms-demo.nasiothemes.com/"}, "template": "prespa", "versions": {"1.0.0": "https://downloads.wordpress.org/theme/prespa-lms.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/prespa-lms.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/prespa-lms.1.0.2.zip"}, "downloaded": 2191, "num_ratings": 0, "preview_url": "https://wp-themes.com/prespa-lms/", "reviews_url": "https://wordpress.org/support/theme/prespa-lms/reviews/", "is_community": false, "last_updated": "2025-08-07", "requires_php": "5.6", "creation_time": "2025-08-07 08:46:05", "download_link": "https://downloads.wordpress.org/theme/prespa-lms.1.0.2.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/prespa-lms/screenshot.jpg?ver=1.0.2", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-10c8-7227-949f-cd8678e72a33", "name": "Prespa LMS", "slug": "prespa-lms", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1754524800, "version": "1.0.2"}, "last_updated_time": "2025-08-07 23:43:43", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c41-7002-90ed-cd3087fb9fad', 'pulse-news', 'Pulse News', '0.2', 'Pulse News a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Pulse News suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Pulse News is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://newsup.themeansar.com/pulse-news/ and documentation at https://docs.themeansar.com/docs/newsup/', '019a30c1-6978-7136-bde3-dea4a4e47c02', 'https://downloads.wordpress.org/theme/pulse-news.0.2.zip', '6.7', '7.4', '2025-08-07 04:37:14+00', '2025-08-06 16:31:44+00', 'https://wp-themes.com/pulse-news/', '//ts.w.org/wp-content/themes/pulse-news/screenshot.jpg?ver=0.2', 0, 0, 'https://wordpress.org/support/theme/pulse-news/reviews/', 4005, 1000, 'https://wordpress.org/themes/pulse-news/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Pulse News", "slug": "pulse-news", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeansar", "avatar": "https://secure.gravatar.com/avatar/8e83710060c45a380965d93d7a1d1b8f73258a4d7e313d3802d695f9cd60510d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeansar/", "author_url": "https://themeansar.com", "display_name": "themeansar", "user_nicename": "themeansar"}, "parent": {"name": "Newsup", "slug": "newsup", "homepage": "https://wordpress.org/themes/newsup/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "0.2", "homepage": "https://wordpress.org/themes/pulse-news/", "requires": "6.7", "sections": {"description": "Pulse News a fast, clean, modern-looking Best Responsive News Magazine WordPress theme. The theme is fully widgetized, so users can manage the content by using easy to use widgets. Pulse News suitable for dynamic news, newspapers, magazine, publishers, blogs, editors, online and gaming magazines, newsportals,personal blogs, newspaper, publishing or review siteand any creative website. Pulse News is SEO friendly, WPML,Gutenberg, translation and RTL ready. Live preview : https://newsup.themeansar.com/pulse-news/ and documentation at https://docs.themeansar.com/docs/newsup/"}, "template": "newsup", "versions": {"0.1": "https://downloads.wordpress.org/theme/pulse-news.0.1.zip", "0.2": "https://downloads.wordpress.org/theme/pulse-news.0.2.zip"}, "downloaded": 4005, "num_ratings": 0, "preview_url": "https://wp-themes.com/pulse-news/", "reviews_url": "https://wordpress.org/support/theme/pulse-news/reviews/", "is_community": false, "last_updated": "2025-08-07", "requires_php": "7.4", "creation_time": "2025-08-06 16:31:44", "download_link": "https://downloads.wordpress.org/theme/pulse-news.0.2.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/pulse-news/screenshot.jpg?ver=0.2", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-1084-710c-8852-9a45e2fc7b49", "name": "Pulse News", "slug": "pulse-news", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1754524800, "version": "0.2"}, "last_updated_time": "2025-08-07 04:37:14", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c4d-72ed-8a3a-92ff511a736d', 'raft', 'Raft', '1.1.10', 'Raft is a lightweight, full-site-editing compatible (FSE) theme ready for your next website. Raft is a super fast, easily customizable, simple theme. It’s perfect for blogs, small business, startups, agencies, firms, e-commerce shops (WooCommerce storefront) as well as personal portfolio sites and most types of projects. Raft works perfectly with Gutenberg and the most popular page builders (Elementor, Brizy, Beaver Builder or the Block Editor). Raft is also WooCommerce ready, responsive, RTL & translation ready. Learn more at https://themeisle.com/themes/raft/.', '019a30c1-6ac1-7121-89c0-4a1bdc1c7842', 'https://downloads.wordpress.org/theme/raft.1.1.10.zip', '5.5', '7.0', '2025-09-05 11:20:33+00', '2022-10-06 02:56:42+00', 'https://wp-themes.com/raft/', '//ts.w.org/wp-content/themes/raft/screenshot.png?ver=1.1.10', 98, 46, 'https://wordpress.org/support/theme/raft/reviews/', 236161, 10000, 'https://wordpress.org/themes/raft/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Raft", "slug": "raft", "tags": {"e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemeIsle", "avatar": "https://secure.gravatar.com/avatar/91e46225a693950a8f2350674124a8e3ceddb0f705fa988377646322729e3d7c?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeisle/", "author_url": "https://themeisle.com", "display_name": "Themeisle", "user_nicename": "themeisle"}, "rating": 98, "status": "open", "ratings": {"1": 0, "2": 0, "3": 1, "4": 2, "5": 43}, "version": "1.1.10", "homepage": "https://wordpress.org/themes/raft/", "requires": "5.5", "sections": {"description": "Raft is a lightweight, full-site-editing compatible (FSE) theme ready for your next website. Raft is a super fast, easily customizable, simple theme. It’s perfect for blogs, small business, startups, agencies, firms, e-commerce shops (WooCommerce storefront) as well as personal portfolio sites and most types of projects. Raft works perfectly with Gutenberg and the most popular page builders (Elementor, Brizy, Beaver Builder or the Block Editor). Raft is also WooCommerce ready, responsive, RTL & translation ready. Learn more at https://themeisle.com/themes/raft/."}, "versions": {"1.0.1": "https://downloads.wordpress.org/theme/raft.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/raft.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/raft.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/raft.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/raft.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/raft.1.0.6.zip", "1.1.0": "https://downloads.wordpress.org/theme/raft.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/raft.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/raft.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/raft.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/raft.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/raft.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/raft.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/raft.1.1.7.zip", "1.1.9": "https://downloads.wordpress.org/theme/raft.1.1.9.zip", "1.1.10": "https://downloads.wordpress.org/theme/raft.1.1.10.zip"}, "downloaded": 236161, "num_ratings": 46, "preview_url": "https://wp-themes.com/raft/", "reviews_url": "https://wordpress.org/support/theme/raft/reviews/", "is_community": false, "last_updated": "2025-09-05", "requires_php": "7.0", "creation_time": "2022-10-06 02:56:42", "download_link": "https://downloads.wordpress.org/theme/raft.1.1.10.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/raft/screenshot.png?ver=1.1.10", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-106d-7237-8fcd-493a24f88b2f", "name": "Raft", "slug": "raft", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1757030400, "version": "1.1.10"}, "last_updated_time": "2025-09-05 11:20:33", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c56-7330-9b1d-85e2ee0478f0', 'rife-free', 'Rife Free', '2.4.21', 'Rife Free is a great portfolio and photography WP theme with 7 ready-to-use demo layouts. It is also perfect for business, blogging websites and for your shop because it is WooCommerce compatible. More cool features in the Rife theme are the: ✓ Writing Effect ✓ One Page Mode ✓ Mobile/Touch Friendly Image & Video Slider ✓ Bricks Gallery for Photographers ✓ Mega Menu ✓ Post Grid ✓ Google Fonts ✓ Hidden Sidebar and many more. Over 450 options to change in the Customizer and much more in each page, post, album or work. We also integrate Schema.org which helps your website be more visible to search engines. Elementor compatibility will help you make your great website even more natural. The theme is RTL and translation-ready (WPML). ★ Check our demos for more details: https://apollo13themes.com/rife/designs/', '019a30c1-6c56-7330-9b1d-85e2edc8f322', 'https://downloads.wordpress.org/theme/rife-free.2.4.21.zip', '4.7', '5.3.0', '2024-05-27 19:20:53+00', '2019-01-02 11:07:09+00', 'https://wp-themes.com/rife-free/', '//ts.w.org/wp-content/themes/rife-free/screenshot.png?ver=2.4.21', 98, 354, 'https://wordpress.org/support/theme/rife-free/reviews/', 735382, 20000, 'https://wordpress.org/themes/rife-free/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Rife Free", "slug": "rife-free", "tags": {"portfolio": "Portfolio", "e-commerce": "E-commerce", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "photography": "Photography", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Apollo13Themes", "avatar": "https://secure.gravatar.com/avatar/dc88d5a1f74865808b534e34828aa8f21c5a61fc5311873516e6bac493b0c8fd?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/apollo13themes/", "author_url": "https://apollo13themes.com/", "display_name": "apollo13themes", "user_nicename": "apollo13themes"}, "rating": 98, "status": "open", "ratings": {"1": 2, "2": 1, "3": 3, "4": 8, "5": 340}, "version": "2.4.21", "homepage": "https://wordpress.org/themes/rife-free/", "requires": "4.7", "sections": {"description": "Rife Free is a great portfolio and photography WP theme with 7 ready-to-use demo layouts. It is also perfect for business, blogging websites and for your shop because it is WooCommerce compatible. More cool features in the Rife theme are the: ✓ Writing Effect ✓ One Page Mode ✓ Mobile/Touch Friendly Image & Video Slider ✓ Bricks Gallery for Photographers ✓ Mega Menu ✓ Post Grid ✓ Google Fonts ✓ Hidden Sidebar and many more. Over 450 options to change in the Customizer and much more in each page, post, album or work. We also integrate Schema.org which helps your website be more visible to search engines. Elementor compatibility will help you make your great website even more natural. The theme is RTL and translation-ready (WPML). ★ Check our demos for more details: https://apollo13themes.com/rife/designs/"}, "versions": {"1.8.1": "https://downloads.wordpress.org/theme/rife-free.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/rife-free.1.8.2.zip", "1.9.1": "https://downloads.wordpress.org/theme/rife-free.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/theme/rife-free.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/theme/rife-free.1.9.3.zip", "2.0.0": "https://downloads.wordpress.org/theme/rife-free.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/rife-free.2.0.1.zip", "2.1.0": "https://downloads.wordpress.org/theme/rife-free.2.1.0.zip", "2.2.0": "https://downloads.wordpress.org/theme/rife-free.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/rife-free.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/rife-free.2.2.2.zip", "2.3.0": "https://downloads.wordpress.org/theme/rife-free.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/rife-free.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/rife-free.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/rife-free.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/rife-free.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/rife-free.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/rife-free.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/rife-free.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/rife-free.2.3.8.zip", "2.4.0": "https://downloads.wordpress.org/theme/rife-free.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/rife-free.2.4.1.zip", "2.4.3": "https://downloads.wordpress.org/theme/rife-free.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/theme/rife-free.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/theme/rife-free.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/theme/rife-free.2.4.6.zip", "2.4.7": "https://downloads.wordpress.org/theme/rife-free.2.4.7.zip", "2.4.8": "https://downloads.wordpress.org/theme/rife-free.2.4.8.zip", "2.4.9": "https://downloads.wordpress.org/theme/rife-free.2.4.9.zip", "1.11.2": "https://downloads.wordpress.org/theme/rife-free.1.11.2.zip", "2.4.10": "https://downloads.wordpress.org/theme/rife-free.2.4.10.zip", "2.4.11": "https://downloads.wordpress.org/theme/rife-free.2.4.11.zip", "2.4.12": "https://downloads.wordpress.org/theme/rife-free.2.4.12.zip", "2.4.13": "https://downloads.wordpress.org/theme/rife-free.2.4.13.zip", "2.4.14": "https://downloads.wordpress.org/theme/rife-free.2.4.14.zip", "2.4.15": "https://downloads.wordpress.org/theme/rife-free.2.4.15.zip", "2.4.16": "https://downloads.wordpress.org/theme/rife-free.2.4.16.zip", "2.4.17": "https://downloads.wordpress.org/theme/rife-free.2.4.17.zip", "2.4.18": "https://downloads.wordpress.org/theme/rife-free.2.4.18.zip", "2.4.19": "https://downloads.wordpress.org/theme/rife-free.2.4.19.zip", "2.4.20": "https://downloads.wordpress.org/theme/rife-free.2.4.20.zip", "2.4.21": "https://downloads.wordpress.org/theme/rife-free.2.4.21.zip", "1.9.1.1": "https://downloads.wordpress.org/theme/rife-free.1.9.1.1.zip", "2.1.0.1": "https://downloads.wordpress.org/theme/rife-free.2.1.0.1.zip", "2.1.0.2": "https://downloads.wordpress.org/theme/rife-free.2.1.0.2.zip", "2.2.0.1": "https://downloads.wordpress.org/theme/rife-free.2.2.0.1.zip", "2.3.4.1": "https://downloads.wordpress.org/theme/rife-free.2.3.4.1.zip", "2.3.6.1": "https://downloads.wordpress.org/theme/rife-free.2.3.6.1.zip", "2.4.4.1": "https://downloads.wordpress.org/theme/rife-free.2.4.4.1.zip", "2.4.16.1": "https://downloads.wordpress.org/theme/rife-free.2.4.16.1.zip"}, "downloaded": 735382, "num_ratings": 354, "preview_url": "https://wp-themes.com/rife-free/", "reviews_url": "https://wordpress.org/support/theme/rife-free/reviews/", "is_community": false, "last_updated": "2024-05-27", "requires_php": "5.3.0", "creation_time": "2019-01-02 11:07:09", "download_link": "https://downloads.wordpress.org/theme/rife-free.2.4.21.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/rife-free/screenshot.png?ver=2.4.21", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-1073-72c1-8791-4f32a2eacacc", "name": "Rife Free", "slug": "rife-free", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1716768000, "version": "2.4.21"}, "last_updated_time": "2024-05-27 19:20:53", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c62-73ba-b6a6-9ffe7489e06e', 'royal-elementor-kit', 'Royal Elementor Kit', '1.0.139', 'Truly all in one Solution For Elementor Lovers. 140+ Elementor Templates KIT, 100+ Professional Elementor Widgets, Elementor theme builder, Elementor Popup Builder, Elementor Premade blocks and many other cool features like Sticky Header, Particle effects, parallax backgrounds and many other elementor addons. Simple Install the theme, click on - Get Started with Templates Kit button and that''s it. Very easy to use even for WordPress beginners or professionals. All In one Elementor Solution which outranks all other Elementor themes and Elementor addons. ########### TEMPLATES INCLUDED: Elementor Blog Template, Elementor Magazine Blog Template, Elementor Food Blog Template, Elementor Travel Blog Template, Elementor Portfolio Template, Elementor NFT Template, Elementor Pizza Restaurant Template, Elementor Travel Blogger & Influencer Template, Elementor Cybersecurity Template, Elementor Photographer Portfolio Template, Elementor Crypto Currency Template, Elementor Skin Care Template, Elementor Lawyer Template, Elementor Medical Template, Elementor Digital Agency Template, Elementor Drone Template, Elementro Architecture Template, Elementor Food Delivery Template, Elementor Construction Template, Elementor IT Technology Template, Elementor Real Estate Template, Elementor Restaurant Template, Elementor Wine Bar & Restaurant Template, Elementor Wedding Template & other beautiful elementor business templates. All these templates are created with elementor page builder. Theme Demo Page: https://royal-elementor-addons.com/royal-elementor-kit/', '019a30c1-66ba-7148-a405-f3d5ab06eee1', 'https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.139.zip', '4.7', '5.2', '2025-10-01 05:38:13+00', '2022-04-18 08:50:38+00', 'https://wp-themes.com/royal-elementor-kit/', '//ts.w.org/wp-content/themes/royal-elementor-kit/screenshot.png?ver=1.0.139', 100, 88, 'https://wordpress.org/support/theme/royal-elementor-kit/reviews/', 910362, 100000, 'https://wordpress.org/themes/royal-elementor-kit/', true, 'https://royal-elementor-addons.com/contactus/', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Royal Elementor Kit", "slug": "royal-elementor-kit", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "custom-colors": "Custom colors", "theme-options": "Theme options", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "WP Royal", "avatar": "https://secure.gravatar.com/avatar/078c5c148dcfcc4983cb3fce756683ce03d7aebb69f1fb9e8ea08232e4b01fea?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wproyal/", "author_url": "https://royal-elementor-addons.com/", "display_name": "WP Royal", "user_nicename": "wproyal"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 4, "5": 84}, "version": "1.0.139", "homepage": "https://wordpress.org/themes/royal-elementor-kit/", "requires": "4.7", "sections": {"description": "Truly all in one Solution For Elementor Lovers. 140+ Elementor Templates KIT, 100+ Professional Elementor Widgets, Elementor theme builder, Elementor Popup Builder, Elementor Premade blocks and many other cool features like Sticky Header, Particle effects, parallax backgrounds and many other elementor addons. Simple Install the theme, click on - Get Started with Templates Kit button and that''s it. Very easy to use even for WordPress beginners or professionals. All In one Elementor Solution which outranks all other Elementor themes and Elementor addons. ########### TEMPLATES INCLUDED: Elementor Blog Template, Elementor Magazine Blog Template, Elementor Food Blog Template, Elementor Travel Blog Template, Elementor Portfolio Template, Elementor NFT Template, Elementor Pizza Restaurant Template, Elementor Travel Blogger & Influencer Template, Elementor Cybersecurity Template, Elementor Photographer Portfolio Template, Elementor Crypto Currency Template, Elementor Skin Care Template, Elementor Lawyer Template, Elementor Medical Template, Elementor Digital Agency Template, Elementor Drone Template, Elementro Architecture Template, Elementor Food Delivery Template, Elementor Construction Template, Elementor IT Technology Template, Elementor Real Estate Template, Elementor Restaurant Template, Elementor Wine Bar & Restaurant Template, Elementor Wedding Template & other beautiful elementor business templates. All these templates are created with elementor page builder. Theme Demo Page: https://royal-elementor-addons.com/royal-elementor-kit/"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.9.zip", "1.0.91": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.91.zip", "1.0.92": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.92.zip", "1.0.93": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.93.zip", "1.0.94": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.94.zip", "1.0.95": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.95.zip", "1.0.96": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.96.zip", "1.0.97": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.97.zip", "1.0.98": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.98.zip", "1.0.99": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.99.zip", "1.0.100": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.100.zip", "1.0.101": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.101.zip", "1.0.102": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.102.zip", "1.0.103": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.103.zip", "1.0.104": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.104.zip", "1.0.105": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.105.zip", "1.0.106": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.106.zip", "1.0.107": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.107.zip", "1.0.108": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.108.zip", "1.0.109": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.109.zip", "1.0.110": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.110.zip", "1.0.111": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.111.zip", "1.0.112": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.112.zip", "1.0.113": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.113.zip", "1.0.114": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.114.zip", "1.0.115": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.115.zip", "1.0.116": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.116.zip", "1.0.117": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.117.zip", "1.0.118": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.118.zip", "1.0.119": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.119.zip", "1.0.120": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.120.zip", "1.0.121": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.121.zip", "1.0.122": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.122.zip", "1.0.123": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.123.zip", "1.0.124": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.124.zip", "1.0.125": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.125.zip", "1.0.126": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.126.zip", "1.0.127": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.127.zip", "1.0.128": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.128.zip", "1.0.129": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.129.zip", "1.0.130": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.130.zip", "1.0.131": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.131.zip", "1.0.132": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.132.zip", "1.0.133": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.133.zip", "1.0.134": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.134.zip", "1.0.135": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.135.zip", "1.0.136": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.136.zip", "1.0.137": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.137.zip", "1.0.138": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.138.zip", "1.0.139": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.139.zip"}, "downloaded": 910362, "num_ratings": 88, "preview_url": "https://wp-themes.com/royal-elementor-kit/", "reviews_url": "https://wordpress.org/support/theme/royal-elementor-kit/reviews/", "is_community": false, "last_updated": "2025-10-01", "requires_php": "5.2", "creation_time": "2022-04-18 08:50:38", "download_link": "https://downloads.wordpress.org/theme/royal-elementor-kit.1.0.139.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/royal-elementor-kit/screenshot.png?ver=1.0.139", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-1089-7064-b080-d72caff046ae", "name": "Royal Elementor Kit", "slug": "royal-elementor-kit", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1759276800, "version": "1.0.139"}, "last_updated_time": "2025-10-01 05:38:13", "external_support_url": "https://royal-elementor-addons.com/contactus/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c6b-70b1-ba99-12901a943093', 'rufous', 'Rufous', '1.0.41', 'Rufous is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Rufous is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.', '019a30c1-69d2-7156-b9cf-ce8906962bef', 'https://downloads.wordpress.org/theme/rufous.1.0.41.zip', '5.8', '7.1', '2025-04-15 08:39:37+00', '2024-09-20 07:56:47+00', 'https://wp-themes.com/rufous/', '//ts.w.org/wp-content/themes/rufous/screenshot.jpg?ver=1.0.41', 46, 3, 'https://wordpress.org/support/theme/rufous/reviews/', 77183, 9000, 'https://wordpress.org/themes/rufous/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Rufous", "slug": "rufous", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://kubiobuilder.com", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 46, "status": "open", "ratings": {"1": 2, "2": 0, "3": 0, "4": 0, "5": 1}, "version": "1.0.41", "homepage": "https://wordpress.org/themes/rufous/", "requires": "5.8", "sections": {"description": "Rufous is an innovative, easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Rufous is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom."}, "versions": {"1.0.9": "https://downloads.wordpress.org/theme/rufous.1.0.9.zip", "1.0.10": "https://downloads.wordpress.org/theme/rufous.1.0.10.zip", "1.0.13": "https://downloads.wordpress.org/theme/rufous.1.0.13.zip", "1.0.16": "https://downloads.wordpress.org/theme/rufous.1.0.16.zip", "1.0.23": "https://downloads.wordpress.org/theme/rufous.1.0.23.zip", "1.0.24": "https://downloads.wordpress.org/theme/rufous.1.0.24.zip", "1.0.40": "https://downloads.wordpress.org/theme/rufous.1.0.40.zip", "1.0.41": "https://downloads.wordpress.org/theme/rufous.1.0.41.zip"}, "downloaded": 77183, "num_ratings": 3, "preview_url": "https://wp-themes.com/rufous/", "reviews_url": "https://wordpress.org/support/theme/rufous/reviews/", "is_community": false, "last_updated": "2025-04-15", "requires_php": "7.1", "creation_time": "2024-09-20 07:56:47", "download_link": "https://downloads.wordpress.org/theme/rufous.1.0.41.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/rufous/screenshot.jpg?ver=1.0.41", "active_installs": 9000, "aspiresync_meta": {"id": "019a30c0-10ce-71ea-8db2-d707b731c694", "name": "Rufous", "slug": "rufous", "type": "theme", "origin": "wp_org", "pulled": 1761754484, "status": "open", "checked": 1761754484, "updated": 1744675200, "version": "1.0.41"}, "last_updated_time": "2025-04-15 08:39:37", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c74-7221-aa35-b2c49c9db222', 'saaslauncher', 'SaasLauncher', '1.3.2', 'SaasLauncher is a modern, block-based WordPress theme crafted specifically for SaaS products, startups, agencies, and businesses. Built with Full Site Editing (FSE), it gives you complete control to fully customize every corner of your site—from headers and footers to every page template. With 70+ ready-to-use pre-built sections and 50+ professionally designed starter templates, you can launch your site effortlessly and tailor it to your brand in minutes. Whether you''re building a product landing page, SaaS landing page, agency portfolio, or corporate website, SaasLauncher offers a seamless, flexible, and fast design experience. It''s WooCommerce-ready, responsive, and compatible with popular plugins like Contact Form 7, Rankmath, WPForms, Yoast SEO and more. Plus, it comes with Cozy Blocks’ 50+ advanced Gutenberg blocks, giving you all the tools you need to build stunning websites—your way. Explore features and demos at https://cozythemes.com/saaslauncher-wordpress-theme/.', '019a30c1-6ad0-70c0-8b53-876fa8cbeed4', 'https://downloads.wordpress.org/theme/saaslauncher.1.3.2.zip', '5.9', '7.0', '2025-10-16 10:03:16+00', '2024-11-05 06:57:08+00', 'https://wp-themes.com/saaslauncher/', '//ts.w.org/wp-content/themes/saaslauncher/screenshot.png?ver=1.3.2', 100, 12, 'https://wordpress.org/support/theme/saaslauncher/reviews/', 75275, 6000, 'https://wordpress.org/themes/saaslauncher/', true, 'https://cozythemes.com/saaslauncher-wordpress-theme/', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "SaasLauncher", "slug": "saaslauncher", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "CozyThemes", "avatar": "https://secure.gravatar.com/avatar/7b14e71b9c952a96a4cdb7cbb93ab704ef0c368b08d5ea8323ed4bb506655311?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/cozythemes/", "author_url": "https://cozythemes.com/", "display_name": "CozyThemes", "user_nicename": "cozythemes"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 12}, "version": "1.3.2", "homepage": "https://wordpress.org/themes/saaslauncher/", "requires": "5.9", "sections": {"description": "SaasLauncher is a modern, block-based WordPress theme crafted specifically for SaaS products, startups, agencies, and businesses. Built with Full Site Editing (FSE), it gives you complete control to fully customize every corner of your site—from headers and footers to every page template. With 70+ ready-to-use pre-built sections and 50+ professionally designed starter templates, you can launch your site effortlessly and tailor it to your brand in minutes. Whether you''re building a product landing page, SaaS landing page, agency portfolio, or corporate website, SaasLauncher offers a seamless, flexible, and fast design experience. It''s WooCommerce-ready, responsive, and compatible with popular plugins like Contact Form 7, Rankmath, WPForms, Yoast SEO and more. Plus, it comes with Cozy Blocks’ 50+ advanced Gutenberg blocks, giving you all the tools you need to build stunning websites—your way. Explore features and demos at https://cozythemes.com/saaslauncher-wordpress-theme/."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/saaslauncher.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/saaslauncher.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/saaslauncher.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/saaslauncher.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/saaslauncher.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/saaslauncher.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/saaslauncher.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/saaslauncher.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/saaslauncher.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/saaslauncher.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/saaslauncher.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/saaslauncher.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/saaslauncher.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/saaslauncher.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/saaslauncher.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/saaslauncher.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/saaslauncher.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/saaslauncher.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/saaslauncher.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/saaslauncher.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/saaslauncher.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/saaslauncher.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/saaslauncher.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/saaslauncher.1.2.3.zip", "1.3.0": "https://downloads.wordpress.org/theme/saaslauncher.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/saaslauncher.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/saaslauncher.1.3.2.zip", "1.0.11": "https://downloads.wordpress.org/theme/saaslauncher.1.0.11.zip", "1.0.12": "https://downloads.wordpress.org/theme/saaslauncher.1.0.12.zip", "1.0.13": "https://downloads.wordpress.org/theme/saaslauncher.1.0.13.zip", "1.0.14": "https://downloads.wordpress.org/theme/saaslauncher.1.0.14.zip", "1.0.15": "https://downloads.wordpress.org/theme/saaslauncher.1.0.15.zip", "1.0.16": "https://downloads.wordpress.org/theme/saaslauncher.1.0.16.zip", "1.0.17": "https://downloads.wordpress.org/theme/saaslauncher.1.0.17.zip", "1.0.18": "https://downloads.wordpress.org/theme/saaslauncher.1.0.18.zip", "1.0.19": "https://downloads.wordpress.org/theme/saaslauncher.1.0.19.zip", "1.0.20": "https://downloads.wordpress.org/theme/saaslauncher.1.0.20.zip"}, "downloaded": 75275, "num_ratings": 12, "preview_url": "https://wp-themes.com/saaslauncher/", "reviews_url": "https://wordpress.org/support/theme/saaslauncher/reviews/", "is_community": false, "last_updated": "2025-10-16", "requires_php": "7.0", "creation_time": "2024-11-05 06:57:08", "download_link": "https://downloads.wordpress.org/theme/saaslauncher.1.3.2.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/saaslauncher/screenshot.png?ver=1.3.2", "active_installs": 6000, "aspiresync_meta": {"id": "019a30c0-1170-717a-b068-de97129731a6", "name": "SaasLauncher", "slug": "saaslauncher", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1760572800, "version": "1.3.2"}, "last_updated_time": "2025-10-16 10:03:16", "external_support_url": "https://cozythemes.com/saaslauncher-wordpress-theme/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c7f-728a-b601-17ef47cfefe7', 'silverstorm', 'Silverstorm', '1.0.14', 'A beautiful, very customizable, multipurpose theme that you can use to create amazing websites through drag and drop. It comes with a pre-designed home page, 5 header designs and over 35 ready-to-use content blocks that you can easily customize. You can also design your own custom blocks by combining more than 25 drag and drop components. It offers lots of customization options (video background, slideshow background, header content types, etc) to help you create a website that stands out in no time. It is also designed with responsiveness, to work on mobile devices right out of the box. It is the only theme you will ever need! CHECK OUT THE DEMOS: https://colibriwp.com/go/demos', '019a30c1-69d2-7156-b9cf-ce8906962bef', 'https://downloads.wordpress.org/theme/silverstorm.1.0.14.zip', NULL, '5.8', '2025-04-14 11:52:15+00', '2025-02-20 04:11:52+00', 'https://wp-themes.com/silverstorm/', '//ts.w.org/wp-content/themes/silverstorm/screenshot.jpg?ver=1.0.14', 0, 0, 'https://wordpress.org/support/theme/silverstorm/reviews/', 42300, 6000, 'https://wordpress.org/themes/silverstorm/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Silverstorm", "slug": "silverstorm", "tags": {"portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "two-columns": "Two columns", "custom-header": "Custom header", "entertainment": "Entertainment", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "food-and-drink": "Food & drink", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "Extend Themes", "avatar": "https://secure.gravatar.com/avatar/e0326b0bb8bba6dd3ff27edd7efeb46aad4d9b546872d897fe52ab188ec55108?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/extendthemes/", "author_url": "https://extendthemes.com/", "display_name": "Extend Themes", "user_nicename": "extendthemes"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0.14", "homepage": "https://wordpress.org/themes/silverstorm/", "requires": false, "sections": {"description": "A beautiful, very customizable, multipurpose theme that you can use to create amazing websites through drag and drop. It comes with a pre-designed home page, 5 header designs and over 35 ready-to-use content blocks that you can easily customize. You can also design your own custom blocks by combining more than 25 drag and drop components. It offers lots of customization options (video background, slideshow background, header content types, etc) to help you create a website that stands out in no time. It is also designed with responsiveness, to work on mobile devices right out of the box. It is the only theme you will ever need! CHECK OUT THE DEMOS: https://colibriwp.com/go/demos"}, "versions": {"1.0.9": "https://downloads.wordpress.org/theme/silverstorm.1.0.9.zip", "1.0.12": "https://downloads.wordpress.org/theme/silverstorm.1.0.12.zip", "1.0.14": "https://downloads.wordpress.org/theme/silverstorm.1.0.14.zip"}, "downloaded": 42300, "num_ratings": 0, "preview_url": "https://wp-themes.com/silverstorm/", "reviews_url": "https://wordpress.org/support/theme/silverstorm/reviews/", "is_community": false, "last_updated": "2025-04-14", "requires_php": "5.8", "creation_time": "2025-02-20 04:11:52", "download_link": "https://downloads.wordpress.org/theme/silverstorm.1.0.14.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/silverstorm/screenshot.jpg?ver=1.0.14", "active_installs": 6000, "aspiresync_meta": {"id": "019a30c0-11b7-7040-af6f-999e02f3cfc3", "name": "Silverstorm", "slug": "silverstorm", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744588800, "version": "1.0.14"}, "last_updated_time": "2025-04-14 11:52:15", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c89-729b-8111-27865b6667fa', 'simply-personal-blog', 'Simply Personal Blog', '1.0', 'Simply Personal Blog is a responsive blog theme made for personal bloggers and lifestyle bloggers. Its beautiful and minimalistic look gives this theme a perfectly stylized image whether you''re a food-, fashion-, travel- or lifestyle blogger. Theme Everest is always invested in all forms of optimization and Simply Personal Blog is no exception. In Simply Personal Blog, you''ll find a stylized and highly optimized theme with swift load times across the board without any loss of perfomance and responsiveness. All this is bundled with our built-in first-class SEO ( Search Engine Optimization ) which will help you get a head start on search engines like Google and Bing. Get ready to be noticed, with Simply Personal Blog.', '019a30c1-6a0e-706c-bcef-ea118f2ad1ef', 'https://downloads.wordpress.org/theme/simply-personal-blog.1.0.zip', '4.0', '4.0', '2025-07-25 11:46:13+00', '2025-07-25 11:46:13+00', 'https://wp-themes.com/simply-personal-blog/', '//ts.w.org/wp-content/themes/simply-personal-blog/screenshot.png?ver=1.0', 0, 0, 'https://wordpress.org/support/theme/simply-personal-blog/reviews/', 3778, 1000, 'https://wordpress.org/themes/simply-personal-blog/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Simply Personal Blog", "slug": "simply-personal-blog", "tags": {"blog": "Blog", "news": "News", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "featured-image-header": "Featured image header"}, "author": {"author": "Superbthemescom", "avatar": "https://secure.gravatar.com/avatar/64e0df7601781a06ac84aef62b02deb12e2283ddf03073931e6a6a1c4e972988?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbthemescom/", "author_url": "http://superbthemes.com/", "display_name": "SuperbThemes", "user_nicename": "superbthemescom"}, "parent": {"name": "Personalblogily", "slug": "personalblogily", "homepage": "https://wordpress.org/themes/personalblogily/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0", "homepage": "https://wordpress.org/themes/simply-personal-blog/", "requires": "4.0", "sections": {"description": "Simply Personal Blog is a responsive blog theme made for personal bloggers and lifestyle bloggers. Its beautiful and minimalistic look gives this theme a perfectly stylized image whether you''re a food-, fashion-, travel- or lifestyle blogger. Theme Everest is always invested in all forms of optimization and Simply Personal Blog is no exception. In Simply Personal Blog, you''ll find a stylized and highly optimized theme with swift load times across the board without any loss of perfomance and responsiveness. All this is bundled with our built-in first-class SEO ( Search Engine Optimization ) which will help you get a head start on search engines like Google and Bing. Get ready to be noticed, with Simply Personal Blog."}, "template": "personalblogily", "versions": {"1.0": "https://downloads.wordpress.org/theme/simply-personal-blog.1.0.zip"}, "downloaded": 3778, "num_ratings": 0, "preview_url": "https://wp-themes.com/simply-personal-blog/", "reviews_url": "https://wordpress.org/support/theme/simply-personal-blog/reviews/", "is_community": false, "last_updated": "2025-07-25", "requires_php": "4.0", "creation_time": "2025-07-25 11:46:13", "download_link": "https://downloads.wordpress.org/theme/simply-personal-blog.1.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/simply-personal-blog/screenshot.png?ver=1.0", "active_installs": 1000, "aspiresync_meta": {"id": "019a30c0-1202-706b-98b9-e2f5b2edbef8", "name": "Simply Personal Blog", "slug": "simply-personal-blog", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1753401600, "version": "1.0"}, "last_updated_time": "2025-07-25 11:46:13", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c94-730d-ae56-82a8db5dc5d2', 'spacr', 'Spacr', '1.0.5', 'Spacr is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/spacr/', '019a30c1-6926-72e6-a3c4-dbf8686f02a6', 'https://downloads.wordpress.org/theme/spacr.1.0.5.zip', NULL, '5.6', '2024-11-12 11:50:04+00', '2023-09-25 13:26:44+00', 'https://wp-themes.com/spacr/', '//ts.w.org/wp-content/themes/spacr/screenshot.png?ver=1.0.5', 100, 1, 'https://wordpress.org/support/theme/spacr/reviews/', 63757, 20000, 'https://wordpress.org/themes/spacr/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Spacr", "slug": "spacr", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "EnvoThemes", "avatar": "https://secure.gravatar.com/avatar/fbfb6069115a2880669be42a480c105d8702f5ba9930b034b3a4223a495931a5?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/envothemes/", "author_url": "https://envothemes.com/", "display_name": "EnvoThemes", "user_nicename": "envothemes"}, "parent": {"name": "Entr", "slug": "entr", "homepage": "https://wordpress.org/themes/entr/"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 1}, "version": "1.0.5", "homepage": "https://wordpress.org/themes/spacr/", "requires": false, "sections": {"description": "Spacr is a fast, clean, lightweight, customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme works perfectly with the new block editor (Gutenberg) and popular page builders like Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, Brizy, Visual Composer etc. Theme is compatible with YITH WooCommerce Wishlist, YITH WooCommerce Compare, WooCommerce Variation Swatches and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Theme demo ready to import: https://envothemes.com/spacr/"}, "template": "entr", "versions": {"1.0": "https://downloads.wordpress.org/theme/spacr.1.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/spacr.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/spacr.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/spacr.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/spacr.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/spacr.1.0.5.zip"}, "downloaded": 63757, "num_ratings": 1, "preview_url": "https://wp-themes.com/spacr/", "reviews_url": "https://wordpress.org/support/theme/spacr/reviews/", "is_community": false, "last_updated": "2024-11-12", "requires_php": "5.6", "creation_time": "2023-09-25 13:26:44", "download_link": "https://downloads.wordpress.org/theme/spacr.1.0.5.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/spacr/screenshot.png?ver=1.0.5", "active_installs": 20000, "aspiresync_meta": {"id": "019a30c0-1236-703b-8cca-8a475687b937", "name": "Spacr", "slug": "spacr", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1731369600, "version": "1.0.5"}, "last_updated_time": "2024-11-12 11:50:04", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6c9e-709b-a1ab-02b2696a3733', 'storefront', 'Storefront', '4.6.1', 'Storefront is the perfect theme for your next WooCommerce project. Designed and developed by WooCommerce Core developers, it features a bespoke integration with WooCommerce itself plus many of the most popular customer facing WooCommerce extensions. There are several layout & color options to personalise your shop, multiple widget regions, a responsive design and much more. Developers will love its lean and extensible codebase making it a joy to customize and extend. Looking for a WooCommerce theme? Look no further!', '019a30c1-63a0-72c0-ab7a-cf9c7ae00fa7', 'https://downloads.wordpress.org/theme/storefront.4.6.1.zip', NULL, '5.6.0', '2025-01-20 11:41:56+00', '2014-11-19 14:00:17+00', 'https://wp-themes.com/storefront/', '//ts.w.org/wp-content/themes/storefront/screenshot.png?ver=4.6.1', 90, 154, 'https://wordpress.org/support/theme/storefront/reviews/', 8204192, 100000, 'https://wordpress.org/themes/storefront/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Storefront", "slug": "storefront", "tags": {"e-commerce": "E-commerce", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Automattic", "avatar": "https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/automattic/", "author_url": "https://woocommerce.com/", "display_name": "Automattic", "user_nicename": "automattic"}, "rating": 90, "status": "open", "ratings": {"1": 14, "2": 3, "3": 6, "4": 4, "5": 127}, "version": "4.6.1", "homepage": "https://wordpress.org/themes/storefront/", "requires": false, "sections": {"description": "Storefront is the perfect theme for your next WooCommerce project. Designed and developed by WooCommerce Core developers, it features a bespoke integration with WooCommerce itself plus many of the most popular customer facing WooCommerce extensions. There are several layout & color options to personalise your shop, multiple widget regions, a responsive design and much more. Developers will love its lean and extensible codebase making it a joy to customize and extend. Looking for a WooCommerce theme? Look no further!"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/storefront.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/storefront.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/storefront.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/storefront.1.0.3.zip", "1.1.0": "https://downloads.wordpress.org/theme/storefront.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/storefront.1.1.1.zip", "1.2.0": "https://downloads.wordpress.org/theme/storefront.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/storefront.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/storefront.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/storefront.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/storefront.1.2.4.zip", "1.2.5": "https://downloads.wordpress.org/theme/storefront.1.2.5.zip", "1.3.0": "https://downloads.wordpress.org/theme/storefront.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/storefront.1.3.1.zip", "1.4.0": "https://downloads.wordpress.org/theme/storefront.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/storefront.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/storefront.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/storefront.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/storefront.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/storefront.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/storefront.1.4.6.zip", "1.5.0": "https://downloads.wordpress.org/theme/storefront.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/storefront.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/storefront.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/storefront.1.5.3.zip", "1.6.0": "https://downloads.wordpress.org/theme/storefront.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/storefront.1.6.1.zip", "2.0.0": "https://downloads.wordpress.org/theme/storefront.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/storefront.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/storefront.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/storefront.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/storefront.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/storefront.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/storefront.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/storefront.2.0.7.zip", "2.1.0": "https://downloads.wordpress.org/theme/storefront.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/storefront.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/storefront.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/storefront.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/storefront.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/storefront.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/storefront.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/storefront.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/storefront.2.1.8.zip", "2.2.0": "https://downloads.wordpress.org/theme/storefront.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/storefront.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/storefront.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/storefront.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/storefront.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/storefront.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/storefront.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/theme/storefront.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/theme/storefront.2.2.8.zip", "2.3.0": "https://downloads.wordpress.org/theme/storefront.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/storefront.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/storefront.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/storefront.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/storefront.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/storefront.2.3.5.zip", "2.4.0": "https://downloads.wordpress.org/theme/storefront.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/storefront.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/storefront.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/storefront.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/theme/storefront.2.4.4.zip", "2.4.5": "https://downloads.wordpress.org/theme/storefront.2.4.5.zip", "2.4.6": "https://downloads.wordpress.org/theme/storefront.2.4.6.zip", "2.5.0": "https://downloads.wordpress.org/theme/storefront.2.5.0.zip", "2.5.1": "https://downloads.wordpress.org/theme/storefront.2.5.1.zip", "2.5.2": "https://downloads.wordpress.org/theme/storefront.2.5.2.zip", "2.5.3": "https://downloads.wordpress.org/theme/storefront.2.5.3.zip", "2.5.4": "https://downloads.wordpress.org/theme/storefront.2.5.4.zip", "2.5.5": "https://downloads.wordpress.org/theme/storefront.2.5.5.zip", "2.5.6": "https://downloads.wordpress.org/theme/storefront.2.5.6.zip", "2.5.7": "https://downloads.wordpress.org/theme/storefront.2.5.7.zip", "2.5.8": "https://downloads.wordpress.org/theme/storefront.2.5.8.zip", "2.6.0": "https://downloads.wordpress.org/theme/storefront.2.6.0.zip", "2.7.0": "https://downloads.wordpress.org/theme/storefront.2.7.0.zip", "2.8.0": "https://downloads.wordpress.org/theme/storefront.2.8.0.zip", "2.9.0": "https://downloads.wordpress.org/theme/storefront.2.9.0.zip", "3.0.0": "https://downloads.wordpress.org/theme/storefront.3.0.0.zip", "3.1.0": "https://downloads.wordpress.org/theme/storefront.3.1.0.zip", "3.2.0": "https://downloads.wordpress.org/theme/storefront.3.2.0.zip", "3.3.0": "https://downloads.wordpress.org/theme/storefront.3.3.0.zip", "3.4.0": "https://downloads.wordpress.org/theme/storefront.3.4.0.zip", "3.5.0": "https://downloads.wordpress.org/theme/storefront.3.5.0.zip", "3.5.1": "https://downloads.wordpress.org/theme/storefront.3.5.1.zip", "3.6.0": "https://downloads.wordpress.org/theme/storefront.3.6.0.zip", "3.7.0": "https://downloads.wordpress.org/theme/storefront.3.7.0.zip", "3.8.0": "https://downloads.wordpress.org/theme/storefront.3.8.0.zip", "3.8.1": "https://downloads.wordpress.org/theme/storefront.3.8.1.zip", "3.9.0": "https://downloads.wordpress.org/theme/storefront.3.9.0.zip", "3.9.1": "https://downloads.wordpress.org/theme/storefront.3.9.1.zip", "4.0.0": "https://downloads.wordpress.org/theme/storefront.4.0.0.zip", "4.1.0": "https://downloads.wordpress.org/theme/storefront.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/storefront.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/storefront.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/storefront.4.1.3.zip", "4.2.0": "https://downloads.wordpress.org/theme/storefront.4.2.0.zip", "4.3.0": "https://downloads.wordpress.org/theme/storefront.4.3.0.zip", "4.4.0": "https://downloads.wordpress.org/theme/storefront.4.4.0.zip", "4.4.1": "https://downloads.wordpress.org/theme/storefront.4.4.1.zip", "4.5.0": "https://downloads.wordpress.org/theme/storefront.4.5.0.zip", "4.5.1": "https://downloads.wordpress.org/theme/storefront.4.5.1.zip", "4.5.2": "https://downloads.wordpress.org/theme/storefront.4.5.2.zip", "4.5.3": "https://downloads.wordpress.org/theme/storefront.4.5.3.zip", "4.5.4": "https://downloads.wordpress.org/theme/storefront.4.5.4.zip", "4.5.5": "https://downloads.wordpress.org/theme/storefront.4.5.5.zip", "4.5.6": "https://downloads.wordpress.org/theme/storefront.4.5.6.zip", "4.6.0": "https://downloads.wordpress.org/theme/storefront.4.6.0.zip", "4.6.1": "https://downloads.wordpress.org/theme/storefront.4.6.1.zip"}, "downloaded": 8204192, "num_ratings": 154, "preview_url": "https://wp-themes.com/storefront/", "reviews_url": "https://wordpress.org/support/theme/storefront/reviews/", "is_community": false, "last_updated": "2025-01-20", "requires_php": "5.6.0", "creation_time": "2014-11-19 14:00:17", "download_link": "https://downloads.wordpress.org/theme/storefront.4.6.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/storefront/screenshot.png?ver=4.6.1", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-1274-7356-9947-77e4b4ae6346", "name": "Storefront", "slug": "storefront", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1737331200, "version": "4.6.1"}, "last_updated_time": "2025-01-20 11:41:56", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6ca9-70ff-8eac-62cbae436811', 'sydney', 'Sydney', '2.59', 'Sydney is a powerful business theme that provides a fast way for companies or freelancers to create an awesome online presence. As well as being fully compatible with Elementor, Sydney brings plenty of customization possibilities like access to all Google Fonts, full color control, layout control, logo upload, full screen slider, header image, sticky navigation and much more. Also, Sydney provides all the construction blocks you need to rapidly create an engaging front page. Looking for a quick start with Sydney? With just a few clicks, you can import one of our existing demos (https://athemes.com/sydney-demos/)', '019a30c1-69c6-729a-9382-41fb90746ce1', 'https://downloads.wordpress.org/theme/sydney.2.59.zip', NULL, '5.6', '2025-10-09 19:17:16+00', '2015-04-25 15:45:06+00', 'https://wp-themes.com/sydney/', '//ts.w.org/wp-content/themes/sydney/screenshot.png?ver=2.59', 98, 783, 'https://wordpress.org/support/theme/sydney/reviews/', 4702036, 90000, 'https://wordpress.org/themes/sydney/', true, 'https://athemes.com/support/', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Sydney", "slug": "sydney", "tags": {"custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "block-styles": "Block editor styles", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready"}, "author": {"author": "aThemes", "avatar": "https://secure.gravatar.com/avatar/93b101ca07f6a293920800acffe5bbfcc4bdbaba03d7f0fe25e03ea54238d21b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/athemes/", "author_url": "https://athemes.com", "display_name": "aThemes", "user_nicename": "athemes"}, "rating": 98, "status": "open", "ratings": {"1": 13, "2": 3, "3": 10, "4": 21, "5": 736}, "version": "2.59", "homepage": "https://wordpress.org/themes/sydney/", "requires": false, "sections": {"description": "Sydney is a powerful business theme that provides a fast way for companies or freelancers to create an awesome online presence. As well as being fully compatible with Elementor, Sydney brings plenty of customization possibilities like access to all Google Fonts, full color control, layout control, logo upload, full screen slider, header image, sticky navigation and much more. Also, Sydney provides all the construction blocks you need to rapidly create an engaging front page. Looking for a quick start with Sydney? With just a few clicks, you can import one of our existing demos (https://athemes.com/sydney-demos/)"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/sydney.1.0.zip", "2.0": "https://downloads.wordpress.org/theme/sydney.2.0.zip", "1.01": "https://downloads.wordpress.org/theme/sydney.1.01.zip", "1.03": "https://downloads.wordpress.org/theme/sydney.1.03.zip", "1.04": "https://downloads.wordpress.org/theme/sydney.1.04.zip", "1.05": "https://downloads.wordpress.org/theme/sydney.1.05.zip", "1.06": "https://downloads.wordpress.org/theme/sydney.1.06.zip", "1.07": "https://downloads.wordpress.org/theme/sydney.1.07.zip", "1.08": "https://downloads.wordpress.org/theme/sydney.1.08.zip", "1.09": "https://downloads.wordpress.org/theme/sydney.1.09.zip", "1.10": "https://downloads.wordpress.org/theme/sydney.1.10.zip", "1.11": "https://downloads.wordpress.org/theme/sydney.1.11.zip", "1.12": "https://downloads.wordpress.org/theme/sydney.1.12.zip", "1.13": "https://downloads.wordpress.org/theme/sydney.1.13.zip", "1.14": "https://downloads.wordpress.org/theme/sydney.1.14.zip", "1.15": "https://downloads.wordpress.org/theme/sydney.1.15.zip", "1.16": "https://downloads.wordpress.org/theme/sydney.1.16.zip", "1.17": "https://downloads.wordpress.org/theme/sydney.1.17.zip", "1.18": "https://downloads.wordpress.org/theme/sydney.1.18.zip", "1.19": "https://downloads.wordpress.org/theme/sydney.1.19.zip", "1.20": "https://downloads.wordpress.org/theme/sydney.1.20.zip", "1.21": "https://downloads.wordpress.org/theme/sydney.1.21.zip", "1.22": "https://downloads.wordpress.org/theme/sydney.1.22.zip", "1.23": "https://downloads.wordpress.org/theme/sydney.1.23.zip", "1.24": "https://downloads.wordpress.org/theme/sydney.1.24.zip", "1.25": "https://downloads.wordpress.org/theme/sydney.1.25.zip", "1.26": "https://downloads.wordpress.org/theme/sydney.1.26.zip", "1.27": "https://downloads.wordpress.org/theme/sydney.1.27.zip", "1.28": "https://downloads.wordpress.org/theme/sydney.1.28.zip", "1.30": "https://downloads.wordpress.org/theme/sydney.1.30.zip", "1.31": "https://downloads.wordpress.org/theme/sydney.1.31.zip", "1.32": "https://downloads.wordpress.org/theme/sydney.1.32.zip", "1.33": "https://downloads.wordpress.org/theme/sydney.1.33.zip", "1.34": "https://downloads.wordpress.org/theme/sydney.1.34.zip", "1.35": "https://downloads.wordpress.org/theme/sydney.1.35.zip", "1.36": "https://downloads.wordpress.org/theme/sydney.1.36.zip", "1.37": "https://downloads.wordpress.org/theme/sydney.1.37.zip", "1.38": "https://downloads.wordpress.org/theme/sydney.1.38.zip", "1.39": "https://downloads.wordpress.org/theme/sydney.1.39.zip", "1.40": "https://downloads.wordpress.org/theme/sydney.1.40.zip", "1.41": "https://downloads.wordpress.org/theme/sydney.1.41.zip", "1.42": "https://downloads.wordpress.org/theme/sydney.1.42.zip", "1.43": "https://downloads.wordpress.org/theme/sydney.1.43.zip", "1.44": "https://downloads.wordpress.org/theme/sydney.1.44.zip", "1.45": "https://downloads.wordpress.org/theme/sydney.1.45.zip", "1.46": "https://downloads.wordpress.org/theme/sydney.1.46.zip", "1.47": "https://downloads.wordpress.org/theme/sydney.1.47.zip", "1.48": "https://downloads.wordpress.org/theme/sydney.1.48.zip", "1.49": "https://downloads.wordpress.org/theme/sydney.1.49.zip", "1.50": "https://downloads.wordpress.org/theme/sydney.1.50.zip", "1.51": "https://downloads.wordpress.org/theme/sydney.1.51.zip", "1.52": "https://downloads.wordpress.org/theme/sydney.1.52.zip", "1.53": "https://downloads.wordpress.org/theme/sydney.1.53.zip", "1.54": "https://downloads.wordpress.org/theme/sydney.1.54.zip", "1.55": "https://downloads.wordpress.org/theme/sydney.1.55.zip", "1.56": "https://downloads.wordpress.org/theme/sydney.1.56.zip", "1.57": "https://downloads.wordpress.org/theme/sydney.1.57.zip", "1.58": "https://downloads.wordpress.org/theme/sydney.1.58.zip", "1.59": "https://downloads.wordpress.org/theme/sydney.1.59.zip", "1.60": "https://downloads.wordpress.org/theme/sydney.1.60.zip", "1.61": "https://downloads.wordpress.org/theme/sydney.1.61.zip", "1.62": "https://downloads.wordpress.org/theme/sydney.1.62.zip", "1.63": "https://downloads.wordpress.org/theme/sydney.1.63.zip", "1.64": "https://downloads.wordpress.org/theme/sydney.1.64.zip", "1.65": "https://downloads.wordpress.org/theme/sydney.1.65.zip", "1.66": "https://downloads.wordpress.org/theme/sydney.1.66.zip", "1.67": "https://downloads.wordpress.org/theme/sydney.1.67.zip", "1.68": "https://downloads.wordpress.org/theme/sydney.1.68.zip", "1.69": "https://downloads.wordpress.org/theme/sydney.1.69.zip", "1.70": "https://downloads.wordpress.org/theme/sydney.1.70.zip", "1.71": "https://downloads.wordpress.org/theme/sydney.1.71.zip", "1.72": "https://downloads.wordpress.org/theme/sydney.1.72.zip", "1.73": "https://downloads.wordpress.org/theme/sydney.1.73.zip", "1.74": "https://downloads.wordpress.org/theme/sydney.1.74.zip", "1.75": "https://downloads.wordpress.org/theme/sydney.1.75.zip", "1.76": "https://downloads.wordpress.org/theme/sydney.1.76.zip", "1.77": "https://downloads.wordpress.org/theme/sydney.1.77.zip", "1.78": "https://downloads.wordpress.org/theme/sydney.1.78.zip", "1.79": "https://downloads.wordpress.org/theme/sydney.1.79.zip", "1.80": "https://downloads.wordpress.org/theme/sydney.1.80.zip", "1.81": "https://downloads.wordpress.org/theme/sydney.1.81.zip", "1.82": "https://downloads.wordpress.org/theme/sydney.1.82.zip", "1.83": "https://downloads.wordpress.org/theme/sydney.1.83.zip", "1.84": "https://downloads.wordpress.org/theme/sydney.1.84.zip", "1.85": "https://downloads.wordpress.org/theme/sydney.1.85.zip", "1.86": "https://downloads.wordpress.org/theme/sydney.1.86.zip", "2.01": "https://downloads.wordpress.org/theme/sydney.2.01.zip", "2.02": "https://downloads.wordpress.org/theme/sydney.2.02.zip", "2.03": "https://downloads.wordpress.org/theme/sydney.2.03.zip", "2.04": "https://downloads.wordpress.org/theme/sydney.2.04.zip", "2.05": "https://downloads.wordpress.org/theme/sydney.2.05.zip", "2.06": "https://downloads.wordpress.org/theme/sydney.2.06.zip", "2.07": "https://downloads.wordpress.org/theme/sydney.2.07.zip", "2.08": "https://downloads.wordpress.org/theme/sydney.2.08.zip", "2.09": "https://downloads.wordpress.org/theme/sydney.2.09.zip", "2.10": "https://downloads.wordpress.org/theme/sydney.2.10.zip", "2.11": "https://downloads.wordpress.org/theme/sydney.2.11.zip", "2.12": "https://downloads.wordpress.org/theme/sydney.2.12.zip", "2.13": "https://downloads.wordpress.org/theme/sydney.2.13.zip", "2.14": "https://downloads.wordpress.org/theme/sydney.2.14.zip", "2.15": "https://downloads.wordpress.org/theme/sydney.2.15.zip", "2.16": "https://downloads.wordpress.org/theme/sydney.2.16.zip", "2.17": "https://downloads.wordpress.org/theme/sydney.2.17.zip", "2.18": "https://downloads.wordpress.org/theme/sydney.2.18.zip", "2.19": "https://downloads.wordpress.org/theme/sydney.2.19.zip", "2.20": "https://downloads.wordpress.org/theme/sydney.2.20.zip", "2.21": "https://downloads.wordpress.org/theme/sydney.2.21.zip", "2.22": "https://downloads.wordpress.org/theme/sydney.2.22.zip", "2.23": "https://downloads.wordpress.org/theme/sydney.2.23.zip", "2.24": "https://downloads.wordpress.org/theme/sydney.2.24.zip", "2.25": "https://downloads.wordpress.org/theme/sydney.2.25.zip", "2.26": "https://downloads.wordpress.org/theme/sydney.2.26.zip", "2.27": "https://downloads.wordpress.org/theme/sydney.2.27.zip", "2.28": "https://downloads.wordpress.org/theme/sydney.2.28.zip", "2.29": "https://downloads.wordpress.org/theme/sydney.2.29.zip", "2.30": "https://downloads.wordpress.org/theme/sydney.2.30.zip", "2.31": "https://downloads.wordpress.org/theme/sydney.2.31.zip", "2.32": "https://downloads.wordpress.org/theme/sydney.2.32.zip", "2.33": "https://downloads.wordpress.org/theme/sydney.2.33.zip", "2.34": "https://downloads.wordpress.org/theme/sydney.2.34.zip", "2.35": "https://downloads.wordpress.org/theme/sydney.2.35.zip", "2.36": "https://downloads.wordpress.org/theme/sydney.2.36.zip", "2.37": "https://downloads.wordpress.org/theme/sydney.2.37.zip", "2.38": "https://downloads.wordpress.org/theme/sydney.2.38.zip", "2.39": "https://downloads.wordpress.org/theme/sydney.2.39.zip", "2.40": "https://downloads.wordpress.org/theme/sydney.2.40.zip", "2.41": "https://downloads.wordpress.org/theme/sydney.2.41.zip", "2.42": "https://downloads.wordpress.org/theme/sydney.2.42.zip", "2.43": "https://downloads.wordpress.org/theme/sydney.2.43.zip", "2.44": "https://downloads.wordpress.org/theme/sydney.2.44.zip", "2.45": "https://downloads.wordpress.org/theme/sydney.2.45.zip", "2.46": "https://downloads.wordpress.org/theme/sydney.2.46.zip", "2.47": "https://downloads.wordpress.org/theme/sydney.2.47.zip", "2.48": "https://downloads.wordpress.org/theme/sydney.2.48.zip", "2.49": "https://downloads.wordpress.org/theme/sydney.2.49.zip", "2.50": "https://downloads.wordpress.org/theme/sydney.2.50.zip", "2.51": "https://downloads.wordpress.org/theme/sydney.2.51.zip", "2.52": "https://downloads.wordpress.org/theme/sydney.2.52.zip", "2.53": "https://downloads.wordpress.org/theme/sydney.2.53.zip", "2.54": "https://downloads.wordpress.org/theme/sydney.2.54.zip", "2.55": "https://downloads.wordpress.org/theme/sydney.2.55.zip", "2.56": "https://downloads.wordpress.org/theme/sydney.2.56.zip", "2.57": "https://downloads.wordpress.org/theme/sydney.2.57.zip", "2.58": "https://downloads.wordpress.org/theme/sydney.2.58.zip", "2.59": "https://downloads.wordpress.org/theme/sydney.2.59.zip"}, "downloaded": 4702036, "num_ratings": 783, "preview_url": "https://wp-themes.com/sydney/", "reviews_url": "https://wordpress.org/support/theme/sydney/reviews/", "is_community": false, "last_updated": "2025-10-09", "requires_php": "5.6", "creation_time": "2015-04-25 15:45:06", "download_link": "https://downloads.wordpress.org/theme/sydney.2.59.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/sydney/screenshot.png?ver=2.59", "active_installs": 90000, "aspiresync_meta": {"id": "019a30c0-1289-7016-9ac6-082c7a1d3217", "name": "Sydney", "slug": "sydney", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1759968000, "version": "2.59"}, "last_updated_time": "2025-10-09 19:17:16", "external_support_url": "https://athemes.com/support/", "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6cb2-702c-8392-01e0c35a7b53', 'the-coffee-shop', 'The Coffee Shop', '1.0', 'The Coffee Shop is an awesome free WordPress theme for coffee shops, restaurants and cafés - it also works great if you''re a barista, food/coffee blogger or reviewer, but flexible enough for a company or business type who wants to create a full website or landing page. This colorful, clean, and minimal theme is designed to boost your sales and is perfect for studios, cafes, and dining establishments. Adsense is integrated for advertisement and affiliate marketing, this theme ensures your optional banners and ads shine. Enjoy the easy to use page builder, Gutenberg blocks, and a responsive, mobile friendly design that looks stunning on any device. Showcase your recipes, menus, location, coffee, cakes, desserts and cooking skills fast and easy. Whether you''re a chef, cafe owner, review writer, food blogger, or running a fast food joint, this theme is your best ally. Boost your SEO with schema markup and make your site search engine friendly. The theme supports Woocommerce for eCommerce, perfect for selling coffee, cookies, wine, muffins, cakes, and vegan treats online. Ideal for startups, bars, bistros, cafeterias, tea house, diners, and boutiques, it’s a clean, simple, and effective choice for any dining experience. Install the theme, start writing your own text and publish your beautiful website today!', '019a30c1-6ae4-73b4-a341-8c80668b1904', 'https://downloads.wordpress.org/theme/the-coffee-shop.1.0.zip', '6.1', '5.6', '2025-03-12 08:11:53+00', '2025-03-12 08:11:53+00', 'https://wp-themes.com/the-coffee-shop/', '//ts.w.org/wp-content/themes/the-coffee-shop/screenshot.png?ver=1.0', 0, 0, 'https://wordpress.org/support/theme/the-coffee-shop/reviews/', 22322, 3000, 'https://wordpress.org/themes/the-coffee-shop/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "The Coffee Shop", "slug": "the-coffee-shop", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "food-and-drink": "Food & drink", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "style-variations": "Style variations", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "featured-image-header": "Featured image header"}, "author": {"author": "superbaddons", "avatar": "https://secure.gravatar.com/avatar/e225f22f91c86191b0236db6735e8d504cee5ed3dc2caaf3e8f35b108e4353aa?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/superbaddons/", "author_url": "https://superbthemes.com/", "display_name": "Superb Addons", "user_nicename": "superbaddons"}, "parent": {"name": "Bakery and Pastry", "slug": "bakery-and-pastry", "homepage": "https://wordpress.org/themes/bakery-and-pastry/"}, "rating": 0, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}, "version": "1.0", "homepage": "https://wordpress.org/themes/the-coffee-shop/", "requires": "6.1", "sections": {"description": "The Coffee Shop is an awesome free WordPress theme for coffee shops, restaurants and cafés - it also works great if you''re a barista, food/coffee blogger or reviewer, but flexible enough for a company or business type who wants to create a full website or landing page. This colorful, clean, and minimal theme is designed to boost your sales and is perfect for studios, cafes, and dining establishments. Adsense is integrated for advertisement and affiliate marketing, this theme ensures your optional banners and ads shine. Enjoy the easy to use page builder, Gutenberg blocks, and a responsive, mobile friendly design that looks stunning on any device. Showcase your recipes, menus, location, coffee, cakes, desserts and cooking skills fast and easy. Whether you''re a chef, cafe owner, review writer, food blogger, or running a fast food joint, this theme is your best ally. Boost your SEO with schema markup and make your site search engine friendly. The theme supports Woocommerce for eCommerce, perfect for selling coffee, cookies, wine, muffins, cakes, and vegan treats online. Ideal for startups, bars, bistros, cafeterias, tea house, diners, and boutiques, it’s a clean, simple, and effective choice for any dining experience. Install the theme, start writing your own text and publish your beautiful website today!"}, "template": "bakery-and-pastry", "versions": {"1.0": "https://downloads.wordpress.org/theme/the-coffee-shop.1.0.zip"}, "downloaded": 22322, "num_ratings": 0, "preview_url": "https://wp-themes.com/the-coffee-shop/", "reviews_url": "https://wordpress.org/support/theme/the-coffee-shop/reviews/", "is_community": false, "last_updated": "2025-03-12", "requires_php": "5.6", "creation_time": "2025-03-12 08:11:53", "download_link": "https://downloads.wordpress.org/theme/the-coffee-shop.1.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/the-coffee-shop/screenshot.png?ver=1.0", "active_installs": 3000, "aspiresync_meta": {"id": "019a30c0-1279-7182-90a9-174cfa9c9ce0", "name": "The Coffee Shop", "slug": "the-coffee-shop", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1741737600, "version": "1.0"}, "last_updated_time": "2025-03-12 08:11:53", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6cbf-7206-8f9c-6d3f6f24ccd9', 'total', 'Total', '2.1.95', '​The Total WordPress Theme is a versatile, feature-rich, and fully responsive theme designed to help you create stunning websites effortlessly. With over 40,000 active installations, Total offers a clean and elegant design complemented by vibrant color options and parallax sections. Its homepage layout includes a slider, featured sections with icons, an about us section with progress bars, a masonry-style portfolio, team and testimonial sections, counters, a customizable blog section, client logo carousel, and a compelling call-to-action area. Built on the WordPress Customizer, Total allows real-time configuration with live previews, making customization intuitive and straightforward. The theme is SEO-friendly, cross-browser compatible, translation-ready, and seamlessly integrates with WooCommerce, enabling you to set up an online store with ease. It also supports major page builders like Elementor, WPBakery, SiteOrigin, and Beaver Builder, providing flexibility in designing your site. With a one-click demo import feature, you can quickly replicate the demo layout and customize it to fit your needs. Whether you''re building a business website, portfolio, blog, or online store, Total provides all the essential tools and features to create a professional and engaging online presence. DEMO: https://hashthemes.com/wordpress-theme/total/', '019a30c1-6cbe-716d-89b3-0293c5dbdb3d', 'https://downloads.wordpress.org/theme/total.2.1.95.zip', NULL, '7.4', '2025-10-13 06:34:15+00', '2016-10-04 05:15:05+00', 'https://wp-themes.com/total/', '//ts.w.org/wp-content/themes/total/screenshot.jpg?ver=2.1.95', 94, 62, 'https://wordpress.org/support/theme/total/reviews/', 1204004, 30000, 'https://wordpress.org/themes/total/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Total", "slug": "total", "tags": {"blog": "Blog", "education": "Education", "portfolio": "Portfolio", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "two-columns": "Two columns", "editor-style": "Editor style", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready"}, "author": {"author": "HashThemes", "avatar": "https://secure.gravatar.com/avatar/c1a1e3059810c76ada4e91ee1b7f8ce43ccfde3253abd7e07eca101b45e0af30?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/hashthemes/", "author_url": "https://hashthemes.com", "display_name": "hashthemes", "user_nicename": "hashthemes"}, "rating": 94, "status": "open", "ratings": {"1": 2, "2": 1, "3": 0, "4": 5, "5": 54}, "version": "2.1.95", "homepage": "https://wordpress.org/themes/total/", "requires": false, "sections": {"description": "​The Total WordPress Theme is a versatile, feature-rich, and fully responsive theme designed to help you create stunning websites effortlessly. With over 40,000 active installations, Total offers a clean and elegant design complemented by vibrant color options and parallax sections. Its homepage layout includes a slider, featured sections with icons, an about us section with progress bars, a masonry-style portfolio, team and testimonial sections, counters, a customizable blog section, client logo carousel, and a compelling call-to-action area. Built on the WordPress Customizer, Total allows real-time configuration with live previews, making customization intuitive and straightforward. The theme is SEO-friendly, cross-browser compatible, translation-ready, and seamlessly integrates with WooCommerce, enabling you to set up an online store with ease. It also supports major page builders like Elementor, WPBakery, SiteOrigin, and Beaver Builder, providing flexibility in designing your site. With a one-click demo import feature, you can quickly replicate the demo layout and customize it to fit your needs. Whether you''re building a business website, portfolio, blog, or online store, Total provides all the essential tools and features to create a professional and engaging online presence. DEMO: https://hashthemes.com/wordpress-theme/total/"}, "versions": {"1.0.2": "https://downloads.wordpress.org/theme/total.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/total.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/total.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/total.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/total.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/total.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/total.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/total.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/total.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/total.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/total.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/total.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/total.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/total.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/total.1.1.6.zip", "1.1.8": "https://downloads.wordpress.org/theme/total.1.1.8.zip", "1.2.0": "https://downloads.wordpress.org/theme/total.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/total.1.2.1.zip", "2.0.0": "https://downloads.wordpress.org/theme/total.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/total.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/total.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/total.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/total.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/total.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/total.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/total.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/total.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/total.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/total.2.1.0.zip", "1.2.11": "https://downloads.wordpress.org/theme/total.1.2.11.zip", "1.2.12": "https://downloads.wordpress.org/theme/total.1.2.12.zip", "1.2.13": "https://downloads.wordpress.org/theme/total.1.2.13.zip", "1.2.14": "https://downloads.wordpress.org/theme/total.1.2.14.zip", "1.2.15": "https://downloads.wordpress.org/theme/total.1.2.15.zip", "1.2.16": "https://downloads.wordpress.org/theme/total.1.2.16.zip", "1.2.17": "https://downloads.wordpress.org/theme/total.1.2.17.zip", "1.2.18": "https://downloads.wordpress.org/theme/total.1.2.18.zip", "1.2.19": "https://downloads.wordpress.org/theme/total.1.2.19.zip", "1.2.20": "https://downloads.wordpress.org/theme/total.1.2.20.zip", "1.2.21": "https://downloads.wordpress.org/theme/total.1.2.21.zip", "1.2.22": "https://downloads.wordpress.org/theme/total.1.2.22.zip", "1.2.23": "https://downloads.wordpress.org/theme/total.1.2.23.zip", "1.2.24": "https://downloads.wordpress.org/theme/total.1.2.24.zip", "1.2.25": "https://downloads.wordpress.org/theme/total.1.2.25.zip", "1.2.26": "https://downloads.wordpress.org/theme/total.1.2.26.zip", "1.2.27": "https://downloads.wordpress.org/theme/total.1.2.27.zip", "1.2.28": "https://downloads.wordpress.org/theme/total.1.2.28.zip", "1.2.29": "https://downloads.wordpress.org/theme/total.1.2.29.zip", "1.2.30": "https://downloads.wordpress.org/theme/total.1.2.30.zip", "1.2.31": "https://downloads.wordpress.org/theme/total.1.2.31.zip", "1.2.32": "https://downloads.wordpress.org/theme/total.1.2.32.zip", "1.2.33": "https://downloads.wordpress.org/theme/total.1.2.33.zip", "1.2.34": "https://downloads.wordpress.org/theme/total.1.2.34.zip", "1.2.35": "https://downloads.wordpress.org/theme/total.1.2.35.zip", "1.2.36": "https://downloads.wordpress.org/theme/total.1.2.36.zip", "1.2.37": "https://downloads.wordpress.org/theme/total.1.2.37.zip", "1.2.38": "https://downloads.wordpress.org/theme/total.1.2.38.zip", "1.2.39": "https://downloads.wordpress.org/theme/total.1.2.39.zip", "1.2.40": "https://downloads.wordpress.org/theme/total.1.2.40.zip", "1.2.41": "https://downloads.wordpress.org/theme/total.1.2.41.zip", "1.2.42": "https://downloads.wordpress.org/theme/total.1.2.42.zip", "1.2.43": "https://downloads.wordpress.org/theme/total.1.2.43.zip", "1.2.44": "https://downloads.wordpress.org/theme/total.1.2.44.zip", "1.2.45": "https://downloads.wordpress.org/theme/total.1.2.45.zip", "1.2.46": "https://downloads.wordpress.org/theme/total.1.2.46.zip", "1.2.47": "https://downloads.wordpress.org/theme/total.1.2.47.zip", "1.2.48": "https://downloads.wordpress.org/theme/total.1.2.48.zip", "1.2.49": "https://downloads.wordpress.org/theme/total.1.2.49.zip", "1.2.50": "https://downloads.wordpress.org/theme/total.1.2.50.zip", "1.2.51": "https://downloads.wordpress.org/theme/total.1.2.51.zip", "1.2.52": "https://downloads.wordpress.org/theme/total.1.2.52.zip", "1.2.53": "https://downloads.wordpress.org/theme/total.1.2.53.zip", "1.2.54": "https://downloads.wordpress.org/theme/total.1.2.54.zip", "1.2.55": "https://downloads.wordpress.org/theme/total.1.2.55.zip", "1.2.56": "https://downloads.wordpress.org/theme/total.1.2.56.zip", "1.2.57": "https://downloads.wordpress.org/theme/total.1.2.57.zip", "1.2.58": "https://downloads.wordpress.org/theme/total.1.2.58.zip", "1.2.59": "https://downloads.wordpress.org/theme/total.1.2.59.zip", "2.0.91": "https://downloads.wordpress.org/theme/total.2.0.91.zip", "2.1.01": "https://downloads.wordpress.org/theme/total.2.1.01.zip", "2.1.02": "https://downloads.wordpress.org/theme/total.2.1.02.zip", "2.1.03": "https://downloads.wordpress.org/theme/total.2.1.03.zip", "2.1.04": "https://downloads.wordpress.org/theme/total.2.1.04.zip", "2.1.05": "https://downloads.wordpress.org/theme/total.2.1.05.zip", "2.1.06": "https://downloads.wordpress.org/theme/total.2.1.06.zip", "2.1.07": "https://downloads.wordpress.org/theme/total.2.1.07.zip", "2.1.08": "https://downloads.wordpress.org/theme/total.2.1.08.zip", "2.1.09": "https://downloads.wordpress.org/theme/total.2.1.09.zip", "2.1.10": "https://downloads.wordpress.org/theme/total.2.1.10.zip", "2.1.11": "https://downloads.wordpress.org/theme/total.2.1.11.zip", "2.1.12": "https://downloads.wordpress.org/theme/total.2.1.12.zip", "2.1.13": "https://downloads.wordpress.org/theme/total.2.1.13.zip", "2.1.14": "https://downloads.wordpress.org/theme/total.2.1.14.zip", "2.1.15": "https://downloads.wordpress.org/theme/total.2.1.15.zip", "2.1.16": "https://downloads.wordpress.org/theme/total.2.1.16.zip", "2.1.17": "https://downloads.wordpress.org/theme/total.2.1.17.zip", "2.1.18": "https://downloads.wordpress.org/theme/total.2.1.18.zip", "2.1.19": "https://downloads.wordpress.org/theme/total.2.1.19.zip", "2.1.20": "https://downloads.wordpress.org/theme/total.2.1.20.zip", "2.1.21": "https://downloads.wordpress.org/theme/total.2.1.21.zip", "2.1.22": "https://downloads.wordpress.org/theme/total.2.1.22.zip", "2.1.23": "https://downloads.wordpress.org/theme/total.2.1.23.zip", "2.1.24": "https://downloads.wordpress.org/theme/total.2.1.24.zip", "2.1.25": "https://downloads.wordpress.org/theme/total.2.1.25.zip", "2.1.26": "https://downloads.wordpress.org/theme/total.2.1.26.zip", "2.1.27": "https://downloads.wordpress.org/theme/total.2.1.27.zip", "2.1.28": "https://downloads.wordpress.org/theme/total.2.1.28.zip", "2.1.29": "https://downloads.wordpress.org/theme/total.2.1.29.zip", "2.1.30": "https://downloads.wordpress.org/theme/total.2.1.30.zip", "2.1.31": "https://downloads.wordpress.org/theme/total.2.1.31.zip", "2.1.32": "https://downloads.wordpress.org/theme/total.2.1.32.zip", "2.1.33": "https://downloads.wordpress.org/theme/total.2.1.33.zip", "2.1.34": "https://downloads.wordpress.org/theme/total.2.1.34.zip", "2.1.35": "https://downloads.wordpress.org/theme/total.2.1.35.zip", "2.1.36": "https://downloads.wordpress.org/theme/total.2.1.36.zip", "2.1.37": "https://downloads.wordpress.org/theme/total.2.1.37.zip", "2.1.38": "https://downloads.wordpress.org/theme/total.2.1.38.zip", "2.1.39": "https://downloads.wordpress.org/theme/total.2.1.39.zip", "2.1.40": "https://downloads.wordpress.org/theme/total.2.1.40.zip", "2.1.41": "https://downloads.wordpress.org/theme/total.2.1.41.zip", "2.1.42": "https://downloads.wordpress.org/theme/total.2.1.42.zip", "2.1.43": "https://downloads.wordpress.org/theme/total.2.1.43.zip", "2.1.44": "https://downloads.wordpress.org/theme/total.2.1.44.zip", "2.1.45": "https://downloads.wordpress.org/theme/total.2.1.45.zip", "2.1.46": "https://downloads.wordpress.org/theme/total.2.1.46.zip", "2.1.47": "https://downloads.wordpress.org/theme/total.2.1.47.zip", "2.1.48": "https://downloads.wordpress.org/theme/total.2.1.48.zip", "2.1.49": "https://downloads.wordpress.org/theme/total.2.1.49.zip", "2.1.50": "https://downloads.wordpress.org/theme/total.2.1.50.zip", "2.1.51": "https://downloads.wordpress.org/theme/total.2.1.51.zip", "2.1.52": "https://downloads.wordpress.org/theme/total.2.1.52.zip", "2.1.53": "https://downloads.wordpress.org/theme/total.2.1.53.zip", "2.1.54": "https://downloads.wordpress.org/theme/total.2.1.54.zip", "2.1.55": "https://downloads.wordpress.org/theme/total.2.1.55.zip", "2.1.56": "https://downloads.wordpress.org/theme/total.2.1.56.zip", "2.1.57": "https://downloads.wordpress.org/theme/total.2.1.57.zip", "2.1.58": "https://downloads.wordpress.org/theme/total.2.1.58.zip", "2.1.59": "https://downloads.wordpress.org/theme/total.2.1.59.zip", "2.1.60": "https://downloads.wordpress.org/theme/total.2.1.60.zip", "2.1.61": "https://downloads.wordpress.org/theme/total.2.1.61.zip", "2.1.62": "https://downloads.wordpress.org/theme/total.2.1.62.zip", "2.1.63": "https://downloads.wordpress.org/theme/total.2.1.63.zip", "2.1.64": "https://downloads.wordpress.org/theme/total.2.1.64.zip", "2.1.65": "https://downloads.wordpress.org/theme/total.2.1.65.zip", "2.1.66": "https://downloads.wordpress.org/theme/total.2.1.66.zip", "2.1.67": "https://downloads.wordpress.org/theme/total.2.1.67.zip", "2.1.68": "https://downloads.wordpress.org/theme/total.2.1.68.zip", "2.1.69": "https://downloads.wordpress.org/theme/total.2.1.69.zip", "2.1.70": "https://downloads.wordpress.org/theme/total.2.1.70.zip", "2.1.71": "https://downloads.wordpress.org/theme/total.2.1.71.zip", "2.1.72": "https://downloads.wordpress.org/theme/total.2.1.72.zip", "2.1.73": "https://downloads.wordpress.org/theme/total.2.1.73.zip", "2.1.74": "https://downloads.wordpress.org/theme/total.2.1.74.zip", "2.1.75": "https://downloads.wordpress.org/theme/total.2.1.75.zip", "2.1.76": "https://downloads.wordpress.org/theme/total.2.1.76.zip", "2.1.77": "https://downloads.wordpress.org/theme/total.2.1.77.zip", "2.1.78": "https://downloads.wordpress.org/theme/total.2.1.78.zip", "2.1.79": "https://downloads.wordpress.org/theme/total.2.1.79.zip", "2.1.80": "https://downloads.wordpress.org/theme/total.2.1.80.zip", "2.1.81": "https://downloads.wordpress.org/theme/total.2.1.81.zip", "2.1.82": "https://downloads.wordpress.org/theme/total.2.1.82.zip", "2.1.83": "https://downloads.wordpress.org/theme/total.2.1.83.zip", "2.1.84": "https://downloads.wordpress.org/theme/total.2.1.84.zip", "2.1.85": "https://downloads.wordpress.org/theme/total.2.1.85.zip", "2.1.86": "https://downloads.wordpress.org/theme/total.2.1.86.zip", "2.1.87": "https://downloads.wordpress.org/theme/total.2.1.87.zip", "2.1.88": "https://downloads.wordpress.org/theme/total.2.1.88.zip", "2.1.89": "https://downloads.wordpress.org/theme/total.2.1.89.zip", "2.1.90": "https://downloads.wordpress.org/theme/total.2.1.90.zip", "2.1.91": "https://downloads.wordpress.org/theme/total.2.1.91.zip", "2.1.92": "https://downloads.wordpress.org/theme/total.2.1.92.zip", "2.1.93": "https://downloads.wordpress.org/theme/total.2.1.93.zip", "2.1.94": "https://downloads.wordpress.org/theme/total.2.1.94.zip", "2.1.95": "https://downloads.wordpress.org/theme/total.2.1.95.zip", "1.1.6.1": "https://downloads.wordpress.org/theme/total.1.1.6.1.zip", "1.1.6.2": "https://downloads.wordpress.org/theme/total.1.1.6.2.zip", "1.1.6.3": "https://downloads.wordpress.org/theme/total.1.1.6.3.zip", "1.1.6.4": "https://downloads.wordpress.org/theme/total.1.1.6.4.zip", "1.1.6.5": "https://downloads.wordpress.org/theme/total.1.1.6.5.zip", "1.1.6.6": "https://downloads.wordpress.org/theme/total.1.1.6.6.zip", "1.1.6.7": "https://downloads.wordpress.org/theme/total.1.1.6.7.zip", "1.1.6.8": "https://downloads.wordpress.org/theme/total.1.1.6.8.zip", "1.1.6.9": "https://downloads.wordpress.org/theme/total.1.1.6.9.zip", "1.1.7.0": "https://downloads.wordpress.org/theme/total.1.1.7.0.zip", "1.1.8.1": "https://downloads.wordpress.org/theme/total.1.1.8.1.zip", "1.1.8.2": "https://downloads.wordpress.org/theme/total.1.1.8.2.zip", "1.1.8.3": "https://downloads.wordpress.org/theme/total.1.1.8.3.zip", "1.1.8.4": "https://downloads.wordpress.org/theme/total.1.1.8.4.zip", "1.1.8.5": "https://downloads.wordpress.org/theme/total.1.1.8.5.zip", "1.1.8.6": "https://downloads.wordpress.org/theme/total.1.1.8.6.zip", "1.1.8.7": "https://downloads.wordpress.org/theme/total.1.1.8.7.zip", "1.1.8.8": "https://downloads.wordpress.org/theme/total.1.1.8.8.zip", "1.1.8.9": "https://downloads.wordpress.org/theme/total.1.1.8.9.zip", "1.1.9.0": "https://downloads.wordpress.org/theme/total.1.1.9.0.zip"}, "downloaded": 1204004, "num_ratings": 62, "preview_url": "https://wp-themes.com/total/", "reviews_url": "https://wordpress.org/support/theme/total/reviews/", "is_community": false, "last_updated": "2025-10-13", "requires_php": "7.4", "creation_time": "2016-10-04 05:15:05", "download_link": "https://downloads.wordpress.org/theme/total.2.1.95.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/total/screenshot.jpg?ver=2.1.95", "active_installs": 30000, "aspiresync_meta": {"id": "019a30c0-1294-73af-8cb0-09c8e451f6ef", "name": "Total", "slug": "total", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1760313600, "version": "2.1.95"}, "last_updated_time": "2025-10-13 06:34:15", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d15-733f-a248-a5615cf5faeb', 'twentyten', 'Twenty Ten', '4.4', 'The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentyten.4.4.zip', '3.0', '5.2.4', '2025-04-15 13:09:51+00', '2010-06-21 19:25:28+00', 'https://wp-themes.com/twentyten/', '//ts.w.org/wp-content/themes/twentyten/screenshot.png?ver=4.4', 94, 54, 'https://wordpress.org/support/theme/twentyten/reviews/', 6556327, 50000, 'https://wordpress.org/themes/twentyten/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Ten", "slug": "twentyten", "tags": {"blog": "Blog", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "microformats": "Microformats", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 94, "status": "open", "ratings": {"1": 2, "2": 0, "3": 1, "4": 8, "5": 43}, "version": "4.4", "homepage": "https://wordpress.org/themes/twentyten/", "requires": "3.0", "sections": {"description": "The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the \"Asides\" and \"Gallery\" categories, and has an optional one-column page template that removes the sidebar."}, "versions": {"1.1": "https://downloads.wordpress.org/theme/twentyten.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentyten.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentyten.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentyten.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentyten.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentyten.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentyten.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentyten.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentyten.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentyten.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentyten.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentyten.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentyten.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentyten.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentyten.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentyten.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentyten.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentyten.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentyten.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentyten.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentyten.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentyten.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentyten.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentyten.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentyten.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentyten.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentyten.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentyten.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentyten.3.9.zip", "4.0": "https://downloads.wordpress.org/theme/twentyten.4.0.zip", "4.1": "https://downloads.wordpress.org/theme/twentyten.4.1.zip", "4.2": "https://downloads.wordpress.org/theme/twentyten.4.2.zip", "4.3": "https://downloads.wordpress.org/theme/twentyten.4.3.zip", "4.4": "https://downloads.wordpress.org/theme/twentyten.4.4.zip", "1.0.3": "https://downloads.wordpress.org/theme/twentyten.1.0.3.zip"}, "downloaded": 6556327, "num_ratings": 54, "preview_url": "https://wp-themes.com/twentyten/", "reviews_url": "https://wordpress.org/support/theme/twentyten/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2010-06-21 19:25:28", "download_link": "https://downloads.wordpress.org/theme/twentyten.4.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentyten/screenshot.png?ver=4.4", "active_installs": 50000, "aspiresync_meta": {"id": "019a30c0-1451-730a-a3ea-5da43e192f51", "name": "Twenty Ten", "slug": "twentyten", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "4.4"}, "last_updated_time": "2025-04-15 13:09:51", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6cc9-7040-b700-4ba2008a472f', 'tutorstarter', 'TutorStarter', '3.0.4', 'Tutor Starter is a free WordPress LMS theme powered by Tutor LMS, the popular eLearning plugin for WordPress. It is designed to let Tutor LMS take center stage while also letting you pick what feels right. Tutor Starter is created with the same Unified Design System from Tutor LMS making it the perfect companion eLearning theme for Tutor LMS. Tutor Starter is also highly specialized for speed and efficiency, with all of its components optimized to give your eLearning website a great score on Google''s PageSpeed. Tutor Starter pages are also schema ready and SEO optimized to make ranking on search engines as easy as pie! It also boasts an impressive blog single page for perfect readability. With full support for both Elementor and Gutenberg, Tutor Starter hopes to cater to the largest audience of both classic page builders and modern Gutenberg based builders. It comes with customizer settings for headers, footers, and everything in between. With several header and footer variations, advanced typography settings, and contextual page settings, create the eLearning website of your dreams with this free LMS theme. Tutor Starter features 3 modern and pre-built home layouts with fully functioning inner pages for both Elementor and Gutenberg to let you get started in no time. Tutor Starter also features a clean and light one-click demo importer to import all these pre-built home layouts for Gutenberg and Elementor. This, along with deep ties with Tutor LMS makes it a no-brainer WordPress LMS theme. Please Check theme demo here https://preview.tutorlms.com/', '019a30c1-6cc8-7387-8e0e-041b9d18908f', 'https://downloads.wordpress.org/theme/tutorstarter.3.0.4.zip', NULL, '7.4', '2025-07-29 10:01:16+00', '2021-06-30 06:45:40+00', 'https://wp-themes.com/tutorstarter/', '//ts.w.org/wp-content/themes/tutorstarter/screenshot.png?ver=3.0.4', 80, 4, 'https://wordpress.org/support/theme/tutorstarter/reviews/', 168708, 10000, 'https://wordpress.org/themes/tutorstarter/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "TutorStarter", "slug": "tutorstarter", "tags": {"blog": "Blog", "education": "Education", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Themeum", "avatar": "https://secure.gravatar.com/avatar/929c471e94b7c131fe4ed9526ae26020dd10097c27c1461c5d3535a4ca467daf?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themeum/", "author_url": "https://www.themeum.com", "display_name": "Themeum", "user_nicename": "themeum"}, "rating": 80, "status": "open", "ratings": {"1": 1, "2": 0, "3": 0, "4": 0, "5": 3}, "version": "3.0.4", "homepage": "https://wordpress.org/themes/tutorstarter/", "requires": false, "sections": {"description": "Tutor Starter is a free WordPress LMS theme powered by Tutor LMS, the popular eLearning plugin for WordPress. It is designed to let Tutor LMS take center stage while also letting you pick what feels right. Tutor Starter is created with the same Unified Design System from Tutor LMS making it the perfect companion eLearning theme for Tutor LMS. Tutor Starter is also highly specialized for speed and efficiency, with all of its components optimized to give your eLearning website a great score on Google''s PageSpeed. Tutor Starter pages are also schema ready and SEO optimized to make ranking on search engines as easy as pie! It also boasts an impressive blog single page for perfect readability. With full support for both Elementor and Gutenberg, Tutor Starter hopes to cater to the largest audience of both classic page builders and modern Gutenberg based builders. It comes with customizer settings for headers, footers, and everything in between. With several header and footer variations, advanced typography settings, and contextual page settings, create the eLearning website of your dreams with this free LMS theme. Tutor Starter features 3 modern and pre-built home layouts with fully functioning inner pages for both Elementor and Gutenberg to let you get started in no time. Tutor Starter also features a clean and light one-click demo importer to import all these pre-built home layouts for Gutenberg and Elementor. This, along with deep ties with Tutor LMS makes it a no-brainer WordPress LMS theme. Please Check theme demo here https://preview.tutorlms.com/"}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/tutorstarter.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/tutorstarter.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/tutorstarter.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/tutorstarter.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/tutorstarter.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/tutorstarter.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/tutorstarter.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/tutorstarter.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/tutorstarter.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/tutorstarter.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/tutorstarter.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/tutorstarter.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/tutorstarter.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/tutorstarter.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/tutorstarter.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/tutorstarter.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/tutorstarter.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/tutorstarter.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/tutorstarter.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/tutorstarter.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/tutorstarter.1.2.0.zip", "3.0.0": "https://downloads.wordpress.org/theme/tutorstarter.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/tutorstarter.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/tutorstarter.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/tutorstarter.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/tutorstarter.3.0.4.zip", "1.1.10": "https://downloads.wordpress.org/theme/tutorstarter.1.1.10.zip"}, "downloaded": 168708, "num_ratings": 4, "preview_url": "https://wp-themes.com/tutorstarter/", "reviews_url": "https://wordpress.org/support/theme/tutorstarter/reviews/", "is_community": false, "last_updated": "2025-07-29", "requires_php": "7.4", "creation_time": "2021-06-30 06:45:40", "download_link": "https://downloads.wordpress.org/theme/tutorstarter.3.0.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/tutorstarter/screenshot.png?ver=3.0.4", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-12d9-7050-b1e6-5c86744830be", "name": "TutorStarter", "slug": "tutorstarter", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1753747200, "version": "3.0.4"}, "last_updated_time": "2025-07-29 10:01:16", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6cd6-708d-9e7c-c13bce344c2b', 'twentyeleven', 'Twenty Eleven', '4.9', 'The 2011 theme for WordPress is sophisticated, lightweight, and adaptable. Make it yours with a custom menu, header image, and background -- then go further with available theme options for light or dark color scheme, custom link colors, and three layout choices. Twenty Eleven comes equipped with a Showcase page template that transforms your front page into a showcase to show off your best content, widget support galore (sidebar, three footer areas, and a Showcase page widget area), and a custom "Ephemera" widget to display your Aside, Link, Quote, or Status posts. Included are styles for print and for the admin editor, support for featured images (as custom header images on posts and pages and as large images on featured "sticky" posts), and special styles for six different post formats.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentyeleven.4.9.zip', '3.2', '5.2.4', '2025-04-15 13:13:01+00', '2011-07-04 20:46:53+00', 'https://wp-themes.com/twentyeleven/', '//ts.w.org/wp-content/themes/twentyeleven/screenshot.png?ver=4.9', 92, 50, 'https://wordpress.org/support/theme/twentyeleven/reviews/', 7352621, 70000, 'https://wordpress.org/themes/twentyeleven/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Eleven", "slug": "twentyeleven", "tags": {"blog": "Blog", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support", "featured-image-header": "Featured image header"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 92, "status": "open", "ratings": {"1": 2, "2": 0, "3": 1, "4": 8, "5": 39}, "version": "4.9", "homepage": "https://wordpress.org/themes/twentyeleven/", "requires": "3.2", "sections": {"description": "The 2011 theme for WordPress is sophisticated, lightweight, and adaptable. Make it yours with a custom menu, header image, and background -- then go further with available theme options for light or dark color scheme, custom link colors, and three layout choices. Twenty Eleven comes equipped with a Showcase page template that transforms your front page into a showcase to show off your best content, widget support galore (sidebar, three footer areas, and a Showcase page widget area), and a custom \"Ephemera\" widget to display your Aside, Link, Quote, or Status posts. Included are styles for print and for the admin editor, support for featured images (as custom header images on posts and pages and as large images on featured \"sticky\" posts), and special styles for six different post formats."}, "versions": {"1.1": "https://downloads.wordpress.org/theme/twentyeleven.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentyeleven.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentyeleven.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentyeleven.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentyeleven.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentyeleven.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentyeleven.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentyeleven.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentyeleven.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentyeleven.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentyeleven.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentyeleven.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentyeleven.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentyeleven.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentyeleven.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentyeleven.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentyeleven.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentyeleven.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentyeleven.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentyeleven.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentyeleven.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentyeleven.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentyeleven.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentyeleven.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentyeleven.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentyeleven.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentyeleven.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentyeleven.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentyeleven.3.9.zip", "4.0": "https://downloads.wordpress.org/theme/twentyeleven.4.0.zip", "4.1": "https://downloads.wordpress.org/theme/twentyeleven.4.1.zip", "4.2": "https://downloads.wordpress.org/theme/twentyeleven.4.2.zip", "4.3": "https://downloads.wordpress.org/theme/twentyeleven.4.3.zip", "4.4": "https://downloads.wordpress.org/theme/twentyeleven.4.4.zip", "4.5": "https://downloads.wordpress.org/theme/twentyeleven.4.5.zip", "4.6": "https://downloads.wordpress.org/theme/twentyeleven.4.6.zip", "4.7": "https://downloads.wordpress.org/theme/twentyeleven.4.7.zip", "4.8": "https://downloads.wordpress.org/theme/twentyeleven.4.8.zip", "4.9": "https://downloads.wordpress.org/theme/twentyeleven.4.9.zip"}, "downloaded": 7352621, "num_ratings": 50, "preview_url": "https://wp-themes.com/twentyeleven/", "reviews_url": "https://wordpress.org/support/theme/twentyeleven/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2011-07-04 20:46:53", "download_link": "https://downloads.wordpress.org/theme/twentyeleven.4.9.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentyeleven/screenshot.png?ver=4.9", "active_installs": 70000, "aspiresync_meta": {"id": "019a30c0-12d1-73dc-bef0-fa74b26cd7ed", "name": "Twenty Eleven", "slug": "twentyeleven", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "4.9"}, "last_updated_time": "2025-04-15 13:13:01", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6ce2-7060-80aa-6ba010291008', 'twentyfifteen', 'Twenty Fifteen', '4.0', 'Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen''s simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentyfifteen.4.0.zip', '4.1', '5.2.4', '2025-04-15 13:19:13+00', '2014-12-18 17:08:05+00', 'https://wp-themes.com/twentyfifteen/', '//ts.w.org/wp-content/themes/twentyfifteen/screenshot.png?ver=4.0', 88, 53, 'https://wordpress.org/support/theme/twentyfifteen/reviews/', 12193129, 70000, 'https://wordpress.org/themes/twentyfifteen/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Fifteen", "slug": "twentyfifteen", "tags": {"blog": "Blog", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 88, "status": "open", "ratings": {"1": 4, "2": 0, "3": 5, "4": 6, "5": 38}, "version": "4.0", "homepage": "https://wordpress.org/themes/twentyfifteen/", "requires": "4.1", "sections": {"description": "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen''s simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."}, "versions": {"0": "https://downloads.wordpress.org/theme/twentyfifteen.4.0.zip", "1.0": "https://downloads.wordpress.org/theme/twentyfifteen.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentyfifteen.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentyfifteen.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentyfifteen.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentyfifteen.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentyfifteen.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentyfifteen.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentyfifteen.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentyfifteen.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentyfifteen.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentyfifteen.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentyfifteen.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentyfifteen.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentyfifteen.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentyfifteen.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentyfifteen.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentyfifteen.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentyfifteen.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentyfifteen.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentyfifteen.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentyfifteen.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentyfifteen.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentyfifteen.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentyfifteen.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentyfifteen.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentyfifteen.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentyfifteen.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentyfifteen.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentyfifteen.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentyfifteen.3.9.zip", "4.0": "https://downloads.wordpress.org/theme/twentyfifteen.4.0.zip"}, "downloaded": 12193129, "num_ratings": 53, "preview_url": "https://wp-themes.com/twentyfifteen/", "reviews_url": "https://wordpress.org/support/theme/twentyfifteen/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2014-12-18 17:08:05", "download_link": "https://downloads.wordpress.org/theme/twentyfifteen.4.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentyfifteen/screenshot.png?ver=4.0", "active_installs": 70000, "aspiresync_meta": {"id": "019a30c0-1366-7331-a2ef-8153fbe64756", "name": "Twenty Fifteen", "slug": "twentyfifteen", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "4.0"}, "last_updated_time": "2025-04-15 13:19:13", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6cec-7094-b219-4d70c9f7d6a3', 'twentyfourteen', 'Twenty Fourteen', '4.3', 'In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content''s layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentyfourteen.4.3.zip', '3.6', '5.2.4', '2025-08-05 19:29:48+00', '2013-12-12 17:32:45+00', 'https://wp-themes.com/twentyfourteen/', '//ts.w.org/wp-content/themes/twentyfourteen/screenshot.png?ver=4.3', 88, 97, 'https://wordpress.org/support/theme/twentyfourteen/reviews/', 10774628, 60000, 'https://wordpress.org/themes/twentyfourteen/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Fourteen", "slug": "twentyfourteen", "tags": {"blog": "Blog", "news": "News", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "left-sidebar": "Left sidebar", "microformats": "Microformats", "post-formats": "Post formats", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "three-columns": "Three columns", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 88, "status": "open", "ratings": {"1": 6, "2": 4, "3": 5, "4": 13, "5": 69}, "version": "4.3", "homepage": "https://wordpress.org/themes/twentyfourteen/", "requires": "3.6", "sections": {"description": "In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content''s layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier."}, "versions": {"0": "https://downloads.wordpress.org/theme/twentyfourteen.4.3.zip", "1.0": "https://downloads.wordpress.org/theme/twentyfourteen.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentyfourteen.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentyfourteen.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentyfourteen.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentyfourteen.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentyfourteen.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentyfourteen.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentyfourteen.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentyfourteen.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentyfourteen.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentyfourteen.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentyfourteen.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentyfourteen.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentyfourteen.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentyfourteen.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentyfourteen.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentyfourteen.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentyfourteen.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentyfourteen.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentyfourteen.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentyfourteen.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentyfourteen.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentyfourteen.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentyfourteen.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentyfourteen.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentyfourteen.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentyfourteen.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentyfourteen.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentyfourteen.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentyfourteen.3.9.zip", "4.0": "https://downloads.wordpress.org/theme/twentyfourteen.4.0.zip", "4.1": "https://downloads.wordpress.org/theme/twentyfourteen.4.1.zip", "4.2": "https://downloads.wordpress.org/theme/twentyfourteen.4.2.zip", "4.3": "https://downloads.wordpress.org/theme/twentyfourteen.4.3.zip"}, "downloaded": 10774628, "num_ratings": 97, "preview_url": "https://wp-themes.com/twentyfourteen/", "reviews_url": "https://wordpress.org/support/theme/twentyfourteen/reviews/", "is_community": true, "last_updated": "2025-08-05", "requires_php": "5.2.4", "creation_time": "2013-12-12 17:32:45", "download_link": "https://downloads.wordpress.org/theme/twentyfourteen.4.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentyfourteen/screenshot.png?ver=4.3", "active_installs": 60000, "aspiresync_meta": {"id": "019a30c0-13bb-7227-9f58-982314a37366", "name": "Twenty Fourteen", "slug": "twentyfourteen", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1754352000, "version": "4.3"}, "last_updated_time": "2025-08-05 19:29:48", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6cf8-718f-9c69-78cfda4a3a84', 'twentynineteen', 'Twenty Nineteen', '3.1', 'Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you''ll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it''s built to be beautiful on all screen sizes.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentynineteen.3.1.zip', '4.7', '5.2.4', '2025-04-15 13:23:22+00', '2018-12-06 19:07:09+00', 'https://wp-themes.com/twentynineteen/', '//ts.w.org/wp-content/themes/twentynineteen/screenshot.png?ver=3.1', 74, 63, 'https://wordpress.org/support/theme/twentynineteen/reviews/', 11881696, 100000, 'https://wordpress.org/themes/twentynineteen/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Nineteen", "slug": "twentynineteen", "tags": {"one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 74, "status": "open", "ratings": {"1": 15, "2": 5, "3": 4, "4": 1, "5": 38}, "version": "3.1", "homepage": "https://wordpress.org/themes/twentynineteen/", "requires": "4.7", "sections": {"description": "Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you''ll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it''s built to be beautiful on all screen sizes."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentynineteen.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentynineteen.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentynineteen.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentynineteen.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentynineteen.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentynineteen.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentynineteen.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentynineteen.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentynineteen.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentynineteen.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentynineteen.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentynineteen.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentynineteen.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentynineteen.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentynineteen.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentynineteen.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentynineteen.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentynineteen.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentynineteen.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentynineteen.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentynineteen.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentynineteen.3.1.zip"}, "downloaded": 11881696, "num_ratings": 63, "preview_url": "https://wp-themes.com/twentynineteen/", "reviews_url": "https://wordpress.org/support/theme/twentynineteen/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2018-12-06 19:07:09", "download_link": "https://downloads.wordpress.org/theme/twentynineteen.3.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentynineteen/screenshot.png?ver=3.1", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-13d6-70f6-83cb-288d1f851bd6", "name": "Twenty Nineteen", "slug": "twentynineteen", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "3.1"}, "last_updated_time": "2025-04-15 13:23:22", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d01-7107-a87f-67d8744a0c80', 'twentyseventeen', 'Twenty Seventeen', '3.9', 'Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentyseventeen.3.9.zip', '4.7', '5.2.4', '2025-04-15 13:21:43+00', '2016-12-06 19:45:07+00', 'https://wp-themes.com/twentyseventeen/', '//ts.w.org/wp-content/themes/twentyseventeen/screenshot.png?ver=3.9', 90, 119, 'https://wordpress.org/support/theme/twentyseventeen/reviews/', 13296138, 400000, 'https://wordpress.org/themes/twentyseventeen/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Seventeen", "slug": "twentyseventeen", "tags": {"one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "flexible-header": "Flexible header", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 90, "status": "open", "ratings": {"1": 6, "2": 4, "3": 11, "4": 5, "5": 93}, "version": "3.9", "homepage": "https://wordpress.org/themes/twentyseventeen/", "requires": "4.7", "sections": {"description": "Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentyseventeen.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentyseventeen.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentyseventeen.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentyseventeen.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentyseventeen.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentyseventeen.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentyseventeen.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentyseventeen.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentyseventeen.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentyseventeen.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentyseventeen.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentyseventeen.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentyseventeen.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentyseventeen.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentyseventeen.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentyseventeen.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentyseventeen.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentyseventeen.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentyseventeen.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentyseventeen.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentyseventeen.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentyseventeen.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentyseventeen.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentyseventeen.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentyseventeen.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentyseventeen.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentyseventeen.3.6.zip", "3.7": "https://downloads.wordpress.org/theme/twentyseventeen.3.7.zip", "3.8": "https://downloads.wordpress.org/theme/twentyseventeen.3.8.zip", "3.9": "https://downloads.wordpress.org/theme/twentyseventeen.3.9.zip"}, "downloaded": 13296138, "num_ratings": 119, "preview_url": "https://wp-themes.com/twentyseventeen/", "reviews_url": "https://wordpress.org/support/theme/twentyseventeen/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2016-12-06 19:45:07", "download_link": "https://downloads.wordpress.org/theme/twentyseventeen.3.9.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentyseventeen/screenshot.png?ver=3.9", "active_installs": 400000, "aspiresync_meta": {"id": "019a30c0-1418-70f6-b9e5-f5eaf3d80518", "name": "Twenty Seventeen", "slug": "twentyseventeen", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "3.9"}, "last_updated_time": "2025-04-15 13:21:43", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d0b-703e-b4cc-8436d5bd1c9b', 'twentysixteen', 'Twenty Sixteen', '3.6', 'Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentysixteen.3.6.zip', '4.4', '5.2.4', '2025-08-05 19:31:05+00', '2015-08-31 14:00:08+00', 'https://wp-themes.com/twentysixteen/', '//ts.w.org/wp-content/themes/twentysixteen/screenshot.png?ver=3.6', 82, 83, 'https://wordpress.org/support/theme/twentysixteen/reviews/', 11417927, 100000, 'https://wordpress.org/themes/twentysixteen/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Sixteen", "slug": "twentysixteen", "tags": {"blog": "Blog", "one-column": "One column", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "editor-style": "Editor style", "microformats": "Microformats", "post-formats": "Post formats", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "flexible-header": "Flexible header", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 82, "status": "open", "ratings": {"1": 9, "2": 3, "3": 6, "4": 16, "5": 49}, "version": "3.6", "homepage": "https://wordpress.org/themes/twentysixteen/", "requires": "4.4", "sections": {"description": "Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentysixteen.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentysixteen.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentysixteen.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentysixteen.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentysixteen.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentysixteen.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentysixteen.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentysixteen.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentysixteen.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentysixteen.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentysixteen.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentysixteen.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentysixteen.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentysixteen.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentysixteen.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentysixteen.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentysixteen.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentysixteen.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentysixteen.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentysixteen.2.9.zip", "3.0": "https://downloads.wordpress.org/theme/twentysixteen.3.0.zip", "3.1": "https://downloads.wordpress.org/theme/twentysixteen.3.1.zip", "3.2": "https://downloads.wordpress.org/theme/twentysixteen.3.2.zip", "3.3": "https://downloads.wordpress.org/theme/twentysixteen.3.3.zip", "3.4": "https://downloads.wordpress.org/theme/twentysixteen.3.4.zip", "3.5": "https://downloads.wordpress.org/theme/twentysixteen.3.5.zip", "3.6": "https://downloads.wordpress.org/theme/twentysixteen.3.6.zip", "0.1.20150828": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150828.zip", "0.1.20150901": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150901.zip", "0.1.20150902": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150902.zip", "0.1.20150903": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150903.zip", "0.1.20150904": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150904.zip", "0.1.20150905": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150905.zip", "0.1.20150906": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150906.zip", "0.1.20150907": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150907.zip", "0.1.20150908": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150908.zip", "0.1.20150909": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150909.zip", "0.1.20150910": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150910.zip", "0.1.20150911": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150911.zip", "0.1.20150912": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150912.zip", "0.1.20150913": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150913.zip", "0.1.20150914": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150914.zip", "0.1.20150915": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150915.zip", "0.1.20150916": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150916.zip", "0.1.20150917": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150917.zip", "0.1.20150918": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150918.zip", "0.1.20150919": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150919.zip", "0.1.20150920": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150920.zip", "0.1.20150921": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150921.zip", "0.1.20150922": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150922.zip", "0.1.20150923": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150923.zip", "0.1.20150924": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150924.zip", "0.1.20150925": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150925.zip", "0.1.20150926": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150926.zip", "0.1.20150927": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150927.zip", "0.1.20150928": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150928.zip", "0.1.20150929": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150929.zip", "0.1.20150930": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20150930.zip", "0.1.20151001": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151001.zip", "0.1.20151002": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151002.zip", "0.1.20151003": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151003.zip", "0.1.20151004": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151004.zip", "0.1.20151005": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151005.zip", "0.1.20151006": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151006.zip", "0.1.20151007": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151007.zip", "0.1.20151008": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151008.zip", "0.1.20151009": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151009.zip", "0.1.20151010": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151010.zip", "0.1.20151011": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151011.zip", "0.1.20151012": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151012.zip", "0.1.20151013": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151013.zip", "0.1.20151014": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151014.zip", "0.1.20151015": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151015.zip", "0.1.20151016": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151016.zip", "0.1.20151017": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151017.zip", "0.1.20151018": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151018.zip", "0.1.20151019": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151019.zip", "0.1.20151020": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151020.zip", "0.1.20151021": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151021.zip", "0.1.20151022": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151022.zip", "0.1.20151023": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151023.zip", "0.1.20151024": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151024.zip", "0.1.20151025": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151025.zip", "0.1.20151027": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151027.zip", "0.1.20151028": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151028.zip", "0.1.20151029": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151029.zip", "0.1.20151030": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151030.zip", "0.1.20151031": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151031.zip", "0.1.20151101": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151101.zip", "0.1.20151102": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151102.zip", "0.1.20151103": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151103.zip", "0.1.20151104": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151104.zip", "0.1.20151105": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151105.zip", "0.1.20151106": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151106.zip", "0.1.20151107": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151107.zip", "0.1.20151108": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151108.zip", "0.1.20151109": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151109.zip", "0.1.20151110": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151110.zip", "0.1.20151111": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151111.zip", "0.1.20151112": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151112.zip", "0.1.20151113": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151113.zip", "0.1.20151114": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151114.zip", "0.1.20151115": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151115.zip", "0.1.20151116": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151116.zip", "0.1.20151117": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151117.zip", "0.1.20151118": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151118.zip", "0.1.20151119": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151119.zip", "0.1.20151120": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151120.zip", "0.1.20151121": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151121.zip", "0.1.20151122": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151122.zip", "0.1.20151123": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151123.zip", "0.1.20151124": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151124.zip", "0.1.20151125": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151125.zip", "0.1.20151126": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151126.zip", "0.1.20151127": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151127.zip", "0.1.20151128": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151128.zip", "0.1.20151130": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151130.zip", "0.1.20151201": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151201.zip", "0.1.20151202": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151202.zip", "0.1.20151203": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151203.zip", "0.1.20151204": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151204.zip", "0.1.20151205": "https://downloads.wordpress.org/theme/twentysixteen.0.1.20151205.zip"}, "downloaded": 11417927, "num_ratings": 83, "preview_url": "https://wp-themes.com/twentysixteen/", "reviews_url": "https://wordpress.org/support/theme/twentysixteen/reviews/", "is_community": true, "last_updated": "2025-08-05", "requires_php": "5.2.4", "creation_time": "2015-08-31 14:00:08", "download_link": "https://downloads.wordpress.org/theme/twentysixteen.3.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentysixteen/screenshot.png?ver=3.6", "active_installs": 100000, "aspiresync_meta": {"id": "019a30c0-14a4-71e6-bf18-3ea168110ee5", "name": "Twenty Sixteen", "slug": "twentysixteen", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1754352000, "version": "3.6"}, "last_updated_time": "2025-08-05 19:31:05", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d29-707a-94af-11415ac0cfa2', 'twentytwenty', 'Twenty Twenty', '2.9', 'Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentytwenty.2.9.zip', '4.7', '5.2.4', '2025-04-15 13:24:25+00', '2019-11-12 21:31:58+00', 'https://wp-themes.com/twentytwenty/', '//ts.w.org/wp-content/themes/twentytwenty/screenshot.png?ver=2.9', 88, 68, 'https://wordpress.org/support/theme/twentytwenty/reviews/', 11808266, 200000, 'https://wordpress.org/themes/twentytwenty/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Twenty", "slug": "twentytwenty", "tags": {"blog": "Blog", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 88, "status": "open", "ratings": {"1": 5, "2": 3, "3": 3, "4": 4, "5": 53}, "version": "2.9", "homepage": "https://wordpress.org/themes/twentytwenty/", "requires": "4.7", "sections": {"description": "Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwenty.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwenty.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwenty.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwenty.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentytwenty.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentytwenty.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentytwenty.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentytwenty.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentytwenty.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentytwenty.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentytwenty.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentytwenty.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentytwenty.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentytwenty.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentytwenty.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentytwenty.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentytwenty.2.6.zip", "2.7": "https://downloads.wordpress.org/theme/twentytwenty.2.7.zip", "2.8": "https://downloads.wordpress.org/theme/twentytwenty.2.8.zip", "2.9": "https://downloads.wordpress.org/theme/twentytwenty.2.9.zip"}, "downloaded": 11808266, "num_ratings": 68, "preview_url": "https://wp-themes.com/twentytwenty/", "reviews_url": "https://wordpress.org/support/theme/twentytwenty/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.2.4", "creation_time": "2019-11-12 21:31:58", "download_link": "https://downloads.wordpress.org/theme/twentytwenty.2.9.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwenty/screenshot.png?ver=2.9", "active_installs": 200000, "aspiresync_meta": {"id": "019a30c0-14a8-705d-897f-57bd902e50d4", "name": "Twenty Twenty", "slug": "twentytwenty", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1744675200, "version": "2.9"}, "last_updated_time": "2025-04-15 13:24:25", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d34-73a8-b84c-3e8d1b6f560e', 'twentytwentyfive', 'Twenty Twenty-Five', '1.3', 'Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentytwentyfive.1.3.zip', '6.7', '7.2', '2025-08-05 19:30:35+00', '2024-11-13 00:56:57+00', 'https://wp-themes.com/twentytwentyfive/', '//ts.w.org/wp-content/themes/twentytwentyfive/screenshot.png?ver=1.3', 82, 11, 'https://wordpress.org/support/theme/twentytwentyfive/reviews/', 3592178, 1000000, 'https://wordpress.org/themes/twentytwentyfive/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Twenty-Five", "slug": "twentytwentyfive", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 82, "status": "open", "ratings": {"1": 0, "2": 2, "3": 2, "4": 0, "5": 7}, "version": "1.3", "homepage": "https://wordpress.org/themes/twentytwentyfive/", "requires": "6.7", "sections": {"description": "Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwentyfive.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwentyfive.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwentyfive.1.3.zip"}, "downloaded": 3592178, "num_ratings": 11, "preview_url": "https://wp-themes.com/twentytwentyfive/", "reviews_url": "https://wordpress.org/support/theme/twentytwentyfive/reviews/", "is_community": true, "last_updated": "2025-08-05", "requires_php": "7.2", "creation_time": "2024-11-13 00:56:57", "download_link": "https://downloads.wordpress.org/theme/twentytwentyfive.1.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwentyfive/screenshot.png?ver=1.3", "active_installs": 1000000, "aspiresync_meta": {"id": "019a30c0-14af-72ff-9e0d-080395da474e", "name": "Twenty Twenty-Five", "slug": "twentytwentyfive", "type": "theme", "origin": "wp_org", "pulled": 1761754485, "status": "open", "checked": 1761754485, "updated": 1754352000, "version": "1.3"}, "last_updated_time": "2025-08-05 19:30:35", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d3f-720a-a223-d6ae8ff430a8', 'twentytwentyfour', 'Twenty Twenty-Four', '1.3', 'Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip', '6.4', '7.0', '2024-11-13 01:00:34+00', '2023-11-07 19:26:45+00', 'https://wp-themes.com/twentytwentyfour/', '//ts.w.org/wp-content/themes/twentytwentyfour/screenshot.png?ver=1.3', 76, 36, 'https://wordpress.org/support/theme/twentytwentyfour/reviews/', 3772710, 700000, 'https://wordpress.org/themes/twentytwentyfour/', false, NULL, true, 'https://github.com/WordPress/twentytwentyfour', 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Twenty-Four", "slug": "twentytwentyfour", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 76, "status": "open", "ratings": {"1": 7, "2": 3, "3": 1, "4": 3, "5": 22}, "version": "1.3", "homepage": "https://wordpress.org/themes/twentytwentyfour/", "requires": "6.4", "sections": {"description": "Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwentyfour.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip"}, "downloaded": 3772710, "num_ratings": 36, "preview_url": "https://wp-themes.com/twentytwentyfour/", "reviews_url": "https://wordpress.org/support/theme/twentytwentyfour/reviews/", "is_community": true, "last_updated": "2024-11-13", "requires_php": "7.0", "creation_time": "2023-11-07 19:26:45", "download_link": "https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwentyfour/screenshot.png?ver=1.3", "active_installs": 700000, "aspiresync_meta": {"id": "019a30c0-14f5-7265-9165-08138d6ce7df", "name": "Twenty Twenty-Four", "slug": "twentytwentyfour", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1731456000, "version": "1.3"}, "last_updated_time": "2024-11-13 01:00:34", "external_support_url": false, "external_repository_url": "https://github.com/WordPress/twentytwentyfour"}'); -INSERT INTO public.themes VALUES ('019a30c1-6d4a-7314-919b-9770a2036049', 'twentytwentyone', 'Twenty Twenty-One', '2.6', 'Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentytwentyone.2.6.zip', '5.3', '5.6', '2025-08-05 19:31:53+00', '2020-12-09 00:29:48+00', 'https://wp-themes.com/twentytwentyone/', '//ts.w.org/wp-content/themes/twentytwentyone/screenshot.png?ver=2.6', 84, 45, 'https://wordpress.org/support/theme/twentytwentyone/reviews/', 10836329, 300000, 'https://wordpress.org/themes/twentytwentyone/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Twenty-One", "slug": "twentytwentyone", "tags": {"blog": "Blog", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 84, "status": "open", "ratings": {"1": 6, "2": 1, "3": 1, "4": 6, "5": 31}, "version": "2.6", "homepage": "https://wordpress.org/themes/twentytwentyone/", "requires": "5.3", "sections": {"description": "Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwentyone.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwentyone.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwentyone.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwentyone.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentytwentyone.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentytwentyone.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentytwentyone.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentytwentyone.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentytwentyone.2.0.zip", "2.1": "https://downloads.wordpress.org/theme/twentytwentyone.2.1.zip", "2.2": "https://downloads.wordpress.org/theme/twentytwentyone.2.2.zip", "2.3": "https://downloads.wordpress.org/theme/twentytwentyone.2.3.zip", "2.4": "https://downloads.wordpress.org/theme/twentytwentyone.2.4.zip", "2.5": "https://downloads.wordpress.org/theme/twentytwentyone.2.5.zip", "2.6": "https://downloads.wordpress.org/theme/twentytwentyone.2.6.zip"}, "downloaded": 10836329, "num_ratings": 45, "preview_url": "https://wp-themes.com/twentytwentyone/", "reviews_url": "https://wordpress.org/support/theme/twentytwentyone/reviews/", "is_community": true, "last_updated": "2025-08-05", "requires_php": "5.6", "creation_time": "2020-12-09 00:29:48", "download_link": "https://downloads.wordpress.org/theme/twentytwentyone.2.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwentyone/screenshot.png?ver=2.6", "active_installs": 300000, "aspiresync_meta": {"id": "019a30c0-153e-7276-adc8-53e562a6d13a", "name": "Twenty Twenty-One", "slug": "twentytwentyone", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1754352000, "version": "2.6"}, "last_updated_time": "2025-08-05 19:31:53", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d53-7224-80d8-7d8494eaeaae', 'twentytwentythree', 'Twenty Twenty-Three', '1.6', 'Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip', '6.1', '5.6', '2024-11-13 00:18:51+00', '2022-11-02 02:05:18+00', 'https://wp-themes.com/twentytwentythree/', '//ts.w.org/wp-content/themes/twentytwentythree/screenshot.png?ver=1.6', 68, 62, 'https://wordpress.org/support/theme/twentytwentythree/reviews/', 6145125, 300000, 'https://wordpress.org/themes/twentytwentythree/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Twenty-Three", "slug": "twentytwentythree", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 68, "status": "open", "ratings": {"1": 20, "2": 2, "3": 5, "4": 2, "5": 33}, "version": "1.6", "homepage": "https://wordpress.org/themes/twentytwentythree/", "requires": "6.1", "sections": {"description": "Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwentythree.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwentythree.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwentythree.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwentythree.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentytwentythree.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip"}, "downloaded": 6145125, "num_ratings": 62, "preview_url": "https://wp-themes.com/twentytwentythree/", "reviews_url": "https://wordpress.org/support/theme/twentytwentythree/reviews/", "is_community": true, "last_updated": "2024-11-13", "requires_php": "5.6", "creation_time": "2022-11-02 02:05:18", "download_link": "https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwentythree/screenshot.png?ver=1.6", "active_installs": 300000, "aspiresync_meta": {"id": "019a30c0-1593-7138-aaf6-2773986e48bb", "name": "Twenty Twenty-Three", "slug": "twentytwentythree", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1731456000, "version": "1.6"}, "last_updated_time": "2024-11-13 00:18:51", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d5d-7054-8937-5cf56d16747c', 'twentytwentytwo', 'Twenty Twenty-Two', '2.0', 'Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours.', '019a30c1-6423-71c7-a296-15d97d379bb7', 'https://downloads.wordpress.org/theme/twentytwentytwo.2.0.zip', '5.9', '5.6', '2025-04-15 13:27:33+00', '2022-01-25 22:25:39+00', 'https://wp-themes.com/twentytwentytwo/', '//ts.w.org/wp-content/themes/twentytwentytwo/screenshot.png?ver=2.0', 64, 70, 'https://wordpress.org/support/theme/twentytwentytwo/reviews/', 8347524, 200000, 'https://wordpress.org/themes/twentytwentytwo/', false, NULL, true, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Twenty Twenty-Two", "slug": "twentytwentytwo", "tags": {"blog": "Blog", "news": "News", "portfolio": "Portfolio", "one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "style-variations": "Style variations", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "accessibility-ready": "Accessibility ready", "rtl-language-support": "RTL language support"}, "author": {"author": "the WordPress team", "avatar": "https://secure.gravatar.com/avatar/178f40079143ff7464125e4fbc88e62024a16442920a6a3d6dfa3d7e626be20d?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/wordpressdotorg/", "author_url": "https://wordpress.org/", "display_name": "WordPress.org", "user_nicename": "wordpressdotorg"}, "rating": 64, "status": "open", "ratings": {"1": 26, "2": 3, "3": 2, "4": 8, "5": 31}, "version": "2.0", "homepage": "https://wordpress.org/themes/twentytwentytwo/", "requires": "5.9", "sections": {"description": "Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/twentytwentytwo.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/twentytwentytwo.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/twentytwentytwo.1.2.zip", "1.3": "https://downloads.wordpress.org/theme/twentytwentytwo.1.3.zip", "1.4": "https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/twentytwentytwo.1.5.zip", "1.6": "https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip", "1.7": "https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/twentytwentytwo.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/twentytwentytwo.1.9.zip", "2.0": "https://downloads.wordpress.org/theme/twentytwentytwo.2.0.zip"}, "downloaded": 8347524, "num_ratings": 70, "preview_url": "https://wp-themes.com/twentytwentytwo/", "reviews_url": "https://wordpress.org/support/theme/twentytwentytwo/reviews/", "is_community": true, "last_updated": "2025-04-15", "requires_php": "5.6", "creation_time": "2022-01-25 22:25:39", "download_link": "https://downloads.wordpress.org/theme/twentytwentytwo.2.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/twentytwentytwo/screenshot.png?ver=2.0", "active_installs": 200000, "aspiresync_meta": {"id": "019a30c0-15aa-71ae-8afa-a3c852182b32", "name": "Twenty Twenty-Two", "slug": "twentytwentytwo", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1744675200, "version": "2.0"}, "last_updated_time": "2025-04-15 13:27:33", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d68-71bf-8522-29f9ec33df8d', 'vantage', 'Vantage', '1.20.32', 'Vantage is a flexible multipurpose theme. Its strength lies in its tight integration with some powerful plugins like Page Builder for responsive page layouts, Smart Slider 3 for big beautiful sliders and WooCommerce to help you sell online. Vantage is fully responsive and retina ready. Use it to start a business site, portfolio or online store. We offer free support on our forum (https://siteorigin.com/thread/).', '019a30c1-6d67-70cc-9db1-c81ebfbb21b1', 'https://downloads.wordpress.org/theme/vantage.1.20.32.zip', '4.7', '5.6.20', '2025-08-04 18:50:22+00', '2013-09-17 01:41:10+00', 'https://wp-themes.com/vantage/', '//ts.w.org/wp-content/themes/vantage/screenshot.jpg?ver=1.20.32', 92, 165, 'https://wordpress.org/support/theme/vantage/reviews/', 3201217, 40000, 'https://wordpress.org/themes/vantage/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Vantage", "slug": "vantage", "tags": {"blog": "Blog", "e-commerce": "E-commerce", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "grid-layout": "Grid layout", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "post-formats": "Post formats", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "SiteOrigin", "avatar": "https://secure.gravatar.com/avatar/c936acc8bcc60aa08303d15f12692319c15ef4c3b783c057abb0570fd1e0f2fb?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/siteorigin/", "author_url": "https://siteorigin.com/", "display_name": "SiteOrigin", "user_nicename": "siteorigin"}, "rating": 92, "status": "open", "ratings": {"1": 9, "2": 4, "3": 6, "4": 12, "5": 134}, "version": "1.20.32", "homepage": "https://wordpress.org/themes/vantage/", "requires": "4.7", "sections": {"description": "Vantage is a flexible multipurpose theme. Its strength lies in its tight integration with some powerful plugins like Page Builder for responsive page layouts, Smart Slider 3 for big beautiful sliders and WooCommerce to help you sell online. Vantage is fully responsive and retina ready. Use it to start a business site, portfolio or online store. We offer free support on our forum (https://siteorigin.com/thread/)."}, "versions": {"1.0": "https://downloads.wordpress.org/theme/vantage.1.0.zip", "1.1": "https://downloads.wordpress.org/theme/vantage.1.1.zip", "1.2": "https://downloads.wordpress.org/theme/vantage.1.2.zip", "1.4": "https://downloads.wordpress.org/theme/vantage.1.4.zip", "1.5": "https://downloads.wordpress.org/theme/vantage.1.5.zip", "1.7": "https://downloads.wordpress.org/theme/vantage.1.7.zip", "1.8": "https://downloads.wordpress.org/theme/vantage.1.8.zip", "1.9": "https://downloads.wordpress.org/theme/vantage.1.9.zip", "1.10": "https://downloads.wordpress.org/theme/vantage.1.10.zip", "1.11": "https://downloads.wordpress.org/theme/vantage.1.11.zip", "1.12": "https://downloads.wordpress.org/theme/vantage.1.12.zip", "1.13": "https://downloads.wordpress.org/theme/vantage.1.13.zip", "1.14": "https://downloads.wordpress.org/theme/vantage.1.14.zip", "1.0.1": "https://downloads.wordpress.org/theme/vantage.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/vantage.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/vantage.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/vantage.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/vantage.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/vantage.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/vantage.1.0.7.zip", "1.0.9": "https://downloads.wordpress.org/theme/vantage.1.0.9.zip", "1.1.1": "https://downloads.wordpress.org/theme/vantage.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/vantage.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/vantage.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/vantage.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/vantage.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/vantage.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/vantage.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/vantage.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/vantage.1.1.9.zip", "1.2.1": "https://downloads.wordpress.org/theme/vantage.1.2.1.zip", "1.2.3": "https://downloads.wordpress.org/theme/vantage.1.2.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/vantage.1.3.4.zip", "1.4.1": "https://downloads.wordpress.org/theme/vantage.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/vantage.1.4.2.zip", "1.4.4": "https://downloads.wordpress.org/theme/vantage.1.4.4.zip", "1.5.1": "https://downloads.wordpress.org/theme/vantage.1.5.1.zip", "1.5.3": "https://downloads.wordpress.org/theme/vantage.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/vantage.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/vantage.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/vantage.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/vantage.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/vantage.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/vantage.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/vantage.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/vantage.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/vantage.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/vantage.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/vantage.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/vantage.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/vantage.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/vantage.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/vantage.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/vantage.1.6.9.zip", "1.7.1": "https://downloads.wordpress.org/theme/vantage.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/vantage.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/vantage.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/vantage.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/vantage.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/vantage.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/vantage.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/vantage.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/vantage.1.7.9.zip", "1.8.1": "https://downloads.wordpress.org/theme/vantage.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/vantage.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/vantage.1.8.3.zip", "1.9.1": "https://downloads.wordpress.org/theme/vantage.1.9.1.zip", "1.0.10": "https://downloads.wordpress.org/theme/vantage.1.0.10.zip", "1.0.11": "https://downloads.wordpress.org/theme/vantage.1.0.11.zip", "1.1.10": "https://downloads.wordpress.org/theme/vantage.1.1.10.zip", "1.1.11": "https://downloads.wordpress.org/theme/vantage.1.1.11.zip", "1.1.12": "https://downloads.wordpress.org/theme/vantage.1.1.12.zip", "1.10.1": "https://downloads.wordpress.org/theme/vantage.1.10.1.zip", "1.10.2": "https://downloads.wordpress.org/theme/vantage.1.10.2.zip", "1.11.1": "https://downloads.wordpress.org/theme/vantage.1.11.1.zip", "1.11.2": "https://downloads.wordpress.org/theme/vantage.1.11.2.zip", "1.11.3": "https://downloads.wordpress.org/theme/vantage.1.11.3.zip", "1.14.1": "https://downloads.wordpress.org/theme/vantage.1.14.1.zip", "1.14.2": "https://downloads.wordpress.org/theme/vantage.1.14.2.zip", "1.14.3": "https://downloads.wordpress.org/theme/vantage.1.14.3.zip", "1.14.4": "https://downloads.wordpress.org/theme/vantage.1.14.4.zip", "1.14.5": "https://downloads.wordpress.org/theme/vantage.1.14.5.zip", "1.15.0": "https://downloads.wordpress.org/theme/vantage.1.15.0.zip", "1.15.1": "https://downloads.wordpress.org/theme/vantage.1.15.1.zip", "1.15.2": "https://downloads.wordpress.org/theme/vantage.1.15.2.zip", "1.15.3": "https://downloads.wordpress.org/theme/vantage.1.15.3.zip", "1.15.4": "https://downloads.wordpress.org/theme/vantage.1.15.4.zip", "1.15.5": "https://downloads.wordpress.org/theme/vantage.1.15.5.zip", "1.15.6": "https://downloads.wordpress.org/theme/vantage.1.15.6.zip", "1.15.7": "https://downloads.wordpress.org/theme/vantage.1.15.7.zip", "1.16.0": "https://downloads.wordpress.org/theme/vantage.1.16.0.zip", "1.17.0": "https://downloads.wordpress.org/theme/vantage.1.17.0.zip", "1.17.1": "https://downloads.wordpress.org/theme/vantage.1.17.1.zip", "1.17.2": "https://downloads.wordpress.org/theme/vantage.1.17.2.zip", "1.17.3": "https://downloads.wordpress.org/theme/vantage.1.17.3.zip", "1.17.4": "https://downloads.wordpress.org/theme/vantage.1.17.4.zip", "1.18.0": "https://downloads.wordpress.org/theme/vantage.1.18.0.zip", "1.18.1": "https://downloads.wordpress.org/theme/vantage.1.18.1.zip", "1.19.0": "https://downloads.wordpress.org/theme/vantage.1.19.0.zip", "1.19.1": "https://downloads.wordpress.org/theme/vantage.1.19.1.zip", "1.19.2": "https://downloads.wordpress.org/theme/vantage.1.19.2.zip", "1.19.3": "https://downloads.wordpress.org/theme/vantage.1.19.3.zip", "1.19.4": "https://downloads.wordpress.org/theme/vantage.1.19.4.zip", "1.19.5": "https://downloads.wordpress.org/theme/vantage.1.19.5.zip", "1.19.6": "https://downloads.wordpress.org/theme/vantage.1.19.6.zip", "1.19.7": "https://downloads.wordpress.org/theme/vantage.1.19.7.zip", "1.19.8": "https://downloads.wordpress.org/theme/vantage.1.19.8.zip", "1.19.9": "https://downloads.wordpress.org/theme/vantage.1.19.9.zip", "1.20.0": "https://downloads.wordpress.org/theme/vantage.1.20.0.zip", "1.20.1": "https://downloads.wordpress.org/theme/vantage.1.20.1.zip", "1.20.2": "https://downloads.wordpress.org/theme/vantage.1.20.2.zip", "1.20.3": "https://downloads.wordpress.org/theme/vantage.1.20.3.zip", "1.20.4": "https://downloads.wordpress.org/theme/vantage.1.20.4.zip", "1.20.5": "https://downloads.wordpress.org/theme/vantage.1.20.5.zip", "1.20.6": "https://downloads.wordpress.org/theme/vantage.1.20.6.zip", "1.20.7": "https://downloads.wordpress.org/theme/vantage.1.20.7.zip", "1.20.8": "https://downloads.wordpress.org/theme/vantage.1.20.8.zip", "1.20.9": "https://downloads.wordpress.org/theme/vantage.1.20.9.zip", "1.7.10": "https://downloads.wordpress.org/theme/vantage.1.7.10.zip", "1.7.11": "https://downloads.wordpress.org/theme/vantage.1.7.11.zip", "1.7.12": "https://downloads.wordpress.org/theme/vantage.1.7.12.zip", "1.7.13": "https://downloads.wordpress.org/theme/vantage.1.7.13.zip", "1.7.14": "https://downloads.wordpress.org/theme/vantage.1.7.14.zip", "1.19.10": "https://downloads.wordpress.org/theme/vantage.1.19.10.zip", "1.19.11": "https://downloads.wordpress.org/theme/vantage.1.19.11.zip", "1.19.12": "https://downloads.wordpress.org/theme/vantage.1.19.12.zip", "1.19.13": "https://downloads.wordpress.org/theme/vantage.1.19.13.zip", "1.20.10": "https://downloads.wordpress.org/theme/vantage.1.20.10.zip", "1.20.11": "https://downloads.wordpress.org/theme/vantage.1.20.11.zip", "1.20.12": "https://downloads.wordpress.org/theme/vantage.1.20.12.zip", "1.20.13": "https://downloads.wordpress.org/theme/vantage.1.20.13.zip", "1.20.14": "https://downloads.wordpress.org/theme/vantage.1.20.14.zip", "1.20.15": "https://downloads.wordpress.org/theme/vantage.1.20.15.zip", "1.20.16": "https://downloads.wordpress.org/theme/vantage.1.20.16.zip", "1.20.17": "https://downloads.wordpress.org/theme/vantage.1.20.17.zip", "1.20.18": "https://downloads.wordpress.org/theme/vantage.1.20.18.zip", "1.20.19": "https://downloads.wordpress.org/theme/vantage.1.20.19.zip", "1.20.20": "https://downloads.wordpress.org/theme/vantage.1.20.20.zip", "1.20.21": "https://downloads.wordpress.org/theme/vantage.1.20.21.zip", "1.20.22": "https://downloads.wordpress.org/theme/vantage.1.20.22.zip", "1.20.23": "https://downloads.wordpress.org/theme/vantage.1.20.23.zip", "1.20.24": "https://downloads.wordpress.org/theme/vantage.1.20.24.zip", "1.20.25": "https://downloads.wordpress.org/theme/vantage.1.20.25.zip", "1.20.26": "https://downloads.wordpress.org/theme/vantage.1.20.26.zip", "1.20.27": "https://downloads.wordpress.org/theme/vantage.1.20.27.zip", "1.20.28": "https://downloads.wordpress.org/theme/vantage.1.20.28.zip", "1.20.29": "https://downloads.wordpress.org/theme/vantage.1.20.29.zip", "1.20.30": "https://downloads.wordpress.org/theme/vantage.1.20.30.zip", "1.20.31": "https://downloads.wordpress.org/theme/vantage.1.20.31.zip", "1.20.32": "https://downloads.wordpress.org/theme/vantage.1.20.32.zip"}, "downloaded": 3201217, "num_ratings": 165, "preview_url": "https://wp-themes.com/vantage/", "reviews_url": "https://wordpress.org/support/theme/vantage/reviews/", "is_community": false, "last_updated": "2025-08-04", "requires_php": "5.6.20", "creation_time": "2013-09-17 01:41:10", "download_link": "https://downloads.wordpress.org/theme/vantage.1.20.32.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/vantage/screenshot.jpg?ver=1.20.32", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-15ee-7221-bb86-1c71e03ff01c", "name": "Vantage", "slug": "vantage", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1754265600, "version": "1.20.32"}, "last_updated_time": "2025-08-04 18:50:22", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d73-705c-a5d5-10ade360ec66', 'variations', 'Variations', '4.4.0', 'Variations is a block theme and hopefully the last theme you will even have to install. It comes with many different templates and block patterns to make creating a website easy.', '019a30c1-6d73-705c-a5d5-10ade2bdc506', 'https://downloads.wordpress.org/theme/variations.4.4.0.zip', '6.0', '7.4', '2025-04-14 07:38:06+00', '2023-10-02 07:56:47+00', 'https://wp-themes.com/variations/', '//ts.w.org/wp-content/themes/variations/screenshot.png?ver=4.4.0', 100, 11, 'https://wordpress.org/support/theme/variations/reviews/', 176947, 10000, 'https://wordpress.org/themes/variations/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Variations", "slug": "variations", "tags": {"one-column": "One column", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "block-patterns": "Block editor patterns", "featured-images": "Featured images", "full-site-editing": "Block themes"}, "author": {"author": "Tyler Moore", "avatar": "https://secure.gravatar.com/avatar/debf186d53be73ad2d16a86b5676891b04c17b8031aa5c64cc085e5cd89d9bb0?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/conutant/", "author_url": false, "display_name": "Tyler Moore", "user_nicename": "conutant"}, "rating": 100, "status": "open", "ratings": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 11}, "version": "4.4.0", "homepage": "https://wordpress.org/themes/variations/", "requires": "6.0", "sections": {"description": "Variations is a block theme and hopefully the last theme you will even have to install. It comes with many different templates and block patterns to make creating a website easy."}, "versions": {"1.0.0": "https://downloads.wordpress.org/theme/variations.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/variations.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/variations.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/variations.1.0.3.zip", "2.0.0": "https://downloads.wordpress.org/theme/variations.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/variations.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/variations.2.0.2.zip", "3.0.0": "https://downloads.wordpress.org/theme/variations.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/variations.3.0.1.zip", "4.0.0": "https://downloads.wordpress.org/theme/variations.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/variations.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/variations.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/theme/variations.4.0.3.zip", "4.1.0": "https://downloads.wordpress.org/theme/variations.4.1.0.zip", "4.2.0": "https://downloads.wordpress.org/theme/variations.4.2.0.zip", "4.2.1": "https://downloads.wordpress.org/theme/variations.4.2.1.zip", "4.2.2": "https://downloads.wordpress.org/theme/variations.4.2.2.zip", "4.2.3": "https://downloads.wordpress.org/theme/variations.4.2.3.zip", "4.2.4": "https://downloads.wordpress.org/theme/variations.4.2.4.zip", "4.2.5": "https://downloads.wordpress.org/theme/variations.4.2.5.zip", "4.3.0": "https://downloads.wordpress.org/theme/variations.4.3.0.zip", "4.3.1": "https://downloads.wordpress.org/theme/variations.4.3.1.zip", "4.3.2": "https://downloads.wordpress.org/theme/variations.4.3.2.zip", "4.3.3": "https://downloads.wordpress.org/theme/variations.4.3.3.zip", "4.3.4": "https://downloads.wordpress.org/theme/variations.4.3.4.zip", "4.4.0": "https://downloads.wordpress.org/theme/variations.4.4.0.zip"}, "downloaded": 176947, "num_ratings": 11, "preview_url": "https://wp-themes.com/variations/", "reviews_url": "https://wordpress.org/support/theme/variations/reviews/", "is_community": false, "last_updated": "2025-04-14", "requires_php": "7.4", "creation_time": "2023-10-02 07:56:47", "download_link": "https://downloads.wordpress.org/theme/variations.4.4.0.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/variations/screenshot.png?ver=4.4.0", "active_installs": 10000, "aspiresync_meta": {"id": "019a30c0-1638-73cc-a75b-f89a1a57fb3c", "name": "Variations", "slug": "variations", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1744588800, "version": "4.4.0"}, "last_updated_time": "2025-04-14 07:38:06", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d86-71e1-b0f1-f61885cc9b75', 'woostify', 'Woostify', '2.4.4', 'Woostify is fast, lightweight, responsive and super flexible WooCommerce theme built with SEO, speed, and usability in mind. The theme works great with any of your favorite page builder likes Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, etc. Therefore, you can build any type of websites like shop, business agencies, corporate, portfolio, education, university portal, consulting, church, restaurant, medical and so on. Woostify is compatible with all well-coded plugins, including major ones like WooCommerce, OrbitFox, Yoast, BuddyPress, bbPress, etc. Learn more about the theme and ready to import demo sites at https://woostify.com', '019a30c1-6d85-71d8-a325-b48be6370c47', 'https://downloads.wordpress.org/theme/woostify.2.4.4.zip', '4.7', '7.3', '2025-10-15 06:46:55+00', '2019-02-27 10:22:09+00', 'https://wp-themes.com/woostify/', '//ts.w.org/wp-content/themes/woostify/screenshot.png?ver=2.4.4', 98, 125, 'https://wordpress.org/support/theme/woostify/reviews/', 740715, 40000, 'https://wordpress.org/themes/woostify/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Woostify", "slug": "woostify", "tags": {"e-commerce": "E-commerce", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "custom-header": "Custom header", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "Woostify", "avatar": "https://secure.gravatar.com/avatar/a00b1a365dddc853a508c096cbb79b73fd7c2f027a931255b8b13225e820c178?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/duongancol/", "author_url": "https://woostify.com/about", "display_name": "Dylan Ngo - Woostify", "user_nicename": "duongancol"}, "rating": 98, "status": "open", "ratings": {"1": 1, "2": 1, "3": 0, "4": 3, "5": 120}, "version": "2.4.4", "homepage": "https://wordpress.org/themes/woostify/", "requires": "4.7", "sections": {"description": "Woostify is fast, lightweight, responsive and super flexible WooCommerce theme built with SEO, speed, and usability in mind. The theme works great with any of your favorite page builder likes Elementor, Beaver Builder, SiteOrigin, Thrive Architect, Divi, etc. Therefore, you can build any type of websites like shop, business agencies, corporate, portfolio, education, university portal, consulting, church, restaurant, medical and so on. Woostify is compatible with all well-coded plugins, including major ones like WooCommerce, OrbitFox, Yoast, BuddyPress, bbPress, etc. Learn more about the theme and ready to import demo sites at https://woostify.com"}, "versions": {"1.0": "https://downloads.wordpress.org/theme/woostify.1.0.zip", "1.3": "https://downloads.wordpress.org/theme/woostify.1.3.zip", "1.0.1": "https://downloads.wordpress.org/theme/woostify.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/woostify.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/woostify.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/woostify.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/woostify.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/woostify.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/woostify.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/woostify.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/woostify.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/woostify.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/woostify.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/woostify.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/woostify.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/woostify.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/woostify.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/woostify.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/woostify.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/woostify.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/woostify.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/woostify.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/woostify.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/woostify.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/woostify.1.2.3.zip", "1.3.1": "https://downloads.wordpress.org/theme/woostify.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/woostify.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/woostify.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/woostify.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/woostify.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/woostify.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/woostify.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/woostify.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/woostify.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/woostify.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/woostify.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/woostify.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/woostify.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/woostify.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/woostify.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/woostify.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/woostify.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/woostify.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/woostify.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/woostify.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/woostify.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/woostify.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/woostify.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/woostify.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/woostify.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/woostify.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/woostify.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/woostify.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/woostify.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/woostify.1.6.0.zip", "1.6.1": "https://downloads.wordpress.org/theme/woostify.1.6.1.zip", "1.6.2": "https://downloads.wordpress.org/theme/woostify.1.6.2.zip", "1.6.3": "https://downloads.wordpress.org/theme/woostify.1.6.3.zip", "1.6.4": "https://downloads.wordpress.org/theme/woostify.1.6.4.zip", "1.6.5": "https://downloads.wordpress.org/theme/woostify.1.6.5.zip", "1.6.6": "https://downloads.wordpress.org/theme/woostify.1.6.6.zip", "1.6.7": "https://downloads.wordpress.org/theme/woostify.1.6.7.zip", "1.6.8": "https://downloads.wordpress.org/theme/woostify.1.6.8.zip", "1.6.9": "https://downloads.wordpress.org/theme/woostify.1.6.9.zip", "1.7.0": "https://downloads.wordpress.org/theme/woostify.1.7.0.zip", "1.7.1": "https://downloads.wordpress.org/theme/woostify.1.7.1.zip", "1.7.2": "https://downloads.wordpress.org/theme/woostify.1.7.2.zip", "1.7.3": "https://downloads.wordpress.org/theme/woostify.1.7.3.zip", "1.7.4": "https://downloads.wordpress.org/theme/woostify.1.7.4.zip", "1.7.5": "https://downloads.wordpress.org/theme/woostify.1.7.5.zip", "1.7.6": "https://downloads.wordpress.org/theme/woostify.1.7.6.zip", "1.7.7": "https://downloads.wordpress.org/theme/woostify.1.7.7.zip", "1.7.8": "https://downloads.wordpress.org/theme/woostify.1.7.8.zip", "1.7.9": "https://downloads.wordpress.org/theme/woostify.1.7.9.zip", "1.8.0": "https://downloads.wordpress.org/theme/woostify.1.8.0.zip", "1.8.1": "https://downloads.wordpress.org/theme/woostify.1.8.1.zip", "1.8.2": "https://downloads.wordpress.org/theme/woostify.1.8.2.zip", "1.8.3": "https://downloads.wordpress.org/theme/woostify.1.8.3.zip", "1.8.4": "https://downloads.wordpress.org/theme/woostify.1.8.4.zip", "1.8.5": "https://downloads.wordpress.org/theme/woostify.1.8.5.zip", "1.8.6": "https://downloads.wordpress.org/theme/woostify.1.8.6.zip", "1.8.7": "https://downloads.wordpress.org/theme/woostify.1.8.7.zip", "1.8.8": "https://downloads.wordpress.org/theme/woostify.1.8.8.zip", "1.8.9": "https://downloads.wordpress.org/theme/woostify.1.8.9.zip", "1.9.0": "https://downloads.wordpress.org/theme/woostify.1.9.0.zip", "1.9.1": "https://downloads.wordpress.org/theme/woostify.1.9.1.zip", "1.9.2": "https://downloads.wordpress.org/theme/woostify.1.9.2.zip", "1.9.3": "https://downloads.wordpress.org/theme/woostify.1.9.3.zip", "1.9.4": "https://downloads.wordpress.org/theme/woostify.1.9.4.zip", "1.9.5": "https://downloads.wordpress.org/theme/woostify.1.9.5.zip", "1.9.6": "https://downloads.wordpress.org/theme/woostify.1.9.6.zip", "1.9.7": "https://downloads.wordpress.org/theme/woostify.1.9.7.zip", "1.9.8": "https://downloads.wordpress.org/theme/woostify.1.9.8.zip", "1.9.9": "https://downloads.wordpress.org/theme/woostify.1.9.9.zip", "2.0.0": "https://downloads.wordpress.org/theme/woostify.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/woostify.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/woostify.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/woostify.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/woostify.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/woostify.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/woostify.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/woostify.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/woostify.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/woostify.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/woostify.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/woostify.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/woostify.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/woostify.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/woostify.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/woostify.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/woostify.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/woostify.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/woostify.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/theme/woostify.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/theme/woostify.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/woostify.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/woostify.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/woostify.2.2.3.zip", "2.2.4": "https://downloads.wordpress.org/theme/woostify.2.2.4.zip", "2.2.5": "https://downloads.wordpress.org/theme/woostify.2.2.5.zip", "2.2.6": "https://downloads.wordpress.org/theme/woostify.2.2.6.zip", "2.2.7": "https://downloads.wordpress.org/theme/woostify.2.2.7.zip", "2.2.8": "https://downloads.wordpress.org/theme/woostify.2.2.8.zip", "2.2.9": "https://downloads.wordpress.org/theme/woostify.2.2.9.zip", "2.3.0": "https://downloads.wordpress.org/theme/woostify.2.3.0.zip", "2.3.1": "https://downloads.wordpress.org/theme/woostify.2.3.1.zip", "2.3.2": "https://downloads.wordpress.org/theme/woostify.2.3.2.zip", "2.3.3": "https://downloads.wordpress.org/theme/woostify.2.3.3.zip", "2.3.4": "https://downloads.wordpress.org/theme/woostify.2.3.4.zip", "2.3.5": "https://downloads.wordpress.org/theme/woostify.2.3.5.zip", "2.3.6": "https://downloads.wordpress.org/theme/woostify.2.3.6.zip", "2.3.7": "https://downloads.wordpress.org/theme/woostify.2.3.7.zip", "2.3.8": "https://downloads.wordpress.org/theme/woostify.2.3.8.zip", "2.3.9": "https://downloads.wordpress.org/theme/woostify.2.3.9.zip", "2.4.0": "https://downloads.wordpress.org/theme/woostify.2.4.0.zip", "2.4.1": "https://downloads.wordpress.org/theme/woostify.2.4.1.zip", "2.4.2": "https://downloads.wordpress.org/theme/woostify.2.4.2.zip", "2.4.3": "https://downloads.wordpress.org/theme/woostify.2.4.3.zip", "2.4.4": "https://downloads.wordpress.org/theme/woostify.2.4.4.zip"}, "downloaded": 740715, "num_ratings": 125, "preview_url": "https://wp-themes.com/woostify/", "reviews_url": "https://wordpress.org/support/theme/woostify/reviews/", "is_community": false, "last_updated": "2025-10-15", "requires_php": "7.3", "creation_time": "2019-02-27 10:22:09", "download_link": "https://downloads.wordpress.org/theme/woostify.2.4.4.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/woostify/screenshot.png?ver=2.4.4", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-1664-7246-82c9-147009f76174", "name": "Woostify", "slug": "woostify", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1760486400, "version": "2.4.4"}, "last_updated_time": "2025-10-15 06:46:55", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d8f-72e9-b828-a59b76dcbca5', 'yith-wonder', 'YITH Wonder', '2.1.1', 'Wonder is the new block-based, multi-purpose, WordPress theme by YITH. Compose your pages to fit any design you like with the power of Full Site Editing (FSE) and the included wide range of Block Patterns. The pre-built pages will help you populate and transform your website into a wonderful website. Customize colors and font pairings to create your own unique look and feel. Check out the demo site at https://wonder.yithemes.com/', '019a30c1-6d8e-73d8-a996-d05fd34768bb', 'https://downloads.wordpress.org/theme/yith-wonder.2.1.1.zip', '6.5', '7.0', '2025-04-09 10:38:28+00', '2022-08-18 09:59:05+00', 'https://wp-themes.com/yith-wonder/', '//ts.w.org/wp-content/themes/yith-wonder/screenshot.jpg?ver=2.1.1', 80, 2, 'https://wordpress.org/support/theme/yith-wonder/reviews/', 165778, 60000, 'https://wordpress.org/themes/yith-wonder/', false, NULL, false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "YITH Wonder", "slug": "yith-wonder", "tags": {"blog": "Blog", "portfolio": "Portfolio", "e-commerce": "E-commerce", "custom-logo": "Custom logo", "custom-menu": "Custom menu", "sticky-post": "Sticky post", "wide-blocks": "Wide blocks", "block-styles": "Block editor styles", "editor-style": "Editor style", "custom-colors": "Custom colors", "theme-options": "Theme options", "block-patterns": "Block editor patterns", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "template-editing": "Template editing", "custom-background": "Custom background", "full-site-editing": "Block themes", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template"}, "author": {"author": "YITH", "avatar": "https://secure.gravatar.com/avatar/4e88fd6e6b929e4e97c69bf6597dabd50258795b67425576dd257bb72e508a6b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/yithemes/", "author_url": "https://yithemes.com/", "display_name": "YITHEMES", "user_nicename": "yithemes"}, "rating": 80, "status": "open", "ratings": {"1": 0, "2": 0, "3": 1, "4": 0, "5": 1}, "version": "2.1.1", "homepage": "https://wordpress.org/themes/yith-wonder/", "requires": "6.5", "sections": {"description": "Wonder is the new block-based, multi-purpose, WordPress theme by YITH. Compose your pages to fit any design you like with the power of Full Site Editing (FSE) and the included wide range of Block Patterns. The pre-built pages will help you populate and transform your website into a wonderful website. Customize colors and font pairings to create your own unique look and feel. Check out the demo site at https://wonder.yithemes.com/"}, "versions": {"0.1.8": "https://downloads.wordpress.org/theme/yith-wonder.0.1.8.zip", "0.1.9": "https://downloads.wordpress.org/theme/yith-wonder.0.1.9.zip", "1.0.0": "https://downloads.wordpress.org/theme/yith-wonder.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/yith-wonder.1.0.1.zip", "1.1.0": "https://downloads.wordpress.org/theme/yith-wonder.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/yith-wonder.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/yith-wonder.1.1.2.zip", "1.2.0": "https://downloads.wordpress.org/theme/yith-wonder.1.2.0.zip", "1.3.0": "https://downloads.wordpress.org/theme/yith-wonder.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/yith-wonder.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/yith-wonder.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/yith-wonder.1.3.3.zip", "2.0.0": "https://downloads.wordpress.org/theme/yith-wonder.2.0.0.zip", "2.1.0": "https://downloads.wordpress.org/theme/yith-wonder.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/yith-wonder.2.1.1.zip", "0.1.13": "https://downloads.wordpress.org/theme/yith-wonder.0.1.13.zip"}, "downloaded": 165778, "num_ratings": 2, "preview_url": "https://wp-themes.com/yith-wonder/", "reviews_url": "https://wordpress.org/support/theme/yith-wonder/reviews/", "is_community": false, "last_updated": "2025-04-09", "requires_php": "7.0", "creation_time": "2022-08-18 09:59:05", "download_link": "https://downloads.wordpress.org/theme/yith-wonder.2.1.1.zip", "is_commercial": false, "screenshot_url": "//ts.w.org/wp-content/themes/yith-wonder/screenshot.jpg?ver=2.1.1", "active_installs": 60000, "aspiresync_meta": {"id": "019a30c0-16a7-72f7-801d-0b3114188f05", "name": "YITH Wonder", "slug": "yith-wonder", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1744156800, "version": "2.1.1"}, "last_updated_time": "2025-04-09 10:38:28", "external_support_url": false, "external_repository_url": ""}'); -INSERT INTO public.themes VALUES ('019a30c1-6d9a-7300-b7e2-631fa4528e2b', 'zakra', 'Zakra', '4.1.8', 'Zakra is a powerful and versatile multipurpose theme that makes it easy to create beautiful and professional websites. With over free 40 pre-designed starter demo sites to choose from, you can quickly build a unique and functional site that fits your specific needs. Whether you''re launching a blog, news site, e-commerce store, showcasing your portfolio, building a business site, LMS, or niche-specific site (such as a cafe, spa, charity, yoga studio, wedding venue, dental practice, photography, restaurant, or educational institution), Zakra has everything you need to succeed. The theme integrates seamlessly with popular page builders like Elementor, Brizy, BlockArt, and the Gutenberg editor, giving you complete freedom to create any layout you can imagine. Importantly, Zakra is optimized for speed, features a mobile-first responsive design, is built with block-based technology, and is optimized for search engines. It is also compatible with a wide range of popular WordPress plugins, allowing you to extend its functionality as needed. Build your next project with Zakra today and see the difference for yourself. Check out all the starter sites at https://zakratheme.com/demos!', '019a30c1-69f4-73e5-bfb0-9a4a62d15e86', 'https://downloads.wordpress.org/theme/zakra.4.1.8.zip', NULL, '7.4', '2025-08-23 06:07:36+00', '2019-01-15 07:37:11+00', 'https://wp-themes.com/zakra/', '//ts.w.org/wp-content/themes/zakra/screenshot.jpg?ver=4.1.8', 98, 594, 'https://wordpress.org/support/theme/zakra/reviews/', 1969782, 40000, 'https://wordpress.org/themes/zakra/', true, 'https://zakratheme.com/support/', false, NULL, 'wp_org', '2025-10-29 16:16:14+00', '{"name": "Zakra", "slug": "zakra", "tags": {"blog": "Blog", "news": "News", "e-commerce": "E-commerce", "one-column": "One column", "custom-logo": "Custom logo", "two-columns": "Two columns", "left-sidebar": "Left sidebar", "custom-colors": "Custom colors", "right-sidebar": "Right sidebar", "theme-options": "Theme options", "footer-widgets": "Footer widgets", "featured-images": "Featured images", "custom-background": "Custom background", "threaded-comments": "Threaded comments", "translation-ready": "Translation ready", "full-width-template": "Full width template", "rtl-language-support": "RTL language support"}, "author": {"author": "ThemeGrill", "avatar": "https://secure.gravatar.com/avatar/b5b178b46e95643a63e3db65d40db4d6e09e60e45957316291fd5f798083e76b?s=96&d=monsterid&r=g", "profile": "https://profiles.wordpress.org/themegrill/", "author_url": "https://themegrill.com", "display_name": "ThemeGrill", "user_nicename": "themegrill"}, "rating": 98, "status": "open", "ratings": {"1": 7, "2": 0, "3": 2, "4": 6, "5": 579}, "version": "4.1.8", "homepage": "https://wordpress.org/themes/zakra/", "requires": false, "sections": {"description": "Zakra is a powerful and versatile multipurpose theme that makes it easy to create beautiful and professional websites. With over free 40 pre-designed starter demo sites to choose from, you can quickly build a unique and functional site that fits your specific needs. Whether you''re launching a blog, news site, e-commerce store, showcasing your portfolio, building a business site, LMS, or niche-specific site (such as a cafe, spa, charity, yoga studio, wedding venue, dental practice, photography, restaurant, or educational institution), Zakra has everything you need to succeed. The theme integrates seamlessly with popular page builders like Elementor, Brizy, BlockArt, and the Gutenberg editor, giving you complete freedom to create any layout you can imagine. Importantly, Zakra is optimized for speed, features a mobile-first responsive design, is built with block-based technology, and is optimized for search engines. It is also compatible with a wide range of popular WordPress plugins, allowing you to extend its functionality as needed. Build your next project with Zakra today and see the difference for yourself. Check out all the starter sites at https://zakratheme.com/demos!"}, "versions": {"0.1.0": "https://downloads.wordpress.org/theme/zakra.0.1.0.zip", "0.2.0": "https://downloads.wordpress.org/theme/zakra.0.2.0.zip", "0.3.0": "https://downloads.wordpress.org/theme/zakra.0.3.0.zip", "0.4.0": "https://downloads.wordpress.org/theme/zakra.0.4.0.zip", "1.0.0": "https://downloads.wordpress.org/theme/zakra.1.0.0.zip", "1.0.1": "https://downloads.wordpress.org/theme/zakra.1.0.1.zip", "1.0.2": "https://downloads.wordpress.org/theme/zakra.1.0.2.zip", "1.0.3": "https://downloads.wordpress.org/theme/zakra.1.0.3.zip", "1.0.4": "https://downloads.wordpress.org/theme/zakra.1.0.4.zip", "1.0.5": "https://downloads.wordpress.org/theme/zakra.1.0.5.zip", "1.0.6": "https://downloads.wordpress.org/theme/zakra.1.0.6.zip", "1.0.7": "https://downloads.wordpress.org/theme/zakra.1.0.7.zip", "1.0.8": "https://downloads.wordpress.org/theme/zakra.1.0.8.zip", "1.0.9": "https://downloads.wordpress.org/theme/zakra.1.0.9.zip", "1.1.0": "https://downloads.wordpress.org/theme/zakra.1.1.0.zip", "1.1.1": "https://downloads.wordpress.org/theme/zakra.1.1.1.zip", "1.1.2": "https://downloads.wordpress.org/theme/zakra.1.1.2.zip", "1.1.3": "https://downloads.wordpress.org/theme/zakra.1.1.3.zip", "1.1.4": "https://downloads.wordpress.org/theme/zakra.1.1.4.zip", "1.1.5": "https://downloads.wordpress.org/theme/zakra.1.1.5.zip", "1.1.6": "https://downloads.wordpress.org/theme/zakra.1.1.6.zip", "1.1.7": "https://downloads.wordpress.org/theme/zakra.1.1.7.zip", "1.1.8": "https://downloads.wordpress.org/theme/zakra.1.1.8.zip", "1.1.9": "https://downloads.wordpress.org/theme/zakra.1.1.9.zip", "1.2.0": "https://downloads.wordpress.org/theme/zakra.1.2.0.zip", "1.2.1": "https://downloads.wordpress.org/theme/zakra.1.2.1.zip", "1.2.2": "https://downloads.wordpress.org/theme/zakra.1.2.2.zip", "1.2.3": "https://downloads.wordpress.org/theme/zakra.1.2.3.zip", "1.2.4": "https://downloads.wordpress.org/theme/zakra.1.2.4.zip", "1.3.0": "https://downloads.wordpress.org/theme/zakra.1.3.0.zip", "1.3.1": "https://downloads.wordpress.org/theme/zakra.1.3.1.zip", "1.3.2": "https://downloads.wordpress.org/theme/zakra.1.3.2.zip", "1.3.3": "https://downloads.wordpress.org/theme/zakra.1.3.3.zip", "1.3.4": "https://downloads.wordpress.org/theme/zakra.1.3.4.zip", "1.3.5": "https://downloads.wordpress.org/theme/zakra.1.3.5.zip", "1.3.6": "https://downloads.wordpress.org/theme/zakra.1.3.6.zip", "1.3.7": "https://downloads.wordpress.org/theme/zakra.1.3.7.zip", "1.3.8": "https://downloads.wordpress.org/theme/zakra.1.3.8.zip", "1.3.9": "https://downloads.wordpress.org/theme/zakra.1.3.9.zip", "1.4.0": "https://downloads.wordpress.org/theme/zakra.1.4.0.zip", "1.4.1": "https://downloads.wordpress.org/theme/zakra.1.4.1.zip", "1.4.2": "https://downloads.wordpress.org/theme/zakra.1.4.2.zip", "1.4.3": "https://downloads.wordpress.org/theme/zakra.1.4.3.zip", "1.4.4": "https://downloads.wordpress.org/theme/zakra.1.4.4.zip", "1.4.5": "https://downloads.wordpress.org/theme/zakra.1.4.5.zip", "1.4.6": "https://downloads.wordpress.org/theme/zakra.1.4.6.zip", "1.4.7": "https://downloads.wordpress.org/theme/zakra.1.4.7.zip", "1.4.8": "https://downloads.wordpress.org/theme/zakra.1.4.8.zip", "1.4.9": "https://downloads.wordpress.org/theme/zakra.1.4.9.zip", "1.5.0": "https://downloads.wordpress.org/theme/zakra.1.5.0.zip", "1.5.1": "https://downloads.wordpress.org/theme/zakra.1.5.1.zip", "1.5.2": "https://downloads.wordpress.org/theme/zakra.1.5.2.zip", "1.5.3": "https://downloads.wordpress.org/theme/zakra.1.5.3.zip", "1.5.4": "https://downloads.wordpress.org/theme/zakra.1.5.4.zip", "1.5.5": "https://downloads.wordpress.org/theme/zakra.1.5.5.zip", "1.5.6": "https://downloads.wordpress.org/theme/zakra.1.5.6.zip", "1.5.7": "https://downloads.wordpress.org/theme/zakra.1.5.7.zip", "1.5.8": "https://downloads.wordpress.org/theme/zakra.1.5.8.zip", "1.5.9": "https://downloads.wordpress.org/theme/zakra.1.5.9.zip", "1.6.0": "https://downloads.wordpress.org/theme/zakra.1.6.0.zip", "2.0.0": "https://downloads.wordpress.org/theme/zakra.2.0.0.zip", "2.0.1": "https://downloads.wordpress.org/theme/zakra.2.0.1.zip", "2.0.2": "https://downloads.wordpress.org/theme/zakra.2.0.2.zip", "2.0.3": "https://downloads.wordpress.org/theme/zakra.2.0.3.zip", "2.0.4": "https://downloads.wordpress.org/theme/zakra.2.0.4.zip", "2.0.5": "https://downloads.wordpress.org/theme/zakra.2.0.5.zip", "2.0.6": "https://downloads.wordpress.org/theme/zakra.2.0.6.zip", "2.0.7": "https://downloads.wordpress.org/theme/zakra.2.0.7.zip", "2.0.8": "https://downloads.wordpress.org/theme/zakra.2.0.8.zip", "2.0.9": "https://downloads.wordpress.org/theme/zakra.2.0.9.zip", "2.1.0": "https://downloads.wordpress.org/theme/zakra.2.1.0.zip", "2.1.1": "https://downloads.wordpress.org/theme/zakra.2.1.1.zip", "2.1.2": "https://downloads.wordpress.org/theme/zakra.2.1.2.zip", "2.1.3": "https://downloads.wordpress.org/theme/zakra.2.1.3.zip", "2.1.4": "https://downloads.wordpress.org/theme/zakra.2.1.4.zip", "2.1.5": "https://downloads.wordpress.org/theme/zakra.2.1.5.zip", "2.1.6": "https://downloads.wordpress.org/theme/zakra.2.1.6.zip", "2.1.7": "https://downloads.wordpress.org/theme/zakra.2.1.7.zip", "2.1.8": "https://downloads.wordpress.org/theme/zakra.2.1.8.zip", "2.1.9": "https://downloads.wordpress.org/theme/zakra.2.1.9.zip", "2.2.0": "https://downloads.wordpress.org/theme/zakra.2.2.0.zip", "2.2.1": "https://downloads.wordpress.org/theme/zakra.2.2.1.zip", "2.2.2": "https://downloads.wordpress.org/theme/zakra.2.2.2.zip", "2.2.3": "https://downloads.wordpress.org/theme/zakra.2.2.3.zip", "3.0.0": "https://downloads.wordpress.org/theme/zakra.3.0.0.zip", "3.0.1": "https://downloads.wordpress.org/theme/zakra.3.0.1.zip", "3.0.2": "https://downloads.wordpress.org/theme/zakra.3.0.2.zip", "3.0.3": "https://downloads.wordpress.org/theme/zakra.3.0.3.zip", "3.0.4": "https://downloads.wordpress.org/theme/zakra.3.0.4.zip", "3.0.5": "https://downloads.wordpress.org/theme/zakra.3.0.5.zip", "3.0.6": "https://downloads.wordpress.org/theme/zakra.3.0.6.zip", "3.0.7": "https://downloads.wordpress.org/theme/zakra.3.0.7.zip", "3.0.8": "https://downloads.wordpress.org/theme/zakra.3.0.8.zip", "3.0.9": "https://downloads.wordpress.org/theme/zakra.3.0.9.zip", "4.0.0": "https://downloads.wordpress.org/theme/zakra.4.0.0.zip", "4.0.1": "https://downloads.wordpress.org/theme/zakra.4.0.1.zip", "4.0.2": "https://downloads.wordpress.org/theme/zakra.4.0.2.zip", "4.0.3": "https://downloads.wordpress.org/theme/zakra.4.0.3.zip", "4.0.4": "https://downloads.wordpress.org/theme/zakra.4.0.4.zip", "4.0.5": "https://downloads.wordpress.org/theme/zakra.4.0.5.zip", "4.0.6": "https://downloads.wordpress.org/theme/zakra.4.0.6.zip", "4.0.7": "https://downloads.wordpress.org/theme/zakra.4.0.7.zip", "4.1.0": "https://downloads.wordpress.org/theme/zakra.4.1.0.zip", "4.1.1": "https://downloads.wordpress.org/theme/zakra.4.1.1.zip", "4.1.2": "https://downloads.wordpress.org/theme/zakra.4.1.2.zip", "4.1.3": "https://downloads.wordpress.org/theme/zakra.4.1.3.zip", "4.1.4": "https://downloads.wordpress.org/theme/zakra.4.1.4.zip", "4.1.5": "https://downloads.wordpress.org/theme/zakra.4.1.5.zip", "4.1.6": "https://downloads.wordpress.org/theme/zakra.4.1.6.zip", "4.1.7": "https://downloads.wordpress.org/theme/zakra.4.1.7.zip", "4.1.8": "https://downloads.wordpress.org/theme/zakra.4.1.8.zip", "3.0.10": "https://downloads.wordpress.org/theme/zakra.3.0.10.zip", "3.0.11": "https://downloads.wordpress.org/theme/zakra.3.0.11.zip", "3.0.12": "https://downloads.wordpress.org/theme/zakra.3.0.12.zip", "3.0.13": "https://downloads.wordpress.org/theme/zakra.3.0.13.zip", "3.0.14": "https://downloads.wordpress.org/theme/zakra.3.0.14.zip", "3.0.15": "https://downloads.wordpress.org/theme/zakra.3.0.15.zip", "3.0.16": "https://downloads.wordpress.org/theme/zakra.3.0.16.zip", "3.0.17": "https://downloads.wordpress.org/theme/zakra.3.0.17.zip", "3.0.18": "https://downloads.wordpress.org/theme/zakra.3.0.18.zip", "3.0.19": "https://downloads.wordpress.org/theme/zakra.3.0.19.zip", "3.0.20": "https://downloads.wordpress.org/theme/zakra.3.0.20.zip", "1.4.9.1": "https://downloads.wordpress.org/theme/zakra.1.4.9.1.zip", "1.5.9.1": "https://downloads.wordpress.org/theme/zakra.1.5.9.1.zip", "2.2.2.1": "https://downloads.wordpress.org/theme/zakra.2.2.2.1.zip", "3.0.0.1": "https://downloads.wordpress.org/theme/zakra.3.0.0.1.zip", "3.0.0.2": "https://downloads.wordpress.org/theme/zakra.3.0.0.2.zip", "3.0.0.3": "https://downloads.wordpress.org/theme/zakra.3.0.0.3.zip", "3.0.0.4": "https://downloads.wordpress.org/theme/zakra.3.0.0.4.zip", "3.0.0.5": "https://downloads.wordpress.org/theme/zakra.3.0.0.5.zip", "4.0.0.1": "https://downloads.wordpress.org/theme/zakra.4.0.0.1.zip", "4.0.0.2": "https://downloads.wordpress.org/theme/zakra.4.0.0.2.zip"}, "downloaded": 1969782, "num_ratings": 594, "preview_url": "https://wp-themes.com/zakra/", "reviews_url": "https://wordpress.org/support/theme/zakra/reviews/", "is_community": false, "last_updated": "2025-08-23", "requires_php": "7.4", "creation_time": "2019-01-15 07:37:11", "download_link": "https://downloads.wordpress.org/theme/zakra.4.1.8.zip", "is_commercial": true, "screenshot_url": "//ts.w.org/wp-content/themes/zakra/screenshot.jpg?ver=4.1.8", "active_installs": 40000, "aspiresync_meta": {"id": "019a30c0-1685-7315-adf8-57a791d16b4d", "name": "Zakra", "slug": "zakra", "type": "theme", "origin": "wp_org", "pulled": 1761754486, "status": "open", "checked": 1761754486, "updated": 1755907200, "version": "4.1.8"}, "last_updated_time": "2025-08-23 06:07:36", "external_support_url": "https://zakratheme.com/support/", "external_repository_url": ""}'); - - --- --- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.users VALUES (1, 'Admin User', 'admin@aspirecloud.io', NULL, '$2y$12$re.SzEg6jgHLfI0BUXNx8u0ypE7yOzFCF4AYQxsGT4vyWe0y1mYKS', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-29 15:49:05+00', '2025-10-29 15:49:05+00'); - - --- --- Name: failed_jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.failed_jobs_id_seq', 1, false); - - --- --- Name: jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.jobs_id_seq', 1, false); - - --- --- Name: metrics_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.metrics_id_seq', 1, false); - - --- --- Name: migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.migrations_id_seq', 15, true); - - --- --- Name: package_package_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.package_package_tag_id_seq', 2367, true); - - --- --- Name: permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.permissions_id_seq', 2, true); - - --- --- Name: personal_access_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.personal_access_tokens_id_seq', 1, false); - - --- --- Name: roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.roles_id_seq', 5, true); - - --- --- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.users_id_seq', 1, true); - - --- --- Name: author_package author_package_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.author_package - ADD CONSTRAINT author_package_pkey PRIMARY KEY (package_id, author_id); - - --- --- Name: authors authors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.authors - ADD CONSTRAINT authors_pkey PRIMARY KEY (id); - - --- --- Name: cache_locks cache_locks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.cache_locks - ADD CONSTRAINT cache_locks_pkey PRIMARY KEY (key); - - --- --- Name: cache cache_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.cache - ADD CONSTRAINT cache_pkey PRIMARY KEY (key); - - --- --- Name: closed_plugins closed_plugins_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.closed_plugins - ADD CONSTRAINT closed_plugins_pkey PRIMARY KEY (id); - - --- --- Name: failed_jobs failed_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.failed_jobs - ADD CONSTRAINT failed_jobs_pkey PRIMARY KEY (id); - - --- --- Name: failed_jobs failed_jobs_uuid_unique; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.failed_jobs - ADD CONSTRAINT failed_jobs_uuid_unique UNIQUE (uuid); - - --- --- Name: job_batches job_batches_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.job_batches - ADD CONSTRAINT job_batches_pkey PRIMARY KEY (id); - - --- --- Name: jobs jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.jobs - ADD CONSTRAINT jobs_pkey PRIMARY KEY (id); - - --- --- Name: metrics metrics_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.metrics - ADD CONSTRAINT metrics_pkey PRIMARY KEY (id); - - --- --- Name: migrations migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.migrations - ADD CONSTRAINT migrations_pkey PRIMARY KEY (id); - - --- --- Name: model_has_permissions model_has_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.model_has_permissions - ADD CONSTRAINT model_has_permissions_pkey PRIMARY KEY (permission_id, model_id, model_type); - - --- --- Name: model_has_roles model_has_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.model_has_roles - ADD CONSTRAINT model_has_roles_pkey PRIMARY KEY (role_id, model_id, model_type); - - --- --- Name: package_metas package_metas_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_metas - ADD CONSTRAINT package_metas_pkey PRIMARY KEY (id); - - --- --- Name: package_package_tag package_package_tag_package_id_package_tag_id_unique; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_package_tag - ADD CONSTRAINT package_package_tag_package_id_package_tag_id_unique UNIQUE (package_id, package_tag_id); - - --- --- Name: package_package_tag package_package_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_package_tag - ADD CONSTRAINT package_package_tag_pkey PRIMARY KEY (id); - - --- --- Name: package_releases package_releases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_releases - ADD CONSTRAINT package_releases_pkey PRIMARY KEY (id); - - --- --- Name: package_tags package_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_tags - ADD CONSTRAINT package_tags_pkey PRIMARY KEY (id); - - --- --- Name: packages packages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.packages - ADD CONSTRAINT packages_pkey PRIMARY KEY (id); - - --- --- Name: password_reset_tokens password_reset_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.password_reset_tokens - ADD CONSTRAINT password_reset_tokens_pkey PRIMARY KEY (email); - - --- --- Name: permissions permissions_name_guard_name_unique; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.permissions - ADD CONSTRAINT permissions_name_guard_name_unique UNIQUE (name, guard_name); - - --- --- Name: permissions permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.permissions - ADD CONSTRAINT permissions_pkey PRIMARY KEY (id); - - --- --- Name: personal_access_tokens personal_access_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.personal_access_tokens - ADD CONSTRAINT personal_access_tokens_pkey PRIMARY KEY (id); - - --- --- Name: personal_access_tokens personal_access_tokens_token_unique; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.personal_access_tokens - ADD CONSTRAINT personal_access_tokens_token_unique UNIQUE (token); - - --- --- Name: plugin_authors plugin_authors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.plugin_authors - ADD CONSTRAINT plugin_authors_pkey PRIMARY KEY (plugin_id, author_id); - - --- --- Name: plugin_plugin_tags plugin_plugin_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.plugin_plugin_tags - ADD CONSTRAINT plugin_plugin_tags_pkey PRIMARY KEY (plugin_id, plugin_tag_id); - - --- --- Name: plugin_tags plugin_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.plugin_tags - ADD CONSTRAINT plugin_tags_pkey PRIMARY KEY (id); - - --- --- Name: plugin_tags plugin_tags_slug_unique; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.plugin_tags - ADD CONSTRAINT plugin_tags_slug_unique UNIQUE (slug); - - --- --- Name: plugins plugins_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.plugins - ADD CONSTRAINT plugins_pkey PRIMARY KEY (id); - - --- --- Name: request_data request_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.request_data - ADD CONSTRAINT request_data_pkey PRIMARY KEY (id); - - --- --- Name: role_has_permissions role_has_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.role_has_permissions - ADD CONSTRAINT role_has_permissions_pkey PRIMARY KEY (permission_id, role_id); - - --- --- Name: roles roles_name_guard_name_unique; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.roles - ADD CONSTRAINT roles_name_guard_name_unique UNIQUE (name, guard_name); - - --- --- Name: roles roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.roles - ADD CONSTRAINT roles_pkey PRIMARY KEY (id); - - --- --- Name: sessions sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.sessions - ADD CONSTRAINT sessions_pkey PRIMARY KEY (id); - - --- --- Name: package_tags slug_unique; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_tags - ADD CONSTRAINT slug_unique UNIQUE (slug); - - --- --- Name: theme_tags theme_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_tags - ADD CONSTRAINT theme_tags_pkey PRIMARY KEY (id); - - --- --- Name: theme_tags theme_tags_slug_unique; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_tags - ADD CONSTRAINT theme_tags_slug_unique UNIQUE (slug); - - --- --- Name: theme_theme_tags theme_theme_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_theme_tags - ADD CONSTRAINT theme_theme_tags_pkey PRIMARY KEY (theme_id, theme_tag_id); - - --- --- Name: themes themes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.themes - ADD CONSTRAINT themes_pkey PRIMARY KEY (id); - - --- --- Name: packages unique_package_did; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.packages - ADD CONSTRAINT unique_package_did UNIQUE (did); - - --- --- Name: package_releases unique_pkg_version; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_releases - ADD CONSTRAINT unique_pkg_version UNIQUE (package_id, version); - - --- --- Name: users users_email_unique; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.users - ADD CONSTRAINT users_email_unique UNIQUE (email); - - --- --- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.users - ADD CONSTRAINT users_pkey PRIMARY KEY (id); - - --- --- Name: author_display_name_trgm; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX author_display_name_trgm ON public.authors USING gist (display_name public.gist_trgm_ops (siglen='32')); - - --- --- Name: author_user_nicename_trgm; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX author_user_nicename_trgm ON public.authors USING gist (user_nicename public.gist_trgm_ops (siglen='32')); - - --- --- Name: authors_author_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX authors_author_index ON public.authors USING btree (author); - - --- --- Name: authors_display_name_fulltext; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX authors_display_name_fulltext ON public.authors USING gin (to_tsvector('english'::regconfig, display_name)); - - --- --- Name: authors_display_name_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX authors_display_name_index ON public.authors USING btree (display_name); - - --- --- Name: authors_user_nicename_fulltext; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX authors_user_nicename_fulltext ON public.authors USING gin (to_tsvector('english'::regconfig, user_nicename)); - - --- --- Name: authors_user_nicename_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX authors_user_nicename_index ON public.authors USING btree (user_nicename); - - --- --- Name: closed_plugins_ac_created_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX closed_plugins_ac_created_index ON public.closed_plugins USING btree (ac_created); - - --- --- Name: closed_plugins_ac_origin_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX closed_plugins_ac_origin_index ON public.closed_plugins USING btree (ac_origin); - - --- --- Name: closed_plugins_closed_date_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX closed_plugins_closed_date_index ON public.closed_plugins USING btree (closed_date); - - --- --- Name: closed_plugins_description_fulltext; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX closed_plugins_description_fulltext ON public.closed_plugins USING gin (to_tsvector('english'::regconfig, description)); - - --- --- Name: closed_plugins_name_fulltext; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX closed_plugins_name_fulltext ON public.closed_plugins USING gin (to_tsvector('english'::regconfig, name)); - - --- --- Name: closed_plugins_name_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX closed_plugins_name_index ON public.closed_plugins USING btree (name); - - --- --- Name: closed_plugins_reason_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX closed_plugins_reason_index ON public.closed_plugins USING btree (reason); - - --- --- Name: closed_plugins_slug_fulltext; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX closed_plugins_slug_fulltext ON public.closed_plugins USING gin (to_tsvector('english'::regconfig, slug)); - - --- --- Name: closed_plugins_slug_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX closed_plugins_slug_index ON public.closed_plugins USING btree (slug); - - --- --- Name: jobs_queue_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX jobs_queue_index ON public.jobs USING btree (queue); - - --- --- Name: model_has_permissions_model_id_model_type_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX model_has_permissions_model_id_model_type_index ON public.model_has_permissions USING btree (model_id, model_type); - - --- --- Name: model_has_roles_model_id_model_type_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX model_has_roles_model_id_model_type_index ON public.model_has_roles USING btree (model_id, model_type); - - --- --- Name: package_metas_created_at_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX package_metas_created_at_index ON public.package_metas USING btree (created_at); - - --- --- Name: package_releases_created_at_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX package_releases_created_at_index ON public.package_releases USING btree (created_at); - - --- --- Name: package_tags_created_at_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX package_tags_created_at_index ON public.package_tags USING btree (created_at); - - --- --- Name: packages_created_at_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX packages_created_at_index ON public.packages USING btree (created_at); - - --- --- Name: personal_access_tokens_tokenable_type_tokenable_id_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX personal_access_tokens_tokenable_type_tokenable_id_index ON public.personal_access_tokens USING btree (tokenable_type, tokenable_id); - - --- --- Name: plugins_ac_created_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_ac_created_index ON public.plugins USING btree (ac_created); - - --- --- Name: plugins_ac_origin_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_ac_origin_index ON public.plugins USING btree (ac_origin); - - --- --- Name: plugins_active_installs_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_active_installs_index ON public.plugins USING btree (active_installs); - - --- --- Name: plugins_added_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_added_index ON public.plugins USING btree (added); - - --- --- Name: plugins_author_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_author_index ON public.plugins USING btree (author); - - --- --- Name: plugins_author_trgm; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_author_trgm ON public.plugins USING gist (author public.gist_trgm_ops (siglen='32')); - - --- --- Name: plugins_description_fulltext; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_description_fulltext ON public.plugins USING gin (to_tsvector('english'::regconfig, description)); - - --- --- Name: plugins_downloaded_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_downloaded_index ON public.plugins USING btree (downloaded); - - --- --- Name: plugins_last_updated_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_last_updated_index ON public.plugins USING btree (last_updated); - - --- --- Name: plugins_name_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_name_index ON public.plugins USING btree (name); - - --- --- Name: plugins_name_trgm; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_name_trgm ON public.plugins USING gist (name public.gist_trgm_ops (siglen='32')); - - --- --- Name: plugins_num_ratings_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_num_ratings_index ON public.plugins USING btree (num_ratings); - - --- --- Name: plugins_rating_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_rating_index ON public.plugins USING btree (rating); - - --- --- Name: plugins_short_description_fulltext; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_short_description_fulltext ON public.plugins USING gin (to_tsvector('english'::regconfig, short_description)); - - --- --- Name: plugins_short_description_trgm; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_short_description_trgm ON public.plugins USING gist (short_description public.gist_trgm_ops (siglen='32')); - - --- --- Name: plugins_slug_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_slug_index ON public.plugins USING btree (slug); - - --- --- Name: plugins_slug_trgm; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_slug_trgm ON public.plugins USING gist (slug public.gist_trgm_ops (siglen='32')); - - --- --- Name: plugins_support_threads_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_support_threads_index ON public.plugins USING btree (support_threads); - - --- --- Name: plugins_support_threads_resolved_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_support_threads_resolved_index ON public.plugins USING btree (support_threads_resolved); - - --- --- Name: plugins_version_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX plugins_version_index ON public.plugins USING btree (version); - - --- --- Name: sessions_last_activity_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX sessions_last_activity_index ON public.sessions USING btree (last_activity); - - --- --- Name: sessions_user_id_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX sessions_user_id_index ON public.sessions USING btree (user_id); - - --- --- Name: themes_ac_created_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_ac_created_index ON public.themes USING btree (ac_created); - - --- --- Name: themes_ac_origin_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_ac_origin_index ON public.themes USING btree (ac_origin); - - --- --- Name: themes_active_installs_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_active_installs_index ON public.themes USING btree (active_installs); - - --- --- Name: themes_creation_time_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_creation_time_index ON public.themes USING btree (creation_time); - - --- --- Name: themes_description_fulltext; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_description_fulltext ON public.themes USING gin (to_tsvector('english'::regconfig, description)); - - --- --- Name: themes_downloaded_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_downloaded_index ON public.themes USING btree (downloaded); - - --- --- Name: themes_last_updated_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_last_updated_index ON public.themes USING btree (last_updated); - - --- --- Name: themes_name_fulltext; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_name_fulltext ON public.themes USING gin (to_tsvector('english'::regconfig, name)); - - --- --- Name: themes_name_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_name_index ON public.themes USING btree (name); - - --- --- Name: themes_name_trgm; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_name_trgm ON public.themes USING gist (name public.gist_trgm_ops (siglen='32')); - - --- --- Name: themes_num_ratings_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_num_ratings_index ON public.themes USING btree (num_ratings); - - --- --- Name: themes_rating_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_rating_index ON public.themes USING btree (rating); - - --- --- Name: themes_slug_fulltext; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_slug_fulltext ON public.themes USING gin (to_tsvector('english'::regconfig, slug)); - - --- --- Name: themes_slug_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_slug_index ON public.themes USING btree (slug); - - --- --- Name: themes_slug_trgm; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_slug_trgm ON public.themes USING gist (slug public.gist_trgm_ops (siglen='32')); - - --- --- Name: themes_version_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX themes_version_index ON public.themes USING btree (version); - - --- --- Name: users_created_at_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX users_created_at_index ON public.users USING btree (created_at); - - --- --- Name: users_updated_at_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX users_updated_at_index ON public.users USING btree (updated_at); - - --- --- Name: author_package author_package_author_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.author_package - ADD CONSTRAINT author_package_author_id_foreign FOREIGN KEY (author_id) REFERENCES public.authors(id) ON DELETE CASCADE; - - --- --- Name: author_package author_package_package_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.author_package - ADD CONSTRAINT author_package_package_id_foreign FOREIGN KEY (package_id) REFERENCES public.packages(id) ON DELETE CASCADE; - - --- --- Name: closed_plugins closed_plugins_ac_shadow_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.closed_plugins - ADD CONSTRAINT closed_plugins_ac_shadow_id_foreign FOREIGN KEY (ac_shadow_id) REFERENCES public.plugins(id) ON DELETE SET NULL; - - --- --- Name: model_has_permissions model_has_permissions_permission_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.model_has_permissions - ADD CONSTRAINT model_has_permissions_permission_id_foreign FOREIGN KEY (permission_id) REFERENCES public.permissions(id) ON DELETE CASCADE; - - --- --- Name: model_has_roles model_has_roles_role_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.model_has_roles - ADD CONSTRAINT model_has_roles_role_id_foreign FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE; - - --- --- Name: package_metas package_metas_package_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_metas - ADD CONSTRAINT package_metas_package_id_foreign FOREIGN KEY (package_id) REFERENCES public.packages(id) ON DELETE CASCADE; - - --- --- Name: package_package_tag package_package_tag_package_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_package_tag - ADD CONSTRAINT package_package_tag_package_id_foreign FOREIGN KEY (package_id) REFERENCES public.packages(id) ON DELETE CASCADE; - - --- --- Name: package_package_tag package_package_tag_package_tag_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_package_tag - ADD CONSTRAINT package_package_tag_package_tag_id_foreign FOREIGN KEY (package_tag_id) REFERENCES public.package_tags(id) ON DELETE CASCADE; - - --- --- Name: package_releases package_releases_package_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.package_releases - ADD CONSTRAINT package_releases_package_id_foreign FOREIGN KEY (package_id) REFERENCES public.packages(id) ON DELETE CASCADE; - - --- --- Name: plugin_authors plugin_authors_author_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.plugin_authors - ADD CONSTRAINT plugin_authors_author_id_foreign FOREIGN KEY (author_id) REFERENCES public.authors(id) ON DELETE CASCADE; - - --- --- Name: plugin_authors plugin_authors_plugin_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.plugin_authors - ADD CONSTRAINT plugin_authors_plugin_id_foreign FOREIGN KEY (plugin_id) REFERENCES public.plugins(id) ON DELETE CASCADE; - - --- --- Name: plugin_plugin_tags plugin_plugin_tags_plugin_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.plugin_plugin_tags - ADD CONSTRAINT plugin_plugin_tags_plugin_id_foreign FOREIGN KEY (plugin_id) REFERENCES public.plugins(id) ON DELETE CASCADE; - - --- --- Name: plugin_plugin_tags plugin_plugin_tags_plugin_tag_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.plugin_plugin_tags - ADD CONSTRAINT plugin_plugin_tags_plugin_tag_id_foreign FOREIGN KEY (plugin_tag_id) REFERENCES public.plugin_tags(id) ON DELETE CASCADE; - - --- --- Name: role_has_permissions role_has_permissions_permission_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.role_has_permissions - ADD CONSTRAINT role_has_permissions_permission_id_foreign FOREIGN KEY (permission_id) REFERENCES public.permissions(id) ON DELETE CASCADE; - - --- --- Name: role_has_permissions role_has_permissions_role_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.role_has_permissions - ADD CONSTRAINT role_has_permissions_role_id_foreign FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE; - - --- --- Name: theme_theme_tags theme_theme_tags_theme_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_theme_tags - ADD CONSTRAINT theme_theme_tags_theme_id_foreign FOREIGN KEY (theme_id) REFERENCES public.themes(id) ON DELETE CASCADE; - - --- --- Name: theme_theme_tags theme_theme_tags_theme_tag_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_theme_tags - ADD CONSTRAINT theme_theme_tags_theme_tag_id_foreign FOREIGN KEY (theme_tag_id) REFERENCES public.theme_tags(id) ON DELETE CASCADE; - - --- --- Name: themes themes_author_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.themes - ADD CONSTRAINT themes_author_id_foreign FOREIGN KEY (author_id) REFERENCES public.authors(id); - - --- --- PostgreSQL database dump complete --- - -\unrestrict R65XVGsQerRWy3DlJ3Xp6i3jjYDX47g9nbnhKoNlwrDdxDQPRmMNAGIGD1eRIN0 - diff --git a/traefik/.gitignore b/traefik/.gitignore new file mode 100644 index 0000000..30044bf --- /dev/null +++ b/traefik/.gitignore @@ -0,0 +1,6 @@ +docker-compose.override.yml +traefik.yaml +*.local.yaml + +certs/ +tmp/ diff --git a/traefik/README.md b/traefik/README.md new file mode 100644 index 0000000..f2d62eb --- /dev/null +++ b/traefik/README.md @@ -0,0 +1,30 @@ +# Docker Network Proxy + +## Quick Start + +``` +bin/up +``` + +## Enabling proxy support in a docker-compose.yml file + +Add the following to the service you want proxied, substituting `myservice` and `myhostname` appropriately (`myservice` can be anything you want, but it must be unique across all your docker containers) + +```yaml + labels: + - "traefik.enable=true" + - "traefik.http.routers.myservice.rule=Host(`myhostname.local.fair.pm`)" + - "traefik.http.routers.myservice-https.rule=Host(`myhostname.local.fair.pm`)" + - "traefik.http.routers.myservice-https.tls=true" + networks: + - ${TRAEFIK_PROXY_NETWORK:-traefik} +``` + +Add the following to the top level keys in the same docker-compose.yml file + +```yaml + networks: + traefik: + name: ${TRAEFIK_PROXY_NETWORK:-traefik} + external: true +``` diff --git a/traefik/bin/_prelude.bash b/traefik/bin/_prelude.bash new file mode 100644 index 0000000..680bb7a --- /dev/null +++ b/traefik/bin/_prelude.bash @@ -0,0 +1,17 @@ +# This file should be sourced, not run + +set -euo pipefail + +# These are not exported, but will be visible in the tool's script if they need them +__ORIG_PWD=$PWD +__HERE=$(dirname "$0") + +function warn { echo "$@" >&2; } +function die { warn "$@"; exit 1; } + +for file in "$__HERE"/_prelude.d/*.bash; do + # shellcheck source=/dev/null + [[ -f $file ]] && source "$file" +done + +cd "$__HERE"/.. diff --git a/traefik/bin/_prelude.d/.gitignore b/traefik/bin/_prelude.d/.gitignore new file mode 100644 index 0000000..4a64cc6 --- /dev/null +++ b/traefik/bin/_prelude.d/.gitignore @@ -0,0 +1 @@ +*.local.bash \ No newline at end of file diff --git a/traefik/bin/_prelude.d/100-base.bash b/traefik/bin/_prelude.d/100-base.bash new file mode 100644 index 0000000..b349090 --- /dev/null +++ b/traefik/bin/_prelude.d/100-base.bash @@ -0,0 +1,11 @@ + # shellcheck disable=SC2089 + +function require_command() { + local command="$1" + local package="${2:-}" + + local not_found_msg="Command '$command' not found." + [[ -n $package ]] && not_found_msg=" Install the '$package' package with brew|apt|dnf|scoop" + + command -v "$command" >/dev/null 2>&1 || die "$not_found_msg" +} diff --git a/traefik/bin/_prelude.d/200-fair-env.bash b/traefik/bin/_prelude.d/200-fair-env.bash new file mode 100644 index 0000000..db59003 --- /dev/null +++ b/traefik/bin/_prelude.d/200-fair-env.bash @@ -0,0 +1,2 @@ +export TRAEFIK_PROXY_NETWORK=${TRAEFIK_PROXY_NETWORK:-traefik} +export TRAEFIK_WILDCARD_DOMAINS=${TRAEFIK_WILDCARD_DOMAINS:-local.fair.pm aspiredev.org} diff --git a/traefik/bin/bootstrap b/traefik/bin/bootstrap new file mode 100755 index 0000000..d33ce4a --- /dev/null +++ b/traefik/bin/bootstrap @@ -0,0 +1,21 @@ +#!/bin/bash +here=$(dirname "$0") && source "$here"/_prelude.bash + +require_command docker +require_command mkcert mkcert + +docker network create "$TRAEFIK_PROXY_NETWORK" >/dev/null 2>&1 || true +mkcert -install + +bin/make-certs + +# if traefik.yaml is deleted while traefik is running, docker creates a local directory for the bind mount. zap it. +[[ -d traefik.yaml ]] && rmdir traefik.yaml + +[[ -f traefik.yaml ]] || eval "cat < traefik.yaml + +mkdir -p traefik-config.d +bin/make-tls-config >> traefik-config.d/tls.local.yaml diff --git a/traefik/bin/down b/traefik/bin/down new file mode 100755 index 0000000..a3f2c1b --- /dev/null +++ b/traefik/bin/down @@ -0,0 +1,4 @@ +#!/bin/bash +here=$(dirname "$0") && source "$here"/_prelude.bash + +exec docker compose down --remove-orphans "$@" diff --git a/traefik/bin/make-certs b/traefik/bin/make-certs new file mode 100755 index 0000000..1a7412b --- /dev/null +++ b/traefik/bin/make-certs @@ -0,0 +1,18 @@ +#!/bin/bash +here=$(dirname "$0") && source "$here"/_prelude.bash + +require_command mkcert mkcert + +mkdir -p certs +cd certs + +# *.local is for compatibility, but not recommended since browsers will refuse to accept it permanently. +wildcard_domains=${TRAEFIK_WILDCARD_DOMAINS:-dev.local local} + +for domain in $wildcard_domains +do + filename="_wildcard.$domain" + [[ -f "${filename}.crt" ]] && continue + mkcert -cert-file "${filename}.crt" -key-file "${filename}.key" $domain "*.$domain" +done + diff --git a/traefik/bin/make-tls-config b/traefik/bin/make-tls-config new file mode 100755 index 0000000..0fb13bf --- /dev/null +++ b/traefik/bin/make-tls-config @@ -0,0 +1,20 @@ +#!/bin/bash +here=$(dirname "$0") && source "$here"/_prelude.bash + +cat <